From 9bb692f4728c2d169e5b6e92da21489774d42510 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Mon, 14 Oct 2019 19:05:15 +0200 Subject: [PATCH 01/30] Completed Tasks --- .../your-code/challenge-1.ipynb | 214 ++++++++-- .../your-code/challenge-2.ipynb | 370 ++++++++++++++---- .../your-code/challenge-3.ipynb | 324 ++++++++++++++- 3 files changed, 791 insertions(+), 117 deletions(-) diff --git a/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb b/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb index 2e59d77..5d6ce62 100644 --- a/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb +++ b/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb @@ -15,11 +15,12 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 40, "metadata": {}, "outputs": [], "source": [ - "# Your code here\n" + "# Your code here\n", + "tup = (\"I\",)" ] }, { @@ -33,11 +34,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 41, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('I',)\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "print(tup)" ] }, { @@ -49,19 +59,39 @@ "Are you able to do it? Explain.\n", "\n", "```\n", - "\"r\", \"o\", \"n\", \"h\", \"a\", \"c\", \"k',\n", + "\n", "```" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 42, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "AttributeError", + "evalue": "'tuple' object has no attribute 'append'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0madd\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 6\u001b[0;31m \u001b[0mtup\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mi\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 7\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtup\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mAttributeError\u001b[0m: 'tuple' object has no attribute 'append'" + ] + } + ], "source": [ "# Your code here\n", "\n", - "# Your explanation here\n" + "add=(\"r\", \"o\", \"n\", \"h\", \"a\", \"c\", \"k\")\n", + "\n", + "for i in add:\n", + " tup.append(i)\n", + " \n", + "print(tup)\n", + "\n", + "# Your explanation here\n", + "# It will not work as Tuples are unchangeable. \n" ] }, { @@ -79,13 +109,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 43, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('I', 'r', 'o', 'n', 'h', 'a', 'c', 'k')\n" + ] + } + ], "source": [ "# Your code here\n", "\n", - "# Your explanation here\n" + "new_values=[\"r\", \"o\", \"n\", \"h\", \"a\", \"c\", \"k\"]\n", + "tup=list(tup)\n", + "\n", + "for i in new_values:\n", + " tup.append(i)\n", + "\n", + "tup=tuple(tup)\n", + "print(tup)\n", + "\n", + "# Your explanation here\n", + "\n", + "# You cannot add item to a tuple. You need to convert it to a list first before re-assigning elements \n" ] }, { @@ -103,11 +152,33 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 49, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('I', 'r', 'o', 'n')\n", + "('h', 'a', 'c', 'k')\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "\n", + "tup1=[]\n", + "tup2=[]\n", + "\n", + "for i in range(0,4):\n", + " tup1.append(tup[i])\n", + " tup2.append(tup[i-4])\n", + "\n", + "tup1=tuple(tup1)\n", + "tup2=tuple(tup2)\n", + "\n", + "print(tup1)\n", + "print(tup2)" ] }, { @@ -121,11 +192,22 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 50, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('I', 'r', 'o', 'n', 'h', 'a', 'c', 'k')\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "tup3=tup1+tup2\n", + "\n", + "print(tup3)" ] }, { @@ -137,11 +219,26 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 51, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "True\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "\n", + "sum_tups=len(tup1)+len(tup2)\n", + "\n", + "if sum_tups==len(tup3):\n", + " print(\"True\")\n", + "else:\n", + " print(\"False\")" ] }, { @@ -153,11 +250,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 52, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "4\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "print(tup3.index(\"h\"))" ] }, { @@ -177,11 +283,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 56, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a - True\n", + "b - False\n", + "c - True\n", + "d - False\n", + "e - False\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "letters = [\"a\", \"b\", \"c\", \"d\", \"e\"]\n", + "\n", + "for l in letters:\n", + " if l in tup3:\n", + " print(l,\"- True\")\n", + " else:\n", + " print(l,\"- False\")\n", + " \n", + " " ] }, { @@ -195,12 +322,37 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 58, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "a appears 1 times.\n", + "b appears 0 times.\n", + "c appears 1 times.\n", + "d appears 0 times.\n", + "e appears 0 times.\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "letters = [\"a\", \"b\", \"c\", \"d\", \"e\"]\n", + "\n", + "for l in range(len(letters)):\n", + " count_l=tup3.count(letters[l])\n", + " print(letters[l],\"appears\",count_l,\"times.\")\n", + " \n" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -219,7 +371,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-tuple-set-dict/your-code/challenge-2.ipynb b/module-1_labs/lab-tuple-set-dict/your-code/challenge-2.ipynb index 41d6911..3b5d566 100644 --- a/module-1_labs/lab-tuple-set-dict/your-code/challenge-2.ipynb +++ b/module-1_labs/lab-tuple-set-dict/your-code/challenge-2.ipynb @@ -13,7 +13,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -38,11 +38,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[16, 92, 81, 93, 23, 59, 27, 66, 90, 6, 86, 82, 55, 52, 45, 9, 21, 72, 60, 37, 7, 78, 53, 12, 5, 38, 58, 22, 96, 95, 1, 36, 34, 71, 88, 30, 63, 0, 74, 43, 54, 84, 13, 79, 24, 28, 39, 80, 14, 98, 35, 33, 67, 11, 73, 49, 47, 91, 99, 97, 42, 56, 31, 8, 85, 64, 62, 10, 29, 89, 2, 19, 4, 32, 69, 68, 20, 26, 44, 83]\n", + "80\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "sample_list_1=random.sample(range(100),80)\n", + "print(sample_list_1)\n", + "print(len(sample_list_1))" ] }, { @@ -54,11 +66,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42, 43, 44, 45, 47, 49, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 68, 69, 71, 72, 73, 74, 78, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99}\n", + "80\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "set1=set(sample_list_1)\n", + "print(set1)\n", + "print(len(set1))" ] }, { @@ -77,11 +101,27 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[34, 72, 27, 55, 27, 89, 41, 52, 66, 59, 92, 91, 91, 90, 76, 19, 5, 94, 77, 94, 57, 86, 89, 39, 88, 26, 76, 91, 97, 99, 52, 65, 58, 35, 27, 85, 95, 94, 57, 91, 0, 78, 43, 13, 38, 62, 11, 52, 55, 78, 12, 45, 23, 10, 84, 42, 89, 34, 85, 22, 79, 25, 74, 67, 90, 66, 92, 68, 30, 43, 6, 85, 28, 18, 88, 2, 94, 24, 97, 51]\n", + "80\n" + ] + } + ], + "source": [ + "# Your code here\n", + "sample_list_2=[]\n", + "\n", + "for i in range(80):\n", + " sample_list_2.append(random.randrange(100))\n", + "\n", + "print(sample_list_2)\n", + "print(len(sample_list_2))" ] }, { @@ -93,11 +133,22 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "55\n" + ] + } + ], + "source": [ + "# Your code here\n", + "set2=set(sample_list_2)\n", + "\n", + "print(len(set2))" ] }, { @@ -109,11 +160,29 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{1, 4, 7, 8, 9, 14, 16, 20, 21, 29, 31, 32, 33, 36, 37, 44, 47, 49, 53, 54, 56, 60, 63, 64, 69, 71, 73, 80, 81, 82, 83, 93, 96, 98}\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "set3=[]\n", + "\n", + "for i in set1:\n", + " if i not in set2:\n", + " set3.append(i)\n", + " \n", + "set3=set(set3)\n", + " \n", + "print(set3)" ] }, { @@ -125,11 +194,29 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{65, 41, 76, 77, 18, 51, 25, 94, 57}\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "set4=[]\n", + "\n", + "for i in set2:\n", + " if i not in set1:\n", + " set4.append(i)\n", + " \n", + "set4=set(set4)\n", + " \n", + "print(set4)" ] }, { @@ -141,11 +228,29 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{0, 2, 5, 6, 10, 11, 12, 13, 19, 22, 23, 24, 26, 27, 28, 30, 34, 35, 38, 39, 42, 43, 45, 52, 55, 58, 59, 62, 66, 67, 68, 72, 74, 78, 79, 84, 85, 86, 88, 89, 90, 91, 92, 95, 97, 99}\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "set5=[]\n", + "\n", + "for i in set1:\n", + " if i in set2:\n", + " set5.append(i)\n", + "\n", + "set5=set(set5)\n", + " \n", + "print(set5)" ] }, { @@ -165,11 +270,25 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "True\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "if len(set1)==len(set3)+(len(set2)- len(set4)):\n", + " print(\"True\")\n", + "else:\n", + " print(\"False\")\n", + "\n" ] }, { @@ -181,11 +300,13 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, "outputs": [], "source": [ - "# Your code here\n" + "# Your code here\n", + "\n", + "set6=[]" ] }, { @@ -197,11 +318,28 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{0, 1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42, 43, 44, 45, 47, 49, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 68, 69, 71, 72, 73, 74, 78, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99}\n", + "80\n" + ] + } + ], + "source": [ + "# Your code here\n", + "set6={}\n", + "\n", + "set6=set(set6)\n", + "set6.update(set3)\n", + "set6.update(set5)\n", + "\n", + "print(set6)\n", + "print(len(set6))" ] }, { @@ -213,11 +351,29 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Set6 equals to Set1\n" + ] + } + ], + "source": [ + "# Your code here\n", + "count=0\n", + "\n", + "for i in set1:\n", + " if i in set6:\n", + " count+=1\n", + " \n", + "if count==80:\n", + " print(\"Set6 equals to Set1\")\n", + "else:\n", + " print(\"Set6 is not equal to Set1\")" ] }, { @@ -229,11 +385,32 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Set1 does not contain set2.\n", + "Set1 contains set3.\n" + ] + } + ], + "source": [ + "# Your code here\n", + "subset1=set2.issubset(set1)\n", + "subset2=set3.issubset(set1)\n", + "\n", + "if subset1==True:\n", + " print(\"Set1 contains set2.\")\n", + "else:\n", + " print(\"Set1 does not contain set2.\")\n", + " \n", + "if subset2==True:\n", + " print(\"Set1 contains set3.\")\n", + "else:\n", + " print(\"Set1 does not contain set3.\")\n" ] }, { @@ -247,11 +424,35 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "True\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "set_a=set3.union(set4)\n", + "set_a=set_a.union(set5)\n", + "set_b=set1.union(set2)\n", + "\n", + "\n", + "count=0\n", + "if len(set_a)==len(set_b):\n", + " for i in set_a:\n", + " if i in set_b:\n", + " count+=1\n", + "else:\n", + " print(\"False\")\n", + " \n", + "if count==len(set_a):\n", + " print(\"True\")" ] }, { @@ -263,11 +464,23 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Your code here\n" + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 42, 43, 44, 45, 47, 49, 52, 53, 54, 55, 56, 58, 59, 60, 62, 63, 64, 66, 67, 68, 69, 71, 72, 73, 74, 78, 79, 80, 81, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 93, 95, 96, 97, 98, 99}\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "set1.pop()\n", + " \n", + "print(set1)\n" ] }, { @@ -281,14 +494,35 @@ "```" ] }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{2, 4, 5, 6, 7, 8, 10, 12, 13, 14, 16, 20, 22, 23, 24, 26, 27, 28, 30, 32, 33, 34, 35, 36, 37, 38, 42, 43, 44, 45, 47, 52, 53, 54, 55, 56, 58, 60, 62, 63, 64, 66, 67, 68, 72, 73, 74, 78, 80, 82, 83, 84, 85, 86, 88, 90, 92, 93, 95, 96, 97, 98}\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "list_to_remove = [1, 9, 11, 19, 21, 29, 31, 39, 41, 49, 51, 59, 61, 69, 71, 79, 81, 89, 91, 99]\n", + "\n", + "set1.difference_update(list_to_remove)\n", + "\n", + "print(set1)" + ] + }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], - "source": [ - "# Your code here\n" - ] + "source": [] } ], "metadata": { @@ -307,7 +541,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-tuple-set-dict/your-code/challenge-3.ipynb b/module-1_labs/lab-tuple-set-dict/your-code/challenge-3.ipynb index 7ab8ea5..c7ec9f5 100644 --- a/module-1_labs/lab-tuple-set-dict/your-code/challenge-3.ipynb +++ b/module-1_labs/lab-tuple-set-dict/your-code/challenge-3.ipynb @@ -15,7 +15,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ @@ -49,11 +49,31 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'a': 8, 'about': 1, 'all': 1, 'although': 3, 'and': 23, 'are': 1, 'at': 1, 'baby': 14, 'backseat': 1, 'bag': 1, 'bar': 1, 'be': 16, 'bedsheets': 3, 'begin': 1, 'best': 1, 'body': 17, 'boy': 2, 'brand': 6, 'can': 1, 'chance': 1, 'club': 1, 'come': 37, 'conversation': 1, 'crazy': 2, 'dance': 1, 'date': 1, 'day': 6, 'discovering': 6, 'do': 3, 'doing': 2, \"don't\": 2, 'drinking': 1, 'driver': 1, 'eat': 1, 'every': 6, 'falling': 3, 'family': 1, 'fast': 1, 'fill': 2, 'find': 1, 'first': 1, 'follow': 6, 'for': 3, 'friends': 1, 'get': 1, 'girl': 2, 'give': 1, 'go': 2, 'going': 1, 'grab': 2, 'hand': 1, 'handmade': 2, 'heart': 3, 'hours': 2, 'how': 1, 'i': 6, \"i'll\": 1, \"i'm\": 23, 'in': 27, 'is': 5, \"isn't\": 1, 'it': 1, 'jukebox': 1, 'just': 1, 'kiss': 1, 'know': 2, 'last': 3, 'lead': 6, 'leave': 1, 'let': 1, \"let's\": 2, 'like': 10, 'love': 25, 'lover': 1, 'magnet': 3, 'make': 1, 'man': 1, 'may': 2, 'me': 10, 'mind': 2, 'much': 2, 'my': 33, 'new': 6, 'night': 3, 'not': 2, 'now': 11, 'of': 6, 'okay': 1, 'on': 40, 'one': 1, 'our': 1, 'out': 1, 'over': 1, 'place': 1, 'plate': 1, 'play': 1, 'pull': 3, 'push': 3, 'put': 3, 'radio': 1, 'room': 3, 'say': 2, 'shape': 6, 'shots': 1, 'singing': 2, 'slow': 1, 'smell': 3, 'so': 2, 'somebody': 2, 'something': 6, 'sour': 1, 'start': 2, 'stop': 1, 'story': 1, 'sweet': 1, 'table': 1, 'take': 1, 'talk': 4, 'taxi': 1, 'tell': 1, 'that': 2, 'the': 18, 'then': 3, 'thrifty': 1, 'to': 2, 'too': 5, 'trust': 1, 'up': 3, 'van': 1, 'waist': 2, 'want': 2, 'was': 2, 'we': 7, \"we're\": 1, 'week': 1, 'were': 3, 'where': 1, 'with': 22, 'you': 16, 'your': 21}\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "keys=[]\n", + "\n", + "for i in word_freq:\n", + " keys.append(i)\n", + " \n", + "keys.sort()\n", + " \n", + "word_freq2={}\n", + "for i in keys:\n", + " word_freq2[i]=word_freq[i]\n", + "\n", + "print(word_freq2)" ] }, { @@ -90,11 +110,30 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'conversation': 1, \"we're\": 1, 'plate': 1, 'sour': 1, 'jukebox': 1, 'taxi': 1, 'fast': 1, 'bag': 1, 'man': 1, 'going': 1, 'one': 1, 'backseat': 1, 'friends': 1, 'take': 1, 'play': 1, 'okay': 1, 'begin': 1, 'over': 1, 'just': 1, 'are': 1, 'tell': 1, 'drinking': 1, 'our': 1, 'where': 1, \"i'll\": 1, 'all': 1, \"isn't\": 1, 'make': 1, 'lover': 1, 'get': 1, 'radio': 1, 'give': 1, 'can': 1, 'club': 1, 'it': 1, 'out': 1, 'chance': 1, 'first': 1, 'table': 1, 'thrifty': 1, 'driver': 1, 'slow': 1, 'dance': 1, 'trust': 1, 'family': 1, 'week': 1, 'date': 1, 'leave': 1, 'at': 1, 'hand': 1, 'how': 1, 'eat': 1, 'about': 1, 'story': 1, 'sweet': 1, 'best': 1, 'let': 1, 'van': 1, 'shots': 1, 'place': 1, 'find': 1, 'kiss': 1, 'stop': 1, 'bar': 1, \"don't\": 2, 'mind': 2, 'know': 2, 'so': 2, 'start': 2, 'boy': 2, 'girl': 2, 'singing': 2, 'doing': 2, 'somebody': 2, 'handmade': 2, 'may': 2, 'that': 2, 'much': 2, 'grab': 2, 'was': 2, 'say': 2, 'waist': 2, 'want': 2, \"let's\": 2, 'not': 2, 'crazy': 2, 'go': 2, 'to': 2, 'fill': 2, 'hours': 2, 'push': 3, 'then': 3, 'put': 3, 'room': 3, 'magnet': 3, 'up': 3, 'pull': 3, 'last': 3, 'do': 3, 'smell': 3, 'although': 3, 'falling': 3, 'were': 3, 'night': 3, 'heart': 3, 'for': 3, 'bedsheets': 3, 'talk': 4, 'too': 5, 'is': 5, 'every': 6, 'new': 6, 'follow': 6, 'brand': 6, 'of': 6, 'i': 6, 'day': 6, 'lead': 6, 'shape': 6, 'discovering': 6, 'something': 6, 'we': 7, 'a': 8, 'like': 10, 'me': 10, 'now': 11, 'baby': 14, 'you': 16, 'be': 16, 'body': 17, 'the': 18, 'your': 21, 'with': 22, \"i'm\": 23, 'and': 23, 'love': 25, 'in': 27, 'my': 33, 'come': 37, 'on': 40}\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "\n", + "import operator\n", + "sorted_tups = sorted(word_freq.items(), key=operator.itemgetter(1))\n", + "\n", + "word_freq2={}\n", + "\n", + "for i in range(len(sorted_tups)):\n", + " word_freq2[sorted_tups[i][0]]=sorted_tups[i][1]\n", + "\n", + "print(word_freq2)\n", + "\n" ] }, { @@ -110,7 +149,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -132,11 +171,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " word freq\n", + "0 love 25\n", + "1 conversation 1\n", + "2 every 6\n", + "3 we're 1\n", + "4 plate 1\n", + ".. ... ...\n", + "135 bedsheets 3\n", + "136 fill 2\n", + "137 hours 2\n", + "138 stop 1\n", + "139 bar 1\n", + "\n", + "[140 rows x 2 columns]\n" + ] + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "\n", + "df=pd.DataFrame(list(word_freq.items()), columns=['word', 'freq'])\n", + "print(df)" ] }, { @@ -150,11 +213,120 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
wordfreq
120a8
109about1
43all1
96although3
72and23
.........
128were3
41where1
54with22
15you16
97your21
\n", + "

140 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " word freq\n", + "120 a 8\n", + "109 about 1\n", + "43 all 1\n", + "96 although 3\n", + "72 and 23\n", + ".. ... ...\n", + "128 were 3\n", + "41 where 1\n", + "54 with 22\n", + "15 you 16\n", + "97 your 21\n", + "\n", + "[140 rows x 2 columns]" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "df.sort_values(by=['word'])\n" ] }, { @@ -166,12 +338,128 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 21, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
wordfreq
139bar1
114let1
116van1
60out1
57it1
.........
0love25
65in27
121my33
56come37
126on40
\n", + "

140 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " word freq\n", + "139 bar 1\n", + "114 let 1\n", + "116 van 1\n", + "60 out 1\n", + "57 it 1\n", + ".. ... ...\n", + "0 love 25\n", + "65 in 27\n", + "121 my 33\n", + "56 come 37\n", + "126 on 40\n", + "\n", + "[140 rows x 2 columns]" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here\n" + "# Your code here\n", + "df.sort_values(by=[\"freq\"])" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -190,7 +478,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, From bab582a98895db09b16a5051271290fc726e3e1c Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Fri, 18 Oct 2019 14:52:06 +0200 Subject: [PATCH 02/30] Escaped room Ivy! --- .../your-code/Escape Game Ivy.ipynb | 506 ++++++++++++++++++ 1 file changed, 506 insertions(+) create mode 100644 module-1_projects/python-project/your-code/Escape Game Ivy.ipynb diff --git a/module-1_projects/python-project/your-code/Escape Game Ivy.ipynb b/module-1_projects/python-project/your-code/Escape Game Ivy.ipynb new file mode 100644 index 0000000..f98fcbf --- /dev/null +++ b/module-1_projects/python-project/your-code/Escape Game Ivy.ipynb @@ -0,0 +1,506 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# define rooms\n", + "\n", + "game_room = {\n", + " \"name\": \"game room\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "bedroom_1 = {\n", + " \"name\" : \"bedroom 1\",\n", + " \"type\" : \"room\"\n", + "}\n", + "\n", + "bedroom_2 = {\n", + " \"name\" : \"bedroom 2\",\n", + " \"type\" : \"room\"\n", + "}\n", + "\n", + "living_room = {\n", + " \"name\" : \"living room\",\n", + " \"type\" : \"room\"\n", + "}\n", + "\n", + "outside = {\n", + " \"name\": \"outside\"\n", + "}\n", + "\n", + "# define doors\n", + "\n", + "door_a = {\n", + " \"name\": \"door a\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "door_b = {\n", + " \"name\" : \"door b\",\n", + " \"type\" : \"door\"\n", + "}\n", + "\n", + "door_c = {\n", + " \"name\" : \"door c\",\n", + " \"type\" : \"door\"\n", + "}\n", + "\n", + "door_d = {\n", + " \"name\" : \"door d\",\n", + " \"type\" : \"door\"\n", + "}\n", + "\n", + "# 1. Game Room \n", + "\n", + "couch = {\n", + " \"name\": \"couch\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "key_a = {\n", + " \"name\": \"key for door a\",\n", + " \"type\": \"key\",\n", + " \"target\": door_a,\n", + "}\n", + "\n", + "piano = {\n", + " \"name\": \"piano\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "# 2. Bedroom1 \n", + "\n", + "queen_bed = {\n", + " \"name\" : \"queen bed\",\n", + " \"type\" : \"furniture\"\n", + "}\n", + "\n", + "\n", + "key_b = {\n", + " \"name\" : \"key for door b\",\n", + " \"type\" : \"key\",\n", + " \"target\" : door_b\n", + "}\n", + "\n", + "\n", + "# 3. Bedroom2 \n", + "\n", + "double_bed = {\n", + " \"name\" : \"double bed\",\n", + " \"type\" : \"furniture\"\n", + "}\n", + " \n", + "dresser = {\n", + " \"name\" : \"dresser\",\n", + " \"type\" : \"furniture\"\n", + "}\n", + " \n", + "key_c = {\n", + " \"name\" : \"key c\",\n", + " \"type\" : \"key\",\n", + " \"target\" : door_c\n", + "}\n", + "\n", + "key_d = {\n", + " \"name\" : \"key d\",\n", + " \"type\" : \"key\",\n", + " \"target\" : door_d\n", + "}\n", + " \n", + " \n", + "# 4. Living room \n", + "\n", + "dining_table = {\n", + " \"name\" : \"dining table\",\n", + " \"type\" : \"room\"\n", + "}\n", + " \n", + "\n", + "\n", + "all_rooms = [game_room, bedroom_1, bedroom_2, living_room, outside]\n", + "\n", + "all_doors = [door_a, door_b, door_c, door_d]" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# define which items/rooms are related\n", + "\n", + "\n", + "object_relations = {\n", + "# In game room\n", + " \"game room\": [couch, piano, door_a],\n", + " \"piano\": [key_a],\n", + " \"door a\": [game_room, bedroom_1],\n", + "# In bedroom 1\n", + " \"bedroom 1\" : [queen_bed, door_a, door_b, door_c],\n", + " \"queen bed\" : [key_b],\n", + " \"door b\" : [bedroom_1, bedroom_2],\n", + " \"door c\" : [bedroom_1, living_room],\n", + "# In bedroom 2\n", + " \"bedroom 2\" : [double_bed, dresser, door_b],\n", + " \"double bed\" : [key_c],\n", + " \"dresser\" : [key_d],\n", + "# In living room\n", + " \"living room\" : [dining_table, door_c, door_d],\n", + " \"outside\": [door_d],\n", + " \"door d\" : [living_room, outside]\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# define game state. Do not directly change this dict. \n", + "# Instead, when a new game starts, make a copy of this\n", + "# dict and use the copy to store gameplay state. This \n", + "# way you can replay the game multiple times.\n", + "\n", + "INIT_GAME_STATE = {\n", + " \"current_room\": game_room,\n", + " \"keys_collected\": [],\n", + " \"target_room\": outside\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "def linebreak():\n", + " \"\"\"\n", + " Print a line break\n", + " \"\"\"\n", + " print(\"\\n\\n\")\n", + " \n", + "def start_game():\n", + " \"\"\"\n", + " Start the game\n", + " \"\"\"\n", + " print(\"You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. \\n ╚(ಠ_ಠ)=┐ You don't remember why you are here and what had happened before. \\n ಠ⌣ಠ You feel some unknown danger is approaching and you must get out of the house, NOW!\")\n", + " play_room(game_state[\"current_room\"])\n", + " \n", + "def play_room(room):\n", + " \"\"\"\n", + " Play a room. First check if the room being played is the target room.\n", + " If it is, the game will end with success. Otherwise, let player either \n", + " explore (list all items in this room) or examine an item found here.\n", + " \"\"\"\n", + " game_state[\"current_room\"] = room\n", + " if(game_state[\"current_room\"] == game_state[\"target_room\"]):\n", + " print(\"Congrats! You escaped the room!\")\n", + " else:\n", + " print(\"\\nYou are now in \" + room[\"name\"])\n", + " intended_action = input(\"What would you like to do? Type 'explore' to explore the room or 'examine' to check an item:\").strip()\n", + " if intended_action == \"explore\":\n", + " explore_room(room)\n", + " play_room(room)\n", + " elif intended_action == \"examine\":\n", + " examine_item(input(\"What would you like to examine?\").strip())\n", + " else:\n", + " print(\"Not sure what you mean. Type 'explore' or 'examine'.\")\n", + " play_room(room)\n", + " linebreak()\n", + " \n", + "def explore_room(room):\n", + " \"\"\"\n", + " Explore a room. List all items belonging to this room.\n", + " \"\"\"\n", + " items = [i[\"name\"] for i in object_relations[room[\"name\"]]]\n", + " print(\"You explore the room. This is \" + room[\"name\"] + \". You find \" + \", \".join(items))\n", + " \n", + " \n", + " \n", + "def play_room(room):\n", + " \"\"\"\n", + " Play a room. First check if the room being played is the target room.\n", + " If it is, the game will end with success. Otherwise, let player either \n", + " explore (list all items in this room) or examine an item found here.\n", + " \"\"\"\n", + " game_state[\"current_room\"] = room\n", + " if(game_state[\"current_room\"] == game_state[\"target_room\"]):\n", + " print(\"Congrats! You escaped the room \\ (•◡•) / !! \")\n", + " else:\n", + " print(\"You are now in \" + room[\"name\"])\n", + " intended_action = input(\"What would you like to do? Type 'explore' or 'examine'?\").strip()\n", + " if intended_action == \"explore\":\n", + " explore_room(room)\n", + " play_room(room)\n", + " elif intended_action == \"examine\":\n", + " examine_item(input(\"What would you like to examine?\").strip())\n", + " else:\n", + " print(\"Not sure what you mean. Type 'explore' or 'examine'.\")\n", + " play_room(room)\n", + " linebreak()\n", + "\n", + "def explore_room(room):\n", + " \"\"\"\n", + " Explore a room. List all items belonging to this room.\n", + " \"\"\"\n", + " items = [i[\"name\"] for i in object_relations[room[\"name\"]]]\n", + " print(\"You explore the room. This is \" + room[\"name\"] + \". You find \" + \", \".join(items))\n", + "\n", + "def get_next_room_of_door(door, current_room):\n", + " \"\"\"\n", + " From object_relations, find the two rooms connected to the given door.\n", + " Return the room that is not the current_room.\n", + " \"\"\"\n", + " connected_rooms = object_relations[door[\"name\"]]\n", + " for room in connected_rooms:\n", + " if(not current_room == room):\n", + " return room\n", + "\n", + "def examine_item(item_name):\n", + " \"\"\"\n", + " Examine an item which can be a door or furniture.\n", + " First make sure the intended item belongs to the current room.\n", + " Then check if the item is a door. Tell player if key hasn't been \n", + " collected yet. Otherwise ask player if they want to go to the next\n", + " room. If the item is not a door, then check if it contains keys.\n", + " Collect the key if found and update the game state. At the end,\n", + " play either the current or the next room depending on the game state\n", + " to keep playing.\n", + " \"\"\"\n", + " current_room = game_state[\"current_room\"]\n", + " next_room = \"\"\n", + " output = None\n", + " \n", + " for item in object_relations[current_room[\"name\"]]:\n", + " if(item[\"name\"] == item_name):\n", + " output = \"You examine \" + item_name + \". \"\n", + " if(item[\"type\"] == \"door\"):\n", + " have_key = False\n", + " for key in game_state[\"keys_collected\"]:\n", + " if(key[\"target\"] == item):\n", + " have_key = True\n", + " if(have_key):\n", + " output += \"You unlock it with a key you have.\"\n", + " next_room = get_next_room_of_door(item, current_room)\n", + " else:\n", + " output += \"It is locked but you don't have the key.\"\n", + " else:\n", + " if(item[\"name\"] in object_relations and len(object_relations[item[\"name\"]])>0):\n", + " item_found = object_relations[item[\"name\"]].pop()\n", + " game_state[\"keys_collected\"].append(item_found)\n", + " output += \"You find \" + item_found[\"name\"] + \".\"\n", + " else:\n", + " output += \"There isn't anything interesting about it.\"\n", + " print(output)\n", + " break\n", + "\n", + " if(output is None):\n", + " print(\"The item you requested is not found in the current room.\")\n", + " \n", + " if(next_room and input(\"Do you want to go to the next room? Ener 'yes' or 'no'\").strip() == 'yes'):\n", + " play_room(next_room)\n", + " else:\n", + " play_room(current_room)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. \n", + " ╚(ಠ_ಠ)=┐ You don't remember why you are here and what had happened before. \n", + " ಠ⌣ಠ You feel some unknown danger is approaching and you must get out of the house, NOW!\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is game room. You find couch, piano, door a\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?piano\n", + "You examine piano. You find key for door a.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is game room. You find couch, piano, door a\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examie\n", + "Not sure what you mean. Type 'explore' or 'examine'.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?door a\n", + "Not sure what you mean. Type 'explore' or 'examine'.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door a\n", + "You examine door a. You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is bedroom 1. You find queen bed, door a, door b, door c\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?queen bed\n", + "You examine queen bed. You find key for door b.\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examie\n", + "Not sure what you mean. Type 'explore' or 'examine'.\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?door b\n", + "Not sure what you mean. Type 'explore' or 'examine'.\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door b\n", + "You examine door b. You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is bedroom 2. You find double bed, dresser, door b\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?double bed\n", + "You examine double bed. You find key c.\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?dresser\n", + "You examine dresser. You find key d.\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door b\n", + "You examine door b. You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is bedroom 1. You find queen bed, door a, door b, door c\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door c\n", + "You examine door c. You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in living room\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is living room. You find dining table, door c, door d\n", + "You are now in living room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?dining table\n", + "You examine dining table. There isn't anything interesting about it.\n", + "You are now in living room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door d\n", + "You examine door d. You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "Congrats! You escaped the room \\ (•◡•) / !! \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "game_state = INIT_GAME_STATE.copy()\n", + "\n", + "start_game()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From d15215bb30869db04383c6481b17e3379a5dfb65 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Fri, 18 Oct 2019 14:54:57 +0200 Subject: [PATCH 03/30] Completed lasbs --- .../your-code/Q1.ipynb | 68 ++++-- .../your-code/Q2.ipynb | 85 +++++++- .../your-code/Q3.ipynb | 195 +++++++++++++++++- 3 files changed, 314 insertions(+), 34 deletions(-) diff --git a/module-1_labs/lab-functional-programming/your-code/Q1.ipynb b/module-1_labs/lab-functional-programming/your-code/Q1.ipynb index 8b07d3d..2df0005 100644 --- a/module-1_labs/lab-functional-programming/your-code/Q1.ipynb +++ b/module-1_labs/lab-functional-programming/your-code/Q1.ipynb @@ -19,14 +19,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "# Import required libraries\n", + "import sklearn\n", "\n", "# Define function\n", "def get_bow_from_docs(docs, stop_words=[]):\n", + " corpus=[]\n", + "\n", " \n", " # In the function, first define the variables you will use such as `corpus`, `bag_of_words`, and `term_freq`.\n", " \n", @@ -36,25 +39,33 @@ " Loop `docs` and read the content of each doc into a string in `corpus`.\n", " Remember to convert the doc content to lowercases and remove punctuation.\n", " \"\"\"\n", - "\n", - " \n", + " for doc in docs:\n", + " corpus.append(open(doc,\"r\").read().lower().replace(\".\",\"\"))\n", " \n", + " print(corpus)\n", " \"\"\"\n", " Loop `corpus`. Append the terms in each doc into the `bag_of_words` array. The terms in `bag_of_words` \n", " should be unique which means before adding each term you need to check if it's already added to the array.\n", " In addition, check if each term is in the `stop_words` array. Only append the term to `bag_of_words`\n", " if it is not a stop word.\n", " \"\"\"\n", - "\n", - " \n", + " bag_of_words=[]\n", + " for line in corpus:\n", + " for word in line.split():\n", + " if (word not in bag_of_words) and (word not in stop_words):\n", + " bag_of_words.append(word)\n", " \n", " \n", " \"\"\"\n", " Loop `corpus` again. For each doc string, count the number of occurrences of each term in `bag_of_words`. \n", " Create an array for each doc's term frequency and append it to `term_freq`.\n", " \"\"\"\n", - "\n", - " \n", + " term_freq=[]\n", + " for line in corpus:\n", + " freq=[]\n", + " for word in bag_of_words:\n", + " freq.append(line.split().count(word))\n", + " term_freq.append(freq)\n", " \n", " # Now return your output as an object\n", " return {\n", @@ -75,12 +86,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n", + "{'bag_of_words': ['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at'], 'term_freq': [[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]}\n" + ] + } + ], "source": [ "# Define doc paths array\n", - "docs = []\n", + "docs =[\"../../lab-string-operations/your-code/doc1.txt\",\"../../lab-string-operations/your-code/doc2.txt\",\"../../lab-string-operations/your-code/doc3.txt\"]\n", "\n", "# Obtain BoW from your function\n", "bow = get_bow_from_docs(docs)\n", @@ -100,9 +120,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "frozenset({'during', 'up', 'else', 'alone', 'off', 'such', 'above', 'ours', 'thereafter', 'should', 'him', 'either', 'thereupon', 'mine', 'see', 'amoungst', 'a', 'am', 'becoming', 'ten', 'well', 'yours', 'thick', 'back', 'even', 'get', 'our', 'from', 'other', 'they', 'nothing', 'sincere', 'former', 'although', 'next', 'three', 'indeed', 'two', 'herself', 'bill', 'these', 'most', 'them', 'cant', 'with', 'several', 'had', 'is', 'any', 'no', 'wherever', 'anyhow', 'seemed', 'due', 'before', 'nine', 'hundred', 'ie', 'to', 'whether', 'because', 'find', 'we', 'whenever', 'side', 'couldnt', 'out', 'full', 'rather', 'yourselves', 'have', 'if', 'whole', 'forty', 'how', 'than', 'here', 'however', 'very', 'thereby', 'that', 'might', 'except', 'down', 'every', 'an', 'do', 'through', 'has', 'own', 'top', 'none', 'anything', 'while', 'may', 'name', 'can', 'around', 'towards', 'already', 'himself', 'together', 'thus', 'please', 'further', 'she', 'de', 'once', 'part', 'anyway', 'whoever', 'via', 'within', 'first', 'ltd', 'your', 'enough', 'ourselves', 'now', 'one', 'also', 'serious', 'empty', 'onto', 'cry', 'toward', 'often', 'eg', 'between', 'anywhere', 'only', 'neither', 'all', 'after', 'been', 'yet', 'everywhere', 'whom', 'moreover', 'almost', 'themselves', 'why', 'as', 'therein', 'becomes', 'nowhere', 'somewhere', 'everyone', 'who', 'this', 'whose', 'system', 'some', 'of', 'thru', 'six', 'whereas', 'nor', 'front', 'others', 'inc', 'hence', 'the', 'myself', 'co', 'describe', 'wherein', 'i', 'formerly', 'done', 'more', 'which', 'few', 'being', 'per', 'he', 'so', 'everything', 'sixty', 'least', 'in', 'show', 'etc', 'where', 'seem', 'fill', 'mill', 'it', 'fifty', 'meanwhile', 'her', 'move', 'hereby', 'besides', 'un', 'eight', 'my', 'anyone', 'what', 'both', 'afterwards', 'ever', 'noone', 'nevertheless', 'behind', 'something', 'thence', 'itself', 'found', 'too', 'then', 'on', 'became', 'seeming', 'whereafter', 'those', 'whereupon', 'over', 'throughout', 'latterly', 'its', 'less', 'or', 'never', 'con', 'cannot', 'us', 'not', 'be', 'are', 'seems', 'last', 'hereafter', 'whence', 'beside', 'were', 're', 'since', 'herein', 'put', 'under', 'therefore', 'beyond', 'there', 'four', 'at', 'perhaps', 'again', 'by', 'until', 'amongst', 'fifteen', 'and', 'still', 'each', 'would', 'amount', 'among', 'go', 'twenty', 'will', 'much', 'without', 'about', 'hereupon', 'many', 'hasnt', 'eleven', 'for', 'though', 'along', 'across', 'sometime', 'could', 'their', 'always', 'whereby', 'fire', 'his', 'otherwise', 'was', 'bottom', 'latter', 'whither', 'upon', 'whatever', 'third', 'sometimes', 'yourself', 'detail', 'beforehand', 'me', 'five', 'someone', 'namely', 'you', 'into', 'must', 'nobody', 'same', 'below', 'take', 'become', 'against', 'hers', 'mostly', 'when', 'call', 'elsewhere', 'made', 'but', 'twelve', 'keep', 'give', 'another', 'somehow', 'interest', 'thin'})\n" + ] + } + ], "source": [ "from sklearn.feature_extraction import stop_words\n", "print(stop_words.ENGLISH_STOP_WORDS)" @@ -128,11 +156,19 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'bag_of_words': ['ironhack', 'cool', 'love', 'student'], 'term_freq': [[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]}\n" + ] + } + ], "source": [ - "bow = get_bow_from_docs(bow, stop_words.ENGLISH_STOP_WORDS)\n", + "bow = get_bow_from_docs(docs, stop_words.ENGLISH_STOP_WORDS)\n", "\n", "print(bow)" ] @@ -170,7 +206,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-functional-programming/your-code/Q2.ipynb b/module-1_labs/lab-functional-programming/your-code/Q2.ipynb index f50f442..0fe3bc0 100644 --- a/module-1_labs/lab-functional-programming/your-code/Q2.ipynb +++ b/module-1_labs/lab-functional-programming/your-code/Q2.ipynb @@ -15,12 +15,45 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# Define your string handling functions below\n", - "# Minimal 3 functions\n" + "# Minimal 3 functions\n", + "\n", + "def strip_html_tags(unclean_codes):\n", + " import re\n", + " outcome = re.compile(\"<.*?>\")\n", + " cleantext = re.sub(outcome,\"\",unclean_codes)\n", + " return cleantext\n", + "\n", + "def remove_punctuation(unclean_codes):\n", + " import re\n", + " return re.sub(r'[^\\w\\s]',' ',unclean_codes)\n", + "\n", + "def to_lower_case(unclean_codes):\n", + " return unclean_codes.lower()\n", + "\n", + "def remove_unicode(unclean_codes):\n", + " return (''.join([i for i in unclean_codes if not i.isdigit()]))\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# uncleaned_codes=open('www.coursereport.com_ironhack.html',\"r\").read()\n", + "# import re\n", + "# cleantext1 = re.sub(\"<([^>]*)>\",\"\",uncleaned_codes)\n", + "# cleantext2 = re.sub(r'[^\\w\\s]',' ',cleantext1)\n", + "# cleantext3 = cleantext2.lower()\n", + "# cleantext4 = ''.join([i for i in cleantext3 if not i.isdigit()])\n", + "# print(cleantext4)" ] }, { @@ -32,7 +65,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -44,11 +77,32 @@ " \n", " # write your codes here\n", " \n", + " for doc in docs:\n", + " text=open(doc,\"r\")\n", + " html_stripped_text=strip_html_tags(text.read())\n", + " punctuation_removed_text=remove_punctuation(html_stripped_text)\n", + " lowered_case_text=to_lower_case(punctuation_removed_text)\n", + " cleaned_text=remove_unicode(lowered_case_text)\n", + " corpus.append(cleaned_text)\n", + " \n", + " bag_of_words=[]\n", + " for line in corpus:\n", + " for word in line.split():\n", + " if (word not in bag_of_words) and (word not in stop_words):\n", + " bag_of_words.append(word)\n", + " \n", + " term_freq=[]\n", + " for line in corpus:\n", + " freq=[]\n", + " for word in bag_of_words:\n", + " freq.append(line.split().count(word))\n", + " term_freq.append(freq)\n", + " \n", + " \n", " return {\n", " \"bag_of_words\": bag_of_words,\n", " \"term_freq\": term_freq\n", - " }\n", - " " + " }\n" ] }, { @@ -60,9 +114,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'bag_of_words': ['ironhack', 'reviews', 'course', 'reporttry', 'typekit', 'load', 'catch', 'e', 'javascript_include_tag', 'oss', 'maxcdn', 'com', 'libs', 'htmlshiv', 'js', 'respond', 'min', 'toggle', 'navigationbrowse', 'schoolsfull', 'stack', 'web', 'developmentmobile', 'developmentfront', 'end', 'developmentdata', 'scienceux', 'designdigital', 'marketingproduct', 'managementsecurityotherblogadviceultimate', 'guide', 'choosing', 'schoolbest', 'coding', 'bootcampsbest', 'data', 'sciencebest', 'ui', 'ux', 'designbest', 'cybersecuritywrite', 'reviewsign', 'inironhackamsterdam', 'barcelona', 'berlin', 'madrid', 'mexico', 'city', 'miami', 'paris', 'sao', 'pauloironhackironhackavg', 'rating', 'aboutcoursesreviewsnewscontact', 'alex', 'williams', 'ironhackaboutaboutironhack', 'week', 'time', 'development', 'design', 'bootcamp', 'florida', 'spain', 'france', 'germany', 'uses', 'customized', 'approach', 'education', 'allowing', 'students', 'shape', 'experience', 'based', 'personal', 'goals', 'admissions', 'process', 'includes', 'submitting', 'written', 'application', 'interview', 'technical', 'graduate', 'skilled', 'technologies', 'like', 'javascript', 'html', 'css', 'program', 'covers', 'thinking', 'photoshop', 'sketch', 'balsamiq', 'invision', 'help', 'navigating', 'career', 'prep', 'enhancing', 'digital', 'brand', 'presence', 'networking', 'opportunities', 'chance', 'delve', 'tech', 'community', 'events', 'workshops', 'meetups', 'graduates', 'extensive', 'global', 'network', 'alumni', 'partner', 'companies', 'positioned', 'job', 'developer', 'designer', 'graduation', 'access', 'services', 'prepare', 'search', 'facilitating', 'interviews', 's', 'local', 'ecosystem', 'recent', 'nurse', 'months', 'recomendable', 'fun', 'great', 'afterall', 'newswebinar', 'bootcamphow', 'dafne', 'ironhackhow', 'land', 'spainread', 'articles', 'coursescoursesdata', 'analytics', 'applymysql', 'science', 'git', 'r', 'python', 'machine', 'learning', 'structuresin', 'personstart', 'date', 'scheduledcostn', 'aclass', 'sizen', 'alocationmadridthis', 'enables', 'fledged', 'analyst', 'weeks', 'develop', 'practical', 'skills', 'useful', 'industry', 'ramp', 'pre', 'work', 'learn', 'intermediate', 'topics', 'using', 'pandas', 'engineering', 'create', 'real', 'datasets', 'll', 'use', 'business', 'intelligence', 'doing', 'projects', 'combining', 'programming', 'meant', 'secure', 'spot', 'important', 'skill', 'away', 'ability', 'technology', 'fast', 'moving', 'changing', 'financingdeposit', 'getting', 'inminimum', 'levelbasic', 'knowledgeprep', 'hours', 'online', 'content', 'complete', 'order', 'reach', 'required', 'level', 'module', 'placement', 'testyesinterviewyes', 'context', 'http', 'schema', 'org', 'type', 'description', 'provider', 'localbusiness', 'sameas', 'www', 'en', 'utm_source', 'coursereport', 'amp', 'utm_medium', 'schoolpage', 'applyhtml', 'user', 'cssin', 'personfull', 'start', 'january', 'cost', 'class', 'sizelocationmiami', 'berlinthis', 'immersive', 'catered', 'beginners', 'previous', 'taught', 'fundamentals', 'centered', 'validate', 'ideas', 'research', 'rapid', 'prototyping', 'heuristic', 'evaluation', 'capstone', 'project', 'new', 'product', 'idea', 'validation', 'launch', 'ready', 'freelance', 'turbo', 'charge', 'current', 'professional', 'trajectory', 'financingdepositn', 'agetting', 'levelnone', 'workthe', 'self', 'guided', 'understand', 'basic', 'concepts', 'make', 'works', 'flinto', 'applydesign', 'management', 'personpart', 'november', 'berlinthe', 'meets', 'tuesdays', 'thursdays', 'saturdays', 'additional', 'coursework', 'period', 'mxnfinancingfinancing', 'options', 'available', 'competitive', 'rates', 'fund', 'climb', 'creditgetting', 'algorithms', 'notions', 'object', 'oriented', 'begins', 'applyin', 'october', 'costn', 'alocationamsterdam', 'build', 'applications', 'big', 'emphasis', 'battle', 'tested', 'patterns', 'best', 'practices', 'evaluate', 'problem', 'select', 'optimal', 'solution', 'language', 'framework', 'suited', 'scope', 'addition', 'train', 'think', 'programmer', 'deconstruct', 'complex', 'problems', 'break', 'smaller', 'modules', 'good', 'general', 'understanding', 'various', 'languages', 'understands', 'fundamental', 'structure', 'possesses', 'financingmonthly', 'instalments', 'quotanda', 'scholarship', 'women', 'testyesinterviewyesmore', 'dates', 'march', 'barcelonaapply', 'applyangularjs', 'mongodb', 'express', 'node', 'endin', 'alocationmiami', 'reviewsironhack', 'reviewswrite', 'review', 'sorted', 'default', 'sortdefault', 'sortmost', 'recentmost', 'helpfulfiltered', 'reviewsall', 'reviewsanonymousverifiedcampusesmadridmadridmiamimexico', 'citymiamibarcelonaberlinpariscoursesweb', 'guidelinesonly', 'applicants', 'permitted', 'leave', 'report', 'post', 'clear', 'valuable', 'honest', 'information', 'informative', 'future', 'bootcampers', 'excelled', 'better', 'nice', 'don', 't', 'attack', 'grammar', 'check', 'spelling', 'behalf', 'impersonate', 'person', 'falsely', 'state', 'misrepresent', 'affiliation', 'entity', 'spam', 'fake', 'intended', 'boost', 'lower', 'ratings', 'link', 'sexually', 'explicit', 'abusive', 'hateful', 'threatens', 'harasses', 'submit', 'duplicate', 'multiple', 'deleted', 'email', 'moderators', 'revise', 'click', 'receive', 'note', 'reserve', 'right', 'remove', 'commentary', 'violates', 'policies', 'log', 'nbsp', 'sign', 'continue', 'hey', 'hack', 'reactor', 'graduated', 'prior', 'titletitledescriptiondescription', 'ratingoverall', 'curriculum', 'instructors', 'assistance', 'applicableschool', 'detailscampusselect', 'campus', 'amsterdam', 'paulo', 'othercourseselect', 'school', 'affiliationschool', 'student', 'applicantgraduation', 'month', 'february', 'april', 'june', 'july', 'august', 'september', 'december', 'year', 'otherotherabout', 'younamereview', 'anonymously', 'non', 'anonymous', 'verified', 'trustworthy', 'shown', 'readers', 'reviewer', 'titleyou', 'ironhackfrom', 'maria', 'luisa', 'linkedinfrom', 'monthsoverall', 'wanted', 'turn', 'life', 'liked', 'maybe', 'fear', 'did', 'luckily', 'got', 'changed', 'methodology', 'way', 'teaching', 'makes', 'record', 'recommend', 'doubt', 'helpfulflag', 'inappropriate', 'nicolae', 'alexe', 'linkedin', 'overall', 'senior', 'computer', 'degree', 'feeling', 'missing', 'academic', 'contact', 'heard', 'knew', 'needed', 'completely', 'day', 'atmosphere', 'amazing', 'lead', 'teacher', 'key', 'elements', 'ta', 'supports', 'ironhackfun', 'gabriel', 'cebrián', 'lucas', 'githubfun', 'afteroverall', 'came', 'look', 'loved', 'studied', 'learnt', 'somwthing', 'really', 'recomend', 'jacob', 'casado', 'pérez', 'junior', 'fullstack', 'developeroverall', 'going', 'music', 'linking', 'change', 'blink', 'eye', 'decided', 'world', 'reason', 'background', 'desire', 'improve', 'little', 'grew', 'able', 'overcome', 'challenges', 'thought', 'possible', 'enormous', 'support', 'assistants', 'colleges', 'friends', 'difficult', 'ironhacknew', 'esperanza', 'linkedinnew', 'learningoverall', 'total', 'totally', 'possibilities', 'disciplines', 'challenge', 'absolutely', 'repeat', 'quality', 'uncompareable', 'worked', 'biomedical', 'just', 'looking', 'style', 'ironhackironhack', 'doesn', 'teach', 'code', 'teaches', 'ruben', 'linkedinironhack', 'psychology', 'technician', 'assistant', 'intense', 'enriching', 'curve', 'verticle', 'upwards', 'started', 'm', 'amazed', 'know', 'simulates', 'perfectly', 'working', 'environment', 'teams', 'tools', 'resolve', 'virtual', 'profesional', 'visited', 'tuenti', 'spanish', 'company', 'understood', 'talking', 'helps', 'discover', 'want', 'definetly', 'say', 'coder', 'ironhackabout', 'experince', 'pablo', 'tabaoda', 'ortiz', 'linkedinabout', 'experinceoverall', 'talk', 'completing', 'feel', 'impressed', 'facilities', 'teachers', 'fully', 'recommendation', 'professionals', 'renew', 'people', 'trying', 'ironhackweb', 'dev', 'ricardo', 'alonzo', 'linkedinweb', 'devoverall', 'perfect', 'opens', 'doors', 'trully', 'impresive', 'short', 'ironhackan', 'awesome', 'kickstart', 'carreer', 'jhon', 'scarzo', 'linkedinan', 'goal', 'basics', 'core', 'provide', 'rounded', 'incentivize', 'ironhackreally', 'cool', 'sara', 'linkedinreally', 'motivated', 'things', 'thanks', 'integrated', 'knowledge', 'powerful', 'creating', 'different', 'enjoying', 'disposed', 'recommendable', 'ironhackchange', 'yago', 'vega', 'linkedinchange', 'hard', 'word', 'experienced', 'commitment', 'bootcamps', 've', 'met', 'learned', 'glad', 'matter', 'come', 'haven', 'read', 'single', 'line', 'decision', 'worth', 'penny', 'angular', 'react', 'rollercoaster', 'emotions', 'lot', 'today', 'officially', 'wouldn', 'browsing', 'educational', 'stop', 'trust', 'join', 'ironhackers', 'connected', 'helping', 'everyday', 'incredible', 'diego', 'méndez', 'peño', 'coming', 'university', 'exceeded', 'expectations', 'gave', 'prepared', 'enthusiast', 'live', 'teo', 'diaz', 'linkedinhow', 'weeksoverall', 'usual', 'belong', 'family', 'colleagues', 'finishing', 'realized', 'enter', 'guarantee', 'ironhackbest', 'ronald', 'linkedinbest', 'yes', 'went', 'traditional', 'ended', 'saw', 'organization', 'cares', 'employees', 'clients', 'run', 'ask', 'attending', 'tell', 'happy', 'included', 'culture', 'established', 'weekly', 'surveys', 'aim', 'gathering', 'feedback', 'regularly', 'shows', 'care', 'highly', 'regarded', 'personalble', 'helpful', 'guiding', 'financial', 'aid', 'processing', 'jessica', 'instrumental', 'newly', 'registered', 'foot', 'questions', 'answered', 'prework', 'free', 'standing', 'david', 'karen', 'lum', 'strong', 'progress', 'continuing', 'journey', 'unavoidable', 'topping', 'daniel', 'brito', 'maniacal', 'drive', 'grads', 'necessary', 'employment', 'resources', 'expect', 'fail', 'ironhacka', 'unique', 'oportunity', 'montserrat', 'monroy', 'linkedina', 'oportunityoverall', 'trip', 'area', 'option', 'abilities', 'materialize', 'solve', 'coordinated', 'effort', 'accompanying', 'sharing', 'achievements', 'lived', 'generating', 'gratitude', 'respect', 'accompanied', 'study', 'smile', 'kind', 'words', 'helped', 'processes', 'administrative', 'ironhackgreat', 'fernanda', 'quezada', 'githubgreat', 'decisionoverall', 'deciding', 'signing', 'researched', 'boot', 'camps', 'attracted', 'latest', 'staff', 'communicative', 'knowledgeable', 'classroom', 'high', 'respectful', 'eager', 'impacted', 'growing', 'ironhackmy', 'favorite', 'till', 'salemm', 'linkedinmy', 'nowoverall', 'experiences', 'wrapped', 'sense', 'values', 'worldwide', 'juliet', 'urbina', 'considered', 'carefully', 'ride', 'regret', 'sooner', 'challenging', 'guidance', 'encouragement', 'readily', 'accomplishment', 'essential', 'opened', 'door', 'honestly', 'structured', 'importantly', 'rezola', 'recently', 'completed', 'expand', 'lifestyle', 'fantastic', 'law', 'beginning', 'warned', 'closest', 'relatives', 'encouraged', 'showed', 'huge', 'importance', 'currently', 'living', 'classmates', 'asking', 'times', 'bad', 'touch', 'definetely', 'pleased', 'aspect', 'spend', 'intensively', 'long', 'updated', 'firms', 'requisites', 'mean', 'social', 'speeches', 'enrich', 'appetite', 'joshua', 'matos', 'wished', 'shifted', 'positive', 'small', 'excited', 'holds', 'gaining', 'developers', 'ironhackmost', 'jonathan', 'harris', 'linkedinmost', 'searching', 'stay', 'chose', 'worried', 'reasons', 'easy', 'manage', 'choice', 'case', 'scenario', 'constantly', 'patience', 'felt', 'possibly', 'wasn', 'super', 'actually', 'pushed', 'limit', 'breaking', 'maximum', 'camp', 'ironhackkitchens', 'computers', 'eran', 'usha', 'linkedinkitchens', 'computersoverall', 'seemingly', 'enrolled', 'novels', 'areas', 'assitants', 'special', 'relationship', 'fellow', 'seeing', 'confident', 'entering', 'profession', 'hospitality', 'ironhackvery', 'víctor', 'peguero', 'garcía', 'founder', 'leemur', 'app', 'linkedinvery', 'improved', 'approached', 'apps', 'years', 'ago', 'designing', 'qualitative', 'improvement', 'jose', 'arjona', 'past', 'peaked', 'began', 'taking', 'courses', 'ran', 'dive', 'pm', 'including', 'joke', 'invest', 'immediately', 'sent', 'material', 'willing', 'instructor', 'cohort', 'nick', 'downside', 'definitely', 'proficiency', 'subject', 'sandra', 'marcos', 'ian', 'familiar', 'extremely', 'having', 'dedicated', 'struggle', 'sure', 'need', 'won', 'fall', 'tweaking', 'days', 'aside', 'wrong', 'obsolete', 'issues', 'update', 'seen', 'taken', 'steps', 'means', 'seriously', 'brush', 'input', 'rest', 'applied', 'hasn', 'missed', 'beat', 'try', 'owner', 'happily', 'hiring', 'fair', 'acquainted', 'man', 'named', 'advice', 'walks', 'building', 'resume', 'lets', 'attend', 'brings', 'source', 'checking', 'portfolio', 'group', 'showcase', 'step', 'event', 'arranges', 'sit', 'introduction', 'eventually', 'didn', 'ultimately', 'comfortable', 'shouldn', 'nail', 'hired', 'finding', 'placements', 'meetings', 'guides', 'reminds', 'applying', 'slack', 'hunt', 'instantly', 'harder', 'fresh', 'hackerrank', 'codewars', 'jobs', 'handfuls', 'phone', 'half', 'stopped', 'kept', 'stressful', 'quit', 'conclusion', 'given', 'hand', 'hold', 'invested', 'fulfilling', 'far', 'disappointed', 'bit', 'tons', 'message', 'gladly', 'answer', 'ironhackawesome', 'alexander', 'teodor', 'mazilu', 'linkedinawesome', 'technological', 'base', 'wonderful', 'struggling', 'exceptional', 'manuel', 'colby', 'adrian', 'trouble', 'bugs', 'lost', 'patient', 'extra', 'mile', 'deeply', 'early', 'weekends', 'spending', 'whiteboard', 'grateful', 'professor', 'alan', 'natural', 'aptitude', 'courteous', 'welcoming', 'running', 'scientists', 'types', 'likely', 'explain', 'ways', 'terms', 'complexity', 'memory', 'expected', 'lessons', 'particularly', 'rewarding', 'knack', 'abstract', 'digestible', 'bits', 'collectively', 'attempt', 'protip', 'volunteer', 'presents', 'noticed', 'brave', 'retained', 'walked', 'solid', 'gives', 'marker', 'home', 'house', 'write', 'objectives', 'examples', 'force', 'brain', 'reconcile', 'daily', 'basis', 'certainly', 'frustrating', 'counseled', 'counselor', 'earth', 'wisdom', 'share', 'interviewing', 'construct', 'specifically', 'tells', 'accepting', 'offers', 'insight', 'willingness', 'supportive', 'starting', 'thankful', 'humbled', 'opportunity', 'absolute', 'pleasure', 'deal', 'blown', 'hackathon', 'impressive', 'legitimately', 'wish', 'blew', 'mind', 'systematic', 'creativity', 'organized', 'wrap', 'wholeheartedly', 'recommended', 'ironhacks', 'actively', 'participate', 'engaged', 'attitude', 'hellip', 'rsaquo', 'raquo', 'newsnewsour', 'ironhackwebinar', 'bootcamplauren', 'stewart', 'york', 'academyfullstack', 'academydid', 'switch', 'careers', 'hour', 'webinar', 'talked', 'panel', 'academy', 'hear', 'balanced', 'commitments', 'plus', 'audience', 'rewatch', 'reading', 'rarr', 'ironhackimogen', 'crispe', 'dipping', 'toes', 'graphic', 'finance', 'entrepreneurship', 'olca', 'tried', 'enroll', 'english', 'satisfying', 'everis', 'european', 'consulting', 'firm', 'q', 'path', 'diverse', 'originally', 'austria', 'bachelor', 'multimedia', 'london', 'honolulu', 'video', 'production', 'imagined', 'mba', 'vienna', 'san', 'increase', 'bored', 'figure', 'interested', 'focused', 'internet', 'enjoyed', 'researching', 'philosophical', 'aspects', 'direction', 'heading', 'told', 'sounded', 'intimidating', 'realize', 'exactly', 'goes', 'personality', 'love', 'traveled', 'choose', 'college', 'beginner', 'talented', 'field', 'moved', 'fell', 'confirmed', 'startup', 'scene', 'd', 'flexibility', 'remotely', 'allow', 'genuinely', 'pursuing', 'passing', 'exercises', 'passed', 'accepted', 'tough', 'split', 'pretty', 'doable', 'second', 'final', 'demanding', 'remember', 'finished', 'quite', 'lectures', 'character', 'frustrations', 'overcoming', 'straight', 'oldest', 'guy', 'late', 'average', 'somebody', 'international', 'europeans', 'latin', 'americans', 'built', 'created', 'game', 'blackjack', 'accomplished', 'capable', 'clueless', 'believe', 'hunting', 'soon', 'guarantees', 'recruiters', 'quick', 'sonia', 'adviser', 'landed', 'tas', 'milk', 'caring', 'congrats', 'contacted', 'active', 'reaching', 'replied', 'office', 'called', 'shortly', 'received', 'offer', 'exhausted', 'graduating', 'took', 'holidays', 'consultancy', 'typescript', 'purely', 'organizations', 'apply', 'governmental', 'loans', 'team', 'zaragoza', 'manager', 'brussels', 'belgium', 'branches', 'gender', 'covered', 'evolving', 'frameworks', 'provided', 'easily', 'inevitably', 'joined', 'grown', 'independent', 'afraid', 'touching', 'developed', 'passion', 'weird', 'sounds', 'enjoy', 'solving', 'academia', 'regretted', 'trends', 'client', 'implementing', 'logic', 'functions', 'corporation', 'biggest', 'roadblock', 'stuck', 'frustrated', 'block', 'logically', 'calm', 'results', 'stayed', 'involved', 'left', 'gotten', 'cohorts', 'tight', 'hosts', 'prioritize', 'making', 'aware', 'mental', 'limits', 'stupid', 'master', 'ahead', 'website', 'authorimogen', 'writer', 'producer', 'loves', 'writing', 'journalism', 'newspapers', 'news', 'websites', 'england', 'dubai', 'zealand', 'lives', 'brooklyn', 'ny', 'spainlauren', 'ironhackdemand', 'designers', 'limited', 'silicon', 'valley', 'realizing', 'cities', 'known', 'architectural', 'hubs', 'sofía', 'dalponte', 'demand', 'outcomes', 'joana', 'cahner', 'supported', 'market', 'hot', 'sort', 'tips', 'spotlight', 'berlinlauren', 'proving', 'campuses', 'launching', 'advantage', 'spoke', 'emea', 'expansion', 'alvaro', 'rojas', 'wework', 'space', 'recruiting', 'lots', 'partners', 'grad', 'strategy', 'strategic', 'startups', 'california', 'embassy', 'los', 'angeles', 'launched', 'venture', 'mission', 'stories', 'backgrounds', 'gonzalo', 'manrique', 'founders', 'europe', 'middle', 'eastern', 'africa', 'position', 'brainer', 'pick', 'everybody', 'literate', 'planning', 'require', 'software', 'regardless', 'machines', 'dominate', 'speak', 'perspective', 'easier', 'benefits', 'prospective', 'thing', 'alum', 'role', 'vp', 'ops', 'berriche', 'plan', 'rank', 'according', 'factors', 'determinants', 'success', 'finally', 'clearly', 'set', 'main', 'responsible', 'operations', 'hr', 'setting', 'legal', 'securing', 'financing', 'dream', 'marketing', 'tailor', 'customer', 'segments', 'awareness', 'value', 'proposition', 'convinced', 'focus', 'strongly', 'partnering', 'n', 'moberries', 'launches', 'stood', 'place', 'present', 'strongest', 'ecosystems', 'largest', 'quarter', 'crazy', 'disruptive', 'booming', 'attract', 'retain', 'flocking', 'plenty', 'gap', 'older', 'digitalization', 'mckinsey', 'released', 'saying', 'point', 'pay', 'universities', 'cater', 'believes', 'private', 'public', 'failing', 'adapt', 'revolution', 'age', 'requires', 'provides', 'impact', 'condensed', 'objective', 'zero', 'programs', 'providing', 'channels', 'stand', 'competition', 'laser', 'enabling', 'achieve', 'employable', 'ensure', 'employers', 'hire', 'behavioral', 'giving', 'organizing', 'meet', 'changers', 'possibility', 'specialize', 'realizes', 'does', 'accommodate', 'starts', 'bigger', 'forward', 'grow', 'number', 'ensuring', 'ratio', 'knows', 'leads', 'example', 'gone', 'play', 'incredibly', 'divided', 'backend', 'microservices', 'api', 'ruby', 'rails', 'consistent', 'allows', 'loop', 'sticking', 'iterate', 'located', 'atrium', 'tower', 'potsdamer', 'platz', 'room', 'accessible', 'town', 'central', 'location', 'terrace', 'amenities', 'coffee', 'snacks', 'views', 'envision', 'landing', 'reputation', 'signed', 'mobile', 'bank', 'talks', 'said', 'google', 'twitter', 'visa', 'rocket', 'magic', 'leap', 'profiles', 'partnerships', 'pool', 'locally', 'entry', 'staying', 'communities', 'resumes', 'decide', 'abroad', 'arise', 'wrote', 'blog', 'piece', 'mingle', 'bunch', 'informal', 'workshop', 'considering', 'form', 'scared', 'tendency', 'resistant', 'encourage', 'feet', 'wet', 'programmers', 'faith', 'commit', 'rate', 'rigorous', 'majority', 'succeed', 'authorlauren', 'communications', 'strategist', 'passionate', 'techonology', 'arts', 'youth', 'affairs', 'philanthropy', 'richmond', 'va', 'resides', 'ca', 'podcastimogen', 'revaturegeneral', 'assemblyelewa', 'educationholberton', 'schoolflatiron', 'schoolbloceditandelaironhackgalvanizecoding', 'dojothinkfulred', 'academyorigin', 'academyhackbright', 'academycoder', 'campsmuktek', 'academywelcome', 'roundup', 'busy', 'published', 'demographics', 'promising', 'diversity', 'significant', 'fundraising', 'announcement', 'journalists', 'exploring', 'apprenticeship', 'versus', 'newest', 'schools', 'posts', 'listen', 'podcast', 'lauren', 'alexandre', 'continually', 'connect', 'drew', 'equity', 'jumia', 'african', 'amazon', 'head', 'north', 'managing', 'director', 'tunisia', 'ariel', 'inspired', 'vision', 'attended', 'potential', 'model', 'america', 'keen', 'receptive', 'conversation', 'fit', 'markets', 'open', 'preparation', 'consider', 'human', 'gm', 'convince', 'scratch', 'leverage', 'relations', 'integrate', 'administration', 'leaders', 'globally', 'opening', 'estimated', 'deficit', 'generation', 'u', 'attractive', 'preferred', 'facebook', 'multinationals', 'maturing', 'significantly', 'vc', 'accelerators', 'builders', 'friendly', 'penetrate', 'competitors', 'obviously', 'ties', 'excite', 'pop', 'operate', 'standards', 'bringing', 'raising', 'large', 'ibm', 'satisfaction', 'operating', 'continued', 'methods', 'offices', 'insurgentes', 'coworking', 'alongside', 'dynamic', 'exciting', 'colonia', 'napoles', 'district', 'rooms', 'x', 'classes', 'rolling', 'quantitative', 'accept', 'selective', 'worker', 'money', 'intensive', 'collect', 'scale', 'efficiently', 'loops', 'specificities', 'instance', 'seven', 'grows', 'linio', 'tip', 'mexican', 'invited', 'talent', 'produce', 'targeting', 'guadalajara', 'monterrey', 'entrepreneurs', 'focuses', 'ambitions', 'iron', 'normal', 'unless', 'meetup', 'suggestions', 'th', 'lifetime', 'download', 'page', 'motivations', 'committed', 'comments', 'center', 'sweepstakes', 'winner', 'luis', 'nagel', 'ironhacklauren', 'entered', 'win', 'gift', 'card', 'leaving', 'lucky', 'caught', 'advertising', 'title', 'devialab', 'agency', 'mainly', 'close', 'entrepreneur', 'agenda', 'offered', 'visit', 'georgia', 'campsthe', 'yarddev', 'bootcampup', 'academyusc', 'viterbi', 'campcovalencedeltav', 'schoolsouthern', 'institutelaunch', 'academyse', 'factorywethinkcode_devtree', 'academyironhackunit', 'factorytk', 'academymetiscode', 'platooncodeupcoding', 'dojouniversity', 'campsthinkfuluniversity', 'minnesota', 'campshackbright', 'academyuniversity', 'summary', 'developments', 'closure', 'major', 'dived', 'reports', 'investments', 'initiatives', 'round', 'parislauren', 'locations', 'françois', 'fillette', 'successful', 'dimensions', 'related', 'players', 'docs', 'tremendously', 'francisco', 'codingame', 'cofounders', 'embraced', 'execute', 'couple', 'later', 'happier', 'wake', 'morning', 'motivation', 'funding', 'nd', 'exponentially', 'station', 'f', 'xavier', 'niel', 'cofounder', 'incubator', 'growth', 'fueled', 'increasing', 'economy', 'shortage', 'filled', 'targets', 'appeared', 'apart', 'dedicate', 'hands', 'submitted', 'coaching', 'connections', 'let', 'discuss', 'neighborhood', 'arrondissement', 'near', 'opera', 'metro', 'lines', 'bus', 'bike', 'stations', 'car', 'magnificent', 'patio', 'meeting', 'assignments', 'tracks', 'ones', 'chosen', 'popular', 'relevant', 'expertise', 'mentors', 'focusing', 'integrating', 'ex', 'meteor', 'industries', 'rising', 'media', 'entertainment', 'agencies', 'assisted', 'coach', 'session', 'sponsored', 'florian', 'jourda', 'st', 'engineer', 'box', 'scaled', 'spent', 'chief', 'officer', 'bayes', 'ngo', 'funded', 'unemployment', 'usually', 'monitoring', 'operational', 'execution', 'recruit', 'question', 'depends', 'transparent', 'dedicating', 'similar', 'difference', 'rooftop', 'floor', 'organize', 'lunches', 'approaching', 'employer', 'realities', 'needs', 'partnered', 'drivy', 'leader', 'peer', 'rental', 'equivalent', 'east', 'stootie', 'kima', 'ventures', 'series', 'accomplish', 'corporations', 'telecom', 'mastering', 'volumes', 'enthusiasm', 'expressed', 'metrics', 'employee', 'hacker', 'freelancers', 'remote', 'constant', 'interaction', 'wants', 'intro', 'openclassrooms', 'codecademy', 'codecombat', 'numa', 'outstanding', 'specific', 'topic', 'apprehended', 'thoughts', 'exists', 'send', 'seats', 'typeform', 'episode', 'bootcampgreen', 'fox', 'academyrevaturegrand', 'circusacclaim', 'educationgeneral', 'assemblyplaycraftingironhackuniversity', 'arizona', 'campsgalvanizehack', 'reactortechbig', 'sky', 'academycoding', 'dojoumass', 'amherst', 'campaustin', 'educationcode', 'chrysalisdeep', 'codingunh', 'campqueens', 'academyzip', 'wilmingtondev', 'academycodemissed', 'collected', 'handy', 'reporting', 'scholarships', 'added', 'interesting', 'directory', 'learntocode', 'resolutionlauren', 'bootcampcodesmithv', 'schoolleveldavinci', 'codersgrace', 'hopper', 'programgeneral', 'assemblyclaim', 'academyflatiron', 'schoolwe', 'itironhackmetisbov', 'academyhack', 'reactordesignlabthe', 'nltech', 'elevatorthinkfullearningfuzered', 'academygrowthx', 'academystartup', 'institutewyncodefullstack', 'academyturntotechcoding', 'templeit', 'reflect', 'store', 'certain', 'unmet', 'bet', 'github', 'streak', 'cheers', 'resolutions', 'list', 'plunge', 'cross', 'compiled', 'stellar', 'offering', 'dish', 'aspiring', 'coders', 'roundupimogen', 'bootcampcoding', 'houserevaturefounders', 'codersasi', 'sciencegeneral', 'assemblylabsiotopen', 'cloud', 'academyhackeryouflatiron', 'schooleleven', 'academythe', 'firehose', 'projectironhacksoftware', 'guildgalvanizehack', 'reactorcodingnomadsupscale', 'dojothinkfulnyc', 'epitechorigin', 'academykeepcoding', 'academyuc', 'irvine', 'campswelcome', 'monthly', 'happenings', 'announcements', 'uber', 'tokyo', 'staffing', 'jacqueline', 'pastore', 'ironhackliz', 'eggleston', 'testing', 'sat', 'superstar', 'listening', 'empathy', 'communication', 'produces', 'unicorns', 'incorporating', 'bootstrap', 'changer', 'film', 'creative', 'boston', 'temping', 'capital', 'harvard', 'mit', 'smart', 'lotus', 'notes', 'usability', 'labs', 'tester', 'bentley', 'masters', 'magical', 'ethnography', 'microsoft', 'staples', 'adidas', 'reebok', 'fidelity', 'federal', 'jp', 'morgan', 'chase', 'h', 'novartis', 'pharmaceuticals', 'zumba', 'fitness', 'gofer', 'tool', 'effective', 'quickly', 'verticals', 'platforms', 'hadn', 'used', 'refine', 'particular', 'stands', 'referred', 'respected', 'conferences', 'lecture', 'foundations', 'principles', 'deliver', 'activities', 'tests', 'products', 'pieces', 'instead', 'demonstrate', 'foray', 'marcelo', 'paiva', 'follow', 'lifecycles', 'marketplace', 'target', 'deliverables', 'turning', 'concept', 'architecture', 'low', 'micro', 'models', 'principal', 'visual', 'beasts', 'implement', 'designs', 'marketable', 'individual', 'breakouts', 'push', 'trend', 'generalist', 'larger', 'broader', 'specialized', 'niches', 'ideal', 'tackled', 'groups', 'flow', 'experts', 'sections', 'g', 'differ', 'jump', 'shoes', 'mix', 'include', 'sony', 'profit', 'crack', 'sector', 'schedule', 'approximately', 'outside', 'largely', 'sum', 'units', 'cover', 'completes', 'individually', 'entire', 'result', 'prototypes', 'carry', 'circumstances', 'varying', 'roles', 'fields', 'depending', 'interests', 'houses', 'introductory', 'ixda', 'resource', 'mail', 'admissionsmia', 'profile', 'authorliz', 'breakfast', 'tacos', 'liz', 'quora', 'youtube', 'summer', 'bootcampliz', 'logit', 'academylevelgeneral', 'assemblyflatiron', 'schoolironhackmetisnyc', 'academynew', 'academymake', 'schoolwyncodetech', 'southfullstack', 'academycode', 'fellowssee', 'recommendations', 'incoming', 'freshman', 'offerings', 'bootcampimogen', 'ironhacktech', 'elevatorwyncodezip', 'wilmingtonwe', 'picked', 'range', 'chicago', 'seattle', 'austin', 'aren', 'comparison', 'immersivesimogen', 'codesmithv', 'schooldevmountaingrand', 'circusredwood', 'grace', 'schoollaunch', 'academyrefactoruironhacksoftware', 'guildapp', 'reactorrithm', 'schoolcoding', 'dojodevpoint', 'labsmakersquaredigitalcraftsnew', 'academylearn', 'academybottegawyncodehackbright', 'academycodecraft', 'schoolfullstack', 'fellowsturingcoding', 'templehow', 'wondering', 'costs', 'tuition', 'deferred', 'budget', 'usa', 'site', 'longer', 'comparable', 'listed', 'links', 'detailed', 'pages', 'cracking', 'miamiliz', 'ios', 'expanded', 'acceptance', 'sneak', 'peek', 'typically', 'falls', 'stages', 'takes', 'entirety', 'submission', 'wanting', 'nutshell', 'peak', 'admission', 'committee', 'attracts', 'flight', 'attendants', 'travelling', 'yoginis', 'cs', 'ivy', 'leagues', 'democratic', 'sorts', 'pedigree', 'tend', 'perform', 'necessarily', 'sample', 'motivates', 'happens', 'function', 'inside', 'suggest', 'ace', 'applicant', 'midst', 'materials', 'address', 'https', 'autotelicum', 'io', 'smooth', 'coffeescript', 'cats', 'jsforcats', 'qualities', 'reveals', 'candidates', 'indicator', 'curiosity', 'probably', 'led', 'consists', 'minutes', 'breadth', 'exact', 'spots', 'gets', 'roots', 'visas', 'tourist', 'countries', 'represented', 'thailand', 'pakistan', 'brazil', 'travel', 'melting', 'pot', 'combined', 'weren', 'article', 'southharry', 'hantel', 'devmountaingeneral', 'assemblynashville', 'schoolironhackaustin', 'academycodeupcodecamp', 'charlestoncoding', 'dojomakersquarecoder', 'foundrywyncodetech', 'southcoder', 'slide', 'roof', 'lee', 'south', 'mason', 'dixon', 'southern', 'united', 'states', 'carolinas', 'texas', 'covering', 'gorka', 'magana', 'rushmore', 'fm', 'freelancer', 'developing', 'concrete', 'platform', 'drove', 'basically', 'adwords', 'avoid', 'merit', 'separated', 'approved', 'men', 'endless', 'agile', 'continuously', 'adapting', 'burnout', 'tired', 'boring', 'ugly', 'challenged', 'situation', 'following', 'speed', 'proud', 'finish', 'collaboration', 'designed', 'snapreminder', 'tuned', 'entail', 'releasing', 'directly', 'formally', 'exclusive', 'scholarshipsliz', 'makers', 'academydevmountainrutgers', 'bootcampsflatiron', 'schoolstarter', 'leagueblocironhackmetisdigital', 'institutex', 'ilviking', 'schoolviking', 'schoolguild', 'architectsdevpoint', 'labsthinkfullearningfuzedigitalcraftsnyc', 'academybyte', 'academydevleaguesabiocode', 'fellowsturntotechdevcodecamplighthouse', 'labscoding', 'templelooking', 'discounts', 'promo', 'codes', 'jaime', 'munoz', 'soft', 'managed', 'cice', 'luck', 'devta', 'singh', 'face', 'revelation', 'moment', 'fact', 'offline', 'php', 'improving', 'faster', 'stimulate', 'trazos', 'pushing', 'turned', 'price', 'admire', 'keyvan', 'akbary', 'carlos', 'blé', 'fortunately', 'asked', 'explanations', 'solved', 'guess', 'thinks', 'imagine', 'postgresql', 'medical', 'appointments', 'demo', 'marketgoo', 'seo', 'mysql', 'phinx', 'phpactiverecord', 'collaborating', 'decisions', 'behavior', 'handle', 'contacts', 'knowhow', 'marta', 'fonda', 'compete', 'succeeded', 'floqq', 'degrees', 'studies', 'interviewed', 'c', 'java', 'sql', 'lacking', 'modern', 'places', 'lean', 'teamwork', 'surrounded', 'country', 'convert', 'fastest', 'save', 'features', 'responsive', 'jquery', 'functionalities', 'geolocalization', 'storage', 'frontend', 'efforts', 'finalists', 'hackshow', 'nowadays', 'impossible', 'º', 'allowed', 'born', 'quinones', 'american', 'sets', 'puerto', 'rico', 'comes', 'construction', 'civil', 'infrastructure', 'household', 'educators', 'parents', 'father', 'dna', 'wharton', 'ed', 'iterating', 'issue', 'brilliant', 'mvp', 'outsource', 'acquire', 'compressed', 'earlier', 'traction', 'region', 'geared', 'opposed', 'admit', 'hesitant', 'newbie', 'appealing', 'folks', 'professionalize', 'analytical', 'hardcore', 'lesson', 'fly', 'filter', 'disparate', 'levels', 'arriving', 'differently', 'velocities', 'styles', 'pace', 'yeah', 'scenes', 'food', 'parties', 'integral', 'society', 'higher', 'arena', 'fashion', 'trained', 'foreigners', 'eu', 'mobility', 'union', 'citizen', 'requirements', 'northern', 'weather', 'beaches', 'thriving', 'cosmopolitan', 'emerging', 'stage', 'acquired', 'substantial', 'rounds', 'driver', 'employ', 'engineers', 'northeast', 'enrolling', 'incur', 'red', 'tape', 'raised', 'bootstrapped', 'sinatra', 'culmination', 'believers', 'flipped', 'reduce', 'theory', 'extent', 'videos', 'homework', 'weekend', 'demands', 'fragmented', 'gazillion', 'percent', 'obsessed', 'instrument', 'differentiates', 'obsession', 'clean', 'format', 'slightly', 'android', 'capped', 'view', 'instructing', 'parts', 'fulltime', 'peers', 'connects', 'professors', 'vested', 'prove', 'screen', 'minute', 'skype', 'intrinsic', 'monday', 'friday', 'saturday', 'sunday', 'beams', 'energy', 'positivity', 'assess', 'programmed', 'cases', 'coded', 'valuation', 'founding', 'speakers', 'serves', 'identify', 'bring', 'leading', 'cv', 'optimize', 'conduct', 'luxury', 'paying', 'fee', 'charging', 'placing', 'placed', 'nearly', 'accreditation', 'buzz', 'happening', 'radar', 'pressure', 'government', 'attention', 'interfere', 'institutions', 'expanding', 'anytime', 'regions', 'closer', 'ironhackamsterdam', 'paulocontact', 'ironhackschool', 'infoschool', 'infosave', 'websitehi', 'comfront', 'developmentfull', 'developmentux', 'designamsterdambarcelonaberlinmadridmexico', 'citymiamiparissao', 'paulomore', 'informationmore', 'accepts', 'gi', 'assistancelicensinglicensed', 'dept', 'housing', 'corporate', 'trainingnot', 'match', 'optional', 'inselect', 'campusamsterdam', 'pauloany', 'acknowledge', 'shared', 'verify', 'viaemaillinkedingithubby', 'clicking', 'agree', 'details', 'publish', 'reviewthanks', 'browse', 'schoolsvar', 'newwindow', 'openverify', 'provider_url', 'var', 'screenx', 'typeof', 'window', 'undefined', 'screenleft', 'screeny', 'screentop', 'outerwidth', 'document', 'body', 'clientwidth', 'outerheight', 'clientheight', 'parseint', 'width', 'height', 'tostring', 'params', 'review_id', 'url', 'cursor', 'login', 'return', 'false', 'emailverify', 'confirmation', 'hide', 'buffer', 'delete', 'reviewclose_instructions_modal', 'instructions', 'overlay', 'fadeout', 'confirm', 'close_instructions_modal', 'closethismodal', 'overflow', 'scroll', 'viewscholarships', 'href', 'hang', 'whoasomething', 'terribly', 'fix', 'againshare', 'copy', 'clipboardfind', 'thebestbootcampfor', 'youtell', 'highest', 'rated', 'matchedthanks', 'ultimate', 'otherlooks', 'mailing', 'shoot', 'safe', 'reporthomeschoolsblogadvicewrite', 'reviewaboutconnect', 'uslegalterms', 'serviceprivacy', 'policyfollow', 'usresearchultimate', 'bootcampbest', 'size', 'studycourse', 'usresearchlog', 'inforgot', 'password', 'ororlog', 'claim', 'track', 'compare', 'account', 'current_user', 'analysis', 'wikipedia', 'encyclopedia', 'navigation', 'statisticsdata', 'visualization', 'exploratory', 'interactive', 'descriptive', 'statistics', 'inferential', 'statistical', 'graphics', 'plot', 'infographic', 'figures', 'tamara', 'munzner', 'ben', 'shneiderman', 'john', 'w', 'tukey', 'edward', 'tufte', 'viégas', 'hadley', 'wickham', 'chart', 'bar', 'histogram', 'scatterplot', 'boxplot', 'pareto', 'pie', 'control', 'stem', 'leaf', 'display', 'cartogram', 'sparkline', 'table', 'database', 'chartjunk', 'perception', 'regression', 'misleading', 'graph', 'vte', 'computational', 'physics', 'numerical', 'simulation', 'potentialsmorse', 'lennard', 'jones', 'yukawa', 'morse', 'fluid', 'dynamicsfinite', 'finite', 'volume', 'element', 'boundary', 'lattice', 'boltzmann', 'riemann', 'solver', 'dissipative', 'particle', 'dynamics', 'smoothed', 'hydrodynamics', 'turbulence', 'monte', 'carlo', 'methodsintegration', 'gibbs', 'sampling', 'metropolis', 'algorithm', 'particlen', 'cell', 'molecular', 'scientistsgodunov', 'ulam', 'von', 'neumann', 'galerkin', 'lorenz', 'wilson', 'inspecting', 'cleansing', 'transforming', 'modeling', 'discovering', 'informing', 'conclusions', 'supporting', 'facets', 'approaches', 'encompassing', 'techniques', 'variety', 'names', 'domains', 'mining', 'technique', 'discovery', 'predictive', 'purposes', 'relies', 'heavily', 'aggregation', 'eda', 'confirmatory', 'cda', 'confirming', 'falsifying', 'existing', 'hypotheses', 'forecasting', 'classification', 'text', 'applies', 'linguistic', 'structural', 'extract', 'classify', 'textual', 'sources', 'species', 'unstructured', 'varieties', 'integration', 'precursor', 'closely', 'linked', 'dissemination', 'term', 'synonym', 'contents', 'collection', 'cleaning', 'messages', 'analyzing', 'users', 'barriers', 'confusing', 'opinion', 'cognitive', 'biases', 'innumeracy', 'buildings', 'practitioner', 'initial', 'measurements', 'transformations', 'implementation', 'fulfill', 'intentions', 'characteristics', 'nonlinear', 'stability', 'contests', 'references', 'citations', 'bibliography', 'edit', 'flowchart', 'cathy', 'o', 'neil', 'rachel', 'schutt', 'refers', 'separate', 'components', 'examination', 'obtaining', 'raw', 'converting', 'analyzed', 'test', 'disprove', 'theories', 'statistician', 'defined', 'procedures', 'interpreting', 'precise', 'accurate', 'machinery', 'mathematical', 'phases', 'distinguished', 'described', 'iterative', 'inputs', 'specified', 'directing', 'customers', 'experimental', 'unit', 'population', 'variables', 'regarding', 'income', 'obtained', 'categorical', 'label', 'numbers', 'communicated', 'analysts', 'custodians', 'personnel', 'sensors', 'traffic', 'cameras', 'satellites', 'recording', 'devices', 'downloads', 'documentation', 'cycle', 'actionable', 'conceptually', 'initially', 'processed', 'organised', 'involve', 'rows', 'columns', 'spreadsheet', 'incomplete', 'contain', 'duplicates', 'errors', 'stored', 'preventing', 'correcting', 'common', 'tasks', 'matching', 'identifying', 'inaccuracy', 'deduplication', 'column', 'segmentation', 'identified', 'totals', 'compared', 'separately', 'believed', 'reliable', 'unusual', 'amounts', 'determined', 'thresholds', 'reviewed', 'depend', 'addresses', 'outlier', 'detection', 'rid', 'incorrectly', 'spell', 'checkers', 'lessen', 'mistyped', 'correct', 'cleaned', 'begin', 'contained', 'exploration', 'requests', 'nature', 'median', 'generated', 'examine', 'graphical', 'obtain', 'formulas', 'relationships', 'correlation', 'causation', 'variable', 'residual', 'error', 'accuracy', 'measure', 'explains', 'variation', 'sales', 'dependent', 'y', 'ax', 'b', 'minimize', 'predicts', 'simplify', 'communicate', 'generates', 'outputs', 'feeding', 'analyzes', 'purchasing', 'history', 'recommends', 'purchases', 'reported', 'formats', 'determining', 'displays', 'tables', 'charts', 'lookup', 'illustrated', 'demonstrating', 'revenue', 'illustrating', 'inflation', 'measured', 'points', 'stephen', 'associated', 'graphs', 'specifying', 'performing', 'captured', 'ranking', 'subdivisions', 'ranked', 'ascending', 'descending', 'performance', 'persons', 'category', 'subdivision', 'percentage', 'ratios', 'deviation', 'reference', 'actual', 'vs', 'expenses', 'departments', 'frequency', 'distribution', 'observations', 'interval', 'stock', 'intervals', 'determine', 'opposite', 'directions', 'plotting', 'scatter', 'nominal', 'comparing', 'geographic', 'geospatial', 'map', 'layout', 'floors', 'typical', 'author', 'koomey', 'anomalies', 'calculations', 'verifying', 'formula', 'driven', 'subtotals', 'predictable', 'normalize', 'comparisons', 'relative', 'gdp', 'index', 'component', 'dupont', 'standard', 'analyze', 'cluster', 'illustration', 'mece', 'principle', 'consultants', 'layer', 'broken', 'sub', 'mutually', 'add', 'exhaustive', 'definition', 'divisions', 'robust', 'hypothesis', 'true', 'gathered', 'effect', 'relates', 'economics', 'phillips', 'involves', 'likelihood', 'ii', 'relate', 'rejecting', 'affects', 'changes', 'affect', 'equation', 'condition', 'nca', 'additive', 'outcome', 'compensate', 'sufficient', 'necessity', 'exist', 'compensation', 'messaging', 'outlined', 'analytic', 'presented', 'taxonomy', 'poles', 'retrieving', 'arranging', 'task', 'generaldescription', 'pro', 'formaabstract', 'retrieve', 'attributes', 'z', 'mileage', 'gallon', 'ford', 'mondeo', 'movie', 'wind', 'conditions', 'attribute', 'satisfy', 'kellogg', 'cereals', 'fiber', 'comedies', 'awards', 'funds', 'underperformed', 'sp', 'compute', 'derived', 'aggregate', 'numeric', 'representation', 'calorie', 'gross', 'stores', 'manufacturers', 'cars', 'extremum', 'possessing', 'extreme', 'mpg', 'marvel', 'studios', 'release', 'ordinal', 'metric', 'weight', 'calories', 'span', 'lengths', 'horsepowers', 'actresses', 'characterize', 'carbohydrates', 'shoppers', 'expectation', 'outliers', 'unexpected', 'exceptions', 'horsepower', 'acceleration', 'protein', 'clusters', 'fat', 'sugar', 'correlate', 'origin', 'genders', 'payment', 'method', 'length', 'contextualization', 'contextual', 'relevancy', 'restaurants', 'foods', 'caloric', 'intake', 'distinguishing', 'sound', 'mw', 'parser', 'output', 'quotebox', 'color', 'fff', 'border', 'px', 'aaa', 'sizing', 'padding', 'font', 'floatleft', 'margin', 'em', 'floatright', 'auto', 'p', 'inherit', 'align', 'bold', 'quote', 'quoted', 'roman', 'serif', 'gray', 'vertical', 'aligned', 'cite', 'max', 'float', 'entitled', 'facts', 'patrick', 'moynihan', 'formal', 'irrefutable', 'meaning', 'congressional', 'cbo', 'extending', 'bush', 'tax', 'cuts', 'trillion', 'national', 'debt', 'disagree', 'auditor', 'arrive', 'statements', 'publicly', 'traded', 'fairly', 'stated', 'respects', 'factual', 'evidence', 'opinions', 'erroneous', 'adversely', 'bias', 'interpret', 'confirms', 'preconceptions', 'individuals', 'discredit', 'book', 'retired', 'cia', 'richards', 'heuer', 'delineate', 'assumptions', 'chains', 'inference', 'specify', 'uncertainty', 'emphasized', 'surface', 'debate', 'alternative', 'generally', 'adept', 'audiences', 'literacy', 'numeracy', 'innumerate', 'communicating', 'attempting', 'mislead', 'misinform', 'deliberately', 'falling', 'factor', 'normalization', 'employed', 'adjusting', 'increases', 'section', 'scenarios', 'statement', 'recast', 'estimate', 'cash', 'discount', 'similarly', 'effects', 'policy', 'outlays', 'deficits', 'measures', 'predict', 'consumption', 'carried', 'realise', 'heating', 'ventilation', 'air', 'conditioning', 'lighting', 'security', 'realised', 'automatically', 'miming', 'optimising', 'explanatory', 'actions', 'subset', 'purpose', 'systems', 'counter', 'embedding', 'labels', 'supplemental', 'package', 'analyses', 'contains', 'assist', 'practitioners', 'distinction', 'phase', 'refrains', 'aimed', 'answering', 'original', 'checked', 'assessed', 'counts', 'normality', 'skewness', 'kurtosis', 'histograms', 'schemes', 'external', 'corrected', 'variance', 'conducted', 'measurement', 'instruments', 'corresponds', 'literature', 'homogeneity', 'internal', 'consistency', 'indication', 'reliability', 'inspects', 'variances', 'items', 'scales', 'cronbach', 'α', 'alpha', 'item', 'assessing', 'impute', 'square', 'root', 'transformation', 'differs', 'moderately', 'substantially', 'inverse', 'severely', 'dichotomous', 'randomization', 'procedure', 'substantive', 'equally', 'distributed', 'random', 'subgroups', 'distortions', 'dropout', 'nonresponse', 'treatment', 'manipulation', 'checks', 'accurately', 'especially', 'subgroup', 'performed', 'plots', 'correlations', 'associations', 'tabulations', 'findings', 'documented', 'preferable', 'corrective', 'rewritten', 'normals', 'transform', 'neglect', 'imputation', 'omitting', 'comparability', 'drop', 'inter', 'differences', 'bootstrapping', 'defective', 'calculate', 'propensity', 'scores', 'covariates', 'univariate', 'bivariate', 'percentages', 'circumambulations', 'crosstabulations', 'hierarchical', 'loglinear', 'restricted', 'confounders', 'computation', 'continuous', 'sd', 'recorded', 'exhibit', 'bifurcations', 'chaos', 'harmonics', 'subharmonics', 'simple', 'linear', 'identification', 'draft', 'adopted', 'analysing', 'searched', 'interpreted', 'adjust', 'significance', 'bonferroni', 'correction', 'dataset', 'simply', 'resulted', 'generalizable', 'reproducible', 'splitting', 'fitted', 'generalizes', 'sensitivity', 'parameters', 'systematically', 'varied', 'brief', 'widely', 'anova', 'ancova', 'manova', 'usable', 'predictors', 'generalized', 'extension', 'discrete', 'modelling', 'latent', 'structures', 'manifest', 'response', 'binary', 'exam', 'devinfo', 'endorsed', 'nations', 'elki', 'knime', 'konstanz', 'miner', 'comprehensive', 'orange', 'featuring', 'scientific', 'paw', 'fortran', 'cern', 'computing', 'scipy', 'libraries', 'researchers', 'utilize', 'follows', 'kaggle', 'held', 'ltpp', 'contest', 'fhwa', 'asce', 'portal', 'actuarial', 'censoring', 'acquisition', 'blending', 'governance', 'presentation', 'signal', 'dimension', 'reduction', 'assessment', 'fourier', 'multilinear', 'pca', 'subspace', 'multiway', 'nearest', 'neighbor', 'wavelet', 'judd', 'charles', 'mccleland', 'gary', 'harcourt', 'brace', 'jovanovich', 'isbn', 'citation', 'quotes', 'lock', 'upload', 'wikimedia', 'commons', 'thumb', 'green', 'svg', 'png', 'registration', 'alt', 'subscription', 'aa', 'dotted', 'hidden', 'visible', 'kern', 'wl', 'reilly', 'crm', 'generate', 'retrieved', 'perceptual', 'edge', 'hellerstein', 'joseph', 'databases', 'pdf', 'eecs', 'division', 'selecting', 'behrens', 'psychological', 'association', 'grandjean', 'martin', 'la', 'connaissance', 'est', 'réseau', 'les', 'cahiers', 'du', 'numérique', 'doi', 'lcn', 'selection', 'matrix', 'robert', 'amar', 'james', 'eagan', 'stasko', 'activity', 'william', 'newman', 'preliminary', 'hci', 'forma', 'abstracts', 'mary', 'shaw', 'contaas', 'contextualisation', 'efficient', 'scholarspace', 'hicss', 'economic', 'outlook', 'gov', 'bloomberg', 'barry', 'ritholz', 'math', 'passes', 'gonzález', 'vidal', 'aurora', 'moreno', 'cano', 'victoria', 'efficiency', 'intelligent', 'procedia', 'elsevier', 'j', 'procs', 'davenport', 'thomas', 'jeanne', 'competing', 'aarons', 'finds', 'pupil', 'rankin', 'fight', 'propagate', 'epidemic', 'educator', 'leadership', 'tical', 'summit', 'adèr', 'pp', 'tabachnick', 'fidell', 'billings', 'narmax', 'spatio', 'temporal', 'wiley', 'higgs', 'symmetry', 'magazine', 'nehme', 'jean', 'highway', 'pavement', 'herman', 'chapter', 'mellenbergh', 'gideon', 'advising', 'consultant', 'companion', 'huizen', 'netherlands', 'johannes', 'van', 'kessel', 'pub', 'oclc', 'l', 'act', 'screening', 'eds', 'multivariate', 'fifth', 'edition', 'pearson', 'allyn', 'bacon', 'wikiversity', 'contributions', 'publishing', 'chambers', 'cleveland', 'kleiner', 'paul', 'wadsworth', 'duxbury', 'press', 'fandango', 'armando', 'packt', 'publishers', 'juran', 'godfrey', 'blanton', 'handbook', 'mcgraw', 'hill', 'lewis', 'beck', 'michael', 'sage', 'publications', 'nist', 'sematech', 'pyzdek', 'richard', 'veryard', 'pragmatic', 'oxford', 'blackwell', 'authority', 'gnd', 'vtedata', 'archaeology', 'compression', 'corruption', 'curation', 'degradation', 'editing', 'farming', 'fusion', 'integrity', 'library', 'loss', 'migration', 'preservation', 'protection', 'privacy', 'recovery', 'retention', 'scraping', 'scrubbing', 'stewardship', 'warehouse', 'wrangling', 'munging', 'newpp', 'parsed', 'cached', 'cache', 'expiry', 'cpu', 'usage', 'seconds', 'preprocessor', 'count', 'bytes', 'template', 'argument', 'depth', 'expensive', 'unstrip', 'recursion', 'wikibase', 'entities', 'loaded', 'lua', 'mb', 'transclusion', 'ms', 'calls', 'reflist', 'cite_book', 'according_to_whom', 'cite_journal', 'authority_control', 'sidebar_with_collapsible_lists', 'data_visualization', 'saved', 'enwiki', 'pcache', 'idhash', 'canonical', 'timestamp', 'revision', 'id', 'data_analysis', 'oldid', 'categories', 'analysisscientific', 'methodparticle', 'physicscomputational', 'studyhidden', 'marked', 'weasel', 'worded', 'phrasesarticles', 'phrases', 'needing', 'clarification', 'identifiers', 'menu', 'logged', 'intalkcontributionscreate', 'accountlog', 'namespaces', 'articletalk', 'variants', 'readeditview', 'pagecontentsfeatured', 'contentcurrent', 'eventsrandom', 'articledonate', 'wikipediawikipedia', 'helpabout', 'wikipediacommunity', 'portalrecent', 'changescontact', 'hererelated', 'changesupload', 'filespecial', 'pagespermanent', 'linkpage', 'informationwikidata', 'itemcite', 'print', 'export', 'bookdownload', 'pdfprintable', 'version', 'العربيةdeutscheestiespañolesperantoفارسیfrançaisह', 'न', 'द', 'italianoעבריתಕನ', 'ನಡmagyarpolskiportuguêsрусскийස', 'හලکوردیsuomiதம', 'ழ', 'українська中文', 'edited', 'utc', 'attribution', 'sharealike', 'license', 'trademark', 'foundation', 'disclaimers', 'cookie', 'lorem', 'ipsum', 'lipsum', 'generator', 'googletag', 'cmd', 'div', 'gpt', 'ad', 'shqip', 'catal', 'agrave', 'hrvatski', 'esky', 'dansk', 'nederlands', 'eesti', 'filipino', 'suomi', 'fran', 'ccedil', 'ais', 'deutsch', 'magyar', 'indonesia', 'italiano', 'latviski', 'lietuvi', 'scaron', 'kai', 'melayu', 'norsk', 'polski', 'portugu', 'ecirc', 'rom', 'acirc', 'na', 'pycc', 'sloven', 'ina', 'espa', 'ntilde', 'ol', 'svenska', 'uuml', 'rk', 'ti', 'ng', 'vi', 'neque', 'porro', 'quisquam', 'qui', 'dolorem', 'quia', 'dolor', 'amet', 'consectetur', 'adipisci', 'velit', 'pain', 'seeks', 'dummy', 'printing', 'typesetting', 'unknown', 'printer', 'galley', 'scrambled', 'specimen', 'survived', 'centuries', 'electronic', 'remaining', 'essentially', 'unchanged', 'popularised', 'letraset', 'sheets', 'containing', 'passages', 'desktop', 'aldus', 'pagemaker', 'versions', 'reader', 'distracted', 'readable', 'letters', 'packages', 'editors', 'uncover', 'sites', 'infancy', 'evolved', 'accident', 'injected', 'humour', 'contrary', 'belief', 'classical', 'bc', 'old', 'mcclintock', 'hampden', 'sydney', 'virginia', 'looked', 'obscure', 'passage', 'cites', 'discovered', 'undoubtable', 'finibus', 'bonorum', 'et', 'malorum', 'extremes', 'evil', 'cicero', 'treatise', 'ethics', 'renaissance', 'chunk', 'reproduced', 'translation', 'rackham', 'variations', 'suffered', 'alteration', 'randomised', 'believable', 'isn', 'embarrassing', 'generators', 'predefined', 'chunks', 'dictionary', 'handful', 'sentence', 'looks', 'reasonable', 'repetition', 'characteristic', 'paragraphswordsbyteslistsstart', 'loremipsum', 'translations', 'translate', 'foreign', 'mock', 'banners', 'colours', 'banner', 'sizes', 'donate', 'donating', 'hosting', 'bandwidth', 'minimum', 'donation', 'appreciated', 'paypal', 'thank', 'chrome', 'firefox', 'nodejs', 'tex', 'interface', 'gtk', 'net', 'groovy', 'adobe', 'plugin', 'adipiscing', 'elit', 'sed', 'eiusmod', 'tempor', 'incididunt', 'ut', 'labore', 'dolore', 'magna', 'aliqua', 'enim', 'minim', 'veniam', 'quis', 'nostrud', 'exercitation', 'ullamco', 'laboris', 'nisi', 'aliquip', 'ea', 'commodo', 'consequat', 'duis', 'aute', 'irure', 'reprehenderit', 'voluptate', 'esse', 'cillum', 'fugiat', 'nulla', 'pariatur', 'excepteur', 'sint', 'occaecat', 'cupidatat', 'proident', 'sunt', 'culpa', 'officia', 'deserunt', 'mollit', 'anim', 'laborum', 'perspiciatis', 'unde', 'omnis', 'iste', 'natus', 'voluptatem', 'accusantium', 'doloremque', 'laudantium', 'totam', 'rem', 'aperiam', 'eaque', 'ipsa', 'quae', 'ab', 'illo', 'inventore', 'veritatis', 'quasi', 'architecto', 'beatae', 'vitae', 'dicta', 'explicabo', 'nemo', 'ipsam', 'voluptas', 'aspernatur', 'aut', 'odit', 'fugit', 'consequuntur', 'magni', 'dolores', 'eos', 'ratione', 'sequi', 'nesciunt', 'numquam', 'eius', 'modi', 'tempora', 'incidunt', 'magnam', 'aliquam', 'quaerat', 'minima', 'nostrum', 'exercitationem', 'ullam', 'corporis', 'suscipit', 'laboriosam', 'aliquid', 'commodi', 'consequatur', 'autem', 'vel', 'eum', 'iure', 'quam', 'nihil', 'molestiae', 'illum', 'quo', 'mistaken', 'denouncing', 'praising', 'expound', 'teachings', 'explorer', 'truth', 'builder', 'happiness', 'rejects', 'dislikes', 'avoids', 'pursue', 'rationally', 'encounter', 'consequences', 'painful', 'pursues', 'desires', 'occasionally', 'occur', 'toil', 'procure', 'trivial', 'undertakes', 'laborious', 'physical', 'exercise', 'fault', 'chooses', 'annoying', 'resultant', 'vero', 'accusamus', 'iusto', 'odio', 'dignissimos', 'ducimus', 'blanditiis', 'praesentium', 'voluptatum', 'deleniti', 'atque', 'corrupti', 'quos', 'quas', 'molestias', 'excepturi', 'occaecati', 'cupiditate', 'provident', 'similique', 'mollitia', 'animi', 'dolorum', 'fuga', 'harum', 'quidem', 'rerum', 'facilis', 'expedita', 'distinctio', 'nam', 'libero', 'tempore', 'cum', 'soluta', 'nobis', 'eligendi', 'optio', 'cumque', 'impedit', 'minus', 'quod', 'maxime', 'placeat', 'facere', 'possimus', 'assumenda', 'repellendus', 'temporibus', 'quibusdam', 'officiis', 'debitis', 'necessitatibus', 'saepe', 'eveniet', 'voluptates', 'repudiandae', 'recusandae', 'itaque', 'earum', 'hic', 'tenetur', 'sapiente', 'delectus', 'reiciendis', 'voluptatibus', 'maiores', 'alias', 'perferendis', 'doloribus', 'asperiores', 'repellat', 'denounce', 'righteous', 'indignation', 'dislike', 'beguiled', 'demoralized', 'charms', 'blinded', 'foresee', 'bound', 'ensue', 'equal', 'blame', 'belongs', 'duty', 'weakness', 'shrinking', 'distinguish', 'power', 'untrammelled', 'prevents', 'welcomed', 'avoided', 'owing', 'claims', 'obligations', 'frequently', 'pleasures', 'repudiated', 'annoyances', 'wise', 'matters', 'greater', 'endures', 'pains', 'worse'], 'term_freq': [[301, 24, 157, 1, 1, 1, 3, 4, 2, 2, 2, 15, 2, 2, 8, 4, 1, 1, 1, 1, 23, 78, 1, 1, 47, 1, 1, 1, 1, 1, 5, 4, 1, 98, 1, 33, 1, 45, 68, 1, 1, 1, 1, 36, 36, 39, 39, 47, 42, 34, 4, 1, 2, 1, 6, 3, 1, 28, 100, 73, 73, 149, 3, 24, 10, 6, 3, 1, 8, 21, 1, 158, 1, 103, 14, 6, 6, 2, 27, 5, 3, 5, 28, 32, 39, 24, 2, 19, 71, 22, 13, 10, 13, 1, 9, 1, 3, 1, 2, 33, 1, 44, 7, 1, 10, 4, 1, 4, 9, 6, 2, 42, 22, 15, 6, 6, 23, 1, 11, 10, 10, 4, 40, 1, 91, 43, 18, 9, 7, 4, 12, 4, 1, 17, 159, 7, 16, 3, 3, 34, 3, 3, 50, 1, 1, 1, 4, 2, 8, 1, 1, 1, 9, 1, 8, 1, 2, 6, 2, 47, 1, 2, 6, 1, 2, 3, 1, 6, 2, 2, 29, 5, 3, 42, 7, 17, 2, 10, 62, 98, 2, 3, 11, 2, 5, 9, 12, 2, 42, 22, 12, 2, 21, 24, 2, 31, 2, 3, 2, 18, 12, 9, 19, 16, 10, 10, 8, 4, 20, 5, 4, 3, 24, 15, 13, 18, 9, 7, 10, 13, 7, 14, 4, 5, 11, 5, 6, 13, 5, 5, 5, 5, 5, 5, 5, 6, 20, 5, 5, 1, 20, 2, 2, 27, 9, 8, 28, 2, 3, 5, 2, 4, 4, 11, 10, 4, 4, 6, 15, 5, 5, 4, 4, 5, 47, 72, 13, 12, 4, 9, 13, 4, 4, 4, 15, 18, 4, 1, 1, 1, 1, 2, 1, 4, 7, 6, 42, 1, 1, 1, 5, 1, 2, 1, 2, 2, 2, 2, 4, 4, 4, 1, 10, 6, 1, 1, 2, 1, 1, 1, 1, 2, 2, 2, 1, 6, 1, 1, 9, 6, 16, 5, 5, 4, 5, 40, 7, 6, 9, 4, 4, 6, 16, 7, 4, 4, 6, 6, 39, 16, 4, 6, 14, 6, 5, 6, 27, 11, 8, 6, 14, 4, 5, 6, 5, 1, 1, 1, 9, 1, 1, 2, 2, 1, 1, 1, 1, 3, 1, 1, 1, 1, 51, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 5, 28, 12, 3, 6, 2, 12, 1, 12, 4, 1, 9, 6, 20, 64, 1, 1, 13, 1, 1, 1, 13, 1, 2, 1, 2, 2, 1, 1, 1, 3, 1, 2, 5, 1, 1, 1, 1, 1, 1, 3, 2, 3, 1, 12, 2, 2, 6, 5, 1, 2, 26, 1, 1, 1, 1, 5, 23, 4, 19, 1, 3, 2, 8, 5, 1, 1, 51, 43, 28, 1, 1, 59, 1, 1, 1, 20, 1, 31, 1, 9, 1, 5, 5, 5, 1, 4, 4, 16, 1, 1, 1, 4, 2, 29, 1, 2, 4, 1, 1, 2, 2, 1, 2, 1, 18, 1, 23, 1, 6, 2, 43, 1, 20, 6, 3, 27, 33, 4, 1, 12, 2, 25, 25, 1, 1, 6, 12, 2, 8, 6, 3, 1, 3, 3, 5, 4, 13, 2, 29, 5, 25, 13, 14, 5, 3, 7, 1, 1, 2, 1, 1, 1, 1, 4, 8, 4, 8, 3, 1, 52, 1, 1, 1, 1, 13, 3, 1, 32, 2, 1, 10, 1, 1, 14, 27, 4, 30, 1, 10, 13, 2, 22, 1, 8, 8, 12, 1, 7, 10, 2, 8, 7, 2, 1, 1, 1, 2, 5, 1, 1, 10, 4, 2, 8, 1, 14, 1, 41, 31, 10, 2, 7, 17, 36, 5, 1, 2, 1, 1, 2, 10, 2, 3, 1, 1, 19, 35, 3, 27, 1, 1, 38, 5, 4, 4, 1, 2, 1, 3, 1, 6, 15, 4, 4, 5, 3, 46, 1, 10, 2, 1, 1, 2, 1, 1, 1, 1, 9, 4, 17, 8, 2, 11, 4, 1, 11, 1, 70, 7, 1, 9, 2, 1, 1, 3, 2, 1, 1, 1, 1, 3, 2, 10, 2, 2, 1, 1, 2, 4, 1, 5, 10, 1, 1, 1, 7, 1, 1, 5, 9, 8, 1, 12, 1, 5, 23, 2, 1, 1, 1, 1, 1, 1, 15, 1, 1, 2, 34, 47, 3, 25, 2, 5, 18, 5, 16, 3, 1, 9, 5, 1, 9, 2, 2, 2, 40, 4, 3, 2, 1, 5, 1, 2, 3, 1, 1, 3, 2, 7, 2, 1, 1, 11, 8, 1, 2, 5, 9, 1, 8, 1, 1, 1, 1, 2, 1, 3, 1, 1, 3, 1, 3, 4, 1, 4, 10, 7, 5, 3, 4, 2, 1, 3, 4, 3, 8, 4, 22, 6, 1, 3, 3, 3, 2, 2, 1, 10, 2, 3, 2, 7, 1, 1, 7, 2, 1, 1, 1, 1, 1, 1, 1, 1, 16, 5, 1, 15, 1, 1, 1, 1, 6, 2, 2, 3, 1, 1, 1, 7, 1, 5, 5, 4, 1, 7, 9, 1, 1, 3, 1, 1, 1, 1, 1, 2, 7, 3, 1, 1, 5, 1, 2, 1, 3, 1, 3, 1, 1, 2, 1, 9, 1, 4, 1, 4, 3, 1, 1, 1, 1, 1, 2, 5, 1, 3, 17, 5, 1, 7, 6, 1, 4, 5, 6, 1, 1, 1, 6, 2, 6, 2, 1, 1, 1, 4, 1, 5, 1, 2, 1, 1, 2, 1, 1, 4, 3, 5, 5, 2, 1, 1, 1, 2, 2, 5, 3, 2, 1, 4, 3, 8, 3, 4, 1, 4, 2, 1, 1, 1, 2, 6, 3, 8, 3, 12, 3, 6, 1, 8, 1, 1, 2, 4, 1, 16, 3, 1, 1, 3, 2, 2, 2, 1, 1, 1, 1, 1, 2, 4, 10, 3, 1, 12, 1, 1, 1, 1, 2, 8, 5, 1, 3, 4, 1, 5, 3, 1, 7, 2, 5, 2, 4, 7, 14, 6, 3, 4, 2, 7, 1, 2, 1, 1, 1, 1, 1, 4, 1, 4, 1, 3, 1, 1, 9, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 5, 1, 3, 1, 1, 18, 6, 3, 2, 1, 1, 1, 2, 1, 3, 5, 9, 2, 2, 3, 7, 1, 1, 5, 3, 4, 3, 13, 21, 2, 1, 11, 1, 3, 1, 1, 1, 1, 3, 13, 2, 1, 30, 20, 5, 2, 1, 9, 2, 2, 1, 1, 2, 3, 1, 4, 3, 4, 1, 3, 5, 8, 3, 2, 2, 9, 1, 2, 16, 5, 1, 1, 1, 10, 1, 8, 3, 1, 7, 1, 3, 1, 8, 4, 2, 7, 5, 1, 1, 1, 6, 8, 2, 3, 1, 2, 10, 4, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 12, 1, 2, 3, 2, 3, 1, 3, 1, 3, 3, 3, 1, 2, 4, 1, 10, 4, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 4, 3, 1, 1, 3, 2, 4, 2, 1, 4, 3, 2, 2, 1, 1, 7, 1, 9, 1, 3, 1, 7, 1, 1, 2, 1, 2, 4, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 5, 1, 2, 1, 2, 1, 2, 1, 3, 5, 1, 1, 1, 2, 1, 1, 9, 1, 1, 3, 3, 1, 3, 1, 1, 2, 7, 2, 1, 13, 1, 2, 5, 1, 1, 4, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 7, 8, 2, 1, 1, 5, 1, 1, 4, 1, 6, 4, 3, 1, 11, 2, 1, 13, 12, 1, 7, 1, 1, 6, 6, 2, 1, 2, 5, 3, 2, 12, 3, 4, 2, 4, 4, 5, 3, 1, 1, 1, 2, 1, 2, 1, 1, 4, 1, 4, 5, 2, 2, 9, 10, 4, 2, 3, 1, 2, 1, 2, 3, 1, 1, 1, 5, 4, 2, 11, 1, 4, 3, 5, 4, 6, 3, 3, 3, 7, 5, 11, 2, 1, 3, 1, 1, 2, 4, 2, 8, 1, 1, 6, 1, 11, 9, 4, 1, 4, 7, 1, 1, 2, 1, 1, 1, 1, 1, 6, 1, 7, 2, 9, 1, 3, 3, 1, 1, 3, 2, 1, 8, 1, 6, 2, 1, 2, 1, 1, 1, 3, 1, 1, 2, 3, 2, 2, 1, 3, 7, 1, 2, 7, 1, 3, 6, 1, 1, 1, 1, 1, 6, 1, 1, 11, 2, 13, 1, 1, 1, 4, 2, 1, 4, 1, 2, 1, 2, 2, 1, 1, 1, 2, 5, 1, 2, 4, 1, 1, 1, 3, 1, 1, 1, 1, 1, 5, 1, 4, 1, 2, 1, 2, 1, 1, 10, 5, 1, 6, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 14, 1, 1, 1, 6, 3, 1, 1, 12, 1, 2, 1, 1, 3, 1, 1, 1, 1, 5, 2, 3, 3, 1, 9, 1, 1, 3, 1, 1, 9, 4, 1, 1, 1, 23, 1, 5, 2, 9, 1, 2, 19, 10, 3, 3, 2, 7, 2, 1, 7, 11, 6, 2, 7, 5, 6, 1, 23, 3, 1, 5, 5, 2, 2, 1, 2, 3, 7, 1, 6, 14, 2, 1, 3, 3, 1, 2, 1, 2, 2, 2, 8, 4, 1, 1, 1, 5, 2, 2, 5, 7, 3, 5, 5, 1, 2, 6, 1, 1, 2, 1, 8, 4, 1, 5, 7, 1, 8, 2, 2, 3, 2, 3, 2, 6, 3, 1, 1, 3, 3, 1, 4, 10, 1, 1, 3, 1, 1, 2, 9, 4, 1, 2, 4, 1, 1, 2, 3, 2, 1, 1, 3, 2, 1, 1, 1, 2, 1, 6, 2, 2, 3, 1, 4, 8, 1, 2, 1, 3, 1, 1, 4, 1, 4, 1, 1, 1, 2, 5, 4, 1, 1, 3, 1, 3, 13, 9, 2, 2, 1, 8, 3, 2, 2, 1, 13, 2, 2, 2, 3, 4, 10, 3, 4, 1, 2, 7, 2, 1, 6, 1, 1, 1, 1, 7, 12, 2, 2, 2, 1, 2, 4, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 2, 8, 1, 1, 3, 5, 3, 3, 2, 1, 2, 3, 4, 1, 1, 3, 1, 1, 1, 4, 8, 1, 1, 5, 3, 1, 3, 1, 1, 4, 3, 1, 1, 1, 1, 2, 1, 4, 1, 3, 5, 1, 3, 5, 4, 4, 4, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 3, 1, 1, 1, 2, 1, 1, 2, 1, 2, 1, 1, 5, 1, 1, 2, 1, 7, 1, 2, 1, 1, 1, 1, 2, 1, 11, 1, 3, 4, 1, 1, 1, 2, 2, 1, 2, 1, 5, 2, 1, 2, 2, 1, 4, 2, 2, 1, 6, 5, 7, 1, 1, 2, 4, 6, 8, 1, 2, 2, 2, 1, 2, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 8, 2, 1, 2, 1, 1, 1, 3, 2, 1, 3, 1, 2, 3, 2, 1, 1, 1, 3, 2, 1, 4, 3, 1, 1, 2, 1, 2, 1, 2, 1, 2, 2, 1, 1, 1, 2, 2, 3, 2, 1, 2, 3, 2, 5, 5, 1, 1, 1, 1, 2, 3, 2, 2, 1, 1, 1, 1, 5, 3, 1, 1, 1, 3, 1, 1, 3, 2, 1, 4, 1, 7, 1, 1, 6, 2, 2, 2, 2, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 1, 2, 2, 2, 5, 1, 1, 2, 4, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 3, 2, 2, 1, 3, 1, 1, 6, 1, 3, 4, 1, 1, 3, 1, 3, 1, 2, 2, 1, 1, 1, 1, 3, 2, 1, 1, 1, 1, 2, 2, 5, 2, 2, 1, 1, 1, 1, 1, 1, 1, 3, 1, 2, 1, 1, 1, 4, 2, 2, 1, 4, 1, 1, 2, 1, 1, 2, 2, 1, 1, 1, 4, 1, 2, 3, 2, 1, 1, 9, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 2, 3, 1, 2, 1, 2, 4, 1, 1, 2, 1, 1, 1, 1, 1, 1, 6, 1, 3, 1, 1, 3, 2, 1, 1, 3, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 2, 4, 1, 1, 1, 1, 1, 2, 4, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 3, 2, 2, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 3, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 2, 5, 8, 2, 1, 1, 1, 2, 2, 1, 2, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 3, 1, 1, 3, 1, 1, 1, 2, 1, 2, 1, 2, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 5, 1, 1, 1, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 3, 1, 2, 1, 1, 1, 4, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 4, 1, 4, 1, 1, 1, 1, 3, 1, 3, 1, 2, 2, 1, 1, 2, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 2, 1, 1, 2, 1, 2, 1, 1, 2, 1, 1, 1, 1, 6, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 2, 1, 1, 8, 1, 1, 1, 6, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 3, 1, 1, 3, 1, 1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 2, 2, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 2, 1, 1, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 3, 1, 1, 1, 1, 1, 2, 1, 2, 2, 1, 1, 1, 1, 1, 2, 2, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 3, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 3, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 2, 1, 1, 1, 1, 5, 1, 3, 3, 4, 4, 13, 4, 1, 4, 1, 4, 2, 5, 1, 4, 1, 2, 1, 1, 3, 2, 1, 6, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 4, 4, 4, 3, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15, 2, 3, 0, 0, 0, 0, 0, 4, 0, 4, 6, 0, 0, 0, 0, 9, 1, 0, 0, 9, 1, 0, 0, 3, 0, 1, 0, 0, 1, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 11, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 1, 28, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 13, 0, 11, 0, 1, 2, 3, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 3, 0, 0, 2, 1, 0, 0, 3, 9, 1, 2, 1, 2, 0, 0, 8, 9, 8, 3, 1, 0, 2, 0, 0, 0, 12, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 7, 0, 0, 4, 0, 0, 0, 1, 0, 0, 4, 7, 0, 0, 0, 0, 0, 1, 0, 0, 6, 0, 0, 0, 3, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 13, 0, 0, 0, 0, 0, 0, 5, 5, 0, 2, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 0, 4, 0, 0, 0, 4, 0, 1, 0, 0, 0, 0, 0, 6, 0, 5, 0, 1, 2, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 5, 0, 0, 2, 2, 2, 0, 0, 1, 0, 2, 2, 1, 2, 0, 0, 0, 1, 4, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 1, 5, 3, 4, 1, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 3, 2, 0, 0, 16, 1, 3, 0, 0, 0, 0, 0, 2, 0, 0, 7, 0, 0, 0, 4, 0, 3, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 1, 0, 0, 0, 0, 1, 0, 10, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 2, 0, 0, 3, 2, 2, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 5, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 1, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 10, 0, 1, 0, 0, 2, 1, 1, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 3, 14, 0, 0, 0, 0, 1, 3, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 1, 7, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 1, 0, 5, 0, 4, 0, 0, 0, 1, 0, 3, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0, 2, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 16, 3, 1, 0, 0, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 1, 4, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 1, 0, 0, 13, 0, 2, 5, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 6, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 1, 0, 2, 0, 2, 25, 18, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 8, 0, 0, 1, 0, 0, 2, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 7, 0, 1, 0, 1, 12, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 16, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 14, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 18, 0, 0, 14, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 5, 0, 0, 0, 3, 0, 0, 4, 0, 0, 0, 7, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 7, 1, 1, 0, 0, 0, 4, 1, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 5, 1, 2, 0, 0, 0, 0, 4, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 24, 0, 9, 0, 4, 0, 0, 0, 0, 1, 0, 6, 2, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 2, 0, 11, 1, 2, 0, 0, 0, 0, 2, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 3, 1, 0, 0, 13, 0, 2, 0, 0, 4, 0, 2, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 0, 0, 0, 0, 0, 1, 3, 0, 8, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 5, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 27, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 2, 0, 0, 0, 3, 1, 0, 2, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 143, 12, 1, 3, 1, 14, 17, 2, 7, 16, 2, 17, 2, 2, 1, 1, 1, 1, 1, 1, 5, 3, 4, 1, 1, 1, 1, 1, 15, 7, 2, 2, 1, 1, 2, 3, 2, 2, 4, 2, 1, 4, 2, 1, 1, 4, 1, 4, 2, 2, 2, 5, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 3, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 5, 2, 1, 2, 1, 1, 3, 1, 17, 7, 1, 2, 6, 4, 1, 5, 1, 1, 1, 2, 2, 9, 2, 1, 1, 2, 4, 1, 1, 8, 1, 1, 2, 1, 1, 2, 3, 1, 2, 1, 2, 1, 2, 1, 1, 2, 1, 1, 3, 9, 9, 8, 11, 3, 2, 9, 4, 5, 3, 5, 2, 17, 4, 5, 2, 2, 2, 3, 9, 3, 4, 2, 2, 2, 42, 1, 2, 4, 2, 2, 2, 1, 1, 5, 2, 2, 3, 1, 5, 6, 1, 1, 1, 1, 4, 1, 1, 1, 1, 3, 7, 1, 5, 3, 2, 3, 1, 2, 1, 1, 4, 27, 2, 2, 3, 8, 1, 8, 1, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 2, 2, 1, 1, 2, 1, 1, 2, 1, 3, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 2, 2, 3, 3, 1, 4, 6, 1, 14, 1, 9, 2, 2, 1, 1, 8, 4, 14, 1, 16, 1, 1, 1, 6, 1, 1, 1, 2, 1, 2, 1, 1, 3, 1, 1, 2, 2, 4, 1, 1, 1, 9, 1, 6, 4, 5, 4, 1, 1, 1, 3, 1, 2, 4, 1, 1, 1, 3, 5, 1, 1, 1, 2, 3, 2, 2, 2, 1, 1, 5, 12, 2, 1, 2, 1, 8, 1, 1, 1, 3, 3, 2, 1, 1, 1, 1, 1, 3, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 5, 2, 2, 3, 1, 2, 3, 3, 1, 3, 2, 1, 2, 2, 1, 3, 3, 2, 2, 1, 2, 7, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 2, 1, 2, 1, 2, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 6, 2, 1, 1, 1, 1, 1, 1, 3, 10, 1, 1, 5, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 4, 1, 4, 2, 4, 2, 1, 1, 2, 2, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 35, 36, 34, 14, 6, 2, 4, 7, 1, 2, 4, 15, 2, 4, 14, 2, 2, 7, 6, 5, 3, 2, 2, 2, 2, 4, 1, 3, 2, 1, 1, 2, 4, 1, 1, 2, 1, 1, 2, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 4, 1, 1, 1, 1, 1, 11, 1, 1, 1, 1, 14, 1, 2, 2, 3, 3, 3, 2, 1, 2, 2, 1, 2, 1, 1, 2, 2, 7, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 2, 2, 1, 1, 3, 4, 2, 1, 2, 3, 4, 1, 1, 1, 2, 2, 3, 4, 1, 1, 1, 2, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 2, 2, 1, 1, 1, 1, 1, 2, 2, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 12, 1, 1, 10, 3, 5, 5, 3, 2, 6, 3, 4, 4, 4, 1, 1, 1, 1, 4, 2, 2, 1, 1, 9, 4, 4, 1, 2, 1, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 13, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 17, 11, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 3, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 2, 2, 3, 1, 1, 1, 2, 1, 4, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 4, 3, 2, 3, 3, 11, 1, 2, 1, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 25, 2, 2, 8, 4, 4, 4, 6, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 8, 3, 5, 7, 5, 4, 2, 4, 10, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 2, 4, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 4, 4, 16, 4, 1, 1, 4, 1, 1, 1, 1, 2, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 9, 2, 3, 1, 1, 3, 1, 2, 3, 1, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 2, 2, 2, 1, 2, 2, 2, 1, 3, 1, 1, 1, 3, 2, 2, 2, 1, 1, 2, 1, 1, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 6, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, 2, 2, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 1]]}\n" + ] + } + ], "source": [ "from sklearn.feature_extraction import stop_words\n", "bow = get_bow_from_docs([\n", @@ -87,6 +149,13 @@ "Spend 20-30 minutes to improve your functions or until you feel you are good at string operations. This lab is just a practice so you don't need to stress yourself out. If you feel you've practiced enough you can stop and move on the next challenge question." ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "code", "execution_count": null, @@ -111,7 +180,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-functional-programming/your-code/Q3.ipynb b/module-1_labs/lab-functional-programming/your-code/Q3.ipynb index 75055ac..925d332 100644 --- a/module-1_labs/lab-functional-programming/your-code/Q3.ipynb +++ b/module-1_labs/lab-functional-programming/your-code/Q3.ipynb @@ -44,7 +44,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 1, "metadata": {}, "outputs": [ { @@ -53,7 +53,7 @@ "[2, 12, 30]" ] }, - "execution_count": 10, + "execution_count": 1, "metadata": {}, "output_type": "execute_result" } @@ -63,6 +63,47 @@ "list(map(lambda item: item[0]*item[1], items))" ] }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0, 0]\n", + "[1, 2]\n", + "[4, 4]\n", + "[9, 6]\n", + "[16, 8]\n" + ] + } + ], + "source": [ + "# Examples\n", + "items = [1, 2, 3, 4, 5]\n", + "squared = list(map(lambda x: x**2, items))\n", + "squared\n", + "\n", + "def multiply(x):\n", + " return (x*x)\n", + "def add(x):\n", + " return (x+x)\n", + "\n", + "funcs = [multiply, add]\n", + "for i in range(5):\n", + " value = list(map(lambda x: x(i), funcs))\n", + " print(value)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "markdown", "metadata": {}, @@ -85,13 +126,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[1, 4, 5]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "numbers = [1, 4, -1, -100, 0, 5, -99]\n", "\n", - "# Enter your code below" + "# Enter your code below\n", + "list(filter(lambda x:x>0,numbers))\n" ] }, { @@ -113,17 +166,139 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 40, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "good morning everyone \n" + ] + }, + { + "data": { + "text/plain": [ + "'good morning everyone'" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "import langdetect\n", "from functools import reduce\n", - "words = ['good morning', '早上好', 'доброго', 'おはようございます', 'everyone', '大家', 'каждый', 'みんな']\n", + "words = ['good morning','早上好', 'доброго', 'おはようございます', 'everyone', '大家', 'каждый', 'みんな']\n", "\n", - "# Enter your code below" + "# Enter your code below\n", + "words1=\"\"\n", + "\n", + "for i in words:\n", + " if langdetect.detect(i)==\"en\":\n", + " words1+=i+\" \"\n", + " \n", + "print(words1)\n", + "\n", + "reduce((lambda x, y: x if not langdetect.detect(y)=='en' else ''.join([x, ' ', y])), words)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [], + "source": [ + "def check_word(list_of_word: list):\n", + " MySentence=\"\"\n", + " for word in list_of_word:\n", + " if langdetect.detect(word)=='en':\n", + " MySentence+=word+\" \"\n", + " return MySentence" ] }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['good morning', '早上好', 'доброго', 'おはようございます', 'everyone', '大家', 'каждый', 'みんな']\n" + ] + }, + { + "data": { + "text/plain": [ + "'everyone '" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "print(words)\n", + "check_word(words)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['good morning', '早上好', 'доброго', 'おはようございます', 'everyone', '大家', 'каждый', 'みんな']\n" + ] + }, + { + "data": { + "text/plain": [ + "'everyone '" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "markdown", "metadata": {}, @@ -199,7 +374,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.4" } }, "nbformat": 4, From accf341dcc88b649bcb96c587da2fa2d47a428af Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Fri, 18 Oct 2019 14:55:40 +0200 Subject: [PATCH 04/30] Completed labs --- .../your-code/challenge-1.ipynb | 208 +++++++++++++++--- .../your-code/challenge-2.ipynb | 183 +++++++++++++-- 2 files changed, 343 insertions(+), 48 deletions(-) diff --git a/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb b/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb index 4302084..4c2f44f 100644 --- a/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb +++ b/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb @@ -15,7 +15,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 66, "metadata": {}, "outputs": [], "source": [ @@ -33,12 +33,31 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 103, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Durante un tiempo no estuvo segura de si su marido.era su marido.\n" + ] + } + ], "source": [ "str_list = ['Durante', 'un', 'tiempo', 'no', 'estuvo', 'segura', 'de', 'si', 'su', 'marido', 'era', 'su', 'marido']\n", - "# Your code here:\n" + "# Your code here:\n", + "\n", + "string=\"\"\n", + "\n", + "for i in str_list:\n", + " if i==str_list[len(str_list)-1]:\n", + " string+=str_list[len(str_list)-1]+\".\"\n", + " else:\n", + " string+=i+\" \"\n", + "\n", + " \n", + "print(string)" ] }, { @@ -50,12 +69,33 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Grocery list: bananas, bread, brownie mix, broccoli.\n" + ] + } + ], "source": [ "food_list = ['Bananas', 'Chocolate', 'bread', 'diapers', 'Ice Cream', 'Brownie Mix', 'broccoli']\n", - "# Your code here:\n" + "# Your code here:\n", + "\n", + "grocery_list=\"Grocery list: \"\n", + "\n", + "for i in food_list:\n", + " if i.startswith(\"b\") or i.startswith(\"B\"):\n", + " grocery_list += i.lower() + \", \"\n", + "\n", + "\n", + "grocery_list = grocery_list[:-2]\n", + "grocery_list += \".\"\n", + "\n", + " \n", + "print(grocery_list)" ] }, { @@ -69,9 +109,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 34, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'The area of the circle with radius: 4.5 is: 112.75287761516246'" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "import math\n", "\n", @@ -88,9 +139,11 @@ " # Sample Output: 78.53981633\n", " \n", " # Your code here:\n", + " return x ** pi\n", " \n", " \n", - "# Your output string here:" + "# Your output string here:\n", + "f'{string1+ \" \" + str(radius) + \" \" + string2 + \" \" + str(area(radius,pi = math.pi))}'" ] }, { @@ -106,9 +159,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 43, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'some': 2, 'say': 3, 'the': 1, 'world': 1, 'will': 1, 'end': 1, 'in': 2, 'fire,': 1, 'ice': 2, 'from': 1, 'what': 1, 'i’ve': 1, 'tasted': 1, 'of': 2, 'desire': 1, 'i': 3, 'hold': 1, 'with': 1, 'those': 1, 'who': 1, 'favor': 1, 'fire': 1, 'but': 1, 'if': 1, 'it': 1, 'had': 1, 'to': 2, 'perish': 1, 'twice,': 1, 'think': 1, 'know': 1, 'enough': 1, 'hate': 1, 'that': 1, 'for': 1, 'destruction': 1, 'is': 1, 'also': 1, 'great': 1, 'and': 1, 'would': 1, 'suffice': 1}\n" + ] + } + ], "source": [ "poem = \"\"\"Some say the world will end in fire,\n", "Some say in ice.\n", @@ -120,7 +181,21 @@ "Is also great\n", "And would suffice.\"\"\"\n", "\n", - "# Your code here:\n" + "# Your code here:\n", + "string_poem=poem.split()\n", + "\n", + "\n", + "poem_dict={}\n", + "for i in string_poem:\n", + " i=i.lower()\n", + " if i.endswith(\".\"):\n", + " i=i[:-1]\n", + " if i in poem_dict:\n", + " poem_dict[i]+=1\n", + " else:\n", + " poem_dict[i]=1\n", + "\n", + "print(poem_dict)" ] }, { @@ -132,9 +207,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 92, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['I', 'was', 'angry', 'with', 'my', 'friend', 'I', 'told', 'my', 'wrath', 'my', 'wrath', 'did', 'end', 'I', 'was', 'angry', 'with', 'my', 'foe', 'I', 'told', 'not', 'my', 'wrath', 'did', 'grow', 'And', 'I', 'waterd', 'fears', 'Night', '&', 'morning', 'with', 'my', 'tears', 'And', 'I', 'sunned', 'with', 'smiles', 'And', 'with', 'soft', 'deceitful', 'wiles', 'And', 'grew', 'both', 'day', 'night', 'Till', 'bore', 'apple', 'bright', 'And', 'my', 'foe', 'beheld', 'shine', 'And', 'he', 'knew', 'that', 'was', 'mine', 'And', 'into', 'my', 'garden', 'stole', 'When', 'night', 'had', 'veild', 'pole', 'In', 'morning', 'glad', 'I', 'see', 'My', 'foe', 'outstretched', 'beneath', 'tree']\n" + ] + } + ], "source": [ "blacklist = ['and', 'as', 'an', 'a', 'the', 'in', 'it']\n", "\n", @@ -158,7 +241,30 @@ "In the morning glad I see; \n", "My foe outstretched beneath the tree.\"\"\"\n", "\n", - "# Your code here:\n" + "# Your code here:\n", + "sign=\",.:;\"\n", + "for s in sign:\n", + " poem=poem.replace(s,\"\")\n", + " \n", + "\n", + "string_poem=poem.split()\n", + "\n", + "comparison=[]\n", + "\n", + "# for i in string_poem:\n", + "# if i.endswith(\".\") or i.endswith(\";\") or i.endswith(\",\") or i.endswith(\":\"):\n", + "# i=i[:-1]\n", + "# if i not in blacklist:\n", + "# comparison.append(i)\n", + "\n", + "for i in string_poem:\n", + " if i not in blacklist:\n", + " comparison.append(i)\n", + "\n", + "print(comparison)\n", + "\n", + "\n", + " \n" ] }, { @@ -172,14 +278,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 67, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['T', 'P']\n" + ] + } + ], "source": [ "poem = \"\"\"The apparition of these faces in the crowd;\n", "Petals on a wet, black bough.\"\"\"\n", "\n", - "# Your code here:\n" + "# Your code here:\n", + "print(re.findall('[A-Z]',poem))" ] }, { @@ -191,13 +306,29 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 94, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['123abc', 'abc123', 'JohnSmith1', 'ABBY4']\n" + ] + } + ], "source": [ "data = ['123abc', 'abc123', 'JohnSmith1', 'ABBY4', 'JANE']\n", "\n", - "# Your code here:\n" + "# Your code here:\n", + "result=[]\n", + "\n", + "for i in data:\n", + " if re.search('\\d',i) != None :\n", + " result.append(i)\n", + "\n", + "print(result)\n", + " " ] }, { @@ -213,13 +344,38 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 97, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['123abc', 'abc123', 'JohnSmith1']\n" + ] + } + ], "source": [ + "import re \n", + "\n", + "result=[]\n", + "\n", "data = ['123abc', 'abc123', 'JohnSmith1', 'ABBY4', 'JANE']\n", - "# Your code here:\n" + "# Your code here:\n", + "\n", + "for i in data:\n", + " if re.search('[a-z]',i) and re.search('[0-9]',i):\n", + " result.append(i)\n", + "\n", + "print(result)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -238,7 +394,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb b/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb index 87c5656..ad054fe 100644 --- a/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb +++ b/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb @@ -72,7 +72,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -88,13 +88,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ - "corpus = []\n", + "corpus=[]\n", + "\n", + "# Write your code here\n", "\n", - "# Write your code here\n" + "# for doc in docs:\n", + "# with open(doc) as i:\n", + "# corpus.append(i.read())\n", + " \n", + "for doc in docs:\n", + " corpus.append(open(doc,\"r\").read())" ] }, { @@ -106,9 +113,17 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['Ironhack is cool.', 'I love Ironhack.', 'I am a student at Ironhack.']\n" + ] + } + ], "source": [ "print(corpus)" ] @@ -136,11 +151,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Write your code here" + "# Write your code here\n", + "# clean_corpus = []\n", + "# for i in corpus:\n", + "# i=i.replace(\".\",\"\")\n", + "# i=i.lower()\n", + "# clean_corpus.append(i)\n", + "\n", + "# print(clean_corpus)\n", + "\n", + "clean_corpus = []\n", + "for corp in corpus:\n", + " clean_corpus.append(corp.replace(\".\",\"\").lower())\n", + " \n", + "clean_corpus" ] }, { @@ -152,7 +191,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -172,11 +211,16 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 24, "metadata": {}, "outputs": [], "source": [ - "# Write your code here" + "# Write your code here\n", + "\n", + "for line in clean_corpus:\n", + " for i in line.split():\n", + " if i not in bag_of_words:\n", + " bag_of_words.append(i)" ] }, { @@ -192,11 +236,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 57, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['ironhack', 'cool', 'love', 'student', 'is', 'i', 'am', 'a', 'at']\n", + "['ironhack is cool', 'i love ironhack', 'i am a student at ironhack']\n" + ] + } + ], "source": [ - "print(bag_of_words)" + "print(bag_of_words)\n", + "print(clean_corpus)" ] }, { @@ -208,13 +262,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 55, "metadata": {}, "outputs": [], "source": [ "term_freq = []\n", "\n", - "# Write your code here" + "# Write your code here\n", + "\n", + "## with this solution, we cannot count the actual frequency of the word appeared \n", + "# for line in clean_corpus:\n", + "# freq=[]\n", + "# for word in bag_of_words:\n", + "# if word in line.split():\n", + "# freq.append(1)\n", + "# else:\n", + "# freq.append(0)\n", + "# term_freq.append(freq)\n", + " \n", + "\n", + "for line in clean_corpus:\n", + " freq=[]\n", + " for word in bag_of_words:\n", + " freq.append(line.split().count(word)) #using list count method!!\n", + " term_freq.append(freq) \n", + " \n", + " " ] }, { @@ -226,13 +299,53 @@ "```[[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]```" ] }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1, 1, 0, 0, 1, 0, 0, 0, 0], [1, 0, 1, 0, 0, 1, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]\n" + ] + } + ], + "source": [ + "print(term_freq)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [], + "source": [ + "#Create a function to solve bonus question:" + ] + }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [], "source": [ - "print(term_freq)" + "def create_term_freq(some_corpus,bow_list):\n", + " term_freq = []\n", + " for line in some_corpus:\n", + " freq=[]\n", + " for word in bow_list:\n", + " freq.append(line.split().count(word)) #using list count method!!\n", + " term_freq.append(freq) \n", + " return term_freq" ] }, { @@ -278,13 +391,32 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 62, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]\n", + "['ironhack', 'cool', 'love', 'student']\n" + ] + } + ], "source": [ "stop_words = ['all', 'six', 'less', 'being', 'indeed', 'over', 'move', 'anyway', 'fifty', 'four', 'not', 'own', 'through', 'yourselves', 'go', 'where', 'mill', 'only', 'find', 'before', 'one', 'whose', 'system', 'how', 'somewhere', 'with', 'thick', 'show', 'had', 'enough', 'should', 'to', 'must', 'whom', 'seeming', 'under', 'ours', 'has', 'might', 'thereafter', 'latterly', 'do', 'them', 'his', 'around', 'than', 'get', 'very', 'de', 'none', 'cannot', 'every', 'whether', 'they', 'front', 'during', 'thus', 'now', 'him', 'nor', 'name', 'several', 'hereafter', 'always', 'who', 'cry', 'whither', 'this', 'someone', 'either', 'each', 'become', 'thereupon', 'sometime', 'side', 'two', 'therein', 'twelve', 'because', 'often', 'ten', 'our', 'eg', 'some', 'back', 'up', 'namely', 'towards', 'are', 'further', 'beyond', 'ourselves', 'yet', 'out', 'even', 'will', 'what', 'still', 'for', 'bottom', 'mine', 'since', 'please', 'forty', 'per', 'its', 'everything', 'behind', 'un', 'above', 'between', 'it', 'neither', 'seemed', 'ever', 'across', 'she', 'somehow', 'be', 'we', 'full', 'never', 'sixty', 'however', 'here', 'otherwise', 'were', 'whereupon', 'nowhere', 'although', 'found', 'alone', 're', 'along', 'fifteen', 'by', 'both', 'about', 'last', 'would', 'anything', 'via', 'many', 'could', 'thence', 'put', 'against', 'keep', 'etc', 'amount', 'became', 'ltd', 'hence', 'onto', 'or', 'con', 'among', 'already', 'co', 'afterwards', 'formerly', 'within', 'seems', 'into', 'others', 'while', 'whatever', 'except', 'down', 'hers', 'everyone', 'done', 'least', 'another', 'whoever', 'moreover', 'couldnt', 'throughout', 'anyhow', 'yourself', 'three', 'from', 'her', 'few', 'together', 'top', 'there', 'due', 'been', 'next', 'anyone', 'eleven', 'much', 'call', 'therefore', 'interest', 'then', 'thru', 'themselves', 'hundred', 'was', 'sincere', 'empty', 'more', 'himself', 'elsewhere', 'mostly', 'on', 'fire', 'am', 'becoming', 'hereby', 'amongst', 'else', 'part', 'everywhere', 'too', 'herself', 'former', 'those', 'he', 'me', 'myself', 'made', 'twenty', 'these', 'bill', 'cant', 'us', 'until', 'besides', 'nevertheless', 'below', 'anywhere', 'nine', 'can', 'of', 'your', 'toward', 'my', 'something', 'and', 'whereafter', 'whenever', 'give', 'almost', 'wherever', 'is', 'describe', 'beforehand', 'herein', 'an', 'as', 'itself', 'at', 'have', 'in', 'seem', 'whence', 'ie', 'any', 'fill', 'again', 'hasnt', 'inc', 'thereby', 'thin', 'no', 'perhaps', 'latter', 'meanwhile', 'when', 'detail', 'same', 'wherein', 'beside', 'also', 'that', 'other', 'take', 'which', 'becomes', 'you', 'if', 'nobody', 'see', 'though', 'may', 'after', 'upon', 'most', 'hereupon', 'eight', 'but', 'serious', 'nothing', 'such', 'why', 'a', 'off', 'whereby', 'third', 'i', 'whole', 'noone', 'sometimes', 'well', 'amoungst', 'yours', 'their', 'rather', 'without', 'so', 'five', 'the', 'first', 'whereas', 'once']\n", + "# Write your code below\n", + "\n", + "filtered_bow = []\n", "\n", - "# Write your code below\n" + "for word in bag_of_words:\n", + " if word not in stop_words:\n", + " filtered_bow.append(word)\n", + "\n", + "create_term_freq(clean_corpus,filtered_bow)\n", + "\n", + "# print(bag_of_words)\n", + "print(filtered_bow)" ] }, { @@ -315,6 +447,13 @@ " [1 1 0 1 0 0 1]]\n", " ```" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -333,7 +472,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, From 5c3f90c1c6d3d6027c33f43a1bba34dccc46e498 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sat, 19 Oct 2019 20:49:32 +0200 Subject: [PATCH 05/30] Escape room game from Ivy --- .../your-code/Escape Room .ipynb | 531 ++++++++++++++++++ 1 file changed, 531 insertions(+) create mode 100644 module-1_projects/python-project/your-code/Escape Room .ipynb diff --git a/module-1_projects/python-project/your-code/Escape Room .ipynb b/module-1_projects/python-project/your-code/Escape Room .ipynb new file mode 100644 index 0000000..14f65c7 --- /dev/null +++ b/module-1_projects/python-project/your-code/Escape Room .ipynb @@ -0,0 +1,531 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 99, + "metadata": {}, + "outputs": [], + "source": [ + "# define rooms\n", + "\n", + "game_room = {\n", + " \"name\": \"game room\",\n", + " \"type\": \"room\",\n", + "}\n", + "\n", + "bedroom_1 = {\n", + " \"name\" : \"bedroom 1\",\n", + " \"type\" : \"room\"\n", + "}\n", + "\n", + "bedroom_2 = {\n", + " \"name\" : \"bedroom 2\",\n", + " \"type\" : \"room\"\n", + "}\n", + "\n", + "living_room = {\n", + " \"name\" : \"living room\",\n", + " \"type\" : \"room\"\n", + "}\n", + "\n", + "outside = {\n", + " \"name\": \"outside\"\n", + "}\n", + "\n", + "# define doors\n", + "\n", + "door_a = {\n", + " \"name\": \"door a\",\n", + " \"type\": \"door\",\n", + "}\n", + "\n", + "door_b = {\n", + " \"name\" : \"door b\",\n", + " \"type\" : \"door\"\n", + "}\n", + "\n", + "door_c = {\n", + " \"name\" : \"door c\",\n", + " \"type\" : \"door\"\n", + "}\n", + "\n", + "door_d = {\n", + " \"name\" : \"door d\",\n", + " \"type\" : \"door\"\n", + "}\n", + "\n", + "# 1. Game Room \n", + "\n", + "couch = {\n", + " \"name\": \"couch\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "key_a = {\n", + " \"name\": \"key for door a\",\n", + " \"type\": \"key\",\n", + " \"target\": door_a,\n", + "}\n", + "\n", + "piano = {\n", + " \"name\": \"piano\",\n", + " \"type\": \"furniture\",\n", + "}\n", + "\n", + "# 2. Bedroom1 \n", + "\n", + "queen_bed = {\n", + " \"name\" : \"queen bed\",\n", + " \"type\" : \"furniture\"\n", + "}\n", + "\n", + "\n", + "key_b = {\n", + " \"name\" : \"key for door b\",\n", + " \"type\" : \"key\",\n", + " \"target\" : door_b\n", + "}\n", + "\n", + "\n", + "# 3. Bedroom2 \n", + "\n", + "double_bed = {\n", + " \"name\" : \"double bed\",\n", + " \"type\" : \"furniture\"\n", + "}\n", + " \n", + "dresser = {\n", + " \"name\" : \"dresser\",\n", + " \"type\" : \"furniture\"\n", + "}\n", + " \n", + "key_c = {\n", + " \"name\" : \"key for door c\",\n", + " \"type\" : \"key\",\n", + " \"target\" : door_c\n", + "}\n", + "\n", + "key_d = {\n", + " \"name\" : \"key for door d\",\n", + " \"type\" : \"key\",\n", + " \"target\" : door_d\n", + "}\n", + " \n", + " \n", + "# 4. Living room \n", + "\n", + "dining_table = {\n", + " \"name\" : \"dining table\",\n", + " \"type\" : \"room\"\n", + "}\n", + " \n", + "\n", + "\n", + "all_rooms = [game_room, bedroom_1, bedroom_2, living_room, outside]\n", + "\n", + "all_doors = [door_a, door_b, door_c, door_d]\n", + "\n", + "words = {\n", + " \"giraffe\" : [\"gi\",\"ra\",\"f\",\"fe\"],\n", + " \"elephant\" : [\"el\",\"ep\",\"ha\",\"nt\"],\n", + " \"zebra\" : [\"z\",\"e\",\"b\",\"ra\"],\n", + " \"penguin\" : [\"pe\",\"n\",\"gu\",\"in\"],\n", + " \"capybara\" : [\"ca\", \"py\",\"ba\",\"ra\"]\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "metadata": {}, + "outputs": [], + "source": [ + "# define which items/rooms are related\n", + "\n", + "\n", + "object_relations = {\n", + "# In game room\n", + " \"game room\": [couch, piano, door_a],\n", + " \"piano\": [key_a],\n", + " \"door a\": [game_room, bedroom_1],\n", + "# In bedroom 1\n", + " \"bedroom 1\" : [queen_bed, door_a, door_b, door_c],\n", + " \"queen bed\" : [key_b],\n", + " \"door b\" : [bedroom_1, bedroom_2],\n", + " \"door c\" : [bedroom_1, living_room],\n", + "# In bedroom 2\n", + " \"bedroom 2\" : [double_bed, dresser, door_b],\n", + " \"double bed\" : [key_c],\n", + " \"dresser\" : [key_d],\n", + "# In living room\n", + " \"living room\" : [dining_table, door_c, door_d],\n", + " \"outside\": [door_d],\n", + " \"door d\" : [living_room, outside]\n", + "}\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 101, + "metadata": {}, + "outputs": [], + "source": [ + "# define game state. Do not directly change this dict. \n", + "# Instead, when a new game starts, make a copy of this\n", + "# dict and use the copy to store gameplay state. This \n", + "# way you can replay the game multiple times.\n", + "\n", + "INIT_GAME_STATE = {\n", + " \"current_room\": game_room,\n", + " \"keys_collected\": [],\n", + " \"target_room\": outside\n", + "}" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "metadata": {}, + "outputs": [], + "source": [ + "def linebreak():\n", + " \"\"\"\n", + " Print a line break\n", + " \"\"\"\n", + " print(\"\\n\\n\")\n", + " \n", + "def start_game():\n", + " \"\"\"\n", + " Start the game\n", + " \"\"\"\n", + " print(\"You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. \\n ╚(ಠ_ಠ)=┐ You don't remember why you are here and what had happened before. \\n ಠ⌣ಠ You feel some unknown danger is approaching and you must get out of the house, NOW!\")\n", + " play_room(game_state[\"current_room\"])\n", + " \n", + " \n", + "def play_room(room): \n", + " \"\"\"\n", + " Play a room. First check if the room being played is the target room.\n", + " If it is, the game will end with success. Otherwise, let player either \n", + " explore (list all items in this room) or examine an item found here.\n", + " \"\"\"\n", + " game_state[\"current_room\"] = room\n", + " if(game_state[\"current_room\"] == game_state[\"target_room\"]):\n", + " answer=input(\"From the notes that you got, guess which animal is waiting for you outside? \")\n", + " if answer == animal:\n", + " print(\"Congrats! You escaped the room !!\", animal,\": Hello Hoooman \\ (•◡•) / \")\n", + " else:\n", + " print(\"You are now in \" + room[\"name\"])\n", + " intended_action = input(\"What would you like to do? Type 'explore' or 'examine'?\").strip()\n", + " if intended_action == \"explore\":\n", + " explore_room(room)\n", + " play_room(room)\n", + " elif intended_action == \"examine\":\n", + " examine_item(input(\"What would you like to examine?\").strip())\n", + " else:\n", + " print(\"Not sure what you mean. Type 'explore' or 'examine'.\")\n", + " play_room(room)\n", + " linebreak()\n", + "\n", + "def explore_room(room):\n", + " \"\"\"\n", + " Explore a room. List all items belonging to this room.\n", + " \"\"\"\n", + " items = [i[\"name\"] for i in object_relations[room[\"name\"]]]\n", + " print(\"You explore the room. This is \" + room[\"name\"] + \". You find \" + \", \".join(items))\n", + "\n", + "def get_next_room_of_door(door, current_room):\n", + " \"\"\"\n", + " From object_relations, find the two rooms connected to the given door.\n", + " Return the room that is not the current_room.\n", + " \"\"\"\n", + " connected_rooms = object_relations[door[\"name\"]]\n", + " for room in connected_rooms:\n", + " if(not current_room == room):\n", + " return room\n", + "\n", + "def examine_item(item_name): \n", + " \n", + " \"\"\"\n", + " Examine an item which can be a door or furniture.\n", + " First make sure the intended item belongs to the current room.\n", + " Then check if the item is a door. Tell player if key hasn't been \n", + " collected yet. Otherwise ask player if they want to go to the next\n", + " room. If the item is not a door, then check if it contains keys.\n", + " Collect the key if found and update the game state. At the end,\n", + " play either the current or the next room depending on the game state\n", + " to keep playing.\n", + " \"\"\"\n", + " current_room = game_state[\"current_room\"]\n", + " next_room = \"\"\n", + " output = None\n", + " \n", + " for item in object_relations[current_room[\"name\"]]:\n", + " if(item[\"name\"] == item_name):\n", + " print(\"You examined \" + item_name + \". \")\n", + " output=\"\"\n", + " if(item[\"type\"] == \"door\"):\n", + " have_key = False\n", + " for key in game_state[\"keys_collected\"]:\n", + " if (key[\"target\"] == item):\n", + " have_key = True\n", + " if(have_key):\n", + " output += \"You unlock it with a key you have.\"\n", + " next_room = get_next_room_of_door(item, current_room)\n", + " else:\n", + " output += \"It is locked but you don't have the key.\"\n", + " else:\n", + " if(item[\"name\"] in object_relations and len(object_relations[item[\"name\"]])>0):\n", + " item_found = object_relations[item[\"name\"]].pop()\n", + " game_state[\"keys_collected\"].append(item_found)\n", + " output += \"You also find \" + item_found[\"name\"] + \".\"\n", + " if item_found[\"name\"] == \"key for door a\":\n", + " print(\"You got a NOTE!!! It says '\",key_relations[\"key for door a\"],\"'!\")\n", + " elif item_found[\"name\"] == \"key for door b\":\n", + " print(\"Got another note with '\",key_relations[\"key for door b\"],\"' on it!\")\n", + " elif item_found[\"name\"] == \"key for door c\":\n", + " print(\"Got another note with '\",key_relations[\"key for door c\"],\"' on it!\")\n", + " elif item_found[\"name\"] == \"key for door d\":\n", + " print(\"Got another note with '\",key_relations[\"key for door d\"],\"' on it!\") \n", + " else:\n", + " output += \"There isn't anything interesting about it.\"\n", + " print(output)\n", + " break\n", + "\n", + " if(output is None):\n", + " print(\"The item you requested is not found in the current room.\")\n", + " \n", + " if(next_room and input(\"Do you want to go to the next room? Ener 'yes' or 'no'\").strip() == 'yes'):\n", + " play_room(next_room)\n", + " else:\n", + " play_room(current_room)" + ] + }, + { + "cell_type": "code", + "execution_count": 103, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. \n", + " ╚(ಠ_ಠ)=┐ You don't remember why you are here and what had happened before. \n", + " ಠ⌣ಠ You feel some unknown danger is approaching and you must get out of the house, NOW!\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is game room. You find couch, piano, door a\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?piano\n", + "You examine piano. \n", + "You got a NOTE!!! It says ' el '!\n", + "You also find key for door a.\n", + "You are now in game room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door a\n", + "You examine door a. \n", + "You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is bedroom 1. You find queen bed, door a, door b, door c\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?queen bed\n", + "You examine queen bed. \n", + "Got another note with ' ep ' on it!\n", + "You also find key for door b.\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is bedroom 1. You find queen bed, door a, door b, door c\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door c\n", + "You examine door c. \n", + "It is locked but you don't have the key.\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door b\n", + "You examine door b. \n", + "You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?\n", + "The item you requested is not found in the current room.\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is bedroom 2. You find double bed, dresser, door b\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?double bed\n", + "You examine double bed. \n", + "Got another note with ' ha ' on it!\n", + "You also find key for door c.\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is bedroom 2. You find double bed, dresser, door b\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?dresser\n", + "You examine dresser. \n", + "Got another note with ' nt ' on it!\n", + "You also find key for door d.\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door c\n", + "The item you requested is not found in the current room.\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is bedroom 2. You find double bed, dresser, door b\n", + "You are now in bedroom 2\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door b\n", + "You examine door b. \n", + "You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?explore\n", + "The item you requested is not found in the current room.\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is bedroom 1. You find queen bed, door a, door b, door c\n", + "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door c\n", + "You examine door c. \n", + "You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in living room\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is living room. You find dining table, door c, door d\n", + "You are now in living room\n", + "What would you like to do? Type 'explore' or 'examine'?examine \n", + "What would you like to examine?door d\n", + "You examine door d. \n", + "You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "From the notes that you got, guess which animal is waiting for you outside? elephant\n", + "Congrats! You escaped the room !! elephant : Hello Hoooman \\ (•◡•) / \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "game_state = INIT_GAME_STATE.copy()\n", + "\n", + "import random\n", + "animal = random.choices(list(words))[0] \n", + "\n", + "key_relations = {\n", + " \"key for door a\" : words[animal][0],\n", + " \"key for door b\" : words[animal][1],\n", + " \"key for door c\" : words[animal][2],\n", + " \"key for door d\" : words[animal][3]\n", + "}\n", + "\n", + "start_game()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 10adbe694ca28ce07831010328b822f597aac2c0 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sun, 20 Oct 2019 11:52:19 +0200 Subject: [PATCH 06/30] Escape room Ivy --- .../your-code/Escape Room .ipynb | 107 ++++++++---------- 1 file changed, 45 insertions(+), 62 deletions(-) diff --git a/module-1_projects/python-project/your-code/Escape Room .ipynb b/module-1_projects/python-project/your-code/Escape Room .ipynb index 14f65c7..d9a191f 100644 --- a/module-1_projects/python-project/your-code/Escape Room .ipynb +++ b/module-1_projects/python-project/your-code/Escape Room .ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 99, + "execution_count": 12, "metadata": {}, "outputs": [], "source": [ @@ -126,17 +126,17 @@ "all_doors = [door_a, door_b, door_c, door_d]\n", "\n", "words = {\n", - " \"giraffe\" : [\"gi\",\"ra\",\"f\",\"fe\"],\n", - " \"elephant\" : [\"el\",\"ep\",\"ha\",\"nt\"],\n", - " \"zebra\" : [\"z\",\"e\",\"b\",\"ra\"],\n", - " \"penguin\" : [\"pe\",\"n\",\"gu\",\"in\"],\n", - " \"capybara\" : [\"ca\", \"py\",\"ba\",\"ra\"]\n", + " \"Giraffe\" : [\"GI\",\"RA\",\"F\",\"FE\"],\n", + " \"Elephant\" : [\"EL\",\"EP\",\"HA\",\"NT\"],\n", + " \"Zebra\" : [\"Z\",\"E\",\"B\",\"RA\"],\n", + " \"Penguin\" : [\"PE\",\"N\",\"GU\",\"IN\"],\n", + " \"Capybara\" : [\"CA\", \"PY\",\"BA\",\"RA\"]\n", "}" ] }, { "cell_type": "code", - "execution_count": 100, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ @@ -167,7 +167,7 @@ }, { "cell_type": "code", - "execution_count": 101, + "execution_count": 14, "metadata": {}, "outputs": [], "source": [ @@ -185,7 +185,7 @@ }, { "cell_type": "code", - "execution_count": 102, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -211,17 +211,17 @@ " \"\"\"\n", " game_state[\"current_room\"] = room\n", " if(game_state[\"current_room\"] == game_state[\"target_room\"]):\n", - " answer=input(\"From the notes that you got, guess which animal is waiting for you outside? \")\n", + " answer=input(\"From the notes you got, guess which animal is waiting for you outside? \").title()\n", " if answer == animal:\n", " print(\"Congrats! You escaped the room !!\", animal,\": Hello Hoooman \\ (•◡•) / \")\n", " else:\n", " print(\"You are now in \" + room[\"name\"])\n", - " intended_action = input(\"What would you like to do? Type 'explore' or 'examine'?\").strip()\n", + " intended_action = input(\"What would you like to do? Type 'explore' or 'examine'?\").strip().lower()\n", " if intended_action == \"explore\":\n", " explore_room(room)\n", " play_room(room)\n", " elif intended_action == \"examine\":\n", - " examine_item(input(\"What would you like to examine?\").strip())\n", + " examine_item(input(\"What would you like to examine?\").strip().lower())\n", " else:\n", " print(\"Not sure what you mean. Type 'explore' or 'examine'.\")\n", " play_room(room)\n", @@ -303,7 +303,7 @@ }, { "cell_type": "code", - "execution_count": 103, + "execution_count": 16, "metadata": {}, "outputs": [ { @@ -319,13 +319,13 @@ "You are now in game room\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", "What would you like to examine?piano\n", - "You examine piano. \n", - "You got a NOTE!!! It says ' el '!\n", + "You examined piano. \n", + "You got a NOTE!!! It says ' PE '!\n", "You also find key for door a.\n", "You are now in game room\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", "What would you like to examine?door a\n", - "You examine door a. \n", + "You examined door a. \n", "You unlock it with a key you have.\n", "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", "You are now in bedroom 1\n", @@ -334,91 +334,74 @@ "You are now in bedroom 1\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", "What would you like to examine?queen bed\n", - "You examine queen bed. \n", - "Got another note with ' ep ' on it!\n", + "You examined queen bed. \n", + "Got another note with ' N ' on it!\n", "You also find key for door b.\n", "You are now in bedroom 1\n", - "What would you like to do? Type 'explore' or 'examine'?explore\n", - "You explore the room. This is bedroom 1. You find queen bed, door a, door b, door c\n", - "You are now in bedroom 1\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?door c\n", - "You examine door c. \n", - "It is locked but you don't have the key.\n", - "You are now in bedroom 1\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", "What would you like to examine?door b\n", - "You examine door b. \n", + "You examined door b. \n", "You unlock it with a key you have.\n", "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", "You are now in bedroom 2\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?\n", - "The item you requested is not found in the current room.\n", - "You are now in bedroom 2\n", "What would you like to do? Type 'explore' or 'examine'?explore\n", "You explore the room. This is bedroom 2. You find double bed, dresser, door b\n", "You are now in bedroom 2\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", "What would you like to examine?double bed\n", - "You examine double bed. \n", - "Got another note with ' ha ' on it!\n", + "You examined double bed. \n", + "Got another note with ' GU ' on it!\n", "You also find key for door c.\n", "You are now in bedroom 2\n", - "What would you like to do? Type 'explore' or 'examine'?explore\n", - "You explore the room. This is bedroom 2. You find double bed, dresser, door b\n", - "You are now in bedroom 2\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", "What would you like to examine?dresser\n", - "You examine dresser. \n", - "Got another note with ' nt ' on it!\n", + "You examined dresser. \n", + "Got another note with ' IN ' on it!\n", "You also find key for door d.\n", "You are now in bedroom 2\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?door c\n", - "The item you requested is not found in the current room.\n", - "You are now in bedroom 2\n", - "What would you like to do? Type 'explore' or 'examine'?explore\n", - "You explore the room. This is bedroom 2. You find double bed, dresser, door b\n", - "You are now in bedroom 2\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", "What would you like to examine?door b\n", - "You examine door b. \n", + "You examined door b. \n", "You unlock it with a key you have.\n", "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", "You are now in bedroom 1\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is bedroom 1. You find queen bed, door a, door b, door c\n", + "You are now in bedroom 1\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?explore\n", - "The item you requested is not found in the current room.\n", + "What would you like to examine?door c\n", + "You examined door c. \n", + "You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", + "You are now in living room\n", + "What would you like to do? Type 'explore' or 'examine'?explore\n", + "You explore the room. This is living room. You find dining table, door c, door d\n", + "You are now in living room\n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", + "What would you like to examine?door c\n", + "You examined door c. \n", + "You unlock it with a key you have.\n", + "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", "You are now in bedroom 1\n", "What would you like to do? Type 'explore' or 'examine'?explore\n", "You explore the room. This is bedroom 1. You find queen bed, door a, door b, door c\n", "You are now in bedroom 1\n", "What would you like to do? Type 'explore' or 'examine'?examine\n", "What would you like to examine?door c\n", - "You examine door c. \n", + "You examined door c. \n", "You unlock it with a key you have.\n", "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", "You are now in living room\n", "What would you like to do? Type 'explore' or 'examine'?explore\n", "You explore the room. This is living room. You find dining table, door c, door d\n", "You are now in living room\n", - "What would you like to do? Type 'explore' or 'examine'?examine \n", + "What would you like to do? Type 'explore' or 'examine'?examine\n", "What would you like to examine?door d\n", - "You examine door d. \n", + "You examined door d. \n", "You unlock it with a key you have.\n", "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", - "From the notes that you got, guess which animal is waiting for you outside? elephant\n", - "Congrats! You escaped the room !! elephant : Hello Hoooman \\ (•◡•) / \n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", + "From the notes you got, guess which animal is waiting for you outside? penguin\n", + "Congrats! You escaped the room !! Penguin : Hello Hoooman \\ (•◡•) / \n", "\n", "\n", "\n", From c381f604d669029d4913ddb9072961969a971343 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Mon, 21 Oct 2019 13:03:00 +0200 Subject: [PATCH 07/30] LAB SQL - Selection with answers --- module-1_labs/LABS_sql_selection.sql | 120 +++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 module-1_labs/LABS_sql_selection.sql diff --git a/module-1_labs/LABS_sql_selection.sql b/module-1_labs/LABS_sql_selection.sql new file mode 100644 index 0000000..050767a --- /dev/null +++ b/module-1_labs/LABS_sql_selection.sql @@ -0,0 +1,120 @@ + +-- Challenge 1 + +SELECT + client_id +FROM bank.client +WHERE district_id =1 +LIMIT 5; + + +-- Challenge 2 + +SELECT + client_id +FROM bank.client +WHERE district_id =72 +ORDER BY client_id DESC +LIMIT 1; + + +-- Challenge 3 + +DESC loan; + +SELECT + amount +FROM bank.loan +ORDER BY amount +LIMIT 3; + + +-- Challenge 4 + +SELECT + loan.status +FROM bank.loan +GROUP BY loan.status +ORDER BY loan.status; + +-- Challenge 5 +DESC loan; + +-- highest payment +SELECT + loan_id, + payments +FROM bank.loan +ORDER BY payments DESC +LIMIT 10; + +-- lowest payment +SELECT + loan_id, + payments +FROM bank.loan +ORDER BY payments +LIMIT 1; + +-- Challenge 6 +SELECT + account_id, + amount +FROM bank.loan +ORDER BY account_id +LIMIT 5; + +-- Challenge 7 + +SELECT + account_id +FROM bank.loan +WHERE duration = 60 +ORDER BY amount +LIMIT 5; + +-- Challenge 8 + +SELECT + k_symbol +FROM bank.order +GROUP BY k_symbol +ORDER BY k_symbol; + +-- Challenge 9 + +SELECT + order_id +FROM bank.order +WHERE account_id = 34; + +-- Challenge 10 + +SELECT + account_id +FROM bank.order +WHERE + order_id >= 29540 + AND order_id <= 29560 +GROUP BY account_id +ORDER BY account_id; + +-- Challenge 11 + +SELECT + amount +FROM bank.order +WHERE + account_to = 30067122; + +-- Challenge 12 + +SELECT + trans_id, + trans.date, + trans.type, + amount +FROM bank.trans +WHERE account_id = 793 +ORDER BY trans.date DESC +LIMIT 10; \ No newline at end of file From f9d2962a45b6218e54fd07799a7da77f394131ea Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Mon, 21 Oct 2019 20:15:01 +0200 Subject: [PATCH 08/30] ADDED ANSWERS FROM IVY --- module-1_labs/lab-mysql/create table.sql | 58 ++++++++++++++++++++++++ module-1_labs/lab-mysql/seeding.sql | 48 ++++++++++++++++++++ 2 files changed, 106 insertions(+) create mode 100644 module-1_labs/lab-mysql/create table.sql create mode 100644 module-1_labs/lab-mysql/seeding.sql diff --git a/module-1_labs/lab-mysql/create table.sql b/module-1_labs/lab-mysql/create table.sql new file mode 100644 index 0000000..7ff5571 --- /dev/null +++ b/module-1_labs/lab-mysql/create table.sql @@ -0,0 +1,58 @@ +USE lab_mysql; + +CREATE TABLE IF NOT EXISTS stores ( + store_id int(5) AUTO_INCREMENT, + store_city varchar(20) NOT NULL, + PRIMARY KEY (store_id) +); + +CREATE TABLE IF NOT EXISTS cars ( + ID int AUTO_INCREMENT, + VIN varchar(50) NOT NULL, + manufacturer varchar(40) NOT NULL, + model varchar(20) NOT NULL, + manu_year year(4) NOT NULL DEFAULT (NOW()), + color varchar(10) DEFAULT 'Unknown', + store_id int(5) NOT NULL, + PRIMARY KEY (ID), + FOREIGN KEY (store_id) REFERENCES stores(store_id) +); + +CREATE TABLE IF NOT EXISTS customers ( + ID int AUTO_INCREMENT, + customer_id int (5) NOT NULL, + customer_fname varchar(20) NOT NULL, + customer_lname varchar(40) NOT NULL, + phone_number varchar(20) NOT NULL, + email varchar(50) DEFAULT ('-'), + address varchar(40) NOT NULL, + city varchar(20) NOT NULL, + state_or_province varchar(20) NOT NULL, + country varchar(20) NOT NULL, + postel_code int(5) NOT NULL, + PRIMARY KEY (ID) +); + +CREATE TABLE IF NOT EXISTS salespersons ( + ID int AUTO_INCREMENT, + staff_id int(5) NOT NULL, + staff_name varchar(40) NOT NULL, + store_id int(20) NOT NULL, + PRIMARY KEY (ID), + FOREIGN KEY (store_id) REFERENCES stores(store_id) + ); + + +CREATE TABLE IF NOT EXISTS invoices ( + ID int AUTO_INCREMENT, + invoice_no int(9) NOT NULL, + invoice_date datetime DEFAULT NOW(), + store_id int(20) NOT NULL, + car_id int, + customer_id int NOT NULL, + staff_id int NOT NULL, + PRIMARY KEY (ID), + FOREIGN KEY (customer_id) REFERENCES customers(ID), + FOREIGN KEY (car_id) REFERENCES cars(ID), + FOREIGN KEY (staff_id) REFERENCES salespersons(ID) +); \ No newline at end of file diff --git a/module-1_labs/lab-mysql/seeding.sql b/module-1_labs/lab-mysql/seeding.sql new file mode 100644 index 0000000..fb9ab03 --- /dev/null +++ b/module-1_labs/lab-mysql/seeding.sql @@ -0,0 +1,48 @@ + + +INSERT INTO stores (store_id,store_city) +VALUES + (20191,'Madrid'), + (20183, 'New York'), + (20182, 'Amstardam'), + (20181, 'Berlin'), + (20172,'Paris'), + (20171, 'Miami'), + (20162, 'Barcelona'), + (20161, 'Mexico City'), + (20151, 'São Paulo'); + +INSERT INTO cars (VIN, manufacturer, model,manu_year,color,store_id) +VALUES + ('3K096I98581DHSNUP', 'Volkswagen', 'Tiguan',2019, 'Blue',20191), + ('ZM8G7BEUQZ97IH46V', 'Peugeot', 'Rifter', 2019, 'Red',20191), + ('RKXVNNIHLVVZOUB4M', 'Ford', 'Fusion', 2018, 'White',20191), + ('HKNDGS7CU31E9Z7JW', 'Toyota', 'RAV4', 2018, 'Silver',20191), + ('DAM41UDN3CHU2WVF6', 'Volvo', 'V60', 2019, 'Gray',20191), + ('DAM41UDN3CHU2WVF6', 'Volvo', 'V60 Cross Country', 2019,'Gray',20191) +; + +INSERT INTO customers (customer_id, customer_fname, customer_lname, phone_number, address, city, state, country, postel_code) +VALUES + (10001,'Pablo','Picasso','+34 636 17 63 82','Paseo de la Chopera,14','Madrid','Madrid','Spain',28045), + (20001,'Abraham','Lincoln','+1 305 907 7086', '120 SW 8th St','Miami', 'Florida','United States', 33130), + (30001,'Napoléon','Bonaparte','+33 1 79 75 40 00','40 Rue du Colisée','Paris','Île-de-France','France',75008); + + +INSERT INTO salespersons (staff_id,staff_name,store_id) +VALUES + (00001, 'Petey Cruiser', 20191), + (00002, 'Anna Sthesia', 20162), + (00003, 'Paul Molive' , 20181), + (00004, 'Gail Forcewind', 20172), + (00005, 'Paige Turner', 20171), + (00006,'Bob Frapples', 20161), + (00007,'Walter Melon',20182), + (00008, 'Shonda Leer', 20151); + + +INSERT INTO invoices (invoice_no,invoice_date,store_id, car_id, customer_id, staff_id) +VALUES + (852399038, '2018-08-22 00:00:00', 20181, 13, 1, 3), + (731166526, '2018-12-31 00:00:00', 20171, 15, 1, 5), + (271135104, '2019-01-22 00:00:00', 20182, 18, 2, 7); From bf20f70d296ac54b44ad9b8d0c1301ea1c09aca6 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Mon, 21 Oct 2019 20:17:37 +0200 Subject: [PATCH 09/30] Added answers from Ivy --- module-1_labs/lab-mysql/Cars schema.png | Bin 0 -> 96022 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 module-1_labs/lab-mysql/Cars schema.png diff --git a/module-1_labs/lab-mysql/Cars schema.png b/module-1_labs/lab-mysql/Cars schema.png new file mode 100644 index 0000000000000000000000000000000000000000..98b8448eb0bab7a7816decddd961b94c7a3a5759 GIT binary patch literal 96022 zcmeFYWmH_x_AN>X1WRz&ph1EMcXzj7jYEPFb zp8&s*B0)9~5S}9_NK0sgL3_CYw7Mtrx0W6rWfqB*N^{i)X4X{HJ0H zXIedagTo3nrMEwvE*Wl7NTSgN{d_pVd`Kpf96G2O&Rc|>2n*BA3b&Rh0!uhXHmB^zgz4>f;0{s8&5m15Z zze)rD{@)7!IZ^+2mj1^^{;z5LU(>+(|GXcLP=g3B0ydIdbv~p1wn8)!nWH*mmf281 z!mafBzGwRlH8SvDA8=k^PuV8PE~ZyPV2|BWZIi)EM4IRS{;ZfG;#N{VDTkiWJ&KwZ ze(S+w@DH!pk&HwK5>e2z+SCDxc}*SLHvF%KBLn+U9MppR0pcFjQGzUH2|-27t$nPL_{ak z{V%WWiPty><>7eV@rs&9rH#aMUUPjmBJdnC*H2g)_0K`)V*>@x5~dwxzL?i`JVT$&j0vkgB&r8_8rV*6$&Q*h9 zW>AFjH2&kcDNfMOS{P9k_{3lMWZhnBqj`hpXeMr7{gWvp8y$niVKq1Syli&H{SyD> zco{v&>EJsmtv8QM=Pk8-V`A)Er3SMRwHRfATvDCRMZc_%wwdPg%8C-Ft6IcoOWHX~ z@;&3@OOaeSVVpLjZ118=gKs-KXBsydDKDL$K*wGbN>3t!owU`o*@?`C1ig324{l5a z&nZRXUZ6C{Ri^P&o8D2rD$~cTcG={-tTQ>9%Qc>?QANgQ!wz06S>rHUdJ>yo_seLx z7$gJn^|8Tc!4H4+X|*R4EPTD4Kht=_Xz+_Iflu~b{}OFUk{BHob2?l2kIk{Q-S%HA z5ly=|#Kegfv;IGGf2KUVcn&N5`aib%=Zho5N;J4agAGwk#E161mS**S2iniC>WC6S zL9&oB1B$q!!vutjdd(Gr5vtg#3DZ3>|0j2O539H^?;U%@zNd$d2JepTgK@$aaFseQ zmQspdzj7oFK0!7gZd?2Onrk72$7$bD_;^tHB`M!eR8VoxZ~V~T7+hkN^X^EVZ34*L zChgDYyD?~(1PBzEm>981?fo5vuDKy@0ObbzyN*v@N~Lxv=wkc+ps*7Gpmg zAEn}4E2EP`0qn84PV~}{f7+l4jAdiJXMGjV#6)1!xGncqVVQnVlzE*T4H~fG)ew&eLgvTB^>iCb~?>VF81cx zvKY@m73iB8`!884UeFTli*b^KVtP=3Neuyee162_bVHxRVqxqD$W>ib#?i>L4Fhk( zHFmnyACrD@AAIeg=HI?*Ek)`@FY)4Y0qErQ!%Ha%Na@1c#y|R>^2j`W|V6d6VLsucynH@IaA;Kpfy6~ zQ-VfTFI*{N__L?|aL>HUW4rEdZ`FUp<{(K$URkm!l7^9(FqmK-6Ix9+M+&nId;SAy zx}hv);3&8cFxFJ5kG4glt=nO&T98DvXVzd?Akm8qVTf25pGa*C?*R`qwP5@y?bu6@ z5(D<;3c*6w}Fjh5noy>o_aj&dE7U&fEq!s@`tkwKvmF?S~FR6k=o8i{&OaV@O*WasFYjDDTNcj8OgrcKl59Z|0V zYweuz8YpXDxxZ&+$Ey@Zh^8LFUpblHmp#<2)A(k}=%3Y&gTc4g8F6vJJFV3bj)YR6 z4C~tPT#A7TzJPg~EECSAIZ&vkmIxI98wNUs6<5j-_3vXBIDf(Ezz|aloxfv*Xnd7U zIvsL*V8l|47JY|XyVOV#)-5?|gP(Bv^*hGg#nmC~s{4-3YkXG@>r|plaQ(;dDz#ce zE9c;z!{{x^FxckU+*ioQ*n8$Evk^nqk}FrGF>t<5nHMn`G+#~YoiSm|0J>Qp(YZXj zSO-6}f!<^fo(%al9WKptw=O|8E;IR0y*GqtGqy$AD(q4Oz6~;umnvOYPr2b&3Xk%a z)U?h&e&?wMKe3T?Qkni?lZhp0jWi%u)6*Q@QUg*H3-fB1an4W0#YMHBUZhB-L

> zHJYTFHRHG8w~*jry)8B5#NEV8uJ*ssa3keNb~nYlC_fN$c_M@Ho9_jcjq+(v4P_Wc zsQFa96hn$YL(lCxZH)P5C-I4Gery!wbn(d8)qz|i`|@--0chpA;_Vd2KaqnIfY{Cmy%wkQ;ZJMbr+EMQ zv=TmV=pKtd$Kg+#f~JK3@ieGRO&of*!#z!Lmk%JZhxym6a26R%?kp zoqTElM{yTx%E$mzx8ok^m40n|oVL^r(51QrR$&dixQM(DrCcY10K9`NJ^twr@0v61 zBb8qZs9G{taANzwTiqx1P+w`VNdYvzwEDFr8g9iVxD%G6?4zZ!UXeh*BRb|j&D`0H z&3|Gj4M)Ai3epUd#Ky(n5_{%aNdHJdLE)|HZ#~^V;|?+c&aBdy$iOuK=up^LHRM!R zS2JpUl8>Ky53b9e(xwW4gFh@?Z8A7k>Rf;wLi_8hF$-+RXG1IQ zE)eKB6|siOANJJ(pOYARZ7dV`>oIhjA@O9q_8p^q%P(O&*&A9FemOw#1Tyt0BDfI= z0c&2D%%e@z0>H+)mav+y`8{P$b1HS`Sn$)xOs?(^fU}nXpemuYI=ycwyf!hj77snh z?}uY)T>#uHu!Kqp;D&380r%}49SG8dtdTvR@N)#yS0+91QJ=}KA{OwcCq_1&L{YY; zqZ0)!0JE?mJCK*J1eyE6R;sfE^frrcuUr?tDjho10RGwk-pIT}KG_{Pc#h?_I_Vux z@{3|IOSe0EABEF(;qd=;I~68PbfC7680S=CAt+)wKub#tML19DD`WJ_3SqFH>;KVG zgV@En59r7D@7SIP?u{22d2OiF1_`nRs1$DUzn<`=qq2 z4VXVI%v)!)H2aTd48Q|`3vZ=9rqi+;D`sy_ugb$ciHWEn!qgC9_j{F_$z~98=#$Ov zUw$u~mr;I92$V8Ywp6nMsC0F%q>n7aBHU9hyP4oilA%R^Vd!A@e*Dx-TxaVGp3D5(Fd5`H{Pe7H+g+>aa z0m5P2PSnmi&4^!oo?yg{XhwXioLWf1Smoj@0qd@|_$nebzrP?R-iAZRrM}(We1~nW zA$(&JltsVdGYHgsE|rUMz8iR+Y%^6a^18))oxYtYrjh@v zl`2abTc1j+&&mM`6@bfH-_350+UdzS%cBxjF53z%l_q+kz046sCK`M3!QwCo746w* zHCIc6BbS$*9FJS`cic)<+8_TSLbGuAXN^gg$Ft!fjn8E2=pxEVawT<~nctpSM`$u? z6z64eC@GG>aav(gZM|vs(kFlpSR825!vpR3Fp=@bW4A|Cp{b~AjJ&REHNr*t>UHCotdR>px{^w(Xu9kqA{fzrv zOX2(5;YPRLBH+`dr1V=#(k!vz-HU^zFsJrQ{E9hu@o76BYbMZDKY^j=RRip&UUa%v9F^|`i5F=+Y;5faKB5-gGSt_SkR4ymPP2jyxUC3|D|-gL-rb)} zc${y$E@r;@QwY90u!VduGedS>o|v!lA7$45qD%2H-}i~J_i0adB_z-*VDy!Ffl7p( z^D=FM#gH1_(P|@~%7Al;qlkK?8LjWxpxkzQ`&DOvhH#;Dno)!OT;L{E0P&p@acuS> zadhr{!|Hko72m@}t3P(z!!^e5aViGbPHpRVHv*G7XUwtQJlT0lKbMW)X!b@;NWHX5 z)aO4Ha?~RE#Q5x|Fb#DpJCg2vl!<*_cS^pQ|CoSg=lMzjBB-c%^_Ta$(yyqFvvhk0 z+}U7+gQoE>&K=CUJSu&z4Nu?dV6ZPP&4xZYSt$abGzs<1PomnY+mIw#Q_-v5m$!AU zC0`Dqo)Kh+`!go@5+6&8e)R4(Z_yHa7;6D!=HooxveEbYdxzbXE5omYHLY6rv%y8# z7i$0{$Ie&{QgZRz%}^)?DblQ<20_?B(+5H!AthrL4}(a1qLc|*Fok&2lT6|9XP?*K z8DH$r#@S`@NUvFsYJBvdxV>Ej(~6t;?HUWa9?HMe|AtVvJJrASBCoSeq~&PtWc-8K zTCueWix}Cf-_|ELEl!a547`5Ml|JgvIt`SfH!F*$%lSU;PrG6WhHD%%yTg4v?Bgo3 zd1(rzKQ-k=i4C9Ze0zI$9~^7e%_)avu@>E1JQ^e+A+MsqDK_o6umHBf+M6@$v0FVd ze=~b!5T%FWBL`QovqHR5|H{-Ij}Q;=E7^UyiL}xkTa+O+q`IH02y}&4deN-ecY+%Z zxeB`Qh#b4@@CXalU!xMXiTwO|8-!KzQLStapg8SXdMhz<*Cjp1`=|&WR>~6#H$Jo!lYGXm8O58{9g+0zQqUeqlzH}s zr+dq99Ra0fvY^D3=Wd_1(J?#vlC&%DlvAg*#Y zc+JXAySMHwlPx+9_^iay`5R6>8To`?A|eB&kd6z%xh?BR{ze`X)S_*9g9I?e!;QGs zW(&{L-T@qM?Zbdmh1kYJ3CpFEX74L5;hUK^Yb15=g?jB4ub;s>j)abSFe*)d-+dgV z>@~2Wr33l3T6llH*N>Whzs~$YqwM^{3y-tq6ZLOkB!hQ5)UchxXLKNAq>^FyK71~O zs7C`DXD|})k7y5dH~ryeGS2BE9|4+2x;VGXq~sm(nf^i?b(r4_e!me=QqfWJLoX{o zZu;Fj6KNgxWRQ%vjn^CpmZzdv)!TWASl><0qbUI_EPD$~cXMcv^69s)b1tYAySg1S zI3n1D-Y|C@{2r4rqcE%hllafJMX-Zbk+}3}#s2Z0f@$vM%+}h!o00*9m7~}(-0skh zq>}$x^E18%LMly{`nSM<)~w!CkxF3>rj1J%av^V|VZw*FD7-dqA048vOQDOCLToU| z`I~uip?ZhjfPOXcv#h#_Ivu+yW^aY`dqnimNv z#D7}D&9*9)7~QBrlMbB-l_!{&a~s-5!2+v2PLioUF@5SmA-Wz_{8?FyA#u8A_e856 zI*^I6O-Qj+jhm&1c43IoLIVo8J|`1CoA7H~-7uW2Jw$+9Z0x?Sbw$>7oR4EA<6HR^ zg0MJ?O5! zAEe)%gIAfHm;!#Jv-?WCuK8I`b2X;DD|$Lt%pd;wTe^b{s-uhh$mDrqde3f8YQ)iW zUku7UM;w_Z6|z)_Z>KWb^dtd{l!_`r?tmm*tVE6HVtrMfmWtQ`6z8_{TVX-?LpmCs z|K*oW^=5m4TCudK8_nr*BS(KwjhT?_5^qltyi07Iajh*S?VIk$YGN7FdmK|v#9`eL zY~jAU9SrF$VauQl4M?7_2QgV1yX-c4>cj^b!yI7`q%y)$naN1pH!dok_Mp0_C>PRX zgvL*v%9@&f=r#f zYpn+W3mNRU1NbwZTre~`wamx^cXxK?b!cdKMo0#u$9Qg>%%Elwg>1k2TIglt@bQT| z{jqw|Z)M*f~0{-9$57D0FB@@@jnK4FFD0!%neOiZYwR2$ki^q}0XqLIH{5rAv< z57>|T(S8H-=EjDjrm|q(A&rmTxf`;>k2x6O28sfoS=N$(>|4(n*8CVjUK}a!QD-s% zQjlBmvH1`DO@Px#&X6z7Ao@hT9+u_J>&XR?aQBd78Rvj$X3)BSoui{3%)4%`@+LA6 z&W5~$ONagvKt*vVPXZ}u)FVn9gj1{C#Ku=n3-949S0OL12cdf6-tsKME^2Zs-1>yk*u_;o2G_?*1pcZDZ zCNB;GP;Pka_*%|Uya}iweykrUb^ocIOA#08v(eVW~F>&OF56>IY?HUl>=c*Q87G6gN z9^wKOjpx5?z`JNF1iZ4IJBr!T0{Ftq8&6hR44Zg{trLoBNt4KKB8r5B^jm@L4`KDH zS^pa-0Y?Th*ij;uncuw!Mr)GA)2cy=bvNH;o9hW5XGF^ZGh8e1R}fF;X@6Blx=szW zO^IliY|cYD*MnUeZUSFd7PnH)KeJ?vm{snT-hOak2+V`uFlg+T?pi@@Pl^eWDH<0NtrrmmiI~h zAD20q=kR!X(JuxVg468q?3}IeyR?ks81Vz37j8D6$l-l^j))0o^%Cks3_uLz{6_Qx zY~oO*{E2rEP>blpZrYy#R3aH=mKPNlLvOE6P%$xiAB2-&+Xp_cAMl&oy*g9Ml*&(t=a4!U2V;(U=UWkm$bT7ewPr!JWeEMO+D zgK(yh{*ZT!M|uo)54R^+$4-5n|IP(ycHa$`qw>RNZ@;aP%i^*gA%>iOSGqi#HkoYo z@l05d3cJP%67e}Voh+1LG-(qSbl*v_=vK`Y40D*TFOUpFXVm+eqlHZe?Amp=Ok)zP z#VL6^iNqLpqsUbnGkJOW_+Fu`abtIF0ljpD8*y>*z$?$9sJj@y;Z$TBfA-fzYz!^$ zfitwA*zT`=*3hjCS+WWWlIHs!qX~NKMS@zry+ZfO^=mr$pv7aKoUGn$Q}v~O4HEE^-0rW6++e_>@!9f+_lCe3#m*O(HZL(y9;;U!r*?#fAAK#4qfL?-kxt?yKUTdxL%J%10 z^yexQwH$t&X=6`{uI}#Yw?7z;1jZs$NqKBD0@6OO^EU@P_|s|w!bW6`)iAUt3NJ&* zlkLefQp-Za9F>1Cac0J(f+NjH8wcUx^nw5IMf^iKkCA`yg6)#twvB4zL_ipZxuvvI4ueP9?z$G zjDp$I{&44n&!~>D9Pl90c6+P@0cu+xH-KU0Zu{r^^OGOtuogV#9X3SEAF`d=-X3#T zvsFTl72}h8-FJVjM!m@6plsGD)6GP=3VihVXu)kf6XkrhJEFECz4^Te+JyC*TEg>$ zJTWWVu1iVmW*%yk08bA-pS9t%pW)Ch(|zXDepjzw^>Jc=Ng!+d#j^rMGQv}}P3ng>i+;@7s{URg*>9(Nvv|ERME$WO+#}qr zR>NtkhH}uUx0cNSAp48SzAFFX3V-JI-AZKyoruj|dJDGJ4?F6{BBS=+ubVbs?FxI{ zKwD&|5Hr5loCZ>SL+Len#hmJ3!34P#}eJ z3%s_tP`8mnRh zrYLz5KF1uAAN*`f0S|ZlUdNvXJ&#r-QkZpyP|@P;r~+=QNroF|BquwNdE%4&u1`5J zIQ8k#(Y!$wzDDYnKRW@F>Z}6CXYwt+ONPDQUu@wUz8T9Gqw0^Rcr3$v^0Q123s^=T zugvT7{p|hU9L}XfyRS`sGbvFRjbZ2nTrpO^ zW#_qMWMvDL(%Gz)uTRFsM%|JrRlP-KvA`6=A5{i3{DPo$@<}xOKIi2EHo+HLb9H4* zYZC=hudB_&u42dA`r^nwx~>nsuC;z)ug3@ z*OB7z7)8NA?;I!xPMtN4;z@aiz<60ac2Ce_P$0x<+ z`?Lu9sXXA}zVYUuMdh`&>KPPCYtSDFU`;tIlV5ZAU2q2;NPrEqy0BmJINR06a($-G zj;QT=hXpUJOQsRnvWqW2O#YDJbnbq}N6gs)i?J{Qj4aM{1##(znwUcuU;8B#1FuLD zYld&x*P`czh}o={eFCLO^tjlAun1MaMn=C&s(A`^Uc<6~3tE8<%$YIZ{TOL{OFrO8Pd0a5F zb`mL>RDNmn>1Yi~LNt82u!=~E%qnJMi4#zwmmKrO_law{xu_`FEEOaFTcUHSx#WwY zMPiYzb~ozaX=ja)`i~!qP_6Uc{wU70p(onQNWhW(RU4aMZSQ@}q}x)$;Nmq)7%M)7$34Cv3o-?^Iiqm%+skJhKac)nyBSuH%4Wk=B~s#W|IB&_de9i@kE ze*ba6daR?_Qquj&t&XsoC>*0HHDO& ze$XW6GLOh}i|0OV)&hU0RZU=St-yaU>L_AdcY9x$=+)RL3sV~B3!`g=;y3$Ja($cj zKF~0#NtmP^?=@$`t$k33xF!WbQ*W-e6&i#;ksmh7ON`t0_1t`q_m!>n{S`6(S~Q}G zc(g|b+uP-e&yKt(Vmh;e5TXiXYv9Ad0rsN?9OrcK`s2)1EoG8kmVgFnCcU65@e=3t z=vNP86TIH68JEwCiBj_-0ry!FqxV(X&FQ6-gx9m~GGf6II{}H0C8>C*-UdyA${NEF zJ{~XJ4WOyX><6QxjG&vd-E@mq{wwtws-W^7mYc^S+rK_3L8n|=01;~}+B{@QGv02` z;xu$JMv>h}7N%Gr4s3xa3>JJWKz_l8;EO9S@Ja-As!#46D8Yu*t=Z-{C#8m+ZQ^rL zFv&SKajX0vuEqmmi3BXng=Tr_i4*wrHBYr>+!m-Wew3(XZ{m^|&J#5z+C}L(>KBL? z5#`eGe0=k*QS&F4Z$@xZRAIW6vt10q!7wY15##F8TP4WxQkqT96){D}W>IQmM^~G? z#vm#kTb8=1n?%^^o-XRE-CkjPEWFlM{PFSzZUyKRiNO%dpU_q!ZBQ9C=&FNE@ZIMx zD7`c?w0dq#x=g~`F8r>)BXLT68QrD?*7Eee%KotEbS}f8m0hWu265A5OgpoaP#vA7 z9T!~BSR`cn`kLA_ykL0&8=7d#*(o}(R6`t#)MJb1P)=B)3%}5(c8&k0>;s}G_}$`V zM1sWx;uqKy^Ir15+2^bE%%hpWt;DZcc&sELamdjBH9_=xpaO`DPYH_50}rYI%M6a8 z=|BE#{Q~4Ag7vUlDPBOmncsPO;`6V9J`(NA9P7v4=kT0zF^a7%}!sR=vc>0cmE+tt!oan@pA)JN# z8*@pj*#R2Vj6is6d+9`vTjn?cY)BrvZ6h4xU98~hy}xXxIvcfTOT^zWs&}9TJh+LOM-tGKMC(1(7Y`?#`ZX=MJ zm#dSX2%h4T`O7pN;Pj$te^{H@1qgg)CFR&|NoPp)t{G8p;_$<3(3ZogZ z>uUOH58$7?xS^3Cy^W%0V0o<#y><1|n(+xAH5X-^p<*eO{vXvk!0d=H5s7Wnnby z@^iG7`L=R4+u(hSP z8}5B&3Q0r9;I_wyR{JGm3tW_hz4u)|?kE&ap~n-|v7555D-{bbJ^s6&JC-W)GSAuJ zRNSd-{;ja(Oz|1!&dAU0RCn3mmkm=tn-@@>?Jye@pOW)Wg!&6*6Bl)1TT{Ln=q0jA z?kW4jj{lG@sE(gF(te8i^cW*gO0zCL>>96GRoog7bjLQMSnX>H3fUf`tQ+--y_vQg8Ur z(<&>I=x>Bi89@Yja&Tcnqq}VO4*^DlGk8FHIn@J*{=MyN%>H-q*7CW|E<_6Gn9zc| z9{iv>QUZ!y73ohgV!`=8_Uml?GS~z|xH`{mG|;?BrdHgaY=lEN<^E3zh7>E8zWA0V z5r|z+FOV=r{7vo(0iySA*eNwp2naw_{@}^~zaoVCOx5zmqqqovCv%<&47h}YVBGL0 z;XQ!(jzaBh{Tkrm96l%1XgXl2YB{@SiQCqeC;}Rf&QN~qiH{)g3Cct zeXa$iq*%s*#Y)o8iGYdRq4~R3j^Chv~!h^(!vk9C3x37uXYdGWPr9B_SWqkcqsqupy!^zE1S4AG5=x; z6u6G^M{COE-MjD;Un^M7e*Nqe5onBEe46!-)?$M8duq@?Q4u{jIQVv|y#9@zfdT1d z!jfWu!ZGAJhQ8KO4nzS6L#4L4@SIlfdBo=SKOz+lT+YbmbLtC4!#f&csccLQEg2d$ z8U(oTN;j5R&u(RVp2eN#{v2}j0zlLo>vFw{s#00>g3E6%4)Yz7fxl|A?k7JhO{h9M zJ2BTSiUB5t14tdx($YOTy-Yv^-NocA8*p^ZW$!n~^ZAw^v6aGnlCrX*6BDsL2`XKE z6aPceU@39oZSgts>1+-S4{z3f7NwV7wN3M9CW6XQ0p1@I6VshUE2myzz|$akrrq>4 zdfLSQ3OOn&s_|+gdvR_IqM1PpP~^q|Vnyt_(wE8&r^I`|&|f+G_{$m&W^u&0GAP0%CyKA9@l$BQH7aozUbr8(b?!g~R2-u)^C27|rz zvw0mPfus;PE4*(2WEG2t`#agsy!JEL0MG6PigI`!7(FF@HBcl^8a2(rmCr^9N0K-L z@*Syzb9o{@NBvX*D|tQ#oq(q0a(()?r>7?{fL*_a?x1lE^TZQ9KHIT*aNz*pgDXh; z_cw?AfD#kCnKrFnWfX9C*4L6*ZKOI@tdbp0z@qy+;Qsc_R4GC8yKVEKYk+xI0VK8R zKtn@g3&40^v9!^@%+}gu6YT9wm4&n$=1r4uTbqt%@mO1B;)RhpHa@bO{>oDr{l&P& zW24}3$nQkc$s+QoP$tG1;L_asSQr@G(EL2Tx%_%zpYxaKgfAoi#Z9dxQxg+Sr5X3- z$wspIuz<9hjq6_(hS`H!eZHrS_g9m#+# zFVE+lJ_7ZuM+VvSp=UuTl;VIG;u~Mfyhr@VGitj1;eK8?LBQHz`}bgShNzz)mqFjr z5@0=}V4}HiZ!H)!ZgcaVc=uke_-z-Z$0lY1YJI)avZFBaQ$9A0LZq*)=LXK}>5?IM z!qFHk7##FTl8m5 z?M4%@kgkrRaQCttUI7S=_>l_r$)e}7Sx4X_Yuv$_%!IPh(^o=1%aC8Y#P=C^X`koOeG79mfbRk`o#k_&l^C}#j-!CNGHhk>xi(b}r-7{xF4=WX`7dy$mD zTqdc^I?Bt?-+36+F+}XVG0!3FMAVFh`h<8l)l1mghERu$P&D$!8Wi(}It=Ls3YfV4wKt%S zs!)OIY*Y2C)-ry5Qb>MDZH-?!U+*yN`Y7q5DA2ln^CECv3+&7pvHwZlaqb&a8oP;O z-y8q@OJj3mepNVd-#EODcX|06irw$vpWnpz38_0Abo?*DCFT=caKZR$bVR3CJTM?% zi!h9=&DJ*gSh3is(MoK^{bfS^=4F3dhfBN#8PPWJ`LNH?Y(H0xA@=W?zFsj=J^|3# z*5qTjHYn(MU{8pcITO&xuXM)D%8FWb z!Y9tL*N3`~WN>~qY;bI5EXpW)UB~bw=QStHOi^voZCoUs6>meo(V05W|N3n*ATS9O zlSk`Cn~6fobSt8@N>oEebyr?cB6#>)wKN6<*6et2ITI9#LQz0k_(_@QLC{!uP1xil8)ezelr z=c9Cpu&w^puY)y+`U$g?Ht~zAz$UV=NZosr6;FwWi6`LC&l*N_iRd!0UCN2 zjp1-w`29!keSg~kXX4tk8_pYAqCG}N0fuT5e^@V(^`kh81-LxZCo22I@+oXY{?$it z(dCHkqa|kCyl{=&3;B+-ot5{&WdF^2aL(Cj~m@DTI6^Y@g>Q7s(dMKsgjR<_^I z319MWdu`@=#>%hvM3hb5&MKzqr7Rf$1lrA8{K|AZW2(;uJ2$KOL$O({zPZkTo=I>(bJ`eN?dh2;5 zlG185@+(xbw6_Bc8FHnn70G10(AQNR15Jc%3vAMm5ItrTX3_p^DqMP6@9Gj9(}-W> z%bNj<3ol zazgck(-5t1FJTPtG9&|&sShrIfs>ET_M^;A zKBx%jf7DCE^F%jPeZQ47@DfC#I1)uf#9FS!dd26R&)+$&3i+OwCYPEla?Vn={2EAP z_rb5ssp8ZSKJg6i5jYv5g9GxZudxyMWT$E0lZWml#_4ZJTAcy@M=QX0g+lBt;>yw%xxQf8*tCN5Wi&REsba zi6zRtWo%`MD)sKl=u?#y-FpJ-Vb~;Y<-)yq(2z^yny#+Kb8;;bQRU77>B(WPMxGZf z$P)1dkcP8ZOHsBNgH1KKmTyfRynfs?P@OdXW>_lQMIzy>@W|39DayfZ%UzDw*)Knh}T!<91w#HnbquckkII?$$pGZahp+okD7 z^vOUH?I=gU#P}9vQeG8KdTH__ny&{y~V8* z{Z3+BUd*ya-H)m|c9oFF#}*3{5oRuNx%p@?aYO3*tE*77F-oaIpouK1#(PUYJ&# z9CwM2K__o-MCg~%hD%Z2`m=J49sM%;yMk<6n$BF%(3`j1dA#;fdhtoXp0OsZ^o_4E z`F`*++oB|u|Nhu%uVvwD=O%gol0ltqQH+)2MU|?MwaE$yw6vT_2itkdx=!#Hxh4g& zB-btUu*j?cXe75ybNDXqSEtG?Z7Y^c8)b zB9l7cf9oj?sUbgb+W>JfcuQ_MtSsj$03pVS<5mc;Rrd7ATZmgFf(Ako!7G?j0VHN! z-C2z4{Ql1EOzlMEZj6llY&B}eZ)co!p{Z-o81}X|G$f7A0~4nHVoi~9uukk%VE7k{ zZRc}#eZz__R&kT|$?lg4hx)U3JR5BmY;D%UP3abt7rB}c&7+g1ej6;QKqg66*w7pY z`$v_n)lUsM!{#Yd zae8jS@GpOmf7&8wZ*M>m(%e4&MfwkqsQn{aJtmZ4?EZ48{^`vKn})b+SU#2*i$?7C z`Ob)!QcLB@L;?~cIhUCPn#xX8t>5rfNbrVN{fHHNZ-4C?@qhUSTI;&8aX0a-Ix696 zB$jCTZk=iJW*m*+#l<(iOvBY=doh6@EWLLZs=|_u|LewTeqUz1D2pU;r^CGHRELwCWlYw|0cl7CqpYQhhiA zf_T>ZJXUPSnREtd{ z4_Q+5q)gr4k3duRR}fJ|YLri#zyBDr4C8Zyb8e_IA(EsaE( zr?93sPaZHCtJqE<9=ysC5_=Qilvx` z8lk#$uUgU{uQ9`{HhK&8KD$+^}l@@T_Sn zD9SJBd~8RD`y0-Q;M&y4TL}(Yw*wpN0GD_9Ttwcpa$IaL4G(o2#_*i`is9C*3HnQ% z$sZOIrBUu zVw?4tyB)%8ZT#5)pofb-f6_2!ajSk@Dj$VT51xwFUDS!kZJ80J2)(x3lhn6r(8cfOM!(WRwEwAX7Dbhcd2`uOh);>=LpB&!U*aL^X;Wbi~wj zWT8`9mO73g1|Z8Oy`r-IPcmFKpwu*ze2zY`LyV7{1|r=BKo*DSD0OADUR;FeqJxfC zHZG$MBNDYl5N}1UO&LLAN=nMctl{TBmzf6)0ZnVz@LbofGFIFXdRCI}-<82>!Qp%9 z{FG9dxHp=hrH0IV+ZIrff~FmSG#9kr3?Lw1z-4cSQ~RsY?4bcWY{!#9Cj^*j2>ep> zJmJKhUlh=k`~B?|7>E~Zw0gTkfLLwY&u>aQ%s?h~u~x54hX;}?ZY7XQ(gpCmYU@$b z1PNb;-1{(`&VC5)Z<`7Nl9}MshuYobOI!4Gs>1AMP$R>TGqW9JkkX(*GxI$pdJ}7KPf0SOiy2BbWJI=^OL12(8f#gh{<^$Wc9N0x)9 zy9qv0(*G-cyD|W}o_8cFzbeqCi*8$n)>;9(fr@+m-`hU&XLxWoLPfJunOyhtCqB}X zCs&E|+B!C98`-!^DztX&P;&9=O z9AZ0fTC&m$knHNRNrflYr3_yi)jaXjjb|H_y);S%s@mL0NKedX7cv>Os?nKsE7#RUxUJuV z-AOamj912B6ROXq>~0SHZ^LHMN2Q5r8Zf)*=6O+`};LMq=*f($4dmk z|8lj??ltEZdt%jZ_n9ZSb=zII-);F*^ab4J;b0?U5cDOke#8zqAivKzuJt<7c=K+5 zk&2*9w}18VO~>xA?&na}-D%SqDYccArNs>HJHDPg0SBbF3HKrD&m*eTRiCy$oIXB% znBHf^1&#c)+752A4r?|~wcYUa0_`ut1QZH4zd0tSy*}-)WYjAXJePAqA!1H7{!#tjn*PNGHbPQEnY38_DK+9ix-N0Q%Y^K(MyZI@x z{qw!~rcvb?!L!y*FeQHyi&k|_Q^eocWn2366pW)R4Vcx7J*NiJ7A1(|>$aJfw>-NO zy|E$WHY9$ySz=FH8XP3=HXKI4jaH-Rgrb z4Ef`LaPoiUFJbO2#+d|MKDi5D2> zHb@w8zxlLdj5Qm$G`<_u?+l&6ar3*cLVUAS|Je4IQzZM6*JGYt9`W4pxN6ILdybcv z^%@^*d5nNtt^+qXDeP2jSI*?Nzw9Dw2$;<$_cAv+Szxw@{!U@f_;x3z!0I8v#|66D zTHIdHV7X0yKIlMD>kPz}#Fp1S7+uHCbiHd9^%+Z`Y{gu*sO!$9M#@XQ&R3`JM$pPL z9@1f7U0wTHD=J#fU*&U-WK7rZ`Br2GRv7T3Y~n%Vj@%iFK7CrPTW%0?i>f#wWWkPQ zPC`~M022=p3@3b!mQnFL%hTH&Dee{C1Yao~G}cyIkG%ca{5U$bvC+?Js<6pg%zu%A zwaTT}oLuN#hjavf9Agl}zF=lpT`Gq4N7JOjzHa@miaaTm29L{#Mv;dx&_)w%&qxc6 z)@?t4Szk9YLdSY(w!4ts5*YS{vbh=~<*0{T;>W-5JS$Xh_NCujXdFv%6Qv#lD`b1_ zSreX-HnjGEH6HS=glH7gWOEsaWEg1;x8kf8t<~~OAr(5iKl$=UZ}y2&7_~5;8GPfk zfc34%j0S(GH5&o4g(ubw7alUHzDdGwN)E_BhnV``p5+_*VMen+-Pf{GGr0HlPMfv~ zwZDQM_s5g-F6l;NvDjY@6oh1Ox*#6-@9Bqbj5{?#9(GO|H|Cc5v=m|9yNg&Kz?KRx zGsRHs((Xbu)Pzx|ztxfQ_7>|XC4ogB)sgY_C;9ncyX{5lLktH7k}-%zcw%3gAt{6q zI%qUY(vRGo+2EsN$xY3jjV`P8lk-j6zrM$c-&^+4nD~{zWe83i$xEVi?{Z}nZ4w9H z9zEJyYDPQDst5A=jii4!+BvMh7Pb=v!c!xKRO6T*j_UfMxX@VehATQ@`C%iTuAJxZ?A8WL#`r+Z`07!=o)Zk#` zgtUDWk+0YwDSNneDCQq?lkYX_%WLsnZKm3*+v*po@E&Cfvlg2ktof*tq>pUcZAFH< zYw-6cn29_D)O&w8Q~}5?!z@EJ)+*PX%I}FC^IXPR9zYFmmDW;Cp+O8e&+`ObMnYR% zaAlnyw^AFey!p}EFerD}BNm`4)4w#G9Yy!TXMVa;c6v90U&lRwsFE=DdL7+jtrJM# zz&yod-4H++OsKUts_uytcT|{ZaAT>jG_imr3vD2Hbr;ZU?#z)sbCv{{rM(}mU?>* zsQbx|6~DKsNpnO>%sb#-QM-Nl8Y0y=#s5RvUq)3Kb^pJxAV`bSCEYDZry$*p#700u zQprt8NH-!WjdW~6debE#DIwk6-JFHL`+oj0o-xjg^G1i;!RESF%sJP0&iPpx(K&nx zVS|0^w@FP{U(T0Bbs|%>{n5LP*vYgD3*fhL7uwPtnOloF4JbI@k2n ze_rM4zcwxG*dDtl;dkx^=dZk{gikrldw(gzxr!rj^Q@dnlRZxuQ=-DSV_{jHG$Z?i zA`pg1vRAnB^vY`+F=ZXh=hNgfFCwh3Fr5kq?yA>M6+Lmzx@h0oD|*)F@o+zLgE;O{ z>-9Tsv8=cznX06|x_(`!+VwK28-iuwM0E=xyj@LR@jDMj!4>O zcXkjpI4d4;Ec8|8Mo!RA7tP9(#-fuSPo5xC@zBv3f(obccr@uGvcJtJ6DPz@#2#q^ zWuAAej$b)z>{;)ulm8O-js8v2c^XqrLMi z!gy*>t>$QoPEF6mts7-x_!$t9k3_N-3fye5gyNlDYhP^*1kL!tgTwLP}g3&*qm4>V5%BGrfp zm~qnBAtjHOFIbmP$DQ%AXZm_ojol^w=}{9EaYZJ7QtyYtrKdoto*QKwzfs!~N z%gEwdFGlKfF@7d?@9!9NlYZ36*2yH9;MVjAcfVVtZrp^55W7xiJk;~kpTxAOEm0gEYEUInWBwyPtXh@S>y)-_tJ0T5FFV0K$ppl%zk2-VyMENapPj-b4Jy&3<3U- zSb-*Xi@vL>wFA1f%$h2%n(d(+roC4-md!ez z6b7qOb=_I`{IR%7SuZakad0qy{6#+j25vH$+Q^@tT%GUg1C^rgXLlzWXDBC>>-Vp z4A02OzV1?~kncWXp2oRp?TMe#9U>i4+ou(sb^?CDy3 zZ4T3^STI&HVx38dlmcs&9IRD~rq_2#6H^*Sx$5|T?8m2Gjey#zbS9iIf-p|1wwb=c z0G_oHHL>26)wI9P3Is`#N&NyirzDx`zXi<~*;xizMDp;uJq?L)2`_bdRXB59&kc4q zoeq0l;YWYo1tJrMu_m$qaO0p)V;L&b@}QCZ`&7D;6DcX=+PXv|#I54GH^6bocA+_i zcWLYytXOlcvu5v<=4Jldw|U#!0~oZBSvd_ea3ZaZ6Nli!>;e*$j2WUR+Sg7KJjN3n z9jZtejq0|>@&osbxe-tJkybHyVfG*CK2eaIYv~7N@M}mzp21dLUIj%2tHAkvchzf< z?5tu=TR#kx9S6WmQ+WGbKD-R2#?zNx(dWy)PD!JomzB@RNUY!`igEWOShhVYm^*4}wyFDiF$`-U1 zoH{3q&e8o{GB#7)`fQC?yby0_CsZN>7q?(z#XG#JR82FW zSW+LG+Y3&)A6bB$P_v|IO#My)l>Jn{3Y%u8JKW;^#w?38f@WZQDCoQ!bE4zz=JC+m z(1iLRThIa7LVq;hgnEG&{D__8hdw{RA^AX{)%zdN$lKco#2!kCDlYKjT%fc~%ljF^ z1CwlPo;M!Uxm_1J&pp&Xz1XvBESl}GUhmQxE;lyoH)V*f@&}-N#asr&SKWXsry|d0xf= z-s*Zvngq%|fYOG9eEK zsTlw9(0F-~{Nw@a0B8{pgfs8r$wJ35F40(w>O+G|KXUu_{+<3 z=;<}GZq;%$g|3m(!T%KHy{%F}x|0E;(CqQ0qv(HYoO9haG<*(=QwTC0IhK6(>`_Om z${XLIXUE4~vofCsJx0qcXH+%1>CZiF?(Q$^zNqP`v+ZLhz7joxDN)9j#o<) z@&J_i9*lRX#0bwWki!g&Dv;@dEFhL`C z;KX<-Q4%{Nw|3FHyXZd9^Sq8ix=$wpTc&60dSJduc$RdiE(}@}w=saOFk!i?O9YEcf0BF zqC~pRnB~viq%`#aS?54J*WWR;;k&z?YZM#*gmt!J-k*&n#K#b*&QoJtg$by&QR2!= zAkIYwC2Va8MxR4K11tP=Tz{|OP>Wp-9MK+6>;n5TBMqk6mhoOE8eq|IoG@{lb|ZT7 z^_g%~p6>Z%=M5|taF`R@(`j4>HE}`)9{4W9ewos6Wy1=5(1$PnPW%xd8U*q>vn1c< z6@2($>3p9DHHDrlJhjm~I5VWzOf+tWDd`4F7*pw9oOPD1popeKdOO>#L_=58CR2k< zK6*9OOLrXU(J)!gOE|jUFb~ z=PlTx_|#!bH3|1-R+UbD2!D#mJ|NM1ueB=t2f~mN(%{n~o;aAu2)Q??dps{9@GE%i zZ&6lEN^)o#n^p3cG*I$E3~4B0spl;S1dNrJb|W|sphEx%@gW~n@`%imPg*jMVm% zpfXm>WR@#Ii+6 zr%-Hyfx|DHW7WhaZnyI1H7`iCdCfE^?PgtPpe|xBW(n2C`hL`;nZz15;6+i04w05@ zYszAies+9=?exKbN5tmhG;?++`>k{3`e|voMt@Idy9W>VDmNW{-a@&`T}M`g$0)W< zg)r>qCUP(0lS(>40vS?gV?FlgSM86-Rb!|Z$bk#oTg+E~(=q_&ao6U>*gxzDs6)m+ zLDcDFDN-+1O*{9}@Ixtc2(TJZ;;Rf(LOz{$whi z2{H*s4&F%t_7ykq z7UUZbfA|zqOSSZYA8WLEGz&p0MMRM4v<3yFU6C(5@U2#o^f!JQ4}R1t0D(Z-gGWc` z`oDi@?hHv?L*w}`T;$nkoTUM(;&)UD@}Xj`1jy+4E}MEX9YqSr(>o76_r!0;K%Mu; zMDQT(`DBBP4+ZF}cnC&R5A21XMxR@TB~f0Uw05(<98@v7BLq2^TDK0b3(NjK%dv8d z{ue=jsiEmGxVp=jA8_LX19h`_c zCp&TOT;HCoo$@>15G6bBgn9|pEd9D`O!)RUO9T7(Iw_XnS)NwOkW?&0;1tAVz$wg^z;3p{*3$J7e)y6NVHgb zw2w+xQ>b<6ZiMu2{o7{fZa96(6!Bs5*Oc%sw&@JX^ECSVLz8=6v0mQZI>!|r>WXTk9g%fS1C8TP!aQf%K==CjnNC-XtMF$aiq$L&VlYsVc&OcCb*Zy8@ z6*Qh&PjW=61M5iHY&KcRR-y6M_3i7h?qnVlAGSt=fFzykB&%KX=fCr^@``VOM)*4~ zPnoQ}o(^L;*TX(V#0!0TyaZ9w?!)|lWY!Kc5t}>6PbeChP%TC3)vS*QI8aWkVaX~f zy@rN-wVcVNi6oy1`dt*C`DU|XEx9Fw@|ETA_>JAwU}z`5%f_SVC;t_Gn>qd^IsUXX zZP;2)HDNs6pSCTvpUzgfTIV6>;^TR3^XaC1gR!4#>QgVdoWTo*qbDiza1vHRD|3s%>{9YFq zfAnOQ_s`Aemo^vPX%p;?SH`1LW3uvaAF6igp5v|6yX3Lm^S#N?-EEyb3^*33C+Jz0 z87@CRO}yS7WW*znEUeo8B5~l<|H*03l_rvG5@QVmy*CJb%qru}rh{(XN8VnY5?|`Y z&NACsE6q|ZluHb}j@&qf-w=(!?L8n~evp;yhDC}`XKw-#Wh2Ul@YK*|;R22HbQVhDB9 zS%Hu^bGCk4N=2+a{4Fd#6($v9(phe`NCr4nDuk_($ux9ySg_ls+2I}XL7if8&cZhY z;sHy>j5@4hSVav=D3pDEz~u`El$zc7Fr%hB%$f+2 z2)_V~<>i;K44M1a`LmSF`iFX@CT5(nkb z)g~+F{@Yy(&3tWKo-G;Ta-j4(m#Vy*AK0C&GW+rz)*VIm3V8VdyaWs7E~3`Hj*p8V zgFxSruvDcn|N0jpncw3E7nAKN{0;ZpXEgq}gXuCriVhAFF@0lx_-n*+C@bPQOv`FQ z^3**-(GBS1ui6ru86f;oKye}+CV87H4AM+|e&5oTu=?&_H+i<28?oZH2XETu=+r@b zMkecB=$`I{NGII!378=_giQ3u!3=Ys*?ll1rwj8J94qZl0#*H}|7z$Ds2^Ne3rG|{ z(!^&%ggnr0SU!1ko$@t{^yELvQC&8 zWz|4H;OR&0N9iIa${LJ^zxkqodc*^}@%$;;GfD(RU+>26_Z91Kp!q4Qavb zoUL{j*m`A6lco&N&QI%_zfm-%N&)8A9N3?kqi=ua_vO$xpA^B3nnbUW!HDRZ~+e#D+4=UG)bUl3mo$8T$bF?u_@3#0XxuEcpPgZ?^U`d`)x@P}fFn~p#=DgK(-T;~b&7UB z3?H(bJ&`IFORg1&fr}ItU*O{@rLZuSgHbW@O?+#6onb+qpO)weqz+XEN>|Lqfo;0f zs_7DNcupyL&U5XX!aXJe& z7mifu3G6|h0b$Dv8Mws}4kJl=T%i|n!& zbH-hsxC314Gp8n^x$0VlU2ZNGc=A^zi~__$A1pjo=&3kEE%)0K9|64_<_vV*3~`&q zQ_!p-`<=H0S> z6x;72^n64Yb@9cq$Bm17?}s1Le~1IKzL1Ofvh|^VrwnvUgp=@~dz|k%AAcCfpE!?k z)}ud3uI1y&Nlz!M?eOp*MjW`!R-@aKTAh1qkuJmDUN2!kFP(fsyprvaNmVg1KKa;s zr5V=~S07Yo?5^v{>^SGtB#LjR^S<~>r*fw`c2YWrffa`v81a4vzwfr}1hwJo&Qq98 z-*_w^=cn1XAGFQADLls)<#el9lk?j++Ls4 zP*RF7@}ynMQ|!;8bFvD&J;JMC7*||cR9#$Ld_J*Ts~*JH!ZLl_nj(o>k4vv~4VOfF ze{}vSCrK6REXV%47z_&Uzd=dOJlH}|tCH8EOv4XGgM654^12?%Q6LPMfbOw)!ChHe zSiA<(g#&Lo<&&*YVYiE-Gb>E$wFYzg3#Zr3D#r7d`Xf!Bv5p!%?~B@s`XnVW^1CscoV=Z4s@I_c@_52Y&J_skS2Dlk|fLt8LlGr^t_fpJ+KPXH?kP$9hJ^ZQrrV2o*x{~4`(a;rUH(LV zk4A2)s2d_yVZ2N?JI7+*u<6eG>M0X$WO6Zg|K{~UadZlbKh}S#^tPc!D>02iF@j2Z zD{KZcIq~38X%oz~k>Tp#1z|h9JbGXpabghB!QsNDp=JAOjAa-E$e#S3wC<-KqmS8~ zVZBu>IzGHETT?HjLdCp#u6mZchw|N}e(uj88{Kn`H==ylL@H@n?v5(AzGc41Ig{y; zAIq}c{!+$S{Pq>f=K}TYGshCc5vj#7y1G}D%nNZ3-omV=U>Izt=-_`7Zt*=};)Oo% z^0rEl?}D@nZDXXC^`Ewtkma(Eb2i}@R(PQa%n=~FXneKbywt8DDjCqLRc3id)}Jbh zk8-y6I`v7!!Ib`f+aL!%#5;%dY;P_EF#vse_w|?I3R{%^^Y>Nj4UjqCIQHK+ zb;5}?q#C7v>%CiuRyp9jp{jSbWILTjf7%tNKzKO%AF7i$%6&7%$=zv2Q{pDpVndxtW~+=ti1nRT}1z1$EA_Kqq2+JVQo3RR5EinlP41< z{xeNlrfAM2V1_8ypLfC>?txO4l3{{ zB=t7h(MX!SgVBw9lcmJ{m)3_y`38+oy27uX%!l8+X|u&3VE1#6>ysyT=RnIlCFSe< zWiPYbc;{8-cB_W~Xp>K$NYY=Q?l7Nf7eH{QYiz#4bZjx6>3Y>UdR&Tn3>egU9!mIg zb)Dz*#do)9ZNGFm@je_2&iwVALrnehdilWjc4K52-}9hH_S-;$NETW8OUFZpJanNz ztOS@QGJe=f9K85^Cu#Jk${ixYDUPcf7t>hRwV}URNuLy zdaUocr-``NW+ z3h9~XlWJgD3!Q~d{dm}#En*K#?cJ-yB-Y4l<5x{YXKHVP_kSFkmb-U4z^_|nbYFRw zYCy5zE?5BgL}E2z?UUwpwPkRizSu<@#Y-;+@M?n_0egWi?b&jN&Q= zYPGpY2gi|+@jMoT4;Kl=vnB@J-@SrtF&pt?OYF_G_Owjrzpbuq*$w?Iw79+=lv`EQ zYk{=e+ld~WmEC(}Iw?}*b^{-{=&BvMu-H-g06A>fB%}B%a-QOpc7hc#fr;DeVE1~~~q zWOl;-JL4Aol;+QTS!q-yq4NCYd0&&xWAbc<-L()JfX}fyCs)4)Q%YG5{;}oz{GEA) zr2&@458Y2rUUhs;*H;*aU-v|upL?@I7&BXE8uY3qr2bCyzJWG6Y~qMQ*PR7s3f>k~ zU+irUBD)i}d05_y!v8eklkj>y{SxREimyPZz|SsHApGpZ5yvv!O@b;JIXSsC)T_u< zMS!+YVGvTW?$WW~n=yNm9M2X#iU(iojU`mF)_R@W|8^*6oh6aSxneRmO$Qru2uVAK zZ{ub)xeZ4uv=3tuqON#h2A#Bpt-!|F;)(so=L6dUPYYxQ-fD zYya(9$sP$gQ=x&tffGmLRB!NIU)L!jOv`$_%frjV`0}gN5%D5y@VkBA7(ZXBkxWAM z@0^(i3d~lPTSzyGeY0gr97+d{U__!!8d-M7F6G(- z@}Rfw?2ACqM?O}Aw0pN8oL?*ZxYqgxJ(g!)E4|zxf{RuKE>Ve5q+nMSS<~0Q(5I~k z#eF=r$K>Gmcf_Debi8P6wJAFXjvG872rPS@DAc2CHZ zHW+`kFlh3hxjgEL6ExSbv}8nt8A_GTxJ9%6ZB|jv;X7}c^Ir~9{~mED6c0x~sAq_*#1kz?k!D$pdm`v=bj|Z?zr6kXj2lHK;}3HXG$ewc0j*fF zO5nkdFZ}c430vD81tz{-JdBm6S1Fq|vL?d*zrgf1CsqnOxKOJQ@vzuu?103HLGi4S z>u_#jQ1DyyeTnknt!TZQ2rA(~igW>bT(Mp9=9MzJfPc=h`O+zN;B8UlE-1kLGfV?* zS})4op72Z4SXfGmjKNY<75Jd1`W!x-$ft0*cb$5v=pH>I-(>Dq)TNk(ZvWE zA(ZpCTj_H>zl$A-&RTq z*m0zYL`1OMSx!EEueKY(ug=To>(R zQ6(hpXjZg2J#W=BEUTVZ_wZ<@=Z&vzBn*uJj|MeLi8y3zH?QOqgKhtyE1UtLQ5b?Gi! z^lGR!{aqoIZ&38KjUv!=eeLvDj1UZ*u(Ijx(D?(g_WxFp>u{tgEN0TAS&2-a{ZIe)Hga5oSSn@?V7~%}<9nEQs&6 ze$k+#5vI*Mh6%rGgf_L9)O@xNWAbnO&R0sKH1$(?(Rnjvv({-*SWoz#x?=TLNF{>` zDpH!TJ0rCXboDFp(Q%qRoZ%D*9pMGbpT(ml<~vK-NIPSv8}EgV{$i(NO9HyG+WudH zTIe38`8_W=%=-cj{Qa~*{W@D~J%N^@&vw3ypmF{M?ScFxn^BeYPaMIv?VEyTs<>vc zC(Q5hfuwKLsz`6RrhJ|4#oOF{e&`I%n_VCz7AV>(ZwvDLM%}W zd7#?lKfSxnkx-E3Wy{;Zq5Cvj#aa`*pU}VK1Oyx~eDZ;y1LQm?2}EQ}7(~^;5Ol?b ztq*UmPIR#DJ#Tbge)2U>HgeUwKY~BUb-P|`ve7KIg$03IGPl11B}TQuY?m3KXWLhY zMi{nzrx(gX$bnkSMXcJZ;XP5J8#vv{Mau>u z_I@xRJ3WUF@HES+)Dd5yy~hR#FTSDqaD>aIB*sj+HRJERq!fSV;YQ5`hx&GGtfKg9?s>_2LI6@fb=HIdeDmtB^*c$AMH+0@lRp1V0YRW$B>Jq>pVF$T}dVm z+&cQXKFbTQFBH}?u`byULeU}(kq156Q#Y5BR>?P&Nv!b@4p|y=bG@tiE+CqU#;}q ziB&VX9pOEnGbY6p;%R;Do49Z~eoFbrW<=tw8Pec{Al3U#<}RzenO$a4D+nA-z$~2o z3)ye8|DzkVJVBpCgK!ws`ur)-paDG9VP?~=V=GM}5(gPd?i{1SytGg2<7^i>$^q|t zzKWeX&b7KNyFcSHA3&s_m=7K#7eVj-QigJ%l%)PyIwQxG*EF70Hu+UjNSaqT>Fd{^ zmrG`?_$>nMrOpfBMI>}5ZyC1-;`r`0#Jo>7o|hUmFh8=Hv}|K!1F{K``cCW!wj4A{ zoi(=2nl)g==6}XN_F?>=LH^hHmtnx|Cd&{^yCbE}cK!}mTBtnmVG9KJT8gk}`D_vQ z{Z=89znIXzW@xw5=WdVrq3HvS$A7k2Yn~{*j5NPQ0~s#v%Pi%%)XkTcqHj#k1W#6D z3*>tEHCjcQ$Tk^1h6|^FtpgCQEP!Ye7=S@YE!cp=0-t(Un~w&`2O$QbOELyPs?}4* zn`8ttA*llrgwxu{(Kamqw{A39%A_L^dg8rLUXyd z0*Ekhx+Xn~Z7aeOl2TGfW_<|b5T93}YqfL%3prKm$jYho-%pglHk`#9!tDf3BeQTE zqy?J6uRokevGQeJkbBsp1$H+RB?lz;UKs@W;J0_>`V0_# z0>Cg#%cu6lGAsj)aAUsNJ3Od=viBoT7aQ`$HK%D8<}3R-G5|4hDk^Ph5x==TpWpaX zfJ-j+IULYI766ABu@ZDbO5WY5?Crxn&e>f6=_;-FJG-GEz$z;pfo?S)X8^DM_3Z`7 zhrAz^DD;_lFsD3*X1%HbIvN!psI*$t!P~OMjVAXlkwOGs-vg{Jr_+Y2HOc$eY$tH9 zlVO>Su_8ireCGGBBlH4l7~j#s2a>o^=oI3=c>_dC8vrk>{g8cr*hVhkfW%|Uc09bkS}EBryAsE`XxJM1AOE~@V{GsTA(#w!Ai zHU8mDS@&a4$C3czx-;nu7*kZNtcvvO;Ci0ukaO_Do%%gapvAM;pbiJtc$TdAi;zvv zA9Vdvn)QBL`n%-s2~acdpmt53m$VedEh5o(<1sa&9* zqY9|nAOHl^;|F}XXXB@3>0-kM0vr9yqt)RGGlk2`2fQUdhBY?SV5z;6ZOYhw5 zh--<3)ZFNCp5=9YmZ1#yGn<3E0YKE(6Q=7Ba)rPdhr>*h&d{aH6dr2=fG7_Iq=#&P z8(N@7KAvm#Ho8joO5wHDJA^w3Lux<1?u}zqL&Rs+e8%(EWxmNvogP>yuBW>3%W3oJ zLaxe>z>5}hof&x^N|giV)+VEVb#b^pJ^LiBN}9o=_~lg7Z>s`(>jSA_0OcNxwLJk# zC^ri?)~N@A@;{+|!RsNWFiNj80lt{U>H|cph5O+XX`LD?p2sjiLhFtayJK7o_Yb%{ zUhkX0bYAJWj#UwT{vDO*CLE%ryodI}UlDO95Q~)a{jX=fBfr1%VJJFO+=3O1@lm@# z9U0)t@XNeFy0Yx!q6At)F{H7+g(@>H_8#EbQB_k!z4X%BEpYHGRU*j*I33p%(d6h^ zvB`yX#r>RtZ+ZsiFI2q&$hxM0w2qjClmM7&@{rFemg~oX*c9yKud1s6gB)=L>Fdtl z%CL!WqXttLvF;~pN~qf6bd7yj&B!C+z*I+J5x~N);CxO-7G9`Tgnsf#_@~`0$=%&u zqM&o($y+c-$d+$WB)$9ppQKl;WX>TJ8U~T_sQJGWZE0a z3G2Hy$A>gpsumR#`k;Zms1&>=C4~oR%&+|O2dM~{K&*ywOgN4zT9`j*87YGqHM8To zSsciJTtG^TbyB`T3qD~jFMiIexKHeT2LNgcjev6B2HKW`5FS54O&N;qgC(IhAsMuB z+Fk-s+2Lkhx(UF7Au`W4xF&eA*0`TqA?V!E?2KHK7-qS~oi>A>=p`*0yviomq-Bc# z)&c-_7=|LQ?!4!*63`Hy04xvwGip^f2wWHL{4>VZp&KG<6zho0KTsR|nuGs5uEJ=t zhCwCmo9MEb`_|^|d+$+}ftR|uip0JWXIP7sj_U&zmTiX(7K7w}N)7c}zCv`}ZQt&L z$vWJr9PC}f>?Sczh(S6z!2O1n@2|uD@s;(sV)$BOHep;CePoCS`~xlxK`oI)%c=?L z;-svnD4`_k!p)0!*Zc#2>2<#TchO!y9Q>O^9Xn0_$7K}ySUh|ZUTQaH^#sx#LCUbO z#=n^R{KP?^jivGJNg~dj-ApajoTBpFrWZBs(Di2RdfcglpYk9bF2e=ube;+Y0tTY= zV4BEkCBXKg5g+U+#gIE8+N`{^*>R)uH}Cx>*A}>mmLn6NrokTg5q`K{obF}UV(p8FOzV^s5=Lmy zpQ$q^d*e0P?AD`oHY}%!KO+I6AYX!4M+R$c$_llCdP0-Q`y@i*eHi27x(?2lV==j*kU)7W#T@|2#PlX4Ck1aW~l6oaboL(sBuWx?gVHBND7DxWybAD z+M8ZxZpsInovUNi;38ZfQc@z?l_T*Nh;$-we?sLYBezxjzQwr3w3GU$B(G$J-`mi< z4mKX#o0@KLwI_`v@JQ+qDe_m|Yp@&n5faYh$AGP4V#z@$xAB)2KEfi8U4j4uoMCJR zSg|qDOG3R1?(t#YN|jE&i-GGpZ0 z{T0g)wbQwVphR}uMXnP#JQ~}-Z>R)@hB@~V49$c0Zn)~xvi{v>4O?fH%{ceKd}WVRmPok;j4^#njE2Y`cWor6{#1cM%;J)s3$pxn%;Rial{z8g8(Z&z7QAVJXFSxr;2`l4ms)zE$b0%D23(UE&H8ZLdXPWa`; zKHw}790a33sq2o(SlY-m%YTWGNNz}y){ z4=g0x;%~rV877qxH))`5uVy*pdatE%fBdgsOM@mA4a=Y7s39nc&`U?xXi%0G!`}(@B(*2 z&=ZHoE#^*+-A=Li>rxzVFqXLID?L86M1xn1M2Fe`p;BZ6^iqg;JQftzK#vPs!<+V# z+@mtw`gU}B^rHK)wF6)GR%tLe{c!!5m+Z~%$YnH-mz6N|0u{ThJ*Jm0z|(Mh_i$sj zn9H57$UoY{xE9Yz|53uT8K)syw_JLymg$H2F^)>|)yXEtM4*2sEn1Z@r>T5GEWMMs z@yU#c_MA*GP<&)rN@#=0jQZp-gDlXM>ttl?P3_v8o&;l~1Crmb5Xei2D~`ZR7zJ`+SywgtZX)tnB+P| zSIz>1H>?Q1*GDJKtwJ|xD3%zcBMh;e>JwG-P_08SI>ZIqvjK+ccogQZ{ru)%(fkSio z64mb{CM*K)tCg+lDSMUZ`i+QN^D}8h{VGCRtGJeK!)+<1+nb1>veg9v&$*&Op0q)&YqPe| zyki)=^*E1iV?h2&uM~I?gx%?p-WGt0o=xvQ8!?)1SSjvUgjmWHO|))=B9^jg+S5p+iyJog;)gZyEJzx55XP+nRXD6#yrm+q00Z8ex=8WcmNp#4KBeK=>0 z-U-@Be)Q;zxtKsgi!3^97(1qBdQ7~gYn3j=b#pwMQJ+&NbZx+YG{HV=mSOa8f^arQ zz>xVbwvfY=py!p$)3#rKiH5U%cO2i;w)0yINYO5I$}VF^eQJji-hL6G40 zU;fv5owB^$+ENy^>;BvkezW%Ihg`y3LDr1@O}mBUaH+M*3X>{o^ZhFlSnIvd?gvAmvL2WjuC_d-s8q{1e>bXJI`|T& zwQ@S)_~Y`xtamHR@gK${lzI3R-sdK!AE=FG%{O(pV(c@4M*$V4PWR@r%jbh*b`yS* zL!JkCe}jtT@DF%_)wP{81q#9r9*-P;nYeEU5{&c?68RWhbWMKuEQduCP$LEx&(oXQ zBU-FwchjG6oa_ZHkWO@FyRVKQAI6Ut&l6pu)6T;^=& zO-U}>C#QY(87#EdmcMNMXV3#-M&Q2NY1E+eosO!o_0^1O9Q;CRi#xw^J7X*A8uAcNg)yK z-xw4G4~NM49q|)j^C5>+n8@r&92g@%jyeZS37?-W^rXF~Ijo#{JF<8YK$!w}qUpMN z^@aJJ&c6}k{@+Io5ga*F+WbDm4qXM<)q(^W(5!Jdm{s_UxI9QeA%9d>PT#w>d{{J# zy{KkB1Ovrozat4(X83ycHNVFe?V8FZKGye|*YP%g%RjEY$79vT(XyU!-YSnkCEYuI z!k#9^GFbe7=OmC#C#Q=(Vv^2Pnu(M`_=9Zfj;U<}75SUQ9=&y3eceReS#CNj|Gp;% zL#j_xyjN4@45N!aAV>^!jz@LT7wN1srE|PM96(Ya1#Y*VWelp-vi;BJB{0FK$~6Aa zYPBFD<6yw|<{KXaC0e{s*)XR0<8y;XPdRuA5H7r#ZJ_g|yNr5Y7ain2LX94c-_#M^ zqF}`p{rr64NmPI8g+a_^(YkMX7v!K-*e7Pu1Ik)~jIDWhXE}A%Q;>SH!d0+7=J$GM zRqIXQ1Q7pKYovreXtm^40kPVTBqF)hX7Zy%(8N{%SBB(jimnGOXB%$O!PaUso>dd` zg4u&;R@VNodYP=gGQaah3_*rah<)}K%Tmenl-itk$l7@F;1QRSUB^z>{Vsmcid0P=5b zy8fSQQ-8elo3-7PvllV&c1Y@Iv6$Dlm){2uBw(MR&s-=RKc_P?VCTv2M&&qKEUXN- zZ}1(M9*)=J@_L>uh?31z>OZy5(s3QPUycTlkN_QwuCf}P=hjd|e$u)lLW$uDd_${> zwju=wH$!vobGW-9&DcAwmbHJ=^X31Xo_$cBb*%~R5ur@x^?Ks8bI7coqZ|P;6<;M& zP)kmtA&pLI-`GHsFOovkC&le3^Av+)F=#L_Q@^<;hDyVH;tbw&M(^qA_0qJB=)j6R zw^+a-l%du%YL4I}OMCG*I=+Or=T8~Q9W1qh%n;TSpXe2CoE`EZMeu| z9`P!OdEo;XDUp)0kSlzkXyi(1B5On9mS1R|N07_tnW`TNn$q3Em4A!-C4P1r_%-sSu23RR2p$;15d zzxm%s4GqE;y=|nGBItrdIFJ@uvE>j~B+w|`jav=sdc-v!UYXlspyQ!~5Qx9oK)Lu8 zO(h9O-DLNy*B6D5*tSaIL)f0F6{#Z6fP3r5ln_MJKvD!3Tvh;5lMjWN|Dz$NX;RWd z4Z$U6O?Ow;cY9Z{r5$4BztRL@PR0;8dd~C1mGQggSB-s53H)P^wOE% zVS@+X9mci_U|wKCHu0MPmmW~N9jz?f*Ez1AeItH3zWwi8q#xTRzkWz2XPeVK#QV0B zv;S+Y0(~6g%^zk>1X7k~xbUe?C)dT%*&~Y&2CD$D~s;bMp}i9>UJdM7=oXcar~p2NOZ^kNUwiRiV#0#`m|XaeZVJ0SlxdA69k0nAcLzF zV_4sEDcICHu0K`JQ{EjpCG7el38JU%ZR;t503C&TRTed5n+IXcwxJ6L*eA9aHSo#I z!*P`DQdon(X_1GK5j9UaRRY|VATlbBTSYG90%&1(LJvUPte*sj=Kr_4&gARs`*5$~ zaDhf%-h%U3q1M6iu_U+>;l~}&b4?~n4Qt&`nMZOIf~>|0(GH&cf7I2%*{~C+Xq*l! zvKUsQ%y2mbmPKcPK4*Me@#BVjBvUe|4BT$`zAqk2Dfv|l1&40gqmznwc0&@tNB@7= zd&{sYx2|oN77(O6rAtyu8k7b>=~#3KND3}OLXePDTDl}zebLV~%l-^Bkv)qGBl0EFB0DCZ6+(-}SX z&dIoqLj6AgV}|#vp6kPT0EoZ?1OCGRJeVUBh%tOKH)pB^gBVW^w80No`eJPmo|gz0 zysPW$-@D^zMhJ_Ive&ziDyLam02Cl{lgF)K#=nvjKvg^5&KcD zGQWFtk`ch`A#lFA*ZcP7%{~-Z84v;IIug?*sO9$xqcB2djVxJo%{VJyEWm0toc}c1 zCf!s1hwJp=C5Q-Fz~7KxUF0vs{X^KB@6dho{rZY%EZ7*#Byqo=@5cf4Dfqo7X^-67 zg29CPo^jreGS1%{k$W4;mw%Y?&=8cJ^snoVp1T_BvpO7bFZ+SQ-&hE`Jk`l(3aEtN zjkxdCz5)pB0TingXQ_wacNix-Q0mC%WO@S-KJ=xt5 zI$un$G2jZowI`FAy^TjF8E3;!Ug8&>z!oc@4Ig)2s4cFoxT{6>u}DC}?q!gD#IR zm}7Qc03#Pmf_GM;Uoo4E^yX{nw+MsQt*p+R61em&;l^;NW`}oY6iwd!AX5~f&btBe zvqTW!;ClZrARafJ-|9Wo?A#mS{eksgNc?e)A|Rb_W%_^HtGjJ^=~J_i`!G+o@zt84 z)OVUs%Pt_Bli)6w1g(6)<{cwvet(H$Js0nexSuRIZ@)wWwO zMHJ;Vmwgbfo9jRZ(N+?-aedHkx6l0kSlr$ zfLAVI$H)lIA7HAoX-?blqQVwCB4f++JF$cxeFrhY@KkaS zutYnxbU2Ws$9A3ng7F71CswjiI;#nuZDGQ|;M@2ZNN@v@DPy#m#Q^91htEH&q9h*$ z4Ku31ILN3(X3pG32imbvArvQSPsNDHBx;kM1K*#}K~t~iqK%P~`5_52W?$Qf4u9;o zc#YG_@{_6Jd^28W_#44TBm~p%bSIC8;H|Y@n~h21S+432+0)veuS|ZP2||KRkGkF7 zNaQM}qjW#dEsOkW7kbLs3;6{aXG-DZUzM6H z3YZ(TFsg<&+q)%^eWxN4h_x9y^S*?RLHu_V&xgNm;bup@{KWg)>4O{r(%J+!SM&PV!Lq0 zZDusL4Cecx26nEcNOG^%x0&$yankUAkd0Tp_-UES7nkC#f|Y)h4f+aR8t0-CRY$4( z)QQXF?^XW`@pqA4%c~IvSLA^p89xp*uO@Ce`An>(%vqLKq7=tQi12ihpHJ4``$gSu zf_KLYrzO;!+SiE|QTK?gbht=Tt?BMyBEQ`A0Ea0fzQ1q_W9?1;qrRbn;w=|c0J6dGnW1|k@sApZj5dxsod;9uk_K#C3XS_?%E>hdj;K> z9}YhU4px|4`1n}PfAtWUV+bJUZZ{ES3VU-(jX_#(nFA8DDucAWO!U)3W(LDm*m7Av zf(`U9LqSJapJql}TD(LcirfmyvtdeOm z_{%Aw!d8(bR!8}O*OKqNb+FPpx*MqN(Vn8*m-DVutN`BD0lFJ1h<*Z^A~y#yr;ch% zXx(5-h6^3o^W|FLJ2|-id)55zWtgc_j7N~}TfVH3@xzURvc*aqF=#E>srjKlOO&TY zG-oHFMEBLqNbcT7k@+VRgitEWpJY$@+l{~>{o7s1P~QE(l_whXD!*)Wq1iMp#`z=t<%CIb+N{%n#3yuHz&l1dB_g&J-0%RE|`n= zrpDrkLhzG_IM#=(7O+aEGk#ouID$8Vp(CyrPOrk|bAju43X;dt>hRr;=fPN=;#Kd{ zpRu6e%YQS(jm;h=pWB>-=_`sCquKXfrP>`s77L^ZH9x0Yd824XsW{s#zB6s<-R z2h?4>wwt%o>fE6#S&|vsS}76-tCz^06hhXQ5m@&#f1zncqTpxd2dKpL)wB6y-Fma# zoisL$0^S+ghvW~YJeo?_zgsLkon0LN(8^|*MTl{aCW^9pliqaoUc}WIYImi}ww+eN zGu(!Y#wfnqOVUGYRg!ZmLHmFJIZ1+n!pc``O_DxWH{Wc3mJ8G$LD4&-X`A=(W)p7> zt2g}%zpFj|5$6jCN@oo!Yub?SUKE#KUp_t&N7pDZda`9yLzwm2G2G_(A3`Rz`lIpk z9Vc9<$)x*hBZjFsd{6>j{yv zM>lkQxi61qatpY`y)TG2w7J8v&t<=v(_f&6wAd#06DhFx98Ua@vf9770C!IA#zdX1_^G$Qrxuzn zal~a$WOpM)Lx;q=UKvQh_N8XveQ&$WTJ6aOfO=}e#<<$|Ir7xy=?PXbAda~1dw&U&%&ds&!B=ipAry{SWHqz3BkSeNWl0Ll?-)$aWVY2 z*w>uvO5DK`cf(g3lYq%rEj-(NNr#vC+&J8F06!0h3gsSy&5k%vZQo2mo_$3-lJkWTJ!*@nB4XYc0^pULr!*E zRkjVWlI~HSu{KW|hp9nv^apW5-l$?0J(sZ7IoDWKm z80u}cS@Wpjelr1N_Hxf6jwjAAGckRPX6macAdzCjR)Q6>d6u!^2bK${Vl_=X)l$m3 zg<(g@>D1E{DY@R@RewgkI#f0xEGg})x<1`Wm>bvSYSjqftBIr(q75mz`nLHbxn-}2n&KEDUepi+sEcq$oJ zXuvr-3<&&)Q(v%0`PyJJRx6+uU}u8dBcnD55rhEPm)kEmcoC{#cvn?m2M(N)1km8{ z5_uqxXRgq1+!tH64Qu8WH&IPyS%t;XX5nGQi9GjTH~P5dsjG(hQ$x2oT$lS9^S2K_ zrG3k~f6LK<$_w6=GgwAQa1cEh30HTx5_upLnv@R9C`Pd+nS0SD9wwrHuvA_ui%_+; z8_T~NtNm$^k&E4yhgj~yuaYWYxk1>WMP*e_ZK`+Qp!=Hgr?I*F53nCVRexYYE#w*!je$)mLSK+?0HTf*3JMA#4!mAMx(elA zWYsdae?XMjFw)QhZG;+W3RFRo5AMS>HUV+0rFe=_g%jjYFo1=v3VNJl{hL^cpuTd} zD@AId6T-o_2P9PA7<*Kr67aLo79itNdA$FW3q~V=e~8XtM*^;sxvzhI&k>K|3n*<_ z!GkU;ovqOpgTg>vGgb@vE~0fI{rC$)***= zj5;^3dQ%+@lu62-1uy|>13*qc7gznfZ9Xv#yJ<@bD5(T%>`5Bm4OrU=S;&J*qA&C#0mrHZd__Qc38I>-w9q%VAm$mSP31 z+RN9v9~(R`lOy6AjNj^fr@lQ~#G8hD5&z)i=NU7Owo!QO4XskvANThpqp z6FdEEZs+$mln-FJ!@j1256x6f=4aC`id#w%u!-_#yG6fqXA!`DD5Xb}fSDtj&7ELj z-dL;)TL4h2?QEmOv(KtnzB)CI#!ElqdzOX3d;qRwQlLCU#zO$)>RQFCHY+8A&x)iM z5TQQ!+G%AOi1cI}W*d!VDeLv4z-Vu&yt_lN3WADEI&WL zZcH?Dux4D2)+%O*?o1H~uju^;B_$IxUCs}zB4{Njfotx^45Ez?Jh~nJAn1^@a?EG>VBH-syg5Ir zDn6V&f_BdQ9Wci1WSjpAHf*S+crm2I4cbIRCYMD1rRhy2bu2*S-IPo~hv6?N(A<4Q z@W!&Y_O;$o0x=eGOE%czBzcMwLPWD}fJb6p9w3O1HFzBp?!kSp>w~Zbh8DZiWf?nn~-hhv$16FtVnfPYogn#v}TH1p^|1(D5n7r+jjum6qKMGm~9~ez!N{l{V4- zn1aJg#@LU8bz3-E$CAkz)SWmPaX}GGfJrS3;CR2H@(&WQs~FZ-ZZ1KW#uOX_e732h zeXXfy5x{y{Ike&*BW$3`;NEik@hLeY+5001^5Qv2tHL_JB^Ua)ai_5r6_S&4&04Ls z4xK3kcoe`J8i(Kcm<@2MciTAYKt~~8ol0mf{!+p3_WE^z<~>W4T?M)~L7=;+FKdtW zLH3_6leT1Ji4;3zZj`FzPnIE{!>`=!hVQP5_K=XJ&EoJ!Q64 z|7aZ8G^2{C*~NCvtR)>2Y|yM=4FRi3u@bv|XF6@<-va!Y*1!q55rtq~uhqIWLK>jL zN!Oj`t(xY0f)4BLap@a`1{aF4?8I6>L_Jj(;AoBq2+ezgPr6_~#S!}AVS*);Ud~c{P>tbM;`n}9{UUJnk}2fu*Ua5Q=oTpz_;|#8?s(#PW~WZ zfWm=WuS~kd{qks?alQkDJ!ID92JcgkB8-Te4IHJjU#$;ww{psf znfP712mA!C>QBV`f}AH6c!m7q4JhV+0hEBe$wdQ<0Wbhw>JzbjY=PlqJRN}H9nKV_ zyA$hvRN@MF+^W$xp#PxOa0P~7nL4i_M()tdgIC%jj_n7I^@>e@`ePUg<0!OW5hyGA zC~`rzLPlIh2%&Lu;#HkH4iaCAH>`su;5Y@F=2Geh45dc|OM7(h?g$xBT?Q<=+a#tJpA!o&%}FMQ2)Lel&Oa=&i@kGb6o9J znNkzAuwyE;ijymybWk~UHOFiIzG-?1NnH}Ck94Dz&k+6gq*=e%R(JrX zP`~oC$X(kzIlJkeD-`T4qJ*n~M(|}f=pmZZ7rjdBNQaE9mjKcI@J0V9p7Pi4sSao6IpPsemBQWv_r?ETAVH)9mK)%w&~XR~xSBFFee==@d2J@(O7 z%*WhqmER{q;H~L~sQSTfmQl!y8&W6tdj!h4X`_@iEOQxFFD&mk{xp9RRU^zR#mKwP zwa6f~x(GU6Ms@B(dq+Uyqqmj&CKZpsUo?Fj<1dLpyC&q%8E4(NJsxAJ9`p2C3|Y_Fq}ZV>lzXjpSMkXtzK74)lspSwsvf z0x>8}+>`M8%|-EJe;41cKuV*(w>rxrA3Su}Cf4rxSy8J-%K1auvgdC@5Pi`|(|%{q zm1w`Zx96-rD#OdHNW>I@%DIj-=ZTMo^+Ti3>jQ1W^&8y@@;-Tw2caX@>Dobo$i_oQCDpQg@9uCfxN+VmQxyp@BW5NVh{%$A-_IpqH1zz34PjDpbc_-Y$HdzV zx5izlH|pvhnnVBbi@V=h;lnck33}onuq0qhR^v1@-@fV+o>1Hm^nX-0wBUZB-21T? zd!}quK2INs4e=z2X3?f^B$+FmGQwI4pHy8aV)h$jFsUJ$st3onIBw-R$Q+*{$P4Pm z0*3-#pG3-6)v$uF)UWEA)M1GPLcN&xZEB?ODY0PU-vZS!)Xxy>wT0$`3h`7y%L#=x zPzN0M3C|M8hEUuaBNj>@08mSvHrr zg;A*!v4%YHi1_PvbX4x3vgq?@S{E-VPi`EEsvuod?DgIS*)Tp`vsVDM&N%ZFB@Y>fjEt=A_dqUK z^rUvY*%BI$HBuEl{>lqd$2$+5EMtTZTX-#Y;37jD=NXX>{lIFRettAF zBfUz|8Sy~`l3Y7DzzgMeb&f7Z?m5DzD*MqedbB0LH2K$!?GiWE+rt;7`m+;(82oGg z8>u#U^?MKy7i(VfIYq1F`jf@^7@UTsW+ixHs%{uQhNm9Uz@oFqC2E5em}Qyd;t~F~ z@=`1(Pf9*$ewvGcv4!QjmhoQr*o@@!)Fe&E0QGas@lF-B#aIn>2?EYTe zM52XwQc*NwP6HX(33nN;z9K~52%(xvt@23E*smHd*kQ9#q2N~@NCu!72l{ja_=`p@ z{1QE-EQqiZ9(d*9E7~D*cuY_v{T84#g3TUZgjD~MtMs`i_7C)~f6gQPjIuL5({x>L zq{Sz|0~F%((BZ_KzlGjSy(*J$JOAKVnb?1l)jH%XfJ)TAVApO^2Fv$F>t}X7Kx{t5 z7({ZIBGAQ`qxbEiIAQ?T1E9Y9{{yg5F^K{ytr0L!67eY3G}$W!C}CQNOP2=r|Nr6t zPnUv;{NJR%NkEaJ$yHCI^f|BlB>P{SzyG|PivGt2Y@N8`+`Zd6m?gJ=GUc=g()TkU zH0CpJ!wfel2Aep<*)$u1fS*7?+m*zZW9W*Gfw8dr{Z<~Z1f4-;zcpQVSa<=jlefLe z0*e4v8Lze{D}^+?2Q@_&kbtAW!PRF<0|=RWnAPdtgL6k)@+d@(TV+ddl zS_5tqp)ILz4b*@q9RcD=wsZiB$eW9Y01gTQl(b0=Q9<_m9RHNi1CmZN_&*v28d;bV z2;uj`7sIB_Z_zUotHEcBxUJyG%F3ca&%a6kmw%Qg2g<=Xm!P{jT{$h1Ku{@QTO+ z_{+gDz-G!psUYrkgqhlfkT5p_%I!l$hkIWK0NKuiZIwzvO`rfn$k@R=i^2$ssCK}s zyKnf_0Vv_qpj;HLDtaY)<=OsopzN?rrIGX@kE9aDXbnt01$fNDKKQRJ!=KeSo051; zB#r(dWslLR+yYZtb5%iAwcjf+pf~|YOFgFmH0MAg->qj2W$9 z^b9FKTB+MB0R(CY7{_KHOR}B%`URR1Q8o|gi6BLdN|2M^rol3|d2Ax=zp;HY& zhUgcVbwI0?@Gc%OPO+uIM(K7u*fh1}mB=xAtdz{37qkYz6YILJ78kGOA0%*4FF*4D zD}&N>6y%yp;Lm|+ z9ri&bSH^RzU`0Ct&cvKs3*`6QyD8ex$lVV`0|?fy=PkNXN47sFgM81y#9)Pw2MG%) zHn>dNvkm&PK}hFD%#C=f=Mq2C+w-AJS&v-EAxX7>$E1;KW*DRgVXMagEhXnQ^?zsv z=+SdCl3qqwrD&sIVuBXD5+`~I?FPZnLV!E9>2FT-L33rphsXC`L#z??i^0r*EzXA5 zyXjmpsp6i`#IvqC`Q&$P0L&93<>wnP_J@w<8bK%ts8%?#v=W&(+h2^oeFbgLvZKk0 znTbl9p4ufztthh=?#>R#kHm+Z;#pfDCn7|6 zcyRhQ!=(O|(q!i>-Pi8_747(+80h+&Yz0o&joI(tsg>pM*Cs0SeR^9HL;~{j!(&hA z{H_QlGousb6_L*X1VKFCCC{TRlS6|JE>n4=H}83%j+c5xDu-6LoW z0Wc}<0_@##OH`II<;CARZ}GgpIbttGqR!n$cNZ6lkYP9(Hf#Juok9&20Jcip#cB>x zS|naf7O?r@tLqgoL8>so>Gxd^Z%R(lTCvKkhSL}@i~a|S(<{O5t0F2kpW$Z{`MrAI zK1=d<3Ci@SRquY^s978!lw-(mx%6B8ng7z)Y6U<{3dio4E`*}J#QSXTqHe13Z!SRA z7T(fQ+T|&E=>!N1w)62st~+6Gmg9BN2-iOJeP9I9GUQS$OKSk%*h`E8;yu@d9H7xi zpRbm}64TvK;Opy)@)xa(J8JLWLhk)`dGZy8@V|uIE^7a#bxD*5ug1?jORzBq^qYA6 zUZSdXW9A6{hsiGhU1Fhd`9^Q&+xB2q;5b6fz4O~@O+qfaE@Uh|4u7tCgKE+EMa2pt z4-O|e+m?E%!S6&`W2X%=;*8|;25pAAUlRHBrS^f{3f27qDqR^e3kmsY9QUXLu?f)ZV}>E1(-YE9Nr_i*q)94$%%|+ z0UBVp@sM?Bbt(bD%IBb)mH$OFE}T#Y>r2o**{xcaMJ9Ms?3>?*8|S`HF`v#cV4G-& z=N5vxt0Gi(Z)si`XCO}jkoT@pVAT0XgP`Jwhj@vElW?+_wc+rr4CqA*K$!~;=$@ij z*Y1K(U(Qqf4>@;9tXcn2CZ+eQIvZioUolrm7x%Qx5W%xGCvPn8JO<>{1tp=w16`;Z zW{%Mm80iE97ubIOcd#A;_UqLPeYikR5!Z^m{Sk-{hKWX}%$VUFD<>G~+OnPGX=u~I zU6`7#7z4~^kJ*qD-1v2Akg;K-(YQ7C4=-Jpy1$4o1&5&q=NGw_@fz{-!(Dk80$QL- zd~r$XhF;xCwb+U<;yVT~NQ32VF=!hDa@A+u<=WppSd}Q;*?YW<5a!lBLl#-ah9aMd z!OHH(gG*;jaLLnYH`f{tBDv}Hmx3Miaz0o|Kp$=5JAL@0og%oIcYly2>cw0BfM1}n zs>9(EY6*x;tkq25(VCPM!{y=KTsl3XJj^xw3>q^kT5_PfY_#+EZ>~HCKA>BVoly~5 zui8Y6npxtLy;>)p8~p;>UfsC&aMFAhBZZgbF}YJQ(9yd|$!OEN6*Iv&m>*0TL&{f| z7xN)>KW1wR91}y;DIPJ~-nsRqxZ9h$$~PpGzTEWvH5itZu)FSQl}mKnG3+Lv0_{i5 zDFGop5cd7XpdU7u6_LtHs8M?z%zAa`^ypTe(oZ% zT#9kVHs9r|k|nF0!-y_4^2;-qq=BuT4=lr*?Wp!==KKPhE8+1Wg8S{Q&CM5>m^$s9 zommkVY*g&hddy4*L1rvBAA}mC99TM~PIKxj$lm&GVbxLRbM=t9F6}!_5B&&3y%nJf zvl8uy+%sET^_h3GiqY5K*6VnqyYRCA zuXSd}YziV7eRH&?iEMV0cDa(`lndd0M8qaawj@Aq_1OE|=qAF@E-7U15p>V=e5wnR zS+@Ul){nV#q4^wa}dfN9!ElQb8-imp}61?9h_jB6TYR!)*&5pq45V8_G zIh&g7eNydr2NOA%4mtbHpndd2HA?%WcW7^ZOi_$S8*Q!X)Aib%oM3P}?1|GX+Q~=; zdQbrT)l*!dP1^?KiMW1pAdbEq$3cid(@@0m-*X1|Xr?F`Ra=TQ{)aC6uip2*FiUUm z0OtFnj~<(&YNl^#dA#`Qy6l2*1WcmMgGl<}`@i4% zGtete{r-)dO>T4yG1Tn!j^zA`k{z0xIgE)yIQ;u}-tFr36|62~G1cruvf5_Fa6kaB zw>PTV&%RG`)7XUIy`1;;@z}A+9T;@q?2UUoC))s~Kk8@D=+a7d83#lX*61|<#0j;WL52kx%$s$Smwj$#jI_gdxFOFI=-e_+@Uz{@!*5#%>y++W7RlgScxCyX(BtO~0ls_#6G2&`#rzs-x6X{# zJ3%_H6{A-$VC$Of&7EhSqAa!H9%9d%i1)Jmn~U*=wur&cBI?M2V@qn7Qkw#@&yfTh zo%5OTuu7{fTVC(I7h}c`v*)?%%asTQlav{`^$Ai|l4HYOXeWkNv4?9%k{eD7W2H66 zzXrTCY*;Op#d*VWf}xgP#n74H=|uAwaJ0fsLXjllg&wn~rdflZ*|Evt zEKdAq`Wf?YRTyM{;G56;%)cWe#sn2kX_;~b%R$_n_1#}6cbn+Lume;|tg`k#>9~g} zo+~NtJx0eex80{@5M`xTdxA|*q{2BWY|iXLg5emT>mU61JuslCmVM~h8kcuBM3>9% zsl;(yM+cxzADZ7^nK<*a8^FuVKXL1?VOhxYLgik|O3*bWQ4!nkV}hVO4tv-BQiKqG zkLHnbX~8OW#RVzO$&S0x#V z7H{jVYxvMrfguDhG*VVvY=oE>i}hb ztjfVva-+y@#pxn#&T7?nx}Kq0#ta|%{TJ+E4WE;PUo;8mo4P1r6tTyLYDZv{#qg0s znNRjXUvY#f{NWrapoR-iXL7fLgf4${C%0}KGIpmajJ#KIU_d~AnAww&I#tZOaK?W$ zi&U+HD*TaKc!v=xImM#lp7Iv^_Z+@EVa6SdNX241ZNA0AweN|H66*r*^2Mm47ERQ? zn5-&foyUbpbjK$JUc;%0ehPdG2Z!%*j(@ZL!;Oi$&;IQGC>XHrlsmp-Hf_nzNbmI6 zLuDDJoqwCBOfCb!Cd-!C2S576NeD;5ejstmvZIhpj z@>%-*pYMw!1Ia*6sy+KW>P*q@YTZX18jmuhmr{JwqoGVn3K;kPIh`|Y-97v!r*{{gf zPhg!aCDE_oxq+W$W2a{C86=iSeU?sm)-)&R+4^#`a_NQBYa#Sh@O6+=?*hka2 zHGrJWbdM61V4Lu>G^sA)SBaWNZMuKX>^OiUg8{ua-ow`vXkjdXo~=R8*}AE3qxJD7 zvFZZ@x@%ARb%@o@`^e#2DGRIJfY#wc7m~W$w>r;wO}Is0ofVW!!c}N}Uzc#rmdQzO zj2ZsOc&6BxeDUqo3mxsow3BZ>2d(1kuU+g#bDpuQF_k+`IeNNwJx;E+d_$aLk^c#W zLJsjVN5=m3&=X)0aQCRo5-t4ibkEW_rv}-!>6+rmi@!H{MRE?%-&yPt=8*b9{i4AepY0QEb6mV z06#f?B?>*WC1$h)i_`pPuPpwbz7WaS>;{Q)SCA;@(u}YIP5xXrYX%dY5Kg+t|3uAHhc^l0+uQx0!5Q>l z^>3g?6&D#5d`^#zUcmu>G~T9m_THxP`(fNZBA%cq4FoXH2_qR%Ra3JSIO?f(z@S@y7ppXqH z!GU$@F!|A{byWE*-qWvsvFf6{psf1Uj8Gu2rn<;j#?`Wi<@=Y(t#$YjWHw3w{cQo* zs{{G=|2WBQm&<1Ws=_v5&A5^(eiyq4K$nj|%ZXHMVchc`yUi5>uuEM)kIFxmY4{2( zl~hWN>U?e^E!}}ExQ50FT%&$}-nvSL8E_6Hl7CMScZpz^`SzqseA~Sjom8nQ-#d}J z`udCRv-(la6?7LjRkHLn!t@ILYXTVCl@2M5@To=~e$+!C_F?z{gWd51Z%oi--u@RDN*jnkwP_ z)l_B@n9d?dW`IV>{^ULJ5c+8-0pk*w7a9*R)gorB9>Rn%@JZNrFC@HA6ah)aYU5WS zJLv>i$qn~1X^EpjxeD`k?DLIc*wF>xoqfE^T`PUCIsm)tU3xp^^j!(ym?N?}pf(Pb z!pmG5&0{0cgG0-E)5LT^^^>==2Apq0`r|=`$3d+A>7mktgxYDHQX_rJhqjrA2bBYo zv0$9#51^l3N_Fcem<|*@0oeGXr-oIwS#G4J;>W+9TY)d-1wkm>K{hvO-=8Mzl%D<^ z@M1&{dj*cC0X7c#ZUP7x0NQ+_F1k!i0k|hduHDS++=t&hwm&*Gp38qJ?X{Y7zdYGK zK(yO{M*i4`{sgeH;sE|`PlsTwT~p1SLQbbS-f`B0L6&%Urr-+yk zRhW^uIFzHXyx&Qe2$+07UgW2-AaJy2dCG;=wv$ya4vxo6dh~75n5pkj&yfO++&%xh zOr{@xe|?#9a|I^n9sqWgG8oo*3>WAZkxTczc!6%zWC13@V&4TsLzpbep6ku|DreKp z(a)#+Km~{X?w2oZWQG?~NKZXeb_$&yC(T^>P_wvc;Gc1#OhPY)A7|lpZI6CQX;}cn z9)7(^Jnw=pP}X8tP*@2B_u(780*M~(VGM2}kau>2mUhW1c-~IzCOz2+A7l??Ga;+- zTz1XuATWGa5zs7Qhvk51`p8f?Y2F8Qd7?k*H zn=X}i(*8uh1gPmUm~xi@j>SepnPd6*9eOZtpop{xp{gIrSOskn|02W0Y;B}XCaU|} zlhr?Kp9x9VzglMiGX!*1*i71DDhd%(bKl9&RRiTV_B#MgYo5W^vcu83P}%lLZAXgY zTR5q>^j_9+yA^{G)s!LiuFJ~rjKz_BZ_aJdt&m8dR)=|@0d!$Y#G`x43#(It@+AbcqKEu{9Rce{M=wggs8xW1Qpn*4n zs_>@+(P6?WvSo_07&R{MLB=Ur`t@1KwsbEI(S zSr}uyTxkr{ot|ew2&OAa@21y7N%`Bo_XHw%m?Tg`rrl}FCN#u` znm=(*(B&$)O2;MP%CB8?rR5PaC3ku|=+K(Ahi!|}py%Ba$DVWBNw_&jV$Z(%GqmS3 z4l#a2d;E8Tv83XM;>4kO?bVI1cV{MN_kuLrc6?8NzuxGU#(^bT?`=GJAT|ohBakZ# z-nl9nV30uGWP?YJuc;*{OwPB4EDtHr#edtWR}l`0{heVN>9MkjYo-~&w^?FqXnTw? zYGp)5+mxyO#X!(_aY*DI&!f>-K?3}<`imcQLj(<6W4FU+qOi3?5tZ!(n(mO*X<=WA|%Ey2;VGg>CXzQ|< znKz_?F$x{Mjr$!`UJ``kNW4vZYQn#Bm7JbkigLG)^5>&CxbD4mP4+%_#t=uAHS(UA zPLlF#Y~eh_y!$0kcZG#i9pdHibq>-y5Gogm2J`1IY4cblj5tL;q%A|sm76Ew#V|1L zwO_*wn&~;t@i{*j2IOe9!M3{-?X?S}(aaMAJ+pIyZvEcg9M9=LU?)vEGmJ>yKzv7S zK6v#6OKs)>+N?$_DoYMBO;GB-Cr%g3H>vJHdd}Yh344?Prm!q8fhk5|>6ve3AJJz8 zL5t?&m9o{~)8kC{d9Y}mk+|&nVZlfsa`ziZ@hEU-h{;*_{#3!>@4feMO4Fd?p z{$Hnx5q*5A>8}4X{!$&@!BFk^L|ndthtjdh22IxfoMuq~DX&_SA;yCZ9-X{TInK0ZT~llL}%)?uesjZ7$P@6p;! z!#A4|9EgO9H7ls~q?7*CcZ6Vpj!2zoMlBuIgdC^!+<4$;3*jJ6le(wDuTQ4jBRep- zAI2n;X2^IaV9P%?5qi;%RV09~$YQyUna@_BMC?nrt_~RHF z568v2WM`}}cJgJvZ;>!kREgT2xkY1)SkN(fSy!-lmOgnA+qFU?o`}EOp1j4IMdjOa z$f6JB7z0|2;9yvhFt3x+nnAJ71Bpc52O@}0tzDUO%Jm+~^{YCymPnj+8vVerBaZl{ z#j8f@37N(A)}Bx-EP7r~eG-eAA^xw{?&;{ObS?^&qh$r0UWSdYW|WkPZ!dH`hwrWrh0AE%|mnbIq=*!dc`R zT%!fpJU$*6=ibJ;xAw`;R)%$Pl~(Fg}ZRPCT_ z{csoxSmZLDW|at+R&QMLc19u#LK5n65oE53y$o^Bic*+ftA=%qd=jxXbrRXqjcM=1 z7VFrZ&a?tA)D)^F?$vS+^VlG7fzAmumpt^kJJ+tFshjvA zyvIlOn08|N`^4pB@Pg}y9uHg+pY|P#NQ?BETBt<~4=Q#iKK(jBu}TRohd* zFH$VPTPDp`8mnvM@{W709BQU-6+2S5Zcfrp)ZNU`z!<P!dEDrq-CMqsL@cmBdu`!E5fYE1qw zOqCDMnZiabP=Rt6N9YzSxkd3^bv(6ToV2*+F-AUSFq-(p9!k5Lzi-*j{j2a5*PNKZ z5PLT#+48-%!$0?He5M5g#`z`qEs{NEo@7ogHSMv~ad3dHM{#+_1wdeZwJO~ZS+iC^ z)f@>YT^Kpme%p>zJJ`bAS8rPgJHd73W^D@Asmgh#^k(<*wXvx~a5gX5MwuZ2;!{V~Rhwyhp9 zIA@vnD1Sc>87sF@Yh~#GiA!lbX;Pq`OBxx=yvaQXqqdXt*h*SpIB&{>TB_JR*Ixyi zkN%0Mc5tK`i0B$HS|M_%t<`1nrp_{M1k!_u1VYS+r!hcRxAa70fE_xB$;*p3xR4y} zD?daIW)^8)83zOX96NFP6zu+NEaCq-dA0kLfBHRnizlyWr(r}P-QT|H)3kwXT7$`HLE^u{jvh!!T!P`i#& z-GssiYr`eXe_zc-4Eb4fgJ0;&nnEGXvGeJdJ}WZofGh*e9at^)w;K(16x+{F^`ewY z6u*}+t0Myt&RGVp8jez2yHz17!^J_b%*Ex{`eDv}Z7_?H=q`L=QXRw0D0BiY0$#?F zqgv$Hs&2sjEP_(%s)zq3lIlvb*n$6Yaq|DNZmxxWm2I)W!{s1Vz zRRdl%+k08^BaWV*R0nwJ!pDFR4z?59#OxTarnx99Y!P?Rf#3H-vysAy}66pChmXIyJW$eI20JL7gN-)I{o zDb$ZIqy-P}g@5_KJOxPYmaoq1cfxIuHBxQx4(B6`#bgT8gEd zxywEnFfMYPqG!4&MaGSXxyfD1Ezo~FoojS>K#usHP38XohqAYhYx@2B#YYU466q39 zy1OJqlomk{7%&h9NQ#8C!stf2B$e)v9^D}z0u!V=1PKvA;#~6+_x(HPd+x{i{l{Or zy|-Q0>-9`4_kcEqwHEd@w6lo}WiwLHdqL+OlpBy~IZ$cSf@$c(722XYO z&r@y72R{PY!0OMKC#>L0)UBLLk-WFtNfz{ zkYzUHsSGX@g)1_5-_3WG221WuAyzY1SC`@HGh6{IE%K0BPaH~p6Ph~nasaskxJN>^ z51{?hEwdfueILLG|7<$D=87;BAelT1HJ3>Q7K0g`)9XGz3po`ISCwIx!UvI61E++= z)Oo&Q=jQ&Udwu!Y zdL-JsDeyqCe0lj z_?GD-v74%(8XrFm>cu}XE13_kgm&ytRawU2=j$b@PT2NWL7gp5I!?yUz75B=YMPFm zhvFI6eV4lZ`tH+cr;*x;@WJkn1D?D0b!FNoE%jYib{hP10QMBExP18=0U#{mFqeMv z5MOM43S*@=XNvZXO9;twFAbU>!@rAGibw7;^GnNUGW=e5)@o4I2}FmN*BfNKT1+5! z=hew8iO7^SbXp%~){y>zL>*6V`eA2M zNvu?#xAkKx*Oc>$rW#MF)qbp2zO`D)ey7z`!}DVE!3?9Qn=(bM#pri6k!Klo9nrnRfbp+W5Nvm-U*duD=0#gV=)!)vdfSr{BAKIZCX zFn~ZMI3`)OneZ^5pNxY^>p0g_t%KDOe&@upPu;J|qjt=H4$&MOmJ?W8 z9H^#fbE~YTx*S>3>6S-VB|J*18B9_=@{G)JFBB4T+j>)F_LVYw*R(P=H&^kTE%iCs zplwu|my>FnKVEkRU1zL3YruYvs=yY}C&)7&?-F`p) z&mT013~CZK$y$<(zSgOH{&_RkWU*DqE3eMO7k%@0RNn#bZ}anEe<8&1eu@?EV{K20 z%X!CI*~7AwbW{8;18`QsxM}^jrv?S_Zcnp5^o4K%3_T&c{_wQeqHC0YW$^KGE+Y4H zj%iJpR_kN4^NaORvJ1R&C_ZJZYJx^mL$zgpm;T|nmTe*$@@R{r2{-;iV2OaYd$grj zp~`HKE#+w0-6j9|Sgrp<>Wc>K=PiDL=9d|>r&V!G97LTEC=WU}aq%#IY1KGb`N$r8{bnqHABw!b7wXtp z&BF&%xa;D};R=bo$?P?>qH#j`8EmbOP9BSuKV_D5UX3+VdZW_sM3JMKe(LmXM%cs+#%YHyV($DpLrXczbl%nTZ|<`}q6a6It1Os{Xh4xf1%g zSHst0suY~mn(+gdoZqt;ftUjo(m8uu{D42e;wA5yp{7dszqi+dvm%rfuS=vq1~2{%@o2fXz@*Xs>wFrfJMC2sFcKD zCnCs3g;n;0=BFi_Tj^3q?2@lGviz3UTx=6hsy^r5^v^R{{QS6JhT;VgF5B5GDM=+Su~*QlpNW%&oqcAfO# z=K@?B<4(pL&&@L@{X?fzYA#_B!%T~y#~&>FHZZ5F1MUu($nI5wiA?YhV|4*^p+5_A zbL`K9v`U|;pS$2pdo0vVLvcnl2s$c#+*%ngRT?HS$Ts;&%qZ%Ot&3o} zq|=&KMQ-HD0duqW?_H{*?e9hNR9x0JE5u2V2M1gi$P(eW)IE=O`h)SUS`+5PmqFK6Q33@%V*em*2L zj=K}M?CPA<7D5+IUih&4v-#?G0`q>9B>t=1LB06y)?uw}E1SIm5AEL9`Ta>D&fWN` z@+@t&uJ6}wEY|4%euSTc6jsTszXG{=%^2%ZTU@>FOo-)~fTFAY*W0-RnMID(O|{P_ zys#(u5-GzEYCqDgE?m6U+KIq35DHE8Ps+5br8q4l! z{w=i%oRC7=J1}h~S@317#+3@!ktW?LT`?hgKPb|88&ydlo)1tY_xGt2&;6B@I zoAg2YedDCJs5{ZOA5leS+j@NHSYaO3X_r>b(v)$PbH^2dns;Lk4N#I$b*Mn72SC}p zTc3Z%D{a`C@u~cPo!?chScO^=lRgjrgr6>gu&gYJm8_qdN*7&A;OQ;BY?Upk&PwEZ z`glvk`c^&8$i?QBKnq%uh(Uq=ERHx~=cVNM3zE8Ug%rz9{K1+KH`d(=wLy-(0pT5~ zmk)O@+`R{uT?&lkJ;e`xqKrR;9#_`NhSzntzSdso0&g(`_CA2ol)pDX&0d_a9veh% zejcN$v;y}21b|I#-k!4k3d)Eu2@Y;gtL~sYC%#6BLp720S|+0tkJZ&EW|;-VrKL*G)9Wnzz3>eBW~7Wj`TJDOeb6FTO7d{ovR);V zh26RoR=)FKZ@|k2NS(DR5enr=QG@%R6Te6MXc&~DLAHCo^hA>)d^av6eEO8<2G>`a zhrS;GqE56x7`i&>2(jfCCZ^XaTp{^XXKgw>GhyJPPM;i3UD^Ei_=_EY44l0LwyA(*Y#puvGCE zeEFH)jf5b7pu!l_%LR-9tYUY) z@XfKn9)}~*=lwJaL)n3V)JGtYw

_78kQ-DUin6m|NeNplsa&{3v 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 b{yPL?Ex+qc=kVVL{%LF7zgenb^X&fu=Fj%% literal 0 HcmV?d00001 From 55fcc64a3bb5849fcd1fb59a567267e1baef4437 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Tue, 22 Oct 2019 12:46:32 +0200 Subject: [PATCH 10/30] With answers --- .../your-code/lab2_sql_select_solutions.sql | 95 +++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 module-1_labs/lab-mysql-select/your-code/lab2_sql_select_solutions.sql diff --git a/module-1_labs/lab-mysql-select/your-code/lab2_sql_select_solutions.sql b/module-1_labs/lab-mysql-select/your-code/lab2_sql_select_solutions.sql new file mode 100644 index 0000000..4bd0175 --- /dev/null +++ b/module-1_labs/lab-mysql-select/your-code/lab2_sql_select_solutions.sql @@ -0,0 +1,95 @@ +-- LAB MySQL Select + +-- Challenge 1 +USE publications; + +SELECT + authors.au_id AS 'AUTHOR ID', + authors.au_lname AS 'LAST NAME', + authors.au_fname AS 'FIRST NAME', + titles.title AS TITLE, + publishers.pub_name AS PUBLISHER +FROM publications.authors +JOIN titleauthor + ON titleauthor.au_id = authors.au_id +JOIN titles + ON titles.title_id = titleauthor.title_id +JOIN publishers + ON titles.pub_id = publishers.pub_id +ORDER BY 1; + +-- Challenge 2 + +SELECT + authors.au_id AS 'AUTHOR ID', + authors.au_lname AS 'LAST NAME', + authors.au_fname AS 'FIRST NAME', + publishers.pub_name AS PUBLISHER, + COUNT(*) +FROM publications.authors +JOIN titleauthor + ON titleauthor.au_id = authors.au_id +JOIN titles + ON titles.title_id = titleauthor.title_id +JOIN publishers + ON titles.pub_id = publishers.pub_id +GROUP BY 1, 4 +ORDER BY 1 DESC; + + +-- Challenge 3 + +SELECT + authors.au_id AS 'AUTHOR ID', + authors.au_lname AS 'LAST NAME', + authors.au_fname AS 'FIRST NAME', + SUM(sales.qty) AS TOTAL +FROM publications.authors +JOIN titleauthor + ON titleauthor.au_id = authors.au_id +JOIN sales + ON titleauthor.title_id = sales.title_id +GROUP BY 1 +ORDER BY 4 DESC +LIMIT 3; + +-- Challenge 4 + +SELECT + a.au_id AS 'AUTHOR ID', + a.au_lname AS 'LAST NAME', + a.au_fname AS 'FIRST NAME', + IFNULL(SUM(s.qty),0) AS TOTAL +FROM publications.authors a + LEFT JOIN titleauthor t + ON t.au_id = a.au_id + LEFT JOIN sales s + ON t.title_id = s.title_id +GROUP BY 1 +ORDER BY 4 DESC; + + + +-- Bonus + +SELECT * +FROM titles +LIMIT 10; + +SELECT * +FROM titleauthor +LIMIT 10; + +SELECT + a.au_id AS 'AUTHOR ID', + a.au_lname AS 'LAST NAME', + a.au_fname AS 'FIRST NAME', + CONCAT('$',ROUND(SUM(t.advance+(t.ytd_sales*t.price*(t.royalty/100))),2)) AS PROFIT +FROM publications.authors a + JOIN titleauthor ta + ON ta.au_id = a.au_id + JOIN titles t + ON t.title_id = ta.title_id +GROUP BY 1 +ORDER BY 4 DESC +LIMIT 3; \ No newline at end of file From f08893622d756ef09e6b715bd8d4417e7aaba44f Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Tue, 22 Oct 2019 12:56:15 +0200 Subject: [PATCH 11/30] Added answers --- .../lab-error-handling/your-code/main.ipynb | 223 +++- .../your-code/main.ipynb | 865 +++++++++++++- .../lab-lambda-functions/your-code/main.ipynb | 202 +++- .../your-code/main.ipynb | 1056 ++++++++++++++++- .../your-code/main.ipynb | 223 +++- .../your-code/challenge-1.ipynb | 35 +- .../your-code/Escape Game Ivy.ipynb | 154 +-- .../your-code/sample-code.ipynb | 2 +- 8 files changed, 2385 insertions(+), 375 deletions(-) diff --git a/module-1_labs/lab-error-handling/your-code/main.ipynb b/module-1_labs/lab-error-handling/your-code/main.ipynb index 860e6f7..6cf3d06 100644 --- a/module-1_labs/lab-error-handling/your-code/main.ipynb +++ b/module-1_labs/lab-error-handling/your-code/main.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 43, "metadata": {}, "outputs": [], "source": [ @@ -34,49 +34,97 @@ "cell_type": "code", "execution_count": 2, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "some_string\n" + ] + } + ], "source": [ "# Modify the code below:\n", "\n", - "print(some_string)" + "print(\"some_string\")" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "We need integers.\n" + ] + } + ], "source": [ "# Modify the code below:\n", "\n", - "for i in ['a','b','c']:\n", - " print (i**2)" + "\n", + "try:\n", + " for i in ['a','b','c']:\n", + " print (i**2)\n", + "except:\n", + " if type(i)!= int:\n", + " print(\"We need integers.\")\n", + " else:\n", + " print(\"Something went wrong.\")" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 41, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Division by zero.\n" + ] + } + ], "source": [ "# Modify the code below:\n", "\n", "x = 5\n", "y = 0\n", "\n", - "z = x/y" + "try:\n", + " z = x/y\n", + "except ZeroDivisionError:\n", + " print(\"Division by zero.\")\n", + "except TypeError:\n", + " print(\"We need integers.\")\n" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 28, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Index is out of range\n" + ] + } + ], "source": [ "# Modify the code below:\n", "\n", "abc=[10,20,20]\n", - "print(abc[3])" + "\n", + "try:\n", + " print(abc[3])\n", + "except IndexError:\n", + " print(\"Index is out of range.\")" ] }, { @@ -92,20 +140,18 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 51, "metadata": {}, "outputs": [ { - "ename": "ValueError", - "evalue": "math domain error", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mValueError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 10\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mmath\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msqrt\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 11\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 12\u001b[1;33m \u001b[0msqrt_for_all\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m-\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[1;32m\u001b[0m in \u001b[0;36msqrt_for_all\u001b[1;34m(x)\u001b[0m\n\u001b[0;32m 8\u001b[0m \u001b[1;31m# Sample Input: -4\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 9\u001b[0m \u001b[1;31m# Sample Output: 2.0\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 10\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mmath\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msqrt\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 11\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 12\u001b[0m \u001b[0msqrt_for_all\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m-\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", - "\u001b[1;31mValueError\u001b[0m: math domain error" - ] + "data": { + "text/plain": [ + "2.0" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ @@ -118,27 +164,37 @@ " \n", " # Sample Input: -4\n", " # Sample Output: 2.0\n", - " return math.sqrt(x)\n", + " \n", + " if x >= 0:\n", + " return math.sqrt(x)\n", + " else:\n", + " return math.sqrt(-x)\n", + " \n", "\n", - "sqrt_for_all(-1)" + "sqrt_for_all(-4)" ] }, { "cell_type": "code", - "execution_count": 6, + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 54, "metadata": {}, "outputs": [ { - "ename": "ZeroDivisionError", - "evalue": "division by zero", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mZeroDivisionError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 10\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mx\u001b[0m \u001b[1;33m/\u001b[0m \u001b[0my\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 11\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 12\u001b[1;33m \u001b[0mdivide\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;36m5\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m0\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[1;32m\u001b[0m in \u001b[0;36mdivide\u001b[1;34m(x, y)\u001b[0m\n\u001b[0;32m 8\u001b[0m \u001b[1;31m# Sample Input: 5, 1\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 9\u001b[0m \u001b[1;31m# Sample Output: 5.0\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 10\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mx\u001b[0m \u001b[1;33m/\u001b[0m \u001b[0my\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 11\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 12\u001b[0m \u001b[0mdivide\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;36m5\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m0\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", - "\u001b[1;31mZeroDivisionError\u001b[0m: division by zero" - ] + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ @@ -151,27 +207,28 @@ " \n", " # Sample Input: 5, 1\n", " # Sample Output: 5.0\n", - " return x / y\n", + " if x and y !=0:\n", + " return x / y\n", + " else:\n", + " return 0\n", "\n", "divide(5, 0)" ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 64, "metadata": {}, "outputs": [ { - "ename": "TypeError", - "evalue": "'int' object is not iterable", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 14\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[1;33m[\u001b[0m\u001b[0ma\u001b[0m \u001b[1;33m+\u001b[0m \u001b[0melement\u001b[0m \u001b[1;32mfor\u001b[0m \u001b[0melement\u001b[0m \u001b[1;32min\u001b[0m \u001b[0ml\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 15\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 16\u001b[1;33m \u001b[0madd_elements\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;36m5\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m6\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[1;32m\u001b[0m in \u001b[0;36madd_elements\u001b[1;34m(a, l)\u001b[0m\n\u001b[0;32m 12\u001b[0m \u001b[1;31m# Sample Input: 5, 6\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 13\u001b[0m \u001b[1;31m# Sample Output: [11]\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 14\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[1;33m[\u001b[0m\u001b[0ma\u001b[0m \u001b[1;33m+\u001b[0m \u001b[0melement\u001b[0m \u001b[1;32mfor\u001b[0m \u001b[0melement\u001b[0m \u001b[1;32min\u001b[0m \u001b[0ml\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 15\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 16\u001b[0m \u001b[0madd_elements\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;36m5\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m6\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", - "\u001b[1;31mTypeError\u001b[0m: 'int' object is not iterable" - ] + "data": { + "text/plain": [ + "19" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" } ], "source": [ @@ -188,7 +245,14 @@ " \n", " # Sample Input: 5, 6\n", " # Sample Output: [11]\n", - " return [a + element for element in l]\n", + " if type(a)==int and type(l) == int:\n", + " return a+l\n", + " elif type(a)==int and type(l) == list:\n", + " return a+sum(l)\n", + " elif type(a)==list and type(l)==int:\n", + " return sum(a)+l\n", + " else:\n", + " return sum(l)+sum(a)\n", " \n", "add_elements(5, 6)" ] @@ -204,29 +268,51 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 66, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "14" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Modify the code below:\n", "\n", "l = [1,2,3,4]\n", "\n", - "sum([element + 1 for element in l]" + "sum([element + 1 for element in l])" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 67, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "The current element in the loop is 1\n", + "The current element in the loop is 2\n", + "The current element in the loop is 3\n", + "The current element in the loop is 4\n" + ] + } + ], "source": [ "# Modify the code below:\n", "\n", "l = [1,2,3,4]\n", "\n", "for element in l:\n", - " print(\"The current element in the loop is\" + element)" + " print(\"The current element in the loop is\" , element)" ] }, { @@ -240,9 +326,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 76, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "3.2188758248682006" + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "def log_square(x):\n", " # This function takes a numeric value and returns the natural log of the square of the number \n", @@ -255,7 +352,13 @@ " # Sample Input: 5\n", " # Sample Output: 3.21887\n", " \n", - " # Your code here:" + " # Your code here:\n", + " if type(x)!=int or x==0:\n", + " print(\"Error\")\n", + " else:\n", + " return math.log(x**2)\n", + "\n", + "log_square(5)" ] }, { @@ -323,7 +426,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-functional-programming/your-code/main.ipynb b/module-1_labs/lab-functional-programming/your-code/main.ipynb index 8017d6e..c9e6317 100644 --- a/module-1_labs/lab-functional-programming/your-code/main.ipynb +++ b/module-1_labs/lab-functional-programming/your-code/main.ipynb @@ -98,10 +98,10 @@ "evalue": "", "output_type": "error", "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mStopIteration\u001b[0m Traceback (most recent call last)", - "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;31m# After we have iterated through all elements, we will get a StopIteration Error\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mnext\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0miterator\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", - "\u001b[1;31mStopIteration\u001b[0m: " + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mStopIteration\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0;31m# After we have iterated through all elements, we will get a StopIteration Error\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mnext\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0miterator\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;31mStopIteration\u001b[0m: " ] } ], @@ -113,7 +113,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 15, "metadata": {}, "outputs": [ { @@ -146,10 +146,23 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 35, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ + "iterator = iter([1,2,3])\n", + "\n", "def divisible2(iterator):\n", " # This function takes an iterable and returns the first element that is divisible by 2 and zero otherwise\n", " # Input: Iterable\n", @@ -159,6 +172,11 @@ " # Sample Output: 2\n", " \n", " # Your code here:\n", + " for i in iterator:\n", + " if i%2==0:\n", + " return i\n", + " \n", + "divisible2(iterator)\n", " " ] }, @@ -173,7 +191,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 36, "metadata": {}, "outputs": [], "source": [ @@ -193,7 +211,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 37, "metadata": {}, "outputs": [ { @@ -224,9 +242,19 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 68, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "2\n", + "4\n" + ] + } + ], "source": [ "def even_iterator(n):\n", " # This function produces an iterator containing all even numbers between 0 and n\n", @@ -237,6 +265,21 @@ " # Sample Output: iter([0, 2, 4])\n", " \n", " # Your code here:\n", + "# for i in range(0,n):\n", + "# if i %2 ==0:\n", + "# yield i\n", + "\n", + " number = 0\n", + " while number < n:\n", + " if number %2 == 0:\n", + " yield number\n", + " number = number+1 \n", + "\n", + "iterator = even_iterator(5)\n", + "\n", + "for i in iterator:\n", + " print(i)\n", + " \n", " " ] }, @@ -253,7 +296,7 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 56, "metadata": {}, "outputs": [], "source": [ @@ -270,11 +313,99 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 64, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "

\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthiris_type
05.13.51.40.2Iris-setosa
14.93.01.40.2Iris-setosa
24.73.21.30.2Iris-setosa
34.63.11.50.2Iris-setosa
45.03.61.40.2Iris-setosa
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width iris_type\n", + "0 5.1 3.5 1.4 0.2 Iris-setosa\n", + "1 4.9 3.0 1.4 0.2 Iris-setosa\n", + "2 4.7 3.2 1.3 0.2 Iris-setosa\n", + "3 4.6 3.1 1.5 0.2 Iris-setosa\n", + "4 5.0 3.6 1.4 0.2 Iris-setosa" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", + "iris.head(n=5)\n", "\n" ] }, @@ -287,12 +418,28 @@ }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 59, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length 5.843333\n", + "sepal_width 3.054000\n", + "petal_length 3.758667\n", + "petal_width 1.198667\n", + "dtype: float64" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "np.mean(iris,axis=0)" ] }, { @@ -304,12 +451,27 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 70, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length 0.825301\n", + "sepal_width 0.432147\n", + "petal_length 1.758529\n", + "petal_width 0.760613\n", + "dtype: float64" + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "np.std(iris,axis=0)\n" ] }, { @@ -321,12 +483,146 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 88, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_width
05.13.51.40.2
14.93.01.40.2
24.73.21.30.2
34.63.11.50.2
45.03.61.40.2
...............
1456.73.05.22.3
1466.32.55.01.9
1476.53.05.22.0
1486.23.45.42.3
1495.93.05.11.8
\n", + "

150 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width\n", + "0 5.1 3.5 1.4 0.2\n", + "1 4.9 3.0 1.4 0.2\n", + "2 4.7 3.2 1.3 0.2\n", + "3 4.6 3.1 1.5 0.2\n", + "4 5.0 3.6 1.4 0.2\n", + ".. ... ... ... ...\n", + "145 6.7 3.0 5.2 2.3\n", + "146 6.3 2.5 5.0 1.9\n", + "147 6.5 3.0 5.2 2.0\n", + "148 6.2 3.4 5.4 2.3\n", + "149 5.9 3.0 5.1 1.8\n", + "\n", + "[150 rows x 4 columns]" + ] + }, + "execution_count": 88, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "iris_numeric = iris[['sepal_length', 'sepal_width', 'petal_length','petal_width']]\n", + "\n", + "iris_numeric" ] }, { @@ -338,7 +634,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 75, "metadata": {}, "outputs": [], "source": [ @@ -351,6 +647,8 @@ " # Sample Output: 0.393701\n", " \n", " # Your code here:\n", + " return x * 0.393701\n", + "\n", " " ] }, @@ -363,12 +661,146 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 77, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_width
02.0078751.3779540.5511810.078740
11.9291351.1811030.5511810.078740
21.8503951.2598430.5118110.078740
31.8110251.2204730.5905520.078740
41.9685051.4173240.5511810.078740
...............
1452.6377971.1811032.0472450.905512
1462.4803160.9842531.9685050.748032
1472.5590571.1811032.0472450.787402
1482.4409461.3385832.1259850.905512
1492.3228361.1811032.0078750.708662
\n", + "

150 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width\n", + "0 2.007875 1.377954 0.551181 0.078740\n", + "1 1.929135 1.181103 0.551181 0.078740\n", + "2 1.850395 1.259843 0.511811 0.078740\n", + "3 1.811025 1.220473 0.590552 0.078740\n", + "4 1.968505 1.417324 0.551181 0.078740\n", + ".. ... ... ... ...\n", + "145 2.637797 1.181103 2.047245 0.905512\n", + "146 2.480316 0.984253 1.968505 0.748032\n", + "147 2.559057 1.181103 2.047245 0.787402\n", + "148 2.440946 1.338583 2.125985 0.905512\n", + "149 2.322836 1.181103 2.007875 0.708662\n", + "\n", + "[150 rows x 4 columns]" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "iris_inch = cm_to_in(iris_numeric)\n", + "\n", + "iris_inch\n" ] }, { @@ -380,12 +812,144 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 79, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_width
07.15.53.42.2
16.95.03.42.2
26.75.23.32.2
36.65.13.52.2
47.05.63.42.2
...............
1458.75.07.24.3
1468.34.57.03.9
1478.55.07.24.0
1488.25.47.44.3
1497.95.07.13.8
\n", + "

150 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width\n", + "0 7.1 5.5 3.4 2.2\n", + "1 6.9 5.0 3.4 2.2\n", + "2 6.7 5.2 3.3 2.2\n", + "3 6.6 5.1 3.5 2.2\n", + "4 7.0 5.6 3.4 2.2\n", + ".. ... ... ... ...\n", + "145 8.7 5.0 7.2 4.3\n", + "146 8.3 4.5 7.0 3.9\n", + "147 8.5 5.0 7.2 4.0\n", + "148 8.2 5.4 7.4 4.3\n", + "149 7.9 5.0 7.1 3.8\n", + "\n", + "[150 rows x 4 columns]" + ] + }, + "execution_count": 79, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Define constant below:\n", - "\n", + "error=2\n", "\n", "def add_constant(x):\n", " # This function adds a global constant to our input.\n", @@ -393,7 +957,10 @@ " # Output: numeric value\n", " \n", " # Your code here:\n", - " " + " return x+error\n", + "\n", + "iris_constant=add_constant(iris_numeric)\n", + "iris_constant" ] }, { @@ -407,12 +974,35 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 80, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0 5.1\n", + "1 4.9\n", + "2 4.7\n", + "3 4.6\n", + "4 5.0\n", + " ... \n", + "145 6.7\n", + "146 6.3\n", + "147 6.5\n", + "148 6.2\n", + "149 5.9\n", + "Length: 150, dtype: float64" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "iris_numeric.apply(max,axis=1)" ] }, { @@ -424,12 +1014,211 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 89, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:11: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " # This is added back by InteractiveShellApp.init_path()\n", + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:12: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " if sys.path[0] == '':\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthtotal_widthtotal_length
05.13.51.40.23.76.5
14.93.01.40.23.26.3
24.73.21.30.23.46.0
34.63.11.50.23.36.1
45.03.61.40.23.86.4
.....................
1456.73.05.22.35.311.9
1466.32.55.01.94.411.3
1476.53.05.22.05.011.7
1486.23.45.42.35.711.6
1495.93.05.11.84.811.0
\n", + "

150 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width total_width \\\n", + "0 5.1 3.5 1.4 0.2 3.7 \n", + "1 4.9 3.0 1.4 0.2 3.2 \n", + "2 4.7 3.2 1.3 0.2 3.4 \n", + "3 4.6 3.1 1.5 0.2 3.3 \n", + "4 5.0 3.6 1.4 0.2 3.8 \n", + ".. ... ... ... ... ... \n", + "145 6.7 3.0 5.2 2.3 5.3 \n", + "146 6.3 2.5 5.0 1.9 4.4 \n", + "147 6.5 3.0 5.2 2.0 5.0 \n", + "148 6.2 3.4 5.4 2.3 5.7 \n", + "149 5.9 3.0 5.1 1.8 4.8 \n", + "\n", + " total_length \n", + "0 6.5 \n", + "1 6.3 \n", + "2 6.0 \n", + "3 6.1 \n", + "4 6.4 \n", + ".. ... \n", + "145 11.9 \n", + "146 11.3 \n", + "147 11.7 \n", + "148 11.6 \n", + "149 11.0 \n", + "\n", + "[150 rows x 6 columns]" + ] + }, + "execution_count": 89, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "\n", + "\n", + "def width(a):\n", + " return a['sepal_width']+a['petal_width']\n", + "\n", + "def length(a):\n", + " return a['sepal_length']+a['petal_length']\n", + "\n", + "iris_numeric['total_width']=iris_numeric.apply(width,axis=1)\n", + "iris_numeric['total_length']=iris_numeric.apply(length,axis=1)\n", + "\n", + "iris_numeric" ] }, { @@ -456,7 +1245,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-lambda-functions/your-code/main.ipynb b/module-1_labs/lab-lambda-functions/your-code/main.ipynb index 66a9984..9e5e1e1 100644 --- a/module-1_labs/lab-lambda-functions/your-code/main.ipynb +++ b/module-1_labs/lab-lambda-functions/your-code/main.ipynb @@ -34,18 +34,28 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[3, 4, 5, 6, 7, 8, 9, 10, 11, 12]\n" + ] + } + ], "source": [ - "l = [######]\n", - "f = lambda x: #define the lambda expression\n", + "l = [1,2,3,4,5,6,7,8,9,10]\n", + "f = lambda x:x+2 #define the lambda expression\n", "b = []\n", "def modify_list(lst, fudduLambda):\n", - " for x in ####:\n", - " b.append(#####(x))\n", + " for x in lst:\n", + " b.append(f(x))\n", "#Call modify_list(##,##)\n", - "#print b" + "modify_list(l,f)\n", + "#print b\n", + "print(b)" ] }, { @@ -59,12 +69,13 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", - "\n" + "\n", + "C_K = lambda x:x+273.15" ] }, { @@ -76,13 +87,30 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[285.15, 296.15, 311.15, 218.14999999999998, 297.15]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "temps = [12, 23, 38, -55, 24]\n", "\n", - "# Your code here:" + "# Your code here:\n", + "temps_f=[]\n", + "\n", + "for c in temps:\n", + " temps_f.append(C_K(c))\n", + " \n", + "temps_f" ] }, { @@ -96,11 +124,12 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 25, "metadata": {}, "outputs": [], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "mod=lambda x,y:1 if x%y==0 else 0" ] }, { @@ -114,7 +143,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ @@ -123,8 +152,9 @@ " input: a number\n", " output: a function that returns 1 if the number is divisible by another number (to be passed later) and zero otherwise\n", " \"\"\"\n", - " \n", - " # Your code here:" + " # Your code here:\n", + " return (lambda y:1 if y%b==0 else 0)\n", + " " ] }, { @@ -136,11 +166,12 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 27, "metadata": {}, "outputs": [], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "divisible5=divisor(5)" ] }, { @@ -152,18 +183,40 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 28, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "1" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "divisible5(10)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 29, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "divisible5(8)" ] @@ -183,7 +236,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 35, "metadata": {}, "outputs": [ { @@ -195,7 +248,7 @@ " ('tomato', 'tomato')]" ] }, - "execution_count": 1, + "execution_count": 35, "metadata": {}, "output_type": "execute_result" } @@ -218,14 +271,30 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 37, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[(1, 2), (2, 3), (3, 4), (4, 5)]" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "list1 = [1,2,3,4]\n", "list2 = [2,3,4,5]\n", "## Zip the lists together \n", - "## Print the zipped list " + "\n", + "zipped = zip(list1,list2)\n", + "\n", + "## Print the zipped list\n", + "\n", + "list(zipped)" ] }, { @@ -237,28 +306,28 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 39, "metadata": {}, "outputs": [ { - "data": { - "text/plain": [ - "'\\n\\ncompare = lambda ###: print(\"True\") if ### else print(\"False\")\\nfor ### in zip(list1,list2):\\n compare(###)\\n \\n'" - ] - }, - "execution_count": 4, - "metadata": {}, - "output_type": "execute_result" + "name": "stdout", + "output_type": "stream", + "text": [ + "False\n", + "False\n", + "False\n", + "False\n" + ] } ], "source": [ - "'''\n", "\n", - "compare = lambda ###: print(\"True\") if ### else print(\"False\")\n", - "for ### in zip(list1,list2):\n", - " compare(###)\n", + "\n", + "compare = lambda x,y: print(\"True\") if x>y else print(\"False\")\n", + "for x,y in zip(list1,list2):\n", + " compare(x,y)\n", " \n", - "''' " + " " ] }, { @@ -274,14 +343,34 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 51, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[('Engineering', 'Lab'), ('Computer Science', 'Homework'), ('Political Science', 'Essay'), ('Mathematics', 'Module')]\n", + "[('Political Science', 'Essay'), ('Computer Science', 'Homework'), ('Engineering', 'Lab'), ('Mathematics', 'Module')]\n" + ] + } + ], "source": [ "list1 = ['Engineering', 'Computer Science', 'Political Science', 'Mathematics']\n", "list2 = ['Lab', 'Homework', 'Essay', 'Module']\n", "\n", - "# Your code here:\n" + "# Your code here:\n", + "\n", + "zipped = zip(list1,list2)\n", + "l=list(zipped)\n", + "\n", + "print(l)\n", + "\n", + "# sorted(iterable, key=key, reverse=reverse)\n", + "# iterable\tRequired. The sequence to sort, list, dictionary, tuple etc.\n", + "# key\tOptional. A Function to execute to decide the order. Default is None\n", + "# reverse\tOptional. A Boolean. False will sort ascending, True will sort descending. Default is False\n", + "print(sorted(l,key=lambda i:i[1]))\n" ] }, { @@ -295,13 +384,28 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 59, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[('Toyota', 1995), ('Honda', 1997), ('Audi', 2001), ('BMW', 2005)]" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "d = {'Honda': 1997, 'Toyota': 1995, 'Audi': 2001, 'BMW': 2005}\n", "\n", - "# Your code here:" + "# Your code here:\n", + "\n", + "sorted_d=sorted(d.items(),key=lambda x:x[1])\n", + "\n", + "sorted_d\n" ] }, { @@ -328,7 +432,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.3" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-list-comprehensions/your-code/main.ipynb b/module-1_labs/lab-list-comprehensions/your-code/main.ipynb index c5931c4..b54091c 100644 --- a/module-1_labs/lab-list-comprehensions/your-code/main.ipynb +++ b/module-1_labs/lab-list-comprehensions/your-code/main.ipynb @@ -11,7 +11,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -29,10 +29,73 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "[1,\n", + " 2,\n", + " 3,\n", + " 4,\n", + " 5,\n", + " 6,\n", + " 7,\n", + " 8,\n", + " 9,\n", + " 10,\n", + " 11,\n", + " 12,\n", + " 13,\n", + " 14,\n", + " 15,\n", + " 16,\n", + " 17,\n", + " 18,\n", + " 19,\n", + " 20,\n", + " 21,\n", + " 22,\n", + " 23,\n", + " 24,\n", + " 25,\n", + " 26,\n", + " 27,\n", + " 28,\n", + " 29,\n", + " 30,\n", + " 31,\n", + " 32,\n", + " 33,\n", + " 34,\n", + " 35,\n", + " 36,\n", + " 37,\n", + " 38,\n", + " 39,\n", + " 40,\n", + " 41,\n", + " 42,\n", + " 43,\n", + " 44,\n", + " 45,\n", + " 46,\n", + " 47,\n", + " 48,\n", + " 49,\n", + " 50]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "[i for i in range(1,51)]\n" + ] }, { "cell_type": "markdown", @@ -43,10 +106,122 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "[2,\n", + " 4,\n", + " 6,\n", + " 8,\n", + " 10,\n", + " 12,\n", + " 14,\n", + " 16,\n", + " 18,\n", + " 20,\n", + " 22,\n", + " 24,\n", + " 26,\n", + " 28,\n", + " 30,\n", + " 32,\n", + " 34,\n", + " 36,\n", + " 38,\n", + " 40,\n", + " 42,\n", + " 44,\n", + " 46,\n", + " 48,\n", + " 50,\n", + " 52,\n", + " 54,\n", + " 56,\n", + " 58,\n", + " 60,\n", + " 62,\n", + " 64,\n", + " 66,\n", + " 68,\n", + " 70,\n", + " 72,\n", + " 74,\n", + " 76,\n", + " 78,\n", + " 80,\n", + " 82,\n", + " 84,\n", + " 86,\n", + " 88,\n", + " 90,\n", + " 92,\n", + " 94,\n", + " 96,\n", + " 98,\n", + " 100,\n", + " 102,\n", + " 104,\n", + " 106,\n", + " 108,\n", + " 110,\n", + " 112,\n", + " 114,\n", + " 116,\n", + " 118,\n", + " 120,\n", + " 122,\n", + " 124,\n", + " 126,\n", + " 128,\n", + " 130,\n", + " 132,\n", + " 134,\n", + " 136,\n", + " 138,\n", + " 140,\n", + " 142,\n", + " 144,\n", + " 146,\n", + " 148,\n", + " 150,\n", + " 152,\n", + " 154,\n", + " 156,\n", + " 158,\n", + " 160,\n", + " 162,\n", + " 164,\n", + " 166,\n", + " 168,\n", + " 170,\n", + " 172,\n", + " 174,\n", + " 176,\n", + " 178,\n", + " 180,\n", + " 182,\n", + " 184,\n", + " 186,\n", + " 188,\n", + " 190,\n", + " 192,\n", + " 194,\n", + " 196,\n", + " 198,\n", + " 200]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[i for i in range(2,201) if i%2==0]" + ] }, { "cell_type": "markdown", @@ -57,7 +232,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ @@ -75,10 +250,44 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.84062117, 0.48006452, 0.7876326, 0.77109654, 0.44409793, 0.09014516, 0.81835917, 0.87645456, 0.7066597, 0.09610873, 0.41247947, 0.57433389, 0.29960807, 0.42315023, 0.34452557, 0.4751035, 0.17003563, 0.46843998, 0.92796258, 0.69814654, 0.41290051, 0.19561071, 0.16284783, 0.97016248, 0.71725408, 0.87702738, 0.31244595, 0.76615487, 0.20754036, 0.57871812, 0.07214068, 0.40356048, 0.12149553, 0.53222417, 0.9976855, 0.12536346, 0.80930099, 0.50962849, 0.94555126, 0.33364763]\n" + ] + } + ], + "source": [ + "new_list=[]\n", + "for row in a:\n", + " for i in row:\n", + " new_list.append(i)\n", + "\n", + " \n", + "print(new_list)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.84062117, 0.48006452, 0.7876326, 0.77109654, 0.44409793, 0.09014516, 0.81835917, 0.87645456, 0.7066597, 0.09610873, 0.41247947, 0.57433389, 0.29960807, 0.42315023, 0.34452557, 0.4751035, 0.17003563, 0.46843998, 0.92796258, 0.69814654, 0.41290051, 0.19561071, 0.16284783, 0.97016248, 0.71725408, 0.87702738, 0.31244595, 0.76615487, 0.20754036, 0.57871812, 0.07214068, 0.40356048, 0.12149553, 0.53222417, 0.9976855, 0.12536346, 0.80930099, 0.50962849, 0.94555126, 0.33364763]\n" + ] + } + ], + "source": [ + "new_list2= [i for row in a for i in row]\n", + "print(new_list2)" + ] }, { "cell_type": "markdown", @@ -89,10 +298,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.84062117, 0.7876326, 0.77109654, 0.81835917, 0.87645456, 0.7066597, 0.57433389, 0.92796258, 0.69814654, 0.97016248, 0.71725408, 0.87702738, 0.76615487, 0.57871812, 0.53222417, 0.9976855, 0.80930099, 0.50962849, 0.94555126]\n" + ] + } + ], + "source": [ + "new_list3=[i for row in a for i in row if i >=0.5]\n", + "print(new_list3)" + ] }, { "cell_type": "markdown", @@ -103,7 +323,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, "outputs": [], "source": [ @@ -125,10 +345,26 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.55867166, 0.06210792, 0.08147297, 0.82579068, 0.91512478, 0.06833034, 0.05440634, 0.65857693, 0.30296619, 0.06769833, 0.96031863, 0.51293743, 0.09143215, 0.71893382, 0.45850679, 0.58256464, 0.59005654, 0.56266457, 0.71600294, 0.87392666, 0.11434044, 0.8694668, 0.65669313, 0.10708681, 0.07529684, 0.46470767, 0.47984544, 0.65368638, 0.14901286, 0.23760688]\n" + ] + } + ], + "source": [ + "# for row in b:\n", + "# for sub_row in row:\n", + "# for item in sub_row:\n", + "# print(item)\n", + " \n", + "list4=[item for row in b for sub_row in row for item in sub_row]\n", + "print(list4)" + ] }, { "cell_type": "markdown", @@ -139,10 +375,26 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.51293743, 0.56266457]\n" + ] + } + ], + "source": [ + "# for row in b:\n", + "# for sub_row in row:\n", + "# if sub_row[2]>=0.5:\n", + "# print(sub_row[2])\n", + " \n", + "list4=[sub_row[2] for row in b for sub_row in row if sub_row[2]>=0.5]\n", + "print(list4)" + ] }, { "cell_type": "markdown", @@ -153,10 +405,29 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['sample_file_1.csv', 'sample_file_0.csv', 'sample_file_2.csv', 'sample_file_3.csv', 'sample_file_7.csv', 'sample_file_6.csv', 'sample_file_4.csv', 'sample_file_5.csv', 'sample_file_8.csv', 'sample_file_9.csv']\n" + ] + } + ], + "source": [ + "from os import listdir\n", + "\n", + "filenames = listdir(\"../data\")\n", + "# print(filenames)\n", + "\n", + "# for f in filenames:\n", + "# if f.endswith(\".csv\"):\n", + "# print(f)\n", + "csvfiles=[f for f in filenames if f.endswith(\".csv\")]\n", + "print(csvfiles)" + ] }, { "cell_type": "markdown", @@ -167,10 +438,341 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 87, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
012345678910111213141516171819
00.2768270.2600540.9423970.1131870.7813550.4757400.1520610.2503240.1470780.1629840.9770250.5096190.5932120.9118390.2576450.3864570.6969320.0691620.9522910.286542
10.9958850.1583810.2442740.9621630.6519000.9306650.5771900.0879140.9602610.5808400.1946160.6614590.6740850.0493260.7858030.3156450.4953550.2321350.5493240.572232
20.6419170.8210550.3924370.7826170.5107620.4283200.0173240.6807200.3404120.4625130.7857760.2519490.0328470.9957000.8165630.7356920.4359980.4304110.5317570.489528
30.8065320.5692580.1481750.8099870.4596320.7357620.7306640.9345020.0803220.7635020.3985040.0276370.4096650.9428460.1332560.1571580.9294460.4027910.6859760.246594
40.3111850.5011650.3659790.7828070.7767950.7971990.7919460.8471570.7718110.2339440.5223440.0530300.2085510.8243540.5885670.6043410.2329640.2291090.0228810.479022
50.7347510.1953620.7343090.5981840.7634330.2634340.8680660.0580920.7535020.5875130.3116080.1783560.1829220.1476310.3911880.8160490.7490680.2932600.9378280.880858
60.7726070.4453910.2496420.7879220.5985830.8272380.6241260.6015240.6887530.3388700.0815950.4714740.2674430.4533510.8007160.0457490.6837930.3897890.0167870.503695
70.2264280.2687640.6942620.6223350.0638430.1226830.8156250.5845420.0325940.5897750.7643500.6509730.5657050.6917840.2652230.7390310.5603940.3348020.5176940.646110
80.3627480.4954300.1138760.5941490.6125220.6252040.8640500.2602790.5288730.1680430.7159290.6770140.1757350.6323700.9267150.0856750.1205250.1417460.7711440.489660
90.0334150.3404330.4649710.3637370.0258150.4341290.4151630.8922100.3817010.4152640.7908010.6969300.8197510.9440290.8699650.0417230.8191400.6760510.1093490.872947
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 \\\n", + "0 0.276827 0.260054 0.942397 0.113187 0.781355 0.475740 0.152061 \n", + "1 0.995885 0.158381 0.244274 0.962163 0.651900 0.930665 0.577190 \n", + "2 0.641917 0.821055 0.392437 0.782617 0.510762 0.428320 0.017324 \n", + "3 0.806532 0.569258 0.148175 0.809987 0.459632 0.735762 0.730664 \n", + "4 0.311185 0.501165 0.365979 0.782807 0.776795 0.797199 0.791946 \n", + "5 0.734751 0.195362 0.734309 0.598184 0.763433 0.263434 0.868066 \n", + "6 0.772607 0.445391 0.249642 0.787922 0.598583 0.827238 0.624126 \n", + "7 0.226428 0.268764 0.694262 0.622335 0.063843 0.122683 0.815625 \n", + "8 0.362748 0.495430 0.113876 0.594149 0.612522 0.625204 0.864050 \n", + "9 0.033415 0.340433 0.464971 0.363737 0.025815 0.434129 0.415163 \n", + "\n", + " 7 8 9 10 11 12 13 \\\n", + "0 0.250324 0.147078 0.162984 0.977025 0.509619 0.593212 0.911839 \n", + "1 0.087914 0.960261 0.580840 0.194616 0.661459 0.674085 0.049326 \n", + "2 0.680720 0.340412 0.462513 0.785776 0.251949 0.032847 0.995700 \n", + "3 0.934502 0.080322 0.763502 0.398504 0.027637 0.409665 0.942846 \n", + "4 0.847157 0.771811 0.233944 0.522344 0.053030 0.208551 0.824354 \n", + "5 0.058092 0.753502 0.587513 0.311608 0.178356 0.182922 0.147631 \n", + "6 0.601524 0.688753 0.338870 0.081595 0.471474 0.267443 0.453351 \n", + "7 0.584542 0.032594 0.589775 0.764350 0.650973 0.565705 0.691784 \n", + "8 0.260279 0.528873 0.168043 0.715929 0.677014 0.175735 0.632370 \n", + "9 0.892210 0.381701 0.415264 0.790801 0.696930 0.819751 0.944029 \n", + "\n", + " 14 15 16 17 18 19 \n", + "0 0.257645 0.386457 0.696932 0.069162 0.952291 0.286542 \n", + "1 0.785803 0.315645 0.495355 0.232135 0.549324 0.572232 \n", + "2 0.816563 0.735692 0.435998 0.430411 0.531757 0.489528 \n", + "3 0.133256 0.157158 0.929446 0.402791 0.685976 0.246594 \n", + "4 0.588567 0.604341 0.232964 0.229109 0.022881 0.479022 \n", + "5 0.391188 0.816049 0.749068 0.293260 0.937828 0.880858 \n", + "6 0.800716 0.045749 0.683793 0.389789 0.016787 0.503695 \n", + "7 0.265223 0.739031 0.560394 0.334802 0.517694 0.646110 \n", + "8 0.926715 0.085675 0.120525 0.141746 0.771144 0.489660 \n", + "9 0.869965 0.041723 0.819140 0.676051 0.109349 0.872947 " + ] + }, + "execution_count": 87, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "csvlist=[]\n", + "\n", + "for file in csvfiles:\n", + " csvlist.append(pd.read_csv(''.join(['../data/',file])))\n", + "\n", + "data=pd.concat(csvlist,ignore_index=True)\n", + "data[0:10]\n", + "\n", + "\n" + ] }, { "cell_type": "markdown", @@ -181,10 +783,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 30, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.47617375620406, 0.4561419452336911, 0.45088123042636974, 0.4326206030433662, 0.47384343112174854]\n" + ] + } + ], + "source": [ + "# column=list(data)\n", + "\n", + "# for i in column:\n", + "# if data[i].median()<0.48:\n", + "# print(data[i].median())\n", + "\n", + "median_list=[data[i].median() for i in list(data) if data[i].median()<0.48]\n", + "print(median_list)" + ] }, { "cell_type": "markdown", @@ -195,10 +814,356 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 88, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789...11121314151617181920
00.2768270.2600540.9423970.1131870.7813550.4757400.1520610.2503240.1470780.162984...0.5096190.5932120.9118390.2576450.3864570.6969320.0691620.9522910.2865420.186542
10.9958850.1583810.2442740.9621630.6519000.9306650.5771900.0879140.9602610.580840...0.6614590.6740850.0493260.7858030.3156450.4953550.2321350.5493240.5722320.472232
20.6419170.8210550.3924370.7826170.5107620.4283200.0173240.6807200.3404120.462513...0.2519490.0328470.9957000.8165630.7356920.4359980.4304110.5317570.4895280.389528
30.8065320.5692580.1481750.8099870.4596320.7357620.7306640.9345020.0803220.763502...0.0276370.4096650.9428460.1332560.1571580.9294460.4027910.6859760.2465940.146594
40.3111850.5011650.3659790.7828070.7767950.7971990.7919460.8471570.7718110.233944...0.0530300.2085510.8243540.5885670.6043410.2329640.2291090.0228810.4790220.379022
50.7347510.1953620.7343090.5981840.7634330.2634340.8680660.0580920.7535020.587513...0.1783560.1829220.1476310.3911880.8160490.7490680.2932600.9378280.8808580.780858
60.7726070.4453910.2496420.7879220.5985830.8272380.6241260.6015240.6887530.338870...0.4714740.2674430.4533510.8007160.0457490.6837930.3897890.0167870.5036950.403695
70.2264280.2687640.6942620.6223350.0638430.1226830.8156250.5845420.0325940.589775...0.6509730.5657050.6917840.2652230.7390310.5603940.3348020.5176940.6461100.546110
80.3627480.4954300.1138760.5941490.6125220.6252040.8640500.2602790.5288730.168043...0.6770140.1757350.6323700.9267150.0856750.1205250.1417460.7711440.4896600.389660
90.0334150.3404330.4649710.3637370.0258150.4341290.4151630.8922100.3817010.415264...0.6969300.8197510.9440290.8699650.0417230.8191400.6760510.1093490.8729470.772947
\n", + "

10 rows × 21 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 \\\n", + "0 0.276827 0.260054 0.942397 0.113187 0.781355 0.475740 0.152061 \n", + "1 0.995885 0.158381 0.244274 0.962163 0.651900 0.930665 0.577190 \n", + "2 0.641917 0.821055 0.392437 0.782617 0.510762 0.428320 0.017324 \n", + "3 0.806532 0.569258 0.148175 0.809987 0.459632 0.735762 0.730664 \n", + "4 0.311185 0.501165 0.365979 0.782807 0.776795 0.797199 0.791946 \n", + "5 0.734751 0.195362 0.734309 0.598184 0.763433 0.263434 0.868066 \n", + "6 0.772607 0.445391 0.249642 0.787922 0.598583 0.827238 0.624126 \n", + "7 0.226428 0.268764 0.694262 0.622335 0.063843 0.122683 0.815625 \n", + "8 0.362748 0.495430 0.113876 0.594149 0.612522 0.625204 0.864050 \n", + "9 0.033415 0.340433 0.464971 0.363737 0.025815 0.434129 0.415163 \n", + "\n", + " 7 8 9 ... 11 12 13 14 \\\n", + "0 0.250324 0.147078 0.162984 ... 0.509619 0.593212 0.911839 0.257645 \n", + "1 0.087914 0.960261 0.580840 ... 0.661459 0.674085 0.049326 0.785803 \n", + "2 0.680720 0.340412 0.462513 ... 0.251949 0.032847 0.995700 0.816563 \n", + "3 0.934502 0.080322 0.763502 ... 0.027637 0.409665 0.942846 0.133256 \n", + "4 0.847157 0.771811 0.233944 ... 0.053030 0.208551 0.824354 0.588567 \n", + "5 0.058092 0.753502 0.587513 ... 0.178356 0.182922 0.147631 0.391188 \n", + "6 0.601524 0.688753 0.338870 ... 0.471474 0.267443 0.453351 0.800716 \n", + "7 0.584542 0.032594 0.589775 ... 0.650973 0.565705 0.691784 0.265223 \n", + "8 0.260279 0.528873 0.168043 ... 0.677014 0.175735 0.632370 0.926715 \n", + "9 0.892210 0.381701 0.415264 ... 0.696930 0.819751 0.944029 0.869965 \n", + "\n", + " 15 16 17 18 19 20 \n", + "0 0.386457 0.696932 0.069162 0.952291 0.286542 0.186542 \n", + "1 0.315645 0.495355 0.232135 0.549324 0.572232 0.472232 \n", + "2 0.735692 0.435998 0.430411 0.531757 0.489528 0.389528 \n", + "3 0.157158 0.929446 0.402791 0.685976 0.246594 0.146594 \n", + "4 0.604341 0.232964 0.229109 0.022881 0.479022 0.379022 \n", + "5 0.816049 0.749068 0.293260 0.937828 0.880858 0.780858 \n", + "6 0.045749 0.683793 0.389789 0.016787 0.503695 0.403695 \n", + "7 0.739031 0.560394 0.334802 0.517694 0.646110 0.546110 \n", + "8 0.085675 0.120525 0.141746 0.771144 0.489660 0.389660 \n", + "9 0.041723 0.819140 0.676051 0.109349 0.872947 0.772947 \n", + "\n", + "[10 rows x 21 columns]" + ] + }, + "execution_count": 88, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "column_20=[]\n", + "\n", + "for i in range(len(data['19'])):\n", + " column_20.append(data[\"19\"][i]-0.1)\n", + " \n", + " \n", + "# DataFrameName.insert(loc, column, value, allow_duplicates = False)\n", + "\n", + "data.insert(20,\"20\",column_20,True)\n", + "data[0:10]" + ] }, { "cell_type": "markdown", @@ -207,6 +1172,29 @@ "### 10. Use a list comprehension to extract and print all values from the data set that are between 0.7 and 0.75." ] }, + { + "cell_type": "code", + "execution_count": 112, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.7347510852128797, 0.7025657075988269, 0.7132714209987683, 0.7280006345208285, 0.736029494090402, 0.7472962776291713, 0.7258310816144985, 0.7343092314001137, 0.7358941798147411, 0.7365416322783028, 0.7088042362916818, 0.7329024831531535, 0.7023481768180954, 0.7133695725698419, 0.7476323136755818, 0.7008930873050235, 0.7357618655811269, 0.7013619954419494, 0.7268545088531969, 0.7032248108904495, 0.7150799992177622, 0.7173964318670598, 0.7306642125209889, 0.7124169515124726, 0.71223975981198, 0.7383982036983279, 0.7298115760258881, 0.7051334608870933, 0.7321333453970806, 0.7178166705957928, 0.7374449181749492, 0.7159290265157912, 0.7294980584878026, 0.7215147068185102, 0.7045750112959754, 0.7111584953876777, 0.7209375615129192, 0.7396561066717461, 0.7303553716733908, 0.7133690799930356, 0.7356923324968598, 0.7390312927111312, 0.7078738356977186, 0.7321533684342264, 0.7490680818183477, 0.7085098152301276, 0.7130781095091867, 0.7264121114538001, 0.7196096371031628, 0.7393833032570581, 0.7244863338885654, 0.7033930409580709, 0.7274869207330491, 0.7376946446827494]\n" + ] + } + ], + "source": [ + "# for i in data:\n", + "# for c in range(len(data[\"0\"])):\n", + "# if data[i][c]>=0.7 and data[i][c]<=0.75:\n", + "# print(data[i][c])\n", + " \n", + "new_values=[data[i][c] for i in data for c in range(len(data[\"0\"])) if data[i][c]>=0.7 and data[i][c] <=0.75]\n", + "print(new_values)" + ] + }, { "cell_type": "code", "execution_count": null, @@ -231,7 +1219,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.0" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb b/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb index 15996b3..3b51ad6 100644 --- a/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb +++ b/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb @@ -23,7 +23,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 113, "metadata": {}, "outputs": [], "source": [ @@ -32,16 +32,34 @@ " # If the depth is not 2, either return false or return informative errors that let the user know the depth of the list.\n", " # Input: nested list\n", " # Output: Boolean (or error)\n", - " # Sample Input: [[1,2,3], [4,5,6]]\n", + " # Sample Input: [[1,2,3], \n", + "# [4,5,6]]\n", " # Sample Output: True\n", " \n", " # Your Code Here:\n", - " " + " for row in mat:\n", + " for column in row:\n", + " if type(column)==list:\n", + " return False\n", + " else:\n", + " return True\n", + " \n", + "# if not isinstance(mat, list):\n", + "# raise ValueError(\"The variable is not a list\")\n", + "# for l in mat:\n", + "# if not isinstance(l, list):\n", + "# raise ValueError(\"The matrix is only one dimensional\")\n", + "# for i in l:\n", + "# if isinstance(i, list):\n", + "# raise ValueError(\"The matrix is more than two dimensional\")\n", + "# return True\n", + "\n", + "\n" ] }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 114, "metadata": {}, "outputs": [ { @@ -50,7 +68,7 @@ "True" ] }, - "execution_count": 2, + "execution_count": 114, "metadata": {}, "output_type": "execute_result" } @@ -59,6 +77,26 @@ "twodim([[1,2], [1,2,3],[1,2,3]])" ] }, + { + "cell_type": "code", + "execution_count": 115, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 115, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "twodim([[[1,2,3],2,3],[2,3,4]])" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -74,31 +112,77 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "4" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ + "list_1=[[[[1],[2,3],[3,4],4],5],6]\n", + "list_2=[[1,2,3],[1,2]]\n", + "\n", "def twodimrecursive(mat):\n", " # Your code here:\n", - " " + " def dimension(mat):\n", + " if not any(isinstance(item, list) for item in mat):\n", + " return 1\n", + " else:\n", + " return 1 + max(dimension(item) for item in list(filter(lambda x: isinstance(x, list), mat)))\n", + " return dimension(mat) \n", + "\n", + " \n", + "\n", + "twodimrecursive(list_1)" ] }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 90, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "True" + "[[[1], [2, 3], [3, 4], 4]]" ] }, - "execution_count": 6, + "execution_count": 90, "metadata": {}, "output_type": "execute_result" } ], + "source": [ + "list_1=[[[1],[2,3],[3,4],4],5]\n", + "\n", + "list(filter(lambda x: isinstance(x, list), list_1))" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'twodimrecursive' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\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[0mtwodimrecursive\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m3\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;36m1\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m2\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[0;31mNameError\u001b[0m: name 'twodimrecursive' is not defined" + ] + } + ], "source": [ "twodimrecursive([[1,2,3],[1,2]])" ] @@ -114,7 +198,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 130, "metadata": {}, "outputs": [], "source": [ @@ -127,27 +211,40 @@ " # Sample Output: (2, 3)\n", " \n", " # Your code here:\n", + "# if twodim(mat):\n", + "# matrix=[mat[0]]\n", + "# for i in range(1,len(mat)):\n", + "# if len(mat[i])==len(mat[0]):\n", + "# matrix.append(mat[i])\n", + "# row=len(matrix)\n", + "# column=len(matrix[0])\n", + "# return (row,column)\n", + " \n", + " if twodim(mat):\n", + " row=len(mat)\n", + " column=len(mat[0])\n", + " return (row,column)\n", " " ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 131, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "(3, 4)" + "(2, 3)" ] }, - "execution_count": 14, + "execution_count": 131, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "rowcolumn([[1,2,3,4], [1,2,3,4],[1,2,3,4]])" + "rowcolumn([[1,2,3],[4,5,6]])" ] }, { @@ -161,7 +258,7 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 132, "metadata": {}, "outputs": [], "source": [ @@ -174,12 +271,24 @@ " # Sample Output: True\n", " \n", " # Your code here:\n", - " " + "# if len(mat1)==len(mat2): \n", + "# for i in range(len(mat1)):\n", + "# if len(mat1[i])!=len(mat2[i]):\n", + "# return False\n", + "# return True\n", + "# else:\n", + "# return False\n", + " \n", + " \n", + " if rowcolumn(mat1)[0]==rowcolumn(mat2)[0] and rowcolumn(mat1)[1]==rowcolumn(mat2)[1]:\n", + " return True\n", + " else:\n", + " return False" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 133, "metadata": {}, "outputs": [ { @@ -188,7 +297,7 @@ "True" ] }, - "execution_count": 16, + "execution_count": 133, "metadata": {}, "output_type": "execute_result" } @@ -197,6 +306,13 @@ "compare([[1,2,3],[4,5,6]], [[7,8,9], [10,11,12]])" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "markdown", "metadata": {}, @@ -208,7 +324,7 @@ }, { "cell_type": "code", - "execution_count": 17, + "execution_count": 59, "metadata": {}, "outputs": [], "source": [ @@ -217,16 +333,26 @@ " # Input: two list of lists\n", " # Output: one summed list of lists\n", " #\n", - " # Sample input: [[1,2,3],[4,5,6]], [[7,8,9], [10,11,12]]\n", + " # Sample input: [[1,2,3],[4,5,6]], \n", + "# [[7,8,9], [10,11,12]]\n", + "\n", " # Sample Output: [[8,10,12],[14,16,18]]\n", " \n", " # Your code here:\n", - " " + " \n", + " if compare(mat1,mat2):\n", + " added_list=[]\n", + " for l in range(len(mat1)):\n", + " added=[]\n", + " for item in range(len(mat1[0])):\n", + " added.append(mat1[l][item]+mat2[l][item])\n", + " added_list.append(added)\n", + " return added_list" ] }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 60, "metadata": {}, "outputs": [ { @@ -235,7 +361,7 @@ "[[8, 10, 12], [14, 16, 18]]" ] }, - "execution_count": 18, + "execution_count": 60, "metadata": {}, "output_type": "execute_result" } @@ -255,7 +381,7 @@ }, { "cell_type": "code", - "execution_count": 19, + "execution_count": 34, "metadata": {}, "outputs": [], "source": [ @@ -270,15 +396,22 @@ " # Since the rowcolumn function is now a member of the class, make sure to refer to the function as self.rowcolumn\n", " \n", " # Your code here:\n", + " self.mat = mat\n", + " self.rows = (self.rowcolumn(self.mat)[0])\n", + " self.cols = (self.rowcolumn(self.mat)[1])\n", " \n", - " \n", - " \n", - " \n", + "\n", " # Insert the twodim function here.\n", " # The only change you need to make is that now we are passing self and mat to the function (make sure self is first).\n", " \n", " # Your code here:\n", - "\n", + " def twodim(self):\n", + " for row in self.mat:\n", + " for column in row:\n", + " if type(column)==list:\n", + " return False\n", + " else:\n", + " return True\n", " \n", " # Insert the rowcolumn function here.\n", " # The changes you need to make: \n", @@ -286,13 +419,22 @@ " # 2. Any reference to twodim will be changed to self.twodim since this function is a member of the class and takes self \n", " \n", " # Your code here:\n", - "\n", + " def rowcolumn(self,mat):\n", + " if self.twodim():\n", + " row=len(self.mat)\n", + " column=len(self.mat[0])\n", + " return (row,column)\n", " \n", " \n", " # Insert the compare function here\n", " # Add self as the first argument passed to the function\n", " \n", " # Your code here:\n", + " def compare(self,mat1, mat2):\n", + " if self.rowcolumn(mat1)[0]==self.rowcolumn(mat2)[0] and self.rowcolumn(mat1)[1]==self.rowcolumn(mat2)[1]:\n", + " return True\n", + " else:\n", + " return False\n", "\n", "\n", " # Insert the addition function here\n", @@ -301,12 +443,21 @@ " # Change any reference to mat1 and mat2 to self.mat and matrix.mat respectively\n", " # Return your result as a Matrix2D(result). This will ensure that we return a new matrix and not a list of lists.\n", " \n", - " # Your code here:\n" + " # Your code here:\n", + " def addition(self,matrix):\n", + " if self.compare(self.mat,matrix.mat):\n", + " added_list=[]\n", + " for list in range(len(self.mat)):\n", + " added=[]\n", + " for item in range(len(self.mat[0])):\n", + " added.append(self.mat[list][item]+matrix.mat[list][item])\n", + " added_list.append(added)\n", + " return added_list\n" ] }, { "cell_type": "code", - "execution_count": 20, + "execution_count": 35, "metadata": {}, "outputs": [ { @@ -315,13 +466,13 @@ "[[8, 10, 12], [14, 16, 18]]" ] }, - "execution_count": 20, + "execution_count": 35, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "Matrix2D([[1,2,3],[4,5,6]]).addition(Matrix2D([[7,8,9],[10,11,12]])).mat" + "Matrix2D([[1,2,3],[4,5,6]]).addition(Matrix2D([[7,8,9],[10,11,12]]))" ] }, { @@ -401,7 +552,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb b/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb index 5d6ce62..0ae9233 100644 --- a/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb +++ b/module-1_labs/lab-tuple-set-dict/your-code/challenge-1.ipynb @@ -15,7 +15,7 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -34,7 +34,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -65,7 +65,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 4, "metadata": {}, "outputs": [ { @@ -75,7 +75,7 @@ "traceback": [ "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", "\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0madd\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 6\u001b[0;31m \u001b[0mtup\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mi\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 7\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtup\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mi\u001b[0m \u001b[0;32min\u001b[0m \u001b[0madd\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 6\u001b[0;31m \u001b[0mtup\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mi\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 7\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtup\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", "\u001b[0;31mAttributeError\u001b[0m: 'tuple' object has no attribute 'append'" ] } @@ -109,7 +109,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 5, "metadata": {}, "outputs": [ { @@ -152,7 +152,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 6, "metadata": {}, "outputs": [ { @@ -192,7 +192,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 7, "metadata": {}, "outputs": [ { @@ -219,7 +219,7 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 8, "metadata": {}, "outputs": [ { @@ -250,7 +250,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 9, "metadata": {}, "outputs": [ { @@ -283,7 +283,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 17, "metadata": {}, "outputs": [ { @@ -294,7 +294,12 @@ "b - False\n", "c - True\n", "d - False\n", - "e - False\n" + "e - False\n", + "a - 1\n", + "b - 0\n", + "c - 1\n", + "d - 0\n", + "e - 0\n" ] } ], @@ -308,6 +313,9 @@ " else:\n", " print(l,\"- False\")\n", " \n", + "for l in letters:\n", + " print(l, \"-\", 1 if l in tup3 else 0)\n", + " \n", " " ] }, @@ -322,7 +330,7 @@ }, { "cell_type": "code", - "execution_count": 58, + "execution_count": 11, "metadata": {}, "outputs": [ { @@ -342,8 +350,7 @@ "letters = [\"a\", \"b\", \"c\", \"d\", \"e\"]\n", "\n", "for l in range(len(letters)):\n", - " count_l=tup3.count(letters[l])\n", - " print(letters[l],\"appears\",count_l,\"times.\")\n", + " print(letters[l],\"appears\",tup3.count(letters[l]),\"times.\")\n", " \n" ] }, diff --git a/module-1_projects/python-project/your-code/Escape Game Ivy.ipynb b/module-1_projects/python-project/your-code/Escape Game Ivy.ipynb index f98fcbf..7023376 100644 --- a/module-1_projects/python-project/your-code/Escape Game Ivy.ipynb +++ b/module-1_projects/python-project/your-code/Escape Game Ivy.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ @@ -120,7 +120,6 @@ "}\n", " \n", "\n", - "\n", "all_rooms = [game_room, bedroom_1, bedroom_2, living_room, outside]\n", "\n", "all_doors = [door_a, door_b, door_c, door_d]" @@ -128,7 +127,7 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ @@ -153,12 +152,14 @@ " \"living room\" : [dining_table, door_c, door_d],\n", " \"outside\": [door_d],\n", " \"door d\" : [living_room, outside]\n", - "}" + "}\n", + "\n", + "\n" ] }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ @@ -176,7 +177,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 8, "metadata": {}, "outputs": [], "source": [ @@ -193,6 +194,8 @@ " print(\"You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. \\n ╚(ಠ_ಠ)=┐ You don't remember why you are here and what had happened before. \\n ಠ⌣ಠ You feel some unknown danger is approaching and you must get out of the house, NOW!\")\n", " play_room(game_state[\"current_room\"])\n", " \n", + "\n", + " \n", "def play_room(room):\n", " \"\"\"\n", " Play a room. First check if the room being played is the target room.\n", @@ -312,7 +315,7 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, "metadata": {}, "outputs": [ { @@ -322,142 +325,7 @@ "You wake up on a couch and find yourself in a strange house with no windows which you have never been to before. \n", " ╚(ಠ_ಠ)=┐ You don't remember why you are here and what had happened before. \n", " ಠ⌣ಠ You feel some unknown danger is approaching and you must get out of the house, NOW!\n", - "You are now in game room\n", - "What would you like to do? Type 'explore' or 'examine'?explore\n", - "You explore the room. This is game room. You find couch, piano, door a\n", - "You are now in game room\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?piano\n", - "You examine piano. You find key for door a.\n", - "You are now in game room\n", - "What would you like to do? Type 'explore' or 'examine'?explore\n", - "You explore the room. This is game room. You find couch, piano, door a\n", - "You are now in game room\n", - "What would you like to do? Type 'explore' or 'examine'?examie\n", - "Not sure what you mean. Type 'explore' or 'examine'.\n", - "You are now in game room\n", - "What would you like to do? Type 'explore' or 'examine'?door a\n", - "Not sure what you mean. Type 'explore' or 'examine'.\n", - "You are now in game room\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?door a\n", - "You examine door a. You unlock it with a key you have.\n", - "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", - "You are now in bedroom 1\n", - "What would you like to do? Type 'explore' or 'examine'?explore\n", - "You explore the room. This is bedroom 1. You find queen bed, door a, door b, door c\n", - "You are now in bedroom 1\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?queen bed\n", - "You examine queen bed. You find key for door b.\n", - "You are now in bedroom 1\n", - "What would you like to do? Type 'explore' or 'examine'?examie\n", - "Not sure what you mean. Type 'explore' or 'examine'.\n", - "You are now in bedroom 1\n", - "What would you like to do? Type 'explore' or 'examine'?door b\n", - "Not sure what you mean. Type 'explore' or 'examine'.\n", - "You are now in bedroom 1\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?door b\n", - "You examine door b. You unlock it with a key you have.\n", - "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", - "You are now in bedroom 2\n", - "What would you like to do? Type 'explore' or 'examine'?explore\n", - "You explore the room. This is bedroom 2. You find double bed, dresser, door b\n", - "You are now in bedroom 2\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?double bed\n", - "You examine double bed. You find key c.\n", - "You are now in bedroom 2\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?dresser\n", - "You examine dresser. You find key d.\n", - "You are now in bedroom 2\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?door b\n", - "You examine door b. You unlock it with a key you have.\n", - "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", - "You are now in bedroom 1\n", - "What would you like to do? Type 'explore' or 'examine'?explore\n", - "You explore the room. This is bedroom 1. You find queen bed, door a, door b, door c\n", - "You are now in bedroom 1\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?door c\n", - "You examine door c. You unlock it with a key you have.\n", - "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", - "You are now in living room\n", - "What would you like to do? Type 'explore' or 'examine'?explore\n", - "You explore the room. This is living room. You find dining table, door c, door d\n", - "You are now in living room\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?dining table\n", - "You examine dining table. There isn't anything interesting about it.\n", - "You are now in living room\n", - "What would you like to do? Type 'explore' or 'examine'?examine\n", - "What would you like to examine?door d\n", - "You examine door d. You unlock it with a key you have.\n", - "Do you want to go to the next room? Ener 'yes' or 'no'yes\n", - "Congrats! You escaped the room \\ (•◡•) / !! \n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n" + "You are now in game room\n" ] } ], diff --git a/module-1_projects/python-project/your-code/sample-code.ipynb b/module-1_projects/python-project/your-code/sample-code.ipynb index a6f8a94..f6d5f4b 100644 --- a/module-1_projects/python-project/your-code/sample-code.ipynb +++ b/module-1_projects/python-project/your-code/sample-code.ipynb @@ -240,7 +240,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, From 5c4c6e6e1825475cca0cb4d722e2bacea6fda531 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Tue, 22 Oct 2019 19:50:50 +0200 Subject: [PATCH 12/30] ADDED ANSWER --- .../your-code/solutions.sql | 62 +++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 module-1_labs/lab-advanced-mysql/your-code/solutions.sql diff --git a/module-1_labs/lab-advanced-mysql/your-code/solutions.sql b/module-1_labs/lab-advanced-mysql/your-code/solutions.sql new file mode 100644 index 0000000..50499a0 --- /dev/null +++ b/module-1_labs/lab-advanced-mysql/your-code/solutions.sql @@ -0,0 +1,62 @@ +-- Challenge 1 +CREATE TEMPORARY TABLE royalty_sales ( +SELECT + s.title_id AS Title_ID, + ta.au_id AS Author_ID, + t.advance AS Advance, + ta.royaltyper AS Royaltyper, + (t.advance*ta.royaltyper/100) AS Splited_advance, + SUM(t.price*s.qty*t.royalty/100*ta.royaltyper/100) AS Royalty_per_sale +FROM titles t + JOIN sales s + ON s.title_id = t.title_id + JOIN titleauthor ta + ON ta.title_id = t.title_id +GROUP BY 1,2 +ORDER BY 5 DESC); + +SELECT + rs.Author_ID, + a.au_lname, + a.au_fname, + ROUND(SUM(Splited_advance)+SUM(Royalty_per_sale),2) AS Profit +FROM royalty_sales rs + JOIN authors a + ON a.au_id = rs.Author_ID +GROUP BY 1 +ORDER BY 4 DESC; + + + + +-- Challenge 3 + +CREATE TABLE most_profiting_authors ( + WITH royalty_sales AS ( + SELECT + s.title_id AS Title_ID, + ta.au_id AS Author_ID, + t.advance AS Advance, + ta.royaltyper AS Royaltyper, + (t.advance*ta.royaltyper/100) AS Splited_advance, + SUM(t.price*s.qty*t.royalty/100*ta.royaltyper/100) AS Royalty_per_sale + FROM titles t + JOIN sales s + ON s.title_id = t.title_id + JOIN titleauthor ta + ON ta.title_id = t.title_id + GROUP BY 1,2 + ORDER BY 5 DESC) + SELECT + rs.Author_ID AS "Author ID", + ROUND(SUM(Splited_advance)+SUM(Royalty_per_sale),2) AS Profits + FROM royalty_sales rs + JOIN authors a + ON a.au_id = rs.Author_ID + GROUP BY 1 + ORDER BY 2 DESC + LIMIT 3); + + +SELECT* +FROM most_profiting_authors; \ No newline at end of file From 47df26088a2124e5cea63055e4f73d3ffca670bb Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Tue, 22 Oct 2019 19:53:49 +0200 Subject: [PATCH 13/30] ADDED SOLUTIONS --- .gitignore | 1 + .../your-code/bonus-solution.py | 25 + .../lab-errhand_listcomp/.0011.scavengerhunt | 1 + .../your-code/solution.py | 288 +++ .../your-code/main-solutions.ipynb | 416 ++++ .../your-code/Q1_solution.ipynb | 218 +++ .../your-code/Q2_solution.ipynb | 178 ++ .../your-code/Q3_solution.ipynb | 285 +++ .../your-code/main-solutions.ipynb | 686 +++++++ .../your-code/main-solutions.ipynb | 402 ++++ .../your-code/main_solutions.ipynb | 1030 ++++++++++ .../your-code/main-solutions.ipynb | 1698 +++++++++++++++++ .../lab-mysql-select-solutions.sql | 53 + .../your-code/main-solutions.ipynb | 489 +++++ .../your-code/main.ipynb | 2 +- .../your-code/main_solutions.ipynb | 989 ++++++++++ .../lab-2-sql-aggregations-solutions.md | 216 +++ .../lab-2-sql-aggregations.md | 115 ++ .../lab-1-sql-select-solutions.md | 225 +++ .../lab-sql-select/lab-1-sql-select.md | 139 ++ module-1_labs/lab-string-operations/README.md | 34 +- .../your-code/main-solutions.ipynb | 460 +++++ .../your-code/main.ipynb | 255 +++ .../your-code/challenge-1-solution.ipynb | 336 ++++ .../your-code/challenge-2-solution.ipynb | 491 +++++ .../your-code/challenge-3-solution.ipynb | 302 +++ 26 files changed, 9308 insertions(+), 26 deletions(-) create mode 100644 module-1_labs/lab-code-simplicity-efficiency/your-code/bonus-solution.py create mode 100644 module-1_labs/lab-errhand_listcomp/.0011.scavengerhunt create mode 100644 module-1_labs/lab-errhand_listcomp/your-code/solution.py create mode 100644 module-1_labs/lab-error-handling/your-code/main-solutions.ipynb create mode 100644 module-1_labs/lab-functional-programming/your-code/Q1_solution.ipynb create mode 100644 module-1_labs/lab-functional-programming/your-code/Q2_solution.ipynb create mode 100644 module-1_labs/lab-functional-programming/your-code/Q3_solution.ipynb create mode 100644 module-1_labs/lab-functional-programming/your-code/main-solutions.ipynb create mode 100644 module-1_labs/lab-lambda-functions/your-code/main-solutions.ipynb create mode 100644 module-1_labs/lab-list-comprehensions/your-code/main_solutions.ipynb create mode 100644 module-1_labs/lab-map-reduce-filter/your-code/main-solutions.ipynb create mode 100644 module-1_labs/lab-mysql-select/lab-mysql-select-solutions.sql create mode 100644 module-1_labs/lab-object-oriented-programming/your-code/main-solutions.ipynb create mode 100644 module-1_labs/lab-parallelization/your-code/main_solutions.ipynb create mode 100644 module-1_labs/lab-sql-aggregations/lab-2-sql-aggregations-solutions.md create mode 100644 module-1_labs/lab-sql-aggregations/lab-2-sql-aggregations.md create mode 100644 module-1_labs/lab-sql-select/lab-1-sql-select-solutions.md create mode 100644 module-1_labs/lab-sql-select/lab-1-sql-select.md create mode 100644 module-1_labs/lab-string-operations/your-code/main-solutions.ipynb create mode 100644 module-1_labs/lab-string-operations/your-code/main.ipynb create mode 100644 module-1_labs/lab-tuple-set-dict/your-code/challenge-1-solution.ipynb create mode 100644 module-1_labs/lab-tuple-set-dict/your-code/challenge-2-solution.ipynb create mode 100644 module-1_labs/lab-tuple-set-dict/your-code/challenge-3-solution.ipynb diff --git a/.gitignore b/.gitignore index b6f92d8..2f25327 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ .idea venv/ .ipynb_checkpoints +*.vscode* diff --git a/module-1_labs/lab-code-simplicity-efficiency/your-code/bonus-solution.py b/module-1_labs/lab-code-simplicity-efficiency/your-code/bonus-solution.py new file mode 100644 index 0000000..e8f3701 --- /dev/null +++ b/module-1_labs/lab-code-simplicity-efficiency/your-code/bonus-solution.py @@ -0,0 +1,25 @@ +""" +Ref: https://leetcode.com/problems/climbing-stairs/solution/ +""" + +class ClimeStairs: + def __init__(self, total_steps=10): + self.total_steps = total_steps + self.steps_stack = [1, 2] + self.calculation_count = 0 + + def calc_solutions(self, n): + self.calculation_count += 1 + return(self.steps_stack[n-1] + self.steps_stack[n-2]) + + def get_calculation_count(self): + return self.calculation_count + + def solve(self): + for i in range(2, self.total_steps): + self.steps_stack.append(self.calc_solutions(i)) + return self.steps_stack[self.total_steps-1] + +new_challenge = ClimeStairs(10000) +print('Answer is: ' + str(new_challenge.solve())) +print('Total calculations: ' + str(new_challenge.get_calculation_count())) diff --git a/module-1_labs/lab-errhand_listcomp/.0011.scavengerhunt b/module-1_labs/lab-errhand_listcomp/.0011.scavengerhunt new file mode 100644 index 0000000..1a00a70 --- /dev/null +++ b/module-1_labs/lab-errhand_listcomp/.0011.scavengerhunt @@ -0,0 +1 @@ +data, diff --git a/module-1_labs/lab-errhand_listcomp/your-code/solution.py b/module-1_labs/lab-errhand_listcomp/your-code/solution.py new file mode 100644 index 0000000..c5bc644 --- /dev/null +++ b/module-1_labs/lab-errhand_listcomp/your-code/solution.py @@ -0,0 +1,288 @@ +#Example: + +eggs = (1,3,8,3,2) + +my_listComprehension = [1/egg for egg in eggs] + +print(my_listComprehension) + +#Insert here the module/library import statements + +import math +import string +import os +from os import walk +#from os.path import isfile, join +from os import listdir +import random +import sys + + +#1. Calculate the square number of the first 20 numbers. Use square as the name of the list. +# Remember to use list comprehensions and to print your results + +square = [x**2 for x in range(20)] +print(square) + + +#2. Calculate the first 50 power of two. Use power_of_two as the name of the list. +# Remember to use list comprehensions and to print your results + +power_of_two= [2**i for i in range(50)] +print(power_of_two) + + +#3. Calculate the square root of the first 100 numbers. Use sqrt as the name of the list. +# You will probably need to install math library with pip and import it in this file. +# Remember to use list comprehensions and to print your results + +sqrt= [math.sqrt(num) for num in range(100)] +print(sqrt) + + +#4. Create this list [-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,0]. Use my_list as the name of the list. +# Remember to use list comprehensions and to print your results + +#One way + +my_list = [num for num in range(-10,1)] + +#Other way + +results = [-num for num in reversed(range(11))] +print(my_list) +print(results) + + + +#5. Find the odd numbers from 1-100. Use odds as the name of the list. +# Remember to use list comprehensions and to print your results + +odds = [num for num in range(1,100) if num % 2 != 0] +print(odds) + + +#6. Find all of the numbers from 1-1000 that are divisible by 7. Use divisible_by_seven as the name of the list. +# Remember to use list comprehensions and to print your results + +divisible_by_seven= [num for num in range(1,1000) if num % 7 == 0] +print(divisible_by_seven) + + +#7. Remove all of the vowels in a string. Hint: make a list of the non-vowels. Use non_vowels as the name of the list. +# Remember to use list comprehensions and to print your results +# You can use the following test string but feel free to modify at your convenience + +teststring = 'Find all of the words in a string that are monosyllabic' + +vowels = ['a','e','i','o','u',' '] +non_vowels = [letter for letter in teststring if letter.lower() not in vowels] +print(non_vowels) + + +#8. Find the capital letters (and not white space) in the sentence 'The Quick Brown Fox Jumped Over The Lazy Dog'. +# Use capital_letters as the name of the list. +# Remember to use list comprehensions and to print your results + +teststring = 'The Quick Brown Fox Jumped Over The Lazy Dog' + +#One way +capital_letters = [letter for letter in teststring if letter in string.ascii_uppercase] + +#Other way +results = [letter for letter in teststring if letter.isupper()] + +print(capital_letters) +print(results) + + +#9. Find all the consonants in the sentence 'The quick brown fox jumped over the lazy dog'. +# Use consonants as the name of the list. +# Remember to use list comprehensions and to print your results. + +teststring = 'The quick brown fox jumped over the lazy dog' +vowels = ['a','e','i','o','u',' '] +consonants = [letter for letter in teststring if letter.lower() not in vowels] +print(consonants) + + +#10. Find the folders you have in your madrid-oct-2018 local repo. Use files as name of the list. +# You will probably need to import os library and some of its modules. You will need to make some online research. +# Remember to use list comprehensions and to print your results. + +mypath = '../madrid-oct-2018' +files = [folder for folder in next(os.walk(mypath))[1]] +print(files) + + +#11. Create 4 lists of 10 random numbers between 0 and 100 each. Use random_lists as the name of the list. +#You will probably need to import random module +# Remember to use list comprehensions and to print your results + +random_lists = [random.sample(range(101),10) for _ in range (4)] +print(random_lists) + + +#12. Flatten the following list of lists. Use flatten_list as the name of the output. +# Remember to use list comprehensions and to print your results + +list_of_lists = [[1,2,3],[4,5,6],[7,8,9]] + +flatten_list = [y for x in list_of_lists for y in x] +print(flatten_list) + +#13. Convert the numbers of the following nested list to floats. Use floats as the name of the list. +# Remember to use list comprehensions and to print your results. + +list_of_lists = [['40', '20', '10', '30'], ['20', '20', '20', '20', '20', '30', '20'], \ +['30', '20', '30', '50', '10', '30', '20', '20', '20'], ['100', '100'], ['100', '100', '100', '100', '100'], \ +['100', '100', '100', '100']] + +floats = [[float(y) for y in x] for x in list_of_lists] +print(floats) + + +#14. Handle the exception thrown by the code below by using try and except blocks. + +try: + for i in ['a','b','c']: + print (i**2) +except: + print ("An error occurred!") + + +#15. Handle the exception thrown by the code below by using try and except blocks. +#Then use a finally block to print 'All Done.' +# Check in provided resources the type of error you may use. + +x = 5 +y = 0 + +try: + z = x/y +except ZeroDivisionError:4 + print ("Can't divide by Zero!") +finally: + print ('All Done!') + + +#16. Handle the exception thrown by the code below by using try and except blocks. +# Check in provided resources the type of error you may use. + +abc=[10,20,20] + +#print(abc[3]) +try: + i = int(input("Enter item index to print: ")) +except IndexError: + print ("List index out of range!") +else: + print(abc[i]) + + +#17. Handle at least two kind of different exceptions when dividing a couple of numbers provided by the user. +# Hint: take a look on python input function. +# Check in provided resources the type of error you may use. + +try: + x = int( input( "enter a number: " ) ) + y = int( input( "enter another number: " ) ) + print( x, '/', y, '=', x/y ) +except ZeroDivisionError: + print( "Can't divide by 0!" ) +except ValueError: + print( "That doesn't look like a number!" ) +except: + print( "something unexpected happend!" ) + + +#18. Handle the exception thrown by the code below by using try and except blocks. +# Check in provided resources the type of error you may use. + +try: + f = open('test','r') + f.write('Test write this') +except IOError: + print ("Error: File not found or is read-only") +else: + print ("Content written successfully") + f.close() + + +#19. Handle the exceptions that can be thrown by the code below using try and except blocks. +#Hint: the file could not exist and the data could not be convertable to int + +try: + fp = open('myfile.txt') + line = f.readline() + i = int(s.strip()) +except (IOError,ValueError) as e: + print ("Please check the file,either the file is read-only or the data can't be converted to an integer.",e.errno) +except: + print ("Unexpected error") + + +#20. The following function can only run on a Linux system. +# The assert in this function will throw an exception if you call it on an operating system other than Linux. +# Handle this exception using try and except blocks. +# You will probably need to import sys + +def linux_interaction(): + assert ('linux' in sys.platform), "Function can only run on Linux systems." + print('Doing something.') + +try: + linux_interaction() +except AssertionError as error: + print(error) + print('The linux_interaction() function was not executed') + +# Bonus Questions: + +# You will need to make some research on dictionary comprehension to solve the following questions + +#21. Write a function that asks for an integer and prints the square of it. +# Hint: we need to continually keep checking until we get an integer. +# Use a while loop with a try,except, else block to account for incorrect inputs. + +def ask(): + + while True: + try: + n = int(input('Input an integer: ')) + except: + print ("Looks like you did not enter an integer!") + continue + else: + print ('Yep thats an integer!') + break + + print ('Thank you, your number squared is: ', n**2) + + +# 22. Find all of the numbers from 1-1000 that are divisible by any single digit besides 1 (2-9). +# Use results as the name of the list + +results = [number for number in range(1,1001) if True in [True for divisor in range(2,10) if number % divisor == 0]] +print(results) + + +# 23. Define a customised exception to handle not accepted values. +# You have the following user inputs and the Num_of_sections can not be less than 2. +# Hint: Create a class derived from the pre-defined Exception class in Python + +class UnAcceptedValueError(Exception): + def __init__(self, data): + self.data = data + def __str__(self): + return repr(self.data) + +Total_Marks = int(input("Enter Total Marks Scored: ")) +try: + Num_of_Sections = int(input("Enter Num of Sections: ")) + if(Num_of_Sections < 2): + raise UnAcceptedValueError("Number of Sections can't be less than 2") +except UnAcceptedValueError as e: + print ("Received error:", e.data) + + diff --git a/module-1_labs/lab-error-handling/your-code/main-solutions.ipynb b/module-1_labs/lab-error-handling/your-code/main-solutions.ipynb new file mode 100644 index 0000000..32ba891 --- /dev/null +++ b/module-1_labs/lab-error-handling/your-code/main-solutions.ipynb @@ -0,0 +1,416 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [], + "source": [ + "import math" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Handling Errors Using `try` and `except`\n", + "\n", + "The `try` and `except` clauses create a block for handling exceptions. When we wrap code in this block, we first attempt the code in the `try` and if an error is thrown, we can handle specific errors or all errors in the `except` portion.\n", + "\n", + "In the 4 cells below, modify the code to catch the error and print a meaningful message that will alert the user what went wrong. You may catch the error using a general `except` or a specific `except` for the error caused by the code." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# Modify the code below:\n", + "\n", + "print(some_string)\n", + "\n", + "try:\n", + " print(some_string)\n", + "except:\n", + " print(\"Please input a value for some_string\")" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "# Modify the code below:\n", + "\n", + "for i in ['a','b','c']:\n", + " print (i**2)\n", + " \n", + "try:\n", + " for i in ['a','b','c']:\n", + " print (i**2)\n", + "except:\n", + " print (\"We cannot perform numeric computations on strings\")" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "# Modify the code below:\n", + "\n", + "x = 5\n", + "y = 0\n", + "\n", + "z = x/y\n", + "\n", + "try:\n", + " z = x/y\n", + "except ZeroDivisionError:\n", + " print (\"Can't divide by Zero!\")" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "# Modify the code below:\n", + "\n", + "abc=[10,20,20]\n", + "print(abc[3])\n", + "\n", + "try:\n", + " print(abc[3])\n", + "except IndexError:\n", + " print (\"List index out of range!\")\n", + " pass" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Handling Errors Using `if` Statements\n", + "\n", + "In many cases, we are able to identify issues that may come up in our code and handle those handlful of issues with an `if` statment. Sometimes we would like to handle different types of inputs and are aware that later in the code, we will have to write two different branches of code for the two different cases we allowed in the beginning.\n", + "\n", + "In the 3 cells below, add an `if` statment that will handle both types of input allowed in the functions." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "ename": "ValueError", + "evalue": "math domain error", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mValueError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 11\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mmath\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msqrt\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 12\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 13\u001b[1;33m \u001b[0msqrt_for_all\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m-\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[1;32m\u001b[0m in \u001b[0;36msqrt_for_all\u001b[1;34m(x)\u001b[0m\n\u001b[0;32m 9\u001b[0m \u001b[1;31m# Sample Input: -4\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 10\u001b[0m \u001b[1;31m# Sample Output: 2.0\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m---> 11\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mmath\u001b[0m\u001b[1;33m.\u001b[0m\u001b[0msqrt\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 12\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 13\u001b[0m \u001b[0msqrt_for_all\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;33m-\u001b[0m\u001b[1;36m1\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mValueError\u001b[0m: math domain error" + ] + } + ], + "source": [ + "# Modify the code below to handle positive and negative numbers by adding an if statement and performing a transformation:\n", + "\n", + "def sqrt_for_all(x):\n", + " # This function will take any real number and return the square root of its magnitude\n", + " # Input: real number\n", + " # Output: real number\n", + " \n", + " # Sample Input: -4\n", + " # Sample Output: 2.0\n", + " return math.sqrt(x)\n", + "\n", + "sqrt_for_all(-1)\n", + "\n", + "def sqrt_for_all(x):\n", + " if x < 0:\n", + " x = abs(x)\n", + " return math.sqrt(x)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "ename": "ZeroDivisionError", + "evalue": "division by zero", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mZeroDivisionError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 4\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[0mx\u001b[0m \u001b[1;33m/\u001b[0m \u001b[0my\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 5\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 6\u001b[1;33m \u001b[0mdivide\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;36m5\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m0\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[1;32m\u001b[0m in \u001b[0;36mdivide\u001b[1;34m(x, y)\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 3\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0mdivide\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mx\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0my\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 4\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[0mx\u001b[0m \u001b[1;33m/\u001b[0m \u001b[0my\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 5\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 6\u001b[0m \u001b[0mdivide\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;36m5\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m0\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mZeroDivisionError\u001b[0m: division by zero" + ] + } + ], + "source": [ + "# Modify the code below to handle zero as well. In the case of zero, return zero\n", + "\n", + "def divide(x, y):\n", + " # This function will take any two real numbers and return their quotient. If the denominator is zero, we return zero\n", + " # Input: real number\n", + " # Output: real number\n", + " \n", + " # Sample Input: 5, 1\n", + " # Sample Output: 5.0\n", + " return x / y\n", + "\n", + "divide(5, 0)\n", + "\n", + "def divide(x, y):\n", + " if y == 0:\n", + " return 0\n", + " else:\n", + " return x / y" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "ename": "TypeError", + "evalue": "'int' object is not iterable", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;32mreturn\u001b[0m \u001b[1;33m[\u001b[0m\u001b[0ma\u001b[0m \u001b[1;33m+\u001b[0m \u001b[0melement\u001b[0m \u001b[1;32mfor\u001b[0m \u001b[0melement\u001b[0m \u001b[1;32min\u001b[0m \u001b[0ml\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 3\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 4\u001b[1;33m \u001b[0madd_elements\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;36m5\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m6\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[1;32m\u001b[0m in \u001b[0;36madd_elements\u001b[1;34m(a, l)\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;32mdef\u001b[0m \u001b[0madd_elements\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0ma\u001b[0m\u001b[1;33m,\u001b[0m \u001b[0ml\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 2\u001b[1;33m \u001b[1;32mreturn\u001b[0m \u001b[1;33m[\u001b[0m\u001b[0ma\u001b[0m \u001b[1;33m+\u001b[0m \u001b[0melement\u001b[0m \u001b[1;32mfor\u001b[0m \u001b[0melement\u001b[0m \u001b[1;32min\u001b[0m \u001b[0ml\u001b[0m\u001b[1;33m]\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m\u001b[0;32m 3\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 4\u001b[0m \u001b[0madd_elements\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;36m5\u001b[0m\u001b[1;33m,\u001b[0m \u001b[1;36m6\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n", + "\u001b[1;31mTypeError\u001b[0m: 'int' object is not iterable" + ] + } + ], + "source": [ + "# Modify the function below that it will take either an number and a list or two numbers. \n", + "# If we take two numbers, add them together and return a list of length 1. \n", + "# Otherwise, add the number to every element of the list and return the resulting list\n", + "\n", + "def add_elements(a, l):\n", + " # This function takes either two numbers or a list and a number and adds the number to all elements of the list\n", + " # If the function only takes two numbers, it returns a list of length one that is the sum of the numbers\n", + " \n", + " # Input: number and list or two numbers\n", + " # Output: list\n", + " \n", + " # Sample Input: 5, 6\n", + " # Sample Output: [11]\n", + " return [a + element for element in l]\n", + " \n", + "add_elements(5, 6)\n", + "\n", + "def add_elements(a, l):\n", + " if not isinstance(l, list):\n", + " l = [l]\n", + " return [a + element for element in l] " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3 - Fixing Errors to Get Code to Run\n", + "\n", + "Sometimes the error is not caused by the input but by the code itself. In the 2 following cells below, examine the error and correct the code to avoid the error." + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "ename": "SyntaxError", + "evalue": "unexpected EOF while parsing (, line 4)", + "output_type": "error", + "traceback": [ + "\u001b[1;36m File \u001b[1;32m\"\"\u001b[1;36m, line \u001b[1;32m4\u001b[0m\n\u001b[1;33m sum([element + 1 for element in l]\u001b[0m\n\u001b[1;37m ^\u001b[0m\n\u001b[1;31mSyntaxError\u001b[0m\u001b[1;31m:\u001b[0m unexpected EOF while parsing\n" + ] + } + ], + "source": [ + "# Modify the code below:\n", + "\n", + "l = [1,2,3,4]\n", + "\n", + "sum([element + 1 for element in l]\n", + " \n", + "sum([element + 1 for element in l])" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "ename": "TypeError", + "evalue": "must be str, not int", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 4\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 5\u001b[0m \u001b[1;32mfor\u001b[0m \u001b[0melement\u001b[0m \u001b[1;32min\u001b[0m \u001b[0ml\u001b[0m\u001b[1;33m:\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 6\u001b[1;33m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[1;34m\"The current element in the loop is\"\u001b[0m \u001b[1;33m+\u001b[0m \u001b[0melement\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[1;31mTypeError\u001b[0m: must be str, not int" + ] + } + ], + "source": [ + "# Modify the code below:\n", + "\n", + "l = [1,2,3,4]\n", + "\n", + "for element in l:\n", + " print(\"The current element in the loop is\" + element)\n", + " \n", + "for element in l:\n", + " print(\"The current element in the loop is\" + str(element))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 4 - Raise Errors on Your Own\n", + "\n", + "There are cases where you need to alert your users of a problem even if the input will not immediately produce an error. In these cases you may want to throw an error yourself to bring attention to the problem. In the 2 cells below, write the functions as directed and add the appropriate errors using the `raise` clause. Make sure to add a meaningful error message." + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [], + "source": [ + "def log_square(x):\n", + " # This function takes a numeric value and returns the natural log of the square of the number \n", + " # The function raises an error if the number is equal to zero\n", + " # Use the math.log function in this funtion\n", + " \n", + " # Input: real number\n", + " # Output: real number or error\n", + " \n", + " # Sample Input: 5\n", + " # Sample Output: 3.21887\n", + " \n", + " # Your code here:\n", + " \n", + " if x == 0:\n", + " raise ValueError(\"The input cannot be zero\")\n", + " return math.log(x ** 2)\n", + " \n" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [], + "source": [ + "def check_capital(x):\n", + " # This function returns true if the string contains at least one capital letter and throws an error otherwise\n", + " # Input: string\n", + " # Output: bool or error message\n", + " \n", + " # Sample Input: 'John'\n", + " # Sample Output: True\n", + " \n", + " # Your code here:\n", + " \n", + " if any(s.isupper() for s in x):\n", + " return True\n", + " else:\n", + " raise ValueError(\"The string does not contain at least one upper case letter\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Optional Types\n", + "\n", + "The optional type is a data type that allows a variable to be either a defined type (like integer, string, etc.) or None. Optional types are defined in the `typing` library. They allow us to transition Python to a statically typed language (as far as our syntax goes). To read more about the `typing` library, click [here](https://docs.python.org/3/library/typing.html#typing.Optional). \n", + "\n", + "In the cell below, use the optional type to write a function that can handle both floats and `None` type. This function converts Celcius to Fahrenheit. If we pass `None` to the function, we should return `None`, otherwise, we will compute the converted temperature" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [], + "source": [ + "from typing import Optional\n", + "\n", + "def temp_convert(arg: Optional[float]) -> Optional[float]:\n", + " # This function takes either float or None and returns either None or a converted temperature\n", + " # Input: Optional[float]\n", + " # Output: Optional[float]\n", + " \n", + " # Sample Input: 5\n", + " # Sample Output: 41.0\n", + " \n", + " #Your Code here:\n", + " \n", + " if arg is not None:\n", + " return arg * (9/5) + 32\n", + " else:\n", + " return None" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.6" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-functional-programming/your-code/Q1_solution.ipynb b/module-1_labs/lab-functional-programming/your-code/Q1_solution.ipynb new file mode 100644 index 0000000..d03db5e --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/Q1_solution.ipynb @@ -0,0 +1,218 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, create a Python function that wraps your previous solution for the Bag of Words lab.\n", + "\n", + "Requirements:\n", + "\n", + "1. Your function should accept the following parameters:\n", + " * `docs` [REQUIRED] - array of document paths.\n", + " * `stop_words` [OPTIONAL] - array of stop words. The default value is an empty array.\n", + "\n", + "1. Your function should return a Python object that contains the following:\n", + " * `bag_of_words` - array of strings of normalized unique words in the corpus.\n", + " * `term_freq` - array of the term-frequency vectors." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "# Import required libraries\n", + "from string import punctuation\n", + "\n", + "# Define function\n", + "def get_bow_from_docs(docs, stop_words=[]):\n", + " # In the function, first define the variables you will use such as `corpus`, `bag_of_words`, and `term_freq`.\n", + " corpus = []\n", + " bag_of_words = []\n", + " term_freq = []\n", + " \n", + " \"\"\"\n", + " Loop `docs` and read the content of each doc into a string in `corpus`.\n", + " Remember to convert the doc content to lowercases and remove punctuation.\n", + " \"\"\"\n", + " for doc in docs:\n", + " f = open(doc, 'r')\n", + " s = f.read()\n", + " s = ''.join(c for c in s if c not in punctuation)\n", + " corpus.append(s.lower())\n", + " f.close()\n", + " \n", + " \"\"\"\n", + " Loop `corpus`. Append the terms in each doc into the `bag_of_words` array. The terms in `bag_of_words` \n", + " should be unique which means before adding each term you need to check if it's already added to the array.\n", + " In addition, check if each term is in the `stop_words` array. Only append the term to `bag_of_words`\n", + " if it is not a stop word.\n", + " \"\"\"\n", + " for s in corpus:\n", + " s = ''.join(c for c in s if c not in punctuation)\n", + " terms = s.split()\n", + " for term in terms:\n", + " if not term in bag_of_words and not term in stop_words:\n", + " bag_of_words.append(term)\n", + " \n", + " \n", + " \"\"\"\n", + " Loop `corpus` again. For each doc string, count the number of occurrences of each term in `bag_of_words`. \n", + " Create an array for each doc's term frequency and append it to `term_freq`.\n", + " \"\"\"\n", + " for s in corpus:\n", + " freq = []\n", + " terms = s.split()\n", + " for word in bag_of_words:\n", + " freq.append(terms.count(word))\n", + " term_freq.append(freq)\n", + " \n", + " # Now return your output as an object\n", + " return {\n", + " \"bag_of_words\": bag_of_words,\n", + " \"term_freq\": term_freq\n", + " }\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Test your function without stop words. You should see the output like below:\n", + "\n", + "```{'bag_of_words': ['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at'], 'term_freq': [[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]}```" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'bag_of_words': ['ironhack', 'is', 'cool', 'i', 'love', 'am', 'a', 'student', 'at'], 'term_freq': [[1, 1, 1, 0, 0, 0, 0, 0, 0], [1, 0, 0, 1, 1, 0, 0, 0, 0], [1, 0, 0, 1, 0, 1, 1, 1, 1]]}\n" + ] + } + ], + "source": [ + "bow = get_bow_from_docs([\n", + " '../../lab-bag-of-words/your-code/doc1.txt', \n", + " '../../lab-bag-of-words/your-code/doc2.txt', \n", + " '../../lab-bag-of-words/your-code/doc3.txt'])\n", + "\n", + "print(bow)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If your attempt above is successful, nice work done!\n", + "\n", + "Now test your function again with the stop words. In the previous lab we defined the stop words in a large array. In this lab, we'll import the stop words from Scikit-Learn." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "frozenset({'by', 'hereupon', 'had', 'so', 'one', 'front', 'her', 'therefore', 'call', 'throughout', 'already', 'whoever', 'i', 'none', 'than', 'besides', 'can', 'twenty', 'third', 'mill', 'all', 'below', 'next', 'cannot', 'mostly', 'your', 'would', 'everyone', 'wherever', 'con', 'afterwards', 'becoming', 'to', 'if', 'get', 'moreover', 'noone', 'neither', 'somewhere', 'mine', 'latterly', 'be', 'therein', 'around', 'thin', 'along', 'across', 'part', 'twelve', 'each', 'take', 'us', 'whose', 'least', 'do', 'still', 'amount', 'too', 'a', 'seeming', 'show', 'otherwise', 'see', 'sincere', 'yours', 'before', 'not', 'keep', 'down', 'serious', 'indeed', 'in', 'thereafter', 'here', 'or', 'toward', 'as', 'no', 'couldnt', 'ltd', 'alone', 'of', 'through', 'made', 'upon', 'go', 'top', 'is', 'since', 'and', 'ourselves', 'at', 'something', 'him', 'same', 'some', 'yourselves', 'off', 'could', 'between', 'must', 'every', 'he', 'nobody', 'thence', 'several', 'ever', 'for', 'sometimes', 'who', 'via', 'against', 'has', 'another', 'my', 'bottom', 'am', 'seem', 'anyhow', 'hasnt', 'himself', 'until', 'per', 'yourself', 'over', 'have', 'cry', 'up', 'rather', 'namely', 'within', 'however', 'meanwhile', 'ten', 'the', 'anyway', 'yet', 'were', 'others', 'when', 'forty', 'perhaps', 'five', 'etc', 'though', 'hence', 'whereby', 'thru', 'became', 'such', 'seemed', 'now', 'any', 'never', 'side', 'eleven', 'then', 'formerly', 'whither', 'well', 'ours', 'because', 'else', 'often', 'ie', 'please', 'amongst', 'fifteen', 'which', 'beyond', 'how', 'few', 'enough', 'its', 'two', 'four', 'very', 'while', 'de', 'eight', 'former', 'anywhere', 'fill', 'into', 'name', 'last', 'put', 'even', 'first', 'anything', 'me', 'except', 'hundred', 'above', 'nowhere', 'nevertheless', 'both', 'been', 'somehow', 'thus', 'itself', 'under', 'whence', 'whatever', 'may', 'out', 'onto', 'during', 'whenever', 'together', 'although', 'sometime', 'this', 'always', 'move', 'six', 'whereupon', 'own', 'an', 'that', 'becomes', 'due', 'inc', 'whereafter', 'everything', 'whole', 'fifty', 'further', 'someone', 'bill', 'seems', 'interest', 'where', 'themselves', 'thereby', 'nor', 'more', 'we', 'hers', 'anyone', 'full', 'it', 'also', 'much', 'beforehand', 'nothing', 'less', 'most', 'after', 'she', 'from', 'nine', 'there', 'hereby', 'his', 'give', 'about', 'wherein', 'describe', 'should', 'might', 'on', 'being', 'eg', 'cant', 'those', 'are', 'back', 'latter', 'almost', 'whereas', 'among', 'empty', 'hereafter', 'un', 'myself', 'detail', 'elsewhere', 'these', 'find', 'many', 'three', 'again', 'will', 'our', 'system', 'found', 're', 'what', 'was', 'become', 'towards', 'fire', 'thick', 'without', 'other', 'sixty', 'whether', 'done', 'either', 'they', 'whom', 'co', 'with', 'thereupon', 'amoungst', 'behind', 'you', 'beside', 'herself', 'their', 'once', 'only', 'but', 'why', 'them', 'herein', 'everywhere'})\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction import stop_words\n", + "print(stop_words.ENGLISH_STOP_WORDS)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You should have seen a large list of words that looks like:\n", + "\n", + "```frozenset({'across', 'mine', 'cannot', ...})```\n", + "\n", + "`frozenset` is a type of Python object that is immutable. In this lab you can use it just like an array without conversion." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, test your function with supplying `stop_words.ENGLISH_STOP_WORDS` as the second parameter." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'bag_of_words': ['ironhack', 'cool', 'love', 'student'], 'term_freq': [[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]}\n" + ] + } + ], + "source": [ + "bow = get_bow_from_docs([\n", + " '../../lab-bag-of-words/your-code/doc1.txt', \n", + " '../../lab-bag-of-words/your-code/doc2.txt', \n", + " '../../lab-bag-of-words/your-code/doc3.txt'],\n", + " stop_words.ENGLISH_STOP_WORDS\n", + ")\n", + "\n", + "print(bow)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "You should have seen:\n", + "\n", + "```{'bag_of_words': ['ironhack', 'cool', 'love', 'student'], 'term_freq': [[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]}```" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1_labs/lab-functional-programming/your-code/Q2_solution.ipynb b/module-1_labs/lab-functional-programming/your-code/Q2_solution.ipynb new file mode 100644 index 0000000..16464d6 --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/Q2_solution.ipynb @@ -0,0 +1,178 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now we want to enhance the `get_bow_from_docs` function so that it will work with HTML webpages. In HTML, there are a lot of messy codes such as HTML tags, Javascripts, [unicodes](https://www.w3schools.com/charsets/ref_utf_misc_symbols.asp) that will mess up your bag of words. We need to clean up those junk before generating BoW.\n", + "\n", + "Next, what you will do is to define several new functions each of which is specialized to clean up the HTML codes in one aspect. For instance, you can have a `strip_html_tags` function to remove all HTML tags, a `remove_punctuation` function to remove all punctuation, a `to_lower_case` function to convert string to lowercase, and a `remove_unicode` function to remove all unicodes.\n", + "\n", + "Then in your `get_bow_from_doc` function, you will call each of those functions you created to clean up the HTML before you generate the corpus.\n", + "\n", + "Note: Please use Python string operations and regular expression only in this lab. Do not use extra libraries such as `beautifulsoup` because otherwise you loose the purpose of practicing." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# Define your string handling functions below\n", + "# Minimal 3 functions\n", + "\n", + "import re\n", + "def strip_html_tags(html):\n", + " s = re.sub(\"\", \"\", html)\n", + " s = re.sub(\"<.*?>\", \"\", s)\n", + " return(s)\n", + "\n", + "from string import punctuation\n", + "def remove_punctuation(html):\n", + " s = ''.join(c for c in html if c not in punctuation)\n", + " return(s)\n", + "\n", + "def to_lower_case(html):\n", + " return(html.lower())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, paste your previously written `get_bow_from_docs` function below. Call your functions above at the appropriate place." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "def get_bow_from_docs(docs, stop_words=[]):\n", + " # In the function, first define the variables you will use such as `corpus`, `bag_of_words`, and `term_freq`.\n", + " corpus = []\n", + " bag_of_words = []\n", + " term_freq = []\n", + " \n", + " \"\"\"\n", + " Loop `docs` and read the content of each doc into a string in `corpus`.\n", + " Remember to convert the doc content to lowercases and remove punctuation.\n", + " \"\"\"\n", + " for doc in docs:\n", + " f = open(doc, 'r')\n", + " s = f.read()\n", + " s = strip_html_tags(s)\n", + " s = remove_punctuation(s)\n", + " s = to_lower_case(s)\n", + " corpus.append(s)\n", + " f.close()\n", + " \n", + " \"\"\"\n", + " Loop `corpus`. Append the terms in each doc into the `bag_of_words` array. The terms in `bag_of_words` \n", + " should be unique which means before adding each term you need to check if it's already added to the array.\n", + " In addition, check if each term is in the `stop_words` array. Only append the term to `bag_of_words`\n", + " if it is not a stop word.\n", + " \"\"\"\n", + " for s in corpus:\n", + " s = ''.join(c for c in s if c not in punctuation)\n", + " terms = s.split()\n", + " for term in terms:\n", + " if not term in bag_of_words and not term in stop_words:\n", + " bag_of_words.append(term)\n", + " \n", + " \n", + " \"\"\"\n", + " Loop `corpus` again. For each doc string, count the number of occurrences of each term in `bag_of_words`. \n", + " Create an array for each doc's term frequency and append it to `term_freq`.\n", + " \"\"\"\n", + " for s in corpus:\n", + " freq = []\n", + " terms = s.split()\n", + " for word in bag_of_words:\n", + " freq.append(terms.count(word))\n", + " term_freq.append(freq)\n", + " \n", + " # Now return your output as an object\n", + " return({\n", + " \"bag_of_words\": bag_of_words,\n", + " \"term_freq\": term_freq\n", + " })\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, read the content from the three HTML webpages in the `your-codes` directory to test your function." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'bag_of_words': ['ironhack', 'reviews', 'course', 'reporttry', 'typekitload', 'catche', 'javascriptincludetag', 'ossmaxcdncomlibshtml5shiv370html5shivjs', 'ossmaxcdncomlibsrespondjs142respondminjstoggle', 'navigationbrowse', 'schoolsfullstack', 'web', 'developmentmobile', 'developmentfrontend', 'developmentdata', 'scienceux', 'designdigital', 'marketingproduct', 'managementsecurityotherblogadviceultimate', 'guide', 'choosing', 'schoolbest', 'coding', 'bootcampsbest', 'data', 'sciencebest', 'uiux', 'designbest', 'cybersecuritywrite', 'reviewsign', 'inironhackamsterdam', 'barcelona', 'berlin', 'madrid', 'mexico', 'city', 'miami', 'paris', 'sao', 'pauloironhackironhackavg', 'rating489', '596', 'aboutcoursesreviewsnewscontact', 'alex', 'williams', 'ironhackaboutaboutironhack', '9week', 'fulltime', '24week', 'parttime', 'development', 'uxui', 'design', 'bootcamp', 'florida', 'spain', 'france', 'germany', 'uses', 'customized', 'approach', 'education', 'allowing', 'students', 'shape', 'experience', 'based', 'personal', 'goals', 'admissions', 'process', 'includes', 'submitting', 'written', 'application', 'interview', 'technical', 'graduate', 'skilled', 'technologies', 'like', 'javascript', 'html5', 'css3', 'program', 'covers', 'thinking', 'photoshop', 'sketch', 'balsamiq', 'invision', 'help', 'navigating', 'career', 'prep', 'enhancing', 'digital', 'brand', 'presence', 'networking', 'opportunities', 'chance', 'delve', 'tech', 'community', 'events', 'workshops', 'meetups', '1000', 'graduates', 'extensive', 'global', 'network', 'alumni', 'partner', 'companies', 'wellpositioned', 'job', 'developer', 'designer', 'graduation', 'access', 'services', 'prepare', 'search', 'facilitating', 'interviews', 'citys', 'local', 'ecosystem', 'recent', 'rating', '489from', 'nurse', 'months100', 'recomendablefun', 'great', 'afterall', '→recent', 'newswebinar', 'bootcamphow', 'dafne', 'ironhackhow', 'land', 'spainread', '23', 'articles', '→coursescoursesdata', 'analytics', 'fulltimeapplymysql', 'science', 'git', 'r', 'python', 'machine', 'learning', 'structuresin', 'personstart', 'date', 'scheduledcostnaclass', 'sizenalocationmadridthis', 'enables', 'fledged', 'analyst', '9', 'weeks', 'develop', 'practical', 'skills', 'useful', 'industry', 'rampup', 'prework', 'learn', 'intermediate', 'topics', 'using', 'pandas', 'engineering', 'create', 'real', 'datasets', 'you39ll', 'use', 'business', 'intelligence', 'doing', 'projects', 'combining', 'programming', 'ironhack39s', 'meant', 'secure', 'spot', 'important', 'skill', 'away', 'ability', 'technology', 'fastmoving', 'everchanging', 'financingdeposit750€getting', 'inminimum', 'levelbasic', 'knowledgeprep', 'work4050', 'hours', 'online', 'content', 'complete', 'order', 'reach', 'required', 'level', 'moduleplacement', 'testyesinterviewyes', 'context', 'httpschemaorg', 'type', 'description', 'provider', 'localbusiness', 'sameas', 'httpwwwironhackcomenutmsourcecoursereportamputmmediumschoolpage', 'fulltimeapplyhtml', 'user', 'cssin', 'personfull', 'time50', 'hoursweek9', 'start', 'january', '7', '2019cost6500class', 'size16locationmiami', 'berlinthis', '8', 'week', 'immersive', 'catered', 'beginners', 'previous', 'taught', 'fundamentals', 'centered', 'validate', 'ideas', 'research', 'rapid', 'prototyping', 'amp', 'heuristic', 'evaluation', 'end', 'capstone', 'project', 'new', 'product', 'idea', 'validation', 'launch', 'ready', 'ux', 'freelance', 'turbo', 'charge', 'current', 'professional', 'trajectory', 'financingdepositnagetting', 'levelnoneprep', 'workthe', '40', 'selfguided', 'understand', 'basic', 'concepts', 'make', 'works', 'flintoplacement', 'parttimeapplydesign', 'management', 'personpart', 'time16', 'hoursweek26', 'november', '13', '2018cost7500class', 'size20locationmiami', 'berlinthe', 'meets', 'tuesdays', 'thursdays', 'saturdays', 'additional', 'coursework', 'period', '6', 'months', 'financingdeposit750€', '9000mxnfinancingfinancing', 'options', 'available', 'competitive', 'rates', 'fund', 'climb', 'creditgetting', 'algorithms', 'notions', 'object', 'oriented', 'programmingprep', 'beginsplacement', 'fulltimeapplyin', 'october', '29', '2018costnaclass', 'sizenalocationamsterdam', 'build', 'stack', 'applications', 'big', 'emphasis', 'battletested', 'patterns', 'best', 'practices', 'evaluate', 'problem', 'select', 'optimal', 'solution', 'languageframework', 'suited', 'project’s', 'scope', 'addition', 'train', 'think', 'programmer', 'deconstruct', 'complex', 'problems', 'break', 'smaller', 'modules', 'good', 'general', 'understanding', 'various', 'languages', 'understands', 'fundamental', 'structure', 'possesses', 'language', 'requiredfinancingdeposit1000financingmonthly', 'instalments', '12', '24', '36', 'quotandascholarship1000', 'scholarship', 'womengetting', 'testyesinterviewyesmore', 'dates', '2018', '14', '2019', 'march', '25', 'barcelonaapply', '1', 'parttimeapplyangularjs', 'mongodb', 'html', 'expressjs', 'nodejs', 'endin', 'time13', 'hoursweek24', '15', '2019cost12000class', 'sizenalocationmiami', 'requiredfinancingdeposit1000getting', 'reviewsironhack', 'reviewswrite', 'review596', 'sorted', 'bydefault', 'sortdefault', 'sortmost', 'recentmost', 'helpful1filtered', 'byall', 'reviewsall', 'reviewsanonymousverifiedcampusesmadridmadridmiamimexico', 'citymiamibarcelonaberlinpariscoursesweb', 'fulltimeuxui', 'fulltimeweb', 'parttimereview', 'guidelinesonly', 'applicants', 'permitted', 'leave', 'reportpost', 'clear', 'valuable', 'honest', 'information', 'informative', 'future', 'bootcampers', 'excelled', 'betterbe', 'nice', 'dont', 'attack', 'othersuse', 'grammar', 'check', 'spellingdont', 'post', 'behalf', 'impersonate', 'person', 'falsely', 'state', 'misrepresent', 'affiliation', 'entitydont', 'spam', 'fake', 'intended', 'boost', 'lower', 'ratingsdont', 'link', 'sexually', 'explicitdont', 'abusive', 'hateful', 'threatens', 'harasses', 'othersplease', 'submit', 'duplicate', 'multiple', 'deleted', 'email', 'moderators', 'revise', 'review', 'click', 'receive', 'reviewplease', 'note', 'reserve', 'right', 'remove', 'commentary', 'violates', 'policiesyou', 'log', 'reviewclick', 'herenbspto', 'sign', 'continuehey', '11116', 'hack', 'reactor', 'graduated', 'prior', '2016', 'reactortitletitledescriptiondescription', 'ratingoverall', 'experiencecurriculuminstructorsjob', 'assistancenot', 'applicableschool', 'detailscampusselect', 'campus', 'amsterdam', 'paulo', 'othercourseselect', 'school', 'affiliationschool', 'student', 'applicantgraduation', 'month', 'february', 'april', 'june', 'july', 'august', 'september', 'december', 'year', '2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2017', '2020', '2021', '2022', '2023', 'otherotherabout', 'younamereview', 'anonymouslynonanonymous', 'verified', 'trustworthy', 'anonymous', 'shown', 'readers', 'lastreviewer', 'titleyou', 'continueironhackfrom', 'months10252018maria', 'luisa', '•', 'linkedinfrom', 'monthsoverall', 'assistance', 'wanted', 'turn', 'life', 'liked', 'maybe', 'fear', 'did', 'luckily', 'got', 'changed', 'methodology', 'way', 'teaching', 'makes', '0', '100', 'record', 'time', 'recommend', 'doubt', 'helpful0flag', 'inappropriateironhack100', 'recomendable10252018nicolae', 'alexe', 'linkedin100', 'recomendableoverall', 'assistanceiam', 'senior', 'computer', 'degree', 'iwas', 'feeling', 'missing', 'academic', 'contact', 'heard', 'knew', 'needed', 'completely', 'day', 'atmosphere', 'amazing', 'lead', 'teacher', 'key', 'elements', 'tas', 'supports', 'inappropriateironhackfun', 'after10252018gabriel', 'cebrián', 'lucas', 'githubfun', 'afteroverall', 'assistancei', 'came', 'look', 'loved', 'studied', 'learnt', 'somwthing', 'really', 'fun', 'recomend', 'inappropriateironhackfrom', 'developer10252018jacob', 'casado', 'pérez', 'junior', 'fullstack', 'developeroverall', 'assistancewhen', 'going', 'music', 'linking', 'change', 'blink', 'eye', 'decided', 'world', 'reason', 'background', 'desire', 'improve', 'little', 'grew', 'able', 'overcome', 'challenges', 'thought', 'possible', 'enormous', 'support', 'assistants', 'colleges', 'friends', 'difficult', 'inappropriateironhacknew', 'learning10252018esperanza', 'linkedinnew', 'learningoverall', 'assistancethis', 'total', 'totally', 'possibilities', 'disciplines', 'challenge', 'absolutely', 'repeat', 'quality', 'uncompareable', 'worked', 'biomedical', 'just', 'looking', 'style', 'inappropriateironhackironhack', 'doesn39t', 'teach', 'code', 'teaches', 'developer10252018ruben', 'linkedinironhack', 'psychology', 'technician', 'assistant', 'intense', 'enriching', 'curve', 'verticle', 'upwards', 'started', 'im', 'amazed', 'know', 'simulates', 'perfectly', 'working', 'environment', 'teams', 'tools', 'resolve', 'virtual', 'profesional', 'visited', 'tuenti', 'spanish', 'company', 'understood', 'talking', 'doesnt', 'helps', 'discover', 'want', 'work', 'definetly', 'say', 'coder', 'inappropriateironhackabout', 'experince10252018pablo', 'tabaoda', 'ortiz', 'linkedinabout', 'experinceoverall', 'talk', 'completing', 'feel', 'impressed', 'facilities', 'teachers', 'fully', 'recommendation', 'professionals', 'renew', 'people', 'trying', 'inappropriateironhackweb', 'dev10252018ricardo', 'alonzo', 'linkedinweb', 'devoverall', 'assistanceironhack', 'perfect', 'opens', 'doors', 'trully', 'impresive', 'short', 'inappropriateironhackan', 'awesome', 'kickstart', 'carreer10252018jhon', 'scarzo', 'linkedinan', 'carreeroverall', 'assistanceat', 'goal', 'basics', 'core', 'provide', 'wellrounded', 'incentivize', 'inappropriateironhackreally', 'cool', 'bootcamp10252018sara', 'linkedinreally', 'bootcampoverall', 'motivated', 'things', 'thanks', 'integrated', 'knowledge', 'powerful', 'creating', '3', 'different', 'enjoying', 'disposed', 'recommendable', 'inappropriateironhackchange', '2', 'months10222018yago', 'vega', 'linkedinchange', 'assistanceits', 'hard', 'word', 'experienced', '4', 'commitment', 'ironhacks', 'bootcamps', 'ive', 'met', 'learned', 'glad', 'matter', 'come', 'havent', 'read', 'single', 'line', 'decision', 'worth', 'penny', 'angular5react', 'rollercoaster', 'emotions', 'lot', 'today', 'officially', 'wouldnt', 'browsing', 'educational', 'stop', 'trust', 'join', 'ironhackers', 'connected', 'helping', 'everyday', 'incredible', 'experience10222018diego', 'méndez', 'peño', 'experienceoverall', 'assistancecoming', 'university', 'exceeded', 'expectations', 'it’s', 'gave', 'prepared', 'techenthusiast', 'inappropriateironhackhow', 'live', 'weeks10222018teo', 'diaz', 'linkedinhow', 'weeksoverall', 'usual', 'belong', 'family', 'colleagues', 'finishing', 'realized', 'enter', 'guarantee', 'inappropriateironhackbest', 'ever10202018ronald', 'ricardo', 'linkedinbest', 'everoverall', 'assistanceand', 'yes', 'went', 'traditional', 'ended', 'saw', 'organization', 'cares', 'employees', 'clients', 'run', 'ask', 'attending', 'tell', 'happy', 'included', 'culture', 'established', 'weekly', 'surveys', 'aim', 'gathering', 'feedback', 'regularly', 'shows', 'care', 'highly', 'regarded', 'personalble', 'helpfulguiding', 'financial', 'aid', 'processing', 'jessica', 'instrumental', 'guiding', 'newly', 'registered', 'foot', 'questions', 'answered', 'begins', 'freestanding', 'david', 'fast', 'karen', 'lum', 'strong', 'instructors', 'progress', 'continuing', 'journey', 'unavoidable', 'topping', 'daniel', 'brito', 'maniacal', 'drive', 'grads', 'necessary', 'employment', 'resources', 'expect', 'fail', 'helpful1flag', 'inappropriateironhacka', 'unique', 'oportunity10182018montserrat', 'monroy', 'linkedina', 'oportunityoverall', 'assistanceduring', 'trip', 'area', 'option', 'abilities', 'materialize', 'solve', 'coordinated', 'effort', 'accompanying', 'sharing', 'achievements', 'lived', 'generating', 'gratitude', 'respect', 'accompanied', 'study', 'smile', 'kind', 'words', 'helped', 'processes', 'administrative', 'inappropriateironhackgreat', 'decision10182018maria', 'fernanda', 'quezada', 'githubgreat', 'decisionoverall', 'assistancebefore', 'deciding', 'signing', 'researched', 'boot', 'camps', 'curriculum', 'attracted', 'latest', 'staff', 'helpful', 'communicative', 'knowledgeable', 'classroom', 'high', 'respectful', 'eager', 'overall', 'impacted', 'continue', 'growing', 'helpful2flag', 'inappropriateironhackmy', 'favorite', 'till', 'now10172018salemm', 'linkedinmy', 'nowoverall', 'assistanceone', 'experiences', 'wrapped', 'sense', 'values', 'worldwide', 'ever10172018juliet', 'urbina', 'considered', 'carefully', 'dev', 'ride', 'regret', 'sooner', 'challenging', 'guidance', 'encouragement', 'readily', 'accomplishment', 'essential', 'opened', 'door', 'honestly', 'structured', 'importantly', 'ever10162018pablo', 'rezola', 'recently', 'completed', 'expand', 'lifestyle', 'better', 'fantastic', 'law', 'beginning', 'warned', 'closest', 'relatives', 'encouraged', 'showed', 'huge', 'importance', 'currently', 'living', 'classmates', 'asking', 'times', 'bad', 'touch', 'definetely', 'pleased', 'aspect', 'ta’s', 'spend', 'intensively', 'long', 'updated', 'firms', 'requisites', 'mean', 'social', 'speeches', 'enrich', 'appetite', 'ever10162018joshua', 'matos', 'assistancemy', 'wished', 'shifted', 'positive', 'small', 'excited', 'holds', 'gaining', 'developers', 'inappropriateironhackmost', 'dev10162018jonathan', 'harris', 'linkedinmost', 'searching', 'stay', 'chose', 'worried', 'reasons', 'easy', 'manage', 'choice', 'case', 'scenario', 'constantly', 'class', 'patience', 'felt', 'possibly', 'wasnt', 'super', 'actually', 'pushed', 'limit', 'breaking', 'maximum', 'camp', 'inappropriateironhackkitchens', 'computers10162018eran', 'usha', 'linkedinkitchens', 'computersoverall', 'seemingly', 'enrolled', 'novels', 'areas', 'assitants', 'special', 'relationship', 'fellow', 'seeing', 'confident', 'entering', 'profession', 'coming', 'hospitality', 'inappropriateironhackvery', 'decision9282018víctor', 'gabriel', 'peguero', 'garcía', 'cofounder', 'leemur', 'app', 'linkedinvery', 'assistancethanks', 'ui', 'improved', 'approached', 'apps', 'years', 'ago', 'designing', 'qualitative', 'improvement', 'dev9282018jose', 'arjona', 'past', 'peaked', 'began', 'taking', 'courses', 'coursesboot', 'ran', 'dive', 'reviewsratings', 'you’re', '95pm', 'including', 'joke', 'invest', 'immediately', 'sent', 'material', 'willing', 'instructor', 'cohort', 'nick', 'downside', 'definitely', 'proficiency', 'subject', 'sandra', 'marcos', 'ian', 'familiar', 'extremely', 'having', 'dedicated', 'struggle', 'theres', 'sure', 'need', 'wont', 'fall', 'tweaking', 'days', 'aside', 'wrong', 'obsolete', 'issues', 'update', 'seen', 'taken', 'steps', 'means', 'seriously', 'brush', 'input', 'rest', 'applied', 'hasn’t', 'missed', 'beat', 'doesn’t', 'try', 'owner', 'respond', 'happily', 'hiring', 'fair', 'acquainted', 'man', 'named', 'advice', 'getting', 'walks', 'building', 'resume', 'linkedin', 'lets', 'attend', 'brings', 'source', 'checking', 'portfolio', 'group', 'showcase', 'youve', 'step', 'event', 'arranges', 'sit', 'introduction', 'eventually', 'didnt', 'ultimately', 'comfortable', 'shouldnt', 'nail', 'hired', 'finding', 'battle', 'placements', 'meetings', 'guides', 'reminds', 'applying', 'slack', 'hunt', 'instantly', 'harder', 'fresh', 'hackerrankcodewars', '300', 'jobs', 'handfuls', 'phone', 'inperson', 'half', 'stopped', 'kept', 'stressful', 'quit', 'conclusion', 'given', 'hand', 'hold', 'invested', 'fulfilling', 'far', 'disappointed', 'bit', 'tons', 'free', 'message', 'gladly', 'answer', 'helpful4flag', 'inappropriateironhackawesome', 'experience9232018alexander', 'teodormazilu', 'linkedinawesome', 'technological', 'base', 'allaround', 'wonderful', 'struggling', 'exceptional', 'manuel', 'colby', 'adrian', 'trouble', 'bugs', 'lost', 'patient', 'extra', 'mile', 'deeply', 'early', 'weekends', 'spending', 'whiteboard', 'grateful', 'professor', 'alan', 'natural', 'aptitude', 'courteous', 'welcoming', 'running', 'scientists', 'types', 'likely', 'explain', 'ways', 'terms', 'complexity', 'memory', 'expected', 'lessons', 'particularly', 'rewarding', 'knack', 'abstract', 'digestible', 'bits', 'collectively', 'attempt', 'protip', 'volunteer', 'presents', 'noticed', 'brave', 'retained', 'walked', 'solid', 'gives', 'marker', 'home', 'house', 'write', 'objectives', 'examples', 'force', 'brain', 'reconcile', 'daily', 'basis', 'certainly', 'theyre', 'frustrating', 'youll', 'counseled', 'counselor', 'downtoearth', 'wisdom', 'share', 'interviewing', 'construct', 'specifically', 'tells', 'accepting', 'offers', 'insight', 'willingness', 'supportive', 'starting', 'thankful', 'humbled', 'opportunity', 'absolute', 'pleasure', 'deal', 'blown', 'hackathon', 'impressive', 'legitimately', 'wish', 'blew', 'mind', 'systematic', 'creativity', 'organized', 'wrap', 'wholeheartedly', 'recommended', '110', 'actively', 'participate', 'engaged', 'attitude', 'lifechanging', 'inappropriate1', '5', 'hellip', 'rsaquo', 'raquo', 'newsnewsour', 'ironhackwebinar', 'bootcamplauren', 'stewart962018ironhacknew', 'york', 'academyfullstack', 'academydid', 'switch', 'careers', 'hourlong', 'webinar', 'talked', 'panel', 'academy', 'hear', 'balanced', 'commitments', 'plus', 'audience', '–', 'rewatch', 'herecontinue', 'reading', 'rarrhow', 'ironhackimogen', 'crispe8132018ironhack', 'dipping', 'toes', 'graphic', 'finance', 'entrepreneurship', 'olca', 'tried', 'enroll', 'ironhack’s', 'english', 'satisfying', 'everis', 'european', 'consulting', 'firm', 'qampa', 'what’s', 'path', 'diverse', 'i’m', 'originally', 'austria', 'bachelor’s', 'multimedia', 'london', 'honolulu', 'video', 'production', 'imagined', 'mba', 'vienna', 'san', 'diego', 'increase', 'bored', 'figure', 'interested', 'focused', 'internet', 'enjoyed', 'researching', 'philosophical', 'aspects', 'direction', 'heading', 'told', 'sounded', 'intimidating', 'realize', 'that’s', 'exactly', 'won’t', 'goes', 'handinhand', 'personality', 'love', 'you’ve', 'traveled', 'choose', 'college', 'wasn’t', 'beginner', 'fullon', 'talented', 'field', 'moved', 'fell', 'confirmed', 'startup', 'scene', 'i’d', 'flexibility', 'remotely', 'allow', 'genuinely', 'pursuing', 'passing', 'exercises', 'passed', 'accepted', 'tough', 'split', 'module', 'pretty', 'doable', 'second', 'final', 'angular', 'framework', 'demanding', '9am', '6pm', 'don’t', 'remember', 'finished', 'quite', '30', 'lectures', 'character', 'frustrations', 'overcoming', 'i’ve', '18', 'straight', 'oldest', 'guy', 'late', '40s', 'average', 'somebody', 'international', '22', 'europeans', 'latin', 'americans', 'built', 'created', 'game', 'blackjack', 'accomplished', 'capable', 'clueless', 'didn’t', 'believe', 'hunting', 'soon', 'guarantees', '20', 'recruiters', 'quick', 'sonia', 'adviser', 'landed', 'milk', 'caring', 'congrats', 'contacted', 'active', 'reaching', 'replied', 'office', 'called', 'shortly', 'received', 'offer', 'exhausted', 'graduating', 'took', 'holidays', 'consultancy', 'typescript', 'purely', 'organizations', 'apply', 'governmental', 'loans', 'team', 'zaragoza', 'manager', 'brussels', 'belgium', 'we’re', '3000', 'branches', 'genderbalanced', 'covered', 'evolving', 'haven’t', 'frameworks', 'provided', 'easily', 'inevitably', 'joined', 'grown', 'frontend', 'independent', 'afraid', 'touching', 'developed', 'passion', 'weird', 'sounds', 'enjoy', 'solving', 'academia', 'regretted', 'trends', 'client', 'implementing', 'logic', 'functions', 'corporation', 'biggest', 'roadblock', 'stuck', 'frustrated', 'block', 'logically', 'calm', 'results', 'stayed', 'involved', 'left', 'gotten', 'cohorts', 'we’ve', 'tight', 'hosts', 'prioritize', 'making', 'aware', 'mental', 'limits', 'you’ll', 'stupid', 'master', 'ahead', 'report', 'website', 'authorimogen', 'writer', 'producer', 'whonbsploves', 'writing', 'educationnbspher', 'journalism', 'newspapers', 'news', 'websites', 'england', 'dubai', 'zealand', 'lives', 'brooklyn', 'ny', 'spainlauren', 'stewart5212018ironhackdemand', 'designers', 'limited', 'silicon', 'valley', 'realizing', 'cities', 'known', 'architectural', 'hubs', 'sofía', 'dalponte', 'demand', 'outcomes', 'joana', 'cahner', 'supported', 'market', 'hot', 'sort', 'tips', 'jobcontinue', 'rarrcampus', 'spotlight', 'berlinlauren', 'stewart3122018ironhack', '“berlin', 'proving', 'ecosystem”', 'campuses', 'launching', 'advantage', 'spoke', 'emea', 'expansion', 'alvaro', 'rojas', 'wework', 'space', 'recruiting', 'lots', 'partners', 'grad', 'whats', 'strategy', 'strategic', 'startups', 'california', 'embassy', 'los', 'angeles', 'launched', 'venture', 'company’s', 'mission', 'stories', 'youre', 'backgrounds', 'gonzalo', 'manrique', 'cofounders', 'europe', 'middle', 'eastern', 'africa', 'position', 'nobrainer', 'pick', 'everybody', 'literate', 'planning', 'require', 'software', 'regardless', 'machines', 'dominate', 'speak', 'perspective', 'easier', 'benefits', 'prospective', 'thing', 'alum', 'role', 'vp', 'ops', 'berriche', 'plan', 'rank', 'according', 'factors', 'determinants', 'success', 'finally', 'clearly', 'set', 'main', 'responsible', 'operations', 'hr', 'setting', 'legal', 'entity', 'securing', 'financing', 'dream', 'marketing', 'tailor', 'customer', 'segments', 'awareness', 'value', 'proposition', 'they’re', 'convinced', 'focus', 'strongly', 'partnering', 'n26', 'moberries', 'launches', '21', 'stood', 'place', 'present', 'strongest', 'ecosystems', 'largest', 'thats', 'quarter', 'crazy', '2000', '2500', 'disruptive', 'booming', 'attract', 'retain', 'flocking', 'there’s', 'plenty', 'gap', 'older', 'digitalization', 'mckinsey', 'released', 'saying', '100000', 'point', 'pay', 'fouryear', 'universities', 'cater', 'believes', 'private', 'public', 'failing', 'adapt', 'revolution', 'age', 'requires', 'provides', 'highimpact', 'condensed', 'objective', 'zero', 'programs', 'providing', 'channels', 'stand', 'competition', 'laserfocused', 'enabling', 'achieve', 'employable', 'ensure', 'employers', 'hire', 'realworld', 'behavioral', 'they’ve', 'giving', 'organizing', 'meet', 'changers', 'possibility', 'specialize', 'realizes', 'does', 'accommodate', 'starts', 'bigger', 'moving', 'forward', 'grow', 'number', 'ensuring', 'ratio', 'hes', 'knows', 'leads', 'example', 'gone', 'play', 'incredibly', 'divided', 'css', 'backend', 'microservices', 'api’s', 'ruby', 'rails', 'consistent', 'allows', 'loop', 'sticking', 'iterate', 'located', 'coworking', 'atrium', 'tower', 'potsdamer', 'platz', 'room', 'accessible', 'town', 'central', 'location', 'terrace', 'amenities', 'coffee', 'snacks', 'views', 'envision', 'landing', 'reputation', 'signed', 'mobile', 'bank', 'talks', 'nineweek', 'said', 'weve', 'google', 'twitter', 'visa', 'rocket', 'magic', 'leap', 'profiles', 'partnerships', 'pool', 'locally', 'entrylevel', 'staying', 'communities', 'resumes', 'berlinbased', 'decide', 'abroad', 'arise', 'wrote', 'blog', 'piece', 'mingle', 'bunch', 'informal', 'workshop', 'whos', 'considering', 'form', 'scared', 'tendency', 'resistant', 'encourage', 'feet', 'wet', 'programmers', 'faith', 'commit', '90', 'placement', 'rate', 'rigorous', 'majority', 'succeed', 'authorlauren', 'communications', 'strategist', 'loves', 'passionate', 'techonology', 'arts', 'careeryouth', 'affairsnbspand', 'philanthropynbspshe', 'richmond', 'va', 'resides', 'ca', 'podcastimogen', 'crispe1312018revaturegeneral', 'assemblyelewa', 'educationholberton', 'schoolflatiron', 'schoolbloceditandelaironhackgalvanizecoding', 'dojothinkfulred', 'academyorigin', 'academyhackbright', 'academycoder', 'campsmuktek', 'academywelcome', 'roundup', 'busy', 'published', 'demographics', 'promising', 'diversity', 'significant', 'fundraising', 'announcement', 'journalists', 'exploring', 'apprenticeship', 'versus', 'we’ll', 'newest', 'schools', 'posts', 'listen', 'podcast', 'lauren', 'stewart1242017ironhack', 'alexandre', 'continually', 'connect', 'drew', 'equity', 'jumiaa', 'african', 'amazon', 'head', 'north', 'managing', 'director', 'tunisiai', 'ariel', 'founders', 'inspired', 'vision', 'attended', 'potential', 'model', 'america', 'keen', 'impact', 'people’s', 'receptive', 'conversation', 'fit', 'markets', 'open', 'preparation', 'consider', 'human', 'gm', 'convince', 'scratch', 'leverage', 'relations', 'integrate', 'administration', 'leaders', 'globally', 'opening', 'estimated', 'deficit', '150000', 'generation', 'attractive', 'preferred', 'entry', 'facebook', 'multinationals', 'maturing', 'significantly', 'vc’s', 'accelerators', 'builders', 'friendly', 'penetrate', 'competitors', 'obviously', 'ties', 'excite', 'pop', 'operate', 'standards', 'bringing', 'raising', 'large', 'ibm', 'satisfaction', 'operating', 'continued', 'methods', 'offices', 'insurgentes', 'alongside', 'dynamic', 'exciting', 'colonia', 'napoles', 'district', 'rooms', 'x', 'classes', 'rolling', 'quantitative', 'accept', 'selective', 'worker', 'money', 'intensive', 'collect', 'can’t', 'scale', 'efficiently', 'loops', 'specificities', 'instance', 'seven', '10', 'grows', 'linio', 'tip', 'mexican', 'invited', 'talent', 'produce', 'targeting', 'guadalajara', 'monterrey', 'entrepreneurs', 'focuses', 'ambitions', 'iron', 'normal', 'unless', 'meetup', 'suggestions', 'fullday', '9th', 'lifetime', 'changing', 'download', 'page', 'motivations', 'committed', 'comments', 'center', 'sweepstakes', 'winner', 'luis', 'nagel', 'ironhacklauren', 'stewart892017ironhack', 'entered', 'win', '500', 'gift', 'card', 'leaving', 'lucky', 'caught', 'advertising', 'title', 'devialab', 'agency', 'mainly', 'close', 'entrepreneur', 'agenda', 'offered', 'visit', 'crispe812017georgia', 'campsthe', 'yarddev', 'bootcampup', 'academyusc', 'viterbi', 'campcovalencedeltav', 'schoolsouthern', 'institutelaunch', 'academyse', 'factorywethinkcodedevtree', 'academyironhackunit', 'factorytk2', 'academymetiscode', 'platooncodeupcoding', 'dojouniversity', 'campsthinkfuluniversity', 'minnesota', 'campshackbright', 'academyuniversity', 'summary', 'developments', 'closure', 'major', 'dived', 'reports', 'investments', 'initiatives', 'round', 'worldcontinue', 'parislauren', 'stewart5262017ironhack', 'locations', 'françois', 'fillette', '26th', 'successful', 'dimensions', 'related', 'aplayers', 'docs', 'tremendously', 'francisco', 'codingame', 'vc', 'embraced', 'execute', 'couple', 'later', 'happier', 'wake', 'morning', 'motivation', 'funding', '2nd', 'exponentially', 'station', 'f', 'xavier', 'niel', 'incubator', 'growth', 'fueled', 'increasing', 'economy', 'shortage', 'filled', 'players', 'targets', 'appeared', 'apart', 'dedicate', '6070', 'handson', 'reallife', 'submitted', 'startupbusiness', 'coaching', 'connections', 'companiesstartups', 'let’s', 'discuss', 'neighborhood', 'arrondissement', 'near', 'opera', 'metro', 'lines', 'bus', 'bikesharing', 'stations', 'carsharing', '247', 'magnificent', 'patio', 'meetingworking', 'assignments', 'tracks', 'ones', 'chosen', 'popular', 'relevant', 'expertise', 'mentors', 'focusing', 'integrating', 'ex', 'react', 'meteor', 'industries', 'rising', 'media', 'entertainment', 'andor', 'agencies', 'he’ll', 'assisted', 'ta', '1520', 'coach', 'session', 'sponsored', 'florian', 'jourda', '1st', 'engineer', 'box', 'scaled', 'spent', 'chief', 'officer', 'bayes', 'ngo', 'funded', 'unemployment', 'usually', 'monitoring', 'operational', 'execution', 'recruit', 'question', 'depends', '50', '70', 'transparent', 'dedicating', 'similar', 'miami’s', 'difference', 'rooftop', '8th', 'floor', 'organize', 'lunches', 'approaching', 'employer', 'realities', 'needs', 'partnered', 'drivy', 'leader', 'peertopeer', 'car', 'rental', 'jumia', 'equivalent', 'east', 'stootie', 'kima', 'ventures', '400', 'series', 'd', 'accomplish', 'corporations', 'telecommediatechnology', 'mastering', 'volumes', 'enthusiasm', 'expressed', 'they’ll', 'metrics', '5060', 'employee', 'hacker', '2030', 'freelancers', 'remote', 'constant', 'interaction', 'wants', 'intro', 'openclassrooms', 'codecademy', 'codecombat', 'numa', 'outstanding', 'specific', 'topic', 'apprehended', 'thoughts', 'you’d', 'exists', 'send', 'parisironhackcom', 'seats', '4th', 'typeform', 'episode', 'crispe7222017the', 'bootcampgreen', 'fox', 'academyrevaturegrand', 'circusacclaim', 'educationgeneral', 'assemblyplaycraftingironhackuniversity', 'arizona', 'campsgalvanizehack', 'reactortech901big', 'sky', 'academycoding', 'dojoumass', 'amherst', 'campaustin', 'educationcode', 'chrysalisdeep', 'codingunh', 'campqueens', 'academyzip', 'wilmingtondev', 'academycodemissed', 'collected', 'handy', 'reporting', 'scholarships', 'added', 'interesting', 'directory', 'podcastcontinue', 'rarryour', 'learntocode', 'year’s', 'resolutionlauren', 'stewart12302016dev', 'bootcampcodesmithv', 'schoolleveldavinci', 'codersgrace', 'hopper', 'programgeneral', 'assemblyclaim', 'academyflatiron', 'schoolwe', 'itironhackmetisbov', 'academyhack', 'reactordesignlabthe', 'nltech', 'elevatorthinkfullearningfuzered', 'academygrowthx', 'academystartup', 'institutewyncodefullstack', 'academyturntotechcoding', 'templeit’s', 'reflect', 'store', 'certain', 'unmet', 'bet', '30day', 'github', 'streak', 'cheers', 'resolutions', 'list', 'plunge', 'cross', 'compiled', 'stellar', 'offering', 'dish', 'aspiring', 'coders', 'youcontinue', 'rarrdecember', 'roundupimogen', 'crispe12292016dev', 'bootcampcoding', 'houserevaturefounders', 'codersasi', 'sciencegeneral', 'assemblylabsiotopen', 'cloud', 'academyhackeryouflatiron', 'schooleleven', 'academy42the', 'firehose', 'projectironhacksoftware', 'guildgalvanizehack', 'reactorcodingnomadsupscale', 'dojothinkfulnyc', 'epitechorigin', 'academykeepcoding', 'academyuc', 'irvine', 'campswelcome', 'monthly', 'happenings', 'announcements', 'uber', 'tokyobased', 'staffing', 'campusescontinue', 'rarrinstructor', 'jacqueline', 'pastore', 'ironhackliz', 'eggleston10122016ironhack', 'testing', 'sat', 'superstar', 'listening', 'empathy', 'communication', 'produces', 'unicorns', 'incorporating', 'htmlbootstrap', '“ux', 'design”', 'changer', 'film', 'creative', 'boston', 'temping', 'capital', 'harvard', 'mit', 'smart', 'computers', 'lotus', 'notes', 'usability', 'labs', 'tester', 'bentley', 'masters', 'magical', 'ethnography', 'microsoft', 'staples', 'adidas', 'reebok', 'fidelity', 'federal', 'jp', 'morgan', 'chase', 'hampr', 'novartis', 'pharmaceuticals', 'zumba', 'fitness', 'gofer', 'tool', 'effective', 'quickly', 'verticals', 'platforms', 'hadn’t', 'used', 'refine', 'particular', 'stands', 'referred', 'respected', 'conferences', 'lecture', 'foundations', 'principles', 'deliver', 'activities', 'tests', 'products', 'pieces', 'instead', 'demonstrate', 'foray', 'marcelo', 'paiva', 'follow', 'lifecycles', 'marketplace', 'target', 'deliverables', 'turning', 'concept', 'architecture', 'lowfidelity', 'highfidelity', 'micro', 'models', 'principal', 'visual', 'beasts', 'implement', 'designs', 'bootstrap', 'marketable', 'individual', 'breakouts', 'push', 'trend', 'generalist', 'larger', 'broader', 'specialized', 'niches', 'ideal', 'studentteacher', '101', 'tackled', 'groups', 'flow', 'experts', 'sections', 'differ', 'jump', 'shoes', 'userexperience', 'mix', 'include', 'sony', 'nonprofit', 'crack', 'sector', 'schedule', 'approximately', 'outside', '65', 'hoursweek', 'largely', 'sum', 'units', 'cover', 'weekbyweek', '2week', 'completes', 'individually', 'entire', 'result', 'prototypes', 'carry', 'circumstances', 'varying', 'roles', 'fields', 'depending', 'interests', 'houses', 'introductory', 'ixda', 'resource', 'admissionsmiaironhackcom', 'we’d', 'profile', 'authorliz', 'thenbspcofounder', 'ofnbspcourse', 'completenbspresource', 'breakfast', 'tacos', 'liz', 'quora', 'youtubenbsp', 'summer', 'bootcampliz', 'eggleston7242016logit', 'academylevelgeneral', 'assemblyflatiron', 'schoolironhackmetisnyc', 'academynew', 'academymake', 'schoolwyncodetech', 'southfullstack', 'academycode', 'fellowssee', 'recommendations', 'hereif', 'incoming', 'freshman', 'offerings', 'rarr5', 'bootcampimogen', 'crispe2182016ironhacktech', 'elevatorwyncodezip', 'wilmingtonwe’ve', 'picked', 'upandcoming', 'range', 'chicago', 'seattle', 'austin', 'aren’t', 'rarrcoding', 'cost', 'comparison', 'immersivesimogen', 'crispe10172018codesmithv', 'schooldevmountaingrand', 'circusredwood', 'grace', 'schoollaunch', 'academyrefactoruironhacksoftware', 'guildapp', 'reactorrithm', 'schoolcoding', 'dojodevpoint', 'labsmakersquaredigitalcraftsnew', 'academylearn', 'academybottegawyncodehackbright', 'academycodecraft', 'schoolfullstack', 'fellowsturingcoding', 'templehow', 'wondering', '18000', 'costs', '11906', 'tuition', '9000', '21000', 'deferred', 'budget', 'usa', 'onsite', 'longer', 'comparable', 'listed', 'links', 'detailed', 'pagescontinue', 'rarrcracking', 'miamiliz', 'eggleston922015ironhack', 'ios', 'expanded', 'acceptance', 'sneak', 'peek', 'typically', 'falls', 'stages', 'takes', '1015', 'entirety', 'submission', 'wanting', 'nutshell', 'peak', 'admission', 'committee’s', 'attracts', 'flight', 'attendants', 'worldtravelling', 'yoginis', 'cs', 'ivy', 'leagues', 'democratic', 'sorts', 'pedigree', 'tend', 'perform', 'necessarily', 'sample', '“first', 'interview”', '“what', 'motivates', 'daytoday', 'do”', '“technical', 'happens', 'function', 'inside', 'loop”', 'suggest', 'ace', 'applicant', 'midst', 'materials', 'oneonone', 'address', 'httpsautotelicumgithubiosmoothcoffeescriptliteratejsintrohtml', 'cats', 'httpjsforcatscom', 'applicant’s', 'qualities', 'reveals', 'candidates', 'indicator', 'curiosity', 'probably', 'led', 'consists', 'minutes', 'breadth', '235', 'exact', 'spots', 'gets', 'roots', 'visastourist', 'visas', 'countries', 'represented', 'thailand', 'pakistan', 'brazil', 'travel', 'tourist', 'melting', 'pot', 'combined', 'werent', 'article', 'let', 'southharry', 'hantel462015devmountaingeneral', 'assemblynashville', 'schoolironhackaustin', 'academycodeupcodecamp', 'charlestoncoding', 'dojomakersquarecoder', 'foundrywyncodetech', 'southcoder', 'campsupdated', '2018slide', 'roof', 'lee', 'south', 'masondixon', 'southern', 'united', 'states', 'carolinas', 'georgia', 'texas', 'covering', 'hospitalitycontinue', 'rarrstudent', 'gorka', 'magana', 'eggleston1012014ironhack', 'rushmorefm', 'freelancer', 'developing', 'selftaught', 'concrete', 'platform', 'drove', 'basically', 'adwords', 'avoid', 'merit', 'culturefit', 'separated', 'approved', 'gender', 'men', 'should’ve', 'course’s', 'endless', 'agile', 'continuously', 'adapting', 'burnout', 'tired', 'boring', '“ugly”', 'challenged', 'situation', 'following', 'speed', 'proud', 'finish', 'collaboration', 'designed', 'snapreminder', 'tuned', 'entail', 'releasing', 'i’ll', 'directly', 'formally', 'exclusive', 'scholarshipsliz', 'eggleston222018makers', 'academydevmountainrutgers', 'bootcampsflatiron', 'schoolstarter', 'leagueblocironhackmetisdigital', 'institute10xorgilviking', 'schoolviking', 'schoolguild', 'architectsdevpoint', 'labsthinkfullearningfuzedigitalcraftsnyc', 'academybyte', 'academydevleaguesabiocode', 'fellowsturntotechdevcodecamplighthouse', 'labscoding', 'templelooking', 'discounts', 'promo', 'codes', 'scholarshipscoursereportcom', 'jaime', 'munoz', 'eggleston7182014ironhack', 'soft', '\\u200bbefore', 'programmer\\u200b', 'managed', 'cice', 'luck', 'devta', 'singh', 'face', 'revelation', 'moment', 'fact', 'offline', 'php', 'improving', 'faster', 'stimulate', 'trazos', 'pushing', 'turned', 'price', '\\u200bironhack', 'admire', 'keyvan', 'akbary', 'carlos', 'blé', 'choice\\u200b', '\\u200bfortunately', 'asked', 'explanations', 'solved', 'problem\\u200b', '\\u200bthey', 'guess', 'thinks', 'imagine', 'am\\u200b', '\\u200bfor', 'postgresql', 'javascript\\u200b', 'medical', 'appointments', 'demo', '\\u200bim', 'marketgoocom', 'seo', 'tool\\u200b', 'mysql', 'phinx', 'phpactiverecord', 'collaborating', 'decisions', 'behavior', '\\u200bmaybe', 'handle', 'alone\\u200b', 'contacts', 'knowhow', 'catch', 'marta', 'fonda', 'eggleston7162014ironhack', 'compete', '8week', 'succeeded', 'floqqcom', 'degrees', 'studies', 'interviewed', 'c', 'java', 'sql', 'lacking', 'modern', 'places', 'lean', 'teamwork', 'surrounded', 'country', 'convert', 'fastest', 'save', 'features', 'responsive', 'jquery', 'functionalities', 'geolocalization', 'storage', 'id', 'efforts', 'finalists', 'hackshow', 'nowadays', 'impossible', 'it´s', 'i´ve', '180º', 'allowed', 'born', 'founder', 'quinones', 'eggleston4212014ironhack', 'american', 'sets', 'puerto', 'rico', 'comes', 'construction', 'he’s', 'civil', 'infrastructure', 'household', 'educators', 'parents', 'father', '10000', 'dna', 'wharton', 'edtech', 'iterating', 'issue', 'nontechnical', 'brilliant', '“ideas”', 'mvp', 'outsource', '2day', 'acquire', 'compressed', 'earlier', 'traction', 'region', 'geared', 'makers', 'opposed', 'admit', 'hesitant', '“go', 'newbie', 'weeks”', 'appealing', 'folks', 'professionalize', 'analytical', 'hardcore', 'lesson', 'fly', 'filter', 'disparate', 'levels', 'arriving', 'differently', 'velocities', 'styles', 'pace', 'everyone’s', 'yeah', 'scenes', 'food', 'parties…', 'integral', 'society', 'higher', 'arena', 'fashion', 'trained', 'foreigners', 'eu', 'mobility', 'union', 'citizen', 'requirements', 'northern', 'weather', 'beaches', 'lifestyle…', 'thriving', 'cosmopolitan', 'emerging', 'stage', 'acquired', 'substantial', 'rounds', 'driver', 'employ', 'engineers', 'northeast', 'who’s', 'enrolling', 'incur', 'red', 'tape', 'raised', 'bootstrapped', 'sinatra', 'culmination', 'believers', 'flipped', 'reduce', 'theory', 'extent', 'videos', 'homework', 'weekend', 'demands', 'fragmented', 'gazillion', 'percent', 'obsessed', 'instrument', 'differentiates', 'obsession', 'clean', 'format', 'slightly', 'objectoriented', 'android', 'capped', 'view', 'instructing', 'parts', 'peers', 'connects', 'professors', 'vested', 'prove', '3step', 'screen', '30minute', 'skype', 'intrinsic', '“listen', 'monday', 'friday', 'saturdaysunday…”', 'beams', 'energy', 'positivity', 'assess', 'programmed', 'cases', 'coded', 'valuation', '60', 'founding', 'preproduct', 'speakers', 'serves', 'identify', 'bring', 'leading', 'cv', 'optimize', 'conduct', 'luxury', 'paying', 'fee', 'charging', 'placing', 'wouldn’t', 'placed', 'nearly', 'accreditation', 'buzz', 'happening', 'radar', 'pressure', 'government', 'attention', 'interfere', 'institutions', 'expanding', 'anytime', 'regions', 'closer', 'ironhackamsterdam', 'paulocontact', 'ironhackschool', 'infoschool', 'infosavenbspironhack', 'websitehiironhackcomfront', 'developmentfullstack', 'developmentux', 'designamsterdambarcelonaberlinmadridmexico', 'citymiamiparissao', 'paulomore', 'informationmore', 'informationnbspguarantees', 'jobnbspaccepts', 'gi', 'billnbspjob', 'assistancelicensinglicensed', 'dept', 'nbsphousing', 'corporate', 'trainingnot', 'forwell', 'match', 'youstart', 'conversationcomplete', 'ironhackmy', 'namemy', 'emailmy', 'optionalim', 'inselect', 'campusamsterdam', 'pauloany', 'youd', 'ironhackby', 'acknowledge', 'shared', 'ironhackthanksverify', 'viaemaillinkedingithubby', 'clicking', 'verify', 'linkedingithub', 'agree', 'detailsthanks', 'communitygreatwe', 'publish', 'reviewonce', 'reviewthanks', 'communitybrowse', 'schoolsvar', 'newwindow', 'openverifyproviderurl', 'var', 'screenx', 'typeof', 'windowscreenx', 'undefined', 'windowscreenleft', 'screeny', 'windowscreeny', 'windowscreentop', 'outerwidth', 'windowouterwidth', 'documentbodyclientwidth', 'outerheight', 'windowouterheight', 'documentbodyclientheight', 'parseintscreenx', '800', 'parseintscreeny', 'width800height800left', 'verifyreviewdatareviewtostring', 'params', 'reviewid', 'url', 'providerurl', 'bodycsscursor', 'windowopenurl', 'login', 'windowfocus', 'newwindowfocus', 'return', 'false', 'emailverifyproviderurl', 'verifyreviewdataurltostring', 'sendconfirmation', 'successfunctiondata', 'preconfirmationhide', 'confirmedviaemailshow', 'bottombuffershow', 'delete', 'moderatorsback', 'reviewcloseinstructionsmodal', 'instructionsoverlayfadeout250', 'duplicateinstructionsoverlayfadeout250', 'instructionsconfirm', 'instructionscloseonclick', 'closeinstructionsmodalsuccessan', 'details', 'ironhackview', 'scholarshipsvar', 'closethismodal', 'confirmscholarshipoverlayfadeout500', 'bodycssoverflow', 'scroll', 'viewscholarships', 'windowlocationhref', 'researchcenterscholarships', 'hang', 'onyouve', 'ironhackclosevar', 'whoasomething', 'terribly', 'fix', 'againshare', 'reviewnbspcopy', 'clipboardfind', 'thebestbootcampfor', 'youtell', 'highestrated', 'schoolsget', 'matchedthanksget', 'ultimate', 'bootcampi', 'amresearching', 'studentalum', 'otherlooks', 'mailing', 'shoot', 'annbspemailgreat', 'upplus', 'safe', 'uscourse', 'reporthomeschoolsblogadvicewrite', 'reviewaboutconnect', 'uslegalterms', 'serviceprivacy', 'policyfollow', 'usresearchultimate', 'bootcampbest', '20172017', 'size', 'report2017', 'studycourse', 'usresearchlog', 'inforgot', 'passwordororlog', 'claim', 'track', 'compare', 'schoolsnew', 'upalready', 'account', 'incurrentuseremail', 'analysis', 'wikipedia', 'encyclopedia', 'navigation', 'statisticsdata', 'visualization', 'exploratory', 'analysis160822632', 'interactive', 'descriptive', 'statistics160822632', 'inferential', 'statistics', 'statistical', 'graphics160822632', 'plot', '160822632', 'infographic', 'figures', 'tamara', 'munzner', 'ben', 'shneiderman', 'john', 'w', 'tukey', 'edward', 'tufte', 'viégas', 'hadley', 'wickham', 'chart', 'bar', 'histogram160822632', 'scatterplot', 'boxplot160822632', 'pareto', 'pie', 'chart160822632', 'control', 'stemandleaf', 'display160822632', 'cartogram', 'multiple160822632', 'sparkline', 'table', 'data160822632information', 'data160822632', 'database', 'chartjunk160822632', 'perception', 'regression', 'misleading', 'graph', 'vte', 'computational', 'physics', 'numerical', 'analysis16018332simulation', 'analysis16018332visualization', 'potentialsmorselongrange', 'potential16018332lennardjones', 'potential16018332yukawa', 'potential16018332morse', 'fluid', 'dynamicsfinite', 'difference16018332finite', 'volume', 'finite', 'element16018332boundary', 'element', 'lattice', 'boltzmann16018332riemann', 'solver', 'dissipative', 'particle', 'dynamics', 'smoothed', 'hydrodynamics', 'turbulence', 'monte', 'carlo', 'methodsintegration16018332gibbs', 'sampling16018332metropolis', 'algorithm', 'particlenbody16018332particleincell', 'molecular', 'scientistsgodunov16018332ulam16018332', 'von', 'neumann16018332galerkin16018332', 'lorenz16018332wilson', 'inspecting', 'cleansing', 'transforming', 'modeling', 'discovering', 'informing', 'conclusions', 'supporting', 'decisionmaking', 'facets', 'approaches', 'encompassing', 'techniques', 'variety', 'names', 'domains', 'mining', 'technique', 'discovery', 'predictive', 'purposes', 'relies', 'heavily', 'aggregation', 'information91193', 'eda', 'confirmatory', 'cda', 'confirming', 'falsifying', 'existing', 'hypotheses', 'forecasting', 'classification', 'text', 'applies', 'linguistic', 'structural', 'extract', 'classify', 'textual', 'sources', 'species', 'unstructured', 'varieties', 'integration', 'precursor', 'analysis91according', 'whom93', 'closely', 'linked91how93', 'dissemination', 'term', 'synonym', 'contents', '11', 'collection', 'cleaning', '16', '17', 'messages', 'analyzing', 'users', 'barriers', '51', 'confusing', 'opinion', '52', 'cognitive', 'biases', '53', 'innumeracy', '61', 'buildings', '62', '63', 'practitioner', '71', 'initial', '711', '712', 'measurements', '713', 'transformations', '714', 'implementation', 'fulfill', 'intentions', '715', 'characteristics', '716', '717', '718', 'nonlinear', '72', '721', '722', 'stability', '723', 'contests', 'references', '111', 'citations', '112', 'bibliography', 'analysisedit', 'flowchart', 'cathy', 'oneil', 'rachel', 'schutt', 'refers', 'separate', 'components', 'examination', 'obtaining', 'raw', 'converting', 'analyzed', 'test', 'disprove', 'theories91293', 'statistician', 'defined', '1961', 'procedures', 'interpreting', 'precise', 'accurate', 'machinery', 'mathematical', 'data91393', 'phases', 'distinguished', 'described', 'iterative', 'phases91493', 'requirementsedit', 'inputs', 'specified', 'directing', 'customers', 'experimental', 'unit', 'population', 'variables', 'regarding', 'income', 'obtained', 'categorical', 'label', 'numbers91493', 'collectionedit', 'communicated', 'analysts', 'custodians', 'personnel', 'sensors', 'traffic', 'cameras', 'satellites', 'recording', 'devices', 'downloads', 'documentation91493', 'processingedit', 'cycle', 'actionable', 'conceptually', 'initially', 'processed', 'organised', 'involve', 'rows', 'columns', 'spreadsheet', 'software91493', 'cleaningedit', 'incomplete', 'contain', 'duplicates', 'errors', 'stored', 'preventing', 'correcting', 'common', 'tasks', 'matching', 'identifying', 'inaccuracy', 'data91593', 'deduplication', 'column', 'segmentation91693', 'identified', 'totals', 'compared', 'separately', 'numbers', 'believed', 'reliable91793', 'unusual', 'amounts', 'predetermined', 'thresholds', 'reviewed', 'depend', 'addresses', 'outlier', 'detection', 'rid', 'incorrectly', 'spell', 'checkers', 'lessen', 'mistyped', 'correct91893', 'cleaned', 'begin', 'contained', 'data91993911093', 'exploration', 'requests', 'nature', 'median', 'generated', 'examine', 'graphical', 'obtain', 'data91493', 'algorithmsedit', 'formulas', 'relationships', 'correlation', 'causation', 'variable', 'residual', 'error', 'accuracy', 'error91293', 'measure', 'explains', 'variation', 'sales', 'dependent', 'y', 'ax', 'b', 'minimize', 'predicts', 'simplify', 'communicate', 'results91293', 'productedit', 'generates', 'outputs', 'feeding', 'analyzes', 'purchasing', 'history', 'recommends', 'purchases', 'enjoy91493', 'communicationedit', 'analysis911193', 'reported', 'formats', 'iterative91493', 'determining', 'displays', 'tables', 'charts', 'lookup', 'messagesedit', 'illustrated', 'demonstrating', 'revenue', 'illustrating', 'inflation', 'measured', 'points', 'stephen', 'associated', 'graphs', 'specifying', 'performing', 'timeseries', 'captured', '10year', 'ranking', 'subdivisions', 'ranked', 'ascending', 'descending', 'performance', 'persons', 'category', 'subdivision', 'parttowhole', 'percentage', 'ratios', 'deviation', 'reference', 'actual', 'vs', 'expenses', 'departments', 'frequency', 'distribution', 'observations', 'interval', 'stock', 'intervals', '0–10', '11–20', 'histogram', 'xy', 'determine', 'opposite', 'directions', 'plotting', 'scatter', 'nominal', 'comparing', 'geographic', 'geospatial', 'map', 'layout', 'floors', 'typical', 'used911293911393', 'dataedit', 'author', 'jonathan', 'koomey', 'anomalies', 'reperform', 'calculations', 'verifying', 'formula', 'driven', 'confirm', 'subtotals', 'predictable', 'normalize', 'comparisons', 'relative', 'gdp', 'index', 'component', 'dupont', 'equity91793', 'standard', 'analyze', 'cluster', 'illustration', 'mece', 'principle', 'consultants', 'layer', 'broken', 'subcomponents', 'mutually', 'add', 'exhaustive', 'profit', 'definition', 'divisions', 'robust', 'hypothesis', 'true', 'affairs', 'gathered', 'effect', 'relates', 'economics', 'phillips', 'involves', 'likelihood', 'ii', 'relate', 'rejecting', 'affects', 'changes', 'affect', 'equation', 'condition', 'nca', 'additive', 'xvariable', 'outcome', 'xs', 'compensate', 'sufficient', 'necessity', 'xvariables', 'exist', 'compensation', 'usersedit', 'messaging', 'outlined', 'lowlevel', 'analytic', 'presented', 'taxonomy', 'poles', 'retrieving', 'arranging', 'points911493911593911693911793', 'task', 'generaldescription', 'pro', 'formaabstract', 'retrieve', 'attributes', 'z', 'mileage', 'gallon', 'ford', 'mondeo', 'movie', 'wind', 'conditions', 'attribute', 'satisfy', 'kelloggs', 'cereals', 'fiber', 'comedies', 'won', 'awards', 'funds', 'underperformed', 'sp500', 'compute', 'derived', 'aggregate', 'numeric', 'representation', 's', 'calorie', 'gross', 'stores', 'manufacturers', 'cars', 'extremum', 'possessing', 'extreme', 'topbottom', 'n', 'highest', 'mpg', 'directorfilm', 'marvel', 'studios', 'release', 'ordinal', 'metric', 'weight', 'calories', 'span', 'lengths', 'horsepowers', 'actresses', 'characterize', 'attribute’s', 'carbohydrates', 'shoppers', 'expectation', 'outliers', 'unexpectedexceptional', 'exceptions', 'horsepower', 'acceleration', 'protein', 'clusters', 'fatcaloriessugar', 'correlate', 'fat', 'origin', 'genders', 'payment', 'method', 'length', 'contextualization911793', 'contextual', 'relevancy', 'restaurants', 'foods', 'caloric', 'intake', 'distinguishing', 'sound', 'opinionedit', 'mwparseroutput', 'quoteboxbackgroundcolorf9f9f9border1px', 'aaaboxsizingborderboxpadding10pxfontsize88mwparseroutput', 'quoteboxfloatleftmargin05em', '14em', '08em', '0mwparseroutput', 'quoteboxfloatrightmargin05em', '14emmwparseroutput', 'quoteboxcenteredmargin05em', 'auto', 'automwparseroutput', 'quoteboxfloatleft', 'pmwparseroutput', 'quoteboxfloatright', 'pfontstyleinheritmwparseroutput', 'quoteboxtitlebackgroundcolorf9f9f9textaligncenterfontsizelargerfontweightboldmwparseroutput', 'quoteboxquotequotedbeforefontfamilytimes', 'romanseriffontweightboldfontsizelargecolorgraycontent', '“', 'verticalalign45lineheight0mwparseroutput', 'quoteboxquotequotedafterfontfamilytimes', '”', 'lineheight0mwparseroutput', 'quotebox', 'leftalignedtextalignleftmwparseroutput', 'rightalignedtextalignrightmwparseroutput', 'centeralignedtextaligncentermwparseroutput', 'citedisplayblockfontstylenormalmedia', 'maxwidth360pxmwparseroutput', 'quoteboxminwidth100margin0', '08emimportantfloatnoneimportant', 'entitled', 'facts', 'patrick', 'moynihan', 'formal', 'irrefutable', 'meaning', 'congressional', 'cbo', 'extending', 'bush', 'tax', 'cuts', '2001', '2003', '2011–2020', '33', 'trillion', 'national', 'debt911893', 'disagree', 'auditor', 'arrive', 'statements', 'publicly', 'traded', 'fairly', 'stated', 'respects', 'factual', 'evidence', 'opinions', 'erroneous', 'biasesedit', 'adversely', 'confirmation', 'bias', 'interpret', 'confirms', 'preconceptions', 'individuals', 'discredit', 'book', 'retired', 'cia', 'richards', 'heuer', 'delineate', 'assumptions', 'chains', 'inference', 'specify', 'uncertainty', 'emphasized', 'surface', 'debate', 'alternative', 'view911993', 'innumeracyedit', 'generally', 'adept', 'audiences', 'literacy', 'numeracy', 'innumerate', 'communicating', 'attempting', 'mislead', 'misinform', 'deliberately', 'techniques912093', 'falling', 'factor', 'normalization91793', 'commonsizing', 'employed', 'adjusting', 'increases', 'section', 'scenarios', 'statement', 'recast', 'estimate', 'cash', 'discount', 'similarly', 'effects', 'policy', 'governments', 'outlays', 'deficits', 'measures', 'topicsedit', 'buildingsedit', 'predict', 'consumption', 'buildings912193', 'carried', 'realise', 'heating', 'ventilation', 'air', 'conditioning', 'lighting', 'security', 'realised', 'automatically', 'miming', 'optimising', 'intelligenceedit', 'explanatory', 'factbased', 'actions', 'subset', 'performance912293', 'educationedit', 'purpose', 'data912393', 'systems', 'overthecounter', 'embedding', 'labels', 'supplemental', 'documentation', 'packagedisplay', 'educators’', 'analyses912493', 'notesedit', 'contains', 'assist', 'practitioners', 'distinction', 'phase', 'refrains', 'aimed', 'answering', 'original', 'guided', 'questions912593', 'checked', 'assessed', 'counts', 'normality', 'skewness', 'kurtosis', 'histograms', 'schemes', 'external', 'corrected', 'commonmethod', 'variance', 'analyses', 'conducted', 'phase912693', 'measurementsedit', 'measurement', 'instruments', 'corresponds', 'literature', 'homogeneity', 'internal', 'consistency', 'indication', 'reliability', 'inspects', 'variances', 'items', 'scales', 'cronbachs', 'α', 'alpha', 'item', 'scale912793', 'transformationsedit', 'assessing', 'impute', 'phase912893', 'are912993', 'square', 'root', 'transformation', 'differs', 'moderately', 'logtransformation', 'substantially', 'inverse', 'severely', 'dichotomous', 'designedit', 'randomization', 'procedure', 'substantive', 'equally', 'distributed', 'nonrandom', 'sampling', 'subgroups', 'distortions', 'dropout', 'nonresponse', 'random', 'treatment', 'manipulation', 'checks913093', 'sampleedit', 'accurately', 'especially', 'subgroup', 'performed', 'plots', 'correlations', 'associations', 'crosstabulations913193', 'findings', 'documented', 'preferable', 'corrective', 'rewritten', 'nonnormals', 'transform', 'ordinaldichotomous', 'neglect', 'imputation', 'omitting', 'comparability', 'drop', 'intergroup', 'differences', 'bootstrapping', 'defective', 'calculate', 'propensity', 'scores', 'covariates', 'analyses913293', 'phase913393', 'univariate', 'bivariate', 'level913493', 'percentages', 'circumambulations', 'crosstabulations', 'hierarchical', 'loglinear', 'restricted', 'relevantimportant', 'confounders', 'computation', 'continuous', 'm', 'sd', 'recorded', 'exhibit', 'bifurcations', 'chaos', 'harmonics', 'subharmonics', 'simple', 'linear', 'identification913593', 'draft', 'report913693', 'approachesedit', 'adopted', 'analysing', 'searched', 'tested', 'interpreted', 'adjust', 'significance', 'bonferroni', 'correction', 'dataset', 'simply', 'resulted', 'analysis913793', 'resultsedit', 'generalizable', 'are913893', 'reliable', 'reproducible', 'crossvalidation', 'splitting', 'fitted', 'generalizes', 'sensitivity', 'parameters', 'systematically', 'varied', 'methodsedit', 'brief', 'widely', 't', 'anova', 'ancova', 'manova', 'usable', 'predictors', 'generalized', 'extension', 'discrete', 'modelling', 'latent', 'structures', 'manifest', 'response', 'binary', 'exam', 'devinfo', 'endorsed', 'nations', 'elki', 'knime', 'konstanz', 'miner', 'comprehensive', 'orange', 'featuring', 'scientific', 'paw', 'fortranc', 'cern', 'computing', 'graphics', 'scipy', 'libraries', 'contestsedit', 'researchers', 'utilize', 'wellknown', 'follows', 'kaggle', 'held', 'kaggle913993', 'ltpp', 'contest', 'fhwa', 'asce914093914193', 'alsoedit', 'portal', 'actuarial', 'censoring', 'acquisition', 'blending', 'governance', 'presentation', 'signal', 'dimension', 'reduction', 'assessment', 'fourier', 'multilinear', 'pca', 'subspace', 'multiway', 'nearest', 'neighbor', 'identification', 'wavelet', 'referencesedit', 'citationsedit', 'judd', 'charles', 'mccleland', 'gary', '1989', 'harcourt', 'brace', 'jovanovich', 'isbn1600155167650mwparseroutput', 'citecitationfontstyleinheritmwparseroutput', 'qquotesmwparseroutput', 'codecs1codecolorinheritbackgroundinheritborderinheritpaddinginheritmwparseroutput', 'cs1lockfree', 'abackgroundurluploadwikimediaorgwikipediacommonsthumb665lockgreensvg9pxlockgreensvgpngnorepeatbackgroundpositionright', '1em', 'centermwparseroutput', 'cs1locklimited', 'amwparseroutput', 'cs1lockregistration', 'abackgroundurluploadwikimediaorgwikipediacommonsthumbdd6lockgrayalt2svg9pxlockgrayalt2svgpngnorepeatbackgroundpositionright', 'cs1locksubscription', 'abackgroundurluploadwikimediaorgwikipediacommonsthumbaaalockredalt2svg9pxlockredalt2svgpngnorepeatbackgroundpositionright', 'cs1subscriptionmwparseroutput', 'cs1registrationcolor555mwparseroutput', 'cs1subscription', 'spanmwparseroutput', 'cs1registration', 'spanborderbottom1px', 'dottedcursorhelpmwparseroutput', 'cs1hiddenerrordisplaynonefontsize100mwparseroutput', 'cs1visibleerrorfontsize100mwparseroutput', 'cs1registrationmwparseroutput', 'cs1formatfontsize95mwparseroutput', 'cs1kernleftmwparseroutput', 'cs1kernwlleftpaddingleft02emmwparseroutput', 'cs1kernrightmwparseroutput', 'cs1kernwlrightpaddingright02em', 'tukeythe', 'analysisjuly', 'e', 'g', 'oreilly', 'isbn1609781449358655', 'crm', 'generate', 'salesready', 'retrieved', '29th', '26', 'perceptual', 'edgejonathan', 'koomeybest', 'datafebruary', 'hellerstein', 'joseph', '27', 'databases', 'pdf', 'eecs', 'division', 'fewperceptual', 'edgeselecting', 'messageseptember', '2004', 'behrensprinciples', 'analysisamerican', 'psychological', 'association1997', 'grandjean', 'martin', 'la', 'connaissance', 'est', 'réseau', 'les', 'cahiers', 'du', 'numérique', '37–54', 'doi103166lcn1033754', 'message2004', 'edgegraph', 'selection', 'matrix', 'robert', 'amar', 'james', 'eagan', 'stasko', 'activity', 'william', 'newman', '1994', 'preliminary', 'hci', 'forma', 'abstracts', 'mary', 'shaw', '2002', 'contaas', 'internetscale', 'contextualisation', 'efficient', 'scholarspace', 'hicss50', 'officethe', 'economic', 'outlookaugust', '2010table', '20110331', 'ciagov', 'bloombergbarry', 'ritholzbad', 'math', 'passes', 'insightoctober', '28', 'gonzálezvidal', 'aurora', 'morenocano', 'victoria', 'efficiency', 'intelligent', 'procedia', '83', 'elsevier', '994–999', 'doi101016jprocs201604213', 'davenport', 'thomas', 'jeanne', 'competing', 'isbn1609781422103326', 'aarons', 'finds', 'pupildata', '2913', 'rankin', 'j', 'fight', 'propagate', 'epidemic', 'educator', 'leadership', 'tical', 'summit', 'adèr', '2008a', 'p160337', 'pp160338341', 'pp160341342', 'p160344', 'tabachnick', 'fidell', 'p', '8788', 'pp160344345', 'p160345', 'pp160345346', 'pp160346347', 'pp160349353', 'billings', 'sa', 'narmax', 'spatiotemporal', 'wiley', '2008b', 'p160363', 'pp160361362', 'pp160361371', 'higgs', 'symmetry', 'magazine', 'nehme', 'jean', 'highway', 'datagovlongterm', 'pavement', 'bibliographyedit', 'herman', 'chapter', 'mellenbergh', 'gideon', 'advising', 'methods160', 'companion', 'huizen', 'netherlands', 'johannes', 'van', 'kessel', 'pub', 'pp160333–356', 'isbn1609789079418015', 'oclc160905799857', 'pp160357–386', 'bg', 'ls', 'act', 'screening', 'eds', 'multivariate', 'fifth', 'edition', 'pp16060–116', 'pearson', 'allyn', 'bacon', 'readingedit', 'wikiversity', 'hj', 'gj', 'contributions', 'dj', 'publishing', 'chambers', 'cleveland', 'kleiner', 'paul', '1983', 'wadsworthduxbury', 'press', 'isbn160053498052x', 'fandango', 'armando', 'packt', 'publishers', 'juran', 'godfrey', 'blanton', '1999', 'jurans', 'handbook', '5th', 'mcgraw', 'hill', 'isbn160007034003x', 'lewisbeck', 'michael', '1995', 'sage', 'publications', 'isbn1600803957726', 'nistsematech', 'pyzdek', 'isbn1600824746147', 'richard', 'veryard', '1984', 'pragmatic', 'oxford160', 'blackwell', 'isbn1600632013117', 'isbn1609780205459384', 'authority', 'gnd', '41230371', 'vtedata', 'archaeology', 'compression', 'corruption', 'curation', 'degradation', 'editing', 'farming', 'fusion', 'integrity', 'library', 'loss', 'migration', 'preprocessing', 'preservation', 'protection', 'privacy', 'recovery', 'retention', 'scraping', 'scrubbing', 'stewardship', 'warehouse', 'wranglingmunging', 'newpp', 'parsed', 'mw1258', 'cached', '20181023205919', 'cache', 'expiry', '1900800', 'cpu', 'usage', '0596', 'seconds', '0744', 'preprocessor', 'node', 'count', '31771000000', '01500000', 'post‐expand', '729952097152', 'bytes', 'template', 'argument', '28332097152', 'depth', '1240', 'expensive', 'parser', '5500', 'unstrip', 'recursion', '120', '621355000000', 'wikibase', 'entities', 'loaded', '3400', 'lua', '023010000', '576', 'mb50', 'mb', 'transclusion', 'mscallstemplate', '523114', '3198', '167305', 'templatereflist', '1744', '91248', 'templatecitebook', '971', '50806', 'templateisbn', '763', '39937', 'templateaccordingtowhom', '734', '38394', 'templatecitejournal', '698', '36524', 'templateauthoritycontrol', '673', '35217', 'templatesidebarwithcollapsiblelists', '658', '34408', 'templatefixspan', '582', '30459', 'templatedatavisualization', 'saved', 'enwikipcacheidhash27209540canonical', 'timestamp', '20181023205918', 'revision', '862584710', 'httpsenwikipediaorgwindexphptitledataanalysisampoldid862584710', 'categories', 'analysisscientific', 'methodparticle', 'physicscomputational', 'studyhidden', 'marked', 'weaselworded', 'phrasesarticles', 'phrases', '2018wikipedia', 'needing', 'clarification', 'identifiers', 'menu', 'logged', 'intalkcontributionscreate', 'accountlog', 'namespaces', 'articletalk', 'variants', 'readeditview', 'pagecontentsfeatured', 'contentcurrent', 'eventsrandom', 'articledonate', 'wikipediawikipedia', 'helpabout', 'wikipediacommunity', 'portalrecent', 'changescontact', 'hererelated', 'changesupload', 'filespecial', 'pagespermanent', 'linkpage', 'informationwikidata', 'itemcite', 'printexport', 'bookdownload', 'pdfprintable', 'version', 'wikimedia', 'commons', 'العربيةdeutscheestiespañolesperantoفارسیfrançaisहिन्दीitalianoעבריתಕನ್ನಡmagyarpolskiportuguêsрусскийසිංහලکوردیsuomiதமிழ்українська中文', 'edit', 'edited', '0950', 'utc', 'attributionsharealike', 'license', 'site', 'wikipedia®', 'trademark', 'foundation', 'disclaimers', 'cookie', 'lorem', 'ipsum', 'lipsum', 'generator', 'googletagcmdpushfunction', 'googletagdisplaydivgptad14561483161980', '1344137713971381140813811398', 'shqip', '82351575160415931585157616101577nbspnbsp', '104110981083107510721088108910821080', 'catalagrave', '20013259913161620307', 'hrvatski', '268esky', 'dansk', 'nederlands', 'eesti', 'filipino', 'suomi', 'franccedilais', '4325430443204311432343144312', 'deutsch', '917955955951957953954940', '823515061489151214971514nbspnbsp', '236123672344238123422368', 'magyar', 'indonesia', 'italiano', 'latviski', 'lietuviscaronkai', '1084107210821077107610861085108910821080', 'melayu', 'norsk', 'polski', 'portuguecircs', 'romacircna', 'pycc108210801081', '105710881087108910821080', 'sloven269ina', 'sloven353269ina', 'espantildeol', 'svenska', '365236073618', 'tuumlrkccedile', '1059108210881072111110851089110010821072', 'ti7871ng', 'vi7879t', 'neque', 'porro', 'quisquam', 'qui', 'dolorem', 'quia', 'dolor', 'amet', 'consectetur', 'adipisci', 'velit', 'pain', 'seeks', 'dummy', 'printing', 'typesetting', 'industrys', '1500s', 'unknown', 'printer', 'galley', 'scrambled', 'specimen', 'survived', 'centuries', 'electronic', 'remaining', 'essentially', 'unchanged', 'popularised', '1960s', 'letraset', 'sheets', 'containing', 'passages', 'desktop', 'aldus', 'pagemaker', 'versions', 'reader', 'distracted', 'readable', 'moreorless', 'letters', 'packages', 'editors', 'default', 'uncover', 'sites', 'infancy', 'evolved', 'accident', 'injected', 'humour', 'contrary', 'belief', 'classical', '45', 'bc', 'old', 'mcclintock', 'hampdensydney', 'virginia', 'looked', 'obscure', 'passage', 'cites', 'discovered', 'undoubtable', '11032', '11033', 'finibus', 'bonorum', 'et', 'malorum', 'extremes', 'evil', 'cicero', 'treatise', 'ethics', 'renaissance', '11032the', 'chunk', 'reproduced', '1914', 'translation', 'h', 'rackham', 'variations', 'suffered', 'alteration', 'randomised', 'believable', 'isnt', 'embarrassing', 'hidden', 'generators', 'predefined', 'chunks', 'dictionary', '200', 'handful', 'sentence', 'looks', 'reasonable', 'repetition', 'noncharacteristic', 'paragraphswordsbyteslistsstart', 'loremipsum', 'translations', 'translate', 'foreign', 'mock', 'banners', 'colours', 'banner', 'sizes', 'donate', 'donating', 'hosting', 'bandwidth', 'minimum', 'donation', 'appreciated', 'paypal', 'thank', 'chrome', 'firefox', 'addon', 'tex', 'package', 'interface', 'gtk', 'net', 'groovy', 'adobe', 'plugin', '1500slorem', 'adipiscing', 'elit', 'sed', 'eiusmod', 'tempor', 'incididunt', 'ut', 'labore', 'dolore', 'magna', 'aliqua', 'enim', 'ad', 'minim', 'veniam', 'quis', 'nostrud', 'exercitation', 'ullamco', 'laboris', 'nisi', 'aliquip', 'ea', 'commodo', 'consequat', 'duis', 'aute', 'irure', 'reprehenderit', 'voluptate', 'esse', 'cillum', 'fugiat', 'nulla', 'pariatur', 'excepteur', 'sint', 'occaecat', 'cupidatat', 'non', 'proident', 'sunt', 'culpa', 'officia', 'deserunt', 'mollit', 'anim', 'laborumsection', 'bcsed', 'perspiciatis', 'unde', 'omnis', 'iste', 'natus', 'voluptatem', 'accusantium', 'doloremque', 'laudantium', 'totam', 'rem', 'aperiam', 'eaque', 'ipsa', 'quae', 'ab', 'illo', 'inventore', 'veritatis', 'quasi', 'architecto', 'beatae', 'vitae', 'dicta', 'explicabo', 'nemo', 'ipsam', 'voluptas', 'aspernatur', 'aut', 'odit', 'fugit', 'consequuntur', 'magni', 'dolores', 'eos', 'ratione', 'sequi', 'nesciunt', 'numquam', 'eius', 'modi', 'tempora', 'incidunt', 'magnam', 'aliquam', 'quaerat', 'minima', 'nostrum', 'exercitationem', 'ullam', 'corporis', 'suscipit', 'laboriosam', 'aliquid', 'commodi', 'consequatur', 'autem', 'vel', 'eum', 'iure', 'quam', 'nihil', 'molestiae', 'illum', 'quo', 'mistaken', 'denouncing', 'praising', 'expound', 'teachings', 'explorer', 'truth', 'masterbuilder', 'happiness', 'rejects', 'dislikes', 'avoids', 'pursue', 'rationally', 'encounter', 'consequences', 'painful', 'pursues', 'desires', 'occasionally', 'occur', 'toil', 'procure', 'trivial', 'undertakes', 'laborious', 'physical', 'exercise', 'fault', 'chooses', 'annoying', 'resultant', 'vero', 'accusamus', 'iusto', 'odio', 'dignissimos', 'ducimus', 'blanditiis', 'praesentium', 'voluptatum', 'deleniti', 'atque', 'corrupti', 'quos', 'quas', 'molestias', 'excepturi', 'occaecati', 'cupiditate', 'provident', 'similique', 'mollitia', 'animi', 'laborum', 'dolorum', 'fuga', 'harum', 'quidem', 'rerum', 'facilis', 'expedita', 'distinctio', 'nam', 'libero', 'tempore', 'cum', 'soluta', 'nobis', 'eligendi', 'optio', 'cumque', 'impedit', 'minus', 'quod', 'maxime', 'placeat', 'facere', 'possimus', 'assumenda', 'repellendus', 'temporibus', 'quibusdam', 'officiis', 'debitis', 'necessitatibus', 'saepe', 'eveniet', 'voluptates', 'repudiandae', 'recusandae', 'itaque', 'earum', 'hic', 'tenetur', 'sapiente', 'delectus', 'reiciendis', 'voluptatibus', 'maiores', 'alias', 'perferendis', 'doloribus', 'asperiores', 'repellat', 'denounce', 'righteous', 'indignation', 'dislike', 'beguiled', 'demoralized', 'charms', 'blinded', 'foresee', 'bound', 'ensue', 'equal', 'blame', 'belongs', 'duty', 'weakness', 'shrinking', 'distinguish', 'hour', 'power', 'untrammelled', 'prevents', 'welcomed', 'avoided', 'owing', 'claims', 'obligations', 'frequently', 'pleasures', 'repudiated', 'annoyances', 'wise', 'matters', 'greater', 'endures', 'pains', 'worse', 'googletagdisplaydivgptad14745377621222', 'googletagdisplaydivgptad14745377621223', '104101108112641081051121151171094699111109privacy', 'googletagdisplaydivgptad14561483161981'], 'term_freq': [[251, 23, 153, 1, 1, 1, 2, 1, 1, 1, 1, 77, 1, 1, 1, 1, 1, 1, 1, 5, 4, 1, 97, 1, 29, 1, 1, 1, 1, 1, 1, 36, 34, 39, 39, 46, 41, 33, 4, 1, 1, 2, 1, 6, 3, 1, 1, 25, 1, 13, 73, 41, 72, 146, 3, 24, 10, 6, 3, 1, 8, 20, 1, 158, 1, 72, 12, 6, 6, 2, 27, 5, 3, 5, 28, 30, 36, 24, 2, 19, 71, 21, 3, 2, 13, 1, 9, 1, 3, 1, 2, 33, 1, 40, 5, 1, 10, 4, 1, 4, 9, 6, 2, 40, 20, 15, 6, 6, 3, 23, 1, 11, 10, 10, 4, 39, 1, 62, 40, 18, 9, 7, 4, 12, 4, 1, 17, 1, 7, 15, 2, 1, 1, 3, 1, 1, 48, 1, 1, 1, 1, 4, 1, 8, 1, 1, 1, 1, 9, 1, 8, 1, 1, 6, 2, 46, 1, 2, 6, 1, 1, 6, 2, 2, 9, 27, 5, 3, 42, 7, 17, 2, 9, 98, 2, 3, 11, 2, 5, 9, 10, 2, 6, 21, 11, 2, 21, 24, 2, 30, 2, 2, 3, 2, 18, 12, 9, 19, 15, 6, 6, 1, 5, 4, 3, 4, 20, 15, 13, 16, 9, 7, 8, 11, 3, 4, 5, 5, 13, 5, 5, 5, 5, 5, 1, 19, 2, 2, 1, 1, 26, 9, 4, 1, 1, 3, 9, 15, 5, 2, 4, 4, 10, 10, 4, 4, 5, 14, 5, 5, 10, 4, 4, 39, 5, 43, 71, 12, 12, 4, 9, 13, 24, 4, 4, 4, 15, 18, 4, 1, 1, 1, 3, 1, 4, 7, 6, 42, 1, 1, 1, 5, 1, 1, 1, 2, 2, 1, 1, 1, 2, 2, 2, 2, 4, 4, 4, 8, 30, 1, 1, 10, 6, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 6, 2, 1, 1, 9, 18, 6, 16, 5, 4, 5, 40, 7, 6, 8, 4, 4, 6, 4, 4, 4, 4, 6, 6, 39, 15, 4, 6, 14, 6, 5, 6, 27, 11, 8, 6, 14, 4, 5, 6, 5, 12, 1, 1, 3, 1, 1, 1, 6, 1, 1, 2, 9, 3, 6, 2, 3, 1, 2, 1, 1, 8, 1, 3, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 5, 1, 3, 6, 2, 11, 1, 12, 4, 1, 1, 6, 10, 1, 1, 1, 13, 1, 11, 1, 1, 11, 1, 2, 1, 2, 1, 1, 1, 1, 3, 1, 1, 5, 1, 1, 1, 1, 1, 1, 1, 3, 1, 3, 1, 9, 1, 2, 39, 3, 5, 1, 1, 2, 26, 1, 1, 1, 1, 5, 2, 2, 4, 1, 1, 3, 1, 8, 5, 5, 1, 1, 26, 1, 1, 1, 56, 1, 1, 1, 20, 1, 26, 1, 9, 1, 5, 5, 5, 1, 4, 3, 14, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 6, 2, 1, 1, 1, 1, 1, 1, 29, 1, 1, 2, 4, 1, 1, 1, 1, 1, 70, 2, 2, 4, 18, 1, 21, 1, 5, 2, 43, 1, 20, 6, 3, 27, 33, 4, 3, 8, 1, 52, 12, 2, 17, 1, 1, 1, 1, 1, 1, 2, 8, 6, 1, 3, 1, 3, 3, 5, 4, 13, 2, 24, 5, 25, 13, 11, 5, 3, 7, 1, 1, 1, 1, 1, 1, 1, 8, 4, 8, 4, 8, 3, 1, 52, 2, 1, 1, 1, 1, 1, 13, 6, 2, 1, 32, 2, 1, 10, 1, 1, 14, 24, 4, 30, 1, 10, 13, 2, 22, 1, 8, 8, 12, 1, 7, 10, 2, 8, 7, 1, 1, 1, 1, 1, 2, 5, 1, 1, 10, 4, 2, 8, 1, 14, 1, 41, 31, 10, 2, 2, 17, 36, 5, 1, 2, 1, 1, 2, 10, 2, 3, 1, 1, 19, 14, 3, 27, 1, 1, 36, 5, 4, 4, 1, 2, 1, 3, 1, 6, 14, 4, 4, 2, 5, 3, 46, 50, 1, 10, 2, 1, 1, 1, 1, 1, 1, 9, 4, 17, 8, 2, 12, 4, 1, 11, 1, 68, 7, 1, 1, 1, 1, 3, 2, 2, 1, 1, 1, 1, 3, 2, 10, 2, 1, 1, 2, 1, 2, 4, 1, 5, 10, 1, 1, 1, 7, 1, 1, 1, 5, 9, 5, 1, 12, 1, 5, 16, 23, 2, 1, 1, 1, 18, 1, 1, 1, 1, 15, 1, 1, 4, 2, 4, 34, 6, 3, 25, 2, 5, 18, 1, 16, 3, 1, 7, 5, 1, 1, 2, 2, 40, 4, 3, 1, 1, 5, 1, 2, 3, 1, 1, 3, 2, 7, 1, 1, 1, 2, 1, 8, 1, 2, 38, 5, 9, 1, 1, 8, 1, 1, 1, 1, 2, 1, 3, 1, 1, 3, 1, 3, 4, 1, 1, 4, 4, 1, 10, 7, 5, 3, 4, 2, 1, 3, 4, 3, 8, 4, 22, 6, 1, 2, 3, 3, 2, 2, 1, 10, 2, 3, 2, 7, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 16, 5, 1, 1, 1, 4, 1, 1, 6, 17, 2, 2, 3, 1, 1, 1, 7, 1, 5, 5, 4, 1, 7, 9, 1, 1, 1, 3, 1, 1, 1, 1, 1, 2, 7, 3, 1, 1, 5, 1, 2, 1, 1, 1, 3, 1, 1, 2, 1, 9, 1, 4, 1, 4, 3, 1, 1, 1, 1, 1, 1, 2, 1, 5, 1, 3, 16, 4, 25, 1, 7, 6, 6, 1, 4, 5, 4, 1, 1, 1, 1, 9, 6, 6, 1, 6, 2, 1, 1, 1, 1, 4, 1, 5, 1, 2, 1, 1, 2, 1, 4, 1, 4, 3, 5, 5, 2, 1, 1, 1, 2, 2, 5, 3, 2, 1, 1, 4, 3, 8, 2, 8, 4, 1, 4, 2, 1, 1, 1, 2, 6, 3, 8, 3, 12, 3, 6, 1, 8, 1, 1, 2, 3, 4, 1, 15, 2, 1, 1, 3, 2, 2, 2, 1, 1, 1, 1, 1, 1, 2, 4, 10, 3, 1, 12, 1, 1, 1, 1, 2, 8, 5, 1, 3, 4, 1, 4, 3, 1, 7, 25, 2, 5, 2, 2, 7, 14, 6, 3, 4, 2, 7, 1, 1, 1, 1, 1, 1, 4, 1, 4, 1, 3, 1, 1, 9, 1, 1, 1, 9, 1, 1, 1, 1, 1, 1, 5, 1, 5, 1, 1, 2, 3, 1, 1, 18, 6, 3, 2, 1, 1, 1, 2, 1, 3, 5, 8, 1, 2, 2, 1, 15, 1, 7, 1, 1, 5, 3, 4, 3, 12, 21, 2, 1, 11, 1, 3, 1, 1, 1, 1, 3, 13, 2, 1, 2, 30, 20, 2, 2, 1, 9, 2, 2, 1, 1, 2, 3, 1, 4, 3, 4, 1, 3, 5, 8, 3, 2, 2, 3, 9, 1, 2, 2, 16, 5, 1, 1, 1, 10, 17, 1, 8, 3, 4, 1, 7, 1, 3, 1, 8, 4, 2, 2, 6, 5, 1, 1, 1, 6, 4, 2, 3, 1, 2, 10, 4, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 1, 2, 12, 1, 2, 2, 3, 2, 3, 1, 3, 1, 3, 1, 3, 1, 2, 4, 1, 10, 4, 14, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 4, 3, 1, 1, 3, 2, 4, 2, 1, 4, 3, 2, 2, 1, 1, 7, 1, 9, 1, 3, 1, 7, 1, 1, 2, 1, 2, 4, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 5, 1, 2, 1, 2, 1, 2, 1, 3, 5, 1, 1, 1, 5, 1, 2, 1, 1, 9, 1, 1, 3, 3, 1, 3, 1, 1, 2, 7, 2, 1, 13, 1, 2, 5, 1, 1, 4, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 8, 2, 1, 1, 5, 1, 1, 4, 1, 6, 4, 1, 1, 10, 2, 46, 1, 1, 13, 1, 1, 1, 1, 1, 6, 6, 2, 1, 2, 5, 17, 3, 2, 12, 3, 4, 2, 4, 6, 4, 5, 19, 3, 1, 1, 1, 2, 1, 2, 1, 1, 4, 1, 4, 1, 5, 2, 2, 9, 9, 4, 2, 2, 1, 2, 1, 2, 3, 1, 1, 1, 7, 5, 3, 4, 1, 2, 11, 5, 1, 4, 3, 2, 5, 1, 4, 6, 3, 3, 2, 6, 5, 5, 2, 1, 3, 1, 1, 2, 4, 2, 8, 1, 1, 4, 6, 1, 11, 9, 8, 3, 4, 2, 2, 6, 1, 4, 7, 5, 1, 1, 2, 1, 11, 2, 1, 1, 1, 1, 1, 6, 1, 7, 2, 2, 9, 1, 3, 3, 1, 1, 3, 2, 1, 4, 8, 1, 6, 1, 11, 1, 2, 1, 1, 1, 1, 1, 2, 3, 2, 2, 1, 3, 7, 1, 2, 7, 1, 3, 6, 1, 1, 1, 1, 1, 6, 1, 1, 11, 2, 13, 1, 1, 35, 1, 1, 2, 2, 1, 4, 4, 1, 2, 1, 2, 2, 9, 1, 1, 1, 2, 5, 1, 2, 4, 1, 1, 1, 3, 1, 1, 1, 1, 1, 5, 1, 4, 1, 2, 1, 2, 1, 1, 10, 4, 1, 6, 14, 1, 1, 1, 2, 1, 1, 1, 6, 1, 1, 2, 26, 14, 1, 1, 1, 1, 3, 1, 1, 1, 12, 1, 2, 1, 1, 3, 1, 1, 1, 1, 5, 2, 3, 3, 1, 9, 1, 1, 3, 1, 1, 9, 4, 1, 1, 1, 23, 1, 5, 2, 1, 3, 9, 1, 1, 1, 2, 1, 18, 10, 3, 3, 2, 7, 2, 1, 7, 11, 6, 2, 7, 5, 4, 6, 1, 22, 3, 1, 5, 5, 2, 2, 1, 1, 2, 9, 3, 7, 1, 5, 14, 2, 1, 3, 3, 1, 2, 1, 1, 2, 2, 8, 4, 1, 1, 1, 5, 2, 2, 5, 7, 2, 5, 5, 1, 2, 6, 1, 1, 2, 1, 6, 4, 1, 5, 7, 1, 8, 2, 2, 3, 1, 2, 3, 2, 6, 3, 1, 1, 3, 3, 1, 9, 4, 8, 1, 1, 3, 1, 1, 1, 2, 9, 4, 1, 2, 4, 3, 1, 1, 1, 1, 2, 3, 2, 1, 1, 5, 3, 2, 1, 1, 1, 2, 1, 1, 6, 2, 1, 2, 3, 1, 4, 8, 1, 2, 1, 3, 1, 1, 1, 1, 4, 1, 1, 1, 2, 5, 4, 1, 1, 3, 1, 3, 13, 9, 1, 2, 3, 2, 1, 8, 3, 2, 2, 1, 13, 2, 2, 2, 4, 3, 4, 10, 3, 4, 2, 1, 2, 7, 2, 1, 6, 1, 5, 1, 1, 1, 7, 12, 2, 2, 1, 1, 2, 4, 3, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 2, 8, 1, 1, 1, 3, 2, 5, 3, 3, 2, 1, 2, 3, 4, 1, 1, 2, 1, 1, 1, 1, 4, 8, 1, 1, 5, 3, 1, 3, 1, 1, 1, 4, 3, 1, 1, 1, 1, 2, 1, 4, 1, 3, 3, 9, 5, 1, 3, 5, 4, 4, 4, 5, 5, 4, 4, 4, 4, 4, 5, 4, 4, 4, 3, 1, 1, 1, 2, 1, 1, 2, 1, 2, 1, 1, 5, 1, 1, 2, 1, 7, 1, 2, 1, 1, 1, 1, 2, 18, 1, 9, 1, 2, 3, 1, 1, 1, 1, 2, 2, 1, 1, 1, 5, 2, 1, 2, 2, 1, 4, 4, 2, 2, 1, 6, 5, 7, 1, 3, 2, 1, 1, 3, 6, 7, 1, 2, 2, 2, 1, 2, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 2, 1, 3, 1, 2, 3, 2, 1, 1, 1, 3, 2, 1, 4, 3, 1, 1, 2, 1, 2, 1, 1, 2, 2, 1, 1, 1, 2, 2, 3, 2, 1, 2, 3, 2, 5, 5, 1, 3, 1, 1, 1, 2, 3, 2, 6, 2, 1, 1, 1, 1, 5, 3, 1, 1, 1, 3, 1, 1, 3, 2, 1, 4, 1, 1, 2, 1, 1, 1, 6, 2, 2, 2, 1, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 1, 2, 2, 2, 3, 1, 1, 2, 4, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 3, 2, 2, 1, 1, 1, 3, 1, 1, 3, 6, 1, 3, 1, 1, 1, 3, 1, 2, 1, 2, 2, 1, 1, 1, 1, 3, 2, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 3, 1, 1, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 4, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 4, 1, 2, 3, 2, 1, 1, 9, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 3, 1, 2, 1, 2, 4, 1, 1, 2, 1, 1, 1, 1, 1, 1, 6, 1, 3, 1, 1, 3, 2, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 3, 4, 2, 2, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 2, 1, 3, 2, 1, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 5, 1, 2, 1, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 3, 1, 1, 1, 3, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 5, 1, 1, 1, 3, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 3, 1, 2, 1, 1, 1, 4, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 2, 1, 1, 4, 1, 4, 1, 1, 1, 1, 3, 1, 3, 2, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 5, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 2, 1, 1, 1, 1, 2, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 6, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 2, 1, 2, 2, 1, 1, 1, 1, 1, 7, 1, 1, 1, 1, 5, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 3, 1, 1, 3, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 2, 2, 2, 1, 2, 1, 2, 1, 2, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 4, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 3, 2, 1, 1, 3, 1, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 3, 1, 2, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 4, 2, 4, 1, 1, 2, 1, 2, 2, 1, 2, 2, 1, 1, 2, 1, 1, 2, 2, 1, 4, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 244, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 4, 0, 4, 5, 0, 0, 0, 0, 8, 1, 0, 0, 9, 1, 0, 0, 3, 0, 1, 0, 0, 1, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 13, 0, 11, 0, 1, 2, 3, 5, 0, 0, 1, 0, 0, 0, 0, 5, 2, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 2, 9, 1, 2, 1, 2, 0, 0, 8, 9, 7, 3, 1, 0, 2, 0, 0, 0, 0, 9, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 7, 0, 0, 1, 0, 0, 1, 0, 7, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 13, 0, 0, 5, 0, 0, 0, 0, 0, 5, 4, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 4, 0, 0, 0, 4, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 6, 0, 5, 4, 1, 0, 0, 1, 2, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 4, 1, 0, 0, 2, 0, 2, 2, 0, 0, 0, 1, 2, 1, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 1, 5, 3, 4, 1, 0, 0, 4, 0, 1, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 1, 4, 0, 3, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 14, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 2, 1, 1, 0, 1, 1, 1, 4, 4, 1, 1, 0, 0, 6, 3, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0, 0, 5, 0, 2, 2, 1, 1, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 3, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 2, 1, 1, 0, 6, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 1, 5, 7, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 5, 0, 2, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 9, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 5, 0, 0, 2, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 16, 3, 1, 0, 0, 0, 0, 0, 0, 4, 3, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 1, 4, 4, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 9, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 2, 0, 2, 25, 18, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 8, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 7, 0, 1, 0, 0, 1, 12, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 16, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 11, 0, 0, 0, 2, 0, 0, 0, 0, 0, 12, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 3, 0, 4, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 4, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 3, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 7, 1, 1, 0, 0, 0, 4, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 1, 2, 0, 0, 0, 0, 4, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0, 23, 0, 9, 0, 4, 0, 0, 0, 0, 0, 0, 6, 2, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 11, 1, 2, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 2, 0, 0, 0, 4, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 2, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 4, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 27, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 125, 5, 1, 3, 1, 13, 17, 2, 2, 7, 1, 2, 15, 17, 1, 2, 8, 1, 1, 1, 1, 1, 1, 5, 2, 3, 1, 1, 1, 1, 1, 14, 7, 1, 2, 1, 1, 2, 1, 3, 2, 1, 2, 1, 1, 3, 1, 1, 2, 1, 1, 4, 1, 3, 2, 2, 2, 5, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 5, 2, 1, 2, 1, 2, 1, 2, 1, 16, 7, 1, 2, 6, 4, 1, 5, 1, 1, 1, 2, 1, 2, 9, 2, 1, 1, 2, 4, 1, 1, 4, 1, 1, 2, 1, 1, 2, 3, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 2, 8, 1, 2, 8, 8, 10, 3, 1, 2, 8, 1, 4, 4, 1, 2, 1, 3, 1, 1, 2, 1, 17, 1, 1, 3, 1, 4, 1, 2, 2, 2, 1, 3, 1, 1, 1, 9, 1, 1, 1, 3, 1, 3, 1, 1, 1, 1, 1, 9, 1, 2, 2, 2, 2, 1, 1, 4, 2, 2, 3, 1, 5, 6, 1, 1, 1, 1, 2, 4, 1, 1, 1, 1, 3, 1, 6, 1, 5, 2, 1, 1, 2, 3, 1, 2, 1, 1, 4, 27, 2, 2, 3, 8, 1, 1, 1, 1, 14, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 1, 7, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 3, 2, 2, 3, 3, 1, 1, 1, 4, 6, 1, 12, 1, 6, 2, 1, 2, 1, 1, 7, 4, 13, 1, 9, 1, 1, 1, 6, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 2, 2, 4, 1, 1, 1, 1, 9, 1, 6, 4, 4, 4, 1, 1, 1, 3, 1, 1, 1, 2, 4, 1, 1, 1, 2, 5, 1, 1, 1, 1, 2, 3, 2, 2, 2, 1, 1, 5, 12, 2, 1, 2, 1, 1, 1, 1, 1, 8, 1, 1, 1, 3, 3, 2, 1, 1, 1, 1, 1, 3, 1, 2, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 5, 2, 1, 3, 1, 1, 2, 3, 3, 1, 3, 2, 4, 2, 2, 1, 3, 3, 2, 1, 2, 1, 2, 7, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 2, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 6, 2, 1, 1, 1, 1, 1, 1, 3, 9, 1, 1, 5, 1, 1, 2, 2, 1, 1, 1, 2, 1, 1, 1, 1, 10, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 3, 1, 1, 1, 1, 2, 1, 1, 2, 1, 2, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 2, 4, 1, 1, 2, 1, 1, 2, 4, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 11, 1, 2, 2, 3, 1, 1, 3, 3, 2, 1, 2, 2, 1, 2, 1, 1, 1, 2, 9, 2, 1, 1, 7, 3, 1, 1, 1, 1, 1, 2, 1, 1, 1, 3, 2, 2, 1, 1, 3, 1, 1, 4, 2, 1, 1, 1, 2, 2, 4, 1, 1, 1, 1, 2, 1, 1, 3, 4, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 9, 1, 3, 1, 1, 1, 1, 1, 2, 1, 1, 3, 1, 1, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 9, 1, 1, 1, 1, 2, 1, 1, 17, 10, 1, 1, 1, 1, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 4, 3, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 2, 1, 2, 2, 1, 3, 3, 1, 1, 1, 2, 1, 4, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 4, 1, 3, 1, 2, 2, 3, 1, 1, 2, 1, 3, 1, 1, 1, 2, 1, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 22, 25, 2, 2, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 8, 3, 5, 7, 5, 4, 2, 4, 10, 1, 2, 1, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1, 1, 3, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, 2, 4, 3, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 3, 3, 4, 4, 16, 4, 1, 1, 4, 1, 1, 1, 1, 1, 2, 3, 3, 3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 9, 2, 3, 1, 1, 3, 2, 1, 2, 3, 1, 1, 1, 1, 2, 1, 3, 1, 1, 1, 1, 1, 2, 2, 2, 1, 2, 2, 2, 1, 3, 1, 1, 4, 1, 3, 2, 2, 2, 1, 1, 1, 1, 1, 1, 3, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 6, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 2, 2, 2, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 1, 1, 1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1]]}\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction import stop_words\n", + "bow = get_bow_from_docs([\n", + " 'www.coursereport.com_ironhack.html',\n", + " 'en.wikipedia.org_Data_analysis.html',\n", + " 'www.lipsum.com.html'\n", + " ],\n", + " stop_words.ENGLISH_STOP_WORDS\n", + ")\n", + "\n", + "print(bow)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Do you see any problem in the output? How do you improve the output?\n", + "\n", + "A good way to improve your codes is to look into the HTML data sources and try to understand where the messy output came from. A good data analyst always learns about the data in depth in order to perform the job well.\n", + "\n", + "Spend 20-30 minutes to improve your functions or until you feel you are good at string operations. This lab is just a practice so you don't need to stress yourself out. If you feel you've practiced enough you can stop and move on the next challenge question." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.0" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-functional-programming/your-code/Q3_solution.ipynb b/module-1_labs/lab-functional-programming/your-code/Q3_solution.ipynb new file mode 100644 index 0000000..29247bb --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/Q3_solution.ipynb @@ -0,0 +1,285 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Lambda** is a special Python function type that is **anonymous**. By *anonymous* it means a lambda function does not have name. Lambda functions are embedded inside codes so that you don't call them like calling regular Python functions.\n", + "\n", + "**`Map`** applies a function to all the items in an input list. The function that is applied can be a standard or a lambda function.\n", + "\n", + "For instance, below is an example of multiplying number tuples in a list:" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[2, 12, 30]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "items = [(1,2), (3,4), (5,6)]\n", + "\n", + "def multiply(num_tuple):\n", + " return num_tuple[0]*num_tuple[1]\n", + "list(map(multiply, items))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "...is the same as:" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[2, 12, 30]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "items = [(1,2), (3,4), (5,6)]\n", + "list(map(lambda item: item[0]*item[1], items))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Why do we sometimes use `lambda` and `map`? Because, as you see in the example above, they make your code really concise by combining 3 lines of code to 1 line.\n", + "\n", + "Besides `map`, there is also **`filter`** that selectively returns elements in an array according to whether you return `True`. There is also **`reduce`** that performs computation on a list of items then returns result.\n", + "\n", + "Here is a [good tutorial](http://book.pythontips.com/en/latest/map_filter.html) about `map`, `filter`, and `reduce`. Read it if you are not familiar with how they are used. Then proceed to the next cell." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the next cell, use `filter` and `lambda` to return a list that contains positive numbers only. The output should be:\n", + "\n", + "```[1, 4, 5]```" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[1, 4, 5]" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "numbers = [1, 4, -1, -100, 0, 5, -99]\n", + "list(filter(lambda x: x>0, numbers))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, use `reduce` and `lambda` to return a string that only contains English terms. The English terms are separated with a whitespace ` `.\n", + "\n", + "Hints: \n", + "\n", + "* If your Jupyter Notebook cannot import `langdetect`, you need to install it with `pip install langdetect`. If Jupyter Notebook still cannot find the library, try install with `python3 -m pip install langdetect`. This is because you need to install `langdetect` in the same Python run environment where Jupyter Notebook is running.\n", + "\n", + "* If a word is English, `langdetect.detect(word)=='en'` will return `True`.\n", + "\n", + "Your output should read:\n", + "\n", + "```'good morning everyone'```" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'good morning everyone'" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import langdetect\n", + "from functools import reduce\n", + "words = ['good morning', '早上好', 'доброго', 'おはようございます', 'everyone', '大家', 'каждый', 'みんな']\n", + "\n", + "reduce((lambda x, y: x if not langdetect.detect(y)=='en' else ''.join([x, ' ', y])), words)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Question" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finally, if you still have time, convert your response in Q2 by using `lambda`, `map`, `filter`, or `reduce` where applicable. Enter your function in the cell below.\n", + "\n", + "As you write Python functions, generally you don't want to make your function too long. Long functions are difficult to read and difficult to debug. If a function is getting too long, consider breaking it into sever shorter functions where the main function calls other functions. If anything goes wrong, you can output debug messages in each of the functions to check where exactly the error is." + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "def strip_html_tags(html):\n", + " s = re.sub(\"\", \"\", html)\n", + " s = re.sub(\"<.*?>\", \"\", s)\n", + " return(s)\n", + "\n", + "from string import punctuation\n", + "def remove_punctuation(html):\n", + " s = ''.join(c for c in html if c not in punctuation)\n", + " return(s)\n", + "\n", + "def to_lower_case(html):\n", + " return(html.lower())\n", + "\n", + "def read_doc(doc):\n", + " f = open(doc, 'r')\n", + " s = f.read()\n", + " s = strip_html_tags(s)\n", + " s = remove_punctuation(s)\n", + " s = to_lower_case(s)\n", + " f.close()\n", + " return(s)\n", + "\n", + "def calc_term_freq(s, bag_of_words):\n", + " terms = s.split()\n", + " freq = list(map(lambda word: terms.count(word), bag_of_words))\n", + " return(freq)\n", + "\n", + "def get_bow_from_docs(docs, stop_words=[]):\n", + " corpus = []\n", + " bag_of_words = []\n", + " term_freq = []\n", + " \n", + " corpus = list(map(read_doc, docs))\n", + " \n", + " for s in corpus:\n", + " s = ''.join(c for c in s if c not in punctuation)\n", + " terms = s.split()\n", + " for term in terms:\n", + " if not term in bag_of_words and not term in stop_words:\n", + " bag_of_words.append(term)\n", + " \n", + " \n", + " term_freq = list(map((lambda s: calc_term_freq(s, bag_of_words)), corpus))\n", + " \n", + " return({\n", + " \"bag_of_words\": bag_of_words,\n", + " \"term_freq\": term_freq\n", + " })\n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Test your function below with the Bag of Words lab docs (it's easier for you to debug your code). Your output should be:\n", + "\n", + "```{'bag_of_words': ['ironhack', 'cool', 'love', 'student'], 'term_freq': [[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]}```" + ] + }, + { + "cell_type": "code", + "execution_count": 81, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'bag_of_words': ['ironhack', 'cool', 'love', 'student'], 'term_freq': [[1, 1, 0, 0], [1, 0, 1, 0], [1, 0, 0, 1]]}\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction import stop_words\n", + "bow = get_bow_from_docs([\n", + " '../../lab-bag-of-words/your-code/doc1.txt', \n", + " '../../lab-bag-of-words/your-code/doc2.txt', \n", + " '../../lab-bag-of-words/your-code/doc3.txt'],\n", + " stop_words.ENGLISH_STOP_WORDS\n", + ")\n", + "\n", + "print(bow)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.0" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-functional-programming/your-code/main-solutions.ipynb b/module-1_labs/lab-functional-programming/your-code/main-solutions.ipynb new file mode 100644 index 0000000..4d11945 --- /dev/null +++ b/module-1_labs/lab-functional-programming/your-code/main-solutions.ipynb @@ -0,0 +1,686 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Iterators, Generators and `yield`. \n", + "\n", + "In iterator in Python is an object that represents a stream of data. However, iterators contain a countable number of values. We traverse through the iterator and return one value at a time. All iterators support a `next` function that allows us to traverse through the iterator. We can create an iterator using the `iter` function that comes with the base package of Python. Below is an example of an iterator." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n" + ] + } + ], + "source": [ + "# We first define our iterator:\n", + "\n", + "iterator = iter([1,2,3])\n", + "\n", + "# We can now iterate through the object using the next function\n", + "\n", + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2\n" + ] + } + ], + "source": [ + "# We continue to iterate through the iterator.\n", + "\n", + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3\n" + ] + } + ], + "source": [ + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "ename": "StopIteration", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mStopIteration\u001b[0m Traceback (most recent call last)", + "\u001b[1;32m\u001b[0m in \u001b[0;36m\u001b[1;34m\u001b[0m\n\u001b[0;32m 1\u001b[0m \u001b[1;31m# After we have iterated through all elements, we will get a StopIteration Error\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0;32m 2\u001b[0m \u001b[1;33m\u001b[0m\u001b[0m\n\u001b[1;32m----> 3\u001b[1;33m \u001b[0mprint\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0mnext\u001b[0m\u001b[1;33m(\u001b[0m\u001b[0miterator\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m)\u001b[0m\u001b[1;33m\u001b[0m\u001b[1;33m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[1;31mStopIteration\u001b[0m: " + ] + } + ], + "source": [ + "# After we have iterated through all elements, we will get a StopIteration Error\n", + "\n", + "print(next(iterator))" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "2\n", + "3\n" + ] + } + ], + "source": [ + "# We can also iterate through an iterator using a for loop like this:\n", + "# Note: we cannot go back directly in an iterator once we have traversed through the elements. \n", + "# This is why we are redefining the iterator below\n", + "\n", + "iterator = iter([1,2,3])\n", + "\n", + "for i in iterator:\n", + " print(i)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, write a function that takes an iterator and returns the first element in the iterator and returns the first element in the iterator that is divisible by 2. Assume that all iterators contain only numeric data. If we have not found a single element that is divisible by 2, return zero." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "def divisible2(iterator):\n", + " # This function takes an iterable and returns the first element that is divisible by 2 and zero otherwise\n", + " # Input: Iterable\n", + " # Output: Integer\n", + " \n", + " # Sample Input: iter([1,2,3])\n", + " # Sample Output: 2\n", + " \n", + " # Your code here:\n", + " \n", + " for i in iterator:\n", + " if i % 2 == 0:\n", + " return i\n", + " return 0" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Generators\n", + "\n", + "It is quite difficult to create your own iterator since you would have to implement a `next` function. Generators are functions that enable us to create iterators. The difference between a function and a generator is that instead of using `return`, we use `yield`. For example, below we have a function that returns an iterator containing the numbers 0 through n:" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "def firstn(n):\n", + " number = 0\n", + " while number < n:\n", + " yield number\n", + " number = number + 1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If we pass 5 to the function, we will see that we have a iterator containing the numbers 0 through 4" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n", + "1\n", + "2\n", + "3\n", + "4\n" + ] + } + ], + "source": [ + "iterator = firstn(5)\n", + "\n", + "for i in iterator:\n", + " print(i)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, create a generator that takes a number and returnsan iterator containing all even numbers between 0 and the number you passed to the generator." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "def even_iterator(n):\n", + " # This function produces an iterator containing all even numbers between 0 and n\n", + " # Input: integer\n", + " # Output: iterator\n", + " \n", + " # Sample Input: 5\n", + " # Sample Output: iter([0, 2, 4])\n", + " \n", + " # Your code here:\n", + " number = 0\n", + " while number < n:\n", + " if number % 2 == 0:\n", + " yield number\n", + " number = number + 1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Applying Functions to DataFrames\n", + "\n", + "In this challenge, we will look at how to transform cells or entire columns at once.\n", + "\n", + "First, let's load a dataset. We will download the famous Iris classification dataset in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [], + "source": [ + "columns = ['sepal_length', 'sepal_width', 'petal_length','petal_width','iris_type']\n", + "iris = pd.read_csv(\"https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data\", names=columns)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's look at the dataset using the `head` function." + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
sepal_lengthsepal_widthpetal_lengthpetal_widthiris_type
05.13.51.40.2Iris-setosa
14.93.01.40.2Iris-setosa
24.73.21.30.2Iris-setosa
34.63.11.50.2Iris-setosa
45.03.61.40.2Iris-setosa
\n", + "
" + ], + "text/plain": [ + " sepal_length sepal_width petal_length petal_width iris_type\n", + "0 5.1 3.5 1.4 0.2 Iris-setosa\n", + "1 4.9 3.0 1.4 0.2 Iris-setosa\n", + "2 4.7 3.2 1.3 0.2 Iris-setosa\n", + "3 4.6 3.1 1.5 0.2 Iris-setosa\n", + "4 5.0 3.6 1.4 0.2 Iris-setosa" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "iris.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's start off by using built-in functions. Try to apply the numpy mean function and describe what happens in the comments of the code." + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length 5.843333\n", + "sepal_width 3.054000\n", + "petal_length 3.758667\n", + "petal_width 1.198667\n", + "dtype: float64" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "np.mean(iris)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, we'll apply the standard deviation function in numpy (`np.std`). Describe what happened in the comments." + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "sepal_length 0.825301\n", + "sepal_width 0.432147\n", + "petal_length 1.758529\n", + "petal_width 0.760613\n", + "dtype: float64" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "np.std(iris)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The measurements are in centimeters. Let's convert them all to inches. First, we will create a dataframe that contains only the numeric columns. Assign this new dataframe to `iris_numeric`." + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "iris_numeric = iris[['sepal_length', 'sepal_width', 'petal_length','petal_width']]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, we will write a function that converts centimeters to inches in the cell below. Recall that 1cm = 0.393701in." + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [], + "source": [ + "def cm_to_in(x):\n", + " # This function takes in a numeric value in centimeters and converts it to inches\n", + " # Input: numeric value\n", + " # Output: float\n", + " \n", + " # Sample Input: 1.0\n", + " # Sample Output: 0.393701\n", + " \n", + " # Your code here:\n", + " return 0.393701 * x" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now convert all columns in `iris_numeric` to inches in the cell below. We like to think of functional transformations as immutable. Therefore, save the transformed data in a dataframe called `iris_inch`." + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "iris_inch = cm_to_in(iris_numeric)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We have just found that the original measurements were off by a constant. Define the global constant `error` and set it to 2. Write a function that uses the global constant and adds it to each cell in the dataframe. Apply this function to `iris_numeric` and save the result in `iris_constant`." + ] + }, + { + "cell_type": "code", + "execution_count": 82, + "metadata": {}, + "outputs": [], + "source": [ + "# Define constant below:\n", + "\n", + "error = 2\n", + "\n", + "def add_constant(x):\n", + " # This function adds a global constant to our input.\n", + " # Input: numeric value\n", + " # Output: numeric value\n", + " \n", + " # Your code here:\n", + " \n", + " return x + error\n", + "\n", + "iris_constant = add_constant(iris_numeric)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Applying Functions to Columns\n", + "\n", + "Read more about applying functions to either rows or columns [here](https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.apply.html) and write a function that computes the maximum value for each row of `iris_numeric`" + ] + }, + { + "cell_type": "code", + "execution_count": 85, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 5.1\n", + "1 4.9\n", + "2 4.7\n", + "3 4.6\n", + "4 5.0\n", + "5 5.4\n", + "6 4.6\n", + "7 5.0\n", + "8 4.4\n", + "9 4.9\n", + "10 5.4\n", + "11 4.8\n", + "12 4.8\n", + "13 4.3\n", + "14 5.8\n", + "15 5.7\n", + "16 5.4\n", + "17 5.1\n", + "18 5.7\n", + "19 5.1\n", + "20 5.4\n", + "21 5.1\n", + "22 4.6\n", + "23 5.1\n", + "24 4.8\n", + "25 5.0\n", + "26 5.0\n", + "27 5.2\n", + "28 5.2\n", + "29 4.7\n", + " ... \n", + "120 6.9\n", + "121 5.6\n", + "122 7.7\n", + "123 6.3\n", + "124 6.7\n", + "125 7.2\n", + "126 6.2\n", + "127 6.1\n", + "128 6.4\n", + "129 7.2\n", + "130 7.4\n", + "131 7.9\n", + "132 6.4\n", + "133 6.3\n", + "134 6.1\n", + "135 7.7\n", + "136 6.3\n", + "137 6.4\n", + "138 6.0\n", + "139 6.9\n", + "140 6.7\n", + "141 6.9\n", + "142 5.8\n", + "143 6.8\n", + "144 6.7\n", + "145 6.7\n", + "146 6.3\n", + "147 6.5\n", + "148 6.2\n", + "149 5.9\n", + "Length: 150, dtype: float64" + ] + }, + "execution_count": 85, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "iris_numeric.apply(max, axis=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Compute the combined lengths for each row and the combined widths for each row using a function. Assign these values to new columns `total_length` and `total_width`." + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "def width(a):\n", + " return a['sepal_width']+a['petal_width']\n", + "\n", + "def length(a):\n", + " return a['sepal_length']+a['petal_length']\n", + "\n", + "iris_numeric['total_width'] = iris_numeric.apply(width, axis=1)\n", + "iris_numeric['total_length'] = iris_numeric.apply(length, axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1_labs/lab-lambda-functions/your-code/main-solutions.ipynb b/module-1_labs/lab-lambda-functions/your-code/main-solutions.ipynb new file mode 100644 index 0000000..2410609 --- /dev/null +++ b/module-1_labs/lab-lambda-functions/your-code/main-solutions.ipynb @@ -0,0 +1,402 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Passing a Lambda Expression to a Function\n", + "\n", + "In the next excercise you will create a function that returns a lambda expression. Create a function called `modify_list`. The function takes two arguments, a list and a lambda expression. The function iterates through the list and applies the lambda expression to every element in the list." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "def modify_list(lst, lmbda):\n", + " \"\"\"\n", + " Input: list and lambda expression\n", + " \n", + " Output: the transformed list\n", + " \"\"\"\n", + " \n", + " #your code here:\n", + " \n", + " return [lmbda(x) for x in lst]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Now we will define a lambda expression that will transform the elements of the list. \n", + "\n", + "In the cell below, create a lambda expression that converts Celsius to Kelvin. Recall that 0°C + 273.15 = 273.15K" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "ctok = lambda c: c + 273.15" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finally, convert the list of temperatures below from Celsius to Kelvin." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[285.15, 296.15, 311.15, 218.14999999999998, 297.15]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "temps = [12, 23, 38, -55, 24]\n", + "\n", + "# Your code here:\n", + "\n", + "modify_list(temps, ctok)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### In this part, we will define a function that returns a lambda expression\n", + "\n", + "In the cell below, write a lambda expression that takes two numbers and returns 1 if one is divisible by the other and zero otherwise. Call the lambda expression `mod`." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "mod = lambda a, b: 1 if a % b == 0 else 0" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Now create a function that returns mod. The function only takes one argument - the first number in the `mod` lambda function. \n", + "\n", + "Note: the lambda function above took two arguments, the lambda function in the return statement only takes one argument but also uses the argument passed to the function." + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "def divisor(b):\n", + " \"\"\"\n", + " input: a number\n", + " output: a function that returns 1 if the number is divisible by another number (to be passed later) and zero otherwise\n", + " \"\"\"\n", + " \n", + " # Your code here:\n", + " \n", + " return lambda a: 1 if a % b == 0 else 0" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finally, pass the number 5 to `divisor`. Now the function will check whether a number is divisble by 5. Assign this function to `divisible5`" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "divisible5 = divisor(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Test your function with the following test cases:" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "divisible5(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "divisible5(8)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Using Lambda Expressions in List Comprehensions\n", + "\n", + "In the following challenge, we will combine two lists using a lambda expression in a list comprehension. \n", + "\n", + "To do this, we will need to introduce the `zip` function. The `zip` function returns an iterator of tuples." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[(1,), (2,), (3,), (4,), (5,)]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Here is an example of passing one list to the zip function. \n", + "# Since the zip function returns an iterator, we need to evaluate the iterator by using a list comprehension.\n", + "\n", + "l = [1,2,3,4,5]\n", + "[x for x in zip(l)]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Using the `zip` function, let's iterate through two lists and add the elements by position. Here is an example using a list comprehension." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[22, 39, 87, 33]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list1 = [21, 35, 72, 11]\n", + "list2 = [1, 4, 15, 22]\n", + "\n", + "[a + b for (a, b) in zip(list1, list2)]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Using the `zip` function, write a lambda expression that combines the two strings (with a space between the strings) from both lists unless the two strings are identical." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Green eggs', 'cheese', 'English cucumber', 'tomato']" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list1 = ['Green', 'cheese', 'English', 'tomato']\n", + "list2 = ['eggs', 'cheese', 'cucumber', 'tomato']\n", + "\n", + "#Your code here:\n", + "\n", + "combiner = lambda a, b: a+' '+b if a != b else a\n", + "[combiner(a, b) for (a, b) in zip(list1, list2)]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3 - Using Lambda Expressions as Arguments\n", + "\n", + "#### In this challenge, we will zip together two lists and sort by the resulting tuple.\n", + "\n", + "In the cell below, take the two lists provided, zip them together and sort by the first letter of the second element of each tuple. Do this using a lambda function." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('Political Science', 'Essay'),\n", + " ('Computer Science', 'Homework'),\n", + " ('Engineering', 'Lab'),\n", + " ('Mathematics', 'Module')]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "list1 = ['Engineering', 'Computer Science', 'Political Science', 'Mathematics']\n", + "list2 = ['Lab', 'Homework', 'Essay', 'Module']\n", + "\n", + "# Your code here:\n", + "\n", + "second_sort = lambda a: a[1]\n", + "sorted(zip(list1, list2), key=second_sort)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Sort a Dictionary by Values\n", + "\n", + "Given the dictionary below, sort it by values rather than by keys. Use a lambda function to specify the values as a sorting key." + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[('Toyota', 1995), ('Honda', 1997), ('Audi', 2001), ('BMW', 2005)]" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "d = {'Honda': 1997, 'Toyota': 1995, 'Audi': 2001, 'BMW': 2005}\n", + "\n", + "# Your code here:\n", + "\n", + "sorted(d.items(), key=lambda x: x[1])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1_labs/lab-list-comprehensions/your-code/main_solutions.ipynb b/module-1_labs/lab-list-comprehensions/your-code/main_solutions.ipynb new file mode 100644 index 0000000..1b11527 --- /dev/null +++ b/module-1_labs/lab-list-comprehensions/your-code/main_solutions.ipynb @@ -0,0 +1,1030 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# List Comprehensions Lab\n", + "\n", + "Complete the following set of exercises to solidify your knowledge of list comprehensions." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 1. Use a list comprehension to create and print a list of consecutive integers starting with 1 and ending with 50." + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "[i for i in range(10)]" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50]\n" + ] + } + ], + "source": [ + "lst = [i+1 for i in range(50)]\n", + "\n", + "print(lst)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2. Use a list comprehension to create and print a list of even numbers starting with 2 and ending with 200." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200]\n" + ] + } + ], + "source": [ + "lst = [i+2 for i in range(200) if i % 2 == 0]\n", + "\n", + "print(lst)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 3. Use a list comprehension to create and print a list containing all elements of the 10 x 4 Numpy array below." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "a = np.array([[0.84062117, 0.48006452, 0.7876326 , 0.77109654],\n", + " [0.44409793, 0.09014516, 0.81835917, 0.87645456],\n", + " [0.7066597 , 0.09610873, 0.41247947, 0.57433389],\n", + " [0.29960807, 0.42315023, 0.34452557, 0.4751035 ],\n", + " [0.17003563, 0.46843998, 0.92796258, 0.69814654],\n", + " [0.41290051, 0.19561071, 0.16284783, 0.97016248],\n", + " [0.71725408, 0.87702738, 0.31244595, 0.76615487],\n", + " [0.20754036, 0.57871812, 0.07214068, 0.40356048],\n", + " [0.12149553, 0.53222417, 0.9976855 , 0.12536346],\n", + " [0.80930099, 0.50962849, 0.94555126, 0.33364763]])" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.84062117, 0.48006452, 0.7876326, 0.77109654, 0.44409793, 0.09014516, 0.81835917, 0.87645456, 0.7066597, 0.09610873, 0.41247947, 0.57433389, 0.29960807, 0.42315023, 0.34452557, 0.4751035, 0.17003563, 0.46843998, 0.92796258, 0.69814654, 0.41290051, 0.19561071, 0.16284783, 0.97016248, 0.71725408, 0.87702738, 0.31244595, 0.76615487, 0.20754036, 0.57871812, 0.07214068, 0.40356048, 0.12149553, 0.53222417, 0.9976855, 0.12536346, 0.80930099, 0.50962849, 0.94555126, 0.33364763]\n" + ] + } + ], + "source": [ + "lst = [x for i in a for x in i]\n", + "\n", + "print(lst)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4. Add a condition to the list comprehension above so that only values greater than or equal to 0.5 are printed." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.84062117, 0.7876326, 0.77109654, 0.81835917, 0.87645456, 0.7066597, 0.57433389, 0.92796258, 0.69814654, 0.97016248, 0.71725408, 0.87702738, 0.76615487, 0.57871812, 0.53222417, 0.9976855, 0.80930099, 0.50962849, 0.94555126]\n" + ] + } + ], + "source": [ + "lst = [x for i in a for x in i if x >= 0.5]\n", + "\n", + "print(lst)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 5. Use a list comprehension to create and print a list containing all elements of the 5 x 2 x 3 Numpy array below." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "b = np.array([[[0.55867166, 0.06210792, 0.08147297],\n", + " [0.82579068, 0.91512478, 0.06833034]],\n", + "\n", + " [[0.05440634, 0.65857693, 0.30296619],\n", + " [0.06769833, 0.96031863, 0.51293743]],\n", + "\n", + " [[0.09143215, 0.71893382, 0.45850679],\n", + " [0.58256464, 0.59005654, 0.56266457]],\n", + "\n", + " [[0.71600294, 0.87392666, 0.11434044],\n", + " [0.8694668 , 0.65669313, 0.10708681]],\n", + "\n", + " [[0.07529684, 0.46470767, 0.47984544],\n", + " [0.65368638, 0.14901286, 0.23760688]]])" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.55867166, 0.06210792, 0.08147297, 0.82579068, 0.91512478, 0.06833034, 0.05440634, 0.65857693, 0.30296619, 0.06769833, 0.96031863, 0.51293743, 0.09143215, 0.71893382, 0.45850679, 0.58256464, 0.59005654, 0.56266457, 0.71600294, 0.87392666, 0.11434044, 0.8694668, 0.65669313, 0.10708681, 0.07529684, 0.46470767, 0.47984544, 0.65368638, 0.14901286, 0.23760688]\n" + ] + } + ], + "source": [ + "lst = [y for i in b for x in i for y in x]\n", + "\n", + "print(lst)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 5. Add a condition to the list comprehension above so that the last value in each subarray is printed, but only if it is less than or equal to 0.5." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.08147297, 0.06833034, 0.30296619, 0.45850679, 0.11434044, 0.10708681, 0.47984544, 0.23760688]\n" + ] + } + ], + "source": [ + "lst = [x[-1] for i in b for x in i if x[-1] <= 0.5]\n", + "\n", + "print(lst)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 6. Use a list comprehension to select and print the names of all CSV files in the */data* directory." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['sample_file_4.csv', 'sample_file_2.csv', 'sample_file_6.csv', 'sample_file_0.csv', 'sample_file_3.csv', 'sample_file_9.csv', 'sample_file_8.csv', 'sample_file_5.csv', 'sample_file_7.csv', 'sample_file_1.csv']\n" + ] + } + ], + "source": [ + "file_list = [f for f in os.listdir('../data') if f.endswith('.csv')]\n", + "\n", + "print(file_list)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 7. Use a list comprehension and the Pandas `read_csv` and `concat` methods to read all CSV files in the */data* directory and combine them into a single data frame. Display the top 10 rows of the resulting data frame." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
012345678910111213141516171819
00.9013810.7909440.5966030.3547210.3570020.3213250.7383980.7778850.7756230.7178170.7881980.9622140.3944650.8789220.0842060.6809410.9928970.2674550.2124030.572150
10.7638230.5372810.7088040.9752690.0537770.9577400.3891370.6898290.5108850.7374450.0976780.2429060.0736030.4975910.7984670.7890780.9475590.6314970.0579530.060306
20.5718640.3862430.5674760.5092830.5525940.1738070.2290920.2579450.3134370.4183110.7500070.6047590.2348860.8323370.4212630.4557850.8938410.7264120.4583600.048740
30.9561680.4222740.1217130.6852080.7133700.4162450.3371510.5706930.4359380.3600980.0374370.1675450.8478800.7734560.4906280.5442320.9546680.5672800.5715390.560742
40.1218260.2374790.5539560.1736600.3544230.5320800.2713610.7660060.6070200.1973020.5263520.6765710.4735740.9532280.4131860.9572420.6425580.3514960.5472970.177401
00.9486640.2152850.9182700.5999510.7551200.9716090.1031900.1947540.9323880.5917270.6975170.6073550.1776490.4359680.2024040.9797770.0957130.1590400.6514570.803393
10.1632360.8039260.9166550.7752340.6448900.7013620.9102080.8712040.3217450.5860350.8870540.2400600.9153420.2053100.4895040.8489260.3043420.3589770.8415390.964889
20.9341360.0314100.9540570.8533870.6421600.6811840.3171980.8752590.5384160.8675110.8133090.2156240.5520620.4983780.7396560.3079140.2339960.6021660.2442100.313071
30.7570380.9189640.4754590.8376860.1496450.8190320.6119960.6443480.9384440.4104440.5615130.4992310.8564370.0546190.3263100.4618250.9547830.3618730.1459520.873029
40.2634550.8162830.3367070.5879970.2858710.6199420.0180270.5488450.1214710.1942990.1498440.8488660.5318400.6633840.0848840.1203120.4632140.4378890.5423760.668447
\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 \\\n", + "0 0.901381 0.790944 0.596603 0.354721 0.357002 0.321325 0.738398 \n", + "1 0.763823 0.537281 0.708804 0.975269 0.053777 0.957740 0.389137 \n", + "2 0.571864 0.386243 0.567476 0.509283 0.552594 0.173807 0.229092 \n", + "3 0.956168 0.422274 0.121713 0.685208 0.713370 0.416245 0.337151 \n", + "4 0.121826 0.237479 0.553956 0.173660 0.354423 0.532080 0.271361 \n", + "0 0.948664 0.215285 0.918270 0.599951 0.755120 0.971609 0.103190 \n", + "1 0.163236 0.803926 0.916655 0.775234 0.644890 0.701362 0.910208 \n", + "2 0.934136 0.031410 0.954057 0.853387 0.642160 0.681184 0.317198 \n", + "3 0.757038 0.918964 0.475459 0.837686 0.149645 0.819032 0.611996 \n", + "4 0.263455 0.816283 0.336707 0.587997 0.285871 0.619942 0.018027 \n", + "\n", + " 7 8 9 10 11 12 13 \\\n", + "0 0.777885 0.775623 0.717817 0.788198 0.962214 0.394465 0.878922 \n", + "1 0.689829 0.510885 0.737445 0.097678 0.242906 0.073603 0.497591 \n", + "2 0.257945 0.313437 0.418311 0.750007 0.604759 0.234886 0.832337 \n", + "3 0.570693 0.435938 0.360098 0.037437 0.167545 0.847880 0.773456 \n", + "4 0.766006 0.607020 0.197302 0.526352 0.676571 0.473574 0.953228 \n", + "0 0.194754 0.932388 0.591727 0.697517 0.607355 0.177649 0.435968 \n", + "1 0.871204 0.321745 0.586035 0.887054 0.240060 0.915342 0.205310 \n", + "2 0.875259 0.538416 0.867511 0.813309 0.215624 0.552062 0.498378 \n", + "3 0.644348 0.938444 0.410444 0.561513 0.499231 0.856437 0.054619 \n", + "4 0.548845 0.121471 0.194299 0.149844 0.848866 0.531840 0.663384 \n", + "\n", + " 14 15 16 17 18 19 \n", + "0 0.084206 0.680941 0.992897 0.267455 0.212403 0.572150 \n", + "1 0.798467 0.789078 0.947559 0.631497 0.057953 0.060306 \n", + "2 0.421263 0.455785 0.893841 0.726412 0.458360 0.048740 \n", + "3 0.490628 0.544232 0.954668 0.567280 0.571539 0.560742 \n", + "4 0.413186 0.957242 0.642558 0.351496 0.547297 0.177401 \n", + "0 0.202404 0.979777 0.095713 0.159040 0.651457 0.803393 \n", + "1 0.489504 0.848926 0.304342 0.358977 0.841539 0.964889 \n", + "2 0.739656 0.307914 0.233996 0.602166 0.244210 0.313071 \n", + "3 0.326310 0.461825 0.954783 0.361873 0.145952 0.873029 \n", + "4 0.084884 0.120312 0.463214 0.437889 0.542376 0.668447 " + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_sets = [pd.read_csv(os.path.join('../data', f)) for f in file_list]\n", + "data = pd.concat(data_sets, axis=0)\n", + "data.head(10)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 8. Use a list comprehension to select and print the column numbers for columns from the data set whose median is less than 0.48." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['2', '9', '12', '14', '17']\n" + ] + } + ], + "source": [ + "selected_columns = [col for col in data if data[col].median() < 0.48]\n", + "\n", + "print(selected_columns)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 9. Use a list comprehension to add a new column (20) to the data frame whose values are the values in column 19 minus 0.1. Display the top 10 rows of the resulting data frame." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789...11121314151617181920
00.9013810.7909440.5966030.3547210.3570020.3213250.7383980.7778850.7756230.717817...0.9622140.3944650.8789220.0842060.6809410.9928970.2674550.2124030.5721500.472150
10.7638230.5372810.7088040.9752690.0537770.9577400.3891370.6898290.5108850.737445...0.2429060.0736030.4975910.7984670.7890780.9475590.6314970.0579530.060306-0.039694
20.5718640.3862430.5674760.5092830.5525940.1738070.2290920.2579450.3134370.418311...0.6047590.2348860.8323370.4212630.4557850.8938410.7264120.4583600.048740-0.051260
30.9561680.4222740.1217130.6852080.7133700.4162450.3371510.5706930.4359380.360098...0.1675450.8478800.7734560.4906280.5442320.9546680.5672800.5715390.5607420.460742
40.1218260.2374790.5539560.1736600.3544230.5320800.2713610.7660060.6070200.197302...0.6765710.4735740.9532280.4131860.9572420.6425580.3514960.5472970.1774010.077401
00.9486640.2152850.9182700.5999510.7551200.9716090.1031900.1947540.9323880.591727...0.6073550.1776490.4359680.2024040.9797770.0957130.1590400.6514570.8033930.703393
10.1632360.8039260.9166550.7752340.6448900.7013620.9102080.8712040.3217450.586035...0.2400600.9153420.2053100.4895040.8489260.3043420.3589770.8415390.9648890.864889
20.9341360.0314100.9540570.8533870.6421600.6811840.3171980.8752590.5384160.867511...0.2156240.5520620.4983780.7396560.3079140.2339960.6021660.2442100.3130710.213071
30.7570380.9189640.4754590.8376860.1496450.8190320.6119960.6443480.9384440.410444...0.4992310.8564370.0546190.3263100.4618250.9547830.3618730.1459520.8730290.773029
40.2634550.8162830.3367070.5879970.2858710.6199420.0180270.5488450.1214710.194299...0.8488660.5318400.6633840.0848840.1203120.4632140.4378890.5423760.6684470.568447
\n", + "

10 rows × 21 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 5 6 \\\n", + "0 0.901381 0.790944 0.596603 0.354721 0.357002 0.321325 0.738398 \n", + "1 0.763823 0.537281 0.708804 0.975269 0.053777 0.957740 0.389137 \n", + "2 0.571864 0.386243 0.567476 0.509283 0.552594 0.173807 0.229092 \n", + "3 0.956168 0.422274 0.121713 0.685208 0.713370 0.416245 0.337151 \n", + "4 0.121826 0.237479 0.553956 0.173660 0.354423 0.532080 0.271361 \n", + "0 0.948664 0.215285 0.918270 0.599951 0.755120 0.971609 0.103190 \n", + "1 0.163236 0.803926 0.916655 0.775234 0.644890 0.701362 0.910208 \n", + "2 0.934136 0.031410 0.954057 0.853387 0.642160 0.681184 0.317198 \n", + "3 0.757038 0.918964 0.475459 0.837686 0.149645 0.819032 0.611996 \n", + "4 0.263455 0.816283 0.336707 0.587997 0.285871 0.619942 0.018027 \n", + "\n", + " 7 8 9 ... 11 12 13 14 \\\n", + "0 0.777885 0.775623 0.717817 ... 0.962214 0.394465 0.878922 0.084206 \n", + "1 0.689829 0.510885 0.737445 ... 0.242906 0.073603 0.497591 0.798467 \n", + "2 0.257945 0.313437 0.418311 ... 0.604759 0.234886 0.832337 0.421263 \n", + "3 0.570693 0.435938 0.360098 ... 0.167545 0.847880 0.773456 0.490628 \n", + "4 0.766006 0.607020 0.197302 ... 0.676571 0.473574 0.953228 0.413186 \n", + "0 0.194754 0.932388 0.591727 ... 0.607355 0.177649 0.435968 0.202404 \n", + "1 0.871204 0.321745 0.586035 ... 0.240060 0.915342 0.205310 0.489504 \n", + "2 0.875259 0.538416 0.867511 ... 0.215624 0.552062 0.498378 0.739656 \n", + "3 0.644348 0.938444 0.410444 ... 0.499231 0.856437 0.054619 0.326310 \n", + "4 0.548845 0.121471 0.194299 ... 0.848866 0.531840 0.663384 0.084884 \n", + "\n", + " 15 16 17 18 19 20 \n", + "0 0.680941 0.992897 0.267455 0.212403 0.572150 0.472150 \n", + "1 0.789078 0.947559 0.631497 0.057953 0.060306 -0.039694 \n", + "2 0.455785 0.893841 0.726412 0.458360 0.048740 -0.051260 \n", + "3 0.544232 0.954668 0.567280 0.571539 0.560742 0.460742 \n", + "4 0.957242 0.642558 0.351496 0.547297 0.177401 0.077401 \n", + "0 0.979777 0.095713 0.159040 0.651457 0.803393 0.703393 \n", + "1 0.848926 0.304342 0.358977 0.841539 0.964889 0.864889 \n", + "2 0.307914 0.233996 0.602166 0.244210 0.313071 0.213071 \n", + "3 0.461825 0.954783 0.361873 0.145952 0.873029 0.773029 \n", + "4 0.120312 0.463214 0.437889 0.542376 0.668447 0.568447 \n", + "\n", + "[10 rows x 21 columns]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data['20'] = [x-0.1 for x in data['19']]\n", + "data.head(10)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 10. Use a list comprehension to extract and print all values from the data set that are between 0.7 and 0.75." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[0.7025657075988269, 0.7347510852128797, 0.7280006345208285, 0.7132714209987683, 0.7258310816144985, 0.736029494090402, 0.7472962776291713, 0.7088042362916818, 0.7343092314001137, 0.7358941798147411, 0.7365416322783028, 0.7023481768180954, 0.7329024831531535, 0.7133695725698419, 0.7476323136755818, 0.7008930873050235, 0.7013619954419494, 0.7150799992177622, 0.7173964318670598, 0.7032248108904495, 0.7268545088531969, 0.7357618655811269, 0.7383982036983279, 0.7124169515124726, 0.71223975981198, 0.7306642125209889, 0.7298115760258881, 0.7051334608870933, 0.7321333453970806, 0.7178166705957928, 0.7374449181749492, 0.7159290265157912, 0.7294980584878026, 0.7215147068185102, 0.7045750112959754, 0.7111584953876777, 0.7209375615129192, 0.7396561066717461, 0.7133690799930356, 0.7303553716733908, 0.7390312927111312, 0.7078738356977186, 0.7321533684342264, 0.7356923324968598, 0.7130781095091867, 0.7490680818183477, 0.7085098152301276, 0.7264121114538001, 0.7196096371031628, 0.7393833032570581, 0.7244863338885654, 0.7033930409580709, 0.7376946446827494, 0.7274869207330491]\n" + ] + } + ], + "source": [ + "results = [x[0] for col in data.columns for x in data[[col]].values if (x > 0.7) & (x < 0.75)]\n", + "\n", + "print(results)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1_labs/lab-map-reduce-filter/your-code/main-solutions.ipynb b/module-1_labs/lab-map-reduce-filter/your-code/main-solutions.ipynb new file mode 100644 index 0000000..610d62d --- /dev/null +++ b/module-1_labs/lab-map-reduce-filter/your-code/main-solutions.ipynb @@ -0,0 +1,1698 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# import reduce from functools, numpy and pandas\n", + "\n", + "from functools import reduce\n", + "import numpy as np\n", + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Mapping\n", + "\n", + "#### We will use the map function to clean up a words in a book.\n", + "\n", + "In the following cell, we will read a text file containing the book The Prophet by Khalil Gibran." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "# Run this code:\n", + "\n", + "location = '../58585-0.txt'\n", + "with open(location, 'r', encoding=\"utf8\") as f:\n", + " prophet = f.read().split(' ')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Let's remove the first 568 words since they contain information about the book but are not part of the book itself. \n", + "\n", + "Do this by removing from `prophet` elements 0 through 567 of the list (you can also do this by keeping elements 568 through the last element)." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "prophet = prophet[568:]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you look through the words, you will find that many words have a reference attached to them. For example, let's look at words 1 through 10." + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['the{7}', 'chosen', 'and', 'the\\nbeloved,', 'who', 'was', 'a', 'dawn', 'unto']" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Run this code:\n", + "\n", + "prophet[1:10]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### The next step is to create a function that will remove references. \n", + "\n", + "We will do this by splitting the string on the `{` character and keeping only the part before this character. Write your function below." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "def reference(x):\n", + " '''\n", + " Input: A string\n", + " Output: The string with references removed\n", + " \n", + " Example:\n", + " Input: 'the{7}'\n", + " Output: 'the'\n", + " '''\n", + " \n", + " # Your code here:\n", + " \n", + " return x.split('{')[0]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now that we have our function, use the `map()` function to apply this function to our book, The Prophet. Return the resulting list to a new list called `prophet_reference`" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "prophet_reference = list(map(reference, prophet))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Another thing you may have noticed is that some words contain a line break. Let's write a function to split those words. Our function will return the string split on the character `\\n`. Write your function in the cell below." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "def line_break(x):\n", + " '''\n", + " Input: A string\n", + " Output: A list of strings split on the line break (\\n) character\n", + " \n", + " Example:\n", + " Input: 'the\\nbeloved'\n", + " Output: ['the', 'beloved']\n", + " '''\n", + " \n", + " # Your code here:\n", + " \n", + " return x.split('\\n')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Apply the `line_break` function to the `prophet_reference` list. Name the new list `prophet_line`." + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "prophet_line = list(map(line_break,prophet_reference))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you look at the elements of `prophet_line`, you will see that the function returned lists and not strings. Our list is now a list of lists. Flatten the list using list comprehension. Assign this new list to `prophet_flat`." + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "prophet_flat = [word for lst in prophet_line for word in lst]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Filtering\n", + "\n", + "When printing out a few words from the book, we see that there are words that we may not want to keep if we choose to analyze the corpus of text. Below is a list of words that we would like to get rid of. Create a function that will return false if it contains a word from the list of words specified and true otherwise." + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "def word_filter(x):\n", + " '''\n", + " Input: A string\n", + " Output: true if the word is not in the specified list and false if the word is in the list\n", + " \n", + " Example:\n", + " word list = ['and', 'the']\n", + " Input: 'and'\n", + " Output: False\n", + " \n", + " Input: 'John'\n", + " Output: True\n", + " '''\n", + " \n", + " word_list = ['and', 'the', 'a', 'an']\n", + " \n", + " # Your code here:\n", + " \n", + " return False if x in word_list else True" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Use the `filter()` function to filter out the words speficied in the `word_filter()` function. Store the filtered list in the variable `prophet_filter`." + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "prophet_filter = list(filter(word_filter, prophet_flat))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Part 1\n", + "\n", + "Rewrite the `word_filter` function above to not be case sensitive." + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['PROPHET',\n", + " '',\n", + " '|Almustafa,',\n", + " 'chosen',\n", + " 'beloved,',\n", + " 'who',\n", + " 'was',\n", + " 'dawn',\n", + " 'unto',\n", + " 'his',\n", + " 'own',\n", + " 'day,',\n", + " 'had',\n", + " 'waited',\n", + " 'twelve',\n", + " 'years',\n", + " 'in',\n", + " 'city',\n", + " 'of',\n", + " 'Orphalese',\n", + " 'for',\n", + " 'his',\n", + " 'ship',\n", + " 'that',\n", + " 'was',\n", + " 'to',\n", + " 'return',\n", + " 'bear',\n", + " 'him',\n", + " 'back',\n", + " 'to',\n", + " 'isle',\n", + " 'of',\n", + " 'his',\n", + " 'birth.',\n", + " '',\n", + " 'in',\n", + " 'twelfth',\n", + " 'year,',\n", + " 'on',\n", + " 'seventh',\n", + " 'day',\n", + " 'of',\n", + " 'Ielool,',\n", + " 'month',\n", + " 'of',\n", + " 'reaping,',\n", + " 'he',\n", + " 'climbed',\n", + " 'hill',\n", + " 'without',\n", + " 'city',\n", + " 'walls',\n", + " 'looked',\n", + " 'seaward;',\n", + " 'he',\n", + " 'beheld',\n", + " 'his',\n", + " 'ship',\n", + " 'coming',\n", + " 'with',\n", + " 'mist.',\n", + " '',\n", + " 'Then',\n", + " 'gates',\n", + " 'of',\n", + " 'his',\n", + " 'heart',\n", + " 'were',\n", + " 'flung',\n", + " 'open,',\n", + " 'his',\n", + " 'joy',\n", + " 'flew',\n", + " 'far',\n", + " 'over',\n", + " 'sea.',\n", + " 'he',\n", + " 'closed',\n", + " 'his',\n", + " 'eyes',\n", + " 'prayed',\n", + " 'in',\n", + " 'silences',\n", + " 'of',\n", + " 'his',\n", + " 'soul.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'But',\n", + " 'as',\n", + " 'he',\n", + " 'descended',\n", + " 'hill,',\n", + " 'sadness',\n", + " 'came',\n", + " 'upon',\n", + " 'him,',\n", + " 'he',\n", + " 'thought',\n", + " 'in',\n", + " 'his',\n", + " 'heart:',\n", + " '',\n", + " 'How',\n", + " 'shall',\n", + " 'I',\n", + " 'go',\n", + " 'in',\n", + " 'peace',\n", + " 'without',\n", + " 'sorrow?',\n", + " 'Nay,',\n", + " 'not',\n", + " 'without',\n", + " 'wound',\n", + " 'in',\n", + " 'spirit',\n", + " 'shall',\n", + " 'I',\n", + " 'leave',\n", + " 'this',\n", + " 'city.',\n", + " '',\n", + " 'days',\n", + " 'of',\n", + " 'pain',\n", + " 'I',\n", + " 'have',\n", + " 'spent',\n", + " 'within',\n", + " 'its',\n", + " 'walls,',\n", + " 'long',\n", + " 'were',\n", + " 'nights',\n", + " 'of',\n", + " 'aloneness;',\n", + " 'who',\n", + " 'can',\n", + " 'depart',\n", + " 'from',\n", + " 'his',\n", + " 'pain',\n", + " 'his',\n", + " 'aloneness',\n", + " 'without',\n", + " 'regret?',\n", + " '',\n", + " 'Too',\n", + " 'many',\n", + " 'fragments',\n", + " 'of',\n", + " 'spirit',\n", + " 'have',\n", + " 'I',\n", + " 'scattered',\n", + " 'in',\n", + " 'these',\n", + " 'streets,',\n", + " 'too',\n", + " 'many',\n", + " 'are',\n", + " 'children',\n", + " 'of',\n", + " 'my',\n", + " 'longing',\n", + " 'that',\n", + " 'walk',\n", + " 'naked',\n", + " 'among',\n", + " 'these',\n", + " 'hills,',\n", + " 'I',\n", + " 'cannot',\n", + " 'withdraw',\n", + " 'from',\n", + " 'them',\n", + " 'without',\n", + " 'burden',\n", + " 'ache.',\n", + " '',\n", + " 'It',\n", + " 'is',\n", + " 'not',\n", + " 'garment',\n", + " 'I',\n", + " 'cast',\n", + " 'off',\n", + " 'this',\n", + " 'day,',\n", + " 'but',\n", + " 'skin',\n", + " 'that',\n", + " 'I',\n", + " 'tear',\n", + " 'with',\n", + " 'my',\n", + " 'own',\n", + " 'hands.',\n", + " '',\n", + " 'Nor',\n", + " 'is',\n", + " 'it',\n", + " 'thought',\n", + " 'I',\n", + " 'leave',\n", + " 'behind',\n", + " 'me,',\n", + " 'but',\n", + " 'heart',\n", + " 'made',\n", + " 'sweet',\n", + " 'with',\n", + " 'hunger',\n", + " 'with',\n", + " 'thirst.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'Yet',\n", + " 'I',\n", + " 'cannot',\n", + " 'tarry',\n", + " 'longer.',\n", + " '',\n", + " 'sea',\n", + " 'that',\n", + " 'calls',\n", + " 'all',\n", + " 'things',\n", + " 'unto',\n", + " 'her',\n", + " 'calls',\n", + " 'me,',\n", + " 'I',\n", + " 'must',\n", + " 'embark.',\n", + " '',\n", + " 'For',\n", + " 'to',\n", + " 'stay,',\n", + " 'though',\n", + " 'hours',\n", + " 'burn',\n", + " 'in',\n", + " 'night,',\n", + " 'is',\n", + " 'to',\n", + " 'freeze',\n", + " 'crystallize',\n", + " 'be',\n", + " 'bound',\n", + " 'in',\n", + " 'mould.',\n", + " '',\n", + " 'Fain',\n", + " 'would',\n", + " 'I',\n", + " 'take',\n", + " 'with',\n", + " 'me',\n", + " 'all',\n", + " 'that',\n", + " 'is',\n", + " 'here.',\n", + " 'But',\n", + " 'how',\n", + " 'shall',\n", + " 'I?',\n", + " '',\n", + " 'voice',\n", + " 'cannot',\n", + " 'carry',\n", + " 'tongue',\n", + " '',\n", + " 'lips',\n", + " 'that',\n", + " 'gave',\n", + " 'it',\n", + " 'wings.',\n", + " 'Alone',\n", + " 'must',\n", + " 'it',\n", + " 'seek',\n", + " 'ether.',\n", + " '',\n", + " 'alone',\n", + " 'without',\n", + " 'his',\n", + " 'nest',\n", + " 'shall',\n", + " 'eagle',\n", + " 'fly',\n", + " 'across',\n", + " 'sun.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'Now',\n", + " 'when',\n", + " 'he',\n", + " 'reached',\n", + " 'foot',\n", + " 'of',\n", + " 'hill,',\n", + " 'he',\n", + " 'turned',\n", + " 'again',\n", + " 'towards',\n", + " 'sea,',\n", + " 'he',\n", + " 'saw',\n", + " 'his',\n", + " 'ship',\n", + " 'approaching',\n", + " 'harbour,',\n", + " 'upon',\n", + " 'her',\n", + " 'prow',\n", + " 'mariners,',\n", + " 'men',\n", + " 'of',\n", + " 'his',\n", + " 'own',\n", + " 'land.',\n", + " '',\n", + " 'his',\n", + " 'soul',\n", + " 'cried',\n", + " 'out',\n", + " 'to',\n", + " 'them,',\n", + " 'he',\n", + " 'said:',\n", + " '',\n", + " 'Sons',\n", + " 'of',\n", + " 'my',\n", + " 'ancient',\n", + " 'mother,',\n", + " 'you',\n", + " 'riders',\n", + " 'of',\n", + " 'tides,',\n", + " '',\n", + " 'How',\n", + " 'often',\n", + " 'have',\n", + " 'you',\n", + " 'sailed',\n", + " 'in',\n", + " 'my',\n", + " 'dreams.',\n", + " 'now',\n", + " 'you',\n", + " 'come',\n", + " 'in',\n", + " 'my',\n", + " 'awakening,',\n", + " 'which',\n", + " 'is',\n", + " 'my',\n", + " 'deeper',\n", + " 'dream.',\n", + " '',\n", + " 'Ready',\n", + " 'am',\n", + " 'I',\n", + " 'to',\n", + " 'go,',\n", + " 'my',\n", + " 'eagerness',\n", + " 'with',\n", + " 'sails',\n", + " 'full',\n", + " 'set',\n", + " 'awaits',\n", + " 'wind.',\n", + " '',\n", + " 'Only',\n", + " 'another',\n", + " 'breath',\n", + " 'will',\n", + " 'I',\n", + " 'breathe',\n", + " 'in',\n", + " 'this',\n", + " 'still',\n", + " 'air,',\n", + " 'only',\n", + " 'another',\n", + " 'loving',\n", + " 'look',\n", + " 'cast',\n", + " 'backward,',\n", + " '',\n", + " 'then',\n", + " 'I',\n", + " 'shall',\n", + " 'stand',\n", + " 'among',\n", + " 'you,',\n", + " 'seafarer',\n", + " 'among',\n", + " 'seafarers.',\n", + " '',\n", + " 'you,',\n", + " 'vast',\n", + " 'sea,',\n", + " 'sleepless',\n", + " 'mother,',\n", + " '',\n", + " 'Who',\n", + " 'alone',\n", + " 'are',\n", + " 'peace',\n", + " 'freedom',\n", + " 'to',\n", + " 'river',\n", + " 'stream,',\n", + " '',\n", + " 'Only',\n", + " 'another',\n", + " 'winding',\n", + " 'will',\n", + " 'this',\n", + " 'stream',\n", + " 'make,',\n", + " 'only',\n", + " 'another',\n", + " 'murmur',\n", + " 'in',\n", + " 'this',\n", + " 'glade,',\n", + " '',\n", + " 'then',\n", + " 'shall',\n", + " 'I',\n", + " 'come',\n", + " 'to',\n", + " 'you,',\n", + " 'boundless',\n", + " 'drop',\n", + " 'to',\n", + " 'boundless',\n", + " 'ocean.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'as',\n", + " 'he',\n", + " 'walked',\n", + " 'he',\n", + " 'saw',\n", + " 'from',\n", + " 'afar',\n", + " 'men',\n", + " 'women',\n", + " 'leaving',\n", + " 'their',\n", + " 'fields',\n", + " 'their',\n", + " 'vineyards',\n", + " 'hastening',\n", + " 'towards',\n", + " 'city',\n", + " 'gates.',\n", + " '',\n", + " 'he',\n", + " 'heard',\n", + " 'their',\n", + " 'voices',\n", + " 'calling',\n", + " 'his',\n", + " 'name,',\n", + " 'shouting',\n", + " 'from',\n", + " 'field',\n", + " 'to',\n", + " 'field',\n", + " 'telling',\n", + " 'one',\n", + " 'another',\n", + " 'of',\n", + " 'coming',\n", + " 'of',\n", + " 'his',\n", + " 'ship.',\n", + " '',\n", + " 'he',\n", + " 'said',\n", + " 'to',\n", + " 'himself:',\n", + " '',\n", + " 'Shall',\n", + " 'day',\n", + " 'of',\n", + " 'parting',\n", + " 'be',\n", + " 'day',\n", + " 'of',\n", + " 'gathering?',\n", + " '',\n", + " 'shall',\n", + " 'it',\n", + " 'be',\n", + " 'said',\n", + " 'that',\n", + " 'my',\n", + " 'eve',\n", + " 'was',\n", + " 'in',\n", + " 'truth',\n", + " 'my',\n", + " 'dawn?',\n", + " '',\n", + " 'what',\n", + " 'shall',\n", + " 'I',\n", + " 'give',\n", + " 'unto',\n", + " 'him',\n", + " 'who',\n", + " 'has',\n", + " 'left',\n", + " 'his',\n", + " 'plough',\n", + " 'in',\n", + " 'midfurrow,',\n", + " 'or',\n", + " 'to',\n", + " 'him',\n", + " 'who',\n", + " 'has',\n", + " 'stopped',\n", + " 'wheel',\n", + " 'of',\n", + " 'his',\n", + " 'winepress?',\n", + " '',\n", + " 'my',\n", + " 'heart',\n", + " 'become',\n", + " 'tree',\n", + " 'heavy-laden',\n", + " 'with',\n", + " 'fruit',\n", + " 'that',\n", + " 'I',\n", + " 'may',\n", + " 'gather',\n", + " 'give',\n", + " 'unto',\n", + " 'them?',\n", + " '',\n", + " 'shall',\n", + " 'my',\n", + " 'desires',\n", + " 'flow',\n", + " 'like',\n", + " 'fountain',\n", + " 'that',\n", + " 'I',\n", + " 'may',\n", + " 'fill',\n", + " 'their',\n", + " 'cups?',\n", + " '',\n", + " 'Am',\n", + " 'I',\n", + " 'harp',\n", + " 'that',\n", + " 'hand',\n", + " 'of',\n", + " 'mighty',\n", + " 'may',\n", + " 'touch',\n", + " 'me,',\n", + " 'or',\n", + " 'flute',\n", + " 'that',\n", + " 'his',\n", + " 'breath',\n", + " 'may',\n", + " 'pass',\n", + " 'through',\n", + " 'me?',\n", + " '',\n", + " 'seeker',\n", + " 'of',\n", + " 'silences',\n", + " 'am',\n", + " 'I,',\n", + " 'what',\n", + " 'treasure',\n", + " 'have',\n", + " 'I',\n", + " 'found',\n", + " 'in',\n", + " 'silences',\n", + " 'that',\n", + " 'I',\n", + " 'may',\n", + " 'dispense',\n", + " 'with',\n", + " 'confidence?',\n", + " '',\n", + " 'If',\n", + " 'this',\n", + " 'is',\n", + " 'my',\n", + " 'day',\n", + " 'of',\n", + " 'harvest,',\n", + " 'in',\n", + " 'what',\n", + " 'fields',\n", + " 'have',\n", + " 'I',\n", + " 'sowed',\n", + " 'seed,',\n", + " 'in',\n", + " 'what',\n", + " 'unremembered',\n", + " 'seasons?',\n", + " '',\n", + " 'If',\n", + " 'this',\n", + " 'indeed',\n", + " 'be',\n", + " 'hour',\n", + " 'in',\n", + " 'which',\n", + " 'I',\n", + " 'lift',\n", + " 'up',\n", + " 'my',\n", + " 'lantern,',\n", + " 'it',\n", + " 'is',\n", + " 'not',\n", + " 'my',\n", + " 'flame',\n", + " 'that',\n", + " 'shall',\n", + " 'burn',\n", + " 'therein.',\n", + " '',\n", + " 'Empty',\n", + " 'dark',\n", + " 'shall',\n", + " 'I',\n", + " 'raise',\n", + " 'my',\n", + " 'lantern,',\n", + " '',\n", + " 'guardian',\n", + " 'of',\n", + " 'night',\n", + " 'shall',\n", + " 'fill',\n", + " 'it',\n", + " 'with',\n", + " 'oil',\n", + " 'he',\n", + " 'shall',\n", + " 'light',\n", + " 'it',\n", + " 'also.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'These',\n", + " 'things',\n", + " 'he',\n", + " 'said',\n", + " 'in',\n", + " 'words.',\n", + " 'But',\n", + " 'much',\n", + " 'in',\n", + " 'his',\n", + " 'heart',\n", + " 'remained',\n", + " 'unsaid.',\n", + " 'For',\n", + " '',\n", + " 'could',\n", + " 'not',\n", + " 'speak',\n", + " 'his',\n", + " 'deeper',\n", + " 'secret.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " '[Illustration:',\n", + " '0020]',\n", + " '',\n", + " 'when',\n", + " 'he',\n", + " 'entered',\n", + " 'into',\n", + " 'city',\n", + " 'all',\n", + " 'people',\n", + " 'came',\n", + " 'to',\n", + " 'meet',\n", + " 'him,',\n", + " 'they',\n", + " 'were',\n", + " 'crying',\n", + " 'out',\n", + " 'to',\n", + " 'him',\n", + " 'as',\n", + " 'with',\n", + " 'one',\n", + " 'voice.',\n", + " '',\n", + " 'elders',\n", + " 'of',\n", + " 'city',\n", + " 'stood',\n", + " 'forth',\n", + " 'said:',\n", + " '',\n", + " 'Go',\n", + " 'not',\n", + " 'yet',\n", + " 'away',\n", + " 'from',\n", + " 'us.',\n", + " '',\n", + " 'noontide',\n", + " 'have',\n", + " 'you',\n", + " 'been',\n", + " 'in',\n", + " 'our',\n", + " 'twilight,',\n", + " 'your',\n", + " 'youth',\n", + " 'has',\n", + " 'given',\n", + " 'us',\n", + " 'dreams',\n", + " 'to',\n", + " 'dream.',\n", + " '',\n", + " 'No',\n", + " 'stranger',\n", + " 'are',\n", + " 'you',\n", + " 'among',\n", + " 'us,',\n", + " 'nor',\n", + " 'guest,',\n", + " 'but',\n", + " 'our',\n", + " 'son',\n", + " 'our',\n", + " 'dearly',\n", + " 'beloved.',\n", + " '',\n", + " 'Suffer',\n", + " 'not',\n", + " 'yet',\n", + " 'our',\n", + " 'eyes',\n", + " 'to',\n", + " 'hunger',\n", + " 'for',\n", + " 'your',\n", + " 'face.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'priests',\n", + " 'priestesses',\n", + " 'said',\n", + " 'unto',\n", + " 'him:',\n", + " '',\n", + " 'Let',\n", + " 'not',\n", + " 'waves',\n", + " 'of',\n", + " 'sea',\n", + " 'separate',\n", + " 'us',\n", + " 'now,',\n", + " 'years',\n", + " 'you',\n", + " 'have',\n", + " 'spent',\n", + " 'in',\n", + " 'our',\n", + " 'midst',\n", + " 'become',\n", + " 'memory.',\n", + " '',\n", + " 'You',\n", + " 'have',\n", + " 'walked',\n", + " 'among',\n", + " 'us',\n", + " 'spirit,',\n", + " '',\n", + " 'your',\n", + " 'shadow',\n", + " 'has',\n", + " 'been',\n", + " 'light',\n", + " 'upon',\n", + " 'our',\n", + " 'faces.',\n", + " '',\n", + " 'Much',\n", + " 'have',\n", + " 'we',\n", + " 'loved',\n", + " 'you.',\n", + " 'But',\n", + " 'speechless',\n", + " 'was',\n", + " 'our',\n", + " 'love,',\n", + " 'with',\n", + " 'veils',\n", + " 'has',\n", + " 'it',\n", + " 'been',\n", + " 'veiled.',\n", + " '',\n", + " 'Yet',\n", + " 'now',\n", + " 'it',\n", + " 'cries',\n", + " 'aloud',\n", + " 'unto',\n", + " 'you,',\n", + " 'would',\n", + " 'stand',\n", + " 'revealed',\n", + " 'before',\n", + " 'you.',\n", + " '',\n", + " 'ever',\n", + " 'has',\n", + " 'it',\n", + " 'been',\n", + " 'that',\n", + " 'love',\n", + " 'knows',\n", + " 'not',\n", + " 'its',\n", + " 'own',\n", + " 'depth',\n", + " 'until',\n", + " 'hour',\n", + " 'of',\n", + " 'separation.',\n", + " '',\n", + " '*****',\n", + " '',\n", + " 'others',\n", + " 'came',\n", + " 'also',\n", + " 'entreated',\n", + " 'him.',\n", + " 'But',\n", + " 'he',\n", + " 'answered',\n", + " 'them',\n", + " 'not.',\n", + " 'He',\n", + " 'only',\n", + " 'bent',\n", + " 'his',\n", + " 'head;',\n", + " 'those',\n", + " 'who',\n", + " 'stood',\n", + " 'near',\n", + " 'saw',\n", + " 'his',\n", + " 'tears',\n", + " 'falling',\n", + " 'upon',\n", + " 'his',\n", + " 'breast.',\n", + " '',\n", + " 'he',\n", + " 'people',\n", + " 'proceeded',\n", + " 'towards',\n", + " 'great',\n", + " 'square',\n", + " 'before',\n", + " 'temple.',\n", + " '',\n", + " 'there',\n", + " 'came',\n", + " 'out',\n", + " 'of',\n", + " 'sanctuary',\n", + " 'woman',\n", + " 'whose',\n", + " 'name',\n", + " 'was',\n", + " 'Almitra.',\n", + " 'she',\n", + " 'was',\n", + " 'seeress.',\n", + " '',\n", + " 'he',\n", + " 'looked',\n", + " 'upon',\n", + " 'her',\n", + " 'with',\n", + " 'exceeding',\n", + " 'tenderness,',\n", + " 'for',\n", + " 'it',\n", + " 'was',\n", + " 'she',\n", + " 'who',\n", + " 'had',\n", + " 'first',\n", + " 'sought',\n", + " 'believed',\n", + " 'in',\n", + " 'him',\n", + " 'when',\n", + " 'he',\n", + " 'had',\n", + " 'been',\n", + " 'but',\n", + " 'day',\n", + " 'in',\n", + " 'their',\n", + " 'city.',\n", + " '',\n", + " 'hailed',\n", + " 'him,',\n", + " 'saying:',\n", + " '',\n", + " 'Prophet',\n", + " 'of',\n", + " 'God,',\n", + " 'in',\n", + " 'quest',\n", + " 'of',\n", + " 'uttermost,',\n", + " 'long',\n", + " 'have',\n", + " 'you',\n", + " 'searched',\n", + " 'distances',\n", + " 'for',\n", + " 'your',\n", + " 'ship.',\n", + " '',\n", + " 'now',\n", + " 'your',\n", + " 'ship',\n", + " 'has',\n", + " 'come,',\n", + " 'you',\n", + " 'must',\n", + " 'needs',\n", + " 'go.',\n", + " '',\n", + " 'Deep',\n", + " 'is',\n", + " 'your',\n", + " 'longing',\n", + " 'for',\n", + " 'land',\n", + " 'of',\n", + " 'your',\n", + " 'memories',\n", + " 'dwelling',\n", + " 'place',\n", + " 'of',\n", + " 'your',\n", + " 'greater',\n", + " 'desires;',\n", + " 'our',\n", + " 'love',\n", + " 'would',\n", + " 'not',\n", + " 'bind',\n", + " 'you',\n", + " 'nor',\n", + " 'our',\n", + " ...]" + ] + }, + "execution_count": 107, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "def word_filter_case(x):\n", + " \n", + " word_list = ['and', 'the', 'a', 'an']\n", + " \n", + " # Your code here:\n", + " \n", + " return False if x.lower() in word_list else True\n", + "\n", + "list(filter(word_filter_case, prophet_flat))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3 - Reducing\n", + "\n", + "#### Now that we have significantly cleaned up our text corpus, let's use the `reduce()` function to put the words back together into one long string separated by spaces. \n", + "\n", + "We will start by writing a function that takes two strings and concatenates them together with a space between the two strings." + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [], + "source": [ + "def concat_space(a, b):\n", + " '''\n", + " Input:Two strings\n", + " Output: A single string separated by a space\n", + " \n", + " Example:\n", + " Input: 'John', 'Smith'\n", + " Output: 'John Smith'\n", + " '''\n", + " \n", + " # Your code here:\n", + " \n", + " return a + ' ' + b" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Use the function above to reduce the text corpus in the list `prophet_filter` into a single string. Assign this new string to the variable `prophet_string`." + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "prophet_string = reduce(concat_space, prophet_filter)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 4 - Applying Functions to DataFrames\n", + "\n", + "#### Our next step is to use the apply function to a dataframe and transform all cells.\n", + "\n", + "To do this, we will load a dataset below and then write a function that will perform the transformation." + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [], + "source": [ + "# Run this code:\n", + "\n", + "# The dataset below contains information about pollution from PM2.5 particles in Beijing \n", + "\n", + "url = \"https://archive.ics.uci.edu/ml/machine-learning-databases/00381/PRSA_data_2010.1.1-2014.12.31.csv\"\n", + "pm25 = pd.read_csv(url)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Let's look at the data using the `head()` function." + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Noyearmonthdayhourpm2.5DEWPTEMPPREScbwdIwsIsIr
012010110NaN-21-11.01021.0NW1.7900
122010111NaN-21-12.01020.0NW4.9200
232010112NaN-21-11.01019.0NW6.7100
342010113NaN-21-14.01019.0NW9.8400
452010114NaN-20-12.01018.0NW12.9700
\n", + "
" + ], + "text/plain": [ + " No year month day hour pm2.5 DEWP TEMP PRES cbwd Iws Is Ir\n", + "0 1 2010 1 1 0 NaN -21 -11.0 1021.0 NW 1.79 0 0\n", + "1 2 2010 1 1 1 NaN -21 -12.0 1020.0 NW 4.92 0 0\n", + "2 3 2010 1 1 2 NaN -21 -11.0 1019.0 NW 6.71 0 0\n", + "3 4 2010 1 1 3 NaN -21 -14.0 1019.0 NW 9.84 0 0\n", + "4 5 2010 1 1 4 NaN -20 -12.0 1018.0 NW 12.97 0 0" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "pm25.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The next step is to create a function that divides a cell by 24 to produce an hourly figure. Write the function below." + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [], + "source": [ + "def hourly(x):\n", + " '''\n", + " Input: A numerical value\n", + " Output: The value divided by 24\n", + " \n", + " Example:\n", + " Input: 48\n", + " Output: 2.0\n", + " '''\n", + " \n", + " # Your code here:\n", + " \n", + " return x / 24" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Apply this function to the columns `Iws`, `Is`, and `Ir`. Store this new dataframe in the variable `pm25_hourly`." + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "pm25_hourly = pm25[['Iws', 'Is', 'Ir']].apply(hourly)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Our last challenge will be to create an aggregate function and apply it to a select group of columns in our dataframe.\n", + "\n", + "Write a function that returns the standard deviation of a column divided by the length of a column minus 1. Since we are using pandas, do not use the `len()` function. One alternative is to use `count()`. Also, use the numpy version of standard deviation." + ] + }, + { + "cell_type": "code", + "execution_count": 91, + "metadata": {}, + "outputs": [], + "source": [ + "def sample_sd(x):\n", + " '''\n", + " Input: A Pandas series of values\n", + " Output: the standard deviation divided by the number of elements in the series\n", + " \n", + " Example:\n", + " Input: pd.Series([1,2,3,4])\n", + " Output: 0.3726779962\n", + " '''\n", + " \n", + " # Your code here:\n", + " \n", + " return np.std(x) / (x.count() - 1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Apply the `sample_sd()` function to the columns `Iws`, `Is`, and `Ir` and print the result" + ] + }, + { + "cell_type": "code", + "execution_count": 88, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Iws 0.001141\n", + "Is 0.000017\n", + "Ir 0.000032\n", + "dtype: float64" + ] + }, + "execution_count": 88, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "pm25[['Iws', 'Is', 'Ir']].apply(sample_sd)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Part 2:\n", + "\n", + "Compute the range (max - min) for the columns: `pm2.5`,`DEWP`,`TEMP`,`PRES`. Ensure we do not return `NaN`." + ] + }, + { + "cell_type": "code", + "execution_count": 100, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "pm2.5 994.0\n", + "DEWP 68.0\n", + "TEMP 61.0\n", + "PRES 55.0\n", + "dtype: float64" + ] + }, + "execution_count": 100, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "def range1(x):\n", + " return (x.max(skipna=True) - x.min(skipna=True))\n", + "\n", + "pm25[['pm2.5','DEWP','TEMP','PRES']].apply(range1)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.6" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-mysql-select/lab-mysql-select-solutions.sql b/module-1_labs/lab-mysql-select/lab-mysql-select-solutions.sql new file mode 100644 index 0000000..94392c8 --- /dev/null +++ b/module-1_labs/lab-mysql-select/lab-mysql-select-solutions.sql @@ -0,0 +1,53 @@ +-- Challenge 1 + +select a.au_id as "AUTHOR ID", au_lname as "LAST NAME", au_fname as "FIRST NAME", t.title as TITLE, p.pub_name as PUBLISHER +from authors a +inner join titleauthor ta on a.au_id=ta.au_id +inner join titles t on ta.title_id=t.title_id +inner join publishers p on t.pub_id=p.pub_id; + +-- Challenge 2 + +select a.au_id as "AUTHOR ID", au_lname as "LAST NAME", au_fname as "FIRST NAME", p.pub_name as PUBLISHER, count(t.title_id) as "TITLE COUNT" +from authors a +inner join titleauthor ta on a.au_id=ta.au_id +inner join titles t on ta.title_id=t.title_id +inner join publishers p on t.pub_id=p.pub_id +group by a.au_id, p.pub_id; + +-- Challenge 3 + +select a.au_id as "AUTHOR ID", au_lname as "LAST NAME", au_fname as "FIRST NAME", sum(s.qty) as TOTAL +from authors a +inner join titleauthor ta on ta.au_id = a.au_id +inner join titles t on t.title_id = ta.title_id +inner join sales s on s.title_id = t.title_id +group by a.au_id +order by TOTAL desc +limit 3 + +-- Challenge 4 + +select a.au_id as "AUTHOR ID", au_lname as "LAST NAME", au_fname as "FIRST NAME", COALESCE(sum(s.qty), 0) as TOTAL +from authors a +left join titleauthor ta on ta.au_id = a.au_id +left join titles t on t.title_id = ta.title_id +left join sales s on s.title_id = t.title_id +group by a.au_id +order by TOTAL desc; + +-- Bonus Challenge + +select au_id as "AUTHOR ID", au_lname as "LAST NAME", au_fname as "FIRST NAME", sum(advance + ROYALTIES) as PROFITS from ( + select title_id, au_id, au_lname, au_fname, advance, sum(ROYALTIES) as ROYALTIES from ( + select t.title_id, t.price, t.advance, t.royalty, s.qty, a.au_id, au_lname, au_fname, ta.royaltyper, (t.price * s.qty * t.royalty * ta.royaltyper / 10000) as ROYALTIES + from titles t + inner join sales s on s.title_id = t.title_id + inner join titleauthor ta on ta.title_id = s.title_id + inner join authors a on a.au_id = ta.au_id + ) as tmp + group by au_id, title_id +) as tmp2 +group by au_id +order by PROFITS desc +limit 3 \ No newline at end of file diff --git a/module-1_labs/lab-object-oriented-programming/your-code/main-solutions.ipynb b/module-1_labs/lab-object-oriented-programming/your-code/main-solutions.ipynb new file mode 100644 index 0000000..111dfe4 --- /dev/null +++ b/module-1_labs/lab-object-oriented-programming/your-code/main-solutions.ipynb @@ -0,0 +1,489 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Matrix Functions\n", + "\n", + "#### We would like to create our own matrix. To make life simple for us, we can represent matrices as a list of lists. For the sake of simplicity, we will assume that the maximum number of dimensions a matrix will have is 2.\n", + "\n", + "The most basic thing we would like to do with two matrices is to add them together. To do this, we must compare their size. We should check whether two matrices have the same number of rows and the same number of columns. We compare the number of rows by looking at the outer list and then check the inner lists to see that they are of the same length as well. Our first function will be to check that our matrix is 2 dimensional. We will perform this check by raising an error for any case except a two dimensional matrix." + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [], + "source": [ + "def twodim(mat):\n", + " # This function takes a list of lists and checks that it is of depth 2. \n", + " # If the depth is not 2, either return false or return informative errors that let the user know the depth of the list.\n", + " # Input: nested list\n", + " # Output: Boolean (or error)\n", + " # Sample Input: [[1,2,3], [4,5,6]]\n", + " # Sample Output: True\n", + " \n", + " # Your Code Here:\n", + " if not isinstance(mat, list):\n", + " raise ValueError(\"The variable is not a list\")\n", + " for l in mat:\n", + " if not isinstance(l, list):\n", + " raise ValueError(\"The matrix is only one dimensional\")\n", + " for i in l:\n", + " if isinstance(i, list):\n", + " raise ValueError(\"The matrix is more than two dimensional\")\n", + " return True " + ] + }, + { + "cell_type": "code", + "execution_count": 109, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 109, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "twodim([[1,2], [1,2,3],[1,2,3]])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge 1 - Write the function recursively\n", + "\n", + "Rewrite the `twodim` function using recursion. \n", + "Read more about recursion [here](https://www.cs.utah.edu/~germain/PPS/Topics/recursion.html)\n", + "\n", + "Hint: stop your recursion when there are no more lists, this wil be the depth of your matrix. Check that this depth is equal to 2.\n", + "Second Hint: At every level of the recursion, use the filter function to keep only the members of the list that are lists." + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "metadata": {}, + "outputs": [], + "source": [ + "def twodimrecursive(mat):\n", + " def dimension(mat):\n", + " if not any(isinstance(item, list) for item in mat):\n", + " return 1\n", + " else:\n", + " return 1 + max([dimension(item) for item in filter(lambda x: isinstance(x, list), mat)])\n", + " return dimension(mat) == 2" + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 111, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "twodimrecursive([[1,2,3],[1,2]])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Next, we will write a function that checks for the number of rows and columns of a matrix. \n", + "\n", + "Recall that the outer list will tell us the number of rows and the inner lists will tell us the number of columns. Make sure that all inner lists are of the same length." + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [], + "source": [ + "def rowcolumn(mat):\n", + " # This function takes a list of lists and returns the size of the rows and the columns \n", + " # Input: list of lists\n", + " # Output: Tuple of rows and columns\n", + " #\n", + " # Sample input: [[1,2,3],[4,5,6]]\n", + " # Sample Output: (2, 3)\n", + " \n", + " # Your code here:\n", + " \n", + " if twodim(mat):\n", + " row = len(mat)\n", + " col = len(mat[0])\n", + " for m in mat:\n", + " if len(m) != col:\n", + " raise ValueError(\"The columns are not of equal length\")\n", + " return row, col" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(3, 4)" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rowcolumn([[1,2,3,4], [1,2,3,4],[1,2,3,4]])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Our next step is to write a function that compares two matrices and tells us whether they are of equal size.\n", + "\n", + "In this function we will check whether the number of rows and number of columns is the same." + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [], + "source": [ + "def compare(mat1, mat2):\n", + " # This function takes a two lists of lists and checks whether they have the same number of rows and columns\n", + " # Input: two list of lists\n", + " # Output: True or False\n", + " #\n", + " # Sample input: [[1,2,3],[4,5,6]], [[7,8,9], [10,11,12]]\n", + " # Sample Output: True\n", + " \n", + " # Your code here:\n", + " \n", + " return rowcolumn(mat1) == rowcolumn(mat2)" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "compare([[1,2,3],[4,5,6]], [[7,8,9], [10,11,12]])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Now that we have all the tools we need, write a function that adds two matrices together. \n", + "\n", + "Remember that a matrix is represented as a list of lists. Therefore, we must add each element in the list. The plus symbol is used for concatenating two lists and not for adding every element in two lists." + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [], + "source": [ + "def addition(mat1, mat2):\n", + " # This function takes a two lists of lists and adds each cell together\n", + " # Input: two list of lists\n", + " # Output: one summed list of lists\n", + " #\n", + " # Sample input: [[1,2,3],[4,5,6]], [[7,8,9], [10,11,12]]\n", + " # Sample Output: [[8,10,12],[14,16,18]]\n", + " \n", + " # Your code here:\n", + " \n", + " res = []\n", + " if compare(mat1, mat2):\n", + " for i in range(len(mat1)):\n", + " res.append([])\n", + " for j in range(len(mat1[i])):\n", + " res[i].append(mat1[i][j] + mat2[i][j])\n", + " return res" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[[8, 10, 12], [14, 16, 18]]" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "addition([[1,2,3],[4,5,6]], [[7,8,9], [10,11,12]])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Creating the Class\n", + "\n", + "In the cell below, you will be creating the class Matrix2D. Use the functions you have written above and tweak them according to the instructions in the comments. You got this!" + ] + }, + { + "cell_type": "code", + "execution_count": 83, + "metadata": {}, + "outputs": [], + "source": [ + "class Matrix2D:\n", + " # First, we will write the __init__ function. \n", + " # In this function, we will initialize rows and the columns using the matrix that we have passed to the class.\n", + " \n", + " def __init__(self, mat):\n", + " # Assign mat to self.mat\n", + " # Assign rows and cols to self.rows and self.cols\n", + " # To find the rows and the cols, use the rowcolumn function and pass self.mat to the function.\n", + " # Since the rowcolumn function is now a member of the class, make sure to refer to the function as self.rowcolumn\n", + " \n", + " # Your code here:\n", + " \n", + " self.mat = mat\n", + " self.rows, self.cols = self.rowcolumn(self.mat)\n", + " \n", + " \n", + " # Insert the twodim function here.\n", + " # The only change you need to make is that now we are passing self and mat to the function (make sure self is first).\n", + " \n", + " # Your code here:\n", + " def twodim(self, mat):\n", + " if not isinstance(mat, list):\n", + " raise ValueError(f\"The variable is not a list, it is {type(self.mat)}\")\n", + " for l in mat:\n", + " if not isinstance(l, list):\n", + " raise ValueError(\"The matrix is only one dimensional\")\n", + " for i in l:\n", + " if isinstance(i, list):\n", + " raise ValueError(\"The matrix is more than two dimensional\")\n", + " return True \n", + " \n", + " # Insert the rowcolumn function here.\n", + " # The changes you need to make: \n", + " # 1. The function now takes self and mat as arguments (make sure to pass self first).\n", + " # 2. Any reference to twodim will be changed to self.twodim since this function is a member of the class and takes self \n", + " \n", + " # Your code here:\n", + " def rowcolumn(self, mat):\n", + " # This function takes a list of lists and returns the size of the rows and the columns \n", + " # Input: list of lists\n", + " # Output: Tuple of rows and columns\n", + " #\n", + " # Sample input: [[1,2,3],[4,5,6]]\n", + " # Sample Output: (2, 3)\n", + " \n", + " # Your code here:\n", + " \n", + " if self.twodim(mat):\n", + " row = len(mat)\n", + " col = len(mat[0])\n", + " for m in mat:\n", + " if len(m) != col:\n", + " raise ValueError(\"The columns are not of equal length\")\n", + " return row, col\n", + " \n", + " \n", + " # Insert the compare function here\n", + " # Add self as the first argument passed to the function\n", + " \n", + " # Your code here:\n", + " def compare(self, mat1, mat2):\n", + " # This function takes a two lists of lists and checks whether they have the same number of rows and columns\n", + " # Input: two list of lists\n", + " # Output: True or False\n", + " #\n", + " # Sample input: [[1,2,3],[4,5,6]], [[7,8,9], [10,11,12]]\n", + " # Sample Output: True\n", + " \n", + " # Your code here:\n", + " \n", + " return self.rowcolumn(mat1) == self.rowcolumn(mat2)\n", + "\n", + " # Insert the addition function here\n", + " # This function now takes self and matrix (another matrix of the Matrix2D class)\n", + " # Change the compare function to self.compare \n", + " # Change any reference to mat1 and mat2 to self.mat and matrix.mat respectively\n", + " # Return your result as a Matrix2D(result). This will ensure that we return a new matrix and not a list of lists.\n", + " \n", + " # Your code here:\n", + " def addition(self, matrix):\n", + " # This function takes a two lists of lists and adds each cell together\n", + " # Input: two list of lists\n", + " # Output: one summed list of lists\n", + " #\n", + " # Sample input: [[1,2,3],[4,5,6]], [[7,8,9], [10,11,12]]\n", + " # Sample Output: [[8,10,12],[14,16,18]]\n", + "\n", + " # Your code here:\n", + "\n", + " res = []\n", + " if self.compare(self.mat, matrix.mat):\n", + " for i in range(len(self.mat)):\n", + " res.append([])\n", + " for j in range(len(self.mat[i])):\n", + " res[i].append(self.mat[i][j] + matrix.mat[i][j])\n", + " return Matrix2D(res)" + ] + }, + { + "cell_type": "code", + "execution_count": 84, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[[8, 10, 12], [14, 16, 18]]" + ] + }, + "execution_count": 84, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Matrix2D([[1,2,3],[4,5,6]]).addition(Matrix2D([[7,8,9],[10,11,12]])).mat" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge 2 - Transpose Function\n", + "\n", + "#### Write a function that transposes the matrix and add it to your class.\n", + "\n", + "You can read more about the transpose of a matrix [here](https://en.wikipedia.org/wiki/Transpose).\n", + "\n", + "Hint: Use the zip function. Read about it [here](https://docs.python.org/3.3/library/functions.html#zip)\n", + "\n", + "Second Hint: Read about the asterisk in Python [here](https://docs.python.org/3/reference/expressions.html#expression-lists)" + ] + }, + { + "cell_type": "code", + "execution_count": 118, + "metadata": {}, + "outputs": [], + "source": [ + "def transpose(mat):\n", + " # This function takes a list of lists and returns a transposed list of lists.\n", + " # Input: list of lists\n", + " # Output: list of lists\n", + " \n", + " # Sample Input: [[1,2,3],[4,5,6]]\n", + " # Sample Output: [[1,4], [2,5], [3,6]]\n", + " \n", + " # Your code here:\n", + " return[list(i) for i in zip(*mat)]" + ] + }, + { + "cell_type": "code", + "execution_count": 120, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[[1, 4], [2, 5], [3, 6]]" + ] + }, + "execution_count": 120, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "transpose([[1,2,3],[4,5,6]])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb b/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb index 3b51ad6..90570c4 100644 --- a/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb +++ b/module-1_labs/lab-object-oriented-programming/your-code/main.ipynb @@ -18,7 +18,7 @@ "\n", "#### We would like to create our own matrix. To make life simple for us, we can represent matrices as a list of lists. For the sake of simplicity, we will assume that the maximum number of dimensions a matrix will have is 2.\n", "\n", - "The most basic thing we would like to do with two matrices is to add them together. To add two matrices, we must perform a number of checks. The first check we would like to perform is whether the matrix is two dimesional. This is because we want to limit ourselves to two dimensional matrices to simplify our problem. In the cell below write a function that checks is a matrix is two dimesional. " + "The most basic thing we would like to do with two matrices is to add them together. To do this, we must compare their size. We should check whether two matrices have the same number of rows and the same number of columns. We compare the number of rows by looking at the outer list and then check the inner lists to see that they are of the same length as well. Our first function will be to check that our matrix is 2 dimensional. We will perform this check by raising an error for any case except a two dimensional matrix." ] }, { diff --git a/module-1_labs/lab-parallelization/your-code/main_solutions.ipynb b/module-1_labs/lab-parallelization/your-code/main_solutions.ipynb new file mode 100644 index 0000000..4057423 --- /dev/null +++ b/module-1_labs/lab-parallelization/your-code/main_solutions.ipynb @@ -0,0 +1,989 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Parallelization Lab\n", + "\n", + "In this lab, you will be leveraging several concepts you have learned to obtain a list of links from a web page and crawl and index the pages referenced by those links - both sequentially and in parallel. Follow the steps below to complete the lab." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 1: Use the requests library to retrieve the content from the URL below." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import requests\n", + "\n", + "url = 'https://en.wikipedia.org/wiki/Data_science'" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "html = requests.get(url).content" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 2: Use BeautifulSoup to extract a list of all the unique links on the page." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "from bs4 import BeautifulSoup" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "['#cite_ref-GilPress_7-0',\n", + " 'https://foundation.wikimedia.org/wiki/Cookie_statement',\n", + " '//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License',\n", + " '/wiki/Unsupervised_learning',\n", + " '#cite_ref-32',\n", + " 'https://it.wikipedia.org/wiki/Scienza_dei_dati',\n", + " '#cite_note-cfjwu01-18',\n", + " '#cite_note-40',\n", + " '#cite_ref-:2_36-6',\n", + " '#cite_ref-15',\n", + " '/wiki/Knowledge',\n", + " 'http://datamining.it.uts.edu.au/conferences/dsaa14/',\n", + " '/wiki/Occam_learning',\n", + " '/wiki/Anomaly_detection',\n", + " '#cite_ref-38',\n", + " '/wiki/Business_analytics',\n", + " 'https://foundation.wikimedia.org/wiki/Privacy_policy',\n", + " '/wiki/DJ_Patil',\n", + " 'https://id.wikipedia.org/wiki/Ilmu_data',\n", + " '/wiki/Data_set',\n", + " 'https://uk.wikipedia.org/wiki/%D0%9D%D0%B0%D1%83%D0%BA%D0%B0_%D0%BF%D1%80%D0%BE_%D0%B4%D0%B0%D0%BD%D1%96',\n", + " '//www.ncbi.nlm.nih.gov/pubmed/24436391',\n", + " '/wiki/Special:Random',\n", + " '/wiki/International_Conference_on_Machine_Learning',\n", + " '/wiki/Independent_component_analysis',\n", + " 'http://www.dsaa.co',\n", + " '#cite_ref-cleveland01_20-1',\n", + " 'https://www.nytimes.com/2009/12/15/science/15books.html',\n", + " '/wiki/Statistician',\n", + " '/wiki/Wikipedia:Community_portal',\n", + " '/wiki/Conditional_random_field',\n", + " '//doi.org/10.1038%2F505612a',\n", + " '#cite_note-25',\n", + " '/wiki/Outline_of_machine_learning',\n", + " 'https://he.wikipedia.org/wiki/%D7%9E%D7%93%D7%A2_%D7%94%D7%A0%D7%AA%D7%95%D7%A0%D7%99%D7%9D',\n", + " '/wiki/Software_Developer',\n", + " '//www.worldcat.org/issn/0362-4331',\n", + " '/w/index.php?title=Data_science&action=history',\n", + " '#cite_ref-ASA_30-0',\n", + " 'https://hbr.org/2018/01/are-you-setting-your-data-scientists-up-to-fail',\n", + " '#cite_note-GilPress-7',\n", + " 'http://ur.umich.edu/9899/Nov09_98/4.htm',\n", + " '/wiki/List_of_datasets_for_machine-learning_research',\n", + " '/w/index.php?title=Special:CiteThisPage&page=Data_science&id=878878465',\n", + " '#cite_ref-:0_1-2',\n", + " 'https://ta.wikipedia.org/wiki/%E0%AE%A4%E0%AE%B0%E0%AE%B5%E0%AF%81_%E0%AE%85%E0%AE%B1%E0%AE%BF%E0%AE%B5%E0%AE%BF%E0%AE%AF%E0%AE%B2%E0%AF%8D',\n", + " '/wiki/Random_forest',\n", + " '#cite_note-16',\n", + " '#cite_ref-BellHey2009_5-0',\n", + " '/wiki/Category:Data_analysis',\n", + " '/wiki/U-Net',\n", + " '/wiki/Category:Information_science',\n", + " '/wiki/Dimensionality_reduction',\n", + " '/wiki/Turing_award',\n", + " 'https://pt.wikipedia.org/wiki/Ci%C3%AAncia_de_dados',\n", + " '/wiki/Principal_component_analysis',\n", + " '/wiki/Conference_on_Neural_Information_Processing_Systems',\n", + " '#cite_note-12',\n", + " '/wiki/Category:Computational_fields_of_study',\n", + " '/wiki/Category:Computer_occupations',\n", + " '//doi.org/10.1093%2Fbiostatistics%2Fkxp014',\n", + " 'https://web.archive.org/web/20131029191813/http://www.isical.ac.in/~statmath/html/pcm/pcm_recent.html',\n", + " '#mw-head',\n", + " '#cite_note-11',\n", + " 'https://link.springer.com/article/10.1007/BF00141776',\n", + " '/wiki/Automated_machine_learning',\n", + " 'https://el.wikipedia.org/wiki/%CE%95%CF%80%CE%B9%CF%83%CF%84%CE%AE%CE%BC%CE%B7_%CE%B4%CE%B5%CE%B4%CE%BF%CE%BC%CE%AD%CE%BD%CF%89%CE%BD',\n", + " '#cite_ref-:2_36-4',\n", + " '#cite_note-BellHey2009-5',\n", + " '/wiki/Wikipedia:Citation_needed',\n", + " 'https://books.google.com/books?id=oGs_AQAAIAAJ',\n", + " 'https://fa.wikipedia.org/wiki/%D8%B9%D9%84%D9%85_%D8%AF%D8%A7%D8%AF%D9%87%E2%80%8C%D9%87%D8%A7',\n", + " '/wiki/Special:BookSources/978-0-9825442-0-4',\n", + " 'https://en.wikipedia.org/w/index.php?title=Data_science&oldid=878878465',\n", + " 'http://www.gfkl.org/welcome/',\n", + " '/wiki/Jim_Gray_(computer_scientist)',\n", + " '/wiki/Computing',\n", + " '#cite_note-32',\n", + " '#References',\n", + " '/wiki/David_Donoho',\n", + " '/wiki/Open_science',\n", + " '/wiki/Convolutional_neural_network',\n", + " '#cite_ref-BellHey2009_5-1',\n", + " '//www.ncbi.nlm.nih.gov/pubmed/24482835',\n", + " '/wiki/Restricted_Boltzmann_machine',\n", + " '/wiki/Reinforcement_learning',\n", + " 'https://es.wikipedia.org/wiki/Ciencia_de_datos',\n", + " '/wiki/Supervised_learning',\n", + " '//www.wikimediafoundation.org/',\n", + " '/wiki/Factor_analysis',\n", + " '/wiki/Statistical_learning_theory',\n", + " '//www.worldcat.org/issn/2245-408X',\n", + " '/wiki/Gated_recurrent_unit',\n", + " '#cite_note-Harvard-6',\n", + " '/wiki/University_of_Essex',\n", + " 'https://hbr.org/2012/10/data-scientist-the-sexiest-job-of-the-21st-century/',\n", + " 'https://www.nytimes.com/2011/04/03/business/03stream.html',\n", + " '#cite_ref-28',\n", + " '/wiki/File:Kernel_Machine.svg',\n", + " 'https://www.forbes.com/sites/gilpress/2013/08/19/data-science-whats-the-half-life-of-a-buzzword/',\n", + " 'https://ja.wikipedia.org/wiki/%E3%83%87%E3%83%BC%E3%82%BF%E3%82%B5%E3%82%A4%E3%82%A8%E3%83%B3%E3%82%B9',\n", + " '#cite_ref-Hayashi_3-1',\n", + " '/w/index.php?title=Data_science&action=edit',\n", + " '/w/index.php?title=Data_science&printable=yes',\n", + " '#cite_ref-Harvard_6-1',\n", + " '/wiki/Talk:Data_science',\n", + " '/wiki/Bayesian_network',\n", + " '#cite_note-38',\n", + " '#cite_note-37',\n", + " '#cite_note-cfjwutk-17',\n", + " '#cite_note-:1-35',\n", + " '#cite_ref-:2_36-3',\n", + " '/wiki/Health_science',\n", + " 'https://www.wikidata.org/wiki/Special:EntityPage/Q2374463',\n", + " '#cite_note-41',\n", + " '/w/index.php?title=Data_science&oldid=878878465',\n", + " '/wiki/Wikipedia:File_Upload_Wizard',\n", + " '/wiki/Software_engineer',\n", + " '/wiki/Basic_research',\n", + " '#cite_note-31',\n", + " '/wiki/PubMed_Central',\n", + " '/wiki/Machine_Learning_(journal)',\n", + " '/wiki/Temporal_difference_learning',\n", + " '/wiki/PubMed_Identifier',\n", + " '//doi.org/10.7146%2Fjod.9823',\n", + " '/w/index.php?title=Special:Book&bookcmd=book_creator&referer=Data+science',\n", + " '#cite_note-10',\n", + " '#cite_ref-12',\n", + " '/wiki/Academic_journal',\n", + " '/wiki/Canonical_correlation_analysis',\n", + " 'https://www.springer.com/41060',\n", + " '#cite_note-15',\n", + " '/wiki/Category:Use_dmy_dates_from_December_2012',\n", + " '//www.worldcat.org/issn/0960-3174',\n", + " '/wiki/Linear_regression',\n", + " '//foundation.wikimedia.org/wiki/Terms_of_Use',\n", + " 'https://hy.wikipedia.org/wiki/%D5%8F%D5%BE%D5%B5%D5%A1%D5%AC%D5%B6%D5%A5%D6%80%D5%AB_%D5%A3%D5%AB%D5%BF%D5%B8%D6%82%D5%A9%D5%B5%D5%B8%D6%82%D5%B6',\n", + " '/wiki/CURE_data_clustering_algorithm',\n", + " '#cite_ref-37',\n", + " '//doi.org/10.1145%2F365719.366510',\n", + " '#cite_ref-11',\n", + " '/wiki/Recurrent_neural_network',\n", + " '#cite_ref-cfjwutk_17-0',\n", + " '#cite_ref-31',\n", + " 'https://venturebeat.com/2014/04/15/ny-gets-new-bootcamp-for-data-scientists-its-free-but-harder-to-get-into-than-harvard/',\n", + " 'https://www.kdnuggets.com/2018/05/data-science-4-reasons-failing-deliver.html',\n", + " '/wiki/Ensemble_learning',\n", + " '/wiki/Logistic_regression',\n", + " '#cite_ref-Harvard_6-0',\n", + " '/wiki/Interdisciplinarity',\n", + " 'https://web.archive.org/web/20170329172857/http://datamining.it.uts.edu.au/conferences/dsaa14/',\n", + " '#cite_note-ASA-30',\n", + " '/wiki/Perceptron',\n", + " 'https://ar.wikipedia.org/wiki/%D8%B9%D9%84%D9%85_%D8%A7%D9%84%D8%A8%D9%8A%D8%A7%D9%86%D8%A7%D8%AA',\n", + " 'http://fortune.com/2015/05/21/data-science-white-hot/',\n", + " '/wiki/Special:WhatLinksHere/Data_science',\n", + " '/wiki/Autoencoder',\n", + " '/wiki/Relevance_vector_machine',\n", + " '//doi.org/10.1126%2Fscience.1250475',\n", + " '/wiki/Interdisciplinary',\n", + " '#cite_ref-GilPress_7-2',\n", + " 'http://science.sciencemag.org/content/343/6168/229',\n", + " '/wiki/Naive_Bayes_classifier',\n", + " '/wiki/Data_mining',\n", + " 'https://www.consultancy.uk/news/16839/70-of-big-data-projects-in-uk-fail-to-realise-full-potential',\n", + " '/wiki/Category:Articles_with_unsourced_statements_from_April_2018',\n", + " '/wiki/K-nearest_neighbors_classification',\n", + " '#cite_note-2',\n", + " 'http://www.jorgdesign.net/article/view/9823',\n", + " '#cite_ref-TansleyTolle2009_4-1',\n", + " '//www.ncbi.nlm.nih.gov/pmc/articles/PMC4058759',\n", + " '/wiki/Portal:Machine_learning',\n", + " '/wiki/C.F._Jeff_Wu',\n", + " '#cite_note-29',\n", + " '/wiki/Statistics',\n", + " '/wiki/Graphical_model',\n", + " '#cite_ref-2',\n", + " 'https://ca.wikipedia.org/wiki/Ci%C3%A8ncia_de_les_dades',\n", + " '/w/index.php?title=Data_science&action=edit§ion=3',\n", + " '/wiki/Pattern_recognition',\n", + " '/wiki/Regression_analysis',\n", + " 'https://academic.oup.com/biostatistics/article/10/3/405/293660',\n", + " 'http://radar.oreilly.com/2011/05/data-science-terminology.html',\n", + " 'http://www.jstage.jst.go.jp/browse/dsj/1/0/_contents',\n", + " '/wiki/Indian_Statistical_Institute',\n", + " '/wiki/Bootstrap_aggregating',\n", + " '#cite_ref-:1_35-1',\n", + " '/wiki/Vapnik%E2%80%93Chervonenkis_theory',\n", + " '/wiki/Empirical_research',\n", + " '#cite_ref-cfjwu01_18-0',\n", + " '/wiki/Special:SpecialPages',\n", + " '/wiki/Social_science',\n", + " '/wiki/Wayback_Machine',\n", + " '/wiki/Local_outlier_factor',\n", + " '#cite_note-8',\n", + " '/wiki/Self-organizing_map',\n", + " '#cite_note-ics12-21',\n", + " '#cite_note-NateSilver-9',\n", + " '/wiki/Hidden_Markov_model',\n", + " '/wiki/Computer_science',\n", + " '/wiki/Linear_discriminant_analysis',\n", + " '/wiki/General_Assembly_(school)',\n", + " '/wiki/Online_machine_learning',\n", + " '/wiki/Journal_of_Machine_Learning_Research',\n", + " '//www.worldcat.org/issn/0036-8075',\n", + " '/wiki/New_York_University',\n", + " '/wiki/Industry',\n", + " '#cite_ref-:2_36-5',\n", + " '/wiki/OPTICS_algorithm',\n", + " '//doi.org/10.1126%2Fscience.1170411',\n", + " 'https://lv.wikipedia.org/wiki/Datu_m%C4%81c%C4%ABba',\n", + " 'https://de.wikipedia.org/wiki/Data_Science',\n", + " '/wiki/Special:BookSources/9784431702085',\n", + " '#cite_note-13',\n", + " '/w/index.php?title=Data_science&action=info',\n", + " '/wiki/Portal:Current_events',\n", + " '/wiki/File:Portal-puzzle.svg',\n", + " '/wiki/Statistical_theory',\n", + " '#cite_ref-:0_1-1',\n", + " '#cite_ref-39',\n", + " '/w/index.php?title=Data_science&action=edit§ion=2',\n", + " '/wiki/Template_talk:Machine_learning_bar',\n", + " '//www.mediawiki.org/',\n", + " '#cite_ref-40',\n", + " '/w/index.php?title=Data_science&action=edit§ion=1',\n", + " '/wiki/Cluster_analysis',\n", + " '/wiki/Support_vector_machine',\n", + " '/w/index.php?title=Data_science&action=edit§ion=4',\n", + " '//www.worldcat.org/issn/1465-4644',\n", + " '#cite_ref-cfjwu02_19-0',\n", + " '#cite_ref-cleveland01_20-0',\n", + " '/wiki/Deep_learning',\n", + " '#cite_note-TansleyTolle2009-4',\n", + " 'http://analytics-magazine.org/the-data-economy-why-do-so-many-analytics-projects-fail/',\n", + " '#cite_note-dsj12-22',\n", + " '/wiki/Business_intelligence',\n", + " '#cite_ref-14',\n", + " '/wiki/Methodology',\n", + " '#cite_ref-10',\n", + " '//doi.org/10.1007%2FBF00141776',\n", + " '#cite_note-26',\n", + " '/wiki/Artificial_neural_network',\n", + " 'http://www.codata.org/',\n", + " '/wiki/Data',\n", + " 'https://ko.wikipedia.org/wiki/%EB%8D%B0%EC%9D%B4%ED%84%B0_%EC%82%AC%EC%9D%B4%EC%96%B8%EC%8A%A4',\n", + " '#cite_note-34',\n", + " 'https://www.forbes.com/sites/gilpress/2013/05/28/a-very-short-history-of-data-science/',\n", + " '#cite_ref-26',\n", + " 'http://www.jds-online.com/v1-1',\n", + " '//shop.wikimedia.org',\n", + " '/wiki/International_Standard_Serial_Number',\n", + " '/wiki/Data_science',\n", + " '#cite_ref-27',\n", + " '/wiki/Structured_prediction',\n", + " '#cite_note-28',\n", + " '/wiki/K-nearest_neighbors_algorithm',\n", + " '/wiki/Prasanta_Chandra_Mahalanobis',\n", + " '#cite_ref-:2_36-2',\n", + " 'http://linkinghub.elsevier.com/retrieve/pii/S0306457317300018',\n", + " '/wiki/National_Institutes_of_Health',\n", + " 'https://www.springer.com/book/9784431702085',\n", + " 'https://ms.wikipedia.org/wiki/Sains_data',\n", + " '/wiki/Digital_object_identifier',\n", + " 'http://www.statisticsviews.com/details/feature/5133141/Nate-Silver-What-I-need-from-statisticians.html',\n", + " '/wiki/Empirical_risk_minimization',\n", + " '#cite_ref-GilPress_7-1',\n", + " '/wiki/Datalogy',\n", + " '/wiki/Mathematics',\n", + " '/wiki/Main_Page',\n", + " '#cite_ref-41',\n", + " '/wiki/Learning_to_rank',\n", + " '//en.m.wikipedia.org/w/index.php?title=Data_science&mobileaction=toggle_view_mobile',\n", + " '/w/index.php?title=Special:ElectronPdf&page=Data+science&action=show-download-screen',\n", + " '#cite_ref-:0_1-0',\n", + " '#cite_note-jds03-24',\n", + " '/wiki/T-distributed_stochastic_neighbor_embedding',\n", + " 'http://cacm.acm.org/magazines/2013/12/169933-data-science-and-prediction/fulltext',\n", + " '/wiki/Help:Category',\n", + " '/wiki/Bias-variance_dilemma',\n", + " 'https://ru.wikipedia.org/wiki/%D0%9D%D0%B0%D1%83%D0%BA%D0%B0_%D0%BE_%D0%B4%D0%B0%D0%BD%D0%BD%D1%8B%D1%85',\n", + " 'https://donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&utm_medium=sidebar&utm_campaign=C13_en.wikipedia.org&uselang=en',\n", + " '/wiki/Probably_approximately_correct_learning',\n", + " '/wiki/Hierarchical_clustering',\n", + " '/wiki/BIRCH',\n", + " '/wiki/Hans_Rosling',\n", + " 'https://my.wikipedia.org/wiki/%E1%80%A1%E1%80%81%E1%80%BB%E1%80%80%E1%80%BA%E1%80%A1%E1%80%9C%E1%80%80%E1%80%BA%E1%80%9E%E1%80%AD%E1%80%95%E1%80%B9%E1%80%95%E1%80%B6%E1%80%95%E1%80%8A%E1%80%AC',\n", + " '/wiki/Help:Contents',\n", + " '/wiki/Graduate_school',\n", + " '#cite_ref-33',\n", + " '#cite_ref-TansleyTolle2009_4-0',\n", + " '/wiki/The_Data_Incubator',\n", + " 'https://hi.wikipedia.org/wiki/%E0%A4%86%E0%A4%81%E0%A4%95%E0%A4%A1%E0%A4%BC%E0%A4%BE_%E0%A4%B5%E0%A4%BF%E0%A4%9C%E0%A5%8D%E0%A4%9E%E0%A4%BE%E0%A4%A8',\n", + " '/w/index.php?title=Special:CreateAccount&returnto=Data+science',\n", + " '/wiki/Category:All_articles_with_unsourced_statements',\n", + " '#cite_ref-NateSilver_9-1',\n", + " '#cite_note-:2-36',\n", + " '/wiki/Special:MyContributions',\n", + " '#cite_note-14',\n", + " '//doi.org/10.1016%2Fj.ipm.2017.05.004',\n", + " '/wiki/University_of_Michigan',\n", + " '#p-search',\n", + " '#cite_ref-NateSilver_9-0',\n", + " 'https://pdfs.semanticscholar.org/915c/d8e2b39eb02723553913d592b2237d4d9960.pdf',\n", + " '/wiki/Artificial_neural_networks',\n", + " '/wiki/Theory',\n", + " 'https://blogs.wsj.com/cio/2014/05/02/why-do-we-need-data-science-when-weve-had-statistics-for-centuries/',\n", + " 'https://simple.wikipedia.org/wiki/Data_science',\n", + " '//creativecommons.org/licenses/by-sa/3.0/',\n", + " '#cite_ref-13',\n", + " '/wiki/Category:Webarchive_template_wayback_links',\n", + " '#cite_ref-:2_36-1',\n", + " '#cite_ref-8',\n", + " '#cite_ref-:1_35-0',\n", + " '/wiki/Machine_learning',\n", + " '/wiki/DeepDream',\n", + " '//doi.org/10.1145%2F2500499',\n", + " '/wiki/Statistical_classification',\n", + " '#cite_ref-jds03_24-0',\n", + " '/wiki/International_Standard_Book_Number',\n", + " '/wiki/Q-learning',\n", + " '/wiki/Academy',\n", + " '#cite_note-27',\n", + " '/wiki/Information_explosion',\n", + " 'http://www.nsf.gov/pubs/2005/nsb0540/',\n", + " '#cite_ref-ics12_21-0',\n", + " '/wiki/Special:MyTalk',\n", + " '/wiki/Non-negative_matrix_factorization',\n", + " '/wiki/Expectation%E2%80%93maximization_algorithm',\n", + " '/wiki/Semi-supervised_learning',\n", + " '/wiki/Thomas_H._Davenport',\n", + " '#cite_note-cfjwu02-19',\n", + " '/wiki/Computational_science',\n", + " '#cite_note-dsj02-23',\n", + " '/wiki/Grammar_induction',\n", + " 'http://simplystatistics.org/2013/12/12/the-key-word-in-data-science-is-not-data-it-is-science/',\n", + " 'https://commons.wikimedia.org/wiki/Category:Data_science',\n", + " '/wiki/Explanatory_model',\n", + " '/wiki/Feature_learning',\n", + " '//www.worldcat.org/issn/0028-0836',\n", + " '//en.wikipedia.org/w/index.php?title=Template:Machine_learning_bar&action=edit',\n", + " '/wiki/State%E2%80%93action%E2%80%93reward%E2%80%93state%E2%80%93action',\n", + " '#cite_note-33',\n", + " '#See_also',\n", + " '#cite_ref-dsj02_23-0',\n", + " '#cite_ref-16',\n", + " '#cite_ref-:2_36-0',\n", + " '/wiki/Predictive_modelling',\n", + " 'http://www.isical.ac.in/~statmath/html/pcm/pcm_recent.html',\n", + " '/wiki/NYU_Stern_Center_for_Business_and_Human_Rights',\n", + " '/wiki/Analytics',\n", + " 'https://az.wikipedia.org/wiki/Veril%C9%99nl%C9%99r_elmi_(Data_Science)',\n", + " '/wiki/Applied_science',\n", + " '/wiki/The_Wall_Street_Journal',\n", + " '/wiki/Harvard_Business_Review',\n", + " '#cite_ref-dsj12_22-0',\n", + " 'https://web.archive.org/web/20120403153707/http://www.jstage.jst.go.jp/browse/dsj/_vols',\n", + " '/wiki/Buzzword',\n", + " '/wiki/Portal:Contents',\n", + " 'http://magazine.amstat.org/blog/2016/06/01/datascience-2/',\n", + " '/wiki/Mean-shift',\n", + " 'https://cs.wikipedia.org/wiki/Data_science',\n", + " 'https://arxiv.org/list/cs.LG/recent',\n", + " '#cite_ref-Hayashi_3-0',\n", + " '#cite_note-:0-1',\n", + " '#cite_ref-34',\n", + " '//doi.org/10.1007%2F978-4-431-65950-1_3',\n", + " '/wiki/Portal:Featured_content',\n", + " '#cite_ref-25',\n", + " '/wiki/Template:Machine_learning_bar',\n", + " 'https://www.wikidata.org/wiki/Special:EntityPage/Q2374463#sitelinks-wikipedia',\n", + " '/wiki/Wikipedia:General_disclaimer',\n", + " 'http://www2.isye.gatech.edu/~jeffwu/presentations/datascience.pdf',\n", + " '/wiki/Glossary_of_artificial_intelligence',\n", + " '/wiki/Special:RecentChangesLinked/Data_science',\n", + " '/wiki/Jeff_Hammerbacher',\n", + " '#History',\n", + " '/wiki/Big_data',\n", + " 'https://zh.wikipedia.org/wiki/%E6%95%B0%E6%8D%AE%E7%A7%91%E5%AD%A6',\n", + " 'https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute',\n", + " '/wiki/Nate_Silver',\n", + " '/wiki/Information_science',\n", + " '/wiki/Forbes',\n", + " '/wiki/Peter_Naur',\n", + " '/wiki/Special:RecentChanges',\n", + " '/wiki/K-means_clustering',\n", + " '/wiki/Information_engineering_(field)',\n", + " 'https://www.bbc.co.uk/programmes/b00wgq0l',\n", + " 'http://courses.csail.mit.edu/18.337/2015/docs/50YearsDataScience.pdf',\n", + " 'https://fr.wikipedia.org/wiki/Science_des_donn%C3%A9es',\n", + " 'http://euads.org',\n", + " '/w/index.php?title=Special:UserLogin&returnto=Data+science',\n", + " '/wiki/Multilayer_perceptron',\n", + " '#cite_note-Hayashi-3',\n", + " '/wiki/DBSCAN',\n", + " '/wiki/American_Statistical_Association',\n", + " 'https://nl.wikipedia.org/wiki/Datawetenschap',\n", + " '/wiki/Feature_engineering',\n", + " '//foundation.wikimedia.org/wiki/Privacy_policy',\n", + " 'https://vi.wikipedia.org/wiki/Khoa_h%E1%BB%8Dc_d%E1%BB%AF_li%E1%BB%87u',\n", + " '#cite_ref-cfjwutk_17-1',\n", + " '//en.wikipedia.org/wiki/Wikipedia:Contact_us',\n", + " 'https://web.archive.org/web/20170205101231/http://magazine.amstat.org/blog/2016/06/01/datascience-2/',\n", + " 'https://link.springer.com/chapter/10.1007/978-4-431-65950-1_3',\n", + " '/wiki/Boosting_(machine_learning)',\n", + " 'https://wikimediafoundation.org/',\n", + " 'http://www.jstage.jst.go.jp/browse/dsj/_vols',\n", + " '#cite_note-cleveland01-20',\n", + " '/wiki/Decision_tree_learning',\n", + " '#Relationship_to_statistics',\n", + " '/wiki/Paradigm',\n", + " '/wiki/Wikipedia:About',\n", + " '/wiki/Association_rule_learning',\n", + " '/wiki/Discipline_(academia)',\n", + " '/wiki/Computational_learning_theory',\n", + " '#cite_note-39',\n", + " '#cite_ref-:2_36-7',\n", + " '/wiki/Academic_publishing',\n", + " '#cite_ref-29',\n", + " '/wiki/Long_short-term_memory']" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "soup = BeautifulSoup(html, \"lxml\")\n", + "links = set(soup.findAll('a', href=True))\n", + "links = list(set([link['href'] for link in links]))\n", + "links" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 3: Use list comprehensions with conditions to clean the link list.\n", + "\n", + "There are two types of links, absolute and relative. Absolute links have the full URL and begin with http while relative links begin with a forward slash (/) and point to an internal page within the wikipedia.org domain. Clean the respective types of URLs as follows.\n", + "\n", + "- Absolute Links: Create a list of these and remove any that contain a percentage sign (%).\n", + "- Relativel Links: Create a list of these, add the domain to the link so that you have the full URL, and remove any that contain a percentage sign (%).\n", + "- Combine the list of absolute and relative links and ensure there are no duplicates." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "domain = 'http://wikipedia.org'" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['http://wikipedia.org/wiki/Wikipedia:Community_portal',\n", + " 'http://wikipedia.org/wiki/Category:Computational_fields_of_study',\n", + " 'http://wikipedia.org/wiki/Graphical_model',\n", + " 'https://foundation.wikimedia.org/wiki/Cookie_statement',\n", + " 'http://wikipedia.org/wiki/Open_science',\n", + " 'http://wikipedia.org/wiki/Portal:Current_events',\n", + " 'http://wikipedia.org/wiki/Statistical_learning_theory',\n", + " 'http://wikipedia.org//www.worldcat.org/issn/1465-4644',\n", + " 'http://wikipedia.org/wiki/DeepDream',\n", + " 'http://wikipedia.org/wiki/Information_explosion',\n", + " 'http://wikipedia.org/wiki/Category:Computer_occupations',\n", + " 'http://wikipedia.org/wiki/Information_science',\n", + " 'http://wikipedia.org//www.ncbi.nlm.nih.gov/pubmed/24482835',\n", + " 'http://wikipedia.org/wiki/Academic_publishing',\n", + " 'https://www.wikidata.org/wiki/Special:EntityPage/Q2374463',\n", + " 'http://wikipedia.org/wiki/Interdisciplinary',\n", + " 'http://wikipedia.org/wiki/Knowledge',\n", + " 'https://it.wikipedia.org/wiki/Scienza_dei_dati',\n", + " 'http://wikipedia.org/wiki/Canonical_correlation_analysis',\n", + " 'http://wikipedia.org/wiki/University_of_Michigan',\n", + " 'http://wikipedia.org/wiki/Wayback_Machine',\n", + " 'http://www.isical.ac.in/~statmath/html/pcm/pcm_recent.html',\n", + " 'http://analytics-magazine.org/the-data-economy-why-do-so-many-analytics-projects-fail/',\n", + " 'http://wikipedia.org/wiki/DJ_Patil',\n", + " 'http://wikipedia.org/wiki/Linear_discriminant_analysis',\n", + " 'http://wikipedia.org/w/index.php?title=Data_science&action=edit§ion=4',\n", + " 'http://wikipedia.org/wiki/The_Data_Incubator',\n", + " 'http://datamining.it.uts.edu.au/conferences/dsaa14/',\n", + " 'http://wikipedia.org/wiki/Software_engineer',\n", + " 'http://wikipedia.org/wiki/Perceptron',\n", + " 'http://wikipedia.org/wiki/Feature_learning',\n", + " 'http://wikipedia.org/wiki/Special:Random',\n", + " 'http://wikipedia.org/wiki/Jeff_Hammerbacher',\n", + " 'http://wikipedia.org/wiki/International_Standard_Book_Number',\n", + " 'http://wikipedia.org/w/index.php?title=Data_science&action=edit',\n", + " 'http://wikipedia.org/w/index.php?title=Data_science&action=edit§ion=2',\n", + " 'http://www.codata.org/',\n", + " 'http://wikipedia.org/wiki/Non-negative_matrix_factorization',\n", + " 'https://foundation.wikimedia.org/wiki/Privacy_policy',\n", + " 'https://web.archive.org/web/20120403153707/http://www.jstage.jst.go.jp/browse/dsj/_vols',\n", + " 'http://wikipedia.org/w/index.php?title=Special:CreateAccount&returnto=Data+science',\n", + " 'http://wikipedia.org//creativecommons.org/licenses/by-sa/3.0/',\n", + " 'http://wikipedia.org/wiki/Explanatory_model',\n", + " 'http://wikipedia.org//www.wikimediafoundation.org/',\n", + " 'https://id.wikipedia.org/wiki/Ilmu_data',\n", + " 'http://wikipedia.org/wiki/Health_science',\n", + " 'http://wikipedia.org/wiki/Datalogy',\n", + " 'https://www.forbes.com/sites/gilpress/2013/05/28/a-very-short-history-of-data-science/',\n", + " 'https://www.springer.com/41060',\n", + " 'http://wikipedia.org/wiki/Naive_Bayes_classifier',\n", + " 'http://wikipedia.org/wiki/Regression_analysis',\n", + " 'http://wikipedia.org/wiki/Bias-variance_dilemma',\n", + " 'http://wikipedia.org/wiki/Peter_Naur',\n", + " 'http://wikipedia.org/wiki/Special:MyTalk',\n", + " 'http://www.jds-online.com/v1-1',\n", + " 'http://wikipedia.org/wiki/Basic_research',\n", + " 'http://wikipedia.org/wiki/Empirical_risk_minimization',\n", + " 'http://wikipedia.org/wiki/Category:Webarchive_template_wayback_links',\n", + " 'http://wikipedia.org/wiki/Supervised_learning',\n", + " 'http://wikipedia.org/wiki/Artificial_neural_networks',\n", + " 'http://wikipedia.org/wiki/U-Net',\n", + " 'http://wikipedia.org/wiki/Computer_science',\n", + " 'http://wikipedia.org/wiki/Academic_journal',\n", + " 'http://wikipedia.org/wiki/Artificial_neural_network',\n", + " 'http://wikipedia.org/wiki/Data',\n", + " 'http://magazine.amstat.org/blog/2016/06/01/datascience-2/',\n", + " 'http://wikipedia.org/wiki/OPTICS_algorithm',\n", + " 'http://wikipedia.org/wiki/Wikipedia:Citation_needed',\n", + " 'https://cs.wikipedia.org/wiki/Data_science',\n", + " 'https://venturebeat.com/2014/04/15/ny-gets-new-bootcamp-for-data-scientists-its-free-but-harder-to-get-into-than-harvard/',\n", + " 'http://wikipedia.org/wiki/International_Standard_Serial_Number',\n", + " 'http://www.dsaa.co',\n", + " 'https://arxiv.org/list/cs.LG/recent',\n", + " 'http://wikipedia.org/wiki/International_Conference_on_Machine_Learning',\n", + " 'http://wikipedia.org/wiki/Statistician',\n", + " 'http://wikipedia.org/wiki/Relevance_vector_machine',\n", + " 'https://www.kdnuggets.com/2018/05/data-science-4-reasons-failing-deliver.html',\n", + " 'http://wikipedia.org/w/index.php?title=Special:Book&bookcmd=book_creator&referer=Data+science',\n", + " 'http://wikipedia.org/wiki/American_Statistical_Association',\n", + " 'http://wikipedia.org/wiki/Boosting_(machine_learning)',\n", + " 'http://wikipedia.org/wiki/Business_intelligence',\n", + " 'https://www.nytimes.com/2009/12/15/science/15books.html',\n", + " 'http://wikipedia.org/wiki/Forbes',\n", + " 'http://wikipedia.org/w/index.php?title=Special:ElectronPdf&page=Data+science&action=show-download-screen',\n", + " 'http://linkinghub.elsevier.com/retrieve/pii/S0306457317300018',\n", + " 'http://wikipedia.org/wiki/Prasanta_Chandra_Mahalanobis',\n", + " 'http://wikipedia.org/wiki/Hans_Rosling',\n", + " 'http://wikipedia.org/wiki/Category:Information_science',\n", + " 'http://wikipedia.org/wiki/Business_analytics',\n", + " 'https://web.archive.org/web/20170329172857/http://datamining.it.uts.edu.au/conferences/dsaa14/',\n", + " 'http://wikipedia.org/wiki/List_of_datasets_for_machine-learning_research',\n", + " 'https://www.springer.com/book/9784431702085',\n", + " 'http://wikipedia.org/wiki/Special:RecentChangesLinked/Data_science',\n", + " 'http://wikipedia.org/wiki/Interdisciplinarity',\n", + " 'http://wikipedia.org/w/index.php?title=Data_science&action=info',\n", + " 'https://ms.wikipedia.org/wiki/Sains_data',\n", + " 'http://wikipedia.org/wiki/C.F._Jeff_Wu',\n", + " 'http://wikipedia.org/wiki/Category:Data_analysis',\n", + " 'http://wikipedia.org/wiki/Gated_recurrent_unit',\n", + " 'http://wikipedia.org/wiki/Machine_Learning_(journal)',\n", + " 'http://wikipedia.org/wiki/Wikipedia:File_Upload_Wizard',\n", + " 'http://fortune.com/2015/05/21/data-science-white-hot/',\n", + " 'http://wikipedia.org//www.worldcat.org/issn/0960-3174',\n", + " 'http://wikipedia.org/wiki/Empirical_research',\n", + " 'http://wikipedia.org/wiki/Thomas_H._Davenport',\n", + " 'http://wikipedia.org/wiki/Portal:Featured_content',\n", + " 'https://www.wikidata.org/wiki/Special:EntityPage/Q2374463#sitelinks-wikipedia',\n", + " 'http://wikipedia.org/wiki/Template:Machine_learning_bar',\n", + " 'http://www.statisticsviews.com/details/feature/5133141/Nate-Silver-What-I-need-from-statisticians.html',\n", + " 'http://wikipedia.org/wiki/Paradigm',\n", + " 'http://www2.isye.gatech.edu/~jeffwu/presentations/datascience.pdf',\n", + " 'http://wikipedia.org/wiki/File:Kernel_Machine.svg',\n", + " 'http://wikipedia.org/wiki/Feature_engineering',\n", + " 'http://wikipedia.org/wiki/NYU_Stern_Center_for_Business_and_Human_Rights',\n", + " 'http://wikipedia.org/wiki/Autoencoder',\n", + " 'https://hbr.org/2018/01/are-you-setting-your-data-scientists-up-to-fail',\n", + " 'http://wikipedia.org/wiki/Digital_object_identifier',\n", + " 'http://ur.umich.edu/9899/Nov09_98/4.htm',\n", + " 'http://wikipedia.org/wiki/Theory',\n", + " 'http://wikipedia.org/wiki/K-nearest_neighbors_algorithm',\n", + " 'http://wikipedia.org/wiki/Special:BookSources/978-0-9825442-0-4',\n", + " 'http://wikipedia.org/wiki/National_Institutes_of_Health',\n", + " 'http://science.sciencemag.org/content/343/6168/229',\n", + " 'http://wikipedia.org/wiki/Graduate_school',\n", + " 'http://wikipedia.org//www.ncbi.nlm.nih.gov/pubmed/24436391',\n", + " 'http://wikipedia.org/wiki/Discipline_(academia)',\n", + " 'http://wikipedia.org/wiki/Support_vector_machine',\n", + " 'https://www.consultancy.uk/news/16839/70-of-big-data-projects-in-uk-fail-to-realise-full-potential',\n", + " 'http://wikipedia.org/wiki/Jim_Gray_(computer_scientist)',\n", + " 'http://wikipedia.org/wiki/Cluster_analysis',\n", + " 'http://www.jorgdesign.net/article/view/9823',\n", + " 'http://wikipedia.org/wiki/Special:SpecialPages',\n", + " 'https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute',\n", + " 'http://wikipedia.org/wiki/Special:WhatLinksHere/Data_science',\n", + " 'http://wikipedia.org/wiki/Local_outlier_factor',\n", + " 'http://wikipedia.org/wiki/Buzzword',\n", + " 'http://wikipedia.org/wiki/Wikipedia:About',\n", + " 'http://wikipedia.org//www.worldcat.org/issn/2245-408X',\n", + " 'http://wikipedia.org/wiki/Anomaly_detection',\n", + " 'http://wikipedia.org/wiki/Big_data',\n", + " 'http://wikipedia.org/wiki/Conference_on_Neural_Information_Processing_Systems',\n", + " 'http://wikipedia.org/wiki/Industry',\n", + " 'http://wikipedia.org/wiki/Analytics',\n", + " 'http://cacm.acm.org/magazines/2013/12/169933-data-science-and-prediction/fulltext',\n", + " 'http://wikipedia.org/wiki/K-nearest_neighbors_classification',\n", + " 'http://wikipedia.org/wiki/Journal_of_Machine_Learning_Research',\n", + " 'http://wikipedia.org/wiki/Turing_award',\n", + " 'http://wikipedia.org/wiki/Convolutional_neural_network',\n", + " 'https://donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&utm_medium=sidebar&utm_campaign=C13_en.wikipedia.org&uselang=en',\n", + " 'http://wikipedia.org/wiki/Dimensionality_reduction',\n", + " 'http://wikipedia.org/wiki/Ensemble_learning',\n", + " 'http://wikipedia.org/wiki/Nate_Silver',\n", + " 'http://wikipedia.org//foundation.wikimedia.org/wiki/Privacy_policy',\n", + " 'http://wikipedia.org/wiki/Wikipedia:General_disclaimer',\n", + " 'http://wikipedia.org/wiki/T-distributed_stochastic_neighbor_embedding',\n", + " 'http://wikipedia.org/wiki/Association_rule_learning',\n", + " 'http://wikipedia.org/wiki/Data_set',\n", + " 'https://web.archive.org/web/20131029191813/http://www.isical.ac.in/~statmath/html/pcm/pcm_recent.html',\n", + " 'http://wikipedia.org/wiki/Hierarchical_clustering',\n", + " 'https://academic.oup.com/biostatistics/article/10/3/405/293660',\n", + " 'http://radar.oreilly.com/2011/05/data-science-terminology.html',\n", + " 'http://www.jstage.jst.go.jp/browse/dsj/1/0/_contents',\n", + " 'http://wikipedia.org/wiki/David_Donoho',\n", + " 'http://wikipedia.org//foundation.wikimedia.org/wiki/Terms_of_Use',\n", + " 'https://www.bbc.co.uk/programmes/b00wgq0l',\n", + " 'http://wikipedia.org/wiki/Q-learning',\n", + " 'http://courses.csail.mit.edu/18.337/2015/docs/50YearsDataScience.pdf',\n", + " 'http://wikipedia.org/wiki/Harvard_Business_Review',\n", + " 'http://wikipedia.org/wiki/Logistic_regression',\n", + " 'http://euads.org',\n", + " 'http://wikipedia.org/wiki/Applied_science',\n", + " 'https://link.springer.com/article/10.1007/BF00141776',\n", + " 'http://wikipedia.org//www.worldcat.org/issn/0036-8075',\n", + " 'http://wikipedia.org/w/index.php?title=Data_science&printable=yes',\n", + " 'http://wikipedia.org/wiki/Academy',\n", + " 'http://wikipedia.org/wiki/Online_machine_learning',\n", + " 'https://books.google.com/books?id=oGs_AQAAIAAJ',\n", + " 'http://wikipedia.org/wiki/Software_Developer',\n", + " 'http://wikipedia.org/wiki/Bayesian_network',\n", + " 'http://wikipedia.org//www.ncbi.nlm.nih.gov/pmc/articles/PMC4058759',\n", + " 'http://wikipedia.org/wiki/Hidden_Markov_model',\n", + " 'http://wikipedia.org//www.mediawiki.org/',\n", + " 'http://wikipedia.org/wiki/Special:RecentChanges',\n", + " 'http://wikipedia.org/wiki/Factor_analysis',\n", + " 'http://wikipedia.org/wiki/Semi-supervised_learning',\n", + " 'http://wikipedia.org/wiki/Conditional_random_field',\n", + " 'http://wikipedia.org/wiki/Portal:Machine_learning',\n", + " 'http://wikipedia.org/wiki/Self-organizing_map',\n", + " 'http://wikipedia.org/wiki/Category:All_articles_with_unsourced_statements',\n", + " 'http://wikipedia.org/wiki/Automated_machine_learning',\n", + " 'http://wikipedia.org/wiki/Category:Use_dmy_dates_from_December_2012',\n", + " 'https://pdfs.semanticscholar.org/915c/d8e2b39eb02723553913d592b2237d4d9960.pdf',\n", + " 'http://wikipedia.org/wiki/Mean-shift',\n", + " 'http://wikipedia.org/wiki/University_of_Essex',\n", + " 'http://wikipedia.org/wiki/Statistical_theory',\n", + " 'http://wikipedia.org/wiki/Mathematics',\n", + " 'http://wikipedia.org/wiki/Category:Articles_with_unsourced_statements_from_April_2018',\n", + " 'http://wikipedia.org/wiki/Methodology',\n", + " 'http://wikipedia.org/wiki/Long_short-term_memory',\n", + " 'https://en.wikipedia.org/w/index.php?title=Data_science&oldid=878878465',\n", + " 'http://wikipedia.org/wiki/Portal:Contents',\n", + " 'http://wikipedia.org/wiki/Bootstrap_aggregating',\n", + " 'https://blogs.wsj.com/cio/2014/05/02/why-do-we-need-data-science-when-weve-had-statistics-for-centuries/',\n", + " 'http://wikipedia.org/wiki/PubMed_Identifier',\n", + " 'https://simple.wikipedia.org/wiki/Data_science',\n", + " 'http://www.gfkl.org/welcome/',\n", + " 'http://wikipedia.org/wiki/Reinforcement_learning',\n", + " 'http://wikipedia.org//www.worldcat.org/issn/0362-4331',\n", + " 'https://nl.wikipedia.org/wiki/Datawetenschap',\n", + " 'http://wikipedia.org/wiki/Social_science',\n", + " 'http://wikipedia.org/wiki/Temporal_difference_learning',\n", + " 'http://wikipedia.org/wiki/Special:MyContributions',\n", + " 'http://wikipedia.org/wiki/Computational_learning_theory',\n", + " 'http://wikipedia.org/wiki/New_York_University',\n", + " 'http://wikipedia.org/wiki/Multilayer_perceptron',\n", + " 'http://wikipedia.org/wiki/Structured_prediction',\n", + " 'http://wikipedia.org/wiki/Predictive_modelling',\n", + " 'http://wikipedia.org/w/index.php?title=Data_science&action=edit§ion=3',\n", + " 'http://wikipedia.org/wiki/Probably_approximately_correct_learning',\n", + " 'http://wikipedia.org/wiki/Indian_Statistical_Institute',\n", + " 'http://wikipedia.org/wiki/Computing',\n", + " 'http://wikipedia.org//en.m.wikipedia.org/w/index.php?title=Data_science&mobileaction=toggle_view_mobile',\n", + " 'http://wikipedia.org/wiki/BIRCH',\n", + " 'http://wikipedia.org/w/index.php?title=Special:UserLogin&returnto=Data+science',\n", + " 'https://web.archive.org/web/20170205101231/http://magazine.amstat.org/blog/2016/06/01/datascience-2/',\n", + " 'https://link.springer.com/chapter/10.1007/978-4-431-65950-1_3',\n", + " 'http://wikipedia.org/wiki/Information_engineering_(field)',\n", + " 'http://wikipedia.org/w/index.php?title=Data_science&action=history',\n", + " 'http://wikipedia.org/wiki/Pattern_recognition',\n", + " 'https://wikimediafoundation.org/',\n", + " 'http://www.jstage.jst.go.jp/browse/dsj/_vols',\n", + " 'http://wikipedia.org/wiki/Linear_regression',\n", + " 'https://es.wikipedia.org/wiki/Ciencia_de_datos',\n", + " 'http://wikipedia.org/wiki/Learning_to_rank',\n", + " 'http://wikipedia.org/wiki/Help:Category',\n", + " 'http://wikipedia.org/wiki/Unsupervised_learning',\n", + " 'http://wikipedia.org/wiki/Occam_learning',\n", + " 'http://wikipedia.org/w/index.php?title=Special:CiteThisPage&page=Data_science&id=878878465',\n", + " 'http://wikipedia.org/wiki/General_Assembly_(school)',\n", + " 'http://wikipedia.org/wiki/Data_science',\n", + " 'http://wikipedia.org/wiki/The_Wall_Street_Journal',\n", + " 'http://wikipedia.org/wiki/Statistical_classification',\n", + " 'http://wikipedia.org/wiki/K-means_clustering',\n", + " 'http://wikipedia.org/w/index.php?title=Data_science&oldid=878878465',\n", + " 'https://de.wikipedia.org/wiki/Data_Science',\n", + " 'http://www.nsf.gov/pubs/2005/nsb0540/',\n", + " 'http://wikipedia.org/wiki/Computational_science',\n", + " 'https://hbr.org/2012/10/data-scientist-the-sexiest-job-of-the-21st-century/',\n", + " 'http://wikipedia.org//shop.wikimedia.org',\n", + " 'https://www.nytimes.com/2011/04/03/business/03stream.html',\n", + " 'http://wikipedia.org/wiki/Talk:Data_science',\n", + " 'http://wikipedia.org/wiki/Help:Contents',\n", + " 'http://wikipedia.org/wiki/Restricted_Boltzmann_machine',\n", + " 'http://wikipedia.org//en.wikipedia.org/wiki/Wikipedia:Contact_us',\n", + " 'http://wikipedia.org//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License',\n", + " 'http://wikipedia.org/wiki/Recurrent_neural_network',\n", + " 'https://www.forbes.com/sites/gilpress/2013/08/19/data-science-whats-the-half-life-of-a-buzzword/',\n", + " 'http://wikipedia.org/wiki/Special:BookSources/9784431702085',\n", + " 'http://wikipedia.org/wiki/File:Portal-puzzle.svg',\n", + " 'http://wikipedia.org/wiki/CURE_data_clustering_algorithm',\n", + " 'http://wikipedia.org/wiki/Deep_learning',\n", + " 'http://wikipedia.org/wiki/DBSCAN',\n", + " 'http://wikipedia.org/wiki/Decision_tree_learning',\n", + " 'http://wikipedia.org/wiki/Template_talk:Machine_learning_bar',\n", + " 'http://wikipedia.org/w/index.php?title=Data_science&action=edit§ion=1',\n", + " 'http://wikipedia.org//en.wikipedia.org/w/index.php?title=Template:Machine_learning_bar&action=edit',\n", + " 'http://wikipedia.org//www.worldcat.org/issn/0028-0836',\n", + " 'http://wikipedia.org/wiki/Principal_component_analysis',\n", + " 'http://wikipedia.org/wiki/Statistics',\n", + " 'http://wikipedia.org/wiki/Data_mining',\n", + " 'http://wikipedia.org/wiki/Glossary_of_artificial_intelligence',\n", + " 'http://wikipedia.org/wiki/Machine_learning',\n", + " 'http://wikipedia.org/wiki/PubMed_Central',\n", + " 'http://simplystatistics.org/2013/12/12/the-key-word-in-data-science-is-not-data-it-is-science/',\n", + " 'http://wikipedia.org/wiki/Independent_component_analysis',\n", + " 'https://commons.wikimedia.org/wiki/Category:Data_science',\n", + " 'http://wikipedia.org/wiki/Main_Page',\n", + " 'http://wikipedia.org/wiki/Grammar_induction',\n", + " 'http://wikipedia.org/wiki/Random_forest',\n", + " 'http://wikipedia.org/wiki/Outline_of_machine_learning']" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "absolute = [link for link in links if (link.startswith(('http'))) & ('%' not in link)]\n", + "relative = [domain + link for link in links if (link.startswith(('/'))) & ('%' not in link)]\n", + "links = list(set(absolute + relative))\n", + "links" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 4: Use the os library to create a folder called *wikipedia* and make that the current working directory." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import os" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "folder = './wikipedia'\n", + "\n", + "if not os.path.exists(folder):\n", + " os.makedirs(folder)\n", + "\n", + "os.chdir(folder)\n", + "directory = os.getcwd()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 5: Write a function called index_page that accepts a link and does the following.\n", + "\n", + "- Tries to request the content of the page referenced by that link.\n", + "- Slugifies the filename using the `slugify` function from the [python-slugify](https://pypi.org/project/python-slugify/) library and adds a .html file extension.\n", + " - If you don't already have the python-slugify library installed, you can pip install it as follows: `$ pip install python-slugify`.\n", + " - To import the slugify function, you would do the following: `from slugify import slugify`.\n", + " - You can then slugify a link as follows `slugify(link)`.\n", + "- Creates a file in the wikipedia folder using the slugified filename and writes the contents of the page to the file.\n", + "- If an exception occurs during the process above, just `pass`." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "from slugify import slugify" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "def index_page(link):\n", + " try:\n", + " page = requests.get(link).content\n", + " filename = slugify(link).lower() + '.html'\n", + " with open(directory + '/' + filename, 'wb') as f:\n", + " f.write(page)\n", + " except:\n", + " pass" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 6: Sequentially loop through the list of links, running the index_page function each time.\n", + "\n", + "Remember to include `%%time` at the beginning of the cell so that it measures the time it takes for the cell to run." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Page indexing complete!\n", + "CPU times: user 17 s, sys: 1.29 s, total: 18.2 s\n", + "Wall time: 3min 55s\n" + ] + } + ], + "source": [ + "%%time\n", + "for link in links:\n", + " index_page(link)\n", + "\n", + "print(\"Page indexing complete!\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Step 7: Perform the page indexing in parallel and note the difference in performance.\n", + "\n", + "Remember to include `%%time` at the beginning of the cell so that it measures the time it takes for the cell to run." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "import multiprocessing" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Page indexing complete!\n", + "CPU times: user 64.2 ms, sys: 39 ms, total: 103 ms\n", + "Wall time: 1min\n" + ] + } + ], + "source": [ + "%%time\n", + "pool = multiprocessing.Pool()\n", + "result = pool.map(index_page, links)\n", + "pool.terminate()\n", + "pool.join()\n", + "print(\"Page indexing complete!\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.0" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-sql-aggregations/lab-2-sql-aggregations-solutions.md b/module-1_labs/lab-sql-aggregations/lab-2-sql-aggregations-solutions.md new file mode 100644 index 0000000..dbb9eea --- /dev/null +++ b/module-1_labs/lab-sql-aggregations/lab-2-sql-aggregations-solutions.md @@ -0,0 +1,216 @@ +![IronHack Logo](https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_d5c5793015fec3be28a63c4fa3dd4d55.png) + +# Lab | SQL - Aggregation + +## Introduction + +In this lab, we are adding the `GROUP BY` clause and aggregations to our SQL vocabulary. + +Please submit your solutions in a text file `solutions.sql`. + +## Challenge: + +Assume that any `_id` columns are incremental, meaning that higher ids always occured after lower ids. For example, a client with a higher `client_id` joined the bank after a client with a lower `client_id`. + +### 1. From the `client` table, of all districts with a `district_id` lower than 10, how many clients are from each `district_id`? Show the results sorted by district_id in ascending order. +Result: +``` +1 663 +2 46 +3 63 +4 50 +5 71 +6 53 +7 45 +8 69 +9 60 +``` +Solution: +```sql +SELECT + district_id, + COUNT(*) AS clients +FROM client +WHERE district_id < 10 +GROUP BY district_id +ORDER BY district_id; +``` + +### 2. From the `card` table, how many cards exist for each `type`? Rank the result starting with the most frequent `type`. +Result: +``` +classic 659 +junior 145 +gold 88 +``` +Solution: +```sql +SELECT + type, + COUNT(1) AS cards +FROM card +GROUP BY type +ORDER BY cards DESC; +``` + +### 3. Using the `loan` table, print the top 10 `account_id`s based on the sum of all of their loan amounts. +Result: +``` +7542 590820 +8926 566640 +2335 541200 +817 538500 +2936 504000 +7049 495180 +10451 482940 +6950 475680 +7966 473280 +339 468060 +``` +Solution: +```sql +SELECT + account_id, + SUM(amount) AS total_amount +FROM bank.loan +GROUP BY account_id +ORDER BY total_amount DESC +LIMIT 10; +``` + +### 4. From the `loan` table, retrieve the number of loans issued for each day, before (excl) 930907, ordered by date in descending order +Result: +``` +930906 1 +930803 1 +930728 1 +930711 1 +930705 1 +``` +Solution: +```sql +SELECT + date, + COUNT(*) AS loans_issued +FROM loan +WHERE date < 930907 +GROUP BY date +ORDER BY date DESC; +``` + +### 5. From the `loan` table, for each day in December 1997, count the number of loans issued for each unique loan duration, ordered by date and duration, both in ascending order. You can ignore days without any loans in your output. +Result: +``` +971206 24 1 +971206 36 1 +971208 12 3 +971209 12 1 +971209 24 1 +971210 12 1 +971211 24 1 +971211 48 1 +971213 24 1 +971220 36 1 +971221 36 1 +971224 60 1 +971225 24 1 +971225 60 1 +``` +Solution: +```sql +SELECT + date, + duration, + COUNT(*) AS loans_issed +FROM loan +WHERE + date >= 971201 + AND date < 980101 +GROUP BY + date, + duration +ORDER BY + date, + duration; +``` + +### 6. From the `trans` table, for account_id 396, sum the amount of transactions for each type (VYDAJ = Outgoing, PRIJEM = Incoming). Your output should have the account_id, the type and the sum of amount, named as `total_amount`. Sort alphabetically by type. +Result: +``` +396 PRIJEM 1028138.6999740601 +396 VYDAJ 1485814.400024414 +``` +Solution: +```sql +SELECT + account_id, + type, + SUM(amount) AS total_amount +FROM trans +WHERE account_id = 396 +GROUP BY + account_id, + type +ORDER BY type; +``` + +### 7. From the previous output, translate the values for `type` to English, rename the column to `transaction_type`, round `total_amount` down to an integer +Result: +``` +396 INCOMING 1028138 +396 OUTGOING 1485814 +``` +Solution: +```sql +SELECT + account_id, + IF(type = 'PRIJEM', 'INCOMING', 'OUTGOING') AS transaction_type, + FLOOR(SUM(amount)) AS total_amount +FROM trans +WHERE account_id = 396 +GROUP BY 1, 2 +ORDER BY 2; +``` + +### 8. From the previous result, modify you query so that it returns only one row, with a column for incoming amount, outgoing amount and the difference +Result: +``` +396 1028138 1485814 -457676 +``` +Solution: +```sql +SELECT + account_id, + FLOOR(SUM(IF(type = 'PRIJEM', amount, 0))) AS incoming_amount, + FLOOR(SUM(IF(type = 'VYDAJ', amount, 0))) AS outgoing_amount, + FLOOR(SUM(IF(type = 'PRIJEM', amount, 0))) - FLOOR(SUM(IF(type = 'VYDAJ', amount, 0))) AS difference +FROM trans +WHERE account_id = 396 +GROUP BY 1; +``` + +### 9. Continuing with the previous example, rank the top 10 account_ids based on their difference +Result: +``` +9707 869527 +3424 816372 +3260 803055 +2486 735219 +1801 725382 +4470 707243 +3674 703531 +9656 702786 +2227 696564 +6473 692580 +``` + +Solution: +```sql +SELECT + account_id, + FLOOR(SUM(IF(type = 'PRIJEM', amount, 0))) - FLOOR(SUM(IF(type = 'VYDAJ', amount, 0))) AS difference +FROM trans +GROUP BY 1 +ORDER BY 2 DESC +LIMIT 10; +``` diff --git a/module-1_labs/lab-sql-aggregations/lab-2-sql-aggregations.md b/module-1_labs/lab-sql-aggregations/lab-2-sql-aggregations.md new file mode 100644 index 0000000..af2caa6 --- /dev/null +++ b/module-1_labs/lab-sql-aggregations/lab-2-sql-aggregations.md @@ -0,0 +1,115 @@ +![IronHack Logo](https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_d5c5793015fec3be28a63c4fa3dd4d55.png) + +# Lab | SQL - Aggregation + +## Introduction + +In this lab, we are adding the `GROUP BY` clause and aggregations to our SQL vocabulary. + +Please submit your solutions in a text file `solutions.sql`. + +## Challenge: + +Assume that any `_id` columns are incremental, meaning that higher ids always occured after lower ids. For example, a client with a higher `client_id` joined the bank after a client with a lower `client_id`. + +### 1. From the `client` table, of all districts with a `district_id` lower than 10, how many clients are from each `district_id`? Show the results sorted by district_id in ascending order. +Result: +``` +1 663 +2 46 +3 63 +4 50 +5 71 +6 53 +7 45 +8 69 +9 60 +``` + +### 2. From the `card` table, how many cards exist for each `type`? Rank the result starting with the most frequent `type`. +Result: +``` +classic 659 +junior 145 +gold 88 +``` + +### 3. Using the `loan` table, print the top 10 `account_id`s based on the sum of all of their loan amounts. +Result: +``` +7542 590820 +8926 566640 +2335 541200 +817 538500 +2936 504000 +7049 495180 +10451 482940 +6950 475680 +7966 473280 +339 468060 +``` + +### 4. From the `loan` table, retrieve the number of loans issued for each day, before (excl) 930907, ordered by date in descending order +Result: +``` +930906 1 +930803 1 +930728 1 +930711 1 +930705 1 +``` + +### 5. From the `loan` table, for each day in December 1997, count the number of loans issued for each unique loan duration, ordered by date and duration, both in ascending order. You can ignore days without any loans in your output. +Result: +``` +971206 24 1 +971206 36 1 +971208 12 3 +971209 12 1 +971209 24 1 +971210 12 1 +971211 24 1 +971211 48 1 +971213 24 1 +971220 36 1 +971221 36 1 +971224 60 1 +971225 24 1 +971225 60 1 +``` + +### 6. From the `trans` table, for account_id 396, sum the amount of transactions for each type (VYDAJ = Outgoing, PRIJEM = Incoming). Your output should have the account_id, the type and the sum of amount, named as `total_amount`. Sort alphabetically by type. +Result: +``` +396 PRIJEM 1028138.6999740601 +396 VYDAJ 1485814.400024414 +``` + +### 7. From the previous output, translate the values for `type` to English, rename the column to `transaction_type`, round `total_amount` down to an integer +Result: +``` +396 INCOMING 1028138 +396 OUTGOING 1485814 +``` + +### 8. From the previous result, modify you query so that it returns only one row, with a column for incoming amount, outgoing amount and the difference +Result: +``` +396 1028138 1485814 -457676 +``` + +### 9. Continuing with the previous example, rank the top 10 account_ids based on their difference +Result: +``` +9707 869527 +3424 816372 +3260 803055 +2486 735219 +1801 725382 +4470 707243 +3674 703531 +9656 702786 +2227 696564 +6473 692580 +``` + diff --git a/module-1_labs/lab-sql-select/lab-1-sql-select-solutions.md b/module-1_labs/lab-sql-select/lab-1-sql-select-solutions.md new file mode 100644 index 0000000..f87a12b --- /dev/null +++ b/module-1_labs/lab-sql-select/lab-1-sql-select-solutions.md @@ -0,0 +1,225 @@ +![IronHack Logo](https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_d5c5793015fec3be28a63c4fa3dd4d55.png) + +# Lab | SQL - Selection + +## Introduction + +Run your first SQL commands! In this lab, we will practice selecting and projecting data. You can finish all questions with only those clauses: +- `SELECT` +- `SELECT DISTINCT` +- `FROM` +- `WHERE` +- `ORDER BY` +- `LIMIT` + +Please submit your solutions in a text file `solutions.sql`. + +## Challenge: + +Assume that any `_id` columns are incremental, meaning that higher ids always occured after lower ids. For example, a client with a higher `client_id` joined the bank after a client with a lower `client_id`. + +### 1. From the `client` table, what are the ids of the first 5 clients from `disrict_id` 1? + +Result: +``` +2 +3 +22 +23 +28 +``` +Solution: +```sql +SELECT client_id +FROM client +WHERE district_id = 1 +ORDER BY client_id ASC +LIMIT 5; +``` + +### 2. From the `client` table, what is the id of the last client from `district_id` 72? +Result: +``` +13576 +``` +Solution: +```sql +SELECT client_id +FROM client +WHERE district_id = 72 +ORDER BY client_id DESC +LIMIT 1; +``` + +### 3. From the `loan` table, what are the 3 lowest amounts? +Result: +``` +4980 +5148 +7656 +``` +Solution: +```sql +SELECT amount +FROM loan +ORDER BY amount ASC +LIMIT 3; +``` + +### 4. From the `loan` table, what are the possible values for status, ordered alphabetically in ascending order? +Result: +``` +A +B +C +D +``` +Solution: +```sql +SELECT DISTINCT status +FROM loan +ORDER BY status; +``` + +### 5. From the `loans` table, what is the `loan_id` of the highest payment received? +Result: +``` +6312 +``` +Solution: +```sql +SELECT loan_id +FROM loan +ORDER BY payments ASC +LIMIT 1; +``` + +### 6. From the `loans` table, what is the loan `amount` of the lowest 5 `account_id`s. Show the `account_id` and the corresponding `amount` +Result: +``` +2 80952 +19 30276 +25 30276 +37 318480 +38 110736 +``` +Solution: +```sql +SELECT + account_id, + amount +FROM loan +ORDER BY account_id ASC +LIMIT 5; +``` + +### 7. From the `loans` table, which are the `account_id`s with the lowest loan `amount` have a loan `duration` of 60? +Result: +``` +10954 +938 +10711 +1766 +10799 +``` +Solution: +```sql +SELECT account_id +FROM loan +WHERE duration = 60 +ORDER BY amount ASC +LIMIT 5; +``` + +### 8. From the `order` table, what are the unique values of `k_symbol`? +Note: There shouldn't be a table name `order`, since `order` is reserved from the `ORDER BY` clause. You have to use backticks to escape the `order` table name. +Result: +``` + +LEASING +POJISTNE +SIPO +UVER +``` +Solution: +```sql +SELECT DISTINCT k_symbol +FROM `order` +ORDER BY k_symbol; +``` + +### 9. From the `order` table, which are the `order_id`s from the client with the `account_id` 34? +Result: +``` +29445 +29446 +29447 +``` +Solution: +```sql +SELECT order_id +FROM `order` +WHERE account_id = 34; +``` + +### 10. From the `order` table, which `account_id`s were responsible for orders between `order_id` 29540 and `order_id` 29560 (inclusive)? +Result: +``` +88 +90 +96 +97 +``` +Solution: +```sql +SELECT DISTINCT account_id +FROM `order` +WHERE order_id >= 29540 +AND order_id <= 29560 +ORDER BY account_id; + +-- alternatively: +SELECT DISTINCT account_id +FROM `order` +WHERE order_id BETWEEN 29540 AND 29560 +ORDER BY account_id; +``` + +### 11. From the `order` table, what are the individual amounts that were sent to (`account_to`) id 30067122? +Result: +``` +5123 +``` +Solution: +```sql +SELECT amount +FROM `order` +WHERE account_to = 30067122; +``` + +### 12. From the `trans` table, show the `trans_id`, `date`, `type` and `amount` of the 10 first transactions from `account_id` = 793 in chronological order, from newest to oldest. +Result: +``` +3556468 981231 PRIJEM 78.6 +233254 981216 VYDAJ 600 +233104 981212 VYDAJ 1212 +233248 981211 VYDAJ 851 +233176 981207 VYDAJ 204 +3556467 981130 PRIJEM 75.1 +233395 981130 VYDAJ 14.6 +233103 981112 VYDAJ 1212 +233247 981111 VYDAJ 851 +233175 981107 VYDAJ 204 +``` +Solution: +```sql +SELECT + trans_id, + date, + type, + amount +FROM trans +WHERE account_id = 793 +ORDER BY date DESC +LIMIT 10; +``` diff --git a/module-1_labs/lab-sql-select/lab-1-sql-select.md b/module-1_labs/lab-sql-select/lab-1-sql-select.md new file mode 100644 index 0000000..6b66703 --- /dev/null +++ b/module-1_labs/lab-sql-select/lab-1-sql-select.md @@ -0,0 +1,139 @@ +![IronHack Logo](https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_d5c5793015fec3be28a63c4fa3dd4d55.png) + +# Lab | SQL - Selection + +## Introduction + +Run your first SQL commands! In this lab, we will practice selecting and projecting data. You can finish all questions with only those clauses: +- `SELECT` +- `SELECT DISTINCT` +- `FROM` +- `WHERE` +- `ORDER BY` +- `LIMIT` + +Please submit your solutions in a text file `solutions.sql`. + +## Challenge: + +Assume that any `_id` columns are incremental, meaning that higher ids always occured after lower ids. For example, a client with a higher `client_id` joined the bank after a client with a lower `client_id`. + +### 1. From the `client` table, what are the ids of the first 5 clients from `disrict_id` 1? + +Result: +``` +2 +3 +22 +23 +28 +``` + + +### 2. From the `client` table, what is the id of the last client from `district_id` 72? +Result: +``` +13576 +``` + + +### 3. From the `loan` table, what are the 3 lowest amounts? +Result: +``` +4980 +5148 +7656 +``` + + +### 4. From the `loan` table, what are the possible values for status, ordered alphabetically in ascending order? +Result: +``` +A +B +C +D +``` + + +### 5. From the `loans` table, what is the `loan_id` of the highest payment received? +Result: +``` +6312 +``` + + +### 6. From the `loans` table, what is the loan `amount` of the lowest 5 `account_id`s. Show the `account_id` and the corresponding `amount` +Result: +``` +2 80952 +19 30276 +25 30276 +37 318480 +38 110736 +``` + + + +### 7. From the `loans` table, which are the `account_id`s with the lowest loan `amount` have a loan `duration` of 60? +Result: +``` +10954 +938 +10711 +1766 +10799 +``` + + +### 8. From the `order` table, what are the unique values of `k_symbol`? +Note: There shouldn't be a table name `order`, since `order` is reserved from the `ORDER BY` clause. You have to use backticks to escape the `order` table name. +Result: +``` + +LEASING +POJISTNE +SIPO +UVER +``` + + +### 9. From the `order` table, which are the `order_id`s from the client with the `account_id` 34? +Result: +``` +29445 +29446 +29447 +``` + + +### 10. From the `order` table, which `account_id`s were responsible for orders between `order_id` 29540 and `order_id` 29560 (inclusive)? +Result: +``` +88 +90 +96 +97 +``` + +### 11. From the `order` table, what are the individual amounts that were sent to (`account_to`) id 30067122? +Result: +``` +5123 +``` + +### 12. From the `trans` table, show the `trans_id`, `date`, `type` and `amount` of the 10 first transactions from `account_id` = 793 in chronological order, from newest to oldest. +Result: +``` +3556468 981231 PRIJEM 78.6 +233254 981216 VYDAJ 600 +233104 981212 VYDAJ 1212 +233248 981211 VYDAJ 851 +233176 981207 VYDAJ 204 +3556467 981130 PRIJEM 75.1 +233395 981130 VYDAJ 14.6 +233103 981112 VYDAJ 1212 +233247 981111 VYDAJ 851 +233175 981107 VYDAJ 204 +``` + diff --git a/module-1_labs/lab-string-operations/README.md b/module-1_labs/lab-string-operations/README.md index e268ee0..27f15ae 100644 --- a/module-1_labs/lab-string-operations/README.md +++ b/module-1_labs/lab-string-operations/README.md @@ -1,18 +1,19 @@ ![Ironhack logo](https://i.imgur.com/1QgrNNw.png) -# Lab | String Operations and Bag of Words +# Lab | String Operations + ## Introduction -In this lab, we will learn how to manipulate strings. There are two challenges: 1) to practice how to manipulate strings, and 2) to use string manipulation techniques to create Bag of Words (BoW). BoW is an essential technique in Natural Language Processing. +In this lab, we will learn how to manipulate strings. We will combine strings, split them apart, and use regular expressions to filter strings. -### Getting Started +## Getting Started -In your Terminal, navigate into the directory `your-code` of this lab that contains `challenge-1.ipynb`, `challenge-2.ipynb`, `doc1.txt`, `doc2.txt`, and `doc3.txt`. Start Jupyter Notebook by executing `jupyter notebook`. A webpage should automatically open for you but in case not, go to [http://localhost:8888](http://localhost:8888). Then click the link to each ipynb file to complete the challenges. +Open the `main.ipynb` file in the `your-code` directory. Follow the instructions and add your code and explanations as necessary. By the end of this lab, you will have learned about string manipulation and regular expressions. ## Deliverables -`challenge-1.ipynb` and `challenge-2.ipynb` with your responses. +- `main.ipynb` with your responses. ## Submission @@ -20,26 +21,9 @@ Upon completion, add your deliverables to git. Then commit git and push your bra ## Resources -* [The `re` Library](https://docs.python.org/3/library/re.html) - -* [F-strings](https://www.python.org/dev/peps/pep-0498/) - -* [Regular Expressions](https://developers.google.com/edu/python/regular-expressions) - -* [Python Input and Output (how to read file content)](https://docs.python.org/3/tutorial/inputoutput.html) - -* [How to Remove Punctuation in Python String](https://www.quora.com/How-do-I-remove-punctuation-from-a-Python-string) - -* [Convert String to Lowercase in Python](https://docs.python.org/3/library/stdtypes.html#str.lower) - -* [Break Python String into Array](https://docs.python.org/3/library/stdtypes.html#str.split) - -* [What is Text Corpus?](https://en.wikipedia.org/wiki/Text_corpus) - -* [A Gentle Introduction to the Bag-of-Words Model](https://machinelearningmastery.com/gentle-introduction-bag-words-model/) +[The `re` Library](https://docs.python.org/3/library/re.html) -## Additional Reading +[F-strings](https://www.python.org/dev/peps/pep-0498/) -If you are a research-type person, you will find [this article](http://rstb.royalsocietypublishing.org/content/royptb/366/1567/1101.full.pdf) interesting. Scientists used techniques based on BoW to calculate the frequency of words used cross 17 world languages. They found there is a consistent pattern in terms of the frequency of words being used in human languages. Some mad scientists even [want to use this technique to analyze dolphin language](http://grantome.com/grant/NSF/PHY-1530544) because they believe they can build corpora based on the sounds dolphins make, correlate the dolphin language corpora with human language corpora, and potentially understand what dolphins speak. :astonished: :astonished: :astonished: +[Regular Expressions](https://developers.google.com/edu/python/regular-expressions) -Data analytics is now entering almost every discipline and profession. You will want to reflect on how you will apply your data analytics skills to the fields you are familiar with -- in creative ways. There are tons of fun secrets waiting for you to discover with data analytics. diff --git a/module-1_labs/lab-string-operations/your-code/main-solutions.ipynb b/module-1_labs/lab-string-operations/your-code/main-solutions.ipynb new file mode 100644 index 0000000..e54e43e --- /dev/null +++ b/module-1_labs/lab-string-operations/your-code/main-solutions.ipynb @@ -0,0 +1,460 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import re" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Combining Strings\n", + "\n", + "Combining strings is an important skill to acquire. There are multiple ways of combining strings in Python, as well as combining strings with variables. We will explore this in the first challenge. In the cell below, combine the strings in the list and add spaces between the strings (do not add a space after the last string). Insert a period after the last string." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Durante un tiempo no estuvo segura de si su marido era su marido.'" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "str_list = ['Durante', 'un', 'tiempo', 'no', 'estuvo', 'segura', 'de', 'si', 'su', 'marido', 'era', 'su', 'marido']\n", + "# Your code here:\n", + "\n", + "output = ''\n", + "for s in str_list[:-1]:\n", + " output = output + s + ' '\n", + "output = output + str_list[-1] + '.'\n", + "\n", + "#or\n", + "\n", + "output = ' '.join(str_list)+'.'\n", + "output" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, use the list of strings to create a grocery list. Start the list with the string `Grocery list: ` and include a comma and a space between each item except for the last one. Include a period at the end. Only include foods in the list that start with the letter 'b' and ensure all foods are lower case." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Grocery list: bananas, bread, brownie mix, broccoli.'" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "food_list = ['Bananas', 'Chocolate', 'bread', 'diapers', 'Ice Cream', 'Brownie Mix', 'broccoli']\n", + "# Your code here:\n", + "\n", + "output = 'Grocery list: '\n", + "for s in food_list[:-1]:\n", + " if s.lower()[0] == 'b':\n", + " output = output + s.lower() + ', '\n", + "if food_list[-1].lower()[0] == 'b':\n", + " output = output + food_list[-1] + '.'\n", + "output" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, write a function that computes the area of a circle using its radius. Compute the area of the circle and insert the radius and the area between the two strings. Make sure to include spaces between the variable and the strings. \n", + "\n", + "Note: You can use the techniques we have learned so far or use f-strings. F-strings allow us to embed code inside strings. You can read more about f-strings [here](https://www.python.org/dev/peps/pep-0498/)." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "import math\n", + "\n", + "string1 = \"The area of the circle with radius:\"\n", + "string2 = \"is:\"\n", + "radius = 4.5\n", + "\n", + "def area(x, pi = math.pi):\n", + " # This function takes a radius and returns the area of a circle. We also pass a default value for pi.\n", + " # Input: Float (and default value for pi)\n", + " # Output: Float\n", + " \n", + " # Sample input: 5.0\n", + " # Sample Output: 78.53981633\n", + " \n", + " # Your code here:\n", + " return pi * (x ** 2)\n", + "\n", + "a = area(radius)\n", + "\n", + "# Your string here:\n", + "\n", + "output = string1 + ' ' + str(radius) + ' ' + string2 + ' ' + str(a)\n", + "# or\n", + "output = f\"The area of the circle with radius: {radius} is {area(radius)}\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Splitting Strings\n", + "\n", + "We have first looked at combining strings into one long string. There are times where we need to do the opposite and split the string into smaller components for further analysis. \n", + "\n", + "In the cell below, split the string into a list of strings using the space delimiter. Count the frequency of each word in the string in a dictionary. Strip the periods, line breaks and commas from the text. Make sure to remove empty strings from your dictionary." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'some': 2,\n", + " 'say': 3,\n", + " 'the': 1,\n", + " 'world': 1,\n", + " 'will': 1,\n", + " 'end': 1,\n", + " 'in': 2,\n", + " 'fire': 2,\n", + " 'ice': 2,\n", + " 'from': 1,\n", + " 'what': 1,\n", + " 'i’ve': 1,\n", + " 'tasted': 1,\n", + " 'of': 2,\n", + " 'desire': 1,\n", + " 'i': 3,\n", + " 'hold': 1,\n", + " 'with': 1,\n", + " 'those': 1,\n", + " 'who': 1,\n", + " 'favor': 1,\n", + " 'but': 1,\n", + " 'if': 1,\n", + " 'it': 1,\n", + " 'had': 1,\n", + " 'to': 2,\n", + " 'perish': 1,\n", + " 'twice': 1,\n", + " 'think': 1,\n", + " 'know': 1,\n", + " 'enough': 1,\n", + " 'hate': 1,\n", + " 'that': 1,\n", + " 'for': 1,\n", + " 'destruction': 1,\n", + " 'is': 1,\n", + " 'also': 1,\n", + " 'great': 1,\n", + " 'and': 1,\n", + " 'would': 1,\n", + " 'suffice': 1}" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "poem = \"\"\"Some say the world will end in fire,\n", + "Some say in ice.\n", + "From what I’ve tasted of desire\n", + "I hold with those who favor fire.\n", + "But if it had to perish twice,\n", + "I think I know enough of hate\n", + "To say that for destruction ice\n", + "Is also great\n", + "And would suffice.\"\"\"\n", + "\n", + "# Your code here:\n", + "poem_list = poem.replace(\",\", \" \").replace(\".\", \" \").replace(\"\\n\", \" \").split(\" \")\n", + "poem_list = [p.lower() for p in poem_list]\n", + "poem_dict = {}\n", + "for p in poem_list:\n", + " if p not in poem_dict.keys():\n", + " poem_dict[p] = 1\n", + " else:\n", + " poem_dict[p] = poem_dict[p] + 1\n", + " \n", + "del poem_dict['']\n", + "\n", + "poem_dict" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, find all the words that appear in the text and do not appear in the blacklist. You must parse the string but can choose any data structure you wish for the words that do not appear in the blacklist. Remove all non letter characters and convert all words to lower case." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'angry',\n", + " 'apple',\n", + " 'beheld',\n", + " 'beneath',\n", + " 'bore',\n", + " 'both',\n", + " 'bright',\n", + " 'day',\n", + " 'deceitful',\n", + " 'did',\n", + " 'end',\n", + " 'fears',\n", + " 'foe',\n", + " 'friend',\n", + " 'garden',\n", + " 'glad',\n", + " 'grew',\n", + " 'grow',\n", + " 'had',\n", + " 'he',\n", + " 'i',\n", + " 'into',\n", + " 'knew',\n", + " 'mine',\n", + " 'morning',\n", + " 'my',\n", + " 'night',\n", + " 'not',\n", + " 'outstretched',\n", + " 'pole',\n", + " 'see',\n", + " 'shine',\n", + " 'smiles',\n", + " 'soft',\n", + " 'stole',\n", + " 'sunned',\n", + " 'tears',\n", + " 'that',\n", + " 'till',\n", + " 'told',\n", + " 'tree',\n", + " 'veild',\n", + " 'was',\n", + " 'waterd',\n", + " 'when',\n", + " 'wiles',\n", + " 'with',\n", + " 'wrath'}" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "blacklist = ['and', 'as', 'an', 'a', 'the', 'in', 'it']\n", + "\n", + "poem = \"\"\"I was angry with my friend; \n", + "I told my wrath, my wrath did end.\n", + "I was angry with my foe: \n", + "I told it not, my wrath did grow. \n", + "\n", + "And I waterd it in fears,\n", + "Night & morning with my tears: \n", + "And I sunned it with smiles,\n", + "And with soft deceitful wiles. \n", + "\n", + "And it grew both day and night. \n", + "Till it bore an apple bright. \n", + "And my foe beheld it shine,\n", + "And he knew that it was mine. \n", + "\n", + "And into my garden stole, \n", + "When the night had veild the pole; \n", + "In the morning glad I see; \n", + "My foe outstretched beneath the tree.\"\"\"\n", + "\n", + "# Your code here:\n", + "poem_set = poem.replace(\".\", \" \").replace(\",\", \" \").replace(\"\\n\", \" \").replace(\":\", \" \").replace(\";\", \" \").replace(\"&\", \" \").split(\" \")\n", + "poem_set = set([p.lower() for p in poem_set])\n", + "poem_set = poem_set - set(blacklist + [''])\n", + "poem_set" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3 - Regular Expressions\n", + "\n", + "Sometimes, we would like to perform more complex manipulations of our string. This is where regular expressions come in handy. In the cell below, return all characters that are upper case from the string specified below." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['T', 'P']" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "poem = \"\"\"The apparition of these faces in the crowd;\n", + "Petals on a wet, black bough.\"\"\"\n", + "\n", + "# Your code here:\n", + "re.findall(\"[A-Z]\", poem)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, filter the list provided and return all elements of the list containing a number. To filter the list, use the `re.search` function. Check if the function does not return `None`. You can read more about the `re.search` function [here](https://docs.python.org/3/library/re.html)." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['123abc', 'abc123', 'JohnSmith1', 'ABBY4']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = ['123abc', 'abc123', 'JohnSmith1', 'ABBY4', 'JANE']\n", + "\n", + "# Your code here:\n", + "\n", + "filtered = [x for x in data if re.search('\\d', x) is not None]\n", + "filtered" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Regular Expressions II\n", + "\n", + "In the cell below, filter the list provided to keep only strings containing at least one digit and at least one lower case letter. As in the previous question, use the `re.search` function and check that the result is not `None`.\n", + "\n", + "To read more about regular expressions, check out [this link](https://developers.google.com/edu/python/regular-expressions)." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['123abc', 'abc123', 'JohnSmith1']" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = ['123abc', 'abc123', 'JohnSmith1', 'ABBY4', 'JANE']\n", + "# Your code here:\n", + "\n", + "[x for x in data if re.search(\"(?=.*\\d)(?=.*[a-z]).*\", x) is not None]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1_labs/lab-string-operations/your-code/main.ipynb b/module-1_labs/lab-string-operations/your-code/main.ipynb new file mode 100644 index 0000000..5b07d41 --- /dev/null +++ b/module-1_labs/lab-string-operations/your-code/main.ipynb @@ -0,0 +1,255 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import re" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Combining Strings\n", + "\n", + "Combining strings is an important skill to acquire. There are multiple ways of combining strings in Python, as well as combining strings with variables. We will explore this in the first challenge. In the cell below, combine the strings in the list and add spaces between the strings (do not add a space after the last string). Insert a period after the last string." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "str_list = ['Durante', 'un', 'tiempo', 'no', 'estuvo', 'segura', 'de', 'si', 'su', 'marido', 'era', 'su', 'marido']\n", + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, use the list of strings to create a grocery list. Start the list with the string `Grocery list: ` and include a comma and a space between each item except for the last one. Include a period at the end. Only include foods in the list that start with the letter 'b' and ensure all foods are lower case." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "food_list = ['Bananas', 'Chocolate', 'bread', 'diapers', 'Ice Cream', 'Brownie Mix', 'broccoli']\n", + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, write a function that computes the area of a circle using its radius. Compute the area of the circle and insert the radius and the area between the two strings. Make sure to include spaces between the variable and the strings. \n", + "\n", + "Note: You can use the techniques we have learned so far or use f-strings. F-strings allow us to embed code inside strings. You can read more about f-strings [here](https://www.python.org/dev/peps/pep-0498/)." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import math\n", + "\n", + "string1 = \"The area of the circle with radius:\"\n", + "string2 = \"is:\"\n", + "radius = 4.5\n", + "\n", + "def area(x, pi = math.pi):\n", + " # This function takes a radius and returns the area of a circle. We also pass a default value for pi.\n", + " # Input: Float (and default value for pi)\n", + " # Output: Float\n", + " \n", + " # Sample input: 5.0\n", + " # Sample Output: 78.53981633\n", + " \n", + " # Your code here:\n", + " \n", + " \n", + "# Your output string here:" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Splitting Strings\n", + "\n", + "We have first looked at combining strings into one long string. There are times where we need to do the opposite and split the string into smaller components for further analysis. \n", + "\n", + "In the cell below, split the string into a list of strings using the space delimiter. Count the frequency of each word in the string in a dictionary. Strip the periods, line breaks and commas from the text. Make sure to remove empty strings from your dictionary." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "poem = \"\"\"Some say the world will end in fire,\n", + "Some say in ice.\n", + "From what I’ve tasted of desire\n", + "I hold with those who favor fire.\n", + "But if it had to perish twice,\n", + "I think I know enough of hate\n", + "To say that for destruction ice\n", + "Is also great\n", + "And would suffice.\"\"\"\n", + "\n", + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, find all the words that appear in the text and do not appear in the blacklist. You must parse the string but can choose any data structure you wish for the words that do not appear in the blacklist. Remove all non letter characters and convert all words to lower case." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "blacklist = ['and', 'as', 'an', 'a', 'the', 'in', 'it']\n", + "\n", + "poem = \"\"\"I was angry with my friend; \n", + "I told my wrath, my wrath did end.\n", + "I was angry with my foe: \n", + "I told it not, my wrath did grow. \n", + "\n", + "And I waterd it in fears,\n", + "Night & morning with my tears: \n", + "And I sunned it with smiles,\n", + "And with soft deceitful wiles. \n", + "\n", + "And it grew both day and night. \n", + "Till it bore an apple bright. \n", + "And my foe beheld it shine,\n", + "And he knew that it was mine. \n", + "\n", + "And into my garden stole, \n", + "When the night had veild the pole; \n", + "In the morning glad I see; \n", + "My foe outstretched beneath the tree.\"\"\"\n", + "\n", + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3 - Regular Expressions\n", + "\n", + "Sometimes, we would like to perform more complex manipulations of our string. This is where regular expressions come in handy. In the cell below, return all characters that are upper case from the string specified below." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "poem = \"\"\"The apparition of these faces in the crowd;\n", + "Petals on a wet, black bough.\"\"\"\n", + "\n", + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, filter the list provided and return all elements of the list containing a number. To filter the list, use the `re.search` function. Check if the function does not return `None`. You can read more about the `re.search` function [here](https://docs.python.org/3/library/re.html)." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "data = ['123abc', 'abc123', 'JohnSmith1', 'ABBY4', 'JANE']\n", + "\n", + "# Your code here:\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Regular Expressions II\n", + "\n", + "In the cell below, filter the list provided to keep only strings containing at least one digit and at least one lower case letter. As in the previous question, use the `re.search` function and check that the result is not `None`.\n", + "\n", + "To read more about regular expressions, check out [this link](https://developers.google.com/edu/python/regular-expressions)." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "data = ['123abc', 'abc123', 'JohnSmith1', 'ABBY4', 'JANE']\n", + "# Your code here:\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1_labs/lab-tuple-set-dict/your-code/challenge-1-solution.ipynb b/module-1_labs/lab-tuple-set-dict/your-code/challenge-1-solution.ipynb new file mode 100644 index 0000000..ad93c86 --- /dev/null +++ b/module-1_labs/lab-tuple-set-dict/your-code/challenge-1-solution.ipynb @@ -0,0 +1,336 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Challenge 1: Tuples\n", + "\n", + "#### Do you know you can create tuples with only one element?\n", + "\n", + "**In the cell below, define a variable `tup` with a single element `\"I\"`.**\n", + "\n", + "*Hint: you need to add a comma (`,`) after the single element.*" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here\n", + "\n", + "tup = (\"I\",)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Print the type of `tup`. \n", + "\n", + "Make sure its type is correct (i.e. *tuple* instead of *str*)." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "tuple" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "\n", + "type(tup)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Now try to append the following elements to `tup`. \n", + "\n", + "Are you able to do it? Explain.\n", + "\n", + "```\n", + "\"r\", \"o\", \"n\", \"h\", \"a\", \"c\", \"k',\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here\n", + "\n", + "\n", + "# Your explanation here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### How about re-assign a new value to an existing tuple?\n", + "\n", + "Re-assign the following elements to `tup`. Are you able to do it? Explain.\n", + "\n", + "```\n", + "\"I\", \"r\", \"o\", \"n\", \"h\", \"a\", \"c\", \"k\"\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here\n", + "tup = (\"I\", \"r\", \"o\", \"n\", \"h\", \"a\", \"c\", \"k\")\n", + "\n", + "\n", + "# Your explanation here\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Split `tup` into `tup1` and `tup2` with 4 elements in each. \n", + "\n", + "`tup1` should be `(\"I\", \"r\", \"o\", \"n\")` and `tup2` should be `(\"h\", \"a\", \"c\", \"k\")`.\n", + "\n", + "*Hint: use positive index numbers for `tup1` assignment and use negative index numbers for `tup2` assignment. Positive index numbers count from the beginning whereas negative index numbers count from the end of the sequence.*\n", + "\n", + "Print `tup1` and `tup2`." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('I', 'r', 'o', 'n')\n", + "('h', 'a', 'c', 'k')\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "tup1 = tup[:4]\n", + "\n", + "tup2 = tup[-4:]\n", + "\n", + "print(tup1)\n", + "\n", + "print(tup2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Add `tup1` and `tup2` into `tup3` using the `+` operator.\n", + "\n", + "Print `tup3` and check if `tup3` equals to `tup`." + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('I', 'r', 'o', 'n', 'h', 'a', 'c', 'k')\n", + "True\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "tup3 = tup1 + tup2\n", + "\n", + "print(tup3)\n", + "\n", + "print(tup == tup3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Count the number of elements in `tup1` and `tup2`. \n", + "#### Add the two counts together and check if the sum is the same as the count of `tup3`" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "\n", + "len(tup1) + len(tup2) == len(tup3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### What is the index number of `\"h\"` in `tup3`?" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "4" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "\n", + "tup3.index(\"h\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Now, use a FOR loop to check whether each letter in the following list is present in `tup3`:\n", + "\n", + "```\n", + "letters = [\"a\", \"b\", \"c\", \"d\", \"e\"]\n", + "```\n", + "\n", + "For each letter you check, print `True` if it is present in `tup3` otherwise print `False`.\n", + "\n", + "*Hint: you only need to loop the list `letters`. You don't need to loop the tuple `tup3` because there is a Python operator `in` you can use. See [reference](https://stackoverflow.com/questions/17920147/how-to-check-if-a-tuple-contains-an-element-in-python).*" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "True\n", + "False\n", + "True\n", + "False\n", + "False\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "letters = [\"a\", \"b\", \"c\", \"d\", \"e\"]\n", + "\n", + "for letter in letters:\n", + " print(letter in tup3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### How many times does each letter in `letters` appear in `tup3`?\n", + "\n", + "Print out the number of occurrence of each letter." + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "1\n", + "0\n", + "1\n", + "0\n", + "0\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "for letter in letters:\n", + " print(tup3.count(letter))" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1_labs/lab-tuple-set-dict/your-code/challenge-2-solution.ipynb b/module-1_labs/lab-tuple-set-dict/your-code/challenge-2-solution.ipynb new file mode 100644 index 0000000..d549ef4 --- /dev/null +++ b/module-1_labs/lab-tuple-set-dict/your-code/challenge-2-solution.ipynb @@ -0,0 +1,491 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Challenge 2: Sets\n", + "\n", + "There are a lot to learn about Python Sets and the information presented in the lesson is limited due to its length. To learn Python Sets in depth you are strongly encouraged to review the W3Schools tutorial on [Python Sets Examples and Methods](https://www.w3schools.com/python/python_sets.asp) before you work on this lab. Some difficult questions in this lab have their solutions in the W3Schools tutorial.\n", + "\n", + "#### First, import the Python `random` libary" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import random" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### In the cell below, create a list named `sample_list_1` with 80 random values. \n", + "\n", + "Requirements:\n", + "\n", + "* Each value is an integer falling between 0 and 100.\n", + "* Each value in the list is unique.\n", + "\n", + "Print `sample_list_1` to review its values\n", + "\n", + "*Hint: use `random.sample` ([reference](https://docs.python.org/3/library/random.html#random.sample)).*" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[78, 57, 2, 22, 17, 67, 42, 25, 31, 86, 90, 19, 6, 13, 18, 72, 95, 14, 89, 8, 97, 49, 61, 41, 80, 85, 91, 16, 7, 1, 87, 55, 46, 59, 10, 48, 75, 56, 12, 27, 94, 33, 53, 45, 81, 60, 58, 74, 21, 4, 23, 39, 44, 82, 88, 66, 34, 30, 51, 92, 79, 29, 15, 20, 9, 43, 36, 62, 68, 69, 24, 3, 40, 52, 63, 38, 73, 96, 54, 93]\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "sample_list_1 = random.sample(range(1, 100), 80)\n", + "\n", + "print(sample_list_1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Convert `sample_list_1` to a set called `set1`. Print the length of the set. Is its length still 80?" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "80" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "\n", + "set1 = set(sample_list_1)\n", + "\n", + "len(set1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Create another list named `sample_list_2` with 80 random values.\n", + "\n", + "Requirements:\n", + "\n", + "* Each value is an integer falling between 0 and 100.\n", + "* The values in the list don't have to be unique.\n", + "\n", + "*Hint: Use a FOR loop.*" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[97, 38, 83, 72, 36, 40, 92, 16, 71, 75, 47, 4, 72, 26, 46, 24, 90, 55, 43, 16, 22, 58, 6, 54, 95, 0, 63, 3, 59, 73, 29, 44, 68, 74, 6, 8, 33, 60, 73, 100, 26, 9, 22, 65, 23, 45, 24, 62, 57, 74, 49, 5, 90, 59, 2, 18, 15, 97, 91, 41, 65, 66, 49, 15, 76, 69, 5, 89, 0, 40, 0, 61, 80, 58, 15, 18, 39, 81, 27, 63]\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "sample_list_2 = [random.randint(0, 100) for k in range(80)]\n", + "\n", + "print(sample_list_2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Convert `sample_list_2` to a set called `set2`. Print the length of the set. Is its length still 80?" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "58" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "\n", + "set2 = set(sample_list_2)\n", + "\n", + "len(set2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Identify the elements present in `set1` but not in `set2`. Assign the elements to a new set named `set3`." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{1, 7, 10, 12, 13, 14, 17, 19, 20, 21, 25, 30, 31, 34, 42, 48, 51, 52, 53, 56, 67, 78, 79, 82, 85, 86, 87, 88, 93, 94, 96}\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "set3 = set1 - set2\n", + "\n", + "print(set3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Identify the elements present in `set2` but not in `set1`. Assign the elements to a new set named `set4`." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{0, 65, 100, 5, 71, 76, 47, 83, 26}\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "set4 = set2 - set1\n", + "\n", + "print(set4)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Now Identify the elements shared between `set1` and `set2`. Assign the elements to a new set named `set5`." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{2, 3, 4, 6, 8, 9, 15, 16, 18, 22, 23, 24, 27, 29, 33, 36, 38, 39, 40, 41, 43, 44, 45, 46, 49, 54, 55, 57, 58, 59, 60, 61, 62, 63, 66, 68, 69, 72, 73, 74, 75, 80, 81, 89, 90, 91, 92, 95, 97}\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "set5 = set1 & set2\n", + "\n", + "print(set5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### What is the relationship among the following values:\n", + "\n", + "* len(set1)\n", + "* len(set2)\n", + "* len(set3)\n", + "* len(set4)\n", + "* len(set5)\n", + "\n", + "Use a math formular to represent that relationship. Test your formular with Python code." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "\n", + "len(set3) + len(set4) + len(set5) * 2 == len(set1) + len(set2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Create an empty set called `set6`." + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here\n", + "\n", + "set6 = set()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Add `set3` and `set5` to `set6` using the Python Set `update` method." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here\n", + "\n", + "set6.update(set3, set5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Check if `set1` and `set6` are equal." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "\n", + "set6 == set1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Check if `set1` contains `set2` using the Python Set `issubset` method. Then check if `set1` contains `set3`.*" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "\n", + "set2.issubset(set1)\n", + "\n", + "set3.issubset(set1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Using the Python Set `union` method, aggregate `set3`, `set4`, and `set5`. Then aggregate `set1` and `set2`. \n", + "\n", + "#### Check if the aggregated values are equal." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "\n", + "set3.union(set4, set5) == set1.union(set2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Using the `pop` method, remove the first element from `set1`." + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "s = set1.pop()\n", + "\n", + "print(s)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Remove every element in the following list from `set1` if they are present in the set. Print the remaining elements.\n", + "\n", + "```\n", + "list_to_remove = [1, 9, 11, 19, 21, 29, 31, 39, 41, 49, 51, 59, 61, 69, 71, 79, 81, 89, 91, 99]\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{2, 3, 4, 6, 7, 8, 10, 12, 13, 14, 15, 16, 17, 18, 20, 22, 23, 24, 25, 27, 30, 33, 34, 36, 38, 40, 42, 43, 44, 45, 46, 48, 52, 53, 54, 55, 56, 57, 58, 60, 62, 63, 66, 67, 68, 72, 73, 74, 75, 78, 80, 82, 85, 86, 87, 88, 90, 92, 93, 94, 95, 96, 97}\n" + ] + } + ], + "source": [ + "# Your code here\n", + "\n", + "list_to_remove = [1, 9, 11, 19, 21, 29, 31, 39, 41, 49, 51, 59, 61, 69, 71, 79, 81, 89, 91, 99]\n", + "\n", + "for n in list_to_remove:\n", + " if n in set1:\n", + " set1.remove(n)\n", + "\n", + "print(set1)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/module-1_labs/lab-tuple-set-dict/your-code/challenge-3-solution.ipynb b/module-1_labs/lab-tuple-set-dict/your-code/challenge-3-solution.ipynb new file mode 100644 index 0000000..207007d --- /dev/null +++ b/module-1_labs/lab-tuple-set-dict/your-code/challenge-3-solution.ipynb @@ -0,0 +1,302 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Challenge 3: Dictionaries\n", + "\n", + "In this challenge you will practice how to manipulate Python dictionaries. Before starting on this challenge, you are encouraged to review W3School's [Python Dictionary Examples and Methods](https://www.w3schools.com/python/python_dictionaries.asp).\n", + "\n", + "First thing you will practice is how to sort the keys in a dictionary. Unlike the list object, Python dictionary does not have a built-in *sort* method. You'll need to use FOR loops to to sort dictionaries either by key or by value.\n", + "\n", + "The dictionary below is a summary of the word frequency of Ed Sheeran's song *Shape of You*. Each key is a word in the lyrics and the value is the number of times that word appears in the lyrics." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "word_freq = {'love': 25, 'conversation': 1, 'every': 6, \"we're\": 1, 'plate': 1, 'sour': 1, 'jukebox': 1, 'now': 11, 'taxi': 1, 'fast': 1, 'bag': 1, 'man': 1, 'push': 3, 'baby': 14, 'going': 1, 'you': 16, \"don't\": 2, 'one': 1, 'mind': 2, 'backseat': 1, 'friends': 1, 'then': 3, 'know': 2, 'take': 1, 'play': 1, 'okay': 1, 'so': 2, 'begin': 1, 'start': 2, 'over': 1, 'body': 17, 'boy': 2, 'just': 1, 'we': 7, 'are': 1, 'girl': 2, 'tell': 1, 'singing': 2, 'drinking': 1, 'put': 3, 'our': 1, 'where': 1, \"i'll\": 1, 'all': 1, \"isn't\": 1, 'make': 1, 'lover': 1, 'get': 1, 'radio': 1, 'give': 1, \"i'm\": 23, 'like': 10, 'can': 1, 'doing': 2, 'with': 22, 'club': 1, 'come': 37, 'it': 1, 'somebody': 2, 'handmade': 2, 'out': 1, 'new': 6, 'room': 3, 'chance': 1, 'follow': 6, 'in': 27, 'may': 2, 'brand': 6, 'that': 2, 'magnet': 3, 'up': 3, 'first': 1, 'and': 23, 'pull': 3, 'of': 6, 'table': 1, 'much': 2, 'last': 3, 'i': 6, 'thrifty': 1, 'grab': 2, 'was': 2, 'driver': 1, 'slow': 1, 'dance': 1, 'the': 18, 'say': 2, 'trust': 1, 'family': 1, 'week': 1, 'date': 1, 'me': 10, 'do': 3, 'waist': 2, 'smell': 3, 'day': 6, 'although': 3, 'your': 21, 'leave': 1, 'want': 2, \"let's\": 2, 'lead': 6, 'at': 1, 'hand': 1, 'how': 1, 'talk': 4, 'not': 2, 'eat': 1, 'falling': 3, 'about': 1, 'story': 1, 'sweet': 1, 'best': 1, 'crazy': 2, 'let': 1, 'too': 5, 'van': 1, 'shots': 1, 'go': 2, 'to': 2, 'a': 8, 'my': 33, 'is': 5, 'place': 1, 'find': 1, 'shape': 6, 'on': 40, 'kiss': 1, 'were': 3, 'night': 3, 'heart': 3, 'for': 3, 'discovering': 6, 'something': 6, 'be': 16, 'bedsheets': 3, 'fill': 2, 'hours': 2, 'stop': 1, 'bar': 1}" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Sort the keys of `word_freq` ascendingly.\n", + "\n", + "Please create a new dictionary called `word_freq2` based on `word_freq` with the keys sorted ascedingly.\n", + "\n", + "There are several ways to achieve that goal but many of the ways are beyond what we have covered so far in the course. There is one way that we'll describe employing what you have learned. Please feel free to use this way or any other way you want.\n", + "\n", + "1. First extract the keys of `word_freq` and convert it to a list called `keys`.\n", + "\n", + "1. Sort the `keys` list.\n", + "\n", + "1. Create an empty dictionary `word_freq2`.\n", + "\n", + "1. Use a FOR loop to iterate each value in `keys`. For each key iterated, find the corresponding value in `word_freq` and insert the key-value pair to `word_freq2`.\n", + "\n", + "Print out `word_freq2` to examine its keys and values. Your output should be:\n", + "\n", + "```python\n", + "{'a': 8, 'about': 1, 'all': 1, 'although': 3, 'and': 23, 'are': 1, 'at': 1, 'baby': 14, 'backseat': 1, 'bag': 1, 'bar': 1, 'be': 16, 'bedsheets': 3, 'begin': 1, 'best': 1, 'body': 17, 'boy': 2, 'brand': 6, 'can': 1, 'chance': 1, 'club': 1, 'come': 37, 'conversation': 1, 'crazy': 2, 'dance': 1, 'date': 1, 'day': 6, 'discovering': 6, 'do': 3, 'doing': 2, \"don't\": 2, 'drinking': 1, 'driver': 1, 'eat': 1, 'every': 6, 'falling': 3, 'family': 1, 'fast': 1, 'fill': 2, 'find': 1, 'first': 1, 'follow': 6, 'for': 3, 'friends': 1, 'get': 1, 'girl': 2, 'give': 1, 'go': 2, 'going': 1, 'grab': 2, 'hand': 1, 'handmade': 2, 'heart': 3, 'hours': 2, 'how': 1, 'i': 6, \"i'll\": 1, \"i'm\": 23, 'in': 27, 'is': 5, \"isn't\": 1, 'it': 1, 'jukebox': 1, 'just': 1, 'kiss': 1, 'know': 2, 'last': 3, 'lead': 6, 'leave': 1, 'let': 1, \"let's\": 2, 'like': 10, 'love': 25, 'lover': 1, 'magnet': 3, 'make': 1, 'man': 1, 'may': 2, 'me': 10, 'mind': 2, 'much': 2, 'my': 33, 'new': 6, 'night': 3, 'not': 2, 'now': 11, 'of': 6, 'okay': 1, 'on': 40, 'one': 1, 'our': 1, 'out': 1, 'over': 1, 'place': 1, 'plate': 1, 'play': 1, 'pull': 3, 'push': 3, 'put': 3, 'radio': 1, 'room': 3, 'say': 2, 'shape': 6, 'shots': 1, 'singing': 2, 'slow': 1, 'smell': 3, 'so': 2, 'somebody': 2, 'something': 6, 'sour': 1, 'start': 2, 'stop': 1, 'story': 1, 'sweet': 1, 'table': 1, 'take': 1, 'talk': 4, 'taxi': 1, 'tell': 1, 'that': 2, 'the': 18, 'then': 3, 'thrifty': 1, 'to': 2, 'too': 5, 'trust': 1, 'up': 3, 'van': 1, 'waist': 2, 'want': 2, 'was': 2, 'we': 7, \"we're\": 1, 'week': 1, 'were': 3, 'where': 1, 'with': 22, 'you': 16, 'your': 21}\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'a': 8, 'about': 1, 'all': 1, 'although': 3, 'and': 23, 'are': 1, 'at': 1, 'baby': 14, 'backseat': 1, 'bag': 1, 'bar': 1, 'be': 16, 'bedsheets': 3, 'begin': 1, 'best': 1, 'body': 17, 'boy': 2, 'brand': 6, 'can': 1, 'chance': 1, 'club': 1, 'come': 37, 'conversation': 1, 'crazy': 2, 'dance': 1, 'date': 1, 'day': 6, 'discovering': 6, 'do': 3, 'doing': 2, \"don't\": 2, 'drinking': 1, 'driver': 1, 'eat': 1, 'every': 6, 'falling': 3, 'family': 1, 'fast': 1, 'fill': 2, 'find': 1, 'first': 1, 'follow': 6, 'for': 3, 'friends': 1, 'get': 1, 'girl': 2, 'give': 1, 'go': 2, 'going': 1, 'grab': 2, 'hand': 1, 'handmade': 2, 'heart': 3, 'hours': 2, 'how': 1, 'i': 6, \"i'll\": 1, \"i'm\": 23, 'in': 27, 'is': 5, \"isn't\": 1, 'it': 1, 'jukebox': 1, 'just': 1, 'kiss': 1, 'know': 2, 'last': 3, 'lead': 6, 'leave': 1, 'let': 1, \"let's\": 2, 'like': 10, 'love': 25, 'lover': 1, 'magnet': 3, 'make': 1, 'man': 1, 'may': 2, 'me': 10, 'mind': 2, 'much': 2, 'my': 33, 'new': 6, 'night': 3, 'not': 2, 'now': 11, 'of': 6, 'okay': 1, 'on': 40, 'one': 1, 'our': 1, 'out': 1, 'over': 1, 'place': 1, 'plate': 1, 'play': 1, 'pull': 3, 'push': 3, 'put': 3, 'radio': 1, 'room': 3, 'say': 2, 'shape': 6, 'shots': 1, 'singing': 2, 'slow': 1, 'smell': 3, 'so': 2, 'somebody': 2, 'something': 6, 'sour': 1, 'start': 2, 'stop': 1, 'story': 1, 'sweet': 1, 'table': 1, 'take': 1, 'talk': 4, 'taxi': 1, 'tell': 1, 'that': 2, 'the': 18, 'then': 3, 'thrifty': 1, 'to': 2, 'too': 5, 'trust': 1, 'up': 3, 'van': 1, 'waist': 2, 'want': 2, 'was': 2, 'we': 7, \"we're\": 1, 'week': 1, 'were': 3, 'where': 1, 'with': 22, 'you': 16, 'your': 21}\n" + ] + } + ], + "source": [ + "keys = list(word_freq.keys())\n", + "\n", + "keys.sort()\n", + "\n", + "word_freq2 = {}\n", + "\n", + "for key in keys:\n", + " word_freq2[key] = word_freq[key]\n", + "\n", + "print(word_freq2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Sort the values of `word_freq` ascendingly.\n", + "\n", + "Sorting the values of a dictionary is more tricky than sorting the keys because a dictionary's values are not unique. Therefore you cannot use the same way you sorted dict keys to sort dict values.\n", + "\n", + "The way to sort a dict by value is to utilize the `sorted` and `operator.itemgetter` functions. The following code snippet is provided to you to try. It will give you a list of tuples in which each tuple contains the key and value of a dict item. And the list is sorted based on the dict value ([reference](http://thomas-cokelaer.info/blog/2017/12/how-to-sort-a-dictionary-by-values-in-python/)\n", + ").\n", + "\n", + "```python\n", + "import operator\n", + "sorted_tups = sorted(word_freq.items(), key=operator.itemgetter(1))\n", + "print(sorted_tups)\n", + "```\n", + "\n", + "Therefore, the steps to sort `word_freq` by value are:\n", + "\n", + "* Using `sorted` and `operator.itemgetter`, obtain a list of tuples of the dict key-value pairs which is sorted on the value.\n", + "\n", + "* Create an empty dictionary named `word_freq2`.\n", + "\n", + "* Iterate the list of tuples. Insert each key-value pair into `word_freq2` as an object.\n", + "\n", + "Print `word_freq2` to confirm your dictionary has its values sorted. Your output should be:\n", + "\n", + "```python\n", + "{'conversation': 1, \"we're\": 1, 'plate': 1, 'sour': 1, 'jukebox': 1, 'taxi': 1, 'fast': 1, 'bag': 1, 'man': 1, 'going': 1, 'one': 1, 'backseat': 1, 'friends': 1, 'take': 1, 'play': 1, 'okay': 1, 'begin': 1, 'over': 1, 'just': 1, 'are': 1, 'tell': 1, 'drinking': 1, 'our': 1, 'where': 1, \"i'll\": 1, 'all': 1, \"isn't\": 1, 'make': 1, 'lover': 1, 'get': 1, 'radio': 1, 'give': 1, 'can': 1, 'club': 1, 'it': 1, 'out': 1, 'chance': 1, 'first': 1, 'table': 1, 'thrifty': 1, 'driver': 1, 'slow': 1, 'dance': 1, 'trust': 1, 'family': 1, 'week': 1, 'date': 1, 'leave': 1, 'at': 1, 'hand': 1, 'how': 1, 'eat': 1, 'about': 1, 'story': 1, 'sweet': 1, 'best': 1, 'let': 1, 'van': 1, 'shots': 1, 'place': 1, 'find': 1, 'kiss': 1, 'stop': 1, 'bar': 1, \"don't\": 2, 'mind': 2, 'know': 2, 'so': 2, 'start': 2, 'boy': 2, 'girl': 2, 'singing': 2, 'doing': 2, 'somebody': 2, 'handmade': 2, 'may': 2, 'that': 2, 'much': 2, 'grab': 2, 'was': 2, 'say': 2, 'waist': 2, 'want': 2, \"let's\": 2, 'not': 2, 'crazy': 2, 'go': 2, 'to': 2, 'fill': 2, 'hours': 2, 'push': 3, 'then': 3, 'put': 3, 'room': 3, 'magnet': 3, 'up': 3, 'pull': 3, 'last': 3, 'do': 3, 'smell': 3, 'although': 3, 'falling': 3, 'were': 3, 'night': 3, 'heart': 3, 'for': 3, 'bedsheets': 3, 'talk': 4, 'too': 5, 'is': 5, 'every': 6, 'new': 6, 'follow': 6, 'brand': 6, 'of': 6, 'i': 6, 'day': 6, 'lead': 6, 'shape': 6, 'discovering': 6, 'something': 6, 'we': 7, 'a': 8, 'like': 10, 'me': 10, 'now': 11, 'baby': 14, 'you': 16, 'be': 16, 'body': 17, 'the': 18, 'your': 21, 'with': 22, \"i'm\": 23, 'and': 23, 'love': 25, 'in': 27, 'my': 33, 'come': 37, 'on': 40}\n", + "```" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'conversation': 1, \"we're\": 1, 'plate': 1, 'sour': 1, 'jukebox': 1, 'taxi': 1, 'fast': 1, 'bag': 1, 'man': 1, 'going': 1, 'one': 1, 'backseat': 1, 'friends': 1, 'take': 1, 'play': 1, 'okay': 1, 'begin': 1, 'over': 1, 'just': 1, 'are': 1, 'tell': 1, 'drinking': 1, 'our': 1, 'where': 1, \"i'll\": 1, 'all': 1, \"isn't\": 1, 'make': 1, 'lover': 1, 'get': 1, 'radio': 1, 'give': 1, 'can': 1, 'club': 1, 'it': 1, 'out': 1, 'chance': 1, 'first': 1, 'table': 1, 'thrifty': 1, 'driver': 1, 'slow': 1, 'dance': 1, 'trust': 1, 'family': 1, 'week': 1, 'date': 1, 'leave': 1, 'at': 1, 'hand': 1, 'how': 1, 'eat': 1, 'about': 1, 'story': 1, 'sweet': 1, 'best': 1, 'let': 1, 'van': 1, 'shots': 1, 'place': 1, 'find': 1, 'kiss': 1, 'stop': 1, 'bar': 1, \"don't\": 2, 'mind': 2, 'know': 2, 'so': 2, 'start': 2, 'boy': 2, 'girl': 2, 'singing': 2, 'doing': 2, 'somebody': 2, 'handmade': 2, 'may': 2, 'that': 2, 'much': 2, 'grab': 2, 'was': 2, 'say': 2, 'waist': 2, 'want': 2, \"let's\": 2, 'not': 2, 'crazy': 2, 'go': 2, 'to': 2, 'fill': 2, 'hours': 2, 'push': 3, 'then': 3, 'put': 3, 'room': 3, 'magnet': 3, 'up': 3, 'pull': 3, 'last': 3, 'do': 3, 'smell': 3, 'although': 3, 'falling': 3, 'were': 3, 'night': 3, 'heart': 3, 'for': 3, 'bedsheets': 3, 'talk': 4, 'too': 5, 'is': 5, 'every': 6, 'new': 6, 'follow': 6, 'brand': 6, 'of': 6, 'i': 6, 'day': 6, 'lead': 6, 'shape': 6, 'discovering': 6, 'something': 6, 'we': 7, 'a': 8, 'like': 10, 'me': 10, 'now': 11, 'baby': 14, 'you': 16, 'be': 16, 'body': 17, 'the': 18, 'your': 21, 'with': 22, \"i'm\": 23, 'and': 23, 'love': 25, 'in': 27, 'my': 33, 'come': 37, 'on': 40}\n" + ] + } + ], + "source": [ + "import operator\n", + "sorted_tups = sorted(word_freq.items(), key=operator.itemgetter(1))\n", + "\n", + "word_freq2 = {}\n", + "\n", + "for tup in sorted_tups:\n", + " word_freq2[tup[0]] = tup[1]\n", + " \n", + "print(word_freq2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Convert `word_freq` into Pandas dataframes\n", + "\n", + "In your future work, you may need to convert Python dictionaries to Pandas dataframes. So let's practice this by converting `word_freq`.\n", + "\n", + "**First, import the `pandas` library.**" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Then, use the `pd.DataFrame()` constructor to convert `word_freq` into a dataframe.**\n", + "\n", + "Here's a [reference](https://stackoverflow.com/questions/18837262/convert-python-dict-into-a-dataframe) to show you how to accomplish this. Also name the two columns of the dataframe as `word` and `freq`.\n", + "\n", + "Assign the converted value to a variable called `df`. The first few rows of `df` should look like this:\n", + "\n", + "![df](df.png)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
wordfreq
0love25
1conversation1
2every6
3we're1
4plate1
\n", + "
" + ], + "text/plain": [ + " word freq\n", + "0 love 25\n", + "1 conversation 1\n", + "2 every 6\n", + "3 we're 1\n", + "4 plate 1" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.DataFrame(list(word_freq.items()), columns=['word', 'freq'])\n", + "\n", + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "With the Pandas DataFrame, you can sort the values easily with the built-in method `sort_values` ([reference](https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.sort_values.html)).\n", + "\n", + "#### Sort `df` ascendingly based on column `word`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df.sort_values(by=['word'])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Sort `df` ascendingly based on column `freq`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df.sort_values(by=['freq'])" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} From cbaf9f301eaf90a14d6a6d207e0081f90f12436a Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Tue, 22 Oct 2019 20:02:44 +0200 Subject: [PATCH 14/30] added solutions --- .../your-code/Q1.ipynb | 6 +- .../lab-lambda-functions/your-code/main.ipynb | 70 ++++++++++++------- .../your-code/challenge-1.ipynb | 6 +- .../your-code/challenge-2.ipynb | 6 +- 4 files changed, 58 insertions(+), 30 deletions(-) diff --git a/module-1_labs/lab-functional-programming/your-code/Q1.ipynb b/module-1_labs/lab-functional-programming/your-code/Q1.ipynb index 2df0005..640984f 100644 --- a/module-1_labs/lab-functional-programming/your-code/Q1.ipynb +++ b/module-1_labs/lab-functional-programming/your-code/Q1.ipynb @@ -206,9 +206,13 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", +<<<<<<< HEAD "version": "3.7.4" +======= + "version": "3.7.3" +>>>>>>> upstream/master } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 } diff --git a/module-1_labs/lab-lambda-functions/your-code/main.ipynb b/module-1_labs/lab-lambda-functions/your-code/main.ipynb index 9e5e1e1..43df3c6 100644 --- a/module-1_labs/lab-lambda-functions/your-code/main.ipynb +++ b/module-1_labs/lab-lambda-functions/your-code/main.ipynb @@ -19,19 +19,6 @@ "In the next excercise you will create a function that returns a lambda expression. Create a function called `modify_list`. The function takes two arguments, a list and a lambda expression. The function iterates through the list and applies the lambda expression to every element in the list." ] }, - { - "cell_type": "raw", - "metadata": {}, - "source": [ - "Follow the steps as stated below:\n", - " 1. Define a list of any 10 numbers\n", - " 2. Define a simple lambda expression for eg that updates a number by 2\n", - " 3. Define an empty list\n", - " 4. Define the function -> use the lambda function to append the empty list\n", - " 5. Call the function with list and lambda expression\n", - " 6. print the updated list " - ] - }, { "cell_type": "code", "execution_count": 1, @@ -46,6 +33,7 @@ } ], "source": [ +<<<<<<< HEAD "l = [1,2,3,4,5,6,7,8,9,10]\n", "f = lambda x:x+2 #define the lambda expression\n", "b = []\n", @@ -56,6 +44,17 @@ "modify_list(l,f)\n", "#print b\n", "print(b)" +======= + "def modify_list(lst, lmbda):\n", + " \"\"\"\n", + " Input: list and lambda expression\n", + " \n", + " Output: the transformed list\n", + " \"\"\"\n", + " \n", + " #your code here:\n", + " \n" +>>>>>>> upstream/master ] }, { @@ -229,49 +228,55 @@ "\n", "In the following challenge, we will combine two lists using a lambda expression in a list comprehension. \n", "\n", - "To do this, we will need to introduce the `zip` function. The `zip` function returns an iterator of tuples.\n", - "\n", - "The way zip function works with list has been shown below:" + "To do this, we will need to introduce the `zip` function. The `zip` function returns an iterator of tuples." ] }, { "cell_type": "code", +<<<<<<< HEAD "execution_count": 35, +======= + "execution_count": 10, +>>>>>>> upstream/master "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "[('Green', 'eggs'),\n", - " ('cheese', 'cheese'),\n", - " ('English', 'cucumber'),\n", - " ('tomato', 'tomato')]" + "[(1,), (2,), (3,), (4,), (5,)]" ] }, +<<<<<<< HEAD "execution_count": 35, +======= + "execution_count": 10, +>>>>>>> upstream/master "metadata": {}, "output_type": "execute_result" } ], "source": [ - "list1 = ['Green', 'cheese', 'English', 'tomato']\n", - "list2 = ['eggs', 'cheese', 'cucumber', 'tomato']\n", - "zipped = zip(list1,list2)\n", - "list(zipped)" + "# Here is an example of passing one list to the zip function. \n", + "# Since the zip function returns an iterator, we need to evaluate the iterator by using a list comprehension.\n", + "\n", + "l = [1,2,3,4,5]\n", + "[x for x in zip(l)]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "In this exercise we will try to compare the elements on the same index in the two lists. \n", - "We want to zip the two lists and then use a lambda expression to compare if:\n", - "list1 element > list2 element " + "Using the `zip` function, let's iterate through two lists and add the elements by position. Here is an example using a list comprehension." ] }, { "cell_type": "code", +<<<<<<< HEAD "execution_count": 37, +======= + "execution_count": 11, +>>>>>>> upstream/master "metadata": {}, "outputs": [ { @@ -286,6 +291,7 @@ } ], "source": [ +<<<<<<< HEAD "list1 = [1,2,3,4]\n", "list2 = [2,3,4,5]\n", "## Zip the lists together \n", @@ -328,6 +334,12 @@ " compare(x,y)\n", " \n", " " +======= + "list1 = ['Green', 'cheese', 'English', 'tomato']\n", + "list2 = ['eggs', 'cheese', 'cucumber', 'tomato']\n", + "\n", + "#Your code here:\n" +>>>>>>> upstream/master ] }, { @@ -432,7 +444,11 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", +<<<<<<< HEAD "version": "3.7.4" +======= + "version": "3.6.6" +>>>>>>> upstream/master } }, "nbformat": 4, diff --git a/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb b/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb index 4c2f44f..6de2492 100644 --- a/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb +++ b/module-1_labs/lab-string-operations/your-code/challenge-1.ipynb @@ -394,9 +394,13 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", +<<<<<<< HEAD "version": "3.7.4" +======= + "version": "3.7.3" +>>>>>>> upstream/master } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 } diff --git a/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb b/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb index ad054fe..2582f78 100644 --- a/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb +++ b/module-1_labs/lab-string-operations/your-code/challenge-2.ipynb @@ -472,9 +472,13 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", +<<<<<<< HEAD "version": "3.7.4" +======= + "version": "3.7.3" +>>>>>>> upstream/master } }, "nbformat": 4, - "nbformat_minor": 2 + "nbformat_minor": 4 } From db859d712430e76eee60fafa53dd3a21f8c500e6 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sun, 27 Oct 2019 09:39:09 +0100 Subject: [PATCH 15/30] Added answers --- .../your-code/main-solutions.ipynb | 2 +- .../lab-data_cleaning/your-code/main.ipynb | 2624 +++++++ .../your-code/{main_old.ipynb => main2.py} | 0 .../your-code/cleaned_shark_attacks.csv | 5995 ++++++++++++++++ .../your-code/cleaned_shark_attacks.pkl | Bin 0 -> 1580410 bytes .../your-code/data-wrangling_ivy.ipynb | 3096 +++++++++ .../pandas-project/your-code/shark_attack.csv | 6004 +++++++++++++++++ .../lab-advanced-pandas/your-code/main.ipynb | 1942 +++++- 8 files changed, 19628 insertions(+), 35 deletions(-) create mode 100644 module-1_labs/lab-data_cleaning/your-code/main.ipynb rename module-1_labs/lab-data_cleaning/your-code/{main_old.ipynb => main2.py} (100%) create mode 100644 module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv create mode 100644 module-1_projects/pandas-project/your-code/cleaned_shark_attacks.pkl create mode 100644 module-1_projects/pandas-project/your-code/data-wrangling_ivy.ipynb create mode 100644 module-1_projects/pandas-project/your-code/shark_attack.csv diff --git a/module-1_labs/lab-data_cleaning/your-code/main-solutions.ipynb b/module-1_labs/lab-data_cleaning/your-code/main-solutions.ipynb index 4cac879..98032e9 100755 --- a/module-1_labs/lab-data_cleaning/your-code/main-solutions.ipynb +++ b/module-1_labs/lab-data_cleaning/your-code/main-solutions.ipynb @@ -1432,7 +1432,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.8" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-data_cleaning/your-code/main.ipynb b/module-1_labs/lab-data_cleaning/your-code/main.ipynb new file mode 100644 index 0000000..ad0e703 --- /dev/null +++ b/module-1_labs/lab-data_cleaning/your-code/main.ipynb @@ -0,0 +1,2624 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Before your start:\n", + "- Read the README.md file\n", + "- Comment as much as you can and use the resources in the README.md file\n", + "- Happy learning!" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "# Import numpy, pandas and mysqlalchemy (following what you have learned in previous lessons):\n", + "from pandas import Series\n", + "import numpy as np\n", + "import pandas as pd\n", + "import pymysql\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 - Load and Evaluate the Datasets\n", + "\n", + "#### In this challenge we will load two SQL tables from [this link](https://relational.fit.cvut.cz/dataset/Stats). We will then proceed to evaluate the data to see what type of cleaning and manipulation is necessary.\n", + "\n", + "In the cell below, create a mysql engine using the link provided above." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "conn = pymysql.connect(\n", + " host = 'relational.fit.cvut.cz',\n", + " port = 3306, \n", + " user = \"guest\",\n", + " passwd = 'relational',\n", + " db = \"stats\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Use this connection to load the `users` table. Load this table into a variable called `users`." + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "users = pd.read_sql(\"SELECT * FROM users\",conn)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Let's start examining the dataset.\n", + "\n", + "First look at the first five rows using the `head` function." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IdReputationCreationDateDisplayNameLastAccessDateWebsiteUrlLocationAboutMeViewsUpVotesDownVotesAccountIdAgeProfileImageUrl
0-112010-07-19 06:55:26Community2010-07-19 06:55:26http://meta.stackexchange.com/on the server farm<p>Hi, I'm not really a person.</p>\\n\\n<p>I'm ...050071920-1NaNNone
121012010-07-19 14:01:36Geoff Dalgas2013-11-12 22:07:23http://stackoverflow.comCorvallis, OR<p>Developer on the StackOverflow team. Find ...2530237.0None
231012010-07-19 15:34:50Jarrod Dixon2014-08-08 06:42:58http://stackoverflow.comNew York, NY<p><a href=\"http://blog.stackoverflow.com/2009...22190335.0None
341012010-07-19 19:03:27Emmett2014-01-02 09:31:02http://minesweeperonline.comSan Francisco, CA<p>currently at a startup in SF</p>\\n\\n<p>form...1100199828.0http://i.stack.imgur.com/d1oHX.jpg
4567922010-07-19 19:03:57Shane2014-08-13 00:23:47http://www.statalgo.comNew York, NY<p>Quantitative researcher focusing on statist...114566255450335.0None
\n", + "
" + ], + "text/plain": [ + " Id Reputation CreationDate DisplayName LastAccessDate \\\n", + "0 -1 1 2010-07-19 06:55:26 Community 2010-07-19 06:55:26 \n", + "1 2 101 2010-07-19 14:01:36 Geoff Dalgas 2013-11-12 22:07:23 \n", + "2 3 101 2010-07-19 15:34:50 Jarrod Dixon 2014-08-08 06:42:58 \n", + "3 4 101 2010-07-19 19:03:27 Emmett 2014-01-02 09:31:02 \n", + "4 5 6792 2010-07-19 19:03:57 Shane 2014-08-13 00:23:47 \n", + "\n", + " WebsiteUrl Location \\\n", + "0 http://meta.stackexchange.com/ on the server farm \n", + "1 http://stackoverflow.com Corvallis, OR \n", + "2 http://stackoverflow.com New York, NY \n", + "3 http://minesweeperonline.com San Francisco, CA \n", + "4 http://www.statalgo.com New York, NY \n", + "\n", + " AboutMe Views UpVotes \\\n", + "0

Hi, I'm not really a person.

\\n\\n

I'm ... 0 5007 \n", + "1

Developer on the StackOverflow team. Find ... 25 3 \n", + "2

currently at a startup in SF

\\n\\n

form... 11 0 \n", + "4

Quantitative researcher focusing on statist... 1145 662 \n", + "\n", + " DownVotes AccountId Age ProfileImageUrl \n", + "0 1920 -1 NaN None \n", + "1 0 2 37.0 None \n", + "2 0 3 35.0 None \n", + "3 0 1998 28.0 http://i.stack.imgur.com/d1oHX.jpg \n", + "4 5 54503 35.0 None " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "users.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Next, examine the column names and types to see if there is a type mismatch. Use the `dtypes` function." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Id int64\n", + "Reputation int64\n", + "CreationDate datetime64[ns]\n", + "DisplayName object\n", + "LastAccessDate datetime64[ns]\n", + "WebsiteUrl object\n", + "Location object\n", + "AboutMe object\n", + "Views int64\n", + "UpVotes int64\n", + "DownVotes int64\n", + "AccountId int64\n", + "Age float64\n", + "ProfileImageUrl object\n", + "dtype: object" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "users.dtypes" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finally, we'll examine the `describe` function to see the descriptive statistics for the numeric variables. " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "

\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IdReputationViewsUpVotesDownVotesAccountIdAge
count40325.00000040325.00000040325.00000040325.00000040325.0000004.032500e+048318.000000
mean28037.39972784.0787358.9096346.5874520.2609052.032547e+0631.642582
std16323.402785791.426513154.273963134.49365511.2529221.571884e+069.294174
min-1.0000001.0000000.0000000.0000000.000000-1.000000e+0013.000000
25%12971.0000001.0000000.0000000.0000000.0000004.578670e+0526.000000
50%28042.00000011.0000000.0000000.0000000.0000001.816441e+0630.000000
75%42549.000000101.0000003.0000000.0000000.0000003.357012e+0635.000000
max55747.00000087393.00000020932.00000011442.0000001920.0000005.027354e+0694.000000
\n", + "
" + ], + "text/plain": [ + " Id Reputation Views UpVotes DownVotes \\\n", + "count 40325.000000 40325.000000 40325.000000 40325.000000 40325.000000 \n", + "mean 28037.399727 84.078735 8.909634 6.587452 0.260905 \n", + "std 16323.402785 791.426513 154.273963 134.493655 11.252922 \n", + "min -1.000000 1.000000 0.000000 0.000000 0.000000 \n", + "25% 12971.000000 1.000000 0.000000 0.000000 0.000000 \n", + "50% 28042.000000 11.000000 0.000000 0.000000 0.000000 \n", + "75% 42549.000000 101.000000 3.000000 0.000000 0.000000 \n", + "max 55747.000000 87393.000000 20932.000000 11442.000000 1920.000000 \n", + "\n", + " AccountId Age \n", + "count 4.032500e+04 8318.000000 \n", + "mean 2.032547e+06 31.642582 \n", + "std 1.571884e+06 9.294174 \n", + "min -1.000000e+00 13.000000 \n", + "25% 4.578670e+05 26.000000 \n", + "50% 1.816441e+06 30.000000 \n", + "75% 3.357012e+06 35.000000 \n", + "max 5.027354e+06 94.000000 " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "users.describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Now let's load the posts table in the cell below.\n", + "\n", + "Use the same mysql engine to load the posts table into a dataframe called `posts`." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "posts = pd.read_sql(\"SELECT * FROM posts\",conn)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Let's repeat what we did with the `users` table and print the first 5 rows, the data types of each column and describe the numeric data.\n", + "\n", + "Do this in the following 3 cells below." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IdPostTypeIdAcceptedAnswerIdCreaionDateScoreViewCountBodyOwnerUserIdLasActivityDateTitle...AnswerCountCommentCountFavoriteCountLastEditorUserIdLastEditDateCommunityOwnedDateParentIdClosedDateOwnerDisplayNameLastEditorDisplayName
01115.02010-07-19 19:12:12231278.0<p>How should I elicit prior distributions fro...8.02010-09-15 21:08:26Eliciting priors from experts...5.0114.0NaNNaTNaTNaNNaTNoneNone
12159.02010-07-19 19:12:57228198.0<p>In many different statistical methods there...24.02012-11-12 09:21:54What is normality?...7.018.088.02010-08-07 17:56:44NaTNaNNaTNoneNone
2315.02010-07-19 19:13:28543613.0<p>What are some valuable Statistical Analysis...18.02013-05-27 14:48:36What are some valuable Statistical Analysis op......19.0436.0183.02011-02-12 05:50:032010-07-19 19:13:28NaNNaTNoneNone
341135.02010-07-19 19:13:31135224.0<p>I have two groups of data. Each with a dif...23.02010-09-08 03:00:19Assessing the significance of differences in d......5.022.0NaNNaTNaTNaNNaTNoneNone
452NaN2010-07-19 19:14:4381NaN<p>The R-project</p>\\n\\n<p><a href=\"http://www...23.02010-07-19 19:21:15None...NaN3NaN23.02010-07-19 19:21:152010-07-19 19:14:433.0NaTNoneNone
\n", + "

5 rows × 21 columns

\n", + "
" + ], + "text/plain": [ + " Id PostTypeId AcceptedAnswerId CreaionDate Score ViewCount \\\n", + "0 1 1 15.0 2010-07-19 19:12:12 23 1278.0 \n", + "1 2 1 59.0 2010-07-19 19:12:57 22 8198.0 \n", + "2 3 1 5.0 2010-07-19 19:13:28 54 3613.0 \n", + "3 4 1 135.0 2010-07-19 19:13:31 13 5224.0 \n", + "4 5 2 NaN 2010-07-19 19:14:43 81 NaN \n", + "\n", + " Body OwnerUserId \\\n", + "0

How should I elicit prior distributions fro... 8.0 \n", + "1

In many different statistical methods there... 24.0 \n", + "2

What are some valuable Statistical Analysis... 18.0 \n", + "3

I have two groups of data. Each with a dif... 23.0 \n", + "4

The R-project

\\n\\n

\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IdPostTypeIdAcceptedAnswerIdScoreViewCountOwnerUserIdAnswerCountCommentCountFavoriteCountLastEditorUserIdParentId
count91976.00000091976.00000014700.00000091976.00000042921.00000090584.00000042921.00000091976.00000013246.00000044611.00000047755.00000
mean56147.6994651.56886652241.7029932.791902565.74602216546.7647271.1126261.8951142.54348511923.02129548358.27840
std33975.5694310.61174333456.2483834.9818672449.79606615273.3671081.4905702.6390205.91926613392.70575834091.46136
min1.0000001.0000005.000000-19.0000001.000000-1.0000000.0000000.0000000.000000-1.0000001.00000
25%25489.7500001.00000022065.2500001.00000053.0000003437.0000000.0000000.0000001.000000919.00000017558.00000
50%56781.5000002.00000049804.5000002.000000128.00000011032.0000001.0000001.0000001.0000007290.00000044790.00000
75%85909.2500002.00000080419.2500003.000000373.00000027700.0000002.0000003.0000002.00000021846.00000077059.50000
max115378.0000007.000000115345.000000192.000000175495.00000055746.000000136.00000045.000000233.00000055733.000000115375.00000
\n", + "" + ], + "text/plain": [ + " Id PostTypeId AcceptedAnswerId Score \\\n", + "count 91976.000000 91976.000000 14700.000000 91976.000000 \n", + "mean 56147.699465 1.568866 52241.702993 2.791902 \n", + "std 33975.569431 0.611743 33456.248383 4.981867 \n", + "min 1.000000 1.000000 5.000000 -19.000000 \n", + "25% 25489.750000 1.000000 22065.250000 1.000000 \n", + "50% 56781.500000 2.000000 49804.500000 2.000000 \n", + "75% 85909.250000 2.000000 80419.250000 3.000000 \n", + "max 115378.000000 7.000000 115345.000000 192.000000 \n", + "\n", + " ViewCount OwnerUserId AnswerCount CommentCount FavoriteCount \\\n", + "count 42921.000000 90584.000000 42921.000000 91976.000000 13246.000000 \n", + "mean 565.746022 16546.764727 1.112626 1.895114 2.543485 \n", + "std 2449.796066 15273.367108 1.490570 2.639020 5.919266 \n", + "min 1.000000 -1.000000 0.000000 0.000000 0.000000 \n", + "25% 53.000000 3437.000000 0.000000 0.000000 1.000000 \n", + "50% 128.000000 11032.000000 1.000000 1.000000 1.000000 \n", + "75% 373.000000 27700.000000 2.000000 3.000000 2.000000 \n", + "max 175495.000000 55746.000000 136.000000 45.000000 233.000000 \n", + "\n", + " LastEditorUserId ParentId \n", + "count 44611.000000 47755.00000 \n", + "mean 11923.021295 48358.27840 \n", + "std 13392.705758 34091.46136 \n", + "min -1.000000 1.00000 \n", + "25% 919.000000 17558.00000 \n", + "50% 7290.000000 44790.00000 \n", + "75% 21846.000000 77059.50000 \n", + "max 55733.000000 115375.00000 " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "posts.describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2 - Prepare the Datasets for Merging and Merge\n", + "\n", + "#### We would like to join a subset of columns from each table. To ease the process, let's create a new dataframe containing a subset of columns for both `posts` and `users`\n", + "\n", + "In the cell below, create a new dataframe called `posts_subset` containing only the columns: `Id`, `Score`, `OwnerUserID`, `ViewCount` ,`CommentCount" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "

\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IdScoreOwnerUserIdViewCountCommentCount
01238.01278.01
122224.08198.01
235418.03613.04
341323.05224.02
458123.0NaN3
..................
919711153742805.0NaN2
91972115375049365.09.00
91973115376155746.05.02
919741153770805.0NaN0
9197511537807250.0NaN0
\n", + "

91976 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " Id Score OwnerUserId ViewCount CommentCount\n", + "0 1 23 8.0 1278.0 1\n", + "1 2 22 24.0 8198.0 1\n", + "2 3 54 18.0 3613.0 4\n", + "3 4 13 23.0 5224.0 2\n", + "4 5 81 23.0 NaN 3\n", + "... ... ... ... ... ...\n", + "91971 115374 2 805.0 NaN 2\n", + "91972 115375 0 49365.0 9.0 0\n", + "91973 115376 1 55746.0 5.0 2\n", + "91974 115377 0 805.0 NaN 0\n", + "91975 115378 0 7250.0 NaN 0\n", + "\n", + "[91976 rows x 5 columns]" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "posts_subset = posts[[\"Id\",\"Score\",\"OwnerUserId\",\"ViewCount\",\"CommentCount\"]]\n", + "\n", + "posts_subset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the cell below, create a dataframe called `users_subset` containing only the columns `Id`, `Reputation`, `Views`, `UpVotes`, `DownVotes`." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IdReputationViewsUpVotesDownVotes
0-11050071920
121012530
2310122190
341011100
45679211456625
..................
40320557431000
40321557446100
4032255745101000
4032355746106100
40324557471000
\n", + "

40325 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " Id Reputation Views UpVotes DownVotes\n", + "0 -1 1 0 5007 1920\n", + "1 2 101 25 3 0\n", + "2 3 101 22 19 0\n", + "3 4 101 11 0 0\n", + "4 5 6792 1145 662 5\n", + "... ... ... ... ... ...\n", + "40320 55743 1 0 0 0\n", + "40321 55744 6 1 0 0\n", + "40322 55745 101 0 0 0\n", + "40323 55746 106 1 0 0\n", + "40324 55747 1 0 0 0\n", + "\n", + "[40325 rows x 5 columns]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "users_subset = users[['Id',\"Reputation\",\"Views\",\"UpVotes\",\"DownVotes\"]]\n", + "users_subset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### You will note that the Id column does not refer to the same thing in both tables. In the posts table, it refers to the post ID and in the users table it refers to the user ID. \n", + "\n", + "In the `users_subset` dataframe, rename the `Id` column to `UserId`. Do this using the option `inplace=True`." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/pandas/core/frame.py:4238: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " return super().rename(**kwargs)\n" + ] + } + ], + "source": [ + "# Your code here:\n", + "\n", + "users_new_cols = {'Id':'UserId'}\n", + "\n", + "users_subset.rename(columns=users_new_cols,inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
UserIdReputationViewsUpVotesDownVotes
0-11050071920
121012530
2310122190
341011100
45679211456625
\n", + "
" + ], + "text/plain": [ + " UserId Reputation Views UpVotes DownVotes\n", + "0 -1 1 0 5007 1920\n", + "1 2 101 25 3 0\n", + "2 3 101 22 19 0\n", + "3 4 101 11 0 0\n", + "4 5 6792 1145 662 5" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "users_subset.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "In the `posts_subset` dataframe, rename the `Id` column to `PostId`. Do this using the option `inplace=True`." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PostsIdScoreOwnerUserIdViewCountCommentCount
01238.01278.01
122224.08198.01
235418.03613.04
341323.05224.02
458123.0NaN3
\n", + "
" + ], + "text/plain": [ + " PostsId Score OwnerUserId ViewCount CommentCount\n", + "0 1 23 8.0 1278.0 1\n", + "1 2 22 24.0 8198.0 1\n", + "2 3 54 18.0 3613.0 4\n", + "3 4 13 23.0 5224.0 2\n", + "4 5 81 23.0 NaN 3" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "posts_new_cols = {'Id':'PostsId'}\n", + "\n", + "posts_subset.rename(columns=posts_new_cols,inplace=True)\n", + "posts_subset.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We identify the only column that the two tables have in common as the user ID. However, this column is called `UserId` in the `users_subset` table and `OwnerUserId` in the `posts_subset` table. Using what we have previously learned about merging two dataframes and looking at the documentation [here](https://pandas.pydata.org/pandas-docs/stable/generated/pandas.DataFrame.merge.html), merge the two dataframes. Name the merged dataframe `stackoverflow`." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
UserIdReputationViewsUpVotesDownVotesPostsIdScoreOwnerUserIdViewCountCommentCount
0-1105007192021750-1.0NaN0
1-1105007192085760-1.0NaN0
2-1105007192085780-1.0NaN0
3-1105007192089810-1.0NaN0
4-1105007192089820-1.0NaN0
.................................
90579557341000115352055734.016.00
905805573811000115360255738.040.04
90581557426000115366155742.017.00
90582557446100115370155744.013.02
9058355746106100115376155746.05.02
\n", + "

90584 rows × 10 columns

\n", + "
" + ], + "text/plain": [ + " UserId Reputation Views UpVotes DownVotes PostsId Score \\\n", + "0 -1 1 0 5007 1920 2175 0 \n", + "1 -1 1 0 5007 1920 8576 0 \n", + "2 -1 1 0 5007 1920 8578 0 \n", + "3 -1 1 0 5007 1920 8981 0 \n", + "4 -1 1 0 5007 1920 8982 0 \n", + "... ... ... ... ... ... ... ... \n", + "90579 55734 1 0 0 0 115352 0 \n", + "90580 55738 11 0 0 0 115360 2 \n", + "90581 55742 6 0 0 0 115366 1 \n", + "90582 55744 6 1 0 0 115370 1 \n", + "90583 55746 106 1 0 0 115376 1 \n", + "\n", + " OwnerUserId ViewCount CommentCount \n", + "0 -1.0 NaN 0 \n", + "1 -1.0 NaN 0 \n", + "2 -1.0 NaN 0 \n", + "3 -1.0 NaN 0 \n", + "4 -1.0 NaN 0 \n", + "... ... ... ... \n", + "90579 55734.0 16.0 0 \n", + "90580 55738.0 40.0 4 \n", + "90581 55742.0 17.0 0 \n", + "90582 55744.0 13.0 2 \n", + "90583 55746.0 5.0 2 \n", + "\n", + "[90584 rows x 10 columns]" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "stackoverflow= users_subset.merge(posts_subset,left_on='UserId',right_on='OwnerUserId')\n", + "stackoverflow" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Check to see if you have kept both key columns (if you join by making one of the columns an index first, this can be avoided).\n", + "\n", + "If both columns are present in `stackoverflow`, drop `OwnerUserId`. Do this using `inplace=True`." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
UserIdReputationViewsUpVotesDownVotesPostsIdScoreViewCountCommentCount
0-1105007192021750NaN0
1-1105007192085760NaN0
2-1105007192085780NaN0
3-1105007192089810NaN0
4-1105007192089820NaN0
..............................
90579557341000115352016.00
905805573811000115360240.04
90581557426000115366117.00
90582557446100115370113.02
905835574610610011537615.02
\n", + "

90584 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " UserId Reputation Views UpVotes DownVotes PostsId Score \\\n", + "0 -1 1 0 5007 1920 2175 0 \n", + "1 -1 1 0 5007 1920 8576 0 \n", + "2 -1 1 0 5007 1920 8578 0 \n", + "3 -1 1 0 5007 1920 8981 0 \n", + "4 -1 1 0 5007 1920 8982 0 \n", + "... ... ... ... ... ... ... ... \n", + "90579 55734 1 0 0 0 115352 0 \n", + "90580 55738 11 0 0 0 115360 2 \n", + "90581 55742 6 0 0 0 115366 1 \n", + "90582 55744 6 1 0 0 115370 1 \n", + "90583 55746 106 1 0 0 115376 1 \n", + "\n", + " ViewCount CommentCount \n", + "0 NaN 0 \n", + "1 NaN 0 \n", + "2 NaN 0 \n", + "3 NaN 0 \n", + "4 NaN 0 \n", + "... ... ... \n", + "90579 16.0 0 \n", + "90580 40.0 4 \n", + "90581 17.0 0 \n", + "90582 13.0 2 \n", + "90583 5.0 2 \n", + "\n", + "[90584 rows x 9 columns]" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "stackoverflow.drop('OwnerUserId',axis=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3 - Cleaning Up the Data\n", + "\n", + "Now that we have merged the two dataframes, let's handle the missing values.\n", + "\n", + "Find the number of missing values in each column by applying the `isna()` function to the dataframe. Then apply the `sum()` function to that to find the count of missing values in each column." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "UserId 0\n", + "Reputation 0\n", + "Views 0\n", + "UpVotes 0\n", + "DownVotes 0\n", + "PostsId 0\n", + "Score 0\n", + "OwnerUserId 0\n", + "ViewCount 48396\n", + "CommentCount 0\n", + "dtype: int64" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "\n", + "stackoverflow.isna().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We see that about half of all observations in the view count column are missing. Let's examine these observations and why they have missing data. Create a subset of rows that have a missing value in the `ViewCount`. Look at the `describe()` function for that subset. You output should look like in the table below.\n", + "\n", + "![describe table](../describe-table.png)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 True\n", + "1 True\n", + "2 True\n", + "3 True\n", + "4 True\n", + " ... \n", + "90579 False\n", + "90580 False\n", + "90581 False\n", + "90582 False\n", + "90583 False\n", + "Name: ViewCount, Length: 90584, dtype: bool" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here\n", + "stackoverflow['ViewCount'].isnull()\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
UserIdReputationViewsUpVotesDownVotesPostsIdScoreViewCountCommentCount
count48396.00000048396.00000048396.00000048396.0000048396.00000048396.00000048396.0000000.048396.000000
mean11955.21621611298.4599761858.4699981322.0891460.70214552014.9402843.040541NaN1.705472
std13251.23906219173.7590283726.4924402648.65143179.64155033998.7973315.108535NaN2.550726
min-1.0000001.0000000.0000000.000000.0000005.000000-19.000000NaN0.000000
25%1352.000000487.00000045.00000020.000000.00000021406.7500001.000000NaN0.000000
50%7250.0000002694.000000315.000000171.000006.00000049838.5000002.000000NaN1.000000
75%17935.00000011860.0000001319.0000001014.0000045.00000080709.7500004.000000NaN2.000000
max55729.00000087393.00000020932.00000011442.000001920.000000115378.000000164.000000NaN45.000000
\n", + "
" + ], + "text/plain": [ + " UserId Reputation Views UpVotes DownVotes \\\n", + "count 48396.000000 48396.000000 48396.000000 48396.00000 48396.000000 \n", + "mean 11955.216216 11298.459976 1858.469998 1322.08914 60.702145 \n", + "std 13251.239062 19173.759028 3726.492440 2648.65143 179.641550 \n", + "min -1.000000 1.000000 0.000000 0.00000 0.000000 \n", + "25% 1352.000000 487.000000 45.000000 20.00000 0.000000 \n", + "50% 7250.000000 2694.000000 315.000000 171.00000 6.000000 \n", + "75% 17935.000000 11860.000000 1319.000000 1014.00000 45.000000 \n", + "max 55729.000000 87393.000000 20932.000000 11442.00000 1920.000000 \n", + "\n", + " PostsId Score ViewCount CommentCount \n", + "count 48396.000000 48396.000000 0.0 48396.000000 \n", + "mean 52014.940284 3.040541 NaN 1.705472 \n", + "std 33998.797331 5.108535 NaN 2.550726 \n", + "min 5.000000 -19.000000 NaN 0.000000 \n", + "25% 21406.750000 1.000000 NaN 0.000000 \n", + "50% 49838.500000 2.000000 NaN 1.000000 \n", + "75% 80709.750000 4.000000 NaN 2.000000 \n", + "max 115378.000000 164.000000 NaN 45.000000 " + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "relevant_columns = ['UserId','Reputation','Views','UpVotes','DownVotes','PostsId','Score','ViewCount','CommentCount']\n", + "\n", + "stackoverflow[relevant_columns][stackoverflow['ViewCount'].isnull()].describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 90584\n", + "unique 2\n", + "top True\n", + "freq 48396\n", + "Name: ViewCount, dtype: object" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "stackoverflow['ViewCount'].isnull().describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### It seems that there is a mix of users. They do not have a high comment count but they do have some upvotes and downvotes. Therefore, it would not make sense to fill these values with zero. \n", + "\n", + "If we investigate further, we will see that there are some users that have view counts missing for some posts but not others. We will cover different ways of investigating further in future lessons. What we can certainly say is that we should not fill all cells with the same values. One way to fill the values is using linear interpolation. Linear interpolation assumes that there is a line between two points and places all observations between the two points along that line. You can read more about linear interpolation [here](https://en.wikipedia.org/wiki/Linear_interpolation).\n", + "\n", + "To apply linear interpolation to our missing data, we use the `interpolate` function in pandas. You can read the documentation for this function [here](https://pandas.pydata.org/pandas-docs/stable/generated/pandas.Series.interpolate.html).\n", + "\n", + "Apply the `interpolate` function to the `ViewCount` column. Use `inplace=True`" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n", + "\n", + "stackoverflow1=stackoverflow.copy()\n", + "\n", + "# stackoverflow1['ViewCount'].interpolate(inplace=True)\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
UserIdReputationViewsUpVotesDownVotesPostsIdScoreOwnerUserIdViewCountCommentCount
0-1105007192021750-1.0NaN0
1-1105007192085760-1.0NaN0
2-1105007192085780-1.0NaN0
3-1105007192089810-1.0NaN0
4-1105007192089820-1.0NaN0
.................................
90579557341000115352055734.016.00
905805573811000115360255738.040.04
90581557426000115366155742.017.00
90582557446100115370155744.013.02
9058355746106100115376155746.05.02
\n", + "

90584 rows × 10 columns

\n", + "
" + ], + "text/plain": [ + " UserId Reputation Views UpVotes DownVotes PostsId Score \\\n", + "0 -1 1 0 5007 1920 2175 0 \n", + "1 -1 1 0 5007 1920 8576 0 \n", + "2 -1 1 0 5007 1920 8578 0 \n", + "3 -1 1 0 5007 1920 8981 0 \n", + "4 -1 1 0 5007 1920 8982 0 \n", + "... ... ... ... ... ... ... ... \n", + "90579 55734 1 0 0 0 115352 0 \n", + "90580 55738 11 0 0 0 115360 2 \n", + "90581 55742 6 0 0 0 115366 1 \n", + "90582 55744 6 1 0 0 115370 1 \n", + "90583 55746 106 1 0 0 115376 1 \n", + "\n", + " OwnerUserId ViewCount CommentCount \n", + "0 -1.0 NaN 0 \n", + "1 -1.0 NaN 0 \n", + "2 -1.0 NaN 0 \n", + "3 -1.0 NaN 0 \n", + "4 -1.0 NaN 0 \n", + "... ... ... ... \n", + "90579 55734.0 16.0 0 \n", + "90580 55738.0 40.0 4 \n", + "90581 55742.0 17.0 0 \n", + "90582 55744.0 13.0 2 \n", + "90583 55746.0 5.0 2 \n", + "\n", + "[90584 rows x 10 columns]" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "stackoverflow1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge - Fill the Missing Data Using Linear Regression\n", + "\n", + "We have learned about linear regression in the prework. To read more about linear regression in Python, click [here](https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.LinearRegression.html).\n", + "\n", + "Create a linear model where the Y variable is the `ViewCount` and the X variable is `Score`. Make sure to use only rows that do not contain `NaN` by filtering them out.\n", + "\n", + "Use this regression model to produce a fitted value for every `NaN`. Using the `np.where` function, assign the predicted value only to rows where you have a `NaN`.\n", + "\n", + "Tip: If you get an error when creating your linear model, reshape the data to the correct shape (a 2D array) by appending `.values.reshape(-1, 1)` to the column. Also, transform the predicted data from a numpy array back to a dataframe and use only one column." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We have seen that both `UserId` and `PostsId` are treated as numeric even though they do not describe anything quantitative about the data. We would like to exclude them from any numeric calculations. To do this, we should change them from numeric to string. Transform each column from numeric to string using the `astype` function and pass the argument `'str'` to the function. Since we cannot do this in place, assign these new values back to their original column names. " + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### We would like to simplify the comment count variable by bucketing this variable. \n", + "\n", + "In the cell below, we have created 5 bins. Bucket this variable into equal width bins using the `cut` function. Create a new column called `CommentBins` and assign the bucketed data to this column." + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here:\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-data_cleaning/your-code/main_old.ipynb b/module-1_labs/lab-data_cleaning/your-code/main2.py similarity index 100% rename from module-1_labs/lab-data_cleaning/your-code/main_old.ipynb rename to module-1_labs/lab-data_cleaning/your-code/main2.py diff --git a/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv b/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv new file mode 100644 index 0000000..c61efd8 --- /dev/null +++ b/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv @@ -0,0 +1,5995 @@ +original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Sex,Injury,Fatal (Y/N),Investigator or Source,Ref date or page,Case file path +5993,2016.09.18.c,18-Sep-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Minor injury to thigh,N,Orlando Sentinel,9/19/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf +5992,2016.09.18.b,18-Sep-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Chucky Luciano,M,Lacerations to hands,N,Orlando Sentinel,9/19/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf +5991,2016.09.18.a,18-Sep-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Lacerations to lower leg,N,Orlando Sentinel,9/19/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf +5990,2016.09.17,17-Sep-16,2016,Unprovoked,Australia,Victoria,Thirteenth Beach,Surfing,Rory Angiolella,M,Struck by fin on chest & leg,N,The Age,9/18/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf +5989,2016.09.15,16-Sep-16,2016,Unprovoked,Australia,Victoria,Bells Beach,Surfing,male,M,No injury: Knocked off board by shark,N,The Age,9/16/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf +5988,2016.09.15.R,15-Sep-16,2016,Boat,Australia,Western Australia,Bunbury,Fishing,Occupant: Ben Stratton,Unknown,Shark rammed boat. No injury to occupant,N,West Australian,9/15/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.15.R-boat.pdf +5987,2016.09.11,11-Sep-16,2016,Unprovoked,Usa,Florida,"Ponte Vedra, St. Johns County",Wading,male,M,Minor injury to arm,N,News4Jax,9/11/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.11-PonteVedra.pdf +5986,2016.09.07,07-Sep-16,2016,Unprovoked,Usa,Hawaii,"Makaha, Oahu",Swimming,female,F,Severe lacerations to shoulder & forearm,N,Hawaii News Now,9/7/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.07-Oahu.pdf +5985,2016.09.06,06-Sep-16,2016,Unprovoked,New caledonia,North Province,Koumac,Kite surfing,David Jewell,M,FATAL,Y,TVANouvelles,9/6/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.06-Jewell.pdf +5984,2016.09.05.b,05-Sep-16,2016,Unprovoked,Usa,South Carolina,"Kingston Plantation, Myrtle Beach, Horry County",Boogie boarding,Rylie Williams,F,Lacerations & punctures to lower right leg,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.b-Williams.pdf +5983,2016.09.05.a,05-Sep-16,2016,Unprovoked,Australia,Western Australia,Injidup ,Surfing,Fraser Penman,M,"No inury, board broken in half by shark",N,Perth Now,9/5/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.a-Penman.pdf +5982,2016.09.04,04-Sep-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Body boarding,Austin Moore,M,Foot bitten,N,Orlando Sentinel,9/7/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.04-Moore.pdf +5981,2016.09.01,01-Sep-16,2016,Unprovoked,Usa,California,"Refugio State Beach, Santa Barbara County",Spearfishing,Tyler McQuillen ,M,Two toes broken & lacerated,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.01-McQuillen.pdf +5980,2016.08.29.b,29-Aug-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Sam Cumiskey ,M,Lacerations to right foot,N,News Channel 8,8/30/16,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.b-Cumiskey.pdf +5979,2016.08.29.a,29-Aug-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Minor injury to ankle,N,News Channel 8,8/30/16,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.a-NSB.pdf +5978,2016.08.27,27-Aug-16,2016,Unprovoked,Reunion,Unknown,Boucan Canot,Surfing,Laurent Chardard ,M,"Right arm severed, ankle severely bitten ",N,LaDepeche,8/29/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.27-Chardard.pdf +5977,2016.08.25,25-Aug-16,2016,Unprovoked,Usa,Florida,"Ponte Vedra, St. Johns County",Wading,David Cassetty,M,Minor injury to ankle,N,First Coast News,7/25/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.25-Cassetty.pdf +5976,2016.08.07,07-Aug-16,2016,Unprovoked,Bahamas,New Providence Island,Nassau,Snorkeling,Johnny Stoch,M,Lacerations to left leg,N,ABC,8/11/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.07-Stoch.pdf +5975,2016.08.06,06-Aug-16,2016,Unprovoked,Usa,Hawaii,Maui,SUP Foil boarding,Connor Baxter,M,"No inury, shark & board collided",N,SUP,8/9/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.06-Baxter.pdf +5974,2016.08.04,04-Aug-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Tyler,M,Big toe bitten,N,News 965,8/5/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Tyler.pdf +5973,2016.07.29,29-Jul-16,2016,Unprovoked,Spain,Alicante Province,Arenales del Sol,Swimming,male,M,Lacerations to right hand,N,Informacion.es,7/29/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.29-Spain.pdf +5972,2016.07.28.R,28-Jul-16,2016,Unprovoked,China,Hong Kong,Unknown,Swimming,Justus Franz,M,Lacerations to leg,N,Klassick,7/28/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28.R-Franz.pdf +5971,2016.07.28,28-Jul-16,2016,Boat,Australia,Western Australia,Near Albany,Kayaking,Ian Watkins,M,"No injury, shark nudged kayak repeatedly",N,ABC Australia,7/28/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28-Watkins.pdf +5970,2016.07.27,27-Jul-16,2016,Provoked,Usa,Florida,"Florida Keys, Monroe County",Lobstering,Warren Sapp,M,Laceration to left forearm PROVOKED INCIDENT,N,Tampa Bay Times,7/27/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.27-Sapp.pdf +5969,2016.07.26,26-Jul-16,2016,Unprovoked,Australia,New South Wales,"Sharpes Beach, Ballina",Surfing,Curran See & Harry Lake,M,"No injury. Leg rope severed, knocked off board by shark",N,Gold Coast Bulletin,7/28/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.26-Ballina.pdf +5968,2016.07.24,24-Jul-16,2016,Unprovoked,Japan,Kochi Prefecture,Irino Beach,Surfing,male,M,Lacerations to left leg,N,Japan Times,7/25/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.24-Japan.pdf +5967,2016.07.23.b,23-Jul-16,2016,Unprovoked,Australia,Tasmania,Clifton Beach,Surfing,Zebulon Critchlow,M,Calf bumped but no injury,N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23.b-Critchlow.pdf +5966,2016.07.23.a,23-Jul-16,2016,Unprovoked,Bahamas,Abaco Islands,Green Turtle Cay,Spearfishing,Steve Cutbirth,M,Lacerations to face and right leg,N,KWTX,7/23/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23-Cutbirth.pdf +5965,2016.07.20,20-Jul-16,2016,Provoked,Australia,Queensland,"20 k off The Spit, off the Gold Coast",Fishing,Scott van Burck,M,Laceration to left calf from hooked shark PROVOKED INCIDENT,N,Nine News,7/20/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.20-Burck.pdf +5964,2016.07.17,17-Jul-16,2016,Boat,Usa,Alabama,8 miles off Mobile,Fishing in Alabama Deep Fishing Rodeo,Occupant: Ben Raines,Unknown,"No injury, shark bit trolling motor",N,Al.com,7/19/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.17-Gulf.pdf +5963,2016.07.16.b,16-Jul-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,female,F,Minor injury to leg,N,Orlando Sentinel,7/21/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.b-NSB.pdf +5962,2016.07.16.a,16-Jul-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Unknown,female,F,Minor injury to toes,N,Orlando Sentinel,7/21/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.a-NSB.pdf +5961,2016.07.15,15-Jul-16,2016,Unprovoked,Usa,South Carolina,"North Myrtle Beach, Horry County",Swimming,male,M,Puncture wounds to foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14-MyrtleBeach.pdf +5960,2016.07.14.4, 14-Jul-2016,2016,Unprovoked,Bahamas,Unknown,Tiger Beach,Scuba Diving,Michael Dornellas,M,Face bruised when partly blind shark collided with him,N,GrindTV,7/14/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14.R-TigerBeach.pdf +5959,2016.07.08.R,08-Jul-2016,2016,Unprovoked,Spain,Canary Islands,"Las Teresitas, Tenerife",Wading,female,F,"5 tiny puncture marks to lower leg, treated with hydrogen peroxide",N,La Opinion de Tenerife,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08.R-Spain.pdf +5958,2016.07.08,08-Jul-16,2016,Boat,Usa,California,"Capitola, Santa Cruz County",Fishing for squid,Mark Davis,M,"No injury. Hull bitten, tooth fragment recovered",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08-CapitolaBoat.pdf +5957,2016.07.07.b,07-Jul-16,2016,Provoked,Usa,Massachusetts,"Off Gloucester, Essec County",Fishing,Roger Brissom,M,Fin of hooked shark injured fisherman's forearm. . PROVOKED INCIDENT,N,Salem News 7/8/2016,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.b-Brissom.pdf +5956,2016.07.07.a,07-Jul-16,2016,Boat,Usa,California,"Off Palos Verdes peninsula, Los Angeles County",Fishing for sharks,24' boat Shark Tagger Occupant Keith Poe,M,"No injury. Hull bitten, tooth fragment recovered",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.a-PoeBoat.pdf +5955,2016.07.06,06-Jul-16,2016,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Swimming,female,F,"Buttocks, thigh, left hand & wrist injured",N,Florida Today,7/6/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.06-Njwoman.pdf +5954,2016.07.04,04-Jul-16,2016,Provoked,Australia,Queensland,Palm Cove ,Fishing,Nathan Oliver,M,Right thigh injured by hooked pregnant female shark PROVOKED INCIDENT,N,Cairns Post,7/9/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.04-Oliver.pdf +5953,2016.06.27,27-Jun-16,2016,Unprovoked,Usa,South Carolina,Sullivan's Island,Unknown,male,M,Minor injury,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.27-Sullivans.pdf +5952,2016.06.25,25-Jun-16,2016,Unprovoked,Usa,North Carolina,"Atlantic Beach, Emerald Isle, Carteret County",Surfing,male,M,Foot injured,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.25-AtlanticBeach.pdf +5951,2016.06.24,24-Jun-16,2016,Unprovoked,Columbia,Isla Provedencia,Unknown,Scuba Diving,Arturo Velez,M,Severe bite to right hand,N,Dr. A. Velez,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.24-Velez.pdf +5950,2016.06.23,23-Jun-16,2016,Unprovoked,South africa,Western Cape Province,Ryspunt,Spearfishing,male,M,Injuries to left leg & right hand,N,News 24,6/23/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.23-Rysport.pdf +5949,2016.06.21.b,21-Jun-16,2016,Unprovoked,Usa,South Carolina,"North Myrtle Beach, Horry County",Floating,Jeff Schott,M,Lacerations and punctures to foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.b-Schott.pdf +5948,2016.06.21.a,21-Jun-16,2016,Unprovoked,Usa,Florida,"Pelican Beach Park, Satellite Beach, Brevard County",Wading,male,M,Injuries to right calf,N,Florida Today,6/22/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.a-SatelliteBeach.pdf +5947,2016.06.15.b,15-Jun-16,2016,Unprovoked,Usa,Hawaii,"Kalapaki Beach, Kauai",Surfing,male,M,Single puncture wound to arm,N,West Hawaii Today,6/16/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.b-Kauai.pdf +5946,2016.06.15.a,15-Jun-16,2016,Provoked,Australia,Western Australia,Coral Bay,Spearfishing,Brad Vale,M,No injury but shark punctured his wetsuit after he prodded it with his spear PROVOKED INCIDENT,N,Perth Now,6/16/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.a-Vale.pdf +5945,2016.06.14,14-Jun-16,2016,Unprovoked,Usa,Texas,"Pirates Beach, Galveston",Floating in tube,Marin Alice Melton,F,Injury to lower leg,N,Click2Houston,6/14/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.14-Melton.pdf +5944,2016.06.11,11-Jun-16,2016,Unprovoked,Usa,North Carolina,"Atlantic Beach, Emerald Isle, Carteret County",Standing,Dillon Bowen,M,Laceration to wrist,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.11-Bowen.pdf +5943,2016.06.07,07-Jun-16,2016,Invalid,Usa,South Carolina,"Folly Beach, Charleston County",Surfing,Jack O'Neill,M,"No injury, board damaged",N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.07-Oneill.pdf +5942,2016.06.05.b,05-Jun-16,2016,Unprovoked,Usa,Florida,"Flagler Beach, Flagler County",Swimming,male,M,Leg bitten,N,Daytona Beach News-Journal,6/5/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.b-Flagler.pdf +5941,2016.06.05.a,05-Jun-16,2016,Unprovoked,Australia,Western Australia,Mindarie,Diving,Doreen Collyer,F,FATAL,Y,B. Myatt,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.a-Collyer.pdf +5940,2016.06.04,04-Jun-16,2016,Unprovoked,Egypt,Suez,Ain Sokhna,Swimming,Omar Abdel Qader,M,"Leg severely bitten, surgically amputated",N,Ahram Online,6/4/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Qader.pdf +5939,2016.06.02.b,02-Jun-16,2016,Unprovoked,Australia,New South Wales,Kingscliff,Spearfishing,Waade Madigan and Dr Seyong Kim ,M,"No injury, but sharks repeatedly hit their fins and guns",Y,Gold Coast Bulletin,6/4/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.b-Matigan.pdf +5938,2016.06.02.a,02-Jun-16,2016,Unprovoked,New caledonia,Unknown," Côte-Blanche, Nouméa ",Kite surfing,Pierre de Rotalier,M,Laceration to heel,N,Les Nouvelles Caledoniennes,6/3/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.a-Pierre.pdf +5937,2016.05.31,31-May-16,2016,Unprovoked,Australia,Western Australia,"Falcon Beach, Mandurah",Surfing,Ben Gerring,M,FATAL,Y,Perth Now,5/31/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.31-Gerring.pdf +5936,2016.05.29.b,29-May-16,2016,Unprovoked,Usa,California,"Corona Del Mar, Newport, Orange County",Swimming," Maria Korcsmaros +",F,Injuries to arm and shoulder,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.b-Corona.pdf +5935,2016.05.29.a,29-May-16,2016,Unprovoked,Usa,Florida,"Neptune, Duval County",Swimming,male,M,Injury to posterior right leg,N,News4Jax,5/29/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.a-Neptune.pdf +5934,2016.05.22,22-May-16,2016,Unprovoked,Usa,Florida,"Vero Beach, Indian River County",Swimming,Mary Marcus,F,Puncture wounds to thigh,N,Florida Today,5/22/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.22-Marcus.pdf +5933,2016.05.21.b,21-May-16,2016,Unprovoked,Usa,Florida,"St. Petersburg, Pinellas County",Swimming,Krystal Magee,F,Lacerations and puncture wounds to foot and ankle,N,ABC Action News,6/15/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.b-Magee.pdf +5932,2016.05.21.a,21-May-16,2016,Unprovoked,Usa,Florida,"Hugenot Beach , Jacksonville, Duval County",Swimming,female,F,"Back, arm & hand injured",N,Action News Jax,5/23/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.a-Girl.pdf +5931,2016.05.18,18-May-16,2016,Unprovoked,Usa,Florida,"Ponte Vedra, St. Johns County",Swimming,Mark Wilson,M,Ankle bitten,N,News4Jax,5/19/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.18-Wilson.pdf +5930,2016.05.15,15-May-16,2016,Provoked,Usa,Florida,"Boca Raton, Palm Beach County",Teasing a shark,female,F,Arm grabbed PROVOKED INCIDENT,N,CBS News,5/16/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.15-Boca.pdf +5929,2016.05.03,03-May-16,2016,Unprovoked,Usa,Hawaii,"Wailea Beach, Maui",Floating,male,M,Minor lacerations to right shoulder,N,Maui Now,5/3/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.03-Maui.pdf +5928,2016.05.02,02-May-16,2016,Provoked,New zealand,North Island,Cormandel,Fishing,male,M,Foot bitten by landed shark PROVOKED INCIDENT,N,Radio New Zealand 5/3/2016,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.02-NZ-pdf +5927,2016.04.25,25-Apr-16,2016,Unprovoked,Indonesia,Bali,Balian,Surfing,Ryan Boarman,M,Elbow bitten,N,News.com.au,4/26/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.25-Boarman.pdf +5926,2016.04.23,23-Apr-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Kelton Beardall,M,Minor injury to left foot,N,News4Jax,4/23/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.23-Beardall.pdf +5925,2016.04.22,22-Apr-16,2016,Unprovoked,South africa,Western Cape Province,"Robberg Beach, Plettenberg Bay",Surf-skiing,Dave Manson,M,"No injury, surf-ski bitten",N,Knysna-Plett Herald,4/22/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.22-Manson.pdf +5924,2016.04.19,19-Apr-16,2016,Unprovoked,Australia,New South Wales,"First Sun Beach, Byron Bay",Swimming,Zak Kedem,M,Minor puncture wound to foot,N,Gold Coast Bulletin,4/19/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.19-Kedem.pdf +5923,2016.04.18,18-Apr-16,2016,Provoked,French polynesia,Tuamotos,Makemo Atoll,Spearfishing,Teva Tokoragi,M,"Severe lacerations to right forearm, hand and calf from speared shark PROVOKED INCIDENT",N,Tahiti Infos,4/19/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.18-Tokoragi.pdf +5922,2016.04.13,13-Apr-16,2016,Unprovoked,Usa,Florida,"Off Singer Island, Palm Beach County",Spearfishing,Kyle Senkowicz,M,Multiple bites to right arm,N,Palm Beach Post,4/13/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.13-Senkowicz.pdf +5921,2016.04.09,09-Apr-16,2016,Unprovoked,New caledonia,Grand Terre,Poe Beach,Walking,Nicole Malignon,F,FATAL,Y,Les Nouvelles Caledonnie. 4/11/2016,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.09-Malignon.pdf +5920,2016.04.08,08-Apr-16,2016,Invalid,Cape verde,Boa Vista Island,Unknown,Unknown,a British citizen,M,"""Serious""",N,L.O.Guttke,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.08-CapeVerde.pdf +5919,2016.04.07.b,07-Apr-16,2016,Unprovoked,Usa,Florida,"Florida Keys, Monroe County",Fishing,Jonathan Lester,M,Left hand bitten,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.b-Lester.pdf +5918,2016.04.07.a,07-Apr-16,2016,Invalid,Usa,Florida,"Corners Beach, Jupiter, Palm Beach County",SUP,Maximo Trinidad,M,Fell off board when spinner shark leapt from the water next to him. No injury to surfer,N,YouTube,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.a-Trinidad.pdf +5917,2016.03.31,31-Mar-16,2016,Unprovoked,Usa,Hawaii,"Olowalu, Maui",Snorkeling,J. Orr,F,Minor injury to left foot,N,Maui Now,3/31/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.31-Orr.pdf +5916,2016.03.30,30-Mar-16,2016,Unprovoked,Australia,New South Wales,Bombo Beach,Surfing,Brett Connellan,M,Severe injury to thigh,N,Daily Telegraph,3/30/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.30-Connellan.pdf +5915,2016.03.28.b,28-Mar-16,2016,Unprovoked,Usa,Florida,"Fort Myers Beach, Lee County",Unknown,Nick Kawa,M,Minor injury to arm. Possibly caused by smalll nurse shark,N,Fox 35,3/30/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.28.b-Kawa.pdf +5914,2016.03.28.a,28-Mar-16,2016,Unprovoked,Australia,New South Wales,North Cronulla Beach,Surfing,Roie Smyth,M,"No injury, board dented",N,B. Myatt,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.28.a-Smyth.pdf +5913,2016.03.26,26-Mar-16,2016,Provoked,Unknown,Unknown,Unknown,Unknown,Henry Kreckman ,M,Minor injury to chest PROVOKED INCIDENT,N,Wisconsin State Journal,4/2/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.26-Kreckman.pdf +5912,2016.03.13,13-Mar-16,2016,Invalid,Usa,California,"Bolsa Chica State Park, Orange County",Surfing,unknown,Unknown,Board reportedly bumped by shark. No injury,N,Orange County Register,3/13/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.13-BolsaChicaSurfer.pdf +5911,2016.03.11,11-Mar-16,2016,Unprovoked,Usa,Florida,"Vero Beach, St. Lucie County",Body surfing,Daniel Kenny,M,Lacerations to right foot and ankle,N,WCBV-5,3/31/206,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.11-Kenny.pdf +5910,2016.03.10,10-Mar-16,2016,Unprovoked,Fiji,Vanua Levu,Unknown,Diving for beche-de-mer,Maika Tabua,M,FATAL,Y,Fiji Sun,3/12/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.10-Tabua.pdf +5909,2016.03.04,04-Mar-16,2016,Unprovoked,Usa,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Unknown,male,M,Superficial injury to foot,N,WPTV. 3/4/2016,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.04-OCPark.pdf +5908,2016.03.03.R,03-Mar-2016,2016,Unprovoked,Australia,South Australia,Wrights Bay,Fishing,Lee Taplin,M,Puncture wounds to right calf,N,9 News,3/1/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.03.R-Taplin.pdf +5907,2016.03.02,02-Mar-16,2016,Unprovoked,Brazil,Santa Catarina State,Escalerio Beach Balneário Camboriú,Swimming,Rafael Hermes Thomas,M,Minor injury to head,N,Misones Online,3/4/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.02-Thomas.pdf +5906,2016.02.22,22-Feb-16,2016,Unprovoked,New caledonia,South Province,"Ricaudy Reef, Noumea",Kite surfing,Adrian *,M,Puncture wounds to right thigh,N,Les Nouvelles Calédoniennes,2/23/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.22-Noumea.pdf +5905,2016.02.19, 19-Feb-2016,2016,Unprovoked,New caledonia,South Province,Yate,Spearfishing,male,M,Forearm bitten,N,Les Nouvelles Calédoniennes,2/19/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.19-NewCaledonia.pdf +5904,2016.02.12,12-Feb-16,2016,Unprovoked,Dominican republic,Altagracia Province,"Bavaro Beach, Punta Cana",Wading,Patricia Howe,F,Avulsion injury to lower leg,N,S. Harris,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.12-Howe.pdf +5903,2016.02.10.R,10-Feb-2016,2016,Invalid,Cayman islands,Grand Cayman,Stingray City Bar,Feeding stingrays?,Richard Branson,M,Minor injury to wrist from Southern stingray,N,R. Branson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.10.R-Branson-stingray.pdf +5902,2016.02.10,10-Feb-16,2016,Invalid,Australia,Tasmania,Nettley Bay,Surfing,male,M,"No injury, knocked off board",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.11-NettleyBay.pdf +5901,2016.02.05,05-Feb-16,2016,Unprovoked,Australia,Queensland,Stradbroke Island,Walking,female,F,Foot nipped,N,Courier Mail,2/5/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.05-Stradbroke.pdf +5900,2016.02.04,04-Feb-16,2016,Unprovoked,Australia,New South Wales,Hams Beach,Windsurfing,Andrew Morris,M,"No injury, shark bit board",N,B. Myatt,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.04-Morris.pdf +5899,2016.01.29,29-Jan-16,2016,Boat,South africa,KwaZulu-Natal,Unknown,Kayak fishing,Dev De Lange,M,"No injury, shark capsized kayak",N,Nine News,2/1/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.29-DeLange.pdf +5898,2016.01.28,28-Jan-16,2016,Unprovoked,Usa,Hawaii,"Hanalei Bay, Kauai",Surfing,male,M,Lacerations to both hands,N,KHON2. 1/28/2016,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.28-Kauai.pdf +5897,2016.01.25,25-Jan-16,2016,Unprovoked,Usa,Hawaii,"Hanalei Bay, Kauai, ",Surfing,Kaya Waldman,F,No injury,N,The Garden Island,2/2/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.25-Waldman.pdf +5896,2016.01.24.b,24-Jan-16,2016,Unprovoked,Usa,Texas,Off Surfside,Spearfishing,Keith Love,M,"Bruised ribs & tail bone, speargun broken and wetsuit cut",N,K. Love,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.b-Love.pdf +5895,2016.01.24.a,24-Jan-16,2016,Boat,United arab emirates,Fujairah Emirate,35 miles off Fujairah,Fishing,Occupants: Hamza Humaid Al Sahra’a & 5 crew,M,"No injury to occupants, shark leapt into boat",N,Gulf News,1/25/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.a-UAEboat.pdf +5894,2016.01.23,23-Jan-16,2016,Unprovoked,Usa,Hawaii,"Wailea Beach, Maui",Paddle boarding,Matt Mason,M,No injury,N,Grand Forks Herald,1/27/2915,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.23-Mason.pdf +5893,2016.01.11.R,11-Jan-2016,2016,Unprovoked,Australia,Queensland,"Happy Valley Beach, Caloundra",Surfing,Shane Hilder,M,Laceration to right foot,N,ABC Sunshine Coast,1/11/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.11.R-Hilder.pdf +5892,2016.01.05,05-Jan-16,2016,Unprovoked,Australia,Queensland,Heron Island,Wading,Nicolas Davis,M,Laceration to right calf,N,Nine News,1/5/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.05-Davis.pdf +5891,2016.01.02,02-Jan-16,2016,Unprovoked,Australia,Queensland,Miall Island,Spearfishing,Allan Countryman,M,Lacerations to arms & leg,N,Courier Mail,1/2/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.02-Countryman.pdf +5890,2015.12.26,26-Dec-15,2015,Boat,South africa,KwaZulu-Natal,Westbrook Beach,Kayak Fishing,Occupant: Grant Wardell,M,"No injury, kayak damaged",N,Traveller24,12/26/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.26-Wardell.pdf +5889,2015.12.25,25-Dec-15,2015,Unprovoked,Spain,Grand Canary Island,"Arinaga Beach, Aguimes, Gran Canaria",Swimming,Cristina Ojeda-Thies ,F,Lacerations to left forearm,N,Diaro de Visos,12/26/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.25-GrandCanary.pdf +5888,2015.12.22,22-Dec-15,2015,Unprovoked,Usa,Hawaii,La'aloa Beach Park,Paddle boarding,Robert Ford,M,"No injury, shark bit board",N,West Hawaii Today,12/23/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.22-Ford.pdf +5887,2015.12.21.b,21-Dec-15,2015,Unprovoked,Australia,New South Wales,Bondi Beach,Surfing,Dean Norburn,M,"No injury, shark leapt on surfboard",N,The Telegraph,12/22/;2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.b-Norburn.pdf +5886,2015.12.21.a,21-Dec-15,2015,Unprovoked,Brazil,Pernambuco,Fernano de Noronha,Scuba diving,Márcio de Castro Palma ,M,Right hand & part of forearm removed,N,Fox News,12/22/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.a-Brazil.pdf +5885,2015.12.19,19-Dec-15,2015,Unprovoked,Aruba,Unknown,Boat capsized,Sea disaster,Adrian Esteban Rafael,M,FATAL,Y,Fox News,12/11/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.19-Aruba.pdf +5884,2015.12.13,13-Dec-15,2015,Boat,Australia,New South Wales,Lake Macquarie,Fishing,6 m boat: occupants Stephen & Andrew Crust,Unknown,"No injury, shark rammed boat & bit motor",N,Courier Mail,12/15/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.13-Crust-Boat.pdf +5883,2015.12.11,11-Dec-15,2015,Unprovoked,Bahamas,Unknown,Off Andros Island,Lobster fishing,Richard Pinder,M,"Bitten on thigh, abdomen & hand",N,Nassau Guardian,12/12/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.11-Pinder.pdf +5882,2015.12.08,08-Dec-15,2015,Unprovoked,South africa,Eastern Cape Province,Mpande,Swimming / Wading,Tamsin Scott,F,Lacerations to both hands and forearms,N,The Bulletin,12/17/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.08-Scott.pdf +5880,2015.11.16,16-Nov-15,2015,Unprovoked,Usa,Florida,"Playalinda Beach, Brevard County",Surfing,Aaron Conti,M,Right heel injured,N,WFTV. 11/17/2015,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.16-Conti.pdf +5879,2015.11.15.b,15-Nov-15,2015,Unprovoked,Usa,Florida,"Palm Beach, Palm Beach County",Swimming,female,F,Leg injured,N,Palm Beach Post,11/16/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.b-PalmBeach.pdf +5878,2015.11.15.a,15-Nov-15,2015,Unprovoked,Usa,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Surfing,Allen Engelman,M,Lacerations to hand,N,5WPTV,11/15/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.a-Engelman.pdf +5877,2015.11.10,10-Nov-15,2015,Unprovoked,Australia,New South Wales,East Ballina,Surfing,Sam Morgan,M,Injury to left thigh,N,The Sydney Morning Herald,11/11/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.10-Morgan.pdf +5876,2015.12.23,07-Nov-15,2015,Invalid,Usa,Florida,"Paradise Beach, Melbourne, Brevard County",Surfing,Ryla Underwood,F,Lower left leg injured,N,Fox25Orlando,11/7/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.07-Underwood.pdf +5875,2015.11.03,03-Nov-15,2015,Unprovoked,Usa,Hawaii,"Kehena Beach, Hawaii",Swimming,Paul O'Leary,M,Laceration to right ankle,N,Hawaii News Now,11/4/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.03-O'Leary.pdf +5874,2015.11.01.b,01-Nov-15,2015,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Wading,Jill Kruse,F,Injury to right ankle/calf & hand,N,USA Today,11/1/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.b-Kruse.pdf +5873,2015.11.01.a,01-Nov-15,2015,Unprovoked,Mozambique,Inhambane Province,Maxixe,Fishing,Albino Ernesto,M,"Arms severely injured, surgically amputated",N,Coastweek,12/3/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.a-Ernesto.pdf +5872,2015.10.30,30-Oct-15,2015,Unprovoked,Australia,Western Australia,Bald Island,Spearfishing,Norman Galli,M,Minor injury,N,Perth Now,10/30/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.30-Galli.pdf +5871,2015.10.28.a,28-Oct-15,2015,Unprovoked,Usa,Hawaii,"Malaka, Oahu",Body boarding,Raymond Senensi,M,"Lacerations & puncture wounds to right thigh, calf & ankle",N,Star Advertiser,10/28/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.28-Senensi.pdf +5870,2015.10.25,25-Oct-15,2015,Unprovoked,South africa,Western Cape Province,Stil Bay,Surfing,Stuart Anderson,M,"Lacerations to right calf, knee & hip",N,News 24,10/26/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.25-Anderson.pdf +5869,2015.10.21,21-Oct-15,2015,Unprovoked,Usa,Florida,"Playalinda Beach, Brevard County",Surfing,Michael Salinger,M,Lacerations to left hand,N,ClickOrlando.com,10/21/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.21-Playalinda.pdf +5868,2015.10.19,19-Oct-15,2015,Unprovoked,Usa,Florida,"Deerfield Beach, Broward County",Surfing,Peter Kirn,M,Left foot bitten,N,NBC6.com,10/19/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.19-Kirn.pdf +5867,2015.10.17.c,17-Oct-15,2015,Unprovoked,Mozambique,Inhambane Province,"Nahaduga, Inhambane Bay",Fishing for shrimp,Albertina Cavel,F,FATAL,Y,Xinhua News Agency,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.c-Cavel.pdf +5866,2015.10.17.b,17-Oct-15,2015,Invalid,Usa,Hawaii,"Waikiki, ",Surfing,male,M,Left foot bitten by eel,N,KHON2,10/17/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.b.-Hawaii. pdf +5865,2015.10.17.a,17-Oct-15,2015,Unprovoked,Usa,Hawaii,"Lanikai Beach, Kailua, Oahu",Swimming,Tony Lee,M,Injuries to lower legs,N,KHON2,10/17/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.a-Lee.pdf +5864,2015.10.13,13-Oct-15,2015,Boat,Usa,California,"Off Leffingwell Landing, San Luis Obispo County",Kayak Fishing,Jordan Pavacich,M,"No injury, shark rammed kayak repeatedly",N,The Tribune,10/28/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.13-Pavacich-kayak.pdf +5863,2015.10.09.b,09-Oct-15,2015,Unprovoked,Usa,South Carolina,"Shipyard Beach Club, Hilton Head Island, Beaufort County",Boogie boarding,Meti Kershner,F,Laceration to forearm,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.b-Kershner.pdf +5862,2015.10.09.a,09-Oct-15,2015,Unprovoked,Usa,Hawaii,"Leftovers, Oahu",Surfing,Colin Cook,M,"Left leg severed below the knee, defense injuries to left hand",N,Hawaii News Now,10/9/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.a-Cook.pdf +5861,2015.10.08,08-Oct-15,2015,Unprovoked,Mozambique,Inhambane Province,"Maxixe, Inhambane Bay",Fishing,Alberto Rafael,M,"Arm severely injured, surgically amputated",N,Club of Mozambique,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.08-Rafael.pdf +5860,2015.10.07,07-Oct-15,2015,Unprovoked,Australia,Western Australia,Pyramids Beach,Surfing,Eli Zawadzki,M,Foot injured,N,Daily Mail,10/7/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.07-Zawadzki.pdf +5859,2015.10.05.b,05-Oct-15,2015,Unprovoked,Usa,Florida,"Pepper Park Beach, St. Lucie County",Body boarding,male,M,2 lacerations to ankle,N,WPBF.com,10/6/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05.b-FtPierce.pdf +5858,2015.10.05.a,05-Oct-15,2015,Unprovoked,Usa,Texas,Galveston,Wading,Gregory Slaughter,M,Foot & hands bitten,N,Houston Chronicle,10/5/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05-Slaughter.pdf +5857,2015.10.04,04-Oct-15,2015,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Phillip Tarasovic,M,Severe lacerations to left hand,N,CNN,10/4/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.04-Tarasovic.pdf +5856,2015.09.29,29-Sep-15,2015,Unprovoked,Usa,Florida,"Vilano Beach, St. Johns County",Surfing,"David Morrison, Jr.",M,"Laceration to heel, puncture wounds to dorsum of foot",N,First Coast News,9/30/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.29-Morrison.pdf +5855,2015.09.26,26-Sep-15,2015,Unprovoked,Australia,Queensland,"Russel Island, Frankland Group",Snorkeling,female,F,Laceration to leg,N,The Cairns Post,9/28/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.26-QLD.pdf +5854,2015.09.24,24-Sep-15,2015,Unprovoked,Usa,California,"Horseshoe Rock, Santa Barbara County",Kayak fishing,Darren Kenney,M,"No injury, kayak damaged",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.24-Kenney.pdf +5853,2015.09.20.d,20-Sep-15,2015,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Minor injury to left ankle,N,Orlando Sentinel,9/20/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.d-NSB.pdf +5852,2015.09.20.c,20-Sep-15,2015,Unprovoked,Usa,Hawaii,"Upolu Point, North Kohala, Big Island",Spearfishing, Braxton Rocha,M,Severe laceration to left leg,N,Big Island Video,9/20/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.c-Braxton.pdf +5851,2015.09.20.b,20-Sep-15,2015,Unprovoked,Usa,Florida,"Fernandina Beach, Amelia Island, Nassau County",Wading,"Joshua Bitner, Jr.",M,Significant injuries to leg,N,News4Jax,9/21/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.b-Bitner.pdf +5850,2015.09.20.a,20-Sep-15,2015,Unprovoked,Usa,Florida,"Vilano Beach, St. Johns County",Photographing fish,Filippo Schiavo ,M,Injury to right hand / wrist,N,News4JAX,9/21/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.a-Schiavo.pdf +5849,2015.09.18,18-Sep-15,2015,Unprovoked,Usa,Florida,"Big Talbot Island, Duval County",Swimming,Peter Vergenz ,M,Lacerations to calf,N,Action News Jax,9/23/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.18-Vergenz.pdf +5848,2015.09.17,17-Sep-15,2015,Unprovoked,Usa,Florida,"Jacksonville Beach, Duval County",Surfing,Bryan Liebetrau,M,Injury to right foot,N,News4JAX,9/15/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.17-Liebetrau.pdf +5847,2015.09.08,08-Sep-15,2015,Unprovoked,Australia,New South Wales,North Shelly Beach,Surfing,Justin Daniels,M,Minor laceration to hand,N,ABC News,9/8/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.08-Daniels.pdf +5846,2015.09.06,06-Sep-15,2015,Unprovoked,Usa,California,"El Pescador Beach, Los Angeles County",Stand-Up Paddleboarding,Caterina Gennaro,F,"No injury, shark struck board, tossing her into the sea",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.06-Gennaro.pdf +5845,2015.09.05,05-Sep-15,2015,Provoked,Usa,California,"Deer Creek Beach, Ventura County",Kayak Fishing,Dylan Marks,M,Laceration to dorsum of foot by hooked shark PROVOKED INCIDENT,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.05-Marks.pdf +5844,2015.09.04,04-Sep-15,2015,Unprovoked,Australia,New South Wales,Hallidays Point,Surf-skiing,David Quinliven,M,Inuries to lower left leg & ankle,N,The Sydney Morning Herald,9/4/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.04-Quinliven.pdf +5843,2015.09.03,03-Sep-15,2015,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Unknown,Chip Wagner,M,Right foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.03-Wagner.pdf +5842,2015.09.01,01-Sep-15,2015,Unprovoked,Thailand,Phuket,Karon Beach,Wading,Jane Neame,F,Left foot & ankle bitten,N,Phuket Gazette,9/1/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.01-Neame.pdf +5841,2015.09.00,Sep-15,2015,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Viliame Lautiki,M,Leg bitten,N,Fiji Times,2/8/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.00-Lautiki.pdf +5840,2015.08.29.b,29-Aug-15,2015,Unprovoked,Usa,California,"Morro Strand State Beach, San Luis Obispo County",Surfing,Elinor Dempsey,F,"No injury, surfboard bitten",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.b-Dempsey.pdf +5839,2015.08.29.a,29-Aug-15,2015,Unprovoked,Usa,California,"Morro Bay, San Luis Obispo County",Surfing,Daniel Phillips,M,"No injury, shark struk sufer's leg and his board",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.a-Phillips.pdf +5838,2015.08.22.b,22-Aug-15,2015,Invalid,Usa,Florida,"Cocoa Beach, Brevard County",Unknown,young boy,M,Wound to right lower leg,N,Brevard Times,8/22/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.b-CocoaBeach.pdf +5837,2015.08.22.a,22-Aug-15,2015,Unprovoked,Australia,New South Wales,Lighthouse Beach,Surfing,Dale Carr,M,Severe laceration to left buttock & thigh,N,Daily Telegraph,8/22/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.a-Carr.pdf +5836,2015.08.20,20-Aug-15,2015,Unprovoked,Usa,South Carolina,"Murrells Inlet, Georgetown County",Surfing,Dylan Peyton,M,"Injuries to left calf, arm and hand",N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.20-Peyton.pdf +5835,2015.08.19,19-Aug-15,2015,Unprovoked,Usa,Florida,"Jacksonville Beach, Duval County",Walking,Kaley Szarmack,F,Lacerations to right leg,N,ABC News,8/21/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.19-Szsarmack +5834,2015.08.18.b,18-Aug-15,2015,Unprovoked,Usa,California,Santa Barbara County,Kayak Fishing,Connor Lyon,M,"No injury, kayak bitten",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.b-Lyon.pdf +5833,2015.08.18.a,18-Aug-15,2015,Invalid,Spain,Alicante,"Poniente Beach, Benidorm",Swimming,male,M,Minor injury when he attempted to touch a fish. ,N,The Local,8/18/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.a-Benidorm.pdf +5832,2015.08.10,10-Aug-15,2015,Provoked,Usa,California,Cortes Bank,Spearfishing,Richard Shafer,M,Right hand bitten PROVOKED INCIDENT,N,NBC San Diego,8/13/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.10-Shafer.pdf +5831,2015.07.31,31-Jul-15,2015,Unprovoked,Australia,New South Wales,Evans Head,Surfing,Craig Ison,M,"Lacerations and puncture wounds to hip, thigh, arm and hand",N,Daily Telegraph,7/31/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.31-Ison.pdf +5830,2015.07.26.b,26-Jul-15,2015,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Surfing,Shawn Warrilow,M,Minor injury to sole of foot,N,CBS 7/27/2015,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.b-Warrilow.pdf +5829,2015.07.26.a,26-Jul-15,2015,Invalid,Usa,South Carolina,"Edisto Beach, Colleton County",Floating,female,F,"2' cut to dorsum of foot, 2 puncture wounds to sole",N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.a-Edisto.pdf +5828,2015.07.25,25-Jul-15,2015,Unprovoked,Australia,Tasmania,"Lachan Island, Mercury Passage",Scallop diving on hookah,Damien Johnson,M,FATAL,Y,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.25-Johnson.pdf +5827,2015.07.23.b,23-Jul-15,2015,Provoked,Usa,California,"La Jolla, San Diego County",Kayak Fishing,Austin Lorber,M,No injury to occupant. Kayak bitten by gaffed shark. PROVOKED INCIDENT,N,NBC San Diego,7/27/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.b-Lorber.pdf +5826,2015.07.23.a,23-Jul-15,2015,Unprovoked,Australia,Victoria,Tyrendarra Beach near Portland,Surfing,male,M,Left hand bitten,N,ABC News,7/27/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.a-Victoria.pdf +5825,2015.07.22,22-Jul-15,2015,Unprovoked,Reunion,Unknown,St. Leu,Surfing,Rodolphe Arriéguy,M,Arm bitten,N,Zig Zag Surfing Magazine,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.22-Arrieguy.pdf +5824,2015.07.19,19-Jul-15,2015,Unprovoked,South africa,Eastern Cape Province,Jeffrey's Bay,Surfing,Mick Fanning,M,No injury,N,BBC,7/20/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.19-Fanning.pdf +5823,2015.07-10,10-Jul-15,2015,Unprovoked,Usa,California,"Huntington Beach, Orange County",Surfing,Danny Miskin,M,"No injury, shark bumped & damaged board",N,KTLA,7/10/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.10-Miskin.pdf +5822,2015.07.08,08-Jul-15,2015,Invalid,Usa,California,"Huntington Beach, Orange County",Treading water,Eugene Finney,M,Laceration to back,N,Sentinel & Enterprise.com,10/4/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.08-Finney.pdf +5821,2015.07.06,06-Jul-15,2015,Invalid,French polynesia,Bora Bora,Unknown,Swimming,Joe Termini,M,Parallel lacerations to torso inconsistent with shark bite,N,Hollywood Life,7/6/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.06-Termini.pdf +5820,2015.07.04.b,04-Jul-15,2015,Unprovoked,Bahamas,Grand Bahama Island,"Port Lucaya, Freeport",Spearfishing,Katie Hester,F,Lacerations to lower leg & ankle,N,ABC action News,7/7/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.b-Hester.pdf +5819,2015.07.04.a,04-Jul-15,2015,Unprovoked,Usa,North Carolina,"Off Surf City, Pender County",Unknown,a marine,M,Lacerations to right hand & forearm,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.a-Marine.pdf +5818,2015.07.03,03-Jul-15,2015,Unprovoked,Australia,New South Wales,Lennox Head,Surfing,Michael Hoile,M,"No injury, shark bit surfboard",N,Northern Star,7/3/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.03-Hoile.pdf +5817,2015.07.02,02-Jul-15,2015,Unprovoked,Australia,New South Wales,East Ballina,Body boarding ,Matt Lee,M,Significant injuries to lower legs,N,Northern Star,7/2/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.02-Matt-Lee.pdf +5816,2015.07.01,01-Jul-15,2015,Unprovoked,Usa,North Carolina,"Ocracoke, Lifeguard Beach, National Park Service, Hyde County",Swimming,Andrew Costello,M,"Injuries to torso, hip, lower leg & hands",N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.01-Costello.pdf +5815,2015.06.30.b,30-Jun-15,2015,Unprovoked,Australia,New South Wales,"Flat Rock, Yamba",Surfing,Steve,M,Hand bitten,N,The Telegraph,7/8/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.b-Steve.pf +5814,2015.06.30.a,30-Jun-15,2015,Unprovoked,Usa,South Carolina,"Isle of Palms County Park, Isle of Palms, Charleston County",Playing in the water,Kysen Weakley,M,Shallow lacerations & puncture to lateral left leg,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.a.pdf-Weakley.pdf +5813,2015.06.27.b,27-Jun-15,2015,Unprovoked,Usa,North Carolina,"Rodanthe, Dare County",Swimming,John Cole,M,"Injuries to right calf, buttock and both hands",N,C. Creswell,WRAL,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27.b-Rodanthe.pdf +5812,2015.06.27.a,27-Jun-15,2015,Unprovoked,South africa,Western Cape Province,Buffels Bay near Knysna,Body Boarding,Caleb Swanepoel,M,"Right leg severed, multiple lacerations to left leg",N,NSRI,6/27/205,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27-Swanepoel.pdf +5811,2015.06.26.c,26-Jun-15,2015,Invalid,Usa,Florida,"Jacksonville Beach, Duval County",Swimming,female,F,Minor lacerations to leg,N,Action News Jax,6/26/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.c-Jacksonville.pdf +5810,2015.06.26.b,26-Jun-15,2015,Unprovoked,South africa,Western Cape Province,"Lookout Beach, Plettenberg Bay",Surfing,Dylan Reddering,M,Multiple lacerations to torso & leg,N,Zig Zag Surfing Magazine,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.b-Reddering.pdf +5809,2015.06.26.a,26-Jun-15,2015,Unprovoked,Usa,South Carolina,"South Beach, Hunting Island State Park, Beaufort County",Standing,"Lance Donahue, Jr",M,Puncture wounds to foot,N,C. Creswell,GSAF; WCNC,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.a-Donahue.pdf +5808,2015.06.25.R,25-Jun-2015,2015,Provoked,Australia,Western Australia,Rottnest Island,Swimming,Stephen,M,Minor lacerations to forearm when he grabbed shark by its tail PROVOKED INCIDENT,N,West Australian Police,6/25/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25.R-Stephen.pdf +5807,2015.06.25,25-Jun-15,2015,Unprovoked,Usa,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Body surfing?,Patrick Thornton,M,Multiple lacerations to back,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25-Avon.pdf +5806,2015.06.24.b,24-Jun-15,2015,Unprovoked,Usa,North Carolina,Surf City,Swimming,Brady Noyes,M,Minor injury to foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.b-Noyes.pdf +5805,2015.06.24.a,24-Jun-15,2015,Invalid,Australia,Western Australia,Denmark,Surfing,Lily Kumpe,F,"Bruises and abrasions to face, chin, chest, both shins & feet and cut to right hand when her surfboard was struck with force",N,L. Kumpe,R. Mcauley,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.a-Kumpe.pdf +5804,2015.06.23,23-Jun-15,2015,Unprovoked,Usa,South Carolina,"St. Helena Island, Beaufort County",Standing,male,M,Minor injury to calf ,N,C. Creswell,GSAF; R. Lurye,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.23-Davenport.pdf +5803,2015.06.19,19-Jun-15,2015,Unprovoked,Puerto rico,Unknown,Off Cabo Rojo,Spearfishing,Benjamin Rios,M,Injury to hand,N,Yahoo News,6/19/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.19-Rios.pdf +5802,2015.06.17,17-Jun-15,2015,Unprovoked,Usa,Florida,Daytona Beach Shores,Swimming,Gavin Simpson,M,Minor injury to calf ,N,WTXL TV,6/17/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.17-Simpson.pdf +5801,2015.06.14.b,14-Jun-15,2015,Unprovoked,Usa,North Carolina,"Oak Island, Brunswick County",Wading,Hunter Treschel,M,Arm amputated below shoulder,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.b-Treschel.pdf +5800,2015.06.14.a,14-Jun-15,2015,Unprovoked,Usa,North Carolina,"Oak Island, Brunswick County",Wading,Kiersten Yow,F,Left arm amputated at elbow & severe injury to leg,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.a-Yow.pdf +5799,2015.06.13,13-Jun-15,2015,Unprovoked,Usa,California,Off San Diego,Unknown,Elke Specker,F,Severe laceration to leg,N,Courthouse News Service,11/18/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/Court Case pending +5798,2015.06.11,11-Jun-15,2015,Unprovoked,Usa,North Carolina,"Ocean Isle, Brunswick County",Boogie boarding,girl,F,Minor lacerations to foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.11-OceanIsle.pdf +5797,2015.06.07,07-Jun-15,2015,Unprovoked,Usa,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Playing,Lucas Vertullo,M,Lacerations to right calf,N,Florida Today,6/7/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.07-Vertullo.pdf +5796,2015.06.05,05-Jun-15,2015,Unprovoked,Usa,Florida,Fort Lauderdale,Attempting to rescue a shark,female,F,Puncture wound to finger,N,7 News,6/5/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.05-FortLauderdale.pdf +5795,2015.06.01,01-Jun-15,2015,Unprovoked,Reunion,Le Port,Folette,Surfing,Eddy Chaussalet,M,Left forearm bitten,N,Clincanoo,6/1/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.01-Chaussalet.pdf +5794,2015.05.29.b,29-May-15,2015,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Standing,Ashlyn Gilpin,F,Left foot bitten,N,Orlando Sentinel,5/29/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.b-Gilpin.pdf +5793,2015.05.29.a,29-May-15,2015,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Dakota Hatfield,F,Minor lacerations to dorsum of right foot,N,ClickOrlando,5/29/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.a-Hatfield.pdf +5792,2015.05.25,25-May-15,2015,Unprovoked,French polynesia,Rangiroa,Avatoru Pass,Spearfishing,male,M,Lacerations to right forearm,N,Polynésie 1ère. 5/262015,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.25-Rangiroa.pdf +5791,2015.05.24,24-May-15,2015,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Swimming,Alysa Whetro,F,"Puncture wounds to lower left leg and ankle, shallow lacerations to foot, deep laceration to Achilles tendon",N,WFTV, 5/27/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.24-Wheatro.pdf +5790,2015.05.20,20-May-15,2015,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Matthew Zaccaria,M,2 puncture wounds to dorsum of left foot,N,WFTV,5/20/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.20-Zaccaria.pdf +5789,2015.05.15,15-May-15,2015,Unprovoked,Usa,South Carolina,Sullivan's Island,Unknown,male,M,Laceration to foot ,N,News 2,5/15/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.15-Sullivans.pdf +5788,2015.05.09,09-May-15,2015,Unprovoked,New caledonia,Unknown,Kouare ,Snorkeling,Yves Berthelot,M,FATAL,Y,Les Nouvelles Caledonnie,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.09-Berthelot.pdf +5787,2015.05.07,07-May-15,2015,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Swimming,Josh Green,M,"Lacerations to lower left leg, ankle & foot",N,KnightNews.com,5/9/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.07-Green.pdf +5786,2015.05.03,03-May-15,2015,Unprovoked,Australia,New South Wales,Saltwater Beach,Surfing,Bruce Lucas,M,Injuries to left arm & right hand,N,ABC,5/3/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.03-Lucas.pdf +5785,2015.05.02,02-May-15,2015,Unprovoked,South africa,Eastern Cape Province,Port St. John's,Diving,Mathieu Dasnois,M,"Injuries to leg, left arm & both hands",N,DispatchLive,5/4/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.02-Dasnois.pdf +5784,2015.04.29,29-Apr-15,2015,Unprovoked,Usa,Hawaii,Kanahena Cove ,Snorkeling,Margaret Cruse,F,FATAL,Y,Star Advertiser,4/30/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.29-Cruse.pdf +5783,2015.04.26,26-Apr-15,2015,Unprovoked,Usa,Florida,"Resident's Beach, Marco Island",Wading,Carsten Jessen,M,Lacerations to left calf,N,ABC-7,4/27/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.26-Jessen.pdf +5782,2015.04.25,25-Apr-15,2015,Unprovoked,Australia,South Australia,Fishery Bay,Surfing,Chris Blowes ,M,Leg severed at mid-thigh,N,The Advertiser,4/25/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.25-Blowes.pdf +5781,2015.04.24.c,24-Jun-15,2015,Unprovoked,Australia,New South Wales,"Belongil Beach, Byron Bay",Surf skiing ,Woody Vidgens,M,"No injury, knocked off ski",N,Echo Daily,6/25/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.24.c-Vidgens.pdf +5780,2015.04.13,13-Apr-15,2015,Unprovoked,Usa,Florida,"Florida Keys, Monroe County",Photographing the shark,Mark Rackley,M,Lacerations to shoulder and left bicep,N,Miami Herald,4/25/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.13-Rackley.pdf +5779,2015.04.11,11-Apr-15,2015,Unprovoked,Australia,New South Wales,McKenzies Beach,Paddle boarding,male,M,Ankle injured,N,Surf Life Saving,4/11/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.11-McKenzie-Surfer.pdf +5778,2015.04.12,12-Apr-15,2015,Unprovoked,Reunion,Saint-Gilles-les-Bains,Cap Homard,Surfing,Elio Canestri,M,FATAL,Y,Le Huffington Post,4/15/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.12-Canestri.pdf +5777,2015.03.31,31-Mar-15,2015,Invalid,Brazil,Pernambuco,"Praia del Chifre, Olinda",Surfing,Diego Gomes Mota,M,Injury to left thigh from unidentified species of fish; injuries inconsistent with shark bite,N,Globo,3/31/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.31-Mota.pdf +5776,2015.04.03,03-Apr-15,2015,Unprovoked,Usa,Florida,"3 miles off Jupiter, Palm Beach County",Spearfishing,Rick Neumann,M,Injuries to head & torso,N,ABC Action News,4/6/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.03-Neumann.pdf +5775,2015.03.29,29-Mar-15,2015,Invalid,Italy,Sardinia,Unknown,Diving,Eugenio Masala,M,"FATAL, but shark involvement prior to death unconfirmed",Y,A. de Maddalena,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.29-Masala.pdf +5774,2015.03.26,26-Mar-15,2015,Boat,South africa,Eastern Cape Province,Yellow Sands Point,Kayak Fishing,Kayak: Occupant Kelly Janse van Rensburg,M,No injury but kayak bitten,N,Times Live,4/1/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.26-VanRensburg.pdf +5773,2015.03.21,21-Mar-15,2015,Unprovoked,Egypt,Unknown,Marsa Alam,Swimming,male,M,FATAL,Y,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.21-Egypt.pdf +5772,2015.03.18,18-Mar-15,2015,Unprovoked,Usa,Hawaii,Hapuna Beach,Standing / Snorkeling,Ken Grasing,M,Lacerations to left forearm. Lacerations to left hand and thigh,N,KMBC,3/19/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.18-Grasing.pdf +5771,2015.03.16,16-Mar-15,2015,Unprovoked,French polynesia,Bora Bora,Anau,Hand feeding sharks,male,M,Hand bitten,N,Radio1,3/16/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.16-Bora-Bora.pdf +5770,2015.03.11,11-Mar-15,2015,Boat,Australia,New South Wales,"Julian Rocks, Byron Bay",Fishing,Dinghy: Occupant Robbie Graham,M,Bruised in falling overboard as shark bumped boat,N,Northern Star,3/13/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.11-Graham.pdf +5769,2015.03.10,10-Mar-15,2015,Provoked,Mexico,Sinaloa,Mazlatan,Fishing,David Villegas Mora,M,Right hand bitten by hooked shark PROVOKED INCIDENT,N,Noreste,3/10/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.10-Mora.pdf +5768,2015.03.07,07-Mar-15,2015,Unprovoked,French polynesia,Central Tuamotu,"Tupapati, Hikueru Atoll",Sitting in the water,male,M,Thigh bitten,N,Radio1,3/9/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.07-18-month.pdf +5767,2015.02.15,15-Feb-15,2015,Boat,Unknown,Unknown,Unknown,Transatlantic Rowing,"Avalon, a carbon kevlar monohull: 8 occupants",Unknown,"No injury, shark bit rudder",N,Yorkshire Post,3/16/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.15-Avalon.pdf +5766,2015.02.14,14-Feb-15,2015,Unprovoked,Reunion,d’Étang-Salé,Ravine Mula,Swimming,Talon Bishop,F,FATAL,Y,L'Yonne Républicaine,2/14/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.14-Bishop.pdf +5765,2015.02.09,09-Feb-15,2015,Unprovoked,Australia,New South Wales,Shelly Beach,Surfing,Tadashi Nakahara,M,FATAL,Y,The Telegraph,2/9/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.09-Nakahara.pdf +5764,2015.02.08,08-Feb-15,2015,Unprovoked,Australia,New South Wales,"Seven Mile Beach, Byron Bay",Surfing,Jacob Reitman,M,Laceration & puncture wounds to right flank & hip,N,The Telegraph,2/8/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.08-Reitman.pdf +5763,2015.02.05,05-Feb-15,2015,Unprovoked,Australia,New South Wales,Mereweather Beach,Bodysurfing,Ben McPhee,M,5 minor puncture wounds to lower left leg,N,The Telegraph,1/6/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.05-McPhee.pdf +5762,2015.01.30,30-Jan-15,2015,Boat,Australia,Queensland,"Nerang River, Surfer's Paradise",Rowing,Racing scull: Occupant Trevor Carter,M,"No injury, shark's teeth scratched hull",N,Gold Coast Bulletin,1/31/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.20-Carter.pdf +5761,2015.01.27,27-Jan-15,2015,Provoked,Usa,Hawaii,Lahaina,Shark fishing,Michael Pollard,M,Lacerations to calf by hooked shark PROVOKED INCIDENT,N,Huffington Post,1/28/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.27-Pollard.pdf +5760,2015.01.24,24-Jan-15,2015,Unprovoked,Australia,New South Wales,Flat Rock,Surfing,Hamish Murray,M,"No injury, surfboard dented",N,Northern Star,1/26/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.24-Murray.pdf +5759,2015.01.19.b,19-Jan-15,2015,Boat,Usa,Florida,Off Panama City,Fishing,22-ft boat. Occupant Captain Scott Fitzgerald,M,No injury but shark bit trolling motor & rammed boat,N,The Panhandle,1/20/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.b-Fitzgerald-boat.pdf +5758,2015.01.19.a,19-Jan-15,2015,Invalid,Australia,New South Wales,"Wategos Beach, Byon Bay",Surfing & filming dolphins,Diane Ellis,F,Board snapped in two,N,ABC North Coast,1/21/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.a-Ellis.pdf +5757,2015.01.17,17-Jan-15,2015,Boat,Australia,New South Wales,Off Blacksmith Beach,Fishing,Boat: occupants: Tim Watson & Allan de Sylva,M,"Shark bumped boat, no injury to occupants",N,The Sydney Morning Herald,1/18/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.17-Watson-Tinny.pdf +5756,2015.01.16,16-Jan-15,2015,Unprovoked,Australia,New South Wales,"Mollymook Beach, Bannister Head",Filming,Sam Smith,M,Bitten on hand & wrist,N,Milton-Ulladulla Times,1/16/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.16-Smith.pdf +5755,2015.01.08,08-Jan-15,2015,Invalid,Usa,Florida,Unknown,Swimming after falling overboard,Rob Konrad,M,"During his 16-hour swim to shore, he was circled by a shark but it did not injure him",N,UPI,1/12/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.08-Konrad.pdf +5754,2015.01.06,06-Jan-15,2015,Unprovoked,Bahamas,Abaco Islands,"Tahiti Beach, Elbow Cay",Snorkeling,Lacy Webb,F,Severe bite to right flank,N,Britt Martin; Local10,1/7/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.06-Webb-Martin.pdf +5753,2015.01.03,03-Jan-15,2015,Unprovoked,South africa,Eastern Cape Province,Chintsa East Beach,Surfing,Jason Krafft,M,"Lacerations to lower left leg, puncture wounds to sole of left foot",N,Dispatch Online,1/7/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.03-Krafft.pdf +5752,2015.01.01,01-Jan-15,2015,Unprovoked,Usa,Florida,"Windsor Beach, Indian River County",Unknown,male,M,Leg bitten,N,WPTV-West Palm Beach,1/2/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.01-Child.pdf +5751,2014.12.29.b,29-Dec-14,2014,Unprovoked,Australia,New South Wales,Bherwerre Beach,Surfing,Jeff Brown,Unknown,Lacerations to both feet,N,South Coast Register,12/29/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/N56702014.12.29.b-Brown.pdf +5750,2014.12.29.a,29-Dec-14,2014,Unprovoked,Australia,Western Australia,Three Stripes near Cheynes Beach,Spearfishing,Jay Muscat,M,FATAL,Y,The West Australian,12/29/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.29.a-Muscat.pdf +5749,2014.12.28.d,28-Dec-14,2014,Sea Disaster,Greece,Unknown,33 nautical miles off Othonoi Island,Unknown,Passenger ferry Norman Atlantic,Unknown,"Of 9 bodies recovered, one was bitten by a shark",N,Greek Reporter,1/13/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.d-NormanAtlantic.pdf +5748,2014.12.28.c,28-Dec-14,2014,Invalid,South africa,KwaZulu-Natal,Durban,Swimming,"5 people claimed to have been injured by a ""baby"" shark",Unknown,Minor cuts on feet,N,IOL News,12/29/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.c-Durban.pdf +5747,2014.12.28.b,28-Dec-14,2014,Unprovoked,Usa,California,"Montaña de Oro State Park, San Luis Obispo County ",Surfing,Kevin Swanson,M,Injury to hip/leg,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.b-Swanson.pdf +5746,2014.12.28.a,28-Dec-14,2014,Provoked,Australia,Victoria,Paradise Beach,Fishing,male,M,Laceration to calf when he fell on shark he had caught PROVOKED INCIDENT,N,ABC.net.au,12/28/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.a-ParadiseBeach.pdf +5745,2014.12.23.R,23-Dec-2014,2014,Unprovoked,Unknown,Unknown,Unknown,Diving / Filming,male,M,"No injury, shark snagged its teeth in diver's suit",N,Maxisciences.com,12/23/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.23.R-GoblinShark.pdf +5744,2014.12.15,15-Dec-14,2014,Unprovoked,Australia,Queensland,Rudder Reef,Spearfishing,Daniel Smith,M,FATAL,Y,Herald Sun,12/15/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.15-DanielSmith.pdf +5743,2014.12.03.R,03-Dec-2014,2014,Provoked,Spain,Granada,Off Motril,Fishing for blue sharks,male,M,Glancing bite to wrist from netted shark PROVOKED INCIDENT,N,ABCandalucia,12/3/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.03.R-Spanish-fisherman.pdf +5742,2014.11.29,29-Nov-14,2014,Unprovoked,Australia,Western Australia,"Pyramids Beach, Port Bouvard",Surfing,Cameron Pearman,M,Minor injuries to right leg,N,The Sydney Morning Herald,11/29/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.29-Pearman.pdf +5741,2014.11.20,20-Nov-14,2014,Provoked,Mauritius,Cargados Carajos Shoals (St. Brandon),Unknown,Fishing,Rameshwar Ram Dhauro,M,"FATAL, arm bitten by shark hauled on deck PROVOKED INCIDENT",Y,A. R. Ramjatan ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.20-Mauritius.pdf +5740,2014.11.19,19-Nov-14,2014,Boat,Australia,Western Australia,Freo,Fishing,Boat: occupants: David Lock & his father,M,"Shark chasing fish bumped boat, no injury to occupants",N,The West Australian,11/20/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.19-Freo.pdf +5739,2014.11.16,16-Nov-14,2014,Unprovoked,Usa,Florida,"Indian Harbor Beach, Brevard County",Surfing,male,M,Laceration to left hand,N,USA Today,11/16/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.16-IndianHarbor.pdf +5738,2014.11.13,13-Nov-14,2014,Unprovoked,Usa,Hawaii,"Airplane Beach, Lahina, West Maui",Snorkeling,Andrew Haas,M,Laceration to left upper leg,N,G. Kubota,Star Advertiser,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.13-Hawaii.pdf +5737,2014.11.10,10-Nov-14,2014,Unprovoked,Australia,New South Wales,Moonee Beach,Surfing,male,M,Minor injury to lower leg and foot,N,Norhern Rivers Echo,11/10/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.10-Moonee.pdf +5736,2014.11.08,08-Nov-14,2014,Unprovoked,Usa,Florida,"Fort Pierce Inlet State Park, St. Lucie County",Surfing,Ryan Shapiro,M,Minor injuries to hand & arm ,N,WPTV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.08-FortPierce.pdf +5735,2014.10.31,31-Oct-14,2014,Unprovoked,Usa,Hawaii,"North Kohala, Hawaii County",Surfing,McKenzie Clark,F,Lacerations to fingers,N,L. Kubota,Hawaii News Now,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.31-Clark.pdf +5734,2014.10.30,29-Oct-14,2014,Provoked,Australia,New South Wales,Wallabi Point,Surfing,Ryan Hunt,M,Laceration to dorsum of left foot when he stepped on the shark PROVOKED INCIDENT,N,The Sydney Morning Herald,10/30/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.29-Hunt.pdf +5733,2014.10.22,22-Oct-14,2014,Unprovoked,Usa,Hawaii,"Kihei, Maui",Stand-Up Paddleboarding,Kim Lawrence,F,"No injury, paddleboard bitten",N,Hawaii News Now,10/22/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.22-Lawrence.pdf +5732,2014.10.20,20-Oct-14,2014,Unprovoked,Usa,Hawaii,"Kahului, Maui",Stand-Up Paddleboarding,male,M,"No injury, paddleboard bitten",N,The Maui News,10/21/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.20-Maui.pdf +5731,2014.10.19,19-Oct-14,2014,Boat,Usa,California,"Leadbetter Beach, Santa Barbara County",Canoeing,Tara Burnley,F,"No injury to occupant, canoe bitten",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.19-Tara.pdf +5730,2014.10.18,18-Oct-14,2014,Unprovoked,Usa,Hawaii,"Maalaea, South Maui",Surfing,Kaleo Roberson ,M,"No injury, surfboard bitten",N,Star Advertiser,10/18/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.18-Roberson +5729,2014.10.17,17-Oct-14,2014,Unprovoked,Australia,New South Wales,Avoca Beach,Surfing,Kirra-Belle Olsson,F,"Lacerations to left calf & ankle, puncture wounds to left foot",N,Sydney Morning Herald,10/17/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf +5728,2014.10.14,14-Oct-14,2014,Unprovoked,Usa,South Carolina,"Hilton Head Island, Beaufort County",Standing in inner tube,Kyra Bandy,F,Lacerations to left foot,N,TheIndyChannel,"10/16,2014",http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf +5727,2014.10.12,12-Oct-14,2014,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Body surfing or Boogie boarding,female,F,Laceration to right hand/wrist,N,Florida Today,10/13/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.12-Melbourne.pdf +5726,2014.10.07,07-Oct-14,2014,Unprovoked,Usa,Florida,"Cherie Down Park, Brevard County",Fishing,female,F,Thigh bitten,N,Click Orlando,10/7/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.07-CherieDownPark.pdf +5725,2014.10.11,11-Oct-14,2014,Boat,Australia,Western Australia,"Castle Rock, north of Dunsborough",Kayaking,"Inflatable kayak Occupants: Andrej Kultan & Steve Hopkins. + +",M,"Kayak deflated, no injury to occupants",N,Perth Now,10/11/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.11-Dunsborough.pdf +5723,2014.10.05.b,05-Oct-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Kevin Ross,M,Foot bitten,N,WESH2,10/6/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.b-Ross.pdf +5722,2014.10.05.a,05-Oct-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Hilton Mantooth,M,Foot bitten,N,WESH2,10/6/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.a-Mantooth.pdf +5721,2014.10.03.b,03-Oct-14,2014,Boat,Usa,California,Santa Barbara County,Kayaking,Ryan Howell,M,"No injury to occupant, shark/s holded kayak",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf +5720,2014.10.03.a,03-Oct-14,2014,Boat,Usa,California,Santa Barbara County,Kayaking ,Raul Armenta ,M,"No injury to occupant, shark/s holded kayak",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf +5719,2014.10.02.b,02-Oct-14,2014,Unprovoked,Usa,California,"Walls Beach, Vandenberg AFB, Santa Barbara County",Surfing,M.M.,M,Lacerations to knee,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf +5718,2014.10.02.a,02-Oct-14,2014,Unprovoked,Australia,Western Australia,"Kelpids Beach, Wylie Bay, Esperance",Surfing,Sean Pollard,M,"Left arm & right hand severed, lacerations to both legs",N,9News,2/15/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.a-Pollard.pdf +5717,2014.09.21,21-Sep-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jordan Lefebvre,M,Minor injury to left foot,N,NBC2 News,9/21/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.21-Lefebvre.pdf +5716,2014.09.13.R,12-Sep-2014,2014,Unprovoked,French polynesia,Moorea,Tiahura Lagoon,Feeding fish,female,F,Thumb & finger nipped,N,LeDepeche,9/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.12.R-Moorea.pdf +5715,2014.09.13,13-Sep-14,2014,Invalid,Usa,California,"Manresa State Beach, Santa Cruz County",Surfing,Beau Browning,M,"A hoax, no shark involvement",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.13-Browning.pdf +5714,2014.09.09,09-Sep-14,2014,Unprovoked,Australia,New South Wales,"Clarkes Beach, Byron Bay",Swimming,Paul Wilcox,M,FATAL,Y,BBC,9/9/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.09-Wilcox.pdf +5713,2014.09.06,06-Sep-14,2014,Unprovoked,Usa,Alabama,"Katrina Cut, Dauphin Island, Mobile County",Fishing ,Jamie Robson,M,Leg bitten,N,Fox10TV.com,9/7/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.06-Robson.pdf +5712,2014.09.03,03-Sep-14,2014,Unprovoked,Usa,Massachusetts,"Manomet Point, Plymouth, Plymouth County",Kayaking ,Ida Parker & Kristen Orr,F,"No injury, shark bit kayak",N,Boston Globe,9/4/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.03-Plymouthkayakers.pdf +5711,2014.09.02,02-Sep-14,2014,Provoked,Usa,Florida,"Fletcher Beach, Hutchinson Island, Martin County",Fishing,male,M,Bitten twice on the leg by a shark he was attempting to free from his line PROVOKED INCIDENT,N,WPBF.com,9/2/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.02-FletcherBeach.pdf +5710,2014.09.00,Sep-14,2014,Unprovoked,Spain,Catalonia,Salou,Playing with an air mattress,male,M,Lacerations to right hand,N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.00-Salou.pdf +5709,2014.08.31,31-Aug-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Body surfing,Alexandra Masterson,F,Injury to left calf,N,Sun Sentinel,8/31/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.31-Masterson.pdf +5708,2014.08.29.b,29-Aug-14,2014,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,Brendan Murphy,M,Lacerations to shin,N,Click Orlando,9/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.b-Murphy.pdf +5707,2014.08.29.a,29-Aug-14,2014,Invalid,Usa,Florida,"Atlantic Beach, Duval County",Unknown,child,Unknown,Shark involvement not confirmed,N,Orlando Sentinel,8/31/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.a-AtlanticBeach.pdf +5706,2014.08.28,28-Aug-14,2014,Provoked,Usa,Maryland,Assateague National Seashore,Fishing,Mathew Vickers,M,Lacerations to foot by hooked shark PROVOKED INCIDENT,N,Delmarva Now,8/29/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.28-Vickers.pdf +5705,2014.08.27.c,27-Aug-14,2014,Unprovoked,Spain,Alicante,Benidorm,Swimming,Raquel Martin,F,Minor lacerations to posterior lower leg,N,Diario Informacion,8/29/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.c-Spain.pdf +5704,2014.08.27.b,27-Aug-14,2014,Unprovoked,Usa,North Carolina,"Figure Eight Island, New Hanover County",Surfing,Hunter Anderson,M,Laceration to left hand,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.b-Anderson.pdf +5703,2014.08.27.a,27-Aug-14,2014,Unprovoked,Usa,South Carolina,"Surfside Beach, Horry County",Standing,female,F,Heel bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.a-Surfside.pdf +5702,2014.08.25,25-Aug-2014,2014,Provoked,Usa,Florida,Apalachicola Bay ,Fishing for sharks,John Wiley,M,Lacerations to forearm from hooked shark PROVOKED INCIDENT,N,Nooga.com,8/25/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.25.R-Wiley.pdf +5701,2014.08.24,24-Aug-14,2014,Unprovoked,Usa,North Carolina,"Off Masonboro Island, New Hanover County",Kite boarding,Miller Diggs,Unknown,Laceration to left foot,N,C. Creswell,GSAF; WWAY,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.24-Diggs.pdf +5700,2014.08.16,16-Aug-14,2014,Unprovoked,Australia,Western Australia,Gnaraloo,Spearfishing,Adam Haling ,M,Lacerations to face and neck,N,Herald Sun,8/21/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.16-Haling.pdf +5699,2014.08.12,12-Aug-14,2014,Unprovoked,Usa,Florida,"3 to 4 miles west of Indian Pass, Gulf County",Standing,Kyle Hayes,M,Puncture wounds and lacerations to left thigh and knee,N,K. Hayes / Brewton Standard,8/19/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.12-Hayes.pdf +5698,2014.08.10,10-Aug-14,2014,Unprovoked,Usa,Florida,"Hallandale Beach, Broward County",Unknown,male,M,Puncture wounds & lacerations to foot,N,CBS Miami,8/11/1014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.10-Hallandale.pdf +5697,2014.08.09.R,09-Aug-14,2014,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Andrew Hindley,M,Puncture wounds to right foot and ankle,N,A. Hindley / M. Michaelson,,"http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09.R-Hindley, pdf" +5696,2014.08.09,09-Aug-14,2014,Unprovoked,Usa,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Swimming,Krama Fordham,F,Puncture wounds to right foot & ankle,N,Florida Today,8/9/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09-CocoaBeach.pdf +5695,2014.08.08,08-Aug-14,2014,Unprovoked,Usa,Louisiana,"Lake Ponchartain off Southshore Harbor, New Orleans",Swimming,Trent Trentacosta,M,Minor lacerations to left heel and big toe,N,The Times-Picayune,8/9/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-Trentacosta.pdf +5694,2014.08.06,06-Aug-14,2014,Unprovoked,Usa,South Carolina,"Folly Beach, Charleston County",Boogie boarding,Riley Harris,M,Lacerations to right leg & foot,N,C. Creswell,GSAF; WCSC. 8/6/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.14-Harris.pdf +5693,2014.08.05,05-Aug-14,2014,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Swimming,female,F,Lacerations to foot,N,Inquisitr,8/7/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.05-Tulip.pdf +5692,2014.08.02,02-Aug-14,2014,Unprovoked,Usa,Florida,"South of Cocoa Beach, Brevard County",Surfing,male,M,Foot bitten,N,Florida Today,8/8/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-CocoaBeach.pdf +5691,2014.08.02,02-Aug-14,2014,Unprovoked,Usa,Florida,"Table Beach, Brevard County",Boogie boarding,Christian Sanhueza,M,Laceration to ankle,N,Florida Today,8/2/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.02-Sanhueza.pdf +5690,2014.08.01,01-Aug-14,2014,Unprovoked,South africa,Western Cape Province,Muizenberg,Surfing,Matthew Smithers,M,Lower limbs & thigh bitten,N,NSRI,8/1/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.01-Smithers.pdf +5689,2014.08.00,Aug-14,2014,Invalid,Unknown,Unknown,Unknown,Sea disaster,Cuban refugees,M,Shark involvement prior to death not confirmed,Y,Associated Press,11/27/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.00-Cuban-refugees.pdf +5688,2014.07.27,27-Jul-14,2014,Unprovoked,Usa,North Carolina,"Sunset Beach, Brunswick County",Swimming,male,M,Left foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.27-SunsetBeach.pdf +5687,2014.07.22,22-Jul-14,2014,Unprovoked,Reunion,Saint-Leu,Unknown,Surfing,Vincent Rintz,M,Lacerations to right wrist & calf,N,BFM-tv,7/22/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.22-Rintz.pdf +5686,2014.07.21,21-Jul-14,2014,Unprovoked,Usa,Florida,"Indialantic, Brevard County",Standing,Aayden Crick,M,Lacerations to right knee,N,ClickOrlando,7/22/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.21-Crick.pdf +5685,2014.07.20,20-Jul-14,2014,Unprovoked,Spain,Canary Islands,"Teresita, Santa Cruz, Tenerife",Wading,child,Unknown,Minor injury,N,DiariodeAvisos,7/25/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.20-Tenerife.pdf +5684,2014.07.16,16-Jul-14,2014,Unprovoked,Usa,Hawaii,"Paia Bay, Maui",Swimming,male,M,Lacerations to left foot,N,Maui Now,7/16/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.16-Maui.pdf +5683,2014.07.14,14-Jul-14,2014,Unprovoked,Usa,Florida,Okaloosa Island,Swimming,Terrell Moore,M,Puncture wounds to foot,N,W. Victora,Daily News,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.14-Moore.pdf +5682,2014.07.13,13-Jul-14,2014,Invalid,Bahamas,West End,Tiger Beach,Shark diving,John Petty,M,"Missing after a dive, shark involvement considered probable, but not confirmed",Y,Outside,7/14/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.13-Petty.pdf +5681,2014.07.12,12-Jul-14,2014,Unprovoked,Usa,North Carolina,"Masonboro Island, New Hanover County",Body surfing,Carson Jewell,M,Lacerations to hand and wrist,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.12-Jewell.pdf +5680,2014.07.09,09-Jul-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Tristan Durham,M,Lacerations to foot,N,WESH.com,7/9/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.09-Durham.pdf +5679,2014.07.05.b,05-Jul-14,2014,Provoked,Usa,California,"Manhattan Beach, Los Angeles County",Swimming,Steve Robles,M,PROVOKED INCIDENT Torso bitten by shark hooked by an angler,N,R. Collier,GSAF / M Michaelson,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.b-Robles.pdf +5678,2014.07.05.a,05-Jul-14,2014,Unprovoked,Usa,California,"Oceano Dunes State Beach, San Luis Obispo County",Surfing,R.J.,M,"No injury, surboard bitten",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.a-Surfer.pdf +5677,2014.07.03,03-Jul-14,2014,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Body surfing,Christian Fairbourne,M,Right hand bitten,N,C. Creswell,GSAF Live5News,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.03-Fairbourne.pdf +5676,2014.06.27.R,27-Jun-2014,2014,Boat,St. martin,Unknown,20 miles from shore,Transatlantic Rowing,Victor Mooney,M,His boat was holed by a shark,N,Star Advertiser,6/272014; Goree Challenge.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.27-Mooney.pdf +5675,2014.06.25,25-Jun-14,2014,Unprovoked,Bahamas,Abaco Islands,Unknown,Spearfishing,Mark Adams,M,No injury but shark took his pole spear,N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.25-Adams.pdf +5674,2014.06.18.b,18-Jun-14,2014,Unprovoked,Australia,South Australia,"Middleton Point, Fleurieu Peninsula",Surfing,Max Longhurst ,M,"No injury, surfboard 'attacked'",N,The Times,6/19/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.b-Longhurst.pdf +5673,2014.06.18.a,18-Jun-14,2014,Unprovoked,Australia,South Australia,"Middleton Point, Fleurieu Peninsula",Body boarding,Jesse McKinnon,M,Lacerations to knee,N,The Advertiser,6/19/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.a-McKinnon.pdf +5672,2014.06.17.R,17-Jun-2014,2014,Provoked,Australia,Western Australia,Horizontal Falls,Petting a shark,Ric Wright,M,Lacerations to right hand by captive shark PROVOKED INCIDENT,N,Meribula News,6/17/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.17.R-Wright.pdf +5671,2014.06.09.c,09-Jun-14,2014,Unprovoked,Brazil,Unknown,500 km off the coast of Pernambuco,Fishing,Sunarko,M,Severe injury to arm,N,msn,6/11/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.c-Sunarko.pdf +5670,2014.06.09.b,09-Jun-14,2014,Unprovoked,Usa,Delaware,"Cape Henlopen State Park, Sussex County",Standing,Andrew Vance,M,"Abrasion to right hand, lacerations to left forearm",N,News Journal (Wilmington,Del),http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.b-Vance.pdf +5669,2014.06.09.a,09-Jun-14,2014,Unprovoked,Australia,South Australia,"Parsons Beach, Fleurieu Peninsula",Body boarding,Scott Berry,M,Minor injury to torso,N,The Australian,6/9/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09-Berry.pdf +5668,2014.06.08,08-Jun-14,2014,Unprovoked,Japan,Atsumi peninsula,Aichi,Surfing,Tsuyoshi Takahashi,M,Left arm bitten,N,Sky News,6/10/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.08-Takahashi.pdf +5667,2014.06.07,07-Jun-14,2014,Unprovoked,Usa,Texas,"West Beach, Galveston",Kneeling in the water,Mikaela Amezaga Medina,F,Shallow lacerations & puncture wounds below shoulder,N,Inquisitr.com,6/9/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.07-Medina.pdf +5666,2014.06.01.c,01-Jun-14,2014,Unprovoked,Usa,Florida,Fort Lauderdale,Swimming,Jessica Vaughn,F,Laceration to right lower leg,N,Local10.com,6/1/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.c-Vaughn.pdf +5665,2014.06.01.b,01-Jun-14,2014,Unprovoked,Australia,New South Wales,"Seven Mile Beach, Gerroa",Surfing,Bob Smith,M,Lacerations & puncture wounds to ankle and foot,N,Newcastle Herald,6/3/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.b-Smith.pdf +5664,2014.06.01.a,01-Jun-14,2014,Unprovoked,Usa,Palmyra Atoll,Unknown,Tagging sharks,female,F,Laceration to left hand,N,U.S. Coast Guard,,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.a-PalmyraAtoll.pdf +5663,2014.05.27.R,24-May-14,2014,Unprovoked,Australia,Queensland,Nerang River near Chevron Island,Fell into the water,Bianca Freeman,F,Lacerations to legs,N,Gold Coast Bulletin,4/27/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.27.R-Freeman.pdf +5662,2014.05.23,23-May-14,2014,Unprovoked,France,Wallis and Futuna,Wallis Island,Scuba diving,Eric Barnabas,M,Lacerations to left thigh and hip,N,Facebook.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.23-Barnabas.pdf +5661,2015.11.20,20-Nov-15,2015,Unprovoked,Ecuador,Galapagos Islands,"Punta Vicente Roca, Isabella Island",Snorkeling,Graham Hurley,M,Lacerations to left calf,N,G. Hurley,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.20-Hurley.pdf +5660,2014.05.15,15-May-14,2014,Unprovoked,Usa,Florida,"Juan Ponce de León Landing, Melbourne Beach, Brevard County",Body boarding,Amy Tatsch,F,Calf bitten,N,M. Michaelson,Shark Research Institute,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.15-Tatsch.pdf +5659,2014.05.14,14-May-14,2014,Unprovoked,Australia,South Australia,"Elliston, Eyre Peninsula",Surfing,Andrew McLeod,M,"No injury, but surfboard severely damaged",N,N. Davies,The Advertiser,"http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.14-McLeod, pdf" +5658,2014.05.13,13-May-14,2014,Unprovoked,Usa,Florida,"Jacksonville Beach, Duval County",Wading,Mihaela Cosa,F,Lacerations and puncture wounds to right foot,N,M. Michaelson,Shark Research Institute,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.13-Cosa.pdf +5657,2014.05.11,11-May-14,2014,Unprovoked,Usa,Georgia,"Tybee Island, Chatham County",Surfing,Ayden Meadows,M,Puncture wounds to right thigh,N,Savannah Morning News,5/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.11-Meadows.pdf +5656,2014.05.10.R,10-May-2014,2014,Invalid,Usa,Florida,"Bethel Shoals, Indian River County",Diving,Jimmy Roseman,M,"No injury. No attack. 12' white shark appeared curious, not aggressive & departed when prodded by spear",N,Metro,5/10/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.10.R-Roseman.pdf +5655,2014.05.06,06-May-14,2014,Unprovoked,Usa,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Swimming,Kimberly Popp,F,Lacerations to left foot,N,The Island Packet,5/7/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.06-Popp.pdf +5654,2014.05.01,01-May-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Shane Nolet,M,Laceration to right hand and cuts on fingertips,N,Wesh.com,5/2/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.01-Nolet.pdf +5653,2014.04.24,24-Apr-14,2014,Unprovoked,Australia,Western Australia,"South Passage, south of Coral Bay",Spearfishing,male,M,Minor injury,N,9 News,4/24/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.24-WA.pdf +5652,2014.04.22,22-Apr-14,2014,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Swimming,male,M,Laceration & puncture wounds to right foot,N,R. Neale,Florida Today,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.22-CocoaBeach.pdf +5651,2014.04.15,15-Apr-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Justin Davidson,M,Minor lacerations to left foot,N,Daytona Beach News-Journal,4/15/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.15-NSB.pdf +5650,2014.04.12.R,12-Apr-2014,2014,Boat,Unknown,Unknown,Unknown,Shark watching,Inflatable boat,Unknown,"No injury to occupants, shark bit pontoon",N,You Tube,posted 4/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/.2014.04.12.R-inflatable +5649,2014.04.12,12-Apr-14,2014,Provoked,South africa,Eastern Cape Province,Port Alfred,Fishing,Lionel McDougall,M,Lacerations to leg & hand by hooked shark PROVOKED INCIDENT,N,The Citizen,4/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.12-McDougall.pdf +5648,2014.04.04.b,04-Apr-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Minor puncture wounds to lower left leg,N,News 13,4/4/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.b-NSB.pdf +5647,2014.04.04.a,04-Apr-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Lacerations to foot,N,News 13,4/4/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.a-NSB.pdf +5646,2014.04.03,03-Apr-14,2014,Unprovoked,Australia,New South Wales,Tathra,Swimming,Christine Armstrong,F,FATAL,Y,B. Myatt,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.03-Armstrong.pdf +5645,2014.03.29,29-Mar-14,2014,Invalid,Australia,Western Australia,Off Dawesville Cut,Diving for lobsters,Michael McGregor,M,Shark bites may have been post mortem,Y,The West Australian,4/2/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.29-WesternAustralia.pdf +5644,2014.03.22.b,22-Mar-14,2014,Unprovoked,South africa,Eastern Cape Province,"Second Beach, Port St Johns",Swimming,Friedrich Burgstaller.,M,FATAL,Y,Austrian Independent,3/24/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.b-SecondBeach.pdf +5643,2014.03.22.a,22-Mar-14,2014,Unprovoked,Usa,Florida,Delray Beach,Kite Surfing,Kurt Hoffman,M,Lacerations to left forearm,N,TC Palm,3/23/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.a-Hoffman.pdf +5642,2014.03.21,21-Mar-14,2014,Unprovoked,Usa,Florida,Macarthur State Park,Surfing,Sebastian Cozzen,M,Lacerations to toes and heel of right foot,N,E. Guy,WPBF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.21-Cozzen.pdf +5641,2014.03.18.c,18-Mar-14,2014,Unprovoked,New caledonia,Baie de Sainte-Marie,Unknown,Kite Surfing,Laurent Borgna ,M,Lacerations to calf,N,A. Brenneka,Shark Attack Surviors,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.c-Borgna +5640,2014.03.18.b,18-Mar-14,2014,Unprovoked,Australia,Victoria,Winkipop Beach,Surfing,Mark Byrne,M,Shark leapt onto surfboard; surfer uninjured ,N,New7 Melbourne,3/19/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.b-Byrne.pdf +5639,2014.03.13,13-Mar-14,2014,Invalid,Unknown,Unknown,Unknown,Scuba diving / culling lionfish,Jason Dimitri,M,"Caribbean reef shark buzzed him. No injury, no attack. ",N,You Tube,posted 4/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.13-Dimitri.pdf +5638,2014.03.18,18-Mar-14,2014,Invalid,Australia,New South Wales,Lennox Head,Unknown,Myxie Ryan,F,"Injuries to wrist/hand by a mackerel, not a shark",N,Brisbane Times,3/18/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18-NSW.pdf +5637,2014.03.12,12-Mar-14,2014,Unprovoked,Australia,New South Wales,Lighthouse Beach,Swimming,Mike Porter,M,Minor lacerations to foot,N,N. Keene,The Daily Telegraph,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.12-LightouseBeach.pdf +5636,2014.03.02,02-Mar-14,2014,Unprovoked,Usa,Florida,"Santa Lucea Beach, South Hutchinson Island, St. Lucie County",Surfing,Dylan Fugitt,M,Lacerations to toes,N,L.Gordon,CBS 12,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.02-Fugitt.pdf +5635,2014.02.20,20-Feb-14,2014,Unprovoked,French polynesia,Society Islands,Huahine,Kitesurfing,male,M,Lacerations to lower leg,N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.20-FrenchPolynesia.pdf +5634,2014.02.17,17-Feb-2014,2014,Boat,Unknown,Unknown,Unknown,Sailing,OneDLL,M,"No injury to occupants, hull bitten",N,Sail-World.com,2/17/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.17.R-OneDLL +5633,2014.02.08,08-Feb-14,2014,Unprovoked,Australia,South Australia,"Goldsmith Beach, Yorke Peninsula",Spearfishing / Free diving,Sam Kellett ,M,FATAL,Y,The Advertiser,2/9/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.08-Kellett.pdf +5632,2014.02.07.b,07-Feb-14,2014,Provoked,Trinidad & tobago,Trinidad,Unknown,Fishing,Simon Torres,M,Possibly a PROVOKED INCIDENT,N,Trinidad Guardian,2/11/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf +5631,2014.02.07,07-Feb-14,2014,Unprovoked,New zealand,South Island,Porpoise Bay,Surfing,Darren Mills,M,Lacerations to leg,N,New Zealand Herald,2/7/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf +5630,2014.01.26,26-Jan-14,2014,Provoked,Australia,New South Wales,Umina Beach,Fishing,Richard O'Connor,M,Lacerations to ring and pinky fingers of his left hand by hooked shark PROVOKED INCIDENT,N,Daily Telegraph,1/29/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf +5629,2014.01.25,25-Jan-14,2014,Unprovoked,New zealand,South Island,Garden Bay near Cosy Nook,Spearfishing,James Grant,M,Minor injury to left lower leg & heel,N,"Stuff.co.nz,1/27/2014",,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf +5628,2014.01.04,04-Jan-14,2014,Sea Disaster,Japan,Okinawa Prefecture,Off Miyako Island,Sea disaster,Rianto,M,5 cm bite to left foot,N,Focus Taiwan,1/7/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.01.04-Rianto.pdf +5627,2014.00.00,2014,2014,Boat,New zealand,Unknown,Stewart Island,Filming a documentary,Dinghy. Occupants: Jeff Kurr and Andy Casagrande,Unknown,"No injury to occupants, shark nudged and bit boat",N,Discovery Channel,,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.00.00-Jeff-Andy.pdf +5626,2013.12.25,25-Dec-13,2013,Unprovoked,New caledonia,North Province,"Lindéralique, Hienghène",Snorkeling,Loïc Merlet,M,Leg bitten,N,Les Novelles Caledonie,12/26/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.25-NewCaledonia.pdf +5625,2013.12.16,16-Dec-13,2013,Unprovoked,South africa,Western Cape Province,Die Platt,Surfing,Thomas Browne,M,Injuries to left thigh,N,Cape Argus,12/16/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.16-Browne.pdf +5624,2013.12.13,13-Dec-13,2013,Unprovoked,Kiribati,740 miles SE of Tarawa Atoll,Unknown,Attempting to remove fishing net from submerged object,male,M,Severe injury to arm,N,Coast Guard News,12/16/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.13-Kiribati.pdf +5623,2013.12.11,11-Dec-13,2013,Unprovoked,Usa,Hawaii,"Ninole Bay, Hawaii County",Boogie boarding,male,M,Lacerations to right hand & knee,N,Big Island Now,12/11/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.11-Hawaii.pdf +5622,2013.12.10,10-Dec-13,2013,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing,Bobby Baughman,M,Right foot bitten,N,Florida Today,12/10/2103,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.10-Baughman.pdf +5621,2013.12.05,05-Dec-13,2013,Unprovoked,Australia,New South Wales,"Shelly Beach, near Port Macquarie",Surfing,male,M,"Puncture wounds to hand, laceration to leg",N,The Sydney Morning Herald,12/5/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.05-PortMacquarie.pdf +5620,2013.12.02,02-Dec-13,2013,Unprovoked,Usa,Hawaii,"Between Makena & Molokini, Maui",Kayaking / Fishing,Patrick Briney,M,FATAL,Y,C. Sugidono,The Maui News,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.02-Briney.pdf +5619,2013.11.30,30-Nov-13,2013,Unprovoked,Australia,New South Wales,"Riecks Point, Campbell’s Beach, ",Body boarding,Zac Young,M,FATAL,Y,The Sydney Morning Herald,11/30/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.30-ZacYoung.pdf +5618,2013.11.29,29-Nov-13,2013,Unprovoked,Usa,Hawaii,"Keawekapu Beach, Kihei, Maui",Snorkeling,female,F,Right calf bitten,N,L. Fujimoto,Maui News,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.29-Maui.pdf +5617,2013.11.23.a,23-Nov-13,2013,Unprovoked,Australia,Western Australia,Gracetown,Surfing,Chris Boyd,M,FATAL,Y,J. Baily; Perth Now,11/23/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.23.a-Boyd.pdf +5616,2013.11.22,22-Nov-13,2013,Unprovoked,Usa,Oregon,"Gleneden Beach, Lincoln County",Surfing,Andrew Gardiner,M,"No injury, board bitten",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.22-Gardiner +5615,2013.11.12,12-Nov-13,2013,Unprovoked,Australia,Western Australia,"Trigg Beach, Perth",Surfing,Shaun Daly,M,"No injury, board bumped by shark",N,West Australian,11/13/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.12-Daly +5614,2013.11.10,10-Nov-13,2013,Provoked,Bahamas,Unknown,Off Cape Eleuthera,Shark fishing,male,M,Injuries to arm & leg by hooked shark PROVOKED INCIDENT,N,Jamaica Observer,11/11/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.10-Bahamas +5613,2013.11.07.b,07-Nov-13,2013,Unprovoked,Usa,New Jersey,"Bay Head, Ocean County",Body boarding,Quinn Gates,M,"No injury, swim fin bitten",N,S. Nagiewicz,SRI; Star Ledger,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.b-Gates +5612,2013.11.07.a,07-Nov-13,2013,Unprovoked,Usa,Florida,"Floridana Beach, Brevard County",Surfing,Sandor Melian,M,Foot bitten,N,Space Coast Daily,11/11/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.a-Melian +5611,2013.10.31,31-Oct-13,2013,Unprovoked,Usa,Hawaii,"Kanaha Beach, Maui",Kiteboarding,Christian Brandon,M,Severe bite to right calf & anklel,N,Maui TV,10/31/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.31-ChristianBrandon +5610,2013.10.28,28-Oct-13,2013,Unprovoked,Australia,Western Australia,Turquoise Bay,Snorkeling,Glenda Simmons,F,Lacerations to right arm,N,AAP,10/28/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.28-Simmons +5609,2013.10.26.b,26-Oct-13,2013,Unprovoked,Reunion,d’Étang-Salé,Ravine Mula,Body boarding,Gicquel Tanguy,M,Right leg severed,N,Global Post,10/26/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.b-Tanguy +5608,2013.10.26.a,26-Oct-13,2013,Unprovoked,Australia,Western Australia,"Little Island, near Hillarys",Diving for crayfish,Todd Robinson,M,"No injury, swim fin shredded",N,Sky News,10/26/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.a-Robinson.pdf +5607,2013.10.24,24-Oct-13,2013,Unprovoked,Australia,New South Wales,South Narrabeen Beach,Surfing,Anthony Joyce,M,Injuries to right foot,N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.24-Joyce.pdf +5606,2013.10.23,23-Oct-13,2013,Unprovoked,Usa,Hawaii,"Waiehu, Maui",Diving ,Shane Mills,M,"3"" laceration to left hip",N,Maui News,10/23/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.23-ShaneMills.pdf +5605,2013.10.20,20-Oct-13,2013,Unprovoked,Usa,Hawaii,"Pila'a Beach, Kaua'i",Surfing,Jeff Horton,M,"No injury, shark bit surfboard",N,B. Buley,The Garden Island,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.20-Horton.pdf +5604,2013.10.19,19-Oct-13,2013,Unprovoked,Usa,Florida,Miami Beach,Wading,Logan Hamby,M,Bitten on left calf & foot,N,K & D Hamby ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.19-Hamby.pdf +5603,2013.10.11,11-Oct-13,2013,Unprovoked,South africa,Eastern Cape Province,"Albatros Point, near Jeffrey's Bay",Swimming / snorkeling,Burgert Van Der Westhuizen,M,FATAL,Y,JBayNews.com,10/11/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.11-Vd-Westhuizen.pdf +5602,2013.10.08,08-Oct-13,2013,Unprovoked,Australia,Western Australia,"Off Poison Creek, Cape Arid",Diving for Abalone,Greg Pickering,M,"Injuries to torso, head and face",N,Fox News,10/9/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.08-Pickering.pdf +5601,2013.10.05,06-Oct-13,2013,Unprovoked,Usa,California,"Bunkers, Humboldt Bay, Eureka, Humboldt County",Surfing,Jay Scrivner,M,Laceration to thigh,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.06-Scrivner.pdf +5600,2013.10.05,10-Oct-13,2013,Unprovoked,Usa,Florida,"Destin, Okaloosa County",Wading,Zachary Tyke Standridge ,M,Lacerations to right forearm,N,Monroe County Advocate,10/9/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.05-Standridge.pdf +5599,2013.09.29.b,29-Sep-13,2013,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,male,M,Lacerations to hand,N,Florida Today,9/30/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.b-BrevardSurfer.pdf +5598,2013.09.29.a,29-Sep-13,2013,Provoked,Israel,Southern District,Ashdod,Diving,Erez Lev,M,Hand bitten PROVOKED INCIDENT,N,Times of Israel,9/30/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.a-Lev.pdf +5597,2013.09.25, 25-Sep-2013,2013,Unprovoked,Usa,Florida,"Panama City, Bay County",Standing,Ethan Hand,M,Laceration and puncture wounds to ankle,N,C. Dobridnia,WMBB.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.25-EthanHand.pdf +5596,2013.09.21.b, 21-Sep-2013,2013,Unprovoked,Usa,Florida,"Ormond Beach, Volusia County",Swimming,female,M,Lacerations to right foot,N,M. I. Johnson,Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.b-OrmondBeach.pdf +5595,2013.09.21.a, 21-Sep-2013,2013,Unprovoked,Usa,Florida,"Carlin Park, Jupiter, Palm Beach County",Surfing,Brandon Dugan,M,Lacerations to left foream,N,News Channel 5,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.a-Dugan.pdf +5594,2013.09.14, 14-Sep-2013,2013,Unprovoked,Usa,Florida,"Casino Beach, Pensacola, Escambia County",Swimming,Trevor Kalck,M,Lacerations to right foot,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.14-Kalck.pdf +5593,2013.09.12, 12-Sep-2013,2013,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Storm Portman,F,Heel bitten,N,Orlando Sentinel,9/7/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.12-Portman.pdf +5592,2013.09.08,08-Sep-13,2013,Unprovoked,Usa,South Carolina,"St. Helena Island, Beaufort County",Unknown,female,F,No details,UNKNOWN,WIS-TV,9/9/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.08-St-Helena.pdf +5591,2013.09.07.b, 07-Sep-2013,2013,Provoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,John Graham,M,Foot bitten when he accidentally jumped onto the shark PROVOKED INCIDENT,N,Orlando Sentinel,9/7/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.b-Graham.pdf +5590,2013.09.07.a, 07-Sep-2013,2013,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Standing,Marco Edmundo Cardiel,M,"Minor injury, shin bitten",N,Orlando Sentinel,9/7/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.a-Cardiel.pdf +5589,2013.09.02, 02-Sep-2013,2013,Unprovoked,Usa,Florida,"Ormond Beach, Volusia County",Swimming,Raushod Floyd,M,Shoulder bitten,N,WFTV,9/2/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.02-Floyd.pdf +5588,2013.09.01.c, 01-Sep-2013,2013,Provoked,Usa,Florida,Key West Aquarium,Unknown,female,M,Arm bitten by captive shark PROVOKED INCIDENT,N,KeyNews,8/4/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01-KeyWestAquarium.pdf +5587,2013.09.01.b, 01-Sep-2013,2013,Unprovoked,Unknown,Unknown,Unknown,Unknown,boy,M,Leg injured,N,WFTV,9/2/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.b-Bahamas.pdf +5586,2013.09.01.a, 01-Sep-2013,2013,Unprovoked,Usa,Florida,"St Augustine Beach, St Johns County",Casting a net,Connor Baker,M,Lacerations to left calf,N,WTEV 47,9/1/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.a-Baker.pdf +5585,2013.08.31.b,31-Aug-13,2013,Unprovoked,Bahamas,Unknown,Freetown Beach,Spearfishing,Bryan Collins,M,Lower left leg bitten,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.b-Collins.pdf +5584,2013.08.31.a,31-Aug-13,2013,Unprovoked,Usa,California,"Butterfly Beach, Montecito, Santa Barbara County",Swimming,Nick Kennedy,M,Foot bitten,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.a-Kennedy.pdf +5583,2013.08.29,29-Aug-13,2013,Invalid,Usa,California,Catalina Channel,Marathon swimming,Charlotte Brynn,F,"Puncture wound to torso. Reported as a bite by a leopard shark, the tooth fragment appears to be that of a bony fish",N,Stowe Reporter,9/5/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.29-Brynn.pdf +5582,2013.08.26,26-Aug-13,2013,Provoked,France,Bay of Biscay,Unknown,Longline fishing for sharks,Ramon Arufe,M,Laceration to right arm from hooked shark PROVOKED INCIDENT,N,Diariovasco.com,8/28/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.26-Arufe.pdf +5581,2013.08.25.b, 25-Aug-2013,2013,Unprovoked,Usa,Florida,"Winterhaven Park, Ponce Inlet, Volusia County",Boogie boarding,Riley Breihan,F,Minor injury to left lower leg & heel,N,Daytona Beach News-Journal,8/28/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-OttoLee.pdf +5580,2013.08.25, 25-Aug-2013,2013,Unprovoked,Australia,New South Wales,Smiths,Wrangling a shark,Otto Lee,M,Lacerations to left forearm,N,Great Lakes Advocate,8/28/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-Breihan.pdf +5579,2013.08.18, 18-Aug-2013,2013,Unprovoked,Usa,Hawaii,Pohoiki ,Surfing,Jimmy Napeahi,M,Lacerations to buttocks & thigh,N,T. Mori,KHON2,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.18-Napeahi.pdf +5578,2013.08.17,17-Aug-13,2013,Unprovoked,Usa,California,"Pillar Point, Half-Moon Bay, San Mateo County",Surfing,Wendi Zuccaro,F,"No injury, shark bumped surfboard",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.17-Zaccaro.pdf +5577,2013.08.14, 14-Aug-2013,2013,Unprovoked,Usa,Hawaii,"Makenat, Maui",Snorkeling,Jana Lutteropp,F,FATAL,Y,KHON2,8/15/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.14-Lutteropp.pdf +5576,2013.08.13, 13-Aug-2013,2013,Unprovoked,Usa,Hawaii,"Ka'a Point, Maui",Kiteboarding,Morgan Flannery,F,No injury & not on board. Board adrift when bitten by shark,N,Maui News,8/14/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.13-Flannery.pdf +5575,2013.08.11,11-Aug-13,2013,Unprovoked,Usa,South Carolina,Folly Beach,Surfing,Tyson Royston,M,"No injury, shark became entangled in his surfboard leash",N,Post and Courier,8/11/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.11-Royston.pdf +5574,2013.08.08.R,08-Aug-2013,2013,Unprovoked,Unknown,Unknown,Unknown,Attempting to free the shark,Tyler,M,"Unknown, but survived",N,WebProNews/Science,8/8/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.08-Tyler.pdf +5573,2013.08.05, 05-Aug-2013,2013,Unprovoked,Usa,Florida,"Sanibel Island, Lee County",Fishing,Christian Mercurio,M,Minor injury to foot & shin,N,NBC2 News,8/5/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.05-Mercurio.pdf +5572,2013.07.31, 31-Jul-2013,2013,Unprovoked,Usa,Hawaii,"Ulua Beach, Maui",Snorkeling,Evonne Cashman,F,"Lacerations to hand, face and torso",N,Maui Now,7/31/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.31-Cashmani.pdf +5571,2013.07.30, 30-Jul-2013,2013,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Swimming,Ty Bretz,M,Foot bitten,N,A. Brenneka,Shark Attack Survivors; C. Creswell,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.30-Bretz.pdf +5570,2013.07.29.c,28-Jul-13,2013,Unprovoked,Bahamas,Abaco Islands,Scotland Cay,Spearfishing,Erik Norrie,M,Leg bitten,N,CBS Miami,8/1/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.c-Norrie.pdf +5569,2013.07.29.b, 29-Jul-2013,2013,Unprovoked,Mexico,Quintana Roo,Unknown,Wading,Bonnie Davis,F,Hip bitten,N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.b-Davis.pdf +5568,2013.07.29.a, 29-Jul-2013,2013,Unprovoked,Usa,Hawaii,"White Plains Beach, Oahu",Surfing,Kiowa Gatewood,M,Lower leg bitten,N,Hawaii News Now,7/29/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.a-Gatewood +5567,2013.07.28.b,28-Jul-13,2013,Unprovoked,Bahamas,Exuma Islands,Compass Cay,Cleaning fish,male,M,Bitten on left hand,N,Tribune 242,7/28/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.b-Bahamas.pdf +5566,2013.07.28.a,28-Jul-13,2013,Unprovoked,Bahamas,Abaco Islands,Grand Cay,Diving,male,M,Bitten on rear lower extremities,N,News Channel 5,7/28/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.a-Bahamas.pdf +5565,2013.07.22, 22-Jul-2013,2013,Unprovoked,Brazil,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Bruna Silva Gobbi ,F,FATAL,Y,G! Pernambuco,7/22/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.22-Gobbi.pdf +5564,2013.07.19,19-Jul-13,2013,Unprovoked,Usa,Alabama,"Gulf Shores, Baldwin County",Walking in surf,Laura Havrylkoff,F,Lacerations and abrasions to foot and ankle,N,A. Brenneka,Shark Attack Survivors; L. Havrylkoff,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.19-Havrylkoff.pdf +5563,2013.07.17.R,17-Jul-2013,2013,Unprovoked,Usa,Florida,"Butler Beach, St Augustine, St. Johns County",Swimming ,male,M,4 cuts to posterior calf,N,Florida Today,7/17/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.17-StAugustine.pdf +5562,2013.07.15,15-Jul-13,2013,Unprovoked,Reunion,Saint-Paul,Le cimetière marin,Swimming & snorkeling,Sarah Roperh,F,FATAL,Y,Clicanoo,7/15/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.15-Reunion.pdf +5561,2013.07.14,14-Jul-13,2013,Unprovoked,Unknown,Unknown,Unknown,Swimming,Fernando Licay,M,FATAL,Y,Sun Star,7/18/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.14-Licay.pdf +5560,2013.07.11,11-Jul-13,2013,Unprovoked,Usa,North Carolina,Holden Beach. Brunswick County,Wading,Barbara Corey,F,Right foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.11-Corey.pdf +5559,2013.07.09,07-Jul-13,2013,Invalid,Spain,Catalonia,"Sant Marti d’Empuries Beach, L’Escala",Swimming,Thierry Frennet,M,"Scrape to right forearm. Frennet says inflicted by a blue shark, but authorities question shark involvement",N,DH.be,7/11/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.09-Frennet.pdf +5558,2013.07.02,02-Jul-13,2013,Unprovoked,Australia,Victoria,"Flinders, Mornington Penisula",Body surfing,Jimmy McDonald-Jones,M,"No injury, holes in wetsuit ",N,Herald Sun,7/3/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.02-McDonald-Jones.pdf +5557,2013.06.30,30-Jun-13,2013,Unprovoked,Taiwan,Taitung ,Unknown,Fishing,male,M,Right thigh bitten,N,China Post,7/1/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.30-TaiwaneseFisherman.pdf +5556,2013.06.27,27-Jun-13,2013,Invalid,Jamaica,Kingston Parish,Port Royal,Unknown,Kevin,M,Probable drowning with post-mortem bites,Y,Shark Attack Survivors,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.27-Kevin-Jamaica.pdf +5555,2013.06.25.c,25-Jun-13,2013,Unprovoked,Usa,California,"Pacific State , San Mateo County",Kayaking / Fishing,Micah Flanaburg,M,"No injury, kayak scratched",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.c-Flanaberg.pdf +5554,2013.06.25.b,25-Jun-13,2013,Unprovoked,Usa,Florida,"Jacksonville, Duval County",Swimming,Colleen Malone,M,Lacerations to left foot,N,Action News,7/25/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.b-Malone.pdf +5553,2013.06.25.a,25-Jun-13,2013,Unprovoked,Usa,South Carolina,"Kiawah Island, Charleston County",Swimming,Joshua Watson,M,"Bitten on lower right leg, reported as a minor injury",N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.a-Watson.pdf +5552,2013.06.18,18-Jun-13,2013,Unprovoked,Usa,Hawaii,Kona Coast State Park,Swimming,James Kerrigan,M,Right thigh & calf bitten,N,Hawaii News Now,6/18/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.18-Kerrigan.pdf +5551,2013.06.17,17-Jun-13,2013,Unprovoked,Usa,Texas,"Surfside Beach, Brazoria County",Swimming,Garrett Sebesta ,M,Left leg & hand bitten,N,ABC News,6/18/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.17-Sebesta.pdf +5550,2013.06.16,16-Jun-13,2013,Unprovoked,South africa,Eastern Cape Province,Queensberry Bay,Surfing,Kevin Bracey,M,Lacerations to knee,N,Dispatch Online,6/19/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.16-Bracey.pdf +5549,2013.06.15,15-Jun-13,2013,Unprovoked,Usa,Florida,"Atlantic Beach, Duval County",Surfing,female,F,Lacerations to left ankle,N,ActionNewsJax.com,6/15/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.15-LaFlam.pdf +5548,2013.06.14.R,14-Jun-2013,2013,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Boogie Boarding,Allison Foreman,F,Puncture marks to hand,N,WMBF News,6/14/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.14.R-Foreman.pdf +5547,2013.06.06.b,06-Jun-13,2013,Provoked,Usa,Florida,"Off Snipe Point, Florida Keys, Monroe County",Fishing for sharks,Walter Kefauver,M,Left hand bitten as he attempted to remove hook from shark PROVOKED INCIDENT,N,CBS Miami,6/6/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.b-Kefauver.pdf +5546,2013.06.06.a,06-Jun-13,2013,Unprovoked,Australia,New South Wales,Target Beach,Surfing,Steve Adamson,M,"No injury, board damaged",N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.a-Adamson.pdf +5545,2013.05.27.b,27-May-13,2013,Unprovoked,Usa,Hawaii,"Halewia, Oahu",Diving,Tali Ena,M,Lacerations to right hand,N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27.b-Ena.pdf +5544,2013.05.27.a,27-May-13,2013,Unprovoked,Usa,Florida,"Ormond Beach, Volusia County",Swimming,Kyle Kirkpatrick,M,Right foot bitten,N,Fox News,5/28/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27-Kirkpatrick.pdf +5543,2013.05.23.b,23-May-13,2013,Unprovoked,Brazil,Pernambuco,Coral Cove Beach,Unknown,José Rogério da Silva,M,FATAL,Y,JC Online,6/6/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.25.b-daSilva.pdf +5542,2013.05.23.a,23-May-13,2013,Provoked,Palestinian territories,Unknown,Gaza,Fishing,Hamed Salah,M,Two fingers lost PROVOKED INCIDENT,N,Ma'an News Agency,5/25/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.23-Salah.pdf +5541,2013.05.14,14-May-14,2013,Unprovoked,Ecuador,Santa Cruz Island,"Playa Brava, Turtle Bay",Surfing,Intriago Diego,M,Superficial injury to left calf,N,El Universo,5/16/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.14-Diego.pdf +5540,2013.05.08.b,08-May-13,2013,Invalid,Usa,California,"Tourmaline Surf Park, San Diego County",Surfing,Brandon Beaver,M,Shark bites were post-mortem,Y,Sacramento Bee,6/4/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.b-Beaver.pdf +5539,2013.05.08.a,08-May-13,2013,Unprovoked,Reunion,Saint-Gilles,Brisant Beach,Body boarding,Stéphane Berhamel,M,FATAL,Y,A. Morel,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.a-Berhamel.pdf +5538,2013.05.04.a,04-May-13,2013,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,Michael Adler,M,Lacerations to left foot and ankle,N,Local News 10,5/5/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.04-Adler.pdf +5537,2013.04.28,28-Apr-13,2013,Provoked,Australia,New South Wales,Emerald Beach,Fishing,Ted Collins,M,Foot bitten by landed shark PROVOKED INCIDENT,N,Coffs Coast Advocate,5/4/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.28-Collins.pdf +5536,2013.04.24,24-Apr-13,2013,Unprovoked,Mexico,Quintana Roo,"Seagull Beach, Cancun",Swimming,Isabella Carchia,F,Avulsion injury to lower right leg,N,I. Carchia; A. Brenneka,Shark Attack Survivors; Novedades 4/24/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.24-Carchia.pdf +5535,2013.04.21,21-Apr-13,2013,Unprovoked,Australia,New South Wales,Crowdy Head,Fishing,Alan Saunders,M,Puncture wounds and lacerations to both legs,N,7NewsSydney,4/22/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.21-Saunders.pdf +5534,2013.04.17,17-Apr-13,2013,Unprovoked,Usa,Florida,"Near Boynton Beach, Palm Beach County",Playing in the surf,Colten Cicarelli,M,Lacerations to right foot,N,News Channel 5,4/18/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.17-Cicarelli.pdf +5533,2013.04.14,14-Apr-13,2013,Unprovoked,South africa,Western Cape Province,False Bay,Free diving,male,M,"""Light scratch on hand/wrist area""",N,Cape Argus,4/16/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.14-FalseBay.pdf +5532,2013.04.13.b,13-Apr-13,2013,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Joshua White,M,Minor lacerations to right hand,N,News13,4/14/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.b-JoshuaWhite.pdf +5531,2013.04.13.a,13-Apr-13,2013,Unprovoked,Unknown,Unknown,Unknown,Unknown,Nae Deok Kim,M,FATAL,Y,Pacific News Center,4/15/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.a-NaeDeokKim.pdf +5530,2013.04.10,10-Apr-13,2013,Unprovoked,French polynesia,Tuamotus,"North Pass, Fakarava",Kite boarding,Nick Eitel,M,"Underside of board, fins and, harness were damaged, and left hip, thigh and buttock sustained puncture wounds",N,N. Eitel,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.10-Eitel.pdf +5529,2013.04.04,04-Apr-13,2013,Unprovoked,Usa,Florida,"Jensen Beach, Martin County ",Swimming,male,M,Lacerations to hand,N,A. Brenneka,Shark Attack Survivors; TC Palm,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.04-JensenBeach.pdf +5528,2013.04.02.R,02-Apr-2013,2013,Invalid,Australia,Western Australia,Perth,Unknown,Martin Tann,M,Disappeared. No evidence that he was taken by a shark,Y,WA Today,4/4/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.R-Tann.pdf +5527,2013.04.02.a,02-Apr-13,2013,Unprovoked,Usa,Hawaii,Ka’anapali Shores,Surfing,male,M,Right thigh bitten,N,Maui Now,4/2/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.a-Hawaii.pdf +5526,2013.03.31,31-Mar-13,2013,Invalid,Australia,New South Wales,Terrigal Beach,Surfing,Richard Tognetti,M,Never happened; it was a hoax,N,Limelight Magazine,4/1/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.31-Tognetti.pdf +5525,2013.03.29,29-Mar-13,2013,Unprovoked,Seychelles,Unknown,Ile Platte,Free diving,Richard Parkinson,M,Lacerations to left foot,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.29-Parkinson.pdf +5524,2013.03.21.R,21-Mar-2013,2013,Unprovoked,Unknown,Unknown,Unknown,Snorkeling,Monika Wanis,F,Toe injured,N,H. Fairchild,The Lantern,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.R-Wanis.pdf +5523,2013.03.21,21-Mar-13,2013,Unprovoked,Bahamas,Eleuthera,Savannah Sound,Fly fishing,Kerry Anderson,M,Left foot bitten,N,13wham.com,3/22/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.a-Bahamas.pdf +5522,2013.03.16.b,16-Mar-13,2013,Provoked,South africa,Western Cape Province,De Mond,Fishing - 'tag & release',Kobus Koeberg,M,Lacerations to left calf and heel from hooked shark PROVOKED INCIDENT,N,National Sea Rescue Institute,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.b-Koeberg.pdf +5521,2013.03.16.a,16-Mar-13,2013,Unprovoked,South africa,Western Cape Province,Hawston Beach,Surfing,Troy Henri,M,"No injury, surfboard bitten",N,Cape Times,3/19/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.a-Henri.pdf +5520,2013.03.12,12-Mar-13,2013,Unprovoked,Jamaica,St. Catherine,Pillikin Red Light area ,Spearfishing,George Facey,M,FATAL,Y,R. Turner & A. Williams,Jamaica Star,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.12-Facey.pdf +5519,2013.03.10.b,10-Mar-13,2013,Unprovoked,Australia,Western Australia,African Reef off Geraldton,Spearfishing,Adam Thomason,M,Laceration to left hand,N,The West Australian,3/13/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.b-Thomason.pdf +5518,2013.03.10.a,10-Mar-13,2013,Unprovoked,Philippines,Palawan,Off Likas Island,Swimming to shore with floatioon devices after boat engine conked out,Alvin Lovido & John Paul Mangaoang,M,Minor leg injuries,N,E. Badilla,InterAksyon.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.a-PhilippineMarines.pdf +5517,2013.03.03,03-Mar-13,2013,Unprovoked,South africa,Eastern Cape Province,Port St. John's,Swimming,Fundile Nogumla,M,Injuries to arms & hands,N,Daily Dispatch,3/4/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.03-Nogumla.pdf +5516,2013.02.27,27-Feb-13,2013,Unprovoked,New zealand,North Island,Muriwai,Swimming,Adam Strange,M,FATAL,Y,New Zealand Herald,2/27/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.27-Strange.pdf +5515,2013.02.21.b,21-Feb-13,2013,Unprovoked,Usa,Hawaii,"Ka'anapali, Honokowai, Maui",Surfing,Unknown,Unknown,Lacerations to right leg,N,Hawaiisharks.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.b-Hawaii.pdf +5514,2013.02.21.a,21-Feb-13,2013,Unprovoked,Usa,Hawaii,"Paia Bay, Maui",Surfing,Jacob Lanskey,M,"No injury, shark bit rail of foam board",N,Hawaiisharks.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.a-Lansky.pdf +5513,2013.02.10,10-Feb-13,2013,Unprovoked,Usa,Florida,"""Stuart Rocks"", Martin County",Surfing,Cole Taschman,M,Lacerations to right hand,N,Palm Beach Post,2/12/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.10-Taschman.pdf +5512,2013.02.09,09-Feb-13,2013,Unprovoked,French polynesia,Society Islands,"Tapu, a dive site on the outer reefs of Bora Bora",Scuba diving,Zohar Kritzer ,M,Lacerations to right arm & thigh,N,A. Brenneka,Shark Attack Survivors; Les Nouvelles Caledoniennes,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.09-Kritzer.pdf +5511,2013.02.01,01-Feb-13,2013,Unprovoked,Jamaica,Kingston Parish,Pedro Cays,Unknown,male,M,Knee bitten,N,The Gleaner,2/1/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.01-Jamaica.pdf +5510,2013.01.26,26-Jan-13,2013,Boat,Australia,Victoria,Cape Nelson,Fishing,"Occupants: Andrew & Ben Donegan & Joel Ryan, ",M,"No injury to occupants, shark bit propeller",N,7NewsMelbourne,1/28/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.26-boat.pdf +5509,2013.01.25,25-Jan-13,2013,Unprovoked,Australia,Queensland,Noosa,Surfing,Matthew Cassaigne,M,Lacerations to neck,N,sharkattackfile.info,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.25-Cassaigne.pdf +5508,2013.01.21.R,21-Jan-2013,2013,Invalid,Australia,Queensland,Bullcock Beach,Dragging stranded shark into deeper water,Paul Marshallsea,M,"No injury, a 3 m blue shark merely snapped at the man.",N,The Guardian,1/21/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.21.R-Marshallsea.pdf +5507,2013.01.16,16-Jan-13,2013,Unprovoked,Usa,Hawaii,Kiholo Bay,Surfing,Paul Santos,M,Left forearm bitten ,N,Hawaii 24/7,1/16/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.16-Santos.pdf +5506,2013.01.13,13-Jan-13,2013,Unprovoked,New zealand,Mercury Islands,Great Mercury Island,Spearfishing,Kim Bade,M,Minor cut on finger,N,Bay of Plenty Times,1/18/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.13-Bade.pdf +5505,2013.01.05,05-Jan-13,2013,Unprovoked,Australia,Western Australia,Near Legendre Island,Spearfishing / Free diving,Jake Swaffer,M,Calf & shin bitten ,N,Perth Now,1/7/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.05-Swaffer.pdf +5504,2012.12.31,31-Dec-12,2012,Unprovoked,Usa,Florida,"Jensen Beach, Martin County ",Swimming,male,M,Lower leg or ankle bitten,N,TC Palm,12/31/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.31-JensenBeach.pdf +5503,2012.12.30,30-Dec-12,2012,Unprovoked,Australia,New South Wales,Between Dee Why and Long Reef,Surfing,Danny Sheather,M,"No injury, chunk missing from surfboard",N,The Daily Telegraph,12/31/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.30-Sheather.pdf +5502,2012.12.28,28-Dec-12,2012,Unprovoked,Australia,New South Wales,"Kylie's Beach, Diamond Head",Paddle boarding,Luke Allan,M,Lacerations to thigh and hand,N,Port Macqquarie News,12/28/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.28-Luke-Allan.pdf +5501,2012.12.25,25-Dec-12,2012,Unprovoked,South africa,Eastern Cape Province,Port St. John's,Swimming,Liya Sibili,M,FATAL,Y,SAPA,12/27/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.25-Sibili.pdf +5500,2012.12.19,19-Dec-12,2012,Unprovoked,Australia,Western Australia,Trigg Beach,Surfing,Richard Wands,M,No injury,N,The West Ausralian,12/20/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.19-Wands.pdf +5499,2012.12.05,05-Dec-12,2012,Unprovoked,Usa,Hawaii,Kauai,Surfing,"""Lorrin""",M,Lacerations to left foot,N,Hawaii News Now,11/5/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.05-Kauai.pdf +5498,2012.12.02,02-Dec-12,2012,Unprovoked,Australia,New South Wales,Green Island,Spearfishing,male,M,Minor puncture wounds to knee,N,ABC News,12/2/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.02-Green-Island.pdf +5497,2012.12.00,Dec-12,2012,Unprovoked,New zealand,South Island,"Sunday Cove, Fiordland",Scuba diving,Jenny Oliver,F,"No injury, shark grabbed hood",N,Stuff.co.nz,1/18/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.00-Oliver.pdf +5496,2012.11.30,30-Nov-12,2012,Unprovoked,Usa,Hawaii,"Kihei, Maui",Snorkeling,Thomas Floyd Kennedy ,M,Lacerations to thigh & lower left leg,N,KHON2,11/30/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.30-Kennedy.pdf +5495,2012.11.27,27-Nov-12,2012,Invalid,Australia,Queensland,Mooloolaba,Unknown,Unknown,M,"Injury to ankle caused by a stingray, not a shark",N,Fraser Coast Chronicle,11/27/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.27-stingray_accident.pdf +5494,2012.11.22,22-Nov-12,2012,Unprovoked,Mexico,Sinaloa,Nuevo Altata,Swimming,Fernando Cardenas Garcia,M,FATAL,Y,El Universal,11/22/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.22-Garcia.pdf +5493,2012.11.19,19-Nov-12,2012,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,Kai Rittgers,M,Minor lacerations to left foot & heel,N,Florida Today,11/19/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.19-Rittgers.pdf +5492,2012.11.04.b,04-Nov-12,2012,Unprovoked,Usa,Hawaii,"Makena Landing, Maui",Diving,Mark Riglos,M,Right lower leg and foot bitten,N,Hawaii News Now,11/5/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.b-Riglos.pdf +5491,2012.11.04.a,04-Nov-12,2012,Unprovoked,Usa,Hawaii,"Davidson's Surf Break, Kekaha, Kaua'i",Surfing,male,M,"No injury, surfboard bitten",N,Kaua'i Police Department,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.a-Kekaha.pdf +5490,2012.10.30,30-Oct-12,2012,Unprovoked,Usa,California,"Humboldt Bay, Eureka, Humboldt County",Surfing,Scott Stephens,M,Multiple lacerations to torso,N,R. Collier; Redwood Times,11/5/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.30-Stephens.pdf +5489,2012.10.27,27-Oct-12,2012,Unprovoked,Usa,Hawaii,"Makena Landing, Maui",Swimming,Mariko Haugen ,F,"Puncture wounds to thigh, defense wounds to hand",N,MauiNow.com,10/28/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.27-Haugen.pdf +5488,2012.10.23,23-Oct-12,2012,Unprovoked,Usa,California,"Surf Beach, Lompoc, Santa Barbara County",Surfing,Francisco Javier Solorio Jr,M,FATAL,Y,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.23-Solorio.pdf +5487,2012.10.19,19-Oct-12,2012,Unprovoked,Usa,Florida,"Seaport, Brevard County",Unknown,female,F,Left calf bitten,N,Brevard Times,10/19/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.19-BrevardCounty.pdf +5486,2012.10.18.b,18-Oct-12,2012,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,male,M,Minor bite to ankle,N,WESH.com,10/18/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.b-PonceInlet.pdf +5485,2012.10.18.a,18-Oct-12,2012,Unprovoked,Usa,Hawaii,"Kanaha Beach, Maui",Paddle boarding,David Peterson,M,"No injury, board bitten",N,Maui News,10/18/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.a-Peterson.pdf +5484,2012.10.16,16-Oct-12,2012,Invalid,Usa,Florida,Hobe Sound,Unknown,male,M,Laceration to toe,N,WPTV,10/16/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.16-HobeSound.pdf +5483,2012.10.11.R,11-Oct-2012,2012,Unprovoked,Nigeria,Delta,Oboro,Bathing,Mrs. Torugbene-Ere Aboh,F,Laceration to right leg,N,The Osun Defender,10/11/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.11.R-Nigeria.pdf +5482,2012.10.07,10-Oct-12,2012,Unprovoked,Usa,California,"Davenport Landing, Santa Cruz County",Windsurfing,Gunner Proppe,M,"No ijnury to boardrider, shark struck board breaking the mast",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.07-Proppe.pdf +5481,2012.10.02,02-Oct-12,2012,Unprovoked,Australia,Western Australia,"Mullaloo Beach, Perth",Bodyboarding,Andrew Gavriliu,M,"No injury, but swim fin bitten & torn",N,The West Australian,10/4/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.02-Gavriliu.pdf +5480,2012.09.25,25-Sep-12,2012,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,Brandon Taylor,M,Lacerations to left forearm,N,The Examiner,9/26/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.25-Taylor.pdf +5479,2012.09.24,24-Sep-12,2012,Unprovoked,Usa,Florida,"Spanish House Beach, Brevard County",Surfing,Brandon Murray,M,Left foot bitten,N,TC Palm,9/26/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.24-Murray.pdf +5478,2012.09.16,16-Sep-12,2012,Unprovoked,Usa,Florida," Cocoa Beach, Brevard County",Surfing,male,M,Foot bitten,N,Florida Today,9/16/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.16-CocoaBeach.pdf +5477,2012.09.10,10-Sep-12,2012,Unprovoked,Tonga,Vava'u,Eueiki Island,Swimming,Kylie Maguire,F,Injuries to thighs & buttocks,N,Northern Star,9/13/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.10-Maguire.pdf +5476,2012.09.09,09-Sep-12,2012,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,teen,Unknown,Minor injury to elbow,N,Daytona Beach News Journal,9/9/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.09-NSB.pdf +5475,2012.09.08.b,08-Sep-12,2012,Unprovoked,Usa,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Surfing,Matthew Fowler,M,Right foot bitten,N,Shark Attack Survivors,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.b-Fowler.pdf +5474,2012.09.08.a,08-Sep-12,2012,Unprovoked,Usa,Florida,"South Beach, Miami-Dade County",Swimming,male,M,Lacerations to right calf,N,Miami CBS Local,9/8/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.a-SouthBeach.pdf +5473,2012.09.06.b,06-Sep-12,2012,Unprovoked,Usa,Florida,"Neptune Beach, Duval County",Surfing,James Fyfe,M,Right calf bitten,N,New4Jax, 9/7/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.b-Fyfe.pdf +5472,2012.09.06.a,06-Sep-12,2012,Unprovoked,Usa,Florida,"St. Augustine Beach, St. John's County",Surfing,Andrew Birchall,M,Lacerations to foot,N,WFTV,9/4/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.a-Birchall.pdf +5471,2012.09.04,04-Sep-12,2012,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,male,M,Puncture wounds to hand,N,WFTV,9/4/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.04-MelbourneBeach.pdf +5470,2012.09.02.b,02-Sep-12,2012,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,female,F,Puncture wounds to calf and hand,N,WYTV,9/3/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.b-NSB-girl.pdf +5469,2012.09.02.b,02-Sep-12,2012,Provoked,Usa,Hawaii,"Spreckelsville, Maui",Spearfishing,M. Malabon,Unknown,Minor laceration to hand PROVOKED INCIDENT,N,HawaiiNow.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.c-Malabon.pdf +5468,2012.09.02.a,02-Sep-12,2012,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming or boogie boarding,female,F,Puncture wound to left ankle,N,WYTV,9/3/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.a-NSB-Woman.pdf +5467,2012.08.31,31-Aug-12,2012,Provoked,Scotland,Inner Hebrides,Off the Isle of Islay,Shark fishing,Hamish Currie,M,"No injury, shoe bitten by hooked and landed shark PROVOKED INCIDENT",N,The Mirror,8/31/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.31.R-Hamish.pdf +5466,2012.08.28,28-Aug-12,2012,Unprovoked,Australia,Western Australia,Red Bluff near Quobba Station,Surfing,Jon Hines,M,Lacerations to torso and arm,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.28-Hines.pdf +5465,2012.08.26,26-Aug-12,2012,Unprovoked,Brazil,Pernambuco,"Coral Cove, Cabo de Santo Agostinho",Swimming,Tiago José de Oliveira da Silva ,M,FATAL,Y,JC Online,8/30/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.26-Brazil.pdf +5464,2012.08.15,15-Aug-12,2012,Unprovoked,Usa,Alabama,"Gulf Shores, Baldwin County",Wading or swimming,"male, a tourist from Germany",M,Lacerations to leg,N,Fox 10,8/17/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.15-GulfShoresSwimmer.pdf +5463,2012.08.11,11-Aug-12,2012,Boat,Australia,Western Australia,Ocean Reef,Fishing,dinghy,Unknown,"No injury, shark grabbed outboard motor",N,Perth Now,8/11/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.11-FishingBoat.pdf +5462,2012.08.09,08-Aug-12,2012,Unprovoked,Usa,Florida,Key Largo,Free diving ,"David Lowe, Sr.",M,Lacerations to little finger of left hand,N,D. Lowe,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.09-Lowe.pdf +5461,2012.08.05,06-Aug-12,2012,Unprovoked,Reunion,Saint Leu,Unknown,Surfing,Fabien Bujon,M,Right hand and foot severed,N,Linfo.re,8/5/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.05-Bujon.pdf +5460,2012.08.04,04-Aug-12,2012,Unprovoked,French polynesia,Tuamotus,Kaukura Atoll,Spearfishing,Téophane Tauiratea,M,Shoulder bitten,N,A. Brenneka,Shark Attack Survivors; Les Nouvelles calédoniennes,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.04-FrenchPolynesia.pdf +5459,2012.07.31.b,31-Jul-12,2012,Unprovoked,Usa,California,"Topanga Beach, Los Angeles County",Surfing,Jared Tennison,M,"No injury, surfer knocked off board when shark struck surfboard",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.b-Tennison.pdf +5458,2012.07.31.a,31-Jul-12,2012,Unprovoked,Australia,South Australia,Streaky Bay,Surfing,John Campion,M,Lacerations to torso & arm,N,T. Conlin,Adelaide Now,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.a-Campion.pdf +5457,2012.07.30.b,30-Jul-12,2012,Unprovoked,Usa,Hawaii,"Maha‘ulepu Beach, Kauai",Surfing,Steve Stotts,M,Left foot bitten,N,T. LaVenture,The GardenIsland.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.b-Stotts.pdf +5456,2012.07.30.a,30-Jul-12,2012,Unprovoked,Usa,Massachusetts,"Ballston Beach, Truro, Cape Cod",Body surfing,Chris Myers,M,Lacerations to both legs below the knees,N,A. Costellano,ABC News,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.a-Myers.pdf +5455,2012.07.24,24-Jul-12,2012,Invalid,Usa,North Carolina,"Ocean Isle, Brunswick County",Unknown,male,M,Shark involvement unconfirmed,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.24-OceanIsle.pdf +5454,2012.07.23,23-Jul-12,2012,Unprovoked,Reunion,Trois-Bassins,Unknown,Surfing,Alexandre Rassiga,M,FATAL,Y,Clicanoo.re,7/23/20122,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.23-Rassica.pdf +5453,2012.07.21,21-Jul-12,2012,Invalid,Trinidad & tobago,Trinidad,"Off Radix Village, Mayoro County",Swimming,Shaka Galera,M,Probable drowning with post-mortem bite,Y,Trinidad Express,8/3/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.21-Galera-drowning.pdf +5452,2012.07.19,19-Jul-12,2012,Invalid,Canada,British Colombia,"Tofino, Vancouver",Surfing,Kaitlin Dakers,F,"Lacerations to 2 fingers, but shark involvement unconfirmed",N,CBC News,7/23/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.19-Dakers.pdf +5451,2012.07.14,14-Jul-12,2012,Unprovoked,Australia,Western Australia,Off Wedge Island,Surfing,Ben Linden,M,FATAL,Y,WA News,7/15/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.14-Linden.pdf +5450,2012.07.08,08-Jul-12,2012,Unprovoked,Usa,North Carolina,"North Topsail Beach, Onslow County",Swimming,Tracy Fasick,F,Lacerations to right ankle and calf,N,A. Brenneka,SharkAttackSurvivors.com; T.Fasick,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.08-Fasick.pdf +5449,2012.07.07.c,07-Jul-12,2012,Unprovoked,Bahamas,Eleuthera,Unknown,Spearfishing,Sean Connelly,M,Lacerations to right leg,N,S. Connelly,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.c-Connelly.pdf +5448,2012.07.07.b,07-Jul-12,2012,Invalid,Australia,Victoria,Ship's Graveyard off Point Lonsdale,Scuba diving,Karen Lee,F,Cause of death was drowning & preceded shark involvement,Y,Aleks Devic,Herald Sun,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.b-Lee.pdf +5447,2012.07.07.a,07-Jul-12,2012,Unprovoked,Usa,California,"Pleasure Point, Santa Cruz County",Kayaking,M.C.,M,"No injury, kayak bitten",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.a-SantaCruz.pdf +5446,2012.07.06,06-Jul-12,2012,Unprovoked,South africa,Western Cape Province,"Sandstrand, Jongensfontein",Surfing,Jacque Mostert,M,Lacerattions to left thigh & knee,N,NSRI,7/6/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.06-Mostert.pdf +5445,2012.06.28.R,28-Jun-2012,2012,Invalid,Croatia,Unknown,Buccari Bay,Swimming,Unknown,Unknown,"Leg struck. Initally reported as a shark attack, but involved a swordfish",N,Il Gazzettino,6/28/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.28.R-Croatia.pdf +5444,2012.06.26.c,26-Jun-12,2012,Unprovoked,Usa,Florida,"Juno Beach, Palm Beach County",Swimming,Nickolaus Bieber ,M,Thigh bitten,N,WPTV.com,6/26/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.c-Bieber.pdf +5443,2012.06.26.b,26-Jun-12,2012,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Nip to left foot,N,H. Frederick,Headline Surfer,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.b-NewSmyrnaBeach.pdf +5442,2012.06.26.a,26-Jun-12,2012,Unprovoked,Usa,Hawaii,"Kahana Beach, Maui",Sitting in the water,Sage St. Clair,F,Laceration to left calf,N,Hawaii News Now,6/26/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.a-StClair.pdf +5441,2012.06.22.b,22-Jun-12,2012,Unprovoked,Australia,Tasmania,South Cape Bay,Surfing,James Barthy,M,"Knocked off board, shark bit nose off surfboard",N,J. Barthy,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.b-Barthy.pdf +5440,2012.06.22.a,22-Jun-12,2012,Unprovoked,Usa,Florida,"Bathtub Reef Beach, Stuart, Martin County",Swimming,Patrick McInerney,M,Minor injury,N,WPTV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.a-McInerney.pdf +5439,2012.06.20,20-Jun-12,2012,Unprovoked,Australia,Western Australia,"Mullaloo Beach, Perth",Surf skiing ,Martin Kane,M,"No injury, ski severely damaged",N,Perth Now,6/20/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.20-Kane.pdf +5438,2012.06.19,19-Jun-12,2012,Invalid,Usa,South Carolina,"Myrtle Beach, Horry County",Standing,Matthew Breen,M,"Laceration to foot. Injured by a stingray, not a shark",N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.19-MyrtleBeach.pdf +5437,2012.06.18,18-Jun-12,2012,Unprovoked,Usa,North Carolina,"Ocean Isle, Brunswick County",Wading,Brooklyn Daniel,F,Numerous puncture wounds to leg ,N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.18-Daniel.pdf +5436,2012.06.15,15-Jun-12,2012,Provoked,Usa,Florida,"Summerland Key, Monroe County",Fishing,male,M,Superficial injury to calf by hooked shark PROVOKED ACCIDENT,N,WSVN-TV,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.15-SummerlandKey.pdf +5435,2012.06.14.d,14-Jun-12,2012,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Swimming,female,F,Foot & hand bitten,N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.d-female-MyrtleBeach.pdf +5434,2012.06.14.c,14-Jun-12,2012,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Swimming,male,M,Minor injury,N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.c-MyrtleBeach.pdf +5433,2012.06.14.b,14-Jun-12,2012,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Swimming,male,M,Calf bitten,N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.b-male-MyrtleBeach.pdf +5432,2012.06.14.a,14-Jun-12,2012,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Swimming,Jordon Garosalo,M,Laceration to right foot,N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.a-Garosalo.pdf +5431,2012.06.12,12-Jun-12,2012,Unprovoked,Australia,Victoria,Port Campbell,Surfing,Mike Higgins,M,Laceration to right foot,N,Herald Sun,6/13/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.12-Higgins.pdf +5430,2012.06.10,10-Jun-12,2012,Provoked,Italy,Sardinia,Muravera,Attempting to rescue an injured & beached shark,Giorgio Zara,M,Lower left leg injured PROVOKED ACCIDENT,N,D. Puddo,6/11/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.10-Zara.pdf +5429,2012.06.03,03-Jun-12,2012,Unprovoked,Australia,New South Wales,"Redhead Beach, Newcastle",Surf skiing ,Mark Ayre,M,"No injury, ski bitten",N,Newcastle Herald,6/6/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.03-Ayre.pdf +5428,2012.06.02.b,02-Jun-12,2012,Unprovoked,Usa,Florida,"Bethune Beach, Volusia County",Surfing,Angelina DelRosso,F,Laceration to thigh,N,J. Horton,West Volusia Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.b-DelRosso.pdf +5427,2012.06.02.a,02-Jun-12,2012,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Boogie Boarding,Ryan Orellana-Maczynski ,M,Severe laceration to foot,N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.a-Maczynski.pdf +5426,2012.05.31,31-May-12,2012,Unprovoked,Usa,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Wading,Megan Konkler,F,Foot bitten,N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.31-Konkler.pdf +5425,2012.05.29,29-May-12,2012,Unprovoked,Mexico,Guerrero," Boca de la Leña, La Unión",Free diving / spearfishing,Benigno Medina Navarrete ,M,Left hand severed,N,El Sol ee Morelia,5/30/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.29-Navarrette.pdf +5424,2012.05.23,23-May-12,2012,Unprovoked,Usa,Florida,"Jacksonville, Duval County",Surfing,Chad Refro,M,Lacerations to foot,N,First Coast News,5/24/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.23-Renfro.pdf +5423,2012.05.20,20-May-12,2012,Unprovoked,Usa,Hawaii,"Iroquiois Point, Oahu",Kayak Fishing,Jerry Gallardo,M,"No injury, teethmarks in kayak",N,Hawaii Now,5/25/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.20-Gallardo.pdf +5422,2012.05.16,16-May-12,2012,Unprovoked,Fiji,Unknown,Matacucu Reef ,Spearfishing,Tevita Naborisi ,M,Lacerations to head,N,Fiji Times,5/17/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.16-Naborisi.pdf +5421,2012.05.12,12-May-12,2012,Unprovoked,Usa,California,"Leffingwell Landing, Cambria, San Luis Obispo County",Kayaking / Fishing,Joey Nocchi,M,"No injury, kayaker fell in the water when kayak bitten by a shark",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.12-Nocchi.pdf +5420,2012.05.09,09-May-12,2012,Unprovoked,Usa,Florida,"Vero Beach, Indian River County",Swimming,Karin Ulrike Stei,F,Upper left thigh bitten,N,News Channel 5,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.09-Stei.pdf +5419,2012.05.06,06-May-12,2012,Unprovoked,Usa,California,Off Catalina Island,Paddle boarding,Rose McKereghan,F,"No injury, shark bit paddleboard",N,R. Collier,A. Brenneka,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.06-McKereghan.pdf +5418,2012.04.19.b,19-Apr-12,2012,Unprovoked,Usa,Florida,"Indialantic, Brevard County",Surfing,Justin Ellingham,M,Lacerations to hand,N,MyFoxOrlando,4/19/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.b-Ellingham.pdf +5417,2012.04.19.a,19-Apr-12,2012,Unprovoked,South africa,Western Cape Province,Caves near Kogel Bay,Body boarding,David Lilienfeld ,M,FATAL,Y,News 24,4/19/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.a-Lilienfeld.pdf +5416,2012.04.11,11-Apr-12,2012,Unprovoked,Australia,South Australia,"Dolphin Bay, Innes National Park",Kayaking,Michael Demasi,M,Minor wound to his thigh when shark bit kayak,N,Adelaide Now,4/12/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.11-Demasi.pdf +5415,2012.04.03,03-Apr-12,2012,Unprovoked,Usa,Hawaii,"Leftovers near Chun's Reef, Oahu",Surfing,Joshua Holley,M,Lacerations to left foot,N,Hawaii News Now,4/3/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.03-Holley.pdf +5414,2012.04.00,Apr-13,2012,Unprovoked,Usa,Florida,"Sanibel Island, Lee County",Unknown,Dylan Hapworth,M,Right shin bitten,N,Morning Sentinel,4/20/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.00-Hapworth.pdf +5413,2012.03.31,31-Mar-12,2012,Unprovoked,Australia,Western Australia,Stratham Beach,Scuba diving,Peter Kurmann,M,FATAL,Y,Associated Press,3/31/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.31-Kurmann.pdf +5412,2012.03.24,24-Mar-12,2012,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Joey Coppola,M,Minor lacerations to foot,N,H. Frederick,NSB News,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.24-Coppola.pdf +5411,2012.03.22,22-Mar-12,2012,Boat,Australia,Western Australia,Kalbarri,Crayfishing,crayfish boat. Occupants: Dave & Mitchell Duperouzel: ,Unknown,"No injury to occupants. Shark bit propelle, rope & crayfish float",N,Sydney Morning Herald,3/22/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.22-Kalbarri-fishermen.pdf +5410,2012.03.20,20-Mar-12,2012,Unprovoked,Australia,Queensland,Nobby's Beach,Surfing,Billy O'Leary,M,Lacerations to left calf,N,Courier Mail,3/20/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.20-OLeary.pdf +5409,2012.03.15,15-Mar-12,2012,Unprovoked,Usa,Florida,"Jensen Beach, Martin County ",Surfing,Frank Wacha,M,Left forearm bitten,N,WPBF.com,3/16/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.15-Wacha.pdf +5408,2012.03.14.b,14-Mar-12,2012,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Sydney Levy,F,Bitten on ankle,N,C. Graham,Daytona Beach News-Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.b-Levy.pdf +5407,2012.03.14.a,14-Mar-12,2012,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Nick Romano,M,Bitten on calf,N,C. Graham,Daytona Beach News-Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.a-Romano.pdf +5406,2012.03.06.b,06-Mar-12,2012,Unprovoked,New zealand,North Island,"Opunake, Taranake",Surfing,Peter Garrett,M,Lacerations to left calf,N,NZ Herald,3/7/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.b-Garrett.pdf +5405,2012.03.06.a,06-Mar-12,2012,Provoked,Australia,Victoria,"Shipwreck Cove, Melbourne Aquarium","Diving, feeding sharks",female,F,Superficial lacerations to right side of face PROVOKED ACCIDENT,N,The Age,3/6/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.a-MelbourneAquarium.pdf +5404,2012.03.05,05-Mar-12,2012,Unprovoked,Reunion,Saint-Benoit,Port de la Marine,Body boarding,Gerard Itema,M,"No injury, board bitten",N,Clicanoo,3/5/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.05-Itema.pdf +5403,2012.03.04,04-Mar-12,2012,Unprovoked,Usa,Florida,"Playalinda Beach, Brevard County",Kite Surfing,Justin Worral,M,Lacerations to left calf,N,Brevard Times,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.04-Worrall.pdf +5402,2012.03.03,03-Mar-12,2012,Invalid,Saudi arabia,Tabuk Province,Off Duba,Attempting to Kite surf from Egypt to Saudi Arabia,Jan Lisewski,M,Harassed by sharks but not injured by them,N,Polskie Radio,3/5/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.03-Lisewski.pdf +5401,2012.03.01,01-Mar-12,2012,Provoked,Chile,Antofagasta Province,Antofagasta,Fishing (illegally),Paye León Salomón,M,Hand injured PROVOKED INCIDENT,N,Soychile.cl,3/1/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.01-Salomon.pdf +5400,2012.02.26,26-Feb-12,2012,Provoked,Usa,Florida,"Palm Beach Inlet, Palm Beach County",Kite Surfing,Jason Lasser,M,Laceration to right foot when he struck a shark PROVOKED INCIDENT,N,Aspen Daily News,2/29/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.26-Lasser.pdf +5399,2012.02.25,25-Feb-12,2012,Unprovoked,Australia,New South Wales,Broughton Island,Fishing,male,M,Laceration to left foot,N,B. Smee,Newcastle Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.25-BroughtonIslandFisherman.pdf +5398,2012.02.20,20-Feb-12,2012,Boat,South africa,Western Cape Province,Strandfontein,Fishing,8m inflatable boat. Occupants: Bhad Battle & Kevin Overmeyer,Unknown,"No injury to occupants, boat damaged",N,Cape Argus,2/21/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.20-StrandfonteinBoat.pdf +5397,2012.02.06,06-Feb-12,2012,Unprovoked,Australia,Queensland,Wurtulla,Surfing,Nick Ferguson,M,"No injury, but fin lost from surfboard",N,Sunshine Coast Daily,2/7/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.06-Ferguson.pdf +5396,2012.01.22.R,22-Jan-2012,2012,Unprovoked,Bahamas,Unknown,Cat Island,"Diving, photographing sharks",Russell Easton,M,"No injury, shark grabbed his camera",N,Evening Chronicle,1/23/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.22.R-Bahamas.pdf +5395,2012.01.27,27-Jan-12,2012,Unprovoked,Usa,Hawaii,Lanai,Snorkeling,J. Graden,Unknown,"No injury, shark bit swim fin",N,HawaiiNow.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.27-NV-Graden.pdf +5394,2012.01.19,19-Jan-12,2012,Unprovoked,Australia,Western Australia,Coral Bay,Snorkeling,David Pickering,M,Lacerations to right forearm,N,Sydney Morning Herald,1/20/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.19-Pickering.pdf +5393,2012.01.18.b,18-Jan-12,2012,Provoked,Taiwan,Taitung ,Taimali,Fishing,male,M,Bitten on left thigh PROVOKED ACCIDENT,N,Taiwan television,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.b-Taiwan.pdf +5392,2012.01.18.a,18-Jan-12,2012,Unprovoked,Australia,New South Wales,Redhead Beach,Surfing,Glen Folkard,M,Lacerations to thigh,N,V. Peddemors,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.a-Folkard.pdf +5391,2012.01.15,15-Jan-12,2012,Unprovoked,South africa,Eastern Cape Province,"Second Beach, Port St. Johns",Swimming,Lungisani Msungubana,M,FATAL,Y,News 24,1/15/2012; R. Bonorchis,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.15-Msungubana.pdf +5390,2012.01.13,13-Jan-12,2012,Unprovoked,Usa,Oregon,"Lincoln City, Lincoln County",Surfing,Steve Harnack,M,"No injury, surfboard damaged",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.13-Harnack.pdf +5389,2012.01.03,03-Jan-12,2012,Unprovoked,Australia,New South Wales,North Avoca Beach,Surfing,Mike Wells,M,Right forearm and wrist injured,N,Daily Telegraph,1/3/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.03-Wells.pdf +5388,2012.01.02,02-Jan-12,2012,Unprovoked,Australia,Queensland,Duranbah,Spearfishing,Hugo Silva,M,"No injury, punctures to swim fin",N,A. Brenneka,goldcoast.com.au,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf +5387,2011.12.31,31-Dec-11,2011,Unprovoked,Usa,Florida,"Jupiter, Palm Beach County",Unknown,male,M,Hand injured,N,Palm Beach Post, 12/31/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.31-Jupiter.pdf +5386,2011.12.26.R,26-Dec-2011,2011,Invalid,Antigua,St John's,Fort James Beach,Swimming,"Veron Edwards, Sr. ",M,Bitten on right hand & wrist,N,D. Francis,Caribarena,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.26.R-Edwards.pdf +5385,2011.12.25,25-Dec-11,2011,Unprovoked,Ecuador,Santa Elena,Barandúa Beach,Surfing,Félix Júnior Lainez Trejos,M,Lacerations to left thigh and calf,N,A. Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.25-Trejos.pdf +5384,2011.12.23,23-Dec-11,2011,Unprovoked,Usa,Florida,New Smyrna Beach,Surfing,Will Futato,M,Laceration to ankle,N,Daytona Beach News-Journal,12/24/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.23-Futato.pdf +5383,2011.12.21.b,21-Dec-11,2011,Provoked,Usa,Hawaii,"Makahuena Point, Kauai",Canoeing,Keone Miyake,M,"No injury, after kayak collided with the shark, it bit the rudder PROVOKED INCIDENT",N,A. Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.b-Miyake.pdf +5382,2011.12.21.a,21-Dec-11,2011,Unprovoked,South africa,Eastern Cape Province,"Noordhoek, Port Elizabeth",Kayak Fishing,Werner Coetzee,M,No injury but kayak dented,N,Port Elizabeth Herald,12/22/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.a-Coetzee.pdf +5381,2011.12.11,11-Dec-11,2011,Unprovoked,Australia,New South Wales,Angourie,Surfing,Steve King,M,5 puncture wounds to thigh,N,Daily Examiner,12/11/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.11-King.pdf +5380,2011.12.07.b,07-Dec-11,2011,Invalid,South africa,KwaZulu-Natal,Between Sodwana & Cape Vidal,Surf skiing ,Richard Kohler,M,"No injury, ski damaged",N,Durban Daily News,12/8/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.b-Kohler.pdf +5379,2011.12.07.a,07-Dec-11,2011,Unprovoked,Australia,New South Wales,Maroubra,Surfing,Ronald Mason,M,Minor injuries to left leg ,N,The Australian,12/12/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.a-Mason.pdf +5378,2011.12.06,06-Dec-11,2011,Unprovoked,Usa,Oregon,Seaside Cove,Surfing,female,F,Minor injury to calf ,N,Seaside Signal,12/6/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.06-Seaside-Oregon.pdf +5377,2011.12.05,05-Dec-11,2011,Invalid,Australia,Queensland,Bushy Ilet,Spearfishing,Dave Fordson,Unknown,Killed by a shark or crocodile.,Y,H. Beck,Cairns.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.05-Forsden.pdf +5376,2011.12.02,02-Dec-11,2011,Unprovoked,Australia,New South Wales,Broken Head,Surfing,Milton Carter,M,Torn shoulder ligament as result of collision with shark,N,Northern Star,12/3/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.02-Carter.pdf +5375,2011.11.29,29-Nov-11,2011,Unprovoked,Indonesia,Bali,Tabanan,Surfing,Marc Andrews,M,Lacerations to right hand,N,Daily Telegraph,11/30/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.29-Andrews.pdf +5374,2011.11.28,28-Nov-11,2011,Unprovoked,Australia,Queensland,Peregian,Swimming,Eamon Kriz,M,Puncture marks to foot,N,Sunshire Coast Daily,12/1/2011 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.28-Kriz-not-on-spreadsheet.pdf +5373,2011.11.22,22-Nov-11,2011,Unprovoked,Usa,California,Pigeon Point,Kayaking,Harry Pali,M,"No injury, kayak bitten",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.22-Harry-Pali.pdf +5372,2011.11.20.R,20-Nov-2011,2011,Unprovoked,Papua new guinea,East New Britain,Pigeon Island,Scuba diving,male,M,"No injury, shark collided with diver",N,you Tube,Shark Attack at 57 metres,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.20.R-PigeonIsland.pdf +5371,2011.11.12,12-Nov-11,2011,Unprovoked,Brazil,Pernambuco,"Punta Del Chifre Beach, Olinda",Surfing,Jerônimo Pereira da Paz ,M,Legs bitten,N,H. Nickel & A. Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.12-Periera-Pernambuco.pdf +5370,2011.11.11,11-Nov-11,2011,Unprovoked,Reunion,Bois-Blanc ,Sainte-Rose,Free diving / spearfishing,Jean-Paul Delaunay,M,Left foot bitten,N,H. Nickel & A. Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.11-Delaunay.pdf +5369,2011.10.29., 29-Oct-2011,2011,Unprovoked,Usa,California,"Marina State Beach, Monterey County",Surfing,Eric Tarantino,M,"Lacerations to right wrist, foream & neck",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.29-Tarantino.pdf +5368,2011.10.28.R,28-Oct-2011,2011,Unprovoked,Scotland,Moray,Spey Bay,Surfing,Andrew Rollo,M,"No injury, shark bumped leg & board. ",N,Daily Record,10/28/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28.R-Rollo.pdf +5367,2011.10.28., 29-Oct-2011,2011,Provoked,South africa,KwaZulu-Natal,"uShaka Aquarium, Durban",Diving,Unknown,Unknown,Arm bitten by captive shark PROVOKED INCIDENT,N,Durban Radio,10/29/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28-uShaka-Aquarium.pdf +5366,2011.10.22,22-Oct-11,2011,Unprovoked,Australia,Western Australia,Rottnest Island,Diving,George Wainwright,M,FATAL,Y,Sky News,10/22/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.22-Wainwright.pdf +5365,2011.10.20,20-Oct-11,2011,Unprovoked,Usa,Oregon,"Newport, Lincoln County",Surfing,Bobby Gumm,M,"No injury, shark bit surfboard",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.20-Gumm.pdf +5364,2011.10.19,19-Oct-11,2011,Unprovoked,Australia,Victoria,Elwood Beach,Diving,Andrew Houston ,M,Small bruise to calf,N,The Age,10/20/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.19-Houston.pdf +5363,2011.10.11,11-Oct-11,2011,Unprovoked,Usa,Florida,Cape Canaveral,Surfing,Tim Riley,M,Foot bitten,N,T. Riley,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.11-Riley.pdf +5362,2011.10.10,10-Oct-11,2011,Unprovoked,Usa,Oregon,Seaside,Surfing,Doug Niblack,M,No injury,N,R.Collier; KATU News,10/11/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.10-Niblack.pdf +5361,2011.10.09,09-Oct-11,2011,Unprovoked,Australia,Western Australia,Cottesloe Beach,Swimming,Bryn Martin,M,FATAL,Y,Perth Now,10/11/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.09-Martin.pdf +5360,2011.10.05,05-Oct-11,2011,Boat,Reunion,Unknown,Cap La Houssaye,Canoeing,Jean-Pierre Castellani ,M,No injury to occupant,N,Clicanoo,10/5/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.05-Castellani.pdf +5359,2011.10.02,02-Oct-11,2011,Unprovoked,Usa,Florida,"Santa Maria Island, Manatee County",Wade fishing,Javier Perez,M,Minor injury to thigh,N,Herald Tribune,10/2/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.02-Perez.pdf +5358,2011.10.01,01-Oct-11,2011,Unprovoked,Usa,Alabama,"Gulf Shores, Baldwin County",Unknown,Victor Meade,M,Lacerations to right wrist and middle finger,N,WKRG,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.01-Meade.pdf +5357,2011.09.30,30-Sep-11,2011,Invalid,Usa,Puerto Rico,Hatillo Beach,Surfing,Rafael Colón Casanova,M,Lacerations to lower right leg ,N,El Nuevodia,9/30/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.30-Casanova.pdf +5356,2011.09.28.b,28-Sep-11,2011,Provoked,Dominican republic,Samaná Province,Playa Jackson ,Fishing,Leocadio Reyes Sarante,M,Severe injuries to left arm PROVOKED INCIDENT,N,Hoy Digital,9/28/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.b-Sarante.pdf +5355,2011.09.28.a,28-Sep-11,2011,Unprovoked,South africa,Western Cape Province,Clovely Beach,Swimming,Michael Cohen,M,"Right leg severed, left leg lacerated",N,News 24,9/29/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.a-Cohen.pdf +5354,2011.09.24.b,24-Sep-11,2011,Unprovoked,Usa,Florida,"Santa Maria Island, Manatee County",Spearfishing,C.J. Wickersham,M,Laceration to left thigh,N,Herald Tribune,9/24/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.b-Wickersham.pdf +5353,2011.09.24.a,24-Sep-11,2011,Unprovoked,Usa,South Carolina,"North Myrtle Beach, Horry County",Jumping in the waves,"Isaac O'Hara, ",M,Laceration to left thigh,N,Sun News,9/26/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.a-O'Hara.pdf +5352,2011.09.20,20-Sep-11,2011,Boat,Usa,Hawaii,Kauai,Canoeing,Tom Bartlett,M,"No injury, canoe bitten by shark",N,R. Mizutani,KHON2,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.20-Bartlett.pdf +5351,2011.09.19,19-Sep-11,2011,Unprovoked,Reunion,Saint-Gilles,Boucan-Canot,Body boarding,Mathieu Schiller ,M,FATAL,Y,zinfos974,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.19-Schiller.pdf +5350,2011.09.17,17-Sep-11,2011,Unprovoked,Kenya,Coast Province,"Mama Ngina Beach, Mombasa ",Swimming,Unknown,M,FATAL,Y,Mombasa411,9/20/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.17-Kenya.pdf +5349,2011.09.16,16-Sep-11,2011,Unprovoked,Usa,Florida,New Smyrna Beach,Surfing,Daniel Jorgensen,M,Lacerations to arm,N,Daytona Beach News-Journal,9/16/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.16-Jorgensen.pdf +5348,2011.09.11.b,11-Sep-11,2011,Unprovoked,Usa,California,"Samoa Beach, Humboldt County",Surfing,Benjie Rose,M,"No injury, board bitten",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.b-Benji-Rose.pdf +5347,2011.09.11.a,11-Sep-11,2011,Unprovoked,Papua new guinea,Central Province,"Hula, near Port Moresby",Kite Surfing,Thomas Viot,M,Lacerations to right leg,N,Sydney Morning Herald,9/12/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.a-Viot.pdf +5346,2011.09.04.b,04-Sep-11,2011,Unprovoked,Usa,Hawaii,"Nimitz State Beach, Oahu",Surfing,M. Filipe,Unknown,"No injury, shark bit surfboard",N,KITV.com,9/4/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.b-Felipe.pdf +5345,2011.09.04.a,04-Sep-11,2011,Unprovoked,Australia,Western Australia, Bunker Bay,Body boarding,Kyle James Burden,M,FATAL,Y,Sunshine Coast Daily,9/5/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.a-Burden.pdf +5344,2011.09.02,02-Sep-11,2011,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Daniel True,M,Lacerations to ankle & foot,N,WESH.com,9/2/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.02-True.pdf +5343,2011.08.31,31-Aug-11,2011,Unprovoked,Usa,Florida,Crescent Beach St. Johns County,Surfing,Shane Lancaster,M,Lacerations to lower leg,N,News4JAX,9/1/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.31-Lancaster.pdf +5342,2011.08.28.b,28-Aug-11,2011,Invalid,Australia,Queensland,Fantome Island,Swimming,Rooster,M,FATAL,Y,Courier Pigeon,8/30/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28-Roosteer.pdf +5341,2011.08.28.a,28-Aug-11,2011,Unprovoked,Usa,Texas,"Grass Island, Aransas County",Wade Fishing,Mary Locklear,F,"Lacerations to anterior left shin, abrasion to posteior right leg",N,M. Locklear,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28.a-Locklear.pdf +5340,2011.08.26,26-Aug-11,2011,Unprovoked,Russia,Primorsky Krai,Slavyanka,"Standing, collecting sea stars",Pavel Nechaev ,M,Superficial laceration to shoulder,N,Voice of Russia,8/27/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.26-Nechaev.pdf +5339,2011.08.24.b,24-Aug-11,2011,Unprovoked,Usa,North Carolina,"Buxton Beach, Dare County",Surfing,Kevin Dinneen,M,Lacerations to foot,N,Shark Times,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.b-Dinneen.pdf +5338,2011.08.24.a,24-Aug-11,2011,Unprovoked,Usa,North Carolina,Holden Beach. Brunswick County,Unknown,male,M,Heel bitten,N,WECT.com,8/24/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.a-Holden.pdf +5337,2011.08.23,23-Aug-11,2011,Unprovoked,South africa,Western Cape Province,"Lookout Beach, near the Keurbooms river mouth in Plettenberg Bay",Surfing,Tim van Heerden,M,FATAL,Y,News24,8/23/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.23-VanHeerden.pdf +5336,2011.08.18,18-Aug-11,2011,Unprovoked,Russia,"Peter the Great Bay, Khasan, Primorsky Krai (Far East)",Zheltukhin Island,Swimming,Valery Sidorovich ,M,"Lacerations to hip, thigh and knee",N,Ria Novosti,8/18/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.18-Siderovich.pdf +5335,2011.08.17.c.,17-Aug-11,2011,Unprovoked,Usa,North Carolina,"Kure Beach, New Hanover County",Wading,Trang Aronian,F,Lacerations to foot,N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.c-Aronian.pdf +5334,2011.08.17.b.,17-Aug-11,2011,Invalid,Usa,North Carolina,"Wrightsville Beach, New Hanover County",Unknown,Unknown,M,Abrasions to left hand,N,C. Creswell,GSAF; Wway,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.b-child.pdf +5333,2011.08.17.a,17-Aug-11,2011,Unprovoked,Russia,"Telyakovsky Bay, Khasan, Primorsky Krai (Far East)",Vityaz,Swimming,Denis Udovenko,M,Hands severed,N,AsiaOne,8/17/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.a-Udovenko.pdf +5332,2011.08.16.c,16-Aug-11,2011,Unprovoked,French polynesia,Society Islands,"Teahupoo, Tahiti",Surfing,Adam 'Biff' D'Esposito,M,"No injury, board bitten",N,Sharksurvivors.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.c-D'Esposito.pdf +5331,2011.08.16.b,16-Aug--2011,2011,Unprovoked,Usa,Puerto Rico, Vieques,Floating ,Lydia Strunk,M,Lacerations to lower right leg and foot,N,El Nuevodia,7/17/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.b-Strunk.pdf +5330,2011.08.16.a,16-Aug-11,2011,Unprovoked,Seychelles,Praslin,Anse Lazio ,Swimming or Snorkeling,Ian Martin Redmond,M,FATAL,Y,P. Cahalan,The Independent,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.a-Redmond.pdf +5329,2011.08.15,15-Aug-11,2011,Invalid,Usa,South Carolina,"Myrtle Beach, Horry County",Playing in the surf,Rudy Varney ,M,Puncture wounds to foot,N,C. Creswell; Carolina Live,8/15/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.15-Varney.pdf +5328,2011.08.11,11-Aug--2011,2011,Unprovoked,Usa,North Carolina,Beaufort Inlet,Swimming,Don White,M,Lower right leg bitten,N,Eyewitness News 9,8/12/011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.11-DonnieWhite.pdf +5327,2011.08.01,01-Aug-11,2011,Unprovoked,Seychelles,Praslin,Anse Lazio ,Diving,Nicolas Virolle ,M,FATAL,Y,Gulf News,8/2/2011; Clicanoo,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.01-Virolle.pdf +5326,2011.07.31,31-Jul-11,2011,Invalid,Brazil,Pernambuco,Praia do Pina,Swimming,Gabriel Alves dos Santos ,M,Cause of death may have been drowning; remains scavenged by sharks,Y,surfguru.com.br ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.31-GabrielAlves-dos-Santos.pdf +5325,2011.07.30,30-Jul-11,2011,Sea Disaster,Unknown,Unknown,Unknown,Sea disaster,"Fishing vessel. Occupants Gerry Malabago, Mark Anthony Malabago & 2 others",M,The two Malabagos were bitten by sharks but survived. The other occupants of the boat were rescued.,N,ABS-CBN News,8/17/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.30-Malabago.pdf +5324,2011.07.25,25-Jul-11,2011,Unprovoked,Usa,New Jersey,"Egg Harbor, Atlantic County",Wade Fishing,Eric Aubrey,M,"No injury, shark bit boot",N,NBC,7/28/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.25-Aubrey.pdf +5323,2011.07.22,22-Jul-11,2011,Unprovoked,South africa,Eastern Cape Province,"Cintza Beach, East London",Surfing,Denver Struwig,M,Upper left arm & right leg bitten,N,Zigzag,7/22/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.22-Struwig.pdf +5322,2011.07.19,19-Jul-11,2011,Unprovoked,Usa,North Carolina,"Ocracoke Island, Hyde County",Boogie Boarding,Lucy Magnum,F,Lower right leg & foot bitten,N,C. Creswell,GSAF; WITN.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.19-Mangum.pdf +5321,2011.07.15,15-Jul-11,2011,Unprovoked,Reunion,Saint-Gilles,Brisants. ,Kayaking or Wave skiing,male,M,No injury,N,Le Post,7/19/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.15-Reunion-kayaker.pdf +5320,2011.07.13.b,13-Jul-11,2011,Unprovoked,Usa,Texas,"South Padre Island, Cameron County",Surf fishing,Eugenio González Paez,M,Lacerations to left foot,N,E.G. Paez,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13.b-Paez.pdf +5319,2011.07.13.a,13-Jul-11,2011,Unprovoked,Bahamas,Grand Bahama Island,Off Lucaya,Scuba diving,male,M,Injuries to arm,N,Royal Bahamas Police Force,7/13/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13-diver-Bahamas.pdf +5318,2011.07.07.b,07-Jul-11,2011,Unprovoked,Usa,Texas,"Sunday Beach, Matagorda Island, Calhoun County",Swimming,Nicholas Vossler,M,Foot bitten,N,A. Acosta,Victoria Advocate,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.b-Vossler.pdf +5317,2011.07.07.a,07-Jul-11,2011,Unprovoked,Usa,Texas,"Mustang Island, Nueces County",Wade Fishing,Shawn Hamilton,M,Lacerations to right foot,N,J. Martinez,Corpus Christi Caller Times,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.a-Hamilton.pdf +5316,2011.07.06,06-Jul-11,2011,Unprovoked,Reunion,Saint-Gilles,Roches Noires,Surfing,Arnaud Dussel ,M,Minor injuries: scratches on nose & ankle. Board broken in two,N,V. Boyer,Le Journal de l’île de la Réunion,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.06-Arnaud.pdf +5315,2011.07.05,05-Jul-11,2011,Unprovoked,Columbia,Sucre,"Libertad, San Onofre",Kayaking,Andrés Tulio Amaya Vidal ,M,"Right arm bitten, defense wounds to left hand",N,El Universal,7/6/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.05-Vidal.pdf +5314,2011.06.30,30-Jun-11,2011,Unprovoked,Turks & caicos,Middle Caicos,Mudjin Harbor,Snorkeling,Tyler Cyronak ,M,Lacerations to left shoulder and back,N,T. Cyronak,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.30-Cryonak.pdf +5313,2011.06.29,29-Jun-11,2011,Unprovoked,Brazil,Pernambuco,Praia do Pina,Surfing,Malisson Lima ,M,Lacerations to right thigh,N,USA Today,6/29/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.29-Brazil.pdf +5312,2011.06.28,28-Jun-11,2011,Unprovoked,South africa,KwaZulu-Natal,Aliwal Shoal,Scuba diving,Paolo Stanchi,M,Lacerations to left leg and hands,N,Surfline.com,6/28/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.28-Stanchi.pdf +5311,2011.06.26,26-Jun-08,2011,Unprovoked,Usa,North Carolina,"North Topsail Beach, Onslow County",Playing in the surf,Cassidy Cartwright ,F,Ankle bitten,N,C. Creswell & G. Hubbell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.26-Cartwright.pdf +5310,2011.06.24,24-Jun-11,2011,Unprovoked,Usa,California,"San Onofre State Beach, San Diego County",Surfing,Doug Green,M,Shark leapt onto surfboard; surfer uninjured ,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.24-Green.pdf +5309,2011.06.21,21-Jun-11,2011,Unprovoked,Usa,Florida,"Perdido Key, Escambia County",Jet skiing,Tyler McConnell,M,Lacerations to foot and ankle,N,B. Raines,Press-Register,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.21-McConnell.pdf +5308,2011.06.19.b,19-Jun-11,2011,Unprovoked,Turks & caicos,Caicos Bank,French Cay,Spearfishing,Cefor Lewis,M,Right calf bitten,N,fptci.com,6/23/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.b-Lewis.pdf +5307,2011.06.19.a,19-Jun-11,2011,Unprovoked,Costa rica,Guanacaste,Playa Grande,Surfing,Kevin Moraga,M,FATAL,Y,D. Martinez,Tico Times,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.a-Moraga.pdf +5306,2011.06.15,15-Jun-11,2011,Unprovoked,Reunion,Saint-Gilles-les-Bains,Boucan-Canot,Boogie Boarding,Eddie Aubert,M,FATAL,Y,Surfprevention.com,6/16/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.15-Auber.pdf +5305,2011.06.14.R,14-Jun-2011,2011,Boat,United kingdom,Cornwall,St. Ives,Fishing,16' Dreamcatcher. Occupant: Ian Bussus,Unknown,"No injury, shark slammed into boat",N,G. Box-Turnbull,Daily Mirror,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.14.R-St.Ives.pdf +5304,2011.06.12,12-Jun-11,2011,Unprovoked,Usa,Florida,"Off Jupiter Inlet, Palm Beach County",Scuba diving,Daniel Webb,M,Lacerations to right calf,N,WPTV,6/13/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.12-Webb.pdf +5303,2011.06.06.R,06-Jun-2011,2011,Unprovoked,Columbia,San Andrés archipelago,Albuquerque Cay,Spearfishing,Jhon Jairo James,M,Injuries to right hand and forearm,N,Il Isleno.com,6/6/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.R-James.pdf +5302,2011.06.06.b,06-Jun-11,2011,Unprovoked,Usa,California,"La Jolla, San Diego County",Spearfishing,Justin Schlaefli,M,"No injury, minor damage to wetsuit",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.b-Schlaefli.pdf +5301,2011.06.06.a,06-Jun-11,2011,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Alan McIntosh,M,Puncture wound to calf,N,L. Lelis,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.a-McIntosh.pdf +5300,2011.06.01,01-Jun-11,2011,Unprovoked,Malaysia,Kedah,Palau Payar,Snorkeling,Canadian teen,F,Laceration to dorsum of right foot,N,meglognature.blogspot.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.01-Malaysia.pdf +5299,2011.05.30,30-May-11,2011,Unprovoked,Usa,Texas,"Follett's Island, Brazoria County",Standing or boogie boardin,Kori Robertson,F,Lacerations & punctures to right thigh ,N,KHOU.com,5/31/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.30-Robertson.pdf +5298,2011.05.29,29-May-11,2011,Unprovoked,South africa,Western Cape Province,Robberg Beach,Surfing,Clinton Nelson,M,"No injury, board bumped by shark",N,The George Herald,5/30/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.29-Nelson.pdf +5297,2011.05.25,25-May-11,2011,Unprovoked,Usa,Hawaii,"Lyman Beach, Kailua-Kona",Surfing,Theresa Fernandez,F,"No injury, board bitten",N,Star Advertiser,5/26/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.25-Fernandez.pdf +5296,2011.05.22,22-May-11,2011,Unprovoked,Usa,Hawaii,"Lyman Beach, Kailua-Kona",Paddle boarding,Alaina DeBina,F,"No injury, board bitten",N,Hawaii News Now,5/22/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.22-DeBina.pdf +5295,2011.05.21.a,21-May-11,2011,Unprovoked,New caledonia,North Province,Kendec,Kite Boarding,Nathan ____,M,"Thigh bitten, FATAL",Y,Radio New Zealand & Les Nouvelles Caledoniennes,5/23/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.a-Nathan.pdf +5294,2011.05.21.b,21-May-11,2011,Unprovoked,South africa,KwaZulu-Natal,Levan Point,Spearfishing,Warren Smart,M,"Thigh bitten, FATAL",Y,News 24,5/21/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.b-Smart.pdf +5293,2011.05.13.b,13-May-11,2011,Unprovoked,Usa,Florida,"Ponte Vedra Beach, St Johns County",Body surfing,Bob Brown,M,Lacerations to left foot & ankle,N,News 4,5/16/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.b-Brown.pdf +5292,2011.05.13.a,13-May-11,2011,Unprovoked,Usa,Florida,"Ormond Beach, Volusia County",Surfing,Adrian Bronson,M,Minor injury; puncture wounds to calf,N,L. Lelis,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.a-Bronson.pdf +5291,2011.05.10,10-May-11,2011,Provoked,Usa,Florida,Miami,Fishing ,Brian Storch,M,Laceration to arm by captive shark PROVOKED INCIDENT,N,News 7,5/11/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.10-Storch.pdf +5290,2011.05.07.R,07-May-2011,2011,Invalid,United arab emirates (uae),Umm al Qaywayan Province,Khor Fakkan ,Fishing ,Mustafa Al Hammadi,M,"Erroneously reported on several internet sites as a ""shark attack"", it was the shark 8', 300-kg mako shark that was attacked, not the fisherman",N,Emirates 24/7 News,5/7/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.07.R-UAE.pdf +5289,2011.05.04,04-May-11,2011,Unprovoked,South africa,KwaZulu-Natal,Palm Beach,Spearfishing,Trevor Burger,M,Calf bitten,N,The Witness,5/10/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.04-Burger.pdf +5288,2011.04.26,26-Apr-11,2011,Unprovoked,Usa,Florida,"Riviera Beach, Palm Beach County",Spearfishing,Anthony Segrich,M,Calf bitten,N,J. Wigham III,Palm Beach Post,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.26-Seagrich.pdf +5287,2011.04.23,23-Apr-11,2011,Unprovoked,Australia,Western Australia,Red Bluffs,Washing sand off a speared fish,Marcus van der Vyver,M,Heel bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.23-VanderVyver.pdf +5286,2011.04.22,22-Apr-11,2011,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing ,Ronald White,M,Minor puncture wounds,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.22-RonWhite.pdf +5285,2011.04.16,16-Apr-11,2011,Unprovoked,New zealand,South Island,Snapper Point,Surfing,Laine Hobson,M,Puncture to left hand,N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.16-Hobson.pdf +5284,2011.04.12,13-Apr-11,2011,Unprovoked,Indonesia,Bali,Balian,Surfing,Joe Ferrar,M,Lacerations to forearm,N,A.Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.12-Ferrar.pdf +5283,2011.04.08,08-Apr-11,2011,Unprovoked,Fiji,Vitu Levu,"Malake Island, Ra Province",Diving,Etuate Caucau ,M,Minor injuries to left leg and hand,N,Bula Namaste,4/10/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.08-Caucau.pdf +5282,2011.03.29.R,29-Mar-2011,2011,Provoked,Usa,Texas,Matagorda Beach,"Standing, holding shark pup",Orlando,M,Minor laceration to shoulder from captive shark PROVOKED INCIDENT,N,You Tube,Baby Blacktip Shark Attack - How NOT to hold a shark.,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.29.R-Orlando.pdf +5281,2011.03.24,24-Mar-11,2011,Unprovoked,Mexico,Quintana Roo,"Gaviotas Beach, Cancun",Swimming,Liuba Taran,F,Lower leg & foot bitten,N,Canadian press,3/25/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.24-Taran.pdf +5280,2011.03.23,23-Mar-11,2011,Unprovoked,Australia,New South Wales,Crowdy Head,Surfing,David Pearson,M,Severe injury to left forearm,N,Nine News,3/24/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.23-Pearson.pdf +5279,2011.03.21.b,21-Mar-11,2011,Unprovoked,Mexico,Quintana Roo,Unknown,Swimming,Andrew Masternak ,M,Right foot bitten,N,Mississauga.net,3/29/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.b-Masternak.pdf +5278,2011.03.21.a,21-Mar-11,2011,Unprovoked,Fiji,Unknown,Nukudamu ,Diving / fishing,Metereti Jeke,M,"Left forearm severely bitten, surgically amputated",N,Fiji Times Online,3/24/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.a-Jeke.pdf +5277,2011.03.16,16-Mar-11,2011,Unprovoked,Australia,New South Wales,"Jimmys Beach, Port Stephens",Wakeboarding,Lisa Mondy,F,"Severe injuries to head, neck, shoulder & upper left arm",N,The Sydney Morning Herald,3/17/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.16-Mondy.pdf +5276,2011.03.10.R,10-Mar-2010,2011,Invalid,Egypt,South Sinai Peninsula,Sharm-el-Sheikh,Unknown,female,F,"Apparent drowning, and subsequent scavenging by 16' tiger shark",N,Swindon Advertiser,3/10/2011 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.R-Sharm-scavenging.pdf +5275,2011.03.10,10-Mar-11,2011,Unprovoked,Australia,New South Wales,"Tallow Beach, Byron Bay",Surfing,Prem Puri,M,"No injury, surboard broken",N,Northern Star,3/11/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.a-Puri.pdf +5274,2011.02.28.R,28-Feb-2011,2011,Provoked,Australia,Queensland,Between ,Fishing,Shane Nyari,M,Lacerations to right hand by hooked shark PROVOKED INCIDENT,N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.28.R-Nyari.pdf +5273,2011.02.23,23-Feb-11,2011,Unprovoked,New caledonia, Loyalty Islands,"Bay of Bweedro, Ouvéa",Spearfishing,Jean-Luc Majele,M,Lacerations to left forearm,N,Les Nouvelles Caledoniennes,2/25/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.23-Jean-Luc.pdf +5272,2011.02.19,18-Feb-11,2011,Unprovoked,Reunion,Saint Gilles ,Trois-Roches,Surfing,Eric Dargent ,M,Left leg severed at the knee,N,Clicanoo.com,2/21/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.19-Dargent.pdf +5271,2011.02.17,17-Feb-11,2011,Unprovoked,Australia,South Australia,Off Perforated Island near Coffin Bay,Diving for abalone,Peter Clarkson,M,FATAL,Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.17-Clarkson.pdf +5270,2011.02.13,13-Feb-11,2011,Provoked,Australia,Queensland,Sunshine Beach,Fishing,male,M,Lacerations to calf by hooked shark PROVOKED INCIDENT,N,Courier-Mail,2/14/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.13-SunshineBeach-angler.pdf +5269,2011.02.12,12-Feb-11,2011,Unprovoked,Australia,Western Australia,Exmouth,Snorkeling,Allen ___,M,Arm bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.12-Exmouth.pdf +5268,2011.02.04.R,04-Feb-2011,2011,Provoked,Mexico,Colima,"Manzanillo, Revillagigedo Islands",Shark fishing on the Ricardo Astorga,Porfirio Lugo Camacho ,M,Left foot bitten PROVOKED INCIDENT,N,AngelGuardianMX,2/4/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.04.R-Camacho.pdf +5267,2011.02.02,02-Feb-11,2011,Unprovoked,South africa,Eastern Cape Province,"Sundays River Mouth, Port Elizabeth",Surf fishing,Johannes Jonk,M,Right leg bitten,N,Iafrica.com,2/2/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.02-Jonk.pdf +5266,2011.01.31,31-Jan-11,2011,Unprovoked,Mexico,Quintana Roo,Cancun,Swimming,Nicole Moore,F,"Leg, forearm & hand severely bitten",N,El Diario de Yucatan,2/1/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.31-Moore.pdf +5265,2011.01.28,28-Jan-11,2011,Provoked,Mexico,Colima,Revillagigedo Islands,Shark fishing on the Don Agustín-VI. ,C. Pedro Luis Beltrán Camargo ,M,Left eg bitten PROVOKED INCIDENT,N,Sun Sentinel,1/30/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.28-Camargo.pdf +5264,2011.01.26,26-Jan-11,2011,Unprovoked,Bahamas,West End,Tiger Beach,Scuba diving,Jim Abernethy,M,Arm bitten ,N,J. Abernethy,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.26-Abernethy.pdf +5263,2011.01.20,20-Jan-11,2011,Invalid,Australia,New South Wales,Cudgen Creek ,Swimming,Mia Merlini,F,Lacerations to both legs,N,L. Brodnik,Tweed News,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.20-Merlini.pdf +5262,2011.01.15,15-Jan-11,2011,Unprovoked,South africa,Eastern Cape Province,"Second Beach, Port St. John's",Surfing,Zama Ndamase,M,FATAL,Y,The Mercury,1/15/211,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.15-Ndamase.pdf +5261,2011.01.12.R,12-Jan 2011,2011,Unprovoked,Mexico,Quintana Roo,Xcalak ,Attempting to fix motor,Juan Miguel Infante Ramírez,M,Bitten on leg and groin,N,Sharksurvivors.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.12.R-Infante.pdf +5260,2011.01.03,03-Jan-11,2011,Boat,Australia,Western Australia,Busselton,Fishing,"A 'tinnie"". Occupants :Paul Sweeny, Paul Nieuwkerdk, John and Mark Kik ",Unknown,"No injury, shark nudged boat and bit propeller",N,S. Gordon,Sky News,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.03-BusseltonBoat.pdf +5259,2010.12.26,26-Dec-10,2010,Unprovoked,Usa,Hawaii," Kahului, Maui",Body boarding,Vaun Stover-French ,M,"Lacerations to his lower left leg, calf, foot & ankle",N,J. Howard,Surfing,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.26-Stover-French.pdf +5258,2010.12.17,17-Dec-10,2010,Unprovoked,Fiji,Vitu Levu,Sigatoka,Surfing,Jordi Gracia ,M,Lacerations to foot,N,Fiji Times Online,12/19/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.17-Gracia.pdf +5257,2010.12.11,11-Dec-10,2010,Unprovoked,Usa,Hawaii,"Tavares Bay, Maui",Surfing,Andrew Wilson,M,Lacerations to right foot,N,Maui News,12/14/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.11-Wilson.pdf +5256,2010.12.05,05-Dec-10,2010,Unprovoked,Egypt,South Sinai Peninsula,"Middle Garden, Sharm el-Shiekh",Snorkeling,Renate Seiffert,F,FATAL,Y,M. Levine,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.05-Renate- Seiffert.pdf +5255,2010.12.03.R,03-Dec-2010,2010,Unprovoked,Indonesia,Bali,Balian,Surfing,Wei Ong,M,Lacerations to right hand,N,M. Trott,Indo Surf Life,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.03.R-Ong.pdf +5254,2010.12.01.b,01-Dec-10,2010,Unprovoked,Egypt,South Sinai Peninsula,"Ras Nasrani, Sharm el-Sheikh",Snorkeling,Yevgeniy (Eugene) Trishkin ,M,Both arms severely bitten,N,M. Levine,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.b-Yevgeniy-Trishkin.pdf +5253,2010.12.01.a,01-Dec-10,2010,Unprovoked,Egypt,South Sinai Peninsula,"Ras Nasrani, Sharm el-Sheikh",Snorkeling,Viktor Koliy ,M,Lacerations to right leg,N,M. Levine,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.a-Viktor-Koliy.pdf +5252,2010.11.30.b,30-Nov-10,2010,Unprovoked,Egypt,South Sinai Peninsula,"Coral Bay, Sharm el-Sheikh",Snorkeling,Lyudmila Stolyarova ,F,"Foot severed, Right forearm severed, lacerations to left hand (defense wounds)",N,M. Levine,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.b-Lyudmila-Stolyarova.pdf +5251,2010.11.30.a,30-Nov-10,2010,Unprovoked,Egypt,South Sinai Peninsula,"Coral Bay, Sharm el-Sheikh",Snorkeling,Olga Martsinko ,F,Foot and arm bitten,N,M. Levine,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.a-Olga Marsyenko.pdf +5250,2010.11.27.R,27-Nov-2010,2010,Unprovoked,Unknown,Unknown,Unknown,Fishing,male,M,Serious wounds to chest,N,Samoa Observer,11/27/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.R-Samoa.pdf +5249,2010.11.27,27-Nov-10,2010,Invalid,Australia,Western Australia,Native Dog Beach,Swimming,Michael Utley,M,Death may have been due to drowning,Y,mailonline.com,12/2/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.a-Utley.pdf +5248,2010.11.19,19-Nov-10,2010,Provoked,Usa,Palmyra Atoll,Unknown,Snorkeling,Kydd Pollock,M,Head bitten by netted shark PROVOKED INCIDENT,N,Sunday News,12/12/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.19-Pollock.pdf +5247,2010.11.15,15-Nov-10,2010,Unprovoked,Dominican republic,Unknown,Boca Chica,Diving,Pinales Pedro Zapata,M,FATAL,Y,Dominican Today,11/15/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.15-Zapata.pdf +5246,2010.11.14,14-Nov-10,2010,Unprovoked,Indonesia,Bali,Balian,Surfing,male,M,Hand bitten ,N,Bali Waves,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.14-Bali.pdf +5245,2010.11.12.R,12-Nov-2010,2010,Boat,Australia,Western Australia,Between Carnac and Garden Islands,Fishing,4-m runabout. Occupant: Allen Gade,M,No injury to occupant. Shark rammed bottom of the boat,N,R. Hidding,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.12.R-Gade.pdf +5244,2010.10.30,30-Oct-10,2010,Unprovoked,Australia,Western Australia,Off Garden Island,Snorkeling,Elyse Frankcom,F,Torso and left buttock bitten,N,Perth Now,10/30/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.30-Francom.pdf +5243,2010.10.28.R,28-Oct-2010,2010,Unprovoked,Australia,Western Australia,Cheynes Beach,Spearfishing,Deacon Plant,M,"No injury, shark head-butted diver's thigh",N,Albany & Great Southern Weekender,10/28/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.R-Plant.pdf +5242,2010.10.28,28-Oct-10,2010,Unprovoked,Usa,Oregon,Florence,Surfing,Seth Mead,M,No injury to surfer,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.a-SethMead.pdf +5241,2010.10.25,25-Oct-10,2010,Provoked,Azores,Unknown,350 miles from Faial Island,Fishing,crewman from the Gedi,M,PROVOKED INCIDENT? ,N,Jornal Diario,10/26/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.25-Gedi-crewman.pdf +5240,2010.10.23.b,23-Oct-10,2010,Unprovoked,Usa,Maine,"Burnt Cove near Eastport, Washington County",Scuba diving,Scott MacNichol,M,"No injury to diver, shark bit his video camera",N,Bangor Daily News,10/27/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23-MacNichol.pdf +5239,2010.10.23.a,23-Oct-10,2010,Unprovoked,Australia,Western Australia,Wedge Island,Kite Surfing,Liam Walker,M,Lacerations to lower right leg,N,Sharksurvivors.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23.a-Walker.pdf +5238,2010.10.22,22-Oct-10,2010,Unprovoked,Usa,California,"Surf Beach, Vandenberg AFB, Santa Barbara County",Body boarding,Lucas Ransom,M,FATAL,Y,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.22-Ransom.pdf +5237,2010.10.20,20-Oct-10,2010,Unprovoked,Egypt,South Sinai Peninsula,Sharm el-Sheikh ,Snorkeling,Elena Rubanovich.,F,Multiple lacerations to left leg and foot,N,M. Salem; Y. Sobolev,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.20-Rubanovich.pdf +5236,2010.10.09,09-Oct-10,2010,Unprovoked,Australia,New South Wales,Mullaway Headland,Surfing,Ken Turk,M,Foot bitten,N,The Coffs Coast Advocate,10/16/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.09-Turk.pdf +5235,2010.10.02.b,02-Oct-10,2010,Unprovoked,Bahamas,Exuma Islands,Unknown,Snorkeling,Jose Molla,M,Calf bitten,N,Sharksurvivors.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.b-Molla.pdf +5234,2010.10.02.a,02-Oct-10,2010,Unprovoked,Bahamas,Abaco Islands,Elbow Cay,Surfing,Jane Engle,F,Bitten between left ankle & knee,N,The Tribune,10/4/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.a-Engle.pdf +5233,2010.10.01,01-Oct-10,2010,Unprovoked,South africa,Western Cape Province,"Melkbaai, Strand",Surfing,male,M,3 lacerations to foot,N,News24.com,10/1/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.01-Melkbaai-surfer.pdf +5232,2010.09.27,27-Sep-10,2010,Unprovoked,Usa,Oregon,Winchester Bay,Surfing,David Lowden,M,"No injury, surfboard rammed",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.27-Lowden-COLLIER.pdf +5231,2010.09.24,24-Sep-10,2010,Unprovoked,Usa,Virginia,Sandridge Beach,Surfing,Caleb Kauchak,M,Bite to left ankle and knee,N,K.Adams,The Virginian Pilot,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.24-Kauchak.pdf +5230,2010.09.21,21-Sep-10,2010,Unprovoked,South africa,Western Cape Province,Between Dyer Island and Pearly Beach,Swimming,Khanyisile Momoza ,M,FATAL,Y,Cape Argus,9/25/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.21-Momoza.pdf +5229,2010.09.13, 13-Sep-2010,2010,Unprovoked,Australia,New South Wales,Fraser's Reef,Surfing,Jake Davis,M,Lacerations and puncture wounds to leg and foot,N,Daily Telegraph,9/16/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.13-Davis.pdf +5228,2010.09.07,07-Sep-10,2010,Unprovoked,Usa,Florida,"St. Augustine, St. John's County",Swimming,Jason Whitworth,M,Lacerations to left wrist,N,St. Augustine Record,9/9/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.07-Whitworth.pdf +5227,2010.09.06.R,06-Sep-2010,2010,Unprovoked,Tonga,Ha'api ,Unknown,Swimming / Whale Watching,Bjørn Jensen,M,Puncture wounds to right foot,N,New Zealand Herald,9/6/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.06.R-Jensen.pdf +5226,2010.09.04, 04-Sep-2010,2010,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Kris Kerr,M,"No injury, shark charged surfboard",N,CBS News,9/10/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.04-Kerr.pdf +5225,2010.09.03.b,03-Sep-10,2010,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Coffman,M,Lacerations to right hand ,N,S. Petersohn; Daytona Beach News-Journal,9/3/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.b-Coffman.pdf +5224,2010.09.03.a,03-Sep-10,2010,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Andrew Heald,M,Left thigh bitten,N,S. Petersohn; M. Johnson,Daytona Beach News-Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.a-Heald.pdf +5223,2010.09.02,02-Sep-10,2010,Unprovoked,Solomon islands,Western Province,Unknown,Unknown,Benjamin D'Emden,M,Lacerations to face and neck,N,The Daily Telegraph,9/3/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.02-D'Emden.pdf +5222,2010.08.29,29-Aug-10,2010,Invalid,Bahamas,Exuma Islands,"Off Jaws Beach, New Providence Island",Swimming after boat became disabled,Judson Newton,M,"His partial remains were recovered from a 12' tiger shark on September 5, 2010. Cause of death was thought to be drowning",Y,P.Nunez,Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.29-Newton.pdf +5221,2010.08.18,18-Aug-10,2010,Unprovoked,Usa,Florida,Crescent Beach St. Johns County,Boogie Boarding,Seth Shorten,M,Minor injuries to foot,N,Gainesville Sun,8/18/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.18-Shorten.pdf +5220,2010.08.17,17-Aug-10,2010,Unprovoked,Australia,Western Australia,Cowaramup Bay,Surfing,Nicholas Edwards,M,FATAL,Y,The Australian,8/17/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.17-Edwards.pdf +5219,2010.08.14,14-Aug-10,2010,Unprovoked,Usa,California,"Pigeon Point, San Mateo County",Kayak Fishing,Adam Coca,M,"No injury, kayak bitten",N,Mercury News,8/15/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.14-Coca.pdf +5218,2010.08.10.b,10-Aug-10,2010,Provoked,Australia,Queensland,"Three Mile Creek, Townsville",Fishing,female,F,Leg bitten by hooked shark PROVOKED INCIDENT,N,Courier-Mail,8/10/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.b-Townsville.pdf +5217,2010.08.10,10-Aug-10,2010,Unprovoked,South korea,Jeju Province,Jeju Island,Swimming,Jaylee Pierce,F,Lacerations to left lower leg,N,J. Williamson,Texarkana Gazette,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.a-Pierce.pdf +5216,2010.08.08,08-Aug-10,2010,Unprovoked,Australia,New South Wales,Crescent Head,Surfing,Rick Carroll,M,Left foot bitten,N,Macleay Argus,8/10/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.08-Carroll.pdf +5215,2010.08.07.b,07-Aug-10,2010,Unprovoked,Usa,North Carolina,"Figure Eight Island, Wilmington, New Hanover County",Surfing,Josh Clement,M,Left foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.b-Clement.pdf +5214,2010.08.07.a,07-Aug-10,2010,Unprovoked,Malta,Unknown,"Off Fort St. Elmo, Valetta",Windsurfing,David Bonavia,M,"No injury, sail bitten",N,A. Buttigieg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.a-Bonavia.pdf +5213,2010.08.05,05-Aug-10,2010,Invalid,Usa,Florida,"Bethune Beach, Volusia County",Swimming,Judy Fischman,F,Minor abrasions to legs when she was lifted on the back of a large marine animal,N,Daytona Beach News-Journal,8/7/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.05-Fischman.pdf +5212,2010.08.02.b,02-Aug-10,2010,Unprovoked,Usa,California,"Near oil rig Hondo, 5 nm from Gaviota, Santa Barbara County",Kayaking,Duane Strosaker,M,"No injury, kayak bitten",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.b-Strosaker.pdf +5211,2010.08.02.a,02-Aug-10,2010,Unprovoked,Usa,Florida,"Micklers Landing, St. Johns County",Standing,Kimberly Presser,F,Lacerations to forearm,N,News4JAX,8/2/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.a-Presser.pdf +5210,2010.07.25,25-Jul-10,2010,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Standing,Alex Stamm,M,Lacerations to right lower leg,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.25-Stamm.pdf +5209,2010.07.23,23-Jul-10,2010,Unprovoked,Usa,Florida,"Jacksonville Beach, Duval County",Surfing,Clayton Schulz,M,Left foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.23-Schulz.pdf +5208,2010.07.19,19-Jul-10,2010,Unprovoked,Usa,South Carolina,Myrtle Beach,Swimming,Josh Myers,M,Minor lacerations to left calf,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.19-Myers.pdf +5207,2010.07.17.b,17-Jul-10,2010,Unprovoked,Usa,North Carolina,"Wrightsville Beach, New Hanover County",Swimming,Kendall Parker,F,Lacerations to right forearm,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.b-Parker.pdf +5206,2010.07.17.a,17-Jul-10,2010,Unprovoked,Usa,Florida,New Smyrna Beach,Surfing,Jimmy Johnston,M,Minor lacerations to right foot,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.a-Johnston.pdf +5205,2010.07.16.b,16-Jul-10,2010,Provoked,Spain,Grand Canary Island,"Sardina del Norte, Gáldar",Swimming,male,M,Lacerations to left foot when he stepped on the shark PROVOKED INCIDENT,N,gáldahora,7/16/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.b-Spain.pdf +5204,2010.07.16.a,16-Jul-10,2010,Unprovoked,Usa,Texas,Galveston,Fishing,Charlie Gauzer,M,Leg bitten,N,NY Post,7/16/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.a-Gauzer.pdf +5203,2010.07.11,11-Jul-10,2010,Provoked,Usa,Florida,"Lauderdale-by-the-Sea, Broward County",Fishing,male,M,Small laceration to forearm from netted shark PROVOKED INCIDENT,N,News 7,7/13/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.11-Lauderdale-fisherman.pdf +5202,2010.07.04,04-Jul-10,2010,Unprovoked,South africa,KwaZulu-Natal,"Two Mile Reef, Sodwana Bay",Snorkeling,Sarah Haiden,F,Left leg bitten,N,The Sowetan. 7/9/2010,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.04-Haiden.pdf +5201,2010.07.03,03-Jul-10,2010,Provoked,Usa,New York,Off Long Island,Fishing,Frank Joseph,M,Laceration to right bicep by hooked shark PROVOKED INCIDENT,N,NBC,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.03-Joseph.pdf +5200,2010.07.02.b,02-Jul-10,2010,Unprovoked,Usa,California,"Pismo Beach, San Luis Obispo County",Surfing,Derek Crane,M,Laceration to left foot,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.b-Crane.pdf +5199,2010.07.02.a,02-Jul-10,2010,Unprovoked,Usa,California,"Dog Patch, San Onofre",Stand-Up Paddleboarding,David Bull,M,"No injury, board bumped by shark",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.a-Bull.pdf +5198,2010.06.27,27-Jun-10,2010,Unprovoked,Usa,Texas,"Eight Mile Beach, Galveston",Surfing,Chad Rogers,M,Lacerations to right foot,N,KMBC,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.27-Rogers.pdf +5197,2010.06.25.b,25-Jun-10,2010,Unprovoked,Usa,South Carolina,Fripp Island,Boogie Boarding,Ella Morris,F,Laceration to leg,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.b-Morris.pdf +5196,2010.06.25.a,25-Jun-10,2010,Unprovoked,Usa,North Carolina,"Topsail Island, Pender County",Swimming,Carley Schlentz,F,Laceration to left foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.a-Schlentz.pdf +5195,2010.06.15,15-Jun-10,2010,Unprovoked,Vietnam,Binh Dinh Province,Quy Nhon ,Swimming,Huynh Nhu Hoang,M,Laceration to left foot,N,Thanh Nien News,5/15/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.15-Hoang.pdf +5194,2010.06.10,10-Jun-10,2010,Unprovoked,Usa,Florida,Jacksonville,Boogie Boarding,Hannah Mayo-Foster,F,Lacerations to left calf and foot,N,Gwinnett Daily Post,6/10/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.10-Mayo-Foster.pdf +5193,2010.06.06,06-Jun-10,2010,Unprovoked,Australia,Western Australia,"Conspicuous Beach, near Walpole",Surfing,Michael Bedford,M,Severe laceration to right knee,N,The West Australian,6/7/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.06-Bedford.pdf +5192,2010.06.00,Jun-10,2010,Unprovoked,Usa,Florida,"Ponte Vedra Beach, St Johns County",Surfing,Matt Searcy,M,Lacerations to left foot,N,Florida Times-Union,7/28/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.00-Searcy.pdf +5191,2010.05.30,30-May-10,2010,Provoked,Usa,Florida,Off Tarpon Springs,Fishing,Mike Seymore,M,Laceration to left calf by hooked shark PROVOKED INCIDENT,N,tbo.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.30-Seymore.pdf +5190,2010.05.18.c,18-May-10,2010,Unprovoked,Vietnam,Binh Dinh Province,Quy Nhon ,Rescuing,Nguyen Thi Thu Thao,F,Minor laceration to leg,N,Thanh Nien,5/21/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.c-Thao.pdf +5189,2010.05.18.b,18-May-10,2010,Unprovoked,Vietnam,Binh Dinh Province,Quy Nhon ,Swimming,Nguyen Thi Tanh ,F,Severe lacerations to left foot,N,Thanh Nien,5/21/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.b-Thanh.pdf +5188,2010.05.18.a,18-May-10,2010,Unprovoked,Australia,New South Wales,Point Plomer,Surfing,Craig Gibson,M,Superficial lacerations to lower left leg,N,Macleay Argus,5/2/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.a-Gibson.pdf +5187,2010.05.03,03-May-10,2010,Unprovoked,Madagascar,Antsiranana Province," Ambatolaoka, Nosy Be Island",Scuba diving,Michel Touzet,M,Lacerations to arm & chest,N,M.Touzel; Shark Attack Survivors,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.03-Touzet.pdf +5186,2010.05.01,01-May-10,2010,Unprovoked,Usa,Florida,New Smyrna Beach,Wading,Caitlin Dubois,F,Minor puncture wounds to right ankle,N,S. Petersohn;J. Wheeler,13 News,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.01-Dubois.pdf +5185,2010.04.28,28-Apr-10,2010,Provoked,Usa,Florida,Hanalei Bay,Measuring sharks,Kirk Gastrich,M,Arm bitten PROVOKED INCIDENT ,N,D. Guevara,WSVN-TV,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.28-Gatrich.pdf +5184,2010.04.19,19-Apr-10,2010,Unprovoked,Usa,Hawaii,"Hanalei Bay, Kauai",Surfing,Jim Rawlinson,M,"No injury, surfboard bitten",N,R. Collier,Honolulu Advertiser,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.19-Rawlinson.pdf +5183,2010.04.13,13-Apr-10,2010,Unprovoked,South africa,Eastern Cape Province,"East Beach, Port Alfred",Surfing,Brendan Denton,M,Both feet bitten,N,Dispatch Now,4/13/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.13-Denton.pdf +5182,2010.04.04,04-Apr-10,2010,Unprovoked,Egypt,Sinai Peninsula,Sharm el-Sheikh ,Swimming / treading water,James Elliott,M,Lacerations to left ankle and foot,N,J. Elliott; Blackpool Gazette,4/16/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.04-Elliot.pdf +5181,2010.03.27, 27-Mar-2010,2010,Unprovoked,Reunion,Saint-Benoit,Bittern,Surfing,Oliver Schorebreak,M,"No injury, board bitten",N,C. Ekstander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.03.27-Schorebreak.pdf +5180,2010.02.19,190Feb-2010,2010,Unprovoked,New zealand,South Island,Tahunanui Beach,Swimming,Paul Baird,M,Bruised but otherwise unhurt,N,Nelson Mail,2/23/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.19-Baird.pdf +5179,2010.02.16,16-Feb-10,2010,Unprovoked,South africa,Eastern Cape Province,Yellow Sands Point,Surfing,Michal du Plessis ,M,Lacerations to right leg,N,Die Burger,2/18/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.16-duPlessis.pdf +5178,2010.02.15,15-Feb-10,2010,Unprovoked,Fiji,Off Vanua Levu,Nara Reef,Scuba diving,Henry Usimewa,M,FATAL,Y,Fiji Times,2/17/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.15-Usimewa.pdf +5177,2010.02.13,13-Feb-10,2010,Unprovoked,Australia,Queensland,"Dent Island, Whitsundays",Snorkeling,Patricia Trumbull,F,Lacerations to legs & buttocks,N,Sydney Morning Herald,2/14/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.13-Trumbull.pdf +5176,2010.02.11,11-Feb-10,2010,Unprovoked,Australia,New South Wales,"Mona Vale Beach, Sydney",Surfing,Paul Welsh,M,"Minor injury, lacerations to left lower leg",N,John West, Taronga Zoo,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.11-Welsh.pdf +5175,2010.02.06.R,06-Feb-2010,2010,Provoked,New zealand,South Island,Cosy Nook,Spearfishing,Aaron Muilwyk,M,"No injury, shark bit his speargun after he used it to prod the shark PROVOKED INCIDENT",N,Southland Times,2/6/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.R-Muilwyk.pdf +5174,2010.02.06.b,06-Feb-10,2010,Unprovoked,Australia,New South Wales,Turners' Beach,Body boarding,Dean Everson,M,"No injury, shark & board collided",N,K. Matthews,Lismore Northern Star,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.b-Everson.pdf +5173,2010.02.06.a,06-Feb-10,2010,Provoked,Usa,Florida,Riviera Beach,Surf fishing / wading,male,M,Leg bitten while trying to free a hooked shark PROVOKED INCIDENT,N,WPTV.com,2/7/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.a-RivieraBeach.pdf +5172,2010.02.04,04-Feb-10,2010,Invalid,Guam,Merizo,Achang Reef,Spearfishing (free diving),Andrew Duenas,M,Shark bites were post-mortem,Y,B. Kelman,Pacific Daily News,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.04-Duenas.pdf +5171,2010.02.03,03-Feb-10,2010,Unprovoked,Usa,Florida,"Stuart, Martin County",Kite Boarding,Stephen Howard Schafer,M,FATAL,Y,TC Palm,2/3/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.03-Schafer.pdf +5170,2010.02.01,01-Feb-10,2010,Provoked,New zealand,South Island,Oreti Beach,Boogie Boarding,Lydia Ward,F,Stepped on shark PROVOKED INCIDENT,N,R.D. Weeks,GSAF; K. Ritchie,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.01-Ward.pdf +5169,2010.01.30,31-Jan-10,2010,Unprovoked,Brazil,Rio Grande Do Sul,"Atlantis Beach, near Tramandai",Surfing,Andrei Johann,M,Foot bitten,N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.30-Andrei.pdf +5168,2010.01.27,27-Jan-10,2010,Unprovoked,Australia,Queensland,Archie's Beach,Surfing,Ashley Ramage,M,"No injury, surfboard bitten",N,C. Ekstander,GSAF; Bundberg News-Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.27-Ramage.pdf +5167,2010.01.22.b,22-Jan-10,2010,Unprovoked,United arab emirates (uae),Dubai,"Umm Suqeim Beach, Dubai",Surfing,Michael Geraghty,M,Laceration to bottom of foot,N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.b-Geraghty.pdf +5166,2010.01.22.a,22-Jan-10,2010,Unprovoked,Australia,Victoria,Geelong,Surfing,Dr. Pat Lockie,M,Lacerations to right hand ,N,C. Dickens,Geelong Advertiser,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.a-Lockie.pdf +5165,2010.01.12,12-Jan-10,2010,Unprovoked,South africa,Western Province,Fish Hoek,Standing,Lloyd Skinner,M,FATAL,Y,L. Cohen,Times Live,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.12-Skinner.pdf +5164,2010.01.09.d,09-Jan-10,2010,Unprovoked,Australia,Torres Strait,Thursday Island,Snorkeling,Reenie Morrissey ,F,2 sets of minor lacerations below her right knee,N,Courier-Mail,1/10/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.d-Morrissey.pdf +5163,2010.01.09.c,09-Jan-10,2010,Unprovoked,Vietnam,Binh Dinh Province,Quy Nhon ,Unknown,female,F,Minor injuries,N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.c-woman.pdf +5162,2010.01.09.b,09-Jan-10,2010,Unprovoked,Vietnam,Binh Dinh Province,Quy Nhon ,Unknown,Mang Duc Hanh,M,Right wrist bitten,N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.b-Hanh.pdf +5161,2010.01.09.a,09-Jan-10,2010,Unprovoked,Vietnam,Binh Dinh Province,Quy Nhon ,Bathing,Nguyen Minh Tuan ,M,Left arm bitten twice,N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.a-Tuan.pdf +5160,2010.01.06,06-Jan-10,2010,Unprovoked,Usa,Florida,Elliot Key,Spearfishing,Dreice Chirino,M,Lacerations to arm,N,WSVN-TV,1/7/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.06-Chirino.pdf +5159,2010.01.05,05-Jan-10,2010,Unprovoked,South africa,Eastern Province,"Nahoon, East London",Surfing,male,M,"No injury, reportedly knocked of his board by a shark",N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.05-Nahoon-surfer.pdf +5158,2009.12.29,29-Dec-09,2009,Unprovoked,South africa,Eastern Cape Province,Port Alfred,Wading,Simon Bruce,M,Lacerations to left foot,N,News24.com,12/31/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.29-Bruce.pdf +5157,2009.12.26,26-Dec-09,2009,Provoked,Australia,New South Wales,Avoca Beach,Swimming,John Sojoski ,M,Lacerations to lower left leg after stepping on the shark PROVOKED INCIDENT,N,Express Advocate,12/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.26-Sojoski.pdf +5156,2009.12.22,22-Dec-09,2009,Unprovoked,Mozambique,Maputo Province,Ponta do Ouro,Swimming,Peter Fraser,M,Multiple lacerations to right torso & arm. Defense wounds on hands,N,Beeld,12/29/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.22-Fraser.pdf +5155,2009.12.20.b,20-Dec-09,2009,Boat,Australia,Queensland,Mudjimba Island,Kayaking,2 males,M,"No injury to occupants, kayak bumped by shark",N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.b-Queensland-Kayak.pdf +5154,2009.12.20.a,20-Dec-09,2009,Unprovoked,Australia,Queensland,Lamont Reef,Spearfishing,John Pengelly,M,Lacerations to hand & forearm,N,Brisbane Times,12/20/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.a-Pengelly.pdf +5153,2009.12.18,18-Dec-09,2009,Unprovoked,South africa,Eastern Cape Province,"Second Beach, Port St. Johns",Paddling on kneeboard,Tshintshekile Nduva,M,FATAL,Y,B. Jordan & A. Ferreira,Times Live,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.a-Nduva.pdf +5152,2009.12.18,18-Dec-09,2009,Invalid,South africa,KwaZulu-Natal,"North Beach, Durban",Surfing,Lance Morris,M,"Minor lacerations to left leg. nitially reported as a shark bite, but involved a barracuda",N,M. Addison,C. Eckstander,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.b-Morris-barracuda bite.pdf +5151,2009.12.16,16-Dec-09,2009,Unprovoked,New zealand,South Island,Clark Island,Swimming to shore from capsized kayak,Maurice Bede Philips,M,FATAL,Y,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.16-Philips.pdf +5150,2009.12.13,13-Dec-09,2009,Unprovoked,Australia,New South Wales,Coffee Head,Surfing,Nigel Hughes,M,Laceration to big toe,N,Northern Star,12/14/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.13-Hughes.pdf +5149,2009.12.12,12-Dec-09,2009,Boat,Australia,New South Wales,Hawks Nest Beach,Rowing,Surf boat with 5 lifesavers on board,Unknown,No injury to occupants; shark bit steering oar,N,Herald Sun,12/13/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.12-Ross-boat.pdf +5148,2009.12.06,05-Dec-09,2009,Provoked,Usa,New Jersey,"Adventure Aquarium, Camden",Diving,Robert Large,M,Lacerations & puncture wounds to right calf & ankle when diver accidentally backed into the shark PROVOKED INCIDENT,N,R. Large; Philadelphia Daily News,4/22/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.06-Large.pdf +5147,2009.11.25,25-Nov-09,2009,Invalid,Usa,California,"Huntington Beach, Orange County",Surfing,Kenneth Hall,M,Puncture wounds to right foot,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.25-Hall.pdf +5146,2009.11.24,24-Nov-09,2009,Unprovoked,Usa,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Wading,Garrett Gollihugh,M,Left foot bitten,N,My Fox Orlando,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.24-Gollighugh.pdf +5145,2009.11.16.b,16-Nov-09,2009,Unprovoked,Usa,California,"Loch Lomond, Marin County",Fishing,James White,M,Puncture wounds and minor lacerations to dorsal surface of his left hand,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.b-White.pdf +5144,2009.11.16.a,16-Nov-09,2009,Unprovoked,Usa,Florida,"Jupiter, Palm Beach County",Surfing,Steven Burdelski,M,Foot bitten,N,A. Pefley,Channel 12 News,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.a-Burdelski.pdf +5143,2009.11.13,13-Nov-09,2009,Unprovoked,Usa,Florida,"Jupiter, Palm Beach County",Surfing,Melissa Hardcastle,F,Foot bitten,N,C. Scofield,WPTV.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.13-Hardcastle.pdf +5142,2009.11.11,11-Nov-09,2009,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Foot bitten,N,Captain S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.11-NewSmyrnaBeach.pdf +5141,2009.11.08,08-Nov-09,2009,Unprovoked,Australia,South Australia,Second Valley,Kayaking,Dean Brougham,M,Ankle bitten,N,Adelaide Now,11/19/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.08-Brougham.pdf +5140,2009.11.05,05-Nov-09,2009,Unprovoked,Usa,California,"Davenport, Santa Cruz County",Surfing,Eric Geiselman,M,"No injury, board broken in half",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.05-Geiselman.pdf +5139,2009.10.30,30-Oct-09,2009,Unprovoked,Australia,Victoria,Portland,Kayaking,Rhys Gadsden,M,"No injury, shark bit kayak",N,The Age,10/31/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.30-Gadsden.pdf +5138,2009.10.29.R,29-Oct-2009,2009,Unprovoked,Mozambique,Inhambane Province,Off Vilanculo,Spearfishing,Mark Rogotzki ,M,Left ankle & foot bitten,N,R. Allen; J. Little,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.29.R-Rogotzki.pdf +5137,2009.10.28,28-Oct-09,2009,Unprovoked,Australia,New South Wales,Lennox Heads,Paddle-boarding,Zahli Lowe,F,"No injury, shark bit rear of paddleboard",N,Northern Star,10/30/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.28-Lowe.pdf +5136,2009.10.24,24-Oct-09,2009,Unprovoked,Usa,California,"San Onofre, San Diego County ",Surfing,Scott Barton,M,"3 puncture wounds to big toe of left foot, and laceration on arch of foot",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.24-Scott-Barton.pdf +5135,2009.10.19,19-Oct-09,2009,Unprovoked,Usa,Hawaii,"Kalama Park, Maui",Surfing,Scott Henrich,M,Bitten on upper right thigh & right ankle,N,Star Bulletin,10/19/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.19-Henrich.pdf +5134,2009.10.18,18-Oct-09,2009,Unprovoked,Panama,Bocas,Playa La Cabaña ,Wading,female,F,Arm & torso bitten,N,A. Blaker,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.18-Panama.pdf +5133,2009.10.17,17-Oct-09,2009,Provoked,Scotland,Fife,Deep Sea World Aquarium,Diving,male,M,15-20 puncture wounds to arm by captive shark PROVOKED INCIDENT ,N,Telegraph.co.uk,10/18/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.17-DeepSeaWorld.pdf +5132,2009.10.14.R,14-Oct-2009,2009,Unprovoked,Australia,Western Australia,Unknown,Diving,Matt Bowen,M,Severe lacerations to lower right leg,N,BBC News,10/19/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.14.R-Bowen.pdf +5131,2009.10.09,09-Oct-09,2009,Unprovoked,Usa,California,"San Onofre State Beach, San Diego County",Surfing,Bernard Wagor,M,Laceration to shin of left leg,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.09-Wagor.pdf +5130,2009.10.02,02-Oct-09,2009,Provoked,United kingdom,Devon,Mewstone Rock,Fishing,male,M,Injury to forearm from shark's spine PROVOKED INCIDENT ,N,The Herald,10/2/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.02-UK.pdf +5129,2009.09.26,26-Sep-09,2009,Unprovoked,Usa,Florida,"Key Colony Beach, Monroe County",Swimming,Daniel Callahan,M,Laceration to right foot,N,keysnet.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.26-Callahan.pdf +5128,2009.09.18,18-Sep-09,2009,Unprovoked,Unknown,Unknown,Unknown,Unknown,Nguyen Quang Vinh ,M,Lower right leg bitten,N,"H. Trong & U. Phuong,.Saigon Daily",1/13/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.18-Vinh.pdf +5127,2009.09.15,15-Sep-09,2009,Provoked,Somalia,Unknown,300 miles off the coast ,Fishing,a Spanish sailor,M,Arm bitten PROVOKED INCIDENT ,N,SMCM,9/20/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.15-SpanishSailor.pdf +5126,2009.09.13,13-Sep-09,2009,Provoked,Brazil,Pernambuco,"Piedade, Recife",Unknown,Maurício da Silva Monteiro,M,Cause of death was drowning; his remains were scavenged by sharks,Y,C. Ekstander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.13-Monteiro.pdf +5125,2009.09.12,12-Sep-09,2009,Invalid,Usa,North Carolina,"Corolla, Currituck County",Swimming,Richard A Snead,M,FATAL,Y,C. Creswell,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.12-Snead.pdf +5124,2009.09.07,07-Sep-09,2009,Unprovoked,Brazil,Pernambuco,"Piedade, Recife","Swimming, attempting to rescue a girl believed to be drowning",Geovanni Tiago Barbosa ,M,FATAL,Y,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.07-Barbosa.pdf +5123,2009.09.02,02-Sep-09,2009,Invalid,Nevis,Unknown,Castle Beach,Swimming,Brian Mills,M,Death was due to drowning. Two days later his remains were recovered from a 12' tiger shark,Y,Dr. C. Jacobs; J. Daniel,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.02-Mills.pdf +5122,2009.09.01,01-Sep-09,2009,Provoked,Solomon islands,Makira-Ulawa Province,"Kirakira, Makira Island (formerly San Cristobal)",Fishing,male,M,Injuries to face & neck PROVOKED INCIDENT,N,Solomon Star,9/4/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.01-Kirakira.pdf +5121,2009.08.30,30-Aug-09,2009,Unprovoked,Usa,California,"Huntington Beach, Orange County",Surfing,Cory Hedgepeth,M,No injury,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.30-Hedgepeth.pdf +5120,2009.08.29,29-Aug-09,2009,Unprovoked,South africa,Western Cape Province,Glentana,Surfing,Gerhard van Zyl,M,FATAL,Y,Cape Argus,8/30/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.29-VanZyl.pdf +5119,2009.08.25,25-Aug-09,2009,Unprovoked,Usa,California,"Terramar Beach, Carlsbad, San Diego County",Swimming,Bethany Edmund,F,Puncture wounds to left foot & calf,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.25-Edmund.pdf +5118,2009.08.11,11-Aug-09,2009,Unprovoked,South africa,KwaZulu-Natal,Alkantstrand ,Body boarding,Jeandre Nagel,M,"No injury, shark bit bodyboard",N,Zululand Observer,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.11-Nagel.pdf +5117,2009.08.10,10-Aug-09,2009,Unprovoked,Usa,Florida,"Ponce, Volusia County",Swimming,A visitor from Spain,M,Puncture marks on left foot,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.10-Volusia.pdf +5116,2009.08.06,06-Aug-09,2009,Unprovoked,Usa,Hawaii,Kawa'a ,Surfing,Dylan Crawford,M,"No injury, surfboard bitten",N,Big Island Weekly,8/19/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.06-Crawford.pdf +5115,2009.08.01,01-Aug-09,2009,Unprovoked,Usa,Louisiana,"Curlew Island, Breton Sound",Wade Fishing,"Chris Haynes, Jr.",M,Right ankle & foot bitten,N,Clarion Ledger,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.01-Haynes.pdf +5114,2009.07.31,31-Jul-09,2009,Unprovoked,Bahamas,Abaco Islands,Spanish Cay,Spearfishing,Derek Mitchell,M,Lacerations to calf,N,WPTV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.31-Mitchell.pdf +5113,2009.07.30,30-Jul-09,2009,Unprovoked,Australia,New South Wales,Broken Head,Surfing,Zac Skyring,M,Left forearm grazed & puncture marks in wetsuit,N,Lismore Northern Star,7/31/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.30-Skyring.pdf +5112,2009.07.29,29-Jul-09,2009,Unprovoked,Vietnam,Binh Dinh Province,Quy Nhon ,Swimming,Hoang Thi Thuy Hong ,F,Foot bitten,N,CandOnline,1/15/2020,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.29-Hong.pdf +5111,2009.07.24.R,24-Jul-2009,2009,Unprovoked,Kenya,Mombasa,Likoni Channel,Washing his feet,male,M,FATAL,Y,Standard Digital,7/24/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.R-Likoni.pdf +5110,2009.07.24.b,24-Jul-09,2009,Unprovoked,Usa,Texas,South Padre Island,Wading,Deidre Casas,F,Lacerations to anterior left lower leg,N,KRGV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.b-Casas.pdf +5109,2009.07.24.a,24-Jul-09,2009,Invalid,Spain,Catalunya,Sant Salvador,Swimming,Unknown,F,Laceration to left foot,N,ABC-Spain,7/25/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.a-Spain.pdf +5108,2009.07.22.b,22-Jul-09,2009,Unprovoked,Usa,North Carolina,Holden Beach. Brunswick County,Swimming,Julia Anne Mittleberg,F,Laceration to left foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.b-Mittleberg.pdf +5107,2009.07.22.a,22-Jul-09,2009,Unprovoked,Usa,Florida,"Intracoastal Waterway, St. Petersburg",Swimming,Jenna James,F,Laceration to lower right leg,N,J. Eager; R. Reyes,Tampa Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.a-JennaJames.pdf +5106,2009.07.18,18-Jul-09,2009,Unprovoked,Vietnam,Binh Dinh Province,Quy Nhon ,Swimming,Nguyen Quang Huynh,M,Severe bite to right leg,N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.18-Haynh.pdf +5105,2009.07.11.b,11-Jul-09,2009,Provoked,Unknown,Unknown,Unknown,Spearfishing,John Cooper,M,Leg bitten by shark that had been shot in the head by another diver PROVOKED INCIDENT,N,Fox News,7/14/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.b-Cooper.pdf +5104,2009.07.11.a,11-Jul-09,2009,Unprovoked,Usa,California,"San Onofre, San Diego County ",Paddle-surfing,Brian Hovnanian,M,"No injury, shark collided with surfer & board",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.a-Hovnanian.pdf +5103,2009.07.07,07-Jul-09,2009,Unprovoked,South africa,Western Cape Province,"Jogensfontein, Stilbaai",Surfing,Paul Buckley,M,Leg bitten,N,Weekend Post,7/8/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.07-Buckley.pdf +5102,2009.07.05,05-Jul-09,2009,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Boogie Boarding,female,F,Right ankle bitten,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.05-Daytona.pdf +5101,2009.07.04,04-Jul-09,2009,Provoked,Usa,Florida,"Biscayne National Park, Miami",Swimming,Carmen Dominguez ,F,Thigh injured by hooked shark PROVOKED INCIDENT,N,Miami Herald,7//4/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.04-Miami.pdf +5100,2009.06.27,27-Jun-09,2009,Unprovoked,Australia,New South Wales,"Seven Mile Beach, Gerroa",Surfing,Les Wade,M,2-inch laceration to upper left arm,N,Brisbane Times,6/28/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.27-Wade.pdf +5099,2009.06.21,21-Jun-09,2009,Invalid,Usa,California,"Shell Beach, San Luis Obispo County",Surfing,male,M,Puncture wounds to foot,N,San Luis Obispo Tribune,6/24/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.21-California.pdf +5098,2009.06.16,16-Jun-09,2009,Invalid,Usa,Florida,"Melbourne Beach, Brevard County",Crawling,Kevin Crowley,M,2-inch laceration to upper left arm,N,Florida Today,1/17/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.16-Crowley.pdf +5097,2009.06.14.R,14-Jun-2009,2009,Provoked,Unknown,Unknown,Unknown,Fishing for sharks,Tran Van Quy,M,Hand bitten by hooked shark PROVOKED INCIDENT,N,Tin Tuc online,6/14/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.14.R-Quy.pdf +5096,2009.06.02.b,02-Jun-09,2009,Unprovoked,Egypt,St. Johns Reef,Habili Gafar,Scuba diving,"Nil, a dive guide",M,Lacerations to left hand,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.b-Nil.pdf +5095,2009.06.02.a,02-Jun-09,2009,Unprovoked,Egypt,St. Johns Reef,Habili Gafar,Scuba diving,"Luc, a Belgian diver",M,3 cm laceration to shoulder,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.a-Luc.pdf +5094,2009.06.01,01-Jun-09,2009,Unprovoked,Egypt,St. Johns Reef,Habili Gafar,Snorkeling,Katrina Tipio,F,FATAL,Y,A. Hamada; E.Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.01-Tipio.pdf +5093,2009.05.31,31-May-09,2009,Provoked,Taiwan,Off Green Island,Onboard the fishing vessel Chin Sheng Fa 13 ,Fishing,Zhang Sanqian,M,Lacerations to knee & left lower leg by electrocuted captive shark PROVOKED INCIDENT,N,Taiwan News,5/21/09,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.31-Sangian.pdf +5092,2009.05.25,25-May-09,2009,Provoked,Usa,Florida,"Clearwater Beach, Pinellas County",Swimming,Dana Joseph,M,Right foot bitten,N,Tampa Bay online,5/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.25-Joseph.pdf +5091,2009.05.17,17-May-09,2009,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Provido,M,Lacerations to left leg & foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.17-Provido.pdf +5090,2009.05.16.b,16-May-09,2009,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Bryan Heath,M,Lacerations to right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.b-Heath.pdf +5089,2009.05.16.a,16-May-09,2009,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,David Bryant,M,Lacerations to right hand,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.a-Bryant.pdf +5088,2009.05.12,12-May-09,2009,Provoked,Guam,North Region,Ritidian Point,Spearfishing,Jonathan Leon Guerrero,M,Speared shark bit his forearm PROVOKED INCIDENT,N,N. Delgado,Pacific News Center; KUAM.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.12-Guerrero.pdf +5087,2009.05.06,06-Mar-09,2009,Provoked,Bahamas,Exuma Islands,Unknown,Spearfishing,Luis Hernandez,M,Lacerations to right forearm after he poked the shark with his spear PROVOKED INCIDENT ,N,Sun Sentinel,5/8/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.06-Hernandez.pdf +5086,2009.04.28,28-Apr-09,2009,Unprovoked,Usa,Florida,"St. Augustine, St. John's County",Unknown,Alicia,F,Multiple lacerations to right foot & ankle,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.28-Alicia.pdf +5085,2009.04.25.R,25-Apr-2009,2009,Unprovoked,Usa,California,"San Onofre State Beach, San Diego County",Surfing,Drew Senner,M,No injury,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.25.R-Senner.pdf +5084,2009.04.21,21-Apr-09,2009,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,3 puncture wounds to posterior right ankle,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.21-NSB.pdf +5083,2009.04.20,20-Apr-09,2009,Unprovoked,Philippines,Batangas province,Mabini,Swimming,Gerald Perez,M,Legs bitten,N,Abs-cbnNEWS.com,4/22/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.20-Perez.pdf +5082,2009.04.19,19-Apr-09,2009,Unprovoked,Usa,Florida,"Carlin Park, Jupiter Inlet",Surfing,Bruce Klinker,M,Left foot bitten,N,UPI,4/20/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.19-Klinker.pdf +5081,2009.04.12,12-Apr-09,2009,Unprovoked,Australia,New South Wales,Fingal Bay,Surf skiing ,Heath Milne,M,"No injury, catapulted into the water & ski damage",N,Port Stephens Examiner,4/15/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.12-Milne.pdf +5080,2009.04.17.,17-Apr-09,2009,Unprovoked,Usa,Florida,"Walton Rocks, St Lucie County",Surfing,Alexander Wagner,M,Laceration to forearm,N,TC Palm,4/17/09,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.17-Wagner.pdf +5079,2009.04.11,11-Apr-09,2009,Invalid,Usa,Hawaii,Kona,Spearfishing,Paolo Dominici,M,Missing,N,CBS,4/14/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.11-Dominici.pdf +5078,2009.04.06.b,06-Apr-09,2009,Invalid,South africa,KwaZulu-Natal,Umtentweni,Swimming,Odwa Hlanganisela,M,Body not recovered,Y,Daily Dispatch,4/10/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.b-Hlanganisela.pdf +5077,2009.04.06.a,06-Apr-09,2009,Unprovoked,Usa,California,San Diego County,Spearfishing,"Raymundo Ayus, Jr.",M,Shark struck him but the diver was not injured,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.a-Ayus.pdf +5076,2009.04.03,03-Apr-09,2009,Unprovoked,Usa,Florida,"Sanibel Island, Lee County",Wading,Jack May,M,Lacerations to right foot and ankle,N,Cape Coral News,4/3/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.03-May.pdf +5075,2009.03.27,27-Mar-09,2009,Provoked,South africa,Eastern Cape Province,2-3 km north of Sunday's River mouth,Fishing ,Tony Dell,M,Calf bitten while helping angler measure the shark during fishing competition PROVOKED INCIDENT,N,The Herald (Port Elizabeth),3/27/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.27-TonyDell.pdf +5074,2009.03.21,21-Mar-09,2009,Unprovoked,South africa,Eastern Cape Province,"Second Beach, Port St. John's",Surfing,Luyolo Mangele,M,FATAL,Y,Daily Dispatch,3/22/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.21-Mangele.pdf +5073,2009.03.20,20-Mar-09,2009,Unprovoked,Australia,New South Wales,Blue Bay,Surfing,Calvin Galbraith,M,"Laceration to right foot, puncture wounds to calf",N,Madurah Mail,3/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.20-BatemansBay.pdf +5072,2009.03.19.b,19-Mar-09,2009,Unprovoked,Australia,New South Wales,South Broulee,Surfing,male,M,"No injury, shark damaged surfboard",N,ABC News,3/19/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.b-SouthBroulee.pdf +5071,2009.03.19.a,19-Mar-09,2009,Unprovoked,Australia,New South Wales,Bateman's Bay,Surfing,Bernadette Davis,F,"No injury, shark bit nose of surfboard",N,Canberra Times,3/20/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.a-Davis.pdf +5070,2009.03.18.a,18-Mar-09,2009,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,female,F,Minor bite to ankle,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.18.a-PonceInlet.pdf +5069,2009.03.17.R,17-Mar-2009,2009,Unprovoked,Malaysia,Strait of Malacca,Pulau Payar Island,Feeding fish,female,F,Minor injury,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.R-Malaysia.pdf +5068,2009.03.17,17-Mar-09,2009,Unprovoked,Usa,Hawaii,Alenuihaha Channel,Swimming,Mike Spaulding,M,"Minor injury, bite chest and left calf",N,B. Perry,Maui News,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.a-Spaulding.pdf +5067,2009.03.16.R,16-Mar-2009,2009,Provoked,Australia,Western Australia,"The Natural Jetty, Rottnest Island",Wading,male,M,Thigh bitten when he trod on the shark PROVOKED INCIDENT,N,The West,3/16/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.16.R-Rottnest-Island.pdf +5066,2009.03.06,06-Mar-09,2009,Unprovoked,New caledonia,South Province,Bourail,Surfing,Kevin Hannecart,M,FATAL,Y,Les Nouvelles Caledoniennes,3/7-10/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.06-Hannecart.pdf +5065,2009.03.02,02-Mar-09,2009,Provoked,South africa,Western Cape Province,Off Cape Point,Fishing,Gabriel Fernandez,M,Lacerations to arm and 2 fingers by hooked shark PROVOKED INCIDENT,N,Cape Times,3/3/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.02-Fernandez.pdf +5064,2009.03.01.b,01-Mar-09,2009,Boat,New zealand,North Island,Taranaki,Fishing,"boat, occupants: Boyd Rutherford & Hamish Roper",M,"No injury to occupants, shark bit propeller",N,Taranaki Daily News,3/3/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Taranaki.pdf +5063,2009.03.01.a,01-Mar-09,2009,Unprovoked,Australia,New South Wales,Avalon,Surfing,Andrew Lindop,M,Lacerations to leg,N,Sunday Telegraph,3/1/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Lindop.pdf +5062,2009.02.22,22-Feb-09,2009,Unprovoked,Australia,Queensland,Batt Reef,Fishing,male,M,Severe laceration to finger,N,The Australian,2/22/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.22-BattReef.pdf +5061,2009.02.18,18-Feb-09,2009,Unprovoked,Australia,New South Wales,"Shelly Beach, near Port Macquarie",Surfing,Glen Lockery,M,"No injury to surfer, but the nose of his board was broken",N,Daily Telegraph,2/24/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.18-Lockery.pdf +5060,2009.02.12,12-Feb-09,2009,Unprovoked,Australia,New South Wales,"Bondi Beach, Sydney",Surfing,Glen Orgias,M,Severe injury to hand ,N,The Sydney Morning Herald 2/24/2009,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.12-Orgias.pdf +5059,2009.02.11,11-Feb-09,2009,Unprovoked,Australia,New South Wales,"Garden Point, Woolloomooloo Sydney Harbour","Diving, but on the surface when bitten by the shark",Paul Degelder,M,Severe injuries to right hand & right thigh. Right hand surgically amputated & his right leg a week later,N,ABC News,2/11/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.11-Degelder.pdf +5058,2009.02.08,08-Feb-09,2009,Sea Disaster,Usa,Puerto Rico,Quebradillas,Air Disaster,occupant of a Cessna 206,M,It is probable that all 5 passengers died on impact. The body of one was scavenged by a shark,Y,C. Ekstander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.08-PuertoRicoAirCrash.pdf +5057,2009.02.07.b,07-Feb-09,2009,Unprovoked,Australia,New South Wales,Cellito Beach,Surfing,Durwin Keg,M,"No injury, surfboard dented",N,D. Keg; Herald Sun,2/8/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.b-Keg.pdf +5056,2009.02.07.a,07-Feb-09,2009,Unprovoked,Australia,New South Wales,Sandon,Surfing,Joe Kennard,M,"No injury, flung from surfboard by the shark",N,A. Vlastaras,Daily Examiner,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.a-Kennard.pdf +5055,2009.01.27.R,27-Jan-2009,2009,Provoked,Azores,Unknown,Onboard the fishing vessel Nuevo Cedes ,Fishing,A Spanish fisherman,M,Left forearm bitten PROVOKED INCIDENT,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.27.R-Azores.pdf +5054,2009.01.26.R,26-Jan-2009,2009,Invalid,Brazil,Unknown,Praia do Olho d'Aqua,Unknown,Luciano Guimaraes dos Santos,M,Probable drowning with post-mortem bites,Y,Jornal Pequeno,1/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.26.R-Brazil.pdf +5053,2009.01.25,25-Jan-09,2009,Unprovoked,Cuba,Guantanamo Province,Guantanamo Bay,Spearfishing,John Emory,M,Severe lacerations to lower left leg,N,J. Emory; Caribbean Net, 4/142009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.25-Emory.pdf +5052,2009.01.24.c,24-Jan-09,2009,Boat,New zealand,North Island,Alderman Islands,Fishing,7.2 m boat. Occupant Kelvin Travers,Unknown,"No injury to occupant, shark removed small auxiliary outboard motor",N,NZ Herald,1/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.c-NewZealand.pdf +5051,2009.01.24.b,24-Jan-09,2009,Unprovoked,Australia,New South Wales,"Surf Beach, Batemans Bay",Swimming,Jeremy McDonagh,M,Hand injured,N,ABC News,1/28/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.b-McDonough.pdf +5050,2009.01.24.a,24-Jan-09,2009,Unprovoked,South africa,Eastern Cape Province,"Second Beach, Port St. John's",Swimming,Sikhanyiso Bangilizwe,M,FATAL,Y,Daily Dispatch,1/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.a-Bangalizwe.pdf +5049,2009.01.23,23-Jan-09,2009,Invalid,Brazil,Maranhão,Olho d'Água ,Swimming,Luciano Guimarães dos Santos ,M,"Drowned, body scavenged by shark",Y,Jornal Pequeno,1/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.23-Santos.pdf +5048,2009.01.18,18-Jan-09,2009,Boat,Australia,Victoria,Off Tower Hill,Fishing,Occupants: Scott & John Fulton,M,"No injury to occupants, shark bit propeller",N,The Standard,1/20/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.18-Fulton-boat.pdf +5047,2009.01.16,16-Jan-09,2009,Unprovoked,New zealand,South Island,Karitane Beach,Surfing,Tane Tokona,M,"No injury, bumped off board by the shark",N,R. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.16-Tokana.pdf +5046,2009.01.13.R,13-Jan-2009,2009,Unprovoked,South africa,Western Cape Province,"Shark Alley, off Gansbaai",Unknown,4 poachers ,Unknown,FATAL,Y,ABC News,1/13/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.13.R-Poachers.pdf +5045,2009.01.12,12-Jan-09,2009,Unprovoked,Australia,New South Wales,"Windang, Lake Illawara",Snorkeling,Steven Fogarty,M,Puncture wounds to right calf,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.12-Fogarty.pdf +5044,2009.01.11.b,11-Jan-09,2009,Unprovoked,Australia,Tasmania,Binalong Bay,Surfing,Hannah Mighall,F,Severe lacerations to right leg,N,P. Kemp,GSAF; C. Black pp. 169-177,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.b-Mighall.pdf +5043,2009.01.11.a,11-Jan-09,2009,Unprovoked,Australia,New South Wales,Fingal Beach,Surfing,Jonathan Beard,M,Left thigh severely bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.a-Beard.pdf +5042,2009.01.10.R, 10-Jan-2009,2009,Boat,New zealand,North Island,Hawkes Bay,Fishing,Bry & David Mossman & 2 friends,Unknown,"No injury to occupants, shark hit boat & bit outboard motor",N,New Zealand Herald,1/10/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.R-Mossman-boat.pdf +5041,2009.01.10.a,10-Jan-09,2009,Unprovoked,Ecuador,Galapagos Islands,Isla Isabella,Surfing,Gonzalo Vásquez Alcívar ,M,Right lower leg bitten & defense wounds to hand,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.a-Alcivar.pdf +5040,2009.01.06,06-Jan-09,2009,Unprovoked,New zealand,North Island,Haumoana ,Swimming,Greg Sims,M,Posterior thigh bitten,N,R. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.06-Sims.pdf +5039,2009.01.00,Jan-09,2009,Unprovoked,Cuba,Guantanamo Province,Guantanamo,Spearfishing,John,Unknown,Lacerations to right calf,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.00-Cuba.pdf +5038,2008.12.30,30-Dec-08,2008,Invalid,Australia,Western Australia,Port Kennedy Beach,Crabbing,5 m aluminum dinghy - occupants Mr. & Mrs. Paul Vickery,Unknown,"Reports said a shark attacked the dinghy, but Vickery said it did not",N,Ninemsn,12/30/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.30-Vickery.pdf +5037,2008.12.27.d,27-Dec-08,2008,Boat,Australia,Tasmania,near Schouten Island,Yacht race,Wild Oats XI,Unknown,No injury to occupants - shark became entangled in aft rudder,N,Sydney Morning Herald,12/28/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.d-WildOats.pdf +5036,2008.12.27.c,27-Dec-08,2008,Unprovoked,Australia,New South Wales,Seal Rocks,Boogie Boarding,Bayden Schumann,M,"No injury, shark tore his swim fin",N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.c-Schumann.pdf +5035,2008.12.27.b,27-Dec-08,2008,Unprovoked,Australia,New South Wales,"Long Reef, north of Sydney",Kayaking,Steve Kulcsar,M,"No injury, shark struck kayak, catapulting him into the water",N,Canberra Times,12/28/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.b-Kulcsar.pdf +5034,2008.12.27.a,27-Dec-08,2008,Unprovoked,Australia,Western Australia,Port Kennedy Beach,Snorkeling,Brian Guest,M,FATAL,Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.a-Guest.pdf +5033,2008.12.20,20-Dec-08,2008,Unprovoked,Usa,California,"Dillon Beach, Marin County",Kayaking,Tony Johnson,M,"No injury, shark struck paddle",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.20-Johnson.pdf +5032,2008.12.14,14-Dec-08,2008,Unprovoked,New zealand,North Island,Maraetai,Fishing,Ken Lindberg,M,Lacerations to left calf and ankle,N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.14-Lindberg.pdf +5031,2008.12.10,10-Dec-08,2008,Provoked,South africa,Western Cape Province,Plettenberg Bay,Fishing,Luke Parker,M,"Lacerations to knees, thigh and hip by hooked shark PROVOKED iNCIDENT ",N,The Herald,12/12/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.10-Parker.pdf +5030,2008.12.06,06-Dec-06,2008,Boat,Australia,New South Wales,Mowarry Point,Fishing,"6 m Seaduce - Occupants: Allen Roberts, Jason Savage & Rob Lindsay.",Unknown,Shark bit boats sea anchor,N,S. Chenhall,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.06-boat_Seaducer.pdf +5029,2008.12.00,Dec-08,2008,Unprovoked,Mozambique,Inhambane Province,Chidenguele,Spearfishing,Darryl Kriel,M,FATAL,Y,J. Little,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.00-Kriel.pdf +5028,2008.11.28,28-Nov-08,2008,Unprovoked,Egypt,Red Sea,Elphinstone Reef,Scuba diving,female diver,F,Lacerations to fingers,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.28-ElphinstoneReef.pdf +5027,2008.11.25,25-Nov-08,2008,Sea Disaster,Philippines,Batanes Provine,Luzon Strait,Sinking of the cargo ship Mark Jason,4 crew,M,"Of the 20 crew, 4 were bitten by shark. None of their iinjuries were life-threatening",N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.25-Philippines.pdf +5026,2008.11.24,24-Nov-08,2008,Unprovoked,Ecuador,Galapagos Islands,Santa Cruz,Unknown,a Danish tourist,F,Leg bitten,N,ecuadorinmediato.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.24-Galapagos.pdf +5025,2008.11.09.b,09-Nov-08,2008,Boat,Australia,South Australia,North Haven,Fishing,Unknown,M,"No injury to occupant, shark bit dinghy & motor",N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.b-dinghy-NorthHaven.pdf +5024,2008.11.09.a,09-Nov-08,2008,Sea Disaster,Taiwan,Unknown,50 miles off Kaohsiung,Fishing boat swamped in storm,Chen Te-hsing,M,FATAL,Y,Reuters,11/10/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.a-Taiwan.pdf +5023,2008.11.06,06-Nov-08,2008,Unprovoked,Philippines,Luzon,"off Paoay, Ilocos Norte Province",Fishing,Joel Bacud,M,Torso & righ arm bitten FATAL,Y,Sun Star,11/08/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.06-Bacud.pdf +5022,2008.10.22,22-Oct-08,2008,Provoked,Australia,New South Wales,"Oceanworld, Manley",Scuba diving,Steve Cloke,M,Small laceration to head from captive shark,N,Herald,10/22/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.22-Clote.pdf +5021,2008.10.21,21-Oct-08,2008,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Nicolas Wright,M,Legs bitten,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.21-Wright.pdf +5020,2008.10.12,12-Oct-08,2008,Provoked,Australia,Northern Territory,Darwin,Fishing,Geoff Johnson,M,Right leg injured by hook and hooked shark PROVOKED INCIDENT,N,Northern Territory News,10/14/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.12-Johnson.pdf +5019,2008.10.11,11-Oct-08,2008,Unprovoked,Australia,New South Wales,Lake Macquarie,Surfing,male,M,"No injury, board damaged",N,Herald,10/12/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.11-LakeMacquarie.pdf +5018,2008.10.08,08-Oct-08,2008,Unprovoked,Usa,Florida,"Santa Rosa Beach, Walton County",Fishing,Hudson Anthony,M,Lacerations,N,L. Garlngton,Memphis Commercial Appeal,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.08-Anthony.pdf +5017,2008.10.06,06-Oct-08,2008,Unprovoked,Croatia," Split-Dalmatia Count,","Smokvina Bay, Vis Island",Spearfishing,Damjan Pecek ,M,Calf bitten,N,A. De Maddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.06-Pecek.pdf +5016,2008.09.28.b,28-Sep-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,David Logan,M,Small puncture wounds to the heel of left foot,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.b-Logan.pdf +5015,2008.09.28.a,28-Sep-08,2008,Unprovoked,Usa,Florida,Bethune Beach,Surfing,David Carr,M,Right foot bitten,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.a-Carr.pdf +5014,2008.09.15,15-Sep-08,2008,Provoked,Australia,Northern Territory,Near Croker Island,Swimming,Quentin Gorrell,M,Right hand lacerated by netted shark PROVOKED INCIDENT,N,Northern Territory News,9/18/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.15-Gorrell.pdf +5013,2008.09.14,14-Sep-08,2008,Unprovoked,Usa,Florida,"Ormond-by-the-Sea, Volusia County",Swimming,Unknown,M,Lacerations to foot,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.14-Ormond-by-the-Sea.pdf +5012,2008.09.09,09-Sep-08,2008,Unprovoked,Usa,Hawaii,"Ka'a'awa, Oahu",Surfing,Todd Murashige,M,Bitten on right thigh & calf,N,Honolulu Advertiser,9/10/08,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.09-Murashige.pdf +5011,2008.09.08,08-Sep-08,2008,Unprovoked,Usa,California,"Surf Beach, Lompoc, Santa Barbara County",Surfing,Kyle K.,M,"No injury to surfer, board bitten",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.08-Kyle.pdf +5010,2008.09.07,07-Sep-08,2008,Unprovoked,Australia,New South Wales,"Clarks Beach, Byron Bay",Surfing,John Morgan,M,Shark became tangled in his surfboard leash. The surfer was not injured,N,Mailonline.com,9/8/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.07-Morgan.pdf +5009,2008.09.06.b,06-Sep-08,2008,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,male,M,Minor injury to foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.b-NSB.pdf +5008,2008.09.06.a,06-Sep-08,2008,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,male,M,Minor injury to foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.a-NSB.pdf +5007,2008.09.01,01-Sep-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Joe McGauley,M,Shark bumped right ankle,N,J. McGauley,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.01-McGauley.pdf +5006,2008.09.00,Sep-08,2008,Unprovoked,Usa,Florida,Hutchinson Island,Surfing,Daryl Zbar,M,Right hand bitten,N,C. Johannson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.00-Zbar.pdf +5005,2008.08.30.c,30-Aug-08,2008,Unprovoked,Australia,New South Wales,"Tallow Beach, Byron Bay",Surfing,Ben Vining,M,"No injury, bumped off board by the shark",N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.c-Vining.pdf +5004,2008.08.30.b,30-Aug-08,2008,Invalid,Usa,Hawaii,"McKenzie Beach Park in Pahoa, Hawai'i ",Swimming,Kameron Brown,M,Death was probably due to drowning,Y,D. Nakaso,Honolulu Advertiser,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.b-Brown.pdf +5003,2008.08.30.a,30-Aug-08,2008,Provoked,England,North Devon, Lundy Island,Fishing,Stephen Perkins,M,Wrist bitten by hooked shark PROVOKED INCIDENT,N,Telegraph.co.uk,9/1/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.a-Perkins.pdf +5002,2008.08.28,28-Aug-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Thomas Gold,M,Superfical cut to left ankle,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.28-Gold.pdf +5001,2008.08.27,27-Aug-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Alexander Zgura,M,Lacerations to lower left leg,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.27-Zgura.pdf +5000,2008.08.24,24-Aug-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County","Swimming, towing surfboard",Jacob Shoup,M,Minor injury to left foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.24-Shoup.pdf +4999,2008.08.22,24-Aug-08,2008,Invalid,Usa,North Carolina,"Surf City, Topsail Island, Pender County",Surfing,Jessica Brothers,F,Calf bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.22-Brothers.pdf +4998,2008.08.20,20-Aug-08,2008,Unprovoked,Usa,Florida,"Sanibel Island, Lee County",Swimming,Jack Miller,M,3 lacerations to forearm,N,News-Press.com ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.20-JackMiller.pdf +4997,2008.08.18,18-Aug-08,2008,Invalid,Usa,South Carolina,"North Myrtle Beach, Horry County",Unknown,male,M,Minor injuries,N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.18-boy-SC.pdf +4996,2008.08.16,16-Aug-08,2008,Unprovoked,Usa,US Virgin Islands,Buck Island,Treading water,Elizabeth Riggs,F,Severe lacerations to left foot,N,M. Levne,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.16-Riggs.pdf +4995,2008.08.12,12-Aug-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Emma Klopchin ,F,Puncture wounds & 3-inch laceration to right calf,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.12-Klopchin.pdf +4994,2008.08.11,11-Aug-08,2008,Unprovoked,Usa,Hawaii,"Ala Moana Beach Park, Oah'u",Diving,male,M,"No injury, shark grabbed his bag of fish",N,Honolulu Advertiser,8/13/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.11-AlaMoana.pdf +4993,2008.07.30.R,30-Jul-08,2008,Unprovoked,Australia,Victoria,Levys Beach,Surfing,Aaron Seare,M,"No injury, surfboard leash severed",N,Herald Sun,7/31/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30-Seare.pdf +4992,2008.07.30,30-Jul-2008,2008,Unprovoked,Unknown,Unknown,Unknown,Unknown,Michael Rutzen,M,Lacerations to fingers,N,http://www.youtube.com/watch?v=0jVJFXlapWY&feature=related,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30.R-Rutzen.pdf +4991,2008.07.27,27-Jul-08,2008,Unprovoked,Panama,San Carlos,Playa Teta,Swimming or surfing,Gerardo Solis ,M,5 lacerations to left foot,N,International Herald Tribune,7/28/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.27-Solis.pdf +4990,2008.07.26.b,26-Jul-08,2008,Unprovoked,Mexico,Cabo San Lucas,Unknown,Swimming,Ryan Seacrest,M,3 puncture wounds to toe,N,Fox News,7/28/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.b-Seacrest.pdf +4989,2008.07.26.a,26-Jul-08,2008,Unprovoked,Usa,Hawaii,"Honokowai, Maui",Swimming,U. Mataafa,M,Minor injury,N,Maui News,7/27/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.a-Maui +4988,2008.07.25.b,25-Jul-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Ethan Fulton,M,Right foot bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.b-Fulton.pdf +4987,2008.07.25.a,25-Jul-08,2008,Unprovoked,Usa,Hawaii,"Lahilahi Point, Oahu",Snorkeling,Kaori Fiack ,F,Forearm bitten ,N,Honolulu Star Bulletin,7/26/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.a-Fiack.pdf +4986,2008.07.24.b,24-Jul-08,2008,Unprovoked,Usa,North Carolina,"Surf City, Topsail Island, Pender County",Wading,Jake Martin,M,Minor lacerations to toe,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.b-Martin.pdf +4985,2008.07.24.a,24-Jul-08,2008,Unprovoked,Usa,North Carolina,"Topsail Island, Pender County",Wading,Madeline Sinsley ,F,Lacerations to dorsum of right foot ,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.a-Sinsley.pdf +4984,2008.07.23,23-Jul-08,2008,Provoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Troy Zettle,M,Foot bitten after he stepped on the shark PROVOKED INCIDENT,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.23-Zettle.pdf +4983,2008.07.19,19-Jul-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,S.A.,M,Lacerations to lower left leg,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.19-NewSmyrnaBach.pdf +4982,2008.07.18,18-Jul-08,2008,Unprovoked,Egypt,Unknown,Daedalus Reef,Diving,Russian male,M,Leg severed,N,Ocean7,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.18-RedSea.pdf +4981,2008.07.13,13-Jul-08,2008,Invalid,Usa,North Carolina,"Carolina Beach, New Hanover County",Body surfing,Donald Griffin,M,"Bruises, abrasions and some spinal and nerve damage when collided with marine animal, possibly a shark or dolphin.",N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.13-Griffin.pdf +4980,2008.07.11,11-Jul-08,2008,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Surfing,male,M,Laceration to foream,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.11-Isle-of-Palms.pdf +4979,2008.07.09,09-Jul-08,2008,Unprovoked,Usa,North Carolina,"Emerald Isle, Carteret County",Swimming,Bailleigh Foster,F,Lacerations to right foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.09-Foster.pdf +4978,2008.07.05,05-Jul-08,2008,Unprovoked,Usa,South Carolina,"Litchfield Beach, Georgetown County",Unknown,J.L.,F,Lacerations to right foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.05-Lunti.pdf +4977,2008.07.00,Late Jul-2008,2008,Boat,United kingdom,Sussex,"Rock-a-Nore, Hastings",Rowing an inflatable dinghy,Occupants: Luke Jones & James Sequin ,M,Shark leapt into & damaged the dinghy but no injury to occupants,N,Hastings Observer,8/1/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.00-UK-dinghy.pdf +4976,2008.06.28.c,28-Jun-08,2008,Invalid,Usa,Hawaii,"Kamilo Point, Hawai'i",Wading,Nathan Labarios,M,Probable drowning with post-mortem bites,Y,Honolulu Star Bulletin,6/30/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.c-Labarios.pdf +4975,2008.06.28.b,28-Jun-08,2008,Unprovoked,Bahamas,Abaco Islands,Unknown,Spearfishing,Max Briggs,M,Lacerations to calf,N,M. Briggs; C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.b-Briggs.pdf +4974,2008.06.28.a,28-Jun-08,2008,Unprovoked,South africa,Western Cape Province,Mossel Bay,Surf skiing ,Kobus Maritz,M,"No injury, ski bitten",N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.a-Maritz.pdf +4973,2008.06.26.R,26-Jun-2008,2008,Unprovoked,South africa,Western Cape Province,Struis Bay,Spearfishing (free diving),Kevin Macghie ,M,No injury,N,D. Inggs; Gletwyn Rubidge’s Spearfishing and Freediving blog,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.R-Macghie.pdf +4972,2008.06.26.b,26-Jun-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Minor laceration to foot,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.b-NSB.pdf +4971,2008.06.26.a,26-Jun-08,2008,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Swimming,Preston Pearman,M,Lacerations to hand,N,P. Pearman; C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.a-Pearman.pdf +4970,2008.06.24,24-Jun-08,2008,Unprovoked,Brazil,Bahia,Guarajuba,Surfing,Ricardo Garcia Santo Sé  ,M,"No injury, board bitten",N,O Globo,6/25/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.24-Brazil.pdf +4969,2008.06.21,21-Jun-08,2008,Unprovoked,Usa,California,"West Cove, Catalina Island",Kayaking,Bettina Pereira,F," No injury. Shark bumped kayak, flinging her into the water. ",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.21-Pereira.pdf +4968,2008.06.20,20-Jun-08,2008,Unprovoked,Usa,Florida,"Fernandina Beach, Nassau County",Wading,Jennifer Cation,F,Lacerations to lower right calf,N,News-Leader,6/21/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.20-Cation.pdf +4967,2008.06.11,11-Jun-08,2008,Unprovoked,Brazil,Pernambuco,"Punta Del Chifre, Olinda",Surfing,Juan Rodrigues Galvao ,M,Laceration to left leg & foot,N,O Globo,6/12/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.11-Rodrigues.pdf +4966,2008.06.07,07-Jun-08,2008,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Body surfing,John Vasbinder,M,Lacerations & abrasions to right hand,N,TC Palm,6/20/08,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.07-Vasbinder.pdf +4965,2008.06.02.R,02-Jun-2008,2008,Boat,Scotland,Easter Ross,Balintore Bay,Fishing,"12' boat, 2 occupants",Unknown,No injury to occupants; shark struck their boat,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.02.R-Scotland.pdf +4964,2008.06.01.b,01-Jun-08,2008,Unprovoked,Usa,South Carolina,Cherry Grove,Body surfing,Madi Taff,F,Foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01.b-Taff.pdf +4963,2008.06.01.a,01-Jun-08,2008,Unprovoked,Brazil,Pernambuco,"Piedade, Recife",Swimming,Wellington dos Santos ,M,"Hand severed, buttocks bitten",N,Associated Press,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01-Santos.pdf +4962,2008.05.26,26-May-08,2008,Unprovoked,Usa,North Carolina,"Hammocks Beach State Park, Bear Island, Onslow County",Surfing,William Early,M,Biceps & lower arm bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.26-Early.pdf +4961,2008.05.24.b,24-May-08,2008,Sea Disaster,Bahamas,Grand Bahama Island,Off West End,Sea Disaster,unknown,M,Boat capsized in squall. 2 bodies scavenged by sharks,N,Associated Press,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.b-BahamasBoat.pdf +4960,2008.05.24.a,24-May-08,2008,Unprovoked,Mexico,Guerro,Playa Linda,Surfing,Bruce Grimes,M,Lacerations to right forearm and hand,N,Associated Press,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.a-Grimes.pdf +4959,2008.05.23,23-May-08,2008,Unprovoked,Mexico,Guerro,Pantla Beach,Surfing,Osvaldo Mata Valdovinos ,M,FATAL,Y,Reuters,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.23-Mata.pdf +4958,2008.05.14,14-May-08,2008,Unprovoked,Fiji,Yasawa Islands,Turtle Island,Night diving,Aisake Sadole,M,FATAL,Y,Fiji Times,5/15/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.14-Sidole.pdf +4957,2008.05.10,10-May-08,2008,Unprovoked,Australia,Western Australia,Albany,Swimming,Jason Cull,M,Severe lacerations to left leg,N,Perth Now,5/10/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.10-JasonCull.pdf +4956,2008.05.07.b,07-May-08,2008,Unprovoked,New caledonia,North Province,Hienghène,Fishing,male,M,Lower legs bitten,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.b-NewCaledonia.pdf +4955,2008.05.07.a,07-May-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Zane Atcha,M,2 inch laceration to left lower calf.,N,M. Johnson,Daytona News-Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.a-Atcha.pdf +4954,2008.05.01,01-May-08,2008,Provoked,Unknown,Unknown,Unknown,Fishing,male,M,Leg bitten by shark taken aboard Japanese trawler PROVOKED INCIDENT,N,National Sea Rescue Institute,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.01-fisherman.pdf +4953,2008.04.28.b,28-Apr-08,2008,Unprovoked,Mexico,Guerro,Troncones Beach,Surfing,Adrian Ruiz,M,FATAL Severe bite to right thigh,Y,Surfline.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.b-Ruiz.pdf +4952,2008.04.28.a,28-Apr-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,David Alger,M,3-inch laceration to dorsal surface of left foot,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.a-Alger.pdf +4951,2008.04.27,27-Apr-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Adam Tobin,M,Calf bitten,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.27-Tobin.pdf +4950,2008.04.26.b,26-Apr-08,2008,Unprovoked,New caledonia,North Province,Poindimié,Swimming,Olivier Vilain ,M,Lacerations to left foot,N,Les Nouvelles Calédonie,4/28/2008 & 4/29/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.b-Vilain.pdf +4949,2008.04.26.a,26-Apr-08,2008,Provoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Mark Pattison,M,Puncture wounds to right foot PROVOKED INCIDENT,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.a-Pattison.pdf +4948,2008.04.25,25-Apr-08,2008,Unprovoked,Usa,California,"Solana Beach, San Diego County",Swimming,Dave Martin,M,FATAL,Y,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.25-DaveMartin.pdf +4947,2008.04.20.b,20-Apr-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,female,M,Cuts & punctures to right foot,N,S. Petersohn,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.b-Girl.pdf +4946,2008.04.20.a,20-Apr-08,2008,Unprovoked,Australia,New South Wales,Crescent Head,Unknown,Jamie Adlington,M,Unknown,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.a-Adlington.pdf +4945,2008.04.19.R,19-Apr-2008,2008,Invalid,South africa,KwaZulu-Natal,Aliwal Shoal,Free-diving,Jean-Francois Avenier,M,"As he pushd the shark away from his camera, his finger was cut on a tooth",N,J. Avenier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.19.R-Avenier.pdf +4944,2008.04.18,18-Apr-08,2008,Invalid,Mexico,Quintana Roo,"Delfines Beach, Cancun",Swimming,Joram Galleros Villanueva,M,Probable drowning with post-mortem bites,Y,C.Johansson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.18-Villanueva.pdf +4943,2008.04.17,17-Apr-08,2008,Invalid,Australia,Queensland,"Duranbah, Greenmount Beach",Surfing,David Weale,M,2 puncture wounds to leg,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.17-Weale.pdf +4942,2008.04.15,15-Apr-08,2008,Unprovoked,Usa,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Bobby Phillips,M,Puncture wounds to right foot,N,B. Phillips,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.15-Phillips.pdf +4941,2008.03.28.a,28-Mar-08,2008,Unprovoked,Usa,Florida,"Near Cocoa Beach, Brevard County",Boogie Boarding,Teresa Holloway,M,Right foot bitten,N,D. MacAnnally,Eyewitness News ,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.a-Holloway.pdf +4940,2008.04.09.R,09-Apr-2008,2008,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Rutu Meli,M,Left forearm bitten ,N,C. Johansson,GSAF; Orange County Register 4/9/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.09.R-Meli-Fiji.pdf +4939,2008.04.08.R,08-Apr-2008,2008,Unprovoked,Usa,Florida,"1.4 miles south of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Surfing,Unknown,Unknown,Foot bitten,N,"News 13,4/8/2008",,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.R-NSB-2.pdf +4938,2008.04.08,08-Apr-08,2008,Unprovoked,Australia,New South Wales,"Lighthouse Beach, Ballina",Body boarding,Peter Edmonds,M,FATAL,Y,T. Peake,GSAF; NSW Police Force,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.a-Edmonds.pdf +4937,2008.04.03,03-Apr-08,2008,Unprovoked,Usa,Florida,"South of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Walking out of the water after surfing,Joey Giangrasso,M,Right foot & ankle bitten,N,S. Petersohn,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.03-Giangrasso.pdf +4936,2008.03.28.c,28-Mar-08,2008,Unprovoked,South africa,KwaZulu-Natal,Scottburgh,Fishing from surfski,Jacques Peens,M,Right leg bitten,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.c-Peens.pdf +4935,2008.03.28.b,28-Mar-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach / Ponce Inlet, Volusia County",Surfing,Mark Lemelin,M,Foot bitten,N,S. Petersohn,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.b-Lemelin.pdf +4934,2008.03.25,25-Mar-08,2008,Unprovoked,Usa,Florida,"Palm Beach Shores, Palm Beach County",Wading,Nick Canganelli,M,Shin bitten,N,The Plain Dealer,4/1/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.25-Canganelli.pdf +4933,2008.03.23,23-Mar-08,2008,Unprovoked,Usa,Florida,"South of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Walking out of the water after surfing,male,M,Three small lacerations/ punctures to right foot,N,S. Petersohn,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.23-NewSmyrnaBeach.pdf +4932,2008.03.21,21-Mar-08,2008,Unprovoked,Usa,Florida,"Beachway Avenue Approach, New Smyrna Beach, Volusia County",Wading,male,M,Two 3-inch lacerations to right ankle,N,S. Petersohn,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.21-NewSmyrnaBeach.pdf +4931,2008.03.15,15-Mar-08,2008,Unprovoked,Usa,Florida,"Lovers Key State Park, Bonita Springs, Lee County",Jet skiing,male,M,Minor injury,N,News-Press.com ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.15-BonitaSprings.pdf +4930,2008.03.07,07-Mar-08,2008,Unprovoked,Usa,California," Huntington Beach, Orange County",Surfing,Thomas Larkin,M,"No injury to surfer, surfboard bitten by the shark",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.07-Larkin.pdf +4929,2008.02.24,24-Feb-08,2008,Unprovoked,Bahamas,Northern Bahamas,"Dive site known as ""The End of the Map""",Diving,Markus Groh,M,"Leg bitten, FATAL",Y,Sun-Sentinel,2/25/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.24-Groh.pdf +4928,2008.02.21.R,21-Feb-2008,2008,Unprovoked,French polynesia,Society Islands,Tahiti,Spearfishing,Apia Hauta,M,Lacerations to face,N,Independent News Online,2/21/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.21.R-Hauta.pdf +4927,2008.02.15,15-Feb-08,2008,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,Harold Bradner,M,Lacerations to foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.15-Bradner.pdf +4926,2008.02.07,07-Feb-08,2008,Unprovoked,Australia,New South Wales,Horseshoe Bay,Surfing,Fiona Casey,F,Abrasions to elbow; collided with shark,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.07-Casey.pdf +4925,2008.02.06,06-Feb-08,2008,Unprovoked,Usa,Florida,"Opposite Patrick Air Force Base, Brevard County",Surf-skiing,Unidentified,M,Lacerations to foot,N,Vero Beach Press Journal,2/7/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.06-Surfer.pdf +4924,2008.01.29,29-Jan-08,2008,Unprovoked,South africa,KwaZulu-Natal,"Suncoast Pirates Beach, Durban",Surf-skiing,Wayne Symington,M,"No injury to surf-skiier, shark holed ski",N,The Mercury,2/1/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.29-Symington.pdf +4923,2008.01.27,27-Jan-08,2008,Provoked,Australia,Queensland,200 km east of Coolangatta ,Accidentally stood on hooked shark's tail before attempting to gut it ,Jarryd Tinson ,M,Laceration to left knee PROVOKED INCIDENT,N,News.com.au,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.27-Tinson.pdf +4922,2008.01.19.R,19-Jan-2008,2008,Invalid,New zealand,South Island,Marfells Beach,Wading,Matthew O'Neill,M,"Stingray envenomation, not a shark",N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.19.R-O'Neill.pdf +4921,2008.01.14,14-Jan-08,2008,Boat,New zealand,North Island,Omaha Beach,Attempting to chase shark out to sea,inflatable rescue boat. Occupants: Lauren Johnson &. Kris O'Neill,Unknown,"No injury to occupants, pontoon punctured",N,TV3; R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.14-inflatable-boat.pdf +4920,2008.01.10,10-Jan-08,2008,Unprovoked,Usa,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Jordan Marsden,M,Left foot bitten,N,Forida Today,1/18/2008; Channel 9 News,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.10-Marsden.pdf +4919,2008.00.00.b,Fall 2008,2008,Provoked,Usa,Florida,"Off Fort Pierce, St. Lucie County",Fishing for snapper,Johnny Silva,M,Minor injury to hand by hooked shark PROVOKED INCIDENT,N,Extremecoast.com/ 1/30/2009,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.b-Silva.pdf +4918,2008.00.00.a,Summer-2008,2008,Unprovoked,Mexico,Baja California,Playas de Tijuana,Surfing,Chase Edwards,M,Leg bitten,N,San Diego Reader,1/7/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.a-Edwards.pdf +4917,2007.12.21,21-Dec-07,2007,Unprovoked,Ecuador,Galapagos Islands,San Cristobal Island,Surfing,Sam Judd,M,Lacerations & puncture wounds to left thigh,N,R. D. Weeks,GSAF; Radio New Zealand,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.21-Judd.pdf +4916,2007.12.19,19-Dec-07,2007,Invalid,British virgin islands,Green Bay,Unknown,Scuba diving,Wayne Francis Johanning,M,Shark bites were post-mortem,Y,C. Johannson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.19-Johanning.pdf +4915,2007.12.18,18-Dec-07,2007,Unprovoked,Australia,New South Wales,Jimmy's Beach,Surfing,Ben Morcom,M,Severe lacerations to right buttock,N,Daily Telegraph,12/18/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.18-Morcom.pdf +4914,2007.12.15,15-Dec-07,2007,Unprovoked,Australia,Queensland,South Stradbroke Island,Swimming,Josh Edwards,M,Lacerations to hand,N,goldcoast.com.au,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.15-Edwards.pdf +4913,2007.12.14,14-Dec-07,2007,Invalid,Australia,New South Wales,Bondi ,Swimming,Scott Wright,M,Lacerations to left forearm,N,Sydney Morning Herald,12/16/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.14-Wright.pdf +4912,2007.12.10,10-Dec-07,2007,Unprovoked,Usa,Hawaii,"Waialua Bay, O'ahu",Surfing,Valentino Ramirez,M,"No injury, shark bit surfboard ",N,Honolulu Advertiser,12/12/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.10-Ramirez.pdf +4911,2007.12.09,09-Dec-07,2007,Unprovoked,New zealand,South Island,Kaikoura,Surfing,Olivia Hislop,F,"No injury, shark bit surfboard & severed leash",N,NZ Herald,12/11/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.09-Hislop.pdf +4910,2007.12.07,07-Dec-07,2007,Unprovoked,Brazil,Pernambuco,Itamaracá,Removing fish from a trap,Malvis Cristino de Souza,M,20 cm injury to left foot,N,JC online,12/8/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.07-Malvis.pdf +4909,2007.11.18,18-Nov-07,2007,Provoked,Australia,Western Australia,In a tidal creek 5 km from Wickham,Fishing,male,M,Minor injury to finger by netted shark PROVOKED INCIDENT,N,thewest.com.au,11/19/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.18-WA.pdf +4908,2007.11.08,08-Nov-07,2007,Unprovoked,Australia,New South Wales,"Wategos Beach, Byon Bay",Surfing,Craig Evans,M,"No injury, teethmarks in board & torn wetsuit",N,Northern Star,11/10/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.08-Evans.pdf +4907,2007.11.07,07-Nov-07,2007,Unprovoked,South africa,Western Cape Province,The Strand,Surfing,Andrew Smith,M,Lacerations to feet,N,The Times (Cape Town),11/9/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.07-Smith.pdf +4906,2007.11.06,06-Nov-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Joseph Fox,M,Cut to right knee,N,S. Petersohn; GSAF' Central Florida News,11/7/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.06-Fox.pdf +4905,2007.11.04,04-Nov-07,2007,Unprovoked,Usa,Florida,"Round Island Park, Indian River County",Surfing,Jeffrey Nolan,M,Lacerations to right leg,N,T.C. Palm,11/4/2007 & 11/5/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.04-Nolan.pdf +4904,2007.11.03,03-Nov-07,2007,Unprovoked,South africa,Eastern Cape Province,Bonza Bay,Surfing,Lee Mellin,M,Lacerations to thigh,N,Daily Dispatch,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.03-Mellin.pdf +4903,2007.11.00,Nov-11,2007,Invalid,Mexico,Baja California,Guadalupe Island,Shark diving,Patrick Walsh & Paul Damgaard ,M,White shark breached cage. No injury to occupants,N,Today Show,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.00-cage.pdf +4902,2007.10.29,29-Oct-07,2007,Unprovoked,Usa,Hawaii,"Wailea, Maui",Floating,Aaron Finley,M,Lacerations to left lower leg,N,KHNL8.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.29-Finley.pdf +4901,2007.10.15,15-Oct-07,2007,Unprovoked,Australia,New South Wales,Byron Bay,Surf-skiing,Linda Whitehurst,F,small laceration to wrist,N,Sydney Morning Herald,10/15/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.15-Whitehurst.pdf +4900,2007.10.13,13-Oct-07,2007,Unprovoked,Australia,Queensland,Holmes Reef,Spearfishing,Adam Wood,M,Laceration to calf,N,news.com.au,10/14/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.13-Wood.pdf +4899,2007.10.07,07-Oct-07,2007,Unprovoked,Usa,California,"Venice Pier, Venice, Los Angeles County",Surfing,Sam Bendall,M,4 scratches on left hand,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.07-Bendall.pdf +4898,2007.10.06,06-Oct-07,2007,Unprovoked,Usa,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,E.H.,M,Severe lacerations to right hand,N,E. H.,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.06-EH.pdf +4897,2007.09.30.c,30-Sep-07,2007,Unprovoked,Usa,California,"Santa Monica, Los Angeles County",Surfing,Andrew Sinagra,M,Puncture wound to foot,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.c-Sinagra.pdf +4896,2007.09.30.b,30-Sep-07,2007,Sea Disaster,Philippines,Palawan,Off Cagayancillo,"The 426-ton cargo ship Mia, laden with cement, capsized in heavy seas ",Unknown,M,"FATAL Only 4 of the 18 on board were rescued, some of the missing were allegedly killed by sharks",Y,Cebu Daily News,10/3/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.b-Mia.pdf +4895,2007.09.30.a,30-Sep-07,2007,Unprovoked,New caledonia,Loyalty Islands,"Bay of Luengoni, Lifou Island",Swimming,Stéphanie Belliard ,F,FATAL,Y,Les Nouvelles Caledoniennes,10/1/2007 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.a-Belliard.pdf +4894,2007.09.28,28-Sep-07,2007,Unprovoked,Bahamas,Grand Bahama Island,Sweetings Cay,Spearfishing,Leslie Gano,F,Thigh bitten,N,A. Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.28-Gano.pdf +4893,2007.09.27.b,27-Sep-07,2007,Unprovoked,Usa,California,"Moonstone Beach, Humboldt County",Surfing,Sue Snyder,F,"No injury to surfer, surfboard bitten",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.b-Snyder.pdf +4892,2007.09.27.a,27-Sep-07,2007,Unprovoked,Egypt,Red Sea,Daedalus Reef ,Swimming,Kristina Aleksandrova,F,"Severe lacerations to lower left leg, ankle and foot",N,E. Ritter & Y. Sobolev,GSAF; M. Salem ,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.a-Aleksandrova.pdf +4891,2007.09.22.b,22-Sep-07,2007,Invalid,Usa,Florida,Jupiter Inlet,Scuba diving,Nikki Cuomo,F,Shark involvement prior to death unconfirmed,Y,Florida Today,12/14/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.b-Cuomo.pdf +4890,2007.09.22.a,22-Sep-07,2007,Unprovoked,Usa,Florida,Huguenot Park,Surfing,Unknown,F,Laceration to foot,N,R.Duffy,First Coast News. 9/23/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.a-HuguenotPark.pdf +4889,2007.09.20,20-Sep-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Tyler Robertson,M,Small lacerations to bottom of right big toe,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.20-Robertson.pdf +4888,2007.09.17,17-Sep-07,2007,Unprovoked,Solomon islands,Marovo Lagoon,Kicha Island,Spearfishing,Corey Howell,M,Left thigh bitten,N,L. Choquette,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.17-Corey.pdf +4887,2007.09.16.b,16-Sep-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading?,Jack Calogero,M,Laceration to right heel,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.b-Calogero.pdf +4886,2007.09.16.a,16-Sep-07,2007,Unprovoked,Usa,Florida,"Flagler Beach, Flagler County",Surfing,Jessica Riley,F,"No injury, surfboard bitten",N,wsbtv.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.a-Riley.pdf +4885,2007.09.13,13-Sep-07,2007,Unprovoked,Usa,Florida,"Lauderdale-by-the-Sea, Broward County",Snorkeling,Brandon Chapman,M,"Minor injury, shark latched onto his abdomen",N,Miami Herald,9/13/2007; Sun-Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.13-Chapman.pdf +4884,2007.09.08,08-Sep-07,2007,Unprovoked,Usa,Florida,"Pepper Park Beach, St. Lucie County",Wading,Carolyn Griffin,F,Puncture wounds & 2-inch laceration to calf,N,First Coast News,9/11/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.08-Griffin.pdf +4883,2007.09.05,05-Sep-07,2007,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Wading,Colette Wilson,F,Laceration to right big toe,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.05-Wilson.pdf +4882,2007.09.04,04-Sep-07,2007,Unprovoked,Usa,South Carolina,Sullivan's Island,Standing,Rory Corr,M,Lacerations to left calf and both feet ,N,C. Creswell,GSAF; J. Johnson,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.04-Corr.pdf +4881,2007.09.03.b,03-Sep-07,2007,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Jumping,female,F,Tiny punctures to arm,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.b-Daytona.pdf +4880,2007.09.03.a,03-Sep-07,2007,Unprovoked,Usa,Florida,"Fort Lauderdale, Broward County",Swimming,Dominco Iaciofano,M,"3"" laceration to left forearm",N,S. Wyman,Sun-Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.a-Iaciofano.pdf +4879,2007.08.28.b,28-Aug-07,2007,Unprovoked,Usa,Hawaii,"Ka'a'awa, Oahu",Body boarding,Joshua Sumait,M,Laceration to right heel,N,Honolulu Advertiser,8/29/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.b-Sumait.pdf +4878,2007.08.28.a,28-Aug-07,2007,Unprovoked,Usa,California,"Marina State Beach, Monterey County",Surfing,Todd Endris,M,Lacerations to thigh & torso,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.a-Endris.pdf +4877,2007.08.26,26-Aug-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Joseph Coursey,M,Left hand bitten,N,S. Petersohn,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.26-Coursey.pdf +4876,2007.08.25,25-Aug-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Taylor Smith,M, 6 lacerations to left hand,N,S. Petersohn,GSAF; WESH 2 News,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.25-Smith.pdf +4875,2007.08.22,22-Aug-07,2007,Provoked,Usa,North Carolina,North Carolina Aquarium at Fort Fisher,Diving,Bruce Pennington,M,Minor injury from captive shark PROVOKED INCIDENT,N,Clay Creswell,GSAF; WECT TV6,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.22-Pennington.pdf +4874,2007.08.20,20-Aug-07,2007,Provoked,Usa,Delaware,"Indian River Inlet, Rehoboth Beach",Fishing,male,M,Forearm bitten by hooked shark PROVOKED INCIDENT,N,Delaware Coast Press,8/24/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.20-DelawareFisherman.pdf +4873,2007.08.19.c,19-Aug-07,2007,Unprovoked,Usa,Florida,"Islamorada Founder's Park, Plantation Key, Monroe County",Swimming,Chris Olstad,M,Torso bitten,N,Miami Herald,8/20/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.c-Olstad.pdf +4872,2007.08.19.b,19-Aug-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Foot bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.b-NewSmyrnaBeach.pdf +4871,2007.08.19.a.,19-Aug-07,2007,Unprovoked,Usa,South Carolina,"Lakewood Campground, Grand Strand, Horry County",Playing,male,M,Right calf bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.a-boy.pdf +4870,2007.08.15,15-Aug-07,2007,Unprovoked,Usa,Florida,Sarasota Bay,Floating near boat & observing bioluminesce,Andrea Lynch,M,Puncture wounds to torso,N,Charlotte Observer,8/18/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.15-Lynch.pdf +4869,2007.08.12,12-Aug-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,female,F,"Minor injury, small lacerations to right foot",N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.12-girl-NewSmyrnaBeach.pdf +4868,2007.08.11,11-Aug-07,2007,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Walking out of the water after surfing,Matthew Barton,M,"Minor injury, lacerations to left ankle & foot ",N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.11-Barton.pdf +4867,2007.08.09.b,09-Aug-07,2007,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Swimming,Noah Green,M,Lacerations to right foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.b-NoahGreen.pdf +4866,2007.08.09.a,09-Aug-07,2007,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Boogie Boarding,Chase Crawford,M,Lacerations to lower leg & ankle,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.a-ChaseCrawford.pdf +4865,2007.08.07,07-Aug-07,2007,Unprovoked,Usa,Florida,"Islamorada, Monroe County",Jumped into the water,Ashley Silverman,F,Lacerations to arm,N,Miami Herald,8/8/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.07-Silverman.pdf +4864,2007.07.29,29-Jul-07,2007,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,Jeffrey Clark,M,Minor injury to shoulder,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.29-JeffreyClark.pdf +4863,2007.07.28,28-Jul-07,2007,Unprovoked,Usa,California,"Imperial Beach, San Diego County",Surfing,Jordan Springer,M,"No injury, shark bit surfboard",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.28-Springer.pdf +4862,2007.07.22,22-Jul-07,2007,Unprovoked,Usa,California,"Malibu, Los Angeles County",Surf paddling,Vic Calandra,M,"No injury, surfboard bumped by shark for 20 minutes",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.22-Calandra.pdf +4861,2007.07.21,21-Jul-07,2007,Boat,Usa,California,"Bean Hollow State Beach, San Mateo County",Kayak Fishing,Dan Prather,M,"No injury, kayak bitten",N,R. Collier; San Francisco Chronicle,7/23/2007; NorCal Kayak Anglers,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.21-DanPrather.pdf +4860,2007.07.19.b,19-Jul-2007.b,2007,Unprovoked,Usa,Hawaii,"Bellows Beach near Wailea Point, O’ahu",Snorkeling,Harvey Miller,M,Left calf severely bitten,N,Honolulu Advertiser,7/20/2007; Honolulu Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.b-Miller.pdf +4859,2007.07.19.a,19-Jul-2007.a,2007,Unprovoked,Australia,Territory of Cocos (Keeling) Islands,Direction Island,Wading,Angus Chapman,M,Calf bitten,N,The Western Australian,7/20/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.a-Chapman.pdf +4858,2007.07.18.b,18-Jul-07,2007,Unprovoked,Usa,North Carolina,"North Topsail Beach, Onslow County",Swimming,Matt Baker,M,Right calf bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.b-MattBaker.pdf +4857,2007.07.18.a,18-Jul-07,2007,Provoked,Norway,Oslo Fjord,Sjøstrand,Scuba diving,Odd Ingebretsen,M,PROVOKED INCIDENT No injury. Diver touched 'dead' shark; shark bit his equipment-covered arm,N,Aftenposten,7/18/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.a-Ingelbretsen.pdf +4856,2007.07.17.b,17-Jul-07,2007,Invalid,Usa,California,"Faria Beach, Ventura County",Swimming,Susan Levy,F,Foot injured. Shark involvment uncomfirmed,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.b-SusanLevy.pdf +4855,2007.07.17.a,17-Jul-07,2007,Unprovoked,Usa,North Carolina,"Atlantic Beach, Carteret County",Wading,female,F,Lacerations to right thigh & left foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.a-NC.pdf +4854,2007.07.10,10-Jul-07,2007,Unprovoked,Bahamas,Abaco Islands,Allan-Pensacola Cay,Spearfishing,Joanie Regan,F,"Lacerations to thumb, ring and pinky fingers of right hand ",N,J. Regan,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.10-Regan.pdf +4853,2007.07.05,05-Jul-07,2007,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,Chaz Cecil,M,Right foot bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.05-Cecil.pdf +4852,2007.07.04,04-Jul-07,2007,Unprovoked,Reunion,Unknown,Boucan Canot,Body boarding,Vincent Bouju,M,Minor injuries to thigh & knee ,N,clicanoo.com,7/5/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.04-Bouju.pdf +4851,2007.07.00,Jul-07,2007,Invalid,Unknown,Unknown,Unknown,Murder,Alex Takyi,Unknown,Unknown,N,Daily Guide,8/20/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.00-Takyi.pdf +4850,2007.06.30.b,30-Jun-07,2007,Provoked,Usa,Florida,Marques Island,Removing hook from shark,Samuel Gruber,M,Lacerations to right hand by hooked shark PROVOKED INCIDENT,N,S. Gruber; SharkAttackSurvivors.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.b-Gruber.pdf +4849,2007.06.30.a,30-Jun-07,2007,Unprovoked,Usa,California,"Will Rogers State Beach, Los Angeles County",Swimming,Katina Zinner,F,Hand bitten,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.a-Zinner.pdf +4848,2007.06.25,25-Jun-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Justin Lewis,M,6 to 8 puncture wounds to right hand,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.25-JustinLewis.pdf +4847,2007.06.24,24-Jun-07,2007,Unprovoked,Usa,Hawaii,"Silva's Channel, Mokuleia, O'ahu",Surfing,E. Yamada,M,"No injury, board damaged",N,G. Lee,KGMB9.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.24-Yamada.pdf +4846,2007.06.17,17-Jun-07,2007,Invalid,Usa,Florida,"Vilano Beach, St. Johns County",Surfing,Kasey Schmidt,F,Superficial injuries to upper leg may have been caused by surfboard fin,N,St Augustine Record,6/19/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.17-CaseySchmidt.pdf +4845,2007.06.12,12-Jun-07,2007,Unprovoked,Usa,Florida,"Turtle Beach, Siesta Key, Sarasota County",Swimming,Jeanne Schaefer ,F,Right foot bitten,N,R.B. Hackney,Sun-Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.12-Schaefer.pdf +4844,2007.06.05,05-Jun-07,2007,Unprovoked,Australia,New South Wales,"Shelly Beach, Crescent Head",Surfing,Jack Moir,M,Lacerations to leg & ankle,N,S. Williams,Daily Telegraph,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.05-JackMoir.pdf +4843,2007.05.26,26-May-07,2007,Unprovoked,Usa,South Carolina,Garden City,Wading,Susan Dornquast,F,Lacerations to lower leg,N,C. Creswell,GSAF; Hilton Head Island Packet,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.26-Dornquast.pdf +4842,2007.05.24,24-May-07,2007,Provoked,Usa,Virginia,"Virginia Aquarium & Marine Science Center, Virginia Beach ",Reviving a sedated shark,Beth Firchau,F,Left shin bitten by captive shark PROVOKED INCIDENT,N,WAVY-TV10-News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.24-Firchau.pdf +4841,2007.05.17.R,17-May-2007,2007,Provoked,England,Kent,Folkestone,Fishing,Phil Tanner,M,Bitten on the nose by a hooked shark PROVOKED INCIDENT,N,V. Wheeler,The Sun,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.17.R-PhilTanner.pdf +4840,2007.05.16,16-May-07,2007,Unprovoked,Australia,Western Australia,"Warra Beach, Coral Bay",Wading,Becky Cooke,F,Left heel & calf bitten,N,The Western Australian,5/16/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.16-BeckyCooke.pdf +4839,2007.05.12,12-May-07,2007,Unprovoked,Australia,Victoria,Warrnambool,Surfing,Blake French,M,"No injury, shark's fin caught his leg",N,The Standard,5/15/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.12-BlakeFrench.pdf +4838,2007.05.10,10-May-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jennifer Manis,F,Knee bitten,N,J. Manis,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.10-Manis.pdf +4837,2007.05.09.R,09-May-2007,2007,Unprovoked,Seychelles,Bird Island,Unknown,Snorkeling,male,M,No injury,N,Seychelles Forum,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.09.R-Seychelles.pdf +4836,2007.05.08,08-May-07,2007,Invalid,Australia,New South Wales,Kingscliff Beach,Swimming,male,M,Shark involvement prior to death unconfirmed,Y,NineMSNews,5/10/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.08-KingscliffBeach.pdf +4835,2007.05.07.b,07-May-07,2007,Unprovoked,Usa,Hawaii,"Keawakapu Beach, Maui",Snorkeling,Peller Marion,F,Right foot bitten,N,G. Kubota,Honolulu Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.b-PellerMarion.pdf +4834,2007.05.07.a,07-May-07,2007,Unprovoked,Usa,Florida,Naples,Swimming,Hans Pruss,M,Circular bite on left thigh,N,Naples News,5/10/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.a-HansPruss.pdf +4833,2007.05.04,04-May-07,2007,Sea Disaster,Turks & caicos,Providenciales,Unknown,Sea Disaster,Haitian refugees perished when their boat capsized in choppy seas,Unknown,Some of the bodies recovered had been bitten by sharks,Y,CNN,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.04-HaitianRefugees.pdf +4832,2007.05.00,May-07,2007,Provoked,Bahamas,Bimini Islands,Unknown,Shark tagging,Sabrina Garcia,F,Lacerations to right upper arm by captive shark PROVOKED INCIDENT,N,S. Garcia,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.00-Garcia.pdf +4831,2007.04.26,26-Apr-07,2007,Unprovoked,Australia,Queensland,"Mornington Island, Gulf of Carpentaria",Swimming / jumping off a jetty,Lorraine,F,Lower leg & foot injured,N,news.com.au,4/29/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.26-Lorraine.pdf +4830,2007.04.22,22-Apr-07,2007,Unprovoked,Usa,Florida,"Hutchinson Island, St. Lucie County",Body boarding,Matthew Honyak,M,Left foot bitten,N,Sun-Sentinel,4/23/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.22-Honyak.pdf +4829,2007.04.20,20-Apr-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Chad Guthrie,M,Lacerations to left index finger & thumb ,N,Florida Today,4/21/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.20-ChadGuthrie.pdf +4828,2007.04.13.R, 13-Apr-2007,2007,Boat,Usa,Florida,"Florida Keys, Monroe County",Fishing,boat: 48' charter boat GonFishin V ,Unknown,"No injury to occupants, shark holed the transom-mounted livewell ",N,Florida Today,4/13/2007; A. Brenneka,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.13.R-GonFishin.pdf +4827,2007.04.09,09-Apr-07,2007,Unprovoked,New caledonia,South Province,Dumbéa,Surfing,Olivier Bertholom,M,Left foot bitten,N,Les Nouvelles Calédoniennes,4/11/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.09-Bertholom.pdf +4826,2007.04.01,01-Apr-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Playing on a sandbar,Jack LoMedico,M,Lacerations & puncture wounds to right calf,N,S. Petersohn,GSAF; WESH 2,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.01-Lomedico.pdf +4825,2007.03.31.b,31-Mar-07,2007,Unprovoked,Usa,Florida,"Normandy Beach, Hutchinson Island, St. Lucie County",Surfing,Larry Olson,M,Lacerations to right ankle ,N,Palm Beach Post,3/31/2007; Sun Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.b-Olson.pdf +4824,2007.03.31.a,31-Mar-07,2007,Unprovoked,Usa,Florida,"Waveland Beach, Hutchinson Island, St. Lucie County",Unknown,male,M,Minor cuts to right buttock & thigh,N,Palm Beach Post,3/31/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.a-Waveland.pdf +4823,2007.03.22,22-Mar-07,2007,Unprovoked,Yemen,Muhafazat Hadramawt,Ras-Alkalb,Murder,At least 29 (and possibly another 71) Somali & Ethiopian refugees,Unknown,"FATAL, beaten & thrown overboard by smugglers, they were killed by sharks",Y,United Nations High Commission for Refugees,3/26/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.22-EthiopianRefugees.pdf +4822,2007.03.21,21-Mar-07,2007,Unprovoked,Usa,Florida,Jupiter Inlet,Surfing,Sam Chief,M,Punctures & lacerations to right calf & calf,N,TCPalm,3/23/2007 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.21-Chief.pdf +4821,2007.03.20,20-Mar-07,2007,Unprovoked,Australia,New South Wales,South Golden Beach,Surfing,Jodie Cooper,F,Lacerations to 3 fingers of left hand ,N,Gold Coast Bulletin,3/21/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.20-JodieCooper.pdf +4820,2007.03.14.R,14-Mar-2007,2007,Provoked,Usa,Florida,Delray Beach,Shark fishing,Gregory Kuehlewind ,M,Right hand bitten by hooked shark PROVOKED INCIDENT,N,Associated Press,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.14.R-Kuehlewind.pdf +4819,2007.03.12,12-Mar-07,2007,Unprovoked,Australia,Queensland,"Moore Park, north of Bundaberg",Swimming,Mary Jane Ryan,F,"Bruises to arm and hand, laceration to lower leg & minor injuries to foot",N,ABC News Online,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.12-Ryan.pdf +4818,2007.03.11,11-Mar-07,2007,Unprovoked,Usa,Florida,"Tiger Shores Beach, Martin County",Surfing,Adam McMichael,M,Lacerations to right forearm & hand,N,J. Ashton,T.C. Palm,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.11-McMichael.pdf +4817,2007.03.05.R,05-Mar-2007,2007,Provoked,New zealand,Cook islans,Penhryn Island,Spearfishing,Turua William Maretapu,M,Leg bitten by shark after he shot at it & missed PROVOKED INCIDENT,N,R. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.05.R-Maretapu.pdf +4816,2007.02.04,04-Feb-07,2007,Invalid,Unknown,Unknown,Unknown,Swimming,Jason Cash,M,Death due to drowning. Shark bite may have been postmortem,Y,The Argus,3/2/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.04-Cash.pdf +4815,2007.02.03,03-Feb-07,2007,Unprovoked,Australia,New South Wales,Shelly Beach,Boogie Boarding,Matthew McIntosh,M,Lacerations to lower left leg & ankle ,N,P. Immerz,SharkProject; P. Kemp,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.03-McIntosh.pdf +4814,2007.02.00,Feb-07,2007,Unprovoked,New caledonia,Loyalty Islands,Ouvéa,Spearfishing,male,M,Survived,N,Les Nouvelles Caledoniennes,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.00-Ouvea.pdf +4813,2007.01.25.b,25-Jan-07,2007,Unprovoked,New caledonia,North Province,Kaala-Gomen ,Spearfishing (free diving),Jesse Jizdny,M,Leg bitten,N,Les Nouvelles Caledoniennes,1/29/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.b-Jizdny.pdf +4812,2007.01.25.a,25-Jan-07,2007,Boat,Usa,Florida,100 miles off Ft. Myers Beach,Shrimping,boat: 69.5' trawler Christy Nichole ,Unknown,"A large shark rammed boat, breaking prop shaft. No injury to occupants but boat sank several hours later",N,P. Morales,News-Press,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.a-ChristyNichole.pdf +4811,2007.01.23,23-Jan-07,2007,Unprovoked,Australia,New South Wales,Cape Howe,Diving,Eric Nerhus,M,Head & torso bitten,N,NZ Herald,1/23/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.23-Nerhus.pdf +4810,2007.01.19,19-Jan-07,2007,Invalid,Australia,New South Wales,Brunswick Heads,Swimming,Thomas Houghton,M,Shark involvement prior to death unconfirmed,Y,Northern Star,1/24/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.19-Houghton.pdf +4809,2007.01.14,14-Jan-07,2007,Unprovoked,South africa,Eastern Cape Province,"Second Beach, Port St. John's",Swimming / Body Surfing,Sibulele Masiza,M,"Presumed FATAL, body not recovered",Y,G. Cliff,Natal Sharks Board; East London Dispatch,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.14-Masiza.pdf +4808,2007.01.09,09-Jan-07,2007,Unprovoked,Australia,New South Wales,Sandbar Beach,Surfing,David Sparkes,M,"No injury, shark damaged surfboard",N,J. Watson,Great Lakes Your Guide,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.09-Sparkes.pdf +4807,2007.01.07,07-Jan-07,2007,Invalid,Usa,New York,"Smith Point, Long Island",Surfing,Wayne Brodsky,M,No injury,N,W. Brodsky,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.07-Brodsky.pdf +4806,2007.01.05,01-Jan-07,2007,Unprovoked,Usa,Hawaii,"Majors Bay, Kaua'i",Surfing,Rich Reed,M,"No injury, shark removed piece of surfboard",N,P. Immerz,SharkProject.org; J. TenBruggencate,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.05-Reed.pdf +4805,2006.12.18,18-Dec-06,2006,Unprovoked,Australia,Victoria,"Winki Pop, Bells Beach",Surfing,Peter Galvin,M,Left leg bitten,N,P. Kemp,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.18-Galvin.pdf +4804,2006.12.11,11-Dec-06,2006,Unprovoked,New zealand,North Island,"Raglan, Manu Bay",Surfing,Elliot Paerata-Reid ,M,Foot bitten,N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.11-Reid.pdf +4803,2006.12.10,10-Dec-06,2006,Unprovoked,Usa,California,"Dillon Beach, Marin County",Surfing,Royce Fraley,M,"Minor injuries, surfboard bitten",N,P. Immerz; R. Collier; San Francisco Chronicle,12/11/2006 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.10-Frailey.pdf +4802,2006.12.06,06-Dec-06,2006,Provoked,South africa,KwaZulu-Natal,Cape Vidal,Fishing,Peter Willoughby,M,"Hand, thigh & calf bitten by hooked shark PROVOKED INCIDENT",N,C. Johansson; Pretoria News,12/8/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.06-Willoughby.pdf +4801,2006.12.02,02-Dec-06,2006,Unprovoked,Australia,Western Australia,Wharton Beach,Body boarding,Zac Golebiowski,M,"Right leg severed, left leg lacerated",N,P. Kemp,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.02-Golebiowski.pdf +4800,2006.11.25,25-Nov-06,2006,Sea Disaster,Philippines,Surigao del Norte,"Off Bilisan Point, Hinatuarn Island",Sea Disaster,Sinking of the m.v.Leonida,Unknown,15 perished but shark involvement prior to death was not confirmed,Y,Manila Bulletin Online,11/27/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.25-Leonida.pdf +4799,2006.11.11,11-Nov-06,2006,Unprovoked,Usa,Hawaii,"Kihei, Maui",Swimming,Kyle Gruen,M,Laceration to left thigh & left hand,N,Honolulu Advertiser,11/12/2006; B. Nicholson,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.11-Gruen.pdf +4798,2006.11.09,09-Nov-06,2006,Provoked,South africa,Eastern Cape Province,"Nahoon, East London",Canoeing,Richard Tebutt,M,Left arm lacerated when he grabbed shark by its tail PROVOKED INCIDENT,N,P. Immerz,SharkProject,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.09-Tebutt.pdf +4797,2006.10.31,31-Oct-06,2006,Unprovoked,Usa,Oregon,"Siletz River mouth, Lincoln County",Surfing,Tony Perez,M,"No injury, surfboard bitten",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.31-Perez.pdf +4796,2006.10.16,16-Oct-06,2006,Unprovoked,Usa,Florida,Sebastian Inlet,Fishing,"Blaise Castellano, Jr.",M,Lower right leg and foot bitten,N,K. Kridel,Herald Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.16-Castellano.pdf +4795,2006.10.10,10-Oct-06,2006,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Surfing,Kyle Cody,M,Left ankle bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.10-Cody.pdf +4794,2006.10.07,07-Oct-06,2006,Unprovoked,Usa,Texas,"Isla Blanca Park, South Padre Island",Surfing,Freddy Torres,M,Lacerations to lower left leg,N,M. Martinez,KGBT4,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.07-Torres.pdf +4793,2006.10.05,05-Oct-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Playing soccer in the water,Stephen Münoz,M,Lacerations to foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.05-Munoz.pdf +4792,2006.10.00.b,Oct-06,2006,Unprovoked,Bahamas,New Providence Island,Nassau,Free diving / modeling,Renata Foucre,F,Puncture wounds to left foot,N,J. Lambiet,Palm Beach Post,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.b-Foucre.pdf +4791,2006.10.00.a,Oct-06,2006,Unprovoked,Gulf of aden,Between Somalia & Yemen,Unknown,Murder,5 Ethiopian refugees,Unknown,"FATAL, beaten & thrown overboard by smugglers, they were killed by sharks",Y,United Nations High Commission for Refugees,10/20/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.a-EthiopianRefugees.pdf +4790,2006.09.30,30-Sep-06,2006,Invalid,South africa,Western Cape Province,Miller's Point,Spearfishing,Joseph Johnston,M,No injury; 4m white shark made a threat display,N,Cape Argus,10/2/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.30-Johnston.pdf +4789,2006.09.29,29-Sep-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Andrews ,M,Big toe bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.29-Andrews.pdf +4788,2006.09.18.R,18-Sep-2006,2006,Provoked,Usa,Florida,"Off Key Largo, Monroe County",Diving / Kissing the shark,Dave Marcel,M,Lacerations to upper lip PROVOKED INCIDENT,N,CBS-4,9/18/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.18.R-DaveMarcel.pdf +4787,2006.09.16,16-Sep-06,2006,Unprovoked,Usa,North Carolina,Onslow Beach,Surfing,Jake Poland,M,Laceration to left thigh,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.16-JakePoland.pdf +4786,2006.09.14,14-Sep-06,2006,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach",Swimming,William Carol,M,Minor injury to left hand,N,WFTV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.14-Carol.pdf +4785,2006.09.11,11-Sep-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Dennis Macy,M,Left torso grazed,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.11-Macy.pdf +4784,2006.09.04,04-Sep-06,2006,Invalid,Australia,Queensland,Great Barrier Reef ,Diving,Steve Irwin,M,"Killed by a stingray, not a shark - a tragedy for his family and marine wildlife",Y,Sydney Morning Herald,CNN & internet,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.04-SteveIrwin.pdf +4783,2006.09.03.b,03-Sep-06,2006,Unprovoked,Unknown,Unknown,Unknown,Unknown,Darlan dos Santos Luz ,M,FATAL,Y,JC Online,6/26/2023,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.b-Darlan-dos-Santos-Luz.pdf +4782,2006.09.03.a,03-Sep-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Standing,Christopher Duncan,M,Puncture wounds and cuts to right thigh,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.a-Duncan.pdf +4781,2006.09.02,02-Sep-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,male,M,Arm bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.b-Child-NSB.pdf +4780,2006.09.02,02-Sep-06,2006,Unprovoked,South africa,Western Cape Province,Noordhoek,Surfing,Steven Harcourt-Wood,M,"No injury, shark rammed surfboard",N,Cape Times,9/3/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.a-Harcourt-Wood.pdf +4779,2006.08.29.b,29-Aug-06,2006,Unprovoked,Usa,Oregon,"Florence, Lane County",Surfing,Tom Larson,M,Laceration & puncture wounds to foot,N,R. Collier,GSAF; Register-Guard,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.b-Larson.pdf +4778,2006.08.29.a,29-Aug-06,2006,Unprovoked,Australia,South Australia,"Pennington Bay, Kangaroo Island",Surfing,Brad Jamieson ,M,"No injury, shark towed surfer & board",N,P. Kemp,GSAF; S. Black,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.a-Jamieson.pdf +4777,2006.08.27,27-Aug-06,2006,Unprovoked,Reunion,Saint-Gilles-les-Bains,"Les Aigrettes, near Boucan-Canot",Body boarding,Gérald Préau,M,Laceration to right calf & heel,N,G. Vitry; G. Holt,scubaradio; Clicanoo,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.27-Gerald.pdf +4776,2006.08.22.b,22-Aug-06,2006,Invalid,Brazil,Pernambuco,Pina,Unknown,Tatiano Silva de Melo,M,Shark bites may have been post mortem,Y,JC Oline 8/24/2006,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22-IsaulCoba.pdf +4775,2006.08.22.a,22-Aug-06,2006,Invalid,Belize,Ambergris Caye,Near Ramon's Village,Spearfishing,Isaul Coba,M,Shark involvement prior to death not confirmed,Y,C. Johansson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22.b-Brazil-incomplete.pdf +4774,2006.08.20.b,20-Aug-06,2006,Sea Disaster,Italy,Unknown,Lampedusa Island,Sea Disaster,a refugee,M,FATAL,Y,IM/LR,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20.b-Lampedusa.pdf +4773,2006.08.20.a,20-Aug-06,2006,Unprovoked,Reunion,Saint-Pierre,Pointe du Diable,Surfing,Sébastien Émond,M,FATAL,Y,P. Immerz ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20-Emond.pdf +4772,2006.08.15,15-Aug-06,2006,Unprovoked,South africa,Western Cape Province,Danger Reef,Surfing,Richard Whitaker,M,"No injury, surfboard leash severed",N,A. Brenneka,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.15-RichardWhitaker.pdf +4771,2006.08.13,13-Aug-06,2006,Unprovoked,South africa,Western Cape Province,"Sunrise Beach, Muizenberg",Lifesaving drill,Achmat Hassiem,M,Foot severed,N,P. Immerz ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.13-Hassiem.pdf +4770,2006.08.00.b,Aug-06,2006,Unprovoked,Usa,North Carolina,"Masonboro Island, New Hanover County",Wading,Miriam Picklesimer,F,Lacerations & punctures to left foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.b-Picklesimer.pdf +4769,2006.08.00.a,Early Aug-2006,2006,Unprovoked,Reunion,Unknown,Le Port,Spearfishing,male,M,Thigh bitten,N,Clicanoo,8/29/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.a-Reunion.pdf +4768,2006.07.31.R,31-Jul-06,2006,Provoked,Usa,Kentucky,"Newport Aquarium, Newport",Touching sharks,12 people,Unknown,"Minor injuries, similar to paper cuts from the captive sharks PROVOKED INCIDENTS",N,Cincinatti News,7/31/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.R-NewportAquarium.pdf +4767,2006.07.31.a,31-Jul-06,2006,Unprovoked,Usa,Oregon,Oswald State Park,Surfing,Robert Martin,M,Minor injury,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.a-Martin.pdf +4766,2006.07.29.b,29-Jul-06,2006,Invalid,Usa,California,"Broad Beach, Malibu, Los Angeles County",Boogie Boarding,Bruce Lurie,M,"Bruises, laceration to head, spinal cord injury & neck broken at C5/C6 ",N,R. Colier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.b-Lurie.pdf +4765,2006.07.29.a,29-Jul-06,2006,Unprovoked,Usa,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Matt Wishengrad,M,Foot bitten,N,WFTV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.a-Wishengrad.pdf +4764,2006.07.28,28-Jul-06,2006,Unprovoked,South africa,Western Cape Province,Fish Hoek,Surf-skiing,Lyle Maarsdorp,M,"No injury, surf ski bitten",N,Cape Argus,7/29/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.28-Maasdorp.pdf +4763,2006.07.25,25-Jul-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Minor lacerations to right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.25-NSB.pdf +4762,2006.07.23,23-Jul-06,2006,Unprovoked,Usa,Texas,"Sargent Beach, Matagorda County",Surf fishing,R.K. Halbert,M,Right foot bitten,N,KHOU.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.23-Halbert.pdf +4761,2006.07.17.R,17-Jul-2006,2006,Invalid,Australia,Torres Strait,Western Province,Unknown,Unknown,Unknown,8 shark-bitten bodies washed ashore,N,The Torres News,7/17/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.R-TorresStrait.pdf +4760,2006.07.17,17-Jul-06,2006,Unprovoked,Usa,South Carolina,"Singleton Beach, Hilton Head Island, Beaufort County",Standing,Dallas Jackson,M,Left ankle & foot bitten,N, C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.a-DallasJackson.pdf +4759,2006.07.13,13-Jul-06,2006,Invalid,Spain,Alicante,San Juan Beach ,Swimming,female,F,Hand & wrist severely bitten,N,C. Johansson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.13-girl-Spain.pdf +4758,2006.07.12,12-Jul-06,2006,Unprovoked,Usa,South Carolina,"Kiawah Island, Charleston County",Swimming,female,F,Ankle & foot bitten,N, C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.12-KiawahIsland.pdf +4757,2006.07.10,10-Jul-06,2006,Unprovoked,Brazil,Pernambuco,Body recovered at Goiana,Unknown,Unidentified,M,FATAL,Y,Qualittas; F. Hazin; N. Souza; Folho de Pernambuco,7/12/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.10-Goiana.pdf +4756,2006.07.09.b,09-Jul-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,male,M,Dorsum of left foot bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.b-NewSmyrnaBeach.pdf +4755,2006.07.09.a,09-Jul-2006.,2006,Unprovoked,Usa,Florida,"Ponte Vedra Beach, St Johns County",Walking,male,M,Lower leg & ankle bitten,N,Orlando Sentinel,7/9/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.a-PontaVedra.pdf +4754,2006.07.08.b,08-Jul-06,2006,Unprovoked,Usa,South Carolina,"Debordieu Beach, Georgetown County",Body boarding,Caelin Lacy ,F,Foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.b-Lacy.pdf +4753,2006.07.08.a,08-Jul-06,2006,Unprovoked,Usa,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Swimming,male,M,Right calf bitten,N,Orlando Sentinel,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.a-Playalinda.pdf +4752,2006.06.30.b,Jul-06,2006,Unprovoked,Usa,Florida,"Florida Keys, Monroe County",Spearfishing,Bebe Hall,F,Lacerations & puncture wound to arm,N,Swimming World Magazine,2 July 2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.b-Bebe-Hall.pdf +4751,2006.06.30.a,Jul-06,2006,Unprovoked,Usa,Florida,"Florida Keys, Monroe County",Spearfishing,Gary Hall,M,Minor injuries,N,Swimming World Magazine,2 July 2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.a-GaryHall.pdf +4750,2006.06.27,27-Jun-06,2006,Unprovoked,Usa,Florida,"Hutchinson Island, St. Lucie County",Body boarding,Juliette Shipp,F,Right calf bitten,N, P. Immerz,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.27-Shipp.pdf +4749,2006.06.26,26-Jun-06,2006,Provoked,Usa,Florida,Fort Myers,Fishing,male,M,Non-swimmer pulled off pier& into the water by a hooked shark PROVOKED INCIDENT,N,News Press,6/27/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.26-FtMyers.pdf +4748,2006.06.24,24-Jun-06,2006,Unprovoked,Bahamas,Andros Islands,Mangrove Cay,Spearfishing,Whitefield Rolle,M,Right arm severely bitten,N,A. Brenneka; Nassau Guardian,6/30/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.24-Rolle.pdf +4747,2006.06.20,20-Jun-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Elizabeth Schelk,F,2-inch puncture wounds on right foot,N, S. Petersohn,GSAF; P. Immerz,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.20-Schelk.pdf +4746,2006.06.18,18-Jun-06,2006,Unprovoked,Brazil,Pernambuco,"Punta Del Chifre Beach, Olinda",Body boarding,Humberto Pessoa Batista,M,Left thigh bitten FATAL,Y,globalsurfnews.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdf +4745,2006.06.17,17-Jun-06,2006,Unprovoked,Usa,California,"Monterey, Monterey County",Scuba diving,Jon Piatt,M,"No injury, shark bit scuba tank boot",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.17-Piatt.pdf +4744,2006.06.15,15-Jun-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Mike Milea,M,Four 1-inch puncture wounds on left foot ,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.15-Milea.pdf +4743,2006.06.07,07-Jun-06,2006,Unprovoked,Usa,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Playing,Megan Wallis,F,Lacerations & puncture wounds to left foot & buttocks,N,C. Creswell,GSAF; Islandpacket.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.07-Wallis.pdf +4742,2006.06.05,05-Jun-06,2006,Unprovoked,Australia,South Australia,Waitpinga,Surfing,Peter Dunn,M,"No injury, knocked off surfboard",N,P.Kemp,GSAF; Sunday Mail (Adelaide),http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.05-Dunn.pdf +4741,2006.05.31,31-May-06,2006,Unprovoked,Usa,Hawaii,O'ahu,Spearfishing,Ron Deguilmo,M,"4"" laceration to left forearm",N,P. Immerz; Honolulu Advertiser,6/1/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.31-Deguilmo.pdf +4740,2006.05.28,28-May-06,2006,Provoked,Usa,Hawaii,French Frigate Shoals,Tagging sharks,"25' rigid-hulled inflatable boat, HI-2",Unknown,"No injury to occupants, boat damaged by hooked shark PROVOKED INCIDENT",N,Honolulu Advertiser,5/29/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.28-HI-2.pdf +4739,2006.05.27,27-May-06,2006,Unprovoked,Usa,Hawaii,"North Shore, O'ahu",Surfing,Bret Desmond,M,"No injury, shark bumped surfboard",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.27-Desmond.pdf +4738,2006.05.24,24-May-06,2006,Provoked,Usa,Hawaii,Lanai,Spearfishing,Andres Balmacda,M,Knee bitten after diver poked shark PROVOKED INCIDENT,N,Maui News,5/26/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.24-Balmacda.pdf +4737,2006.05.21,21-May-06,2006,Unprovoked,Brazil,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Rogério Antônio de Carvalho,M,"Injuries to left thigh, calf & foot",N,Avisa Nordland,5/22/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.21-Carvalho.pdf +4736,2006.05.19,19-May-06,2006,Unprovoked,Usa,Guam,Gun Beach,Scuba diving,Japanese female,F,Laceration to leg,N,R. Segal,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.19-Guam.pdf +4735,2006.05.10,05-May-06,2006,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Unknown,male,M,Small lacerations to arm,N,Florida Today,5/10/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.10-CocoaBeach.pdf +4734,2006.05.04,04-May-06,2006,Unprovoked,Usa,Florida,"Hutchinson Island, St. Lucie County",Swimming,Rachel King,F,2 lacerations on lower right leg,N,TCPalm.com,5/4/2006 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.04-King.pdf +4733,2006.05.02,02-May-06,2006,Provoked,Australia,Queensland,"Moffat Beach, Caloundra",Snorkeling,male,M,Abrasion & 6 puncture wounds on chest after grabbing the shark by its tail PROVOKED INCIDENT,N,Sunshine Coast Daily,5/4/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.02-Caloundra.pdf +4732,2006.04.23.R, 23-Apr-2006,2006,Invalid,Usa,Florida,"Alligator Reef off Islamorada, Monroe County",Unknown,male,M,Shark bites post mortem,Y,KRT Wire,4/24/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.23.R-Islamorada.pdf +4731,2006.04.21,21-Apr-06,2006,Unprovoked,Usa,Florida,"Sebastian Inlet, Brevard County",Surfing,T. Davis Bunn,M,Feet bitten,N,Local 6 News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.21-Bunn.pdf +4730,2006.04.19,19-Apr-06,2006,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Standing,Megan Prescott,F,3 tiny punctures & small lacerations on right ankle,N,Orlando Sentinel,4/20/2006; Yahoo News; S. Petersohn,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.19-Prescott.pdf +4729,2006.04.13,13-Apr-06,2006,Provoked,Usa,Florida,"Port of the Islands, Collier County",Fishing,a sport fisherman,M,3 to 4 cm laceration on foot from hooked shark brought on board PROVOKED INCIDENT,N,Naples News,4/13/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.13-fisherman.pdf +4728,2006.04.11,11-Apr-06,2006,Unprovoked,Australia,New South Wales,Newcastle Beach,Surfing,Luke Cook,M,Minor laceration to left foot,N,Daily Telegraph,4/12/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.11-Cook.pdf +4727,2006.04.09.b,09-Apr-06,2006,Unprovoked,South africa,Eastern Cape Province,St. Francis Bay,Body boarding,Stuart Duffie,M,Leg bitten,N,J. Visser,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.b-Duffin.pdf +4726,2006.04.09.a,09-Apr-06,2006,Unprovoked,Brazil,Pernambuco,Piedade,Swimming,José Ivair Pereira,M,Left leg bitten,N,Diario de Pernambuco,4/10/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.a-Pereira.pdf +4725,2006.04.03,03-Apr-06,2006,Unprovoked,Usa,Florida,"Marco Island, Collier County",Wading,Paul Ausum,M,Minor injury to right hand & thigh,N,CBS Broadcasting,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.03-Ausum.pdf +4724,2006.03.28.R, 28-Mar-2006,2006,Unprovoked,Sierra leone,Western Area,"Lumely Beach, Freetown",Fishing,4 fishermen,M,Reportedly FATAL but few details,Y,Reuters,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.28.R-SierraLeone.pdf +4723,2006.03.23,23-Mar-06,2006,Unprovoked,Usa,Hawaii,"Leftovers, near Waimea Bay, O'ahu",Surfing,Elizabeth Dunn,F,5 puncture wounds in left calf,N,Honolulu Advertiser,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.23-Dunn.pdf +4722,2006.03.22,22-Mar-06,2006,Invalid,South africa,Eastern Cape Province,Port Alfred,Swimming,Lorenzo Kroutz ,M,"FATAL, but shark involvement prior to death unconfirmed",Y,Cape Times,3/24/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.22-Koutz.pdf +4721,2006.03.19,18-Mar-06,2006,Unprovoked,Fiji,Vitu Levu,Sigatoka,Surfing,Paul Sue,M,Lacerations to right hand,N,R.D. Weeks,GSAF; Fiji Sun,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.19-PaulSue.pdf +4720,2006.03.15,15-Mar-06,2006,Unprovoked,Australia,New South Wales,"Bondi, Sydney",Surfing,Blake Mohair,M,"No injury, shark nudged surfboard",N,The Australian,3/15/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.15-Moclair.pdf +4719,2006.02.27,27-Feb-06,2006,Unprovoked,Usa,Hawaii,"Makena, Maui",Standing,Nikky Raleigh,F,Deep laceration to right calf,N,G.T. Kubota,Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.27-Raleigh.pdf +4718,2006.02.23,23-Feb-06,2006,Invalid,Usa,Hawaii,"Makena, Maui",Free diving,Anthony Moore,M,Forensic examination suggested diver drowned & afterwards his body was bitten by a shark/s,Y,http://www.kesq.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.23-Moore.pdf +4717,2006.02.13,13-Feb-06,2006,Unprovoked,Australia,Queensland,"Golden Beach, Caloundra",Wading,male,M,Lacerations to foot,N,G. Stolz,Courier-Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.13-GoldenBeach.pdf +4716,2006.02.12.b,12-Feb-06,2006,Unprovoked,Australia,Queensland,"Point Vernon, Hervey Bay",Swimming,male,M,Puncture wound on arm,N,G. Stolz,Courier-Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.b-HerveyBay.pdf +4715,2006.02.12.a,12-Feb-06,2006,Boat,Australia,South Australia,"Brighton Beach, Adelaide",Fishing,"Josh Francou, Michael Brister & Paul Bahr",M,No injury to occupants; shark nudged the 5.3 m boat,N,Port Adelaide Football Club,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.a-Franco_boat.pdf +4714,2006.02.08,08-Feb-06,2006,Unprovoked,South africa,Eastern Cape Province,"Nahoon, East London",Surfing,Jason Noades,M,2 bite marks on right calf,N,M. Kabeli,Dispatch Online.com; G. Brett & K. Cole,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.08-Noades.pdf +4713,2006.02.01.b,01-Feb-06,2006,Unprovoked,Tonga,Vava'u,Tu’anuku,Swimming,Tessa Horan,F,Severe bite to right leg FATAL,Y,D. Clem; www.matangitonga.to,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.b-Horan.pdf +4712,2006.02.01.a,01-Feb-06,2006,Boat,Usa,Hawaii,"Off Pu'u Ola'l, Makena, Maui",Kayaking,Dan Lankheit,M,No injury to occupant; shark bumped the kayak repeatedly for 15 minutes,N,R. Collier,GSAF; Honolulu Advertiser,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.a-Lankheit.pdf +4711,2006.01.28.R,28-Jan-2006,2006,Boat,Atlantic ocean,300 miles from Antigua,Unknown,Competing in the Woodvale Atlantic Rowing Race,"Mayabrit, an ocean rowing boat. Occupants: Andrew Barnett & J.C.S. Brendana",M,No injury to occupants; shark rammed boat repeatedly,N,N. Bevan,icwales.icnetwork.co.uk,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.28.R-Mayabrit.pdf +4710,2006.01.25,25-Jan-06,2006,Unprovoked,South africa,Eastern Cape Province,Coffee Bay,Spearfishing,Michael Vriese,M,Right arm bitten,N,Geremy Cliff,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.25-Vriese.pdf +4709,2006.01.23,23-Jan-06,2006,Boat,Atlantic ocean,800 miles from land,Unknown,Competing in the Woodvale Atlantic Rowing Race,"Rowgirls, an ocean rowing boat. Occupants: Sally Kettle, Claire Mills & Sue McMillan",F,"No injury to occupants; a shark, accidentally caught in a line, threatened to rip out the transom",N,Northants News,1/25/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.23-Rowgirls.pdf +4708,2006.01.18,18-Jan-06,2006,Unprovoked,Usa,California,"Santa Cruz, Santa Cruz County",Night Surfing,Mario Lari,M,"No injury, but 2 small nicks on wetsuit",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.18-Lari.pdf +4707,2006.01.15,15-Jan-06,2006,Unprovoked,Australia,Western Australia,"Off City Beach, Perth",Scuba diving,Bernie Williams,M,Lacerations to left elbow,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.15-Williams.pdf +4706,2006.01.11,11-Jan-06,2006,Invalid,Bahamas,Grand Bahama Island,Sandy Cay,Diving for lobsters,Hayward Thomas & Shalton Barr,M,"No injury, divers felt threatened by 10' pregnant female tiger shark & killed the shark",N,Bahama Journal,1/13/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.11-Bahamas.pdf +4705,2006.01.07,07-Jan-06,2006,Unprovoked,Australia,Queensland,"Amity Point, North Stradbroke Island",Swimming,Sarah Whiley,F,FATAL,Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.07-Whiley.pdf +4704,2006.01.04,04-Jan-06,2006,Unprovoked,Usa,Florida,"Round Island Park, Indian River County",Surfing,male,M,3 puncture wounds in right wrist & hand,N,A. Neal,scripps.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.04-IndianRiverSurfer.pdf +4703,2006.01.01,01-Jan-06,2006,Unprovoked,South africa,Western Cape Province,Soetwater,Diving for crayfish,John Williams,M,Lacerations to little finger,N,J.P. Botha,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.01-Williams.pdf +4702,2005.12.24,24-Dec-05,2005,Unprovoked,Usa,Oregon,"Tillamook Head, Clatsop County",Surfing,Brian Anderson,M,Lacerations to ankle & calf,N,R. Collier,GSAF; L.A. Times,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.24-Anderson.pdf +4701,2005.12.21,21-Dec-05,2005,Unprovoked,Usa,Hawaii,"Keawakapu Beach, Maui",Swimming,Jonathan Genant,M,Left hand bitten,N, San Francisco Gate 2/21/2005,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.21-Genant.pdf +4700,2005.12.20,20-Dec-05,2005,Boat,Atlantic ocean,600 nm west of the Canary Islands,Unknown,Competing in the Woodvale Atlantic Rowing Race,"7 m boat, occupants: Tara Remington & Iain Rudkin",Unknown,"No injury to occupants, shark rammed boat for 15 minutes",N,R.D. Weeks,GSAF; NZ Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.20-rowboat.pdf +4699,2005.12.11,11-Dec-05,2005,Unprovoked,Australia,Queensland,St. Crispin Reef,Spearfishing,Glenn Simpson,M,Right forearm & elbow bitten,N,Courier-Mail,12/12/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.11-Simpson.pdf +4698,2005.12.05.R,06-Dec-2005,2005,Boat,Australia,South Australia,"Middle Beach, 40 km north of Adelaide",Fishing,"5.4 m fibreglass boat, occupants: Robert & James Hogg",Unknown,"No injury to occupants, hydrofoil of outboard motor bitten ",N,Melbourne Herald Sun,12/5/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.05.R-HoggBoat.pdf +4697,2005.11.29.R,29-Nov-2005,2005,Unprovoked,Usa,Florida,"Cape San Blas, Gulf County",Surfing,John Larsen,M,Left foot bitten,N,wpmi.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.29.R-Larsen.pdf +4696,2005.11.27,27-Nov-05,2005,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Blake Perry,M,Right thumb & palm lacerated,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.27-Perry.pdf +4695,2005.11.25.c,25-Nov-05,2005,Boat,Australia,Victoria,"6 km off Collendina, south of Melbourne",Fishing,"4.5 m boat, occupant: Rodney Lawn",Unknown,"No injury to occupant, shark bit outboard motor",N,Sunday Mail (QLD),11/27/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.c-boat-Lawn.pdf +4694,2005.11.25.b,25-Nov-05,2005,Unprovoked,Australia,Victoria,Flinders,Surfing,Tom Burke,M,"2 lacerations on leg, each 4"" to 5"" long",N,Sydney Morning Herald,11/25/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.b-Burke.pdf +4693,2005.11.25.a,25-Nov-05,2005,Unprovoked,South africa,Eastern Cape Province,"Nahoon, East London",Surfing,Ashley Milford,M,"Cut on finger, board bitten",N,Dispatch online,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.a-Milford.pdf +4692,2005.11.24,24-Nov-2005-,2005,Unprovoked,New caledonia,Loyalty Islands,Maré,Spearfishing,Emile,Unknown,Arm bitten,N,Les Nouvelles Caledoniennes,11/29/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.24-Emile.pdf +4691,2005.11.21,21-Nov-05,2005,Unprovoked,Usa,Florida,"Jensen Beach, Martin County ",Surfing,a male from Miami,M,Left foot bitten,N,Stuart News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.21-JensenBeach.pdf +4690,2005.11.20,20-Nov-05,2005,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Kevin Spradlin,M,Lacerations to right thigh,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.20-Spradlin.pdf +4689,2005.11.16.R, 16-Nov-2005,2005,Boat,Unknown,Unknown,Unknown,Unknown,3.8-m boat with 3 people on board,Unknown,"No injury to occupants, shark lifted bow of boat 3 times",N,Le Quotidien,11/16/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.16.R-boat-NewCaledonia.pdf +4688,2005.11.15,15-Nov-05,2005,Provoked,South africa,Eastern Cape Province,Aston Bay,Fishing for sharks,Ivan Gerger,M,Lacerations to hands & right leg when he tried to pull shark from the water PROVOKED INCIDENT,N,J. Visser,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.15-Gerger.pdf +4687,2005.11.12,12-Nov-05,2005,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Lance Cameron,M,Puncture wounds to right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.12-Cameron.pdf +4686,2005.11.02.b,02-Nov-05,2005,Unprovoked,Usa,California,"Mavericks, Half Moon Bay, San Mateo County",Surfing,Tim West,M,"No injury, board bitten",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.b-West.pdf +4685,2005.11.02.a,02-Nov-05,2005,Unprovoked,Usa,California,"Ocean Beach, San Francisco, San Francisco County",Surfing,Jake Daneman,M,"No injury, board bumped",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.a-Daneman.pdf +4684,2005.10.29,29-Oct-05,2005,Unprovoked,Usa,Florida,"Ponce de Leon Inlet, Volusia County ",Wading,male,M,Puncture wounds to foot,N,Sentinel,1-/30/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.29-PonceInlet.pdf +4683,2005.10.25,25-Oct-05,2005,Unprovoked,St. maartin,Simpson Bay,Sunterra Beach,Standing,James Bumpers,M,Lower right leg lacerated,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.25-Bumpers.pdf +4682,2005.10.22,22-Oct-05,2005,Unprovoked,South africa,Western Cape Province,Uilenkraalsmond (near Gansbaai),Standing / Surfing,Christiaan van Zyl,M,Right foot bitten,N,Cape Times,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.22-vanZyl.pdf +4681,2005.10.21,21-Oct-05,2005,Unprovoked,Usa,California,"Klamath River mouth, Del Norte County",Surfing,Chad Reiker,M,No injury,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.21-Reiker.pdf +4680,2005.10.19,19-Oct-05,2005,Unprovoked,Usa,California,"Salmon Beach, Sonoma County",Surfing,Megan Halavais,F,Leg bitten,N,R. Collier,GSAF; Bay City Newswire,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.19-Halavais.pdf +4679,2005.10.15,15-Oct-05,2005,Provoked,Usa,Florida,"Ponce Inlet, Volusia County",Wading,N.W.,M,Minor cuts to dorsum & sole of left foot when he stepped on shark PROVOKED INCIDENT,N,S. Petersohn,GSAF; Florida Today,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.15-NW.pdf +4678,2005.10.13,13-Oct-05,2005,Unprovoked,Usa,Hawaii,"Honokowai, Maui",Surfing,Clayton Sado,M,"No injury, surfboard bitten",N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.13-Sado.pdf +4677,2005.10.11,11-Oct-05,2005,Unprovoked,Grand cayman,East Wall,Jack McKenney's Canyon,Scuba diving,Lea Ann Hughes,F,No injury ,N,L.A.Hughes; G. Holt,Scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.11-Hughes.pdf +4676,2005.10.06,06-Oct-05,2005,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Treading water/ Surfing,Charles Hutson,M,Five 1-inch lacerations to left foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.06-Hutson.pdf +4675,2005.10.03,03-Oct-05,2005,Unprovoked,Bahamas,Abaco Islands,Grand Cay,Diving,Nixon Pierre,M,Lacerations to right side of face,N,E. Ritter,GSAF; A. Armbrister,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.03-Nixon.pdf +4674,2005.10.01,01-Oct-05,2005,Unprovoked,South africa,Western Cape Province,"Sunny Cove, Fish Hoek",Surf-skiing,Trevor Wright,M,"No injury, shark bit ski",N,Cape Argus,Cape Times,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.01-Wright.pdf +4673,2005.09.27.R, 27-Sep-2005,2005,Unprovoked,Australia,New South Wales,Arakoon's Little Bay,Surfing,Wal Lewis,M,"No injury, knocked off board",N,Macleay Argues,9/27/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.27.R- Lewis.pdf +4672,2005.09.24,24-Sep-05,2005,Unprovoked,Australia,South Australia,Kangaroo Island,Surfing,Josh Berris,M,Lacerations to legs,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.24-Berris.pdf +4671,2005.09.23,23-Sep-05,2005,Unprovoked,Australia,Western Australia,"Scarborough Beach, Perth",Surfing,Brad Satchell,M, No injury,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.23-Satchell.pdf +4670,2005.09.22,22-Sep-05,2005,Invalid,Usa,Florida,"Tigertail Beach, Collier County",Surfing,Charlie Corrado,M,Lacerations to dorsum of left foot,N,A. Galabinski,Marco Island Sun Times,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.22-Corrado.pdf +4669,2005.09.20,20-Sep-05,2005,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Body surfing,Clair Parrett,F,"Injuries to fingers, calf & heel",N,C. Creswell,GSAF; K. Galliard,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.20-Parrett.pdf +4668,2005.09.11,11-Sep-05,2005,Unprovoked,Usa,South Carolina,Folly Beach,Surfing,"Greg Norton, Jr.",M,FATAL,Y,Post & Courier,9/12/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.11-Norton.pdf +4667,2005.09.07,07-Sep-05,2005,Unprovoked,Australia,New South Wales,"Park Beach, Coff's Harbour",Standing,Blake Garnett,M,Left foot & ankle lacerated,N,Sydney Morning Herald,9/9/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.07-Garnett.pdf +4666,2005.09.05,05-Sep-05,2005,Unprovoked,Usa,North Carolina,"North Topsail Beach, Onslow County",Wading,Elizabeth Gardner,F,Calf severely lacerated,N,Clay Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.05-Gardner.pdf +4665,2005.09.04.a,04-Sep-05,2005,Unprovoked,Australia,South Australia,"Fishery Bay, Eyre Peninsula",Surfing,Jake Heron,M,Lacerations to right arm & thigh,N,C.Jenkin,Courier-Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.04-Heron.pdf +4664,2005.09.02.b,02-Sep-05,2005,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Standing / Surfing,Frances Grause,M,Right foot bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.b-Grause.pdf +4663,2005.09.02.a,02-Sep-05,2005,Provoked,Thailand,Unknown,On deck of fishing trawler 100 nautical miles offshore,Removing shark from net,"Ham, a Cambodian migrant worker",M,FATAL PROVOKED INCIDENT,Y,Africa online,citing the Bangkok Post,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.a-Ham.pdf +4662,2005.08.24.b,24-Aug-05,2005,Unprovoked,Australia,South Australia,Glenelg ,Scuba diving,Jarrod Stehbens,M,FATAL,Y,Adelaide Advertiser,8/26/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.b-Stehbens.pdf +4661,2005.08.24.a,24-Aug-05,2005,Unprovoked,Usa,California,"Scripps, LaJolla, San Diego County",Surfing,Tony Simmonson,M,Lower right leg lacerated,N,R. Collier,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.a-Simmonson.pdf +4660,2005.08.22,22-Aug-05,2005,Invalid,Usa,South Carolina,"6th Avenue North, Myrtle Beach, Horry County","Boogie boarding, kicked at object in the water",Nicholas House,M,Laceration to knee,N,Clay Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.22-House.pdf +4659,2005.08.21,21-Aug-05,2005,Unprovoked,Usa,South Carolina,"34th Avenue North, Myrtle Beach, Horry County",Swimming,Jacob Kolessar,M,Bitten underneath left arm,N,Clay Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.21-Kolessar.pdf +4658,2005.08.19,19-Aug-05,2005,Unprovoked,Usa,Texas,Crystal Beach (east of Galveston),Walking,Julian Elizondo,M,Left foot bitten,N,Clay Creswell,GSAF; Houston Chronicle,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.19-Elizondo.pdf +4657,2005.08.14,14-Aug-05,2005,Invalid,South africa,Western Cape Province,"Milnerton Lagoon, Cape Town",Unknown,Unknown,Unknown,Human foot recovered from the water,N,J. Eager,scubaradio.com; Cape Times,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.14-foot.pdf +4656,2005.08.12,12-Aug-05,2005,Unprovoked,Usa,North Carolina,"Carolina Beach off Texas Avenue, New Hanover County",Surfing,Chris O'Connor,M,Laceration on right wrist & crescent of puncture wounds on forearm ,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.12-ChrisO'Connor.pdf +4655,2005.08.06,06-Aug-05,2005,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Swimming,Michael Lamb,M,Puncture wounds on left foot ,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.06-Lamb.pdf +4654,2005.08.01,01-Aug-05,2005,Invalid,Seychelles,Inner Islands,Off North Island,Fishing,Rolly Lesperance,M,"FATAL, shark involvement prior to death is unconfirmed",Y,D. Rowat,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.01-Lesperance.pdf +4653,2005.07.27,27-Jul-05,2005,Unprovoked,Usa,Florida,"Off Zelda Boulevard, Daytona Beach, Volusia Countyy",Wading,Nicole Carlos,F,Laceration on the back of left hand & toothmarks on wrist,N,D. Salamone,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.27-Carlos.pdf +4652,2005.07.23,23-Jul-05,2005,Unprovoked,Usa,Florida,"Ormond Beach, Volusia County",Surfing,Bob Thompson,M,"Right foot: Toes and back of foot, minor injury",N,D. Salamone,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.23-Thompson.pdf +4651,2005.07.22,22-Jul-05,2005,Invalid,Usa,Florida,"Quarter mile south of Ponce de Leon Inlet, Volusia County",Surfing,Matthew Pearce,M,"Straight 2.5"" laceration on top of left ankle",N,D. Salamone,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.22-Pearce.pdf +4650,2005.07.17.b,17-Jul-05,2005,Invalid,Unknown,Unknown,Unknown,Swimming,Valentyn Onuk,M,Presumed to have drowned until his body washed ashore 2 weeks later with shark bites,Y,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.b-Onuk.pdf +4649,2005.07.17.a,17-Jul-05,2005,Provoked,China,Shanghai,"Ocean World, Changfeng Park",Scuba diving in aquarium tank,Zhang Liang ,M,2 small cuts on right ear & head when he collided with the captive shark. PROVOKED INCIDENT,N,Shanghai Star,7/21/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.a-Liang.pdf +4648,2005.07.15.R, 15-Jul-2005,2005,Invalid,Unknown,Unknown,Unknown,Unknown,"Jeff Wells claimed he rescued his ""daughter"" from a 4 m tiger shark",Unknown,"A hoax - No shark was involved and Wells' ""daughter"" was his business partner Eileen Purchase who injured her finger on his boat",N,Sunday Mail,15/7/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.R- Hoax.pdf +4647,2005.07.15,15-Jul-05,2005,Unprovoked,Usa,North Carolina,"Holden Beach, Brunswick County",Swimming,Chris Humphrey,M,Lacerations of left forearm,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.a-Humphrey.pdf +4646,2005.07.13,13-Jul-05,2005,Unprovoked,Usa,Texas,"Port Bolivar, Galveston County",Holding onto an inflatable boat,Lydia Paulk,F,Left foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.13-Paulk.pdf +4645,2005.07.01,01-Jul-05,2005,Unprovoked,Usa,Florida,"Boca Grande, Lee County",Standing,Armin Trojer,M,Ankle bitten,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.01-Trojer.pdf +4644,2005.06.27,27-Jun-05,2005,Unprovoked,Usa,Florida,"Cape San Blas, Gulf County",Fishing,Craig Adam Hutto,M,"Leg severely bitten, surgically amputated",N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.27-Hutto.pdf +4643,2005.06.25,25-Jun-05,2005,Unprovoked,Usa,Florida,"Destin, Walton County",Swimming with boogie board,Jamie Marie Daigle ,F,"FATAL, leg bitten",Y,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.25-Daigle.pdf +4642,2005.06.22,22-Jun-05,2005,Unprovoked,Vanuatu,Malampa Province,Atchin Island off Malakula,Swimming,Alysha Margaret Webster,F,FATAL,Y,R.D. Weeks,GSAF; New Zealand Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.22-Webster.pdf +4641,2005.06.21,20-Jun-05,2005,Unprovoked,Mexico ,Baja California,San Luis beach,Surfing,Frank Johnson,M,Left foot bitten,N,http://www.signonsandiego.com/news/mexico/20050622-1621-mexico-sharkattack.html,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.21-Johnson.pdf +4640,2005.06.18,18-Jun-05,2005,Invalid,Usa,Hawaii,Maui,Swimming,Brad Grissom,M,"No injury, 2.1m [7'] tiger shark approached swimmer who repelled it with his fist",N,www.mauinews.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.18-Grissom.pdf +4639,2005.06.16,16-Jun-05,2005,Unprovoked,Usa,Florida,"Howard E. Futch Memorial Park at Paradise Beach, Brevard County",Swimming,male,M,Foot bitten,N,Local6.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.16-male.pdf +4638,2005.06.13,13-Jun-05,2005,Unprovoked,South korea,South Ch'ungch'ong Province,Dando/Kaeui Island ,Diving,Lee,F,Knee bitten,N,Korea Times,6/13/2005 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.13-Lee.pdf +4637,2005.06.07,07-Jun-05,2005,Unprovoked,Usa,South Carolina,"Kiawah Island, Charleston County",Boogie boarding,Catherine Cochrane,F,Foot lacerated,N,C. Creswell,GSAF; N. Kenney,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.07-Cochrane.pdf +4636,2005.06.05,05-Jun-05,2005,Invalid,Usa,New Jersey,"Surf City, Long Beach Island, Ocean County",Surfing,Ryan Horton,M,Dorsum of foot/ankle injured by surfboard skeg or other inanimate object.,N,Mr. Horton; R. Collier, R. Fernicola; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.05-Horton.pdf +4635,2005.06.04,04-Jun-05,2005,Unprovoked,South africa,Western Cape Province,Miller's Point,Spearfishing (Free diving),Henri Murray,M,FATAL,Y,News24.com; SABC; H. Steele,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.04-HenriMurray.pdf +4634,2005.06.02,02-Jun-05,2005,Unprovoked,Usa,Texas,"Mustang Island, Corpus Christi",Wading,male,M,Two 2-inch lacerations on right foot,N,KRIS6 News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.02-Texas.pdf +4633,2005.05.28,28-May-05,2005,Unprovoked,Usa,Florida,Daytona Beach Shores,Swimming,Alfonso Garcia,M,Left foot bitten,N,Daytona Beach News Journal,5/29/2005; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.28-Garcia.pdf +4632,2005.05.27,27-May-05,2005,Unprovoked,Usa,Florida,"Sand Key Beach, Clearwater, Pinellas County",Crouching in 2' of water,Michelle Smith,F,Right arm & torso bitten,N,D.Wilhoit,The Ledger,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.27-Smith.pdf +4631,2005.05.25,25-May-05,2005,Unprovoked,South africa,Eastern Cape Province,Kei River Mouth,Surfing,Jay Catherall ,M,Left buttock & legs lacerated ,N,C. Prince,East London Daily Dispatch,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.25-Catherall.pdf +4630,2005.05.15,15-May-05,2005,Unprovoked,Australia,Queensland,50 km east of Townsville,Spearfishing,Ben Edelstein,M,Severe injury to lower leg,N,J. Anderson,Townsville Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.15-Edelstein.pdf +4629,2005.05.14,14-May-05,2005,Unprovoked,Usa,Hawaii,"North Kihei, Maui",Kayaking,J. Bailey,Unknown,"No injury, shark bit kayak",N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.14-Bailey.pdf +4628,2005.05.03,03-May-05,2005,Unprovoked,Unknown,Unknown,Unknown,Fishing,Sochidjin,M,Thigh bitten,N,Clicanoo,5/6/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.03-Sochodjin.pdf +4627,2005.05.02.R,02-May-05,2005,Sea Disaster,Usa,South Carolina,Off Sullivans Island,Sea Disaster,Boat: 14' Sunfish. Occupants Josh Long & Troy Driscoll,M,No injury,N,Gaffney Ledger,5/2/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.R-NC-boysAdrift.pdf +4626,2005.05.02,02-May-05,2005,Unprovoked,Usa,Hawaii,"Noreiga's, Maui",Surfing,Scott Hoyt,M,"No injury, board damaged",N,T. Hurley,Honolulu Advertiser; L. Fujimoto,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.a-Hoyt.pdf +4625,2005.04.25,25-Apr-05,2005,Provoked,Australia,New South Wales,Bermagui,Fishing,male,M,Laceration on left thigh PROVOKED INCIDENT,N,Brisbane Courier Mail,4/26/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.25-deckhand.pdf +4624,2005.04.17.R,17-Apr-05,2005,Unprovoked,Australia,New South Wales,Crookhaven,Unknown,Unknown,Unknown,Shark-bitten surfboard found adrift,N,Illawarra Mercury,4/17/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.17.a-Crookhaven.pdf +4623,2005.04.16.b,16-Apr-05,2005,Unprovoked,Australia,Northern Territory,Bremer Island,Spearfishing,Clayton Deane,M,Minor cuts above his right eye,N,G. McLean,Northern Territory News; Sunday Territorian,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.b-Deane.pdf +4622,2005.04.16.a,16-Apr-05,2005,Unprovoked,Australia,New South Wales,Bronte Beach,Surfing,Simon Letch,M,"No injury, board bitten",N,The Sun; Illwarra Mercury; Yahoo News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.a-Letch.pdf +4621,2005.04.13,13-Apr-05,2005,Unprovoked,Usa,Florida,"Crescent Beach, Sarasota County",Wading,Jessica Lynch,F,Right lower leg bitten,N,Herald Tribune.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.13-Lynch.pdf +4620,2005.04.09,09-Apr-05,2005,Invalid,Usa,Florida,"Central Gulf Coast, St. John County",Surfing,Glenn Henderson,M,Foot injured ,N,WTSP TampaBays10.com; First Coast News,April 10,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.09-Henderson.pdf +4619,2005.04.07,07-Apr-05,2005,Unprovoked,Usa,Texas,"Isla Blanca Park, South Padre Island, Cameron County",Surfing,Gianluca Ferrario ,M,Left foot bitten ,N,G. Ferrario; J. Mendoza,Cameron County Parks; The Herald (Brownsville),http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.07-GianlucaFerrario.pdf +4618,2005.04.06,06-Apr-05,2005,Unprovoked,Usa,Florida,"Jacksonville Beach, Duval County",Unknown,Jessica Abe,F,Left calf injured,N,WJXT News4Jax.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.a-Abe.pdf +4617,2005.04.06,06-Apr-05,2005,Invalid,Honduras,Bay Islands,Utila,SCUBA Diving,female,F,"Laceration on siide of calf, small laceration on thigh, large bruise on other leg inside the knee, knuckle of hand abraded",N,J. Engel,SRI & S. Fox,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.b-Utila.pdf +4616,2005.03.28,28-Mar-05,2005,Unprovoked,South africa,Western Cape Province,Noordhoek,Surfing,Chris Sullivan,M,"Lacerations to right calf, puncture wounds on right foot",N,ITN,3/30/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.28-Sullivan.pdf +4615,2005.03.27.R, 27-Mar-2005,2005,Unprovoked,Australia,New South Wales,Unknown,Surfing,Chris Parker,M,"No injury, shark rammed surfboard",N,Sunday Age,3/27/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.27.R-Parker.pdf +4614,2005.03.25,25-Mar-05,2005,Unprovoked,Venezuela,Unknown,Punta Caracas,Surfing,Jokin Leizaola,M,Right leg bitten,N,A. Brenneka,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.25-Leizaola.pdf +4613,2005.03.19,19-Mar-05,2005,Unprovoked,Australia,Western Australia,"Wreck Point, Abrolhos Islands",Snorkeling,Geoffrey Brazier,M,FATAL,Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.19-Brazier.pdf +4612,2005.03.12,12-Mar-05,2005,Provoked,Usa,New Mexico,"Albuquerue Aquarium, Albuquerue",Diving in aquarium display tank,Ken Pitts,M,2 punctures on forearm as captive shark collided with diver PROVOKED INCIDENT,N,H. Casman; T. Dukart,KOBTV,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.12-Pitts.pdf +4611,2005.03.10,10-Mar-05,2005,Invalid,South africa,KwaZulu-Natal,Isipingo,Unknown,Anthony Arnachallan ,M,Shark bites post mortem,N,J. Govander,Nokia Sea Rescue,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.10-Arnachallan.pdf +4610,2005.03.09,09-Mar-05,2005,Provoked,New zealand,North Island,"Waiapu River mouth , East Cape",Fishing,"Chris Haenga, Wayne Rangihuna & Tamahau Tibble",M,"No injury, netted shark dragged them 350 metres out to sea PROVOKED INCIDENT",N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.09-fishermen.pdf +4609,2005.03.05,05-Mar-05,2005,Unprovoked,Solomon islands,Santa Isabel Province,Unknown,Diving,male,M,Thighs bitten,N,Solomon Star,3/9/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.05-SolomonIslands.pdf +4608,2005.02.26,26-Feb-05,2005,Unprovoked,Australia,Queensland,Brisbane River,Swimming,Nathan Shaxson,M,Finger bitten,N,Queensland Times,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.26-Shaxson.pdf +4607,2005.02.22,22-Feb-05,2005,Provoked,Usa,Florida,"Long Key, Monroe County",Spearfishing,Alex Mumzhiu,M,Speared shark bit his chest PROVOKED INCIDENT,N,http://www.foldabikes.com/CurrentEvents/Story/Florida.html,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.22-AlexMumzhiu.pdf +4606,2005.02.16,16-Feb-05,2005,Unprovoked,Usa,Hawaii,"Rocky Point, north shore of O'ahu",Surfing,Greg Long,M,"No injury, knocked off board, shark bit board",N, R. Collier,GSAF; T. Winters,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.16-Long.pdf +4605,2005.02.13,13-Feb-05,2005,Unprovoked,Usa,Florida,Fort Lauderdale,Spearfishing,male,M,Hand bitten,N,J. Herrera,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.13-FtLauderdale.pdf +4604,2005.02.04,04-Feb-05,2005,Unprovoked,Brazil,Bahia,Ilhéus,Surfing,Antonio de Carvalho Miguel Pereira ,M,Right thigh & ankle injured,N,Orlando Sentinel,2/5/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.04-Pereira.pdf +4603,2005.01.20,20-Jan-05,2005,Unprovoked,Cuba,Santiago de Cuba Province,Uvero,Swimming,Hurdenis Jérez ,M,Left foot severed,N,Cuba News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.20-Jerez.pdf +4602,2005.01.19,19-Jan-05,2005,Provoked,Australia,Victoria,Port Phillip Bay,Spearfishing,Julian McLaughlin,M,No injury. Towed by speared shark PROVOKED INCIDENT,N,Herald Sun News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.19-McLaughlin.pdf +4601,2005.01.14,14-Jan-05,2005,Provoked,Australia,Victoria,Blairgowrie,Attempting to drive shark away from sailing regatta,dinghy,Unknown,"No injury to occupants, one of the boat's flotation tanks holed PROVOKED INCIDENT",N,Herald Sun News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.14-raceboat.pdf +4600,2005.01.08,08-Jan-05,2005,Unprovoked,New zealand,North Island,Taupiri Bay,Fishing from a kayak,Paul Morris,M,"No injury, kayak bumped repeatedly",N,R. Collier & R.D. Weeks,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.08-PaulMorris.pdf +4599,2004.12.26,26-Dec-04,2004,Invalid,Sri lanka,Eastern Province,Pasikudha,"Swept out to sea by the tsunami, she clung to a log for 24 hours",Sylvia Lucas,F,No injury,N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.26-Lucas.pdf +4598,2004.12.16,16-Dec-04,2004,Unprovoked,Australia,South Australia,"West Beach, Adelaide",Scurfing (surfboard being towed behind a boat),Nick Peterson,M,FATAL,Y,P. Kemp & T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.16-Peterson-draft.pdf +4597,2004.12.11,11-Dec-04,2004,Unprovoked,Australia,Queensland,Opal Reef,Spearfishing,Mark Thompson,M,"FATAL, leg bitten",Y,Weekend Australian,2/17/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.11-Thompson.pdf +4596,2004.11.27,27-Nov-04,2004,Unprovoked,South africa,Eastern Cape Province,"Nahoon, East London",Surfing,Llewellyn Maske,M,3 lacerations on foot,N,J. Eager,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.27-Maske.pdf +4595,2004.11.26,26-Nov-04,2004,Unprovoked,South africa,Eastern Cape Province,Gonubie,Playing,Arno de Bruyn,M,Lacerations on lower leg & foot,N,J. Eager,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.26-ArnoDeBruyn.pdf +4594,2004.11.15,15-Nov-04,2004,Unprovoked,South africa,Western Cape Province,"Fish Hoek, False Bay",Swimming,Tyna Webb,F,FATAL,Y,J.P. Botha,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.15-TynaWebb.pdf +4593,2004.11.11.b,11-Nov-04,2004,Unprovoked,Usa,California,"Bunkers, Humboldt Bay, Eureka, Humboldt County",Surfing,Brian Kang,Unknown,"Lacerations to hand, knee & thigh ",N,R. Collier,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.b-Kang.pdf +4592,2004.11.11.a,11-Nov-04,2004,Unprovoked,Vanuatu,Malampa Province,Malakula (Malakula Island),Snorkeling,a German tourist (male),M,Thigh bitten,N,R. Harris,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.a-Vanuatu.pdf +4591,2004.11.00,Nov-04,2004,Unprovoked,New caledonia,North Province,Koumac,Diving,Unknown,Unknown,Forearm bitten,N,Les Nouvelles Caledoniennes,11/19/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.00-Koumac.pdf +4590,2004.10.31,31-Oct-04,2004,Unprovoked,Cuba,Camaguey Province,Santa Lucia,Diving,male,M,Left forearm bitten,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.31-CubanSharkFeed.pdf +4589,2004.10.30.x,30-Oct-04,2004,Invalid,New zealand,North Island,Whangarei,Unknown,Unknown,Unknown,No injury,N,New Zealand Herald,11/24/2004/15/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.x-NewZealand.pdf +4588,2004.10.30.a,30-Oct-04,2004,Unprovoked,South africa,Western Cape Province,Gansbaai,Chumming for white sharks,Andre Hartman,M,Right ankle & foot lacerated,N,J.P. Botha,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.a-Hartman.pdf +4587,2004.10.21,21-Oct-04,2004,Unprovoked,Australia,New South Wales,Stockton Beach,Surfing,John Gresham,M,Right foot lacerated,N,The Border Mail,10/23/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.21-Gresham.pdf +4586,2004.10.10,10-Oct-04,2004,Unprovoked,Usa,California,"Limantour Beach, Point Reyes National Seashore",Surfing,Paul de Jung,M,Lower leg bitten,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.10-deJung.pdf +4585,2004.10.09.b,09-Oct-04,2004,Unprovoked,Usa,Hawaii,Moloka'i,Spearfishing,Davy Sanada,M,Left shoulder bitten,N,The Maui News,10/10/2004 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.b-Sanada.pdf +4584,2004.10.09.a,09-Oct-04,2004,Unprovoked,South africa,Eastern Cape Province,Jeffrey’s Bay,Surfing,Wayne Monk,M,Puncture wounds on right foot,N,Sunday Argus,10/10/2004; W. Steenkamp,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.a-Monk.pdf +4583,2004.10.06,06-Oct-04,2004,Unprovoked,Reunion,Conservatória District,"P' tit Paris, Saint-Pierre",Body boarding,Vincent Motais ,M,"Leg severely bitten, surgically amputated",N,Federation Francaise de Surf,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.06-Motais.pdf +4582,2004.10.02,02-Oct-04,2004,Unprovoked,Usa,California,"Pismo Beach, San Luis Obispo County",Surfing,Ben Ikola,M,"No injury, knocked off surfboard",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.02-Ikola.pdf +4581,2004.10.01,01-Oct-04,2004,Unprovoked,Usa,California,"Lifeguard Tower 16, Huntington Beach, Orange County",Surfing,Chuck Wilson,M,"No injury, shark struck board & spun it around",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.01-Wilson.pdf +4580,2004.09.25,25-Sep-04,2004,Boat,Australia,Queensland,Batt Reef,Spearfishing/ filming,"inflatable dinghy, occupants: Ben Cropp, J. Harding & T. Fleischman",Unknown,"No injury to occupants, boat damaged",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.25-CroppBoat.pdf +4579,2004.09.20,20-Sep-04,2004,Unprovoked,Usa,Oregon,Gold Beach,Surfing,Seth Mead,M,Leg bitten,N,S. Mead,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.20-Mead.pdf +4578,2004.09.10,10-Sep-04,2004,Invalid,Usa,Texas,South Padre Island,Surf fishing,male,M,Minor scratch on calf,N,M. Shields,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.10-SouthPadreIsland.pdf +4577,2004.09.08,08-Sep-04,2004,Unprovoked,Brazil,Pernambuco,"Pina, Recife",Swimming,Unidentified,Unknown,FATAL,Y,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.08-Pina.pdf +4576,2004.09.04,04-Sep-04,2004,Unprovoked,Usa,South Carolina ,"North of Apache Pier, Myrtle Beach, Horry County",Jumping,Megan Durham,F,Left knee & leg bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.04-Durham.pdf +4575,2004.08.29,29-Aug-04,2004,Unprovoked,Usa,Florida,"New Smyrna Beach / Cape Canaveral National Seashore, Brevard County",Walking,Debbie Salamone,F,Heel bitten,N,T. Jerome,GSAF; Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.29-Salamone.pdf +4574,2004.08.21,21-Aug-04,2004,Unprovoked,Brazil,Pernambuco,"Boa Viagem Beach, Recife",Bathing,Wagner da Silva,M,Calf bitten & both hands injured,N,P. M. Lopes,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.21-daSilva.pdf +4573,2004.08.20,20-Aug-04,2004,Unprovoked,Usa,California,"204s, San Clemente, Orange County",Surfing,Shannon Lehman,M,Foot bitten,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.20-Lehmann.pdf +4572,2004.08.15,15-Aug-04,2004,Unprovoked,Usa,California,"Kibesillah, Mendocino County",Diving,Randy Fry,M,FATAL,Y,R. Collier & L. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.15-Fry.pdf +4571,2004.08.06,06-Aug-04,2004,Unprovoked,Usa,Florida,"Big Bayou, St. Petersburg, Pinellas County ",Swimming,James Tiffee,M,"Back, buttocks, left hand & left side of face bitten",N,T. Jerome,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.06-Tiffee.pdf +4570,2004.08.03,03-Aug-04,2004,Unprovoked,Australia,New South Wales,Byron Bay,Spearfishing,male,M,Minor puncture wounds to leg,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.03-ByronBay.pdf +4569,2004.08.00,Aug-04,2004,Boat,South africa,KwaZulu-Natal,Park Rynie,Fishing,boat x 2,Unknown,No injury to occupants; boat damaged,N,J. Eager,scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.00-SAboats.pdf +4568,2004.07.31,31-Jul-04,2004,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing,Kelly Getzfread,F,Right foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.31-Getzfread.pdf +4567,2004.07.30,30-Jul-04,2004,Unprovoked,Russia,Kuril Islands in the Pacific,"Kunashir Island, 70 km from northern Japan",Diving & fishing with net,Vladimir Skutelnik,M,Thigh & calf bitten,N,M. Gozum & J. Eager,scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.30-Skutelnik.pdf +4566,2004.07.28,28-Jul-04,2004,Unprovoked,Usa,North Carolina,"Rodanthe, Dare County",Surfing,Catherine Delneo,F,Right calf bitten,N,C.Delneo,C. Creswell,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.28-Delneo.pdf +4565,2004.07.27.b,27-Jul-04,2004,Unprovoked,Usa,North Carolina,"Carolina Beach, New Hanover County",Swimming,Alexis Huesgen,F,Right forearm & wrist lacerated,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.b-Huesgen.pdf +4564,2004.07.27.a,27-Jul-04,2004,Unprovoked,Usa,Texas,Galveston Island,Swimming,Erika Hailey,F,Right foot bitten,N,KETK56 News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.a-Hailey.pdf +4563,2004.07.25,25-Jul-04,2004,Unprovoked,Usa,Texas,"Bryan Beach, Brazoria County",Wading / fishing & carrying a bag of fish,Aaron Perez,M,Right forearm nearly severed and bites above & below the right knee,N,KRISTV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.25-AaronPerez.pdf +4562,2004.07.19.R," 19-Jul-2004 to have happened ""on the weekend""",2004,Boat,Australia,Western Australia,"7 km off Trigg surf beach, Perth",Fishing,"boat, occupants: Mike Taylor & his son, Jack, age 9 ",Unknown,"No injury to occupants; shark mouthed motor, severed anchor line",N,Channel 9; Northern Territory News,7/20/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.19.R-boat.pdf +4561,2004.07.15,15-Jul-04,2004,Unprovoked,Japan,Wakayama Prefecture,Susami,Fishing for squid aboard the trawler Shikishima-Maru when the shark leapt into the boat,Yuji Torimi,M,Suffered broken ribs when the shark's tail fin slammed into his chest,N,Mainichi Shimbun,7/17/2004 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.15-Torimi.pdf +4560,2004.07.10,10-Jul-04,2004,Unprovoked,Australia,Western Australia,"Lefthanders Beach, Margaret River",Surfing,Bradley Adrian Smith,M,"FATAL, abdomen, pelvis & leg bitten ",Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.10-BradSmith.pdf +4559,2004.07.02.b,02-Jul-04,2004,Unprovoked,Egypt,Sinai Peninsula,The lagoon at Dahab,Snorkeling,"Mirjam Buser, a Swiss tourist",F,Hand severed,N,E. Ritter,GSAF; iwindsurf.co.uk,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.b-MiriamBuser.pdf +4558,2004.07.02.a,02-Jul-04,2004,Unprovoked,Usa,Alabama,"Gulf Shores Beach, Baldwin County",Wading,Trenton Martin,M,Right foot lacerated,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.a-TrentonMartin.pdf +4557,2004.06.26.b,26-Jun-04,2004,Unprovoked,Usa,California,"San Onofre State Beach, San Diego County",Surfing,Kelly French,M,"No injury, shark struck his board",N,R. Collier; GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.b-French.pdf +4556,2004.06.26.a,26-Jun-04,2004,Invalid,Australia,Western Australia,Floreat Beach,Crayfishing,Gavin Duncan,M,"No injury, shark made threat displays & diver fended it off with his speargun",N,T. Peake,GSAF; Sunday Times (Perth) 6/27/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.a-Duncan.pdf +4555,2004.06.14,14-Jun-04,2004,Unprovoked,Usa,Florida,"Disney / Vero Beach, Indian River County",In water with diving seabirds,girl,F,Foot bitten,N,Global Lifeguards,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.14-Disney.pdf +4554,2004.06.10.b,10-Jun-04,2004,Unprovoked,Australia,Western Australia,Bunbury,Body boarding,Tom O'Brien,M,Ankle & foot lacerated,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.b-O'Brien.pdf +4553,2004.06.10.a,10-Jun-04,2004,Unprovoked,Usa,Florida,"Daytona Beach Shores, Volusia County",Swimming,Mitchell Anderson,M,Right wrist & left arm lacerated,N,T. Jerome,"GSAF; Daytona Beach News Journal,",http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.a-Anderson.pdf +4552,2004.06.02,02-Jun-04,2004,Unprovoked,South africa,Western Cape Province,Dyer Island,"Swimming, poaching perlemoen",Nkosinathi Mayaba,M,"FATAL, leg severed ",Y,J. Smetherham & B. Ndenze,Cape Times,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.02-Mayabai.pdf +4551,2004.05.29,29-May-04,2004,Unprovoked,Usa,Texas,"Pirate's Beach, Galveston Island",Wading,Ryan Eckstrum,M,Puncture wounds on shin,N,J. David,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.29-Eckstrum.pdf +4550,2004.05.23.b,23-May-04,2004,Unprovoked,Brazil,Pernambuco,Piedade Beach,Swimming,Walmir Pereira da Silva,M,"Left hand, foot severed & left calf & arm bitten",N,P. M. Lopes,GSAF; JC,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.b-Silva.pdf +4549,2004.05.28,28-May-04,2004,Unprovoked,Usa,California,"Salmon Creek, Sonoma County",Surfing,"Bernard 'Butch' Connor, Jr.",M,No injury,N,R. Collier,GSAF; B. Connor,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.28-Connor.pdf +4548,2004.05.23.a,23-May-04,2004,Unprovoked,Usa,Florida,"St. Augustine, St. John's County",Boogie-boarding / swimming,male,M,Calf & foot lacerated,N,News4Jax,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.a - St.Augustine.pdf +4547,2004.05.22.c,22-May-04,2004,Invalid,Usa,Florida,St. Augustine St. Johns County,Swimming,male,M,Single puncture wound on the foot,N,T. Jerome,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.c-male.pdf +4546,2004.05.22.b,22-May-04,2004,Unprovoked,Usa,Florida,"Jacksonville Beach, Duval County",Unknown,Michaela Grogan,F,Foot bitten,N,First Coast News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.b-Grogan.pdf +4545,2004.05.22.a,22-May-04,2004,Unprovoked,Brazil,Pernambuco,"Piedade Beach, Recife",Wading,Naiane Barbosa Bringel,F,Hips & thighs bitten,N,P.M. Lopes,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.a-Bringel.pdf +4544,2004.05.18,18-May-04,2004,Provoked,Bahamas,Abaco Islands,Green Turtle Cay,Free diving & spearfishing,Wolfgang Leander,M,Left forearm bitten PROVOKED INCIDENT,N,W. Leander,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.18-Leander.pdf +4543,2004.05.04,04-May-04,2004,Unprovoked,Usa,Texas,Channel between South Padre Island & Padre Island National Seashore,Tandem surfing,Rachel Gore,M,"No injury, board bitten",N,G. Gore & M. Sturdevant,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.04-Gore.pdf +4542,2004.05.01,01-May-04,2004,Unprovoked,Brazil,Pernambuco,Piedade ,Swimming,Orlando Oscar da Silva,M,FATAL,Y,JCOnline,5/2/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.01-Orlando.pdf +4541,2004.04.26,26-Apr-04,2004,Unprovoked,Australia,New South Wales,"Latitude Reef, near Forster",Diving,Chai Griffin,M,Puncture wounds on wrist,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.26-Griffin.pdf +4540,2004.04.22,22-Apr-04,2004,Boat,New zealand,North Island,Motunui,Fishing,boat Live N Hope,Unknown,"No injury to occupants, boat scratched by shark",N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.22-boatLive'N-Hope.pdf +4539,2004.04.13.b,13-Apr-04,2004,Unprovoked, tonga,Nuku'alofa,30 nautical miles offshore,Five men on makeshift raft after their 10 m fishing boat capsized and sank in rough seas. Survivors rescued after 7.5 hours in the water, male 2,M,"Bitten on feet, legs, back & abdomen but survived. Survivors rescued after 7.5 hours in the water",Y,New Zealand Herald,4/15/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.b-Tonga.pdf +4538,2004.04.13.a,13-Apr-04,2004,Invalid, tonga,Nuku'alofa,30 nautical miles offshore,Five men on makeshift raft after their 10 m fishing boat capsized and sank in rough seas. Survivors rescued after 7.5 hours in the water,male 1,M,"He was was bitten on the arm by small sharks & died, but it was not clear if he died as result of the bite or death resulted from drowing",Y,New Zealand Herald,4/15/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.a-Tonga.pdf +4537,2004.04.07,07-Apr-04,2004,Unprovoked,Usa,Hawaii,"Kahana Beach, Maui",Surfing,Willis McInnis,M,FATAL Severe wound to right thigh & calf,Y,L. Fujimoto,B. Perry & M. Tanji,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.07-McInnis.pdf +4536,2004.04.05,05-Apr-04,2004,Unprovoked,South africa,Western Cape Province,"Surfers' Corner, Muizenberg, False Bay",Surfing,J.P. Andrew,M,"Left leg lacerated, right leg severed above the knee ",N,L. Compagno & E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.05-JP-Andrew.pdf +4535,2004.04.04,04-Apr-04,2004,Invalid,Usa,Hawaii,Velzyland,Surfing,Courtney Marcher,F,"Disappeared, surfboard washed ashore, marks on leash suggested shark involvement ",Y,R. Antone,Honolulu Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.04-CourtneyMarcher.pdf +4534,2004.03.31.b,31-Mar-04,2004,Unprovoked,Usa,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Unknown,Todd Rapp,M,Right foot bitten,N,D. Davies,Palm Beach Post,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.b-Rapp.pdf +4533,2004.03.31.a,31-Mar-04,2004,Unprovoked,Usa,Florida,"Stuart Rocks, Martin County",Surfing,Chance Dean,M,15 puncture wounds on foot,N,T. Jerome,GSAF; Palm Beach Post,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.a-Dean.pdf +4532,2004.03.29,29-Mar-04,2004,Unprovoked,Brazil,Pernambuco,Piedade Beach,Body boarding,Alcindo de Souza Leão Júnior,M,"Lower left leg bitten, surgically amputated",N,P.M. Lopes,GSAF; Diaro,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.29-Souza.pdf +4531,2004.03.28,28-Mar-04,2004,Unprovoked,Usa,Florida,"Pelican Beach Park, Satellite Beach, Brevard County",Surfing,male,M,Heel bitten,N,J.D. Gallop,Florida Today,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.28-PelicanBeach.pdf +4530,2004.03.27.b,27-Mar-04,2004,Unprovoked,Reunion,Saint-Benoît,Spot de la gare,Surfing,Rémy Lorion,M,Right thigh bitten,N,Clicanoo,le journal de l'Ile de la Réunion,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.b-Lorion.pdf +4529,2004.03.27.a,27-Mar-04,2004,Unprovoked,Usa,Florida,"Sanibel Island, Lee County",Swimming,Peter G. Hoffman,M,Minor lacerations & abrasions on forearm,N,T. Jerome,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.a-Hoffman.pdf +4528,2004.03.24,14-Mar-04,2004,Unprovoked,Usa,Hawaii,Punaluu,Snorkeling,C. Mooney,F,Lacerations to left foot,N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.24-Mooney.pdf +4527,2004.03.22,22-Mar-04,2004,Unprovoked,New zealand,North Island,Te Arai Point,Spearfishing,Marc Fraser & Blair Fraser,M,No injury,N,J. Edgar,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.22-Fraser.pdf +4526,2004.03.16,16-Mar-04,2004,Unprovoked,Usa,Hawaii,"Kalihiwai Beach, Kauai",Surfing,Bruce Orth,M,"No injury, board bitten",N,The Hawaii Channel,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.16-Orth.pdf +4525,2004.03.06,06-Mar-04,2004,Unprovoked,Australia,Western Australia,5 nm off Cervantes,Spearfishing,Greg Pickering,M,Shin & calf bitten,N,T. Peake,GSAF; Sunday Times (Perth) 3/7/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.06-Pickering.pdf +4524,2004.02.29,29-Feb-04,2004,Unprovoked,Brazil,Pernambuco,"Piedade Beach, Recife",Swimming,Edimilson Henrique dos Santos,M,"FATAL, right thigh & hip bitten ",Y,P. M. Lopez,GSAF; Northern Territory News,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.29-dosSantos.pdf +4523,2004.02.26,26-Feb-04,2004,Unprovoked,New zealand,"South Island, near Karitane north of Dunedin",South Beach,Surfing,Chris Blair,M,Thigh lacerated,N,R.D. Weeks,GSAF; NZ Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.26-Blair.pdf +4522,2004.02.21,21-Feb-04,2004,Unprovoked,Australia,New South Wales,"Taree, Old Bar Beach",Swimming,male,M,Three toes lacerated,N,Manning River Times,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.21-Taree.pdf +4521,2004.02.16,16-Feb-04,2004,Invalid,Australia,Queensland,"Fido's Reef, 300 m east of Cook Island. Cook Island is 2 miles from Tweed Heads, Gold Coast",Free diving & spearfishing,Mark Bryant,M,"Disappeared while diving, may have suffered shallow water blackout. Searchers observed large tiger sharks & whaler sharks in the area",N,news.com.au; Northern Territory News,2/18/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.16-Bryant.pdf +4520,2004.02.14,14-Feb-04,2004,Unprovoked,Egypt,Unknown,"Coral Bay, Sharm-el-Sheikh",Snorkeling, male,M,FATAL,Y,divernet.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.14-Sinai.pdf +4519,2004.02.11,11-Feb-04,2004,Unprovoked,Australia,New South Wales,Caves Beach,Snorkeling,Luke Tresoglavic,M,Leg bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.11-Tresoglavic.pdf +4518,2004.01.25,25-Jan-04,2004,Unprovoked,Australia,Western Australia,Binningup,Scuba diving,Allan Oppert,M,Left leg bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.25-Oppert.pdf +4517,2004.01.23,23-Jan-04,2004,Unprovoked,Uruguay,Rocha,Ensenada de la Coronilla,Surfing,Marcos González Selayaran ,M,Puncture wounds to dorsum of right foot,N,C.M. Prigioni el al,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.23-Uruguay.pdf +4516,2004.01.22,22-Jan-04,2004,Invalid,New zealand,Northlands,90 Mile Beach,Boogie boarding,male,M,"No injury, swim fin damaged",N,The Northlands,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.22.R-90MileBeach.pdf +4515,2004.01.21.b,21-Jan-04,2004,Unprovoked,Venezuela,Anzoategui,"Playa Colorada Beach, Mochima National Park, only 200 m west of Santa Cruz Beach",Swimming,Stefan Moeller,M,Lower back & hand bitten,N,D. Ramierez,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.b-Moeller.pdf +4514,2004.01.21.a,21-Jan-04,2004,Unprovoked,Venezuela,Anzoategui,"Santa Cruz Beach, Mochima National Park, 250 km from Caracas",Spearfishing,Alside Raphael Morales Gonzalez,M,Right leg bitten,N,D. Ramierez,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.a-Gonzalez.pdf +4513,2004.01.15.R,15-Jan-2004 ,2004,Boat,South africa,KwaZulu-Natal,Ballito,Surf skiing,Dave Hamilton-Brown & Ant Rowan,M,"No injury to occupants, stern of ski bitten",N,surfski.co.nz,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.15.R-Ballito.pdf +4512,2004.01.12,12-Jan-04,2004,Unprovoked,Australia,New South Wales,Bushrangers Pass at Bass Point,Diving,Bruce Flynn & his dive buddy,M,"No injury, swim fin ripped off",N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.12-Flynn.pdf +4511,2004.01.07,07-Jan-04,2004,Unprovoked,South africa,Eastern Cape Province,"West Beach, Port Alfred",Surfing,Alan Horsfield,M,Foot lacerated,N,A. Cobb & E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.07-Horsfield.pdf +4510,2004.01.03.b,03-Jan-04,2004,Invalid,New zealand,North Island,"Whiritoa, Eastern Cormandel",Kayaking (returning from spearfishing),a male from Waikato,M,"No injury, no attack, shark took fish from back of kayak",N,R.D. Weeks,GSAF; Waikto Times,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.b-WaikatoMale.pdf +4509,2004.01.03.a,03-Jan-04,2004,Sea Disaster,Egypt,Sinai Peninsula,Off Sharm El-Sheikh,Air disaster. Flash Airlines Boeing 737 crashed into the Red Sea,135 passengers & 13 crew,Unknown,"No survivors, sharks scavenged on remains",Y,Scotsman,1/4/2004,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.a-RedSeaAirDisaster.pdf +4508,2004.00.00,2004,2004,Unprovoked,Australia,Western Australia,Redgate Beach,Surfing,Jack Carlsen,M,No inury,N,J. Carlsen,,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.00.00-Carlsen.pdf +4507,2003.12.31,31-Dec-03,2003,Boat,South africa,KwaZulu-Natal,Salt Rock ,Unknown,skiboat,Unknown,No injury to occupants,N,Natal Sharks Board,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.31-SaltRock.pdf +4506,2003.12.26,26-Dec-03,2003,Invalid,Usa,Florida,"Miami, Dade County",Swimming,Richard Hansell,M,Knee lacerated,N,The Times (London),12/27/2003,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.26-Hansell.pdf +4505,2003.12.13.b,13-Dec-03,2003,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Swimming,male,M,Foot bitten,N,Florida Today (Melbourne),12/14/2003,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.b-boy.pdf +4504,2003.12.13.a,13-Dec-03,2003,Unprovoked,New zealand,Cook Islands,Pukapuka Northern Group,Swimming / shipwreck,Teta Vaotiare,M,FATAL,Y,R. Weeks; Cook Islands Government News Release,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.a-Vaotiare.pdf +4503,2003.12.08,08-Dec-03,2003,Unprovoked,Australia,Victoria,Collendina Beach east of Ocean Grove,Surfing amid a shoal of sharks,Sam Myer,M,"No inury, shark caught leash attached to surfer's ankle & towed him a short distance",N,J. Eager,scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.08-Myer.pdf +4502,2003.11.30.b,30-Nov-03,2003,Unprovoked,Australia,Western Australia,Perth? (Margaret River District),Swimming,Shane Scott,M,"After biting Halverson, it bit Scott's thigh",N,J. Eager,scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.b-Scott.pdf +4501,2003.11.30.a,30-Nov-03,2003,Unprovoked,Australia,Western Australia,Perth? (Margaret River District),Swimming,Josh Halverson ,M,Hand & foot bitten,N,J. Eager,scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.a-Halverson.pdf +4500,2003.11.27,27-Nov-03,2003,Unprovoked,South africa,KwaZulu-Natal,Sodwana,Spearfishing,Seldon Jee,M,"Presumed FATAL, severed hand recovered",Y,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.27-Jee.pdf +4499,2003.11.22,22-Nov-03,2003,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Surfing,Taylor Trumbauer,F,Severe abrasion to left lateral calf,N,T. Trumbauer,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.22-Trumbauer.pdf +4498,2003.11.12.b,12-Nov-03,2003,Unprovoked,India,Tamilnadu,"Mahabalipuram beach, 37 km south of Chennai",Swimming or surfing,Mark Moquin,M,Left index finger lacerated,N, P.C.V. Kumar; A. Patil,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12-Moquin.pdf +4497,2003.11.12.a,12-Nov-03,2003,Unprovoked,Usa,Florida,"South Jetty, New Smyrna Beach, Volusia County",Surfing,Josh Crawford,M,Lacerations to hand,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12.a-NV-Crawford.pdf +4496,2003.11.06.b,06-Nov-03,2003,Unprovoked,Egypt,Sinai Peninsula,"Sha’ab Mahmud, Ras Mohamed Park",Snorkeling,Igor Fedorov ,M,Hand/elbow injured,N,N. Pankratov,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.b-Fedorov.pdf +4495,2003.11.06.a,06-Nov-03,2003,Unprovoked,South africa,KwaZulu-Natal,Karridene,Surf skiing,2 people on ski,Unknown,"No injury to occupants, hull of ski bitten",N,Natal Sharks Board,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.a-Karridene.pdf +4494,2003.11.01,01-Nov-03,2003,Unprovoked,Australia,New South Wales,"Seal Rocks, north of Newcastle",Standing,male,M,Minor lacerations to leg & foot,N,The Sun; 11/2/2003,p.9,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.01-SealRocks.pdf +4493,2003.11.00,Nov-03,2003,Provoked,Panama,Pearl Islands,Unknown,Spearfishing,Richard Hatch,M,Left forearm bitten PROVOKED INCIDENT,N,J. Eager,scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.00-RichardHatch.pdf +4492,2003.10.31.c,31-Oct-03,2003,Unprovoked,Usa,Florida,"Ponte Vedra Beach, St. Johns County",Surfing,Adam Gray,M,Left foot (sole) bitten,N,D. Dixon,Florida Times-Union,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.c-Gray.pdf +4491,2003.10.31.b,31-Oct-03,2003,Unprovoked,Australia,New South Wales,"Lighthouse Beach, Seal Rocks",Surfing,Nick Anthony,M,Left ankle & foot lacerated,N,ABC News Australia,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.b-Anthony.pdf +4490,2003.10.31.a,31-Oct-03,2003,Unprovoked,Usa,Hawaii,"Tunnels surf break off Makua Beach, Kaua'i",Surfing,Bethany Hamilton,F,Left arm severed below shoulder,N, E. Ritter,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.a-BethanyHamilton.pdf +4489,2003.10.27,27-Oct-03,2003,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jeffrey Hauser,M,Laceration on right ankle & heel,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.27-Hauser.pdf +4488,2003.10.24,24-Oct-03,2003,Invalid,Usa,Hawaii,Honolua Bay,Snorkeling,Don Keener,M,Left forearm lacerated,N,Timothy Hurley,Advertiser Maui County Bureau,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.24-DonKeener.pdf +4487,2003.10.14,14-Oct-03,2003,Unprovoked,Usa,Florida,Near Patrick Air Force Base Brevard County,Surfing,male,M,Foot bitten,N,WFTV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.14-male.pdf +4486,2003.10.06,06-Oct-03,2003,Invalid,Usa,Florida,Palm Beach?,Swimming to shore from boat or kayak,male,M,"Fatal, drowning or scavenging. Two hours later his body, with bite marks, washed ashore.",Y,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.06-NV-PalmBeach.pdf +4485,2003.10.05.e,05-Oct-03,2003,Unprovoked,Usa,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Surfing,female,F,Minor puncture wounds in hand,N,J. Eager,scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.e-female.pdf +4484,2003.10.05.d,05-Oct-03,2003,Unprovoked,Usa,Florida,"Stuart Park Beach, Martin County",Surfing,male,M,5 to 6 lacerations on right foot & ankle,N,Vero Beach Press Journal (FL) 10/6/2003; Stuart News,10/6/2003,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.d-surfer.pdf +4483,2003.10.05.c,05-Oct-03,2003,Provoked,Usa,Florida,"South Jetty, New Smyrna Beach, Volusia County",Surfing,Rick Eckstein,M,Left ankle bitten when he stepped on the shark PROVOKED INCIDENT,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.c-Eckstein.pdf +4482,2003.10.05.b,05-Oct-03,2003,Unprovoked,Usa,Florida,"Crawford Road beach approach at New Smyrna Beach, Volusia County",Sitting on surfboard,John Demartino,M,Left foot bitten,N,S. Petersohn,GSAF; J. Eager,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.b-DeMartino.pdf +4481,2003.10.05.a,05-Oct-03,2003,Unprovoked,Usa,Hawaii,"Cove Beach / Kalama Beach, Kihei, Maui",Wading near a fishing net,Clara Alo,F,"Left thigh abraded, right knee and right index finger injured",N,G. Kubota,Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.a-Clara-Alo.pdf +4480,2003.09.29,29-Sep-03,2003,Unprovoked,Fiji,Taveuni,Welagi coastal reef off Drekeniwai,Wading to shore from his boat,Epeli Mate,M,FATAL abdomen bitten,Y,R. Weeks,GSAF; Fiji Times,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.29-Mate.pdf +4479,2003.09.28,28-Sep-03,2003,Unprovoked,Usa,Florida,"North Hutchinson Island, St. Lucie Couny",Surfing,Stephen Johnson,M,Arm lacerated,N,7News Online; Vero Beach Press Journal,Fort Pierce Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.28-S.Johnson.pdf +4478,2003.09.21,21-Sep-03,2003,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Jimmy Arnold,M,Left foot bitten,N,S. Petersohn,GSAF; Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.21-Jimmy-Arnold.pdf +4477,2003.09.19,19-Sep-03,2003,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,David Cales,M,Left heel lacerated,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.19-DavidCales.pdf +4476,2003.09.17,17-Sep-03,2003,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,A.B.,M,3 puncture wounds on left foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.17-AB.pdf +4475,2003.09.14.c,14-Sep-03,2003,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Williams,M,Left foot: lacerations on heel and sole,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.c-JasonWilliams.pdf +4474,2003.09.14.b,14-Sep-03,2003,Boat,South africa,Western Cape Province,Melkbosstrand,Fishing ,"inflatable boat, occupants: Rudolf Bokelmann and Sakkie Vermeulen",Unknown,"No injury to occupants, shark bit boat",N,E. Ritter,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.b-CowShark.pdf +4473,2003.09.14.a,14-Sep-03,2003,Invalid,Usa,Florida,"Bathtub Reef Beach, Martin County",Swimming,female,F,Puncture wounds on inner thigh,N,Fort Pierce Tribune,9/15/2003,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.a-girl.pdf +4472,2003.09.13.b,13-Sep-03,2003,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County ",Body boarding,Aaron Edelson,M,Left calf avulsion,N,S. Petersohn,GSAF; News Journal Online; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.b-Edelson.pdf +4471,2003.09.13.a,13-Sep-03,2003,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County","Standing, stepped on shark",Joe Davis,M,Ankle lacerated,N,P. Caston,Post & Courier,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.a-JoeDavis.pdf +4470,2003.09.12,12-Sep-03,2003,Unprovoked,South africa,Western Cape Province,Near the wreck of the Kakapo off Noordhoek Beach,Body boarding,David Bornman,M,"FATAL, left thigh, buttocks, back of spine, abdomen & chest bitten ",Y,E. Ritter,GSAF; http://www.wavescape.co.za/top_bar/locals_only9.htm ,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.12-Bornman.pdf +4469,2003.09.00,Sep-03,2003,Unprovoked,Usa,Florida,"Boca Grande, Lee County",Wade-fishing,male,M,2 lacerations on each side of Achilles tendon,N,B. Stout,News-Press,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.00-wade-fisherman.pdf +4468,2003.08.29,29-Aug-03,2003,Provoked,Usa,Texas,1.5 miles off Surfside ,Fishing,Saul Gonzalez,M,PROVOKED INCIDENT Hooked shark pulled onboard bit his arm ,N,http://www.dfw.com/mld/startelegram/news/state/6656592.htm?1c,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.29-Gonzalez.pdf +4467,2003.08.19,19-Aug-03,2003,Unprovoked,Usa,California,"Avila Beach, San Luis Obispo County","Swimming, wearing black wetsuit & swim fins",Deborah Franzman,F,"FATAL Hip & upper thigh bitten, femoral artery severed ",Y,R. Collier,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.19-Franzman.pdf +4466,2003.08.12,12-Aug-03,2003,Invalid,Usa,California,"Venice Beach, Los Angeles County",Swimming,male,M,Left ankle lacerated,N,ABC News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.12-VeniceBeach.pdf +4465,2003.08.08,08-Aug-03,2003,Unprovoked,South africa,Eastern Cape Province,Jeffrey’s Bay,Sitting on surfboard,Joseph Krone,M,"No injury, wetsuit torn & board bitten",N,E. Ritter,GSAF http://sport.iafrica.com/news/261271.htm ,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.08-Krone.pdf +4464,2003.07.26.R,26-Jul-2003,2003,Unprovoked,Australia,Northern Territory,Nhulunbuy,Surf skiing,Martin Gunda,M,"No injury, flung into water when shark bit rudder of ski",N,Northern Territory News,7/26/2003,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.26.R-Gunda.pdf +4463,2003.07.20,20-Jul-03,2003,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,John McGovern,M,Laceration to little finger of right hand,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.20-McGovern.pdf +4462,2003.07.15,15-Jul-03,2003,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Wading,C.K.,F,Heel & sole of left foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.15-CK.pdf +4461,2003.07.09,10-Jul-03,2003,Unprovoked,Bahamas,Abaco Islands,Bakers Bay,Spearfishing,Richard Horton,M,Right thigh bitten,N,M. Levine,GSAF; Associated Press,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.09-Horton.pdf +4460,2003.07.05.b,05-Jul-03,2003,Provoked,Usa,Florida,"Near New Smyrna Jetty, Volusia County","Walking, carrying surfboard & stepped on shark",P.L.,M,3 puncture wounds on right lateral ankle PROVOKED INCIDENT,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.b-PL.pdf +4459,2003.07.05.a,05-Jul-03,2003,Unprovoked,Usa,Florida,"Canova Beach, Brevard County",Surfing,James Ingram,M,Left foot bitten,N,Vero Beach Press Journal (FL) 7/9/2003,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.a-Ingram.pdf +4458,2003.07.04,04-Jul-03,2003,Unprovoked,Bahamas,Abaco Islands,10 miles west of Walker’s Cay,Spearfishing,Benjamin Brown,M,Left calf bitten,N,Associated Press,7/12/03; Palm Beach Post,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.04-BenBrown.pdf +4457,2003.07.00.c,Jul-03,2003,Unprovoked,Usa,Florida,"Fort Lauderdale, Broward County",Spearfishing,Mark Marks,M,Laceration to toe,N,M. Marks,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.c-MarkMarks.pdf +4456,2003.07.00.b,Late Jul-2003,2003,Unprovoked,French polynesia,Society Islands,Moorea,Spearfishing,male,M,Leg bitten,N,Noonsite.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.b-Moorea.pdf +4455,2003.07.00.a,Jul-03,2003,Unprovoked,New zealand,Cook Islands,Beveridge Reef,Snorkeling,Allen --,M,Chest & buttocks bitten,N,R. & J. Zorro; Noonsite.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.a-BeveridgeReef.pdf +4454,2003.06.30,30-Jun-03,2003,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,E.W.,M,Right foot & toes lacerated,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.30-EW..pdf +4453,2003.06.26,26-Jun-03,2003,Unprovoked,Usa,Florida,St Augustine Beach. St. Johns County,Surfing,Shelby Tostevin,M,Ankle lacerated,N,Local6.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.26-Tostevin.pdf +4452,2003.06.24.c,24-Jun-03,2003,Unprovoked,Brazil,Pernambuco,"Piedade, Recife",Unknown,Moses Nunes de Albuquerque Junior,M,FATAL,Y,JCOnline,6/23/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.c-MosesAlbuquerque.pdf +4451,2003.06.24.b,24-Jun-03,2003,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Standing,Hannah Hathaway,F,2 lacerations to the thigh,N,Florida Today,6/26/ 2003; WKMG Local 6,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.b-Hathaway.pdf +4450,2003.06.24.a,24-Jun-03,2003,Unprovoked,Usa,Hawaii,"Makua Beach, Oahu",Swimming with pod of dolphins,John Marrack,M,Right foot bitten,N,Honolulu Advertiser,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.a-Marrack.pdf +4449,2003.06.22,22-Jun-03,2003,Unprovoked,Usa,Johnston Atoll,Unknown,Swimming,George Fahey,M,Left leg bitten,N,H. Edwards,GSAF; The Hawaai Channel,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.22-Fahey.pdf +4448,2003.06.19,19-Jun-03,2003,Unprovoked,Usa,North Carolina,"Masonboro Island, New Hanover County",Surfing ,Chris White,M,Hand bitten ,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.19-White.pdf +4447,2003.06.08,08-Jun-03,2003,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,J.D.,Unknown,6 puncture wounds to left ankle,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.08-JD.pdf +4446,2003.06.00,Jun-03,2003,Invalid,Usa,South Carolina,"Pawleys Island, Georgetown County",Swimming,female,F,Foot lacerated,N,J. Eager,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.00-PawleysIsland.pdf +4445,2003.05.25,25-May-03,2003,Unprovoked,Usa,Florida,"Coral Cove Park, Jupiter Inlet, Palm Beach County",Surfing,"Kris ""Cutty"" Kildosher",M,Left foot lacerated,N,Local 6 News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.25-Kildosher.pdf +4444,2003.05.14,14-May-03,2003,Unprovoked,Usa,Florida,"Ponce de Leon Inlet, Volusia County ",Wading,Joshua Brust,M,Left foot bitten,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.14-Brust.pdf +4443,2003.05.10,10-May-03,2003,Unprovoked,Usa,Hawaii,Between Magic Sands Beach and Kahaluu Beach on the Kona coast,Swimming,Koa Paulo,M,Right calf & heel bitten,N,WestHawaiiToday.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.10-Paulo.pdf +4442,2003.05.07,07-May-03,2003,Provoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Gerald Gaskins,M,Multiple bites to foot after jumping off surfboard onto shark PROVOKED INCIDENT,N,S. Petersohn,GSAF; M. I. Johnson,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.07-Gaskins.pdf +4441,2003.05.03,03-May-03,2003,Unprovoked,Usa,Florida,"Daytona Beach Shores, Volusia County",Walking,A.J.,F,Laceration to right lower leg,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.03-AJ.pdf +4440,2003.05.00,May-03,2003,Unprovoked,Philippines,Baatan,Limay,Unknown,a resident of Barangay Luz,Unknown,Arm severed,N,D. Cervantes,Star,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.00-Philippines.pdf +4439,2003.04.26,26-Apr-03,2003,Provoked,Brazil,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Killing sharks,male,M,Shallow lacerations to left thigh PROVOKED INCIDENT,N,P.M. Lopes,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.26-Rio.pdf +4438,2003.04.25,25-Apr-03,2003,Unprovoked,Brazil,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming ,Felipe Tavares Marinho,M,Bitten on finger,N,Web ProWire,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.25-Marinho.pdf +4437,2003.04.23.b,23-Apr-03,2003,Unprovoked,Brazil,Pernambuco,"Pau Amarelo Beach, Paulista District (17 km from Recife)",Surfing,Tiago Augusto da Silva Machado,M,"Hand & foot lacerated, lower left leg severely bitten, necessitating surgical amputation",N,P. M. Lopes,GSAF; N. Souza da Silva; JC,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.b-Machado.pdf +4436,2003.04.23.a,23-Apr-03,2003,Unprovoked,Brazil,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming,male,M,Right hand lacerated,N,Local 6 News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.a-boy.pdf +4435,2003.04.21.b,21-Apr-03,2003,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County ",Surfing,Ralph Sammis,M,Right leg bitten,N,Local 6 News; St. Petersburg Times,4/22/2003; The Eagle,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.b-Sammis.pdf +4434,2003.04.21.a,21-Apr-03,2003,Unprovoked,Usa,Florida,"Shepard Park, Cocoa Beach, Brevard County ",Surfing,male,M,Survived,N,Orlando Sentinel,4/22/2003,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.a-surfer.pdf +4433,2003.04.20.c,20-Apr-03,2003,Unprovoked,Usa,Florida,"Playalinda Beach, Brevard County",Surfing,Tommy Ryan,M,Left foot bitten,N,Orlando Sentinel,4/22/2003,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.c-Ryan.pdf +4432,2003.04.20.b,20-Apr-03,2003,Unprovoked,Usa,Florida,"Sunglow Pier, Daytona Beach Shores, Volusia County",Surfing,Jeff Albright,M,Small lacerations to foot,N,S. Petersohn,GSAF; Local6.com; Daytona Beach News-Journal . 4/21/2003,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.b-Albright.pdf +4431,2003.04.20.a,20-Apr-03,2003,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Stephen Flowers,M,Left ankle bitten or right foot,N,S. Petersohn,GSAF; Local 6 News; S. Frederick,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.a-StephenFlowers.pdf +4430,2003.04.19,19-Apr-03,2003,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County ",Jumping,S.D.,M,Left foot bitten,N,S. Petersohn,GSAF; S. Frederick,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.19-SD.pdf +4429,2003.04.18,18-Apr-03,2003,Unprovoked,Usa,Florida,"North Beach, Patrick AFB, Brevard County",Surfing,male,M,2 lacerations on left thigh,N,Local 6 News; Tallahassee Democrat (FL) 4/19/2003; J. Waymer,Florida Today (Melbourne),http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.18-PatrickAFB.pdf +4428,2003.04.15,15-Apr-03,2003,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Swimming (using a float),"male, a tourist from Venezuela",M,Left calf lacerated,N,Florida Today (Melbourne),4/16/2003; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.15-Venezuela.pdf +4427,2003.04.11,11-Apr-03,2003,Unprovoked,Venezuela,Nueva Esparta,"El Yaqu, Isla de Margarita",Surfing,Yann Perras,M,"Right foot bitten, left leg severed",N,E. Ritter & M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.11-YannPerras.pdf +4426,2003.04.09,09-Apr-03,2003,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,Damien Share,M,Arm lacerated,N,D. Share,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.09-Share.pdf +4425,2003.04.04,04-Apr-03,2003,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,"Frederick Jordan, Jr.",M,Left hand and wrist bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.04-Jordan.pdf +4424,2003.03.10,10-Mar-03,2003,Provoked,Usa,Florida,"Petting Tank, Florida Aquarium, Tampa, Hillsborough County",Petting captive sharks,Julie Menke,F,Hand nipped PROVOKED INCIDENT,N,Florida Aquarium; Miami Herald,3/13/2002 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.03.10-Menke.pdf +4423,2003.02.27,27-Feb-03,2003,Unprovoked,New zealand,Southland,East side of Bench Island in the Foveaux Strait,Scuba diving,Alistair Kerr,M,Arm lacerated (shark made 3 strikes),N,R.D. Weeks & Mark Marks,GSAF; New Zealand Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.27-Kerr.pdf +4422,2003.02.15.b,15-Feb-03,2003,Unprovoked,Australia,South Australia,"Goolwa Beach, Fleurieu Peninsula",Wading,Damien Smith,M,Ankle lacerated,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.b-Smith.pdf +4421,2003.02.15.a,15-Feb-03,2003,Unprovoked,Usa,Florida,"Jupiter, Palm Beach County",Swimming,James Bailey,M,Left hand bitten,N,J. Eager,scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.a-Bailey.pdf +4420,2003.02.11,11-Feb-03,2003,Unprovoked,Australia,New South Wales,"Coogee Bay, near Sydney",Swimming,Tom Plumridge,M,"Puncture wounds on heel, legs and buttocks",N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.11-Plumridge.pdf +4419,2003.02.08,08-Feb-03,2003,Unprovoked,Australia,Queensland,Burleigh Lake on the Gold Coast,Swimming,Bob Purcell,M,FATAL,Y,T. Peake,GSAF; Sunday Territorian,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.08-Purcell.pdf +4418,2003.01.17,17-Jan-03,2003,Invalid,South africa,Western Cape Province,"Near the lagoon at Table View, Cape Peninsula",Unknown,male,M,Probable scavenging. The boy disappeared while at the beach on January 1st. His decomposed shark-bitten body washed ashore January 17th,Y,IOL.co.za,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.17-scavenging.pdf +4417,2003.01.03,03-Jan-03,2003,Unprovoked,Costa rica,North Pacific coast,Playa Tamarindo ,Surfing,Ross Menking,M,Lower right leg lacerated,N,A.M. Costa Rica,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.03-Menking.pdf +4416,2003.01.02,02-Jan-03,2003,Unprovoked,Australia,Western Australia,Left break at the ‘Hot Spot’ at Sheringa Beach,Surfing,Gabrielle Eason,F,"No injury, but her surfboard was bitten",N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.02-Eason.pdf +4415,2002.12.29,29-Dec-02,2002,Unprovoked,Australia,Queensland,Great Barrier Reef (near Upolu Bay),Snorkeling,"Lienne Schellekens, ",F,Left arm lacerated,N,T. Peake,GSAF; Mercury (Hobart),http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.29-Schellekens.pdf +4414,2002.12.24,24-Dec-02,2002,Unprovoked,South africa,Western Cape Province,Scarborough,Snorkeling,Craig Bovim,M,Forearms lacerated,N,IOL.co.za,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.24-Bovim.pdf +4413,2002.12.21,21-Dec-02,2002,Unprovoked,Australia,Queensland,Depth of 40 m on the wreck of the St. Paul off Brisbane,Scuba diving,Jai Hennessey,M,Groin bitten,N,GC Online. Note: same diver's swim fin was bitten 3 weeks earlier by a 2 m [6.75'] wobbegong shark,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.21-Hennessey.pdf +4412,2002.12.20,20-Dec-02,2002,Invalid,Australia,Queensland,Golden Beach,Swimming,Bayne Doyle,M,Foot lacerated,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.20-Doyle.pdf +4411,2002.12.16,16-Dec-02,2002,Unprovoked,Australia,Queensland,Miami Lake,Swimming,Beau Martin,M,FATAL,Y,T. Peake,GSAF; Northern Territory News,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.16-BeauMartin.pdf +4410,2002.12.01,01-Dec-02,2002,Unprovoked,Brazil,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Aylson Gadelha,M,FATAL,Y,O. Gadig,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.01-Gadelha.pdf +4409,2002.11.28.b,28-Nov-02,2002,Unprovoked,Micronesia,Caroline Islands,"Pision Reef, Truk",Scuba diving,Kevin --,M,Minor injury to right calf,N,J. Connick,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.b-Kevin.pdf +4408,2002.11.28.a,28-Nov-02,2002,Unprovoked,Usa,California,"Salmon Creek, Sonoma County",Body boarding,Michael Casey,M,Both legs severely lacerated,N,R. Collier,GSAF; Press Report: Santa Rosa Press Democrat ,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.a-Casey.pdf +4407,2002.11.17,17-Nov-02,2002,Unprovoked,Usa,Hawaii,Ka'anapali,Swimming,Julie Glance ,F,Right shoulder forarm & wrist bitten,N,San Francisco Gate,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.17-Glance.pdf +4406,2002.11.14,14-Nov-02,2002,Unprovoked,Turks & caicos,Caicos Bank,French Cay,Snorkeling,Michelle Glenn,F,"Right upper am, shoulder & back severely bitten",N,M. Glenn,Local 10 News; Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.14-Glenn.pdf +4405,2002.11.11,11-Nov-02,2002,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Joshua Johnson,M,1.5-inch laceration,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.11-Johnson.pdf +4404,2002.11.02,02-Nov-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,A.H.,M,Puncture wounds on right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.02-AH.pdf +4403,2002.11.00.a,Nov-02,2002,Unprovoked,French polynesia,Society Islands,Tetiaroa,"Fishing, standing in 2' of water",Scott Heywood,M,Shin bruised,N,S. Heywood,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.00-Heywood.pdf +4402,2002.10.30,30-Oct-02,2002,Unprovoked,Usa,Hawaii,"Kama'ole Beach Park I, Kihei, Maui",Swimming,Karen Miller,F,Left foot bitten ,N,J. Crites,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.30-Miller.pdf +4401,2002.10.14,14-Oct-02,2002,Unprovoked,Brazil,Pernambuco,"Piedade Beach, Jaboatão dos Guararapes City, Recife",Swimming,Luis Soares de Arruda,M,"FATAL, body not recovered",Y,P.M. Lopes,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.14-Arruda.pdf +4400,2002.10.11,11-Oct-02,2002,Unprovoked,Usa,Florida,"Opposite main gate at Patrick Air Force Base, Cape Canaveral, Brevard County",Surfing,male,M,Left foot bitten,N,Florida Today,10/12/2002 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.11-CapeCanaveral.pdf +4399,2002.10.05.b,05-Oct-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Darren Harrity,M,Abrasions on right hand & deep laceration on middle finger,N,D. Harrity; S. Petersohn,GSAF; L. Lelis,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.b-DarrenHarrity.pdf +4398,2002.10.05.a,05-Oct-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Ivan Rios ,M,Heel & back of right knee lacerated,N,S. Petersohn,GSAF; Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.a-Rios.pdf +4397,2002.10.03,03-Oct-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Cheyne Kehoe ,M,Left hand lacerated and abraded,N,S. Petersohn,GSAF; Local 6 News; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.03-Kehoe.pdf +4396,2002.09.30,30-Sep-02,2002,Unprovoked,Usa,Florida,"Ormond Beach, Volusia County",Surfing,Matt Crawford,M,Right hand severely lacerated,N,S. Petersohn,GSAF; J. Eager,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.30-Crawford.pdf +4395,2002.09.29,29-Sep-02,2002,Unprovoked,Usa,Florida,"Sebastian Inlet, Brevard County",Surfing,Dave Fogelberg,M,Left hand bitten,N,Local 6 News; P. Balona,Vero Beach Press Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.29-Fogelberg.pdf +4394,2002.09.27.c,27-Sep-02,2002,Unprovoked,Usa,Hawaii,"Kahala, O'ahu",Fishing from Surfboard,Arnold Lum,M,"No injury, surfboard bitten ",N,C. Lum & J. Widner,Honolulu Advertiser,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.c-Lum.pdf +4393,2002.09.27.b,27-Sep-02,2002,Provoked,Usa,Florida,"Key Largo, Monroe County",Fishing,Jose Diaz,M,Left thumb lacerated PROVOKED INCIDENT,N,J. Eager,scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.b-Diaz.pdf +4392,2002.09.27.a,27-Sep-02,2002,Provoked,Tonga,Vava'u,Swimming with humpback whales,Swimming,Felipe Tonga ,M,Thigh lacerated PROVOKED INCIDENT,N,C. Butterfield,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.a-Tonga.pdf +4391,2002.09.21.b,21-Sep-02,2002,Unprovoked,Usa,Oregon,Cape Kiwanda,Boogie boarding or Surfing,Garry Turner,M, Ankle lacerated,N,R. Collier,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.b-GarryTurner.pdf +4390,2002.09.21.a,21-Sep-02,2002,Unprovoked,Usa,California,"Moonstone Beach, Humboldt County",Surfing,Reed Richards,M,No injury,N,R. Collier ,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.a-Richards.pdf +4389,2002.09.16.b,16-Sep-02,2002,Unprovoked,Brazil,Pernambuco,"Piedade Beach, Jaboatão dos Guararapes City",Swimming,Fabrício José de Carvalho,M,"Left thigh bitten, leg surgically amputated",N,P.M. Lopes,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.b-Carvalho.pdf +4388,2002.09.16.a,16-Sep-02,2002,Unprovoked,Usa,Hawaii,"Hideaways Beach, Princeville, Kaua'i",Body boarding,Unknown,Unknown,"No injury, shark fin seen just before board ripped away & dragged out to sea",N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.a-Hawaii.pdf +4387,2002.09.13,13-Sep-02,2002,Unprovoked,South africa,Western Cape Province,"Glencairn, False Bay",Surf skiing,Paul Mauger (or Major),M,No injury,N,Multiple internet sources,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.13-Mauger.pdf +4386,2002.09.09,09-Sep-02,2002,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Boogie boarding,Sean M. Erwin,M,Bitten above & below right knee,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.09-Erwin.pdf +4385,2002.09.05,05-Sep-02,2002,Provoked,Usa,Florida,"Daytona Beach Shores, Volusia County","Wading, when he stepped on the shark",Alex Lancaster,M,2 small puncture wounds on left foot PROVOKED INCIDENT,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.05-Lancaster.pdf +4384,2002.08.28,28-Aug-02,2002,Unprovoked,Usa,Hawaii,"Kewalo Basin Channel, O'ahu",Surfing,Shawn Farden,M,Left foot lacerated ,N,G. Kubota,Honolulu Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.28-Farden.pdf +4383,2002.08.17,17-Aug-02,2002,Unprovoked,Usa,Alabama,"Gulf of Mexico, 65 miles offshore from Mobile",Swimming,Kimberly McClain,F,Both arms & leg bitten,N,J. Eager,scubaradio.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.17-McLean.pdf +4382,2002.08.14,14-Aug-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Paxton Vinyard,M,Big toe bitten,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.14-Vinyard.pdf +4381,2002.08.11,11-Aug-02,2002,Unprovoked,Usa,Florida,"Vero Beach, Indian River County",Surfing,Brad Milliken,M,Lacerations on heel & dorsum of right foot,N,Stuart News,8/12/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.11-Milliken.pdf +4380,2002.08.07,07-Aug-02,2002,Unprovoked,Usa,Florida,"Ponce De Leon Inlet, Volusia County",Standing,David Brennen Smith,M,Ankle & leg lacerated,N,S. Petersohn,GSAF; J. Eager; A. Caldwell,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.07-Smith.pdf +4379,2002.08.06.R,06-Aug-2002,2002,Provoked,United kingdom,Cheshire,"Blue Planet Aquarium, Ellesmere Port",Diving,Rob Bennett,M,Hand bitten by captive shark PROVOKED INCIDENT,N,Evening Standard (London,England),http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.06-Bennet.pdf +4378,2002.08.05,05-Aug-02,2002,Unprovoked,Usa,North Carolina,"Topsail Beach, Pender County",Standing,Robert Pollan,M,Leg lacerated,N,Wisconsin State Journal; C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.05-Pollan.pdf +4377,2002.07.26,26-Jul-02,2002,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Surfing,T.J. Nimmons,M,Heel bitten,N,C. Creswell,GSAF; The State (Columbia,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.26-Nimmons.pdf +4376,2002.07.20,20-Jul-02,2002,Unprovoked,Usa,North Carolina,"Emerald Isle, Carteret County",Swimming,Mary Katherine Strong,F,Calf bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.20-Strong.pdf +4375,2002.07.10,10-Jul-02,2002,Provoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Josh Nichtro,M,2 small lacerations on left lower leg when he jumped off board and landed on the shark PROVOKED INCIDENT,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.10-Nichtro.pdf +4374,2002.07.09.b,09-Jul-02,2002,Provoked,Usa,Maryland,"100 miles off Ocean City, Maryland, in 7000' of water",Shark Fishing,Captain Billy Verbanas,M,Drowned when caught in line and pulled overboard by hooked shark PROVOKED INCIDENT,Y,Life in Legacy ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.b-Verbanas.pdf +4373,2002.07.09.a,10-Jul-02,2002,Unprovoked,Brazil,Pernambuco,"Piedade Beach, Recife",Surfing,Mário César Carneiro da Silva,M,Right hand severed,N,P.M. Lopes,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.a-daSilva.pdf +4372,2002.07.04,04-Jul-02,2002,Unprovoked,Usa,North Carolina,"Wrightsville Beach, New Hanover County",Standing,Avery Olearczyk,F,"Calf, foot & hand bitten",N,Miami Herald,7/7/2002 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.04-Olearczyk.pdf +4371,2002.06.20.b,20-Jun-02,2002,Unprovoked,Australia,Queensland,Sunshine Beach,Surfing,male,M,minor injury to foot,N,AAP,6/20/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.b-surfer-QLD.pdf +4370,2002.06.20.a,20-Jun-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,female,F,Small lacerations on right lower leg,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.a-female.pdf +4369,2002.06.16,16-Jun-02,2002,Invalid,Indonesia,Unknown,"Shark caught in Indonesia, offloaded to trawler that docked at Samut Prakan, 20 miles south of Bangkok, Thailand",Unknown,Unknown,Unknown,Human remains (right forearm & leg) recovered from 3.7m [12'] tiger shark’s gut. Forensic examination suggested the remains had been consumed by the shark one to two weeks earlier,Y,espn.go.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.16-Indonesia.pdf +4368,2002.06.13.R2,13-Jun-2002,2002,Unprovoked,Papua new guinea,Louisiade Archipelago,"Brooker Island , Calvados Chain",Unknown,Unknown,Unknown,"Arm severely lacerated, surgically amputated",N,PNG Post-Courier,6/13/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13-R.2-beche-de-mer.pdf +4367,2002.06.13.R1,13-Jun-2002,2002,Unprovoked,Papua new guinea,Louisiade Archipelago,"Gawa Reefs, Sudest Island",Attempting to retreive a dinghy,an elementary school teacher,Unknown,FATAL,Y,PNG Post-Courier,6/13/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13.R.1-schoolteacher.pdf +4366,2002.06.11.b,11-Jun-02,2002,Unprovoked,Usa,Hawaii,"Anini Beach, Kaua'i",Sitting on surfboard,C. Levin,Unknown,"No injury, shark bit side of surfboard",N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.b-Levin.pdf +4365,2002.06.11.a,10-Jun-02,2002,Unprovoked,Usa,Florida,"St Augustine Beach, St Johns County",Surfing,Jason Smith,M,Right hand lacerated,N,Orlando Sentinel,6/12/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.a-JasonSmith.pdf +4364,2002.06.09.b,09-Jun-02,2002,Unprovoked,Usa,Florida,"South of Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Craig Taylor,M,6-inch gash on right foot,N,S. Petersohn,GSAF; S. Pedicini,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.b-Taylor.pdf +4363,2002.06.09.a,09-Jun-02,2002,Unprovoked,Usa,Florida,"Jensen Beach, Martin County ",Swimming,Corey Brooks,M,Right calf lacerated,N,ESPN; Orlando Sentinel,6/12/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.a-Brooks.pdf +4362,2002.06.03,03-Jun-02,2002,Unprovoked,South africa,KwaZulu-Natal between Port Edward and Port St Johns,Off Mkhambati ,Snorkeling (filming the sardine run),Tony White,M,Upper arm bitten,N,T. White,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.03-White.pdf +4361,2002.05.31.b,31-May-02,2002,Unprovoked,Usa,California,"Stinson Beach, Marin County",Surfing,Lee Fontan,M,Lacerated leg & back,N,San Francisco Gate,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.b-Fontan.pdf +4360,2002.05.31.a,31-May-02,2002,Unprovoked,Usa,Florida,"St. George Island (near Apachicola), Franklin County",Floating on a raft,Matt Tichenor,M,Lacerated foot,N,South Florida Sun-Sentinel; Orlando Sentinel,6/3/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.a-Tichenor.pdf +4359,2002.05.22.b,22-May-02,2002,Provoked,Usa,Florida,"a pier at the end of Caxambas Drive, Marco Island ","Fishing, removing the shark from his line",male,M,Leg bitten by hooked shark PROVOKED INCIDENT,N,News-Press,5/23/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.b-MarcoIsland.pdf +4358,2002.05.22.a,22-May-02,2002,Unprovoked,Usa,Florida,"Atlantic Avenue, Palm Beach County",Playing in the surf with his 2 dogs,Sean Oliver,M,"2-inch wound on dorsum of right foot, 1-inch wound on sole",N,Palm Beach Post, 5/24 & 26/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.a-Oliver.pdf +4357,2002.05.21.R,21-May-2002,2002,Unprovoked,Costa rica,Guanacaste,Playa Grande,Surfing,Nick Wallace,M,Toothmarks in board & his swim trunks,N,Surfline.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.R-Wallace.pdf +4356,2002.05.21,21-May-02,2002,Unprovoked,Papua new guinea,Milne Bay Province,Tewatewa Island,Collecting beche-de-mer,Billy Leonard,M,Wrist lacerated,N,PNG Post-Courier,6/13/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.a-Leonard.pdf +4355,2002.05.13,13-May-02,2002,Unprovoked,Usa,Florida,"Ten Thousand Islands National Wildlife Refuge, Collier County",Fishing,Fermin Gallegos,M,Laceration to arm.,N,South Florida Sun-Sentinel; Southwest Florida Digest,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.13-Gallegos.pdf +4354,2002.05.10,10-May-02,2002,Unprovoked,Brazil,Pernambuco,"Pina, Recife",Surfing,Paulo Fernandes Alves Ferreira,M,Leg injured,N,JCOnline,5/11/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.10-PauloFernandesAlvesFerreira.pdf +4353,2002.05.07,07-May-02,2002,Provoked,Australia,Northern Territory,Darwin,Fishing from prawn trawler,Richard Morris,M,Netted shark injured his am & 6 fingers PROVOKED INCIDENT,N,Northern Territory News,5/29/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.07-Morris.pdf +4352,2002.04.30,30-Apr-02,2002,Unprovoked,Australia,South Australia,"Smoky Bay, near Ceduna, on the Eyre Peninsula",Scallop diving (using surface-supplied air & a POD) ,Paul Buckland,M,"FATAL, torso & leg bitten ",Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.30-Buckland.pdf +4351,2002.04.21,21-Apr-02,2002,Invalid,Australia,New South Wales,26 nautical miles out to sea off Lake Macquarie,Fishing (Drowned 2-Apr-2002),Mr. Kang Suk Lee,M,"Drowned, his remains were found in a 3m [10'], 368 kg [811-lb] tiger shark",Y,Newcastle Herald. 10/3/2002,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.21-KangSukLee.pdf +4350,2002.04.20,20-Apr-02,2002,Unprovoked,Usa,Florida,"St. Augustine Beach, St. Johns County","Surfing, but standing in water alongside board",Robert Stinson,M,Left foot bitten,N,Miami Herald,4/25/2002; Florida Times-Union,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.20-Stinson.pdf +4349,2002.04.18,18-Apr-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Sutliff,M,Left foot bitten,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.18-Sutliff.pdf +4348,2002.04.12,12-Apr-02,2002,Unprovoked,Australia,New South Wales,"Bar Beach, Newcastle",Swimming,John Schneider,M,Foot bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.12-Schneider.pdf +4347,2002.04.09,09-Apr-02,2002,Unprovoked,Bahamas,Abaco Islands,Walkers Cay,Standing,Erich Ritter,M,Calf bitten,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.09-Ritter.pdf +4346,2002.04.02,02-Apr-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,male,M,Two half-inch lacerations on right heel and one near small toe,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.02-male.pdf +4345,2002.04.01,01-Apr-02,2002,Unprovoked,Usa,Florida,"Lauderdale-By-The-Sea, Broward County",Swimming / Wading,Matthew May,M,Upper left arm bitten,N,Orlando Sentinel,4/2/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.01-May.pdf +4344,2002.03.25.b,25-Mar-02,2002,Unprovoked,Usa,Hawaii,"Brenecke Beach, Po'ipu, Kaua'i",Body-boarding,Hoku Aki,M,Left leg severed below knee,N,G. Kubota,Honolulu Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.b-HokuAki.pdf +4343,2002.03.25.a,25-Mar-02,2002,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Wading,Ms Tori Lawrence,F,Foot bitten,N,Orlando Sentinel,3/26/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.a-Lawrence.pdf +4342,2002.03.24,24-Mar-02,2002,Unprovoked,Brazil,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Fábio Fernandes Silva,M,"Severe kacerations, FATAL",Y,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.24-FabioFernandesSilva.pdf +4341,2002.03.19,19-Mar-02,2002,Unprovoked,Usa,Florida,"Daytona Beach Shores, Volusia County",Swimming / boogie boarding,John Sadler,M,Punctures on left foot and foot ,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.19-Sadler.pdf +4340,2002.03.15.b,15-Mar-02,2002,Unprovoked,Usa,Florida,"Deerfield Beach (near Boca Raton), Broward County",Snorkeling,Robert Land,M,Arm bitten,N,ezboard.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.b-Land.pdf +4339,2002.03.15.a,15-Mar-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Several puncture wounds on lower right leg,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.a-male-surfer.pdf +4338,2002.03.03,03-Mar-02,2002,Invalid,New caledonia,Loyalty Islands,Lifou,Spearfishing,Yves Koidrin,M,"PRESUMED FATAL, body not recovered",Y,Les Nouvelles Caledoniennes,3/11/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.03-Yves-Koidrin.pdf +4337,2002.02.23,23-Feb-02,2002,Unprovoked,Unknown,Unknown,Unknown,Capsized fishing boat,John Sutton,M,FATAL,Y,sharkattacks.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.23-Sutton.pdf +4336,2002.02.16,16-Feb-02,2002,Unprovoked,Australia,Queensland,Sunshine Beach,Surfing,Kirk Koster,M,Heel / foot bitten,N,Sunday Mail (QLD),2/17/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.16-Koster.pdf +4335,2002.02.11,11-Feb-02,2002,Unprovoked,Fiji,Cikobia Island (north of Vanua Levu),Unknown,Unknown,Jokini Rasoki,M,"FATAL, lower thigh & knee severely lacerated ",Y,Press Report dated 2-14-2002,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.11-Rasoki.pdf +4334,2002.02.07,07-Feb-02,2002,Unprovoked,Australia,New South Wales,Paramatta River (near Sydney),Kayaking,Paul McNamara,M,Stern of kayak bitten/chest bruised ,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.07-McNamara.pdf +4333,2002.01.30.b,30-Jan-02,2002,Unprovoked,Australia,New South Wales,Just north of Fingal Spit,Surfing,Andrew Cribb,M,Bruises & minor cuts,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.b-Cribb.pdf +4332,2002.01.30.a,30-Jan-02,2002,Unprovoked,Australia,Western Australia,Collie River ,Swimming,Shayne Calliss,M,15 cm wound on inner thigh,N,T. Peake,GSAF; D. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.a-Calliss.pdf +4331,2002.01.04,04-Jan-02,2002,Unprovoked,South africa,KwaZulu-Natal,Durban Harbor,Fishing,Imraan Sheik,M,Leg bitten & surgically amputated,N,G. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.04-Sheik.pdf +4330,2002.01.03,03-Jan-02,2002,Unprovoked,Brazil,Pernambuco,Candeias,Swimming,Unidentified,Unknown,FATAL,Y,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.03-Candeias.pdf +4329,2002.01.01.b,01-Jan-02,2002,Unprovoked,South africa,KwaZulu-Natal,Mtunzini,Surf skiing,Michael van Niekerk,M,Foot & calf bitten,N,ioL.co.za,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.b-vanNiekerk.pdf +4328,2002.01.01.a,01-Jan-02,2002,Unprovoked,Usa,Hawaii,"Olowalu, Maui",Snorkeling,Thomas Holmes,M,Lacerations to buttocks & thigh,N,G. Kubota,Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.a-Holmes.pdf +4327,2001.12.21,21-Dec-01,2001,Invalid,Australia,Western Australia,"Honeycombs, 250 km south of Perth",Surfing,Shane Dickson,M,"No injury, 2 m to 2.5 m [6.75' to 8.25'] shark made a threat display",N,sharkattacks.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.12.21-Dickson.pdf +4326,2001.11.23,23-Nov-01,2001,Unprovoked,Australia,New South Wales,"Flat Rock Beach, Lennox Head",Surfing,Roger Frankland,M,"No Injury, shark hit board",N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.23-Frankland.pdf +4325,2001.11.14,14-Nov-01,2001,Unprovoked,Usa,Hawaii,"Kapalua, Maui",Surfing,M. Schweitzer,Unknown,"No injury, portion of board's lower surface removed",N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.14-Schweitzer.pdf +4324,2001.11.07,07-Nov-01,2001,Invalid,Australia,Western Australia,"Leighton Beach, south of North Cottesloe",Surf-skiing,male,M,"No injury, fell off ski after possibly colliding with a shark",N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.07-LeightonBeach.pdf +4323,2001.10.07,07-Oct-01,2001,Unprovoked,South africa,KwaZulu-Natal,Salt Rock ,Kite-Boarding,Alwin van Breda,M,No injury,N,NSB,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.07-vanBreda.pdf +4322,2001.10.02,02-Oct-01,2001,Unprovoked,Australia,Queensland,200 miles offshore,Snorkeling,Katherine Jones,F,Lacerations to right forearm & shoulder injured,N,K. Jones,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.02-Katherine-Jones.pdf +4321,2001.09.30.b,30-Sep-01,2001,Unprovoked,Mexico,Guerrero,Ixtapa,Body surfing,Brian Lavelle,M,Hand injured,N,T. Carlson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.b-Lavelle.pdf +4320,2001.09.30.a,30-Sep-01,2001,Boat,Australia,Queensland,"Moreton Bay, NE of Brisbane ",Unknown,"boat: inflatable boat, occupant: Matt George, owner",M,No injury from shark,N,T. Peake,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.a-MattGeorge.pdf +4319,2001.09.24,24-Sep-01,2001,Provoked,Usa,Florida,"Ponce Inlet, Volusia County","Surfing, fell off surfboard & stepped on the shark.",male,M,PROVOKED INCIDENT Several small lacerations on left foot ,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.24-male_Ponce.pdf +4318,2001.09.18,18-Sep-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Blaise Mosler,M,"1"" to 2"" cuts on right ankle & foot",N,Orlando Sentinel,9/20/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.18-Mosler.pdf +4317,2001.09.16,16-Sep-01,2001,Invalid,Usa,Florida,"2 miles off Pompano Beach, Broward County",Wreck / Technical diving,Eric Reichardt,M,FATAL or drowning & scavenging,Y,D. Fleshler,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.16-Reichardt.pdf +4316,2001.09.15.b,15-Sep-01,2001,Unprovoked,Usa,Florida,A quarter mile north of Fort Pierce Inlet,Boogie boarding,Cory Hock,M,"2 lacerations on lower back, punctures on buttock",N,G. Hock,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.b-Hock.pdf +4315,2001.09.15.a,15-Sep-01,2001,Unprovoked,Usa,North Carolina,"North Topsail Beach, Onslow County",Surfing,"Dale Fulcher, Jr.",M,Foot bitten,N,Clay Creswell,GSAF; Topsail Voice,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.a-Fulcher.pdf +4314,2001.09.13,13-Sep-01,2001,Provoked,United kingdom,Cheshire,"Blue Planet Aquarium, Ellesmere Port",Diving,Unknown,M,Head bitten by captive shark PROVOKED INCIDENT,N,Daily Post,9/14/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.13-Aquarium.pdf +4313,2001.09.08,08-Sep-01,2001,Provoked,Usa,Florida,"Everglades National Park, Monroe County",Fishing,male,M,Fingers & leg lacerated by hooked shark PROVOKED INCIDENT,N,Orlando Sentinel,9/9/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.08-angler.pdf +4312,2001.09.07.b,07-Sep-01,2001,Unprovoked,Usa,Florida,"Key Biscayne, Dade County",Walking in shallows,Patrick Homer,M,Minor injury to left leg,N,Miami Herald,9/8/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.b-Homer.pdf +4311,2001.09.07.a,07-Sep-01,2001,Invalid,Usa,South Carolina,"Waites Island, Horry County",Swimming,Jackie Boyce,F,Left hand injured,N,Sun News (Myrtle Beach,SC) ,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.a-Boyce.pdf +4310,2001.09.03.b,03-Sep-01,2001,Unprovoked,Usa,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Swimming ,Sergi Zaloukaev,M,FATAL,Y,M. Levine,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.b-Sergei.pdf +4309,2001.09.03.a,03-Sep-01,2001,Unprovoked,Usa,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Swimming,Natalia (Natasha) Slobonskaya,F,Left buttock & foot severed,N,M. Levine,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.a-Natasha.pdf +4308,2001.09.02,02-Sep-01,2001,Unprovoked,Usa,Florida,"Mayport Naval Station, Jacksonville, Duval Country",Wading,William Moseley,M,Right calf lacerated,N,Orlando Sentinel,9/4/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.02-Moseley.pdf +4307,2001.09.01,01-Sep-01,2001,Unprovoked,Usa,Virginia,"Sandbridge Beach, Princess Anne County",Swimming ,David Peltier,M,"FATAL, thigh bitten ",Y,M. Levine,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.01-Peltier.pdf +4306,2001.08.31,31-Aug-01,2001,Unprovoked,Bahamas,Abaco Islands,North of Grand Cay,Spearfishing,Nick Raich,M,Torso lacerated,N,G. Atkinson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.31-Raich.pdf +4305,2001.08.29,29-Aug-01,2001,Unprovoked,Usa,Florida,"Coquina Beach, Anna Maria Island, Manatee County",Standing,Kristi Herzberg,F,Punctures & lacerations on elbow & forearm,N,Sarasota Herald-Tribune,8/31/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.29-Herzberg.pdf +4304,2001.08.27,27-Aug-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,William Goettel,M,Heel lacerated,N,S. Petersohn,GSAF; CNN; M.I. Johnson,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.27-Goettel.pdf +4303,2001.08.26,26-Aug-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Boogie Boarding,Ben Gibbs,M,Thigh & foot bitten,N,Miami Herald,8/26/2001; S. Mussenden,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.26-Gibbs.pdf +4302,2001.08.25,25-Aug-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Boogie Boarding,male,M,Upper left thigh & right foot bitten,N,S. Petersohn,Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.25-boogie-boarder.pdf +4301,2001.08.22,22-Aug-01,2001,Unprovoked,Usa,Florida,"Daytona, Volusia County ",Surfing,Lowell Lutz,M,Foot lacerated,N,M. Giusti,Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.22-Lutz.pdf +4300,2001.08.21,21-Aug-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Omar Oyarce,M,Thigh lacerated,N,S. Petersohn,GSAF; L.Lelis,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.21-Oyarce.pdf +4299,2001.08.19.c,19-Aug-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Robert Kurrek,M,Cuts on right foot,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.c-Kurrek.pdf +4298,2001.08.19.b,19-Aug-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Becky Chapman,F,Lacerations to lower leg,N,E. Ritter & S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.b-Chapman.pdf +4297,2001.08.19.a,19-Aug-01,2001,Unprovoked,Usa,Florida,"Wilbur-by-the-Sea, Volusia County",Surfing,female,F,Left foot lacerated,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.a-girl.pdf +4296,2001.08.18.c,18-Aug-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jeff White,M,Cuts on right foot,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.c-White.pdf +4295,2001.08.18.b,18-Aug-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jaison Valentin,M,Back of left hand gashed,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.b-Valentine.pdf +4294,2001.08.18.a,18-Aug-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Dylan Feindt,M,Left ankle bitten,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.a-Feindt.pdf +4293,2001.08.16,16-Aug-01,2001,Unprovoked,Bahamas,Grand Bahama Island,"High Rock, 25 to 30 miles east of Freeport",Spearfishing,Kent Bonde,M,Calf bitten,N,E. Ritter,GSAF; 8/17/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.16-Bonde.pdf +4292,2001.08.12,12-Aug-01,2001,Unprovoked,Thailand,Rayong Province,Laem Mae Pim Beach,Fell off banana boat,O. Jaimaung & friend,M,Legs bitten,N,O. Jaimuang,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.12-Jaimuang.pdf +4291,2001.08.05,05-Aug-01,2001,Unprovoked,Usa,South Carolina,"Near 70th Avenue, Myrtle Beach, Horry County",Unknown,female,F,Toe bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.05-female.pdf +4290,2001.08.04,04-Aug-01,2001,Unprovoked,Bahamas,Grand Bahama Island,Freeport,Swimming,Krishna Thompson,M,"Leg bitten, later surgically amputated above the knee",N,Orlando Sentinel,8/7/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.04-Thompson.pdf +4289,2001.08.03,03-Aug-01,2001,Boat,Italy,Unknown,Rimini,Fishing,boat; occupants: T & G Longhi,Unknown,No Injury to occupants,N,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.03-Longhi.pdf +4288,2001.07.26,26-Jul-01,2001,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Unknown,female,F,Survived,N,SAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.26-female.pdf +4287,2001.07.25,25-Jul-01,2001,Unprovoked,Usa,Florida,"Taverniier, Monroe County",Unknown,male,M,Minor injury,N,Key West Citizen,7/26/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.25-FloridaKeys-male.pdf +4286,2001.07.24,24-Jul-01,2001,Unprovoked,Usa,Florida,"Marathon , Monroe County",Unknown,female,F,2 bites behind knee,N,Key West Citizen,7/26/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.24-female.pdf +4285,2001.07.21,21-Jul-01,2001,Boat,Usa,Massachusetts,Chatham Island,Fishing,"boat, occupants: Joseph Fitzback & 6 passengers",Unknown,No Injury to occupants; shark bumped the boat ,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.21-Massachusetts.pdf +4284,2001.07.15.b,15-Jul-01,2001,Unprovoked,Usa,Florida,"Santa Rosa Island, Escambia County",Surfing,Michael Waters ,M,Left foot & heel lacerated,N,CNN; Pensacola News Journal; R. Suriano,Otlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.b-Waters.pdf +4283,2001.07.15.a,15-Jul-01,2001,Unprovoked,Usa,Florida,"Amelia Island, Nassau County",Boogie boarding,Tim Flanigan,M,Foot lacerated,N,The Enquirer (Cincinnati),7/17/2001 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.a-Flanigan.pdf +4282,2001.07.06.b,06-Jul-01,2001,Unprovoked,Mexico,Baja California,Ensenada,Surfing,Tim Fabel,M,Foot bitten,N,KGTV,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.b-Fabel.pdf +4281,2001.07.06.a,06-Jul-01,2001,Unprovoked,Usa,Florida,Gulf Islands National Seashore,Swimming,Jesse Arbogast,M,"Arm severed, surgically reattached",N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.a-Arbogast.pdf +4280,2001.07.03,03-Jul-01,2001,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County ",Unknown,Unknown,Unknown,Hand bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.03-SouthCarolina.pdf +4279,2001.07.00,Jul-01,2001,Unprovoked,Usa,Georgia,"Jekyll Island, Glynn County",Floating face-down in knee-deep water,John Davis,M,2-inch cut on dorsum of left foot,N,Atlanta Journal-Constitution,9/5/2001; Florida Times-Union,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.00-Davis.pdf +4278,2001.06.12,12-Jun-01,2001,Unprovoked,Usa,Texas,Padre Island National Seashore,Swimming,Jared Black,M,Leg lacerated,N,Houston Chronicle,6/17/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.12-Black.pdf +4277,2001.06.10,10-Jun-01,2001,Provoked,Usa,California,Catalina Island,Spearfishing,Bill McNair,M,"No injury. Shark made threat display, then diver shot the shark PROVOKED INCIDENT",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.10-McNair.pdf +4276,2001.06.09,09-Jun-01,2001,Invalid,Australia,New South Wales,Lord Howe Island (island group 440 miles northeast of Sydney),Hiking on the beach,Arthur Applet,M,Remains recovered from gut of a 3.7 m [12'] tiger shark,Y,Times Online,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.09-Applet.pdf +4275,2001.06.03,03-Jun-01,2001,Unprovoked,Usa,South Carolina,"Off 21st Avenue, Isle of Palms, Charleston County",Wading,Mary Pound,F,3 puncture wounds on each side of her left hand,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.03-MaryPound.pdf +4274,2001.05.29,29-May-01,2001,Unprovoked,Usa,Texas,Galveston Island,Unknown,male,M,Survived,N,sharkattacks.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.29-Galveston.pdf +4273,2001.05.23 ,23-May-01,2001,Unprovoked,Usa,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Swimming,Tripp Choate,M,Shin lacerated,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.23-Choate.pdf +4272,2001.05.20,20-May-01,2001,Unprovoked,Usa,South Carolina,"Fripp Island, Beaufort County",Swimming,Michael Heidenreich,M,5.5-inch laceration on calf,N,Charlotte Observer,5/23/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.20-Heidenreich.pdf +4271,2001.05.18,18-May-01,2001,Provoked,Philippines,Zamboanga del Sur Province,Unknown,Shark fishing,Amir Badi,M,Arm bitten PROVOKED INCIDENT,N,AFP,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.18-Badi.pdf +4270,2001.05.11,11-May-01,2001,Invalid,Madagascar,Unknown,Shipwrecked Ferry M/V Samsonnette,Unknown,French national,M,Fatal or drowned & remains scavenged by shark,Y,GDACS (Global Disaster Alert & Coordination System),,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.11-Madagascar.pdf +4269,2001.05.08,08-May-01,2001,Unprovoked,South africa,Eastern Cape Province,East London,Surfing,David van Staden,M,Leg bitten,N,East London Daily Dispatch,5/9/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.08-Van Staden.pdf +4268,2001.05.04,04-May-01,2001,Unprovoked,Australia,New South Wales,Noraville,Surfing,Michael Valentine,M,"Chest lacerated, surfboard bitten",N,Newcastle Herald; Sunday Mail (QLD),5/6/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.04-Valentine.pdf +4267,2001.05.03,03-May-01,2001,Unprovoked,Usa,Florida,"Jacksonville, Duval County",Surfing,John McCall,M,Foot lacerated ,N,J. Eager,scubaradio.com; J. Gaudin,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.03-McCall.pdf +4266,2001.05.00,May-01,2001,Unprovoked,Fiji,Taveuni,Unknown,"Spearfishing, carrying his catch",male,M,FATAL,Y,FijiTV,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.00-Fiji.pdf +4265,2001.04.28,28-Apr-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,male,M,4 small lacerations on lower right leg,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.28-NV-NewSmyrnaBeach.pdf +4264,2001.04.13.b,13-Apr-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jonathan Bush,M,Foot & ankle lacerated,N,J. Eager,scubaradio.com; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.b-Bush.pdf +4263,2001.04.13.a,13-Apr-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Andrew Barron,M,Right foot & ankle lacerated,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.a-Barron.pdf +4262,2001.04.12.e,12-Apr-01,2001,Unprovoked,Usa,Florida,"Waveland Beach, Hutchinson Island, St Lucie County",Unknown,male,M,Right ankle & lower leg lacerated,N,M. Large,Stuart News,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.e-WavelandBeach.pdf +4261,2001.04.12.d,12-Apr-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Richard Spence,M,Foot & ankle lacerated,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.d-Spence.pdf +4260,2001.04.12.c,12-Apr-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Emmet Browning,M,Small cuts on big & pinky toes of left foot,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.c-Browning.pdf +4259,2001.04.12.b,12-Apr-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Body boarding,"John Fasio, Jr ",M,Foot & ankle lacerated,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.b-Fasio.pdf +4258,2001.04.12.a,12-Apr-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach / Waveland, Volusia County",Surfing,Richard Lloyd,M,Foot lacerated,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.a-Lloyd.pdf +4257,2001.04.11.d,11-Apr-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Elren Thresher,M,Minor cuts on right heel & foot,N,S. Petersohn,GSAF; scubaradio.com; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.d-Thresher.pdf +4256,2001.04.11.c,11-Apr-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach / Waveland, Volusia County",Surfing,Jordan Carter,M,Lacerations to top & bottom of left foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.c-NV-Carter.pdf +4255,2001.04.11.a,11-Apr-01,2001,Unprovoked,Usa,Hawaii,"Ewa Beach, O'ahu",Surfing,Gilbert Dano,M,Minor punctures & lacerations on left hand ,N,Honolulu Star Bulletin,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.a-Dano.pdf +4254,2001.04.10,10-Apr-01,2001,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,a surfer from Port Orange,Unknown,Foot lacerated,N,Orlando Sentinel,4/14/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.10-PortOrangeSurfer.pdf +4253,2001.04.08.b,08-Apr-01,2001,Unprovoked,South africa,Eastern Cape Province,Cape St. Francis,Surfing,Dunstan Hogan,M,"Thigh, hip & buttock bitten",N,M. Smale,P.E. Museum ,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.b-Hogan.pdf +4252,2001.04.08.a,08-Apr-01,2001,Provoked,Australia,New South Wales,Bronte Beach,Snorkeling,Andranik Markossian,M,Wrist lacerated PROVOKED INCIDENT,N,ABC News; Northern Territory News,4/9/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.a-Markossian.pdf +4251,2001.04.05,05-Apr-01,2001,Unprovoked,Usa,Florida,"Bethune Beach, south of New Smyrna Beach, Volusia County",Standing alongside surfboard,Jason Bartholem,M,Minor lacerations to dorsum of left foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.05-Bartholem.pdf +4250,2001.04.02.b,02-Ap-2001,2001,Unprovoked,Brazil,Rio Grande de Norte,"Praia de Camapum, Macau",Batin,A.C.C.,F,Left thigh bitten,N,M. Szpilman,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.b-ACC.pdf +4249,2001.04.02.a,02-Apr-01,2001,Unprovoked,Australia,New South Wales,Nambucca River Entrance,Surfing,Richard Ellis,M,Calf bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.a-Ellis.pdf +4248,2001.03.23,23-Mar-01,2001,Unprovoked,Usa,Hawaii,"Sandy Beach, Oahu",Body-boarding,Michael Mendez,M,"Minor cuts on left hand, body board bitten",N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.23-Mendez.pdf +4247,2001.03.09,09-Mar-01,2001,Unprovoked,Usa,Florida,"Coral Cove Park, Jupiter Island, Martin County",Surfing,Chad Hooker,M,Fingers & hand lacerated,N,Shark Survivor. Inc.,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.09-Hooker.pdf +4246,2001.03.08,08-Mar-01,2001,Invalid,Brazil,Bahia,Nova Vicosa,Attempting to catch a crocodile,V.A.F.,M,Lacerations below the knee,N,M. Szpilman,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.08-VAF.pdf +4245,2001.03.03,03-Mar-01,2001,Unprovoked,Brazil,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Carlo Alberto Brasileiro,M,FATAL,Y,JC,3/7/2001; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.03-Brasileiro.pdf +4244,2001.03.00,Mar-01,2001,Sea Disaster,Caribbean sea,Unknown,Between St. Maarten & Anguilla,Sinking of the 40' Esperanza off St. Maartin with 36 refugees on board,Unknown,Unknown,"Human remains recovered in shark caught off Anguilla, probable scavenging on drowned body",Y,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.00-Anguilla.pdf +4243,2001.02.26,26-Feb-01,2001,Boat,Australia,Western Australia,Albany (incident took place 200 metres from swimmers),Fishing for whiting,"5 m boat, occupants: Don & Margaret Stubbs",Unknown,No injury to occupants,N,Illwara Mercury,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.26-BOAT.pdf +4242,2001.02.11,11-Feb-01,2001,Invalid,Malaysia,Off the western coast of peninsular Malaysia,Pulau Pangkor (Pangkor Island),Unknown,female,F,Bones recovered by fishermen in 300-kg [662-lb] white shark’s gut,Y,Associated Press,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.11-Pangkor.pdf +4241,2001.02.04,04-Feb-01,2001,Unprovoked,Australia,New South Wales,Broome Head,Surfing,Mark Butler,M,Leg bitten,N,Daily Dispatch,2/6/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.04-Butler.pdf +4240,2001.01.24.R, 24-Jan-2001,2001,Boat,Australia,New South Wales,South West Rocks,Kayaking,Mark Elkinton,M,"No injury, shark ramme d & bit kayak",N,Daily Telegraph 1/24/2001,p.19,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.R-Elkinton.pdf +4239,2001.01.24,24-Jan-01,2001,Unprovoked,Cuba,Holquin Province,Off Blau Costa Verde resort,Swimming,Mrs. Soile Hamalainen,F,Left arm bitten,N,Trip Advisor,et al.,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.a-Hamalainen.pdf +4238,2001.01.21 ,21-Jan-01,2001,Boat,Australia,South Australia,Adelaide,Fishing,"6 m boat, occupants John Winslet & customers",Unknown,No injury to occupants,N,Northern Territory News,1/22/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.21-FishingBoats.pdf +4237,2001.01.09,09-Jan-01,2001,Unprovoked,Usa,California,"Sunset Cliffs, San Diego",Surfing,Larry McCash,M,"Foot bruised, board dinged",N,M. Sanders,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.09-McCash.pdf +4236,2001.01.06,06-Jan-01,2001,Boat,New zealand,North Island,Sandy Bay/Whananaki,Kayaking,Dr. Michael Hogan ,M,"No injury, kayak bitten",N,C. Duffy,,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.06-MikeHogan.pdf +4235,2000.12.24,24-Dec-00,2000,Unprovoked,Australia,Queensland,Flinders Cay,Scuba diving,male,M,Hand bitten,N,Daily Telegraph,12/26/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.24-FlindersDiver.pdf +4234,2000.12.12,12-Dec-00,2000,Unprovoked,Fiji,Taveuni,Garden Island Resort,Swimming back from anchored sailboat,Michael Loxton,M,"FATAL, leg severed ",Y,multiple internet sources,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.12-Loxton.pdf +4233,2000.12.11,11-Dec-00,2000,Boat,Australia,South Australia,"3 km off Port Victoria, Yorke Peninsula",Fishing for whiting,"3.5 -metre fibreglass boat, occupants: Harry Ulbrich and another fisherman",Unknown,No injury to occupants,N,The Dominion,12/13/2000; Northern Territory News,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.11- boat.pdf +4232,2000.12.05,05-Dec-00,2000,Unprovoked,Canada,New Brunswick,Bay of Fundy,Diving for sea urchins,Daniel MacDonald,M,No injury,N,A. Martin; Telegraph-Journal, 12/8/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.05-MacDonald.pdf +4231,2000.12.03,03-Dec-00,2000,Unprovoked,Australia,Queensland,"Sykes Reef, Great Barrier Reef",Spearfishing,Chris Hogan,M,Left elbow and forearm bitten,N,N. Leys; Daily Telegraph,12/4/2000.p.3,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.03-ChrisHogan.pdf +4230,2000.12.00,Dec-00,2000,Unprovoked,New zealand,Cook Islands,"Arorangi, Rarotonga",Surfing,female,F,FATAL,Y,C. Tini,R.D. Weeks,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.00 - Arorangi.pdf +4229,2000.11.21,21-Nov-00,2000,Unprovoked,Australia,Queensland,Orpheus Island,Diving (shell maintenance),George Lyons,M,"No injury, wetsuit & swimfin torn",N,Courier-Mail,11/24/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.21-Lyons.pdf +4228,2000.11.20,20-Nov-00,2000,Invalid,Australia,South Australia,Ceduna,Shipwrecked,Danny Thorpe,M,"Missing, thought to have been taken by a shark",Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.20-Thorpe.pdf +4227,2000.11.18,17-Nov-00,2000,Unprovoked,Usa,Florida,"Bonita Springs, Lee County",Swimming,Colin Shadforth,M,Right calf lacerated,N,South Florida Sun Sentinel,11/19/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.18-Shadforth.pdf +4226,2000.11.10,10-Nov-00,2000,Invalid,Usa,Florida,"Vaughn Beach, Flagler County",Walking,Eileen Skeie,F,No injury,N,E. Skeie,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.10-Skeie.pdf +4225,2000.11.06.b,06-Nov-00,2000,Unprovoked,Australia,Western Australia,"Cottesloe Beach, Perth",Swimming,Dirk Avery,M,Leg & feet lacerated,N,B. May,AAP; G. Thiel,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.b-Avery.pdf +4224,2000.11.06.a,06-Nov-00,2000,Unprovoked,Australia,Western Australia,"Cottesloe Beach, Perth",Swimming,Ken Crew,M,"FATAL, torso bitten, leg severed ",Y,B. May,AAP; G. Thiel,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.a-KenCrew.pdf +4223,2000.11.04,04-Nov-00,2000,Unprovoked,Usa,California,"1/4 to 1/2 m north of the jetty at Bunkers, Eureka, Humboldt County",Surfing,Casey Stewman,M,Both thighs bitten,N,J. Ramsay,California Fish & Game; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.04-Stewman.pdf +4222,2000.10.29,29-Oct-00,2000,Boat,Australia,Queensland,Peel Island,Fishing ,"boat, occupant: Paul Kelly",Unknown,"No Injury to occupant, shark holed and sank boat",N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.29-Kelly.pdf +4221,2000.10.20,20-Oct-00,2000,Unprovoked,Usa,Florida,"Fort Pierce Inlet State Park, St Lucie County",Surfing,Jason Licamele,M,Leg lacerated,N,Stuart News,10/21/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.20-Licamele.pdf +4220,2000.10.18,18-Oct-00,2000,Unprovoked,Usa,Hawaii,Olowalu,Swimming / snorkeling,Henrietta Musselwhite,F,Right side of back / torso lacerated,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.18-Musselwhite.pdf +4219,2000.10.14,14-Oct-00,2000,Unprovoked,Usa,Florida,"South Beach, Sebastian, Indian River County",Swimming,Norman Payne,M,Right hand lacerated,N,D. Robinson,Vero Beach Press Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.14-Payne.pdf +4218,2000.10.09,09-Oct-00,2000,Unprovoked,Usa,Florida,"Lake Worth Inlet/West Palm Beach, Palm Beach County",Surfing,Matt Kraskiewicz,M,Foot lacerated,N,South Florida Sun-Sentinel,10/11/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.09-Kraskiecwicz.pdf +4217,2000.10.06.b,06-Oct-00,2000,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Austin White,M,Fingers lacerated,N,SharkSurvivor.com; M.I.Johnson,Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.b-White.pdf +4216,2000.10.06.a,06-Oct-00,2000,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Body surfing,Taylor Holley,M,Right foot & heel lacerated,N,S. Petersohn,GSAF; M.I.Johnson,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.a-Holley.pdf +4215,2000.10.02,02-Oct-00,2000,Unprovoked,Usa,North Carolina,"Wrightsville Beach, New Hanover County",Surfing,Mark Taylor,M,Upper left arm lacerated,N,The State (Columbia),10/6/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.02-Taylor.pdf +4214,2000.09.29,29-Sep-00,2000,Unprovoked,Usa,California,"Mavericks, Half Moon Bay, San Mateo County",Sitting on surfboard,Peck Euwer,M,No injury,N,P. Euwer,Ocean.com; D.W. Cole & M. DesJardins,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.29-Euwer.pdf +4213,2000.09.25,25-Sep-00,2000,Unprovoked,Australia,South Australia,"Black Point, Eyre Peninsula",Surfing,Jevan Wright,M,FATAL,Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.25-Wright.pdf +4212,2000.09.24,24-Sep-00,2000,Unprovoked,Australia,South Australia,Cactus Beach near Penong,Surfing,Cameron Bayes,M,FATAL,Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.24-Bayes.pdf +4211,2000.09.18,19-Sep-00,2000,Provoked,Australia,New South Wales,Wollongong,Fell onto dead shark,boy,M,Foot lacerated from toe to heel when he tripped on shark during fishing competition PROVOKED INCIDENT,N,Illwara Mercury. 9/19/2000,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.18-boy_provoked.pdf +4210,2000.09.16.b,16-Sep-00,2000,Unprovoked,Okinawa,Miyako Island,Sunayama Beach,Surfing,Takayuki Miura,M, FATAL,Y,M. Shimbun; japanupdate.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.b-Miura.pdf +4209,2000.09.16.a,16-Sep-00,2000,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Unknown,Unknown,Unknown,Non-fatal,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.a-NV-IsleOfPalms.pdf +4208,2000.09.15,15-Sep-00,2000,Unprovoked,Usa,Florida,"Fort Pierce Inlet, St Lucie County",Standing / surfing,Gary Smith,M,Right lower leg & ankle lacerated,N,SharkSurvivor.com.; The Stuart (FL) News,9/19/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.15-Smith.pdf +4207,2000.09.12,12-Sep-00,2000,Unprovoked,Usa,Florida,"Sebastian Inlet, Indian River or Brevard County",Surfing,Brenda Fried,F,Puncture wounds on knee,N,SharkSurvivor.com; Florida Today,9/13/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.12-Fried.pdf +4206,2000.09.11,11-Sep-00,2000,Unprovoked,Usa,Florida,"Daytona Beach Shores, Volusia County",Swimming / Body surfing,Jason Armstrong,M,Finger lacerated,N,S. Petersohn,GSAF; Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.11-Armstrong.pdf +4205,2000.09.10.b,10-Sep-00,2000,Unprovoked,Usa,Florida,"Vero Beach, Indian River County",Swimming,male,M,Minor injury to arm and hand,N,Fort Pierce Tribune,9/12/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.b-Boy.pdf +4204,2000.09.10.a,10-Sep-00,2000,Unprovoked,South africa,Western Cape Province,Dyer Island,Free diving,Gary Adkison,M,Swim fin bitten,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.a-Adkinson.pdf +4203,2000.09.08.c,08-Sep-00,2000,Unprovoked,Tanzania,Unknown,"Coco Beach, Dar-es-Salaam (Reported as the 5th fatality in 3 months at Coco Beach)",Swimming,Godfrey Msemwa,M,FATAL,Y,E. Matechi; A. Mbogora ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.c-Msemwa.pdf +4202,2000.09.08.b,08-Sep-00,2000,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Terrill Crane,M,Left foot lacerated ,N,S. Petersohn,GSAF; M. I. Johnson,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.b-Crane.pdf +4201,2000.09.08.a,08-Sep-00,2000,Unprovoked,Reunion,Saint-Pierre,Pic du Diable ,Surfing,Karim Maan,M,Left arm bitten,N,Clicanoo,le journal de l'Ile de la Réunion; Northern Territory News,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.a-KarimMaan.pdf +4200,2000.09.00.b,Early Sep-2000,2000,Unprovoked,Tanzania,Unknown,"Coco Beach, Dar-es-Salaam",Swimming,Unknown,Unknown,FATAL,Y,T. Thierry,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.00-CocoBeach4.pdf +4199,2000.08.31,31-Aug-00,2000,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,Rickey Johnson,M,Punctures & lacerations on right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.31-Johnson.pdf +4198,2000.08.30,30-Aug-00,2000,Unprovoked,Usa,Florida,"Boca Ciega Bay, Tampa, Pinellas County",Jumped into the water,Thaddeus Kubinski,M,FATAL,Y,E. Ritter,GSAF; Charlotte Observer,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.30-Kubinski.pdf +4197,2000.08.27.R,27-Aug-2000,2000,Provoked,Usa,Alaska,Prince William Sound,Conducting research,Bruce Wright,M,Leg bitten by netted shark PROVOKED INCIDENT,N,B.A. Wright,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.27.R-BruceWright.pdf +4196,2000.08.21,21-Aug-00,2000,Unprovoked,Usa,North Carolina,"Bouges Bank, Emerald Isle, Carteret County",Swimming out to porpoises ,male,M,"Severe gash to left hand above wrist, almost severing hand",N,C. Creswell,GSAF; Wilmington Morning Star; Charlotte Observer,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.21-male.pdf +4195,2000.08.15,15-Aug-00,2000,Unprovoked,Usa,Hawaii,"Kanaha Beach, Maui","Windsurfing, but sitting on his board",Jean Alain Goenvec,M,Left calf lacerated,N,Maui.net,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.15-Goenvec.pdf +4194,2000.08.13,13-Aug-00,2000,Unprovoked,Usa,Florida,"South Jacksonville Beach, Duval County",Surfing / Wading,Jason Wuss,M,Minor lacerations to the dorsum of the right foot,N,Florida Times-Union,8/14/2000; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.13-JasonWuss.pdf +4193,2000.08.12,12-Aug-00,2000,Unprovoked,Usa,Florida,"St. Augustine, St. Johns County",Standing,Margaret White,F,Severely bitten on lower leg ,N,M. White,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.12-MargaretWhite.pdf +4192,2000.08.11,11-Aug-00,2000,Invalid,Usa,North Carolina,"Emerald Isle, Carteret County",Swimming ,Daniel Macatee,M,Non-fatal,N, F. Schwartz,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.11-Macatee.pdf +4191,2000.08.10,10-Aug-00,2000,Invalid,Usa,Florida,Florida Keys,Attempting to illegally enter the USA,Juan & Alex Bueno,M,Shark involvement probably post-mortem,Y,Press clippings,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.10-BuenoBrothers.pdf +4190,2000.08.00,Aug-00,2000,Unprovoked,Tanzania,Unknown,"Coco Beach, Dar-es-Salaam",Swimming,Unknown,Unknown,FATAL,Y,T. Thierry,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.00-NV-Tanzania.pdf +4189,2000.07.25,25-Jul-00,2000,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Unknown,male,M,Minor laceration on left leg,N,M. Johnson,Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.25-male.pdf +4188,2000.07.22,22-Jul-00,2000,Unprovoked,Usa,Florida,"Big Pine Key, Monroe County ",Snorkeling,Andrea Nani,F,Leg pinched,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.22-Nani.pdf +4187,2000.07.17,17-Jul-00,2000,Unprovoked,Usa,North Carolina,"Oceanic Pier, Wrightsville Beach, New Hanover County",Surfing,Patrick G. Bruff,M,Foot lacerated,N,C. Creswell,GSAF; Charlotte Observer,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.17-Bruff.pdf +4186,2000.07.16.b,16-Jul-00,2000,Unprovoked,Usa,North Carolina,"Holden Beach, Brunswick County",Surfing,Tim Poynter,M,Minor lacerations on foot,N,C. Creswell,GSAF; Charlotte Observer,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.b-Poynter.pdf +4185,2000.07.16.a,16-Jul-00,2000,Unprovoked,South africa,Eastern Cape Province,"Nahoon, East London",Surfing,Shannon Ainslie,M,Hand lacerated,N,A. Gifford,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.a-Ainslie.pdf +4184,2000.07.15.b,15-Jul-00,2000,Unprovoked,South africa,Eastern Cape Province,Cape Recife,Surfing,male,M,"No injury, flung off board",N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.b-NV-CapeRecife.pdf +4183,2000.07.15.a,15-Jul-00,2000,Unprovoked,South africa,KwaZulu-Natal,South of Durban,Surfing,Ian Barnes,M,No Injury,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.a-Barnes.pdf +4182,2000.07.12,12-Jul-00,2000,Unprovoked, tonga,Minerva Reef,Treated at Nuku-alofa,Scuba diving,Christian Eckoff,M,Left arm bitten,N,www.spearfishingsa.co.za,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.12-Eckoff.pdf +4181,2000.07.10,10-Jul-00,2000,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Wading,M.A.,M,Minor laceration & 3 punctures to right foot,N,S. Petersohn,GSAF; M. I. Johnson; H. Frederick,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.10-MA.pdf +4180,2000.07.09,09-Jul-00,2000,Unprovoked,Usa,Florida,"Neptune Avenue, Ormond Beach, Volusia County",Swimming ,Anthony Zent,M,Knee & calf lacerated,N,S. Petersohn,GSAF: H. Frederick,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.09-Zent.pdf +4179,2000.07.07,07-Jul-00,2000,Unprovoked,Usa,Texas,"Mustang Island, Corpus Christi",Jumping,Robby Doolittle,M,Ankle & foot lacerated,N,K. Hastings,Dallas Morning News,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.07-Doolittle.pdf +4178,2000.07.06,06-Jul-00,2000,Unprovoked,Usa,North Carolina,"Pine Island, Corolla, Currituck County",Playing,Ashley Walker,F,Calf lacerated,N,Charlotte Observer,7/20/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.06-Walker.pdf +4177,2000.07.04.b,04-Jul-00,2000,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Wading,Niesha Peterson,F,Left inner thigh,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.b-Peterson.pdf +4176,2000.07.04.a,04-Jul-00,2000,Unprovoked,Usa,Florida,"Artifical reef 3 miles off Manatee Beach, Manatee County","Spearfishing, holding mesh bag with speared fish",Beverly Comstock,F,Lower right calf lacerated,N,V. Mannix,Bradenton Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.a-Comstock.pdf +4175,2000.07.02.b,02-Jul-00,2000,Unprovoked,Usa,Florida,"Smyrna Dunes Park, New Smyrna Beach, Volusia County",Wading,Amber Benningfield,F,Left calf & hand lacerated,N,S. Petersohn,GSAF; M.Guisti,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.b-Benningfield.pdf +4174,2000.07.02.a,02-Jul-00,2000,Unprovoked,Usa,Florida,"Smyrna Dunes Park, New Smyrna Beach, Volusia County",Standing,Danielle Shidemantle,F,Left thigh lacerated,N,S. Petersohn; M.Guisti,Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.a-Shidemantle.pdf +4173,2000.07.00,Jul-00,2000,Unprovoked,Tanzania,Unknown,"Coco Beach, Dar-es-Salaam",Swimming,Unknown,Unknown,FATAL,Y,T. Thierry,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.00-NV-Tanzania.pdf +4172,2000.06.30,30-Jun-00,2000,Unprovoked,Papua new guinea,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",Unknown,male,M,FATAL,Y,Squali.org,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.30-NV-PNG.pdf +4171,2000.06.29,29-Jun-00,2000,Boat,New zealand,North Island,"Papamoa Beach, Bay of Plenty",Fishing,"inflatable dinghy, occupants: Craig Ward & Gavin John Halse",M,"No injury, shark bit the dinghy",N,R. D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.29-Halse-Ward.pdf +4170,2000.06.19,19-Jun-00,2000,Unprovoked,Usa,Florida,"Seminole Avenue, Ormond Beach, Volusia County",Standing,Jacob Alegood,M,Right ankle lacerated,N,S. Petersohn,GSAF; M. I. Johnson,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.19-Alegood.pdf +4169,2000.06.13,13-Jun-00,2000,Boat,Usa,Florida,"Pensacola Bay, Escambia County",Sailing,22' pleasure boat,Unknown,"No injury to occupants, boat's rear platform bitten",N,Mobile Register 6/14/2000; Charlotte Observer,6/15/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.13-boat.pdf +4168,2000.06.10,10-Jun-00,2000,Unprovoked,Usa,Texas,"J.P. Luby Surf Park, Corpus Christi",Surfing,Kenny Alexander,M,Foot lacerated,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.10-Alexander.pdf +4167,2000.06.09.b,09-Jun-00,2000,Unprovoked,Usa,Alabama,"Gulf Shores, Baldwin County",Swimming,Richard Whatley,M,Puncture wounds on right hip and arm,N,Orlando Sentinel,6/10/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.b-Watley.pdf +4166,2000.06.09.a,09-Jun-00,2000,Unprovoked,Usa,Alabama,"Gulf Shores, Baldwin County",Swimming ,Chuck Anderson,M,Right forearm severed surgically amputated above elbow,N,Orlando Sentinel,6/10/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.a-Anderson.pdf +4165,2000.06.02,02-Jun-00,2000,Unprovoked,Usa,Florida,"27th Avenue, New Smyrna Beach, Volusia County",Snorkeling,Brian Alcorn,M,Right forearm lacerated,N,S. Petersohn,GSAF; D. Brannon; M.I. Johnson,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.02-Alcorn.pdf +4164,2000.06.00,Early Jun-2000,2000,Unprovoked,Tanzania,Unknown,"Coco Beach in Oyster Bay, 7 km north of Dar-es-Salaam",Swimming,male,M,"FATAL, legs severed ",Y,T. Thierry,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.00-CocoBeach1.pdf +4163,2000.05.13,13-May-00,2000,Sea Disaster,New caledonia,South Province,Mont Dore,"Air Disaster - Piper aircraft crashed into the sea, killing all on board",3 people,Unknown,Sharks prevented recovery of remains,Y,W. Leander; Les Nouvelles Caledoniennes,5/15/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.13-aircraft.pdf +4162,2000.05.09,09-May-00,2000,Invalid,Australia,Victoria,"Koonya Beach, Melbourne",Unknown,Severed human foot washed ashore (in sneaker with 2 Velcro closures),Unknown,Probable drowning,Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.09-foot.pdf +4161,2000.05.07.b,07-May-00,2000,Unprovoked,Papua new guinea,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",Standing,Adam,M,Left leg & ankle bitten,N,Reuters; Papua New Guinea Post-Courier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.b-Adam.pdf +4160,2000.05.07.a,07-May-00,2000,Unprovoked,Papua new guinea,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",Diving,male,M,FATAL,Y,Reuters; Papua New Guinea Post-Courier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.a-diver.pdf +4159,2000.04.14,14-Apr-00,2000,Unprovoked,Usa,Florida,"On the south side of Ponce Inlet, Volusia County",Walking,Adam Metz,M,Left foot lacerated,N,Scott Petersohn,GSAF; M. Johnson; Daytona Beach News-Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.14-Metz.pdf +4158,2000.04.09,09-Apr-00,2000,Unprovoked,Usa,Florida,"Municipal Beach, Riviera Beach, Palm Beach County",Boogie boarding / wading,teen,M,Puncture marks on right thigh,N,The Palm Beach Post,4/11/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.09-boy.pdf +4157,2000.03.31,31-Mar-00,2000,Unprovoked,Usa,Florida,Santa Rosa Sound Escambia County,Fishing,Dave Edwards,M,"No Injury, bumped by shark",N,R. Aiden Martin,GSAF; Pensacola News Journal & Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.31-Edwards.pdf +4156,2000.03.30,30-Mar-00,2000,Unprovoked,Australia,Queensland,"Main Beach, Gold Coast",Swimming,Anrija (Andy) Rojcezic,M,Left calf bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.30-Rojcevic.pdf +4155,2000.03.26,26-Mar-00,2000,Unprovoked,Usa,Florida,"Juno Beach, Palm Beach County",Boogie boarding,Heather Van Olst,F,Right knee lacerated,N,Stuart News,3/28/2000; Jupiter Couier,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.26-VanOlst.pdf +4154,2000.03.24,24-Mar-00,2000,Unprovoked,Usa,Florida,"Floridana Beach, Brevard County",Surfing,Barry Pasonski,M,Left hand bitten,N,Orlando Sentinel,3/25/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.24-Pasonski.pdf +4153,2000.03.15,15-Mar-00,2000,Unprovoked,New caledonia,North Province,Poum,Spearfishing,Gilbert Bui Van Minh,M,FATAL,Y,Les Nouvelles Caledoniennes,3/16/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.15-GilbertBui.pdf +4152,2000.03.14,14-Mar-00,2000,Unprovoked,Australia,New South Wales,"McMasters Beach, Central Coast",Surfing,Craig Ruth,M,No Injury,N,Sydney Morning Herald,3/16/2000 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.14-Ruth.pdf +4151,2000.03.10,10-Mar-00,2000,Boat,Australia,New South Wales,Parramatta River,Rowing,boat of Scot's College rowers,Unknown,No Injury to occupants,N,Sydney Morning Herald,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.10-rowers.pdf +4150,2000.03.09,09-Mar-00,2000,Boat,Australia,New South Wales,Parramatta River,Rowing,boat of Al Hattersly,Unknown,No injury to occupants; oar bitten,N,Sydney Morning Herald,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.09-Oar.pdf +4149,2000.03.03.R, 03-Mar-2000,2000,Invalid,New zealand,North Island,Between the Kakanui River and Campbell's Bay,Kayaking,Ricky Stringer,M,Reported as shark attack but probable drowning ,Y,R. D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.03.R-Stringer.pdf +4148,2000.03.02,02-Mar-00,2000,Unprovoked,Australia,New South Wales,"Taronga Wharf, Athol Bay, Sydney Harbor",Swimming,Jack Dasey,M,Survived,N,Sydney Morning Herald,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.02-Dasey.pdf +4147,2000.03.00,Mar-00,2000,Unprovoked,Usa,Louisiana,Midnight Lump (38 miles offshore),Spearfishing,Kurt Bickel,M,"No injury to diver, speargun damaged",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.00.a-Bickel.pdf +4146,2000.02.21,21-Feb-00,2000,Unprovoked,Usa,Florida,"Riviera Beach, Palm Beach County",Unknown,male,M,Right calf bitten,N,The Palm Beach Post,2/22/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.21-male-Riviera Beach.pdf +4145,2000.02.19,19-Feb-00,2000,Unprovoked,South africa,Western Cape Province,Struis Bay,Body surfing,Dr. Weich,M,Foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.19-Weich.pdf +4144,2000.02.14,14-Feb-00,2000,Provoked,England,Worcestershire,The Fountain Pub in Tenbury Wells,Feeding prawns to captive sharks,"Paul Smith, a chef",M,Fingers bitten PROVOKED INCIDENT,N,The Sun (London),2/17/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.14-Smith.pdf +4143,2000.02.03,03-Feb-00,2000,Unprovoked,New zealand,South Island,Oreti Beach (reported as the 4th person bitten in NZ in 2000),Surfing,Michael Petas,M,"No injury, wetsuit punctured",N,Waikato Times; Southland Times,10/23/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.03-Petas.pdf +4142,2000.02.01,01-Feb-00,2000,Unprovoked,Australia,South Australia,"Point Sinclair, Cactus Beach near Penong",Surfing,Anthony Hayes,M,Hand bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.01-Hayes.pdf +4141,2000.01.28.R,28-Jan-2000,2000,Boat,Reunion,Unknown,Saint Pierre,Canoe with 3 men onboard sank,Boulabhaï Ishmael,M,FATAL,Y,B.L. du Vendre,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.28.R-Reunion.pdf +4140,2000.01.05,05-Jan-00,2000,Unprovoked,Thailand,Phang nga Province,Phang nga Island,Diving,Stephan Kahl,M,FATAL,Y,A. Xuereb,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.05-Kahl.pdf +4139,2000.00.00,2000,2000,Boat,Usa,Florida,"Boca Grande, Lee County",Fishing for tarpon,"boat: occupant, Terry Winters",M,No injury to occupant; shark bit propeller,N,B. Stout,News-Press,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.00.00-BocaGrandeBoat.pdf +4138,1999.12.31.c,31-Dec-99,1999,Unprovoked,New zealand,South Island,Oreti Beach,Surfing,Tim Wild,M,Six puncture wounds on leg,N,R.D. Weeks,GSAF; The Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.c-Wildl.pdf +4137,1999.12.31.b,31-Dec-99,1999,Unprovoked,New zealand,South Island,Oreti Beach,Swimming,Jennifer McDowell,F,Arm bitten,N,R.D. Weeks,GSAF; The Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.b-McDowell.pdf +4136,1999.12.31.a,31-Dec-99,1999,Unprovoked,New zealand,South Island,Oreti Beach,Bathing,Genna Hayward ,F,A cut on her hand,N,R.D. Weeks,GSAF; The Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.a-Hayward.pdf +4135,1999.12.26,26-Dec-99,1999,Unprovoked,Brazil,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Alton Cicero da Silva,M,"Leg bitten, surgically amputated",N,L. A. Pereira & J. Morris; JC,12/27/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.26-Cicero.pdf +4134,1999.12.14,14-Dec-99,1999,Invalid,Usa,California,"Off Ventura, Anacapa & Santa Cruz Islands",Scuba diving,Joo Whan Hong,M,"Presumed taken by a shark, but forensic evidence suggested otherwise.",Y,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.14-Hong.pdf +4133,1999.12.06,06-Dec-99,1999,Invalid,Brazil,Rio de Janeiro,"Rio de Janeiro, Guanabara Bay",Spearfishing,Frederico Nóbrega (aka Derico) ,M,Lateral right thigh bitten,N,L. A. Pereira ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.06-Brazilian-diver.pdf +4132,1999.12.02,02-Dec-99,1999,Unprovoked,Usa,Florida,"Boynton Beach, Palm Beach County",Surfing,male,M,Right arm & fingers lacerated,N,"The Palm Beach Post,12/3/1999 ",,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.02-BoyntonBeach-surfer.pdf +4131,1999.11.30,30-Nov-99,1999,Unprovoked,Usa,Florida,"Palm Beach, Palm Beach County",Surfing,Jeremiah Wyche,M,Lacerations to hand & wrist,N,A. Brenneka,"Shark Attack Survivors; The Palm Beach Post,12/3/1999 ",http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.30-Wyche.pdf +4130,1999.11.23,23-Nov-99,1999,Unprovoked,Usa,Hawaii,"Big Island off Kona Village Resort, North Kona",Swimming,Laurie Boyette,F,"Buttock bitten, hands lacerated",N,G. Kubota,Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.23-Boyette.pdf +4129,1999.11.15,15-Nov-99,1999,Unprovoked,Usa,California,"Waddell Reef, Santa Cruz County",Surfing (sitting on his board),Jack Wolf,M,"No injury, board bitten",N,R. Collier,pp.166-167,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.15-JackWolf_Collier.pdf +4128,1999.11.13,13-Nov-99,1999,Unprovoked,South africa,KwaZulu-Natal,Umtentweni,Surfing,Sean Grenfell,M,Lower legs lacerated,N,G. Cliff,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.13-Grenfell.pdf +4127,1999.11.06,06-Nov-99,1999,Unprovoked,Brazil,Rio de Janeiro,"Rio de Janeiro, Guanabara Bay","Spearfishing, but swimming at surface",male,M,Upper right thigh bitten,N,O. Gadig,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.06-Brazilian-diver.pdf +4126,1999.11.00.b,Nov-99,1999,Unprovoked,Marshall islands,Alinglaplap Atoll,Island J4H,Swimming,Dally Bayo,M,Lacerations to leg,N,www.svcherokee.com/pages/ Ailingilaplap.htm,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.b-Bayo.pdf +4125,1999.11.00.a,Nov-99,1999,Unprovoked,Marshall islands,Alinglaplap Atoll,Island J4H,Swimming, Morson Daniel,M,Lacerations to buttocks,N,www.svcherokee.com/pages/ Ailingilaplap.htm,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.a-Morson.pdf +4124,1999.10.30.b,30-Oct-99,1999,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Body boarding,Keven Dolsky,M,Right foot lacerated,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.b-Dolsky.pdf +4123,1999.10.30.a,30-Oct-99,1999,Unprovoked,Usa,Florida,"Gulfstream Park beach, Palm Beach County",Body surfing,Troy Jesse,M,"Shark bit 8"" chunk from swim fin",N,C. Lambert,Palm Beach Post,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.a-TroyJesse.pdf +4122,1999.10.20,20-Oct-99,1999,Unprovoked,Usa,Florida,"Pet Den, Satellite Beach, Brevard County",Surfing,David Hunt,M,Lacerations to right hand & wrist,N,W. Schauman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.20-Hunt.pdf +4121,1999.10.01,01-Oct-99,1999,Unprovoked,Usa,Hawaii,Old Kona Airport State Park,"Surfing, lying on surfboard",Jesse Spencer,M,Right arm bitten,N,Star Bulletin,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.01-Spencer.pdf +4120,1999.09.29,29-Sep-99,1999,Unprovoked,Usa,Florida,"South side of Ponce de Leon Inlet, Volusia County",Wading to shore after surfing,Joel A. Borges,M,3 one-inch lacerations to sole of right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.29-Borges.pdf +4119,1999.09.24,24-Sep-99,1999,Boat,Italy,Adriatic Sea,San Benedetto,Fishing,Boat “Coca Cola”,Unknown,No Injury to occupants,N,Orlando Sentinel,9/28/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.24-boat.pdf +4118,1999.09.16,16-Sep-1999,1999,Unprovoked,Usa,Florida,"Cape Canaveral, Brevard County",Wading,Janet Ferguson,F,Thigh (posterior) bitten,N,Evening News (Edinburgh,Scotland),http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.16-Ferguson.pdf +4117,1999.09.10,10-Sep-99,1999,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Wading,Taylor Warnock,F,Toes lacerated,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.10-Warnock.pdf +4116,1999.09.05,05-Sep-99,1999,Unprovoked,Usa,Florida,"Fort Pierce Inlet, St. Lucie County",Surfing,Mike Sprague,M,Right foot bitten,N,Orlando Sentinel,9/8/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.05-Sprague.pdf +4115,1999.09.04.b,04-Sep-99,1999,Provoked,Usa,Florida,"World Typhoon Lagoon, Disney Water Park, Orange County",Wading,Troy Patterson,M,Left knee nipped by captive shark PROVOKED INCIDENT,N,K. Morelli,Tampa Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.b-Patterson.pdf +4114,1999.09.04.a,04-Sep-99,1999,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Wading with surfboard,Tony Crabtree,M,Right foot bitten,N,S. Petersohn,GSAF; Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.a-Crabtree.pdf +4113,1999.08.26,26-Aug-99,1999,Unprovoked,Usa,Florida,"Bethune Beach, south of New Smyrna Beach, Volusia County",Surfing,Chris Ayers,M,3-inch laceration to right foot,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.26-Ayers.pdf +4112,1999.08.24,24-Aug-99,1999,Unprovoked,Usa,North Carolina,"Fort Fisher, New Hanover County",Surfing,male,M,Foot injured,N,Wilmington Star,8/25/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.24-FortFisher.pdf +4111,1999.08.23,23-Aug-99,1999,Unprovoked,Marshall islands,Ralik Chain,Kwajalein Atoll,Fishing,Jeffery Joel,M,Lacerations to left leg,N,Kwajalein Hourglass,8/27/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.23-Joel.pdf +4110,1999.08.21,21-Aug-99,1999,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,G.C.,M,Small lacerations to right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.21-GC.pdf +4109,1999.08.16,16-Aug-99,1999,Unprovoked,Usa,South Carolina,"Grand Strand, Myrtle Beach, Horry County",Lying prone in 2' of water,Christopher (Will) Handley,M,"Ear lacerated, cuts on scalp, back, arm & shoulder ",N,Charlotte Observer,8/18/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.16-Handley.pdf +4108,1999.08.05.a,05-Aug-99,1999,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Body surfing,Charles Adkins,M,Right ankle & heel lacerated,N,S. Petersohn,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-Adkins.pdf +4107,1999.08.05,05-Aug-99,1999,Unprovoked,Bahamas,Abaco Islands,Grand Cay,Spearfishing & holding catch,Kevin King,M,Right arm bitten,N,South Florida Sun-Sentinel,8/7/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-KevinKing.pdf +4106,1999.07.29,29-Jul-99,1999,Unprovoked,South africa,Western Cape Province,Kogebaai,Surfing,Sergio Capri,M,Right thigh bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.29-Capri.pdf +4105,1999.07.26,26-Jul-99,1999,Unprovoked,Usa,Florida,"Two miles off Key Colony Beach, Monroe County",Swimming with dolphins,Michael Knowles,M,Ankle bitten,N,M. Lynch; Miami Herald,7/28/1999 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.26-Knowles.pdf +4104,1999.07.21,21-Jul-99,1999,Unprovoked,Usa,Hawaii,Honoli'i in Hilo (west side of Big Island),Surfing,Griffith Yamaguchi,M,Right thigh & buttock bitten,N,Star Bulletin,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.21-Yamaguchi.pdf +4103,1999.07.15,15-Jul-99,1999,Unprovoked,South africa,Western Cape Province,Buffels Bay (near Knysna),Boogie boarding,Hercules Pretorius,M,FATAL,Y,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.15-Pretorius.pdf +4102,1999.07.06,06-Jul-99,1999,Unprovoked,Usa,South Carolina,Charleston,Unknown,Shannon Morsy,M,Five cuts on his heel,N,Channel 9 News Charlotte,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.06-NV-Morsy.pdf +4101,1999.07.04,04-Jul-99,1999,Unprovoked,Usa,Florida,"Pensacola Beach, Escambia County",Wading in school of baitfish,Lisa Alexander,F,Lacerations knee to ankle,N,Pensacola News Journal,7/5/1999 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.04-LisaAlexander.pdf +4100,1999.07.03,03-Jul-99,1999,Unprovoked,South africa,Eastern Cape Province,"Cintsa East, East London",Surfing,Colin Grey,M,Leg & board bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.03-Grey.pdf +4099,1999.06.19,19-Jun-99,1999,Unprovoked,Usa,Florida,"11 miles off Dog Island in the Gulf of Mexico, Franklin County",Adrift in a life jacket,Robert Bass,M,9-inch gash in left foot ,N,Orlando Sentinel,6/21/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.19-Bass.pdf +4098,1999.06.17,17-Jun-99,1999,Unprovoked,Usa,Florida,"South of Ponce Inlet, Volusia County",Surfing,Lucas Bryant,M,Right hand and wrist lacerated,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.17-Bryant.pdf +4097,1999.06.12,12-Jun-99,1999,Unprovoked,Usa,Florida,"Atlantiic Beach, Duval County",Swimming,male,M,8-inch bite on calf,N,Florida Times-Union,6/13/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.12-AtlanticBeach.pdf +4096,1999.06.09,09-Jun-99,1999,Unprovoked,Usa,Florida,"Atlantic Dunes Park, Delray Beach, Palm Beach County",Splashing / wading,Ryan Welborn,M,Knee lacerated,N,Palm Beach Post,6/10/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.09-Wellborn.pdf +4095,1999.05.29,29-May-99,1999,Unprovoked,Australia,South Australia,"Hardwicke Bay, Yorke Peninsula",Windsurfing,Tony Donoghue,M,"FATAL, body not recovered",Y,J. Morris,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.29-Donoghue.pdf +4094,1999.05.01,01-May-99,1999,Unprovoked,Brazil,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Charles Heitor Barbosa Pires,M,Leg & hands bitten,N,P.M. Lopez,GSAF; O. Gadig; JC,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.01-Pires.pdf +4093,1999.04.22,22-Apr-99,1999,Unprovoked,Mauritius,Grand Baie,Pointe aux Canonniers,Swimming,Sylvia Lanner,F,Thigh bitten,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.22-Lanner.pdf +4092,1999.04.11,11-Apr-99,1999,Unprovoked,Reunion,L' Etang Salé-les-Bains,Roche-aux-Oiseaux,Swimming after being swept into sea by a large wave,Guy Oudin,M,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.11-Oudin.pdf +4091,1999.04.01,01-Apr-99,1999,Unprovoked,Usa,Florida,"Hobe Sound Beach, Palm Beach County",Surfing,male,M,Ankle bitten,N,Palm Beach Post,4/1/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.01-HobeSoundSurfer.pdf +4090,1999.03.18.R,18-Mar-1999 ,1999,Unprovoked,New zealand,South Island,Codfish Island (Whenua Hau) west of Stewart Island,Spearfishing & diving for paua,Zane Smith,M,No injury,N,Southland Times,3/18/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.R-ZaneSmith-X.pdf +4089,1999.03.18.b,18-Mar-99,1999,Provoked,Brazil,Rio Grande de Norte,Atol das Rochas,Scientific research (Dr. Sonny Gruber's student),Dan Cartamil,M,Grabbed small shark & it bit him PROVOKED INCIDENT,N,internet,expedition ,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.b-Cartamil.pdf +4088,1999.03.18.a,18-Mar-99,1999,Unprovoked,Usa,Hawaii,"Olowalu side of Lahina, Maui ","Swimming, towing a kayak",Navid Davoudabai,F,"FATAL, arm bitten ",Y,L. Fujimoto; G. Kubota, Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.a-Davoodabai.pdf +4087,1999.03.14.b,14-Mar-99,1999,Unprovoked,New caledonia,Loyalty Islands,Ouvea,Spearfishing,Blaise Wouanena,M,Multiple injuries,N,W. Leander; Les Nouvelles Caledoniennes,3/15/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.b-Wouanena.pdf +4086,1999.03.14.a,14-Mar-99,1999,Provoked,Unknown,Unknown,Unknown,Fishing,Mr. Spain,M,Right thigh bitten PROVOKED INCIDENT,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.a-Spain.pdf +4085,1999.03.08,08-Mar-99,1999,Unprovoked,Usa,Hawaii,"Kealia Beach, Kaua'i",Body surfing or body boarding,Jonathan Allen,M,Bruised right leg,N,G. Balazs,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.08-NV-Allen.pdf +4084,1999.03.05,05-Mar-99,1999,Unprovoked,Usa,Hawaii,"Quarter mile offshore in Kaanapali, West Maui",Swimming near pod of whales,Robyne Knutson,F,Tissue removed knee to thigh,N,S. Waterman,GSAF; L. Fujimoto; G. Kubota,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.05-Knutson.pdf +4083,1999.02.26.R,26-Feb-99,1999,Boat,Usa,North Carolina,Frying Pan Shoals,Cruising," 28' sport fishing boat, Bird Dog",Unknown,"No injury to occupants, boat sank after colliding with shark",N,Wilmington Star,2/26/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.26.R-BirdDog.pdf +4082,1999.02.23,23-Feb-99,1999,Unprovoked,Australia,New South Wales,Scotts Head,Surfing,male,M,"Left hand & forearm bitten, board bitten",N,Daily Telegraph,2/24/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.23-ScottsHead.pdf +4081,1999.02.03,03-Feb-99,1999,Unprovoked,Usa,Florida,"Hobe Sound, Martin County",Surfing,Kenny Burns,M,Left hand bitten,N,The Palm Beach Post,2/5/1999; St. Petersburg Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.03-KennyBurns.pdf +4080,1999.01.29,29-Jan-99,1999,Unprovoked,Mauritius,Unknown,Belle-Mare,Spearfishing,Rajkumar Mansaram,M,Legs & torso injured,N,J.M. Langlois,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.29-Mauritius.pdf +4079,1999.01.13, 13-Jan-1999,1999,Unprovoked,South africa,Eastern Cape Province,Bonza Beach,Paddle Skiing,Evan Ridge,M,"No Injury, ski bitten",N,The Citizen,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.13-Ridge.pdf +4078,1999.01.07,01-Jan-99,1999,Boat,New zealand,North Island,"Papamoa, near Tauranga, Bay of Plenty",Inflatable boat,Unknown,Unknown,No injury to occupant: boat lost,N,The Dominion,1/8/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.07-NZ-inflatable.pdf +4077,1999.01.03.R,03-Jan-1999,1999,Invalid,Australia,Northern Territory,Gulf of Carpenteria,Fishing,Donna Turcotte,F,"Cut foot, but injury caused by fishing line, not the shark",N,Sunday Mail,3/1/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03.R-Turcotte.pdf +4076,1999.01.03,03-Jan-99,1999,Unprovoked,Reunion,Saint-Leu,Pointe au Sel,Spearfishing,Unknown,Unknown,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03-ReunionIsland.pdf +4075,1999.00.00.b,1999,1999,Unprovoked,South africa,Western Cape Province,"Hospital Rock, Dyers Island",Spearfishing,Healy Lootz,M,Heel lacerated,N,V. Van der Merwe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.b-Lootz.pdf +4074,1999.00.00.a,1999,1999,Invalid,Usa,Virginia,"Sandridge Beach, Virginia Beach, Princess Anne County",Body surfing,male,M,Abrasions,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.a-NV-SandridgeBeach.pdf +4073,1998.12.24,24-Dec-98,1998,Provoked,Usa,Florida,"Ormond Beach, Volusia County",Surfing,Andy Thompson,M,Left foot bitten after he accidentally stepped on the shark PROVOKED INCIDENT ,N,S. Petersohn,GSAF; Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.24-AndyThompson.pdf +4072,1998.12.22,22-Dec-98,1998,Unprovoked,Australia,South Australia,Middleton Beach,Standing,Megan O'Leary,F,2 puncture wounds in left leg,N,The Advertiser,12/23/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.22-O'Leary.pdf +4071,1998.12.20.R,20-Dec-1998,1998,Unprovoked,South africa,Eastern Cape Province,"King's Beach, Port Elizabeth",Surfing,Greg Harrison,M,Leg bitten,N,G. Cliff,NSB; Sunday Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.20.R-Harrison.pdf +4070,1998.12.18,18-Dec-98,1998,Unprovoked,South africa,Eastern Cape Province,Kei River Mouth,Splashing,Douw van der Merwe,M,Right leg bitten,N,Sunday Times,12/20/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.18-vanderMerwe.pdf +4069,1998.12.15,15-Dec-98,1998,Unprovoked,Australia,South Australia,Middleton Beach,Surfing,Unknown,F,Leg injured,N,Animal Attack Files,12/19/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.15-female surfer.pdf +4068,1998.11.21,21-Nov-98,1998,Unprovoked,Usa,Florida,"Ocean Beach, Jaycee Park, Vero Beach, Indian River County",Swimming,James Willie Tellasmon,M,FATAL,Y,E. Ritter. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.21-Tellasmon.pdf +4067,1998.11.14,14-Nov-98,1998,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Larry Foor,M,Right foot bitten,N,S. Petersohn,GSAF; D. Catron,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.14-LarryFoor.pdf +4066,1998.11.11,11-Nov-98,1998,Unprovoked,Usa,Florida,"South Beach Park, Indian River County",Walking,male,M,Survived,N,press report,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.11-NV-IndianRiverCounty.pdf +4065,1998.11.05,05-Nov-98,1998,Unprovoked,Usa,Oregon,Winchester Bay,Surfing,Dale Inskeep,M,No injury,N,R. Collier,pp.165-166,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.05-Inskeep_Collier.pdf +4064,1998.11.02.b,02-Nov-98,1998,Provoked,Japan,Southern Japan,460 miles off Iwakuni,Fishing for tuna,Tadashi Kodama,M,PROVOKED INCIDENT Knee bitten by shark trapped in net,N,Deseret News,11/3/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.b-Kodama.pdf +4063,1998.11.02.a,02-Nov-98,1998,Unprovoked,Brazil,Pernambuco," Boa Viagem Beach, Recife",Surfing,Claudio Roberto Florencio de Freitas,M,"FATAL, left forearm severed ",Y,O. Gadig & A. Xureb,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.a-deFrietas.pdf +4062,1998.10.24,24-Oct-98,1998,Unprovoked,Usa,Florida,"Jupiter Beach, Palm Beach County",Swimming,Jessica Stephens,F,Minor lacerations on right ankle & foot,N,Sun Sentinel. Fort Lauderdale,10/25/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.24-Stephens.pdf +4061,1998.10.18,18-Oct-98,1998,Unprovoked,South africa,Eastern Cape Province,Glengariff,Surfing,Liam Victor,M,"No injury, surfboard bitten",N,East London Daily Dispatch,10/20/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.18-Victor.pdf +4060,1998.10.10,10-Oct-98,1998,Unprovoked,Usa,Florida,"Sebastian Inlet, Indian River County",Surfing,Jarod Ruszkowski ,M,Right hand bitten,N,Sarasota Herald-Tribune,10/13/1998 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.10-Ruszkowski.pdf +4059,1998.10.04,04-Oct-98,1998,Unprovoked,Brazil,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Júlio César de Barros Correia,M,Right leg bitten,N,Folha de S.Paul,6/10/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.04-JulioCesarDeBarrosCorreia.pdf +4058,1998.10.01.b,01-Oct-98,1998,Unprovoked,Reunion,Saint-Benoît,Unknown,Diving,Unknown,Unknown,Survived,N,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.b-Reunion.pdf +4057,1998.10.01.a,01-Oct-98,1998,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Unknown,Mike Duncan,M,2 one-inch lacerations in left foot,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.a-Duncan.pdf +4056,1998.09.27,27-Sep-98,1998,Unprovoked,Usa,Florida,"The Rocks, Hutchinson Island, Martin County",Surfing,Kai Haire,M,Puncture wounds to leg,N,The Stuart (FL) News,9/29/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.27-KaiHaire.pdf +4055,1998.09.22,22-Sep-98,1998,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jade Blackstock,M,Left arm lacerated,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.22-Blackstock.pdf +4054,1998.09.16.R,16-Sep-1998,1998,Unprovoked,South africa,Eastern Cape Province,Kowie River,Fishing / washing bait off hands,Grant Rielly,M,Laceration to right foot,N,Daily Dispatch,9/16/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.16.R-Rielly.pdf +4053,1998.09.14,14-Sep-98,1998,Unprovoked,Usa,Florida,"Stuart Beach, Martin County",Surfing,Danny Hoopes,M,Right foot bitten,N,P. Sheth,Fort Pierce Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.14-DannyHoopes.pdf +4052,1998.09.00,Sep-98,1998,Provoked,Senegal,Cap Vert Peninsula,Yoff Island,Spearfishing,A.D,M,Bitten by harpooned shark PROVOKED INCIDENT,N,S. Trape,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.00-Senegal.pdf +4051,1998.08.30,30-Aug-98,1998,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,J. Howington,M,Toes lacerated,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.30-Howington.pdf +4050,1998.08.27,27-Aug-98,1998,Invalid,Italy,Marches region,12 miles off Senigallia (Adriatic Sea),Fishing,30' cabin cruiser owned by Stefano Catalani,Unknown,"No injury; no attack, shark ate the bait hanging over the side of the boat",N,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.27-Catalani.pdf +4049,1998.08.26,26-Aug-98,1998,Unprovoked,Usa,California,"Stinson Beach, Marin County",Boogie boarding,Jonathan Kathrein,M,"Thigh, buttocks & lower back lacerated",N,R. Collier,pp.163-164 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.26-Kathrein_Collier.pdf +4048,1998.08.23.R, 23-Aug-1998,1998,Unprovoked,Usa,Virginia,Virginia Beach,Spearfishing,male,M,Lacerations to left hand,N,Dan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.23.R-VirginiaBeach.pdf +4047,1998.08.15,15-Aug-98,1998,Unprovoked,Bahamas,Berry Islands,Ambergris Cay,Spearfishing,Kevin Paffrath,M,Calf bitten,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.15-Paffrath.pdf +4046,1998.08.13,13-Aug-98,1998,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Body-boarding,Robert Parcus,M,Left calf injured,N,A. Buttigieg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.13-Parcus.pdf +4045,1998.08.12,12-Aug-98,1998,Provoked,South africa,Transvaal,"National Zoological Gardens Aquarium, Pretoria",Moving a shark in a net ,Kobus Goosen,M,Lacerations to right shin PROVOKED INCIDENT,N,Daily Dispatch,8/13/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.12-Goosen.pdf +4044,1998.08.01.b,01-Aug-98,1998,Unprovoked,South africa,Western Cape Province,"Buffalo Bay, near Knysna",Surfing (or body boarding),Ross Taylor,M,Legs bitten,N,Daily Record (Glasgow,Scotland),http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.b-RossTaylor.pdf +4043,1998.08.01.a,01-Aug-98,1998,Unprovoked,South africa,Western Cape Province,Pringle Bay,Spearfishing,Christian Lombard,M,Leg bitten,N,Daily Record (Glasgow,Scotland),http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.a-Lombard.pdf +4042,1998.07.26,26-Jul-98,1998,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Surfing,Rodrigo Rocha Menezes,M,Lacerations to left foot,N,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.26-Menezes.pdf +4041,1998.07.25,25-Jul-98,1998,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Michael Rinto,M,Calf bitten,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.25-Rinto.pdf +4040,1998.07.06.b,06-Jul-98,1998,Unprovoked,South africa,Western Cape Province,Plettenberg Bay,Wading,Clark Thomas (father / rescuer),M,Right leg bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.b-ClarkThomas.pdf +4039,1998.07.11,11-Jul-98,1998,Unprovoked,South africa,Eastern Cape Province,St. Francis Bay,Surfing,Darren James,M,Knee bitten,N,East London Daily Dispatch,7/13/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.11-DarrenJames.pdf +4038,1998.07.06.a,06-Jul-98,1998,Unprovoked,South africa,Western Cape Province,Plettenberg Bay,Surfing,Mark Thomas,M,Right leg bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.a-MarkThomas.pdf +4037,1998.06.28.a,28-Jun-98,1998,Unprovoked,Australia,South Australia,South Neptune Island,Free diving for abalone,Doug Chesser,M,"FATAL, left thigh and lower leg severely injured ",Y,R.W. Byard,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.28-Chesser.pdf +4036,1998.06.22,22-Jun-98,1998,Unprovoked,South africa,Eastern Cape Province,"Gonubie, 13 km northeast of East London",Body Boarding,Anton deVos,M,"FATAL, hands & calf bitten ",Y,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.22-deVos.pdf +4035,1998.06.08,08-Jun-98,1998,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Surfing,Brian Catarra,M,"2-inch laceration on dorsum of foot, 1-inch laceration on sole.",N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.08-Catarra.pdf +4034,1998.06.05,05-Jun-98,1998,Unprovoked,South africa,Eastern Cape Province,Jeffrey's Bay,Surfing,Danny Bravier,M,Survived,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.05-Bravier.pdf +4033,1998.05.30,30-May-98,1998,Unprovoked,South africa,Eastern Cape Province,Pollock Beach,Surfing,Jamie Harrington,M,Minor laceration on foot,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.30-Harrington.pdf +4032,1998.05.29.b,29-May-98,1998,Unprovoked,South africa,Eastern Cape Province,Sardinia Bay near Port Elizabeth,Body boarding,Marc Jucker,M,Right shoulder & arm bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.b-Jucker.pdf +4031,1998.05.29.a,29-May-98,1998,Unprovoked,South africa,Eastern Cape Province,Jeffreys Bay,Body boarding,Jan-Henrick Opperman,M,Leg bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.a-Opperman.pdf +4030,1998.05.25,25-May-98,1998,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jack Mounteer,M,4 lacerations on the sole of his right foot,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.25-Mounteer.pdf +4029,1998.05.16.c,16-May-98,1998,Unprovoked,Usa,Florida,"Pecks Lake, Martin County",Swimming,Janelle Dickinson,F,Ankle & foot bitten,N,The Stuart (FL) News,5/17/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.c-Dickinson.pdf +4028,1998.05.16.b,16-May-98,1998,Unprovoked,Usa,Florida,"Walden Rocks, St. Lucie County",Swimming / surfing,Roger Moore,M,Left arm & wrist lacerated,N,The Stuart (FL) News,5/17/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.b-Moore.pdf +4027,1998.05.16.a,16-May-98,1998,Unprovoked,South africa,Western Cape Province,Keurbooms,Body boarding,Neal Stephenson,M,"Lower legs bitten, foot severed",N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.a-Stephenson.pdf +4026,1998.04.26,26-Apr-98,1998,Unprovoked,Mozambique,Gaza,"Bilene Bay, 180 km north of Maputo",Towing rubber dinghy,Wilma van Molendorff,F,"FATAL, torso & abdomen bitten, forearm severed ",Y,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.26-VonMollendorf.pdf +4025,1998.04.21,21-Apr-98,1998,Unprovoked,Usa,Oregon,Gleneden Beach,Surfing (lying prone on his board),John Forse,M,Right thigh bitten,N,R. Collier,pp.161-163,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.21-Forse_Collier.pdf +4024,1998.04.17,17-Apr-98,1998,Provoked,Usa,Florida,"Marathon, Monroe County",Scuba diving,Kevin Morrison,M,"He grabbed shark's tail, shark bit his chest & held on. PROVOKED INCIDENT",N,CNN; Orlando Sentinel,4/18/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.17-Morrison.pdf +4023,1998.04.01,01-Apr-98,1998,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Swimming ,Unidentified,M,FATAL,Y,JC,4/2/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.01-BoaViagem.pdf +4022,1998.04.00,Apr-98,1998,Unprovoked,New caledonia,Unknown,Île de Sable,Unknown,Unknown,Unknown,Calf bitten,N,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.00-NewCaledonia-Fisherman.pdf +4021,1998.03.31,31-Mar-98,1998,Unprovoked,Usa,Florida,"Jensen Beach Park, Martin County",Swimming,male,M,Heel lacerated,N,The Stuart (FL) News,4/1/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.31-JensenBeach.pdf +4020,1998.03.15,15-Mar-98,1998,Unprovoked,South africa,Western Cape Province,Saldanha Bay,Snorkeling – hunting crayfish and abalone,Kevin Dewey,M,Lower leg lacerated,N,C. Maxwell,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.15-Dewey.pdf +4019,1998.03.08.a,08-Mar-98,1998,Unprovoked,Usa,Florida,"Loggerhead Park, Juno Beach, Palm Beach County",Swimming or paddle boarding,Rick Welch,M,6 puncture wounds to right calf,N,Jupiter Courier,3/11/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.08-Welch.pdf +4018,1998.02.23,23-Feb-98,1998,Unprovoked,Usa,Florida,"Jensen Beach, Martin County",Swimming,Gordon Wilson,M,Hands bitten,N,Palm Beach Post,2/24/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.02.23-Wilson.pdf +4017,1998.01.28.R ,28-Jan-1998,1998,Invalid,Australia,New South Wales,Whale Beach,Spearfishing,male,M,"Missing, thought to have been taken by a shark",Y,Daily Telegraph,1/28/1998.p.2,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.R-spearfisherman.pdf +4016,1998.01.28.a,Jan-98,1998,Unprovoked,New caledonia,South Province,l'Anse-Vata,Windsurfing,Frederic Marechal,M,"No injury, board bumped & fin damaged",N,W. Leander,Les Nouvelles Caledoniennes,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.a-Frederic_Marechal.pdf +4015,1998.01.25.b,25-Jan-98,1998,Unprovoked,Reunion,Grand'Anse,Unknown,Bathing,Philippe Blu,M,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.b-Blu.pdf +4014,1998.01.25.a,25-Jan-98,1998,Unprovoked,South africa,Eastern Cape Province,East London,Surfing,Glenn Vosloo,M,Calf & foot lacerated,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.a-Vosloo.pdf +4013,1998.01.17,17-Jan-98,1998,Unprovoked,Australia,South Australia,Middleton Beach,Surfing,Greg Anderson,M,20 punctures in right foot,N,Sunday Mail (QLD),1/18/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.17-GregAnderson.pdf +4012,1998.01.14,14-Jan-98,1998,Unprovoked,Mozambique,Maputo Province,Ponta do Ouro,Surfing,Roberto Zornada,M,Leg bitten,N,A. Gifford,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.14-Zornada.pdf +4011,1998.00.00.c,1998,1998,Unprovoked,South africa,Eastern Cape Province,Hole-in-the Wall,Surfing,M…,M,FATAL,Y,BL Meel / B. Myatt,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.c-Transkei.pdf +4010,1998.00.00.b,1998,1998,Unprovoked,Reunion,Beaufonds,Unknown,Diving,Unknown,Unknown,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.b-Reunion.pdf +4009,1998.00.00.a,1998,1998,Unprovoked,Usa,Virginia,"Wreck of the Navy Barge, 22 miles SE of Rudee ",Spearfishing on scuba & transferring fish onto a stringer,male,M,Shark grasped diver's gloved hand. Glove was soaked with fish blood & slime,N,"J. Musick,",,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.a-VirginiaBargeSpearfisherman.pdf +4008,1997.12.28.b,28-Dec-97,1997,Unprovoked,South africa,Western Cape Province,"Pringle Bay, 44 miles southeast of Cape Town",Spearfishing,Ian James Hill,M,FATAL,Y,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.b-Hill.pdf +4007,1997.12.28.a,28-Dec-97,1997,Unprovoked,South africa,Eastern Cape Province,St. Francis Bay,Sitting on surfboard,Stuart Buchanan,M,Calf bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.a-Buchanan.pdf +4006,1997.12.25.b,25-Dec-97,1997,Invalid,Usa,Florida,"Fort Lauderdale, Broward County",Unknown,Gerd Olofsson,F,"Ankle bitten, but shark involvement unconfirmed",N,Miami Herald,12/27/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.b-Olofsson.pdf +4005,1997.12.25.a,25-Dec-97,1997,Unprovoked,Usa,Florida,"Hollywood Beach, Broward County",Swimming,Samuel Lussier,M,Left leg gashed knee to ankle,N,Orlando Sentinel,12/27/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.a-Lussier.pdf +4004,1997.11.09,09-Nov-97,1997,Unprovoked,Australia,Western Australia,Albany,Scuba diving (submerged riding a scooter),Kevin Hulkes,M,Left arm lacerated when shark grabbed scooter,N,Daily Telegraph,11/12/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.09-Hulkes.pdf +4003,1997.11.05.R,05-Nov-1997,1997,Unprovoked,Usa,Florida,Unknown,Swimming,"James Ogilvy, 31st in line for the British Throne",M,Thigh bitten,N,The Mirror (London),11/5/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.R-Ogilvy.pdf +4002,1997.11.05, 05-Nov-1997,1997,Invalid,Australia,New South Wales,Botany Bay?,Unknown,Luke McIntyre,M,5 m white shark obsrved feeding on remains 6 days later,Y,Courier-Mail,12/7/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.a-McIntyre.pdf +4001,1997.10.28.b,28-Oct-97,1997,Unprovoked,Australia,Western Australia,"Cottesloe Beach, Perth",Surf-skiing,Brian Sierakowski & Barney Hanrahan,M,"Sierakowski suffered a minor facial injury, ski bitten in half by shark",N,Reuters Limited,et al,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.b-Sierakowski.pdf +4000,1997.10.28.a,28-Oct-97,1997,Unprovoked,Usa,Hawaii,"Waiokapua Bay/Majors Bay, Brennecke Beach, Poipu, Kaua'i Island",Body boarding or surfing,Mike Coots,M,"Both legs bitten, right leg severed at mid-calf & defense wounds on right hand",N,Yahoo News Canada,8/16/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.a-Coots.pdf +3999,1997.10.24,24-Oct-97,1997,Unprovoked,Usa,Florida,"North Jetty, Fort Pierce Inlet State Park, St. Lucie County",Surfing,Luis Morales,M,"5"" gash in foot",N,Fort Pierce News, 10/25/1997 & 10/31/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.24-Morales.pdf +3998,1997.10.21,21-Oct-97,1997,Unprovoked,Usa,Florida,"North Jetty, Fort Pierce Inlet State Park, St. Lucie County",Surfing,Jacob McBee,M,Left foot bitten,N,Fort Pierce News, 10/24/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.21-McBee.pdf +3997,1997.10.11.R,11-Oct-1997,1997,Boat,South africa,Eastern Cape Province,Off Port Alfred,Fishingat,Andre Marais & Tony Jensen,Unknown,"No injury, hooked shark bit their 4.8 m inflatable boat",N,Daily Dispatch,10/11/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.11.R-Jensen-Marais.pdf +3996,1997.10.04,04-Oct-97,1997,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Swimming,Tara Stalnaker,F,Laceration & 3 puncture wounds to anterior right thigh,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.04.b-Stalnaker.pdf +3995,1997.09.16,16-Sep-97,1997,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Swimming,Pedro Fernandes da Silva,M,FATAL,Y,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.16-PedroFernandesDaSilva.pdf +3994,1997.09.09,09-Sep-97,1997,Unprovoked,Usa,Florida,Volusia County ,Surfing,G.D.,M,Laceration to right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.09-Dietlin.pdf +3993,1997.09.08,08-Sep-97,1997,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,Unknown,2 small lacerations to bottom of foot,N,Daytona News-Journal,9/9/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.08-NSB.pdf +3992,1997.09.06,06-Sep-97,1997,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Robert Lange,M,Lacerations to lower left leg,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.06-Lange.pdf +3991,1997.08.30,30-Aug-97,1997,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Hoyas,M,Lacerations on right ankle & heel,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.30-Hoyas.pdf +3990,1997.08.27,27-Aug-97,1997,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Walking / surfing,Anthony Aleno,M,"2"" laceration on left heel",N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.27-Aleno.pdf +3989,1997.08.24,24-Aug-97,1997,Unprovoked,Usa,California,"Clam Beach, near Eureka, Humboldt County",Surfing (sitting on his board),Scott Yerby,M,Leg & hand bitten,N,R. Collier,pp.159-160,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.24-Yerby_Collier.pdf +3988,1997.08.14.b,14-Aug-97,1997,Invalid,Mexico,Quintana Roo,"Santa Rosa, Cozumel",SCUBA diving,Mike Jonatis,M,FATAL,Y,Charlotte Observer,8/22/2997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.b-Joniatis.pdf +3987,1997.08.14.a,14-Aug-97,1997,Unprovoked,Mexico,Quintana Roo,"Santa Rosa, Cozumel",SCUBA diving,Mac Lupold,M,"FATAL, arm & leg severed ",Y,Charlotte Observer,8/22/2997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.a- Lupold.pdf +3986,1997.08.11.c,11-Aug-97,1997,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Floating on raft,L.B.,F,Small lacerations on right lower leg,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.c-NV-L.B.pdf +3985,1997.08.11.b,11-Aug-97,1997,Unprovoked,Egypt,Red Sea,Safaga,Fishing,Nagah Attalah Al Sayed ,M,Seriously injured,N,Middle East Times,8/15/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.b-ElSayed.pdf +3984,1997.08.11.a,11-Aug-97,1997,Unprovoked,Egypt,Red Sea,Safaga,Fishing,Ayman Abul Hassan,M,FATAL,Y,Middle East Times,8/15/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.a-Hassan.pdf +3983,1997.08.10,10-Aug-97,1997,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,N. F.,M,Lacerations to foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.10-NV-N.F.pdf +3982,1997.08.09,09-Aug-97,1997,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Lacerations to right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.09-NV-NewSmyrnaBeach.pdf +3981,1997.08.05,05-Aug-97,1997,Unprovoked,Usa,Texas,"East Beach, Galveston",Wading,female,F,Wrist & am bitten,N,Austin American Statesman,8/7/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.05-Galveston.pdf +3980,1997.08.04,04-Aug-97,1997,Unprovoked,Usa,Florida,"Carysfort Lighthouse, Key Largo, Monroe County",Wade-fishing,Pete Swenson,M,Left forearm & wrist bitten,N,Miami Herald,8/29/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.04-Swenson.pdf +3979,1997.08.02.b,02-Aug-97,1997,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Body surfing,Rodigo Cesar,M,Top of left foot bitten,N,S. Petersohn,GSAF; D. Catron,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.b-Cesar.pdf +3978,1997.08.02.a,02-Aug-97,1997,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading / Surfing,Matthew Perny,M,Top of left foot bitten,N,S. Petersohn,GSAF; D. Catron,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.a-Perny.pdf +3977,1997.07.27,27-Jul-97,1997,Unprovoked,Australia,Queensland,"Pincushion, north of Maroochydore Beach",Surfing,Neil Davey,M,Leg lacerated,N,Courier-Mail,7/28/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.27-Davey.pdf +3976,1997.07.21,21-Jul-97,1997,Unprovoked,South africa,Eastern Cape Province,"Breezy Point, Ntlonyana",Surfing,Mark Penches,M,FATAL,Y,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.21-Penches.pdf +3975,1997.07.17,17-Jul-97,1997,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Surfing,José Roberto Paraizo de Albuquerque,M,Survived,N,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.17.b-Albuquerque.pdf +3974,1997.07.14,14-Jul-97,1997,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Standing,Flint Cowden,M,Left calf bitten,N,Charlotte Observer,7/17/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.14-Cowden.pdf +3973,1997.07.12,12-Jul-97,1997,Unprovoked,Okinawa,Miyako,Hirara,Fishing for octopus,Shizuo Nakachi,M,"FATAL, legs severed ",Y,Okinawa Weekly Times,7/19/1997 editon; Ryukyu Shrimpo News (Japan),http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.12-Nakachi.pdf +3972,1997.07.02.R, 2-Jul-1997,1997,Unprovoked,Brazil,Pernambuco,Paiva,Surfing,Jurandir Amorim Silva,Unknown,Right thigh bitten,N,D. Duarte; Globo,7/2/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.02-Jurandir.pdf +3971,1997.06.24,24-Jun-97,1997,Unprovoked,Usa,Hawaii,"Sunset Beach, Oahu",Spearfishing / night diving,L. Molina,M,Leg bitten just above ankle,N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.24-Molina.pdf +3970,1997.06.15,15-Jun-97,1997,Unprovoked,Fiji,Taveuni,Off a small island 5 km from Garden Island Resort,Snorkeling,Liz Rogers,F,"Bitten on inner thigh, leg surgically amputated",N,R. D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.15-LizRogers.pdf +3969,1997.06.09,09-Jun-97,1997,Unprovoked,Usa,Florida, Palm Beach County,Surfing,Michael Massey,M,Laceration to left upper arm,N,Palm Beach Post,6/12/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.09-Massey.pdf +3968,1997.06.07,07-Jun-97,1997,Unprovoked,Brazil,Rio de Janeiro,"Copacabana, Rio de Janeiro",Bathing,José Luiz Lipiani,M,Unknown,N,Globo,6/9/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.07-NV-Lipiani.pdf +3967,1997.06.02,02-Jun-97,1997,Unprovoked,Usa,Florida,"Daytona Beach Shores, Volusia County","Body surfing, stood up on sandbar",Doug Amelio,M,4 lacerations above left ankle,N,S. Petersohn,GSAF; D. Treen; Florida Times-Union,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.02-Amelio.pdf +3966,1997.05.31.c,31-May-97,1997,Unprovoked,Usa,Florida,In Gulf of Mexico 17 miles off Weeki Wachee ,Spearfishing,Dave Medvec,M,Right thigh punctured,N,R. Nelson,St. Petersburg Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.c-Medvec.pdf +3965,1997.05.31.b,31-May-97,1997,Unprovoked,Usa,Florida,"Flagler Beach, Flagler County",Surfing,Robert Fuller,M,Left elbow bitten,N,A. Mikula,Daytona Beach News-Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.b-Fuller.pdf +3964,1997.05.31.a,31-May-97,1997,Unprovoked,Usa,Florida,"Flagler Beach, Flagler County",Surfing,Johnny Bowden,M,Left ankle bitten,N,A. Mikula,Daytona Beach News-Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.a-Bowden.pdf +3963,1997.05.26,26-May-97,1997,Unprovoked,Bahamas,Abaco Islands,Powell Cay,Spearfishing,Wilber Wood,M,Right arm bitten,N,The Mirror (London); Orlando Sentinel,5/28,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.26-Wood.pdf +3962,1997.05.17,17-May-97,1997,Unprovoked,Bahamas,Abaco Islands,Walkers Cay,Spearfishing,Robert Gunn,M,Leg bitten,N,Miami Herald,5/18/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.17-Gunn.pdf +3961,1997.04.20,20-Apr-97,1997,Unprovoked,Brazil,Rio de Janeiro,"Manguinhos, Ilha Feia, Búzios",Windsurfing,João Pedro Portinari Leão,M,Lower left leg & ankle bitten,N,O. Gadig; Globo,4/24/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.04.20-Leao.pdf +3960,1997.02.28.b,28-Feb-97,1997,Unprovoked,Australia,Queensland,"Carrara, Nerang River",Swimming,Joanna Salmon,F,Left leg biten,N,The Advertiser,3/1/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.b-Salmon.pdf +3959,1997.02.28.a,28-Feb-97,1997,Unprovoked,Australia,Queensland,Whitsunday Passage,Scuba diving,Gerald Rauch,M,Left arm bitten,N,The Advertiser,3/1/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.a-Rauch.pdf +3958,1997.02.21,21-Feb-97,1997,Unprovoked,Usa,Hawaii,"Sunset Beach, O'ahu",Unknown,Gersome Perreno,M,No details,UNKNOWN,G. Balazs,,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.21-NV-Perreno.pdf +3957,1997.02.20,20-Feb-97,1997,Unprovoked,Reunion,L'Etang-Sale,Unknown,Unknown,Laurent Lebon,M,Hand injured,N,LeQuotidien,12/4/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.20-Lebon.pdf +3956,1997.02.03,03-Feb-97,1997,Boat,Australia,New South Wales,"Iron Cove, Sydney",Rowing ,Andree Moscari,F,"Bruised, when shark struck scull & catapulted her into the water",N,J. Delvecchio & D. Sygall,Sydney Morning Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.03-Mocsari.pdf +3955,1997.01.25,25-Jan-97,1997,Unprovoked,Australia,Queensland,"Whitehaven Beach, Whitsundays Island",Snorkeling,Derek Burrows,M,"Left leg lacerated, punctures to right leg",N,Sunday Mail (QLD),1/26/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.25-Burrows.pdf +3954,1997.01.20,20-Jan-97,1997,Unprovoked,Australia,Western Australia,Geraldton,Windsurfing,Werner Schonhofer,M,"Presumed fatal, no body recovered, shark mutilated wetsuit & harness recovered ",Y,Daily Telegraph,1/22/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.20.a-Schonhofer.pdf +3953,1997.01.03.a,03-Jan-97,1997,Unprovoked,Reunion,Unknown,la Pointe-au-Sel,Spearfishing,David Lonne,M,FATAL,Y,Clicanoo,le journal de l'Ile de la Réunion,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.03-Lonne.pdf +3952,1997.01.01,01-Jan-97,1997,Boat,Australia,Victoria,"Seal Rocks, Phillip Island",Watching seals,"Inflatable dinghy, occupants: Jasmine Wigley, Greg Wilkie, Phil Rourke & Fleur Anderson",Unknown,"No injury to occupants, shark bit 2 of the dinghy's 3 floation chambers",N,The Advertiser,1/3/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.01-Seal-island-boat.pdf +3951,1996.12.29,29-Dec-96,1996,Unprovoked,Australia,Queensland,Coolum Beach,Surfing,Blair Hall,M,Unknown,N,The Advertiser,12/30/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.29-BlairHall.pdf +3950,1996.12.10,10-Dec-96,1996,Unprovoked,South africa,Eastern Cape Province,"Duck Pond, Sardina Bay near Port Elizabeth",Surfing,Steven Cross,M,Elbow bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.10-Cross.pdf +3949,1996.12.00.b,Dec-96,1996,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Charles Wadra,M,"Presumed fatal, only his shark-bitten speargun recovered",Y,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.b-Wadra.pdf +3948,1996.12.00.a,Dec-96,1996,Unprovoked,New caledonia,South Province,L'llot Maetre,Attempting to attract dolphins,female,F,Hand bitten,N,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.a-NewCaledonia.pdf +3947,1996.11.29.a,29-Nov-96,1996,Unprovoked,Usa,California,"Salmon Creek Beach, Sonoma County",Surfing,Greg Ferry,M,Single laceration on ankle & board bitten,N,R. Collier,p.158,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.29-Ferry_Collier.pdf +3946,1996.11.18,18-Nov-96,1996,Unprovoked,Usa,Florida,"Coral Cove Park, Palm Beach County",Surfing,Adam Urban ,M,Right foot bitten,N,Jupiter Courier,11/20/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.18-Urban.pdf +3945,1996.10.28.b,28-Oct-96,1996,Unprovoked,Brazil,Pernambuco,Barra de Jangada,Surfing,Gilvan Jaime de Freitas Júnior,Unknown,Leg bitten,N,D. Duarte,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.b-deFrietas.pdf +3944,1996.10.28.a,28-Oct-96,1996,Unprovoked,Brazil,Pernambuco,Barra de Jangada,Surfing,Luis Henrique Messias,M,Survived,N,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.a-Messias.pdf +3943,1996.10.09,09-Oct-96,1996,Unprovoked,Okinawa,Miyako Island,Boragawa Beach,Swimming or snorkeling,male,M,FATAL,Y,Okinawa Weekly Times,10/14/1996 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.09-Okinawa.pdf +3942,1996.10.05.,05-Oct-96,1996,Unprovoked,Usa,California,"Dillon Beach, Marin County",Surfing,Mark Quirt,M,Lower leg bitten,N,R. Collier,pp.156-157,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.05-Quirt_Collier.pdf +3941,1996.10.03.b,03-Oct-96,1996,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing,Aric Hollingsworth,M,"4"" laceration on left forearm",N,Orlando Sentinel,10/4/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.b-Hollingsworth.pdf +3940,1996.10.03.a,03-Oct-96,1996,Unprovoked,Usa,California,"North Salmon Creek Beach, Sonoma County",Surfing,Kennon Cahill,M,"No Injury, shark struck his board",N,R. Collier http://www.sharkresearchcommittee.com/unprovoked_surfer.htm,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.a-Cahill_Collier.pdf +3939,1996.10.00,Oct-96,1996,Unprovoked,Brazil,Pernambuco,Unknown,Unknown,Josebias Dias,Unknown,Survived,N,D. Duarte,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.00-NV-Josebias.pdf +3938,1996.09.18,18-Sep-96,1996,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,Robert Gary,M,4 or 5 lacerations on left ankle,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.18-RobertGary.pdf +3937,1996.09.06.b,06-Sep-96,1996,Unprovoked,New zealand,Chatham Islands ,Waihere Bay,Diving for abalone,Vaughn Hill,M,"Back, arms & wrist severely lacerated",N,R.D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.b-Vaughn.pdf +3936,1996.09.06.a,06-Sep-96,1996,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing / Swimming,John Perkins,M,Small puncture wounds and lacerations on right leg just below knee,N,S. Petersohn,GSAF; Orlando Sentinel ,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.a-Perkins.pdf +3935,1996.09.02.b,02-Sep-96,1996,Unprovoked,Usa,Florida,"Behune Beach, Volusia County",Standing,William (or Richard) Schwall,M,Right foot bitten,N,S. Petersohn,GSAF; Orlando Sentinel ,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.b-Schwall.pdf +3934,1996.09.02.a,02-Sep-96,1996,Unprovoked,Usa,Florida,"Bethune Beach, Volusia County",Sitting on surfboard,Chris Volz,M,Small lacerations on left foot,N,S. Petersohn,GSAF; Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.a-Volz.pdf +3933,1996.09.01.b,01-Sep-96,1996,Invalid,Usa,South Carolina,"Garden City Beach, Horry County",Boogie boarding,female,F,Minor injuries to foot,N,The Sun,9/2/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.b-GardenCity.pdf +3932,1996.09.01.a,01-Sep-96,1996,Provoked,South africa,KwaZulu-Natal,Hibberdene,Spearfishing,Gyula Plaganyi,M,No injury PROVOKED INCIDENT,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.a-Plaganyi.pdf +3931,1996.08.29,29-Aug-96,1996,Unprovoked,Usa,Hawaii,"Paukukalo, Maui",Body Boarding,"David Nanod, Jr.",M,Right calf bitten,N,Allen,p.117,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.29-Nanod.pdf +3930,1996.08.13,13-Aug-96,1996,Unprovoked,Usa,California,"Bird Rock, Tomales Point",Free diving for abalone,Colum Tinley,M,"Left shoulder, forearm, hand & abdomen lacerated",N,R. Collier,pp.154-155 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.13-Tinley_Collier.pdf +3929,1996.08.11,11-Aug-96,1996,Unprovoked,Usa,Florida,"Bayshore Garden, Sarasota Bay, Sarasota County",Wade fishing,Jason King,M,"No injury, towed by shark that grabbed stringer of fish tied to his waist",N,Bradenton Herald,8/12/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.11-Jason King.pdf +3928,1996.07.26,26-Jul-96,1996,Unprovoked,Usa,Florida,"Wiggins Pass, Collier County",Standing,a German girl,F,Survived,N,Press clipping,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.26-NV-WigginsPass.pdf +3927,1996.07.23.b,23-Jul-96,1996,Unprovoked,Okinawa,Miyako,Hirara City,Swimming,Mr. Moriyoshi Takehara,M,"FATAL, torso & abdomen bitten, forearm severedL",Y,press clippings ; Okinawa Weekly Times,10/14/1996 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.b-Takehara.pdf +3926,1996.07.23.a,23-Jul-96,1996,Unprovoked,Egypt / israel,"South Sinai, Gulf of Aqaba","1 km off the mouth of Marsa Bereika, north of Ras Mohammed",Free diving with a pod of dolphins,Martin Christopher Richardson,M,"Bitten on back, shoulder & chest",N,Daily Telegraph,7/26/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.a-Richardson.pdf +3925,1996.07.21,21-Jul-96,1996,Unprovoked,Usa,Massachusetts,"Truro (Cape Cod), Barnstable County",Swimming,James Orlowski,M,Lacerations to left leg & right foot ,N,Associated Press,7/23/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.21-Orlowski.pdf +3924,1996.07.20,20-Jul-96,1996,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,K.O.,M,Laceration to right arm,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.20-K.O.pdf +3923,1996.07.14,14-Jul-96,1996,Unprovoked,Usa,Hawaii,"Nakalele Point, Maui",Unknown,Trimurti Day,Unknown,No details,UNKNOWN,G. Balazs,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.14-NV-TrimurtiDay.pdf +3922,1996.07.10,10-Jul-96,1996,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Unknown,Andrew Lewis,M,Right foot bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.10-Lewis.pdf +3921,1996.07.04.b,04-Jul-96,1996,Unprovoked,Usa,Florida,"Public Beach, Siesta Key, Sarasota County",Standing,Carol Diliberto,F,Laceration on left foot,N,G. Nansen; Sarasota Herald-Tribune (FL),7/5/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.b-Dilberto.pdf +3920,1996.07.04.a,04-Jul-96,1996,Unprovoked,Bahamas,Cat Cay,Unknown,Diving,Michael Beach,M,Left leg lacerated,N,G. Nansen,D. McGee; Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.a-Beach.pdf +3919,1996.06.25,25-Jun-96,1996,Unprovoked,Usa,South Carolina,"Fripp Island, Beaufort County",Body surfing,Beth Shannon,F,"Lacerations to left shin, heel & foot",N,C. Creswell,GSAF; Macon Telegraph,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.25-Shannon.pdf +3918,1996.06.06,06-Jun-96,1996,Unprovoked,Australia,Victoria,"Suicide Point, Point Leo",Surfing,George Lucas,M,"No injury, board bitten",N,P. Anderson,Herald Sun,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.06-Lucas.pdf +3917,1996.06.04,04-Jun-96,1996,Unprovoked,South africa,KwaZulu-Natal,LaMercy,Surfing,Justin Sanders,M,Survived,N,ZigZag Magazine,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.04-JustinSanders.pdf +3916,1996.05.28,28-May-96,1996,Unprovoked,South africa,Western Cape Province,"The Steps, Wilderness",Surfing,Donovan Köhne,M,Leg bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.28-Kohne.pdf +3915,1996.05.24,24-May-96,1996,Invalid,Australia,New South Wales,"Wreck of paddle steamer, Koputai, 6 km off Bondi Beach",Tech diving ,Pat Bowring,M,"FATAL, but shark involvement prior to death was not confirmed",Y,Daily Telegraph,5/29/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.24-Bowring.pdf +3914,1996.05.18,18-May-96,1996,Unprovoked,Usa,Florida,"South of Ponce Inlet, Volusia County",Surfing,Mike Rebel,M,Right foot & ankle bitten,N,S. Petersohn,GSAF; Orlando Sentinel; Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.18-Rebel.pdf +3913,1996.05.10,10-May-96,1996,Unprovoked,Unknown,Unknown,Unknown,Shell Diving,Lee Kwan-seok,M,FATAL,Y,Y. Choi & K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.10-LeeKwan-seok.pdf +3912,1996.05.07,07-May-96,1996,Unprovoked,Usa,Florida,"Shark Shallows, Ponce Inlet, Volusia County",Surfing,Jimmy Grunewald,M,Left foot & leg bitten,N,S. Petersohn,GSAF; G. Nansen; P.LaMee,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.07-Grunewald.pdf +3911,1996.04.28.b,28-Apr-96,1996,Unprovoked,Usa,Hawaii,"La'ie Point, O'ahu",Unknown,Wayne Leong,M,No details,UNKNOWN,G. Balazs,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.28.b-Leong.pdf +3910,1996.04.25.b,25-Apr-96,1996,Unprovoked,Australia,New South Wales,Mona Vale,Swimming,Luke Baker,M,Puncture wounds on upper left thigh ,N,Daily Telegraph,4/26/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.b-Baker.pdf +3909,1996.04.25.a,25-Apr-96,1996,Unprovoked,Australia,New South Wales,Mona Vale,Swimming,Aya Hamaea ,F,Puncture wounds on leg ,N,Daily Telegraph,4/26/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.a-Hamaea.pdf +3908,1996.04.07,07-Apr-96,1996,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Swimming,Marcos Santana Silva,M,FATAL,Y,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.07-Silva.pdf +3907,1996.03.05,05-Mar-96,1996,Unprovoked,Australia,Queensland,Heron Island,Swimming breast stoke,Jean Hotchkiss ,F,Left arm & leg lacerated,N,Advertiser,3/6/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.05-Hotchkiss.pdf +3906,1996.03.00,Mar-96,1996,Unprovoked,Australia,New South Wales,Lord Howe Island,Fishing in knee-deep water,male,M,Left calf bitten,N,J. Royle,et. al. (1997),http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.00-LordHoweIsland.pdf +3905,1996.02.26,26-Feb-96,1996,Unprovoked,Australia,New South Wales,"Charles Street Wharf, Parramatta River",Dived naked into the water on a bet,Darren Good,M,Left leg & right testicle bitten,N,Daily Telegraph,2/29/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.26-Good.pdf +3904,1996.02.19.R, 19-Feb-1996,1996,Provoked,Usa,Missouri,St. Louis,Swimming in fish tank,Kathi Peters,F,5 punctures to hand from captive shark PROVOKED INCIDENT,N,Deseret News,2/19/1996; European Stars and Stripes,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.19.R-Peters.pdf +3903,1996.02.10.c,09-Feb-96,1996,Unprovoked,Papua new guinea,Madang Province,Madang,Unknown,a father of six,M,FATAL,Y,Sunday Mail (QLD),2/11/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.c-PNGfather.pdf +3902,1996.02.10.b,09-Feb-96,1996,Unprovoked,Papua new guinea,Madang Province,Madang,Unknown,College student,Unknown,Thigh,N,Sunday Mail (QLD),2/11/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.b-CollegeStuden.pdf +3901,1996.02.10.a,09-Feb-96,1996,Unprovoked,Papua new guinea,Madang Province,Madang,Diving ,schoolboy,Unknown,Leg severed FATAL,N,Sunday Mail (QLD),2/11/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.a-PNGschoolboy.pdf +3900,1996.02.05,05-Feb-96,1996,Sea Disaster,Dominican republic,12 miles off the north coast,Boeing 757 enroute from Porta Plata,Boeing 757 enroute from Porta Plata plunged into the sea,No survivors. 189 people were lost,Unknown,"106 bodies were recovered, some had been bitten by sharks",Y,Press reports,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.05-aircraftDominican.pdf +3899,1996.02.04,04-Feb-96,1996,Unprovoked,Australia,New South Wales,"Ned's Beach, Lord Howe Island",Swimming,a South Australian boy,M,Ankles injured,N,The Advertiser,2/6/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.04-boy-7.pdf +3898,1996.01.23,23-Jan-96,1996,Provoked,Usa,Florida,"Florida Keys, Monroe County",Wading,Christopher Riley,M,Shark bit his leg after he grabbed its tail & wouldn't let go PROVOKED INCIDENT,N,Miami Herald,1/25/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.23-Riley.pdf +3897,1996.01.22,22-Jan-96,1996,Unprovoked,Australia,Queensland,"Brown's Inlet, Broadwater",Swimming,Jasmine Cox,F,Lacerations to left calf,N,Daily Telegraph,1/23/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.22-Cox.pdf +3896,1996.01.16,16-Jan-96,1996,Unprovoked,Usa,Hawaii,"Ka’eleki’I Point, Maui",Swimming with mask & snorkel,Robert Rogowicz,M,Lacerations to left foot & right shin,N,G. Ambrose,pp.48-53,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.16-Rogowicz.pdf +3895,1996.01.14.b,14-Jan-96,1996,Unprovoked,Australia,Western Australia,"Mutton Bird Island, Albany",Unknown,Marris,Unknown,No details,UNKNOWN,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.14.b-NV-Marris.pdf +3894,1996.01.12,12-Jan-96,1996,Boat,Australia,New South Wales,Eight-mile reef off Port Kembla,Chumming for sharks,"Mini Haa Haar, fiberglass boat, occupants: William Catton, Anthony Green, Tony & Kylie Barnes",Unknown,"No injury to occupants; shark rammed, bit & sank boat ",N,Sunday Mail,1/14/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.12-MiniHaaHaar.pdf +3893,1996.01.10,10-Jan-96,1996,Unprovoked,Reunion,Saint-Paul ,Embouchure de l'étang de Saint Paul,Surfing,Grégory Bénèche,M,FATAL,Y,Clicanoo,le journal de l'Ile de la Réunion,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.10-Beneche.pdf +3892,1996.00.00.b,1996,1996,Unprovoked,Fiji,Taveuni,Unknown,Unknown,male,M,FATAL,Y,R. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.b-Fiji.pdf +3891,1996.00.00.a,1996,1996,Unprovoked,Usa,North Carolina,Unknown,Surfing,male,M,Survived,N,SAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.a-NV-NorthCarolina.pdf +3890,1995.12.18,18-Dec-95,1995,Unprovoked,Usa,Hawaii,Southwest of O'ahu,Unknown,Carlton Taniyama,M,No details,UNKNOWN,G. Balazs,,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.12.18-NV-Taniyama.pdf +3889,1995.11.29,11-Nov-95,1995,Unprovoked,New zealand,"Chatham Islands, east of New Zealand",Unknown,"Diving, gathering shellfish",Kina Scollay,M,Leg & chest lacerated,N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.29-Scollay.pdf +3888,1995.11.25.b,25-Nov-95,1995,Invalid,Usa,Hawaii,"Ha'ena, Kaua'i",Unknown,Wendall Olanolan,M,Minor injury,N,G. Balazs,,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.b-NV-Olanolan.pdf +3887,1995.11.25.a,25-Nov-95,1995,Unprovoked,Unknown,Unknown,Unknown,Fell off aircraft carrier,"Zacharay Mayo, a U.S. Marine",M,"Minor injuries, bites on fingers & toes. Rescued by Pakistani fishermen",N,CNN,,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.a-Mayo.pdf +3886,1995.11.17,17-Nov-95,1995,Unprovoked,Australia,Queensland,Great Keppel Island,Unknown,Roberto Giordan,M,Survived,N,A. Brenneka,sharkattacksurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.17-Giordan.pdf +3885,1995.10.28.R,28-Oct-1995,1995,Unprovoked,Usa,Florida,Unknown,Boogie boarding,Matthew Beyrer,M,Lacerations to right foot,N,Flagler/Palm Coast News Tribune,10/28/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.28.R-Beyrer.pdf +3884,1995.10.21,21-Oct-95,1995,Unprovoked,Usa,Florida,"North Beach, St. Lucie County",Surfing,John Foley,M,Foot bitten,N,I. Nordemar,Fort Pierce Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.21-Foley.pdf +3883,1995.10.11,11-Oct-95,1995,Unprovoked,Australia,Queensland,"Pialba, Hervey Bay",Playing / standing,Lisa Mott,F,Laceration to thigh,N,Herald Sun,10/12/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.11-Mott.pdf +3882,1995.10.01,01-Oct-95,1995,Unprovoked,Usa,Florida,"Ormond Beach, Volusia County",Surfing,Stephen Massfeller,M,Right arm injured,N,Orlando Sentinel,10/2/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.01-Massfeller.pdf +3881,1995.09.30.b,30-Sep-95,1995,Unprovoked,Usa,Florida,"Crescent Beach, St. Augustine, St. Johns County",Surfing,Jon Grace,M,4 punctures in left foot,N,St. Petersburg Times,10/3/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.b-Grace.pdf +3880,1995.09.30.a,30-Sep-95,1995,Unprovoked,Usa,Florida,"North Beach, Hutchinson Island, St. Lucie County",Surfing,Ryan Evans,M,Leg & ankle bitten,N,The Palm Beach Post,10/1/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.a-Evans.pdf +3879,1995.09.28,28-Sep-95,1995,Unprovoked,Usa,California,"Davenport Landing, Santa Cruz County",Windsurfing,Mike Sullivan,M,"Right foot bruised, board bitten",N,R. Collier,pp.153-154,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.28-Sullivan_Collier.pdf +3878,1995.09.19.,19-Sep-95,1995,Unprovoked,Usa,Florida,"Matanzas Bay Inlet, St. Johns County",Surfing,Gavin Korth,M,Left arm & hand lacerated,N,Orlando Sentinel,9/20/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.19-Korth.pdf +3877,1995.09.17,17-Sep-95,1995,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Swimming,Jill Varney,F,Left elbow and bicep bitten,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.17-Varney.pdf +3876,1995.09.16,16-Sep-95,1995,Unprovoked,Reunion,Saint-Denis,Unknown,Body-boarding,Jerome Pruneaux,M,FATAL,Y,LeQuotidien,12/4/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.16-Pruneaux.pdf +3875,1995.09.13,13-Sep-95,1995,Unprovoked,Usa,Florida,"Alligator Reef, off Islamorada, Monroe County",Scuba diving,William Covert,M,"Presumed FATAL, body not recovered",Y,G. Hubbell; J. Castro; Ocala Star-Banner,9/22/1995; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.13-Covert.pdf +3874,1995.09.11,11-Sep-95,1995,Unprovoked,Australia,Western Australia,"Honeymoon Island, near Hopetown",Abalone diving using Hookah (near calving whales),David Alan Weir,M,"FATAL, head, shoulder and arm severed, remains recovered at Munglinup Beach on 9/13/1995",Y,The Advertiser,9/13/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.11-Weir.pdf +3873,1995.09.03.b,03-Sep-95,1995,Unprovoked,Usa,California,"Shelter Cove, Humboldt County",Abalone diving using Hookah (resting on the surface),Brian Hillenburg,M,Lower leg bitten,N,R. Collier,pp.151-153,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03-Hillenburg_Collier.pdf +3872,1995.09.03.a,03-Sep-95,1995,Invalid,Usa,North Carolina,"Bald Head Island, Brunswick County",Swimming,male,M,Laceration to lower leg,N,Wilmington MorningStar,9/5/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03.a-BaldHead.pdf +3871,1995.08.31.b,31-Aug-95,1995,Unprovoked,Usa,Florida,"North Beach Inlet, St. Lucie County",Surfing,Jason Cablish,M,Left hand & forearm bitten,N,Fort Pierce Tribune,9/1/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.b-Cablish.pdf +3870,1995.08.31.a,31-Aug-95,1995,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",On a float,Robert Hall,M,Puncture wounds on ankle & leg,N,The State (Colombia,SA) 9/1/1995; Charlotte Observer,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.a-Hall.pdf +3869,1995.08.27,27-Aug-95,1995,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Surfing,Aluisio Francisco da Silva Filho,M,Survived,N,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.27-AluisioFranciscoDeSilvaFilho.pdf +3868,1995.08.26/b,26-Aug-95,1995,Unprovoked,Usa,Florida,"Crescent Beach, St. Johns County",Surfing,Brian Korth,M,Left elbow bitten,N,Gainsville Sun,8/30/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.b-Korth.pdf +3867,1995.08.26.a,26-Aug-95,1995,Unprovoked,Usa,Florida,"Ponce de Leon Inlet, Volusia County",Surfing,Dwight Irvin,M,4 puncture wounds on right pinky finger,N,S. Petersohn,GSAF; C. Lancaster,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.a-DwightIrvin.pdf +3866,1995.08.25,25-Aug-95,1995,Unprovoked,Usa,North Carolina,"Off Masonboro Island, New Hanover County",Swimming,Michael Greenwood,M,Left arm bitten,N,Charlotte Observer,8/27/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.25-Greenwood.pdf +3865,1995.08.22.c,22-Aug-95,1995,Unprovoked,Usa,North Carolina,"Wrightsville Beach, New Hanover County",Swimming ,Scott Hall,M,Right foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.b-Hall.pdf +3864,1995.08.22.a,22-Aug-95,1995,Unprovoked,Usa,Florida,"Ponce de Leon Inlet, Volusia County",Surfing,Jason Barzo,M,Bottom of left foot gashed,N,C. Lancaster,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.a-Barzo.pdf +3863,1995.08.21,21-Aug-95,1995,Unprovoked,Usa,North Carolina,Cape Lookout Bight,Diving,Unknown,Unknown,No injury,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.21-CapeLookoutBight.pdf +3862,1995.08.19,19-Aug-95,1995,Unprovoked,Tonga,Vava’u,Near Tapana Island,Fishing,Laukau Lile,M,Upper left thigh avulsed ,N,S. Fonea,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.19-Lile.pdf +3861,1995.08.15,15-Aug-95,1995,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County ",Wading,James Oatley,M,Thigh lacerated,N,S. Petersohn,GSAF; Bradenton Herald & Ocala Star Banner,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.15-Oatley.pdf +3860,1995.08.13.a,13-Aug-95,1995,Invalid,Usa,North Carolina,"Emerald Isle, Carteret County",Swimming,Kyle Dickens,M,Death resulted fom drowning; shark bites were post-mortem,Y,J. L. Almeida,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.13.a-Dickens.pdf +3859,1995.08.10.b,10-Aug-95,1995,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,male,M,Laceration to left heel,N,News-Journal,8/11/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.b-PonceInlet.pdf +3858,1995.08.10.a,10-Aug-95,1995,Unprovoked,Usa,South Carolina,"Ocean Lakes Campground, south of Myrtle Beach, Horry County","""Riding waves on a board""",Venus Lindsey ,F,Left foot bitten,N,Charlotte Observer,8/12/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.a-Venus.pdf +3857,1995.08.07,07-Aug-95,1995,Unprovoked,Usa,Florida,"Ponce de Leon Inlet, Volusia County ",Body boarding,Matt Sturgis,M,Multiple bites on right leg and knee,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.07-MattSturgis.pdf +3856,1995.08.01,01-Aug-95,1995,Invalid,Tonga,Vava’u,Neiafu,Fishing,Jim McManus,M,Finger broken when hooked shark grabbed his catch,N,J. McManus,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.01-McManus.pdf +3855,1995.08.00,Aug-95,1995,Invalid,Usa,California,"Carmel, Monterey County",Diving,Marco Carme,M,Torso bitten,N,Reported in Oct issue of Diver magazine,possibly confused with Marco Flagg incident,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.00-Carme.pdf +3854,1995.07.28.e,28-Jul-95,1995,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Left foot bitten,N,P. LaMee,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.e-male-surfer.pdf +3853,1995.07.28.d,28-Jul-95,1995,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Minor laceration on lower leg,N,C. Lancaster & M. Losey,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.d-male-surfer.pdf +3852,1995.07.28.c,28-Jul-95,1995,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Patrick Moore,M,Laceration to heel,N,S. Petersohn,GSAF; C. Lancaster & M. Losey,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.c-Moore.pdf +3851,1995.07.28.b,28-Jul-95,1995,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Standing,Eric Kozak,M,2-inch laceration to lower right leg ,N,S. Petersohn,GSAF; C. Lancaster & M. Losey,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.b-Kozak.pdf +3850,1995.07.28.a,28-Jul-95,1995,Unprovoked,Usa,South Carolina,"Pawleys Island, Georgetown County",Unknown,male,M,Hand bitten (minor injury),N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.a-boy.pdf +3849,1995.07.24,24-Jul-95,1995,Unprovoked,Usa,South Carolina,"Pawleys Island, Georgetown County",Swimming,female,F,Right foot bitten,N,Charlotte Observer,7/29/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.24.a-PawleysIsland.pdf +3848,1995.07.23,23-Jul-95,1995,Unprovoked,Usa,Florida,"South Jetty, New Smyrna Beach, Volusia County",Body boarding,male,M,Foot bitten,N,P. LaMee,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.23-NSB-bodyboarder.pdf +3847,1995.07.07,07-Jul-95,1995,Unprovoked,Brazil,Pernambuco,Candeias,Surfing,Clélio Rosendo Falcão Filho,M,"Arm bitten, FATAL",Y,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.07-Filhol.pdf +3846,1995.07.06,06-Jul-95,1995,Unprovoked,Usa,Texas,Port Aransas,Surfing,Mark George,M,Foot bitten,N,Associated Press,7/8/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.06-MarkGeorge.pdf +3845,1995.07.03,03-Jul-95,1995,Provoked,Usa,Mississippi,"Cat Island, Harrison County",Fishing,Cheryl Lowman,F,Minor laceration to leg from a hooked shark PROVOKED INCIDENT,N,Sun Herald,7/4/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.03-Lowman.pdf +3844,1995.07.00,Early Jul-1995,1995,Provoked,Usa,South Carolina,"Off 29th Avenue, Myrtle Beach, Horry County",Jumped off surfboard & landed on the shark,Roberto Perez,M,Foot bitten PROVOKED INCIDENT,N,Aiken Standard,8/12/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.00-Perez.pdf +3843,1995.06.30,30-Jun-95,1995,Unprovoked,Usa,California,"Bluefish Cove, Pt. Lobos State Park, Monterey County",Scuba diving (ascending using scooter),Marco Flagg,M,"Forearm, abdomen & upper leg lacerated",N,R. Collier,pp.149-151 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.30-MarcoFlagg_Collier.pdf +3842,1995.06.24,24-Jun-95,1995,Unprovoked,Usa,California,"LaJolla Shores, San Diego County",Kayaking,female,F,Minor injuries,N,R. Collier,pp.148-149 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.24-LaJolla_Collier.pdf +3841,1995.06.23,23-Jun-95,1995,Unprovoked,Usa,Georgia,"Tybee Island, Chatham County",Playing / jumping,Joshua Bradley,M,Ankle bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.23-Bradley.pdf +3840,1995.06.17.b,17-Jun-95,1995,Unprovoked,Usa,South Carolina,"Garden City Beach, Horry County",Surfing,Jim Whitney,M,Foot bitten,N,C. Creswell,GSAF; Charlotte Observer,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.b-Whitney.pdf +3839,1995.06.17.a,17-Jun-95,1995,Unprovoked,Usa,Florida,"Jensen Beach Park, Martin County",Swimming,Paul Lucas,M,Right leg bitten,N,Orlando Sentinel,6/19/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.a-Lucas.pdf +3838,1995.06.16,16-Jun-95,1995,Unprovoked,Usa,Florida,"Tiger Shores Beach, Martin County",Swimming,Amber Delmans,F,Leg bitten,N,Orlando Sentinel,6/19/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.16-Delmans.pdf +3837,1995.06.14,14-Jun-95,1995,Unprovoked,Usa,Hawaii,"Opposite Grand Wailea Resort, Wailea, Maui",Swimming,Donald Bloom,M,Puncture wounds & scratches to torso & left leg ,N,G. Ambrose,pp.41-47,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.14-Bloom.pdf +3836,1995.06.13,13-Jun-95,1995,Unprovoked,Hong kong,Clearwater Bay,First Beach,Swimming,Wong Kwai-yung,F,"FATAL, left leg & forearm severed",Y,J. Wong & R.D. Weeks,GSAF; Daily Telegraph Mirror,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.13-HongKong.pdf +3835,1995.06.02,02-Jun-95,1995,Unprovoked,Hong kong,New Territories,Sheung Sze Wan Beach,Swimming,Herman Lo Cheuk-Yuet,M,"FATAL, right thigh bitten, femur exposed ",Y,J. Wong,GSAF; Daily Telegraph Mirror,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.02-Herman.pdf +3834,1995.05.31,31-May-95,1995,Unprovoked,Hong kong,New Territories,Sai Kung Beach,Diving,Tso Kam-Sun,Unknown,"FATAL, right leg severed, left leg lacerated ",Y,J. Wong,GSAF; Daily Telegraph Mirror,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.31-Tso.pdf +3833,1995.05.26,26-May-95,1995,Unprovoked,Usa,Florida,"Vero Beach, Indian River County",Surfing,Brent Enck,M,Left foot bitten,N,Fort Pierce Tribune,5/31/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.26-Enck.pdf +3832,1995.05.24,24-May-95,1995,Unprovoked,Fiji,Yasawa Islands,Waya Island,Sleeping in anchored boat,Kinijioji Vindovi,M,"FATAL, hand & leg severely injured by shark that leapt into boat ",Y,Another report of the same or similar incident states that a 15' shark leapt into a boat,injuring all 4 people on board,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.24-Vindovi.pdf +3831,1995.05.18,18-May-95,1995,Unprovoked,Australia,Western Australia,"Bernier Island, Shark Bay",Unknown,Hutchins,Unknown,No details,UNKNOWN,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.18-NV-Hutchins.pdf +3830,1995.05.12,12-May-95,1995,Unprovoked,South korea,Unknown,Jangkodo Island,Diving for abalone,Kim Sun-sim,F,Right leg severed FATAL,Y,Y. Choi & K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.12-Sun-Shim.pdf +3829,1995.04.16,16-Apr-95,1995,Invalid,Usa,Florida,"New Smyrna Beach, Volusia County",Unknown,C.M.,M,Dorsum of right hand bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.16-CM.pdf +3828,1995.04.13,13-Apr-95,1995,Unprovoked,Usa,Florida,"Ormond Beach, Volusia County",Unknown,Mark Degraff,M,Puncture wounds on right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.13-NV-OrmondBeach.pdf +3827,1995.04.09.b,09-Apr-95,1995,Unprovoked,Australia,New South Wales,"Honeysuckle Point, Eden",Diving,David Malone,M,"No injury, shark took swimfin",N,Daily Telegraph 55/9/1996,p.7,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.b-Malone.pdf +3826,1995.04.09.a,09-Apr-95,1995,Unprovoked,Japan,Aichi Prefecture,Atsumi Peninsula,Scuba diving for bivalves,Shintaro Hara,M,FATAL,Y,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.a-Hara.pdf +3825,1995.03.21,21-Mar-95,1995,Unprovoked,Australia,New South Wales,"Clark Island, Sydney Harbour",Surf skiing,Mary Meagher,F,"No injury, knocked off board by shark",N,Deseret News,3/24/1995 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.21-Meagher.pdf +3824,1995.03.11,11-Mar-95,1995,Unprovoked,Australia,South Australia,Cactus Beach,Surfing,Andy McBain,M,Left arm lacerated,N,Advertiser,3/13/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.11-McBain.pdf +3823,1995.03.05,05-Mar-95,1995,Unprovoked,Brazil,Maranhão,"Praia do Olho D'Água, São Luis",Swimming,E.S.,Unknown,FATAL,Y,M. Szpilman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.05-Brazil.pdf +3822,1995.02.19,19-Feb-95,1995,Unprovoked,South africa,Eastern Cape Province,Kidd’s Beach,Swimming,Johan Deetlefs,M,Lacerations to lower leg & foot,N,A. Gifford,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.19-Deetlefs.pdf +3821,1995.02.00,Feb-95,1995,Unprovoked,Unknown,Unknown,Unknown,Wind surfing,Justin James,M,Right ankle & foot bitten,N,A. Brenneka,sharkattacksurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.00-JustinJames.pdf +3820,1995.01.24,24-Jan-95,1995,Unprovoked,South africa,KwaZulu-Natal,Isipingo,Swimming,Mthokozisi Cedrick Mpanza,M,"FATAL, right thigh bitten & femur exposed, shallow lacerations on right calf & left thigh & fingers lacerated ",Y,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.24-Mpanza.pdf +3819,1995.01.02,02-Jan-95,1995,Unprovoked,Brazil,Pernambuco,Piedade,Surfing,Humberto Moraes de Souza,M,Foot bitten,N,San Jose Mercury News,1/6/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.02-H.de-SouzaMoraes.pdf +3818,1995.00.00.e,1995,1995,Invalid,Unknown,Unknown,Unknown,Diving,Karl Sacks,M,Reportedly lost lower right leg as result of shark bite,N,S. Hughes,Daily Star (UK),http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.e-Sacks.pdf +3817,1995.00.00.d,1995,1995,Provoked,Australia,Queensland,Gladstone Reef,Snorkeling,male,M,"No injury, grabbed byshark after he pulled its tail PROVOKED INCIDENT",N,Shark-L,9/13/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.d-Gladstone.pdf +3816,1995.00.00.c,1995,1995,Invalid,Usa,North Carolina,Carolina Beach,Scuba diving,Nunley,M,Death resulted fom drowning; shark bites were post-mortem,Y,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.c-Nunley.pdf +3815,1995.00.00.b,1995,1995,Unprovoked,Usa,South Carolina,"Pawleys Island, Georgetown County",Unknown,male,M,No details,UNKNOWN,C. Creswell,GSAF; ISAF 2793,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.b-NV-PawleysIsland.pdf +3814,1994.12.30,30-Dec-94,1994,Unprovoked,South africa,Western Cape Province,Mossel Bay,Body boarding,Fritz Van Zyl,M,"No injury, board bitten",N,M. Levine,GSAF; M. Marks,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.30-VanZyl.pdf +3813,1994.12.18,18-Dec-94,1994,Unprovoked,Usa,Hawaii,"Kinikini, Mana, Kaua'i","Surfing, sitting on board",Anonymous,Unknown,"No injury, shark bit surfboard",N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.18-Kaui-surfer.pdf +3812,1994.12.13,13-Dec-94,1994,Unprovoked,Brazil,Pernambuco,Piedade,Surfing,Tiago Costa de Lima,M,Survived,N,JCOnline; M. Szpilman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.13-TiagoCostaDaLima.pdf +3811,1994.12.11,11-Dec-94,1994,Unprovoked,Brazil,Pernambuco,Paiva,Surfing,Jorge de Oliveira Andrade,M,Right thigh bitten,N,D. Duarte,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.11-JorgeDeOliveiraAndrade.pdf +3810,1994.12.10, 10-Dec-1994 ,1994,Unprovoked,Vanuatu,Tafea Province,Aniwa Island,Unknown,Unknown,Unknown,No details,UNKNOWN,Vanuatu Weekly Hebdomadaire,12/10/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.10-NV-Vanuatu.pdf +3809,1994.12.09.b,09-Dec-94,1994,Invalid,Australia,Queensland,"Hinchinbrook Channel, Queensland",Murder victim,Peter Saibura,M,Shark scavenged on his corpse,N,Courier Mail,3/30/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.b-Saibura-murder victim.pdf +3808,1994.12.09.a,09-Dec-94,1994,Unprovoked,Usa,California,"San Miguel Island, Santa Barbara County",Commercial diver (submerged or treading water),James Robinson,M,"FATAL, right leg nearly severed, puncture wounds to left leg ",Y,R. Collier,pp.147-148; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.a-Robinson_Collier.pdf +3807,1994.12.01,01-Dec-94,1994,Unprovoked,Brazil,Pernambuco,Paiva,Surfing,Laudenilson Gomes de Lima,M,FATAL,Y, San Jose Mercury News,1/6/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.01-LaudenilsonGomesDeLima.pdf +3806,1994.11.25.a,25-Nov-94,1994,Unprovoked,South africa,Western Cape Province,Mossel Bay,Spearfishing,Anton Bosman,M,No injury,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.25-Bosman.pdf +3805,1994.11.13,13-Nov-94,1994,Unprovoked,Usa,Hawaii,"Off the Hanalei River, Kaua'i","Surfing, paddling seawards",Kathleen McCarthy Lunn ,F,Right thigh & board bitten,N,G. Balazs; G. Ambrose,pp.24-29,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.13-Lunn.pdf +3804,1994.11.06.a,06-Nov-94,1994,Unprovoked,Usa,Hawaii,"Kealia Beach, Kaua'i",Surfing,C. Stokes,Unknown,"No injury, shark bit surfboard",N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.06.a-Stokes.pdf +3803,1994.10.18,18-Oct-94,1994,Unprovoked,Brazil,Pernambuco,Piedade,Surfing,Unidentified,Unknown,Survived,N,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.18-Piedade.pdf +3802,1994.10.17,17-Oct-94,1994,Unprovoked,Brazil,Pernambuco,Piedade,Surfing,Ednaldo Jose da Silva,M,Survived,N,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.17-EdnaldoJoseDaSilva.pdf +3801,1994.10.08,09-Oct-94,1994,Provoked,Usa,Florida,"Bill Baggs Cape Florida State Recreation Area, Miami-Dade County",Wading,Mariel Parker ,F,Ankle bitten when she accidently stepped on the shark PROVOKED INCIDENT,N,Miami Herald,10/9/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.08-Parker.pdf +3800,1994.10.05,05-Oct-94,1994,Unprovoked,Usa,Florida,"Indialantic, Brevard County",Surfing,Scott Dulmage,M,Foot bitten,N,Orlando Sentinel,10/5/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.05-ScottDulmage.pdf +3799,1994.09.26,26-Sep-94,1994,Unprovoked,Usa,South Carolina,"North Forest Beach, near Hilton Head, Beaufort County",Swimming,Lioubov Kozarinova,F,Right side of abdomen & left hand bitten,N,Atlanta Journal-Constitution,9/27/1994; Charlotte Observer,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.26-Kozarinova.pdf +3798,1994.09.21,21-Sep-94,1994,Unprovoked,Usa,Oregon,"Short Sand Beach, Oswald West State Park",Surfing,Rob MacKenzie,M,"No injury, surfboard bitten",N,R. Collier+M2079,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.21-MacKenzie_Collier.pdf +3797,1994.09.11.R,11-Sep-1994,1994,Sea Disaster,Usa,Florida,Florida Straits,Adrift on refugee raft,2 Cuban brothers,M,FATAL,Y,Sunday Herald Sun,9/11/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.11.R-CubanRefugees.pdf +3796,1994.09.05,05-Sep-94,1994,Unprovoked,Usa,Hawaii,Makaha Surf Beach,Jumped off rocks into white water,Rose Ann Savea,F,Left calf bitten,N,Dr. P. Bjorkman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.05-RoseAnnSavea.pdf +3795,1994.08.22,22-Aug-94,1994,Unprovoked,Japan,Kagoshima Prefecture,Tatsugo-cho,Unknown,Nagisa Yasuhara,Unknown,Survived,N,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.08.22-Yashuhara.pdf +3794,1994.07.24,24-Jul-94,1994,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Surfing,Carlos Frederico Gomes Martins,M,Left foot severed,N,C.F.G. Martins; JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.24-Carlos_Martins.pdf +3793,1994.07.09.d,09-Jul-94,1994,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Swimming,Alessandro Gomes de Souza,M,FATAL,Y,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.d-AlessandroGomesDeSouza.pdf +3792,1994.07.09.c,09-Jul-94,1994,Unprovoked,Reunion,Saint-Denis,Barachois,Windsurfing,Thierry Boulay,M,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.c-Boulay.pdf +3791,1994.07.09.b,09-Jul-94,1994,Unprovoked,South africa,Eastern Cape Province,"Nahoon Beach, East London",Surfing,Bruce Corby,M,"FATAL, leg severed ",Y,A Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.b-Corby.pdf +3790,1994.07.09.a,09-Jul-94,1994,Unprovoked,South africa,Eastern Cape Province,"Nahoon Beach, East London",Surfing,Andrew Carter,M,Buttock & leg bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.a-Carter.pdf +3789,1994.07.08.b,08-Jul-94,1994,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Surfing,Sandro Paulo dos Santos,M,Survived,N,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.b-SandroPaulosDosSantos.pdf +3788,1994.07.08.a,08-Jul-94,1994,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Michael Post ,M,Right calf lacerated,N,P. LaMee,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.a-MichaelPost.pdf +3787,1994.06.24,24-Jun-94,1994,Unprovoked,Bahamas,Grand Bahama Island,Freeport,Spearfishing,Alton Curtis,M,Forearm severely bitten,N,Miami Herald,7/9/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.06.24-Curtis.pdf +3786,1994.05.31.b,31-May-94,1994,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,Steve Polack,M,Foot lacerated,N,C. Lancaster,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.b-Polack.pdf +3785,1994.05.31.a,31-May-94,1994,Unprovoked,Usa,Florida," Daytona Beach, Volusia County",Surfing,Alex Reeber,M,Right foot lacerated,N,C. Lancaster,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.a-Reeber.pdf +3784,1994.05.28,28-May-94,1994,Unprovoked,Usa,Florida,"3 miles east of Jacksonville Beach, Duval County",Spearfishing,James Plumer,M,Shoulder bitten,N,Miami Herald,5/30/1994; Tampa Tribune; Bradenton Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.28-Plumer.pdf +3783,1994.05.24,24-May-94,1994,Unprovoked,Usa,Florida,"Spessard Holland Park, Melbourne Beach, Brevard County",Wading,female,F,Lower left calf & ankle lacerated,N,Tampa Tribune,5/26/1994; Bradenton Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.24-female.pdf +3782,1994.05.23,23-May-94,1994,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Jim Sellmer,M,Gash on ankle,N,Orlando Sentinel,5/24/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.23-Sellmer.pdf +3781,1994.05.15,15-May-94,1994,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Joel Tatro,M,Right knee lacerated,N,Orlando Sentinel,5/16/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.15-Tatro.pdf +3780,1994.04.16,16-Apr-1994,1994,Invalid,Usa,California,"Sunset Cliffs, San Diego, San Diego County",Unknown,Michele Von Emster,F,Not a shark attack; possibly murder. Body recovered 4-16-1994 minus severed leg,Y,R. Collier; McCormick,p.147,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.16-Emster.pdf +3779,1994.04.15,15-Apr-94,1994,Unprovoked,Reunion,Saint-Joseph,Lieu-dit Cayenne,Unknown,Unknown,Unknown,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.15-Reunion.pdf +3778,1994.04.06,06-Apr-94,1994,Unprovoked,Bahamas,Unknown,Rum Cay,Wading,Scott Curatolo-Wagemann,M,Lower right leg bitten,N,S. Curatolo-Wagemann; SharkSurvivors.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.06-Wagemann.pdf +3777,1994.04.03,03-Apr-94,1994,Unprovoked,Usa,Florida,"Miami Beach, Dade County",Freediving for seashells,Raul Tozo,M,Left shoulder lacerated,N,Miami Herald,4/5/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.03-Tozo.pdf +3776,1994.04.02,02-Apr-94,1994,Unprovoked,South africa,Western Cape Province,Arniston,Spearfishing,Charles De Wet Reis,M,FATAL ,Y,L Compagno,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.02-dwRies.pdf +3775,1994.03.23.b,23-Mar-94,1994,Unprovoked,Chile,Unknown,300 miles east of Easter Island,Swimming alongside NOAA research vessel Discoverer,Heather Boswell,F,Leg severed mid-thigh,N,H. Boswell,M. Levine & E. Ritter,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.b-Boswell.pdf +3774,1994.03.23.a,23-Mar-94,1994,Unprovoked,Chile,Unknown,300 miles East of Easter Island,Swimming alongside NOAA research vessel Discoverer,Phil Buffington,M,Thigh bitten,N,H. Boswell,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.a-Buffington.pdf +3773,1994.03.07,07-Mar-94,1994,Provoked,Usa,California,Unknown,Removing shark from tank in nightclub ,Steve Rosebloome,M,Arm lacerated by captive shark PROVOKED INCIDENT,N,A. MacCormick,p.227,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.07-Rosenbloome.pdf +3772,1994.03.01,01-Mar-94,1994,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Surfing,Albano Gomes Dias Filho,M,Leg bitten,N,O. Gadig,BRASAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.01-Albano.pdf +3771,1994.02.27,27-Feb-94,1994,Unprovoked,South africa,Western Cape Province,Saxon Reef,Spearfishing,Gary Lieberman,M,Swim fin bitten,N,G. Lieberman,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.27-Lieberman.pdf +3770,1994.02.19,19-Feb-94,1994,Unprovoked,Usa,Florida,"Juno Beach, Palm Beach County",Surfing,Edwin Riley III,M,Left foot bitten,N,Palm Beach Post,2/20/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.19-Riley.pdf +3769,1994.02.13,13-Feb-94,1994,Provoked,Usa,Hawaii,Kailua Bay,Fishing,J. Magbanua,M,Arm bitten while trying to secure shark caught by navy personnel from vessel PROVOKED INCIDENT,N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.13-Magbanua.pdf +3768,1994.02.12,12-Feb-94,1994,Unprovoked,South africa,Eastern Cape Province,Beachview Holiday Resort,Surfing,Kevin Anderson,M,Leg bitten ,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.12-Anderson.pdf +3767,1994.02.00,Feb-94,1994,Unprovoked,New caledonia,South Province,Cap Goulvain,Fishing,Laurent Manuireva,Unknown,"FATAL, right foot severed",Y,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.00-Manuireva.pdf +3766,1994.01.31.b,31-Jan-94,1994,Unprovoked,Brazil,Pernambuco,Piedade,Swimming,Sérgio Adriano Gomes Silva,M,Right leg bitten,N,M. Szpilman,p.139,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.b-SG.pdf +3765,1994.01.31.a,31-Jan-94,1994,Unprovoked,Usa,Hawaii,"Velzyland, north shore of O'ahu",Surfing,Jim Broach,M,FATAL,Y,G. Balazs; Allen,p.109,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.a-Broach.pdf +3764,1994.01.30,30-Jan-94,1994,Unprovoked,South africa,Eastern Cape Province,"Nahoon Beach, East London",Windsurfing,Andy Austin,M,Calf bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.30-Austin.pdf +3763,1994.01.12.R,12-Jan-1994,1994,Boat,Australia,Western Australia,Albany,Fishing,"5 m aluminum boat, occupants: Ben Turnbull, Lia & Neville Parker",Unknown,"No injury to occupants, shark bit anchor and ladder",N,Advertiser,1/12/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.12.R-Turnbull.pdf +3762,1994.01.09,09-Jan-94,1994,Unprovoked,Australia,Queensland,"Katana Downs Reach, Brisbane River","Swimming, after falling off towed kneeboard",Gary Cochrane,M,Hamstring bitten,N,Advertiser,"1/12/1994,p.18",http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.09-Cochrane.pdf +3761,1994.01.03,03-Jan-94,1994,Unprovoked,South africa,KwaZulu-Natal,Hibberdene,Swimming ,Ian Galbraith,M,Foot bitten,N,G. Cliff,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.03-Galbraith.pdf +3760,1994.00.00.b,Last incident of 1994 in Hong Kong,1994,Unprovoked,Unknown,Unknown,Unknown,Playing volleyball with friends,female,F,Both legs lacerated,N,J. Wong,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.b-NV-HongKong.pdf +3759,1994.00.00.a,1994,1994,Unprovoked,Usa,Florida,"Flagler Beach, Flagler County",Surfing,Jeff Weakley,M,Foot bitten,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.a--JeffWeakley.pdf +3758,1993.12.00,Dec-93,1993,Unprovoked,Usa,Hawaii,Waipo,Surfing,Daniel McMoyler,M,FATAL,Y,Allen,pp.109-110,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.12.00-McMoyler.pdf +3757,1993.11.28,28-Nov-93,1993,Unprovoked,Usa,Florida,"North Beach Jetty, St Lucie County",Swimming,Scott Johnson,M,"""Minor cuts to left leg""",N,Fort Pierce Tribune,11/30/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.28-Johnson.pdf +3756,1993.11.21,21-Nov-93,1993,Unprovoked,Australia,Western Australia, A pearl farm in Roebuck Bay,Hookah diving,Richard Peter Bisley,M,FATAL,Y,H. Edwards,pp.135-137,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.21-Bisley.pdf +3755,1993.11.12,12-Nov-93,1993,Unprovoked,Usa,Hawaii,"Horners, Wailua, Kaua'i","Surfing, paddling shorewards",David Silva,M,Left leg severely bitten,N,Nova transcript; Hawaii Department of Land and Natural Resources ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.12-Silva.pdf +3754,1993.11.00,Nov-93,1993,Unprovoked,Somalia,Banaadir Region,Mogadishu,Stamding,Russian male,M,FATAL,Y,A. MacCormick,pp.3-4; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.00-RussianMale.pdf +3753,1993.10.30,30-Oct-93,1993,Unprovoked,Usa,California,"""Bunkers"" Eureka, Humboldt County",Surfing,Robert Williams,M,Serious injury to left leg,N,R. Collier,pp.144-145,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.30-Williams_Collier.pdf +3752,1993.10.26,26-Oct-93,1993,Unprovoked,Usa,Florida,"Treasure Shores Beach, Indian River County",Swimming,Dawn Schaumann (6.5 months pregnant),F,Thigh & hand lacerated,N,W. Schaumann; Orlando Sentinel,10/27/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.26-Schauman.pdf +3751,1993.10.10,10-Oct-93,1993,Boat,Usa,California,"Goat Rock, Bodega Bay, Sonoma County?",Kayaking,Rosemary Johnson,F,"No Injury, Kayak holed",N,R. R. Collier,pp.143-144; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.10-Johnson_Collier.pdf +3750,1993.10.00,Oct-93,1993,Unprovoked,Usa,Hawaii,"Mouth of Wallua River, Kaua'i",Surfing,Unknown,Unknown,Serious leg wounds,N,A. MacCormick,p.197,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.00-WalluaRiver.pdf +3749,1993.09.30,30-Sep-93,1993,Unprovoked,Somalia,Banaadir Region,Mogadishu,Swimming,Edward J. Nicholson,M,FATAL,Y, Houston Chronicle,10/9/1993; Times of London,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.30-Nicholson.pdf +3748,1993.09.26,26-Sep-93,1993,Unprovoked,South africa,Western Cape Province,Danger Point,Spearfishing,Wimpie Bouwer,M,Calf lacerated,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.26-Bouwer.pdf +3747,1993.09.16.b,16-Sep-93,1993,Unprovoked,El salvador,La Libertad,near El Cocal Beach,Surfing,Jose Diter Roque ,Unknown,Left leg gashed,N,Tampa Tribune,9/18/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.b-Roque.pdf +3746,1993.09.16.a,16-Sep-93,1993,Unprovoked,El salvador,La Libertad,El Cocal Beach,Surfing,Mauricio Guzman Castaneda,M,"FATAL, arms & legs bitten, then drowned ",Y,Tampa Tribune,9/18/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.a-Castaneda.pdf +3745,1993.09.14,14-Sep-93,1993,Unprovoked,Usa,Florida,"Huguenot Memorial Park, Duval County",Wading,Arthur Quick,M,Left foot bitten,N,Orlando Sentinel,9/17/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.14-Quick.pdf +3744,1993.09.09,09-Sep-93,1993,Unprovoked,Usa,Florida,"Little Talbot Island, Jacksonville, Duval County",Unknown,Jerry McInarnay,M,Left foot bitten,N,Orlando Sentinel,9/17/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.09-McInarnay.pdf +3743,1993.09.03,03-Sep-93,1993,Unprovoked,Spain,Costa Blanca,"Playa de las Arenas, Valencia ",Swimming,Jorge Durich Heredia (or Hernandez),M,"Thigh bitten, toes of left foot severed",N,Orlando Sentinel,9/5/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.03-Heredia.pdf +3742,1993.08.21,21-Aug-93,1993,Unprovoked,Bahamas,Walkers Cay,"Matinella Reef, 15 to 20 miles west of Walkers Cay",Spearfishing,William Barnes,M,Leg bitten,N,South Florida Sun Sentinel,8/22/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.21-Barnes.pdf +3741,1993.08.19.R, 19-Aug-1993,1993,Unprovoked,Usa,Florida,"Bethune Beach, Volusia County",Surfing,Shawn Bushong ,Unknown,Right foot bitten,N,Deseret News,8/19/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.R-Bushong.pdf +3740,1993.08.19, 19-Aug-1993,1993,Unprovoked,Usa,Hawaii,"Paukukalo, Maui","Surfing, paddling seawards",Reggie Williams,M,Abrasions & board bitten,N,G. Balazs; T. Allen,p.117; Hawaii Department of Land and Natural Resources,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.a-Williams.pdf +3739,1993.08.15.b,15-Aug-93,1993,Boat,Usa,California,Between Santa Cruz Island and Santa Barbara,Watching the shark feeding on a dead pinniped,21 m sportfishing vessel Seabiscuit. Occupants: Captain Louie Abbott & 2 dozen anglers,Unknown,No injury to occupants; shark circled boat repeatedly then rammed the vessel 3 times,N,R. Collier,p.174,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.b-Seabiscuit-Collier.pdf +3738,1993.08.15.a,15-Aug-93,1993,Unprovoked,Usa,North Carolina,Pamlico Sound,Riding floatation device,Petra Rijoes,F,Severe lacerations to abdomen & thighs,N,Charlotte Observer,8/19/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.a-Rijoes.pdf +3737,1993.08.14,14-Aug-93,1993,Boat,Australia,Western Australia,Off Rottnest Island,Fishing,5.4 m boat ,Unknown,"No injury to occupants. Shark struck boat, lifting the outboard motor",N,A. Sharpe,p.134,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.14-Rottnest-boat.pdf +3736,1993.08.12,12-Aug-93,1993,Unprovoked,Usa,California,"Abalone Point, Westport Union Landing, Mendocino County",Free diving for abalone (ascending),David R. Miles,M,Severe bites to head & shoulder,N,R. Collier,pp.140-142; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.12-Miles_Collier.pdf +3735,1993.08.00.b,Aug-93,1993,Unprovoked,New caledonia,South Province,Ile Moro,Fishing for lobsters,Thierry Kouathe,M,FATAL,Y,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.b-Kouathe.pdf +3734,1993.08.00.a,Aug-93,1993,Boat,El salvador,La Libertad,La Libertad,Oyster fishing,"boat, occupants: 2 men",Unknown,FATAL x 2,Y,Tampa Tribune,9/18/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.a-El-Salvador.pdf +3733,1993.07.30,30-Jul-93,1993,Unprovoked,South africa,Eastern Cape Province,"Pollock Beach, Port Elizabeth",Surfing,Ralph LeRoux,M,Puncture wounds on chest,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.30-LeRoux.pdf +3732,1993.07.07,07-Jul-93,1993,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Playing,Melissa Rodrigues,F,Right knee bitten,N,G. Taylor,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.07-Rodrigues.pdf +3731,1993.06.30,30-Jun-93,1993,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Swimming,Robson Antonio R. Santos,M,FATAL,Y,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.30-BoaViagem.pdf +3730,1993.06.29,29-Jun-93,1993,Unprovoked,Reunion,Saint-Paul,Cap de la Marianne,Body boarding,Theirry Mercredi,M,Note: see 1992.06.28,N,Quotidien,4/12/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.29-Mercredi.pdf +3729,1993.06.11.b,11-Jun-93,1993,Unprovoked,Hong kong,New Territories,Silverstrand,Swimming,Kwong Kong-hing ,M,FATAL,Y,J. Wong,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.b-Kwong Kong-hing.pdf +3728,1993.06.11.a,11-Jun-93,1993,Unprovoked,Mexico,Quintana Roo,"Santa Rosa Shallows, Cozumel",Scuba diving,Mary Eggemeyer,F,FATAL,Y,Dallas Morning News,6//15/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.a-Eggemeyer.pdf +3727,1993.06.10,10-Jun-93,1993,Unprovoked,Usa,Hawaii,"Goats Island (Moku’auia Island), Malaekahana State Recreation Area, Laie, O'ahu",Paddling on surfboard or body board,Jonathan Mozo,M,Feet & ankles bitten,N,G. Ambrose,pp.61-68; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.10-Mozo.pdf +3726,1993.06.09,09-Jun-93,1993,Unprovoked,Australia,New South Wales,"Julian Rocks, Byron Bay",Scuba diving,John Ford,M,FATAL,Y,A. MacCormick,p.56; H. Edwards,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.09-JohnFord.pdf +3725,1993.06.05,05-Jun-93,1993,Unprovoked,Australia,Tasmania,Tenth Island (King Island),Scuba diving at seal colony,Teresa Cartwright,F,FATAL,Y,Telegraph Mirror (Sydney),June 7,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.05-Cartwright.pdf +3724,1993.06.01,01-Jun-93,1993,Unprovoked,Hong kong,New Territories,Sheung Sz Wan,Swimming,Yan Sai-wah,M,FATAL,Y,J. Wong; A. MacCormick,p.235; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.01-HongKong.pdf +3723,1993.06.00,Jun-93,1993,Unprovoked,Usa,North Carolina,"Hamstead, Pender County",Swimming,Suzanne Pferrer,F,"No injury, bumped by shark",N,C. Creswell,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.00-Pferrer.pdf +3722,1993.05.00.b,Late May 1993,1993,Unprovoked,Hong kong,"On the Kowloon penisula, south of Sai Kung",Silverstrand,Unknown,female,F,"Missing, believed taken by a shark",Y,J. Wong; A. Sharpe,p.34,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.b-Kowloon.pdf +3721,1993.05.00.a,May-93,1993,Unprovoked,Somalia,Banaadir Region,"Arroyo Beach, Mogadishu",Swimming,French female,F,FATAL,Y,A. MacCormick,pp.3-4; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.a-Frenchfemale.pdf +3720,1993.04.00,Apr-93,1993,Invalid,Australia,Tasmania,Barren Joey Island,Spearfishing,Tony Szolomiak,M,No inujury ,N,C. Black & T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.04.00-Szolomiak.pdf +3719,1993.03.27,27-Mar-93,1993,Unprovoked,Brazil,Pernambuco,Paiva,Surfing,José Ricardo C. Gouveia,M,Survived,N,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.27-JoseRicardoGouveia.pdf +3718,1993.03.22,22-Mar-93,1993,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Floating on his back,Ken Dannewitz,M,Both feet lacerated,N,Orlando Sentinel,3/25/1993. p. B5,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.22-Dannewitz.pdf +3717,1993.03.17,17-Mar-93,1993,Unprovoked,Japan,Ehime Prefecture,Iyo,Unknown,Yuji Yamamoto,Unknown,Survived,N,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.17-Yamamoto.pdf +3716,1993.03.14,14-Mar-93,1993,Unprovoked,Usa,Hawaii,"Paradise Bay (next to Wailua Bay), Maui",Paddling on surfboard,Roddy Lewis,M,Lower legs lacerated ,N,J. Borg,p.83; G. Ambrose,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.14-Lewis.pdf +3715,1993.03.12,12-Mar-93,1993,Unprovoked,Usa,California,"Linda Mar Beach, Pedro Point, San Mateo County",Free diving & spearfishing (ascending),Don Berry,M,"No injury, swim fin bitten",N,R. Collier,p.140,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.12-Berry_Collier.pdf +3714,1993.03.00,Mar-93,1993,Unprovoked,New caledonia,South Province,Île de Casey,Swimming,Frederic Dolbeau,Unknown,Hip bitten,N,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.00-Dolbeau.pdf +3713,1993.02.19,19-Feb-93,1993,Sea Disaster,Tonga,Tongapatu Group,Between 'Ata and Tongapatu,Sea disaster,Haumole Faing'a ,M,Puncture wounds to right thigh,N,Tongan Chronicle,2/26/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.19-Fainga.pdf +3712,1993.02.18,18-Feb-93,1993,Sea Disaster,Tonga,Tongapatu Group,Between 'Ata and Tongapatu,Sea disaster,Siale Sime,M,Foot bitten,N,Tongan Chronicle,2/26/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.18-SialeSime.pdf +3711,1993.02.04,04-Feb-93,1993,Provoked,Australia,Queensland,Mooloolaba,Fishing,John Bonell,M,"Legs lacerated, puncture wound in hand from hooked shark hauled onboard PROVOKED INCIDENT",N,Courier-Mail,2/5/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.04-Bonnell.pdf +3710,1993.01.23,23-Jan-93,1993,Unprovoked,Brazil,Pernambuco,Piedade,Body boarding,Charles Roberto Soares Veras,M,Left leg bitten,N,D. Duarte,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.23-Veras.pdf +3709,1993.01.05,05-Jan-93,1993,Unprovoked,Australia,Queensland,"Line Reef, northeast of Hamilton Island, Whitsundays",Spearfishing,Daniel Lance McNally,M,"6"" laceration to left forearm",N,Courier-Mail,1/6/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.05-McNally.pdf +3708,1993.01.04,04-Jan-93,1993,Boat,Caribbean sea,Unknown,Off Dominican Republic, ,"canoe, occupants: Chris Newman & Stewart Newman",M,"No injury to occupants. Sharks, attracted to offal from slaughtered dolphin, attacked & damaged their canoe",N,A. MacCormick,p.100,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.04-DominicanRepublic.pdf +3707,1993.01.02,02-Jan-93,1993,Unprovoked,Usa,Oregon,"Bastendorf Beach, Coos County",Surfing,William Weaver,M,"No injury, shark bit board",N,R. Collier,pp.138-139; Mark Marks,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.02-Weaver_Collier.pdf +3706,1993.00.00.d,Fall 1993,1993,Unprovoked,Angola,West Africa,Unknown,Surfing,John Doyle,M,Right Leg bitten,N,Internet report,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.d-Doyle.pdf +3705,1993.00.00.c,Between May & Nov-1993,1993,Unprovoked,Somalia,Banaadir Region,Mogadishu,Unknown,several Somali children,Unknown,FATAL,Y,Orlando Sentinel,112/1/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.c - Somali children.pdf +3704,1993.00.00.b,1993,1993,Unprovoked,Tonga,Vava’u,Between Ofu & Fafini Islands,Spearfishing,A diver from Spain,Unknown,Left buttock and thigh bitten,N,Drs. S. Fonea & A. Carafa,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.b-Tonga.pdf +3703,1993.00.00.a,1993,1993,Unprovoked,Usa,Florida,"Key West, Monroe County",Snorkeling,Unknown,Unknown,Survived,N,press report,,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.a-NV-KeyWest.pdf +3702,1992.12.28,28-Dec-92,1992,Unprovoked,Usa,Hawaii,"Honomuni, Moloka'i","Standing in waist-deep water, helping his father tend a gill net containing dead fish",Pahu Tanaka,M,Right leg bruised & abraded,N,J. Borg,p.82,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.28-Tanaka.pdf +3701,1992.12.23,23-Dec-92,1992,Unprovoked,Usa,Hawaii,"Chun's Reef, Laniakea, O'ahu",Lying on surfboard,Gary M. Chun,M,"Minor lacerations to hand, 15"" crescent-shaped piece removed from surfboard",N,L. Taylor (1993),pp.114-115; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.23-Chun.pdf +3700,1992.11.29,29-Nov-92,1992,Unprovoked,Usa,California,"San Onofre, San Diego County ",Spearfishing / free diving,John Regan,M,10 puncture wounds to right calf,N,R. Collier,p.xxvi; H. Viders,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.29-Regan.pdf +3699,1992.11.25.a,25-Nov-92,1992,Unprovoked,Usa,Florida,"Brevard County, a mile north of Sebastian Inlet",Surfing,Matthew Robertson Paul,M,Forearm & hand bitten; tooth fragments of the shark were recovered from the surfer's hand,N,M. R. Paul; Orlando Sentinel,11/28/1992; Fort Pierce Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.25-Paul.pdf +3698,1992.11.23,23-Nov-92,1992,Unprovoked,Usa,Florida,Unknown,Surfing,Larry Bush,M,Right ankle bitten,N,Fort Pierce Tribune,11/24/1992 & 11/30/1992; Palm Beach Post,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.23-LarryBush.pdf +3697,1992.11.14,14-Nov-92,1992,Boat,Usa,California,"Ano Nuevo, San Mateo County",Kayaking,Ken Kelton,M,"No injury, kayak bitten",N,R. Collier,p.137,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.14-Kelton_Collier.pdf +3696,1992.11.12.R,12-Nov-1992,1992,Unprovoked,Fiji,Wakaya Island,Unknown,Scuba diving,Chad Smith,M,Left arm lacerated,N,Herald Sun,11/12/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.12.R-Smith.pdf +3695,1992.11.11,11-Nov-92,1992,Unprovoked,Usa,California,"San Nicholas Island, Santa Barbara County",Scuba diving (submerged),Kenny Crane,M,Foot punctured,N,R. Collier,pp.136-137,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.11-Crane_Collier.pdf +3694,1992.11.05.b,06-Nov-92,1992,Unprovoked,Usa,Florida,"North Jetty Park, Fort Pierce, St Lucie County",Surfing,Josh Greinstein ,M,Heel bitten,N,P.Owers,Fort Pierce Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.b-Greinstein.pdf +3693,1992.11.05.a,05-Nov-92,1992,Unprovoked,Usa,Hawaii,"Kea'au Beach Park, O'ahu",Body boarding,Aaron A. Romento,M,Right leg severely lacerated FATAL,Y,Dr. P. Bjokman; Palm Beach Post,11/7/1992 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.a-Romento.pdf +3692,1992.10.29,29-Oct-92,1992,Unprovoked,Usa,California,"Castle Rock, San Miguel Island, Santa Barbara County",Hookah diving for sea urchins,Andy Schupe,M,Foot & swim fin punctured,N,R. Collier,pp.135-136 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.29-Schupe_Collier.pdf +3691,1992.10.22,22-Oct-92,1992,Unprovoked,Usa,Hawaii,"Lanaikea, O'ahu",Surfing,Rick (Eric) Gruzinsky,M,"Chest & arm bruised & scratched, 15"" crescent-shaped piece removed from board",N,Orlando Sentinel,10/24/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.22-Gruzinsky.pdf +3690,1992.10.15,15-Oct-92,1992,Unprovoked,Australia,New South Wales,Avalon Beach,Scuba diving,Dave Gannicott,M,Minor injury while delivering pup of female shark caught in a net,N,Orlando Sentinel,10/15/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.15-Gannicott.pdf +3689,1992.10.11,11-Oct-92,1992,Unprovoked,Brazil,Maranhão,"Praia de São Marcus, Sáo Luiz",Boogie boarding,M.C.,Unknown,Legs bitten,N,M. Szpilman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.11-MC.pdf +3688,1992.10.01,01-Oct-92,1992,Unprovoked,Australia,Queensland,"North Point Beach, Moreton Island",Surfing,Michael Docherty,M,FATAL,Y,Daily Telegraph (Sydney) 10/2/1992 ; Orlando Sentinel,10/2/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.01-Docherty.pdf +3687,1992.09.18,18-Sep-92,1992,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Body boarding,Eduardo Rodrigues da Cruz,M,Left leg severely bitten,N,D. Duarte;,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.18-Cruz.pdf +3686,1992.09.13,13-Sep-92,1992,Unprovoked,Usa,Oregon,"Gold Beach, Curry County",Surfing,Jerad Brittain,M,Minor bruises,N,R. Collier,pp.134-135 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.13-Brittain_Collier.pdf +3685,1992.09.11,11-Sep-92,1992,Unprovoked,Usa,Florida,"South Jetty, New Smyrna Beach, Volusia County",Standing,Tracie Langbein,F,Right ankle & calf bitten,N,Orlando Sentinel,5/20/1993,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.11-Langbein.pdf +3684,1992.09.10,10-Sep-92,1992,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Swimming,Enoque Pereira dos Santos,M,FATAL,Y,D. Duarte,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.10-BoaViagem.pdf +3683,1992.09.00,Sep-92,1992,Unprovoked,Usa,Florida,St Lucie County,Surf fishing,male,M,"Foot bitten, 8 stitches needed to repair the wound",N,Fort Pierce Tribune,11/24/1992 & 11/30/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.00-surf-fisherman.pdf +3682,1992.08.29,29-Aug-92,1992,Unprovoked,Bahamas,Abaco Islands,Double Breasted Cays ,"Snorkeling, carrying a speared fish in her hand",Valerie Fortunato ,F,Left hand bitten,N,C. Dummitt,Palm Beach Post. 9/3/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.29-Fortunato.pdf +3681,1992.08.25,25-Aug-92,1992,Unprovoked,Australia,South Australia,"Lipson Cove, Tumby Bay",Surfing,Jason Bates,M,"Minor cuts, sufboard bitten",N,Advertiser,8/28/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.25-Bates.pdf +3680,1992.08.21,21-Aug-92,1992,Invalid,Usa,Hawaii,"Twin Arches, Hana Ranch, Maui",Fell from cliff while fishing & disappeared in strong current,Chester N. Shishido,M,Body recovered next morning. Injuries appeared to be inflicted post mortem,Y,J. Borg,p.82; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.21-Shishido.pdf +3679,1992.08.18,18-Aug-92,1992,Unprovoked,Usa,California,"Klamath River, Del Norte County",Surfing,Keith Caruso,M,"No injury, board bitten",N,R. Collier,pp.132-133,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.18-Caruso_Collier.pdf +3678,1992.08.17,17-Aug-92,1992,Provoked,Usa,Florida,"Manalapan, Palm Beach County",Snorkeling,Rod Duguid,M,"Grabbed metal leader to shark, shark clamped on & bit left bicep PROVOKED INCIDENT",N,J.A. Plunkett,Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.17-Duguid.pdf +3677,1992.08.00,Aug-92,1992,Invalid,Usa,Florida,St. Lucie County,Fisherman,male,M,No details,UNKNOWN,Fort Pierce Tribune,11/30/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.00-NV-StLucieFisherman.pdf +3676,1992.07.23,23-Jul-92,1992,Invalid,Usa,Hawaii,"Wai'anae, O'ahu","Zosimo & his son, Jeffrey Popa, failed to return from overnight fishing trip in a 14' boat, Boat apparently sank, debris recovered but his son & boat were never found",Zosimo Popa,M,"Death due to drowning. His body, tied to floating ice chest, had 2 small post-mortem bites ",Y,J. Borg,p.81; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.23-Popa.pdf +3675,1992.07.21,21-Jul-92,1992,Unprovoked,Usa,Florida,"Manasota Beach, Sarasota County",Standing,Ann Suits,F,Lacerations to left foot,N,Sarasota Herald-Tribune,7/23/1992 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.21-Suits.pdf +3674,1992.07.08.b,08-Jul-92,1992,Unprovoked,Brazil,Maranhão,"Praia da Marcela, São Marcos Bay",Surfing,L.G,M,Arm bitten,N,M. Szpilman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.b-LG.pdf +3673,1992.07.08.a,08-Jul-92,1992,Unprovoked,Brazil,Maranhão,"Praia da Marcela, São Marcos Bay",Surfing,M.C.,M,"Lower leg bitten, surgically amputated",N,M. Szpilman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.a-MS.pdf +3672,1992.06.28.b,28-Jun-92,1992,Unprovoked,Brazil,Pernambuco,Piedade,Swimming,Ubiratan Martins Gomes,M,FATAL,Y,D .Duarte,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.b-Piedade-Brazil.pdf +3671,1992.06.28.a,28-Jun-92,1992,Unprovoked,Reunion,Saint-Paul,Cap de la Marianne,Surfing,Theirry Mercredi,M,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.a-Mercredi.pdf +3670,1992.06.19,19-Jun-92,1992,Unprovoked,Vanuatu,Malampa Province,"Port Sandwich, Malakula",Swimming,Andrea Rush,F,Right leg was bitten above and below the knee and an artery was punctured,N,A. Rush; R. D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.19-AndreaRush.pdf +3669,1992.06.17,17-Jun-92,1992,Boat,Japan,Ehime Prefecture,"1.5 km north of Igata-cho, 60 km south of Matsyama",Preparing to fish for jack-mackerel,"5.75 m wooden boat, occupant: Yoshaiaki Ueda",Unknown,"No inujury to occupant. Shark bit boat repeatedly, leaving 2 teeth in the bottom keel of the boat",N,K. Nakaya; Orlando Sentinel,6/18/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.17-Ueda.pdf +3668,1992.06.00,Jun-92,1992,Unprovoked,Reunion,Saint-Paul,Unknown,Diving,Unknown,Unknown,Survived,N,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.00-ReunionDiver.pdf +3667,1992.05.31,31-May-92,1992,Invalid,Usa,North Carolina ,Wreck of the U-352 ,Scuba diving ,Mike Weathers,M,Disappeared. His ripped dive jacket was recovered,Y,Charlotte Observer,6/24/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.31-Weathers.pdf +3666,1992.05.22,22-May-92,1992,Unprovoked,Reunion,Saint-Joseph,Lieu-dit Cayenne,Surfing,Emmanuel Nativel,M,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.22-Nativel.pdf +3665,1992.05.00,May-92,1992,Unprovoked,Mexico,Mexico / Caribbean Sea,Isla Mujeres,Scuba diving & filming,Nick Caloyianis,M,"Fingers, hand & arm bitten",N,T. Allen,p.238,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.00-Caloyianis.pdf +3664,1992.04.24,24-Apr-92,1992,Unprovoked,New zealand,Antarctic Ocean,"Meteorologic Station on Campbell Island, 370 nautical miles south of New Zealand",Snorkeling,Mike Fraser,M,"Right forearm severed, left forearm lacerated & broken",N,M. Fraser; R. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.24-Fraser.pdf +3663,1992.04.09,09-Apr-92,1992,Unprovoked,South africa,Eastern Cape Province,Nahoon,Surfing,Gordon Harmer,M,Punctures & lacerations on lower leg,N,G. Harmer; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.09-Harmer.pdf +3662,1992.03.28,28-Mar-92,1992,Unprovoked,Usa,Hawaii,"Cannons, at Ha'ena on the north shore of Kaua'i Island","Surfing, paddling seawards",Jude Chamberlin,F,"Foot bitten, crescent of bitemarks in both sides of board",N,G. Ambrose,pp.18-23; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.28-Chamberlin.pdf +3661,1992.03.10,10-Mar-92,1992,Unprovoked,Australia,Victoria,Point Lonsdale,Surfing,Mark Jepson,M,"Right thigh, back & hand lacerated",N,Herald Sun,1/7/1993; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.10-Jepson.pdf +3660,1992.03.08.c,08-Mar-92,1992,Unprovoked,Japan,Ehime Prefecture,Matsuyama,Hookah diving for pen shells ,Kazuta Harada,M,"FATAL, body not recovered",Y,K. Nakaya; Orlando Sentinel,3/20/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.c-Harada.pdf +3659,1992.03.08.b,08-Mar-92,1992,Boat,Japan,Ehime Prefecture,"Nagahama-cho, 40 km southwest of Matsuyama ","Fishing for yellowtail, Seriola quinqueradiata",wooden boat of Yoshihiro Takasaki,Unknown,No injury to boat or occupant,N,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.b-Takasaki.pdf +3658,1992.03.08.a,08-Mar-92,1992,Unprovoked,Usa,Oregon,"Winchester Bay, Douglas County",Surfing (sitting on his board),Mike Allman,M,"Left shoulder & side bitten, board broken",N,R. Collier,pp.130-132; M. Marks,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.a-Allman-Collier.pdf +3657,1992.02.19,19-Feb-92,1992,Unprovoked,Usa,Hawaii,"Leftovers, near Waimea Bay, O'ahu",Body boarding,Brian Adona,M,FATAL Disappeared. His board washed ashore next morning with crescent-shaped piece missing and serrated toothmarks of a shark,Y,J. Borg,pp.80-81; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.19 - Adona.pdf +3656,1992.02.14,14-Feb-92,1992,Unprovoked,Japan,Ehime Prefecture,Matsuyama,Diving for pen shells,Koji Harada,M,"No injury, steel diving helmet bitten 3 times",N,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.14-Koji-Harada.pdf +3655,1992.02.09,09-Feb-92,1992,Invalid,Australia,Tasmania,"Clifton Beach, southwest of Hobart",Surfing,Wayne Fitzpatrick,M,"No injury, shark allegedly took his surfboard & slashed his wetsuit. Shark involvement questionable",N,C. Black,GSAF; Advertiser,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.09-Fitzpatrick.pdf +3654,1992.01.29.b,29-Jan-92,1992,Unprovoked,Reunion,La Saline-les-Bains,Revine-3-Bassins,Spearfishing,Richard Carnoy,M,Survived,N,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.b-Carnoy.pdf +3653,1992.01.29.a,29-Jan-92,1992,Unprovoked,Australia,New South Wales,Tweed Heads,Boogie boarding,John Bayliss (or Ballis),M,Right leg lacerated,N,Advertiser,1/30/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.a-Bayliss.pdf +3652,1992.01.23,23-Jan-92,1992,Unprovoked,South africa,KwaZulu-Natal,Isipingo,Swimming ,Noor-Mubeen Shaik,M,Right foot lacerated,N,G. Cliff,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.23-Shaik.pdf +3651,1992.01.08,08-Jan-92,1992,Unprovoked,South africa,KwaZulu-Natal,Sheffield Beach,Spearfishing,Daniel Van Huysteen,M,Left cheek lacerated,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.08-vanHuysteen.pdf +3650,1992.01.06,06-Jan-92,1992,Unprovoked,Mauritius,Unknown,Mahebourg,Fishing,male,M,Survived,N,D. deSpeville,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.06-Mauritius.pdf +3649,1992.01.03,03-Jan-92,1992,Unprovoked,Japan,Ehime Prefecture,Matsuyama,Unknown,male,M,Survived,N,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.03-Japan.pdf +3648,1992.01.00,Jan-92,1992,Invalid,Japan,Sea of Japan,Kanazawa?,Unknown,Mikado Nakamura,Unknown,Survived. questionable incident,N,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.00-Nakamura.pdf +3647,1992.00.00,1992,1992,Unprovoked,Fiji,Tavenui,Unknown,Unknown,Stephen Davies,M,FATAL,Y,A.Bull,www.stuff.com.nz,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.00.00-NV-Davies.pdf +3646,1991.12.04,04-Dec-91,1991,Unprovoked,Usa,California,"Shelter Cover, north of Fort Bragg, Shelter Cove, Mendocino County",Hookah diving for sea urchins,David Abernathy,M,"No injury, shark became tangled in hose & towed him 100'",N,R. Collier,pp.129-130; Mark Marks; S. Waterman ,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.12.04-Abernathy_Collier.pdf +3645,1991.11.26.b,26-Nov-91,1991,Unprovoked,Usa,Hawaii,"Olowalu, Maui",Snorkeling,Martha Joy Morrell,F,"FATAL, right leg at hip, left leg and right forearm severed ",Y,J. Borg,pp.1-3; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.b-Morrell.pdf +3644,1991.11.26.a,26-Nov-91,1991,Unprovoked,Usa,Hawaii,"Olowalu, Maui",Snorkeling,Louise Sourisseau,F,Right calf abraded,N,J. Borg,p.80; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.a-Sourisseau.pdf +3643,1991.11.19,19-Nov-91,1991,Unprovoked,Usa,Hawaii,"Maliko Point, Maui","Fishing from rocks, swept out to sea by large wave & treading water",Suk Kyu (Steve) Park,M,"Body not recovered, shorts found indicating shark bite on left side",Y,J. Borg,pp.79-80; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.19-Park.pdf +3642,1991.11.14,14-Nov-91,1991,Provoked,Usa,Florida,Near Port Canaveral Coast Guard Base,Fishing,John Saenza,M,Hand bitten as he was cleaning hooked shark PROVOKED INCIDENT,N,D.E. Owens,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.14-Saenza.pdf +3641,1991.11.00,Nov-91,1991,Unprovoked,Australia,Western Australia,"Backbeach, Halls Head",Boogie boarding,Chad Wittorff,M,Calf scratched & chunk bitten from board,N,A. Sharpe,pp.135-136,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.00-Wittorff.pdf +3640,1991.10.12,12-Oct-91,1991,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,Cliff Turner,M,Right foot & ankle lacerated,N,Orlando Sentinel,10/13/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.12-CliffTurner.pdf +3639,1991.10.05,05-Oct-91,1991,Unprovoked,Usa,California,"Horseshoe Reef, Scott Creek, Davenport, Santa Cruz County",Surfing,John Ferrerira,M,"Arm, shoulder & back bitten",N,R. Collier,pp.126-128 ; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.05-Ferreira_Collier.pdf +3638,1991.09.19,19-Sep-91,1991,Invalid,Bahamas,Unknown,Bimini,Spearfishing,Omar Karim Huneidi,M,"Initally reported as a shark attack, forensic examination concluded cause of death was drowning",Y,E. Pace,FSAF; Sun Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.19-Huneidi.pdf +3637,1991.09.08,08-Sep-91,1991,Unprovoked,Australia,South Australia,"Snapper Point, Aldinga Beach, Adelaide",Scuba diving,Jonathon Lee,M,FATAL,Y,Advertiser,1/31/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.08-Lee.pdf +3636,1991.08.30,30-Aug-91,1991,Provoked,Australia,Queensland,"On board the Japanese longline trawler Fukuya No.38, 100 nm northeast of Brisbane",Finning the shark that bit him,A Japanese fisherman from Miyagi,M,"Shark bit his arm, nearly severing it PROVOKED INCIDENT",N,A. Sharpe,pp.107-108,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.30-fisherman.pdf +3635,1991.08.26,26-Aug-91,1991,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Swimming,Brad Hibshman,M,Deep cuts on lower leg,N,Charlotte Observer,8/27/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.26-Hibshman.pdf +3634,1991.08.12,12-Aug-91,1991,Unprovoked,Usa,Florida,"Vero Beach, Indian River County",Wading,Jacquelyn Johnson,F,Bite to left thigh & calf,N,Vero Beach Press Journal,8/13/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.12-Johnson.pdf +3633,1991.08.09,09-Aug-91,1991,Provoked,Usa,Florida,Florida Bay,Fishing,Captain John Donnell,M,Laceration to right forearm PROVOKED INCIDENT,N,Miami Herald,8/10/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.09-Donnell.pdf +3632,1991.07.30,30-Jul-91,1991,Boat,Italy,Ligurian Sea,"Portofino, 20 miles offshore, Tigullio Bay, Santa Margherita Ligure (Liguria)",Canoeing,Ivana Iacaccia,F,No Injury to occupant; canoe bitten,N,Stars & Stripes,8/5/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.30-Ivana-Iacaccia.pdf +3631,1991.07.27,27-Jul-91,1991,Unprovoked,Usa,Florida,"John Pennekamp Marine Park, Monroe County",Snorkeling,Jim Yarber,M,Arm bitten,N,Miami Herald,7/31/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.27-Yarber.pdf +3630,1991.07.18,18-Jul-91,1991,Unprovoked,Usa,Florida,150 miles from Crystal River,Swimming from makeshift raft to life vest after fishing boat sank,Larry Myers,M,Punctures in lower abdomen & groin ,N,Orlando Sentinel,7/23/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.18-Myers.pdf +3629,1991.07.07,07-Jul-91,1991,Unprovoked,Usa,Florida,"South Miami Beach, Dade County",Swimming,Jorge Garcia,M,Arm bitten,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.07-Garcia.pdf +3628,1991.07.01.b,01-Jul-91,1991,Unprovoked,Reunion,L'Etang-Salé,"Ravine des Sables, Saint Leu",Surfing,Alain Curco-Llovéra,M,Left arm severed,N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.b-Llovera.pdf +3627,1991.07.01.a,01-Jul-91,1991,Unprovoked,Usa,California,"8.5 miles south of Ano Nuevo State Reserve, Davenport County",Surfing,Eric Larsen,M,"Forearm, upper thigh, knee & ankle lacerated",N,R. Collier,pp.124-126 ; San Jose Mercury,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.a-Larsen_Collier.pdf +3626,1991.07.00,Jul-91,1991,Unprovoked,Usa,Virginia,"Croatan Beach, Virginia Beach, ",Boogie boarding,Michael Hootman,M,Severe laceration to foot,N,Virginia Beach Beacon,10/15/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.00-Hootman.pdf +3625,1991.06.29,29-Jun-91,1991,Unprovoked,Hong kong,Unknown,"Basalt Island, 9km from Silverstrand",Unknown,male,M,FATAL,Y,J. Wong,,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.29-NV-HongKong.pdf +3624,1991.06.28,28-Jun-91,1991,Unprovoked,Hong kong,Kowloon Peninsula,Sai Kung,Fishing,male,M,"FATAL, right arm severed ",Y,A. MacCormick,pp.103-104 & 235,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.28-HongKong.pdf +3623,1991.06.26,26-Jun-91,1991,Unprovoked,Usa,Florida,"Jacksonville Beach, Duval County",Surfing,Joe Bosque,M,Hand bitten,N,Miami Herald,6/28/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.26-JoeBosque.pdf +3622,1991.06.07.b,07-Jun-91,1991,Unprovoked,Usa,Florida,"Tampa Bay, Hillsborough County",Swimming behind sailboat,Rick Le Prevost,M,"Left ankle, calf, thigh and abdomen bitten",N,Orlando Sentinel; 6/9/1991,p.B3; Ocala Star-Banner,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.b-LePrevost.pdf +3621,1991.06.07.a,07-Jun-91,1991,Unprovoked,Hong kong,Port Shelter,"Silverstrand Beach, near Hung Hau ",Swimming ,Yeung Tam-ho (female),F,Abdomen bitten & leg severed FATAL,Y,Sunday Mail,6/9/91,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.a-YeungTam-ho.pdf +3620,1991.05.26,26-May-91,1991,Unprovoked,Usa,Hawaii,"Ma'ili Beach, O'ahu",Sitting on surfboard,Frank (Scott) Betz,M,Right calf bitten,N,J. Borg,p.79; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.26-Betz.pdf +3619,1991.05.19,19-May-91,1991,Unprovoked,South africa,Western Cape Province,Gordon’s Bay,Scuba diving,Coen Marais,M,"No injury, tank scratched by shark",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.19-Marais-Jordaan.pdf +3618,1991.04.24,24-Apr-91,1991,Provoked,Brazil,Pernambuco,"Praia de Pau Amarelo, Recife",Fishing,L.F.,Unknown,2 fingers severed by netted shark PROVOKED INCIDENT,N,M. Szpilman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.24-PauAmarelo.pdf +3617,1991.04.16.b,16-Apr-91,1991,Provoked,Usa,Maryland,Baltimore Aquarium,Diving,a senior aquarist,Unknown,Minor injury by captive shark PROVOKED INCIDENT,N,Washington Post,4/20/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16-Kohler.pdf +3616,1991.04.16.a,16-Apr-91,1991,Unprovoked,Usa,Florida,"South of Ponce Inlet, New Smyrna Beach, Volusia County","Surfing, collided with shark",David Kohler,M,Right thigh,N,Orlando Sentinel,4/18/199,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16.b-BaltimoreAquarium.pdf +3615,1991.04.03,03-Apr-91,1991,Unprovoked,Usa,Hawaii,"One'ula Beach Park, 'Ewa Beach, O'ahu",Sitting on surfboard,Todd R. Wenke,M,Deep lacerations to calf & ankle,N,J. Borg,p.79; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.03-Wenke.pdf +3614,1991.03.03,03-Mar-91,1991,Unprovoked,Australia,New South Wales,Bass Point,Scuba diving,John Puljak,M,Lacerations to arm & leg,N,Sunday Advertiser,3/5/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.03.03-Puliak.pdf +3613,1991.02.24,24-Feb-91,1991,Unprovoked,Usa,Oregon,"Neskowin, Tillamook County",Surfing,Tony Franciscone,M,Calf lacerated & board bitten,N,R. Collier,pp.122-123,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.24-Franciscone_Collier.pdf +3612,1991.02.12,12-Feb-91,1991,Unprovoked,South africa,Western Cape Province,Miller’s Point,Spearfishing,Edward Hayman,M,Foot & swim fin bitten,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.12-Hayman.pdf +3611,1991.01.19,19-Jan-91,1991,Unprovoked,Australia,Queensland,Mermaid Waters,Swimming,Michael Sproule,M,"Hands, legs & buttocks lacerated",N,Sunday Mail,1/20/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.19-Sproule.pdf +3610,1991.01.09,09-Jan-91,1991,Unprovoked,Australia,Western Australia,Scarborough,Surf-skiing,Grant Kenny,M,"No injury, shark brushed ski",N,Courier-Mail,1/10/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.09-Kenny.pdf +3609,1991.01.00,Jan-91,1991,Unprovoked,Australia,Queensland,Pelican Banks near Gladstone,Surfing (or sailboarding),Tony Hodgson,M,Survived,N,Courier-Mail,3/25/1991,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.00-Hodgson.pdf +3608,1990.12.26,26-Dec-90,1990,Invalid,South africa,Eastern Cape Province,Port Elizabeth,Unknown,male,M,Survived,N,Unverified report,,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.12.26-NV-SouthAfrica.pdf +3607,1990.11.28,28-Nov-90,1990,Unprovoked,Australia,Queensland,Nerang River,Swimming ,Michael Pignolet,M,"Abdomen, hip, leg & arm bitten",N,Herald Sun,11/30/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.28-Pignolet.pdf +3606,1990.11.03,03-Nov-90,1990,Unprovoked,Usa,California,"Monastery Beach, Carmel Bay, Monterey County",Scuba diving (but on surface),Eloise Tavares,F,Leg bitten,N,R. Collier,p.122,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.03-Tavares_Collier.pdf +3605,1990.11.01,01-Nov-90,1990,Unprovoked,Usa,Florida,"Spanish River Park Beach, Palm Beach County",Surfing,James Cornell,M,"Ear, shoulder, arm, wrist & ear injured",N,Palm Beach Post,11/3/1990; Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.01-Cornell.pdf +3604,1990.10.30.b,30-Oct-90,1990,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,Robert Spratt,M,"Hand & wrist bitten, tooth fragments in wound",N,S. Jacobson,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.b-RobertSpratt.pdf +3603,1990.10.30.a,30-Oct-90,1990,Unprovoked,Usa,Florida,"Indialantic, Brevard County",Surfing,Mark Evans,M,Cuts on left foot ,N,S. Jacobson,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.a-Mark Evans.pdf +3602,1990.10.27,27-Oct-90,1990,Unprovoked,Australia,Queensland,Mermaid Waters,Swimming,Craig Coleman,M,Buttocks & hip bitten,N,Sunday Mail (QLD),10/28/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.27-Coleman.pdf +3601,1990.10.25,25-Oct-90,1990,Unprovoked,Australia,South Australia,Goolwa Beach,Surfing,male,M,Lacerations to foot,N,The News,10/26/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.25-Goolwa-Surfer.pdf +3600,1990.10.20,20-Oct-90,1990,Unprovoked,Usa,Florida,"North end of County Beach, Palm Beach County",Surfing,Carl Demers,M,Wrist bitten,N,Palm Beach Post,10/22/1990 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.20-Demers.pdf +3599,1990.10.15,15-Oct-90,1990,Unprovoked,Usa,Hawaii,"Hanalei Point, Kaua'i",Surfing,Greg Filtzer,M,"No Injury, board bitten",N,G.. Filtzer; G. Ambrose,pp.8-17; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.15-Filzer.pdf +3598,1990.10.12,12-Oct-90,1990,Unprovoked,Usa,Florida,"Stuart Beach, Martin County",Surfing,Gabe Martino,M,Superficial injuries to left foot & ankle,N,S.L. Jackson,Palm Beach Post,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.12-GabeMartino.pdf +3597,1990.09.15,15-Sep-90,1990,Unprovoked,South africa,Western Cape Province,Oudekraal,Spearfishing,Nasri Gasant,M,Right hand lacerated,N,P. v.d. Walt; G. Cliff,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.15-Gasant.pdf +3596,1990.09.08,08-Sep-90,1990,Unprovoked,Usa,California,"Russian Gulch, Jenner, Sonoma County","Free diving / spearfishing, from paddleboard & floating on the surface",Rodney Orr,M,"Shark rammed & overturned paddleboard, knocking him into water & bit his head, lacerating his face & neck",N,R. Collier pp.120-121,,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.08-Orr_Collier.pdf +3595,1990.09.05,05-Sep-90,1990,Boat,Usa,California,"Trinidad State Beach, Humboldt County",Kayaking,Matt Hinton,M,"No injury, kayak capsized",N,R. Collier,pp118-119 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.05 - Hinton_Collier.pdf +3594,1990.08.30,30-Aug-90,1990,Invalid,Usa,Florida,"Juno Beach / North Palm Beach, Palm Beach County",SCUBA diving,Michael Mortimer,M,"Disappeared, body recovered with large bite on thigh",Y,Miami Herald,9/6/1990; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.30-Mortimer.pdf +3593,1990.08.28,28-Aug-90,1990,Unprovoked,Usa,California,"Trinidad Head, Humboldt County",Surfing,Rodney Swan,M,4 punctures on leg & board bitten,N,R. Collier,pp.116-118,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.28-Swan_Collier.pdf +3592,1990.08.19.b,19-Aug-90,1990,Unprovoked,Usa,Texas,"Mustang Island, Nueces County",Surfing,male,M,Minor cuts to foot,N,Dallas Morning News,8//22/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.b-Surfer.pdf +3591,1990.08.19.a,19-Aug-90,1990,Unprovoked,Usa,Texas,"Near Port Aransas, Nueces County",Wade fishing,Jimmy Allen,M,Minor injury,N,Dallas Morning News,8//22/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.a-b-Allen.pdf +3590,1990.07.22,22-Jul-90,1990,Unprovoked,Usa,Texas,"Mustang Island State Park, Nueces County",Wading,Barbara Green,F,10-inch laceration to right foot,N,Paris News,7/23/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.22-Greem.pdf +3589,1990.07.08,08-Jul-90,1990,Unprovoked,Usa,Florida,"Perdido Key near the Florida Panhandle, Escambia County",Surfing,Scott Holloway,M,Minor injury to left ankle & foot,N,Orlando Sentinel,7/8/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.08-Holloway.pdf +3588,1990.06.24,24-Jun-90,1990,Unprovoked,South africa,Western Cape Province,Mossel Bay,Scuba diving (but on surface),Monique Price,F,"FATAL, thigh bitten ",Y,A Gifford,G. Cliff,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.24 - Price.pdf +3587,1990.06.23,23-Jun-90,1990,Unprovoked,Bahamas,Unknown,Bimini,Spearfishing,Bruce Cease,M,Left forearm bitten,N,Miami Herald,6/25/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.23-Cease.pdf +3586,1990.05.13,13-May-90,1990,Provoked,South africa,KwaZulu-Natal,Protea Reef,Fishing,"skiboat Double One, occupants: Anton & Michelle Gets, Ray Whitaker, John & Lyn Palmer",Unknown,"No injury to occupants, hooked shark freed itself, then rammed stern of boat PROVOKED INCIDENT",N,G. Charter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.13-DoubleOne.pdf +3585,1990.05.10,10-May-90,1990,Unprovoked,Australia,Queensland,Outer Barrier Reef near Port Douglas,Snorkeling, Sydney woman,F,Lacerations,N,Courier-Mail,5/11/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.b-Sydney-woman.pdf +3584,1990.05.10,10-May-90,1990,Unprovoked,Australia,Queensland,Outer Barrier Reef near Port Douglas,"Snorkeling, possibly holding a fish",German male,M,Lacerations,N,Courier-Mail,5/11/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.a-German-male.pdf +3583,1990.05.06,06-May-90,1990,Unprovoked,South africa,Eastern Cape Province,Cintsa East,Resting on surfboard,Richard Forrester,M,Thigh severely lacerated,N,R. Forrester,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.06-Forrester.pdf +3582,1990.04.14,14-Apr-90,1990,Unprovoked,South africa,Eastern Cape Province,Cape Recife,Lying on surfboard & paddling,Conrad Botha,M,Leg bitten,N,M. Smale,,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.14-Botha.pdf +3581,1990.04.09,09-Apr-90,1990,Unprovoked,Australia,Queensland,Greenmount Beach,Surfing,Mark Fleming,M,"Lacerations & abrasions, board bitten in half",N,Herald,4/10/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.09-Fleming.pdf +3580,1990.04.08,08-Apr-90,1990,Unprovoked,Australia,Queensland,"Dingo Reef, 80 nm off Townsville",Free diving for trochus,Robert Bullen,M,Presumed FATAL,Y,Courier-Mail,4/12/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.08-Bullen.pdf +3579,1990.04.07,07-Apr-90,1990,Unprovoked,Australia,Queensland,Fingal Beach,Surfing,"male, an American tourist",M,"No injury, board broken in two",N,Herald,4/10/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.07-AmericanTourist.pdf +3578,1990.04.06,06-Apr-90,1990,Unprovoked,Australia,Queensland,Fingal Beach,Surfing,Tony Patton,M,"No injury, board bitten",N,Herald,4/10/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.06-TonyPatton.pdf +3577,1990.04.01,01-Apr-90,1990,Unprovoked,Usa,Hawaii,"Silver (Silva) Channels, Waialua, O'ahu",Sitting on surfboard,Everett Peacock,M,"Ankle lacerated, lower left leg severely abraded ",N,J. Borg,p.79; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.01-Peacock.pdf +3576,1990.03.24, 24-Mar-1990,1990,Unprovoked,Fiji,Laucala Island,Unknown,Swimming,Ola Stillman Rockefeller,M,Lacerations to right leg,N,The News,3/27/1990,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.24-Rockefeller.pdf +3575,1990.03.05,05-Mar-90,1990,Unprovoked,Reunion,Sainte-Marie,Baie de la Mare,Surfing,Wagner Cataldo-Beugleu,M,Survived,N,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.05-Reunion.pdf +3574,1990.02.17,17-Feb-90,1990,Unprovoked,Usa,Hawaii,"Mokapu, Kane'ohe Marine Air Corps Station, O'ahu",Scuba diving & spearfishing,Roy T. Tanaka,M,Right arm severed FATAL,Y,J. Borg,pp.78-79; L. Taylor (1993) pp.110-111,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.17-Tanaka.pdf +3573,1990.02.05,05-Feb-90,1990,Unprovoked,Usa,Florida,"Monster Hole, Sebastian Inlet, Indian River County",Board sailing,Bruce Ferguson,M,Foot bitten,N,Orlando Sentinel,Feb 9,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.05-Ferguson.pdf +3572,1990.01.12,12-Jan-90,1990,Unprovoked,Usa,California,"Montera Beach, San Mateo County",Surfing (sitting on his board),Sean Sullivan,M,"No injury, board bitten",N,J. McCosker & R.N. Lea; R. Collier,p. 116 ; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.01.12-Sullivan_Collier.pdf +3571,1990.00.00,1990,1990,Unprovoked,Usa,Florida,"Pensacola, Escambia County",Surfing,male,M,Unknown,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.00.00-NV-Pensacola.pdf +3570,1989.12.19,19-Dec-89,1989,Provoked,Usa,Hawaii,"90 miles east of Hilo, Hawai'i",On board 51' fishing vessel One Ki,George Sohswel,M,Left leg & foot bitten by shark brought onboard. PROVOKED INCIDENT,N,J. Borg,p.78; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.19-Sohswel.pdf +3569,1989.12.03,03-Dec-89,1989,Unprovoked,Australia,Northern Territory,Gove Peninsula near Darwin,Unknown,Ryan Johnson,M,"No details, ""recovering in Darwin Hospital""",UNKNOWN,Courier-Mail,12/6/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.03-Johnson.pdf +3568,1989.12.02,02-Dec-89,1989,Invalid,Australia,Queensland,Fraser Island,Swimming,Michael Preston,M,"Swept out to sea, feared taken by shark",Y,The Advertiser,12/4/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.02-Preston.pdf +3567,1989.11.22,22-Nov-89,1989,Unprovoked,Australia,Victoria,Kilcunda,Surfing,Gary White,M,Thigh bitten,N,Courier-Mail,11/24/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.22-White.pdf +3566,1989.11.18,18-Nov-89,1989,Unprovoked,South africa,Western Cape Province,Melkbosstrand,Free diving & spearfishing,Gerjo Van Niekerk,M,FATAL,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.18-VanNiekerk.pdf +3565,1989.11.12,12-Nov-89,1989,Invalid,Usa,Hawaii,"Ehukai Beach Park, Sunset Beach, O'ahu","Wading, knocked down & swept away by large waves",Edward Malek,M,Lower porton of body recovered 3 days later. Note: rare sighting of shark made at same beach on 11-5-1989 ,Y,J. Borg,p.78; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.12-Malek.pdf +3564,1989.11.02,02-Nov-89,1989,Unprovoked,Australia,Queensland,Mermaid Waters,Swimming in canal,Kristoffer Fredriksen,M,Left ankle broken & lacerated,N,Courier-Mail,11/7/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.02-Fredriksen.pdf +3563,1989.10.29.R,29-Oct-1989,1989,Unprovoked,Australia,Northern Territory,Edith Falls,Swimming,Christine Kaesler,F,Puncture marks to right calf,N,Sunday Mail,10/29/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.29.R-Kaesler.pdf +3562,1989.10.22,22-Oct-89,1989,Unprovoked,Australia,Tasmania,Shelly Point ,Surfing,Steven Jillet,M,"No injury, board bitten",N,Hobart Mercury,10/23/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.22-Jillet.pdf +3561,1989.10.14,14-Oct-89,1989,Invalid,Usa,Hawaii,"Kahe Point, O'ahu",Scuba diving,"Ray Mehl, Jr.",M,"Disappeared 15 minutes into shallow dive. Decapitated body minus arm found by divers the following morning, then shark appeared and consumed most of remains",Y,Washington Post,10/17/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.14-Mehl.pdf +3560,1989.10.11,11-Oct-89,1989,Unprovoked,Usa,Texas,Surfside Beach,Surfing,Jason Largent,M,Foot & leg bitten,N,Austin American Statesman,10/13/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.11-Largent.pdf +3559,1989.10.08,08-Oct-89,1989,Invalid,Usa,North Carolina,"Between Wrightsville Beach & Carolina Beach, New Hanover County",Diving,Doug Nunnally,M,FATAL,Y,C. Creswell,GSAF & Search & Rescue diver,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.08-Nunnally.pdf +3558,1989.10.01,01-Oct-89,1989,Unprovoked,Australia,Victoria,"Surfers Point, Phillip Island",Surfing,John Benson,M,No details,UNKNOWN,J. West,ASAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.01-Benson.pdf +3557,1989.09.17,17-Sep-89,1989,Unprovoked,South africa,Western Cape Province,"Smitswinkel, False Bay",Free diving,Gerjo Van Niekerk,M,Chest lacerated,N,G.v.Niekerk, C. Walker,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.17-GerjoVanNiekerk.pdf +3556,1989.09.13,13-Sep-89,1989,Provoked,Usa,Florida,"Gulf of Mexico, 22 miles from Pensacola","Fishing, stepped on hooked shark's head",Charles N. Swafford,M,Bitten by hooked shark PROVOKED INCIDENT,N,Miami Herald,9/15/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.13-Swafford.pdf +3555,1989.09.10,10-Sep-89,1989,Boat,Usa,California,"Off Palos Verdes Estates, Los Angeles",Observing a shark feeding on a carcass of a humpback whale,11.6 m fibreglass boat. Occupants: Tony DeCriston & Dan Fink,Unknown,No injury to occupants. Shark bit boat's swim step & repeatedly pushed the boat away whenever if came within 4 to 5 m of the whale carcass,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.10-DeCristo_Collier.pdf +3554,1989.09.09.b,09-Sep-89,1989,Unprovoked,Usa,California,"Southeast Farallon Island, Farallon Islands",Hookah diving for abalone (descending),Mark Tisserand,M,Leg bitten,N,R. Collier,pp.110-112 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09-Tisserand_Collier.pdf +3553,1989.09.09.a,09-Sep-89,1989,Unprovoked,Usa,North Carolina,"Salvo, Dare County",Surfing,Robert Ballard,M,Non-fatal,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09.a-Ballard.pdf +3552,1989.09.03,03-Sep-89,1989,Provoked,Usa,California,24 km off Santa Catalina Island in the Channel Islands,Filming 5' blue shark,Larry Stroup,M,Hand & both arms bitten PROVOKED INCIDENT,N,R. Collier,p. xxvi; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.03-Stroup.pdf +3551,1989.08.29,29-Aug-89,1989,Provoked,Australia,Queensland,SeaWorld Theme Park,Feeding fish,Mike Richardson,M,Left leg bitten by captive shark PROVOKED INCIDENT,N,The Canberra Times,9/1/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.29-Richardson.pdf +3550,1989.08.22.b,22-Aug-89,1989,Unprovoked,Usa,Florida,"St Augustine, St Johns County",Swimming,Anthony McKnight,M,3 wounds on left hand,N,Orlando Sentinel,8/24/1989. p.B1,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.b-McKnight.pdf +3549,1989.08.22.a,22-Aug-89,1989,Unprovoked,South africa,Western Cape Province,Mossel Bay,Surfing,Niko von Broembsen,M,Multiple Injuries,N,N.v.Broembsen; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.a-vonBroembsen.pdf +3548,1989.08.13,13-Aug-89,1989,Unprovoked,Australia,New South Wales,Lennox Head,Surfing,Michael Guy,M,"No injury, shark took chunk out of surfboard",N,Sydney Morning Herald,8/14/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.13-Guy.pdf +3547,1989.08.09,09-Aug-89,1989,Unprovoked,Bahamas,Great Exuma Island,Highborn Cay,Spearfishing,Judy St. Clair,F,Severe hand and arm injuries; right hand surgically amputated,N,Orlando Sentinel,8/10/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.09-StClair.pdf +3546,1989.08.06.R, 06-Aug-1989,1989,Provoked,Australia,Queensland,Moreton Bay,Fishing for sharks,Vic Hislop,M,Laceration to arm PROVOKED INCIDENT,N,Sunday Mail,8/6/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.06.R-Hislop.pdf +3545,1989.07.27,27-Jul-89,1969,Invalid,Unknown,Unknown,Unknown,Scuba diving,Russian male,M,FATAL,Y,LA Times,7/28/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.27-SovietDiver.pdf +3544,1989.07.20,20-Jul-89,1989,Unprovoked,South africa,Eastern Cape Province,Jeffreys Bay,Surfing,Edward Razzano,M,Torso bitten,N, E. Razzano & R. Joseph; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.20-Razzano.pdf +3543,1989.07.19,19-Jul-89,1989,Unprovoked,Reunion,Sainte-Suzanne,Temple Tamoule,Surfing,Bruno Giraud ,M,FATAL,Y,Clicanoo,le journal de l'Ile de la Réunion,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.19-Giraud.pdf +3542,1989.07.14,14-Jul-89,1989,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing,John O'Brien,M,5-inch gash on left leg,N,Orlando Sentinel,7/17/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.14-JohnO'Brien.pdf +3541,1989.07.07,07-Jul-89,1989,Unprovoked,Usa,Texas,"Sargent Beach, Matagorda County",Playing ,Rene Richbourg,F,Leg bitten,N,Austin American Statesman,7/11/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.07-Richbourg.pdf +3540,1989.06.29,29-Jun-89,1989,Unprovoked,Usa,Hawaii,"Anahola, Kaua'i",Fell off surfboard 20' from shore,Anthony Paden,M,Foot & ankle severely bitten,N,J. Borg,p.77; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.29-Paden.pdf +3539,1989.06.17,17-Jun-89,1989,Unprovoked,Usa,Louisiana,40 miles off Cocodrie,Spearfishing,Carl Loe,M,Puncture wounds & lacerations to both legs,N,The Advocate (Baton Rouge,La.),http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.17-Loe.pdf +3538,1989.06.06,06-Jun-89,1989,Unprovoked,Italy,Tuscany,"Marinella, between Punta Blanca & Marine del Carrara ",Windsurfing (urinating on his board),Ezio Bocedi,M,Upper right thigh bitten,N,I. Fergusson,MEDSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.06-Bocedi.pdf +3537,1989.06.05,05-Jun-89,1989,Unprovoked,South africa,Eastern Cape Province,Jeffreys Bay,Surfing,Roniel Jacobs,M,"No injury, board bitten",N,R. Jacobs,R. Joseph; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.05-Jacobs.pdf +3536,1989.06.03,03-Jun-89,1989,Unprovoked,South africa,Eastern Cape Province,Gonubie,Free diving,Leon Krouse,M,Forearm bitten,N,M. Levine,L. Krouse,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.03-Krouse.pdf +3535,1989.06.00,Jun-89,1989,Invalid,Japan,Sea of Japan,Unknown,Unknown,male,M,"Doubtful incident, needs investigation",N,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.00-Sea-of-Japan.pdf +3534,1989.04.23,23-Apr-89,1989,Unprovoked,Usa,Florida,"Loggerhead Park, Juno Beach, Palm Beach County",Swimming,Scott Scherger,M,Right calf bitten,N,Palm Beach Post,April 27,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.23-Scherger.pdf +3533,1989.04.12,12-Apr-89,1989,Unprovoked,Usa,Washington,"Pacific Beach, Grays Harbor County",Surfing (lying prone on his board),Robert Harms,M,Forearm bitten,N,R. Collier,p.110; J. McCosker & R.N. Lea ,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.12-Harms_Collier.pdf +3532,1989.04.09,09-Apr-89,1989,Boat,Usa,California,"Monterey Bay, Monterey County",Unknown,10.7 m boat. Occupants: John Capella & friends,Unknown,No injury to occupants. Shark rammed boat 4 times,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.09-Capella.pdf +3531,1989.04.03,03-Apr-89,1989,Unprovoked,Usa,Hawaii,"Ho'okipa Beach, Pa'ia, Maui",Paddling on surfboard,Sam McLain,M,Calf lacerated,N,J. Borg,p.77; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.03-McLain.pdf +3530,1989.04.00,Apr-89,1989,Unprovoked,Usa,Hawaii,"Kekaha Beach, Kaua'i",Paddling on surfboard,William P. Allen,M,"Board rammed by shark, skegs knocked loose & 5' strip of fiberglass torn off, thigh scratched by shark’s teeth",N,J. Borg,p.77; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.00-Allen.pdf +3529,1989.03.09,09-Mar-89,1989,Unprovoked,Australia,South Australia,"Waitpinga Beach, near Victor Harbor, Encounter Bay",Surfing,Matthew Foale,M,Thigh bitten FATAL,Y,Courier-Mail,3/11/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.09-Foale.pdf +3528,1989.03.04,04-Mar-89,1989,Boat,Australia,Western Australia,Near Broome in Roebuck Bay,Kayaking,Kim Courtenay ,M,"No injury, but the kayak was bitten by the shark",N,K. Courtenay; T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.04-Courtenay.pdf +3527,1989.02.19,19-Feb-89,1989,Provoked,South africa,Western Cape Province,Unknown,Fishing,Kobus de Jager,M,Thigh lacerated & abraded PROVOKED INCIDENT,N,Sunday Times,2/19/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.19.R-DeJager.pdf +3526,1989.02.15,15-Feb-89,1989,Unprovoked,South africa,KwaZulu-Natal,Richards Bay,Windsurfing,Nico Abel,M,Foot bruised & minor lacerations,N,G. Cliff,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.15-Abel.pdf +3525,1989.02.02,02-Feb-89,1989,Unprovoked,Italy,Tyrrhenian Sea,"Golfo di Baratti, near Piombino (Tuscany)","Scuba diving, but swimming on surface",Luciano Costanzo,M,FATAL. His body not recovered,Y,A. De Maddalena; Cappelletti (1989a),Bertuccelli (1989),http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.02-Constanzo.pdf +3524,1989.01.26.b,26-Jan-89,1989,Invalid,Usa,California,"Latigo Point / Paradise Cove, west of Malibu, Los Angeles County",Kayaking,Roy Jeffrey Stoddard,M,Reported by media as shark attack but forensic evidence indicated the kayaker died prior to any shark involvement,Y,R. Collier,pp.106-109,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.b-Stoddard.pdf +3523,1989.01.26.a,26-Jan-89,1989,Unprovoked,Usa,California,"Latigo Point / Paradise Cove,west of Malibu, Los Angeles County",Kayaking,Tamara McAllister,F,"FATAL, thigh bitten, hands lacerated ",Y,R. Collier,pp.106-109,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.a-McAllister_Collier.pdf +3522,1989.01.20.b,20-Jan-89,1989,Unprovoked,Usa,Hawaii,"Waialua Beach, Moloka'i",Body boarding,Earl Dunnam,M,Foot bitten,N,J. Borg,p.77,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.b-Dunnam.pdf +3521,1989.01.20.a,20-Jan-89,1989,Unprovoked,South africa,KwaZulu-Natal,Isipingo,Lifesaving drill,Sudesh Sarjoo,M,Thigh bitten,N,S. Sarjoo,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.a-Sarjoo.pdf +3520,1989.01.08,08-Jan-89,1989,Unprovoked,Usa,Hawaii,"Wailua, Kaua'i",Swimming in strong current with 3 others when he disappeared,Ken Ahlstrand,M,"Lower part of body found 6 days later, x-rays revealed teeth marks in femur & tibia",Y,J. Borg,p.77; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.08-Ahlstrand.pdf +3519,1989.01.03,03-Jan-89,1989,Unprovoked,Australia,New South Wales,"Half Tide Beach, Evans Head",Surfing with dolphins,Adam Maguire (McGuire),M,"Abdomen lacerated, surfboard holed",N,Courier Mail,1/4/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.03-McGuire.pdf +3518,1989.00.00.b,1989,1989,Unprovoked,Papua new guinea,New Ireland,Kavieng,"Scuba diving, hand feeding sharks",Dinah Halstead,F,Thigh & calf bitten,N,S. Waterman,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00.b-Halstead +3517,1989.00.00.a,1989,1989,Unprovoked,Usa,Virginia,"Coral Gardens Reef, 6 miles SSE of Chicoteague Inlet",Spearfishing using scuba & trailing a string of bleeding fish,male,M,"No injury, shark grabbed his fish and chased him to the boat",N,J. Musick,,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00-Virginia-spearfisherman.pdf +3516,1988.12.15,15-Dec-88,1988,Unprovoked,Chile,Valpariso Province,Valpariso,Skindiving,Juan Tapia-Avalos,M,FATAL,Y,J. McCosker & A. Engana,,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.12.15-Avalos.pdf +3515,1988.11.08,08-Nov-88,1988,Sea Disaster,Australia,Queensland,"Off North Keppel Island, off Yeppoon","The Christie V sank on 11/6/1988, survivors were adrift on a dinghy",Bruce Coucom,M,"FATAL When James Coucom, the lone survivor, was rescued, ""2 sharks were pounding on the dinghy""",Y,H. Edwards,pp.115-116,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.08-BruceCoucom.pdf +3514,1988.11.07,07-Nov-88,1988,Sea Disaster,Australia,Queensland,"Off North Keppel Island, off Yeppoon","The Christie V sank on 11/6/1988, survivors were adrift on a dinghy",Cedric Coucom,M,FATAL,Y,H. Edwards,pp.115-116,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.07-CedricCoucom.pdf +3513,1988.10.24,24-Oct-88,1988,Sea Disaster,Philippines,Viscayan Sea,Unknown,The MV Dona Marilyn sank in Typhoon Unsang with the loss of 389 lives,Unknown,Unknown,"According to survivors, many people were taken by sharks",Y,Straits Times,11/5/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.24-DonaMarilyn.pdf +3512,1988.10.23,23-Oct-88,1988,Unprovoked,Usa,Oregon,"Indian Beach, Ecola State Park, just north of Cannon Beach, Clatsop County ",Surfing (sitting on his board),Wyndham Kapan,M,Leg bitten & femur fractured,N,R. Collier,pp.104-106,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.23-Kapan_Collier.pdf +3511,1988.10.22,22-Oct-88,1988,Unprovoked,Australia,Victoria,Phillip Island,Surfing,John Wonham,M,Lacerations to right leg,N,Miami Herald,10/26/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.22-Wonham.pdf +3510,1988.10.14,14-Oct-88,1988,Unprovoked,Usa,Florida,"Boca Raton, Palm Beach County",Surfing,Aaron Shulman,M,Lacerations to left thigh,N,Boca Raton News,10/15/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.14-Shulman.pdf +3509,1988.10.11,11-Oct-88,1988,Unprovoked,Usa,Florida,"Fort Pierce, St. Lucie County ",Surfing,John L. Goodson,M,Left leg lacerated,N,St. Petersburg Times 10/13/1988,p.2B,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.11-Goodson.pdf +3508,1988.10.10,10-Oct-88,1988,Unprovoked,Usa,Florida,"Playalinda, Brevard County",Surfing,Patrick Turowski,M,Hand lacerated,N,G. Taylor,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.10-Turowski.pdf +3507,1988.10.06,06-Oct-88,1988,Unprovoked,Australia,South Australia,Moama Beach,Surfing,Murray Taylor,M,Lower right leg lacerated,N,Herald,10/7/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.06-MurrayTaylor.pdf +3506,1988.10.00,Oct-88,1988,Unprovoked,Usa,Florida,"Sanibel Island, Lee County",Wading,Sally Jo Scott,F,Leg lacerated,N,C.L. Call,,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.00-SallyJoScott.pdf +3505,1988.09.28,28-Sep-88,1988,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Garvin,M,Lacerations to foot,N,News-Journal,9/29/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.28-Garvin.pdf +3504,1988.09.13.b,13-Sep-88,1988,Unprovoked,Usa,Florida,"Shell Island Panama City Beach, Bay County",Walking,Dennis & Ann Hadden,F,Dennis' hand injured; Ann's right forearm bitten,N,M. Womack,News Herald; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.b-Hadden.pdf +3503,1988.09.13.a,13-Sep-88,1988,Unprovoked,Usa,Florida,"Shell Island Panama City Beach, Bay County",Snorkeling,John P. Martin ,M,"FATAL, thigh & hand lacerated",Y,M. Womack,News Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.a-Martin.pdf +3502,1988.08.22.b,22-Aug-88,1988,Provoked,Usa,Louisiana,New Orleans,Diving in Sharkey's Reef restaurant’s aquarium,Wiley Beevers,M,Arm bitten by captive shark PROVOKED INCIDENT,N,New Orleans Times-Picayune,8/23/1988; Orlando Sentinel. Orlando,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.b-Beevers.pdf +3501,1988.08.22.a,22-Aug-88,1988,Unprovoked,Italy,Manfredonia ,Ippocampo,Unknown,male,M,Survived,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.a-Ippocampo.pdf +3500,1988.08.19,19-Aug-88,1988,Unprovoked,Japan,Tokyo Prefecture,Ogasawara Islands,Unknown,male,M,Survived,N,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.19-Japan.pdf +3499,1988.08.11,11-Aug-88,1988,Unprovoked,Usa,California,"Klamath River, Del Norte County",Surfing,Carl Lafazio,M,Thigh bitten,N,R. Collier,pp.102-104,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.11-LaFazio_Collier.pdf +3498,1988.07.23,23-Jul-88,1988,Unprovoked,Unknown,Unknown,Unknown,Free diving & spearfishing ,Kenny Isham,M,Hand bitten,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.23-Isham.pdf +3497,1988.07.19,19-Jul-88,1988,Unprovoked,Unknown,Unknown,Unknown,Spearfishing on scuba,Larry Press,M,Cheek bitten,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.19-Press.pdf +3496,1988.07.17,17-Jul-88,1988,Unprovoked,Unknown,Unknown,Unknown,Diving,Doug Perrine,M,Right palm lacerated,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.17-Perrine.pdf +3495,1988.07.11,11-Jul-88,1988,Unprovoked,Usa,Florida,"Jensen Beach, Martin County",Swimming,female,F,Punctures & deep scratches to foot & buttock,N,Miami Herald, 7/12/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.11-female_Jensen Beach.pdf +3494,1988.07.04.b,04-Jul-88,1988,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,Ray Bourgeois,M,Punctures to lower left leg & foot,N,News-Journal,7/5/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.b-Bourgeois.pdf +3493,1988.07.04.a,04-Jul-88,1988,Unprovoked,Unknown,Unknown,Unknown,Snorkeling,Lowell Nickerson,M,Leg lacerated,N,E. Pace,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.a-Nickerson.pdf +3492,1988.07.00,Jul-88,1988,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Peter Albury,M,Lacerations to arm,N,E. Pace,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.00-Albury.pdf +3491,1988.06.19,16-Jun-88,1988,Unprovoked,South africa,Western Cape Province,Sculphoek,Spearfishing,Willie van Rensberg,M,Left arm lacerated,N,W.v.Rensberg,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.19-VanRensburg.pdf +3490,1988.06.16,16-Jun-88,1988,Unprovoked,Usa,North Carolina,"Ocracoke, Hyde County",Scuba diving,male,M,Survived,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.16-diver.pdf +3489,1988.06.09,09-Jun-88,1988,Unprovoked,Usa,South Carolina,"Sea Pines Beach Club, Hilton Head, Beaufort County",Sittting in water with his child,Mark Dotter,M,Left leg bitten,N,Charlotte Observer,6/11/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.09-Dotter.pdf +3488,1988.06.05,05-Jun-88,1988,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Swimming,Jason Jones,M,Four lacerations to his ankle,N,Orlando Sentinel,6/7/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.05-JasonJones.pdf +3487,1988.06.01,01-Jun-88,1988,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Surfing,Etienne DeCora,M,Cuts to right foot and ankle,N,Orlando Sentinel,6/2/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.01-DeCora.pdf +3486,1988.05.27,27-May-88,1988,Unprovoked,Unknown,Unknown,Unknown,Shell diving,Ko Bong-ae (female),F,FATAL,Y,Y. Choi & K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.27-Ko Bong-se.pdf +3485,1988.05.10,10-May-88,1988,Unprovoked,Usa,Florida,"Paradise Beach Park, Brevard County",Surfing,Philip Barone,M,Left foot bitten,N,M. Vosburgh,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.10-Barone.pdf +3484,1988.05.04,04-May-88,1988,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing / treading water,Lee Rhoades,M,Left leg & right foot bitten,N,Orlando Sentinel,5/6/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.04-Rhoades.pdf +3483,1988.04.28,28-Apr-88,1988,Unprovoked,Reunion,Saint-Louis,Embouchure de l'étang du Gol,pêcheur de bichiques,Jean-Felix Taochyn,M,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.28-Reunion.pdf +3482,1988.04.24,24-Apr-88,1988,Unprovoked,Usa,California,"North of Morro Rock, San Luis Obispo County",Surfing,Mark Rudy,M,No Injury,N,J. McCosker & R.N. Lea; R. Collier,p.102,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.24-Rudy_Collier.pdf +3481,1988.04.15a,15-Apr-88,1988,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Swimming,Robert Nicholson,M,Lacerations to left foot,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.a-Nicholson.pdf +3480,1988.04.15.b,15-Apr-88,1988,Invalid,Usa,Hawaii,"Waihe'e, Maui",Onboard 21' powerboat that capsized in rough seas,Avery Goo,M,"Human remains, believed to be those of Mr. Goo, washed ashore along the Waihee shore several days later",Y,J. Borg,p.76; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.b-AveryGoo.pdf +3479,1988.04.14.b,14-Apr-88,1988,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Kenny Burns,M,Right hand bitten,N,St. Petersburg Times,2/6/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.b-KennyBurns.pdf +3478,1988.04.14.a,14-Apr-88,1988,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Windsurfing,Joseph Costa,M,"6"" laceration to left foot",N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.a-Costa.pdf +3477,1988.04.10,10-Apr-88,1988,Invalid,South africa,KwaZulu-Natal,La Lucia,Unknown,female,F,"Arm washed ashore. scratch marks on the humerus indicated it had been bitten by a shark, but cause of death could not be determined.",Y,G. Charter,NSB; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.10-arm.pdf +3476,1988.03.31,31-Mar-88,1988,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Standing ,Peggy Schaefer,F,Foot bitten,N,Milwaukee Journal,4/12/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.31-Schaefer.pdf +3475,1988.03.25,25-Mar-88,1988,Unprovoked,Usa,Hawaii,"Running Waters Beach, Ninini Point, Kaua'i",Body surfing,Aaron Kawado,M,Ankle bitten,N,J. Borg,p.76; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.25-Kawado.pdf +3474,1988.03.16,16-Mar-88,1988,Unprovoked,South africa,KwaZulu-Natal,Isipingo,Surfing,Sastri Naidoo,M,"Lower left leg bitten, hand lacerated",N,S. Naidoo,Dr. M. Raj,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.16-Naidoo.pdf +3473,1988.03.14,14-Mar-88,1988,Unprovoked,Reunion,Saint-Pierre,Pic du Diable,Surfing,Frédéric Mousseau,M,Laceration to hand,N,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.14-Mousseau.pdf +3472,1988.02.15, 15-Feb-1988,1988,Boat,South africa,KwaZulu-Natal,"Brighton Beach, Durban",Unknown,"Semi-rigid rescue boat: occupants, Edward Moolman & Chris Bezuidenhiut ",Unknown,"No injury to occupants, pontoon puctured",N,Natal Mercury,2/16/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.15-BrightonBeach-lifesavers.pdf +3471,1988.02.14,14-Feb-88,1988,Unprovoked,South africa,Eastern Cape Province,Nahoon,Surfing,Michael Schaeffer,M,Ankle bitten,N,M. Schaeffer,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.14-Schaeffer.pdf +3470,1988.02.13,13-Feb-88,1988,Unprovoked,South africa,KwaZulu-Natal,Mtunzini,Lying atop surfboard,Belinda Van Schalkwyk,F,"Leg bitten, surgically amputated",N,B. v.Schalkwyk,P. Thevenau,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.13-Belinda_vanSchalkwyck.pdf +3469,1988.02.12,12-Feb-88,1988,Boat,Australia,Western Australia,18 km west of Bunbury,Drift fishing,"5.5 m fibreglass boat, occupants: Steven Piggott and Kelvin & Brendan Martin",Unknown,"No injury to occupants; shark leapt into boat, almost capsizing it and destroyed the inside of the boat",N,Sunday Mail (QLD),2/14/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.12-Piggott boat.pdf +3468,1988.02.02,02-Feb-88,1988,Unprovoked,Fiji,Vanua Levu,Unknown,Diving,Qalo Moceyawa,M,Lacerations to left arm & waist,N,Sun,2/5/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.02-Fiji-Moceyawa.pdf +3467,1988.01.27,27-Jan-88,1988,Invalid,South africa,KwaZulu-Natal,Durban,Surfing,Charles Everitt,M,Minor injury to leg,N,Natal Mercury,1/30/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.27-Everitt.pdf +3466,1988.01.21,21-Jan-88,1988,Invalid,Australia,Torres Strait,Unknown,Fell overboard from the Taiwanese fishing trawler Lien Cheng Feu ,Lo-Ying-Chun,M,His remains were recovered from a shark caught by the trawler Ho Tai No.12 in March 1988,Y,X. Maniguet,p.206,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.21-Chun.pdf +3465,1988.01.14,14-Jan-88,1988,Provoked,Usa,Louisiana,Unknown,Fishing,Chip,M,Hand bitten by captured shark PROVOKED INCIDENT,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.14-Chip.pdf +3464,1988.01.06,06-Jan-88,1988,Provoked,South africa,Western Cape Province,Struisbaai,Attempting to lasso shark's tail,J.A. McKay,M,Foot lacerated by hooked shark PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.06-McKay.pdf +3463,1988.01.05.R, 05-Jan-1988,1988,Provoked,South africa,Western Cape Province,Great Brak River,"Returning to shore, collided with shark","5 m inflatable boat, occupants: Kobus Potgieter & 5 friends",Unknown,"No injury to occupants; shark ripped off fibreglass hull, swamping boat PROVOKED INCIDENT",N,Natal Mercury,1/5/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.05-Potgeiter-boat.pdf +3462,1988.00.00.c,1988,1988,Unprovoked,Australia,New South Wales,Sydney,Surfing,Ryan Kwanten,M,Hand bitten,N,Star Pulse,7/8/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.00.00.c-Kwanten.pdf +3461,1987.12.20,20-Dec-87,1987,Sea Disaster,Philippines,Mindoro,Off Manila,Ferry boat Dona Paz with 4431 passengers exploded & caught fire when she collided with an oil tanker ,Unknown,Unknown,25 people survived; 300 shark-mutilated bodies were recovered,Y,BBC ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.20-DonaPaz.pdf +3460,1987.12.17,17-Dec-87,1987,Unprovoked,Usa,Florida,"Palm Beach, Palm Beach County",Surfing,Timothy Knipper,M,Left calf bitten,N,D. Filkins,Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.17-Knipper.pdf +3459,1987.12.13,13-Dec-87,1987,Invalid,Australia,New South Wales,Shoalhaven,Unknown,female,F,Remains recovered from shark,Y,Sunday Mail (QLD),1/31/1988,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.13-Shoalhaven.pdf +3458,1987.11.21,21-Nov-87,1987,Unprovoked,Usa,Florida,"North of Jupiter Inlet, Palm Beach County",Surfing,Brian Tyska ,M,Leg lacerated,N,St. Petersburg Times,11/25/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.21-Tyska.pdf +3457,1987.11.00,Nov-87,1987,Invalid,South africa,KwaZulu-Natal,St. Lucia,Unknown, male,M,Possible drowning / scavenging,N,NSB,,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.00-StLucia-scavengin.pdf +3456,1987.10.26,26-Oct-87,1987,Unprovoked,Usa,California,"Davenport Light, San Mateo County",Surfing,Conrad Brown,M,Buttock & leg bitten,N,R. Collier,p.101,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.26-Brown_Collier.pdf +3455,1987.10.25,25-Oct-87,1987,Invalid,South africa,KwaZulu-Natal,Richards Bay,Boogie boarding,Darrel Rowe,M,Abrasion to forearm,N,D. Rowe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.25-Rowe.pdf +3454,1987.10.11,11-Oct-87,1987,Unprovoked,South africa,Western Cape Province,"Seal Island, False Bay",Spearfishing,Dawid Smit,M,Left thigh & calf lacerated,N,G. Smit,P. Landsberg,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.11-DawidSmit.pdf +3453,1987.10.06,06-Oct-87,1987,Sea Disaster,Dominican republic,Between DR and Puerto Rico,Mona Passage,"Vessel caught fire & capsized, survivors in the water",Unknown,Unknown,"Of 160 people on board, >100 missing",Y,Orlando Sentinel,1/7/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.06-refugee-boat.pdf +3452,1987.09.18,18-Sep-87,1987,Unprovoked,Australia,South Australia,"Merino Rocks, Adelaide",Scuba Diving for scallops,Terrance Gibson,M,FATAL,Y,A. Sharpe,p.127; J. West,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.18-Gibson.pdf +3451,1987.09.13,13-Sep-87,1987,Unprovoked,South africa,Western Cape Province,Still Bay,Surfing,Peter McCallum,M,Torso lacerated,N,P. McCallum,"M. Levine,GSAF; M.A. Reade",http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.13-McCallum.pdf +3450,1987.08.20,20-Aug-87,1987,Unprovoked,Usa,Florida,"Satellite Beach, Brevard County",Wading,Gary Kritlow,M,Lower left leg lacerated,N,D. Scruggs,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.20-Kritlow.pdf +3449,1987.08.15,15-Aug-87,1987,Unprovoked,Usa,California,"Tunitas Beach, San Mateo County",Surfing (sitting on his board),Craig Rogers,M,Fingers & surfboard injured,N,R. Collier,pp.99-100 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.15-Rogers_Collier.pdf +3448,1987.07.21,21-Jul-87,1987,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Egor Emery,M,Right foot & ankle lacerated,N,Orlando Sentinel,7/22/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.21-Emery.pdf +3447,1987.07.12.b,12-Jul-87,1987,Unprovoked,Usa,Texas,"Mustang Island, near Port Aransas",Body surfing,Carol Viau,F,Left foot bitten,N,Dallas Morning News,7//14/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.b-CarolViau.pdf +3446,1987.07.12.a,12-Jul-87,1987,Unprovoked,Usa,Texas,"Mustang Island, near Port Aransas",Wading,Brenda King,F,Puncture wounds to right foot,N,Dallas Morning News,7//14/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.a-BrendaKing.pdf +3445,1987.07.11,11-Jul-87,1987,Boat,Usa,South Carolina,Winyah Bay,Dropping anchor,"17' fishing boat. Occupants, Bubba DeMaurice, his wife & daughter",Unknown,No injury to occupants. Shark grabbed anchor ,N,Great White Sharks of the Carolinas and Georgia by J. Hairr,,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.11-DeMaurice-boat.pdf +3444,1987.07.09,09-Jul-87,1987,Unprovoked,Bahamas,Exuma Islands,Sampson Cay,Snorkeling,male from pleasure craft Press On Regardless,M,Right leg bitten,N,Miami Herald,7/10/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.09-Bahamas.pdf +3443,1987.07.00,Jul-87,1987,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Ken Austin,M,Puncture marks to torso,N,E.Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.00-Austin.pdf +3442,1987.06.13,13-Jun-87,1987,Provoked,Usa,Florida,"Nest Key, Monroe County",Fishing,Josh Schrutt ,M,Left hand bitten by shark he was dragging ashore by its head PROVOKED INCIDENT,N,Miami Herald,6/14/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.06.13-Schrutt.pdf +3441,1987.05.25,25-May-87,1987,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Unknown,Josia McSpadden,M,"6"" cut to thigh",N,Charlotte Observer,5/28/1987 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.25-JosiaMcSpadden.pdf +3440,1987.05.08,08-May-87,1987,Unprovoked,Usa,Florida,"St Augustine, St. Johns County",Surfing,Robert Gault,M,Hand lacerated ,N,Orlando Sentinel,5/10/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.08-Gault.pdf +3439,1987.05.06,06-May-87,1987,Provoked,Australia,New South Wales,Unknown,Fishing,Keith Appleby,M,3 fingers severed by metal trace as he tried to haul in a hooked shark. PROVOKED ACCIDENT,N,Courier Mail,5/7/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.06-Appleby.pdf +3438,1987.04.19,19-Apr-87,1987,Invalid,South africa,KwaZulu-Natal,Port Shepstone,Fishing,Mr. Perumal,M,"Slipped off rocks & was treading water when he disappeared, body mutilated by shark/s",Y,G. Charter,R. B. Wilson,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.19-Perumal.pdf +3437,1987.04.18,18-Apr-87,1987,Unprovoked,Usa,Texas,"Mustang Island, near Port Aransas",Swimming,April Dawn Vogelino,F,Right arm severed above elbow,N,"Orlando,Sentinel",4/19/ 1988. p. A12; Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.18-Vogelino.pdf +3436,1987.04.15,15-Apr-87,1987,Unprovoked,Usa,Hawaii,"Kailua-Kona, Hawai'i",Swimming from shore to anchored sailboat,Daniel Kennedy,M,"Presumed FATAL Disappeared, his shark-bitten swim trunks were found on the seafloor",Y,J. Borg,p.76; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.15-Kennedy.pdf +3435,1987.04.01,01-Apr-87,1987,Unprovoked,Vanuatu,Malampa Province,Vao Island,Swimming,male,M,FATAL,Y,S. Combs,,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.01-Vanuatu.pdf +3434,1987.03.30.b,30-Mar-87,1987,Unprovoked,Australia,Western Australia,Fourth Beach / Twilgth Beach,Surfing,Grantley Butcher,M,Calf lacerated,N,Courier-Mail,4/2/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.b-Butcher.pdf +3433,1987.03.30.a,30-Mar-87,1987,Provoked,South africa,Western Cape Province,Muizenberg,Unknown,"3 m skiboat Talisman, occupants Dennis Langenhoven, Philip Schoeman, Ross Lindsay, Steven Riley & Peter Schuets",Unknown,"No injury to occupants, boat holed by hooked shark PROVOKED INCIDENT",N,T. Wallett; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.a-Talisman.pdf +3432,1987.02.28,28-Feb-87,1987,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Windsurfing,Gary Landwirth,M,"Lacerations to toe, heel & ankle of right foot",N,"Sun Sentinel. Fort Lauderdale, 3/2/1987, p. 4B",,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.28-Landwirth.pdf +3431,1987.02.19,19-Feb-87,1987,Sea Disaster,Solomon islands,Between Honiara & Isabel Island,Unknown,The inter-island ferry Vula sank in heavy weather,2 people,Unknown,FATAL,Y,Courier Mail,2/26/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.19-SolomonIslands.pdf +3430,1987.01.28,28-Jan-87,1987,Unprovoked,South africa,Eastern Cape Province,Eerste River,Spearfishing,Tommy Botha,M,Puncture wounds to right hand,N,T. Botha,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.28-TommyBotha.pdf +3429,1987.01.06,06-Jan-87,1987,Unprovoked,Australia,Queensland,Lizard Island,Swimming,Alessandro Russo,M,Right leg lacerated,N,Sydney Morning Herald; Courier-Mail 1/8/1987,p.2,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.06-Russo.pdf +3428,1987.00.00.b,1987,1987,Invalid,Montenegro,Adriatic Sea,"Mogren Beach, Budva",Jumped into the water from a cliff,a student from Belgrade,M,FATAL,Y,D. Ljusic,,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Budva.pdf +3427,1987.00.00.a,1987,1987,Boat,Italy,Tyrrhenian Sea,"Marciana Marina, Isola d'Elba",Boat,Aniello Mattera and Giorgio Allori,M,No injury,N,A. De Maddalena; Perfetti (1989),M. Zuffa (pers. Comm.),http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.a-boat-Mattera-Allori.pdf +3426,1986.12.31,31-Dec-86,1986,Unprovoked,South africa,Western Cape Province,Agulhas Banks,Spearfishing,Pierre deWet,M,2 punctures in lower leg,N,P. deWet,E. Lombard,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.31-deWet.pdf +3425,1986.12.22,22-Dec-86,1986,Unprovoked,South africa,Western Cape Province,SAOU Strand,Body boarding,Richardt Anton Olls,M,"FATAL, legs bitten ",Y,G. Geldenhuys,W. Roos,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.22-Olls.pdf +3424,1986.12.11,11-Dec-86,1986,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Bob Earnhardt,M,Forearm bitten,N,Orlando Sentinel,12/12/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.11-Earnhardt.pdf +3423,1986.12.06.b,06-Dec-86,1986,Unprovoked,Bahamas,Florida Straits,Off Cay Sal Banks,Adrift after ditching plane in the sea,Wyatt Walker,M,"No injury, bumped by sharks",N,Orlando Sentinel,12/9/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.b-Walker.pdf +3422,1986.12.06.a,06-Dec-86,1986,Unprovoked,Usa,California,"Monastery Beach, Carmel River State Park, Monterey Peninsula, Monterey California",Free diving & spearfishing (submerged),Frank Gallo,M,"Punctured lung, lacerations to shoulder, face, jaw, neck & forearm",N,R. Collier,pp.98-99; Atlanta Journal-Constitution,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.a-Gallo.pdf +3421,1986.12.04,04-Dec-86,1986,Invalid,South africa,Western Cape Province,Platbank,Spearfishing,Rory O’Connor,M,"No injury, no attack, shark made threat displays",N,R. O'Connor,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.04-O'Connor.pdf +3420,1986.12.00,Dec-86,1986,Unprovoked,New caledonia,Unknown,I'le Ouen,Spearfishing,Maurice Lilloux,Unknown,Right leg bitten,N,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.00.b-Maurice_Lilloux.pdf +3419,1986.11.30,30-Nov-86,1986,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Surfing,Brad Bowen,M,5' gash in leg,N,Orlando Sentinel,11/30/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.30-Bowen.pdf +3418,1986.11.19,19-Nov-86,1986,Unprovoked,Usa,Florida,"Indiatlantic, Brevard County",Surfing,Keith Helm,M,Laceration to dorsum of left foot,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.19-Helm.pdf +3417,1986.11.04,04-Nov-86,1986,Unprovoked,Usa,Florida,"Tiger Shores Beach, Martin County",Surfing,Daniel Lund,M,Ankle bitten,N,Miami Herald,11/5/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.04-Lund.pdf +3416,1986.10.17,17-Oct-86,1986,Provoked,South africa,KwaZulu-Natal,Umhlanga,NSB Meshing,Kliki Ndlazi,M,Minor lacerations & puncture wounds to right leg from netted shark taken onboard skiboat PROVOKED INCIDENT,N,K. Ndlazi,R. Gardiner,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.17-Ndlazi.pdf +3415,1986.10.03,03-Oct-86,1986,Unprovoked,Usa,Florida,"Sanibel Island, Lee County",Swimming,Luz Helena Florez,F,Hip & thigh bitten,N,E. Pace; C. Call; Orlando Sentinel,10/6/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.03-Florez.pdf +3414,1986.10.05,05-Oct-86,1986,Unprovoked,South africa,KwaZulu-Natal,St. Michaels,Racing ski,James Speirs,M,"No injury, ski bitten",N,J. Spiers,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.05-Spiers.pdf +3413,1986.10.01,01-Oct-86,1986,Unprovoked,Australia,Western Australia,"Direction Island, Cocos Islands",Unknown,Crawford,Unknown,No details,UNKNOWN,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.01-NV-Crawford.pdf +3412,1986.10.00,Oct-86,1986,Unprovoked,Usa,Florida,"Floridana Beach, Brevard County",Surfing,Ron Dubois,M,Laceration to right arm,N,R.D. Weeks,GSAF; E. Pace,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.00-Dubois.pdf +3411,1986.09.22.R,22-Sep-1986 ,1986,Invalid,Usa,Florida,"Pinellas Point, Tampa Bay",Unknown,Unknown,Unknown,Human hand recovered from shark's stomach,N,Orlando Sentinel,9/22/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.22.R-hand-in-shark.pdf +3410,1986.09.00.b,Sep-86,1986,Unprovoked,Usa,Florida,"Ormond Beach / Daytona Beach, Volusia County",Surfing,Anonymous,Unknown,Survived,N,Orlando Sentinel. 9/20/1986,,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.b-surfer.pdf +3409,1986.09.00.a,Sep-86,1986,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Anonymous,Unknown,Hand bitten,N,Orlando Sentinel. 9/20/1986,,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.a-surfer.pdf +3408,1986.08.19,19-Aug-86,1986,Unprovoked,Usa,North Carolina,"Masonboro Inlet, New Hanover County",Surfing,J. McCorley,Unknown,Hand bitten,N,F. Schwartz,p.23,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.19-McCorley.pdf +3407,1986.08.10,10-Aug-86,1986,Invalid,South africa,Western Cape Province,Reef on seaward side of Geyser Island,Spearfishing,Phllip DeBruyn,M,"No injury, shark made threat display & impaled itself on spear ",N,P. DeBruyn,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.10-DeBruyn.pdf +3406,1986.08.03,03-Aug-86,1986,Unprovoked,Australia,New South Wales,"North Head, Sydney Harbour",Scuba diving,Margaret Bowen Jones,F,Survived,N,Australian Shark Attack File,,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.03-Bowen-Jones.pdf +3405,1986.08.00,Aug-86,1986,Unprovoked,France,Gulf of Lyons,Gruissan,Unknown,Unknown,Unknown,Survived,N,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.00-NV-France.pdf +3404,1986.07.26,26-Jul-86,1986,Boat,Australia,Western Australia,3 km west of Rottnest Island,Fishing,"5.4 m boat, occupant: Ivan Anderton",Unknown,"No injury to occupants. Shark bit motor, lifting stern a half-metre out of the water",N,A. Sharpe,p.134,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.26-boat-Anderton.pdf +3403,1986.07.09,09-Jul-86,1986,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Unknown,Jack Serafino,M,Back of left thigh bitten,N,Charlotte Observer,9/9/1986 & 9/11/1986 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.09-JackSerafino.pdf +3402,1986.07.00.a,Jul-86,1986,Unprovoked,South africa,KwaZulu-Natal,LaMercy,Spearfishing,Ludwig Gerricke,M,Minor lacerations on left hand,N,L. Gerricke,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.00.a-Gerricke.pdf +3401,1986.05.18,18-May-86,1986,Unprovoked,Australia,New South Wales,"North Head, Sydney Harbour",Scuba diving,Daniel Neumann,M,Survived,N,Australian Shark Attack File,,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.18-Neumann.pdf +3400,1986.05.15,15-May-86,1986,Unprovoked,Unknown,Unknown,Unknown,Shell diving,male,M,FATAL,Y,Y. Choi & K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.15-SouthKorea.pdf +3399,1986.04.20,20-Apr-86,1986,Unprovoked,Usa,Hawaii,"Kaliiwi, Kauai","Fishing, fell from rocks & disappeared",Levi Chandler,M,Pieces of clothing & human flesh recovered by Fire Department divers who encountered a large shark,Y,J. Borg,p.76,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.20-Chandler.pdf +3398,1986.04.00,Apr-86,1986,Unprovoked,Spain,Catalonia,Lloret-de-Mar,Diving,Unknown,M,Abrasions,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.00-Lloret-de-Mar-diver.pdf +3397,1986.03.18,18-Mar-86,1986,Unprovoked,Spain,Cádiz,Tarifa ,Windsurfing,J. L Pérez-Díaz,M,Foot severed,N,A. DeMaddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.18-Diaz.pdf +3396,1986.03.15,15-Mar-86,1986,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Treading water,Anton Bouwer,M,Foot bitten,N,A. Bouwer,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.15-Bouwer.pdf +3395,1986.03.05,05-Mar-86,1986,Unprovoked,South africa,Eastern Cape Province,"The Fence, King's Beach, Port Elizabeth",Surfing,McDonald van der Merwe,M,"No injury, board struck by shark",N,Eastern Province Herald,3/6/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.05-VanDerMerwe.pdf +3394,1986.02.18,18-Feb-86,1986,Unprovoked,South africa,Eastern Cape Province,East London,Surfing,Shaun Carcary,M,"No injury, board bitten",N,S. Carcary,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.18-Carcary.pdf +3393,1986.02.17,17-Feb-86,1986,Unprovoked,South africa,Eastern Cape Province,Cape Recife,Surfing,John Fick,M,"No injury, knocked off board",N,J. Fick,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.17-Fick.pdf +3392,1986.02.07,07-Feb-86,1986,Unprovoked,South africa,Eastern Cape Province,"King's Beach, Port Elizabeth",Swimming,Johan Fourie,M,Lower leg lacerated,N,J. Fourie,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.07-Fourie.pdf +3391,1986.02.06,06-Feb-86,1986,Unprovoked,South africa,Western Cape Province,Arniston,Spearfishing,Michael Taljaard,M,2 punctures in upper arm,N,M. Taljaard,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.06-Taljaard.pdf +3390,1986.02.01,01-Feb-86,1986,Unprovoked,Australia,Victoria,Jan Juc Beach,Surfing,David Adams,M,"No injury, knocked into water & board bitten",N,Sun,2/3/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.01-Adams.pdf +3389,1986.01.12,12-Jan-86,1986,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Christopher Blissel,M,Puncture wounds to both feet,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.01.12-Blissel.pdf +3388,1986.00.00,1986,1986,Unprovoked,Usa,California,"Linda Mar Beach, Pedro Point, San Mateo County",Surfing,Max Lagao,M,"No injury, foot bumped",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.00.00-Lagao.pdf +3387,1985.12.22,22-Dec-85,1985,Unprovoked,South africa,KwaZulu-Natal,Garvies Beach,Surfing,Tony Moolman and another surfer,M,"Both surfers boards were bumped by sharks, Moolman sustained abrasions on his arm and leg",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.22-GarviesBeach.pdf +3386,1985.12.10,10-Dec-85,1985,Unprovoked,Usa,North Carolina,New Hanover County,Unknown,male,M,Survived,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.10-NV-NorthCarolina.pdf +3385,1985.11.11,11-Nov-85,1985,Provoked,Australia,Queensland,Gladstone,Fishing,Richard Lynch,M,Laceration to lower left leg by hooked shark PROVOKED INCIDENT,N,Courier Mail,11/13/1985,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.11-Lynch.pdf +3384,1985.11.05,05-Nov-85,1985,Boat,Usa,California,"Southeast Farallon Island, Farallon Islands",Boat,3 m inflatable boat tied to buoy (no occupants),Unknown,2 semi-circular bites on aft starboard tube of boat,N,R. Collier,pp.178-179,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.05-Klimley_Collier.pdf +3383,1985.11.03,03-Nov-85,1985,Provoked,Usa,California,5 miles south of Redondo Beach,Fishing,Brad Koune,M,Forearm bitten by hooked shark PROVOKED INCIDENT,N,Los Angles Times,11/5/1985,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.03-Koune.pdf +3382,1985.10.24,24-Oct-85,1985,Unprovoked,South africa,Eastern Cape Province,East London,Body boarding,Patrick Gee,M,"Left leg severely lacerated, superficial lacerations of right leg, board damaged",N,P. Gee,Dr. K. A. Watt,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.24-Gee.pdf +3381,1985.10.22,22-Oct-85,1985,Unprovoked,Usa,California,"Point Conception, Santa Barbara County",Hookah diving for abalone,Gary Johnson,M,Minor injury to foot & ankle,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.22-Johnson_Collier.pdf +3380,1985.10.18,18-Oct-85,1985,Unprovoked,Usa,Hawaii,"Little Glass Shacks, Princeville, Kaua'i",Body boarding,Joe Thompson,M,"Right hand and part of forearm severed , left hand lacerated, right anterior side of board removed by shark",N,Syracuse Journal-Herald,10/21/1985; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.18-Thomson.pdf +3379,1985.10.12,12-Oct-85,1985,Unprovoked,Usa,Hawaii,"Barbers Point, O'ahu",Floating on inner tube after diving for lobster,Dominic Dela Cruz,M,Left arm lacerated,N,J. Borg,p.76; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.12-DelaCruz.pdf +3378,1985.10.05, 05-Oct-1985,1985,Provoked,Usa,Alabama,"Gulf Shores, Baldwin County",Fishing,Bruce Doss,M,Laceration to leg by hooked shark PROVOKED INCIDENT,N,Syracuse Herald,10/10/1985 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.05-Doss.pdf +3377,1985.09.28,28-Sep-85,1985,Unprovoked,Usa,California,"Elephant Rock near Tomales Point, Marin County",Free diving & spearfishing (descending),Rolf Ridge,M,"Hip bumped by shark, no Injury",N,J. McCosker & R.N. Lea; R. Collier,p.97,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.28-Ridge_Collier.pdf +3376,1985.09.08.b,08-Sep-85,1985,Invalid,South africa,KwaZulu-Natal,T.O. Strand,Swimming,A.M.,M,Probable drowning / scavenging,Y,G. Charter, D. Groger,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.b-A.M.pdf +3375,1985.09.08.a,08-Sep-85,1985,Unprovoked,Usa,Florida,"Palm Beach, Palm Beach County",Scuba diving,Morris M. Vorenberg,M,Laceration and 4 puncture wounds to left hand,N,M. Vorenburg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.a-Vorenberg.pdf +3374,1985.09.05,05-Sep-85,1985,Invalid,Usa,Florida,"Fort Pierce Inlet, St Lucie County",Swimming,Jeff Justice,M,Found to be a hoax,N,Orlando Sentinel,9/7/1985 ; Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.05-Justice.pdf +3373,1985.08.22,22-Aug-85,1985,Unprovoked,Usa,South Carolina,"Palmetto Dunes, Hilton Head, Beaufort County",Wading,Joseph Friedlander,M,Right calf bitten & less serious injury to left foot,N,Sumter Daily Item,8/23/1985,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.22-Friedlander.pdf +3372,1985.08.20,20-Aug-85,1985,Invalid,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Danny Prendgeast,M,"3"" wound on thigh",N,Orlando Sentinel,8/21//1985,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.20-Prendgeast.pdf +3371,1985.08.17,17-Aug-85,1985,Invalid,Usa,Florida,"Bayport, Hernando County",Scuba diving,Thomas Robert Sewell,M,Body not recovered. 3 days later some of his equipment was found on seabed appeared damaged by a shark ,Y,E. Pace,GSAF; J. McAniff,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.17-Sewell.pdf +3370,1985.07.25.b,25-Jul-85,1985,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Wading,Robin Lyons,F,Right calf bitten,N,"M. McKee,Orlando Sentinel",7/30/1985,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.b-Lyons.pdf +3369,1985.07.25.a,25-Jul-85,1985,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Lee,M,Hand bitten,N,"M. McKee,Orlando Sentinel",7/30/1985,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.a-JasonLee.pdf +3368,1985.07.21,21-Jul-85,1985,Boat,Usa,California,"Off Shelter Cover (between Fort Bragg & Eureka), Humboldt County",Bottom fishing for lingcod & had hooked a fish,4.9 m fibreglass boat. Occupant: Jack Siverling,Unknown,"No injury to occupant, shark rammed boat catapulting it out of the water",N,R. Collier,p.172,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.21-Siverling_Collier.pdf +3367,1985.07.19,19-Jul-85,1985,Unprovoked,Usa,South Carolina,"Folly Beach, Charleston County",Playing in knee-deep water,Julie Steed,F,2/3rd of left calf removed,N,Atlanta Journal-Constitution,7/22&23/1985 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.19-Steed.pdf +3366,1985.07.00,Mid Jul-1985 or mid Jul-1986,1985,Unprovoked,Italy,Sicily,Punta Secca,Snorkeling,Neil Montoya,M,Contusion of left foot,N,A. De Maddalena; De Maddalena (2001),N. Montoya (pers. comm.),http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.00-Montoya.pdf +3365,1985.05.26,26-May-85,1985,Unprovoked,Usa,California,"Long Beach, Los Angeles County","Surfing, but lying prone on his board",Robert Rodriquez,M,Leg injured,N,R. Collier,p.86,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.26-Rodriquez_Collier.pdf +3364,1985.05.08,08-May-85,1985,Provoked,South africa,KwaZulu-Natal,Umdhloti,Spearfishing,Sikketho Denge,M,"After diver shot shark attempting to take his catch, shark bit right arm & tore wetsuit PROVOKED INCIDENT",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.08-Denge.pdf +3363,1985.03.16,16-Mar-85,1985,Unprovoked,Usa,Florida,"Palm Beach, Palm Beach County",Surfing,David Zarnowski,M,Hand bitten,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.16-NV-Zarnowski.pdf +3362,1985.03.03,03-Mar-85,1985,Unprovoked,Australia,South Australia,"Wiseman’s Beach, Peake Bay, Port Lincoln",Free diving for scallops,Shirley Anne Durdin,F,FATAL,Y,A. MacCormick,pp.76-79; H. Edwards,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.03-Durdin.pdf +3361,1985.02.18,18-Feb-85,1985,Unprovoked,Usa,California,"San Miguel Island, Santa Barbara County",Scuba Diving for lobster (at surface),Chris Massahos,M,Bruised,N,R. Collier,pp.95-96,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.18-Massahos_Collier.pdf +3360,1985.02.03,03-Feb-85,1985,Unprovoked,Usa,Florida,"15 miles north of Sebastian Inlet, Brevard County",Surfing,Michael Mesiano,M,Right foot bitten,N,Miami Herald,2/4/1985,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.03-Mesiano.pdf +3359,1985.01.27,27-Jan-85,1985,Unprovoked,South africa,Western Cape Province,Struisbaai,Swimming,Marius Botha,M,"Right knee, calf and ankle lacerated",N,M. Botha,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.27-Botha.pdf +3358,1985.01.18,18-Jan-85,1985,Invalid,South africa,KwaZulu-Natal,Umzimkulu,Unknown,Herbert Base,M,Probable drowning / scavenging,Y,G. Cliff,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.18-Base.pdf +3357,1985.01.17,17-Jan-85,1985,Unprovoked,South africa,KwaZulu-Natal,Umbogintwini,Surfing,Bruce Eldridge,M,Thigh & calf bitten,N,B. Eldridge,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.17-Eldridge.pdf +3356,1985.01.16,16-Jan-85,1985,Boat,New zealand,South Island,Christchurch,Investigating shark sighting,"small speedboat, occupan: Paul McNally",Unknown,"No injury to occupant, shark bit boat",N,Courier-Mail,1/17/1985,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.16-McNally-boat.pdf +3355,1985.01.04,04-Jan-85,1985,Unprovoked,South africa,Western Cape Province,"Buffels Bay, False Bay",Spearfishing,Donald James,M,Minor injury to torso,N,D. James,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.04-DonJames.pdf +3354,1985.01.00.b,Jan-85,1985,Unprovoked,New caledonia,South Province,Amedee Island,Spearfishing,Jean Rene Mathelon,Unknown,Legs bitten ,N,W. Leander; Les Nouvelles Caledoniennes,3/17/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.b-Mathelon.pdf +3353,1985.01.00.a,Jan-85,1985,Provoked,South africa,KwaZulu-Natal,Salt Rock,Spearfishing,Barry Allan Coppin,M,Upper right arm bitten after he shot the shark PROVOKED INCIDENT,N,B. Coppin,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.a-Coppin.pdf +3352,1985.00.00.f,1985,1985,Unprovoked,Vanuatu,Malampa Province,"Port Sandwich Bay, Lamap, Malakula",Unknown,American child,M,FATAL,Y,S. Combs,,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.f-Vanuatu.pdf +3351,1985.00.00.a,1985,1985,Unprovoked,Iran,Unknown,"Ramin, near Ahvaz",Fishing,male,M,FATAL,Y,B. Coad & F. Papahn,,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.a-Fisherman.pdf +3350,1984.12.03,03-Dec-84,1984,Boat,Italy,Tyrrhenian Sea,"Marciana Marina, Isola d'Elba",Boat,Unknown,Unknown,No injury,N,A. De Maddalena; F. Serena (pers. Comm.),,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.12.03-boat-Elba.pdf +3349,1984.11.30,30-Nov-84,1984,Unprovoked,Australia,Queensland,1 km off Black's Beach,Sailing on catamaran & fell into the water,Nicholas Bos,M,FATAL,Y,Courier-Mail,12/1/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.30-NicholasBos.pdf +3348,1984.11.11,11-Nov-84,1984,Unprovoked,Usa,Florida,"Jupiter Island Beach, Martin County",Surfing,Cooper Stetson,M,Left foot bitten,N,Miami Herald,11/18/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.11-Stetson.pdf +3346,1984.11.04,04-Nov-84,1984,Provoked,Usa,Florida,"Fowey Rock, Key Biscayne",Spearfishing,Andres Ferro,M,"Speared shark bit diver's right knee, and lacerated right thigh & buttocks PROVOKED INCIDENT",N,Miami Herald,11/5/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.04-Ferro.pdf +3345,1984.10.21.b,21-Oct-84,1984,Invalid,Usa,Florida,"Wabasso Beach, Indian River County",Swimming,Larry Peebles,M,"Disappeared, 1 mile from where Sandra Fletcher was bitten. Death was due to drowning",Y,Evening Independent,10/24/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.b-Peebles.pdf +3344,1984.10.21,21-Oct-84,1984,Unprovoked,Usa,Florida,"3 miles south of Sebastian Inlet State Park, Indian River County",Surfing or body surfing,Sandra Fletcher,F,"9"" laceration to right forearm ",N,Miami Herald,10/24/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.a-Fletcher.pdf +3343,1984.10.17,17-Oct-84,1984,Invalid,Usa,Florida,"Boynton Beach, Palm Beach County",Wading,Mary Dunn,F,"10"" laceration on leg",N,Miami Herald,10/18/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.17-Dunn.pdf +3342,1984.10.14.a,14-Oct-84,1984,Unprovoked,Usa,Florida,"Bob Graham Beach, Martin County",Surfing,Thomas C. Westberg ,M,Left calf bitten,N,Miami Herald,10/16/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.14.a-Westberg.pdf +3341,1984.09.30.b,30-Sep-84,1984,Unprovoked,Usa,Oregon,"""Turnaround"", Cape Kiwanda, Tillamook County",Surfing (sitting on his board),Robert Rice,M,"Abrasion on right foot, board bitten",N,R. Collier,pp.94-95,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.b-Rice_Collier.pdf +3340,1984.09.30.a,30-Sep-84,1984,Unprovoked,Usa,California,"Tomales Point, Marin County","Free diving , but surfacing",Paul Parsons,M,Legs & buttocks bitten,N,R. Collier,pp.93-94,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.a-Parsons_Collier.pdf +3339,1984.09.23,23-Sep-84,1984,Unprovoked,Usa,Florida,Volusia County,Surfing,William Miller,M,Right foot bitten,N,Miami Herald,9/26/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.23-Miller.pdf +3338,1984.09.22.b,22-Sep-84,1984,Unprovoked,Usa,Florida,Unknown,Swimming,male from Tampa,M,Left foot lacerated,N,Miami Herald,9/26/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.b-ElderlyMale.pdf +3337,1984.09.22.a,22-Sep-84,1984,Unprovoked,Usa,Florida,"Indiatlantic, Brevard County",Surfing,Anthony Carter,M,Foot bitten,N,Miami Herald,9/26/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.a-AnthonyCarter.pdf +3336,1984.09.19,19-Sep-84,1984,Unprovoked,Usa,Florida,Volusia County,Swimming,Unknown,Unknown,No details,UNKNOWN,Miami Herald,9/26/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.19-VolusiaCounty.pdf +3335,1984.09.17,17-Sep-84,1984,Unprovoked,Usa,California,"Mission Beach, San Diego County",Wading,Brian Cramer,M,Arm bitten,N,R. Collier,p.93 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.17-Cramer_Collier.pdf +3334,1984.09.15,15-Sep-84,1984,Unprovoked,Usa,California,"Pigeon Point, San Mateo County",Skindiving,Omar Conger,M,FATAL,Y,R. Collier,p. 72,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.15-Conger_Collier.pdf +3333,1984.09.11,11-Sep-84,1984,Provoked,Mexico,Baja California,Guadalupe Island,Spearfishing,Harry Ingram,M,"No Injury, PROVOKED INCIDENT",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.11-Ingram.pdf +3332,1984.08.24,24-Aug-84,1984,Invalid,Usa,Florida,"Off Crystal River, Citrus County",Boat capsized?,T. Washington,F,Death was due to drowning; body scavenged by a shark,Y,St. Petersburg Times,11/20/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.24-Washington.pdf +3331,1984.08.07,07-Aug-84,1984,Unprovoked,Indonesia,Unknown,Bali,"Sea disaster, foundering of the cargo vessle M/V Dorolonda",9 crewmen,M,FATAL,Y,Courier Mail,8/15/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.07-Dorolonda.pdf +3330,1984.07.24.b,24-Jul-84,1984,Unprovoked,Usa,Texas,South Padre Island,Swimming,girl,F,Lacerations on right foot,N,A. MacCormick,pp.8-9,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.b-girl.pdf +3329,1984.07.24.a,24-Jul-84,1984,Unprovoked,Usa,Texas,South Padre Island,Swimming,Carmen Gaytan,F,Legs severely lacerated,N,A. MacCormick,pp.8-9,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.a-Gaytan.pdf +3328,1984.07.22,22-Jul-84,1984,Invalid,South africa,Western Cape Province,Cape Point,Spearfishing,Adrian Hayman,M,"FATAL, but shark involvement prior to death could not be determined",Y,P. Landsberg,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.22-Hayman.pdf +3327,1984.07.01,01-Jul-84,1984,Unprovoked,Usa,Florida,Unknown,"During a shark fishing tournament, the 18' Boatem was capsized by waves, throwing 3 men into the water ",William McConnell,M,Leg abraded,N,New Orleans Times-Picayune,3 July 1984; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.01-McConnell.pdf +3326,1984.07.00.a,Jul-84,1984,Unprovoked,South africa,KwaZulu-Natal,Sodwana,Spearfishing,Rory O’Connor,M,"No injury, shark hit swim fin",N,R O'Connor,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.00-O'Connor.pdf +3325,1984.06.15,15-Jun-84,1984,Unprovoked,South africa,Western Cape Province,"Muizenberg, False Bay",Surfing,Selwyn Doran,M,"No injury, board bitten",N,The Argus,6/16/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.15-Doran.pdf +3324,1984.06.03.b,03-Jun-84,1984,Unprovoked,Usa,Hawaii,"Kane'ohe Bay, O'ahu",Towing her sister on plastic ski board,Susan Buecher,F,Foot bitten,N,J. Borg,p.76; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03.b-Buecher.pdf +3323,1984.06.03,03-Jun-84,1984,Unprovoked,Vanuatu,Malampa Province,"Atchin Island, off Malakula",Swimming,Felix Brem,M,FATAL,Y,Telegraph,6/8/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03-Brem.pdf +3322,1984.05.31,31-May-84,1984,Unprovoked,South africa,Western Cape Province,Arniston,Spearfishing,Anton Bosman,M,Swim fin bitten,N,A. Bosman,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.05.31-Bosman.pdf +3321,1984.03.17,17-Mar-84,1984,Invalid,Unknown,Unknown,Unknown,Murder,11 stoways,M, Forced at gunpoint to jump overboard. Presumed fatal; shark involvement probable but not confirmed ,Y,Courier Mail,5/18/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.17-Eleven-stowaways.pdf +3320,1984.03.14,14-Mar-84,1984,Unprovoked,South africa,KwaZulu-Natal,Amanzimtoti,Surfing,Mark Benvick,M,"No injury, 8 pressure dings in surboard",N,G. Charter,NSB; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.14-Benvick.pdf +3319,1984.03.10,10-Mar-84,1984,Boat,South africa,Eastern Cape Province,Swartkops River mouth,Rowing,"rowboat, occupant: Louis Beyers",M,"No injury to occupant, shark seized oar and disappeared with it.",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.10-Beyers.pdf +3318,1984.03.01,01-Mar-84,1984,Unprovoked,Australia,Western Australia,Coral Bay,Unknown,Greenwood,Unknown,No details,UNKNOWN,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.01-NV-Greenwood.pdf +3317,1984.02.18,18-Feb-84,1984,Provoked,South africa,Eastern Cape Province,"Paradise Beach, Jeffrey’s Bay",Fishing,Henri deVilliers Melville,M,Leg lacerated by hooked shark PROVOKED INCIDENT,N,M. Levine,GSAF; Eastern Province Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.18-Melville.pdf +3316,1984.02.17,17-Feb-84,1984,Provoked,South africa,KwaZulu-Natal,"Shark tank at Oceanographic Research Insitute, Durban",Scuba diving,George Buckland,M,Punctures in wetsuit & left arm bruised by captive shark PROVOKED INCIDENT,N,G. Buckland,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.17-Buckland.pdf +3315,1984.02.12,12-Feb-84,1984,Invalid,South africa,Eastern Cape Province,St. George’s Strand,Unknown,Unknown,Unknown,"Human remains recovered, evidence of scavenging by shark/s",Y,G. Charter,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.12-StGeorgesStrand.pdf +3314,1984.02.11,11-Feb-84,1984,Unprovoked,Australia,Queensland,Derwent Island,Spearfishing,Greg Pearce,M,Hand bitten,N,Courier-Mail,2/14/1984,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.11-Pearce.pdf +3313,1984.01.05,05-Jan-84,1984,Unprovoked,South africa,Eastern Cape Province,Port Alfred,Swimming,Robert Tennent,M,Foot bitten,N,R. Tennent,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.05-Tennent.pdf +3312,1984.01.04,04-Jan-84,1984,Unprovoked,South africa,KwaZulu-Natal,Umlaas Canal,Unknown,female,F,Remains recovered 1-4-1984 showed evidence of defense wounds,Y,G. Charter,B. Davis & G. Cliff,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.04-UmlaasCanal.pdf +3311,1984.00.00.b,1984,1984,Provoked,Usa,California,San Francisco,Steinhart Aquarium,Don C. Reed,M,Head mouthed by captive shark PROVOKED INCIDENT,N,D.C. Reed,,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.b-Reed.pdf +3310,1984.00.00.a,1984,1984,Unprovoked,Usa,Florida,"Indiatlantic, Brevard County",Surfing,Eric Schwarze,M,Right foot bitten,N,M. Vosburgh,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.a-Schwarze.pdf +3309,1983.12.30,30-Dec-83,1983,Invalid,Greece,Andikira Fokithes,Unknown,Spearfishing,Ioannis Chrysafis,M,"Coroner determined the man was killed by a boat propeller, not a tiger shark",Y,Miami Herald,1/4/1984; M. Bardanis,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.30-Chrysafis.pdf +3308,1983.12.25,25-Dec-83,1983,Unprovoked,Usa,Florida,"Riviera Beach, Palm Beach County",Surfing,Jeff Herrin,M,Left foot & thigh bitten,N,Palm Beach Post,12/26/1983 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.25-Herrin.pdf +3307,1983.12.24,24-Dec-83,1983,Unprovoked,Australia,South Australia,"Dangerous Reef, South Neptune Island",Scuba diving for abalone,Neil Williams,M,Fingers bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.24-Williams.pdf +3306,1983.12.22,22-Dec-83,1983,Unprovoked,South africa,Eastern Cape Province,Great Fish River,Swimming,Colin Biggs,M,"Left calf, ankle & foot lacerated",N,C. Biggs,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.22-Biggs.pdf +3305,1983.12.21,21-Dec-83,1983,Unprovoked,South africa,Eastern Cape Province,Nahoon,Swimming,Jack Heydenrych,M,Shin lacerated,N,R. Horn,East London Aquarium; J. Heydenrych,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.21-Heydenrych.pdf +3304,1983.12.07,07-Dec-83,1983,Invalid,South africa,KwaZulu-Natal,LaMercy,Unknown,male,M,"Two feet found in shark, postmortem scavenging",N,R.B. Wilson ,G. Cliff,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.07-feet.pdf +3303,1983.11.21,21-Nov-83,1983,Sea Disaster,Philippines,Central Philippines,Unknown,Ferry boat sank,Arturo Garces,M,Left foot nipped,N,Montreal Gazette,11/28/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.21-FerryDisaster.pdf +3302,1983.11.10.R, 10-Nov-1983,1983,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,Michael Burns,M,Laceration to left foot,N,St. Petersburg Times,11/10/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.R-Michael-Burns.pdf +3301,1983.11.10,10-Nov-83,1983,Invalid,South africa,KwaZulu-Natal,Tongaat,Swimming,Pradisha Chanderpaul,F,Probable drowning and scavenging,Y,R. Wilson,G. Cliff,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.a-Chanderpaul.pdf +3300,1983.10.17.a,17-Oct-83,1983,Unprovoked,Usa,Florida,"Stuart Beach, Martin County",Surfing,Aryon Kalein,M,Puncture marks in leg & surfboard dinged,N,Miami Herald,10/21/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.17.a-Kalein.pdf +3299,1983.10.13,13-Oct-83,1983,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Wading,Charles Hundley,M,Lacerations to left ankle,N,Daytona Beach Morning Journal,10/21/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.13-Hundley.pdf +3298,1983.09.04,04-Sep-83,1983,Unprovoked,Usa,Florida,"Off Lake Worth, Palm Beach County",Standing,Paul Kolodny,M,Abrasions to leg,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.09.04-Kolodny.pdf +3297,1983.08.20.b,20-Aug-83,1983,Unprovoked,Usa,Oregon,"Cape Kiwanda,Tillamook County",Surfing,Randy Weldon,M,"No injury, board bitten",N,R.N. Lea & D. Miller; R. Collier,p.81,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.b-RandyWeldon.pdf +3296,1983.08.20.a,20-Aug-83,1983,Unprovoked,South africa,Western Cape Province,"Seal Island, False Bay",Spearfishing,Attie Louw,M,Inner thighs lacerated,N,A. Louw,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.a-Louw.pdf +3295,1983.08.15,15-Aug-83,1983,Unprovoked,Usa,Virginia,"Virginia Beach, Princess Anne County",Swimming,Jill Redenbaugh,F,Foot bitten,N,Washington Post,8/16/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.15-Rendenbaugh.pdf +3294,1983.08.13.b,13-Aug-83,1983,Provoked,Usa,Florida,"Riviera Beach, Palm Beach County",Skindiving,Louis Goodman,M,Hand abraded when he grabbed shark's tail PROVOKED INCIDENT,N,M. Vorenburg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.b-Goodman.pdf +3293,1983.08.13.a,13-Aug-83,1983,Unprovoked,Usa,Florida,"6 miles south of Boca Chica Key, Monroe County ",Diving,Jackie Lynn,F,Right leg severely bitten,N,Miami Herald,8/14/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.a-JackieLynn.pdf +3292,1983.08.06,06-Aug-83,1983,Boat,Usa,Rhode Island,Unknown,Fishing,2 boats,Unknown,No injury to occupants,N,Providence Journal,8/7/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.06-RI-boats.pdf +3291,1983.07.26,26-Jul-83,1983,Sea Disaster,Australia,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",Swimming from the New Venture ,Linda Ann Norton,F,"FATAL, shark seized her by the chest and took her underwater ",Y,H. Edwards,pp. 103-104; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.26-Norton.pdf +3290,1983.07.25.b,25-Jul-83,1983,Sea Disaster,Australia,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",Swimming from the New Venture ,Dennis Patrick Murphy,M,"FATAL, shark bit leg, then dragged him underwater ",Y,H. Edwards,pp. 103-104; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.b-Murphy.pdf +3289,1983.07.25.a,25-Jul-83,1983,Sea Disaster,Australia,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",14 m prawn trawler New Venture capsized & sank in heavy seas Three people in the water,Ray Boundy,M,"Left knee bitten, but survived",N,H. Edwards,pp.103-104; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.a-Boundy.pdf +3288,1983.07.15,15-Jul-83,1983,Unprovoked,South africa,Eastern Cape Province,"Seal Point, Cape St. Francis",Surfing,Ward Walkup,M,Left arm injured by shark's tail as it swam beneath his board,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.15-NV-Walkup.pdf +3287,1983.07.12.b,12-Jul-83,1983,Unprovoked,Usa,Florida,"Caloosahatchee River, Lee County",Windsurfing,Sandy Komito,F,Left ankle nipped (3 punctures wounds),N,Miami Herald,7/14/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.b-Komito.pdf +3286,1983.07.12.a,08-Jul-83,1983,Unprovoked,Bahamas,Abaco Islands,Green Turtle Cay,Spearfishing,Eric Gijsendorfer ,M,Lacerations to left calf,N,Miami Herald,7/13/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.a-Gijsendorfer.pdf +3285,1983.07.05,05-Jul-83,1983,Unprovoked,Usa,Florida,"Riviera Beach, Palm Beach County",Floating on air mattress,Steven Osterman,Unknown,"No injury, shark bit air mattress, deflating it",N,E.Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.05-Osterman.pdf +3284,1983.06.29,29-Jun-83,1983,Unprovoked,Usa,Florida,"Off 12th Street, Miami Beach",Swimming,Howard Rosen,M,Left foot bitten,N,Miami Herald,6/30/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.29-Rosen.pdf +3283,1983.06.22,22-Jun-83,1983,Unprovoked,Bahamas,Abaco Islands,"Off Sandy Point, Great Abaco Island",Spearfishing,Carl James Harth,M,FATAL,Y,Chicago Tribune,8/21/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.22-Harth.pdf +3282,1983.06.20,20-Jun-83,1983,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing & dangling foot in water amid baitfish,Barry Skinner,M,Left foot lacerated,N,Miami Herald,6/22/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.20-Skinner.pdf +3281,1983.06.15,15-Jun-83,1983,Unprovoked,Bahamas,Unknown,Carter Cay,Unknown,Roger Yost,M,Lacerations to hand & foot,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-NV-Yost.pdf +3280,1983.06.15,15-Jun-83,1983,Invalid,Italy,Northwest Italy,Riomaggiore (Ligura),Scuba diving,Roberto Piaviali,M,"No injury, shark ""harassed"" him at depth of 5 m",N,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-Piaviali.pdf +3279,1983.06.00,Jun-83,1983,Unprovoked,Bahamas,Berry Islands,Whale Cay,Spearfishing,Carl Starling,M,Lacerations to thigh & buttocks,N,E. Pace,FSAF & M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.00-Starling +3278,1983.05.31,31-May-83,1983,Unprovoked,Usa,Florida,"Intracoastal Waterway, Boca Raton, Palm Beach County",Water-skiing,Andrew Swersky ,M,"Left calf, knee & hands lacerated",N,E. Pace; Miami Herald,6/2/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.31-Swersky.pdf +3277,1983.05.24,24-May-83,1983,Unprovoked,Usa,Florida," Riviera Beach, Palm Beach County",Surfing,Dave Coulter,M,"Knocked off board by shark, no injury",N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.24-Coulter.pdf +3276,1983.05.21,21-May-83,1983,Unprovoked,Usa,Florida,"Haulover Inlet, Dade County",Surfing,Jonathan Popper,M,Right foot bitten,N,The Palm Beach Post,3/15/1989; Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.21-Popper.pdf +3275,1983.04.19,19-Apr-83,1983,Unprovoked,Usa,Florida,Unknown,Surfing,Arnold Schwarzwood,M,No details,UNKNOWN,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.19-NV-Schwarzwood.pdf +3274,1983.04.12,12-Apr-83,1983,Unprovoked,South africa,Eastern Cape Province,Bonza Bay,Fishing,Peter S. Venter,M,Puncture wounds to foot,N,R. Horn,East London Aquarium; Natal Witness,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.12-Venter.pdf +3273,1983.04.02.b,02-Apr-83,1983,Unprovoked,Usa,Florida,"Lake Worth Beach, Palm Beach County",Surfing,Mark Steins,M,Left foot bitten,N,Miami Herald,4/3/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.b-MarkSteins.pdf +3272,1983.04.02.a,02-Apr-83,1983,Invalid,South africa,KwaZulu-Natal,Mpande,Unknown,white male,M,Survived,N,Unverified report,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.a-Mapande.pdf +3271,1983.03.30.a,30-Mar-83,1983,Unprovoked,South africa,KwaZulu-Natal,Scottburgh,Spearfishing,Warren Johnson,M,Right calf lacerated,N,W. Johnson,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.30.a-Johnson.pdf +3270,1983.03.22,22-Mar-83,1983,Unprovoked,South africa,Eastern Cape Province,Nahoon,Surfing,Ian Johnson,M,"No injury, board bitten",N,G. Cliff,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.22-IanJohnson.pdf +3269,1983.03.10,10-Mar-83,1983,Unprovoked,Usa,Florida,"Juno Beach, Palm Beach County",Surfing,Dave Lowen,M,"Shark nudged board, no injury",N,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.10-Lowen.pdf +3268,1983.03.00,Mar-83,1983,Unprovoked,New caledonia,Loyalty Islands,"We, Lifou",Unknown,a teenager,Unknown,Calf bitten,N,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.00-teenager-NewCaledonia.pdf +3267,1983.02.20,20-Feb-83,1983,Unprovoked,South africa,KwaZulu-Natal,Mtunzini,Paddleskiing,Peter Swart,M,Puncture wounds to buttocks,N,G. Charter,B. Davis & G. Cliff; Natal Mercury 2/22/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.02.20-Swart.pdf +3266,1983.01.24,24-Jan-83,1983,Provoked,Usa,South Carolina,60 miles southeast of Beaufort,Fishing,Chandler Wynn,M,Leg bitten by captive shark PROVOKED INCIDENT,N,Wilmington MorningStar,1/25/1983,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.24-Wynn.pdf +3265,1983.01.15,15-Jan-83,1983,Invalid,South africa,KwaZulu-Natal,Amanzimtoti,Unknown,black male,M,FATAL,Y,G. Cliff & B. Davis,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.15-Amanzimtoti.pdf +3264,1983.01.10,10-Jan-83,1983,Unprovoked,South africa,Western Cape Province,Muizenberg,Windsurfing,Richard Crewe,M,Left foot lacerated,N,Mrs. Crewe,B. Lipschitz,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.10-Crewe.pdf +3263,1983.01.08,08-Jan-83,1983,Unprovoked,South africa,Western Cape Province,Holbaai,Spearfishing,Philip DeBruyn,M,"No injury, rammed by shark",N,P. deBruyn,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.08-DeBruyn.pdf +3262,1983.00.00.d,Ca. 1983,1983,Unprovoked,International_water,English Channel,Unknown,Swimming,Padma Shri Taranath Narayan Shenoy,M,Left leg bitten,N,Times of India,2/5/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.d-Shenoy.pdf +3261,1983.00.00.c,1983,1983,Unprovoked,Vanuatu,Malampa Province,"Off the beach opposite Atchin Island, Malakula",Ran into the water,Swedish tourist,M,"FATAL, arm/shoulder severed ",Y,S. Combs,,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.c-SwissTourist.pdf +3260,1983.00.00.b,1983,1983,Provoked,Usa,North & South Carolina,Unknown,Fishing,Commercial fishermen,M,Bitten on their feet by landed sharks / lacerations only PROVOKED INCIDENTS,N,F. Schwartz,,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.b-Carolina-Fishermen.pdf +3259,1982.11.00,Nov-82,1982,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",In waist-deep water,male,M,Arm bitten,N, F. Schwartz,,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.11.00-male.pdf +3258,1982.10.13,13-Oct-82,1982,Unprovoked,Usa,Florida,North Dade- Interama area of Biscayne Bay,Windsurfing,Rob Savanello ,M,Left foot lacerated,N,P. Hamm,Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.10.13-Savanello.pdf +3257,1982.09.30.b,30-Sep-82,1982,Unprovoked,South africa,Eastern Cape Province,"Nahoon, East London",Surfing,Russell Lindsay,M,"No injury, pressure ding on surfboard",N,R. Horn,E.L. Aquarium,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.b-Lindsay.pdf +3256,1982.09.30.a,30-Sep-82,1982,Unprovoked,South africa,Eastern Cape Province,"Nahoon, East London",Surfing,Howard Fawkes,M,"No Injury, surfboard bitten",N,M. Levine,GSAF; R. Horn,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.a-Fawkes.pdf +3255,1982.09.27,27-Sep-82,1982,Unprovoked,Usa,Florida,"Patrick Air Force Base, Brevard County",Surfing,John Cibelli,M,Laceration to lower left leg,N,Miami Herald,9/28/1982,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.27-Cibelli.pdf +3254,1982.09.25,25-Sep-82,1982,Unprovoked,Usa,California,"Monastery Beach, Carmel Bay, Monterey County",Diving,Bruce Lang,M,Lacerations to hand,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.25-Lang.pdf +3253,1982.09.19,19-Sep-82,1982,Unprovoked,Usa,California,"Bear Harbor, Mendocino County",Free diving for abalone from Zodiac (submerged),Michael J. Herder,M,Upper left thigh & buttocks bitten,N,R.N. Lea & D. Miller; Herder,p. 1-3; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.19-Herder_Collier.pdf +3252,1982.09.04,04-Sep-82,1982,Invalid,Usa,Florida,"Hollywood Beach, Broward County",Unknown,male,M,"Remains recovered from shark, but shark involvement prior to death unknown",Y,Z. Arocha,Miami Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.04-Remains-TigerShark.pdf +3251,1982.08.29.c,29-Aug-82,1982,Unprovoked,Japan,Kumamoto Prefecture,Ariake Bay,Unknown,Yako Yajima,M,FATAL,Y,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.c-Yajima.pdf +3250,1982.08.29.b,29-Aug-82,1982,Invalid,Usa,California,"Morro Rock, Morro Bay, San Obispo County",Surfing,John Buchanan,M,"No Injury, board bitten",N,R.N. Lea & D. Miller; R. Collier,pp.87-89 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.b-Buchanan.pdf +3249,1982.08.29.a,29-Aug-82,1982,Unprovoked,South africa,Western Cape Province,Langebaan,Swimming,Verenia Keet,F,"Left knee, lower leg & foot bitten",N,V. Keet,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.a-Keet.pdf +3248,1982.08.00,Late Aug-1982,1982,Unprovoked,Tunisia,Unknown,"Skanes, near Monaster",Windsurfing,"male, a teen",M,Thigh lacerated,N,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.00-Tunisia.pdf +3247,1982.07.31,31-Jul-82,1982,Invalid,South africa,KwaZulu-Natal,Amanzimtoti,Boogie boarding,Riaan van Rensburg,M,"No injury, swim fin bitten",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.31-VanRensburg.pdf +3246,1982.07.24.b,24-Jul-82,1982,Unprovoked,South africa,Eastern Cape Province,"Nahoon, East London",Paddleskiing,Brian ‘Archie’ Plumb,M,"No injury, ski bitten",N,B. Plumb,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.b-Plumb.pdf +3245,1982.07.24.a,24-Jul-82,1982,Unprovoked,Usa,California,"Point Buchon, San Luis Obispo County",Paddle Boarding,Casimir Pulaski,M,"No Injury, board bitten",N,R.N. Lea & D. Miller; R. Collier,pp.86-87; G. Ambrose,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.a-Pulaski_Collier.pdf +3244,1982.07.19,19-Jul-82,1982,Unprovoked,Usa,Florida,"Stuart Beach, Martin County ",Swimming,Jonathan Orth,M,Left ankle bitten,N,Miami Herald,7/21/1982,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.19-Orth.pdf +3243,1982.07.11, 11-Jul-1982,1982,Invalid,Usa,California,"Malibu, Los Angeles County",Swimming,Gerald Winkle,M,Laceration to left thigh,N,Chronicle Telegram,7/12/1982,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.11-Winkle.pdf +3242,1982.07.01,01-Jul-82,1982,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Swimming,Janet Babb,F,Laceration to left leg,N,Daytona Beach Morning Journal,7/2/1982,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.01-Babb.pdf +3241,1982.07.00,Jul-82,1982,Unprovoked,New caledonia,South Province,"Sarcelle, Isle of Pines",Unknown,Rene Bull,Unknown,Left arm bitten,N,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.00-Bull.pdf +3240,1982.06.29,29-Jun-82,1982,Unprovoked,South africa,Eastern Cape Province,Ntlonyana Bay,Surfing,Alex Macun,M,FATAL,Y,M. Levine,GSAF; R.B. Wilson,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.29-Macun.pdf +3239,1982.06.26.b,26-Jun-82,1982,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Swimming,Murray Branson,M,Left arm bitten,N,Chillicothe Constitution Tribune,6/30/1982,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.b-Branson.pdf +3238,1982.06.26.a,26-Jun-82,1982,Unprovoked,Bahamas,Andros Islands,North Rat Cay Reef,Spearfishing ,Philip Sweeting,M,Arm severed at elbow,N,R. Attrill; R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.a-Sweeting.pdf +3237,1982.06.25, 25-Jun-1982,1982,Unprovoked,Usa,Florida,"Ormond Beach / Daytona Beach, Volusia County",Unknown,Tara Dean,F,Foot bitten,N,Wellsboro Gazette,6/30/1982,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.25-TaraDean.pdf +3236,1982.06.13,13-Jun-82,1982,Unprovoked,Usa,Hawaii,"Ho'okipa Beach, Pa'ia, Maui","Sailboarding, fell into water 100 yards outside the breakwater",Scott Shoemaker,M,Thigh bitten 3 times,N,J. Borg,p.76; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.13-Shoemaker.pdf +3235,1982.05.00,May-82,1982,Invalid,Usa,South Carolina,"Daws Island, Broad River (near Beaufort)",Unknown,"female, possibly victim of a small plane crash in the vicinity",F,Human remains recovered,Y,Clay Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.05.00-HumanRemains.pdf +3234,1982.03.10,10-Mar-82,1982,Unprovoked,Usa,Florida,"Palm Beach, Palm Beach County",Surfing,Matthew McGrath,M,Elbow bitten,N,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.10-McGrath.pdf +3233,1982.03.07,07-Mar-82,1982,Unprovoked,Australia,New South Wales,"Tallow Beach, Byron Bay",Surfing,Allan Ford,M,Legs bitten FATAL,Y,A. Sharpe,pp.4,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.07-AllenFord.pdf +3232,1982.03.00,Mar-82,1982,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Gaston Torii,Unknown,Arm bitten,N,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.00-Torii.pdf +3231,1982.02.28,28-Feb-82,1982,Unprovoked,Australia,Tasmania,South Cape Bay,Spearfishing,Geert Talen,M,"FATAL, body not recovered",Y,C. Black,pp. 159-163,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.28-Talen.pdf +3230,1982.02.27,27-Feb-82,1982,Unprovoked,Usa,Florida,"Hobe Sound, Palm Beach County",Surfing,Richard Bauer,M,Lacerations to left hand and forearm,N,Palm Beach Post,3/2/1982 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.27-Bauer.pdf +3229,1982.02.17,17-Feb-82,1982,Provoked,South africa,Western Cape Province,Mossel Bay,Fishing,J. Jordaan,M,Leg bitten above ankle by hooked shark taken aboard skiboat PROVOKED INCIDENT,N,Mossel Bay Advertiser,2/19/1982,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.17-Jordaan.pdf +3228,1982.02.14.b,14-Feb-82,1982,Unprovoked,Usa,Hawaii,"White Plains Beach, Barbers Point, O'ahu",Wading,Lisa Miller,F,Left leg bitten,N,J. Borg,p.75; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.b-Miller.pdf +3227,1982.02.14.a,14-Feb-82,1982,Unprovoked,Usa,Hawaii,"White Plains Beach, Barbers Point, O'ahu",Swimming,female,F,Right foot bitten,N,J. Borg,p.75; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.a-WhitePlainsBeach.pdf +3226,1982.02.13,13-Feb-82,1982,Unprovoked,Usa,Florida,"Palm Beach, Palm Beach County",Swimming,Gladys Sackville,F,Shark-bitten body found floating 1.5 miles offshore. Bruises suggested she may have been bitten by the shark before drowning,Y,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.13-Sackville.pdf +3225,1982.02.07.a,07-Feb-82,1982,Unprovoked,Usa,California,"Stillwater Cove, Sonoma County",Scuba diving (submerged),"Donald ""Harvey"" Smith",M,Calf & ankle bitten,N,R.N. Lea & D. Miller; R. Collier,p.86,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.a-Smith_Collier.pdf +3224,1982.02.07..b,07-Feb-82,1982,Unprovoked,Usa,Florida,Elliot Key,Diving,Kim Seibel ,M,"FATAL Disappeared while diving, bathing suit & diving gear recovered bore marks of shark's teeth",Y,Miami Herald,9/5/1982,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.b-Seibel.pdf +3223,1982.01.29,29-Jan-82,1982,Unprovoked,South africa,Eastern Cape Province,Mpekeweni,Swimming,Jeffrey Phillips-Page,M,Right shin & toe lacerated,N,J. Phillips-Page,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.01.29-Phillips-Page.pdf +3222,1982.00.00.c,1982,1982,Boat,Italy,Tyrrhenian Sea,"Lacona, Isola d'Elba",Boat,Giovanni Vuoso,M,No details,UNKNOWN,A. De Maddalena; Perfetti (1989),M. Zuffa (pers. Comm.),http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.c-boat-Vuoso.pdf +3221,1982.00.00.b,1982,1982,Boat,Italy,Tyrrhenian Sea,"Biodola, Isola d'Elba",Fishing on a boat,Giuseppe Campodonico,M,No injury,N,A. De Maddalena; Perfetti (1989),M. Zuffa (pers. Comm.),http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.b-Campodonico.pdf +3220,1982.00.00.a,1982,1982,Unprovoked,Tunisia,Biserta,Bechateur,Spearfishing,English holiday-maker,Unknown,No details,UNKNOWN,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.a-Tunisia.pdf +3219,1981.12.19,19-Dec-81,1981,Unprovoked,Usa,California,"South Moss Beach, Spanish Bay, Monterey Peninsula",Surfing,Lewis Boren,M,"FATAL, torso bitten ",Y,R.N. Lea & D. Miller; R. Collier,pp.84-85; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.19-Boren_Collier.pdf +3218,1981.12.13.b,13-Dec-81,1981,Unprovoked,Australia,Queensland,Green Island,Unknown,Zola Dale,Unknown,Abdomen lacerated,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.b-NV-ZolaDale.pdf +3217,1981.12.13.a,13-Dec-81,1981,Unprovoked,Usa,Hawaii,"Nimitz Beach, Barbers Point, O'ahu","Spearfishing, but swimming on surface",Melvin T. Toma,M,Right leg severely bitten,N,J. Borg,p.75; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.a-Toma.pdf +3216,1981.11.30,30-Nov-81,1981,Unprovoked,Reunion,Saint-Philippe,Vicendo,Spearfishing,Lucien Mercier,M,Survived,N,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.30-Mercier.pdf +3215,1981.10.19.b,19-Oct-81,1981,Provoked,South africa,Western Cape Province,Mossel Bay,Inspecting teeth of supposedly dead (hooked & shot) shark,Callie Van Aswegan,M,Hand lacerated PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.b-VanAswegan.pdf +3214,1981.11.09,09-Nov-81,1981,Unprovoked,Usa,Hawaii,"La'au Point, Moloka'i",Diving to untangle a crab trap line from boat's propeller,Leo A. Ohai,M,Hand bitten,N,J. Borg,p.75; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.09-Ohai.pdf +3213,1981.10.19.a,19-Oct-81,1981,Unprovoked,Usa,Florida,"Jupiter Island, Brevard County",Swimming,Van Horn Ely,M,Hand & forearm bitten,N,Chronicle Telegram,10/20/1981 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.a-VanHornEly.pdf +3212,1981.10.17,17-Oct-81,1981,Unprovoked,Usa,Florida,"Palm Beach, Palm Beach County",Surfing,Robert Conklin,M,No details,UNKNOWN,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.17-NV-Conklin.pdf +3211,1981.10.16,16-Oct-81,1981,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing,Robert Keifling,M,Puncture wounds to left foot,N,The Bulletin,10/19/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.16-Keifling.pdf +3210,1981.10.01,01-Oct-81,1981,Unprovoked,Usa,Florida,"Playalinda Beach, Brevard County",Surfing,Scott Armstrong,M,Laceration to right leg,N,St. Petersburg Times,10/3/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.01-Armstrong.pdf +3209,1981.09.28,28-Sep-81,1981,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing,Stan Wing,M,5 puncture marks to hip,N,St. Petersburg Times,10/1/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.28-Wing.pdf +3208,1981.09.27,27-Sep-81,1981,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,James Smodell,Unknown,Lacerations to right hand,N,Sarasota Herald-Tribune,9/29/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.27-Smodell.pdf +3207,1981.09.15,15-Sep-81,1981,Unprovoked,Usa,Florida,"Tampa Bay, Manatee County",Swimming,Mark Meeker,M,"FATAL, right calf bitten ",Y,S. Pelham,M.D.; NY Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.15-Meeker.pdf +3206,1981.09.03.b,03-Sep-81,1981,Unprovoked,Usa,Florida,"Patrick Air Force Base, Brevard County",Surfing,Richard Corrack,M,Lacerations to 2 fingers of left hand,N,St Petersburg Times,9/5/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.b-Corrack.pdf +3205,1981.09.03.a,03-Sep-81,1981,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing,Douglas Christie,M,Laceration to foot,N,St Petersburg Times,9/5/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.a-Christie.pdf +3204,1981.08.29,29-Aug-81,1981,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Stephen Drosdick,M,Laceration to left ankle,N,Pacific Stars and Stripes,8/31/1981 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.29-Drosdick.pdf +3203,1981.08.24.b,24-Aug-81,1981,Provoked,Usa,Florida,Gulf Island National Seashore Park,Spearfishing,Ted Best,M,"Shot shark, then it bit him. Puncture wounds on leg PROVOKED INCIDENT",N,A. MacCormick,pp.82-83,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.b-Best.pdf +3202,1981.08.24.a,24-Aug-81,1981,Invalid,Usa,Hawaii,"Keaukaha, Hilo, Hawai'i",Fishing,Ernest Watson,M,Disappeared while fishing from shore. Leg found 7 days later wedged in rocks 150 yards offshore,Y,J. Borg,p.75; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.a-Watson.pdf +3201,1981.08.10.b,10-Aug-81,1981,Unprovoked,Usa,Florida,"Marathon, Monroe County",Diving,Mike Barber,M,Bite to face,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.b-Barber.pdf +3200,1981.08.10.a,10-Aug-81,1981,Unprovoked,Usa,Florida,"Ormond Beach / Daytona Beach, Volusia County","16' catamaran capsized previous night, occupants stayed with wreckage until morning, then attempted to swim ashore",Christy Wapniarski,F,FATAL,Y,E. Pace,GSAF; J. McAniff,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.a-Wapniarski.pdf +3199,1981.08.07,07-Aug-81,1981,Unprovoked,Bahamas,Grand Bahama Island,"Gingerbread Reef, east of Little Isaac Island ",Snorkeling on surface,Robert Marx,M,Upper right arm bitten,N,R. Marx,E. Clark; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.07-Marx.pdf +3198,1981.07.20,20-Jul-81,1981,Unprovoked,Usa,Florida,"St. Petersburg Beach, Pinellas County",Swimming,Lisa Drenko,F,"Foot bitten between arch & big toe, no stitches required",N,E. Pace,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.20-NV-Drenko.pdf +3197,1981.07.18,18-Jul-81,1981,Unprovoked,South africa,Eastern Cape Province,Nahoon,Surfing,Barry Van Der Helm,M,7 lacerations to right foot,N,B. V.D. Helm; R. Horn; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.18-vanderHelm.pdf +3196,1981.07.07,07-Jul-81,1981,Unprovoked,Usa,Florida,Carter Cay,Spearfishing,Ed Cannette,M,Left foot & ankle lacerated,N,E. Pace,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.07-NV-Cannette.pdf +3195,1981.07.01,01-Jul-81,1981,Unprovoked,South africa,KwaZulu-Natal,Clansthal,Catching sardines,John Wilson,M,Laceration to calf,N,Chronicle Telegram,7/1/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.01-Wilson.pdf +3194,1981.06.15.R,15-Jun-1981,1981,Boat,England,Unknown,Isle of Wight,Fishing,2 fishermen,M,Minor injuries from shark that leapt aboard their boat,N,The Times (London),6/15/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.15.R-Isle-of-Wight.pdf +3193,1981.06.12,12-Jun-81,1981,Invalid,Usa,Hawaii,"Honoli'i Pali, Hilo Bay ('Alae Point), Hawai'i",Unknown,Preston D. Soley,M,"Probable drowning, 1/3 of shark-multilated body recovered",Y,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.12-Soley.pdf +3192,1981.05.24,24-May-81,1981,Unprovoked,Usa,Hawaii,"Ha'ena Beach Park, Kaua'i","Scuba diving, reportedly also spearfishing",Roger B. Garletts,M,"FATAL, disappeared, dive gear & shredded tooth-marked wetsuit were recovered",Y,J. Borg,p.87; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.24-Garletts.pdf +3191,1981.05.23,23-May-81,1981,Unprovoked,South korea,Chungnam,Wae-yeon Island,Shell diving,Pak Kyong-sun ,F,FATAL,Y,Y. Choi & K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.23-Pak-Kyong-sun.pdf +3190,1981.05.20,20-May-81,1981,Unprovoked,South africa,Eastern Cape Province,Nahoon,Surfing,Mark Jury,M,"Shark & board collided. No injury, but board was dented",N,M. Jury,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.20-Jury.pdf +3189,1981.05.19,19-May-81,1981,Unprovoked,Usa,Florida,"Sands Cut, Elliot Key",Free diving,Mohammed Rahimnejad,M,Massive tissue damage of left arm,N,J. McAniff; Miami Herald 5/22/1981,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.19-Rahimnejad.pdf +3188,1981.05.16,16-May-81,1981,Unprovoked,Usa,Florida,"Jacksonville, Duval County",Diving,Carey Ford,M,Left arm bitten,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.16-NV-Ford.pdf +3187,1981.05.10,10-May-81,1981,Unprovoked,South africa,Eastern Cape Province,King’s Beach,Surfing,John Dunser,M,"No Injury, board bitten",N,M. Smale,PE Museum,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.10-Dunser.pdf +3186,1981.05.07,07-May-81,1981,Provoked,Namibia,Eronogo Region,Walvis Bay,Finning the shark that bit him,Crewman of Taiwanese tuna boat Sin Shih Ki II,M,Lacerations PROVOKED INCIDENT,N,M. Levine,GSAF; Natal Witness,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.07.R-WalvisBay.pdf +3185,1981.03.08,08-Mar-81,1981,Sea Disaster,Unknown,Unknown,Unknown,Foundering of the Israeli freighter Mezada,Unknown,Unknown,Next day 2 bodies recovered from sharks,N,New York Times,3/13/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.08-Mezada.pdf +3184,1981.05.05,05-May-81,1981,Unprovoked,South africa,Eastern Cape Province,Ntlonyane Bay,Surfing,Simon Hammerton,M,"Left leg bitten, surgically amputated",N,S. Hammerton,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.05-Hammerton.pdf +3183,1981.03.25,25-Mar-81,1981,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Standing / Wading,Christopher J. Auditore,M,"Lacerations on calf, ankle & heel",N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.25-Auditore.pdf +3182,1981.03.24,24-Mar-81,1981,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Robert Thomas,M,Puncture wounds on right thigh,N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.24-Thomas.pdf +3181,1981.03.04,04-Mar-81,1981,Unprovoked,Chile,Coquimbo,"Bahia Totoralillo, 80 km north of Coquimbo",Free diving Spearfishing,Carlos Veraga M.,M,Foot & ankle bitten,N,J. McCosker & A.C. Engana,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.04-Vergara.pdf +3180,1981.03.00,Mar-81,1981,Unprovoked,Brazil,Rio de Janeiro,Cabo Frio,Diving,Unknown,Unknown,Unknown,N,Globo,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.00-Brazil.pdf +3179,1981.02.19,19-Feb-81,1981,Unprovoked,South africa,KwaZulu-Natal,Umtentweni,Swimming,Richard Guy,M,Foot lacerated,N,R. Guy,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.19-Guy.pdf +3178,1981.02.16,16-Feb-81,1981,Unprovoked,Australia,Western Australia,"Leighton Beach, north of Freemantle",Exercising his dog in the shallows,Steven Fawcett,M,Puncture wounds to foot,N,A. Sharpe,p.134,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.16-Fawcett.pdf +3177,1981.02.07,07-Feb-81,1981,Unprovoked,Australia,Western Australia,"Parker's Point, Rottnest Island",Unknown,Filmer,Unknown,No details,UNKNOWN,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.07-NV-Filmer.pdf +3176,1981.02.02,02-Feb-81,1981,Unprovoked,Usa,Florida,"Juno Beach, Palm Beach County",Surfing,Michael A. Reist,M,Lacerations & punctures in left calf & ankle,N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.02-Reist.pdf +3175,1981.02.00,Feb-81,1981,Unprovoked,Brazil,Rio de Janeiro,Cabo Frio,Spearfishing,Unknown,Unknown,Left arm lacerated,N,O. Gadig,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.00-CaboFrio.pdf +3174,1981.01.30,30-Jan-81,1981,Unprovoked,Usa,Florida,20 miles from Mayport,Commercial spearfishing,Carey Ford,M,3 small punctures in scalp & ripped nostril,N,J. McAniff,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.30-CareyFord.pdf +3173,1981.01.01,01-Jan-81,1981,Invalid,South africa,KwaZulu-Natal,Widenham,Swimming,Moonsamy Dayalan,M,Probable drowning & scavenging,Y,W.O. Hutt; W. Pople,G. Charter,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.01-Dayalan.pdf +3172,1981.00.00.b,1981,1981,Unprovoked,Australia,New South Wales,Byron Bay,Surf-skiing,Warren Rowe,M,"No injury, ski bitten",N,Sunday Mail (QLD),9/6/1987,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.b-Rowe.pdf +3171,1981.00.00.a,Summer of 1981,1981,Unprovoked,Greece,Pagasitikos Gulf,Unknown,"Free diving / spearfishing, ",an Austrian tourist,M,Minor injury,N,M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.a-Austrian-diver.pdf +3170,1980.12.30,12-30-1980,1980,Unprovoked,South africa,Eastern Cape Province,Nahoon,Paddleskiing,Noel Yates,M,"No injury, paddleski bitten",N,N. Yates,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.30-Yates.pdf +3169,1980.12.26,26-Dec-80,1980,Invalid,South africa,Eastern Cape Province,Port Elizabeth,Unknown,male,Unknown,Probable drowning & scavenging,Y,Eastern Province Herald,12/29/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.26-scavenging.pdf +3168,1980.11.24,24-Nov-80,1980,Unprovoked,Reunion,Grand'Anse,Petite-Ile,Spearfishing,Jean-Michel Pothin,M,Bitten twice,N,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.24-Pothin.pdf +3167,1980.11.18,18-Nov-80,1980,Unprovoked,Australia,Western Australia,Lancelin,Swimming,"G.R. Bohan, an Able Seaman stationed on HMAS Stirling at Garden Island",M,"Right shoulder bitten, puncture wounds on chest & lacerations on his back",N,A. Sharpe,pp.133-134,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.18-Bohan.pdf +3166,1980.11.17,17-Nov-80,1980,Invalid,South africa,KwaZulu-Natal,Mnini,Swimming,Baba Sibaya,M,Probable drowning & scavenging,Y,W.O. Hutt; G. Charter,B. Davis,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.17-BabaSibaya.pdf +3165,1980.11.11.,11-Nov-80,1980,Unprovoked,Brazil,Pernambuco,Piedade,Swimming,Ibson Gomes Vieira ,M,FATAL,Y,JC Online,6/25/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.11-Vieira.pdf +3164,1980.10.27,27-Oct-80,1980,Unprovoked,Usa,Oregon,Off Umpqua River,Surfing,Christopher Cowan,M,Thigh lacerated,N,R.N. Lea & D. Miller; R. Collier,pp.83-84,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.27-Cowan_Collier.pdf +3163,1980.10.17,17-Oct-80,1980,Unprovoked,Usa,California,"Moonstone Beach, Humboldt County",Surfing,Curt Vikan,M,No injury,N,R. N. Lea & D. Miller; R. Collier,pp.82-83,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.17-Vikan_Collier.pdf +3162,1980.08.22.R,22-Aug-1980,1980,Unprovoked,Unknown,Unknown,Unknown,Diving in tuna net,Gerald Correria,M,FATAL,Y,Valley Independent,8/22/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.22.R-Correria.pdf +3161,1980.08.10,10-Aug-80,1980,Unprovoked,Usa,North Carolina,"Ocean Isle, Brunswick County",Wading,Susan Waters,F,Bitten behind knee & lower leg,N,Chronicle Telegram,8/11/1980; F. Schwartz,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.10-Waters.pdf +3160,1980.08.04,04-Aug-80,1980,Unprovoked,Usa,Hawaii,"Puamana, Lahaina, Maui",Resting on body board,Mark Skidgel,M,Torso bitten,N,J. Borg,p.75; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.04-Skidgel.pdf +3159,1980.07.26,26-Jul-80,1980,Unprovoked,Spain,Canary Islands,"San Juan de la Rambla, Tenerife",Skin diving,Fuentes Gonzalez Escualo ,M,Thigh injured,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.26-Escualo.pdf +3158,1980.07.27,27-Jul-80,1980,Unprovoked,Usa,New Jersey,"Ocean City, Cape May County",Body surfing,Jeff Moffat,M,Back bitten,N,J. Moffat; W. Ruderman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.27-Moffat.pdf +3157,1980.07.23,23-Jul-80,1980,Unprovoked,Usa,Delaware,Dewey Beach,Standing,Phyllis Riley,F,"No injury, shark bit her bathing suit",N,Washington Post,7/23/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.23-PhyllisRidley.pdf +3156,1980.07.00,Late Jul-1980,1980,Unprovoked,Usa,North Carolina,"Emerald Isle Pier (near Morehead City), Carteret County",Surfing,male,M,"No injury, bumped off board",N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-NCsurfer.pdf +3155,1980.07.00,Early Jul-1980,1980,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Tom Durrance,M,Lower leg bitten,N,Daytona Beach Morning Journal,7/9/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-Durrance.pdf +3154,1980.06.26,26-Jun-80,1980,Provoked,Usa,California,"Off San Clemente Island, Los Angeles County",Scuba diving,Valerie Taylor,F,Laceration to lower leg PROVOKED INCIDENT,N,The Australian Women's Weekly,10/1/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.06.26-ValTaylor.pdf +3153,1980.05.15,15-May-80,1980,Unprovoked,South africa,Eastern Cape Province,Fuller’s Bay,Surfing,Eric Stedman,M,"No injury, board bitten",N,C. Vernon,G. Ross,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.05.15-Stedman.pdf +3152,1980.04.25,25-Apr-80,1980,Provoked,Jamaica,St. Mary's Parish,"Priestman's River area, East Portland",Spearfishing,Venus Goulbourne,M,Hand bitten by speared shark PROVOKED INCIDENT ,N,The Gleaner,7/27/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.25-Venus.pdf +3151,1980.04.22,22-Apr-80,1980,Sea Disaster,Philippines,Romblon Province,"Maestre de Campo Island, 120 miles south of Manila",Sinking of the ferryboat Don Juan,Unknown,Unknown,FATAL x 2,Y,Daily Collegian,4/24/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.22-DonJuan.pdf +3150,1980.04.00,Apr-80,1980,Unprovoked,Mexico,Sinaloa,Mazatlán,Body surfing,Kim Giambalvo,F,Right calf bitten,N,K. Giambalvo-Sprague; R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.00-Giambalvo-Sprague.pdf +3149,1980.03.29,29-Mar-80,1980,Unprovoked,South africa,KwaZulu-Natal,Umdhloti,Free diving,Ray Booth,M,FATAL,Y,W. Pople,G. Charter,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.29-RayBooth.pdf +3148,1980.03.28,28-Mar-80,1980,Unprovoked,Brazil,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming,J.M.,M,Right leg bitten,N,M. Szpilman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.28-JM.pdf +3147,1980.03.15,15-Mar-80,1980,Sea Disaster,Philippines,Unknown,250 miles southwest of Manila,Sinking of the ferryboat Bongbong 1,2 women,F,FATAL,Y,Valley Independent,3/17/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.15-Bongbong1.pdf +3146,1980.03.11,11-Mar-80,1980,Provoked,South africa,Western Cape Province,Velddrif,Fishing,Frederik Mannetjies Oom Binneman,M,Leg lacerated by netted shark PROVOKED INCIDENT,N,F.M. Binneman,P. Logan,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.11-Binneman.pdf +3145,1980.01.31,31-Jan-80,1980,Unprovoked,South africa,KwaZulu-Natal,Ballito,Body boarding,Shaun Wright,M,"Both hands & heel of left foot lacerated, right foot severed",N,M. Levine,GSAF; W. Pople,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.31-Wright.pdf +3144,1980.01.25,25-Jan-80,1980,Unprovoked,Kenya,Lamu Archipelago,South of Lamu Island,Spearfishing,Dennis Richard,M,Ankle & foot lacerated,N,J. E. Randall,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.25-Richard.pdf +3143,1980.01.15,15-Jan-80,1980,Provoked,South africa,KwaZulu-Natal,Anstey’s,Spearfishing,Les Winkworth,M,"No injury, rammed & catapulted from the water by shark after he shot at it & missed PROVOKED INCIDENT",N,L. Winkworth,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.15-Winkworth.pdf +3142,1980.01.13,13-Jan-80,1980,Unprovoked,South africa,Eastern Cape Province,Sardinia Bay,Swimming,Peter Clarke,M,Abrasion,N,Eastern Province Herald,1/17/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.13-Clarke.pdf +3141,1980.01.10,10-Jan-80,1980,Unprovoked,South africa,Eastern Cape Province,King’s Beach,Swimming,Andy Austin,M,3 small punctures on arm,N,M. Smale,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.10-Austin.pdf +3140,1980.01.05,05-Jan-80,1980,Unprovoked,Chile,Los Vilos,"Punta Negra, Pichidangui",Hookah Diving,Jose Larenas-Miranda,M,FATAL ,Y,J. McCosker & A.C. Engana,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.05-Miranda.pdf +3139,1980.00.00.d,Summer 1980,1980,Provoked,North atlantic ocean,Unknown,Onboard swordfish trawler,Gaffing netted shark,Sidney Hallett,M,Arm lacerated by gaffed shark PROVOKED INCIDENT,N,A. Resciniti,pp.105-106,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.d-Hallett.pdf +3138,1980.00.00.c,1980s ,1980,Invalid,Greece,Island of Kos,Unknown,Surfing,male,M,Knee bitten,N,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.c-NV-Greece.pdf +3137,1980.00.00.b,1980,1980,Invalid,South africa,Eastern Cape Province,Bonza Bay,Spearfishing,Sean Mitchley,M,No injury; shark made threat display and impaled itself on spear,N,P. Sachs,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.b-Mitchley.pdf +3136,1980.00.00.a,1980s ,1980,Unprovoked,Tonga,Ha'api,Ha'ano Island,Spearfishing,A male from Muitoa,M,Chest bitten,N,Dr. S. Fonea,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.a-Tonga.pdf +3135,1979.12.21,21-Dec-79,1979,Unprovoked,South africa,Eastern Cape Province,Kenton-on-Sea,Swimming,Carl Shemaly,M,Shin lacerated,N,M. Bowker; W. Pople,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.21-Shemaly.pdf +3134,1979.12.00,05-Dec-79,1979,Invalid,Portugal,Madeira Islands,"Sao Jorge, Madeira Island",Spearfishing,Fernando Branco de Abreu,M,FATAL,Y,C. Moore. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.00-Madeira.pdf +3133,1979.12.01, 01-Dec-1979,1979,Unprovoked,Unknown,Unknown,Unknown,Diving,Peter Lee,M,Toothmarks on head & neck,N,Sydney Morning Herald,12/6/1979 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.01-Lee.pdf +3132,1979.11.27,27-Nov-79,1979,Unprovoked,Usa,Oregon,"Haystack Rock, Cannon Beach, Clatsop County",Surfing,Kenny Doudt,M,Multiple major Injuries,N,D. Miller & R. Collier; R. Collier,p. 76-79; J. McCosker & R.N. Lea; K. Doudt,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.27-KennyDoudt_Collier.pdf +3131,1979.11.12,12-Nov-79,1979,Provoked,South africa,Western Cape Province,Macassar,Shark fishing,"skiboat, occupants: Gustav Boettger, Clive Mason, Keith Murrison & Sweis Olivier",Unknown,"No injury to occupants; hooked shark tore out part of transom, bit skeg of motor and snapped the steel trace PROVOKED INCIDENT",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.12-ski-boat.pdf +3130,1979.10.22,22-Oct-79,1979,Provoked,South africa,Eastern Cape Province,Algoa Bay,Fishing,Willie Dorfling,M,Bitten below right knee by hooked shark pulled onboard skiboat PROVOKED INCIDENT,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.10.22-Dorfling.pdf +3129,1979.09.14,14-Sep-79,1979,Unprovoked,Australia,New South Wales,Byron Bay,Scuba diving,Michael Oliver,M,Leg bitten,N,Canberra Times,9/15/1979,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.09.14-Oliver.pdf +3128,1979.08.28,28-Aug-79,1979,Unprovoked,Hong kong,Unknown,Mirs Bay,Freedom swimming,male,M,"Leg severed, FATAL",Y,Sydney Morning Herald,8/30/1979 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.28-HongKong.pdf +3127,1979.08.26,26-Aug-79,1979,Unprovoked,Hong kong,Ho Ha Wan Marine Park,Unknown,Unknown,male,M,FATAL,Y,J. Wong,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.26-NV-HongKong.pdf +3126,1979.08.05,05-Aug-79,1979,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Kayaking,John P. Seiner,M,Lacerations to foot,N,Sarasota Herald Tribune,8/9/1979,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.05-Seiner.pdf +3125,1979.08.03,03-Aug-79,1979,Unprovoked,Thailand,Southern Thailand,Unknown,Murdered by Thai pirates,male,M,FATAL,Y,The Canberra Times,8/3/1979,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.03.R-Pirates.pdf +3124,1979.06.19,19-Jun-79,1979,Sea Disaster,Usa,Florida,10 miles off Cape Canaveral,Floating with life preserver after his boat foundered,William Shaw,M,Lacerations to leg,N,Troy Record,6/21/1979,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.06.19-Shaw.pdf +3123,1979.05.27,27-May-79,1979,Invalid,Usa,Florida,"Fort Walton Beach, Okaloosa County",Scuba diving,Captain Tommy Edward Neel,M,"FATAL, but shark involvement prior to death was not determined",Y,Post Standard,5/29/1979,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.27-Neel.pdf +3122,1979.05.05,05-May-79,1979,Provoked,South africa,Western Cape Province,"Hangklip, False Bay",Spearfishing,Piet Boonzaaier,M,Shark rammed diver after he shot it in the head PROVOKED INCIDENT,N,Dr. P. Landsberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.05-Boonzaaier.pdf +3121,1979.05.03,03-May-79,1979,Unprovoked,South africa,KwaZulu-Natal,Mbibi,Scuba diving,Alan Edly Symons,M,"FATAL (presumed), pieces of shark-bitten wetsuit washed ashore but no body was recovered",Y,W. Pople,G. Charter,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.03-Symons.pdf +3120,1979.05.00.c,May-79,1979,Unprovoked,New caledonia,North Province,Ile Yandé (between Poum and Bélep),Fishing,Unknown,Unknown,"Thigh severely injured, survived",N,W. Leander; Les Nouvelles Caledoniennes,3/17/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.c-fisherman-Yande.pdf +3119,1979.05.00.b,May-79,1979,Unprovoked,New caledonia,North Province,Balade,Unknown,Ferdinand Teanyouen,M,FATAL,Y,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.b-Teanyouen.pdf +3118,1979.04.08.b,08-Apr-79,1979,Unprovoked,Usa,Florida,"Public Beach (Carlin Park), Jupiter, Palm Beach County",Swimming,Mark Beekler,M,Right foot & ankle lacerated,N,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.b-Beekler.pdf +3117,1979.04.08.a,08-Apr-79,1979,Unprovoked,Usa,Florida,"Municipal Beach, Boyton Beach, Palm Beach County",Body surfing,Robert Kennedy III,M,Right foot bitten,N,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.a-Kennedy.pdf +3116,1979.03.24,24-Mar-79,1979,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Donald A. Stewart,M,Foot & ankle bitten,N,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.24-Stewart.pdf +3115,1979.03.11,11-Mar-79,1979,Unprovoked,Usa,California,"Ano Nuevo Island, San Mateo, County",Scuba diving (submerged),Calvin Sloan,M,"No injury, swim fin bitten",N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.11-CalvinSloan_Collier.pdf +3114,1979.03.01,01-Mar-79,1979,Boat,South africa,Western Cape Province,Seal Island,Unknown,Fishing boat,Unknown,No Injury,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.01-NV-SealIslandboat.pdf +3113,1979.03.00,Mar-79,1979,Unprovoked,New caledonia,Grand Terre,"Five Mile Beach, I'le Ouen",Spearfishing,Manuel Teau,M,"Presumed FATAL, body not recovered",Y,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.00-Teau.pdf +3112,1979.02.21,21-Feb-79,1979,Unprovoked,South africa,Eastern Cape Province,Port Alfred,"Surfing, collided with shark",Charles Kantor,M,Punctures on left thigh,N,C. Kantor, Dr. Macrae,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.02.21-Kantor.pdf +3111,1979.00.00,1979,1979,Unprovoked,Usa,Hawaii,"South Kohala, Hawai'i",Fishing,elderly male,M,"FATAL, disappeared while fishing from shore, divers recovered his hand",Y,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1979.00.00-ElderlyMale.pdf +3110,1978.12.29,29-Dec-78,1978,Unprovoked,Australia,Queensland,Bribie Island,Unknown,Wayne Brown,M,Survived,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.29-Brown.pdf +3109,1978.12.12,12-Dec-78,1978,Unprovoked,South africa,KwaZulu-Natal,Sodwana,Spearfishing,Phillip 'Flip' Steenkamp,M,"FATAL, legs bitten ",Y,M. Levine,GSAF; W. Pople,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.12-Steenkamp.pdf +3108,1978.11.26,26-Nov-78,1978,Unprovoked,Usa,Hawaii,"Ewa, O'ahu",Surfing,Wendell Cabunoc,M,Left arm bitten,N,Star-Phoenix,11/29/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.26-Cabunoc.pdf +3107,1978.11.23,23-Nov-78,1978,Unprovoked,Usa,Florida,"Jupiter, Palm Beach County",Surfing,Jorge Alvarez,M,Hand lacerated,N,New York Times,11/26/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.23-Alvarez.pdf +3106,1978.10.21,21-Oct-78,1978,Invalid,South africa,KwaZulu-Natal,"Fishing camp, St. Lucia Estuary",Fishing,Mr. Kuppasamy,M,Scavenged or FATAL (may have involved foul play),Y,Natal Parks Board,J. Daniel; W. Pople,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.10.21-Kuppasamy.pdf +3105,1978.09.27,27-Sep-78,1978,Unprovoked,South africa,Western Cape Province,"Miller's Point, False Bay",Spearfishing,Erik Lombard,M,"No injury, shark took his catch, then towed & pushed diver through the water ",N,E. Lombard,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.27-Lombard.pdf +3104,1978.09.16,16-Sep-78,1978,Unprovoked,Italy,Tyrrhenian Sea,Capo d'Anzio,Diving,Fabrizio Marini,M,No injury,N,A. De Maddalena; Marini (1989),,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.16-Marini.pdf +3103,1978.09.02.R,02-Sep-1978,1978,Unprovoked,Australia,Tasmania,"Cape Pillar, Storm Bay",Scuba diving for abalone,Jim Scott,M,Several broken ribs,N,Chronicle Telegram,9/2/1978 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.02.R-Scott.pdf +3102,1978.08.05,05-Aug-78,1978,Unprovoked,Usa,California,"Pajaro Dunes, Santa Cruz County",Wading,Pat DuNah,M,Punctures on leg (minor injury),N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.05-DuNah_Collier.pdf +3101,1978.08.01.R,01-Aug-1978,1978,Unprovoked,Usa,Florida,Florida Straits,Floating on inner tube raft,Ramon Cordoba,M,Minor injury to ankle,N,Miami News,8/1/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.01.R-Cordoba.pdf +3100,1978.07.27,27-Jul-78,1978,Sea Disaster,Usa,South Carolina,Unknown,"Explosion destroyed 28' boat, survivors in the water ",Sam Boger,M,"No injury, his foot was bumped by a shark biting the body of a passenger that had drowned.",N,NY Times,7/28/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.27-Boger.pdf +3099,1978.07.19,19-Jul-78,1978,Provoked,Usa,California,"Newport Beach, Orange County",Fishing,Harry Griffet,M,Laceration to leg by hooked shark PROVOKED INCIDENT,N,Fresno Bee,7/19/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.19-Griffet.pdf +3098,1978.06.21.b,21-Jun-78,1978,Unprovoked,Usa,Florida,"South of Neptune Beach, Duval County",Surfing,Fred Dean Hunt,M,Foot bitten,N,Bryan Times,6/23/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.b-Hunt.pdf +3097,1978.06.21.a,21-Jun-78,1978,Unprovoked,Usa,Florida,"Neptune Beach, Duval County",Surfing,Mack Shelton,M,Foot nipped,N,Bryan Times,6/23/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.a-Shelton.pdf +3096,1978.06.07,07-Jun-78,1978,Invalid,Italy,Golfo de Venezia,Acqua alta research platform,Unknown,Unknown,Unknown,"No injury, shark struck platform",N,A. DeMaddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.07-Platform.pdf +3095,1978.04.02.b,02-Apr-78,1978,Unprovoked,Marshall islands,Ralik Archipelago,Enewetak Atoll,Diving,Philip Light,M,Laceration to left hand,N,Modesto Bee,4/4/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.b-Light.pdf +3094,1978.04.02.a,02-Apr-78,1978,Unprovoked,Marshall islands,Ralik Archipelago,Enewetak Atoll,Diving,Mike deGruy,M,Lacerations to right forearm ,N,Modesto Bee,4/4/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.a-DeGruy.pdf +3093,1978.04.00,Apr-1978`,1978,Unprovoked,Australia,Tasmania,Beechford,Scuba diving,Colin Wrankmore,M,Thigh bitten,N,C. Black,pp. 157-159,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.00-Wrankmore.pdf +3092,1978.03.05,05-Mar-78,1978,Boat,South africa,Eastern Cape Province,"Gulu Deep, East London",Unknown,"6 m skiboat, occupants: P.A. Reeder & crew",Unknown,"No injury to occupants; shark rammed boat 4 times, bit engine & cracked the hull",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.03.05-GuluDeep.pdf +3091,1978.02.28,28-Feb-78,1978,Unprovoked,South africa,Western Cape Province,"Seal Island, False Bay",Fishing for mackerel,"The June, occupants Bunny Pendelbury and crew of 6",Unknown,"Shark jumped in boat, but no injury to occupants",N,Eastern Province Herald,3/2/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.28-PendleburyBoat.pdf +3090,1978.02.19,19-Feb-78,1978,Unprovoked,South africa,Western Cape Province,"Miller's Point, False Bay",Diving,Nicky Alberts,M,"No injury, rammed by shark",N,Natal Mercury,2/21/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.19-NickyAlberts.pdf +3089,1978.01.17,07-Jan-78,1978,Unprovoked,South africa,KwaZulu-Natal,Glenashley,Surfing,Laurence Evans,M,"Left leg, ankle & foot bitten",N,W. Pople,G. Charter,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.17-Evans.pdf +3088,1978.01.06,06-Jan-78,1978,Invalid,South africa,KwaZulu-Natal,Cape Vidal,Unknown,Unknown,M,"Human head recovered from shark’s gut, probable drowning / scavenging",Y,W. Pople,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.06.R-CapeVidal.pdf +3087,1978.00.00.b,1978,1978,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing,Sharon Wolfe Cranston,F,Foot bitten,N,The Beachside Resident,9/19/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.b-Cranston.pdf +3086,1978.00.00.a,1978,1978,Unprovoked,Vanuatu,Malampa Province,"Ranon, Ambryn",Swimming,Vanuatu Weekly Hebdomadaire,F,FATAL,Y,N. Bird,Tok Blong Pacific,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.a-Bong.pdf +3085,1977.12.31,31-Dec-77,1977,Sea Disaster,Usa,Hawaii,2 miles off Keahole Airport,"Swimming, after single-engine aircraft went down in the sea",Harold Corbett,M,Feet lacerated,N,NY Times,1/3/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.31-Corbett.pdf +3084,1977.12.19.b,19-Dec-77,1977,Unprovoked,Usa,Florida,"Hobe Sound, Palm Beach County",Surfing,Raymond Brockway,M,Laceration to right hand,N,Sarasota Herald-Tribune,12/20/1977,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.b-Brockway.pdf +3083,1977.12.19.a,19-Dec-77,1977,Unprovoked,South africa,Eastern Cape Province,Qolera River,Surfing,Kim Pearce,M,"Both legs bitten, 2 days later gangrene necessitated surgical amputation of left leg at mid-thigh",N,K. Pearce,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.a-Pearce.pdf +3082,1977.12.00,Dec-77,1977,Boat,South africa,Western Cape Province,"Macassar, False Bay",Fishing for bottom fish,"boat, occupant: Danie Schoeman",Unknown,No injury to occupant: shark bit boat's port chine,N,T. Wallett,p.38,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.00-Schoeman.pdf +3081,1977.11.12,12-Nov-77,1977,Provoked,South africa,Western Cape Province,Klein River Lagoon,Standing,male,M,Shark lacerated his hand when he grabbed it by the tail PROVOKED INCIDENT,N,Times of Hermanus,11/16/1977,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.11.12-KleinRiver.pdf +3080,1977.10.30,30-Oct-77,1977,Unprovoked,South africa,Western Cape Province,"Bluegums Rock, Partridge Point",Spearfishing,Andre Hartman,M,"No injury, shark bit speargun & pushed diver through the water",N,A. Hartman; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.10.30-Hartman.pdf +3079,1977.08.31,31-Aug-77,1977,Unprovoked,Australia,South Australia,"Cactus Beach, near Ceduna",Surfing,Philip Horley,M,"Board rammed & bitten, left thigh lacerated",N,The Age,9/2/1977,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.31-Horley.pdf +3078,1977.08.23,23-Aug-77,1977,Unprovoked,Australia,Queensland,"Buddina Beach, south of Noosa",Floating on an inflatable raft,George Walter,M,"FATAL, left arm severed, legs bitten ",Y,The Age,9/1/1977; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.23-Walter.pdf +3077,1977.08.19,19-Aug-77,1977,Boat,South africa,Western Cape Province,Off Macassar Beach,Fishing,"6 m skiboat, occupants: Alex Mamacos, Noel Glintenkamp, Tony Mountifield & Dillon Alexandra",M,"Shark leapt into boat, pinning Mamacos beneath and fracturing his pelvis, then trashed the boat rendering it inoperable",N,T. Wallett,pp.33-34,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.19-Mamacos.pdf +3076,1977.08.14,14-Aug-77,1977,Unprovoked,Usa,California,"McClure Beach, near Tomales Point, Marin County",Free diving for abalone (surfacing),Glenn Friedman,M,Leg lacerated,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.14-Friendman_Collier.pdf +3075,1977.08.05,05-Aug-77,1977,Invalid,Usa,Florida,"St. Petersburg, Pinellas County",Wading,Michael Muradian,M,Lacerations to hip and leg,N,St. Petersburg Independent,8/8/1977,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.05-Muradian.pdf +3074,1977.07.02,02-Jul-77,1977,Sea Disaster,Usa,California,"Off San Diego, San Diego County",40' fishing boat sank,Steve Posey,M,Laceration to right hand,N,The Times (San Mateo),7/5/1977,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.07.02-Posey.pdf +3073,1977.06.26,26-Jun-77,1977,Provoked,Usa,Florida,"12 miles northeast of Mayport, Duval County",Spearfishing / Scuba diving,Willie White,M,"PROVOKED INCIDENT Diver poked shark with spear, then shark bit his right foot",N,News Tribune,6/28/1977 & 7/14/1977 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.26-WillieWhite.pdf +3072,1977.06.06,06-Jun-77,1977,Unprovoked,Usa,Texas,Padre Island,Collecting fish from net,"Dan Baen, Jr.",M,Lacerations to wrist,N,Abilene Reporter-News,6/9/1977,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.06-Baen.pdf +3071,1977.05.26,26-May-77,1977,Boat,South africa,Western Cape Province,13 km off Knysna ,Fishing for yellowtail,"5 m skiboat Graanjan, occupants: Rudy van Graan, Jan de Waal Lombard",M,Lombard's thigh was lacerated by shark that leapt into boat ,N,T. Wallett,pp.32-33,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.26-Lombard.pdf +3070,1977.05.16,16-May-77,1977,Invalid,Australia,Queensland,Southport,Unknown,Gordon Gibbs,M,"Missing, believed taken by a shark",N,Courier-Mail,10/2/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.16-NV-Gibbs.pdf +3069,1977.04.26,26-Apr-77,1977,Unprovoked,Australia,Queensland,Tallebudgera,Unknown,Gary Jones,M,Survived,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.26-Jones.pdf +3068,1977.04.21,21-Apr-77,1977,Unprovoked,Usa,Hawaii,"Ka'anapali, Maui",Swimming,Ruskin Vest,M,Arm bitten,N,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.21-Vest.pdf +3067,1977.03.17,17-Mar-77,1977,Unprovoked,South africa,Western Cape Province,"Lappiesbaai Beach, Stilbaai",Swimming,Dr. Rolf Johan Lund,M,Right foot bitten,N,R.J. Lund,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.17-Lund.pdf +3066,1977.03.13.c,13-Mar-77,1977,Sea Disaster,Australia,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",Verdon Harrison,M,"His feet were bitten by sharks, but he was rescued by a charter boat that arrived on the scene just an hour and 15 minutes after the sharks first appeared, too late to save the lives of Hayes and Beaver",N,Sunday Mail (QLD),10/11/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.c-Harrison.pdf +3065,1977.03.13.b,13-Mar-77,1977,Sea Disaster,Australia,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",Victor Beaver,M,FATAL,Y,Sunday Mail (QLD),10/11/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.b-Beaver.pdf +3064,1977.03.13.a,13-Mar-77,1977,Sea Disaster,Australia,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",John Hayes,M,FATAL,Y,Sunday Mail (QLD),10/11/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.a-Hayes.pdf +3063,1977.02.26,26-Feb-77,1977,Unprovoked,Australia,New South Wales,"Kingscliffe Beach, south of Tweed Heads","Pushed surfmat of a young girl out of the shark's path, drawing shark's attention to his own board",Paul Howard,M,"Left hand, arm & leg lacerated, & shark bit chunk out of his surfboard",N,Ruston Daily Leader,2/28/1977; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.26-Howard.pdf +3062,1977.02.04,04-Feb-77,1977,Invalid,Australia,Victoria,Sorrento Back Beach,Unknown,male,M,Shark involvement prior to death was unconfirmed,Y,The Age,2/8/1977,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.04-Sorrento.pdf +3061,1977.02.00,Feb-77,1977,Unprovoked,New caledonia,Unknown,I'le Ouen,Unknown,Jean Blanchet,Unknown,Face & thorax bitten,N,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.00-Blanchet.pdf +3060,1977.01.00,Jan-77,1977,Unprovoked,Mexico,Guerrero,La Playa Hornos (near Acapulco),Swimming,Mexican male,M,"FATAL, left leg severed, neck cut ",Y,A.Resciniti,p.107,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.01.00-MexicanMale.pdf +3059,1976.12.29,29-Dec-76,1976,Unprovoked,Australia,Queensland,Caloundra,Unknown,Graham Archall,M,Survived,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.29-Archall.pdf +3058,1976.12.18,18-Dec-76,1976,Unprovoked,Usa,California,"San Miguel Island, Santa Barbara County",Hookah diving for abalone (submerged),Jay Worrell,M,Buttocks & hip bitten,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.18-Worrell_Collier.pdf +3057,1976.11.27,27-Nov-76,1976,Unprovoked,South africa,Western Cape Province,Clifton,"Thrashing the water / imitating the shark victim from ""Jaws""",Geoffrey Kirkam Spence,M,Torso bitten,N,G. Spence,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.27-Spence.pdf +3056,1976.11.26,26-Nov-76,1976,Invalid,Australia,Queensland,Southport Bar,Unknown,Albert van Ryseen,Unknown,"Missing, believed taken by a shark, but not confirmed",Y,Courier-Mail,10/2/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.26-NV-vanRyseen.pdf +3055,1976.11.25,25-Nov-76,1976,Unprovoked,Usa,Florida,"Delray Beach, Palm Beach County",Surfing,Al Brenneka,M,"Right arm severed 1"" below elbow with extensive tissue loss 3"" above elbow",N,A. Brenneka; E. Pace; NY Times,11/26/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.25-Brenneka.pdf +3054,1976.11.23,23-Nov-76,1976,Invalid,South africa,KwaZulu-Natal,Warner Beach,Swimming,Jimmy Jackson,M,Laceration to foot,N,Natal Mercury,,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.23-Jackson.pdf +3053,1976.11.06,Nov-76,1976,Provoked,South africa,Western Cape Province,Macassar,Fishing for white shark,"boat, occupant: Danie Schoeman",Unknown,"No injury to occupants. Hooked shark bit boat's transom, PROVOKED INCIDENT",N,T. Wallett,p.37-38,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.06-Schoeman.pdf +3052,1976.10.27,27-Oct-76,1976,Boat,South africa,Western Cape Province,Gordon’s Bay,Boat,"7 m skiboat Alrehmah III, occupants: Adolph Schlechter & 3 friends",Unknown,"No injury to occupants, shark leapt on bow of boat",N,T. Wallett,p.32,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.27-AlremahII.pdf +3051,1976.10.18,18-Oct-76,1976,Unprovoked,Usa,California,"Moonstone Beach, Humboldt County",Surfing,William Kennedy,M,Leg bitten ,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.18-Kennedy_Collier.pdf +3050,1976.10.06,06-Oct-76,1976,Unprovoked,South africa,Eastern Cape Province,Cape St. Francis,Surfing,Marshall Flanagan,M,Left thigh lacerated,N,M. Levine,"GSAF; J. Wallace,ORI; T. Wallett",http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.06-Flanagan.pdf +3049,1976.09.22,22-Sep-76,1976,Sea Disaster,New caledonia,Unknown,Sarcelle,Shipwreck,a small boat,Unknown,It was believed that survivors were killed by sharks,N,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.22-NewCaledoniaBoat.pdf +3048,1976.09.19,19-Sep-76,1976,Unprovoked,Australia,South Australia,"Point Lowly, north of Whyalla","Skindiving,",Darryl Richardson,M,"Right leg bitten below the knee, left ankle & foot lacerated",N,A. Sharpe,p.125,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.19-Richardson.pdf +3047,1976.09.17,17-Sep-76,1976,Sea Disaster,Hong kong,South China Sea 200 miles from Hong Kong,Unknown,"3,909-ton Panamanian freighter Chieh Lee sank in a typhoon",Unknown,M,"FATAL, right leg bitten",Y,Daily Review,9/21/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.17-sailor.pdf +3046,1976.09.12.b,12-Sep-76,1976,Unprovoked,Usa,Florida,"Jacksonville, Duval County",Swimming,"Michael Karras, Jr.",M,FATAL,Y,Washington Post,9/24/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.b-Michael-Karras.pdf +3045,1976.09.12.a,12-Sep-76,1976,Unprovoked,Usa,Florida,"Jacksonville, Duval County",Swimming,"Ricky Karras, Jr.",M,FATAL,Y,Washington Post,9/24/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.a-Ricky-Karras.pdf +3044,1976.09.06,06-Sep-76,1976,Unprovoked,Usa,Florida,"Sebastian, Indian River County",Surfing,Peter Ferrer,M,Laceration to left lower leg,N,P. Ferrer,,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.06-Ferrer.pdf +3043,1976.08.26,26-Aug-76,1976,Unprovoked,Usa,North Carolina,"Emerald Isle Pier (near Morehead City), Carteret County","Surfing, fell off surfboard",Randy Hall,M,Right ankle & foot lacerated,N,C. Creswell,GSAF; F. Schwartz,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.26-RandyHall.pdf +3042,1976.08.24,24-Aug-76,1976,Unprovoked,Usa,Oregon,Winchester Bay,Surfing,Mike Shook,M,"No injury, board bitten",N,D. Miller & R. Collier; R. Collier,pp.69-70; J. McCosker & R.N. Lea ,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.24-Shook_Collier.pdf +3041,1976.07.24,24-Jul-76,1976,Unprovoked,Usa,Florida,St. Lucie County,Spearfishing,Charles Cook,M,Lacerations to forearms,N,News-Tribune,7/27/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.24-Cook.pdf +3040,1976.07.21,21-Jul-76,1976,Unprovoked,Usa,Louisiana,Scofield - Sandy Point,Playing,Travis Raigan,M,Leg bitten,N,Amarillo Globe-Times,7/22/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.21-Ratigan.pdf +3039,1976.07.16,16-Jul-76,1976,Unprovoked,Usa,Hawaii,"Maha'ulepu, Koloa, Kaua'i",Scuba diving,Stephen Curtis Powell,M,"FATAL, disappeared while diving, lower portion of body recovered",Y,The Argus,7/19/1976; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.16-Powell.pdf +3038,1976.07.12,12-Jul-76,1976,Unprovoked,Usa,Florida,St. Lucie County,Spearfishing,Bill Loughlin,M,"""lost part of a finger""",N,News-Tribune,7/27/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.12-Loughlin.pdf +3037,1976.06.23,23-Jun-76,1976,Unprovoked,Usa,Florida,"St. Andrews State Park, Bay County",Skindiving,Paul Maurer,M,Lacerations to right arm,N,Albuquerque Journal,6/25/1976 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.23-Maurer.pdf +3036,1976.06.10,10-Jun-76,1976,Unprovoked,Usa,Hawaii,"Kama'ole Beach, Park No. 1, Kihei, Maui",Swimming,Donald Gard,M,Leg & foot bitten,N,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.10-Gard.pdf +3035,1976.06.02.R,02-Jun-1976,1976,Provoked,Italy,Reggio Calabria Province,Bovalino,Fishing,Francisco Pelle,M,Shark rammed boat PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.02.R-Pelle.pdf +3034,1976.06.01,01-Jun-76,1976,Boat,Australia,Queensland,Off Stradbroke Island,Sitting in bow of her father's 5 m boat,Debbie McMillan,F,"Shark jumped in boat, hitting her in the face & knocking her unconscious",N,A. Sharpe,p.103,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.01-McMillan.pdf +3033,1976.05.02,02-May-76,1976,Boat,South africa,Western Cape Province,40 km off Cape Point,Competing in a light tackle game fishing,"6 m skiboat, occupants: Terry McManus, Dan Clark and Blackie Swart",Unknown,"Shark following hooked fish, rammed & holed boat",N,The Argus,5/3/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.05.02-McManus-boat.pdf +3032,1976.04.28,28-Apr-76,1976,Invalid,Usa,Texas,Galveston Island,Unknown,Unknown,Unknown,"Possible drowning victim, remains retrieved from shark caught by fishermen on 28-Apr-1976",Y,NY Times 4/30/1976,p.14,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.04.28-HumanRemains-Galveston.pdf +3031,1976.03.12.b,12-Mar-76,1976,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Standing,Glen Wright,M,Lacerations to left leg,N,Winnipeg Free Press. 3/17/1976,,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.b-GlenWright.pdf +3030,1976.03.12.a,12-Mar-76,1976,Boat,South africa,Western Cape Province,Robberg Point,Fishing,"boat, occupants: Jacob Kruger & crew",Unknown,"No injury to occupants, shark buckled prop shaft",N,T. Wallett; GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.a-Kruger-boat.pdf +3029,1976.03.09,09-Mar-76,1976,Boat,South africa,Western Cape Province,"2 km from Macassar, False Bay",Unknown,5 m skiboat; Stephanie,Unknown,Shark breached hull of boat,N,T. Wallett,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.09-Stephanie.pdf +3028,1976.03.02,02-Mar-76,1976,Boat,South africa,Western Cape Province,"2 km from Macassar, False Bay",Unknown,"5 m skiboat Stephanie, occupants: Fanie Schoeman and Brigadier Bronkhorst",Unknown,"Shark leapt into boat, hitting Fanie Schoeman on his back before sliding into the sea",N,T. Wallett,pp.30-31,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.02-Stephanie-boat.pdf +3027,1976.02.03,03-Feb-76,1976,Boat,South africa,Western Cape Province,False Bay,Shark watching,"6 m boat Suki Saki, occupants: E.C. Landells & 2 friends",Unknown,"No injury to occupants, shark rammed bow, driving its head into the hull",N,T. Wallett,p.30,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.02.03-Suki-Saki.pdf +3026,1976.01.13,13-Jan-76,1976,Provoked,South africa,Western Cape Province,Hartenbos,Shark fishing,"6 m catamaran, occupants: Peter Robertson, Beauchamp Robertson, Gerald Spence & 3 crew",Unknown,"No injury to occupants, After shark was harpooned & shot, it holed the boat PROVOKED INCIDENT",N,T. Wallett,,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.13-catamaran.pdf +3025,1976.01.12,12-Jan-76,1976,Unprovoked,Australia,Queensland,Harvey Bay,Unknown,Marlene Evler,F,Survived,N,R. McKenzie,Coast Sun,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.12-Evler.pdf +3024,1976.01.11,11-Jan-76,1976,Provoked,South africa,Western Cape Province,Kalk Bay,Fishing for snoek & yellowtail,"7 m fishing boat Metoo, occupants: Nicky & Paul Goles & 4 friends",Unknown,"Hooked shark leapt onboard & into fish well, which it smashed PROVOKED INCIDENT",N, T. Wallett,p.30,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.11-Metoo.pdf +3023,1976.01.08,08-Jan-76,1976,Unprovoked,Usa,Florida,"Off Fort Pierce, St Lucie County",Spearfishing / scuba diving,Hank Greenberg,M,Puncture wounds to head & neck,N,Naples Daily News,1/9/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.08-Greenberg.pdf +3022,1976.01.02,02-Jan-76,1976,Unprovoked,New zealand,North Island,"Te Kaha, East coast",Spearfishing,John Grainger Leith,M,FATAL,Y,R.D. Weeks,GSAF; New Zealand Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.02-Leith.pdf +3021,1976.00.00.b,1976,1976,Unprovoked,Usa,Hawaii,"Off Lahaina, Maui",Scuba diving,Danson Nakaima,M,"FATAL, lost consciousness at depth of 180'. Large sharks seen near partial remains of body",Y,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1976.00.00.b-Nakaima.pdf +3020,1975.12.29,29-Dec-75,1975,Boat,Australia,South Australia,Glenelg,Attempting to drive shark away from the beach,"rescue boat of the Glenelg Surf Club, captained by G.W. Scarfe",Unknown,"No injury, shark charged & rammed boat several times",N,A. Sharpe,p.125,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.29-RescueBoat.pdf +3019,1975.12.06,06-Dec-75,1975,Unprovoked,Usa,California,Farallon Islands,Scuba diving & spearfishing,Robin Buckley (male),M,Leg bitten,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.06-Buckley_Collier.pdf +3018,1975.12.02,02-Dec-75,1975,Provoked,Australia,New South Wales,"Porpoise Pool, Tweed Heads",Filming & feeding captive sharks,John Strand,M,Tooth mark in left elbow PROVOKED INCIDENT,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.02-Strand.pdf +3017,1975.11.19.b,19-Nov-75,1975,Unprovoked,Australia,New South Wales,"Queenscliff, Sydney",Standing,Peter Cole,M,Laceration to posterior thigh,N,The Age,11/20/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.b-Cole.pdf +3016,1975.11.19.a,19-Nov-75,1975,Unprovoked,South africa,KwaZulu-Natal,"South Beach, Durban",Standing,Michael van den Berg,M,Left foot lacerated,N,G. Charter,B. Davis,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.a-VanDenBerg.pdf +3015,1975.11.07,07-Nov-75,1975,Unprovoked,Australia,Queensland,Lookout Point,Unknown,John Haig,M,Puncture wounds in hand,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.07-Haig.pdf +3014,1975.11.02,02-Nov-75,1975,Unprovoked,Usa,Florida,"Crescent Beach, St. Johns County",Surfing,Scott Lee Hurst,M,Foot bitten,N,NY Times,11/6/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.02-Hurst.pdf +3013,1975.10.21,21-Oct-75,1975,Invalid,Usa,New Jersey,"Sandy Hook, Monmouth County",Surf fishing,Unknown,M,"""Tooth marks"" in left leg",N,J. Stone; Asbury Park Press,10/22/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.21-SandyHook.pdf +3012,1975.10.12,12-Oct-75,1975,Unprovoked,Australia,New South Wales,"Lennox Head, Ballina",Surfing,Barry Neale,M,"Cracked jaw & broken tooth, shark took chunk out of surfboard",N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.12-Neale.pdf +3011,1975.10.04,04-Oct-75,1975,Invalid,Usa,California,"Seal Beach, Orange County",Surfing,Unknown,Unknown,Unknown,N,Unconfirmed Report,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.04-NV-California.pdf +3010,1975.09.00,Sep-75,1975,Unprovoked,South africa,KwaZulu-Natal,Richards Bay,Paddleskiing,Tony Meehan,M,Right foot & ankle lacerated,N,G. Charter,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.09.00-Meehan.pdf +3009,1975.08.17,17-Aug-75,1975,Unprovoked,South africa,Eastern Cape Province,Cape St. Francis,Surfing,David Robertson,M,Left leg & surfboard bitten,N,D. Robertson,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.17-Robertson.pdf +3008,1975.08.12,12-Aug-75,1975,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Floating on a small orange raft ,Henry Peterson,M,"Calf bitten, leg surgically amputated below the knee Note: by late August, 3 more bathers had been bitten by sharks at Daytona Beach",N,NY Times,8/17/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.12-Peterson.pdf +3007,1975.08.09,09-Aug-75,1975,Unprovoked,Usa,California,"Usal Creek, Bear Harbor, Mendocino County",Free diving for abalone,Gilbert Brown,M,"Shoulder, arm & hand lacerated",N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.09-Brown_Collier.pdf +3006,1975.08.04,04-Aug-75,1975,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom swimming,male,M,"Leg bitten, surgically amputated",N,Corpus Christi Times,8/4/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.04-HongKong.pdf +3005,1975.07.30.b,30-Jul-75,1975,Sea Disaster,Usa,Oregon,Unknown,Sea disaster,Grace Conger ,F,"FATAL, arms & legs bitten",Y,Times,8/1/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.b-Conger.pdf +3004,1975.07.30.a,30-Jul-75,1975,Unprovoked,Australia,Tasmania,"Fluted Cape, Bruny Island",Scuba diving for abalone,Robert Slack,M,FATAL,Y,Times,8/1/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.a-Slack.pdf +3003,1975.07.26.b,26-Jul-1975.b,1975,Unprovoked,Usa,Florida,"Off Hutchinson Island, St Lucie County",Free diving,Charles Cook,M,Forearms lacerated,N,News-Tribune,7/28/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.b-Cook.pdf +3002,1975.07.26.a,26-Jul-75,1975,Unprovoked,Australia,Queensland,Maroochydore,Surfing,Gary Grace,M,Buttocks & leg bitten,N,Bucks County Courier Times,7/28/1975; Sunday Mail (QLD),http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.a-Grace.pdf +3001,1975.07.23,23-Jul-75,1975,Unprovoked,Usa,California,"Perch Rock, Point Conception, Santa Barbara County",Scuba diving for abalone (at surface),Robert Revstock,M,Legs bitten,N,D. Miller & R. Collier; R. Collier,pp.64-65; G. Ambrose,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.23-Rebstock_Collier.pdf +3000,1975.07.19,19-Jul-75,1975,Unprovoked,Usa,California,"Point Conception, Santa Barbara County",Hookah diving for abalone,Gary Johnson,M,"No injury, swim fin torn",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.19-Johnson.pdf +2999,1975.07.15,15-Jul-75,1975,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,Beverly White,F,Arm lacerated,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.15-BeverlyWhite-X.pdf +2998,1975.07.05,05-Jul-75,1975,Provoked,Australia,Western Australia,"15 km north of Lancelin, north of Perth",Spearfishing,Dennis Thompson,M,Speared shark bit his arm between elbow and shoulder PROVOKED INCIDENT,N,Washington Post,7/7/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.05-DennisThompson.pdf +2997,1975.07.04,04-Jul-75,1975,Unprovoked,Usa,Florida,"Indiatlantic, Brevard County",Surfing,Robert Clark,M,"Foot bitten, tendons damaged",N,NY Times,7/6/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.04-Clark.pdf +2996,1975.06.23.b,23-Jun-75,1975,Unprovoked,Usa,South Carolina,"Windy Hill, near Myrtle Beach, Horry County",Swimming ,Jim Krents,M,Lacerations to right foot,N,Morning Herald (Uniontown,PA),http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.b-Krents.pdf +2995,1975.06.23.a,23-Jun-75,1975,Unprovoked,Usa,South Carolina,"North Myrtle Beach, Horry County",Standing,Donna Hutson,F,Hand & wrist bitten,N,Morning Herald (Uniontown,PA),http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.a-Hutson.pdf +2994,1975.06.15,15-Jun-75,1975,Unprovoked,Usa,Alabama,5 miles off the coast,Swimming near his boat,William Wayne Daniels,M,Left leg bitten,N,The News,6/16/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.15-Daniels.pdf +2993,1975.06.02.R,02-Jun-1975,1975,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Surfing,Jeffrey Hanrahan,M,"No injury, board bumped",N,Sarasota Herald Tribune,6/2/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.02.R-Hanrahan.pdf +2992,1975.06.00.c,Jun-75,1975,Provoked,Usa,Florida," New Smyrna Beach, Volusia County",Unknown,Unknown,M,Slightly injured when he stepped on a shark PROVOKED INCIDENT,N,undated press clipping - see 1975.06.00.b,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.00.c-stepped-on-shark.pdf +2991,1975.05.25,25-May-75,1975,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Edward Bassett,M,Right foot bitten,N,Sumter Daily Item,7/9/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.25-Bassett.pdf +2990,1975.05.20,20-May-75,1975,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Bathing,Cindy Jones,F,Leg bitten,N,Pacifc Stars and Stripes,6/3/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.20-Jones.pdf +2989,1975.04.25,25-Apr-75,1975,Invalid,Italy,Genoa Province,Cervara,Scuba diving,Walter Sansoni,M,"The press reported this as a shark attack, but the diver was the agressor",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.25-Sansoni.pdf +2988,1975.04.18,18-Apr-75,1975,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,Indian male,M,Probable drowning / scavenging,Y,B. Davis,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.18-IndianMale.pdf +2987,1975.04.05,05-Apr-75,1975,Unprovoked,South africa,Western Cape Province,Millers Point,Spearfishing Competition,Kevin Thompson,M,"No injury, rammed by shark",N,Cape Times,4/7/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.05-Thompson.pdf +2986,1975.03.29,29-Mar-75,1975,Invalid,South africa,KwaZulu-Natal,Tongaat,Swimming,Indian male,M,Probable drowning / scavenging,Y,B. Davis,Natal Sharks Board,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.29-Tongaat.pdf +2985,1975.03.18,18-Mar-75,1975,Unprovoked,Australia,Queensland,Mornington Island,Unknown,female,F,Hand bitten,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.18-MorningtonIsland.pdf +2984,1975.03.16,16-Mar-75,1975,Unprovoked,Usa,Florida,"Clearwater Beach, Pinellas County",Floating in inner tube,William Hodges,M,Left leg & foot bitten,N,News Tribune,5/17/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.16-Hodges.pdf +2983,1975.03.13,13-Mar-75,1975,Provoked,Australia,Queensland,Southport Aquarium,Diving & force-feeding the shark,William Hookway,Unknown,Laceration to thigh by captive shark PROVOKED INCIDENT,N,The Age,3/14/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.13-Hookway.pdf +2982,1975.03.09,09-Mar-75,1975,Provoked,South africa,Western Cape Province,"Boggomsbaai, Mossel Bay",Attempting to drag hooked shark ashore by its tail,Frans Swanepoel,M,Left leg bitten PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.09-Swanepoel.pdf +2981,1975.03.00,Mar-75,1975,Sea Disaster,Bangladesh,Ganges-Brahmaputra delta,Unknown,Ferry capsized,Unknown,Unknown,"FATAL, of 190 passengers & crew thrown into the water, 50 people were said to have been killed by sharks",Y,M. McDiarmid,p.67,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.00-Bangladesh.pdf +2980,1975.02.23,23-Feb-75,1975,Unprovoked,South africa,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Surfing,Bretton Russell Jones,M,Foot severed,N,S. Jooste; B.R. Jones,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.23-Jones.pdf +2979,1975.02.14.R,14-Feb-1975,1975,Boat,South africa,Western Cape Province,Plettenberg Bay,Unknown,"hobiecat, occupants: Judy Lambert & a friend",Unknown,Shark bit rudder & hull,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.14-Hobiecat.pdf +2978,1975.02.10,10-Feb-75,1975,Unprovoked,Australia,South Australia,(Point Sinclair) Penong,Swimming underwater from crayfish cage to a fishing bait,Wade Shipard,M,Right leg severed FATAL,Y, A. Sharpe,pp.124-125; Sydney Morning Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.10-Shipard.pdf +2977,1975.02.09,09-Feb-75,1975,Unprovoked,Australia,Victoria,Anglesea,Crayfishing,John Lear,M,Puncture wounds to right shoulder,N,The Age,2/11/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.09-Lear.pdf +2976,1975.02.07,07-Feb-75,1975,Unprovoked,Australia,Queensland,Currumbin Rock,Unknown,M. Worman,M,Survived,N,J. Green,p. 36,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.07-Worman.pdf +2975,1975.02.01,01-Feb-75,1975,Provoked,South africa,Western Cape Province,"Beespens, False Bay",Fishing,Gerhard Visser,M,Foot bitten by shark he was gaffing PROVOKED INCIDENT,N,The Argus,2/3/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.01-Visser.pdf +2974,1975.01.19,19-Jan-75,1975,Unprovoked,Australia,South Australia,Coffin Bay,Surfing,David Barrowman,M,"FATAL, body not recovered",Y,J. West; Adelaide Advertiser,1/20/1975; P. Kemp,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.01.19-Barrowman.pdf +2973,1975.00.00.b,1975,1975,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Geeteh Toussaint,M,Laceration to right ankle,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.b-Toussaint.pdf +2972,1975.00.00.a,1975,1975,Unprovoked,Unknown,Unknown,Unknown,Unknown,a soldier,M,FATAL,Y,Reunion Marine Observatory,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.a-NV-Reunion.pdf +2971,1974.12.10,12-Dec-74,1974,Unprovoked,Australia,Western Australia,Geographe Bay,Unknown,G. Allen,Unknown,Survived,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.12.10-Allen.pdf +2970,1974.11.01,01-Nov-74,1974,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Standing,Dwayne W. Ortwine,M,Laceration to foot,N,Daytona Beach Morning Journal,11/2/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.11.01-Ortwine.pdf +2969,1974.09.28,28-Sep-74,1974,Unprovoked,Usa,California,"North of Point Sur, Monterey County",Surfing,Kirk Johnston,M,"Thigh, lower back and surfboard bitten",N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.28-Johnston_Collier.pdf +2968,1974.09.14,14-Sep-74,1974,Unprovoked,Usa,California,"North Farallon Island, Farallon Islands",Hookah diving for abalone,Jon Holcomb,M,Major injuries,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.14-Holcomb_Collier.pdf +2967,1974.09.07,07-Sep-74,1974,Unprovoked,Israel,Red Sea,"North Beach, Eilat",Swimming,Beatrice Aharonowich,F,"Bitten 12 times: multiple lacerations on hands, arms, shoulder breast thigh, both legs, left forearm surgically amputated ",N,The Times (London),9/9/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.07-Aharonowich.pdf +2966,1974.09.02.b,02-Sep-74,1974,Unprovoked,Usa,California,"Franklin Point, San Mateo County",Scuba diving (but on surface),Jack Greenlaw,M,Minor injuries to hand,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.b-Greenlaw.pdf +2965,1974.09.02.a,02-Sep-74,1974,Unprovoked,Usa,California,"Franklin Point, San Mateo County",Scuba diving (but on surface),Dale Webster,M,Minor bite on foot & swimfin,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.a.-DaleWebster.pdf +2964,1974.09.01,01-Sep-74,1974,Sea Disaster,Australia,Queensland,"Junpinpin, off Stradbroke Island",3.3 m fishing boat sank. Treveluwe & Peter Hodgson (wearing lifejackets) were drifting in the current,Adrian Treveluwe,M,"Missing, believed taken by a shark",N,J. Green,p.36; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.01-Treveuwe.pdf +2963,1974.09.00,Sep-74,1974,Unprovoked,Usa,Oregon,Myers Creek,Surfing,Curt Brown,M,No injury,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.00-Brown_Collier.pdf +2962,1974.08.23,23-Aug-74,1974,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom Swimming,male,M,Survived,N,Washington Post,"8/24/1974,p.D6",http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.23-FreedomSwimmer.pdf +2961,1974.08.16.c,16-Aug-74,1974,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom swimming,male,M,FATAL,Y,A. MacCormick,p.157,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.c-Freedom swimmer.pdf +2960,1974.08.16.b,16-Aug-74,1974,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom swimming,Ho-Sin-Ming (male),M,Arm broken & severely lacerated,N,A. MacCormick,p.157,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.b-Ming.pdf +2959,1974.08.16.a,16-Aug-74,1974,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom swimming,Yee Wing Ping (male),M,Left foot bitten,N,A. MacCormick,p.157,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.a-Ping.pdf +2958,1974.08.10,10-Aug-74,1974,Unprovoked,Croatia, Split-Dalmatia County," Lokva Rogoznica, Omis",Unknown,Rolf Schneider,M,Foot severed FATAL,Y,A. De Maddalena; R. Rocconi,,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.10-Schneider.pdf +2957,1974.08.05,05-Aug-74,1974,Unprovoked,Usa,California,"San Gregorio Beach, San Mateo County",Surfing,Robert Sanders,M,Minor injuries to hand,N,R.Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.05-Sanders_Collier.pdf +2956,1974.07.26,26-Jul-74,1974,Unprovoked,Usa,California,"Albion Cove, Albion, Mendocino County",Free diving for abalone (submerged),Robert Kehl,M,Minor bite on heel & swim fin bitten,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.26-Kehl_Collier.pdf +2955,1974.07.20,20-Jul-74,1974,Unprovoked,Usa,Georgia,"Back River, Savannah Beach, Chatham County",Swimming,John Carter,M,FATAL,Y,Rome News Tribune,7/31/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.20-Carter.pdf +2954,1974.07.02,02-Jul-74,1974,Sea Disaster,Usa,Florida ,Gulf of Mexico,Adrift after the sinking of the motor yacht Princess Dianne,Billy Horne,M,Arm bitten FATAL,Y,Wilmington Star,7/3/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.02-BillyHorne.pdf +2953,1974.06.20,20-Jun-74,1974,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,Olive Heaton,F,Lacerations to hip and leg,N,Daytona Beach Morning Journal,6/21/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.06.20-Heaton.pdf +2952,1974.05.26,26-May-74,1974,Unprovoked,Usa,California,"Tomales Point, Marin County",Free diving (but on surface),Leroy Hancock,M,Leg bitten,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.05.26-Hancock_Collier.pdf +2951,1974.04.25.R,25-Apr-1974,1974,Sea Disaster,Unknown,Unknown,Unknown,Fishing boat swamped in a storm,5 men,M,FATAL,Y,Fresno Bee Republican,4/25/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.25.R-Brazil.pdf +2950,1974.04.20,20-Apr-74,1974,Unprovoked,South africa,Western Cape Province,Arniston,Spearfishing,Andre Hartman,M,Left knee lacerated,N,A. Hartman,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.20-Hartman.pdf +2949,1974.04.14,14-Apr-74,1974,Unprovoked,South africa,Eastern Cape Province,Glengariff,Standing,Simon Parkin,M,Lower right leg lacerated,N,S. Parkin,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.14-Parkin.pdf +2948,1974.04.12,12-Apr-74,1974,Unprovoked,Usa,Florida,"Haulover Beach, Miami-Dade County",Swimming,Stacie Alexander,F,Foot bitten,N,Chicago Tribune,4/13/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.12-Alexander.pdf +2947,1974.04.04,04-Apr-74,1974,Unprovoked,South africa,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Surfing,Anthony Kenneth Baker,M,Right foot lacerated,N,A. Baker,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.04-Baker.pdf +2946,1974.03.21,21-Mar-74,1974,Unprovoked,South africa,KwaZulu-Natal,Amanzimtoti,Surfing,James Arthur Gurr,M,"No injury, surfboard bitten",N,J. Gurr,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.21-Gurr.pdf +2945,1974.03.00,Mar-74,1974,Boat,South africa,Western Cape Province,Macassar,Fishing for kob,"skiboat, occupant: Danie Schoeman",Unknown,"No injury to occupant, shark holed boat",N,T. Wallett,p.37,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.00-Schoeman.pdf +2944,1974.02.13.b,13-Feb-74,1974,Unprovoked,South africa,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Swimming,Damon Kendrick,M,"Right calf removed, leg surgically amputated below the knee",N,D. Kendrick,S. Jooste,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.b-Kendrick.pdf +2943,1974.02.13.a,13-Feb-74,1974,Unprovoked,South africa,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Swimming,Joe Kool,M,Right shin lacerated,N,J. Kool,S. Jooste; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.a-Kool.pdf +2942,1974.02.00.b,Feb-74,1974,Boat,South africa,Western Cape Province,Macassar,Fishing for red fish,"skiboat, occupant: Danie Schoeman",Unknown,"No injury to occupant, but a shark chasing a hooked fish holed his boat above the waterline",N,T. Wallett,p.37,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.b-Schoeman.pdf +2941,1974.02.00.a,Early Feb-1974,1974,Boat,South africa,Western Cape Province,Macassar,Fishing for kob,"skiboat, occupants: Danie & Fanie Schoeman",Unknown,"No injury, shark leapt into boat & bit one of the boat's seats",N,T. Wallett,pp.35-37,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.a-Schoeman.pdf +2940,1974.01.13,13-Jan-74,1974,Unprovoked,South africa,KwaZulu-Natal,Cape Vidal,Sitting,James Viljoen,M,2 minor lacerations in foot,N,Daily News (Durban),1/29/1974; GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.13-Viljoen.pdf +2939,1974.01.09,09-Jan-74,1974,Unprovoked,Australia,South Australia,Streaky Bay,Diving for abalone,Terry Manuel,M,"FATAL, right leg severed ",Y,H. Hall; A. Sharpe,p.124;,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.09-Manuel.pdf +2938,1974.01.07.c,07-Jan-74,1974,Unprovoked,South africa,KwaZulu-Natal,Amanzimtoti,Swimming,Cornelius “Les” Pyper,M,Knee & calf lacerated,N,L. Pyper,J. Bass,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.c-Pyper.pdf +2937,1974.01.07.b,07-Jan-74,1974,Unprovoked,Mozambique,Gaza,Xai Xai,Swimming,Oaulkurt-Pape,M,FATAL,Y,Johannesburg Star,1/8/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.b-Oaulkurt-Pape.pdf +2936,1974.01.07.a,07-Jan-74,1974,Unprovoked,Mozambique,Gaza,Xai Xai,Swimming,male,M,FATAL,Y,P. Logan,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.a-Xai-Xai.pdf +2935,1974.00.00.b,Summer 1974,1974,Unprovoked,Australia,Western Australia,Emu Channel,Spearfishing,Glen Tunbridge,M,8 to 10 puncture marks around knee,N,G. Tunbridge,,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.b-Tunbridge.pdf +2934,1974.00.00.a,1974,1974,Unprovoked,Croatia,Primorje-Gorski Kotar County ,Preluka Harbour,Unknown,2 Czech tourists,Unknown,FATAL,Y,A. DeMaddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.a-2Tourists.pdf +2933,1973.12.25,25-Dec-73,1973,Unprovoked,Mozambique,Gaza,Xai Xai,Spearfishing,Christiaan Weissig,M,"Right leg severed at knee, abrasion on left ankle",N,J. Bass; M Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.25-Weissig.pdf +2932,1973.12.21.b,21-Dec-73,1973,Unprovoked,Mozambique,Gaza,Xai Xai,Swimming ,Hans Reiner,M,FATAL,Y,Natal Witness Newspaper,,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.21-Reiner.pdf +2931,1973.12.19.R,18-Dec-1973,1973,Unprovoked,Philippines,Luzon,Unknown,Swimming,Ron Arney,M,FATAL,Y,Washington Post,12/19/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.19.R-Arney.pdf +2930,1973.12.18,18-Dec-73,1973,Unprovoked,Usa,Hawaii,"Kalama Beach, Kihei, Maui",Swimming,Gary W. Floyd,M,Leg bitten,N,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.18-Floyd.pdf +2929,1973.12.00,Dec-73,1973,Unprovoked,Mexico,Guerrero,Acapulco Bay,Swimming alongside yacht Mexico Fiesta,American male,M,FATAL,Y,A.Resciniti,pp.107-108,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.00-MexicanFiesta.pdf +2928,1973.11.25,25-Nov-73,1973,Unprovoked,Australia,Western Australia,Swan River,Unknown,Copley,Unknown,Survived,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.25-Copley.pdf +2927,1973.11.24,24-Nov-73,1973,Unprovoked,Usa,Florida,"Ormond By The Sea, Volusia County",Surfing,Chip Trout,M,Foot bitten,N,Daytona Beach Sunday News-Journal,11/25/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.24-Trout.pdf +2926,1973.11.03,03-Nov-73,1973,Unprovoked,Australia,Queensland,Gin Arm Creek,Unknown,a Solomon Islander,Unknown,Knee lacerated,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.03-SolomonIslander.pdf +2925,1973.09.29,29-Sep-73,1973,Sea Disaster,South africa,KwaZulu-Natal,Mission Rocks,Being pulled to shore from wreck of 25-ton fishing vessel Alan S,male,Unknown,"FATAL, thigh bitten ",Y,Natal Mercury,10/5/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.29-AlanS.pdf +2924,1973.09.14,14-Sep-73,1973,Unprovoked,Bahamas,Grand Bahama Island,"Memory Rock, 18 miles from NW end of the Island","Free diving, Spearfishing",Kevin G. Schlusemeyer,M,Left hand & forearm lacerated,N,M.Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.14-Schlusemeyer.pdf +2923,1973.09.10.R,10-Sep-1973,1973,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom Swimming,Tsang Kai-shing,M,FATAL,Y,Charleston Daily Mail,9/10/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.10.R-Tsang.pdf +2922,1973.09.09,09-Sep-73,1973,Unprovoked,Mexico,Baja California,Guadalupe Island,"Free diving, Spearfishing",Al Schneppershoff,M,"FATAL, leg bitten ",Y,Washington Post,9/12/1973; J. McCosker & R.N. Lea,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.09-Schneppershoff.pdf +2921,1973.09.00,Sep-73,1973,Unprovoked,Egypt,Red Sea,Southern end of the Sinai Peninsula,Unknown,Soldier,M,Massive wound on right thigh with femur exposed,N,R. Davis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.00-NV-RedSea.pdf +2920,1973.08.27,27-Aug-73,1973,Unprovoked,Australia,Queensland,Palm Cove Beach,Unknown,G. Cole,Unknown,Unknown,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.27-Cole.pdf +2919,1973.08.25,25-Aug-73,1973,Unprovoked,Australia,Queensland,"Point Lookout, Stradbroke Island",Surfing,Bruce Lawlor (or Lawler),M,Right foot severed,N,L.A. Times,8/16/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.25-Lawler.pdf +2918,1973.08.16,16-Aug-73,1973,Unprovoked,Usa,Virginia,False Cape,Crabbing (spearing crabs),Chris DeFord,M,Elbow bitten,N,A. MacCormick,p.11,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.16-DeFord.pdf +2917,1973.06.13,13-Jun-73,1973,Unprovoked,Unknown,Unknown,Unknown,Freedom Swimming,2 youths,M,"One man was killed by a shark, the other was injured",N,The Age,6/15/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.06.13-HongKong.pdf +2916,1973.04.04,04-Apr-73,1973,Unprovoked,Mexico,Guerrero,"Revolcadero Beach, Acapulco",Wading,John P.R. Nicholls,M,"FATAL, multiple bites ",Y,A.Resciniti,p.108,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.04.04-Nicolls.pdf +2915,1973.03.26,26-Mar-73,1973,Unprovoked,Australia,Queensland,Palm Island,Unknown,Stuart Baddock,M,Survived,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.26-Baddock.pdf +2914,1973.03.05,05-Mar-73,1973,Unprovoked,Mozambique,Gaza,"Chongeone, Xai Xai",Spearfishing,William C. Lamb,M,FATAL,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.05-Lamb.pdf +2913,1973.03.00,Mar-73,1973,Unprovoked,South africa,KwaZulu-Natal,Scottburgh,Spearfishing,Kevin Cole,M,Hip bruised,N,D. Davies; K. Cole,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.00-Cole.pdf +2912,1973.02.27,27-Feb-73,1973,Unprovoked,Mexico,Guerrero,"Revolcadero Beach, Acapulco",Swimming,Dr. Leo Ephraim Fischer,Unknown,"FATAL, multiple bites ",Y,Reno Gazette,4/8/1973; A.Resciniti,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.02.27-Ephraim.pdf +2911,1973.01.21,21-Jan-73,1973,Provoked,South africa,KwaZulu-Natal,Durban,Fishing from paddleski,C. Thackwray,M,Hooked & gaffed shark bit his right elbow PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.21-Thackwray.pdf +2910,1973.01.09,09-Jan-73,1973,Unprovoked,Usa,Hawaii,"Ho'okipa Beach, Pa'ia, Maui",Surfing,Robert Sterling,M,Leg bitten,N,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.09-Sterling.pdf +2909,1973.00.00.c,1973,1973,Unprovoked,Palau,Aulong Island,Aulong Channel,Scuba diving (submerged),Mitchell Warner,M,"No injury, shark grabbed scuba tank and descended to 110' before releasing him ",N,M.P. Warner,,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.c-Warner.pdf +2908,1973.00.00.b,1973,1973,Unprovoked,Palau,Western Caroline Islands,Unknown,Scuba diving & U/W photography,Bill Curtsinger,M,Hand & right shoulder lacerated,N, National Geographic,January 1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.b-Curstinger.pdf +2907,1973.00.00.a,1973,1973,Unprovoked,South africa,Eastern Cape Province,Queensberry Bay,Surfing,Gordon Harmer,M,"No injury, surboard flung into air & dented",N,G. Harmer,,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.a-Harmer.pdf +2906,1972.12.31,31-Dec-72,1972,Unprovoked,South africa,Western Cape Province,Millers Point,Treading water,Charles Lubbe,M,Lower left leg & foot bitten,N,J. Bass & A. Heydorn; Cape Argus,1/2/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.31-Lubbe.pdf +2905,1972.12.26,26-Dec-72,1972,Unprovoked,Mozambique,Gaza,Xai Xai,Swimming,Helmut Pfosse,M,"Hip, leg, arm, hand & shoulder bitten",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.26-Pfosse.pdf +2904,1972.12.25,25-Dec-72,1972,Unprovoked,Mexico,Guerrero,"Revolcadero Beach, Acapulco",Body surfing,Gerald Soukoff,M,"FATAL, hand severed, right leg and torso bitten ",Y,The Gleaner,1/3/1973; A. Resciniti,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.25-Sockoff.pdf +2903,1972.12.24,24-Dec-72,1972,Unprovoked,South africa,Western Cape Province,Hartenbos,Swimming,Johan Brink,M,"No injury, swim fin bitten",N,J. Bass,ORI; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.24-Brink.pdf +2902,1972.12.22,21-Dec-72,1972,Unprovoked,Australia,Queensland,Currumbin Rock,Unknown,Mark Worman,M,Hand bitten,N,Canberra Times,12/23/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.22-Worman.pdf +2901,1972.12.08,08-Dec-72,1972,Provoked,Australia,New South Wales,"Marineland, Sydney",Unknown,R. Bartlett,Unknown,PROVOKED INCIDENT,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.08-Bartlett.pdf +2900,1972.12.01,01-Dec-72,1972,Unprovoked,Reunion,Saint-Philippe,Basse Vallée,Spearfishing,Unknown,Unknown,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.01-Reunion.pdf +2899,1972.10.22,21-Oct-72,1972,Unprovoked,Australia,Queensland,"Stevens Reef, 70 miles from Mackay",Spearfishing,Norman Hargreaves,M,Right arm bitten,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.22-Hargreaves.pdf +2898,1972.10.21,21-Oct-72,1972,Unprovoked,Australia,New South Wales,Tabourie Beach,Surfing,Terry Cooper,M,Lacerations to thigh & buttocks,N,The Age,10/23/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.21-Cooper.pdf +2897,1972.10.14.b,14-Oct-72,1972,Unprovoked,Usa,US Virgin Islands,"St. Croix, Cane Bay",Scuba diving,Rodney Temple,M,"FATAL, body not recovered",Y,H.D. Baldridge,pp.177 & 185,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.b-Temple.pdf +2896,1972.10.14.a,14-Oct-72,1972,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Kenneth Hiles,M,Survived,N,Daytona Beach Morning Journal,10/18/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.a-Hiles.pdf +2895,1972.10.10.R,10-Oct-1972,1972,Unprovoked,New zealand,North Island,Wanganui,Swimming,Barry Kumara,M,"No injury, leg of jeans torn off",N,European Stars and Stripes,10/10/1973 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.10.R-Kumara.pdf +2894,1972.09.09,09-Sep-72,1972,Unprovoked,Usa,California,"Point Sur, Monterey County",Surfing,Hans Kretschmer,M,Legs & board bitten,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.09-Kretschmer_Collier.pdf +2893,1972.09.04,04-Sep-72,1972,Invalid,Mozambique,Maputo Province,Inhaca Island,Swimming,Yvonne Vladislavick,F,Feet injured,N,Daily News,9/6/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.04-Vladislavick.pdf +2892,1972.08.29,29-Aug-72,1972,Unprovoked,Usa,Florida,"Crescent Beach, St. Johns County",Surfing,Mark Van Leer,M,Left calf bitten,N,Ocala Star Banner,8/30/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.29-VanLeer.pdf +2891,1972.08.17,17-Aug-72,1972,Unprovoked,Usa,Hawaii,"Waimanu, Honoka'a, Hawai'i",Spearfishing,Eric Fotherby,M,Forearm bitten,N,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.17-Fotherby.pdf +2890,1972.08.08,08-Aug-72,1972,Unprovoked,Australia,Tasmania,Tasman Island,Diving for abalone,Gordon Johnson,M,Left foot bitten,N,The Age,8/10/1972; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.08-Johnson.pdf +2889,1972.07.05,05-Jul-72,1972,Invalid,Usa,California,"Laguna Beach, Orange County",Diving,Unknown,Unknown,Sharks reportedly bit legs & fins ,N,Unconfirmed Report,,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.07.05-NV-California.pdf +2888,1972.06.26.b,26-Jun-1972,1972,Unprovoked,Australia,Queensland,Pancake Creek,Unknown,Kenneth Murchison,M,FATAL,Y,Canberra Times,6/26/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.b-Murchison.pdf +2887,1972.06.26.a,26-Jun-1972,1972,Unprovoked,Australia,Queensland,Pancake Creek,Unknown,Ronald Kelly,M,FATAL,Y,Canberra Times,6/26/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.a-Kelly.pdf +2886,1972.06.10,10-Jun-72,1972,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing,Richard Salick,M,Buttocks bitten,N,P. Salick,,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.10-Salick.pdf +2885,1972.05.28,28-May-72,1972,Unprovoked,Usa,California,"Bird Rock, near Tomales Point, Marin County",Free diving for abalone,Helmut Himmrich,M,Bitten on legs & buttock,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.28-Himmrich_Collier.pdf +2884,1972.05.06,06-May-72,1972,Unprovoked,French polynesia,Tuamotus,Ahé Atoll,Spearfishing,B.T.,M,Thigh bitten,N,M. Fouques,et.al,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.06-BT.pdf +2883,1972.04.16,16-Apr-72,1972,Unprovoked,Western samoa,Upolu Island,Nu’ulua,Swimming,"Alan Banner, Peace Corps volunteer",M,FATAL,Y,J. Gregory,,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.16-Banner.pdf +2882,1972.04.01.b,01-Apr-72,1972,Unprovoked,Australia,Queensland,Wellington Point,Unknown,Sonja Kuelsen,F,Left leg bitten,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.b-Kuelsen.pdf +2881,1972.04.01.a,01-Apr-72,1972,Unprovoked,Mozambique,Gaza,Xai Xai,Swimming,Richard George Wilson,M,FATAL,Y,Note: The Johannesburg Star initially recorded his name as Richard Wilson Gordon,,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.a-Wilson.pdf +2880,1972.03.21,21-Mar-72,1972,Provoked,Unknown,Unknown,Unknown,Fishing,John Fairfax,M,Arm bitten by hooked shark PROVOKED INCIDENT,N,NY Times 4/2/1972,,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.21-Fairfax.pdf +2879,1972.03.16,16-Mar-72,1972,Unprovoked,Usa,Hawaii,"Waihe'e, Wailuku, Maui",Spearfishing,"Adam Gomes, Jr.",M,Leg bitten,N,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.16-Gomes.pdf +2878,1972.02.20,20-Feb-72,1972,Unprovoked,Australia,Victoria,"Wilson's Promontory, Waratah Bay",Surfing,Stuart Rogers,M,Laceration above knee,N,Sydney Morning Herald,2/21/1972 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.20-Rogers.pdf +2877,1972.02.12,12-Feb-72,1972,Unprovoked,Australia,Tasmania,Elliot's Cove,Unknown,D. Trayling,Unknown,Survived,N,C. Black,GSAF; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.12-Trayling.pdf +2876,1972.01.01.c,01-Jan-72,1972,Unprovoked,South africa,Eastern Cape Province,St. George’s Strand,Swimming,Jacob Nkomo,M,"FATAL, coroner's Verdict: ""Death presumably through shark attack & drowning""",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.c-Nkomo.pdf +2875,1972.01.01.b,01-Jan-71,1972,Unprovoked,South africa,KwaZulu-Natal,Kosi Bay,Sitting in shallows,Janie Pelser,F,Foot bitten,N,J. Bass & G. Hughes; J. Pelser,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.b-Pelser.pdf +2874,1972.01.01.a,01-Jan-71,1972,Unprovoked,Mozambique,Gaza,Xai Xai,Standing,Robert Richard,M,"Leg severed at knee, hand severed, arms, torso & buttock severely lacerated",N,J. Bass; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.a-Richard.pdf +2873,1972.00.00.b,1972,1972,Unprovoked,France,Antibes,Unknown,Swimming,Unknown,Unknown,Shoulder injured,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.b-Antibes.pdf +2872,1972.00.00.a,1972,1972,Unprovoked,Marshall islands,Illeginni Atoll,Unknown,"Free diving, collecting shells",Alan Titchenal,M,Right hand & torso lacerated,N,G. Ambrose,pp.78-86,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.a-Titchenal.pdf +2871,1971.12.23,23-Dec-71,1971,Unprovoked,Australia,New South Wales,Smokey Cape,Unknown,G. Byron,Unknown,Survived,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.23-Byron.pdf +2870,1971.12.16,16-Dec-71,1971,Unprovoked,South africa,Western Cape Province,"Fish Hoek, False Bay",Swimming,Cheryl Teague,F,Right forearm bitten,N,C. Teague, M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.16-Teague.pdf +2869,1971.12.05,05-Dec-71,1971,Unprovoked,Australia,Queensland,Gladstone,Unknown,Gregory Carroll,M,FATAL,Y,The Age,12/9/1971,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.05-Carroll.pdf +2868,1971.11.27,25-Nov-1971,1971,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom Swimming,Chan Sze-king,M,"Left leg severely bitten, surgically amputated",N,The Advocate,11/25/1971; Post Crescent,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.27-Tracy.pdf +2867,1971.11.25.R,27-Oct-71,1971,Provoked,Australia,New South Wales,"Marineland, Sydney",Unknown,K. Tracy,Unknown,PROVOKED INCIDENT,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.25.R-Chan.pdf +2866,1971.10.23,23-Oct-71,1971,Unprovoked,Usa,Florida,"Ft. Pierce, St Lucie County",Surfing,"Walter E. Milford, Jr.",M,"Right shoulder, arm & hand bitten",N,News Tribune,10/25/1971 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.23-Milford.pdf +2865,1971.10.14,14-Oct-71,1971,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Swimming,Werner Bayer,M,Wrist & hand lacerated,N,J. Bass,,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.14-Bayer.pdf +2864,1971.10.02,02-Oct-71,1971,Unprovoked,Usa,California,"Sea Ranch, Sonoma County",Scuba diving,Calvin Ward,M,Bitten on legs,N,D. Miller & R. Collier; R. Collier,p. 48,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.02-Ward_Collier.pdf +2863,1971.09.25,25-Sep-71,1971,Unprovoked,Usa,North Carolina,"Emerald Isle, Carteret County",Surfing,J. Horner,Unknown,Left foot injured,N,F. Schwartz,p.23,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.25-Horner.pdf +2862,1971.09.07,07-Sep-71,1971,Unprovoked,Croatia,Istria County,Ika,Swimming,Stanislav Klepa,M,FATAL,Y,R. Rocconi & C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.07-Klepa.pdf +2861,1971.09.05,05-Sep-71,1971,Unprovoked,Australia,South Australia,Adelaide,Fishing,Leslie Oswald Harris,M," FATAL. Shark bite was minor injury, but he suffered a heart attack afterwards and died 6 hours later",Y,J. West,Adelaide Advertiser,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.05-Harris.pdf +2860,1971.08.21,21-Aug-71,1971,Provoked,Australia,New South Wales,"Manly Marineland, Sydney",Scuba diving & feeding fish,Jim Allman,M,Eight puncture wounds to right leg by captive shark PROVOKED INCIDENT,N,Sydney Morning Herald,8/22/1971,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.08.21-Allman.pdf +2859,1971.07.26,26-Jul-71,1971,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Wading,Michael Prather,M,Laceration to left ankle,N,Miami News,7/27/1971,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.26-Prather.pdf +2858,1971.07.19,19-Jul-71,1971,Unprovoked,Usa,California,"Point Purisima, Santa Barbara County",Hookah diving (submerged),Kenneth Gray,M,"Major injuries to head, buttocks & back",N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.19-Gray_Collier.pdf +2857,1971.06.30,30-Jun-71,1971,Unprovoked,South africa,Western Cape Province,Mossel Bay,Surfing,Gideon Scheltema,M,Leg & surfboard bitten,N,G. Scheltema,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.30-Scheltema.pdf +2856,1971.06.01,01-Jun-71,1971,Unprovoked,British isles,South Devon,Beesands,Scuba diving,Jimmy Johnson,M,"No injury, said to have been attacked by shark but drove it away with a lobster hook",N,J. Steel (1989),,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.01-Johnson.pdf +2855,1971.04.16R,16-Apr-1971,1971,Unprovoked,Kenya,Coast Province,Watamu,Swimming,a German tourist,M,Right foot bitten,N,M. v. Schoor,,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.16-Watamu.pdf +2854,1971.04.11,11-Apr-71,1971,Unprovoked,South africa,Western Cape Province,Buffels Bay,Swimming,Theo Klein,M,"FATAL, multiple bites ",Y,J. Wallace,ORI; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.11-TheoKlein.pdf +2853,1971.04.06,06-Apr-71,1971,Unprovoked,Mexico,Guerrero,"Copacabana Beach, Acapulco",Surfing,Jimmy Rowe,M,"FATAL, left thigh bitten ",Y,A.Resciniti,p.109,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.06-Rowe.pdf +2852,1971.04.05.b,05-Apr-71,1971,Unprovoked,Unknown,Unknown,Unknown,Unknown,Alberto Mayora ,M,"FATAL, body not recovered",Y,H.D. Baldridge (1994) SAF Case #1646,,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.b-NV-A-Mayora.pdf +2851,1971.04.05.a,05-Apr-71,1971,Unprovoked,Unknown,Unknown,Unknown,Unknown,Tarcisio Mayora,M,"FATAL, body not recovered",Y,H.D. Baldridge (1994) SAF Case #1646,,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.a-NV-T-Mayora.pdf +2850,1971.04.00,Late Apr-1971,1971,Sea Disaster,Mozambique,Between Beira & Maputo,Unknown,Wreck of the 1689-ton Portuguese coaster Angoche,"Sailed with 23 crew, half survived the explosion",Unknown,"FATAL, it was thought the surviving crew were taken by sharks",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.00-Angoche.pdf +2849,1971.03.30,30-Mar-71,1971,Unprovoked,New zealand,South Island,Dunedin,Surfing,Barry Watkins,M,Lacerations to left leg ,N,B. Watkins,R. D. Weeks,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.03.30-Watkins.pdf +2848,1971.01.02,02-Jan-71,1971,Unprovoked,Australia,Tasmania,Unknown,Swimming,Ralph Painter,M,Torso lacerated,N,C. Black,GSAF; H.D. Baldridge (1994) SAF Case #1650,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.01.02-Painter.pdf +2847,1971.00.00.c,1971,1971,Unprovoked,Australia,South Australia,Southport,Surfing,Tim Franklin,M,Severe lacerations to thigh,N,The Advertiser (undated),,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.c-Franklin.pdf +2846,1971.00.00.b,1971,1971,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River",Unknown,Mr. Nagib,M,Survived,N,B. Coad,,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.b-Nagib.pdf +2845,1971.00.00.a,1971,1971,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River",Unknown,Mr. Kalantar,M,Survived,N,B. Coad,,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.a-Kalantar.pdf +2844,1970.12.17,17-Dec-70,1970,Unprovoked,Mozambique,Inhambe Province,"Inhasoka, Inhambe Bay",Fishing for prawns,Castigo Litura,M,"FATAL, arm severed ",Y,GSAF; H.D. Baldridge,p.22,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.17-Litura.pdf +2843,1970.12.13,13-Dec-70,1970,Unprovoked,Mozambique,Inhambe Province,"Inhambe Bay Estuary, 10 to 12 miles inland from the sea",Fishing for prawns,black male,M,"FATAL, decapitated and arm severed",Y,GSAF; H.D. Baldridge,p.22,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.13-BlackMale-Mozambique.pdf +2842,1970.12.07,07-Dec-70,1970,Unprovoked,Micronesia,Namonuito Atoll,Pisarach (Pisaras),Fishing,Santiago Kapriel,M,Laceration to thigh,N,R.S. Jones,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.07-Kapriel.pdf +2841,1970.12.03,03-Dec-70,1970,Sea Disaster,Usa,Hawaii,Kauai,Shipwreck,Dikios Leopold,M,Right thigh lacerated,N,The Argus,12/7/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.03-Leopold.pdf +2840,1970.11.00,Nov-70,1970,Unprovoked,Unknown,Unknown,Unknown,Unknown,Heinz Plotsky,M,Extensive injuries,N, H.D. Baldridge (1994),SAF Case #1645,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.11.00-NV-Plotsky.pdf +2839,1970.10.24,24-Oct-70,1970,Unprovoked,Usa,Hawaii,"Brennecke Beach, Po'ipu, Kaua'i",Body surfing,James C. Mattan,M,Shoulder & arm bitten,N,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.24-Mattan.pdf +2838,1970.10.00,Oct-70,1970,Unprovoked,Usa,Florida,"Matanzas Inlet, St Johns County",Surfing,Robbie Baker,M,Bitten on right leg above the ankle,N,H. Wessel,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.00-Baker.pdf +2837,1970.09.28,28-Sep-70,1970,Unprovoked,Micronesia,Eastern Caroline Islands,Truk Lagoon,Diving,Mike Uramai,M,Lacerations & punctures to right arm & shoulder ,N,R.S. Jones,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.28-Urumai.pdf +2836,1970.09.13,13-Sep-70,1970,Provoked,Palau,Western Caroline Islands (North Pacific Ocean),Outside barrier reef,Spearfishing,Aismerael Samsel,M,"Another diver shot shark, shark bit his left foream PROVOKED INCIDENT",N,K.R.H. Read; H.D. Baldridge,p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.13-Samsel.pdf +2835,1970.09.05,05-Sep-70,1970,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Floating on a raft,Reggie Hodgson,M,Laceration to left foot,N,St. Petersburg Times,9/7/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.05-Hodgson.pdf +2834,1970.09.02,02-Sep-70,1970,Provoked,Australia,New South Wales,"Marineland, Sydney",Unknown,David Cook,M,PROVOKED INCIDENT,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.02-Cook.pdf +2833,1970.09.00.c,Sep-70,1970,Unprovoked,Usa,South Carolina,Unknown,Swimming,Gary Kirakas,M,Foot lacerated,N,H.D. Baldridge (1994),SAF Case #1630,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.c-Kirakas.pdf +2832,1970.09.00.a,Sep-70,1970,Unprovoked,Usa,Florida,Pinellas County,Scuba diving,male,M,Calf / knee injured?,N,SAF Case #1485,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.a-NV-male.pdf +2831,1970.08.02,02-Aug-70,1970,Invalid,International_water,Caribbean Sea,Between St. Kitts & Nevis,Sea Disaster Sinking of ferryboat Christina,Unknown,Unknown,"Sharks scavenged on bodies, but no record of them injuring survivors ",Y,Rome News Tribune,8/3/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.08.02-Christina-ferryboat.pdf +2830,1970.07.05,05-Jul-70,1970,Unprovoked,Unknown,Unknown,Unknown,Unknown,male,M,Finger or toe severed,N,H.D. Baldridge (1994),SAF Case #1628,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.07.05-NV-male.pdf +2829,1970.06.22,22-Jun-70,1970,Provoked,Usa,Florida,"Dania, Broward County",Fishing,William Faulkner,M,Bitten on calf by hooked shark PROVOKED INCIDENT,N,Bridgeport Post 6/22/1970,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.22-Faulkner.pdf +2828,1970.06.15,15-Jun-70,1970,Provoked,South africa,KwaZulu-Natal,"Shark tank, Oceanographic Research Institute, Durban",Scuba Diving,Anand Govindsamy,M,2 cm laceration on knee PROVOKED INCIDENT,N,D. Davies; A.J. Bass,ORI,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.15-Govindsamy.pdf +2827,1970.06.13.b,13-Jun-70,1970,Unprovoked,Grenada,St. Andrew Parish,Grenville,Wading,Lincoln Alpheus,M,"FATAL, multiple injuries to both legs ",Y,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.b-LincolnJohn.pdf +2826,1970.06.13.a,13-Jun-70,1970,Unprovoked,Grenada,St. Andrew Parish,Grenville,Wading,John Alpheus,M,"FATAL, body not recovered",Y,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.a-AlpheusJohn.pdf +2825,1970.06.00,Jun-70,1970,Sea Disaster,Philippines,200 nm southeast of Manila,Unknown,Motor launch Baby Princesa capsized with 22 people on board,Unknown,Unknown,"2 people survived, 6 drowned & the others were killed by sharks",Y,The Daily Intelligencer,6/12/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.00-Philippines.pdf +2824,1970.04.04,04-Apr-70,1970,Unprovoked,Grenada,St. Andrew Parish,Grenville,Swimming,Rudolf Daily,M,"FATAL, body not recovered",Y,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.04-Daily.pdf +2823,1970.04.00.b,Apr-70,1970,Provoked,Unknown,Unknown,Unknown,Freediving,Lionel Jarvis,M,Arm abraded & lacerated. Recorded as PROVOKED INCIDENT,N,H.D. Baldridge (1994),SAF Case #1616,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.b-NV-Jarvis.pdf +2822,1970.04.00.a,Apr-70,1970,Unprovoked,Unknown,Unknown,Unknown,Swimming,David Vota,M,No details,UNKNOWN,H.D. Baldridge (1994) SAF Case #1655,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.a-NV-Vota.pdf +2821,1970.03.31,31-Mar-70,1970,Invalid,Usa,Hawaii,"Waimea Bay, O'ahu",Body surfing,Ernie Reathaford,M,"Swept out to sea, body not recovered",Y,J. Borg,p.74,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.31-Reathaford.pdf +2820,1970.03.23,23-Mar-70,1970,Unprovoked,Usa,Florida,Manatee County,Wading,Robert Fetterman,M,Foot & calf lacerated,N,H.D. Baldridge (1994) SAF Case #1620,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.23-Fetterman.pdf +2819,1970.02.05,05-Feb-70,1970,Unprovoked,Unknown,Unknown,Unknown,Wading,Sally Anne Irvine,F,Lacerations to lower leg,N,H.D. Baldridge (1994) SAF Case #1626,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.02.05-NV-Irvine.pdf +2818,1970.01.23.d,23-Jan-70,1970,Unprovoked,Mozambique,Limpopo River,3.2 km inland,Swimming,Zulu Soto,M,"Hands severed, forearm severely lacerated",N,Natal Daily News,2/4/1970; D. Davies,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.d-Soto.pdf +2817,1970.01.23.c,23-Jan-70,1970,Unprovoked,Mozambique,Limpopo River,"Gijana, 150 km inland",Swimming,Betual Tivane,M,Leg severed at knee,N,Natal Daily News,2/4/1970; D. Davies,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.c-Tivane.pdf +2816,1970.01.23.b,23-Jan-70,1970,Unprovoked,Mozambique,Limpopo River,"Gijana, 150 km inland",Swimming,Mabua Mogadura,M,"Arm severed, thigh bitten",N,Natal Daily News,2/4/1970; D. Davies,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.b-Mogadura.pdf +2815,1970.01.23.a,23-Jan-70,1970,Unprovoked,Mozambique,Limpopo River,"Gijana, 150 km inland",Swimming,Elissane Mobunda,M,Leg severed at knee,N,Natal Daily News,2/4/1970; D. Davies,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.a-Mobunda.pdf +2814,1970.01.16, 16-Jan-1970,1970,Sea Disaster,Egypt,Red Sea,A few miles south of Port Suez,Air disaster,pilot of Israeli skyhawk,M,FATAL,Y,The Progress,1/17/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.16-IsraeliPilot.pdf +2813,1970.01.10,10-Jan-70,1970,Unprovoked,Mexico,Guerrero,Acapulco,Swimming,Jack Kardell,M,Leg bitten,N,A. Resciniti,p.110,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.10-Kardell.pdf +2812,1970.01.09.R,09-Jan-1970,1970,Unprovoked,England,Devon,Teignmouth,Attempted to return injured shark to the sea,a fisherman,M,Leg bitten,N,Reading Eagle,1/9/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.09.R-England.pdf +2811,1970.01.00, Jan-1970,1970,Unprovoked,Papua new guinea,New Ireland Province,Unknown,Freediving,Mosley,M,Lacerations to back,N,Brainerd Daily Dispatch,1/13/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.00-NV-Mosley.pdf +2810,1970.00.00.h,1970s,1970,Unprovoked,Sri lanka,Western Province,Colombo Harbor,Spearfishing / freediving,Hiran Wickremartne,M,Swim fins badly torn by the shark's teeth,N,R. I. DeSilva,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.h-Wickremaratne.pdf +2809,1970.00.00.g,Late 1970s,1970,Unprovoked,Spain,Canary Islands,"Icod de los Vinos, Tenerife",Spearfishing,Unknown,M,Minor injury,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.g-Tenerife.pdf +2808,1970.00.00.f,Ca. 1970,1970,Boat,Italy,Sardinia,Golfo di Oristano,Fishing on a boat,male,M,No injury,N,A. De Maddalena; M. Cottiglia (pers. Comm.),,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.f-Sardinia.pdf +2807,1970.00.00.e,1970,1970,Unprovoked,Croatia,Zadar County,Novigrad,Spearfishing,Mr. Jurincic,M,No details,UNKNOWN,A. De Maddalena; A. Mojetta (pers. Comm.),,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.e-Jurincic.pdf +2806,1970.00.00.d,1970s,1970,Unprovoked,Iraq,Basrah,Shatt-al-Arab River,Washing cooking pans,female,F,Left hand severed,N,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.d-Shatt-al-Arab.pdf +2805,1970.00.00.c,1970s,1970,Unprovoked,Iraq,Basrah,Shatt-al-Arab River near Abu al Khasib,Washing clothes on stairs,female,F,Left foot severed,N,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.c-Abu-a-Khasib.pdf +2804,1970.00.00.b,1970s,1970,Unprovoked,Iraq,Basrah,Shatt-al-Arab River,Swimming,male,M,"FATAL, left leg severed",Y,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.b-Shatt-al-Arab.pdf +2803,1970.00.00.a,1970s,1970,Unprovoked,Iraq,Basrah,Shatt-al-Arab River,"Fishing, trying to catch the end of his fishing line",male,M,Left hand bitten,N,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.a-Shatt-al-Arab.pdf +2802,1969.11.30,30-Nov-69,1969,Unprovoked,Australia,Western Australia,"Swan River, 13 miles upstream",Swimming,Graham Cartwright,M,Left thigh lacerated,N,Sydney Morning Herald,12/1/1969 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.30-Cartwright.pdf +2801,1969.11.11,11-Nov-69,1969,Unprovoked,Usa,Hawaii,"Barber’s Point, O'ahu",Scuba diving for lobsters,D.R. McGinnis,M,"Abrasions on upper leg, laceration on ankle, scuba tank bitten",N,H.D. Baldridge,p.185; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.11-McGinnis.pdf +2800,1969.11.05,05-Nov-69,1969,Provoked,Australia,New South Wales,"Marineland, Sydney",Unknown,A. Robson,M,PROVOKED INCIDENT,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.05-Robson.pdf +2799,1969.10.14,14-Oct-69,1969,Unprovoked,Usa,Hawaii,Hawaii,Diving,Richard Hegeman,M,No injury,N,H.D. Baldridge (1994) SAF Case #1579,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.10.14-NV-Hegeman.pdf +2798,1969.09.06,06-Sep-69,1969,Unprovoked,Usa,California,"Bird Rock, Tomales Point, near Marin County / Sonoma County border",Free diving for abalone,Donald Joslin,M,Leg & ankle severely bitten,N,D. Miller & R. Collier; R. Collier,pp.42-44; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.09.06-DonaldJoslin_Collier.pdf +2797,1969.08.29,29-Aug-69,1969,Unprovoked,Usa,Florida,"North Beach, St. Lucie County",Floating on his back,D.C. Barnes,M,Laceration to right leg,N,News Tribune,8/30/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.29-Barnes.pdf +2796,1969.08.22,22-Aug-69,1969,Provoked,Usa,Massachusetts,40 miles south of Nantucket,Fishing,Robert Eleniefsky,M,Leg bitten by netted shark PROVOKED INCIDENT,N,Portsmouth Herald,8/23/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.22-Eleniefsky.pdf +2795,1969.08.02,02-Aug-69,1969,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,John. Wilson,M,Lacerations to lower leg,N,St. Petersburg Times,8/3/1969; H.D. Baldridge (1994) SAF Case #1570,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.02-Wilson.pdf +2794,1969.08.01,02-Aug-69,1969,Unprovoked,Usa,Florida,"St. Petersburg, Pinnellas County",Body surfing,Robert Wamser,M,Lacerations to right lower leg & left arm and hand,N,NYTimes,8/3/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.01-Wamser.pdf +2793,1969.08.00,Aug-69,1969,Unprovoked,Unknown,Unknown,Unknown,Unknown,Rodney Hughes,M,Am lacerated,N,H.D. Baldridge (1994) SAF Case #1602,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.00-NV-Hughes.pdf +2792,1969.07.27,27-Jul-69,1969,Provoked,Unknown,Unknown,Unknown,Unknown,Eric Brown,M,Arm lacerated. Recorded as PROVOKED INCIDENT,N,H.D. Baldridge (1994) SAF Case #1611,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.27-NV-Brown.pdf +2791,1969.07.22,22-Jul-69,1969,Provoked,Usa,Florida,Florida Keys,Unknown,Walter Griffin,M,Scrape on head. Recorded as PROVOKED INCIDENT,N,H.D. Baldridge (1994) SAF Case #1603,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.22-NV-Griffin.pdf +2790,1969.07.20,20-Jul-69,1969,Unprovoked,Usa,California,"Pigeon Point, San Mateo County",Freediving for abalone (at surface),Robert Colby,M,"Foot bitten, minor injury",N,D. Miller & R. Collier; R. Collier,p. 42,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.20-Colby_Collier.pdf +2789,1969.06.27,27-Jun-69,1969,Unprovoked,Usa,Florida,Florida Keys,Wading,Steven Benham,M,No details,UNKNOWN,H.D.Baldridge (1994) SAF Case #1652,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.27-NV-Benham.pdf +2788,1969.06.12,12-Jun-69,1969,Unprovoked,Jamaica,Clarendon,Off Rocky Point,Diving,Dennis Washington,M,Multiple lacerations,N,The Gleaner,6/20/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.12-Washington.pdf +2787,1969.06.00,Jun-69,1969,Unprovoked,Usa,Florida,Sarasota County,Wading,"John Holmes, Jr.",M,No injury,N,H.D.Baldridge (1994) SAF Case #1609,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.00-NV-Holmes.pdf +2786,1969.05.25,25-May-69,1969,Provoked,Usa,Texas,Packery Channel,Surf-fishing,Walter Barnett,M,Foot lacerated when he stepped on the shark PROVOKED INCIDENT,N,Corpus Christi Times,5/26/1969; H.D.Baldridge (1994) SAF Case #1629,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.25-Barnett.pdf +2785,1969.05.24,24-May-69,1969,Provoked,Usa,Florida,Sarasota County,Diving,Brian Martel,M,Laceration to buttocks Recorded as PROVOKED INCIDENT,N,H.D.Baldridge (1994) SAF Case #1596,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.24-NV-Martel.pdf +2784,1969.05.22,22-May-69,1969,Unprovoked,Unknown,Unknown,Unknown,Surfing,"Douglas Kuchn, Jr.",M,Unknown,N,H.D.Baldridge (1994) SAF Case #1607,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.22-NV-Kuchn.pdf +2783,1969.05.14,14-May-69,1969,Unprovoked,Australia,Queensland,Broomfield Reef,Unknown,J. Gillies,Unknown,Survived,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.14-Gillies.pdf +2782,1969.04.22,22-Apr-69,1969,Invalid,Australia,New South Wales,"Kingscliffe Beach, south of Tweed Heads",Netting pilchards,David Anderson,M,No injury,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.22-Anderson.pdf +2781,1969.04.19,19-Aug-69,1969,Provoked,Usa,Florida,"Marathon, Monroe County",Fishing,Jack Horner,M,Laceration to foot from dead shark PROVOKED INCIDENT,N,Tri-City Herald,4/21/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.19-Horner.pdf +2780,1969.03.25,25-Mar-69,1969,Provoked,Australia,New South Wales,Newcastle,Unknown,William Hill,M,Foot lacerated. Recorded as PROVOKED INCIDENT,N,H.D.Baldridge (1994) SAF Case #1612,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.25-NV-WilliamHill.pdf +2779,1969.03.09,09-Mar-69,1969,Unprovoked,Usa,Hawaii,"Makaha, O'ahu",Surfing,Licius Lee,M,Leg & surfboard bitten,N,J. Borg,p.73; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.09-Lee.pdf +2778,1969.02.17.R,17-Feb-1969,1969,Provoked,Australia,Tasmania,Taroona,Fishing,George Pacey,M,Lacerations to hand from hooked shark PROVOKED INCIDENT,N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.17.R-Pacey.pdf +2777,1969.02.00,Feb-69,1969,Invalid,Australia,Queensland,Cooktown,Hard hat diving,Elin Anderson,M,No details,UNKNOWN,H.D.Baldridge (1994) SAF Case #1591,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.00-NV-ElinAnderson.pdf +2776,1969.01.27,27-Jan-69,1969,Unprovoked,Australia,New South Wales,Beecroft Head,Freediving,Kevin Deacon,M,Abrasions and lacerations to lower right leg,N,H.D.Baldridge (1994) SAF Case #1560,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.27-Deacon.pdf +2775,1969.01.00,Jan-69,1969,Unprovoked,Australia,Victoria,Port MacDonnel,Unknown,W.D. Simpson,M,Minor injury ,N,H.D.Baldridge (1994),SAF Case #1594,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.00-Simpson.pdf +2774,1969.00.00,Winter 1969,1969,Provoked,Bahamas,Eleuthera,Unknown,Sight-seeing,"14' boat, occupant: Jonathan Leodorn",Unknown,"No injury to occupants, shark grabbed prop, Leodorn hit shark with oar, shark bit oar in half PROVOKED INCIDENT",N,M. Vorenberg,p.154,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.00.00-Leodorn.pdf +2773,1968.12.29,29-Dec-68,1968,Invalid,South africa,KwaZulu-Natal,Port St. John's,Freediving,John Domoney,M,No injury,N,H.D.Baldridge (1994) SAF Case #1588. Note: Unable to verify in local records,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.29-NV-Domoney.pdf +2772,1968.12.26,26-Dec-68,1968,Provoked,Australia,New South Wales,"Marineland Aquarium, Manley, Sydney",Feeding mullet to sharks,Peter Jones,M,Laceration to finger by a captive shark PROVOKED INCIDENT,N,The Age,12/27/1968,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.26-Jones.pdf +2771,1968.12.25,25-Dec-68,1968,Unprovoked,New zealand,South Island,"St. Clair Beach, Dunedin",Surfing,Gary Barton,M,"Hit in face by shark, arm abraded, surfboard bitten",N,R. D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.25-Barton.pdf +2770,1968.12.09,09-Dec-68,1968,Unprovoked,Australia,South Australia,Thistle Island,Unknown,Dick O’Brien,M,Survived,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.09-O'Brien.pdf +2769,1968.12.02,02-Dec-68,1968,Unprovoked,South africa,KwaZulu-Natal,"Bluff, Durban",Spearfishing,Chris Van Niekerk,M,"No injury, left elbow & torso bumped by sharks",N,A. Heydorn,ORI,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.02-VanNiekerk.pdf +2768,1968.12.00,Dec-68,1968,Invalid,South africa,KwaZulu-Natal,Unknown,Unknown,Jasper Gwynn,M,No injury,N,H.D. Baldridge (1994) SAF Case #1587; Unable to authenticate,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.00-NV-Gwynn.pdf +2767,1968.11.06,06-Nov-68,1968,Boat,South africa,KwaZulu-Natal,Ramsgate,Fishing,"fishing boat, occupants: Simon Hlope & 4 other men",M,"Shark leapt into boat, landed on Hlope's back, then bit his left forearm",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.06-Hlope.pdf +2766,1968.11.02,02-Nov-68,1968,Provoked,Australia,Western Australia,Unknown,Unknown,Roy Rosser,M,Abrasion on shoulder Recorded as PROVOKED INCIDENT,N,H.D. Baldridge (1994) SAF Case #1533,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.02-NV-Rosser.pdf +2765,1968.10.29,29-Oct-68,1968,Provoked,Unknown,Unknown,Unknown,Unknown,John DeBry,M,Calf injured Recorded as PROVOKED INCIDENT,N,H.D. Baldridge (1994) SAF Case #1565,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.29-NV-DeBry.pdf +2764,1968.10.13,13-Oct-68,1968,Unprovoked,Usa,Florida,"Egmont Key, Hillsborough County",Spearfishing using Scuba,Jim C. Johnson,M,Swim fin bitten,N,H.D. Baldridge,p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.13-Johnson.pdf +2763,1968.10.10,10-Oct-68,1968,Sea Disaster,Philippines,Moro Gulf,Unknown,Sinking of the ferryboat Dumaguete ,a passenger,Unknown,Survived,N,Fresno Bee Republican,10/12/1968,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.10-FerryDisaster.pdf +2762,1968.09.22,22-Sep-68,1968,Invalid,Usa,Florida,"Riviera Beach, Palm Beach County",Surfing,Unknown,Unknown,Unknown,N, M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.22-NV-RivieraBeach.pdf +2761,1968.09.15,15-Sep-68,1968,Unprovoked,New zealand,South Island,Otago Harbor,Spearfishing,Graham Hitt,M,"FATAL, left leg bitten, femoral artery severed ",Y,R.D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.15-Hitt.pdf +2760,1968.08.24,24-Aug-68,1968,Unprovoked,Usa,Florida,Half mile north of Juno Beach Pier,Playing with a frisbee in the shallows,Colleen Chamberlin & Scott Chamberlin,Unknown,"Shark bumped Colleen, the nudged Scott, then bit Frisbee & swam away with it",N,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.24-Chamberlin.pdf +2759,1968.08.21,21-Aug-68,1968,Unprovoked,Usa,Florida,Okaloosa County,Standing,Peter S. Ball,M,Leg & arm bitten,N,Brownsville Herald,8/14/1968; H.D.Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.21-PeterBall.pdf +2758,1968.08.13,13-Aug-68,1968,Unprovoked,French polynesia,Society Islands,Tahiti,Swimming,Blake Tenville,M,Finger severed,N,H.D.Baldridge,SAF Case #1531,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.13-Tennville.pdf +2757,1968.08.11,11-Aug-68,1968,Unprovoked,Malaysia,Johor,Pulau Aur,Leaving the water,Inche Bin Saini,Unknown,Hand lacerated,N,H.D.Baldridge,SAF Case #1541,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.11-NV-InceBinSaini.pdf +2756,1968.08.08,08-Aug-68,1968,Unprovoked,Columbia,Magdalena Department,"Makuaka Caño, Taganga",Dynamite fishing,Abel Mattos Antoniou Vasquez,M,Lacerations to head,N,SoHo.com,11/19/2-11,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.08-Vasquez.pdf +2755,1968.07.27,27-Jul-68,1968,Unprovoked,Usa,California,"Bodega Rock, Sonoma County",Free diving,Frank Logan,M,Major injury to torso,N,D. Miller & R. Collier; R. Collier,pp.41-42; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.27-FrankLogan_Collier.pdf +2754,1968.07.23,23-Jul-68,1968,Unprovoked,Usa,Florida,Florida Keys,Wading,H. Meacham,M,Abrasions on lower leg,N,H.D.Baldridge,SAF Case #1542,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.23-NV-Meacham.pdf +2753,1968.07.16,16-Jul-68,1968,Unprovoked,Usa,South Carolina,"Stono Inlet, near Charleston, Charleston County",Spearfishing using Scuba,Paul Hughes,M,Swimfin & knee bitten,N,H.D.Baldridge,p.284,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.16-Hughes.pdf +2752,1968.07.10,10-Jul-68,1968,Unprovoked,Bahamas,Great Exuma Island,Children's Bay Cay near Rollerville,Small boat with 2 men onboard hit a submerged coral formation. Men began swimming to shore,male,M,"FATAL, taken by shark ",Y,Reported by F.S.T. Baker to M. Vorenberg,pp.154-155,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.10-Bahamas.pdf +2751,1968.07.00,Jul-68,1968,Invalid,Mexico,Baja California,Unknown,Unknown,Robert Slatzer,M,No injury,N,H.D.Baldridge,SAF Case #1613,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.00-NV-Slatzer.pdf +2750,1968.06.25,25-Jun-68,1968,Unprovoked,Bahamas,Eleuthera,Spanish Wells ,Spearfishing,Roy Pinder,M,"Bumped shoulder, bit head",N,H.D. Baldridge,p.260; Clark,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.25-Pinder.pdf +2749,1968.06.09,09-Jun-68,1968,Unprovoked,Usa,Florida,"Mullet Key, Pinellas County",Clamming,Peter Nash,M,Lacerations to lower right leg & andkle,N,Evening Indeipendent,6/10/1968,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.09-Nash.pdf +2748,1968.06.00,Jun-68,1968,Unprovoked,Unknown,Unknown,Unknown,Unknown,Roy Cloke,M,Arm severely lacerated,N,H.D. Baldridge (1994),SAF Case #1515,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.00-NV-Cloke.pdf +2747,1968.05.18,18-May-68,1968,Invalid,Tanzania,Mafia Island,Unknown,Schooner sank during a storm,Unknown,Unknown,"6 people rescued, 3 shark-scavenged bodies recovered, 14 people lost ",Y,R. Wharton,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.18-MafiaIsland.pdf +2746,1968.05.00,May-68,1968,Unprovoked,Papua new guinea,New Ireland Province,Unknown,Standing,Tamuk Gilaba,M,Lower leg severely lacerated,N,H.D. Baldridge (1994) SAF Case #1520,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.00-NV-Gilaba.pdf +2745,1968.04.29,29-Apr-68,1968,Invalid,Usa,Florida,"Fort Lauderdale, Broward County",Wading,Frank Carrell,M,Foot severely injured,N,News Journal,5/1/1968,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.29-Carrell.pdf +2744,1968.04.20,20-Apr-68,1968,Unprovoked,Usa,Florida,"Palm Beach Shores, Riviera Beach, Singer Island, Palm Beach County",Unknown,Steven Samples,M,"Buttock, both legs & arm bitten",N,M. Vorenberg,GSAF; R. Skocik,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.20-Samples.pdf +2743,1968.04.15,15-Apr-68,1968,Unprovoked,Australia,New South Wales,South Coast,"Diving. Shark “swallowed’ his hand, so he threw his other around the shark and went “shark-back riding” for 30 yards until the shark opened its jaws",Rodney Castle,M,Hand lacerated,N,Sydney Morning Herald,4/28/1968 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.15-Castle.pdf +2742,1968.04.11.R,11-Apr-1968,1968,Unprovoked,Papua new guinea,Gulf Province,Orokolo Bay,Swimming,Hukolapa Laiokeke,M,FATAL Laceration to chest,Y,The Age,4/11/1968,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.11.R-Laiokeke.pdf +2741,1968.04.07,07-Apr-68,1968,Provoked,Australia,New South Wales,Stockton Bight,Unknown,Ray Weaver,M,Foot lacerated Recorded as PROVOKED INCIDENT,N,J. Green,p.36; H. D. Baldridge (1994) SAF Case #1528,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.07-Weaver.pdf +2740,1968.03.25,25-Mar-68,1968,Unprovoked,South africa,KwaZulu-Natal,Richards Bay,Wading & pushing dinghy toward the shallows,Almon Mtiyane,M,Left thigh lacerated,N,J. Bass,H.A. Jones,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.25-Mtiyane.pdf +2739,1968.03.10,10-Mar-68,1968,Unprovoked,Usa,Florida,"Jensen Beach, Martin County",Surfing,Jan Icyda,M,Foot lacerated,N,H.D. Baldridge (1994) SAF Case #1548,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.10-Icyda.pdf +2738,1968.03.00,Mar-68,1968,Invalid,Usa,Florida,Florida Keys,Treading water,Jared Voorhees,M,No injury,N,H.D. Baldridge (1994) SAF Case #1530,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.00-NV-Voorhees.pdf +2737,1968.02.26,26-Feb-68,1968,Unprovoked,Usa,Florida,Palm Beach County,Surfing,Fred Hennessee,M,Foot lacerated,N,H.D. Baldridge,#1549,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.26-Hennessee.pdf +2736,1968.02.20,20-Feb-68,1968,Unprovoked,Australia,Western Australia,Swan River,Swimming,Ingrid Germanis,F,Thigh lacerated,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.20-Germanis.pdf +2735,1968.02.18,18-Feb-68,1968,Provoked,New zealand,North Island,"Pilot Bay, Mt Maunganui ",Picking up shark by the tail,Lynne Campbell,F,Wrist bitten PROVOKED INCIDENT,N,R.D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.18-Campbell.pdf +2734,1968.02.04,04-Feb-68,1968,Unprovoked,Australia,South Australia,Cape Jervis,Spearfishing,Howard Forster,M,"No injury, speargun bitten",N,H.D. Baldridge,p.199,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.04-Forster.pdf +2733,1968.02.02,02-Feb-68,1968,Unprovoked,Australia,New South Wales,Brunswick Heads,Unknown,R. Vidler,Unknown,Survived,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.02-Vidler.pdf +2732,1968.02.00,Feb-68,1968,Unprovoked,Unknown,Unknown,Unknown,Diving,Sergio Peres,Unknown,No injury,N,H.D. Baldridge (1994) SAF Case #1522,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.00-NV-Peres.pdf +2731,1968.01.17,17-Jan-68,1968,Unprovoked,Papua new guinea,Morobe Province,Finschafen,Swimming,Awin Ieromia,Unknown,FATAL,Y,H.D. Baldridge (1994) SAF Cases #1519 & #1584,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.01.17-NV-Ieromia.pdf +2730,1968.00.00.c,1968,1968,Unprovoked,Costa rica,Limón Province,Parismina,Swimming after his canoe capsized,male,M,FATAL,Y,Kokomo Tribune,5/11/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.c-Parisima.pdf +2729,1968.00.00.b,1968,1968,Invalid,Usa,Florida,"Key West, Monroe County",Diving,Unknown,Unknown,Recovered,N,Unverified,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.b-NV-KeyWestDiver.pdf +2728,1968.00.00.a,1968,1968,Invalid,Usa,Florida,"Jensen Beach, Martin County",Surfing,Unknown,Unknown,Unknown,N,Unverified,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.a-NV-JensenBeach.pdf +2727,1967.12.30,30-Dec-67,1967,Unprovoked,South africa,Western Cape Province,Mossel Bay,Surfing,Brian Pearson,M,Right ankle & foot bitten,N,B. Pearson,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.30-Pearson.pdf +2726,1967.12.21.R,21-Dec-1967,1967,Invalid,Papua new guinea,Central Province,Port Moresby,Spearfishing,Bob Valentine,M,No injury,N,H.D. Baldridge (1994) ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.21.R-Valentine.pdf +2725,1967.12.18,18-Dec-67,1967,Unprovoked,Unknown,Unknown,Unknown,Unknown,Tera Tetapana,M,Arm lacerated,N,H.D.Baldridge (1994) SAF Case #1532,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.18-NV-Tetapana.pdf +2724,1967.12.17,17-Dec-67,1967,Unprovoked,Australia,Victoria,"Cheviot Beach, Portsea, Port Phillip Bay",Swimming,Prime Minister Harold Holt,M,"FATAL, presumed taken by a shark, body not recovered",Y,H. Edwards,p.137-138,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.17-PrimeMinister.pdf +2723,1967.12.14,14-Dec-67,1967,Provoked,Unknown,Unknown,Unknown,Unknown,Joe Stinson,M,"Head, shoulder, arm lacerated. Recorded as PROVOKED INCIDENT",N,H.D.Baldridge (1994) SAF Case #1566,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.14-NV-Stinson.pdf +2722,1967.11.30.b,30-Nov-67,1967,Provoked,Australia,New South Wales,Wollongong,Freediving,Jeff Short,M,Recorded as PROVOKED INCIDENT,N,H.D. Baldridge (1994) SAF Case #1516,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.b- NV-JeffShort.pdf +2721,1967.11.30.a,30-Nov-67,1967,Unprovoked,Australia,Queensland,Surfer's Paradise,Unknown,Jan Ligrov,M,Arm lacerated,N,(1994) SAF Case #1524,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.a-Ligrov.pdf +2720,1967.11.15,15-Nov-67,1967,Provoked,Unknown,Unknown,Unknown,Freediving,Stephen Wiltshire,M,Hand lacerated by speared shark PROVOKED INCIDENT,N,H.D.Baldridge (1994) SAF Case #1537,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.15-NV-Wiltshire.pdf +2719,1967.11.04,04-Nov-67,1967,Sea Disaster,Philippines,Rombion Province,Off Sibuyan Island,Sinking of the M/V Mindoro during a typhoon,Unknown,Unknown,Passengers taken by sharks,Y,Canberra Times,11/9/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.04-Mindoro.pdf +2718,1967.11.00,Nov-67,1967,Invalid,South africa,KwaZulu-Natal,Brighton Beach,Unknown,female,F,"Bones and brightly colored bangles recovered 3.35 m, 145.5-kg tiger shark’s gut ",Y,A. Heydorn,ORI,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.00-BrightonBeach.pdf +2717,1967.10.26.R,26-Oct-1967,1967,Unprovoked,Mexico,Veracruz,Veracruz,Swimming,"""a youth""",Unknown,FATAL,Y,Chicago Tribune,10/27/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.26.R-Veracruz.pdf +2716,1967.10.17,17-Oct-67,1967,Unprovoked,Usa,Florida,"McArthur Beach, Singer Island, Palm Beach Shores",Standing on sandbar,Peter J. White,M,Left foot bitten,N,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.17-White.pdf +2715,1967.10.00,Oct-67,1967,Unprovoked,Unknown,Unknown,Unknown,Swimming,Toetuu Hopoi,M,Arm & leg bitten,N,H.D.Baldridge (1994) SAF Case #1480,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.00-NV-Hopoi.pdf +2714,1967.09.20,20-Sep-67,1967,Invalid,Usa,Hawaii,"Kailua Bay, O'ahu",Boat capsized between O'ahu & Molokai,male,M,Remains found in a 3.4 m (11') tiger shark. Probable drowning & scavenging,Y,J. Borg,p.73; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.20-male-Oahu.pdf +2713,1967.09.13,13-Sep-67,1967,Provoked,Italy,Brindisi Province,Brindisi,Scuba diving,Romeo Guarini,M,"Diver shot the shark, then it injured his arm and broke his leg with its tail. PROVOKED INCIDENT",Y,C. Moore. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.13-Guarini.pdf +2712,1967.09.07.b,07-Sep-67,1967,Provoked,Papua new guinea,New Ireland Province,Unknown,Diving,Parang,Unknown,"No details, listed as PROVOKED INCIDENT",UNKNOWN,H.D.Baldridge,SAF Case #1546,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.b-NV-Parang.pdf +2711,1967.09.07.a,07-Sep-67,1967,Unprovoked,Usa,Florida,"Key West, Monroe County",Spearfishing,Unknown,Unknown,Survived,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.a-NV-KeyWest.pdf +2710,1967.09.06,06-Sep-67,1967,Unprovoked,Papua new guinea,New Ireland Province,Lambom Island,Spearfishing,Parang,M,FATAL,Y,The Age,9/7/1967 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.06-Parang.pdf +2709,1967.09.01,01-Sep-67,1967,Unprovoked,Papua new guinea,New Ireland Province,"Lamassa Island, 16 miles from Lambon Island",Spearfishing,Tony Kamage,M,FATAL,Y,F. Dennis,pp.23-24,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.01-Kamage.pdf +2708,1967.08.27,27-Aug-67,1967,Provoked,Usa,California,Ventura,Pulling shark from the water,Jim Beatty,M,Nipped on shoulder by captive shark PROVOKED INCIDENT,N,Ventura County Ad-Visor,8/31/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.27-Beatty.pdf +2707,1967.08.26,26-Aug-67,1967,Unprovoked,Japan,Kagawa Prefecture,Sakaide,Unknown,Masanori Ishikawa,M,FATAL,Y,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.26-Ishikawa.pdf +2706,1967.08.25,25-Aug-67,1967,Unprovoked,Italy,Liguria," Marinella Sarzana, La Spezia ",Spearfishing on Scuba,Gian Paolo Porta Casucci,M,Minor injuries to face & forearm,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.25-Casucci.pdf +2705,1967.08.19,19-Aug-67,1967,Unprovoked,Australia,Western Australia,Jurien Bay,"Spearfishing, dived to pick up a float line",Robert Bartle,M,"FATAL, ""bitten in two""",Y,H. Edwards,pp.35-42; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.19-Bartle.pdf +2704,1967.08.15,15-Aug-67,1967,Unprovoked,Bermuda,Hamilton,Hamilton,Floating,Sue Ferguson,F,Right foot abraded & lacerated,N,Gettysburg Times,8/15/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.15-Ferguson.pdf +2703,1967.08.14.R,14-Aug-1967,1967,Unprovoked,Unknown,Unknown,Unknown,Unknown,Thomas Walsh,M,3 fingers were bitten by a shark,N,New York Times,8/14/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.14.R-Walsh.pdf +2702,1967.08.10,10-Aug-67,1967,Invalid,Australia,New South Wales,Jervis Bay,Anti-sabotage night dive exercise alongside destroyer (Scuba diving),"J.T. Hales and Kenneth J. Hislop, Australian Navy frogmen",M,"Disappeared, no trace of men or equipment, shark attack considered",Y,H.D. Baldridge,p.184,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.10-Hales-Hislop.pdf +2701,1967.08.07,07-Aug-67,1967,Unprovoked,Usa,Florida,Near Key West,Spearfishing,Donald Ritter,M,Shark grasped thigh,N,H.D. Baldridge,p.193; Clark,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.07-Ritter.pdf +2700,1967.08.00.b,Aug-67,1967,Unprovoked,Bahamas,Out Islands,Andros Island,Photographing sharks underwater using Scuba,Richard Winer,M,"No injury, shark struck camera",N,H.D. Baldridge,p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.b-Winer.pdf +2699,1967.08.00.a,Aug-67,1967,Unprovoked,Senegal,Cap Vert Peninsula,Hann,Beach seine netting,B.D.,M,Ankle bitten,N,S. Trape,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.a-Senegal.pdf +2698,1967.07.29,29-Jul-67,1967,Unprovoked,Usa,Florida,Florida Keys,Snorkeling,Joseph McGonigal,M,Foot lacerated,N,H.D.Baldridge,SAF Case #1538,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.29-NV-McGonigal.pdf +2697,1967.07.05,05-Jul-67,1967,Unprovoked,Turkey,Mugla Province,Kucukada Island,Spearfishing,Gungor Guven,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.05-Guven.pdf +2696,1967.07.00,Jul-67,1967,Invalid,Usa,South Carolina,Unknown,Surfing,Tim Dowdy,M,Incident not confirmed,N,H.D. Baldridge (1994) SAF Case #1637,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.00-NV-Dowdy.pdf +2695,1967.06.13,13-Jun-67,1967,Provoked,Usa,Florida,"Key West, Monroe County",Spearfishing,Andres Puma (or Pruna),M,"After shark was speared & hit on head, it bit the diver’s foot PROVOKED INCIDENT",N,H.D. Baldridge,p.192; M. McDiarmid,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.13-Pruna.pdf +2694,1967.06.00,Jun-67,1967,Provoked,Italy,Sicily,Stretto di Messina,Fishing boat,Unknown,M,"No injury to occupants, harpooned shark sank boat PROVOKED INCIDENT",N,A. De Maddalena; Giudici & Fino (1989),,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.00-Messina.pdf +2693,1967.05.13,13 or 30-May-1967,1967,Provoked,Australia,South Australia,Outer Harbor,Unknown,Rodney Baim,M,Thigh abraded & lacerated Recorded as PROVOKED INCIDENT,N,J. Green,p.36; H. D. Baldridge (1994) SAF Case #1464,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.13-NV-Baim.pdf +2692,1967.05.09,09-May-67,1967,Provoked,Australia,Unknown,Aquarium,Feeding a shark,Rod Stanley,M,Recorded as PROVOKED INCIDENT,N,H.D.Baldridge (1994) SAF Case #1536,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.09-NV-Stanley.pdf +2691,1967.04.00,Apr-67,1967,Provoked,United kingdom,Gibraltar,Unknown,Fishing,Bernard Venables,M,Tooth knocked out by hooked shark PROVOKED INCIDENT,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.04.00-Venables-Gibraltar.pdf +2690,1967.03.20,20-Mar-67,1967,Provoked,New zealand,North Island,Leigh,Freediving,Peter Clark,M,Abrasions to lower leg Recorded as PROVOKED INCIDENT,N,H.D. Baldridge (1994) SAF Case #1521,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.20-NV-Clark.pdf +2689,1967.03.19,19-Mar-67,1967,Unprovoked,South africa,KwaZulu-Natal,Paradise Reef,Spearfishing,Len Jones,M,"Punctures in right buttock & thigh, abrasion on right forearm",N,L. Jones,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.19-LenJones.pdf +2688,1967.03.12,12-Mar-67,1967,Provoked,Australia,Victoria,Geelong,Spearfishing,Brian Marendaz,M,Speared shark lacerated his arm PROVOKED INCIDENT,N,H.D. Baldridge,SAF Case #1466,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.12-NV-Marendez.pdf +2687,1967.03.10,10-Mar-67,1967,Invalid,Australia,New South Wales,"Dover Heights, Sydney",Vehicle plunged over cliff into the water,passenger in an automobile,Unknown,"Fatal or scavenging by ""a pack of sharks""",Y,Evening Express (Cardiff),,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.10-passenger.pdf +2686,1967.03.09,09-Mar-67,1967,Unprovoked,New zealand,South Island,St. Kilda Beach,Lifesaving drill,William Black,M,"FATAL, seen taken by a shark ",Y,R.D. Weeks,GSAF; J. Garrick; West Australian (Perth),http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.09-Black.pdf +2685,1967.03.01,01-Mar-67,1967,Unprovoked,Papua new guinea,New Britain,"Barawon Beach, near Rabaul",Unknown,black male,M,Leg bitten,N,F. Dennis,p.23; H.D. Baldridge (1994) SAF Case #1534,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.01-boy.pdf +2684,1967.02.06,06-Feb-67,1967,Sea Disaster,Mexico,Veracruz,Cabo Rojo,The shrimper Loless Maurine capsized in heavy seas & the men were swimming ashore ,Carlos Humberto Mendez & Esteban Robles,M,FATAL,Y,Brownsville Herald,1/28/1968,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.02.06-Mendez-Robles.pdf +2683,1967.01.27,27-Jan-67,1967,Boat,South africa,Western Cape Province,Melkbosstrand,Fishing for rock lobster,"Lobster boat, occupants: Mr. P. Valentine & Mr. J. van Schalkwyk ",Unknown,"Holed & sank boat, 1 man flung into water but ignored by the shark",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.27-boat.pdf +2682,1967.01.22,22-Jan-67,1967,Provoked,South africa,Western Cape Province,Whittle Rock False Bay,Spearfishing Competition,Ian Gericke,M,"No injury, shark bit support boat, removing pieces of wood after Gerricke shot it PROVOKED INCIDENT",N,H.D. Baldridge,p.128,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.22-Gericke.pdf +2681,1967.01.21,21-Jan-67,1967,Unprovoked,Mozambique,Bay of Maputo,Xefina Island,Swimming in the channel,Alberto Caravallo Santos,M,Right leg severely lacerated,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.21-Santos.pdf +2680,1967.01.06,06-Jan-67,1967,Provoked,Australia,Victoria,Goolwa,Splashing,Gregory Loane,M,Foot bitten when he kicked shark PROVOKED INCIDENT,N,H.D.Baldridge (1994) SAF Case #1465,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.06-NV-Loane.pdf +2679,1966.12.31,31-Dec-66,1966,Unprovoked,Australia,Tasmania,"Piccaninny Point, 10 miles from Bicheno",Fishing,Alf Bosworth,M,"6"" laceration to left forearm ",N,J. Green,p.35; Sun (Sydney),http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.31-Bosworth.pdf +2678,1966.12.27.b,27-Dec-66,1966,Provoked,Australia,New South Wales,South West Rocks,Spearfishing,Robert Lusted,M,The shark bit the diver's leg after he shot it PROVOKED INCIDENT,N,Sun (Sydney),12/29/1966; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.b-Lusted.pdf +2677,1966.12.27.a,27-Dec-66,1966,Unprovoked,Australia,New South Wales,Trial Bay,Spearfishing,Lyle Fielding,M,Right hand lacerated,N,Sun (Sydney),12/29/1966; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.a-Fielding.pdf +2676,1966.12.26,26-Dec-66,1966,Unprovoked,Singapore,Unknown,Singapore,Wading,Hussain Ali,M,Thigh bitten,N,H.D. Baldridge,SAF Case #1458,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-NV-Hussain-Ali.pdf +2675,1966.12.26,26-Dec-66,1966,Unprovoked,Australia,New South Wales,Coogee,Spearfishing,David Jensen,M,Right leg bitten,N,Sun (Sydney),12/29/1966; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-Jensen.pdf +2674,1966.11.14,14-Nov-66,1966,Unprovoked,Unknown,Unknown,Unknown,Unknown,Vinit Tantikarn,Unknown,No details,UNKNOWN,H.D. Baldridge (1994) SAF Case #1509,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.14-NV-Tantikam.pdf +2673,1966.11.00,Early Nov-1966,1966,Unprovoked,Papua new guinea,New Ireland Province,Unknown,A father bathing his smallest daughter when the shark bumped her out of his arms and carried her into deep water,Theresa Maineri,F,FATAL,Y,A. McNaught; Times-Courier (Lae,PNG),http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.00-Maineri.pdf +2672,1966.10.30,30-Oct-66,1966,Unprovoked,Papua new guinea,New Ireland Province,"Lamassa Island, 16 miles from Lambom Island",Swimming,Ridel Pogias (female),F,FATAL,Y,A. McNaught; Times-Courier (Lae,PNG),http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.30-Pogias.pdf +2671,1966.10.29,19-Oct-66,1966,Unprovoked,Papua new guinea,New Ireland Province,"Mission Beach, Lambon Island, near Duke of York Islands",Bathing,Dakel (female),F,FATAL,Y,A. McNaught; Times-Courier (Lae,PNG),http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.29-Dakel.pdf +2670,1966.09.27,27-Sep-66,1966,Unprovoked,Australia,Queensland,"Broomfield Island, 11 miles from Heron Island on the Great Barrier Reef","Free diving, carrying speargun",Barry Dawson,M,Shoulder lacerated,N,B. Dawson,J.Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.27-Dawson.pdf +2669,1966.09.19,19-Sep-66,1966,Provoked,Usa,Hawaii,50 miles NE of Honolulu,Fishing,Akiyoshi Morita,M,Left elbow or hand bitten PROVOKED INCIDENT,N,Japan Times,9/23/1966; Mainichi News,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.19-Morita.pdf +2668,1966.09.18,18-Sep-66,1966,Invalid,Australia,Western Australia,"Little Beach Reef, Bremer Bay",Spearfishing,John Marsh,M," The 2.9 m [9.5'] shark never made contact with him. No attack, no injury.",N,The West Australian (Perth),9/14/1966; D. H.Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.18-Marsh.pdf +2667,1966.09.13,13-Sep-66,1966,Provoked,Australia,Western Australia,Albany,Spearfishing,Terry Adams,M,Involved a speared shark but no other details PROVOKED INCIDENT,UNKNOWN,H.D.Baldridge,SAF Case #1425,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.13-NV-Adams.pdf +2666,1966.09.10,10-Sep-66,1966,Unprovoked,Australia,Western Australia,Roe Reef off Rottnest Island,Spearfishing,Frank Paxman,M,No injury,N,The West Australian (Perth),9/14/1966; H.D.Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.10-Paxman.pdf +2665,1966.09.08.b,08-Sep-66,1966,Provoked,Usa,Florida,"Florida Keys, Monroe County",Hunting crayfish ,David Redmond,M,Abdomen abraded when he seized shark PROVOKED INCIDENT,N,San Antonio Express,9/9/1966,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.08-Redmond.pdf +2664,1966.09.00,Sep-66,1966,Invalid,Bahamas,Bimini Islands,Tongue of the Ocean,Diving / UW photography,Jerry Greenberg,M,"2.4 to 3 m [8' to 10'] oceanic whitetip shark buzzed him. No attack, no injury",N, ISAF Case #1421,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.00-Greenberg.pdf +2663,1966.08.28,28-Aug-66,1966,Boat,Australia,Northern Territory,Darwin Harbour,Unknown,"catamaran, occupant: Neil Fowler",M,"No injury to occupant. Shark struck vessel, jamming centreboard",N,Adelaide Advertiser,9/1/1966; SAF Case #1426,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.28-Fowler.pdf +2662,1966.08.27.b,27-Aug-66,1966,Invalid,South africa,KwaZulu-Natal,Durban,Netting sharks,"trawler Jacoba, occupant Jan van der Bent",M,"No attack, no injury to occupant: a 400-lb grey shark k bit nets in the water ",N,ISAF Case #1439,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27-Jacoba.pdf +2661,1966.08.27.a,27-Aug-66,1966,Unprovoked,Bahamas,Bimini Islands,Unknown,Snorkeling,Patricia Hodge,F,"Survived, no details",N,P. Gilbert & H.D. Baldridge,SAF Case #1433,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27.a-NV-Hodge.pdf +2660,1966.08.21.b,23-Aug-66,1966,Unprovoked,New britain,Duke of York Islands,"Butliwan Village, 15 miles north of Rabaul",Swimming,Memilana Bokset (female - rescuer),F,FATAL,Y,Age (Melbourne),Hudderfield Daily Examiner (Yorkshire),http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.b-Bokset.pdf +2659,1966.08.21.a,23-Aug-66,1966,Unprovoked,New britain,Duke of York Islands,"Butliwan Village, 15 miles north of Rabaul",Diving into water,Loding Etwat (female),F,FATAL,Y,Age (Melbourne),Hudderfield Daily Examiner (Yorkshire),http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.a-Etwat.pdf +2658,1966.08.16,16-Aug-66,1966,Unprovoked,Croatia,Primorje-Gorski Kotar County ,Bakar,Swimming,Josef Treliac,M,FATAL,Y,R. Rocconi; A. De Maddalena & C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.16-Treliac.pdf +2657,1966.08.14,14-Aug-66,1966,Unprovoked,Taiwan,Unknown,Ye Leow,Lobster diving using Scuba,Jack W. Caldwell,M,"No injury, but shark struck his calf",N,H.D.Baldridge,p.184,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.14-Caldwell.pdf +2656,1966.08.13,13-Aug-66,1966,Unprovoked,Italy,Taranto province,"Pulsano, near Taranto",Attacked shark with fists,Cosimo Piccinni,M,Arm lacerated,N,Evening Standard (London) 8/13/1966; Sunday Express (London),8/14/1966,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.13-CosimoPiccinni.pdf +2655,1966.08.00.b,Mid Aug-1966,1966,Invalid,Usa,Delaware,Fenwick Island,Spearfishing on Scuba,Charles T. Henderson,M,"No attack, no injury, shark took speared fish & approached diver closely ",N,H.D. Baldridge (1994) SAF Case #1440,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.b-Henderson.pdf +2654,1966.08.00.a,Aug-66,1966,Unprovoked,Usa,Florida,"Municipal Bathing area, Riviera Beach, Palm Beach County",Wading,Shawn Carpenter,M,"No injury, mother lifted him from the water",N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.a-Carpenter.pdf +2653,1966.07.31,31-Jul-66,1966,Unprovoked,Usa,Texas,"South Jetty, Galveston",Diving for sand dollars,Robert W. Russell,M,Dorsum of right foot grazed,N,M. Vorenberg,H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.31-Russell.pdf +2652,1966.07.19,19-Jul-66,1966,Provoked,Usa,South Carolina,"Folly Beach, Charleston County",Killing a shark,Marvin Estridge,M,"Arm bitten, PROVOKED INCIDENT",N,News & Courier,7/20/1966,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.19-Estridge.pdf +2651,1966.07.17.b,17-Jul-66,1966,Unprovoked,Usa,Texas,"Point Comfort, Calhoun County",Fishing,Tommy Barilek,M,Lacerations to right foot,N,Victoria Advocate,7/20/1966,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.b-Barilek.pdf +2650,1966.07.17.a,17-Jul-66,1966,Unprovoked,Taiwan,Northern Taiwan,Tamsui Beach,Swimming,Yang Ching-Hui,M,"FATAL, left leg severed",Y,South China Morning Post (Hong Kong),7/19/1966 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.a-Yang.pdf +2649,1966.07.14,14-Jul-66,1966,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province",Manus Island,Swimming,Sasa,F,FATAL,Y,H.D.Baldridge (1994) SAF Case #1415,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.14-NV-Sasa.pdf +2648,1966.07.03,03-Jul-66,1966,Invalid,Usa,Florida,"Key Biscayne, Miami, Dade County",Free diving,John Brothers,M,No injury. A 1.1 m [3.5'] blacktip shark shark made a threat display & bit gig,N,H.D. Baldridge,p.210,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.03-Brothers.pdf +2647,1966.07.02,02-Jul-66,1966,Boat,Caribbean sea,Unknown,Between USA & Cuba,Unknown,"rowboat, occupants: refugees fleeing Cuba",Unknown,"No injury to occupants, sharks bit chunks from boat",N,P. Gilbert; SAF Case #1436,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.02-CubanRefugees.pdf +2646,1966.06.22,22-Jun-66,1966,Provoked,Usa,New Jersey,"Reeds Bay, Brigantine, Atlantic County",Clamming,Harry Hiksdal,M,3 lacerations on right leg by speared fish PROVOKED INCIDENT,N,Press clippings,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.22-Hiksdal.pdf +2645,1966.06.11,11-Jun-66,1966,Provoked,Usa,Florida,"Ft. Lauderdale, Broward County",Fishing,Burton Chamberlin,M,Hand & forearm bitten by hooked shark PROVOKED INCIDENT,N,T. Bailey,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.11-Chamberlin.pdf +2644,1966.06.04,04-Jun-66,1966,Unprovoked,Usa,Texas,Bolivar Peninsula,Swimming,David N. Holmgreen,M,Punctures on thigh & buttock,N,D. Holmgreen,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.04-Holmgreen.pdf +2643,1966.06.02,02-Jun-66,1966,Provoked,French polynesia,Society Islands,Tahiti,Fishing,Faarei Tuhei,M,Arm lacerated by netted shark PROVOKED INCIDENT,N,H.D. Baldridge (1994),SAF Case #1434,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.02-Tuhei.pdf +2642,1966.05.20.c,20-May-66,1966,Sea Disaster,Australia,New South Wales,Jervis Bay,Sinking of the dredge World Atlas,Kor Van Helden,M,FATAL,Y, J. Green,p.35,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.c-VanHelden.pdf +2641,1966.05.20.b,20-May-66,1966,Unprovoked,Australia,New South Wales, Bellingen,Fishing,Colin Oxenbridge,M,Foot bitten,N,Bellingen Courier-Sun; J. Green,p.35,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.b-Oxenbridge.pdf +2640,1966.05.20.a,20-May-66,1966,Sea Disaster,Australia,Unknown,7 miles offshore on east coast of Australia,Shipwreck,"Daniel Mangel, seaman",M,"FATAL, other human remains bitten by sharks, 13 people missing",Y,Barker & Ritson,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.a-Mangel.pdf +2639,1966.05.16.b,16-May-66,1966,Invalid,Usa,Florida,"Fernandina Beach, Nassau County",Spearfishing / Scuba diving,Steven Oschosky,M,"White shark, 3.7 m [12'] made threat display. No injury, no attack",N,"H.D. Baldridge,p.184; SAF Case #1412",,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.b-Oschoskey.pdf +2638,1966.05.16.a,16-May-66,1966,Sea Disaster,Philippines,Unknown,Off Cebu,The passenger ship Pioneer Cebu capsized & sank in Typhoon Irma,male,M,130 perished; 136 survived including a man whose foot was severed by a shark,Y,Maryborough Chronicle (Queensland),Lancashire Evening Post 6/20/1966 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.a-PioneerCebu.pdf +2637,1966.04.08,08-Apr-66,1966,Unprovoked,Usa,Puerto Rico,Unknown,Swimming,John Seaver,M,Foot lacerated,N,H.D. Baldridge (1994) SAF Case #1483,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.08-NV-Seaver.pdf +2636,1966.04.00,Apr-66,1966,Sea Disaster,Australia,New South Wales,"Botany Bay, Sydney",Overturned skiff,"Occupants: Jack Munro, Quinton Graham & Donald Shadler",M,Survived,N,SAF Case #1413,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.00-NV-skiff.pdf +2635,1966.03.20,20-Mar-66,1966,Provoked,Australia,New South Wales,Maroubra,Fishing (big game),"35' cruiser, Maluka II, occupants: Mr & Mrs E. Potts",Unknown,"No injury to occupants, hooked shark rammed boat, PROVOKED INCIDENT",N,P. W. Gilbert; SAF Case #1435,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.20-Maroubra.pdf +2634,1966.03.12,14-Mar-66,1966,Sea Disaster,Sudan,Red Sea,Unknown,"The World Liberty and the tanker Mosli collided. The Halcyon Breeze sent a lifeboat to the rescue, but it was smashed, throwing 6 men in the water.",Unknown,M,FATAL,Y,G. Burns; Befast News-Letter,3/30/1966,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.12-RedSea.pdf +2633,1966.02.27,27-Feb-66,1966,Unprovoked,Australia,New South Wales,Coledale Beach,Treading water,Raymond Short,M,"Left leg & lower right leg bitten, taken ashore with shark still grasping his leg",N,T. B. Gorman & D.J. Dunatan,NSW State Fisheries Laboratories; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.02.27-Short.pdf +2632,1966.01.29,29-Jan-66,1966,Provoked,South africa,Western Cape Province,Strandfontein Beach,Helping men land a shark,John Campbell,M,Left leg lacerated by hooked shark PROVOKED INCIDENT,N,Daily News,2/31/1966; J. Penrith & J. D'Aubrey,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.29-Campbell.pdf +2631,1966.01.25,25-Jan-66,1966,Sea Disaster,Indonesia,North Sumatra,Near Belawan,wreck of the State Oil Company ship Permina,Unknown,Unknown,Sharks said to have killed some of the 80 people lost,Y,Sydney Daily Telegraph,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.25-Permina.pdf +2630,1966.01.22,22-Jan-66,1966,Unprovoked,Usa,California,"Pebble Beach, Cypress Point, Monterey County",Free diving / spearfishing (resting on the surface),Donald Barthman,M,"Hand, arm & thigh bitten",N,D. Miller & R. Collier; R. Collier,pp.40-41; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.22-Barthman_Collier.pdf +2629,1966.01.15,15-Jan-66,1966,Unprovoked,Australia,New South Wales,Bellambi,Spearfishing,Cornelius Meyer,M,Buttocks bitten,N,The Age,1/17/1966,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.15-Meyer.pdf +2628,1966.01.14,14-Jan-66,1966,Sea Disaster,Columbia,Unknown,Off Cartagena,Colombian (Avianca) DC-4 airliner plunged into the sea 5 minutes after takeoff,Unknown,Unknown,"10 survived, 51 perished. ",Y,Virgin Islands Daily News,1/17/1966; SAF Case #1399,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.14-AviancaCrash.pdf +2627,1966.01.11,11-Jan-66,1966,Unprovoked,South africa,Eastern Cape Province,Riet River,Standing,Robin Michael Long,M,Right calf lacerated,N,J.L.B. Smith,J. Wallace,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.11-Long.pdf +2626,1966.01.10,10-Jan-66,1966,Unprovoked,Australia,Western Australia,Woodman Point,Jumped into the water,Marko Kovacich,M,"Lower leg nipped, arm bruised when he landed in boat",N,West Australian (Perth),1/20/1966 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.10-Kovacich.pdf +2625,1966.01.09,09-Jan-66,1966,Unprovoked,South africa,KwaZulu-Natal,Umkomaas,Body surfing,Dennis Vorster,M,Lower legs bitten,N,J. D’Aubrey,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.09-Vorster.pdf +2624,1966.01.08,08-Jan-66,1966,Unprovoked,New zealand,North Island,"Oakura Beach, Taranaki",Body surfing ,Rae Marion Keightley (female),F,"FATAL, left leg bitten thigh to calf ",Y,R.D. Weeks,GSAF; Dr. G. E. Walker,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.08-Knightley.pdf +2623,1966.01.05,05-Jan-66,1966,Unprovoked,Usa,Florida,"Hollywood, Broward County",Swimming,George A. C. Scherer,M,Thigh gashed,N,J. Ulsh,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.05-Scherer.pdf +2622,1966.00.00,Summer of 1996,1966,Invalid,Usa,California,"Huntington Beach, Orange County",Walking,Jane Derry,F,Minor lacerations & abrasions to lower leg. ,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.00.00-Derry.pdf +2621,1965.12.28,28-Dec-65,1965,Unprovoked,Australia,Western Australia,"Bathurst Reef, Rottnest Island","Spearfishing, but standing in knee-deep water",male,M,Thigh & swim fin bitten,N,Orange Daily (NSW),12/29/1965; T. Peake,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.28-male.pdf +2620,1965.12.19,19-Dec-65,1965,Unprovoked,Unknown,Unknown,Unknown,Freediving,David Fellows,M,No injury,N,H.D. Baldridge (1994),SAF Case #1617,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.19-Fellows.pdf +2619,1965.12.10,10-Dec-65,1965,Boat,Australia,South Australia,Cape Jervis,Fishing,19' clinker-built craft. Occupants: Ray Peckham & Mr. L.C. Wells,Unknown,No injury to occupants. Shark gouged planks of boat,N,Adelaide Advertiser,12/11/1965,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.10-Jervisboat.pdf +2618,1965.11.21.b,21-Nov-65,1965,Provoked,Australia,Queensland,Near Brisbane,Fishing from 34' boat when pulled overboard by hooked shark,Gordon Hobrook,M,FATAL PROVOKED INCIDENT,Y,Evening Press (Dublin,Ireland) 11/22/1965 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.b-Holbrook.pdf +2617,1965.11.21.a,21-Nov-65,1965,Unprovoked,Pacific ocean ,"250 miles southwest of O'ahu, Hawaii",Japanese fishing boat Taihei Maru No.10,"Hauling dead shark aboard, when another shark leapt out of the water & bit him",Takashi Kameya,M,"Left forearm bitten, surgically amputated",N,P. Resos & J. Souza,Pararescue,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.a-Kameya.pdf +2616,1965.11.03.b,03-Nov-65,1965,Invalid,Panama,Caribbean Sea,Golfo de los Mosquitos,Argentine Air Force C-54,68 people missing (crew & passengers) ,Unknown,2 life preservers had been bitten by sharks,Y,Tropic Survival School; RCC; SAF Case #1394,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.b-ArgentineAircraft.pdf +2615,1965.11.03.a,03-Nov-65,1965,Unprovoked,Australia,Queensland,Oak Beach,Surfing,Roy McGuffie,M,Puncture wounds to right thigh,N,Telegraph (Sydney),Mirror (Sydney),http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.a-McGuffie.pdf +2614,1965.10.21,21-Oct-65,1965,Unprovoked,International_water,Unknown,Florida Strait,The boat Caribou II sank,Mario Castellanos,M,Survived,N,Lodi News Sentinel,10/30/1965,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.21-Castellanos.pdf +2613,1965.10.16.b,16-Oct-65,1965,Unprovoked,Bahamas,New Providence Island,Nassau,Sunbathing on beach when he saw child being attacked by the shark,"Bruce Johnson, rescuer",M,Right arm & right leg bitten,N,St. Paul Dispatch,10/27/1965,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.b-Johnson.pdf +2612,1965.10.16.a,16-Oct-65,1965,Unprovoked,Bahamas,New Providence Island,Nassau,Playing in the water,young girl,F,FATAL,Y,St. Paul Dispatch,10/27/1965,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.a-girl.pdf +2611,1965.10.10,10-Oct-65,1965,Unprovoked,New britain,West coast,"Outside the reef off Moputu Village, near Talasea","Spearfishing, shot a turtle",Kaleva,M,FATAL,Y,Morning Herald (Sydney) 10/17/1965,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.10-Kaleva.pdf +2610,1965.10.00,Oct-65,1965,Unprovoked,Papua new guinea,New Britain,Unknown,Wading,John Guge,M,Toe severed,N,H.D. Baldridge (1994) SAF Case #1475,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.00-NV-Guge.pdf +2609,1965.09.21,21-Sep-65,1965,Provoked,Papua new guinea,Madang Province,Sek Harbor,Spearing fish,"Dabek Orou, male",M,"Minor injury, speared shark lacerated his kneecap & leg PROVOKED INCIDENT",N,South Pacific Post,9/22/2965; SAF Case #1386,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.21-Orou.pdf +2608,1965.09.12,12-Sep-65,1965,Provoked,Papua new guinea,East Sepik,Moem Village near Wewak,Fishing (rod & line),Ilu,M,Leg & hand bitten by shark that had been speared by another fisherman PROVOKED INCIDENT,N,The Times (London),,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.12-Ilu.pdf +2607,1965.09.08,08-Sep-65,1965,Unprovoked,Mexico,Veracruz,Playa Villa del Mar,Unknown,Miguel Salas Gonzalez,M,Leg & arm bitten,N,F. Piskur; press clipping dated 9/9/1965,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.08-Gonzalez.pdf +2606,1965.08.30,30-Aug-65,1965,Invalid,Philippines,Unknown,"Grounded off Scarborough Shoals, 150 miles northwest of Manila in the South China Sea","Arsinoe, a French tanker",French seaman,M,"One man was lost, but he may have drowned",Y,Manila Daily Bulletin,9/3/1965; SAF Case #1388,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.30-Arsinoe.pdf +2605,1965.08.26,26-Aug-65,1965,Unprovoked,Usa,New Jersey,"Steel Pier, Atlantic City, Atlantic County",Swimming,"James Bloodworth, Jr.",M,Right thigh lacerated,N,J. Bloodworth; Philadelphia Inquirer 8/27/1965,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.26-Bloodworth.pdf +2604,1965.07.30,30-Jul-64,1965,Provoked,Bahamas,Bimini Islands,Lerner Marine Lab,Attempting to anesthetize shark,Karl Kuchnow,M,Chest bitten PROVOKED INCIDENT,N,H.D. Baldridge,p. 93,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.30-Kuchnow.pdf +2603,1965.07.26,26-Jul-65,1965,Unprovoked,Mexico,Veracruz,Mocambo,Bathing,Hector Serfio Trillio Jimenez,M,"FATAL, both legs severed ",Y,Latin American Times (New York),8/3/1965 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.26-Jimenez.pdf +2602,1965.07.02.R,02-Jul-1965,1965,Boat,Bermuda,Hamilton,Unknown,Unknown,"12' boat Sio Ag, occupant: John Riding",Unknown,"No injury to occupant, shark bit boat",N,Daily Express,7/2/1965; SAF Case #1375,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.02.R-Riding.pdf +2601,1965.06.19,19-Jun-65,1965,Invalid,Usa,Florida,"In front of Key Biscayne Beach Club, Key Biscayne",Wading,Eugene Rihl III,M,Parallel lacerations on right calf. Thought to be a barracuda bite ,N,Miami Herald,6/20/1965; SAF Case #1372,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.19-Rihl.pdf +2600,1965.06.18,18-Jun-65,1965,Invalid,Usa,Florida,150 miles southeast of Cape Kennedy,"Diving, retrieving film package from Titan 3C rocket","Sgt James Lacasse & Sgt David Milsten, USAF divers",M,"No injury, chased by 4.6 m [15'] oceanic whitetip sharks",N,Evening Standard (London) 6/9/1965; Sunday Express (London),6/20/1965 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.18-TitanRocket.pdf +2599,1965.06.09,09-Jun-65,1965,Unprovoked,Mexico,Veracruz,Mocambo,Swimming,"Father Miguel de Jesus Chavez, a Catholic priest",M,"Right forearm severed, right leg bitten and surgically amputated",N,J. Carranza (This is apparently a different case than 1965.05.00.a),,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.09-Chavez.pdf +2598,1965.06.00.b,Jun-65,1965,Unprovoked,Papua new guinea,Near Bougainville (North Solomons),Huhunoti Island,Spearfishing,"Mr. Belle Yang, a school teacher",M,Minor injury,N,Age (Melbourne) 6/7/1965 ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-NV-Naruchima.pdf +2597,1965.06.00,Jun-65,1965,Unprovoked,Unknown,Unknown,Unknown,Treading water,Kikio Naruchima,M,"FATAL, body not recovered",Y,H.D.Baldridge (1994) SAF Case #1510,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-Yang.pdf +2596,1965.05.29,29-May-65,1965,Unprovoked,Mexico,Veracruz,Playa Mocambo,Swimming,Ignacio Millán,M,"FATAL, left leg & right arm severed ",Y,The News (Mexico City) 6/1/1965 ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.29-Millan.pdf +2595,1965.05.28,28-May-65,1965,Unprovoked,Mexico,Veracruz,Playa Mocambo,Swimming,Fidel Garcia Montero,M,"FATAL, left arm & right leg severed ",Y,The News (Mexico City) 6/1/1965,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.28-Montero.pdf +2594,1965.05.00.c,May-Jun-1965,1965,Unprovoked,Unknown,Unknown,Unknown,Standing,male,M,Leg bitten,N,Falconer-Barker,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.c-Falconer-Barker.pdf +2593,1965.05.00.b,May-65,1965,Unprovoked,Unknown,Unknown,Unknown,Diving,Ken Bernard,M,Minor injury,N,H.D.Baldridge (1994) SAF Case #1498,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.b-NV-Bernard.pdf +2592,1965.05.00.a,May-65,1965,Unprovoked,Mexico,Veracruz,Mocambo,Swimming,"Father Jose de Jesus Gomez, a priest",M,"Right arm severed, right leg bitten, not known if he survived",N,The News (Mexico City) 6/12/1965,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.a-Gomez.pdf +2591,1965.04.29,29-Apr-65,1965,Unprovoked,Usa,Florida,"Hobe Sound, Martin County",Unknown,Morris M. Vorenberg,M,"Thighs abraded, puncture wounds in dorsal surface of left hand",N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.29-Vorenberg.pdf +2590,1965.04.25,25-Apr-65,1965,Invalid,Usa,California,"Pacifica, San Mateo County",Surfing,Michael Sammut,M,Drowned & his body was not recovered. Sharks seen in area later that day but no shark involvement in surfer's death,Y,H.D. Baldridge,SAF Case #1370; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.25-Sammut.pdf +2589,1965.04.10,10-Apr-65,1965,Unprovoked,Usa,Florida,American Shoals off Key West,Spearfishing,Dr. J. D. Morgan,M,Left hand severely lacerated,N,J. D. Morgan,M.D. ,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.10-Morgan.pdf +2588,1965.04.04.b,04-Apr-65,1965,Unprovoked,Palau,Western Caroline Islands,Koror,Walking on reef,Barry Nakamura,M,Right leg bitten,N,P.T. Wilson,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.b-Nakamura.pdf +2587,1965.04.04.a,04-Apr-65,1965,Unprovoked,Usa,Florida,"Juno Beach, Palm Beach County",Paddling on surfboard,William F. Lachmund,M,Left hand punctured & lacerated,N,M. Vorenberg; R. Greer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.a-Lachmund.pdf +2586,1965.03.23,23-Mar-65,1965,Invalid,Usa,Puerto Rico,60 miles offshore north of San Juan,Aircraft exploded,15 Royal Canadian Airforce crew & 1 passenger,M,"All 16 onboard perished, recovery efforts hampered by sharks",N,Dr. S.D. Caller; SAF Case #1360,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.23-CanadianAircraft.pdf +2585,1965.03.14,14-Mar-65,1965,Unprovoked,Usa,Florida,"Pompano Beach, Palm Beach County",Free diving,Rick MacNeilly,M,Survived,N,R. MacNeilly,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.14-MacNeilly.pdf +2584,1965.02.14,14-Feb-65,1965,Unprovoked,South africa,KwaZulu-Natal,Amatikulu,Treading water,Geoffrey Walter Black,M,"Abdomen, buttock, thigh, arm & hand bitten",N,G.W. Black,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.14-Black.pdf +2583,1965.02.04,04-Feb-65,1965,Unprovoked,Usa,Massachusetts,"Granite Pier, Rockport",Scuba diving,Ronald R. Powell,M,Punctures on left thigh,N,R. Powell; Boston Traveler 2/11/1965; H.D. Baldridge,p.184,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.04-Powell.pdf +2582,1965.01.25,25-Jan-65,1965,Invalid,Usa,California,"Newport Beach, Orange County",Motor boat Rebel Belle lost,Jack A. Zittel,M,"Puncture marks on chest may have been post mortem, 4 other bodies in area were undamaged",Y,H.L. Johnson; SAF Case #1353,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.25-RebelBelle.pdf +2581,1965.01.23,23-Jan-65,1965,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Paddling rescue ski,Ronald Bowers,M,"No injury, ski bitten",N,D. Davies,J. D'Aubrey & H. Haicker,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.23-Bowers.pdf +2580,1965.01.16,16-Jan-65,1965,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Body surfing,A.W.F. Patterson,M,Right thigh punctured,N,D. Davies & J. D'Aubrey,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.16-AWFPatterson.pdf +2579,1965.01.10,10-Jan-65,1965,Unprovoked,Australia,Victoria,"East of Station Pier, Port Melbourne",Swimming,Arthur Wootton,M,Thigh gashed,N,The Australian 1/11/1965,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.10-Wootton.pdf +2578,1965.01.09,09-Jan-65,1965,Unprovoked,New guinea,Central Province,Off Gaire Village,Free diving,"Lohia Raho, a male",M,FATAL,Y,South Pacific Post (Port Moresby),1/11/1965,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.09-Raho.pdf +2577,1965.00.00.g,Summer 1965,1965,Unprovoked,Usa,Texas,"Port Lavaca, Calhoun County",Dangling feet in the water,Thomas Darilek,M,Foot bitten,N,Victoria Advocate,7/11/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.g-Darilek.pdf +2576,1965.00.00.f,1965,1965,Provoked,Usa,California,"Dana Point, San Clemente, Orange County",Surfing,Barry Berg,M,Puncture wounds to foot when he stepped on a shark PROVOKED INCIDENT,N,Orange County Register,1/28/2998,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.f-Berg.pdf +2575,1965.00.00.e,Early 1965,1965,Provoked,Usa,Florida,"Between Palm & Salerno Inlets, Martin County",Collecting marine specimens,Frank ---,M,"No injury, shark tore his wetsuit after he grabbed it by the tail PROVOKED INCIDENT",N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.e-Frank-RivieraBeach.pdf +2574,1965.00.00.d,May-Jun-1965,1965,Unprovoked,Red sea,East of the Gulf of Aqaba,Unknown,Standing in waist-deep water,male,M,Leg bitten three times,N,Captain T. Falcon-Barker,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.d-male.pdf +2573,1965.00.00.c,May-Jun-1965,1965,Unprovoked,Egypt,Unknown,South of Hurghada,"Spearfishing, but standing in the water",male,M,Ankle and thigh bitten; shark made three strikes,N,Captain T. Falcon-Barker,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.c-spearfishing-male.pdf +2572,1965.00.00.b,1965,1965,Unprovoked,Vanuatu,Malampa Province,Island of Paam'a,Unknown,3 males,M,FATAL. Said to have been killed by sorcerers that turned themselves into sharks. The alleged sorcerers were taken into custody by authorities but released due to lack of evidence. ,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.b-Pamaa.pdf +2571,1965.00.00.a,Ca. 1965,1965,Invalid,South africa,Eastern Cape Province,Pollock Beach,Bather,Unknown,Unknown,No details,UNKNOWN,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.a-NV-PollockBeach.pdf +2570,1964.12.25,25-Dec-64,1964,Unprovoked,South africa,Eastern Cape Province,Port Alfred,Swimming,W. A. Strijdom,M,"Hand, ankle & calf lacerated",N,Dr. Macrae; J. D'Aubrey,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.25-Strijdom.pdf +2569,1964.12.10.b,10-Dec-64,1964,Unprovoked,Papua new guinea,Bougainville (North Solomons),Buka Island,Unknown,male,M,Thigh severely lacerated,N,H.D.Baldridge (1994) SAF Case #1558,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.b-NV-Buja.pdf +2568,1964.12.10.a,10-Dec-64,1964,Boat,Australia,New South Wales,Port Jervis,Fishing,"19' boat, occupants: Ray Peckham, L.C. Wells",Unknown,"No injury to occupants, shark rammed boat, bit planks & sheared off copper rivet at stern of boat",N,Adelaide Advertiser,12/11/1965,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.a-NV-Boat-Peckham-Wells.pdf +2567,1964.12.09,09-Dec-64,1964,Unprovoked,Papua new guinea,Bougainville (North Solomons),"Off Sing Village, Buka Island","Canoe swamped, swimming back to canoe","Soso, a male",M,Survived,N,South Pacific Post (Port Moresby),12/16/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.09-Soso.pdf +2566,1964.12.06,06-Dec-64,1964,Unprovoked,Kenya,Coast Province,"Kilindini Harbor, Mombasa",Fishing with hand line tied to wrist & was pulled into the water,Musa Mohammed,M,FATAL,Y,Star,12/7/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.06-Mohammed.pdf +2565,1964.11.29,29-Nov-64,1964,Unprovoked,Australia,Victoria ,Lady Julia Percy Island,Free diving with seals,Henri Bource,M,Left leg severed,N,A. Sharpe,pp.115-116; H. Edwards,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.29-Bource.pdf +2564,1964.11.18,18-Nov-64,1964,Unprovoked,Australia,Queensland,"Fingal Beach, near Tweed Heads",Swimming out to rescue swimmers in difficulty,Glenthorne Prior,M,FATAL,Y,Daily Mirror (Sydney),11/19/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.18-Prior.pdf +2563,1964.11.13,13-Nov-64,1964,Provoked,Australia,New South Wales,"North Solitary Island, 8 miles from Wolli","Filming underwater, carrying powerhead",Jon Harding,M,"Shark made threat display, then diver hit it with powerhead PROVOKED INCIDENT",N,H.D. Baldridge,p.57,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.13-Harding.pdf +2562,1964.11.05,05-Nov-64,1964,Boat,Usa,Puerto Rico,Unknown,Longline fishing,"18 hp Boston Whaler boat, occupant: G. W. Bane, Jr.",Unknown,"No injury to occupant, shark bit propeller of outboard motor",N,G. W. Bane,Jr.,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.05-NV-BostonWhaler.pdf +2561,1964.10.31,31-Oct-64,1964,Provoked,South africa,KwaZulu-Natal,Umkomaas,Surf fishing,Robin Clausen,M,Right leg bitten while attempting to gaff hooked shark PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.31-Clausen.pdf +2560,1964.10.25,25-Oct-64,1964,Invalid,Usa,Florida,"Near US Air Force Base at Elgin, Okaloosa County",Boat Miss Becky sank 12 miles from shore,"James C. Beason & Calvin E. Smith, Jr. spent 16 hours in life raft",Unknown,"No injury to occupants, drove sharks away with paddles",N,Miami News,10/26/1964; SAF Case #1338,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.25-MissBecky.pdf +2559,1964.10.04,04-Oct-64,1964,Unprovoked,Australia,Western Australia,"Avalon Beach, near Mandurah, 50 miles south of Perth","Surfing, but swimming to his board",Murray Henderson,M,Abrasions & 11 teethmarks on right lower leg,N,The Australian 10/5/1964,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.04-Henderson.pdf +2558,1964.09.27,27-Sep-64,1964,Invalid,Unknown,Unknown,Unknown,Spearfishing,Giancarlo Griffon,M,"Disappeared, probable drowning but sharks in area led to speculation that he was taken by a shark",Y,C. Moore. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.27-Griffon.pdf +2557,1964.09.20,20-Sep-64,1964,Unprovoked,Taiwan,Northern Taiwan,"Tamsui Beach, Taipai",Swimming,Ko Tien-fu,M,FATAL,Y,China Post (Taipai,Taiwan) 9/22/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.20-Tien-fu.pdf +2556,1964.09.07,07-Sep-64,1964,Unprovoked,Taiwan,Northern Taiwan,Tamsui Beach,Swimming,LO Chiu-yang,M,Right thigh & elbow bitten,N,China Post (Taipei,Taiwan) 9/22/1964; J. Wong,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.07-Yang.pdf +2555,1964.08.26,26-Aug-64,1964,Unprovoked,Usa,Florida,"Hollywood Beach, Broward County",Swimming,Marc Tayman,M,Bruised & abraded ankle,N,M. Tayman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.26-Tayman.pdf +2554,1964.08.23,23-Aug-64,1964,Unprovoked,Mexico,Guerrero,Acapulco,Floating on his back in an inner tube,Thad T. Moore,M,Right thigh bitten,N,T.T. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.23-Moore.pdf +2553,1964.08.22,22-Aug-64,1964,Invalid,Usa,Florida,5 miles south of Palm Beach,Spearfishing / free diving,Kenny Ruszenas,M,3 m to 3.7 m [10' to 12'] great hammerhead shark shark only made a threat display. No injury,N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.22-Ruszenas.pdf +2552,1964.08.21,21-Aug-64,1964,Unprovoked,Usa,Florida,"Panama City, Bay County",Swimming,Ron Kopenski,M,"No injury, bumped repeatedly",N,W.H. Tobert,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.21-Kopenski.pdf +2551,1964.08.08,08-Aug-64,1964,Unprovoked,Usa,Florida,"2 miles off Jupiter, Palm Beach County",Spearfishing using scuba,James R. Webb,M,"No injury, shark hit scuba tank",N,H.D. Baldridge,p.183,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.08-Webb.pdf +2550,1964.08.03,03-Aug-64,1964,Unprovoked,Japan,Okayama Prefecture,Saidaiji,Swimming,Yoshio Ukita,M,"Leg bitten, surgically amputated",N,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.03-Ukita.pdf +2549,1964.08.00,Aug-64,1964,Unprovoked,Panama,San Blas,Off Achutuppu Island near Ailigandi,Free diving / Spearfishingat edge of reef,male,M,Foot lacerated,N,H. Loftin,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.00-Achtupu.pdf +2548,1964.07.27,27-Jul-64,1964,Provoked,Usa,Puerto Rico,Unknown,Unknown,Manuel Alvelo,M,Arm lacerated by speared shark PROVOKED INCIDENT,N,H.D.Baldridge (1994) SAF Case #1547,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.27-NV-Alvelo.pdf +2547,1964.07.16,16-Jul-64,1964,Unprovoked,South africa,KwaZulu-Natal,Island Rock,Searching for remains of Dr. Marais,Len Jones,M,"No injury, shark charged & impaled itself on spear",N,L. Jones,"M. Levine,GSAF",http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.16-Jones.pdf +2546,1964.07.15,15-Jul-64,1964,Invalid,Usa,Connecticut,"3 days out of Old Saybrook, Connecticut, 37.04'N, 67.57'W, Southern fringe of Gulf Stream","Yacht Gooney Bird foundered, 4 survivors on raft",Unknown,Unknown,"No injury, no attack; sharks ate their food tied to a line over the side of the raft",N,SAF Case #1313,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.15-GooneyBird.pdf +2545,1964.07.08.b,08-Jul-64,1964,Invalid,South africa,KwaZulu-Natal,Island Rock,Spearfishing ,Dr. J. J. Marais,M,"Remains recovered, probable drowning and scavenging",Y,M. Levine,L. Jones,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08.b-Marais.pdf +2544,1964.07.08.a,08-Jul-64,1964,Provoked,Usa,Florida,"Palm Beach, Palm Beach County",Tagging sharks,18' boat of Morris Vorenberg,M,"No injury to occupant, hooked shark rammed & bit boat PROVOKED INCIDENT",N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08.a-Vorenberg.pdf +2543,1964.07.00.b,Jul-64,1964,Unprovoked,Papua new guinea,New Ireland Province,A reef off New Hanover (Northern end),Standing / fishing,"Kambagil, male",M,"FATAL, leg severed ",Y,Times Courier (Lae,PNG) 7/29/1964 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.b-Kambagil.pdf +2542,1964.07.00.a,Jul-64,1964,Boat,Papua new guinea,New Ireland Province,Southern end,canoeing,occupant: child,Unknown,"No injury to occupant, canoe struck several times by shark ",N,Times Courier (Lae,PNG) 7/29/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.a-child.pdf +2541,1964.06.29.a,29-Jun-64,1964,Sea Disaster,Bermuda,Hamilton,2 miles south of Castle Island Harbour entrance to Hamilton,Conducting a promotional film project for the Gemini space program (a practice astronaut recovery),2 USAF 4-engine planes (an HC-54 & a HC-97) each with 12 onboard collided in mid-air at low altitude and plunged into the Atlantic Ocean,Unknown,"7 rescued, 7 bodies recovered, 10 missing. Many sharks in crash area.",Y,Washington Post,6/30/1964; SAF Case #1295,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.29-Air-Collision.pdf +2540,1964.06.28,28-Jun-64,1964,Invalid,Usa,New York,Long Island,Attempting to swim across the Atlantic Ocean,Britt Sullivan,F,"Disappeared, probable drowning but sharks in area led to speculation that she was taken by a shark",Y,Oakland Tribune,6/29/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.28-Sullivan.pdf +2539,1964.06.24,24-Jun-64,1964,Boat,Usa,California,"Long Beach, Los Angeles County",Fishing,"boat, occupant: Harvey Birch",Unknown,"No injury to occupants, shark crashed through windshield of boat",N,Valley News (Gardena),6/28/1964 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.24-BirchBoat.pdf +2538,1964.06.17,17-Jun-64,1964,Boat,Papua new guinea,New Britain,Near Rabaul,Fishing,"canoe, occupant: Herman Taman",M,"No injury to occupant, shark lifted canoe's outrigger",N,SAF Case #1300,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.17-TamanCanoe.pdf +2537,1964.06.23,23-Jun-64,1964,Unprovoked,Fiji,Lau Group,"Tovu, Totoya Island",Spearfishing,Isireli Mara,M,Buttocks bitten,N,Fiji Times,6/26/1963 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.23-IsireliMara.pdf +2536,1964.06.02,02-Jun-64,1964,Invalid,South africa,KwaZulu-Natal,Port Edward,Swimming,Dawood Pili,M,"Skeletonized, except for head & feet. Possibly a drowning / scavenging",Y,D. Davies,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.02-Pili.pdf +2535,1964.05.30,30-May-64,1964,Unprovoked,Panama,Caribbean Coast,Unknown,Standing,W.W. Fitzsimmons,M,No injury,N,H.D. Baldridge,SAF Case #1496,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.30-NV-Fitzsimmons.pdf +2534,1964.05.08,08-May-64,1964,Unprovoked,Fiji,Vita Levu,Naviti,Spearfishing,Sailasa Ratubalavu,M,"FATAL, buttocks, lower abdomen & genitalia removed ",Y,H.D. Baldridge,p.196; Clark,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.08-Ratubalavu.pdf +2533,1964.05.00,May-64,1964,Unprovoked,Panama,San Blas Islands,"Achutupu, a small island ner Ailigandi",Skin diving,male,M,"FATAL, torso / abdomen severely bitten ",Y,H. Loftin,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.00-Achtupu.pdf +2532,1964.04.07,07-Apr-64,1964,Unprovoked,Papua new guinea,Madang Province,Inshore side of reef near Madang,Fishing,Simon Kilaleg,M,FATAL,Y,Daily News (Perth),4/8/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.04.07-Kialeg.pdf +2531,1964.03.28.b,28-Mar-64,1964,Unprovoked,Australia,South Australia,Surfers Paradise Beach near Victor Harbour,Surfing,Allan Spry,M,Left thigh lacerated,N,Advertiser (Adelaide) and Telegraph (Sydney),3/30/1964 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.b-Spry.pdf +2530,1964.03.28.a,28-Mar-64,1964,Sea Disaster,Papua new guinea,Central Province,30 miles from Port Moresby,"Canoe capsized with 10 occupants, 8 survived, Hamilton swam off to seek help",Donald Hamilton,M,Presumed FATAL,Y,Daily Mirror (Sydney),3/311964; SAF Case 1333,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.a-Hamilton.pdf +2529,1964.03.05,05-Mar-64,1964,Unprovoked,Usa,Florida,"Fort Lauderdale, Broward County",Skin diving ,James R. Duryea,M,"Minor injury, abdomen abraded when he collided with the shark",N,Sun Sentinel,3/6/1964 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.05-Duryea.pdf +2528,1964.03.00,Mar-64,1964,Unprovoked,Senegal,Cap Vert Peninsula,"Bel Air, Dakar",Free diving for shell,O.D.,M,Thigh & hand bitten,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.00-Senegal.pdf +2527,1964.02.17.R,17-Feb-1964,1964,Provoked,Fiji,Unknown,Savuli Reef,Fishing,"boat, occupant: R. Southey of Lautoka",Unknown,Hooked shark bit boat PROVOKED INCIDENT,N,Fiji Times,2/17/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.17.R-Fiji-boat.pdf +2526,1964.02.14.b,14-Feb-64,1964,Unprovoked,Unknown,Unknown,Unknown,Diving for trochus shell,Bernard Taye,M,"FATAL, foot & part of other leg severed ",Y,Sydney Daily Telegraph,2/15/1964 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.b-Taye.pdf +2525,1964.02.14.a,14-Feb-64,1964,Unprovoked,Fiji,Vanua Levu,"Nailou Village, Tunuloa Natewa Bay",Spearfishing,Ivo Berabi,M,"FATAL, thigh and abdomen bitten ",Y,Fiji Times; L. Schultz,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.a-Berabi.pdf +2524,1964.02.11,11-Feb-64,1964,Unprovoked,New zealand,North Island,"Palliser Bay, Whatarangi (east of Wellington)",preparing to go skin diving,male,M,Hand lacerated,N,R.D.Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.11-male-Palliser Bay.pdf +2523,1964.02.10,10-Feb-64,1964,Unprovoked,New zealand,North Island,"West of Pukerua Bay, Wellington",Spearfishing,Dr. Ken R. Markham,M,"No injury to diver, shark bit speargun",N,R.D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.10-Markham.pdf +2522,1964.02.08,08-Feb-54,1964,Unprovoked,South africa,Western Cape Province,Muizenberg,Body boarding,Alan Saffery,M,Right ankle lacerated,N,D. Davies; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.08-Saffery.pdf +2521,1964.02.05.b,05-Feb-64,1964,Unprovoked,New zealand,North Island,"Hokio Beach, near Levin",Lying in 2 feet of water,male,M,Right leg & shoulder lacerated,N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.b-Hokio.pdf +2520,1964.02.05.a,05-Feb-64,1964,Unprovoked,New zealand,South Island,"St. Clair Beach, Dunedin",Swimming,Leslie Francis Jordan,M,"FATAL, both legs bitten & right leg severed at knee ",Y,R.D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.a-Jordan.pdf +2519,1964.02.02,02-Feb-64,1964,Invalid,Australia,Queensland,Brisbane,Swimming,Neil Buckley,M,Body not recovered / May have drowned prior to shark involvement,Y,H.D.Baldridge (1994) SAF Case #1336,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.02-NV-Buckley.pdf +2518,1964.02.01,01-Feb-64,1964,Boat,New zealand,South Island,"Ngatuka Bay, near Picton",Rowing,"dinghy, occupants: T. Shipston, T. Whitta, L Cox, T. Jones, R. Genet & W. Pearce",Unknown,"No injury to occupants , shark nudged oars",N,New Zealand Herald,2/2/1964; SAF Case #1335,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.01-Dinghy.pdf +2517,1964.02.00.b,Feb-64,1964,Unprovoked,Usa,Florida,Palm Beach County,Floating,Noel Feustel,M,No injury,N,H.D.Baldridge,SAF Case #1487,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.b-NV-Feustel.pdf +2516,1964.02.00.a,Feb-64,1964,Unprovoked,Costa rica,Puntarenas Province,Puntarenas,Swimming,male,M,"FATAL, right arm & left thigh bitten ",Y,E. Vargas,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.a-CostaRica.pdf +2515,1964.01.27,27-Jan-64,1964,Unprovoked,Fiji,Unknown,70 miles from Suva,Spearfishing,Dr. George Lapin,Unknown,FATAL,Y,Long Beach Independent,1/281964 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.27-Lapin.pdf +2514,1964.01.23,23-Jan-64,1964,Unprovoked,South africa,Eastern Cape Province,Nahoon,Body surfing,John Carlson,M,Heel & ankle bitten,N,D. Davies,Daily Dispatch (East London),http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.23-Carlson.pdf +2513,1964.01.22,22-Jan-64,1964,Unprovoked,South africa,Eastern Cape Province,Nahoon,Standing,Gerald Holder,M,Heel bitten,N,D. Davies; Daily Dispatch (East London),1/23/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.22-Holder.pdf +2512,1964.01.21,21-Jan-64,1964,Boat,South africa,Western Cape Province,20 m from shore at Strand,Shark watching,"Motor boat, occupants: Quintus Du Toit, J.H. van Heerden & J.P. Marais",Unknown,"No injury to occupants, shark holed boat",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.21-boat.pdf +2511,1964.01.18,18-Jan-64,1964,Unprovoked,Australia,Western Australia,Hamelin Bay,Freediving,Frank Hastie,M,Arm lacerated,N,G.P. Whitley,citing Sydney Morning Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.18-Hastie.pdf +2510,1964.01.11,11-Jan-64,1964,Unprovoked,Usa,California,Southeast Farallon Island,Spearfishing / Scuba diving (at surface),Jack Rochette,M,Leg & thigh bitten,N,R. Collier,p.261-264; D. Miller & R. Collier; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.11-Rochette_Collier.pdf +2509,1964.01.06.R,06-Jan-1964,1964,Unprovoked,Papua new guinea,New Britain,Unknown,Fishing,male,M,FATAL,Y,Oldham Evening Chronicle,1/6/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.06.R-NewBritain.pdf +2508,1964.01.04,04-Jan-64,1964,Unprovoked,Fiji,"Lomaloma, Lau",Tuvuca Isalnd,Swimming,Tale Meve (female),F,Deep lacerations to her right thigh,N,SAF Case #1250,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.04-Meve.pdf +2507,1964.01.01.b,01-Jan-64,1964,Unprovoked,Australia,Western Australia,Metro coast,Unknown,Edwards,Unknown,Unknown,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-NV-Edwards.pdf +2506,1964.01.01.a,01-Jan-64,1964,Unprovoked,South africa,Western Cape Province,Mossel Bay,Diving for sinkers,Jakobus Christiaan Steyn,M,Lacerations and puncture wounds in right arm ,N,The Argus,1/3/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-Edwards.pdf +2505,1964.01.00,Jan-64,1964,Invalid,New zealand,North Island,White Island,Snorkeling,J.H. Seddon,M,No injury,N,H.D.Baldridge (1994) SAF Case #1484,Note: Unable to verify in local records.,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.00-NV-Sneddon.pdf +2504,1963.12.29,29-Dec-63,1963,Unprovoked,South africa,KwaZulu-Natal,"Catfish Rock, between Salt Rock & Shaka’s Rock",Standing,Barbara Elsa Strauss,F,"Right hand & foot severed, thigh & buttock lacerated",N,B. Strauss,D. Davies,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.29-Strauss.pdf +2503,1963.12.26.b,26-Dec-63,1963,Unprovoked,South africa,KwaZulu-Natal,Umhlanga Rocks,Swimming ,Ronnie De Wet,M,"Lower leg bitten & foot severed, leg surgically amputated below knee",N,D. Davies,pp.120-121; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.b-deWet.pdf +2502,1963.12.26.a,26-Dec-63,1963,Unprovoked,Australia,Queensland,"Figtree Ledge, Hervey Bay",Sitting on gunwale of boat,Mr. N. Warry,M,"No injury, shark's tail struck his armpit",N,Maryborough Chronicle (Qld),12/28/1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.a-Warry.pdf +2501,1963.12.25,25-Dec-63,1963,Unprovoked,South africa,Eastern Cape Province,Gonubie River Mouth,Swimming,Chester Wienand,M,"FATAL, shoulders, arms, abdomen & foot bitten ",Y,G.V. Wienand,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.25-Wienand.pdf +2500,1963.12.22.b,22-Dec-63,1963,Invalid,Atlantic ocean,Between Southampton & Canary Islands,Unknown,"Greek steamship Lakonia caught fire, 98 of her 646 passengers, and 30 of her crew of 376 perished",woman,F,"One woman reported to have suffered fish bites, but cause of her death was exposure & drowning""",N,Bath Coronor report NLSC 20/64; SAF Case #1324,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.b-Lakonia.pdf +2499,1963.12.22.a,22-Dec-63,1963,Provoked,South africa,KwaZulu-Natal,"Next to West Street groyne, Durban",Helping friend land hooked shark,Desmond Woodhams,M,Foot lacerated PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.a-Woodhams.pdf +2498,1963.12.21,21-Dec-63,1963,Provoked,Australia,New South Wales,"Woolgoolga, Coffs Harbour",Fishing,Leslie Cook,M,7 puncture wounds in right forearm from hooked shark PROVOKED INCIDENT,N,Daily Examiner (Grafton,NSW),http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.21-Cook.pdf +2497,1963.12.20.b,20-Dec-63,1963,Unprovoked,South africa,Western Cape Province,Hartenbos,Spearfishing,Cornelius G. Coetzee,M,Foot lacerated,N,D. Davies; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.b-Coetzee.pdf +2496,1963.12.20.a,20-Dec-63,1963,Unprovoked,South africa,KwaZulu-Natal,Umvoti,Splashing in surf,Matangusa Mzize,M,"FATAL, arm severed, leg bitten",Y,G.D. Campbell; D. Davies,pp.119-120,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.a-Mzize.pdf +2495,1963.12.08,08-Dec-63,1963,Unprovoked,Australia,South Australia,55 miles south of Adelaide,Spearfishing,Rodney Fox,M,Torso & hand lacerated,N,H. Edwards,pp.65-66: H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.08-Fox.pdf +2494,1963.12.04.R,04-Dec-63,1963,Unprovoked,New britain,"South Coast, East New Britain",Pomio,Spearfishing,Patape,M,"FATAL, leg severely bitten",Y,Times Courier (Lae,PNG),http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.04.R-Patape.pdf +2493,1963.11.30.b,30-Nov-63,1963,Unprovoked,New zealand,South Island,"Charteris Bay, Lyttleton Harbour",Treading water while alongside capsized yacht,Charlie Dudley,M,Hand & lower leg severely injured,N,C. Dudley,R.D. Weeks,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.b-Dudley.pdf +2492,1963.11.30.a,30-Nov-63,1963,Provoked,Papua new guinea,Gulf Province,"Kukipi, 150 miles west of Port Moresby in the Lakekamu River area",Fishing / standing in waist deep water,"Siara Ikui, female",F,Left arm lacerated PROVOKED INCIDENT,N,M. Malin; The Sun (Melbourne),12/2/1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.a-Siara.pdf +2491,1963.11.28,28-Nov-63,1963,Unprovoked,Fiji, Lau Province,"Dravuwalu, Totoya Island",Fishing,"Mereseini Wati, female",F,Elbow bitten,N,Capt. S. B. Brown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.28-Wati.pdf +2490,1963.11.25,25-Nov-63,1963,Unprovoked,Fiji,Vita Levu,Rewa River,Spearing fish,Sumia Qio,M,Ankle & foot bitten,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.25-Sumia.pdf +2489,1963.11.16.R,16-Nov-1963,1963,Unprovoked,Italy,Sicily,Off Mondello Lighthouse,Spearfishing,Dr. Salito,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.16.R-Salito.pdf +2488,1963.11.14,14-Nov-63,1963,Provoked,Australia,Queensland,Mermaid Beach,Catching sharks under government contract,"boat Nora, occupant Bruce Harris",M,"No injury to occupant, netted shark rammed & bit boat PROVOKED INCIDENT",N,Miner (WA) & Warwick Daily News (Qld),11/15/1963 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.14-Nora.pdf +2487,1963.11.12,12-Nov-63,1963,Provoked,Usa,Florida,"8 miles south of Elliot Key, Miami-Dade County",Testing anti-shark cage,"D. R. Nelson, J. Greenberg & S.H. Gruber",M,No injury PROVOKED INCIDENT,N,D.R. Nelson,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.12-DonNelson.pdf +2486,1963.11.05.R,05-Nov-1963,1963,Unprovoked,Papua new guinea,New Britain,Unknown,Wading,Tule,M,Thigh lacerated ,N,H.D. Baldridge (1994) SAF Case #1478,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.05.R-Tule.pdf +2485,1963.11.04,04-Nov-63,1963,Unprovoked,Palau,Western Caroline Islands,Koror,Fishing,Saburo Dooley,M,Left calf lacerated,N,R. Yalap,M.D.; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.04-Dooley.pdf +2484,1963.10.16,16-Oct-63,1963,Unprovoked,Usa,Florida,"Biltmore Beach, near Panama City","Surf fishing, wading ",William Cheatham,M,"Right thigh & foot bruised, right calf lacerated",N,H.D. Baldridge,p.109,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.16-Cheatham.pdf +2483,1963.10.15,15-Oct-63,1963,Provoked,Unknown,Unknown,Unknown,Fishing for sharks,"Eichi Nakata, of the the crew of the trawler Kayo Maru",M,"Right hand lacerated, PROVOKED INCIDENT",N,J.L. Holland; The Honolulu Advertiser,10/19/1963; SAF Cse #1209,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.15-Nakata.pdf +2482,1963.09.29,29-Sep-63,1963,Unprovoked,Chile,Unknown,"El Panul, 12km south of Coquimbo",Spearfishing / free diving,Crisolog Urizar,M,FATAL,Y,J. McCosker & A.C. Engana,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.29-Urizar.pdf +2481,1963.09.26,26-Sep-63,1963,Invalid,Usa,Florida,100 miles offshore,"Commercial fishing vessel, Ev-nn, struck object & sank. Ken Crosby and Jame & Ann Dumas adrift on makeshift raft.","After 2 days, Ann Dumas, 7,5 months pregnant, died of exposure & exhaution& her body was lashed to raft.",Unknown,Sharks tried to overturn raft and took Mrs. Dumas' body; scavenging by shark/s,Y,Washington Post,9/27/1963; SAF Case #1221,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.26-Dumas.pdf +2480,1963.09.22,22-Sep-63,1963,Unprovoked,Solomon islands,Ysabel Island,Susukana Plantation,Spearing fish,Dovi,M,"FATAL, right thigh, calf & foot bitten ",Y,M.L. Aylett,Fisheries Officer; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.22-Dovi.pdf +2479,1963.09.13,13-Sep-63,1963,Provoked,Australia,New South Wales,Wanda Beach,Surfing,Peter Barron,M,"A ""dead"" shark grabbed by the tail bit his right torso PROVOKED INCIDENT",N,P. Barron; Goulburn Evening Post; J. Green,p.35,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.13-Barron.pdf +2478,1963.09.10,10-Sep-63,1963,Provoked,Usa,Florida,"Snapper Point Jetty, Miami, Dade County","Spearfishing, pulled shark’s tail",Robert Olsen,M,Minor injury to left forearm PROVOKED INCIDENT,N,H.D. Baldridge,p.166; SAF Case #1284,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.10-Olsen.pdf +2477,1963.08.00,Aug-63,1963,Unprovoked,Dominican republic,Santo Domingo,Rio Haina Port,"Swimming, when caught in heavy seas",2 males,M,"FATAL. Eyewitness said, ""One was thrown in the air like a basketball, and while in the air another shark took a bite out of his belly."" ",Y,A. Gigante,Jr; H.D. Baldridge; M. McDiarmid,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.08.00-2males.pdf +2476,1963.07.28,28-Jul-63,1963,Unprovoked,Federated states of micronesia,Eastern Caroline Islands,"Koop Reef, Truk (Chuuk)",Spearfishing,Akira,M,Upper left arm bitten,N,K. Aniol,Medical Officer,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.28-Akira.pdf +2475,1963.07.15,15-Jul-63,1963,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Bathing,Robert Driscoll,M,"Left forearm bitten, surgically amputated?",N,Orlando Sentinel,7/16/1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.15-Driscoll.pdf +2474,1963.07.11,11-Jul-63,1963,Provoked,Usa,Mississippi,Horn Island,"Fishing, on charter boat Silver Dollar","James Ronald Mason, deckhand",M,"Cuts on right hand, PROVOKED INCIDENT",N,Gulfport Herald,7/12/1963; SAF Case #1218,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.11-Mason.pdf +2473,1963.07.10.R,10-Jul-1963,1963,Sea Disaster,Unknown,Unknown,Unknown,63' fishing boat Sno' Bay foundered,40 people were onboard,Unknown,No survivors & a body sighted could not be recovered because of sharks,Y,The Blade (Toledo,OH),http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.10.R-Sno'Boy.pdf +2472,1963.07.00,Jul-63,1963,Unprovoked,Panama,San Blas coast,"4 miles from Tuwala, near Mulatuppu","Seining for bait, standing in chest-deep water",an Indian male,M,"FATAL, foot nearly severed ",Y,H. Loftin,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.00-Tuwala.pdf +2471,1963.06.01.b,01-Jun-63,1963,Unprovoked,Greece,Thessaly,near Trikerion Island,Swimming,Helga Pogl,F,FATAL,Y,A. De Maddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.b-Pogl.pdf +2470,1963.06.01.a,01-Jun-63,1963,Provoked,Papua new guinea,Central Province,Near Fisherman's Island,Fishing,Au Kila (male),M,"Hooked shark bit his nose, arm and leg PROVOKED INCIDENT",N,Pacific Post (Port Moresby),6/4/1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.a-Au_Kila.pdf +2469,1963.05.18,18-May-63,1963,Invalid,Usa,California,San Mateo County,Swimming,Gregory Moffatt,M,3 lacerations below right knee,N,San Mateo Times,5/22/1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.18-Moffatt.pdf +2468,1963.05.14,14-May-63,1963,Sea Disaster,Philippines,Luzon Island,100 miles southeast of Manila,"Boat, with 42 passengers onboard, capsized in rough seas",Most were women & children,Unknown,"Of the 42 people on board, 5 died of exposure, others drowned or were taken by sharks, and survivors were rescued after spending 3 days in the water.",Y,Advertiser (Adelaide),5/21/1963 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.14-PhilippineBoat.pdf +2467,1963.04.22,22-Apr-63,1963,Provoked,Australia,New South Wales,Clarence Head,Fishing,Jack Sonter,M,Foot lacerated by netted shark PROVOKED INCIDENT,N,H.D. Baldridge (1994) SAF Case #1472,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.22-NV-Sonter.pdf +2466,1963.04.20,20-Apr-63,1963,Unprovoked,Usa,US Virgin Islands,"St. Thomas, Magens Bay",Swimming,Naval Lt. (jg) John Gibson,M,"FATAL, hand severed, shoulder, hip, foot, thigh bitten & femoral artery severed ",Y,G.W. Kirby,Jr.; NY Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.20-Gibson.pdf +2465,1963.04.17,17-Apr-63,1963,Unprovoked,South africa,KwaZulu-Natal,Amanzimtoti,Swimming,Errol Fourie,M,Buttock bitten,N,D. Davies,p.118-119; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.17-Fourie.pdf +2464,1963.04.13,13-Apr-63,1963,Unprovoked,Australia,Western Australia,Yallingup,"Surfing on ""chest board"" (boogie board?)",Brian Audas,M,Arm bitten,N,G.P. Whitley; NSW newspapers of 4/14&15/1963; H.D. Baldridge,p. 142,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.13-Audas.pdf +2463,1963.04.12,12-Apr-63,1963,Unprovoked,Usa,Hawaii,"Awili, South Kona, Hawai'i",Surfing ,Aiona Aka,M,Left foot & leg bitten,N,L. Taylor (1993),pp.102-103,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.12-Aka.pdf +2462,1963.04.08,08-Apr-63,1963,Invalid,Usa,Hawaii,"Hapuna Beach, Hawai'i",Washed into sea while picking opihi,Roy C. Kametani,M,"May have drowned prior to shark involvement, partial remains recovered",Y,J. Borg,p.73; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.08-Kametani.pdf +2461,1963.03.30,30-Mar-63,1963,Sea Disaster,Solomon islands,Bougainville (North Solomons),Unknown,The 500-ton coastal trader Polurrian foundered ,"Daniel Viva, missionary",M,FATAL,Y,Sydney Morning Herald,4/6/1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.03.30-Viva.pdf +2460,1963.02.27,27-Feb-63,1963,Unprovoked,Papua new guinea,New Ireland Province,Namatanai,Swimming,Joseph To Toba,M,Right shoulder bitten,N,Times-Courier (Lae),3/6/1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.27-Totoba.pdf +2459,1963.02.24,24-Feb-63,1963,Unprovoked,Australia,New South Wales,Wombarra Beach near Austinmeer,Spearfishing,Charles Dunn,M,Left leg lacerated,N,R. Funnell in Australian Skindiver Magazine,June/July 1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.24-Dunn.pdf +2458,1963.02.08,08-Feb-63,1963,Unprovoked,Fiji,Lomaiviti Island Group,"Taibaisa Passage, Gau Island",Spearfishing,Jone Waiteatei,M,Left arm bitten,N,S. Brown,P. Helfrich,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.08-Waiteatei.pdf +2457,1963.02.06,06-Feb-63,1963,Unprovoked,Mauritius,Rodrigues,Unknown,Unknown,Irené Rose,M,Laceration to right forearm,N,L'Express,5/2/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.06-Rose.pdf +2456,1963.02.04,04-Feb-63,1963,Invalid,Usa,Florida,Off Key West,"S.S. Marine Sulphur Queen, laden with molten sulphur was bound from Beaumont, Texas for Norfolk, VA, when she disappeared with 39 on board",2 males,M,Shark involvement unconfirmed. Two shark-bitten lifejackets were recovered leading to speculation that sharks took at least 2 of the 39 missing crewmen,Y,NY Journal of Commerce,3/29/1963;Wikipedia ,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.04-MarineSulphurQueen.pdf +2455,1963.01.30,30-Jan-63,1963,Unprovoked,Unknown,Unknown,Unknown,Freediving,Savenaca Kuruvakarua,M,Hand & arm severely lacerated,N,H.D. Baldridge,SAF Case #1477,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.30-NV-Kuruvakaruai.pdf +2454,1963.01.28,28-Jan-63,1963,Unprovoked,Australia,New South Wales,"Sugarloaf Bay, Middle Harbour, Sydney",Wading,Marcia Hathaway,F,"FATAL, right femoral artery severed, thigh, calf, buttock & left hand bitten ",Y,Dr. P.R. Coyne; A. Sharpe,pp.7-12; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.28-Hathaway.pdf +2453,1963.01.26,26-Jan-63,1963,Invalid,Australia,New South Wales,Evans Head,Swimming,Shaun Wilmot,M,"9' shark in area when he disappeared, body not recovered",Y,Sydney Morning Herald,1/29/1963 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.26-Wilmot.pdf +2452,1963.01.22,22-Jan-63,1963,Boat,South africa,Western Cape Province,False Bay,Fishing ,boat,Unknown,"No injury to occupant, shark leapt inside boat",N,Scarborough Evening News (Yorks,England),http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.22.R-FalseBayBoat.pdf +2451,1963.01.14,14-Jan-63,1963,Provoked,New zealand,North Island,"Petone Beach, Wellington",Fishing,Ian Alexander,Unknown,Minor lacerations to hand and arm after he seized the shark's tail PROVOKED INCIDENT,N,R.D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.14-Alexander.pdf +2450,1963.01.12,12-Jan-63,1963,Provoked,South africa,Eastern Cape Province,Humewood,Fishing,Unknown,M,Foot bitten by shark hooked & taken on boat PROVOKED INCIDENT,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.12-Mankowitz.pdf +2449,1963.01.11,11-Jan-63,1963,Unprovoked,South africa,KwaZulu-Natal,"Peace Cottage, Umdhloti","Free diving, hunting crayfish",Barry E. Blackmore,M,Lacerations & punctures on left forearm,N,D. Davies,D'Aubrey; B. Blackmore; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.11-Blackmore.pdf +2448,1963.01.06,06-Jan-63,1963,Unprovoked,South africa,KwaZulu-Natal,"Selection Reef, Umdhloti",Spearfishing,Clive Passmore,M,Lacerations to right arm,N,D. Davies,p.117-118; C. Passmore,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.06-Passmore.pdf +2447,1963.01.04,04-Jan-63,1963,Provoked,Australia,South Australia,Off Franklin Island between Streaky Bay & Ceduna,Shark fishing,"boat, occupants: Alf Dean, Jack Hood & Otto Bells",Unknown,No injury to occupants; hooked shark slammed into side of boat PROVOKED INCIDENT,N,SAF Case #1184,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.04-AlfDean.pdf +2446,1963.01.00,Jan-63,1963,Boat,Mozambique,Unknown,"Limpopo River, 547 km from the sea",Unknown,"Canoe, occupant: Jopie Averes",Unknown,"No injury to occupant. Shark tore chunk from canoe, then bumped 2 other canoes",N,D. Davies,p.185; GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.00-JopieAveres.pdf +2445,1963.00.00.b,Early 1963,1963,Unprovoked,Fiji,Vita Levu,Korolevu (South coast between Nadi & Suva),Unknown,Unknown,Unknown,No details,UNKNOWN,S. Brown,P. Helfrich,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.b-NV-Fiji.pdf +2444,1963.00.00.a,1963,1963,Unprovoked,Unknown,Unknown,Unknown,Fishing for turtles,male,M,Fatal,Y,V.C. Harvey-Grain,,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.a-Seychelles.pdf +2443,1962.12.30,30-Dec-62,1962,Provoked,South africa,KwaZulu-Natal,Shark tank at Oceanographic Research Institute,Scuba diving,"A. B. ""Lofty"" Roets",M,Captive shark bit air hose & minor lacerations on diver's cheek PROVOKED INCIDENT,N,D. Davies,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.30-Roets.pdf +2442,1962.12.09,09-Dec-62,1962,Unprovoked,Australia,South Australia,Carrickalinga Head,Spearfishing,Geoffrey Martin Corner,M,"FATAL, right leg bitten thigh to calf ",Y,H. Edwards,p.63; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.09-Corner.pdf +2441,1962.12.00,Dec-62,1962,Boat,South africa,Western Cape Province,Swartklip,Fishing,"boat Swift, occupants: Dolly Samuels & 8 other men",Unknown,"No injury to occupants, shark jumped onboard, knocking 2 anglers onto the deck",N,T. Wallet; GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.00-Swift.pdf +2440,1962.11.29,29-Nov-62,1962,Unprovoked,Australia,New South Wales,Sydney,"Spearfishing, Scuba diving",B. May,M,"No injury, shark bit spear & dragged diver 90'",N,H.D. Baldridge,p.183; SAF #1130,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.29-May.pdf +2439,1962.11.25,25-Nov-62,1962,Invalid,Australia,Queensland,Townsville,Unknown,Hugh Meikel,M,"Skeletonized, except for head & feet. Possible drowning / scavenging",Y,H.D. Baldridge,p.162; SAF Case #1124,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.25-Meikel.pdf +2438,1962.11.11,11-Nov-62,1962,Unprovoked,Usa,California,Farallon Islands,Spearfishing / Scuba diving (at surface),Leroy French,M,"Arm, hand, buttock, leg and thigh bitten",N,D. Miller & R. Collier; R. Collier,pp.35-36; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.11-LeroyFrench_Collier.pdf +2437,1962.11.10,10-Nov-62,1962,Boat,Australia,New South Wales,Off Kisma,Fishing,"wooden boat, occupants: Jack Bullman & Keith Campbell",Unknown,No injury to occupants. Shark rammed boat as they were pulling in a flathead,N,Sydney Sunday Mirror,11/11/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.10-Bullman-Campbell-boat.pdf +2436,1962.11.00,Nov-62,1962,Sea Disaster,Mid atlantic ocean,Unknown,Off Bermuda,Abandoning burning ship Captain George in raging seas,"Martin Fisher, radio operator",M,"No injury, shark bit his boot",N,Press clippings,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.00-Fisher.pdf +2435,1962.10.28,28-Oct-62,1962,Unprovoked,South africa,KwaZulu-Natal,Paradise Reef,Spearfishing,Noel Holliday,M,Arm lacerated (minor injury),N,D. Davies; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.28-Holliday.pdf +2434,1962.10.25,25-Oct-62,1962,Unprovoked,Mexico,Veracruz,"Villa del Mar Beach, Veracruz",Wading,"Nicolas Jimenez Nunez, a Catholic priest",M,"FATAL, both legs bitten ",Y,C.G. Robles,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.25-Nunez.pdf +2433,1962.10.15,15-Oct-62,1962,Unprovoked,Admiralty islands,Manus Island,Sisi (west coast of island),Unknown,Pasingan,M,Facial lacerations,N,SAF Case #1116,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.15-Pasigan.pdf +2432,1962.10.14,14-Oct-62,1962,Boat,Australia,South Australia,Port Phillip Bay,Adrift after wave swamped engine,"speedboat, occupant: Michael Wilson",M,"No injury to occupant, shark ""nibbled"" at boat",N,Strand (London),10/15/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.14-Wilson-boat.pdf +2431,1962.10.06,06-Oct-62,1962,Invalid,Usa,California,2 miles off Santa Catalina Island,"Overcome by CO fumes, fell overboard from 36' fishing cruiser & prop slashed arm",Marian Leaf,F,Drowned due to CO2 poisoning - Post Mortem Scavaging,N,Long Beach Independent,10/9/1962; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.06-Leaf.pdf +2430,1962.10.00,Oct-62,1962,Unprovoked,Panama,Pinas Bay,Unknown,Sitting in shallows,"infant, male ",M,"FATAL, body not recovered",Y,J. Hardie; D. de Sylva,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.00-babyboy.pdf +2429,1962.09.30,30-Sep-62,1962,Unprovoked,British west indies,Grand Turk Island,Long Cay,Spearfishing,Wesley Vickrey,M,Left thigh & hand & speargun bitten,N,H.D. Baldridge,p.197,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.30-Vickrey.pdf +2428,1962.09.22,22-Sep-62,1962,Unprovoked,Mexico,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,Nestor Valenzuela,M,"Left arm severely bitten, surgically amputated",N,C.G. Robles,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.22-Valenzuela.pdf +2427,1962.09.13,13-Sep-62,1962,Unprovoked,South atlantic ocean,Off coast of West Africa,Off the passenger liner Stirling Castle,"When a deckhand jumped overboard, McIver dived after him with a rescue line.",John MacIver,M,"FATAL, he died within minutes of being hauled back onboard the Stirling Castle",Y,Daily Express (London),et. al,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.13-MacIver.pdf +2426,1962.09.02,02-Sep-62,1962,Unprovoked,Italy,Tyrrhenian Sea,"Circeo, Secca del Quadro",Spearfishing with Scuba gear,Maurizio Sarra,M,"FATAL, multiple injuries to both legs ",Y,A. De Maddalena & C. Moore,GSAF; Carletti (1973),http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.02-Sarra.pdf +2425,1962.08.31.R,31-Aug-1962,1962,Provoked,Israel,Sharon,2 km north of Apollonia,Fishing,fisherman,M,"Details unknown, possibly a PROVOKED INCIDENT",UNKNOWN,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.31.R-Israel.pdf +2424,"1962,08.30.b",30-Aug-62,1962,Boat,Turkey,Antalya Province,Ucagiz,Unknown,Occupant: Hasan Olta,M,No injury ,N,C.Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.b-pdf +2423,1962.08.30.a,30-Aug-62,1962,Provoked,Papua new guinea,Northern District,Kufulu Point,Fishing,Enigo Setiro,M,Posterior lower left leg lacerated by netted shark PROVOKED INCIDENT,N,SAF Case #1192,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.a-Setiro.pdf +2422,1962.08.29,29-Aug-62,1962,Provoked,Usa,California,"Solana Beach, San Diego County",Diving for abalone,Knox Harris,M,"Struck shark with abalone bar to scare it away from abalone, but shark bit his shoulder PROVOKED INCIDENT",N,SAF Case #1059; D. Miller & R. Collier; R. Collier,p. xxv; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.29-Harris.pdf +2421,1962.08.26,26-Aug-62,1962,Boat,Usa,Florida,6 miles north of Palm Beach,Unknown,"21' boat sank. Occupants: Max Butcher, George Hardy & Peter Thorne",Unknown,"No injury to occupants, sharks tore Max Butcher's life jacket & pants",N,New York Post,8/27/1962; SAF Case #1061,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.26 - Thorne.pdf +2420,1962.08.23,23-Aug-62,1962,Boat,South africa,Western Cape Province,Robbesteen,Fishing,"4 m dinghy, occupants: Cecil Holmes, Chris Augustyn & Allen Varley ",Unknown,"No injury to occupants, shark hit boat, lifting it from the water, bit & dented propeller",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.23-HolmesBoat.pdf +2419,1962.08.19,19-Aug-62,1962,Unprovoked,Usa,Texas,"Off Andy Bowie Park, Padre Island, near Port Isabel",Surf fishing in waist-deep water,Hans Fix,M,"FATAL, lower right leg bitten",Y,J. A. Hockaday,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.19-Fix.pdf +2418,1962.08.12,12-Aug-62,1962,Unprovoked,Usa,New Jersey,"Manasquan, Ocean County",Standing,Michael Roman,M,Left thigh & hand bitten,N, L. Schultz & M. Malin,p.514,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.12 - Roman.pdf +2417,1962.08.01,01-Aug-62,1962,Unprovoked,Papua new guinea,"New Ireland Province, Bismarck Archipelago","Pekinberui Village, Tabar Island",Spearfishing,"Tarara, a male",M,"FATAL, right thigh severely bitten, right ankle lacerated ",Y,P.M. Moodie,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.01-Tarara.pdf +2416,1962.08.00.b,Late Aug-1962,1962,Unprovoked,Italy,Tyrrhenian Sea,"Circeo, Secca del Faro",Diving,Dante Matacchione,M,No injury,N,A. De Maddalena; Carletti (1973),Giudici & Fino (1989),http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.b-Mattacchione.pdf +2415,1962.08.00.a,Aug-62,1962,Unprovoked,Senegal,Cap Vert Peninsula,Unknown,Beach seine netting,M.G.,M,Ankle bitten,N,S. Trape,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.a-Senegal.pdf +2414,1962.07.28,28-Jul-62,1962,Unprovoked,Usa,South Carolina,"Off Hilton Head, Beaufort County ",Standing,Robert Stein,M,Lacerations on left foot & hand,N,R. Stein,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.28-Stein.pdf +2413,1962.07.20,20-Jul-62,1962,Provoked,Madagascar,Unknown,"Onboard tuna boat, M.V. Toscui Maru",Finning the shark,Takemoto Masnori,M,Right calf lacerated by boated shark PROVOKED INCIDENT,N,J. D'Aubrey,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.20-Masnori.pdf +2412,1962.07.19,19-Jul-62,1962,Provoked,Usa,California,30 miles south of San Clemente Island,Fishing for albacore,Esteban L. Cervantes,M,"2 lacerations on left hand by hooked shark, PROVOKED INCIDENT",N,R. Zarkas; San Diego Union,7/30/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.19-Cervantes.pdf +2411,1962.07.10,10-Jul-62,1962,Unprovoked,Usa,Georgia,"St. Simons Island or Jeykll Island, Glynn County",Playing in surf with his child (9),Leonard Harrison Hancock,M,"Cuts on fingers, hand & wrist",N,L.H. Hancock,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.10-Hancock.pdf +2410,1962.07.07,07-Jul-62,1962,Unprovoked,Usa,Georgia,"Jekyll Island, Glynn County",Dived from inner-tube,Gary Duncan,M,Laceration on hand,N,J. M. Hicks,M.D.; Washington Star,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.07-Duncan.pdf +2409,1962.07.03.R,03-Jul-1962,1962,Invalid,Greece,Cyclades,Near Mykonos Island,Unknown,Boat with tourists onboard,Unknown,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.03.R-Greece.pdf +2408,1962.06.25,25-Jun-62,1962,Invalid,Usa,Florida,"Fernandina Beach, Nassau County",U.S. Airforce crewman reported missing after bailing out of jet,male,M,FATAL,Y,SAF Case #1106,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.25-NV-AirForce-bailout.pdf +2407,1962.06.21,21-Jun-62,1962,Boat,South africa,Western Cape Province,"Millers Point, False Bay","On a ""shark hunt""","2.4 m rowboat, occupants: Edgar Brown, Jerry Welz & Cornelius Stakenburg",Unknown,"No injury to occupants, shark charged boat, then 2 more sharks hit boat, oar grabbed, boat finally drifted ashore at 02h00",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.21-MillersPointBoat.pdf +2406,1962.06.17,17-Jun-62,1962,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Rolled off raft,Barry Bryan Reed,M,"8"" laceration on left calf",N,D. Reed; Hobart Gazette,6/28/ 1962 s,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.17-BarryReed.pdf +2405,1962.06.11.b,11-Jun-62,1962,Unprovoked,Usa,California,San Francisco Bay,Escaping from Alacatraz,Clarence Anglin,M,2 toes bitten off ,N,San Francisco Chronicle,5/3/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.c-Anglin.pdf +2404,1962.06.11.b,11-Jun-62,1962,Unprovoked,Usa,California,San Francisco Bay,Escaping from Alacatraz,John William Anglin ,M,"FATAL, but shark involvement uncomfirmed. Death may have been due to drowning.",Y,San Francisco Chronicle,5/3/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.b-Anglin.pdf +2403,1962.06.11.a,11-Jun-62,1962,Unprovoked,Usa,California,San Francisco Bay,Escaping from Alacatraz,Frank Lee Morris,M,"FATAL, but shark involvement uncomfirmed. Death may have been due to drowning.",Y,San Francisco Chronicle,5/3/1986,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.a-Morris.pdf +2402,1962.06.10.b,10-Jun-62,1962,Unprovoked,Papua new guinea,Madang Province,"Mouth of Suareng River, a mile from Taludig",Washing,"boy from Aitape, West Sepik",M,"FATAL, chest & leg bitten ",Y,L. Malcolmson,Fisheries Officer,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.b-boy-Aitape.pdf +2401,1962.06.10.a,10-Jun-62,1962,Unprovoked,Usa,South Carolina,"Hilton Head, Beaufort County",Standing,Frank Glenn,M,Thigh bitten,N,F. Glenn; Dr. H.C. Yeatman; D. E. Gatch,M.D. ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.a-Glenn.pdf +2400,1962.06.07,07-Jun-62,1962,Boat,Australia,Western Australia,Emu Point,Fishing,"10' rowboat, occupant: John Stephensen",Unknown,"No injury to occupant, shark grabbed anchor rope, pulling bow of boat downward & then bit bow of boat",N,West Australian (Perth),6/8/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.07-StephensenBoat.pdf +2399,1962.06.04,04-Jun-62,1962,Provoked,Usa,California,"12' tank at Steinhart Aquarium, San Francisco","Scuba diving, attempting to catch a captive shark","Norval J. ""Tom"" Green",M,Right forearm bitten PROVOKED INCIDENT,N,San Francisco Chronicle,6/5/1962; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.04-Green.pdf +2398,1962.06.03,03-Jun-62,1962,Unprovoked,Usa,Florida,"Riviera Beach, near Palm Beach Inlet, Palm Beach County",Free diving,Paul Dammann,M,Left foot bitten,N,M. Vorenberg; Palm Beach Post,6/4/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.03-Dammann.pdf +2397,1962.05.29,29-May-62,1962,Unprovoked,Usa,Florida,"Jupiter, Palm Beach County",Unknown,boy,M,Bitten on leg or ankle,N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.29-Jupiter-boy.pdf +2396,1962.05.12,12-May-62,1962,Sea Disaster,Usa,California,"8 miles off Newport Beach, Orange County",25-foot cabin cruiser Happy Jack sank in heavy seas,Unknown,Unknown,Bodies of 5 of the 6 men on board were bitten by by sharks. Sharks may have contributed to the death of some of them.,Y,Enquirer & News (Battle Creek,MI),http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.12-HappyJack.pdf +2395,1962.05.00.R,May-62,1962,Boat,Fiji,Viti Levu,Near Suva,Fishing,17' fishing boat; occupants 2 men,Unknown,"No injury, sharks rammed boat and bit outboard motor",N,Yorkshire Evening News,5/5/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.00-Suva-Fiji.pdf +2394,1962.04.20,20-Apr-62,1962,Provoked,Australia,Queensland,Nobbys Beach,Fishing,"surf boat, occupants: Ray Sturdy and 4 other fishermen",Unknown,"No injury to occupants, hooked shark cracked hull PROVOKED INCIDENT",N,Sydney Daily Telegraph,4/21/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.20-Sturdy.pdf +2393,1962.04.09,09-Apr-62,1962,Unprovoked,Mozambique,Gaza,Xai Xai,Swimming,Brian Lawrence Martin,M,"Leg bitten, surgically amputated at knee",N,M. Levine,GSAF;P.H. Jacques,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.09-Martin.pdf +2392,1962.04.07,07-Apr-62,1962,Unprovoked,South africa,KwaZulu-Natal,Umhlali,Wading,John Blane,M,Left ankle & foot bitten,N,D. Davies,p.117; D. Blane,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.07-Blane.pdf +2391,1962.04.05,05-Apr-62,1962,Provoked,South africa,Eastern Cape Province,East London,Fishing,"4.8 m skiboat, occupants: C. Cockroft & 3 men",Unknown,Hooked shark bit boat PROVOKED INCIDENT,N,T. Wallett,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.05-Cockroft.pdf +2390,1962.03.25.b,25-Mar-62,1962,Provoked,New zealand,"Off the Coromandel Peninsula, North Island",Alderman Islands,Unknown,W.T. Luxton,M,Left foot bitten by hooked shark PROVOKED INCIDENT,N,Christchurch Star,3/26/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.b-Luxton.pdf +2389,1962.03.25.a,25-Mar-62,1962,Boat,Australia,New South Wales,Norah Head,Fishing & spearfishing,boat of Dennis Kemp & 4 other occupants,Unknown,No injury to occupants. Shark holed boat & they swam 200 yards to shore,N,Sunday Mirror (Sydney),,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.a-KempBoat.pdf +2388,1962.03.24,24-Mar-62,1962,Unprovoked,Papua new guinea,Madang,Matukar village ,Swimming,"Kes, a native boy",M,"FATAL, calf bitten, other leg severed below knee",Y,South Pacific Post (Port Moresby) 3/4/1962; L. Malcolmson,Fisheries Officer ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.24-Kes.pdf +2387,1962.02.23,23-Feb-62,1962,Unprovoked,Papua new guinea,Central Province,Fisherman’s Island near Port Moresby,Swimming along a row of nets,Hitola Hekure,M,Torso lacerated,N,South Pacific Post,2/27/1962; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.23-Hekure.pdf +2386,1962.02.18,18-Feb-62,1962,Provoked,New zealand,Southland,Long Beach,Swimming,Fred Mason,M,"Mistook shark's tail for kelp & grabbed it, legs abraded by shark's fins PROVOKED INCIDENT",N,SAF Case #1118; Southland Daily News 2/20/1962,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.18-Mason.pdf +2385,1962.02.15,15-Feb-62,1962,Unprovoked,Australia,Queensland,Between Smith’s Rock & Moreton Island,Fishing for snappers & cleaning mullet. Put mullet over side of boat to wash it,John Hansen,M,Middle finger of right hand lacerated,N,Brisbane Courier Mail,2/16/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.15-Hansen.pdf +2384,1962.02.07,07-Feb-62,1962,Unprovoked,South africa,KwaZulu-Natal,Winkelspruit,Swimming,Clifford Hoogvorst,M,"FATAL, calf bitten twice",Y,M. Levine,J. D'Aubrey,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.07-Hoogvorst.pdf +2383,1962.02.05,05-Feb-62,1962,Unprovoked,South africa,KwaZulu-Natal,Winkelspruit,Treading water,Reece Nielsen,M,"FATAL, tissue removed from thigh, femoral artery severed ",Y,M. Nielsen,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.05-Nielsen.pdf +2382,1962.02.04,04-Feb-62,1962,Unprovoked,Australia,Queensland,Greenmount Beach,Swimming,Lance Maloney,M,Shin bitten,N,Courier Mail (Brisbane),2/5/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.04-Maloney.pdf +2381,1962.02.02,02-Feb-62,1962,Boat,New zealand,North Island,South of New Plymouth,Fishing,"17' fishing launch, occupants: A. Burkitt & C. Brooke",Unknown,Unknown,N,SAF Case #1125,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.02-NV-Burkitt-Brooke-launch.pdf +2380,1962.02.00,Feb-62,1962,Unprovoked,Solomon islands,Guadalcanal Province,"North Coast, Guadalcanal Island",Swimming outside fishing net,"Mr. Loloi, a constable",M,"FATAL, shoulder & thigh bitten ",Y,Auckland Herald,2/26/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.00-Loloi.pdf +2379,1962.01.27,27-Jan-62,1962,Unprovoked,New zealand,South Island,Oreti Beach,Splashing ,Norman McEwan,M,"Left hand injured: gash on back of hand, toothmarks on palm",N,R. Weeks,GSAF; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.27-McEwan.pdf +2378,1962.01.26,26-Jan-62,1962,Unprovoked,Mozambique,Gaza,Praia Sepulveda,Unknown,Domingos Zefanias Cumbe,M,Unknown,N,D. Davies,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.26-Cumbe.pdf +2377,1962.01.21,21-Jan-62,1962,Provoked,Australia,New South Wales,Cronulla,Spearfishing,Robert Smith,M,Suffered from shock & immersion after being dragged underwater by speared shark PROVOKED INCIDENT,N,Daily Mirror (Sydney) & Sydney Morning Herald,1/22/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.21-Smith.pdf +2376,1962.01.18,18-Jan-62,1962,Invalid,South africa,KwaZulu-Natal,Margate,"Fishing, slipped on rocks & fell into sea",Jacobus Vermaak,M,Possible drowning / post mortem scavenging,Y,D. Davies,p.114; A. Cowan,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.18-Vermaak.pdf +2375,1962.01.16,16-Jan-62,1962,Provoked,New zealand,South Island,"Pigeon Bay, Canterbury",Fishing,Mr. Reynish & Mr. Meikle,Unknown,"No injury to occupants, hooked shark attacked boat PROVOKED INCIDENT",N,The Sun (Australia),1/17/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.16-RedShark.pdf +2374,1962.01.15,15-Jan-62,1962,Unprovoked,New zealand,North Island,"Slipper Island, Coromandel Peninsula",Spearfishing,John Till,M,Shark struck him on shoulder injuring skin under suit,N,V.M. Coppleson (1962),p.254; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.15-Till.pdf +2373,1962.01.14.c,14-Jan-62,1962,Unprovoked,Usa,California,Farallon Islands,Spearfishing / Scuba diving (at surface),"Floyd Pair, Jr.",M,Buttock bitten & major leg wound,N,D. Miller & R. Collier; R. Collier,pp.34-35; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.c-Pair_Collier.pdf +2372,1962.01.14.b,14-Jan-62,1962,Provoked,Australia,New South Wales,"Long Reef, North Manly",Spearfishing,boat of Wally Gibbons,Unknown,Speared shark bit gunwale of boat as it was being hauled onboard PROVOKED INCIDENT,N,Sydney Daily Telegraph,1/15/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.b-Gibbons-boat.pdf +2371,1962.01.14.a,14-Jan-62,1962,Unprovoked,Australia,New South Wales,"Lennox Head, Ballina",Surfing,Gary Raymond Hiscocks,M,Dorsum of foot lacerated & toe severed,N,The Star (Johannesburg),Daily Telegraph (Sydney),http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.a-Hiscocks.pdf +2370,1962.01.11.c,11-Jan-62,1962,Boat,Australia,South Australia,Marino,Fishing,12' boat of Alf Laundy,Unknown,"No injury to occupant, shark bit propeller & lifted boat several feet",N,Adelaide News,1/12/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.c-Laundy.pdf +2369,1962.01.11.b,11-Jan-62,1962,Unprovoked,Papua new guinea,"10ºS, 142ºE",Jukuataia Village,Spearfishing,Yagirua Agiramon,M,Left leg & buttocks bitten,N,SAF Case #1193,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.b-Agiramon.pdf +2368,1962.01.11.a,11-Jan-62,1962,Unprovoked,New zealand,South Island,"Fairdown Beach, 5 miles north of Westport",Surf fishing,Mrs. Beryl Grant,F,Right foot lacerated ,N,R. D. Weeks,GSAF; Dr. C. Foote; The Evening Post,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.a-BerylGrant.pdf +2367,1962.01.10,10-Jan-62,1962,Boat,Australia,South Australia,Ceduna,Fishing for sharks,25-foot cutter,Unknown,No injury to fisherman Alf Dean & other occupants; shark bit stern of boat,N,Adelaide News,1/10/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.10.R-AlfDean-cutter.pdf +2366,1962.01.08,08-Jan-62,1962,Invalid,Australia,New South Wales,Lake Illawarra,Swimming,William McLeod,M,"Remains recovered from shark, but shark involvement prior to death unconfirmed",Y,Canberra Times,1/11/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.08-McLeod.pdf +2365,1962.01.07.b,07-Jan-62,1962,Provoked,Australia,Queensland,Dicky Beach,Rowing,Lifesavers' surf patrol boat,Unknown,"No injury to occupants, shark bit 3"" piece from oar after they accidentally struck the shark PROVOKED INCIDENT",N,Sydney Daily Telegraph,1/8/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.b-DickyBeach.pdf +2364,1962.01.07.a,07-Jan-62,1962,Unprovoked,Australia,New South Wales,Sydney,Surfing,Tony Frost,Unknown,"No injury, shark bumped board flipping him into the water",N,08/01/1962,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.a-Frost.pdf +2363,1962.01.06,06-Jan-62,1962,Boat,South africa,Western Cape Province,6 km off Groot Brak River,Fishing,"4.8 m boat Peggy, occupants: John Oktober, L.A. van Zyl and 4 others",Unknown,Shark rammed boat 5 times & holed it,N,T. Wallett,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.06-FishingboatPeggy.pdf +2362,1962.01.02,02-Jan-62,1962,Provoked,Australia,New South Wales,"Seaspray, near Sale",Fishing,surf patrol boat,Unknown,"No injury to occupants, hooked shark dragged boat 2 miles PROVOKED INCIDENT",N,Sydney Daily Telegraph,1/3/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.02-NV-Surf-Patrol-boat.pdf +2361,1962.01.01,01-Jan-62,1962,Unprovoked,Marshall islands,Kwajalein Atoll,Roi-namur Island,Fishing with hand net in 2' of water,Stanley Caberto,M,"2.5"" laceration on right hand",N,L. R. Fletcher,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.01-Caberto.pdf +2360,1962.00.00.c,1962,1962,Unprovoked,Spain,Catalonia,Aigua Blava,Dangling feet in the water,female,F,Feet severed,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.c-AiguaBlava.pdf +2359,1962.00.00.b,Jan-Jun-1962,1962,Unprovoked,Indonesia,East Flores,Waewerang,Unknown,9 fishermen & pregnant woman,Unknown,FATAL,Y,Djakarta Daily Mail,7/20/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.b-Indonesia.pdf +2358,1962.00.00.a,Ca. 1962,1962,Unprovoked,Australia,South Australia,Dangerous Reef,Diving,Dan Argyll,M,Right leg bitten,N,F. Dennis,p.76,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.a-Argyll.pdf +2357,1961.12.28.c,28-Dec-61,1961,Unprovoked,Australia,Queensland,"Lambert's Beach, Mackay",Standing,Margaret Hobbs,F,"FATAL, right arm severed at shoulder, left hand severed, right thigh bitten & surgically amputated. Died day after the attack",Y,V.M. Coppleson (1962),p.246; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.c-Hobbs.pdf +2356,1961.12.28.b,28-Dec-61,1961,Unprovoked,Australia,Queensland,"Lambert’s Beach, Mackay",Standing,Martyn Steffens,M,"Hand bitten, surgically amputated",N,V.M. Coppleson (1962),p.246; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.b-Steffens.pdf +2355,1961.12.28.a,28-Dec-61,1961,Unprovoked,South africa,KwaZulu-Natal,Umhlanga Rocks,Treading water,Glynn Wessels,M,Lower right leg & ankle bitten,N,D. Davies,pp.113-114; D. Davies & J. D'Aubrey; T. McDonnell,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.a-Wessels.pdf +2354,1961.12.27,27-Dec-61,1961,Provoked,Australia,Western Australia,"North of main swimming area in Waterman's Bay Beach, Perth",Spearfishing,John Parker ,M,"No injury, Parker shot the shark when it came close to his nephew, Bill Bradbury (14), then the shark bent his speargun PROVOKED INCIDENT",N,The West Australia,12/28/1961 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.27-Parker.pdf +2353,1961.12.19,19-Dec-61,1961,Boat,Australia,South Australia,Cowell,"Fishing, hauling in a 5-lb snapper",20' boat of Frank Stocker,Unknown,No injury to occupant; shark leapt into boat,N,Adelaide Advertiser,12/20/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.19-NV-boat-Stocker.pdf +2352,1961.12.18.b,18-Dec-61,1961,Unprovoked,Mozambique,Gaza,Praia Sepulveda,Bathing,Gaspar Rodrigues Correia,M,His left leg was severely bitten,N,Dr. C. d. Nacimento,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.b-Correia.pdf +2351,1961.12.18.a,18-Dec-61,1961,Unprovoked,Australia,Queensland,Noosa Heads,"Surfing, pushing board ashore",John Grayson Andrews,M,"FATAL, right wrist and hand bitten, left leg severed above knee ",Y,Natal Daily News,12/19/1961; Sydney Morning Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.a-Andrews.pdf +2350,1961.12.13,13-Dec-61,1961,Unprovoked,Australia,Torres Strait,"Horn Island, near Thursday Island",Swimming with other crew near wharf,"George “Jimmy” Stevens, aborgine from the lugger Rebecca",M,Right thigh and leg lacerated,N,Brisbane Courier Mail,12/14/1961; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.13-Stevens.pdf +2349,1961.11.14,14-Nov-61,1961,Invalid,Mexico,Guerrrero,Northwest of Acapulco,Unknown,Unknown,Unknown,"Bodies of hurricane victims bitten by shoals of sharks, post mortem scavenging",Y,Sydney Daily Telegraph,11/19/1961; SAF Case #1018,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.11.14-Hurricane.pdf +2348,1961.10.27,17-Oct-61,1961,Unprovoked,Philippines,Western Luzon Island,Manila Bay,Gathering shells,fisherman,M,Right leg severed,N,Newcastle Morning Herald,10/28/1961 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.27-FilipinoFisherman.pdf +2347,1961.10.09,09-Oct-61,1961,Invalid,Usa,Florida,"Ocean Ridge, Boca Raton, Palm Beach County",Swimming,Alfred Haen,M,"Skeletonized, but shark involvement may have occurred after death.",Y,H.D. Baldridge,p.162,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.09-Haen.pdf +2346,1961.10.00.b,Oct-61,1961,Boat,Vanuatu,Shefa Province, Lelepa Island,Paddling outrigger canoe,male from Lelepa Island,M,"No injury to occupant, canoe bitten & overturned by shark",N,Pacific Islands Monthly,October 1961 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.b-Vanuatu.pdf +2345,1961.10.00.a,Oct-61,1961,Unprovoked,Usa,Florida,"Boca Raton, Palm Beach County",Unknown,Jacob Horn,M,"FATAL. His body washed ashore, presumed shark attack",Y,V.M. Coppleson (1962),p.249,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.a-Horn.pdf +2344,1961.09.26,26-Sep-61,1961,Provoked,Usa,Florida,"Florida Keys, Monroe County",Unknown,Paul Walter,M,Foot & lower leg abraded and lacerated when he kicked the shark PROVOKED INCIDENT,N,H.D.Baldridge (1994) SAF Case #923,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.26-NV-PaulWalter.pdf +2343,1961.09.24.b,24-Sep-61,1961,Unprovoked,Croatia,Primorje-Gorski Kotar County ,"Opatija, northwestern coast of Rijeka Bay",Swimming,Sabit Plana,M,"FATAL, hand severed & legs bitten ",Y,The Mid-Ocean News,9/28/1961; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.b-Plana.pdf +2342,1961.09.24.a,24-Sep-61,1961,Provoked,Tanzania,Unknown,Near entrance to Dar-es-Salaam Harbour,Fishing,Yusef Mohamed,M,PROVOKED INCIDENT Right hand severed by hooked shark,N,Mombasa Times 9/25/1961,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.a-YusefMohamed.pdf +2341,1961.09.23,23-Sep-61,1961,Unprovoked,Mid atlantic ocean,165 miles from Bermuda,Unknown,"Survived US Naval aircraft crash, climbing onboard rescue vessel when he fell back into sea ",Patrick Imhof,M,Right shoulder blade & back lacerated,N,E.L.de Wilton; V.M. Coppleson (1962),p.246; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.23-Imhof.pdf +2340,1961.09.07,07-Sep-61,1961,Unprovoked,Persian gulf,25 km off the coast of Iran & 483km from mouth of Persian Gulf,Khark Island,"Free diving, surveying a pipeline & examing cathodes under jetty",I. Padden,M,"3"" cut on sole of foot",N,Underseas,Ltd (London),http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.07-Padden.pdf +2339,1961.09.02.R,06-Sep-1961,1961,Provoked,Italy,Venice Province, Chioggia,Fishing,Pollione Perrini & Fioravante Perini ,M,Left foot & right hand bitten by netted shark PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06.R-Chioggia.pdf +2338,1961.09.06,06-Sep-61,1961,Invalid,Australia,Western Australia,Broome,Attaching a line at sea,a sailor from the Fukuichi Maru,Unknown,Shark involvement prior to death priunconfirmed,Y,Canberra Times,9/8/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06-Sailor.pdf +2337,1961.08.20,20-Aug-61,1961,Unprovoked,Usa,California,"Portuguese Beach at mouth of Salmon Creek, Sonoma County",Swimming,David Vogensen,M,"Foot, leg & groin lacerated",N,L.A. Times,8/21/1961; D. Miller & R. Collier; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.20-Vogensen_Collier.pdf +2336,1961.08.16,16-Aug-61,1961,Unprovoked,Usa,South Carolina,"Pawley’s Island, Georgetown County",Wading,William Lee Bailey,M,"Right arm bitten. Left leg bitten, surgically amputated ",N,C.O. Adams,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.16-Bailey.pdf +2335,1961.08.04,04-Aug-61,1961,Unprovoked,Bermuda,Unknown,6 miles from shore,Spearfishing,Robert Sato,M,Right hand lacerated,N,R. McAllister; H.D. Baldridge,p.134,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.04-Sato.pdf +2334,1961.08.02,02-Aug-61,1961,Unprovoked,Usa,Hawaii,"Pearl Harbor Channel, O'ahu","Net fishing, picking catch from the net",Kazuhiho Kato,M,Hand bitten,N,K. Kato; V.M. Coppleson (1962),p.246,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.02-Kato.pdf +2333,1961.08.01,01-Aug-61,1961,Provoked,Papua new guinea,Sandaun Province,Vanimo on Musu side of Wutong anchorage,"Fishing, two large sharks passed. He speared one and it bit him",male,M,Thigh lacerated PROVOKED INCIDENT,N,A.M. Rapson,p.147,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.01-Vanimo.pdf +2332,1961.07.29,29-Jul-61,1961,Provoked,Usa,New York,Whitewood Point on Lloyd Neck in Oyster Bay,Spearfishing,Bruno Junker,M,Puncture wound on right shin & fingers lacerated by speared shark PROVOKED INCIDENT,N,B. Junker,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.29-Junker.pdf +2331,1961.07.16,16-Jul-61,1971,Unprovoked,Turkey,Anatolia,"?nciralti Beach, ?zmir ",Swimming,?brahim Karagöz,M,Left leg injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.16-Turkey.pdf +2330,1961.07.07.b,07-Jul-61,1961,Provoked,Australia,Queensland,Cape Moreton,Shark fishing,"35' motor launch, occupants: Bill Fulham & T. Fanning",Unknown,"No injury to occupant, hooked shark bit boat's rudder PROVOKED INCIDENT",N,Brisbane Courier-Mail,7/10/1961; SAF Case #894,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.07.b-boat-Fulham.pdf +2329,1961.07.00.b,Jul-61,1961,Unprovoked,Italy,Adriatic Sea,Riccione,Spearfishing,Manfred Gregor,M,Foot bitten,N,M. Gregor; H.D. Baldridge,p.135; A. De Maddalena; Ellis (1973),http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.b-Gregor.pdf +2328,1961.07.00.a,Jul-61,1961,Provoked,Panama,Unknown,"Jarque, just south of Pi?as Bay",Fishing (trolling) from canoe,boy,M,"FATAL, hooked shark pulled him into the water PROVOKED INCIDENT",Y,J. Hardie,D. DeSylva,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.a-youngboy.pdf +2327,1961.06.24,24-Jun-61,1961,Unprovoked,Usa,Florida,"500 yards from Fowey Rock Light, 9 miles east of Key Biscayne, Miami",Scuba diving & spearfishing ,William J. Dandridge,M,"FATAL, arm severed & left side of torso removed ",Y,D. McGee,J. Quillian,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.24-Dandridge.pdf +2326,1961.06.18,18-Jun-61,1961,Unprovoked,Usa,Florida,"Jensen Beach, Martin County",Standing,Bill Hawkins,M,Lacerations to left leg,N,News Tribune,6/20/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.18-Hawkins.pdf +2325,1961.06.06.R,06-Jun-1961,1961,Boat,Usa,Florida,"Ponte Vedra Beach, St. Johns County",Spearfishing on Scuba,W. Davidson,M,"No injury to diver or occupants of the boat, shark butted boat ",N,Florida Times-Union,6/6/1961 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.06.R-W.E.-Davidson.pdf +2324,1961.06.02,02-Jun-61,1961,Unprovoked,New britain,East New Britain Province,Rabaul,Spearfishing,male,M,Minor injuries to arm,N,A.M. Rapson,p.150,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.02-Rabaul.pdf +2323,1961.06.01,01-Jun-61,1961,Provoked,Papua new guinea,"Admiralty Islands, Manus Province","Rossun, Manus","Fishing, speared shark upset canoe & man fell in water",Marik-Pokas,M,"Left thigh severely bitten, but he regained the canoe, then shark bit canoe PROVOKED INCIDENT",N,J. McDonough; A. M. Rapson,p.147; Papua and New Guinea Agricultural Journal;,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.01-Marik-Pokas.pdf +2322,1961.05.21,21-May-61,1961,Unprovoked,Usa,California,"Tomales Point, Marin County",Free diving for abalone,Rodney Orr,M,"No injury, wetsuit bitten",N,D. Miller & R. Collier; R. Collier,pp.32-33 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.21-Orr_Collier.pdf +2321,1961.05.17,17-May-61,1961,Unprovoked,New britain,East New Britain Province,Kokopo,Collecting dynamited fish,male,M,Thumb & 2 fingers severed,N,A.M. Rapson,p. 150],http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.17-Kokopo.pdf +2320,1961.05.15,15-May-61,1961,Unprovoked,Usa,Florida,"Laguna Beach, Bay County",Walking in chest-deep water,G.L. Morris,M,Middle finger of left hand & right forearm lacerated,N,G.L. Morris; Post Herald (Birmingham,Alabama) 5/18/1961; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.15-Morris.pdf +2319,1961.05.07,07-May-61,1961,Provoked,Australia,Western Australia,"Quinn’s Rocks, south of Yanchep",Spearfishing,Graeme Arbuckle,M,"No injury, speared shark hit speargun PROVOKED INCIDENT",N,The West Australian (Perth),5/8/1961 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.07-Arbuckle.pdf +2318,1961.04.30,30-Apr-61,1961,Invalid,Usa,Florida,Palm Beach County,Splashing ,Earl Brewster,M,Abdomen abraded,N,H.D.Baldridge (1994) SAF Case #942,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.30-NV-Brewster.pdf +2317,1961.04.25,25-Apr-61,1961,Provoked,Australia,New South Wales,"Trial Bay, north of Kempsey",Spearfishing,John Davy & John Pierpoint,M,Speared shark bit Davy's ankle & Pierpont's right leg PROVOKED INCIDENT,N,Kempsey Macleay Argus (N.S.W.),4/27/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.25-Davy-Pierpoint.pdf +2316,1961.04.21,21-Apr-61,1961,Unprovoked,Mozambique,Gaza,"Sepulveda Beach, Xai Xai",Swimming,Brian Dewar,M,"Multiple injuries to both hands, left leg & foot",N,D. Davies,"pp.125-126; M. Levine,GSAF; Star",http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.21-Dewar.pdf +2315,1961.04.17,17-Apr-61,1961,Provoked,South africa,Eastern Cape Province,Port Elizabeth Oceanarium,Diving,Kelvin Harvey,M,Shark bit swimfin after diver kicked shark PROVOKED INCIDENT,N,G. Ross,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.17-Harvey.pdf +2314,1961.04.16.b,16-Apr-61,1961,Unprovoked,Usa,Florida,"Fowey Rock Light, Miami",Spearfishing,Rolf Ericson,M,Thigh bitten,N,W. M. Stephens; H.D. Baldridge,p.166; Clark,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.b-Ericson.pdf +2313,1961.04.16.a,16-Apr-61,1961,Provoked,Australia,New South Wales,Otford,Spearfishing,Douglas John Spooner,M,Speared shark bit his foot PROVOKED INCIDENT,N,Sydney Morning Herald,4/17/1961; G. P. Whitley; Perth Daily News,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.a-Spooner.pdf +2312,1961.04.14,14-Apr-61,1961,Unprovoked,Australia,New South Wales,10 miles off Nambucca Heads onboard trawler,"Checking fish traps, fell into the water",Keith Davis,M,Tiny cuts & bruises on neck ,N,G. P. Whiltley citing Sydney Morning Herald,4/15/1961 & 4/17/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.14-Davis.pdf +2311,1961.04.09,09-Apr-61,1961,Unprovoked,Mozambique,Gaza,Xai Xai,"Swimming, using bundles of sticks as raft",Francisco Zimila,M,"FATAL, extensive abdominal wounds, died 4 days later ",Y,D. Davies,p.125; Star,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.09-Zimila.pdf +2310,1961.04.08,08-Apr-61,1961,Sea Disaster,Persian gulf,United Arab Emirates,Dubai,Cargo ship Dara sank after collision with another ship during a severe storm,Unknown,Unknown,Some of the survivors said to have been bitten by sharks,Y,V.M. Coppleson (1962),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.08-DaraDisaster.pdf +2309,1961.04.03,03-Apr-61,1961,Unprovoked,Australia,Victoria,Flinders Island,Spearfishing,Joe Prosch,M,"No injury, right sleeve of wetsuit ripped, weight on belt gashed",N,Sydney Morning Herald,4/4/1961 ; Launceston Examiner; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.03-Prosch.pdf +2308,1961.04.00,Apr-61,1961,Provoked,Australia,Western Australia,Rottnest Island,Spearfishing,Gerry Greaves,M,Speared shark bit his arm & seat of pants of diving suit PROVOKED INCIDENT,N,Perth Daily News,4/19/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.00-Greaves.pdf +2307,1961.03.30,30-Mar-61,1961,Unprovoked,Australia,South Australia,Glenelg Breakwater,Spearfishing,Clyde Buttery,M,"Shark took his entire catch, lacerated his knee and tore his wet suit as it brushed past him",N,G.P. Whitley citing Sydney Morning Herald,4/1/1961; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.30-Buttery.pdf +2306,1961.03.18,18-Mar-61,1961,Unprovoked,Australia,Victoria,Lady Beach at Warrnambool,Swimming,Kenneth Smith,M,"Abdomen & arm bitten. Shark, holding him by the arm, leapt 4' to 5' above the surface",N,Sun Herald (Sydney) 3/19/1961; Sydney Morning Herald,3/20/1961; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.18-Smith.pdf +2305,1961.03.14,14-Mar-61,1961,Provoked,Australia,Western Australia,Shark Bay,Fishing from dinghy,Kath. O’Neill,F,Hooked shark hauled on board bit her foot PROVOKED INCIDENT,N,Sydney Daily Telegraph,no date; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.14-O'Neill.pdf +2304,1961.03.12,12-Mar-61,1961,Unprovoked,Australia,South Australia,Aldinga Beach,Spearfishing,Brian Rodgers,M,Left leg bitten & left forearm lacerated,N,V.M. Coppleson (1962),pp.182 & 252; H. Edwards,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.12-Rodger.pdf +2303,1961.03.09,09-Mar-61,1961,Unprovoked,North pacific ocean,Wake Island (EnenKio),"Leeward side of island, directly in back of Mid-Pac barrel storage area",Free diving,James K. Stewart,M,Right elbow bitten,N,J.K. Stewart; Albert Tester; V.M. Coppleson (1962),p.254; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.09-Stewart.pdf +2302,1961.03.07,07-Mar-61,1961,Provoked,South africa,KwaZulu-Natal,St. Lucia,Fishing,Johannes J. Rickert,M,Landed shark in boat bit his left leg PROVOKED INCIDENT,N,GSAF; D. Davies,pp.112-113,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.07-Rickert.pdf +2301,1961.03.00,Mar-61,1961,Unprovoked,Fiji,"19S, 178?E","Wotua Beach, 70 miles from Suva",Floating on back,Albert Bailey,M,Right forearm bitten,N,A. Bailey,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.00-Bailey.pdf +2300,1961.02.17.b,17-Feb-61,1961,Provoked,Usa,Pennsylvania,"Fairmount Park Aquarium, Philadelphia",Cleaning a tank,Charles Peterson,M,Thumb lacerated by captive shark PROVOKED INCIDENT,N,The Bee,2/18/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.b-Peterson.pdf +2299,1961.02.17.a,17-Feb-61,1961,Unprovoked,Australia,Victoria,Mount Martha Beach,Standing,Mrs. Reg Fox,F,"Ankle bitten by small “gummy” shark, minor injury",N,Morning Peninsular Post (Victoria,Australia),http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.a-Fox.pdf +2298,1961.02.16,16-Feb-61,1961,Unprovoked,Unknown,Unknown,Unknown,Unknown,British sailor from the F-107,M,FATAL,Y,E. C. Raney; V.M. Coppleson (1962),p.247 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.16-BritishSailor.pdf +2297,1961.02.12,12-Feb-61,1961,Unprovoked,South africa,Western Cape Province,Sea Point,"Spearfishing, shark grabbed his white t-shirt and towed him ",Carl Derrick Benzoin,M,Torso bruised & abraded ,N,C.D. Benzoin,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.12-Benzoin.pdf +2296,1961.02.01.b,01-Feb-61,1961,Unprovoked,South africa,Eastern Cape Province,Nahoon,Swimming,Geoffrey Zimmerman,M,"FATAL, multiple injuries to both legs, feet & left arm ",Y,D. Davies & J. D'Aubrey; D. Davies,pp.122-124; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.b-Zimmerman.pdf +2295,1961.02.01.a,01-Feb-61,1961,Unprovoked,Australia,Western Australia,Carnac Island,Collecting crayfish,Len McWhinney,M,No injury,N,H.D. Baldridge,p.134,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.a-McWhinney.pdf +2294,1961.02.00,Feb-61,1961,Invalid,Usa,California,"Topanga Canyon Beach, Santa Monica Bay",Unknown,Steven Friedman,M,Considered a doubtful incident,N,R. Collier,G.. Helfman,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.00-Friedman.pdf +2293,1961.01.25,25-Jan-61,1961,Boat,South africa,Western Cape Province,Frikkies Bay,Fishing for kob,"dinghy, occupants: Willem & Jan Groenwald",Unknown,"No injury to occupants, shark took a gaffed fish they were bringing aboard & hit their boat",N,Cape Times,1/27/1961; SAF Case #945,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.25-Groenwald-boat.pdf +2292,1961.01.22,22-Jan-61,1961,Unprovoked,South africa,KwaZulu-Natal,Amanzimtoti,Swimming,Michael Murphy,M,Left thigh bitten ,N,M. Murphy,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.22-Murphy.pdf +2291,1961.01.15,15-Jan-61,1961,Provoked,Australia,New South Wales,Cook Island,Collecting aquarium specimens,Robert Webb,M,Right calf bitten by lassoed shark on deck of surf ski PROVOKED INCIDENT,N,Mackay Daily Mercury (Queensland),1/16/196; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.15-Webb.pdf +2290,1961.01.06.c,06-Jan-61,1961,Unprovoked,South africa,KwaZulu-Natal,Winkelspruit,Standing,Michael Land,M,"Right foot, leg and hand bitten",N,GSAF; D. Davies & J. D'Aubrey; D. Davies,pp.109-111,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.c-Land.pdf +2289,1961.01.06.b,06-Jan-61,1961,Sea Disaster,Atlantic ocean,9.35N 79.35W,"East of La Grande Island, North of Panama Canal",Pacific Seafarer of US Navy,Unknown,Unknown,"3 were lost, 3 survived",Y,C.R. Wolf,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.b-PacificSeafarer.pdf +2288,1961.01.06.a,06-Jan-61,1961,Provoked,Australia,Northern Territory,"Stokes Hill Wharf, Darwin",Fishing,Arthur Hopkins,M,Finger bitten by hooked shark PROVOKED INCIDENT,N,Darwin Northern Territory News,1/10/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.a-Hopkins.pdf +2287,1961.01.05,05-Jan-61,1961,Unprovoked,Mozambique,Limpopo River,190 km to 240 km from the sea,Swimming,African child (male),M,Leg bitten ,N,D. Davies,p.124-125,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.05-AfricanChild.pdf +2286,1961.01.03.b,03-Jan-61,1961,Unprovoked,South africa,Western Cape Province,Strandfontein,Standing,Peter Hendricks,M,"Lower left leg bitten, abrasions on back of right leg",N,Cape Times,1/4/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.b-Hendricks.pdf +2285,1961.01.03.a,03-Jan-61,1961,Invalid,South africa,KwaZulu-Natal,Palm Beach,Unknown,Unknown,Unknown,Human remains (patella & remnants of black swim suit) found in shark,Y,D. Davies; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.a-Remains-in-raggie.pdf +2284,1961.01.02.R,02-Jan-1961,1961,Boat,Australia,Tasmania,Off Tasman Island,Ocean racing,yacht Southerly Buster,Unknown,"No injury to occupants, shark struck boat",N,C. Black. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.02.R-SoutherlyBuster.pdf +2283,1961.00.00.e,1961,1961,Boat,Australia,New South Wales,South coast,Fishing for mackerel,boat,Unknown,"No injury to occupant, shark took hooked fish then bit stern of boat",N,Brisbane Courier Mail,12/30/1961 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.e-Mackerel-fishing.pdf +2282,1961.01.01,01-Jan-61,1961,Unprovoked,Columbia,Roncador Bank,"Roncador Bank, 135 nm north of San Andres ",Taking boat from California to Florida when it ran aground & he was swimming back to boat,Joe Chaney ,M,Leg bitten,N,V.M. Coppleson (1962) p.246,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.01-Chaney.pdf +2281,1961.00.00.d,1961,1961,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Unknown,Unknown,Arm injured,N,SAF Case #1109,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.d-NV-NewCaledonia.pdf +2280,1961.00.00.b,1961,1961,Unprovoked,Senegal,Cap Vert Peninsula,Thiaroye Guedi,Free diving for molluscs,A.N.,M,FATAL,Y,S.Trape,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.b-Senegal.pdf +2279,1961.00.00.a,1961,1961,Sea Disaster,Usa,Hawaii,Maui,Light aircraft ditched at sea,5 people swimming for shore (pilot & 4 passengers),Unknown,3 of the 4 passengers killed by sharks,Y,F. Dennis,p.20,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.a-aircraft.pdf +2278,1960.12.27.b,27-Dec-60,1960,Unprovoked,Usa,Hawaii,"Maile Point, O'ahu",Swept out to sea while net fishing,Harold Riley,M,"FATAL Shark seen attacking Riley, body recovered off Nanakuli",Y,L. Taylor (1993),pp.100-101,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.b-Riley.pdf +2277,1960.12.27.a.,27-Dec-60,1960,Unprovoked,Australia,New South Wales,"Bondi Beach, Sydney",Unknown,Mrs. Despo Snow-Christensen ,F,"Shark brushed past, minor injuries if any", N,Baltimore Sun,12/28/1960; Sydney Morning Herald 12/28/1960; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.a -Despo Snow-Christensen.pdf +2276,1960.12.24,24-Dec-60,1960,Unprovoked,South africa,KwaZulu-Natal,Margate,Swimming,"Serame ""Petrus"" Sithole",M,"FATAL, legs severed ",Y,D. Davies & J. D'Aubrey; D. Davies,pp. 108-109; T. Wallett; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.24-Sithole.pdf +2275,1960.12.20,20-Dec-60,1960,Unprovoked,Australia,Queensland,"College’s Crossing, 54 miles above mouth of the Brisbane River","Fishing, when line became snagged on rock & he dived into water to free it ",Lester McDougall,M,Left thigh lacerated, N,Sydney Morning Herald,12/21/1960; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.20-McDougall.pdf +2274,1960.12.01,01-Dec-60,1960,Unprovoked,Australia,Queensland,"Colledge's Crossing, Brisbane River",Fishing,male,M,Bitten & survived,N,Sunday Mail,3/27/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.01-BrisbaneRiver.pdf +2273,1960.11.27,27-Nov-60,1960,Unprovoked,Australia,Queensland,"Black’s Beach, 9 miles north of Mackay",Swimming,Harry Bicknell,M,Right shoulder lacerated, N,Daily Mercury (Mackay),11/28/1960 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.27-Bicknell.pdf +2272,1960.11.22,22-Nov-60,1960,Invalid,Usa,Florida,"Hutchinson Island Beach, Martin County","Fell overboard, prop slashed arm",Sarah Peggy Sargent,F,"FATAL, probable drowning & post mortem scavenging",Y,News-Tribune (Fort Pierce,FL],http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.22-Sargent.pdf +2271,1960.11.11,11-Nov-60,1960,Provoked,Australia,Queensland,"Scott’s Point, Redcliffe Peninsula",Chasing shark out of bathing area while riding on a surf-ski,Ken O’Connell,M,"Shark knocked him off surf-ski, he inhaled water & had to be resuscitated PROVOKED INCIDENT", N,Courier-Mail (Queensland),11/12/1960; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.11-O'Connell.pdf +2270,1960.11.06,06-Nov-60,1960,Unprovoked,Australia,Western Australia,Hamelin Bay,"Spearfishing, speared fish retreated to cave where shark grabbed his arm",Don Morrissey,M,Scratches on right upper arm, N,The West Australian (Perth),11/7/1960; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.06-Morrissey.pdf +2269,1960.11.00.d,Nov-60,1960,Boat,South africa,Western Cape Province,"5 km from Gordon’s Bay, False Bay",Hand lining for shad,"7.5 m boat, occupants: 8 men",Unknown,"No injury to occupants, shark bit 45 cm hole in hull",N,D. Davies; T. Wallett,p.27-30,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.d-GordonsBay.pdf +2268,1960.11.00.c,Nov-60,1960,Provoked,New guinea,Western District,Toro Passage,Unknown,Fisheries trainee,M,Left wrist bitten by netted shark placed in bottom of dinghy PROVOKED INCIDENT, N,A.M. Rapson,p.147,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.c-ToroPassage.pdf +2267,1960.11.00.b,Nov-60,1960,Unprovoked,Papua new guinea,Central Province,Abau Subdistrict,Fishing,male,M,"FATAL, severely bitten genitals & thighs ",Y,A. Bleakley; A.M. Rapson,p.150 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.b-Fisherman.pdf +2266,1960.10.25,25-Oct-60,1960,Sea Disaster,Usa,California,"Off Point Mugu, Ventura County",Ejected from F3H-2 aircraft ,"Lt Cmdr. Lawrence Ernest Scheer USN, pilot",M,"No injury, shark hit his foot & circled",N,US Naval Aviation Safety Center; L. Schultz & M. Malin,p.562,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.25-Scheer.pdf +2265,1960.10.24,24-Oct-60,1960,Boat,South africa,Western Cape Province,"Jacobs Bay Reef, Saldanha Bay",Fishing for rock lobsters,"boat, occupants: 2 fishermen",Unknown,"No injury to occupants, shark rammed & bit boat",N, D. Davies,p.185; Natal Daily News,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.24-JacobsBayfishermen.pdf +2264,1960.10.02,01-Oct-60,1960,Invalid,Australia,New South Wales,North Head,Fishing,B. Hooper ,M,"Swept off rocks & presumed to have drowned, shark seen in area", N,Letter from L. Schultz to G. P. Whitley,dated 2/24/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.02-NV-Hooper.pdf +2263,1960.10.00.e,Oct-60,1960,Unprovoked,Papua new guinea,New Britain,"East Nakanai, Talasea",Collecting shells,Unknown,M,Injuries to leg & foot, N,A.M. Rapson,p.149,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.e-Talasea.pdf +2262,1960.10.00.d,Oct-60,1960,Sea Disaster,Red sea / indian ocean,Enroute from Suez to Aden (Yemen),Unknown,Cargo ship El Gamil entroute Suez to Yemen (Aden) when her cargo shifted and she sank. 19 Egyption sailors jumped into the water and swam for several hours before being bitten by sharks,Unknown,M,"Sharks attacked sailors in the water, several survivors picked up",Y,V.M. Coppleson (1962),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.d-El-Gamil.pdf +2261,1960.10.00.c,Oct-60,1960,Invalid,Usa,Florida,Haulover Inlet,Diving,John Taylor Wilson,M,"Apparently went missing while diving. Helicopter searching for him spotted school of sharks attacking a ""white object"" 15' below the surface",Y,Miami Herald,10/18/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.c-Wilson.pdf +2260,1960.10.00.b,Oct-60,1960,Boat,South africa,Western Cape Province,False Bay,Fishing,boat,Unknown,"Shark rammed boat, breaching its hull",N,T. Wallett,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.b-Gordon'sBayBoat.pdf +2259,1960.10.00.a,Oct-60,1960,Invalid,Unknown,Unknown,Unknown,"Free diving / photography, kneeling on sand",Raymond F. McAllister,M,"No injury, shark made threat display",N,R. McAllister; SAF Case #958,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.a-McAllister.pdf +2258,1960.09.24,24-Sep-60,1960,Provoked,Usa,South Carolina,"Atlantic Beach, Horry County",Fishing inside net,Theldon Gore,M,"Multiple superficial lacerations of leg, arm & hand PROVOKED INCIDENT",N,News (Lancaster,SC),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.24-Gore.pdf +2257,1960.09.22,22-Sep-60,1960,Sea Disaster,Pacific ocean,180 miles southeast of Okinawa,Unknown,R5D aircraft went down with 29 on board,male,M,One body sighted but not recovered due to shark activity,N,US Naval Aviation Safety Center; L. Schultz & M. Malin,p.562,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.22-R5Daircraft.pdf +2256,1960.09.18,18-Sep-60,1960,Boat,Australia,Western Australia,Frenchman Bay,Unknown,12' dinghy,Unknown,"No injury to occupants, toothmarks on bottom & side of dinghy",N,P.W. Gilbert,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.18-Dinghy.pdf +2255,1960.09.02,02-Sep-60,1960,Invalid,Marshall islands,Eniwetok Atoll,Lagoon along Sand Island,Free diving / Spearfishing,E.S. Hobson ,M,"No injury, shark made a threat display",N,E.S. Hobson; SAF Case #955,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.02-E.S.Hobson.pdf +2254,1960.09.01,01-Sep-60,1960,Invalid,Marshall islands,Eniwetok Atoll,Parry Island,Free diving / Spearfishing,F. Mautin,M,"No injury, shark made a threat display",N,E.S. Hobson; SAF Case #954,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.01-Mautin.pdf +2253,1960.08.30,30-Aug-60,1960,Unprovoked,Usa,New Jersey,"Ocean City, Cape May County",Swimming 3 miles offshore,Richard Chung,M,Right leg severely lacerated,N,R. Chung; Dr. Godfrey; V.M. Coppleson (1962),p.249; R. Skocik,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.30-Chung.pdf +2252,1960.08.29,29-Aug-60,1960,Sea Disaster,Senegal,Cap-Vert Peninsula,off Dakar,Air disaster: crash of Air France Super Constellation ,Unknown,Unknown,All 63 on board perished when the aircraft hit the water. Sharks hampered retrieval of bodies,Y,The Daily Telegram (Colombus,8/30/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.29-Senegal.pdf +2251,1960.08.25,25-Aug-60,1960,Invalid,Usa,Texas,30 miles east of Corpus Christi,Aircraft crashed into sea,Naval aviator,M,"Partial human remains spotted by helicopter, shark involvement, if any, may have been post-mortum",Y,US Naval Aviation Safety Center; L. Schultz & M. Malin,p.558; SAF Case #1013,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.25-NavalAviator.pdf +2250,1960.08.24,24-Aug-60,1960,Unprovoked,Usa,Connecticut,"Off Eames Monument, Bridgeport, Fairfield County",Free diving,Clyde Trudeau,M,Superficial laceration of left arm,N,M. McMahon,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.24-Trudeau.pdf +2249,1960.08.22.R.,22-Aug-1960,1960,Unprovoked,Papua new guinea,Milne Bay Province,Unknown,Free-diving,"""a native""",M,Lost left arm,N,The Age,8/22/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.R-Milne-PNG.pdf +2248,1960.08.22,22-Aug-60,1960,Unprovoked,Usa,New Jersey,"Seaside Park, Ocean County",Unknown,Thomas McDonald,M,Knee ripped to bone,N,T. Helm,p.250; R. Skocik,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.a-McDonald.pdf +2247,1960.08.21,21-Aug-60,1960,Unprovoked,Usa,New Jersey,"Sea Girt, Monmouth County",Standing in knee-deep water,John Brodeur,M,"Lower right leg bitten, surgically amputated 10 days later",N,C. G. Samaha,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.21-Brodeur.pdf +2246,1960.08.14,14-Aug-60,1960,Invalid,Mozambique,Delagoa Bay,Bella Vista,boat with 46 people on board capsized,Unknown,Unknown,1 survivor,N,L. Schultz & M. Malin,p.563; SAF Case #760,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.14-NV-Mozambique.pdf +2245,1960.08.10,10-Aug-60,1960,Provoked,Usa,Florida,Key Largo Sound,Holding shark on leader & dangling it above the water,Richard Henn,M,Right hand bitten by hooked shark PROVOKED INCIDENT,N,D. Mayo; V. Springer,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.10-Henn.pdf +2244,1960.08.04.b,04-Aug-60,1960,Provoked,England,In the English Channel ,Off the south Devon coast,Helping angler land a shark,William Capel,M,Arm lacerated elbow to wrist PROVOKED INCIDENT,N,Newcastle Morning Herald (NSW,Australia),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.b-Capel.pdf +2243,1960.08.04.a,04-Aug-60,1960,Unprovoked,Usa,Delaware,"Mispillion Light, Delaware Bay","Fishing, Struck by another shark when removing shark from line",Russell Saylor,M,Hand lacerated,N,Index (Dover,Delaware),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.a-Saylor.pdf +2242,1960.08.00,Aug-60,1960,Unprovoked,Usa,South Carolina,Parris Island,Swimming from camp,Young Marine recruit,M,FATAL,Y,V.M. Coppleson (1962),p.249,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.00-marine.pdf +2241,1960.07.27,27-Jul-60,1960,Unprovoked,Papua new guinea,Milne Bay Province,"Taupota, Samarai ",Spearfishing,John Klaso,M,"Arm severed, torso severely lacerated",N,L.C. Yelland; I.S. Reid; A.M. Rapson,p.150,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.27-Klaso.pdf +2240,1960.07.05,05-Jul-60,1960,Unprovoked,Usa,Mississippi,Mississippi City,Pulling raft out to ride to shore,"Henry Hanson, Jr.",M,Leg bitten,N,V.M. Coppleson (1962),p.249,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.05-Hanson.pdf +2239,1960.07.03,03-Jul-60,1960,Provoked,Usa,Virginia,Hog Island,"Fishing, tossing netted shark onboard",Elsworth Smith,M,Right arm bitten PROVOKED INCIDENT,N,Times (Salisbury,Maryland),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.03-Smith.pdf +2238,1960.07.02.a,02-Jul-60,1960,Unprovoked,Papua new guinea,Madang,"Bimat, Bogia",Fishing,an Aid Post orderly,M,Right buttock slashed,N,A.M. Rapson,p.150,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.02-Orderly.pdf +2237,1960.06.29,29-Jun-60,1960,Provoked,Usa,South Carolina,"Little River Beach, Horry County",Surf fishing,Monte Gray,M,"Lacerations to calf, wrist & thumb by hooked shark. PROVOKED INCIDENT",N,C. Creswell,GSAF; Florence Morning News 6/30/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.29-Gray.pdf +2236,1960.06.27.b,27-Jun-60,1960,Provoked,New zealand,Cook Strait,Tory Channel,Shark fishing,boat (a whale chaser),Unknown,Harpooned shark bit boat PROVOKED INCIDENT,N,The Age,6/28/1960; SAF Case #772,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27-b-Harpooned-shark.pdf +2235,1960.06.27.a,27-Jun-60,1960,Provoked,North sea,"Unknown, treated at Wick, SCOTLAND","On board East German fishing trawler, I Mai",Fishing,Hans Yoachim Schapper,M,Right arm bitten by shark taken onboard in net PROVOKED INCIDENT,N,Edinburg Evening News,7/6/1960; Dundee Evening Telegraph,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27.a-Schapper.pdf +2234,1960.06.24,24-Jun-60,1960,Unprovoked,Usa,Florida,"2 miles east of Dania Beach, Broward County",Scuba diving,William F. Fey,M,"No injury, shark harrassed diver & attempted to bite his swimfins",N,W.F. Fey,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.24-Fey.pdf +2233,1960.06.07,07-Jun-60,1960,Invalid,Usa,California,"10 miles off Santa Barbara, Santa Barbara County","Testing classified underwater electronic gear for Raytheon Corporation, vessel torn apart by explosion","Paul Timothy Lovette, Dr. Neal Beardsley, James C. Russell, Harold H. Mackie, Dale Howard & Diego J. Terres on 42' Navy craft, Marie",M,"Legs & arms bitten, coroner unable to determine if injuries occurred before death.",N,L.A. Times,6/10/1960; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.07-Raytheon.pdf +2232,1960.06.05,05-Jun-60,1960,Unprovoked,Philippines,Corregidor Island,Unknown,"Diving for shells, saw shark circling wife near the surface, intercepted shark & it pulled him beneath the water",Leonardo Mendoza,M,"FATAL, body not recovered",Y,Manila Daily Bulletin 6/6/1960; V.M. Coppleson (1962),p.254 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.05-Mendoza.pdf +2231,1960.06.04,04-Jun-60,1960,Unprovoked,Usa,Georgia,"North picnic area, Jekyll Island, Glynn County",Swimming,"John William Jones, an Ensign in US Navy",M,Lower left leg & foot bitten,N,W. L. Jones,M.D.; SAF Cases # 897 & 1476,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.04-Jones.pdf +2230,1960.05.29,29-May-60,1960,Unprovoked,Panama,San Blas Islands,Off Diable Island,"Spearfishing, free diving, possibly ascended into path of cruising shark",Eddie Dawkins,M,Face lacerated,N,E. Dawkins,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.29-Dawkins.pdf +2229,1960.05.24,24-May-60,1960,Unprovoked,Bermuda,Paget,Elbow Beach / Coral Beach,Free diving but treading water at surface,Louis Goiran,M,Foot bitten,N,L.Goiran; S. Waterman; Royal Gazette (Hamilton,Bermuda),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.24-Goiran.pdf +2228,1960.05.19,19-May-60,1960,Unprovoked,Usa,California,"Aptos, Santa Cruz County",Swimming ,Suzanne Marie Theriot,F,"Left leg bitten, surgically amputated below the knee",N,D. Miller & R. Collier; R. Collier,pp.31-32; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.19-Theriot_Collier.pdf +2227,1960.05.16,16-May-60,1960,Provoked,Usa,Florida,"Lignum Vitae Channel, Florida Keys, Monroe County",Unknown,"16' skiff, occupant: W.A. Starck, II",Unknown,"No injury, harpooned shark bit hull, leaving tooth fragments. PROVOKED INCIDENT",N,Randall in Sharks and Survival,p.351 Note: Stark's boat also rammed by shark a lemon shark several years earlier,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.16-Starck-boat.pdf +2226,1960.05.01,01-May-60,1960,Unprovoked,Papua new guinea,Madang,Taludig,Unknown,Anonymous,Unknown,FATAL,Y,A.M. Rapson,p.150,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.01-Taludig.pdf +2225,1960.04.30,30-Apr-60,1960,Unprovoked,South africa,KwaZulu-Natal,Amanzimtoti,Treading water,Mike Hely,M,Multiple major injuries,N,M. Hely,E. Kerns,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.30-Hely.pdf +2224,1960.04.24,24-Apr-60,1960,Unprovoked,Usa,California,"Tomales Point, Marin County",Skindiving for abalone (but at surface),Frank I. Gilbert,M,Foot & swim fin bitten ,N,F.I. Gilbert; Follett,p. 192-198; D. Miller & R. Collier; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.24-Gilbert_Collier.pdf +2223,1960.04.22,22-Apr-60,1960,Provoked,Australia,Western Australia,Rottnest Island,"Fishing, hauling in a set line",Ted Nelson onboard fishing boat Wayfarer,M,4 fingers of left hand were lacerated by shark he had shot in the head PROVOKED INCIDENT,N,L. Schultz & M. Malin,p.546,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.22-Nelson.pdf +2222,1960.04.20.R,20-Apr-1960,1960,Provoked,South africa,Eastern Cape Province,Port Alfred,Fishing,P. Wagener,M,Gaffed shark bit his ankle PROVOKED INCIDENT,N,Eastern Province Herald,4/20/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.20.R-Wagener.pdf +2221,1960.04.14,14-Apr-60,1960,Invalid,Bermuda,"33N, 68W",Royal Canadian Navy CS2F-1 aircraft ditched in the sea 180 nautical miles WNW of Bermuda at 01h30,Floating on a raft,"Crew of aircraft: McGreevy, Beakley, Rosenthal, Ryan & Hodge",M,"No injury, shark bumped raft",N,G.S. Beakley,RCN; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.14-Beakley-recheck text-March.pdf +2220,1960.04.12,12-Apr-60,1960,Unprovoked,Australia,New South Wales,"Horseshoe Bay, near Kempsey",Surfing,Ivan Chandler,M,Right arm & side bruised,N,Macleay Argus (NSW),4/14/1960; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.12-Chandler.pdf +2219,1960.04.10,10-Apr-60,1960,Provoked,Australia,Western Australia,Off Rottnest Island,"Spearfishing, shot a sandtiger shark. Cord to spear tangled round his legs & a wave washed him onto a reef.",Mick Coleman,M,"Bruises & minor injuries from reef, not the shark PROVOKED INCIDENT",N,V.M. Coppleson (1962),p.252,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.10-Coleman.pdf +2218,1960.04.03.b,03-Apr-60,1960,Unprovoked,Australia,Victoria,"Canadian Bay near Mount Eliza, 30 miles from Melbourne",Spearfishing,William Black,M,Minor cuts & bruises on face & neck,N,Sydney Morning Herald,"4/4/1960; H.D. Baldridge,p.133",http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.b-Black.pdf +2217,1960.04.03.a,03-Apr-60,1960,Unprovoked,Australia,New South Wales,Off Broughton Island near Port Stephens,"Speared a grouper, saw shark but it came for him instead of the fish so he fired spear into shark’s mouth. Then shark took grouper but unable to swallow because of the spear in its mouth.",Kenneth Morris,M,Minor injuries to hand,N,G. P. Whitley; V.M. Coppleson (1962),p.252,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.a-Morris.pdf +2216,1960.04.01,01-Apr-60,1960,Provoked,Australia,South Australia,Hog Bay,Shark fishing,"launch, occupant Clive Whitrow, Dick Kuhne & Jim Pergola",Unknown,Hooked shark bit stern PROVOKED INCIDENT,N,The News (Adelaide),4/1/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.01-WhitrowLaunch.pdf +2215,1960.04.00.c,Apr-60,1960,Unprovoked,Fiji,Vanua Levu,Off the Bua coast,Fishing in shoulder-deep water,Fijian woman,F,"FATAL, legs bitten ",Y,Wellington Evening Post,4/29/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.c-woman.pdf +2214,1960.04.00.b,Apr-60,1960,Provoked,Philippines,Luzon Island,Bataan,"Fishing, hooked shark towed boat out to sea, storm swamped boat",Nicaso Balanoba & Julian Dona,M,"FATAL, due to drowning PROVOKED INCIDENT",Y,P. Gilbert (1961); H.D. Baldridge,p.152,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.b-Balanoba-Dona.pdf +2213,1960.04.00.a,Apr-60,1960,Boat,South africa,Western Cape Province,Saldanha Bay,Fishing,5 m skiboat,Unknown,Shark rammed boat & bit transom,N,T. Wallett,p.27,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.a-SaldanhaSkiboat.pdf +2212,1960.03.31,31-Mar-60,1960,Unprovoked,Usa,Florida,"Off Boca Raton Hotel & Club, Boca Raton, Palm Beach County",Treading water,Robert B. Winkler,M,"Ankle bitten, hand injured while striking shark",N,V.M. Coppleson (1962),p.249,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.31-Winkler.pdf +2211,1960.03.28,28-Mar-60,1960,Unprovoked,Unknown,Unknown,Unknown,"Spearfishing, carrying fish on belt",Enrique Matao,M,Thigh bitten,N,V.M. Coppleson (1962),p.254; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.28-Metao.pdf +2210,1960.02.29,29-Feb-60,1960,Unprovoked,Australia,Tasmania,Ralph Bay,"Wading, fishing for flounder",Malcolm Robertson & Tom Hasler,M,"No injury, Robertson knocked over & Hasler brushed by a shark",N,Hobart Mercury 3/3/1960,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.29-Robertson-Hasler.pdf +2209,1960.02.27.b,27-Feb-60,1960,Unprovoked,New zealand,North Island,"Mangawhai, near Wellsford",Spearfishing,Laurie Ross ,M,"No injury, leg bumped by shark's tail",N,R.D. Weeks,GSAF; Auckland Star,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.b-Ross.pdf +2208,1960.02.27.a,27-Feb-60,1960,Invalid,Usa,Hawaii,"Between Keawakapu & Makena, Maui",Spearfishing,John Benjamin,M,Left forearm lacerated,N,Honolulu Star Bulletin,3/1 /1960; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.a-Benjamin.pdf +2207,1960.02.24,24-Feb-60,1960,Provoked,Senegal,Casamance,Ziguinchor,Fishing,Souleymane S.,M,Calf bitten by shark caught in net PROVOKED INCIDENT,N,J. Cadenat; Dr. T. Farah,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.24-Souleyman.pdf +2206,1960.02.19,19-Feb-60,1960,Unprovoked,Papua new guinea,Central Province,"Tupuselei Village, about 40 miles east of Port Moresby",Spearfishing,Doas Hehuni,M,"FATAL, legs bitten ",Y,A.M. Rapson,p.150; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.19-Tupuselei.pdf +2205,1960.02.10.,10-Feb-60,1960,Provoked,Australia,New South Wales,Near Bondi Beach,Shark fishing,"12' open motor boat, occupants Jack Platt & Peter Keyes",Unknown,No injury to occupants. Hooked shark rammed boat PROVOKED INCIDENT,N,Sydney Daily Telegraph,2/11/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.10-Bondi-Tiger.pdf +2204,1960.02.07,07-Feb-60,1960,Provoked,Australia,New South Wales,Wattamolla National Park,Spearfishing,John Gilles & Harry Dowswell,M,"No injury, speared shark towed Gilles 200 yards & tore hole in diving suit, and hit Dowswell's back with its tail PROVOKED INCIDENT",N,Unidentified press clipping;. SAF Case #203,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.07-Gillies.pdf +2203,1960.02.03,03-Feb-60,1960,Invalid,Usa,Hawaii,Maui,S2F-1 airplane crashed immediately after carrier take-off,Crew of Anti-submarine Squadron 23,Unknown,"Of crew of 4, only 1 person survived (broken legs but no shark bites). Within 20 minutes of his rescue large sharks were in area. No remains of other 3 crew recovered, and shark involvement in their deaths is questionable. ",Y,L. Schultz & M. Malin,p.562; SAF Case #870 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.03-S2F-1-aircraft.pdf +2202,1960.01.30,30-Jan-60,1960,Unprovoked,Papua new guinea,Madang (WO),"Off Taludig Village, at mouth of the Murnass River",Unknown,"Upad, a boy",M,"Lower left leg bitten, surgically amputated",N,A.M. Rapson,p.150; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.30-Upad.pdf +2201,1960.01.26,26-Jan-60,1960,Sea Disaster,Australia,"Between Timor & Darwin, Australia",Unknown,Portuguese Airliner with 9 people aboard went down. ,Unknown,Unknown,"As searchers approached wreckage, sharks circled one canoe & seized oar from another.",N,V.M. Coppleson (1962),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.26-Portuguese airliner.pdf +2200,1960.01.21,21-Jan-60,1960,Boat,Australia,South Australia,Millicent,Unknown,"13' dinghy, occupant S. Smith, Leenee Dee & Marie Farmer",Unknown,"No injury to occupants, shark lifted boat",N,Hobart Mercury 1/22/1960,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.21 - Smith dinghy.pdf +2199,1960.01.16,16-Jan-60,1960,Unprovoked,Australia,New South Wales,"Just below Roseville Bridge, opposite Killarney picnic reserve, Middle Harbor, Sydney",Free diving,Kenneth William Murray,M,"FATAL, right leg severed above knee, surgically amputated but died 9 days later ",Y,T.W. Brown,pp.1 -6; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.16-Murray.pdf +2198,1960.01.13,13-Jan-60,1960,Provoked,Australia,Western Australia,Geraldton,"Fishing, lifting shark out of craypot",Ron Christmas,M,Upper leg bitten PROVOKED INCIDENT,N,Western Australian Perth Daily News,1/4/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.13-Christmas.pdf +2197,1960.01.07,07-Jan-60,1960,Boat,Australia,Tasmania,Eaglehawk Neck,Setting crayfish pots,"16' boat, occupant: W. Lonergan",Unknown,"No injury to occupant, shark rammed boat",N,G.P. Whitley citing Mercury (Hobart),1/8/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.07-Lonergan.pdf +2196,1960.01.01,01-Jan-60,1960,Provoked,South africa,Western Cape Province,Muizenberg,"Standing, watching seine netters",Mrs. Burman,F,Left leg bitten by shark that escaped net PROVOKED INCIDENT,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.01-Burman.pdf +2195,1960.00.00.j,1960,1960,Unprovoked,Nicaragua ,Pacific coast,San Jan del Sur,Bathing,boy,M,Survived,N,J. McAlpine,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.j-Nicaragua.pdf +2194,1960.00.00.i,1960,1960,Unprovoked,Grenada,St. Georges ,Black Point Bay,Spearfishing,Julian Bain,M,Toe bitten,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.i-Bain.pdf +2193,1960.00.00.h,Early summer 1960,1960,Invalid,Caribbean sea,Unknown,"Between Key West, Florida & Guantanamo Bay, Cuba",Aircraft crashed into sea,"male, airline pilot",M,"Questionable. Recovered flight gear was ""completely shredded by sharks"" but pilot may have died when plane hit the water,",N,U.S. Naval Aviation Safety Center,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.h-aircraft.pdf +2192,1960.00.00.g,Late 1960s,1960,Unprovoked,Sri lanka,Eastern Province,Pigeon Island,Spearfishing,Trevor Ferdinands,M,No injury,N,R I. DeSilva,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.g-Ferdinands.pdf +2191,1960.00.00.f,1960s,1960,Unprovoked,Sri lanka,Eastern Province,"Manayaweli Cove, Trincomalee",Collecting ornamental fish,Rodney Jonklass,M,"No injury, beat off shark with his collecting net",N,R I. DeSilva,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.f-Jonklaas.pdf +2190,1960.00.00.e,1960-1961,1960,Unprovoked,Fiji,Northwest of Viti Levu,"Covull Reef, near Lautoka",Spearfishing,Lindsay Phillips,M,"Right arm abraded, circular piece of tissue removed from left calf",N,V.M Coppleson (1962),p.253,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.e-Phillips.pdf +2189,1960.00.00.d,1960,1960,Unprovoked,Papua new guinea,Madang,Unknown,"Spear fishing, removing fish from spear",Sek,M,"FATAL, foot severed, hip bitten",Y,A.M. Rapson,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.d-Sek.pdf +2188,1960.00.00.c,1960,1960,Unprovoked,Papua new guinea,West New Britain Province,"West Nakanai, Talasea",Fishing,male,M,Slight lacerations to leg,N,A.M. Rapson,p.150,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.c-Talasea.pdf +2187,1960.00.00.b,Ca. 1960,1960,Unprovoked,Mozambique,Gaza,Xai Xai,Swimming,Miss Fillardo,F,FATAL,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.b-Fillardo.pdf +2186,1960.00.00.a,Ca. 1960,1960,Unprovoked,South africa,Eastern Cape Province,Kei River Mouth,Wading,Joyce Greig,F,"Heel lacerated, hand lacerated & abraded",N,T. Greig,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.a-Greig.pdf +2185,1959.12.29,29-Dec-59,1959,Boat,Australia,Queensland,Scotts Point Beach ,Paddling,"12' ski, occupants: Bill Dyer & Cliff Burgess ",Unknown,No injury to occupants,N,Herald,(Redcliffe),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.29-Burgess-Dyer.pdf +2184,1959.12.28,28-Dec-59,1959,Boat,Australia,New South Wales,"Leichardt, Sydney",Fishing,"plywood dinghy, occupants: Jack Deegan & Trevor Millett",Unknown,No injury to occupants,N,Daily Mirror (Sydney),12/29/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.28-NV-Deegan-dinghy.pdf +2183,1959.12.26,26-Dec-59,1959,Unprovoked,Papua new guinea,Rigo subdistrict,Kaparoka,Swimming underneath house on pilings,Manama Mari,Unknown,"FATAL, right leg severed",Y,A. M. Rapson,p.150; P. Gilbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.26-Mari.pdf +2182,1959.12.19.b,19-Dec-59,1959,Unprovoked,Australia,Queensland,"Off Wynnum in Moreton Bay, near Brisbane",Dived from dinghy to retrieve oar in heavy seas,Stanley Arthur Mullen,M,FATAL,Y,P. Gilbert,L. Schultz & S. Springer (1960); V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.b-Mullens.pdf +2181,1959.12.19.a,19-Dec-59,1959,Sea Disaster,Philippines,Masbate,Balud,ship M.V. Rizal sank during typhoon,"Mamerto Daanong, Tomas Inog & others",M,"65 people survived, 27 perished. Several people were bitten & one man lost his leg to a shark.",Y,V.M. Coppleson (1962),p.259 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.a - MV-Rizal.pdf +2180,1959.12.11,11-Dec-59,1959,Provoked,Australia,Victoria,"Altona, Melbourne","Spearfishing, Smith & Walker touched shark with tip of their guns",Barry Smith & Harold Walker,M,"Smith hit by tail of shark, Walker sustained cuts on his wrist PROVOKED INCIDENT",N,V.M. Coppleson (1962),p.252;,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.11-Smith-Walker.pdf +2179,1959.12.07,07-Dec-59,1959,Invalid,Australia,South Australia,Laura Bay,Spearfishing,3 males,M,"No injury, shark made threat display, one diver shot shark in jaw, then they killed shark with knives ",N,V.M. Coppleson (1962),p.252,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.07-LauraBay.pdf +2178,1959.12.03,03-Dec-59,1959,Boat,New zealand,North Island,Moko Hinau ,Fishing for snapper,"dinghy, occupant: Don Ashton",M,"No injury to occupant, shark sank dinghy",N,Captain C. Morris,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.03-boat-Ashton.pdf +2177,1959.12.00,Dec-59,1959,Sea Disaster,Maldive islands,400 miles southeast of Sri Lanka,Unknown,17 Maldivians adrift in open boat for 31 days,child,F,FATAL,Y,Dundee Evening Telegraph,12/12/1959; P. Gilbert; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.00.a-b-Maldivians.pdf +2176,1959.11.29,29-Nov-59,1959,Unprovoked,Australia,Victoria,"Fairhaven Beach, Lorne",Body surfing,Christopher Holland,M,"Thighs bitten, right hand lacerated",N,Evening Star (Washington,D.C.),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.29-Holland.pdf +2175,1959.11.28,28-Nov-59,1959,Unprovoked,Australia,Queensland,"North Burleigh, near Brisbane",Standing in chest-deep water,David Beaver,M,Right foot lacerated,N,Sunday Mail (Brisbane),11/29/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.28-Beaver.pdf +2174,1959.11.22,22-Nov-59,1959,Unprovoked,Australia,Queensland,"Surfer's Paradise, Northcliffe",Trailing the field in a surf race,Jeffrey Francis Sasche (or Sachse),M,"Lower left leg bittten, hand abraded",N,Daily Mirror (Sydney) 11/23/1959; G.P. Whitley; P. Gilbert,L. Schultz & S. Springer (1960); J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.22-Sachse.pdf +2173,1959.11.16,16-Nov-59,1959,Invalid,Usa,Louisiana,120 miles southeast of New Orleans,National Airlines DC7B enroute from Miami to Los Angeles with 42 or 46 people on board went down in heavy fog,All on board perished in the crash,Unknown,Body recovery efforts were hampered by large sharks but sharks did not cause the deaths. ,Y,Washington Post,11/17/1959; SAF Case #591,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.16-AircraftDC7B.pdf +2172,1959.11.15,15-Nov-59,1959,Boat,South africa,Western Cape Province,"Swartklip, False Bay",Fishing for tunny,"boat Sea Hawk, occupants: R. Roberts & 4 others",Unknown,R. Roberts' leg was bruised when shark leapt into boat,N,East London Dispatch,11/16/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.15-SeaHawk.pdf +2171,1959.11.12.R,12-Nov-1959,1959,Provoked,Australia,South Australia,Near Port Vincent,Shark fishing,24' yacht owened by C.L. Whitrow,Unknown,"No injury to occupant, hull bitten PROVOKED INCIDENT",N,Advertiser (Adelaide),11/12/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.12.R-Whitrow-yacht.pdf +2170,1959.11.10,10-Nov-59,1959,Unprovoked,Usa,California,"Near Paradise Cove, Malibu, Los Angeles County",Swimming at surface through school of feeding 2.5' to 5’ sharks,Duffie Fryling,M,Forearm bitten,N,D. Miller & R. Collier; R. Collier,pp.26-27; P. Gilbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.10-Fryling_Collier.pdf +2169,1959.11.09,09-Nov-59,1959,Provoked,Australia,Western Australia, Perth,"Spearfishing, shot shark, hauled it onto boat",Ian Marks,M,"No injury. Diver shot shark, then shark tore legs of his rubber suit, water poured in & swept out to sea by strong rip current PROVOKED INCIDENT",N,Perth Daily News,4/19/1961; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.09-Marks.pdf +2168,1959.11.01,01-Nov-59,1959,Provoked,Papua new guinea,New Britain,"Rapindik Beach, Rabaul",Fishing,male,M,Both hands bitten while helping companion land speared shark PROVOKED INCIDENT,N,A. M. Rapson,p.147,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.01-Rabaul.pdf +2167,1959.10.07,07-Oct-59,1959,Unprovoked,Mozambique,Maputo Province,"Xefina Island, Bay of Maputo",Swimming,a Portuguese soldier,M,"FATAL, died in Lourenco Marques Hospital",Y,M. Levine,GSAF; The Star (Johannesburg),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.07-PortugueseSoldier.pdf +2166,1959.10.05,05-Oct-59,1959,Unprovoked,Papua new guinea,Madang,Taludig,Unknown,Anonymous,Unknown,Thigh bitten,N,A.M. Rapson,p.150; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.05-PapuaNewGuinea.pdf +2165,1959.10.04,04-Oct-59,1959,Unprovoked,Usa,California,"Bodega Rock, Sonoma County",Diving for abalone,James Hay,M,"Ankle twisted, swim fin bitten",N,San Francisco Chronicle,10/7/1959n; D. Miller & R. Collier; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.04-JamesHay_Collier.pdf +2164,1959.10.02,02-Oct-59,1959,Unprovoked,Fiji,Lomaiviti Province,"Levuka, Ovalau Island",Dived overboard to retrieve dinghy,"male, Fijian cook of vessel Andi Tui Lomaloma",M,"FATAL, body not recovered",Y,V.M. Coppleson; P. Gilbert,L. Schultz & S. Springer (1960),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.02-FijianCook.pdf +2163,1959.10.00,Oct-59,1959,Unprovoked,Fiji,Kadavu,Great Astrolabe Reef,Spearfishing,Etuate Waqa,M,forearm abraded,N,S.B. Brown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.00-Etuate.pdf +2162,1959.09.30,30-Sep-59,1959,Unprovoked,Philippines,Leyte Island,Luang Dulag,Swimming ,Francisco Daguinot,M,"No details, survived",N,Manila Times,10/2/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.30-Daguinot.pdf +2161,1959.09.27,27-Sep-59,1959,Invalid,Bermuda,Hamilton,Astwood's Cove,Unknown,Dorothy Barbara Rawlinson,F,"Murdered, body scavenged by sharks",Y,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.27-Rawlinson.pdf +2160,1959.09.26.b,26-Sep-59,1959,Sea Disaster,Usa,Florida,"Off Port Everglades, Broward County","Adrift, hanging onto cushion, after his 17' skiff ran out of gas & capsized 3 miles from shore",Robert Walker,M,"During the night both hands and feet were bitten, rescued next day after spending 17 hours in the sea.",N,St Petersberg Times,9/27/1959; NY Herald Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.b-Walker.pdf +2159,1959.09.26.a,26-Sep-59,1959,Boat,Usa,South Carolina,"Albergotti Creek, near Air Station boat docks, Beaufort",Gigging for flounder,"12' boat. Occupants: Capt. E.J. Wines, Maj. W. Waller & Larry Waller",Unknown,Unknown,N,Gazette (Beaufort,SC),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.a-Wines.pdf +2158,1959.09.11,Between 10 and 12-Sep-1959,1959,Boat,Usa,California,"Between False Klamath & mouth of Klamath River, Del Norte County",Pulling hooked salmon to boat,12 m fishing boat. Occupant: Henry Tervo,Unknown,"No injury to occupant, shark struck stern of boat",N,R. Collier,p.172,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.11-Tervo.pdf +2157,1959.09.10.R,10-Sep-1959,1959,Unprovoked,India,Orissa,Machhagan,Unknown,Unknown,Unknown,"5 fatalities, 30 injured",Y,Times of India,9/10/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.10.R-India.pdf +2156,1959.09.02,02-Sep-59,1959,Invalid,Usa,New York,"Oak Beach, Fire Inlet",On inflatable raft,male,M,No injury,N,H.D. Baldridge (1994) SAF Case #506,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.02-NV-InflatableRaft.pdf +2155,1959.09.00,Sep-59,1959,Unprovoked,Mexico,Guerrrero,Acapulco,Unknown,French woman,F,"FATAL, leg severed, other leg lacerated ",Y,A. R. Satz; P. Gilbert,L. Schultz & S. Springer (1960),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.00-French-woman.pdf +2154,1959.08.31.R,31-Aug-1959,1959,Boat,Azores,Unknown,Sao Miguel,Fishing,40' bonito boat,Unknown,No injury to occupants; shark bit rudder,N,A. Cordeiro,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.31.R-Azores.pdf +2153,1959.08.30,30-Aug-59,1959,Invalid,Australia,Tasmania,Unknown,Swimming,Ron Cox,M,No injury,N,C. Black; H.D. Baldridge (1994) ISAF Case #654,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.30-Cox.pdf +2152,1959.08.25,25-Aug-59,1959,Invalid,Japan,Hokkaido Prefecture,"Okushiri Island, Hiyama Subprefecture",Unknown,Masami Fukushi,M,Survived (no injury?),N,"K. Nakaya (1993); H.D. Baldrige. Note: Recorded as ""Doubtful"" by Schultz and Malin",,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.25-Fukushi.pdf +2151,1959.08.20,20-Aug-59,1959,Invalid,Philippines,North Palawan,Cabuli Island,The 240-ton motor vessel Pilar II with 100 people on board capsized in high winds & rough seas,boy,M,"Navy personnel reported that his body was ""mutilated by sharks"" but it is probable that death resulted from drowning",Y,Manila Daily,8/26/1959; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.20-PilarII.pdf +2150,1959.08.15.b,15-Aug-59,1959,Invalid,Usa,Florida,"Panama City, Bay County",Diving,Gary Seymour,M,No injury,N,H. D. Baldridge (1994),"SAF Case #440 listed incident as ""Questionable""",http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.b-Seymour.pdf +2149,1959.08.15.a,15-Aug-59,1959,Unprovoked,Usa,Florida,"Panama City, Bay County",Spearfishing on Scuba,Lt. James C. Neal,M,"FATAL, disappeared, dive gear & clothing found with teethmarks, presumed taken by a shark ",Y,Washington Post,8/17/1959; P. Gilbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.a-Neal.pdf +2148,1959.08.14.b,14-Aug-59,1959,Provoked,Usa,South Carolina,Charleston,Fishing,Arthur Wright,M,Laceration to forearm by boated shark PROVOKED INCIDENT,N,Washington Post,8/16/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.b-Wright.pdf +2147,1959.08.14.a,14-Aug-59,1959,Sea Disaster,Philippines,Queaon,Between Unisan & Angadanan Islands,Fishing boat capsized ,15 shipwrecked passengers and crew were in the water,Unknown,"10 of the 15 people perished, bodies of some who drowned were scavenged by sharks",Y,Manila Chronicle,8/18/1959; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.a-Fishingboat.pdf +2146,1959.08.13,13-Aug-59,1959,Provoked,Usa,California,"LaJolla, San Diego County","Spearfishing with Joe Turner (24). Shark attracted to speared halibut on belt of one diver, tried to bite Ide’s speargun & he shot it in the mouth",Don Ide,M,"No injury, PROVOKED INCIDENT",N,Independent,8/14/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.13-Ide-Turner.pdf +2145,1959.08.12,12-Aug-59,1959,Provoked,Croatia,Istria,Pula,Fishing,Narcisco Tomaz,M,Laceration to arm PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.12-Tomaz.pdf +2144,1959.08.11,11-Aug-59,1959,Unprovoked,Japan,Wakayama Prefecture,"Isonoura Beach, Wakayama City ",Swimming,Akira Tuchiya,M,"FATAL, left thigh bitten",Y,H. Kariya &T. Abe; P. Gilbert,L. Schultz & S. Springer (1960); K. Nakaya,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.11-Tsuchiya.pdf +2143,1959.08.10,10-Aug-59,1959,Unprovoked,Usa,Georgia,"Savannah Beach, Savannah, Chatham County",Standing,Elizabeth Fields,F,"4"" cut on left foot ",N, McCutcheon; News (Savannah) 8/18/1959 ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.10-Fields.pdf +2142,1959.08.05,05-Aug-59,1959,Invalid,Usa,California,"Hermosa Beach, Los Angeles County",Wading,Charles H. Hill,M,"No injury, no attack, the shark merely circled him.",N,Independent,8/6/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.05-Hill.pdf +2141,1959.08.02,21764,1959,Invalid,Italy,Tuscany,"Cala del Corvo, Isola del Giglio",Scuba diving,Karl Pollerer & Eric Eisesenid,M,Probable drowing. Shark involvement unconfirmed,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.02-Giglio.pdf +2140,1959.07.30,30-Jul-59,1959,Provoked,Usa,California,"In kelp beds off La Jolla, San Diego County",Pulling anchor,"4.3 m skiff: occupants: James L. Randles, Jr. & James Myers",Unknown,"No injury to occupants, shark charged boat after being shot twice with pistol and speared PROVOKED INCIDENT",N,LA Times,7/31/1959 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.30-Randles_Collier.pdf +2139,1959.07.28,28-Jul-59,1959,Unprovoked,Usa,California,"Alligator Head, La Jolla, San Diego County",Spearfishing (but on surface),Verne S. Fleet,M,"14 punctures on right thigh, swim trunks torn",N,D. Miller & R. Collier; R. Collier,pp.24-25; Garrick & L. Schultz,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.28-Fleet_Collier.pdf +2138,1959.07.25.b,25-Jul-59,1959,Unprovoked,Japan,Okayama Prefecture,Ushimado,Unknown,Hideo Ishida,M,"FATAL, right thigh bitten ",Y,M. Hosina; K. Nakaya; L. Schultz & M. Malin,p.539,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.b-Ishida.pdf +2137,1959.07.25.a,25-Jul-59,1959,Boat,Usa,California,"Mission Beach, San Diego County",Unknown,"boat, occupant Robert Agnew",Unknown,No injury to occupant,N,San Diego Union,7/26/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.a-Agnew.pdf +2136,1959.07.23.b,23-Jul-59,1959,Boat,Usa,California,"Off La Jolla Cove, San Diego County",Fishing,15-foot boat: occupant Woodrow Smith,Unknown,"No injury to occupant, shark rammed boat",N,Herald Express (L.A.),7/25/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.b-WoodrowSmith.pdf +2135,1959.07.23.a,23-Jul-59,1959,Provoked,Usa,California,"Venice Beach, Los Angeles County",Dragging stranded shark ashore,Rudy Gietel,M,"Gietel grabbed the shark's tail, the shark lacerated his right ankle PROVOKED INCIDENT",N,Herald Express (L.A.),7/25/1959 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.a-Geitel.pdf +2134,1959.07.03.a & b,03-Jul-59,1959,Sea Disaster,Caribbean sea,PANAMA,"Off Cristobal, 200 miles northeast of the entrance to the Panama Canal",Columbian petrol barge Rio Atrato burned and sank,Teresea Britton (on raft) & a man (on floating debris),Unknown,"FATAL X 2, 8 others missing. Survivors fought off sharks & sharks seen biting 2 of the dead. The 39 survivors were rescued by the German freighter Essen",Y,Cambridge Daily News,7/4/1959; V. M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.03-Rio-Atranto.pdf +2133,1959.07.02,02-Jul-59,1959,Provoked,Usa,Florida,"Delray Beach, Palm Beach County",Free diving,King Scherer,M,Arm bitten when he grabbed shark’s tail PROVOKED INCIDENT,N,Miami Herald,7/3/1959; Garrick & L. Schultz,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.02-Scherer.pdf +2132,1959.07.00.b,Late Jul-1959,1959,Boat,North atlantic ocean,In the Gulf Stream ,Between Bimini & Miami,Unknown,"17' boat, occupant: Richard Wade",Unknown,"No injury to occupant, shark bit propeller as Wade was refueling",N,J. Randall in Sharks & Survival,p.356,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.b-boat-R-Wade.pdf +2131,1959.07.00.a,Jul-59,1959,Unprovoked,Mexico,Quintana Roo,Chinchorro Banks,Wading,Lobster fishermen x 2,M,"FATAL, legs bitten ",Y,C.G. Robles,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.a-Lobster-fishermen.pdf +2130,1959.06.26.R,26-Jun-1959,1959,Unprovoked,Turkey,Mersin Province,Off Mezitli,Unknown,Yitzhak Steinberg,M,Leg injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.26.R-Steinberg.pdf +2129,1959.06.14.b,14-Jun-59,1959,Unprovoked,Mexico,Guyamas,San Pedro Nolasco Island,Swimming ashore from capsized boat,Francisco R. Topete,M,FATAL,Y,Miami Herald,6/15/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.b-Topete.pdf +2128,1959.06.14.a,14-Jun-59,1959,Unprovoked,Usa,California,"La Jolla, San Diego County",Free diving for abalone,Robert Pamperin,M,"FATAL, body not recovered",Y,D. Miller & R. Collier; R. Collier,pp. 21-24 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.a-Pamperin_Collier.pdf +2127,1959.06.13,13-Jun-59,1959,Invalid,Usa,California,"Dillon Beach, Marin County",Swimming ,T. McNeill,Unknown,"Disappeared after diving in “deep hole”, body not recovered, “presumed taken by a shark” ",Y,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.13-McNeill.pdf +2126,1959.05.30,30-May-59,1959,Provoked,South africa,Eastern Cape Province,"Bird Island, Algoa Bay",Spearfishing,Tony Dicks,M,"No injury, diver shot shark & it bit his speargun PROVOKED INCIDENT",N,C. Middleton; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.30-TonyDicks.pdf +2125,1959.05.16,16-May-59,1959,Unprovoked,Usa,Florida,"Indian Rocks Beach, Clearwater, Pinellas County",Unknown,June Goldback,F,Minor injuries,N,V.M. Coppleson (1962),p.249; Miami News,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.16-Goldback.pdf +2124,1959.05.07,07-May-59,1959,Unprovoked,Usa,California,"Baker Beach, San Francisco County",Treading water,"Albert Kogler, Jr.",M,"FATAL, left arm bitten, right arm partly severed, deep lacerations of left shoulder & chest ",Y,P. Gilbert,L. Schultz & S. Springer (1960); D. Miller & R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.07-Kogler_Collier.pdf +2123,1959.05.03,03-May-59,1959,Unprovoked,Usa,Florida,"Panama City, Bay County",Spearfishing,Ernest Grover,M,Lacerated hip & hands,N,Miami Herald,5/5/1959; T. Helm,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.03-Grover.pdf +2122,1959.05.00,May-59,1959,Unprovoked,Mid atlantic ocean,Between England & South Africa,Unknown,Jumped overboard to rescue a man,Charles Green,M,Leg bitten,N,Golden City Post (South Africa),6/7/1959; P. Gilbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.00-Green.pdf +2121,1959.04.27,27-Apr-59,1959,Invalid,Australia,New South Wales,Maroubra Bay,Spearfishing,Peter Holland,M,Thigh lacerated,N,V.M. Coppleson (1962),p.251; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.27-Holland.pdf +2120,1959.04.11,11-Apr-59,1959,Unprovoked,Australia,Torres Strait,"Coconut Island , 100 miles east of Thursday Island",Diving for pearl shell,"Jimmy Pearson, a Torres Strait Islander",M,Left hand lacerated when he tried to ward off shark,N,G.P. Whitley ref. Sydney Morning Herald,4/13/1959; P. Gilbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.11-Pearson.pdf +2119,1959.04.09.b,09-Apr-59,1959,Unprovoked,Usa,Hawaii,"Hilo, off Kaua'i",Fishing,male,M,Survived,N,V.M. Coppleson (1962),p.246,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.b-Fisherman.pdf +2118,1959.04.09..a,09-Apr-59,1959,Unprovoked,South africa,Eastern Cape Province,Port Elizabeth ,Fishing,male,M,2 toes bitten off ,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.a-Fisherman.pdf +2117,1959.04.05,05-Apr-59,1959,Unprovoked,Australia,New South Wales,Thirroul,Spearfishing,Jeff McAuley,M,Swim fin bitten,N,P. Gilbert,L. Schultz & S. Springer (1960),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.05-McAuley.pdf +2116,1959.03.29,29-Mar-59,1959,Unprovoked,Usa,Florida,"Vaca Cut Channel & bridge under Marathon, Monroe County",Swimming,James McKee,M,"Bumped, then knee bitten",N,Florida Keys Keynoter,4/2/1959; Dr. H. S. Denniger; Note: V.M. Coppleson (1962) lists date of May 1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.29-McKee.pdf +2115,1959.03.08,08-Mar-59,1959,Unprovoked,Philippines,Mindanao,"Mouth of Langoyan River, Davao City",Lifeboat capsized,"Leopoldo Sanchez, a messboy from the ship MV Maripaz",M,"FATAL, body not recovered",Y,Manila Chronicle,3/10/1959; P. Gilbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.08-Sanchez.pdf +2114,1959.03.00,Mar-59,1959,Boat,Usa,Florida,Miami,"On boat, preparing to dive",R.P. Straughan,M,Boat followed shark; shark holed boat,N,R.P.L. Straughan; R.F. Hutton; T. Helm,p.241;,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.00-Straughan.pdf +2113,1959.02.28,28-Feb-59,1959,Boat,Australia,Victoria,Port Phillip Bay,Fishing for snapper,14' open boat: occupants Richard Crew & Bob Thatcher,M,"No injury to occupants. Shark leapt into boat, momentarily pinning Crew against the side",N,West Australian,3/1/1959; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.28-boat-Crew-Thatcher.pdf +2112,1959.02.27,27-Feb-59,1959,Unprovoked,Venezuela,Nueva Esparta,Margarita Island,Fell into water while attempting to boat a swordfish,Roland Gerbeau,M,Left arm bitten,N,P. Gilbert,L. Schultz & S. Springer (1960),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.27-Gerbeau.pdf +2111,1959.02.06,16-Feb-59,1959,Provoked,Papua new guinea, Kikori River mouth,"Ururumba, mouth of Kikori River 7.45S, 144.40E",Fishing,male,M,Arm bitten by shark that he thought was dead PROVOKED INCIDENT,N,T. Ingledew,Medical Assistant; A. M Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.06-Ururumba.pdf +2110,1959.02.02,02-Feb-1959 ,1959,Unprovoked,Solomon islands,Guadalcanal Province,"Trench’s Beach, Guadalcanal Island",Bathing with sister,Donald Battye or David James Battye,M,"FATAL, body not recovered",Y,Note: V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.02-Battye.pdf +2109,1959.02.01,01-Feb-59,1959,Unprovoked,South africa,KwaZulu-Natal,Port Shepstone,Treading water,Raymond Vermaak,M,Leg severed below knee,N,R. Vermaak,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.01-Vermaak.pdf +2108,1959.01.31,31-Jan-59,1959,Unprovoked,Australia,Western Australia,South Perth,Working prawn net,George E. Rudd,M,Shark’s tail grazed his shin,N,West Australian (Perth),* Sunday Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.31-Rudd.pdf +2107,1959.01.27,27-Jan-59,1959,Unprovoked,Ecuador,Galapagos Islands,Crewing on the tuna clipper Mary Barbara,Washed overboard into school of fish,Theodore C. Swienty,M,Right leg & left foot lacerated,N,NY World -Telegram & Sun,1/28/1959; Note: V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.27-Swienty.pdf +2106,1959.01.25,25-Jan-59,1959,Unprovoked,Australia,Tasmania,"Whale Bay, King Island, Bass Strait",Swimming with motor tube,John Grave,M,Thigh bitten,N,C. Black,GSAF; Launceston Examiner (Tasmania) 1/26/1959; P. Gilbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.25-Grave.pdf +2105,1959.01.17.b,17-Jan-59,1959,Unprovoked,Australia,Tasmania,Safety Cove,In deep water about 100 yards from his ship,"Brian Derry, a Naval Rating",M,FATAL,Y,Odessa American,1/19/1959; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.b-Derry.pdf +2104,1959.01.17.a,17-Jan-59,1959,Unprovoked,Australia,Queensland,Alexandra Headland near Mooloolaba,"Surfing, but treading water",Peter John Neil,M,Right foot & toe bitten,N,Sun Herald (Sydney) 1/18/1959; P. Gilbert,L. Schultz & S. Springer(1960); J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.a-Neil.pdf +2103,1959.01.15,15-Jan-59,1959,Unprovoked,South africa,Western Cape Province,Melkbaai,Swimming,Fanie Schreuder,M,Thigh & both wrists lacerated,N,Cape Times,1/16/1959 et al,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.15-Schreuder.pdf +2102,1959.01.12,12-Jan-59,1959,Unprovoked,New guinea,Milne Bay Province,"Uga, Banaira, Milne Bay",Dragging banana seeds through the shallows,male,M,Left calf & right thigh bitten,N,A.M. Rapson,p.149; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.12-Uga.pdf +2101,1959.01.02,02-Jan-59,1959,Unprovoked,Mozambique,Maputo Province,Off Inhaca Island,Swimming ashore from fishing boat swamped and sunk by a squall,Eric Suttie & Peter Murray,M,"Suttie's lower abdomen was bitten, Murray disappeared (presumed drowned)",Y,M. Levine,GSAF; Cape Argus 1/3/1959; Natal Mercury,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.02-Suttie.pdf +2100,1959.01.00,Jan-59,1959,Unprovoked,Australia,Tasmania,Badger Head,Spearfishing / free diving,male,M,Abrasion,N,Malcolm G. Hooper; L. Schultz & M. Malin,p.527,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.00-BadgerHead.pdf +2099,1959.00.00.g,Summer of 1959,1959,Unprovoked,South korea,South Chungcheong Province,"36º17'N, 126º31'E",Swimming,male,M,FATAL,Y,Y. Choi & K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.g-SouthKorea.pdf +2098,1959.00.00.f,Jul- to Sep-1959,1959,Unprovoked,India,Orissa,Mouth of Devi River at Machgaon,Unknown,Unknown,Unknown,"5 people killed by sharks, 30 others injured",Y,Reported byTimes of India,11 September 1959; V.M. Coppleson (1952),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.f-India.pdf +2097,1959.00.00.e,1959,1959,Provoked,Unknown,Unknown,Unknown,Paddling & sailing from Buenos Aires to Miami,Mirco Tapavica,M,Hooked shark bit his arm PROVOKED INCIDENT,N,New York Times,1/29/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.e-Tapavica.pdf +2096,1959.00.00.d,1959,1959,Unprovoked,Papua new guinea,West New Britain Province,"Poi, Kombe Talasea",Spear fishing,male,M,Minor injuries,N,A.M. Rapson,p.150; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.d-Poi.pdf +2095,1959.00.00.c,1959,1959,Unprovoked,Papua new guinea,West New Britain Province,"Kalapiai, Kombe",Fishing,male,M,Minor injuries,N,A.M. Rapson,p.150,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.c-Kalapiai.pdf +2094,1959.00.00.b,1959,1959,Unprovoked,Papua new guinea,"New Ireland Province, Bismarck Archipelago","Enuk Island, Kavieng",Unknown,Pasinganlas,M,"FATAL, abdomen & leg bitten ",Y,J. McLachlan,Medical Officer,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.b-Pasinganlas.pdf +2093,1959.00.00.a,1959,1959,Provoked,Papua new guinea,Morobe Province,Unknown,Fishing,male,M,Penis bitten while trying to drag speared shark to beach PROVOKED INCIDENT,N,A.D. Campbell; A.M. Rapson,p.147,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.a-Morobe.pdf +2092,1958.12.28,28-Dec-58,1958,Boat,Turkey,Ahirkapi coast,Constantinople,Fishing,Fishing boat. Occupants: Yunus Potur & Ali Durmaz,Unknown,Boat damaged,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.28-Constantinople.pdf +2091,1958.12.27,27-Dec-58,1958,Unprovoked,Papua new guinea,Madang Province,Taludig,Unknown,Anonymous,Unknown,Hip bitten,N,A.M. Rapson,p.149; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.27-Taludig.pdf +2090,1958.12.23,23-Dec-58,1958,Unprovoked,South africa,Western Cape Province,"Melkbaai, False Bay",Swimming,Barry Geldenhuys,M,FATAL,Y,1/16/1959,Cape Argus; G. Wilson; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.23-Geldenhuys.pdf +2089,1958.12.13,13-Dec-58,1958,Unprovoked,Usa,Hawaii,"Near Twin Islands off Lanikai, O'ahu (east coast)",Surfing on air mattress,William S. Weaver,M,"FATAL, leg severed ",Y,A. L. Tester,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.13-Weaver.pdf +2088,1958.12.12,12-Dec-58,1958,Unprovoked,American samoa,Tutuila Island,Van Camp wharf,Cleaning hull of ship ,Sailor of tuna vessel No.12 Taiyo Marei,M,"FATAL, left thigh & hip bitten ",Y,M. Hosina,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.12-Samoa.pdf +2087,1958.11.23,23-Nov-58,1958,Unprovoked,Australia,Queensland,Surfer's Paradise,Swimming,Peter Gerard Spronk,M,FATAL,Y,V.M. Coppleson (1962),p.245; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.23-Spronk.pdf +2086,1958.11.14,14-Nov-58,1958,Invalid,South africa,Western Cape Province,False Bay,Fishing,male,M,"No injury, shark leapt at him",N,Clipping dated 11/15/1958,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.14-FalseBayFisherman.pdf +2085,1958.11.07.R,07-Nov-1958,1958,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province","M'Buke, south of Manus Island",Spearfishing,native boy,M,"FATAL, left arm & leg severed ",Y,A.M. Rapson,p.149; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.07.R-MbukeIsland.pdf +2084,1958.11.05,05-Nov-58,1958,Boat,Usa,California,"Pacific Beach, San Diego County",Fishing,"4.3 m skiff, occupant: Bob Shay",Unknown,"No injury to occupant, shark chasing barracuda tied to the stern rammed skiff & slashed the motor",N,C. Limbaugh,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.05-boat-Shay.pdf +2083,1958.10.12,12-Oct-58,1958,Unprovoked,Usa,California,"Coronado Strand, San Diego County",Swimming near jetty,John Allman,M,"Left arm, hips & leg lacerated",N,Los Angeles Times,10/13/1958; D. Miller & R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.12-Allman_Collier.pdf +2082,1958.10.05,05-Oct-58,1958,Unprovoked,Usa,Florida,"Baker's Haulover, Miami Beach",Unknown,Lytton Evans,M,No injury,N,R.F. Hutton citing Miami Herald Newspaper Library,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.05-Evans.pdf +2081,1958.10.00.b,Oct-58,1958,Provoked,Mexico,Guerrrero,Acapulco,Slapped shark on tail as it swam by,male,M,Shark turned & severed his leg PROVOKED INCIDENT,N,Washington Evening Star,6/17/1959; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.b-Acapulco.pdf +2080,1958.10.00.a,Oct-58,1958,Unprovoked,Papua new guinea,West New Britain Province,"East Nakanai, Talasea",Collecting shells,male,M,Leg & foot injured,N,A.M. Rapson,p.149,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.a-EastNakanai.pdf +2079,1958.09.13,13-Sep-58,1958,Unprovoked,Unknown,Unknown,Unknown,"""Climbing up to ship after repairing the stern in water""",Sailor of tuna vessel Daisan-Tenyo-Maru,M,"FATAL, leg bitten ",Y,M. Hosina,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.13-sailor.pdf +2078,1958.09.06,06-Sep-58,1958,Unprovoked,Bahamas,Cat Cay,off yacht Serenade,Fishing,James Douglas Munn,M,Right forearm lacerated,N,Miami Herald,9/6/1958 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.06-Munn.pdf +2077,1958.09.01,01-Sep-58,1958,Provoked,Usa,New York,Staten Island,Spearfishing,John Leszczak,M,Bitten by harpooned shark PROVOKED INCIDENT,N,Baltimore Evening Sun,9/2/1958 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.01-Leszczak.pdf +2076,1958.08.31,31-Aug-58,1958,Boat,Mexico,Baja California,Ensenada,Boat stopped to repair electric pump,16' cabin cruiser with 35 hp outboard motor,Unknown,Shark tried to bite prop twice,N,G.A. Llano,pp.176-177,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.31.a-NV-Ensenada.pdf +2075,1958.08.01,01-Aug-58,1958,Unprovoked,Croatia,Primorje-Gorski Kotar County,Moš?eni?ka Draga,Swimming,Hilda Keller,F,Leg injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.01-Keller.pdf +2074,1958.07.31.R, 31-Jul-1958,1958,Unprovoked,Mexico,Guerrero,"Caleta Beach, Acapulco",Swimming,Suzanne Dreufus,F,FATAL,Y,Miami Herald,8/2/1958 reported this was the second fatality at this resort this month,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.31-Dreufus.pdf +2073,1958.07.27.b,27-Jul-58,1958,Unprovoked,Usa,Florida,"9 miles north of Turtle Beach, Siesta Key, Sarasota County","Swimming, ducking for shells in water 0.9 m deep",Robert Lawton (brother & rescuer),M,3 lacerations on leg,N,E. Clark; M. Vorenberg; R. Skocik,pp.173-174; V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.b-RobertLawton.pdf +2072,1958.07.27.a,27-Jul-58,1958,Unprovoked,Usa,Florida,"Longboat Key, Sarasota, Sarasota County","Swimming, ducking for shells in water 0.9 m deep",Douglas Lawton,M,"Left hand and leg bitten, leg surgically amputated below hip",N,E. Clark (1960); M. Vorenberg; R. Skocik,pp.173-174; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.a-DouglasLawton.pdf +2071,1958.07.10,10-Jul-58,1958,Unprovoked,Usa,Florida,"Key West, Monroe County",Unknown,Angel B. Escartin,M,FATAL Autopsy report: bitten by shark while still alive,Y,R. F. Hutton; T. Helm,p.239,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.10-Escartin.pdf +2070,1958.07.08, 08-Jul-1958,1958,Unprovoked,Kenya,Coast Province,Port Kilindeni / Mombasa Harbor,Swimming,"Tahei Nakatani, a Japanese seaman from the fishing vessel Seiju Maru",M,"FATAL, leg severed ",Y,Natal Mercury,7/9/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.08-Nakatani.pdf +2069,1958.07.04.b,04-Jul-58,1958,Sea Disaster,Pacific ocean,Between Hawaii & Wake Island,600 miles northwest of Honolulu,U.S. Airforce C124 enroute from Hickham Air Base to Japan went down. The 3 survivors fashioned raft from mailbags & were rescued 3 days after the crash.,"Roy A. Robinson, Sr.",M,FATAL,Y,Evening Star (Washington D.C.),7/7/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.b-Robinson.pdf +2068,1958.07.04.a,04-Jul-58,1958,Sea Disaster,Pacific ocean,Between Hawaii & Wake Island,600 miles northwest of Honolulu,U.S. Airforce C124 enroute from Hickham Air Base to Japan went down. The 3 survivors fashioned raft from mailbags & were rescued 3 days after the crash.," Captain Jonathan Brown, pilot ",M,Left shoulder bitten ,N,Evening Star (Washington D.C.),7/7/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.a-Brown.pdf +2067,1958.07.02,02-Jul-58,1958,Provoked,Usa,Florida,"Siesta Key, Sarasota County",Free diving,John Hamlin,M,"He grabbed shark, it bit his leg below the knee PROVOKED INCIDENT",N,E. Clark; H. D. Baldridge,p.26,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.02-Hamlin.pdf +2066,1958.07.01,01-Jul-58,1958,Unprovoked,Papua new guinea,"New Ireland Province, Bismarck Archipelago","Maritzoan, east coast of Namatanai",Swimming, Toapindak (male),M,"FATAL, left arm severed ",Y,Dept of Public Health,Namatani; A. M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.01-Toapindak.pdf +2065,1958.07.00.b,Jul-58,1958,Unprovoked,Bahamas,Abaco Islands,North of Walkers Cay,"Spearfishing, had fish on his spear",Stanton Waterman,M,"No injury, shark went for diver's leg & missed, diver hit shark on head with speargun & shark bit speargun ",N,S. Waterman,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.b - Waterman.pdf +2064,1958.07.00.a,Jul-58,1958,Unprovoked,Usa,Florida,"Sarasota, Sarasota County",Unknown,2 males admitted to Memorial Hospital emergency room this month,M,Both were bitten on feet by sharks,N,R. F. Hutton; T. Helm,p.239,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.a-NV-Sarasota.pdf +2063,1958.06.26,26-Jun-58,1958,Provoked,Usa,Florida,"Sanibel Island, Lee County",Wading,Eric Napier Cockerill,M,Right foot bitten when he walked into shark's head PROVOKED INCIDENT,N,E. Clark; Dr. Greenwood; R.F. Hutton; Randall in Sharks & Survival,p.357; T. Helm,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.26-Cockerill.pdf +2062,1958.06.24,24-Jun-58,1958,Unprovoked,Usa,Florida,"Turtle Beach, Siesta Key, Sarasota County",Walking,Frank A. Mahala,M,Lower left leg & foot bitten,N,E. Clark; R. Skocik,pp.172-173; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.24-Mahala.pdf +2061,1958.06.17,17-Jun-58,1958,Provoked,Usa,Florida,Key Biscayne,"Swimming, towing the shark",B. Irving,M,Thigh bitten PROVOKED INCIDENT,N,Randall in Sharks & Survival,pp.357,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.17-Irving.pdf +2060,1958.06.15,15-Jun-58,1958,Invalid,Australia,Queensland,Green Island,Swimming,Alva Colquhoun & Ilsa Konrads,F,"Injuries caused by coral, not the shark",N,Natal Mercury,6/18/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.15-Swimmers.pdf +2059,1958.06.02.R,02-Jun-1958,1958,Invalid,South africa,KwaZulu-Natal,King Reef off Park Rynie,Spearfishing,Gene Franken & Maurice McGregor,M,Injuries not caused by sharks,N,Daily News,6/2/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.02-McGregor-Franken.pdf +2058,1958.04.30,30-Apr-58,1958,Provoked,Usa,Florida,1 mile off Miami Beach,Free diving,Johnny Bower,M,"Grabbed shark’s tail, shark bit his thigh PROVOKED INCIDENT",N,Miami Herald, May 1,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.30-Bowers.pdf +2057,1958.04.19,19-Apr-58,1958,Unprovoked,Taiwan,Taipei Hsien,Off Cape of Pi-tou,Diving,Nan-Tien Chang,M,Right cheek bitten,N,W.H. Yu,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.19-Chang.pdf +2056,1958.04.05,05-Apr-58,1958,Unprovoked,South africa,KwaZulu-Natal,Uvongo,Paddling in knee-deep water,Fay Jones Bester,F,FATAL,Y,G.S. Perry,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.05-Bester.pdf +2055,1958.04.03,03-Apr-58,1958,Unprovoked,South africa,KwaZulu-Natal,Port Edward,Swimming with goggles,Nicholaas Badenhorst ,M,"FATAL, arm severed above elbow, abdomen & leg bitten ",Y,M. Levine,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.03-Badenhorst.pdf +2054,1958.04.00,Apr-58,1958,Unprovoked,Papua new guinea,Morobe Province,"Nasigilatu (Near Malasanga, Finschhafen, in the Huon Gulf)","Fishing, holding fish in his left hand",male,M,Left forearm amputated,N,A.D. Campbell; A.M. Rapson,p.149,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.00-Nasigilatu.pdf +2053,1958.02.19,19-Feb-58,1958,Invalid,Australia,New South Wales,Unknown,Spearfishing,Kevin Blair,M,"Disappeared while diving, speargun recovered, 2 large sharks in vicinity.",Y,Durban Daily News,2/20/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.19-Blair.pdf +2052,1958.02.01,01-Feb-58,1958,Provoked,Usa,US Virgin Islands,Water Island,Spearfishing on Scuba,"U.S. Navy U.D.T. Diver trainee, Ronald Gerringer",M,Chest bitten by speared shark PROVOKED INCIDENT,N,J,Randall,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.01-Gerringer.pdf +2051,1958.01.27,27-Jan-58,1958,Unprovoked,Australia,New South Wales,5 miles south of Sussex Inlet at mouth of Berara Lake,Spearfishing / swimming on surface,Ronald Kerwand,M,Right leg lacerated,N,V.M. Coppleson (1962),p.251 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.27-Kerwand.pdf +2050,1958.01.19,19-Jan-58,1958,Unprovoked,Australia,New South Wales,Brunswick Heads,Body surfing,Brian Henderson,M,"Laceration to left ankle, heel and little toe",N,V.M. Coppleson (1962),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.19-Henderson.pdf +2049,1958.01.09.R,09-Jan-1958,1958,Invalid,Japan,Ibaraki Prefecture,Mito,Unknown,male,M,Torso recovered from shark,Y,Natal Mercury,1/9/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09.R-Japan.pdf +2048,1958.01.09,09-Jan-58,1958,Unprovoked,South africa,KwaZulu-Natal,Scotburgh,Swimming,Derek Garth Prinsloo,M,FATAL,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09-Prinsloo.pdf +2047,1958.00.00.j,1958-1959,1958,Provoked,Tonga,Vava'u,Hunga Island,Spearfishing,male,M,Calf avulsed by shark he was holding by the tail PROVOKED INCIDENT,N,Dr. S. Fonea,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.j-Tonga.pdf +2046,1958.00.00.i,1958,1958,Provoked,Samoa,South Pacific Ocean,North of Northeast Samoa,Placed hand in disemboweled shark’s jaws,Takai Otiai,Unknown,Hand lacerated PROVOKED INCIDENT,N,V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.i-Otiai.pdf +2045,1958.00.00.h,1958,1958,Provoked,Panama,Canal Zone,Unknown,Skindiving,boy,M,"Boy seized shark by its tail, shark bit boy’s forearm PROVOKED INCIDENT",N,Dr. F. X. Schloeder; H.D. Baldridge,p.165,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.h-Panama.pdf +2044,1958.00.00.f,1958,1958,Unprovoked,Papua new guinea,Louisiade Archipelago,"Brooker Island , Calvados Chain",Unknown,Anonymous,Unknown,FATAL,Y,A.M. Rapson,p.149,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.f-BrookerIsland.pdf +2043,1958.00.00.e,1958,1958,Unprovoked,Papua new guinea,West New Britain Province,"Bulu, Talasea",Spearfishing,male,M,"FATAL, back & buttocks bitten ",Y,A.M. Rapson,p. 149,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.e-Bulu.pdf +2042,1958.00.00.d,1958,1958,Unprovoked,Papua new guinea,West New Britain Province,"Kombe, Talasea",Spearfishing,male,M,"FATAL, severe abdominal injuries ",Y,A.M. Rapson,p.149,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.d-Kombe.pdf +2041,1958.00.00.c,1958,1958,Unprovoked,Papua new guinea,Morobe Province,"Korem, Finschhafen ","Fishing, holding fish",male x 3,M,Hand holding the fish was bitten in all 3 cases,N,A.D. Campbell; A. M. Rapson,p.149,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.c-Korem.pdf +2040,1958.00.00.b,1958,1958,Boat,South africa,Western Cape Province,Plettenberg Bay,Fishing (trolling),ski-boat,Unknown,No injury to occupants; shark bit propeller,N,T. Wallett,p.27,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.b-PlettenburgBay.pdf +2039,1958.00.00.a,Circa 1958,1958,Unprovoked,South africa,KwaZulu-Natal,MaKakatana River,"Fishing, walking in river to cast",young Zulu male,M,"FATAL, right leg severed above knee ",Y,J. Daniel,M. Levine. GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.a-KakatanaRiver.pdf +2038,1957.12.31,31-Dec-57,1957,Unprovoked,Australia,South Australia,"Port Hughes, 100 miles from Adelaide in Spencer Gulf",Spearfishing,Jack Evans,M,No injury. Shark grabbed fish attached to his belt & towed him seaward. ,N,V.M. Coppleson (1962),p.251,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.31-Evans.pdf +2037,1957.12.30,30-Dec-57,1957,Unprovoked,South africa,KwaZulu-Natal,Margate,Standing,Julia Painting,F,"Left arm severed, torso bitten, thigh lacerated, many abrasions",N,J. Painting,Dr. Feinberg,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.30-Painting.pdf +2036,1957.12.26,26-Dec-57,1957,Unprovoked,South africa,KwaZulu-Natal,"Splash Rock, Port Edward",Skindiving,Donald Webster,M,Lacerations on head & neck,N,Natal Mercury,12/27/1957; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.26-Webster.pdf +2035,1957.12.23,23-Dec-57,1957,Unprovoked,South africa,KwaZulu-Natal,Margate,Floating,Vernon James Berry,M,"FATAL, right arm broken & stripped of flesh, left hand severed above wrist, lower abdomen, buttocks & thigh bitten ",Y,P. Lynch,N. Doveton,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.23-Berry.pdf +2034,1957.12.20,20-Dec-57,1957,Unprovoked,South africa,KwaZulu-Natal,Uvongo,Standing,Allan Green,M,"FATAL, multiple, severe injuries ",Y,P. Lynch,G. Wolfe,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.20-Green.pdf +2033,1957.12.18,18-Dec-57,1957,Unprovoked,South africa,KwaZulu-Natal,Karridene,Body surfing,Robert Wherley,M,"Left leg severed at knee, part of left thigh removed",N, M. Levine,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.18-Wherley.pdf +2032,1957.11.08,08-Nov-57,1957,Sea Disaster,Pacific ocean,"1,000 miles east of Hawaii",Unknown,Air/Sea Disaster Pan-American Airlines Stratocruiser with 44 people onboard crashed into the sea,Unknown,Unknown,Navy personnel recovered 19 shark-scavenged bodies,N,Guam Daily News,November 19,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.08-Stratocruiser.pdf +2031,1957.11.04.R,04-Nov-1957,1957,Boat,Australia,New South Wales,Off Scotts,Fishing,"16-foot launch, occupants: George Casey, Jack Byrnes, Julian Reynolds & Denny Laverty",Unknown,"No injury, shark's teeth embedded in boat",N,The Age,11/04/1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.04.R-Fishing-launch.pdf +2030,1957.10.24,24-Oct-57,1957,Unprovoked,Solomon islands,Honiara,Honiara,Unknown,"Matthew Keia, a Lord Howe native",M,FATAL,Y,V.M. Coppleson (1962),p.248 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.24-Keia.pdf +2029,1957.10.23,23-Oct-57,1957,Unprovoked,Solomon islands,Honiara,Honiara,Unknown,Melanesian woman,F,FATAL,Y,V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.23-Melanesian-woman.pdf +2028,1957.09.02,02-Sep-57,1957,Unprovoked,Marshall islands,Eniwetok Atoll,Parry Island,Unknown,Walter L. Huges,M,Survived,N,V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.09.02-Huges.pdf +2027,1957.08.00,Aug-57,1957,Provoked,Usa,Florida,"Miami Seaquarium, Virginia Key, Miami, Miami-Dade County",Attempting to net shark in shark channel,Philip Case & William B. Gray,M,Legs bitten PROVOKED INCIDENT,N,St. Petersburg Times (Sunday Magazine),3/1/1959; R. F. Hutton; J. Randall,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.08.00-Case-Gray.pdf +2026,1957.07.24,24-Jul-57,1957,Provoked,Usa,California,"La Jolla, San Diego County",Spearfishing on Scuba,Earl .A. Murray,M,Diver jabbed shark with spear and it make a threat display. No injury PROVOKED INCIDENT,N,SAF Case #1497; R. Collier,p. xxv; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.24-Murray.pdf +2025,1957.07.15,15-Jul-57,1957,Unprovoked,Usa,North Carolina,"Salter Path, Atlantic Beach, Carteret County",Swimming,Rupert Wade,M,"FATAL, knee bitten ",Y,V.M. Coppleson,p.155; F. Walker; F. Schwartz,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.15-Rupert-Wade.pdf +2024,1957.07.09,09-Jul-57,1957,Unprovoked,Australia,Torres Strait,Near Thursday Island,Diving for trochus,Conwell Kris,M,Right hand and arm bitten,N,The Age,7/11/1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.09-Kris.pdf +2023,1957.06.21,21-Jun-57,1957,Invalid,Cuba,Yucatan Channel,Unknown,M.V. Tropical sank. Sole survivor rode oil drums for 8 days without food or water.,Unknown,Unknown,"No injury, no attack, sharks in vicinity when the sea was calm",N,Daily Telegram,7/1/1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.06.21-Tropical.pdf +2022,1957.05.11,11-May-57,1957,Unprovoked,Australia,New South Wales,"Tea Gardens, north of Newcastle",Competing in spearfishing championship & towing dead fish,Leonard Higgins,M,Thigh bitten & few lacerations on abdomen & buttock,N,V.M. Coppleson (1958),p.175,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.11-Higgins.pdf +2021,1957.05.07,07-May-1957,1957,Unprovoked,Unknown,Unknown,Unknown,Fishing,Elison Sevo,M,Legs nipped & he bit shark's snout,N,Miami Daily News,5/7/1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.07.R-Sevo.pdf +2020,1957.05.00,May-57,1957,Unprovoked,Usa,Florida,"8 miles off St. Marks, Wakulla County",3 men & 2 boys picked up wearing life jackets and with inner tube,male,M,Leg lacerated,N,V.M. Coppleson (1962),p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.00-St-Marks.pdf +2019,1957.04.28,28-Apr-57,1957,Unprovoked,Usa,California,"Atascadero Beach, Morro Bay, San Luis Obispo County",Swimming,Peter Savino,M,"FATAL, seen with arm in mouth of shark. Body not recovered. ",Y,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.28-Savino_Collier.pdf +2018,1957.04.23,23-Apr-57,1957,Unprovoked,Australia,New South Wales,"Merewether Beach, Newcastle",Surfing,Paul Wilson ,M,Minor injuries,N,V.M. Coppleson (1958),pp.79 & 236,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.23-Wilson.pdf +2017,1957.04.22,22-Apr-57,1957,Provoked,Usa,Florida,"Ormond Beach, Volusia County",Standing,Michael Carpenter,M,Ankle injured by shark trapped in pool as it tried to get out PROVOKED INCIDENT ,N,R. F. Hutton; V.M. Coppleson (1958),pp.155 & 255,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.22-Carpenter.pdf +2016,1957.04.13,13-Apr-57,1957,Unprovoked,Australia,Torres Strait,"Thursday Island Harbour, Queensland",Swimming between anchored pearling luggers,Tuisafua Nomoa,M,"Left arm bitten, surgically amputated",N,J.W. Robinson; V.M. Coppleson (1958),p.245; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.13-Nomoa.pdf +2015,1957.04.07.b,07-Apr-57,1957,Unprovoked,Papua new guinea,Bougainville (North Solomons),Kieta,Diving from canoe,Omni (rescuer),M,Injured while Sonieva was transferred to another canoe,N,V.M. Coppleson (1958),pp.248 & 266,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.b-Omni.pdf +2014,1957.04.07.a,07-Apr-57,1957,Unprovoked,Solomon islands,Bougainville (North Solomons),Kieta,Diving from canoe,Matthew Sonieva,M,Leg severed,N,V.M. Coppleson (1958),pp. 248 & 266; A.M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.a-Sonieva.pdf +2013,1957.02.24,24-Feb-57,1957,Unprovoked,Fiji,Viti Levu,Suva Harbor,Spearfishing,Sami Bale,M,Right arm & forearm injured,N,NOTE: V.M. Coppleson (1962),p.253,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.24-Bale.pdf +2012,1957.02.05,05-Feb-57,1957,Unprovoked,Usa,Florida,"South Beach, Fort Pierce, St Lucie County",Floating,David Carson,M,Foot bitten,N,R.F. Hutton; V.M. Coppleson (1958),p.255,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.05-Carson.pdf +2011,1957.02.02,02-Feb-57,1957,Unprovoked,Australia,Western Australia,Cape Levêque,Unknown,"Japanese male, one of crew of pearl culture survey ship",M,Man landed at Cape Levêque lighthouse in critical condition after being bitten by a shark. Not known if he survived.,UNKNOWN,V.M. Coppleson (1958),p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.02-JapaneseDiver.pdf +2010,1957.02.00,Feb-57,1957,Unprovoked,Usa,Florida,Florida Keys,Skindiving for specimens,R.P.L. Straughan,M,Minor injuries,N,T. Helm,p.235,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.00-Straughan.pdf +2009,1957.01.05,05-Jan-57,1957,Unprovoked,South africa,KwaZulu-Natal,Umgeni River Mouth,Wading,Sydney Victor Williams,M,FATAL,Y,Col. C. Maritz,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.01.05-Williams.pdf +2008,1957.00.00.k,1957,1957,Invalid,Sri lanka,Western Province,Colombo Harbor,Fishing,F. L. Fernando,M,"FATAL, but shark involvement not confirmed",Y,R. I. DeSilva,,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.k-Fernando.pdf +2007,1957.00.00.j,1957,1957,Unprovoked,Usa,Florida,"Fort Pierce, St. Lucie County",Bathing,R. Nauth,Unknown,Injured by shark,N,R.F. Hutton,,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.j-NV-Nauth.pdf +2006,1957.00.00.i,1957,1957,Invalid,Cuba,Havana Province,Cojimar,Unknown,an infant,Unknown,"FATAL, but was it an accident or infanticide?",Y,F. Poli,p.23-24,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.i-baby +2005,1957.00.00.h,1957,1957,Boat,Cuba,Havana Province,Cojimar,Fishing,"boat, occupant: Portuondo",Unknown,"No injury to occupant, shark stuck boat",N,F. Poli,pp.21-24,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.h-boat-Portuondo.pdf +2004,1957.00.00.g,1957,1957,Unprovoked,Cuba,Havana Province,Havana,Fishing for sharks,William Bolster,M,"FATAL, became entangled in fishing line and pulled below the surface ",Y,F. Poli,p.9,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.g-Bolster.pdf +2003,1957.00.00.f,1957,1957,Unprovoked,Usa,Florida,"Miami, Miami-Dade County",Helmet diving in Miami Seaquarium,Jim Kline,M,"Shark struck helmet, no injury",N,R. Carras,H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.f-Kline.pdf +2002,1957.00.00.e,1957,1957,Unprovoked,Fiji,Kadavu,Great Astrolabe Reef,Fishing,Semesa Vasu,M,Right foot lacerated,N,S.B. Brown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.e-Vasu.pdf +2001,1957.00.00.d,1957,1957,Unprovoked,Iran,Karun River,"near Band Misan in Shustar, 420 km from the sea",Unknown,Mr. Paniry,M,Survived,N,B. Coad,,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.d-Paniry.pdf +2000,1957.00.00.b,1957,1957,Unprovoked,Papua new guinea,"Abau Subdistrict,Central Province",Mailu area ,Fishing,"male, from Laluoro",M,"FATAL, multiple injuries ",Y,A. Bleakley; A.M. Rapson,p.149,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.b-Mailu.pdf +1999,1957.00.00.c,1957,1957,Unprovoked,Iran,Karun River,Hesamabad,Unknown,Mr. Falah,M,Survived,N,B. Coad & F. Papahn,,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.c-Falah.pdf +1998,1957.00.00.a,1957,1957,Unprovoked,Papua new guinea,"New Britain, Bismarck Archipelago",Duke of York Island,Dynamiting fish,male,M,FATAL,Y,A. M. Rapson,p. 149,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.a-Duke-of-York.pdf +1997,1956.12.26,26-Dec-56,1956,Unprovoked,Papua new guinea,Milne Bay Province,Samarai Island (south end),Spearfishing,Patterson (John) Nikuniko,M,"FATAL, left leg severed at hip, left torso removed ",Y,Beavis,Kwato Mission; District Commissioner,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.26-Nikuniko.pdf +1996,1956.12.24,24-Dec-56,1956,Unprovoked,Papua new guinea,Milne Bay Province,Samarai Island,Spearfishing,Titus Tiso,M,"FATAL, left arm, shoulder & chest bitten ",Y,Beavis,Kwato Mission; A. M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.24-Tiso.pdf +1995,1956.12.15.R,15-Dec-1956,1956,Unprovoked,Gabon,Estuaire Province,Owendo,Swimming,P. Allen,M,FATAL,Y,Alton Evening Telegraph,12/15/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.15.R-Allen.pdf +1994,1956.12.09,09-Dec-56,1956,Provoked,New zealand,North Island,North Auckland,Fishing,Richard McKenzie,M,Bitten in cockpit of boat by shark caught 30 minutes earlier PROVOKED INCIDENT,N, The Argus,12/10/1956; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.09-McKenzie.pdf +1993,1956.10.27,27-Oct-56,1956,Unprovoked,South africa,Western Cape Province,"Glencairn, False Bay",Free diving for sinkers,Graham Smith,M,Right heel lacerated & swim fin removed by shark,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.27-Smith.pdf +1992,1956.10.20,20-Oct-56,1956,Unprovoked,Papua new guinea,Central Province,Kapakapa ,"Spearfishing, holding 5' speared fish",Bogana Sabati,M,"Left forearm & hand bitten, surgically amputated ",N,South Pacific Post,1/024/1956; A.M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.20-Sabati.pdf +1991,1956.10.07,07-Oct-56,1956,Unprovoked,Senegal,"Near Dakar, Cap Vert Peninsula",Isle de Gorée,"Skindiving, fish at belt",k,M,Right thigh bitten,N,M. Cadenet; Y. Gilbert-Desvallons; V.M. Coppleson (1962),p.538 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.07-Peron.pdf +1990,1956.10.00,Oct-56,1956,Unprovoked,Papua new guinea,Unknown,Port Moresby,Fishing,Unknown,M,FATAL,Y,The Age,12/7/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.00-PortMoresby.pdf +1989,1956.09.23,23-Sep-56,1956,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Surf fishing,"Joel Healy, Jr.",M,Posterior left ankle bitten,N,Daytona Beach Morning Journal,9/26/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.23-Healy.pdf +1988,1956.09.13,13-Sep-56,1956,Unprovoked,International_water,Near the Andaman & Nicobar Islands,Unknown,Climbing back on ship,male,M,FATAL,Y,M. Hosina,,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.13-TunaBoat.pdf +1987,1956.09.00.b,Sep-56,1956,Unprovoked,Mayotte,Mozambique Channel,Unknown,Fishing,2 males,M,FATAL,Y,P. Fourmanoir,,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.b-Mayotte.pdf +1986,1956.09.00.a,Sep-56,1956,Unprovoked,Italy,Tyrrenian Sea,1.5 miles south of San Felice Circeo ,Scuba diving,Goffredo Lombardo,M,Survived,N,G. Bini,A. De Maddalena & C. Moore,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.a-Lombardo.pdf +1985,1956.08.25,25-Aug-56,1956,Unprovoked,Papua new guinea,Central Province,"Paga Point or Fishermans Island, Port Moresby",Fishing ,"Kara Benagi, from Hula",M,"FATAL, tissue removed from abdomen & thigh ",Y,V.M. Coppleson (1958),pp.49-51 & 264; A.M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.25-Benagi.pdf +1984,1956.08.20,20-Aug-56,1956,Unprovoked,Papua new guinea,Central Province,"Paga Point, Port Moresby ",Fishing,native,M,"Leg bitten, but survived",N,V.M. Coppleson (1958),pp.49 & 264; A.M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.20-native.pdf +1983,1956.08.15.R,15-Aug-1956,1956,Unprovoked,Usa,Puerto Rico,North coast,Skin diving,Jose Luis Nufize Lago,M,FATAL,Y,Virgin Island Daily News,8/15/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.R-Lago.pdf +1982,1956.08.15.b,15-Aug-56,1956,Provoked,Australia,Queensland,Near Southport,Diving,Lyle Davis,M,Laceration to arm when his dive buddy grabbed the shark PROVOKED INCIDENT,N,Central Queensland Herald,8/16/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.b-Davis.pdf +1981,1956.08.15.a,15-Aug-56,1956,Unprovoked,Usa,California,"Pismo Beach, San Luis Obispo County",Swimming near pier,Douglas Clarke,M,"Lacerated thigh, hand & shoulder",N,D. Miller & R. Collier,V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.a-DouglasClarke.pdf +1980,1956.08.01,01-Aug-56,1956,Unprovoked,South africa,KwaZulu-Natal,"Chain Rocks, Amanzimtoti",Free diving for crayfish,Maximilliaan Roual Van Dam,M,"No injury, right swim fin bitten",N,Umtali Post,8/8/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.01-VanDam.pdf +1979,1956.08.00.e,Aug-56,1956,Provoked,United kingdom,Cornwall,The Lizard,Attempting to kill a shark with explosives,Richard Kirby,M,"FATAL, PROVOKED INCIDENT",Y,ThisisCornwall.co.uk ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.e-Kirby.pdf +1978,1956.08.00.d,Aug-56,1956,Provoked,United kingdom,Cornwall,The Lizard,Attempting to kill a shark with explosives,Leslie Nye,M,"FATAL, PROVOKED INCIDENT",Y,ThisisCornwall.co.uk ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.d-Nye.pdf +1977,1956.08.00.c,Aug-56,1956,Boat,Malta,Congreve Channel,between Filfla Island and Wied iz-Zurrieq,Fishing,boat: occupants: Nazzareno Zammit & Emmanuel,Unknown,"No injury to occupants, but Emmanuel ""later died of shock in hospital""",N,A. Buttigieg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.c-Zammit.pdf +1976,1956.08.00.b,Aug-56,1956,Unprovoked,Papua new guinea,Central Province,Yule Island,Fishing,Tsira Native,M,"Leg severed, but survived",N,V.M. Coppleson (1958),pp.49-51 & 264; A.M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.b-TsiraNative.pdf +1975,1956.08.00.a,Aug-56,1956,Unprovoked,Papua new guinea,Central Province,"Fisherman's Island, near Port Moresby",Fishing,native boy,M,Leg & foot lacerated,N,V.M. Coppleson (1958),pp.49-51; A. M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.a-NativeBoy.pdf +1974,1956.07.28,28-Jul-56,1956,Provoked,Usa,Puerto Rico,Aquadilla,Floating in inner tube,Jose Alengo,M,FATAL. His brother speared a shark which then attacked Jose & severed his leg at knee. PROVOKED INCIDENT ,Y,V.M. Coppleson (1958),p.265,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.28-Alengo.pdf +1973,1956.07.26,26-Jul-56,1956,Provoked,Usa,California,"Van Ness Municipal Pier, San Francisco",Fishing,Bansie Koide,M,Finger bitten by hooked shark PROVOKED INCIDENT,N,San Mateo Times,7/27/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.26-BansieKoide.pdf +1972,1956.07.20,20-Jul-56,1956,Unprovoked,Malta,St. Thomas Bay,Marsascala,Swimming,Jack Smedley,M,FATAL,Y,V.M. Coppleson (1958),p.261; A. Xuereb; A. Buttigieg & C. Moore,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.20-Smedley.pdf +1971,1956.07.17,17-Jul-56,1956,Unprovoked,Usa,Florida,"Miami Beach, Miami-Dade County",Wading,Eleanor Nelson,F,Lacerations to legs,N,Miami Daily News,7/19/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.17-Nelson.pdf +1970,1956.07.12,12-Jul-56,1956,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Swimming,Eric Rawls,M,Arm & leg injured,N,News & Courier,7/14/1956; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.12-Rawls.pdf +1969,1956.06.28,28-Jun-56,1956,Unprovoked,Australia,Torres Strait,"Fishman's Island (near Port Moresby, PNG) ","Line fishing from Lakotoi, saw shoal of fish, dived overboard, had speared second fish & surfaced for air",Kila,M,"6"" gashes in foot & leg ",N,A. M. Rapson,p.149; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.28-Kila.pdf +1968,1956.06.22, 22-Jun-1956,1956,Boating,Portugal,Madeira,Off Funchal,Longling fishing,Manuel Pereira,M,"FATAL. Shark sank fishing boat, causing death by drowning",Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.22-Pereira.pdf +1967,1956.06.20,20-Jun-56,1956,Sea Disaster,Mid atlantic ocean,Unknown,Venezuelan aircraft lost,Air/Sea Disaster,Unknown,Unknown,FATAL x 6,Y,New York Times,6/21/1956; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.20-VenezuelanAircraft.pdf +1966,1956.05.26.R,26-May-1956,1956,Boating,South africa,Western Cape Province,Plettenberg Bay,Fishing,multiple boats including B.J. C. Brunt,Unknown,"No injury, sharks bit propellers, etc",N,Natal Mercuy,5/26/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.26.R-Brunt-boat.pdf +1965,1956.05.07,07-May-56,1956,Unprovoked,Unknown,Unknown,Unknown,"Free diving, working on U/W scenes for motion picture",Russ Shearman,M,FATAL,Y,V.M. Coppleson (1958),p.258; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.07-Shearman.pdf +1964,1956.05.00,May-56,1956,Unprovoked,Australia,Torres Strait,Unknown,Diving,Unknown,Unknown,"""Badly bitten by shark""",N, V.M. Coppleson (1958),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.00-diver.pdf +1963,1956.03.25,25-Mar-56,1956,Boating,Italy,Ligurian Sea,"Genova, S. Nazaro, Punta Vagno",Boating,Unknown,Unknown,No details,UNKNOWN,A. De Maddalena; Mojetta et al. (1997),,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.25-Italy.pdf +1962,1956.03.11,11-Mar-56,1956,Unprovoked,Australia,New South Wales,"Cronulla, near Sydney",Bathing,Ian Nolan,M,"Right thigh gashed, swim fin torn",N, V.M. Coppleson (1958),p.112,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.11-Nolan.pdf +1961,1956.03.04,04-Mar-56,1956,Unprovoked,Australia,Victoria,"Portsea Beach, near entrance to Port Phillip Bay","Swimming, attacked at surf carnival",John Patrick Wishart,M,FATAL,Y,V.M. Coppleson (1958),pp.110-111 & 241; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.04-Wishart.pdf +1960,1956.03.00.b,Mar-56,1956,Unprovoked,Australia,Western Australia,Fremantle,Attempting to set underwater endurance record,Theo Brown,M,"No injury to diver, but shark bit hole in his wetsuit",N,J. Green,p.34,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.00.b-Brown.pdf +1959,1956.02.26,26-Feb-56,1956,Unprovoked,Australia,Queensland,Pioneer River near Mackay,Diving into water,Barry Keith Antonini,M,"FATAL, large amount of tissue removed from leg, artery severed ",Y,B. Thompson; L. Schultz & M. Malin,p.521,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.26-Antonini.pdf +1958,1956.02.10.R,10-Feb-1956,1956,Unprovoked,Australia,Victoria,Cowes,Swimming,Brian Hamilton,M,Punctures to calves,N,The Argus,2/10/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.10.R-Hamilton.pdf +1957,1956.01.16.R,16-Jan-1956,1956,Unprovoked,Australia,Torres Strait,Palm Island,Diving for trochus,Stephen Conedo,M,Lacerations to thighs,N,The Age,1/15/1956; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16.R-Conedo.pdf +1956,1956.01.16,16-Jan-56,1956,Unprovoked,Costa rica,Unknown,San Juan River,Swimming,Lester Burton,M,"FATAL, leg severed ",Y,Washington Post,1/18/1956; Note: Webster,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16-Burton.pdf +1955,1956.01.05,05-Jan-56,1956,Unprovoked,Australia,New South Wales,North Bondi,Surf skiing,Ken Howell,M,"No injury, shark bumped his 17' ski",N,Sydney Morning Herald,1/16/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.05-Howell.pdf +1954,1956.00.00.h,1956,1956,Unprovoked,Papua new guinea,Madang Province,"Singour, 60 miles south of Madang",Diving,native boy,M,Lower leg & foot lacerated,N,H.D. Baldridge,,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.h-NV native-boy.pdf +1953,1956.00.00.g,1956,1956,Sea Disaster,International_water,Between Comores & Madagascar,Geyser Bank,Shipwreck,"Captain Eric Hunt, the cook & a French passenger",M,FATAL,Y,dinofish.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.g-Capt-Hunt.pdf +1952,1956.00.00.f,1956,1956,Unprovoked,Greece,Corfu Island,Kérkira,Swimming off yacht,Margoulis,F,FATAL,Y,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.f-Margoulis.pdf +1951,1956.00.00.e,1956,1956,Provoked,Usa,Virginia,"Virginia Beach, Princess Anne County",Removing shark from net ,Josh Vaughan,M,Punctures on shin & calf PROVOKED INCIDENT,N,Virginian Pilot (Norfolk,VA),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.e-Vaughn.pdf +1950,1956.00.00.d,1956,1956,Unprovoked,Usa,Virginia,"Virginia Beach, Princess Anne County",Swimming,girl,F,No details,UNKNOWN,A. MacCormick,p.11,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.d-girl-VirginiaBeach.pdf +1949,1956.00.00.c,1956,1956,Unprovoked,Papua new guinea,Milne Bay Province,"Kimuta, Renard Island",Unknown,Anonymous,Unknown,"Non-fatal, treated at Misima Hospital",N,A.M. Rapson,p. 149,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.c-Kimuta.pdf +1948,1956.00.00.b,1956,1956,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province",Hus Island ,Unknown,male,M,Right calf bitten,N,A.M. Rapson,p.149;,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.b-Hus-Island.pdf +1947,1956.00.00.a,1956,1956,Unprovoked,Papua new guinea,New Ireland Province,Enuk Island ,Unknown,Lamoman,M,"FATAL, head & neck bitten ",Y,J. McLachlan,Medical Officer,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.a-Enuk.pdf +1946,1955.12.31,31-Dec-1955,1955,Boating,Australia,Tasmania,Unknown,Ocean racing,yacht Even,Unknown,"No injury to occupants, shark gouged hull",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.31.R-Even.pdf +1945,1955.12.11,11-Dec-55,1955,Boating,Usa,Florida,½ mile offshore & 9 miles north of Fort Pierce,Fishing for pompano,"boat, occupants: P.D. Neilly & Charlton Anderson",Unknown,"No injury to occupants, shark released from net holed boat",N,R.F. Hutton,3/30/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.11-boat Neilly_Charlton.pdf +1944,1955.11.16,16-Nov-55,1955,Unprovoked,Papua new guinea,Central Province,"Kalautu Village, Baibara at the mouth of Oibada River",Swimming,Niu Bodu,M,Right thigh bitten,N,J. G. Davis; A.M. Rapson,pp.143 & 148 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.16-NiuBodu.pdf +1943,1955.11.00,Nov-55,1955,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province","Low Island, Manus",Spearfishing,male,M,Right arm severely bitten,N,Rapson,p.149,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.00-LowIsland.pdf +1942,1955.10.16,16-Oct-55,1955,Provoked,Australia,Queensland,"Tully, North Queensland",Spearfishing & lassoed shark,Noel Cross,M,Lassoed shark bit his hand PROVOKED INCIDENT,N,Sydney Morning Herald,10/17/1955;V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.10.16-Cross.pdf +1941,1955.09.23.b,23-Sep-55,1955,Sea Disaster,North pacific ocean,1000 miles west of Hawaii,Between Wake & Johnston Islands,"""Flying Tiger"" transport plane went down with 5 men onboard",R.C. Olsen,M,FATAL,Y,Letter from Captain Raoul G. Rehrer in letter to G.A. Llano in Sharks and Survival,pp.381-382; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.b-Olsen.pdf +1940,1955.09.23.a,23-Sep-55,1955,Sea Disaster,North pacific ocean,1000 miles west of Hawaii,Between Wake & Johnston Islands,"""Flying Tiger"" transport plane went down with 5 men onboard",Robert C. Hightower,M,Bitten several times before being rescued after 43 hours in the sea by the freighter Stell Advocate,N,Letter from Captain R. G. Rehrer in letter to G.A. Llano in Sharks and Survival,pp.381-382; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.a-Hightower.pdf +1939,1955.09.20,20-Sep-55,1955,Unprovoked,Usa,Hawaii,East Moloka'i,Hunting turtle,Philip C. Diez,M,Arm bitten,N,J. Borg,p.73; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.20-Diez.pdf +1938,1955.09.04,04-Sep-55,1955,Unprovoked,Usa,California,"Venice Beach, Los Angeles County",Swimming near breakwater,Eric Vaughters,M,Dorsum of right foot lacerated,N,R. Collier,p.14-15; L.A. Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.04-Vaughters_Collier.pdf +1937,1955.09.03,03-Sep-55,1955,Unprovoked,Usa,California,"Venice Beach, Los Angeles County",Unknown,male,M,Minor injury,N,LA Times,9/5/1955 editon ,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.03-VeniceBeach.pdf +1936,1955.08.30.b,30-Aug-55,1955,Unprovoked,Japan,Izo Islands,"Mikura-jima Island, 150 miles south of Tokyo",Fishing,Otamatsu H. Yoshii,M,FATAL,Y,K. Nakaya,L.A. Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.b-Yoshi.pdf +1935,1955.08.30.a,30-Aug-55,1955,Provoked,Usa,California,"Zuma Beach, Santa Monica, Los Angeles County",Surfing,Dale Strand,M,"Surfer grabbed shark, which turned & bit him and 2 lifeguards PROVOKED INCIDENT",N,SAF Case #244; D. Miller & R. Collier,V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.a-DaleStrand.pdf +1934,1955.08.26,26-Aug-55,1955,Unprovoked,Croatia, Primorje-Gorski Kotar County,Opatija,Swimming,Carla Podzum,F,FATAL,Y,R. Rocconi,,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.26-Podzum.pdf +1933,1955.08.08,08-Aug-55,1955,Unprovoked,American samoa,Tutuila Island,Pago Pago Bay,Swimming,Sailor from tuna vessel,M,"FATAL, abdomen bitten ",Y,M. Hosina,,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.08-Samoa.pdf +1932,1955.08.04.R,04-Aug-1955,1955,Provoked,Usa,South Carolina,Windy Hill Beach,Fishing,fisherman,M,Finger bitten by hooked shark PROVOKED INCIDENT,N,Kingsport Times,8/4/1955,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.04.R-SC-fisherman.pdf +1931,1955.08.00.c,Aug-55,1955,Unprovoked,North atlantic ocean ,Open sea,Unknown,Treading water,Wolfgang Emrich,M,No injury,N,H.D.Baldridge (1994),SAF Case #1489,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.c-NV-Emrich.pdf +1930,1955.08.00.a,Aug-55,1955,Boating,Australia,South Australia,Port Augusta,Fishing,"launch, occupant: Clarrie Whelan",Unknown,Whelan's head was injured when he fell to the deck as shark rammed boat,N,V.M. Coppleson (1958),pp.184-185,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.a-Whelan.pdf +1929,1955.07.25,25-Jul-55,1955,Unprovoked,Japan,Okayama Prefecture,Usimado-no-Seto,Unknown,Hideo Ishida,M,FATAL,Y,M. Hosina,,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.25-Ishida.pdf +1928,1955.07.23,23-Jun-55,1955,Unprovoked,Usa,Rhode Island,Occupasstuxet (Patuxent) Cove,Wading,William Cashman,M,Bites on legs & thighs,N,The Lowell Sun,7/24/1955,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.23-Cashman.pdf +1927,1955.07.15,15-Jul-55,1955,Unprovoked,Montenegro,Adriatic Sea,Budva,Swimming,Romasevic,M,FATAL,Y,R. Rocconi; A. De Maddalena; Radovanovic (1965),Soldo & Jardas (2000),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.15-Romasevic.pdf +1926,1955.07.07,07-Jul-55,1955,Unprovoked,Yemen,Aden,Telegraph Bay,Swimming,Mrs. W. F. Dixon,F,"FATAL, back lacerated, arm & leg severed ",Y,Evening Sun (Baltimore),9/27/1955; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.07-Dixon.pdf +1925,1955.05.08,08-May-55,1955,Provoked,Usa,California,"Malibu, Los Angeles County",Spearfishing,Robert C. Yeargin,M,Diver hit shark & right forearm slightly injured PROVOKED INCIDENT,N,D. Miller & R. Collier,V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.08-Yeargin.pdf +1924,1955.05.00,May-55,1955,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province","Lou Island, south of Manus Island",Spearfishing,Sindlin,M,"Right forearm severely lacerated, left arm & hand lacerated",N,V.M. Coppleson (1958),pp.144-146 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.00-Sindilin.pdf +1923,1955.04.13.R,13-Apr-1955,1955,Unprovoked,Papua new guinea,Central Province,"Hadrian’s (Haidana?) Island, near Port Moresby",Spearfishing or fishing,Kairua Gairi,M,Left shoulder bitten,N,South Pacific Post,4/13/1955; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.13.R-Gairu.pdf +1922,1955.04.12,12-Apr-55,1955,Unprovoked,Papua new guinea,Unknown,Abau,Spearfishing,Kula,M,No injury. Shark took string of fish then struck canoe,N,South Pacific Post,4/20/1955,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.12-Kula.pdf +1921,1955.04.00,Apr-55,1955,Unprovoked,Usa,Hawaii,"Hilo, Hawai'i","Fishing from boat, Kaimamla",Kanematsu Oshiro,M,Hand bitten,N,Tribune-Herald (Hilo,Hawaii),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.00-Oshiro.pdf +1920,1955.03.09,09-Mar-55,1955,Unprovoked,Australia,New South Wales,Wamberal,Body surfing,Noel Langford,M,FATAL,Y,V.M. Coppleson (1958),pp.84-85 & 236; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.09-Langford.pdf +1919,1955.03.00.b,Mar-55,1955,Unprovoked,Papua new guinea,"New Ireland, Bismarck Archipelago","Kabiman, West coast",Swimming with speared fish,"Lidua, a male",M,Left leg bitten,N,Namatanai Dept. of Public Health; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.b-Liuda.pdf +1918,1955.03.00.a,Mar-55,1955,Provoked,Australia,Western Australia,Woodman’s Point,"Competing in U/W endurance record, standing beside drum in 10' of water",Theo Watts Brown,M,Leg of wetsuit torn after spear fired at shark PROVOKED INCIDENT,N,H.D. Baldridge,p.104,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.a-Brown.pdf +1917,1955.02.10,10-Feb-55,1955,Unprovoked,Usa,California,"Trinidad Bay, Humboldt County",Scuba diving,John Adams,M,"No injury, shark bumped diver's face",N,J. DeWitt (1955); V.M. Coppleson (1962),p.255; D. Miller & R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.10-Adams.pdf +1916,1955.02.06,06-Feb-55,1955,Unprovoked,Usa,California,"Pacific Grove, Monterey County",Spearfishing,James F. Jacobs,M,"Swimfin & 2 wool socks removed by shark, suit torn",N,R. Collier,pp. 13-14; D. Miller & R. Collier; California Fish & Game; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.06-JamesJacobs_Collier.pdf +1915,1955.02.05,05-Feb-55,1955,Unprovoked,Australia,New South Wales,"Sugarloaf Bay, Middle Harbor, Sydney",Swimming,Bruno Aloysius Rautenberg,M,"FATAL, legs bitten ",Y,V.M. Coppleson (1958),pp.71,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.05-Rautenberg.pdf +1914,1955.02.04,04-Feb-55,1955,Unprovoked,India,Tamil Nadu,"Vanagiri, Madras (Chennai), Bay of Bengal",Fishing,Nedugattan,M,Leg bitten,N,V.M. Coppleson (1958),p.261,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.04-Nedugattan.pdf +1913,1955.02.01.,01-Feb-55,1955,Boating,Australia,New South Wales,Parramatta River,Rowing,"racing scull, occupants: Bill Andrews on bow oar, Dick Brown on #2 oar ",Unknown,"No injury to occupants; shark grabbed oar, vaulted over scull",N,V.M. Coppleson (1958),p.187,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.01-Racing-scull.pdf +1912,1955.02.00,Feb-55,1955,Boating,Australia,New South Wales,Coff’s Harbor,Rowing toward snapper grounds,10' row boat occupants; Douglas Richards & George Irwin,Unknown,"No injury to occupants, 6 sharks charged boat",N,V.M. Coppleson (1958),p.186,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.00-Richards-Irwin.pdf +1911,1955.01.17,17-Jan-55,1955,Unprovoked,Australia,New South Wales,"Wyargine Point, Edwards Beach, Balmoral Beach, Sydney",Hunting lobsters in 2.4 m of water,John Willis,M,"FATAL, anterior left leg & right calf bitten, no tissue lost ",Y,V.M. Coppleson (1958),pp.71,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.17-Willis.pdf +1910,1955.01.15,15-Jan-55,1955,Unprovoked,South africa,KwaZulu-Natal,A ford known as Brodies Coffin in St. Lucia Bay,Crossing the bay at the ford,Zulu male,M,"FATAL, leg bitten ",Y,Natal Daily News,1/17/1955; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.15-ZuluMale.pdf +1909,1955.00.00.f,1955,1955,Unprovoked,Usa,Florida,"Vero Beach, Indian River County",Unknown,2 incidents north of Vero Beach,Unknown,No details,UNKNOWN,R.F. Hutton; V.M. Coppleson (1958) (ref.R. North in Scientific American,1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.f-NV-VeroBeach.pdf +1908,1955.00.00.d,1955,1955,Provoked,Cuba,Havana Province,Cojimar,Fishing,Romilio,M,Forearm slashed wrist to elbow by hooked shark he was trying to club to death PROVOKED INCIDENT,N,F. Poli,p.13,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.d-Cuba.pdf +1907,1955.00.00.e,1955,1955,Unprovoked,Madagascar,18S / 50E,Unknown,Standing in knee-deep water,boy,M,FATAL,Y,Mrs. Lyse Mooney,,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.e-Madagascar.pdf +1906,1955.00.00.c,1955,1955,Invalid,Usa,Illinois,Chicago (Lake Michigan),Swimming,George Lawson,M,Right leg bitten,N,F. Dennis,p.52,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.c-Chicago.pdf +1905,1955.00.00.b,Ca. 1955 ,1955,Unprovoked,Columbia,Isles del Rosario,Southwest of Cartegena,Spearfishing,Gabriel Echiavarria,M,Swim fin & foot bitten,N,H. Echavarria; H.D. Baldridge,p.135; M. McDiarmid,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.b-Echavarria.pdf +1904,1955.00.00.a,1955,1955,Unprovoked,Papua new guinea,New Ireland,Lavongai,Unknown,Pakau,M,Back bitten,N,J. McLachlan,Medical Officer,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.a-Pakau.pdf +1903,1954.12.29,29-Dec-54,1954,Unprovoked,American samoa,Tutuila Island,Near tuna cannery in Pago Pago Harbor,Dived overboard & was swimming near stern of trawler,"Kosuo Mizokawa, Captain of a Japanese trawler",M,FATAL,Y,Townsville Daily Bulletin,1/6/1955,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.29-Mizokawa.pdf +1902,1954.12.11,11-Dec-54,1954,Unprovoked,Australia,Victoria,Point Lonsdale,Swimming,Lawrence David Burns,M,FATAL,Y,Sydney Morning Herald,12/13/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.11-Burns.pdf +1901,1954.12.09,09-Dec-54,1954,Unprovoked,Papua new guinea,Central Province,"Kila Beach, Port Moresby",Swimming near canoe,Leva Kailovo,M,"FATAL, abdomen & thigh bitten",Y,C.H. Hodgson; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.09-Kailovo.pdf +1900,1954.12.04,04-Dec-54,1954,Unprovoked,South africa,KwaZulu-Natal,"Rocket Hut Beach, Durban",Swimming,Graham Scott,M,Shallow lacerations on torso,N,D. Gibb,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.04-Scott.pdf +1899,1954.11.20,20-Nov-54,1954,Unprovoked,Usa,Wake Island,Wilkes Islet Lagoon (Pacific Ocean north of the Marshall Islands),Spearfishing,James L. Oetzel,M,Shoulder bitten,N,J. L. Oetzel,NOTE: H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.11.20-Oetzel.pdf +1898,1954.10.07,07-Oct-54,1954,Sea Disaster,Usa,Virginia,150 miles off Cape Henry,"American freighter Mormackite, bound from Buenos Aires for Baltimore, capsized & sank in heavy seas",second cook,M,Rescue aircraft saw bodies in the water being bitten by sharks. One survivor saw a shark take off a man’s leg & another reported that the second cook was killed by a shark,Y,Long Beach Independent,10/11/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.07-Mormackite.pdf +1897,1954.10.06,06-Oct-54,1954,Provoked,United kingdom,Isle of Man,Off Fleetwood,Fishing (trawling),John Butcher,M,Arm broken by tail of netted shark PROVOKED INCIDENT,N,C.Moore,GDSF; Times of London,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.06-Butcher.pdf +1896,1954.10.02.b,02-Oct-54,1954,Boating,Croatia,Zadar County,"Lika-Senj, Pag Island",Boating,Unknown,Unknown,No details,UNKNOWN,A. De Maddalena; Anon. (1954),Soldo & Jardas (2000),http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.b-boat-Pag-Croatia.pdf +1895,1954.10.02.a,02-Oct-54,1954,Invalid,Japan,Nagasaki Prefecture,Oomura Bay,Unknown,Boy clad in shirt & white linen pants,M,Body found in gut of shark,Y,K. Nakaya; San Diego Union,105/1954 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.a-boyJapan.pdf +1894,1954.09.21,21-Sep-54,1954,Unprovoked,Usa,California,"La Jolla, San Diego County",Swimming,Clyde Leeper,M,Minor bruises & abrasions on leg,N,D. Miller & R. Collier,V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.21-Leeper.pdf +1893,1954.09.15,15-Sep-54,1954,Unprovoked,Hong kong,Unknown,Junk Bay,Swimming,"James Cook, a seaman from HMS Comus",M,"FATAL, leg severely bitten",Y,V.M. Coppleson (1958),p.260; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.15-JamesCook.pdf +1892,1954.09.04,04-Sep-54,1954,Unprovoked,Australia,Torres Strait,"Darnley Island, Torres Strait","Spearfishing, hunting crayfish",Kapua Gutchen,M,"FATAL, after being bitten by shark, he was picked up by 85' trochus vessel Toorah that wrecked. His wounds reopened & he died ",Y,The Mercury,9/14/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.04-Kapua-Gutchen.pdf +1891,1954.08.19,19955,1954,Unprovoked,Italy,Liguaria,Finale Ligure,Spearfishing,Aldo Campi,M,Abdomen injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.19-Campi.pdf +1890,1954.08.12.b,12-Aug-54,1954,Provoked,Cuba,Guantanamo Province,Boqueron,Spearfishing,Dr. D.H. Teas,M,Knee bitten by shark that his dive buddy had shot PROVOKED INCIDENT,N,H.D. Baldridge,p.166,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.b-Teas.pdf +1889,1954.08.12.a,12-Aug-54,1954,Provoked,Cuba,Guantanamo Province,Boqueron,Spearfishing,Dr. H. Warmke,M,Right thigh & left calf injured by speared shark PROVOKED INCIDENT,N,H.D. Baldridge,p.166,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.a-Warmke.pdf +1888,1954.07.30,30-Jul-54,1954,Unprovoked,Ecuador,Galapagos Islands,Unknown,"Tuna fishing, standing on stern platform that was submerged by waves",Carl Dible,M,4 lacerations on dorsum of right foot ,N,F. X. Schloeder,M.D.; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.30-Dibble.pdf +1887,1954.07.28,28-Jul-54,1954,Unprovoked,Singapore,Unknown,Singapore Harbor,Closed circuit diving (submerged). Diving to recover jettisoned packets of opium for police,"C.B. Larkin, a Royal Navy diver",M,"FATAL, abdomen, buttock, right thigh & hands bitten ",Y,New York Times,7/29/1954; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.28-BritishDiver.pdf +1886,1954.07.27,27-Jul-54,1954,Boating,Italy,Venice Province,Off Chioggia,Fishing trawler Flavio Gioia ,10 crew,M,No injury to occupants. Shark tore nets & trawl and struck boat repeatedly,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.27-Trawler.pdf +1885,1954.07.15,15-Jul-54,1954,Unprovoked,The balkans,Slovenia,Between Punta Grossa & Koper,Swimming,a Hungarian refugee,M,FATAL,Y,R. Rocconi & C. Moore,GSAF V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.15-refugee.pdf +1884,1954.07.04.R,04-Jul-1954,1954,Unprovoked,Usa,Florida,Florida Keys,Unknown,a marine biology student from the University of Miami,Unknown,Small wound on upper thigh,N,Daytona Beach Sunday News- Journal,7/4/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.04.R-UniversityStudent.pdf +1883,1954.07.03,03-Jul-54,1954,Unprovoked,Bermuda,South shore ,Elbow Beach,Swimming,"Sub-Lieut. Edwin Michael Marks, of H.M.S. Sheffield",M,"Left thigh bitten, chest lacerated & defense wounds on foot, fingers and hands",N,E.M. Marks; V.M. Coppleson (1958),pp.155 & 257; Randall,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.03-Marks.pdf +1882,1954.07.02.R,02-Jul-1954,1954,Unprovoked,Greece,Unknown,Kalamata,Swimming,2 males,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.02.R-Kalamata.pdf +1881,1954.07.01.R,01-Jul-1954,1954,Invalid,Croatia,Unknown,Pula,Unknown,male,Unknown,Human remains found in shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.01.R-Pula.pdf +1880,1954.06.29,29-Jun-54,1954,Provoked,Usa,California,"Santa Monica, Los Angeles County",Grabbed shark & threw it on deck,"Frank Donahue, a movie stuntman",M,Right elbow & forearm lacerated PROVOKED INCIDENT,N,L.A. Times,6/30/1954; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.29-Donahue.pdf +1879,1954.06.27,27-Jun-54,1954,Unprovoked,Australia,Queensland,Fitzroy Island,Pearl diving from lugger Whyalla,Morslem Aken,M,"Shark bit right arm & shoulder, then Aken says, he ""knocked out"" the shark",N,Morning Bulletin (Rockhampton),6/30/1954 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.27-Aken.pdf +1878,1954.06.00,Jun-54,1954,Unprovoked,Unknown,Unknown,Unknown,Bathing alongside ship,Naval Rating,M,"FATAL, thigh bitten ",Y,V.M. Coppleson (1958),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.00-NavalRating.pdf +1877,1954.05.26.R,26-May-1954,1954,Unprovoked,Papua new guinea,East Sepik,Wewak,"Fishing / cleaning fish, dived into water to retrieve a lost fish","male, a native constable",M,"FATAL, decapitated ",Y,South Pacific Post,5/26/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.26.R-Constable.pdf +1876,1954.05.00,May-54,1954,Unprovoked,Papua new guinea,Madang Province,Near Madang Town,Unknown,child,Unknown,Foot severed,N,V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.00-child.pdf +1875,1954.04.08,08-Apr-54,1954,Invalid,Usa,Hawaii,"Wailupe, O'ahu",Fishing from shore,Gordon S. Chun,M,"Body recovered, mutilated by shark/s",Y,The Honolulu Advertiser,4/8/1954; Honoulu Star Bulletin 4/8/1954; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.08-Chun.pdf +1874,1954.04.00,Apr-54,1954,Provoked,Sudan?,Red Sea,Southern part ,Spearfishing,Jean Foucher-Createau,M,"Speared small shark, shark bit his thigh and/or buttock PROVOKED INCIDENT",N,V.M. Coppleson (1962),p.254; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.00-Foucher-Creteau.pdf +1873,1954.02.27,27-Feb-54,1954,Unprovoked,Australia,New South Wales,"The Entrance, near Gosford",Swimming,Reg Fabrizius,M,"FATAL, right thigh bitten ",Y,V.M. Coppleson (1958),pp.84 & 236,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.02.27-Fabrizius.pdf +1872,1954.01.30,30-Jan-54,1954,Unprovoked,Australia,New South Wales,Avoca Beach,Swimming,Bruce Bourke,M,Abrasions to arm,N,Sun-Herald,1/31/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.30-Bourke.pdf +1871,1954.01.22.b,22-Jan-54,1954,Unprovoked,Australia,Torres Strait,Naghir Island,Spearfishing,Annie Mills,M,Severe laceration to arm,N,Cairns Post,1/25/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.b-Mills.pdf +1870,1954.01.22.a,22-Jan-54,1954,Unprovoked,Argentina,Buenos Aires Province,"Miramar Beach, 46 km south of Mar de Plata, Buenos Aires ",Floating,Alfredo Aubone,M,"Arm & left calf bitten, right leg lacerated",N,V.M. Coppleson (1958),p.257; Garrick & L. Schultz in Sharks & Survival,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.a-Aubone.pdf +1869,1954.01.15,15-Jan-54,1954,Unprovoked,Papua new guinea,Madang Province,"Singour, 60 miles south of Madang",Crouching in the water,Ramlen,M,Back & thighs lacerated,N,Cairns Post,1/21/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.15-Ramlen.pdf +1868,1954.00.00.e,1954,1954,Unprovoked,Iran,Karun River,"Hesamabad area of Shushtar, 420 km from the sea",Unknown,Mr. Kasem Jasem,M,FATAL,Y,B. Coad,,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.e-KasemJasem.pdf +1867,1954.00.00.d,1954,1954,Unprovoked,Unknown,Unknown,Unknown,Unknown,Bernard Vieux,M,"Chest bruised, after shark clamped its jaws on his chest ",N,J. Randall in Sharks & Survival,pp.358-359,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.d-Vieux.pdf +1866,1954.00.00.c,1954,1954,Unprovoked,Mexico,Baja California,Unknown,Free diving,Rosario Bianci,M,FATAL,Y,V.M. Coppleson,p.262; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.c-Bianci.pdf +1865,1954.00.00.b,1954,1954,Unprovoked,Usa,Hawaii,Moloka'i,Fishing,Severino,M,Bitten on foot,N,J. Borg,p.73; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.b-Severino.pdf +1864,1954.00.00.a,1954,1954,Unprovoked,Papua new guinea,West New Britain Province,"Volupai, Talasea",Swimming,boy,M,Leg & abdomen lacerated,N, A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.a-Volupai.pdf +1863,1954.00.00 g,1954 (same day as 1954.00.00.f),1954,Unprovoked,Iran,Karun River,A village a short distance from Hesamabad,Unknown,girl,F,FATAL,Y,B. Coad,,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.g-girl.pdf +1862,1954.00.00 f,1954 (same day as 1954.00.00.f),1954,Unprovoked,Iran,Karun River,"Hesamabad area of Shushtar, 420 km from the sea",Unknown,Mr. Abbas Jasem (Mr. Kasem Jasem's son),M,Survived,N,B. Coad,,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.f-AbbasJasem.pdf +1861,1953.12.30,30-Dec-53,1953,Unprovoked,South africa,Eastern Cape Province,"Second Beach, Port St. Johns",Swimming,Mrs. G. Rautenbach,F,Left calf lacerated,N,Natal Mercury,12/31/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.30-Rautenbach.pdf +1860,1953.12.22,22-Dec-53,1953,Unprovoked,South africa,Eastern Cape Province,Port Elizabeth,Swimming,Glen Stoddart,M,Lacerations to arm,N,H. Monson,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.22-Stoddart.pdf +1859,1953.12.13,13-Dec-53,1953,Unprovoked,Australia,Queensland,Palm Beach,Swimming or wading out to warn bathers that a shark had been seen,"Neil Tapp, cadet lifesaver",M,Bruised shoulder chest & foot,N,V.M. Coppleson (1958),pp.95 & 240,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.13-Tapp.pdf +1858,1953.12.00,Dec-53,1953,Unprovoked,Australia,New South Wales,Maroubra Beach,Surf skiing,Jack Haynes,M,"No Injury, shark charged surfski",N, V.M. Coppleson (1958),p.42,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.00-Haynes.pdf +1857,1953.10.00,Oct-53,1953,Provoked,Australia,New South Wales,"Boat Harbour, north of Cronulla",Unknown,Len Kosky,M,"Hit by tail of speared shark, fell & hit head on rock & out cold for 30 minutes PROVOKED INCIDENT",N,V.M. Coppleson (1958),p.172,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.10.00-Kosky.pdf +1856,1953.09.27,27-Sep-53,1953,Unprovoked,Philippines,Luzon Island,Bohol,Unknown,Bartolome Mangubat,M,FATAL,Y,Palm Beach Post,9/28/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.27-Mangutbal.pdf +1855,1953.09.20.R,20-Sep-1953,1953,Unprovoked,Usa,California,"Santa Catalina Island, Los Angeles County",Scuba diving,Al Diamond,M,No injury,N,Oakland Tribune,9/20/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.20.R-Diamond.pdf +1854,1953.09.18,18-Sep-53,1953,Sea Disaster,Usa,Georgia,200 miles east of Savannah,Aircaft exploded,Sgt. Larry Charles Graybill,M,Hand bitten,N,New York Times ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.18-Graybill.pdf +1853,1953.09.03.R,03-Sep-1953,1953,Unprovoked,Usa,New York,Rockaway Beach,Surf fishing,"Alan Stevenson, Jr.",M,Laceration to right lower leg,N,The Dispatch,9/3/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.03.R-Stevenson.pdf +1852,1953.09.02,02-Sep-53,1953,Unprovoked,Usa,Hawaii,"Waiau, Pearl Harbor, O'ahu",Crabbing,Daniel Gonsalves,M,Leg & foot bitten,N,Honolulu Star Bulletin,9/2/1953; G.H. Balazs; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.02-Gonsalves.pdf +1851,1953.08.00,Aug-53,1953,Invalid,Mexico,Guerrero,Acapulco,Free diving,Arthur R. Satz,M,No injury,N,H.D. Baldridge (1994) SAF Case #679,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.08.00-NV-Satz.pdf +1850,1953.07.31,31-Jul-53,1953,Unprovoked,Mexico,Colima,Manzanillo,Wading,Ema Aquilera Prada,F,FATAL,Y,V.M. Coppleson (1958),p.262; J.M. Alatorre,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.31-Prada.pdf +1849,1953.07.26,26-Jul-53,1953,Unprovoked,Usa,Hawaii,"Maile Beach, O'ahu",Spearfishing,Harold Souza,M,"FATAL, thigh bitten",Y,V.M. Coppleson (1958),p.260; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.26-Souza.pdf +1848,1953.07.16,16-Jul-53,1953,Provoked,Usa,California,"Santa Catalina Island, Los Angeles County",Fishing from market fishboat Sea Spray,Captain Forest M. Richel,M,Arm bitten by hooked shark PROVOKED INCIDENT,N,L.A. Times,7/17/1953 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.16-Richel.pdf +1847,1953.07.15,15-Jul-53,1953,Unprovoked,Usa,Florida,"Juno Beach, Palm Beach County",Standing,Mrs. D. F. Gunn,F,Lower left leg severely bitten,N,R.F. Hutton; T. Helm,p. 231 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.15-Gunn.pdf +1846,1953.07.11,11-Jul-53,1953,Sea Disaster,Pacific ocean,330 to 350 miles east of Wake Island,Unknown,Royal Hawaiian skymaster DC-6B aircraft went down with 58 passenger & crew,Unknown,Unknown,Recuers fought sharks for the bodies,N,Guam Daily News,7/16/195; V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.11-WakeIsland.pdf +1845,1953.07.09,09-Jul-53,1953,Boating,Canada,Nova Scotia,"Fourchu, Cape Breton Island",Fishing for lobsters,"12' to 14' dory, occupants: John D. Burns & John MacLeod",M,Burns drowned as result of attack on boat,N,R. Collier,pp.169-170;Bigelow & Schroeder; Day & Fisher,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.09-Burns.pdf +1844,1953.07.04,04-Jul-53,1953,Unprovoked,Usa,Hawaii,Kaula Rock near Niihau ,Accidentally dragged overboard from the sampan Holokahana into school of yellowfin tuna,"David Crick, fisherman ",M,"Shark made 3 passes at him, lacerating his calf, shin and ankle ",N,Honolulu Advertiser,July 5,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.04-Crick.pdf +1843,1953.07.00,01-Jul-53,1953,Unprovoked,Panama,Gulf of Panama,60 miles offshore ,Retrieving bait box that had fallen overboard,Jose Gonzales,M,Hand severely bitten,N,V.M. Coppleson (1958),p.263; LA. Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.00-Gonzalves.pdf +1842,1953.06.00,Jun-53,1953,Provoked,Australia,Queensland,Unknown,Landing hooked shark in boat,Thomas H. Durbridge,M,Right forearm & hand bitten PROVOKED INCIDENT,N,V.M. Coppleson (1958),p.179,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.06.00-Durbridge.pdf +1841,1953.04.07,07-Apr-53,1953,Boating,Australia,New South Wales,1.5 miles off shore,Unknown,16' launch,Unknown,"No injury to occupant. As engine started, shark hit boat, breaking one of boat’s ribs in 3 places & stoving in 2 planks",N, V.M. Coppleson (1958),p.183,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.07-16-ft-launch.pdf +1840,1953.04.04,04-Apr-53,1953,Unprovoked,Usa,Texas,South Padre Island,Swimming,Susan Smith,F,Lacerations to right foot,N,Valley Morning Star,4/5/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.04-SueSmith.pdf +1839,1953.04.00.b,Apr-53,1953,Unprovoked,Iran,Karun River,"near Ahvaz, 275 km from the sea",Unknown,Mr. Kaaby,M,Arm severed,N,B. Coad,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.b-Kaaby.pdf +1838,1953.04.00.a,Apr-53,1953,Unprovoked,Iran,Karun River,"near Ahvaz, 275 km from the sea",Swimming in midriver near sewage outlet & 400 m from a slaughterhouse,Mr. Nasser Seemrookh,M,Right forearm severed at the elbow,N,B. Coad,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.a-Seemrookh.pdf +1837,1953.03.22,Mar-53,1953,Unprovoked,Australia,New South Wales,"Long Reef, Collaroy",Spearfishing,Helmut Scheidl,M,Arm lacerated,N,V.M. Coppleson (1958),pp.166-167,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.22-Scheidl.pdf +1836,1953.03.19.R,19-Mar-1953,1953,Unprovoked,Australia,South Australia,"Schnapper Rock, Kirton Point",Spearfishing,Michael Leech,M,Abrasion,N,The Advertiser,3/19/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.19.R-Leech.pdf +1835,1953.03.00.c,Mar-53,1953,Sea Disaster,Indian ocean,Unknown,Between Straits of Malacca and Sri Lanka,Adrift on a 4' raft for 32 days,"Ensio Tiira & Fred Ericsson, deserters from the French Foreign Legion",Unknown,Sharks attacked raft & consumed the body of Ericsson after he died,Y,E. Tiira,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.b-Tiira.pdf +1834,1953.03.00.a,Mar-53,1953,Unprovoked,Papua new guinea,Milne Bay Province,"Off Rossel Island, Louisiade Archipelago",Went over side of boat at trochus ground,Captain of cutter Hetabu,M,"FATAL, arm & leg severed & shark smashed at his body with its tail ",Y,A.M. Rapson,p.148; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.a-Hetabu.pdf +1833,1953.02.18,18-Feb-53,1953,Provoked,Usa,Hawaii,"Barber’s Point, O'ahu",Bitten while cutting shark from net,James S. Takeuchi,M,Hand bitten PROVOKED INCIDENT ,N,V.M. Coppleson (1958),p.260; G.H. Balazs; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.18-Takeuchi.pdf +1832,1953.02.15,15-Feb-53,1953,Unprovoked,Australia,New South Wales,Cave at Shell Harbour,Spearfishing,Rex Gallagher,M,"Shark tore off face mask, diver’s face, nose & chin lacerated",N,Spearfishing News,April 1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.15-Gallagher.pdf +1831,1953.02.00,Feb-53,1953,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Ron Ware,M,Foot bitten,N,J. Oetzel,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.00-Ware.pdf +1830,1953.01.20,20-Jan-53,1953,Provoked,Australia,South Australia,Largs Bay,Fishing,Ernest Lamerton,M,Finger bitten by hooked shark PROVOKED INCIDENT,N,The Advertiser,1/23/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.20-Lamerton.pdf +1829,1953.01.08,08-Jan-53,1953,Boating,Australia,Tasmania,Wynyard,Fishing,14-foot boat Sintra,Unknown,"No injury to occupant, shark charged boat",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.08-Wynyard.pdf +1828,1953.00.00.c,1953,1953,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Alan Agnew,M,Kneecap bitten,N,J. Oetzel; H. D. Baldridge,p.165,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.c-Agnew.pdf +1827,1953.00.00.b,1953,1953,Unprovoked,Papua new guinea,Bougainville (North Solomons),"Kahuli, Buka Island",Washing,male,M,"FATAL, torso bitten",Y,A. Bleakley; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.b-Kahuli.pdf +1826,1953.00.00.a,1953,1953,Unprovoked,Usa,Florida,"Juno Beach, Palm Beach County",Standing,girl,F,Leg lacerated thigh to ankle,N, V.M. Coppleson (1958),p.254; R. F. Hutton,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.a-girl.pdf +1825,1952.12.24,24-Dec-52,1952,Unprovoked,Australia,Victoria,"Portsea Beach, near Melbourne",Lying prone on surfboard,Bernard Bade,M,"No injury, board bumped by shark",N,V.M. Coppleson (1962),frontspiece,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.24-Bade.pdf +1824,1952.12.21,21-Dec-52,1952,Unprovoked,Australia,South Australia,Cape Douglas,"Fishing, setting nets",John Holmes,M,Bitten on thigh and buttocks,N,V.M. Coppleson (1958),p.178; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.21-Holmes.pdf +1823,1952.12.14,14-Dec-62,1952,Invalid,Unknown,Unknown,Unknown,Air Disaster,Soledad Castellanos - or - Norma Figeroa,F,It is probable that all onboard (2 men & 2 women) died when the plane crashed into the sea & her body was scavenged by a shark,Y,The Frederick Post (Maryland),12/17/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.14-Guatemala.pdf +1822,1952.08.04,04-Aug-52,1952,Provoked,Italy,Genoa Province,Riva Trigoso,Fishing,Franco Podesta,M,Bitten by hooked shark PROVOKED INCIDENT,N, C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.04-Podesta.pdf +1821,1952.08.03,03-Aug-52,1952,Unprovoked,Usa,Hawaii,"Between Ala Moana Channel & Kewalo Basin, O'ahu",Swimming,Shigeichi Kawamura,M,"FATAL, disappeared while swimming, shark bite found on right side of body",Y,Honolulu Advertiser,12/4/1952; G.H. Balazs & A.K.H. Kam; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.03-Kawamura.pdf +1820,1952.12.07,07-Dec-52,1952,Unprovoked,Usa,California,"Pacific Grove, Monterey Bay, Monterey County",Body surfing & treading water,Barry Wilson,M,"FATAL, leg lacerated ",Y,R. L. Bolin,D. Miller & R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.07-Wilson_Collier.pdf +1819,1952.12.03,03-Dec-52,1952,Unprovoked,Usa,Hawaii,"Maile Beach, O'ahu",Swimming from fishing boat setting nets,Gerbacio Solano (or Salamo),M,"FATAL, left arm severed below the elbow ",Y, Honolulu Advertiser,12/4/1952; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.03-Solano.pdf +1818,1952.10.12,12-Oct-52,1952,Unprovoked,Papua new guinea,"Abau Sub District, Central Province",Lalaura Village,Fishing,male,M,Right thigh bitten ,N,A. Bleakley; A.M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.10.12-Lalaura.pdf +1817,1952.08.06,06-Aug-52,1952,Invalid,South africa,Eastern Cape Province,Nelson’s Rock,Unknown,Mr. Ristow,M,"Possibly drowned, remains found days later in shark’s gut",Y,Daily Dispatch; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.06-Ristow.pdf +1816,1952.08.05,05-Aug-52,1952,Provoked,Italy,Teramo,Giulianova,Fishing,Vittorio Speca,Unknown,Multiple injuries PROVOKED INCIDENT,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.05-Speca.pdf +1815,1952.07.27.d,27-Jul-52,1952,Boating,Usa,Florida,"Panacea, Wakulla County",Fishing for trout ,a skill. Occupants George Lunsford & 2 companions,Unknown,No injury to occupants. Shark chasing fish leapt into skiff & flopped out,N,Evening Sun (Baltimore),7/28/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.d-Lunsford-boat.pdf +1814,1952.07.27.c,27-Jul-52,1952,Provoked,Usa,South Carolina,Seabrook Beach,Fishing, Ben Tillman Homes,M,Finger bitten by hooked shark PROVOKED INCIDENT,N,News and Courier,7/28/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.c-TillmanHomes.pdf +1813,1952.07.27.b,27-Jul-52,1952,Provoked,Usa,South Carolina,Seabrook Beach,Fishing,Truman Jones ,M,Thumb bitten by hooked shark PROVOKED INCIDENT,N,News and Courier,7/28/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.b-Jones.pdf +1812,1952.07.27.a,27-Jul-52,1952,Sea Disaster,Usa,California,"Off Santa Monica, Los Angeles County",Boat exploded,"Wes Wiggins and 7 others on the boat, Sparetime",M,FATAL & some of the survivors were bitten by sharks ,Y,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.a-Sparetime.pdf +1811,1952.07.13,13-Jul-52,1952,Provoked,Usa,California,"San Diego, San Diego County",Fishing,"Gerald Howard, on board sportsfishing boat Teresa A",M,Part of hand removed by shark he had caught PROVOKED INCIDENT,N,L.A. Times,7/14/1952 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf +1810,1952.07.05,05-Jul-52,1952,Unprovoked,Usa,Puerto Rico,"Mona Island, 40 miles west of the mainland ","Spearfishing, carrying fish on spear",Juan Suarez Morales,M,Leg lacerated & bone fractured ,N,V.M. Coppleson (1958),p.265; J. Randall in Sharks and Survival,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.05-Morales.pdf +1809,1952.05.27,27-May-52,1952,Unprovoked,Usa,California,"Imperial Beach, San Diego County",Swimming on surface,"Arthur E. Taylor, a navy diver & member+G1053 of a 24-man demolition team",M,Foot & swimfin bitten,N,R. Collier,pp.8-9,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.27-Taylor_Collier.pdf +1808,1952.05.07.R,07-May-1952,1952,Unprovoked,Australia,Western Australia,Boyup Brook,"Fishing, standing in water washing fish",Mr. M. King,M,Lacerations to 2 fingers & knuckles abraded,N,T. Peake,GSAF; West Australian,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.07.R-King.pdf +1807,1952.05.00,May-52,1952,Unprovoked,India,Unknown,Off Trivandrum (west coast),"Fishing, standing in water next to purse net",Ranji Lal,M,Lower leg lacerated,N,F. Dennis,p.10,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.00-Lal.pdf +1806,1952.04.06,06-Apr-52,1952,Boating,Australia,South Australia,Streaky Bay,Fishing for white sharks,25' cutter,Unknown,No injury to fisherman Alf Dean & other occupants;,N,Recorder (Port Pirie),4/7/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.06-AlfDean.pdf +1805,1952.04.00,Apr-52,1952,Provoked,Sudan,Red Sea State,"Suakin Harbor, Suakin Island",Spearfishing,Hans Hass,M,Right forearm lacerated by speared shark PROVOKED INCIDENT,N,H. Hass in We Come From the Sea,pp.42-46,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.00-Hass.pdf +1804,1952.03.30,30-Mar-52,1952,Unprovoked,Netherlands antilles,Curacao,Unknown,Went to aid of child being menaced by the shark,A.J. Eggink,M,"Buttock bitten, tissue removed",N,J. Randall,p.352 in Sharks & Survival; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.03.30-Eggink.pdf +1803,1952.01.23,23-Jan-52,1952,Provoked,Mauritius,Port Louis Province,Port Louis,"Spearfishing, speared a small shark",Bernard Montessier,M,Right foot lacerated by a larger shark. Lost several toes PROVOKED INCIDENT,N,V.M. Coppleson (1958),p.262; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.23-Moitessier.pdf +1802,1952.01.07,07-Jan-52,1952,Unprovoked,Australia,New South Wales,Evans Head,Surfing,Charles Thomas,M,Bitten on left calf and ankle,N,Canberra Times,1/8/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.07-CharlesThomas.pdf +1801,1952.00.00.e,1952-1954,1952,Unprovoked,Liberia,Montserrado,"West Breakwater, Monrovia / Freeport","Diving, recovering fish killed by dynamite",male,M,FATAL,Y,G.C. Miller,,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.e-Liberia.pdf +1800,1952.00.00.d,1952,1952,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province",Manus Island,Spearfishing,male,M,"Arm bitten, surgically amputated",N,Cairns Post,11/27/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.d-ManusIsland.pdf +1799,1952.00.00.c,1952,1952,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province","Momote, Manus Island",Spearfishing,male,M,"FATAL, ""No remains""",Y,A. Bleakley; A. M. Rapson,p.148; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.c-Momote.pdf +1798,1952.00.00.b,1952,1952,Unprovoked,Papua new guinea,New Ireland Province,"Samo Plantation, east coast ",Spearfishing,"Kiaploki, a male",M,"FATAL, lower abdomen removed ",Y,A. Bleakley; Namatanai Dept. of Public Health; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.b-Kiaploki.pdf +1797,1952.00.00.a,1952,1952,Unprovoked,Usa,Florida,Near Key West,Swimming,"male, a Pan American pilot wearing a flourescent bathing suit",M,"FATAL, groin bitten ",Y,V.M. Coppleson (1958),p.254; R. F. Hutton; T. Helm,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.a-PanAmPilot.pdf +1796,1951.12.21,21-Dec-51,1951,Unprovoked,Mozambique,Bay of Maputu,Catembe ,Swimming,Carlos do Amaral,M,"FATAL, right leg, thighs & hands bitten ",Y,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.21-DoAmaral.pdf +1795,1951.12.16,16-Dec-51,1951,Provoked,Australia,New South Wales,North Bondi,Spearfishing,Lindsay Munn,M,Speared shark lacerated left leg above ankle PROVOKED INCIDENT,N,V.M. Coppleson (1958),pp. 171-172,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.16-Munn.pdf +1794,1951.12.06,06-Dec-51,1951,Unprovoked,Australia,New South Wales,"Merewether Beach, Newcastle",Treading water,"Frank Olkulich, the local surf-ski champion",M,FATAL,Y,V.M. Coppleson (1958),pp.79; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.06-Okulich.pdf +1793,1951.11.29,29-Nov-51,1951,Unprovoked,South africa,KwaZulu-Natal,"South Beach, Durban",Swimming,Harold Tait,M,Thigh bruised & abraded,N,G. Plowman,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.29-Tait.pdf +1792,1951.11.28.b,28-Nov-51,1951,Unprovoked,Jamaica,Kingston Parish,Kingston Harbor,Fishing,George Lewis,M,Lacerations to left hand,N,Daily Gleaner,11/29/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.b-Lewis.pdf +1791,1951.11.28.a,28-Nov-51,1951,Unprovoked,South africa,KwaZulu-Natal,Winkelspruit,Treading water,George Plowman,M,"Leg severed below knee, defense wounds on hand",N,G. Plowman,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.a-Plowman.pdf +1790,1951.11.23.R,23-Nov-1951,1951,Unprovoked,Unknown,Unknown,Unknown,Shipwrecked; adrift on raft for 2 days & 2 nights,3 fishermen,M,"FATAL, two men survived, one succumbed to shark bite & exhaustion",Y,Fresno Bee Republican,11/23/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.22-Philippines.pdf +1789,1951.10.22,22-Oct-51,1951,Unprovoked,Australia,Queensland,"Ocean baths, Kissing Point Beach ",Swimming,Arthur James Kenealey,M,"FATAL, leg severed, shark dragged him through hole in protective net",Y,V.M. Coppleson (1958),pp.90-91; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.22-Kenealy.pdf +1788,1951.10.05,05-Oct-51,1951,Invalid,North atlantic ocean,South Carolina,400 miles off the le,cargo ship Southern Isle sank at 04h00,Unknown,Unknown,Sharks fed on bodies of the drowned,N,J. Waters,U.S. Coast Guard; San Mateo Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.05-SouthernIsle.pdf +1787,1951.09.29,29-Sep-51,1951,Unprovoked,Italy,Salerno,Amalfi,Swimming,Anna Wurn,F,FATAL,Y,C. Moore,GSAF; Courier-Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.29-Wurn.pdf +1786,1951.09.03.R,03-Sep-1951,1951,Unprovoked,Italy,Salerno Province,Salerno,Fishing for squid,Luca Caputo,M,3 fingers severed when he used his hand as bait,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.03.R-Caputo.pdf +1785,1951.09.02-R,02-Sep-1951,1951,Unprovoked,Australia,Queensland,Fitzroy River near Rockhampton,"Body found on deserted luxury yacht, 38’ Christine",Dr. E. Al Joske,M,"FATAL, abdominal wounds & right leg severed at the hip ",Y,J. Green,p.34; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.02-Joske.pdf +1784,1951.08.17.b,17-Aug-51,1951,Unprovoked,Greece,Corfu Island,Off Royal Residence,Swimming,George Athanasenas,M,Injured but survived,N,A. De Maddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.b-Athanasenas.pdf +1783,1951.08.17.a,17-Aug-51,1951,Unprovoked,Greece,Corfu Island,Off Royal Residence,Swimming,Vanda Pierri,F,"FATAL, body not recovered Another man was also injured by the shark at same time (see below)",Y,A De Maddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.a-Perri.pdf +1782,1951.08.16.R,16-Aug-1951,1951,Unprovoked,Italy,Taranto,Torre Colimena,Diving (Hookah),male,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.16.R-TorreColimena.pdf +1781,1951.08.00,Between 01-Aug-1951 & 08-Aug-1951,1951,Unprovoked,Columbia,Caribbean Sea,Cartegena,Bathing,"4 people killed in the past week, others injured",Unknown,FATAL,Y,New York Times,8/9/1951; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.00-Cartagena.pdf +1780,1951.07.19.R,19-Jul-1951,1951,Unprovoked,Usa,California,"Long Beach, Los Angeles County",Unknown,Archie Nottingham,M,Severe laceration to foot,N,Long Beach Independent,7/19/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.19.R-Nottingham.pdf +1779,1951.07.11,11-Jul-51,1951,Unprovoked,Pacific ocean,Unknown,In Los Angeles – Honolulu yacht race,Fell overboard,"Edward Sierks, skipper",M,"""Molested by shark that nibbled his bare feet"", rescued 30 hours later.",N,Daily Review,7/13/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.11-Sierks.pdf +1778,1951.06.25,25-Jun-51,1951,Unprovoked,Usa,Hawaii,"Kapehu Beach, Laupahoehoe, Hawai'i",Swept out to sea while fishing,Alejandro Nodura,M,"FATAL, victim seen in shark's mouth",Y,G.H. Balazs & A.K.H. Kam; J. Borg,p.72; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.25-Nodura.pdf +1777,1951.06.00,Jun-51,1951,Unprovoked,French polynesia,Tuamotus,"Outer edge of Hikueru, one of the Central Tuamotu atolls",Spearfishing,Don M. Clark,M,Right thumb bitten,N,D.M. Clark,,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.00-Clark.pdf +1776,1951.05.22,22-May-51,1951,Unprovoked,Unknown,Unknown,Unknown,Free diving,Brian Lanse,M,Lower leg severely injured,N,H.D.Baldridge (1994),SAF Case #1482,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.22-NV-Lanse.pdf +1775,1951.05.09.R,09-May-1951,1951,Provoked,Italy,Naples Province,"Torre del Greco, Naples",Unknown,Unknown,Unknown,3 men knocked to ground by harpooned shark PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.09.R-Naples.pdf +1774,1951.03.26,26-Mar-51,1951,Provoked,Australia,New South Wales,Avalon,Fell off surf ski,Ken Davidson,M,Minor laceration to chest when he grabbed the shark by its tail PROVOKED INCIDENT,N,Canberra Times,1/27/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.26-Davidson.pdf +1773,1951.03.24,24-Mar-51,1951,Unprovoked,Australia,New South Wales,Sydney,"Fishing, casting in the surf",male,M,Severe lacerations of chest & thigh,N,LA Times,3/25/1951 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.24-Fisherman.pdf +1772,1951.03.15,15-Mar-51,1951,Unprovoked,South africa,KwaZulu-Natal,"South Beach, Durban",Body surfing,Heinrich Stapelberg,M,Left foot lacerated,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.15-Stapelberg.pdf +1771,1951.02.19,19-Feb-51,1951,Unprovoked,South africa,Eastern Cape Province,Port St. Johns,Body surfing,Keith Huskisson,M,"Leg bitten, defense wounds on hands",N,K. Huskisson,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.19-Huskisson.pdf +1770,1951.02.03,03-Feb-51,1951,Unprovoked,Australia,New South Wales,"Windang, near the entrance to Lake Illawarra",Spearfishing (but treading water on the surface),Albert Pride,M,Shark's fin caused abrasion on his chest,N,G.P. Whitley (1951),p.194 cites Sunday Sun (Sydney) 2/4/1951; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.03-Pride.pdf +1769,1951.02.01,01-Feb-51,1951,Unprovoked,Australia,New South Wales,Bondi Beach,Swimming,Harry Sheen,M,Leg bitten,N,G.P. Whitley (1951),p.194 cites Daily Mirror (Sydney); J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.01-Sheen.pdf +1768,1951.01.21,21-Jan-51,1951,Unprovoked,South africa,KwaZulu-Natal,"Native Beach, Durban",Swimming,Hendrie Nkwazi,M,"FATAL, right thigh bitten, leg severed at knee",Y,D. Davies; M. Levine,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.21-Nkwazi.pdf +1767,1951.01.03,03-Jan-51,1951,Invalid,Australia,New South Wales,Hawkesbury River,Unknown,male,M,Body found after a week in the water apparently bitten by shark/s,Y,G.P. Whitley (1951),p.194,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.03-HawkesburyRiver.pdf +1766,1951.00.00,1951,1951,Unprovoked,New guinea,Madang Province,Manam Island,Unknown,Unknown,Unknown,FATAL,Y,A. Bleakley; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.00.00-ManamIsland.pdf +1765,1950.12.31,31-Dec-50,1950,Unprovoked,Australia,Queensland,Kirra,Paddling a surfboat,Brian Love,M,"No injury, shark bit oar",N,Examiner,1/1/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.31-oar.pdf +1764,1950.12.19.R,19-Dec-1950,1950,Unprovoked,Australia,New South Wales,Jervis Bay,Swimming,2 swimmers,Unknown,Legs nipped,N,Canberra Times,12/19/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.19.R-JervisBay.pdf +1763,1950.12.16,16-Dec-50,1950,Unprovoked,Australia,Queensland,"Palm Beach North, 5 miles north of Burleigh Heads, Brisbane",Treading water,"Desmond Quinlan, lifesaver",M,"FATAL, lower abdomen severely bitten & his left leg was severed",Y,R. A Smith; G.P. Whitley (1951),p.194,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.16-Quinlan.pdf +1762,1950.11.29,29-Nov-50,1950,Provoked,Australia,Northern Territory,Goulburn Island,Diving ,Irrwala,M,"Minor injury to hand and groin from shark ""caught on his fishing spear"" PROVOKED INCIDENT",N,Northern Standard,12/1/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.29-Irrwala.pdf +1761,1950.11.25,25-Nov-50,1950,Unprovoked,Australia,Queensland,"Burleigh Heads, Brisbane",Body surfing,Leo Vincent Ryan,M,Part of buttocks & fingers severed,N,G.P.Whitley (1951),p. 194,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.25-LeoVincentRyan.pdf +1760,1950.11.12,12-Nov-50,1950,Boating,Australia,Queensland,Yeppoon,Paddling a canoe,A canoe; occupants Harry Goodson & Douglas Barnes,M,"No injury to occupants, shark holed canoet",N,Sydney Morning Herald,11/13/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.12-canoe.pdf +1759,1950.10.08,28-Oct-50,1950,Unprovoked,Usa,California,"Imperial Beach, San Diego County",Body surfing / treading water,Robert B. Campbell,M,Right leg lacerated,N,R. Collier,p 6-8,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.08-Campbell-Collier.pdf +1758,1950.10.04,04-Oct-50,1950,Unprovoked,Australia,Queensland,"Peterson's Beach, Sarina",Fishing,Valentine Sichter,M,Lacerations to right thumb and knee,N,Courier-Mail,10/6/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.04-Sichter.pdf +1757,1950.08.06,06-Aug-50,1950,Provoked,El salvador, La Libertad,50 miles off Port La Libertad,Jerked overboard while pole fishing for tuna,Robert L. Bottini,M,Left thigh bitten by hooked shark PROVOKED INCIDENT,N,Evening Sun (Baltimore),8/11/1950; Long Beach Press-Telegram,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.06-Bottini.pdf +1756,1950.08.00,Aug-50,1950,Unprovoked,Saudi arabia,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,Tissue stripped knee to foot,N,G.F. Mead,,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.00-PearlDiver-Arabia.pdf +1755,1950.07.27.R,27-Jul-1950,1950,Boating,Australia,South Australia,Streaky Bay,Fishing,40' fishing cutter,Unknown,No injury to occupants,N,The Mercury,7/27/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.27.R-Horsell-boat.pdf +1754,1950.07.21,21-Jul-50,1950,Unprovoked,Japan,Sago Prefecture,Ariakeno Bay,Swimming,male,M,FATAL,Y,M. Hosina; K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.21-Japan.pdf +1753,1950.07.19,1950.07.19,1950,Provoked,Italy,Savona,Albenga,Fishing,male,Unknown,Harpooned shark bit his forehead PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.19-Albenga.pdf +1752,1950.07.14,15-Jul-50,1950,Unprovoked,Cuba,Caribbean Sea,Unknown,Swept off deck of S.S.Frontenac enroute from West Indies to US,"Johan Loekstad, a Norwegian seaman",M,Found at 21h30 by searchlight. Had been constantly harassed by sharks & had numerous lacerations,N,L.A. Times,8/20/1950; Evening Star (Washington,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.14-Loekstad.pdf +1751,1950.07.10,10-Jul-50,1950,Unprovoked,Usa,Texas,Near Port Arthur,Swimming,Mark Majors III,M,Laceration to leg,N,Amarillo Daily News,7/12/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.10-Majors.pdf +1750,1950.07.09,09-Jul-50,1950,Invalid,Usa,Texas,Galveston Bay,Unknown,Unknown,M,Human remains found in shark,Y,Kingston Daily Freeman,7/14/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.09-Galveston.pdf +1749,1950.07.00,Jul-50,1950,Unprovoked,Usa,Florida,"Rock Harbor, Key Largo, Monroe County","Goggle-diving for seaweeds, but standing in water",Warren Rathgen,M,Shallow lacerations on back of right thigh,N,C. Phillips & W.H. Brady; R.F. Hutton; V.M. Coppleson (1958),p.252 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.00-Rathjen.pdf +1748,1950.06.25,25-Jun-50,1950,Unprovoked,Usa,New York,"Beach 103rd Street, Rockaway ",Swimming ,Joseph Salengo,M,"Gashes & lacerations on legs, foot lacerated.",N, New York Times,6/25/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.25-Salango.pdf +1747,1950.06.06,06-Jun-50,1950,Sea Disaster,Usa,Florida,275 miles northeast of Miami,Survived crash of two-engine C-46 transport plane carrying 62 migrant workers from Puerto Rico to USA ,Pedro Guzman,M,"FATAL, bitten five times. Other survivors fought off sharks for 10 hours. One survivor's arm severed by a shark.",Y,NY Times,7/7/1950; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.06-Guzman.pdf +1746,1950.05.24,24-May-50,1950,Unprovoked,South africa,KwaZulu-Natal,Port Edward,Treading water,Dr. Leonard Read Tibbet,M,Left foot bitten,N,L.R. Tibbet,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.24-Tibbit.pdf +1745,1950.05.01,01-May-50,1950,Boating,Italy,Tyrrhenian Sea,"Sprizze, Isola d'Elba",Fishing on a boat,Remo Adriani,M,No injury,N,A. De Maddalena; F. Serena (pers. Comm.),,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.01-Adriani.pdf +1744,1950.04.09.b,09-Apr-50,1950,Sea Disaster,Australia,Queensland,Cooper's Point,"Sea Disaster, sinking of the fishing launch Mavis",John McDonald,M,FATAL,Y,Cairns Post,7/8/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09-McDonald.pdf +1743,1950.04.09.a,09-Apr-50,1950,Unprovoked,South africa,Eastern Cape Province,Off Port Elizabeth breakwater,"Fishing, sitting in stern of small boat, feet dangling in the water",male,M,"Shark bit foot, removing 2 toes",N,Port Elizabeth Museum Archives,,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09.R-2Toes.pdf +1742,1950.03.26,26-Mar-50,1950,Unprovoked,South africa,Eastern Cape Province,"Off bank of Ntshala River, Morgan Bay",Wading,Mr. N. Wright,M,"Ankle & foot lacerated, defense wounds on hand",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.26-Wright.pdf +1741,1950.03.08,08-Mar-50,1950,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Lifesaving drill,Brian Von Berg,M,FATAL,Y,N.Cook; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.08-VonBerg.pdf +1740,1950.03.01,01-Mar-50,1950,Invalid,Australia,Western Australia,"City Beach, Perth",Suicide,Peter Szott,M,"His body, with bullet wound in head & right hand missing, washed shore - an apparent suicide",Y,G.P. Whitley (1951),p.186,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.01-Szott.pdf +1739,1950.02.18.R,18-Feb-1950,1950,Unprovoked,Australia,Western Australia,"Cottesloe, Perth",Spearfishing,male,M,Minor injury to leg,N,Mirror,2/18/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.18.R-Perth.pdf +1738,1950.02.11,11-Feb-50,1950,Unprovoked,South africa,KwaZulu-Natal,"South Beach, Durban",Body surfing,Clive Dumayne,M,"FATAL, body not recovered ",Y,M. Dumayne,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.11-Dumayne.pdf +1737,1950.01.16,16-Jan-50,1950,Invalid,Usa,Hawaii,"Kahakuloa, Maui","Fishing, one of three fishermen swept into the sea by a large wave ",Gilbert S. Hotta,M,"His remains were recovered from a “huge shark” caught 3 days later. The remains of another fisherman, Harold Fujimoto, were recovered, but the body of the third fisherman, Hideo Tamura, was never found",Y,J. Borg,p.72; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.16-Hotta.pdf +1736,1950.01.12.R,12-Jan-1950,1950,Unprovoked,Australia,Victoria,South Werribee Beach,Swimming,D. Martin,M,3 lacerations to heel,N,Werribee Shire Banner,1/12/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.12.R-Martin.pdf +1735,1950.00.00.m,1950,1950,Boating,Australia,Tasmania,Triabunna,Sitting on side of dinghy mending a net,Neil Drake,M,"No injury to occupant, shark bit side of dinghy",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.m-Drake-dinghy.pdf +1734,1950.00.00.l,1950,1950,Unprovoked,Sri lanka,Eastern Province,Heda Oya Estuary,Shark fishing,Aboobaker,M,Buttock removed,N,R.I. DeSilva,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.l-Abbobaker.pdf +1733,1950.00.00.k,1950,1950,Unprovoked,Sri lanka,Southern Province,Dodnduwa,Spearfishing,Langston Pereira,M,"No injury, but shark damaged one of his swim fins",N,R.I. DeSilva,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.k-Pereira.pdf +1732,1950.00.00.j,1950 - 1951,1950,Unprovoked,Liberia,Montserrado,Monrovia,Defecating in water beneath the docks,a dock worker,M,FATAL,Y,G. C. Miller,,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.j-Liberian-dock-worker.pdf +1731,1950.00.00.i,Summer 1950,1950,Unprovoked,Indonesia,Jakarta Harbour,On rock near Yacht Club,Bending over,child,M,FATAL,Y,J. Daigle,,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.i-child.pdf +1730,1950.00.00.h,1950,1950,Unprovoked,Usa,Florida,"Jacksonville Beach, Duval County",Standing,George Carter,M,Arm bitten,N,Florida Times-Union (Jacksonville),6/6/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.h-Carter.pdf +1729,1950.00.00.g,1950s,1950,Invalid,Usa,Hawaii,"Waikiki, O'ahu",Spearfishing,David Lloyd,M,"No injury from shark, scraped chest climbing out on reef",N,J. Borg,p.73; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.g-Lloyd.pdf +1728,1950.00.00.f,1950,1950,Unprovoked,Panama,Canal Zone,300 yards west of mouth of the Chagres River,Bathing ,"male, a US soldier",M,Foot & hand severed,N,G.B. Fairchild,,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.f-US-solier.pdf +1727,1950.00.00.e,Summer 1950,1950,Unprovoked,Greece,Unknown,"Piraeus, Athens",Swimming,Unknown,Unknown,FATAL,Y,V.M. Coppleson (1958),p.259; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.e-Piraeus.pdf +1726,1950.00.00.d,1950,1950,Unprovoked,Singapore,Singapore Harbor,Unknown,Diving for coins,"Abdullah, a Malay diver",M,FATAL,Y,V.M. Coppleson (1958),p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.d-Abdullah.pdf +1725,1950.00.00.c,1950,1950,Unprovoked,New caledonia,North Province,"Voh, near meatworks","Spearfishing, but walking carrying fish on end of speargun",male,M,"Shark jumped from sea, taking fish & his right arm",N,V.M. Coppleson (1958),p.262; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.c-NewCaledonia-Voh.pdf +1724,1950.00.00.b,Ca. 1950,1950,Unprovoked,New caledonia,North Province,Mangalia Reef above Touho ,"Helmet diving, collecting trochus shell",male,M,"Arm bitten, surgically amputated",N, V.M. Coppleson (1958),pp.98 & 262,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.b-NewCaledonia-Touho.pdf +1723,1950.00.00.a,Ca. 1950,1950,Unprovoked,Fiji,Unknown,Near Lautoka,Unknown,Fijian,M,Survived,N,V.M. Coppleson (1962),p.246,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.a-Fiji.pdf +1722,1949.12.00.b,Dec-49,1949,Sea Disaster,International_water,Caribbean Sea,Between Cuba & Costa Rica,"Sea Disaster, sinking of the motorship Wingate","Albert Battles, James Dean & 4 crew",M,Fatal or drowning or scavenging,Y,Canberra Times,1/6/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.b-Wingate.pdf +1721,1949.12.00.a,Dec-49,1949,Unprovoked,Australia,Victoria,Seaholme,Lying on the bottom of a 16' dinghy,Doug Miller,M,"No injury, Shark landed on top of him, knocked him back down 3 times",N,V.M. Coppleson (1958),pp. 181-182,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.a-Miller.pdf +1720,1949.11.20,20-Nov-49,1949,Unprovoked,Australia,New South Wales,"Kurnell, Botany Bay ",Free diving or wading back to shore,William Edward Brown,M,Left arm bitten ,N,Sydney Morning Herald,11/20/1949,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.20-Brown.pdf +1719,1949.11.12,12-Nov-49,1949,Invalid,Australia,Victoria,Port Phillip Bay,No details,John W. Smith,M,Fatal or drowning or scavenging,Y,G.P. Whitley (1951),p.194,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.12-Smith.pdf +1718,1949.08.28.b,28-Aug-49,1949,Unprovoked,Australia,Queensland,Yorkey’s Knob Beach near Cairns,Swimming,Brian Ware (rescuer),M,Abdomen & chest abraded,N,V.M. Coppleson (1958),p.89,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.b-Ware.pdf +1717,1949.08.28.a,28-Aug-49,1949,Unprovoked,Australia,Queensland,Yorkey’s Knob Beach near Cairns,Swimming,James Howard,M,"FATAL, right leg, thigh & fingers lacerated ",Y,G.P. Whitley (1951),p.194,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.a-Howard.pdf +1716,1949.08.17,17-Aug-49,1949,Invalid,Italy,Tuscany,Elba Island,Swimming,Domenico Murolo,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.17-Murolo.pdf +1715,1949.08.16,16-Aug-49,1949,Unprovoked,Australia,Tasmania,Flinders Island,Swimming near shore,Robert Kay,M,Hip lacerated,N,G.P. Whitley (1952),p.194;,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.16-Kay.pdf +1714,1949.08.10.R,10-Aug-1949,1949,Unprovoked,Italy,Calabria,Cosenza,Swimming,Giovanni Picarelli,M,Right hand severed,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.10.R-Picarelli.pdf +1713,1949.07.29,07-Jul-49,1949,Unprovoked,Iran,Shatt-el-Arab River,Unknown,Swimming,"R. Palmer, ship’s apprentice",M,Right leg lacerated,N,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.29-Palmer.pdf +1712,1949.07.28,28-Jul-49,1949,Unprovoked,Iran,Shatt-al-Arab River,Bashamir,Swimming,Ali,M,"FATAL, thigh lacerated, femur exposed ",Y,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.28-Ali.pdf +1711,1949.07.25,25-Jul-49,1949,Unprovoked,Usa,South Carolina,"Oketee River, Jasper County",Floating on his back,Ted Roach,M,"Abdomen abraded, thigh lacerated",N,V.M. Coppleson (1958),p.153,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.25-Roach.pdf +1710,1949.07.16,16-Jul-49,1949,Provoked,Usa,California,"10 miles off Redondo Beach, Los Angeles County",Fishing,Raymond T. Gold,M,Right hand bitten by hooked shark being pulled onboard PROVOKED INCIDENT,N,L.A. Times,7/17/1949 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.16-Gold.pdf +1709,1949.06.13,13-Jun-49,1949,Sea Disaster,China,Unknown,Between Tientsin & Hong Kong,"A 75-ton Japanese fishing ship was sunk by Chinese Nationalist gunboat, shipwrecked men were clinging to debris",Japanese fishermen,M,"FATAL, at time of sinking several men were thrown in water & killed by sharks, survivors were rescued 3 days later by the Panamanian ship Christobel",Y,V.M. Coppleson (1958),pp.257-258,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.06.13-Japanese-fishermen.pdf +1708,1949.05.16,16-May-49,1949,Unprovoked,Australia,Western Australia,Broome,Bathing,Mary Passaris,F,"Left arm severed above elbow, recovered 5 days afterwards from shark’s gut",N,V.M. Coppleson (1958),pp.107 & 241; G.P. Whitley (1951),http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.16-Passaris.pdf +1707,1949.05.13,13-May-49,1949,Provoked,Australia,New South Wales,Nelson's Bay,"Examining netted shark, that had been shot",Albert Hampton,M,Lacerations to right hand PROVOKED INCIDENT,N,V.M. Coppleson (1958),p.176; R. Skocik,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.13-Hampton.pdf +1706,1949.04.18,18-Apr-49,1949,Provoked,Australia,Queensland,"Nerang River, Southpot",Fishing,"""Lockie"" Smith",M,Toe bitten by netted shark PROVOKED INCIDENT,N,Courier-Mail,4/19/1949,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.18-Lockie-Smith.pdf +1705,1949.04.17,17-Apr-49,1949,Unprovoked,Australia,Queensland,"Ellis Beach, 20 miles from Cairns",Bathing in water 0.9 m deep,Richard Joseph Maguire,M,"FATAL, left leg severed",Y,G.P. Whitley (1951),p.194; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.17-Maguire.pdf +1704,1949.04.13,13-Apr-49,1949,Unprovoked,Mexico,Tamaulipas,"Miramar Beach, Tampico",Bathing,male,M,"U.S. destroyer John W. Weeks, 6 miles offshore, demonstrating guns & bombs for Mexican officials was thought to have driven the shark into the shallows where it bit the bather before other bathers drove it away with sticks & clubs.",N,New York Herald Tribune,4/15/1949,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.13-Miramar.pdf +1703,1949.03.00,Mar-1949 or Apr-1949,1949,Boating,Australia,South Australia,18 miles south of Port Augusta,Unknown,boat,Unknown,Unknown,N,G.P. Whitley (1951),p.194; SAF Case #612,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.03.00-boat-PortAugusta.pdf +1702,1949.01.23,23-Jan-49,1949,Unprovoked,Australia,New South Wales,"Bar Beach, Newcastle ",Lifesaving exhibition,Ray Land,M,FATAL,Y,G.P. Whitley (1951); V.M. Coppleson (1958),pp. 77 & 78; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.23-Land.pdf +1701,1949.01.14,14-Jan-49,1949,Invalid,Australia,New South Wales,Off North Bondi,Surfing,Vince Wilson,M,"No injury, chased by 3 sharks",N,Sydney Morning Herald," 1/14/1949 +",http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.14-Wilson.pdf +1700,1949.01.13,13-Jan-49,1949,Unprovoked,Australia,New South Wales,"Mona Vale, near Sydney",Surf skiing,Don Dixon,M,"No injury, shark bumped ski",N,G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.13-DonDixon.pdf +1699,1949.01.05,05-Jan-49,1949,Invalid,Australia,Western Australia,"Leighton Beach, North Fremantle",Unknown,Unknown,Unknown,Human hand recovered,UNKNOWN,G.P. Whitley (1951),p.186 citing Daily Telegraph (Sydney),http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.05-hand.pdf +1698,1949.00.00.g,1949-1950,1949,Boating,Italy,Tyrrhenian Sea,San Vincenzo,"Fishing, on a boat",male,M,No injury to occupant,N,A. De Maddalena; V. Biagi (pers. Comm.),,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.g-boat.pdf +1697,1949.00.00.f,1949,1949,Unprovoked,New guinea,Calvados Archipelago,"Sabara Island, Calvados Chain 11.4S, 153E",Unknown,Anonymous,Unknown,FATAL,Y,A. Bleakley; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.f-SabaraIsland.pdf +1696,1949.00.00.e,1949,1949,Unprovoked,Papua new guinea,New Ireland Province,"Kulengei, southeast of Kalili, Kavieng",Unknown,Jalem,M,"Leg bitten, surgically amputated",N,J. McLachlan,Medical Officer,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.e-Jalem.pdf +1695,1949.00.00.d,1949,1949,Unprovoked,Papua new guinea,New Ireland Province,"Enang , Kavieng",Unknown,Olai,M,Hand & shoulder bitten,N,J. McLachlan,Medical Officer,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.d-Olai.pdf +1694,1949.00.00.c,1949,1949,Unprovoked,Papua new guinea,Bougainville (North Solomons),"Orava (Aravo) Islet , near Kieta. ",Spearfishing,male,M,"FATAL, ""Nearly bitten in two through loin"".",Y,A. Bleakley; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.c-Orava.pdf +1693,1949.00.00.b,1949,1949,Unprovoked,Papua new guinea,Bougainville (North Solomons),"Sohano Island, Buka Passage",Swimming close to wharf,male,M,Hand severed,N,A. Bleakley; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.b-Sohano.pdf +1692,1949.00.00.a,1949,1949,Unprovoked,New guinea,"Abau Sub District, Central Province",Kerpuna ,Swimming ,2 males,M,"FATAL. One man's abdomen removed, the other received severe multiple injuries.",Y, A. Bleakley; A.M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.a-Kerpuna.pdf +1691,1948.12.27,27-Dec-48,1948,Unprovoked,Australia,Western Australia,Lancelin Island,Swimming,Arthur Strahan,M,"FATAL, disappeared while swimming ",Y,V.M. Coppleson (1958),pp.22-23,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.27-Strahan.pdf +1690,1948.12.26,26-Dec-48,1948,Unprovoked,Australia,Queensland,"King’s Beach, Caloundra","Treading water, waiting for a wave",Eric Keys,M,"FATAL, left hand severed, left leg arm bitten, tissue removed hip to knee ",Y,Gilbert P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.26-Keys.pdf +1689,1948.12.14.b,14-Dec-48,1948,Unprovoked,Iran,Shat-Al-Arab River,Abadan,Unknown,Abdul Imam (male),M,Left thumb severed,N,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.b-AbdulImam.pdf +1688,1948.12.14.a,14-Dec-48,1948,Unprovoked,Cuba,Guantanamo Province,10 miles off Cape Maisi,"2 messboys (Jeppsen) & Tony Latona (13) were playing on the afterdeck of the Danish ship Grete Maersk. Jeppsen fell overboard, Latona threw a lifebelt then jumped in to help him. Ship didn’t notice they were missing",Bret Jeppsen,M,"2 hours later shark bit Jeppsen’s feet, arm, knee & finally killed him. Tony, clothing torn but alive, washed ashore on Cuban coast",N,Washington Post,12/23/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.a-Jeppeson.pdf +1687,1948.12.10,10-Dec-48,1948,Unprovoked,Australia,Queensland,Rib Reef off Townsville,Fishing,Hans Vegsund,M,Hand injured,N,Townsville Daily Bulletin,12/14/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.10-Vegsund.pdf +1686,1948.12.05,05-Dec-48,1948,Sea Disaster,North pacific ocean,Between Kwajalein Atoll & Johnston Island,500 nautical miles southwest of Johnston Island,Air/Sea Disaster involving C-54 Air Force Transport No. 2686 with 37 on board,Unknown,M,"32 survived, 5 perished; sharks fed on the dead but did not bite the survivors",Y,L. Schultz & M. Malin,p.562; SAF Case #819,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.05-Aircraft.pdf +1685,1948.11.18, 18-Nov-1948,1948,Unprovoked,Australia,Torres Strait,"Saibai Island, 80 miles north of Cape York",Pearl diving,Metuela Mau,M,Leg bitten,N,The Argus,11/20/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.11.18-MetuelaMau.pdf +1684,1948.09.22,22-Sep-48,1948,Unprovoked,Greece,Attica,Keratsini ,Swimming,Dimitris Parassakis ,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.22-Parasakis.pdf +1683,1948.09.19.b,19-Sep-48,1948,Unprovoked,Usa,Hawaii,"Off Makapauu Point, O'ahu",Swimming,Noah Kalama,M,Leg bitten,N,J. Borg,p.72; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.b-Kalama.pdf +1682,1948.09.19.a,19-Sep-48,1948,Unprovoked,Usa,Hawaii,"Off Makapauu Point, O'ahu",Fishing,male,M,Survived,N,V.M. Coppleson (1958); Honolulu Advertiser,8/9/1953; Hawaiian Tribune-Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.a-Hawaii.pdf +1681,1948.09.17.R,17-Sep-1848,1848,Unprovoked,Turkey,Adana Province,Yumurtalik,Swimming,Ali Kaymaz,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.17.R-Kaymaz.pdf +1680,1948.09.15,15-Sep-48,1948,Sea Disaster,Mid atlantic ocean,Unknown,Bound from New York to London in ballast,Leicester abandoned in a hurricane,2 males,M,"FATAL, 2 men killed by sharks, 20 survived",Y,Glasgow Herald,9/20/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.15-Leicester.pdf +1679,1948.09.02,02-Sep-48,1948,Unprovoked,Iran,Bandar Ma’shur sea inlet,Unknown,Bathing or washing,Roghai,F,"FATAL, left arm & left buttock severed ",Y,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.02-Roghai.pdf +1678,1948.08.19,19-Aug-48,1948,Unprovoked,Iran,Shatt-al-Arab River,Unknown,Unknown,Abdul Hussain,M,"FATAL, right arm severely bitten & surgically amputated, died 12 to 14 hours later ",Y,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.19-Hussain.pdf +1677,1948.08.03,03-Aug-48,1948,Unprovoked,Iran,Shatt-al-Arab River,Bashamir,Swimming,Ismail,M,"Quadriceps lacerated, femur exposed",N,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.03-Ismail.pdf +1676,1948.08.00,Aug-48,1948,Provoked,Bahamas,Bimini Islands,Lerner Marine Laboratory,Spearing a shark,"Francisco Edmund Blanc, a scientist from National Museum in Paris",M,Shark that he speared bit his calf PROVOKED INCIDENT,N,E. Clark; P. Gilbert; V.M. Coppleson (1962),p.252,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.00-Blanc.pdf +1675,1948.07.01,01-Jul-48,1948,Unprovoked,Usa,US Virgin Islands,"St. John, Genti Bay",Swimming,Clide Osborne,M,FATAL,Y,Virgin Island Daily News,7/6/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.07.01-Osborne.pdf +1674,1948.06.06.R,06-Jun-1948,1948,Unprovoked,Northern mariana islands,Saipan,Unknown,Swimming,Pfc. Donald Tasking,M,Heel bitten,N,Wisconsin State Journal,6/6/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.06.06.R-Tasking.pdf +1673,1948.05.10,10-May-48,1948,Provoked,Iran,Shatt-al-Arab River,Unknown,"Fishing, shark caught in his net",Ali,M,"8"" x 4"" left antecubital fossa of muscle & skin removed PROVOKED INCIDENT",N,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.05.10-Ali.pdf +1672,1948.04.10,10-Apr-48,1948,Provoked,South africa,Western Cape Province,Gansbaai,"Bringing hooked, harpooned shark onboard boat","boat, occupants, P. Groenwald and others",M,Groenwald's arm lacerated by the shark PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.04.10-Groenwald.pdf +1671,1948.03.13.R,"13-Mar-1948 ""Bitten last weekend",1948,Unprovoked,Kenya,Coast Province,Mombasa,Unknown,"R.S. Draper, a young British soldier",M,FATAL,Y,Star,3/13/1948 & 2/20/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.13-Draper.pdf +1670,1948.03.11,11-Mar-48,1948,Invalid,Senegal,Cap Vert Peninsula,Between Joal & Sangomar near Dakar,Unknown,Unknown,Unknown,Fragment of human foot recovered from shark's gut,Y,Y. Gilbert-Desvallons SAF Case #887,,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.11-Africa.pdf +1669,1948.03.00,Mar-48,1948,Provoked,Papua new guinea,"New Ireland Province, Bismarck Archipelago","Punam Passage, Rataman census div, Namatanai",Spearfishing,Reiman,M,Leg bitten by shark that he had speared PROVOKED INCIDENT,N,A. M. Rapson,p.147; D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.00-Reiman.pdf +1668,1948.02.13,13-Feb-48,1948,Sea Disaster,Usa,Texas,"Gulf of Mexico between Brownsville & Carmen, Mexico","C47 aircraft carrying 5,000 lbs of ice ditched in the sea","Pilot, Neil Womack",M,"FATAL. Womack was injured when plane went down, 3 days later he fell off liferaft & was taken by a shark ",Y,Pittsburgh Press,2/21/1948/ V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.13-Womack.pdf +1667,1948.02.12,12-Feb-48,1948,Unprovoked,Australia,New South Wales,"Stockton Beach, Newcastle",Swimming,Ronald Johnson,M,"FATAL, right thigh & leg bitten ",Y,G.P. Whitley (1951),p.193; V.M. Coppleson (1958); A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.12-Johnson.pdf +1666,1948.01.25,25-Jan-48,1948,Unprovoked,Australia,New South Wales,"Mona Vale, near Sydney",Surf skiing,David Button,M,"No injury, ski bitten",N,Cairns Post,1/27/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.01.25-Button.pdf +1665,1948.00.00.d,Summer 1948,1948,Provoked,Usa,Florida,Biscayne Bay,Underwater photography,Charles L. Morgan,M,Grabbed shark by the tail & it bit him PROVOKED INCIDENT,N,C.L. Morgan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.d-Morgan.pdf +1664,1948.00.00.c,1948,1948,Unprovoked,New guinea,Morobe Province,Finschafen ,"Fishing, holding fish in right hand",male,M,Right hand bitten,N,A.D. Campbell; A. Bleakley; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.c-Finschafen.pdf +1663,1948.00.00.b,1948,1948,Provoked,Papua new guinea,Bougainville (North Solomons),"Tung Island, off the west coast of Buka Island",Spearfishing,male,M,Bitten on face while taking shark off spear PROVOKED INCIDENT,N,A.M. Rapson,p.147,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.b-TungIsland.pdf +1662,1948.00.00.a,1948,1948,Boating,South africa,Western Cape Province,False Bay,Fishing,boat Marie ,Unknown,"No injury to occupants, boat holed by shark",N,T. Wallett,p.27,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.a-Marie.pdf +1661,1947.12.21,21-Dec-47,1947,Unprovoked,Australia,New South Wales,"Watson Taylor's Lake, 25 miles south of Port Macquarie",Fishing,Don Ireland,M,Leg gashed,N,Canberra Times,12/22/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.21-Ireland.pdf +1660,1947.12.15.R,15-Dec-1947,1947,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,Unknown,Unknown,"Human remains found in shark, possibly one of the crew of the wrecked fishing boat John Bull",Y,Cape Times,12/15/1947; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.15.R-JohnBull.pdf +1659,1947.12.00,Dec-47,1947,Unprovoked,Senegal,Unknown,"Tiaroye, near Dakar, Cap Vert Peninsula",Fishing / diving,male,M,"FATAL, right thigh bitten ",Y,Dejou & d'Alucida (1948),,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.00-Dakar.pdf +1658,1947.11.23,23-Nov-47,1947,Boating,Australia,South Australia,3 miles out to sea off Glenelg,Fishing,10' dinghy,Unknown,"No injury to occupants, shark made 20 to 30 rushes at dinghy",N,V.M. Coppleson (1958),p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.23-dinghy.pdf +1657,1947.11.14.b,14-Nov-47,1947,Unprovoked,Australia,New South Wales,"Knobby's Beach, Newcastle",Fishing from surf ski,Peter Curruthers,M,"No injury, ski bumped",N,G.P. Whitley; Barrier Miner,11/17/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.b-Curruthers.pdf +1656,1947.11.14.a,14-Nov-47,1947,Unprovoked,Australia,New South Wales,"Knobby's Beach, Newcastle",Fishing from surf ski,John Martini,M,"No injury, ski bumped",N,G.P. Whitley; Barrier Miner,11/17/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.a-Martini.pdf +1655,1947.11.08.b,08-Nov-47,1947,Unprovoked,Australia,New South Wales,"Maria River, Port Macquarie, 12 miles from river mouth",Swimming,Edwin Elford,M,"FATAL, leg severed at knee ",Y,G.P. Whitley (1951),p.193;V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.b-EdwinElford.pdf +1654,1947.11.08.a,08-Nov-47,1947,Unprovoked,Australia,New South Wales,"Maria River, Port Macquarie, 12 miles from river mouth",Swimming,Rupert Elford,M,Thighs & knee lacerated,N,G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.a-RupertElford.pdf +1653,1947.11.00,Nov-47,1947,Unprovoked,Australia,Queensland,Moreton Bay,Unknown,D. Smith,Unknown,FATAL,Y,J. Green,p.34,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.00-Smith.pdf +1652,1947.10.28,28-Oct-47,1947,Unprovoked,Australia,Northern Territory,"Mornington Island, Gulf of Carpentaria",Fishing in waist-deep water,"Dan, an aboriginal",M,Kneecap removed,N,G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.28-Dan.pdf +1651,1947.10.10,10-Oct-47,1947,Unprovoked,Brazil,Pernambuco,Piedade,Swimming ,Father Serafin de Oliveira,M,FATAL,Y,JC Online,6/25/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.10-Serafim.pdf +1650,1947.08.04,04-Aug-47,1947,Unprovoked,Usa,Florida,In a canal 10 miles north of St Augustine,Swimming,"Ralph Reginald Rives, Jr.",M,"FATAL, calf bitten, leg surgically amputated ",Y,R. F. Hutton; Coppleson (1958),,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.08.04-Rives.pdf +1649,1947.07.27.R,27-Jul-1947,1947,Provoked,Usa,California,"Santa Monica, Los Angeles County",Fishing,Philip Dorn,M,PROVOKED INCIDENT,N,Joplin Globe,7/27/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.27.R-PhilipDorn.pdf +1648,1947.07.24.R,24-Jul-1947,1947,Unprovoked,Australia,Northern Territory,Darwin Harbour,Diving,A.S. Festing,M,Suit ripped,N,Canberra Times,7/25/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.24.R-Festing.pdf +1647,1947.07.15,15-Jul-47,1947,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Swimming,Keith Daldorf,M,Right thigh lacerated,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.15-Dalldorf.pdf +1646,1947.07.00,Jul-47,1947,Invalid,Greece,Carpathian Sea,Dodecanese Islands,Jumped overboard ,Nickolas Doulis,M,Shark involvement unconfirmed,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.07-Doulis.pdf +1645,1947.06.27,27-Jun-47,1947,Unprovoked,Usa,Hawaii,"Off Waianae, O'ahu",Fishing,Valentin Limatoc,M,"Left forearm, arm & leg lacerated",N,EWA Hospital; G.H. Balazs & A.K.H. Kam; J. Borg,p. 72; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.27-Limatoc.pdf +1644,1947.06.16,16-Jun-47,1947,Boating,Australia,New South Wales,Coogee,Fishing,12-foot dinghy Occupants: R. Hunt & a friend.,Unknown,"No injury to occupants, shark bumped & lifted dinghy",N,Geraldton Guardian and Express,6/317/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.16-fishermen-Coogee.pdf +1643,1947.05.13.R,13-May-1947,1947,Unprovoked,Kenya,Coast Province,"Kilindini Harbor, Mombasa",Swimming,merchant seaman,M,Knee grazed,N,Sunday Tribune,5/13/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.05.13.R-Kenya.pdf +1642,1947.04.20,20-Apr-47,1947,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,"Aubrey ""Bill"" Nielsen",M,Ankle & shin lacerated,N,A. Nielsen,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.20-Neilson.pdf +1641,1947.04.11,11-Apr-47,1947,Unprovoked,South africa,KwaZulu-Natal,"Rocket Hut Beach, Durban",Body surfing,Robert Douglas,M,"Thigh severely lacerated, shin & calf lacerated",N,R. Douglas,T. Livesley,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.11-Douglas.pdf +1640,1947.04.06,06-Apr-47,1947,Unprovoked,Australia,New South Wales,Palm Beach,Surfing,Max Watt,M,"No injury, board scraped by shark",N,Courier-Mail,4/7/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.06-Watt.pdf +1639,1947.04.00,Apr-47,1947,Provoked,Pacific ocean,Unknown,Off Central American coast at 8N.79W,"Moving shark from tuna vessel when boat rolled, placing both man & shark in chest-deep water",Charles Kaufmann,M,"Right arm punctured, finger lacerated PROVOKED INCIDENT",N,C. Kaufmann; S. Springer ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.00-Kaufmann.pdf +1638,1947.03.12,12-Mar-47,1947,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Wading,Adam Johannes Kriel,M,"Hip abraded, right calf severely lacerated",N,A. Kriel,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.12-Kriel.pdf +1637,1947.03.09,09-Mar-47,1947,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,"Gabriel Botha, a lifesaver",M,Lacerations on buttock & right foot ,N,G. Botha,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.09-Botha.pdf +1636,1947.02.23,23-Feb-47,1947,Boating,Australia,Queensland,Palm Beach,Fishing,Unknown,Unknown,"No injury, shark holed boat",N,Canberra Times,2/24/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.23-boat-PalmBeach.pdf +1635,1947.02.06.R,06-Feb-1947,1947,Provoked,Bahamas,New Providence Island,Cable Beach,Attempting to ride a shark,Bill Whitman,M,Arm bitten PROVOKED INCIDENT,N,Miami Daily News,2/6/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.06.R-Whitman.pdf +1634,1947.02.00,Feb-47,1947,Unprovoked,Brazil,Rio de Janeiro,Copacabana,Bathing,Unknown,Unknown,FATAL,Y,Globo,5/7/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.00-Brazil.pdf +1633,1947.01.14,14-Jan-47,1947,Boating,Australia,New South Wales,"Berry's Bay, Sydney Harbour",Rowing,"rowboat, occupants: Bob Scott & John Blackwell ",Unknown,"No injury, shark lifted the boat 0.5 m out of the water",N,A. Sharpe,p.73,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.14-rowboat.pdf +1632,1947.01.05,05-Jan-47,1947,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Peter C. Knoop,M,Flexed left leg lacerated,N,P. Knoop,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.05-Knoop.pdf +1631,1946.12.28,28-Dec-46,1946,Unprovoked,Australia,South Australia,Glenelg,Swimming near jetty with 2' piece of wood,Leo Streng,M,"Forearm & fingers lacerated, teethmarks on wood",N,G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.28-Streng.pdf +1630,1946.12.24.R,24-Dec-1946,1946,Boating,Australia,Queensland,"Auckland Creek, Gladstone",Unknown,Moored fishing launch of Harry Lone,Unknown,Shark jumped into cockpit,N,V.M. Coppleson (1958),p.181,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.24.R-Lone-launch.pdf +1629,1946.11.20,20-Nov-46,1946,Unprovoked,Australia,Torres Strait,40 miles off Thursday Island,Pearl diving from lugger,"Esrona Johnson, Torres Strait islander",M,"FATAL, right arm severed",Y,G.P. Whitley (1951),p. 193;V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.11.20-EsronaJohnson.pdf +1628,1946.10.26.R,26-Oct-1946,1946,Unprovoked,Marshall islands,Kwajalein,Unknown,Fishing,American,Unknown,FATAL,Y,Washington Post,10/27/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.26.R-Kwajalein.pdf +1627,1946.10.14,14-Oct-46,1946,Unprovoked,Australia,New South Wales,"Mark’s Point, Swan Bay, Lake Macquarie",Swimming,Douglas Blackmore,M,Left leg lacerated,N,G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.14-Blackmore.pdf +1626,1946.08.24,24-Aug-46,1946,Unprovoked,Israel,Gaza,Jura Village,Fishing,Kamel Mustapha Ayesh,M,Laceration to back,N,C. Moorem GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.24-KMAyesh.pdf +1625,1946.08.18,18-Aug-46,1946,Unprovoked,Australia,Queensland,"Ellis Beach, 20 miles from Cairns",Swimming after a tennis ball,Phillip South Collin,M,"FATAL, body not recovered",Y,G.P. Whitley (1951),p.193;V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.18-Collin.pdf +1624,1946.07.18.b,18-Jul-46,1946,Unprovoked,Iran,Khuzestan Province,"Dorquain, on the Karun River","Fishing, probably with a net","Khodadad, (male)",M,Radius & ulna bared,N,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.b-Khodadad.pdf +1623,1946.07.18.a,18-Jul-46,1946,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River, 275 km from the sea",Swimming ,Mehdi,M,"Left Achilles tendon severed, calf muscles severely lacerated",N,A. Anderson,M.D. / Lt. Col. R.S. Hunt ,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.a-Mehdi.pdf +1622,1946.06.28,28-Jun-46,1946,Unprovoked,India,Unknown,Chennai,Bathing,Murugesan,M,"""Serious injuries""",N,Indian Express,6/30/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.06.28-Murugesan.pdf +1621,1946.05.09,09-May-46,1946,Unprovoked,Tanzania,Dar-es-Salaam ,Dar-es-Salaam harbor,Swimming ,"W. Svendson, ship’s officer",M,Leg bitten,N,Star,5/20/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.05.09-Svendson.pdf +1620,1946.04.19,19-Apr-46,1946,Unprovoked,Australia,Queensland,"Trinity Beach, Cairns",Swimming,Robert McAuliffe,M,FATAL,Y,J. Croucher; G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.19-McAuliffe.pdf +1619,1946.04.00,Apr-46,1946,Boating,Australia,South Australia,Port Newby,Fishing,"boat, occupants: C. Nardelli & son",Unknown,"No injury to occupants. Shark charged boat, tore off rudder & tossed it air, then swam off with it",N,V.M. Coppleson (1958),p.184,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.00-boat-Nardelli.pdf +1618,1946.03.20,20-Mar-46,1946,Boating,Australia,South Australia,Grange,Fishing,"14' catamaran, occupant: M. Leverenz",M,"No injury; shark rammed boat, catapulting Leverenz in the sea & damaging boat",N,Sydney Morning Herald,3/22/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.03.20-Leverenz.pdf +1617,1946.02.16,16-Feb-46,1946,Unprovoked,South africa,KwaZulu-Natal,"South Beach, Durban",Treading water,Ernest Tomson,M,Right arm severely lacerated,N,M. Levine,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.16-Tomson.pdf +1616,1946.02.10.b,10-Feb-46,1946,Unprovoked,Australia,Western Australia,"City Beach, Perth",Standing,"Ronald D. Sunderland, from the Royal Australian Navy, on leave from HMAS Leeuwin",M,"Leg bitten, surgically amputated",N,West Australian,2/11/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.b-Sunderland.pdf +1615,1946.02.10.a,10-Feb-46,1946,Unprovoked,South africa,KwaZulu-Natal,"Battery Beach, Durban",Swimming ,"Janardhan Rughoober Varma, a lifesaver",M,Flexed right knee bitten,N,J.R. Varma,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.a-Varma.pdf +1614,1946.01.24.b,24-Jan-46,1946,Unprovoked,South africa,KwaZulu-Natal,"Battery Beach, Durban",Treading water,Brian Gibson ,M,Knee & calf lacerated,N,B. Gibson,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.b-Gibson.pdf +1613,1946.01.24.a,24-Jan-46,1946,Unprovoked,South africa,KwaZulu-Natal,"Battery Beach, Durban",Swimming,"Manduray, a lifesaver",M,Foot severely lacerated,N,J. R. Varma; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.a-Manduray.pdf +1612,1946.01.17,17-Jan-46,1946,Unprovoked,Australia,Queensland,Townsville,Unknown,Donald Vaughan,M,Ankle bitten,N,G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.17-Vaughan.pdf +1611,1946.01.07,07-Jan-46,1946,Unprovoked,South africa,Western Cape Province,False Bay,Jumping in swells,Michael Anthony Hoffman,M,Foot bitten,N,M. Hoffman,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.07-Hoffman.pdf +1610,1946.01.05,05-Jan-46,1946,Unprovoked,Australia,New South Wales,"Oatley Bay near Como, George’s River",Swimming,Valma Tegel,F,"FATAL, left leg severed, right leg injured ",Y,G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.05-Tegel.pdf +1609,1946.01.01,01-Jan-46,1946,Unprovoked,South africa,Eastern Cape Province,"Pollock Beach, Port Elizabeth",Body surfing,Noel Buxton Redfern,M,Calf lacerated,N,N. Redfern,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.01-Redfern.pdf +1608,1946.00.00.c,1946,1946,Boating,South africa,Western Cape Province,Plettenberg Bay,Unknown,4 boats,Unknown,"No injury to occupants, shark struck boats+K1581",N,T. Wallett,p.27,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.c-PlettenburgBay.pdf +1607,1946.00.00.b,1946,1946,Boating,South africa,Western Cape Province,Table Bay,Unknown,boat,Unknown,"Shark holed and sank boat, occupants rescued",N,T. Wallett,p.27,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.b-Table Bay.pdf +1606,1946.00.00.a,1946,1946,Unprovoked,Persian gulf,"""Head of the Gulf""",Unknown,Bitten after dhow shipwrecked,Arab woman,F,"Abdomen bitten, but she survived. Most of the 40 others that survived the wreck, were taken by sharks",N,E. Davies; V.M. Coppleson,p.133,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.a-Arabwoman.pdf +1605,1945.09.23,23-Sep-45,1945,Unprovoked,Hong kong,Unknown,Tweed Beach,Bathing,Sargeant H.W. Jackson,M,FATAL,Y,Argus,9/25/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.23-Jackson.pdf +1604,1945.09.19,19-Sep-45,1945,Sea Disaster,Unknown,Unknown,Unknown,American minesweeper USS YMS-472 foundered in a typhoon - swimming to shore,Lowell J. Bemis,M,Laceration to arm,N,Mid-Pacific Stars & Stripes,10/22/1945,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.19-Bemis.pdf +1603,1945.09.16,16-Sep-45,1945,Sea Disaster,Japan,Ryukyu,Unknown,American minesweeper USS YMS-350 lost in a typhoon - swimming to shore,sailor,M,FATAL,Y,Daily Courier,10/26/1945,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.16-sailor-USS-YMS-350.pdf +1602,1945.09.06,06-Sep-45,1945,Unprovoked,Iran,Shatt-al-Arab River,Bashamir,Swimming,Hamid,M,"Right forearm injured, mid-humeral amputation",N,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.06-Hamid.pdf +1601,1945.08.19,19-Aug-45,1945,Unprovoked,Iran / iraq,Shatt-al-Arab River,Vicinity of Abadan,Unknown,Abdol Karmi,M,Lower left leg amputated,N,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.19-Karmi.pdf +1600,1945.08.06,06-Aug-45,1945,Unprovoked,Usa, North Carolina,Ocracoke,Unknown,Kuenzler,Unknown,FATAL,Y,F. Schwartz,p.23,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.06-Kuenzler.pdf +1599,1945.07.30,30-Jul-45,1945,Sea Disaster,Philippines,In transit between Tinian and Leyte,200 miles Leyte,American cruiser Indianapolis torpedoed & sunk by the Japanese submarine I-58,Unknown,Unknown,"About 300 crew perished during the sinking, the remainder abandoned ship. Many who survived the loss of the ship were taken by sharks. In all, only 316 of her crew of 1,196 survived.",Y,All the Drowned Sailors,by R. B. Lech ; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.30 - USS Indianapolis.pdf +1598,1945.07.00,Jul-45,1945,Sea Disaster,Java,Northern Java,Off Cheribon,"90 European civilians, many women & children, were placed on the deck of a Japanese submarine that submerged when it was well offshore",Swimming,Unknown,Sharks attacked the swimmers. The sole survivor lost his arm & foot & died of his injuries shortly after being picked up by Javanese fishermen. The incident became known as the Cheribon Atrocity,Y,G. Duncan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.00-CheribonAtrocity.pdf +1597,1945.06.15,15-Jun-45,1945,Unprovoked,Australia,Queensland,"Trinity Beach, Cairns",Swimming,E. J. McHugh,M,FATAL,Y,Cairns Post,6/19/1945,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.06.15-McHugh.pdf +1596,1945.05.08,08-May-45,1945,Unprovoked,Usa,North Carolina,"Ocracoke Inlet, Carteret County",Swimming,Navy seaman,M,"FATAL, large gash to thigh",Y,D. Batterson (Former Navy Hospital Corpsman),,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.05.08-Kuenzler.pdf +1595,1945.03.06,06-Mar-45,1945,Unprovoked,South africa,KwaZulu-Natal,Scottburgh,Walking,David Drummond,M,"Right leg bitten knee to foot, surgically amputated",N,D. Drummond,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.03.06-Drummond.pdf +1594,1945.02.05,05-Feb-45,1945,Unprovoked,Israel,Tel Aviv,Unknown,Swimming,British constable,M,"Survived. R.A.F. pilot, seeing commotion in the water, dived his plane to investigate and scared off shark",N,NY Times,2/6/1945,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.02.05-Constable-TelAviv.pdf +1593,1945.00.00.d,1945,1945,Unprovoked,Unknown,Unknown,Unknown,Diving,Albert Stewart,M,Hand severed,N,The Gleaner,4/29/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.d-Stewart.pdf +1592,1945.00.00.c,1945,1945,Unprovoked,Cuba,Havana Province,Cojimar,"Playing on rock, slipped & fell into the water",boy,M,FATAL,Y,F. Poli,pp.18-19,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.c-Cuba.pdf +1591,1945.00.00.b,1945,1945,Unprovoked,Panama,Colon Province,"Mouth of Rio Dudio, 50 miles west of the city of Colon",Bathing with her mother,Maria Asista,F,Foot bitten,N,A. Wetmore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.b-Asista.pdf +1590,1945.00.00.a,1945,1945,Unprovoked,Iraq,Basrah,Shatt-al Arab River,Swimming,male,M,Left foot bitten,N,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.a-Shatt-al-Arab.pdf +1589,1944.12.18,Between 18 & 22-Dec 1944,1944,Sea Disaster,Philippines,300 miles east of Luzon,USS Hull DD-350 was one of 3 destroyers that capsized in Typhoon Cobra,Swimming near life raft,Nicholas Nagurney,M,Arm bitten,N,TIME,1/22/1945,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.18-Nagurney.pdf +1588,1944.12.02,02-Dec-44,1944,Provoked,Usa,Florida,3 miles north of the inlet at Palm Beach,Fishing for mackerel,"28' sea skiff, occupants: Alan Moree and another fisherman",Unknown,"No injury to occupants. After being prodded with an oar, shark struck bow and sank boat PROVOKED INCIDENT",N,New York Times,12/3/1944,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.02-skiff-Moree.pdf +1587,1944.11.08,08-Nov-44,1944,Sea Disaster,Sierra leone,Western Area,Freetown,Unknown,Keith Meaden,M,FATAL,Y,Royal Navy Casualties,,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.08-Meaden.pdf +1586,1944.11.01,01-Nov-44,1944,Invalid,Australia,Queensland,Maroochydore Beach,Swimming,American sailor,M,Probable drowning & scavenging,Y,The Canberra Times,11/7/1944,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.01-AmericanSailor.pdf +1585,1944.10.26.b,26-Oct-44,1944,Sea Disaster,Unknown,Unknown,Unknown,"USS Gambier Bay CVE-73 shelled & sunk at 09h57 on 10/24/1944, by Japanes fleet enroute to attack the Allied landing force at Leyte.",A. man floating next to Charles G. Heinl ,M,When survivors werer rescued on 10/27/1944 by PC 623 there were many sharks in the area,Y,USS Gambier Bay archives,,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.b-Heinl.pdf +1584,1944.10.26.a,26-Oct-44,1944,Sea Disaster, philippines,Bernardino Strait near Gulf of Leyte,Unknown,USS Hoel DD 533 sunk on 10/24/1944 in the Battle off Samar. 2 crewmen were swimmng alongside a floater net &,2 men,M,"FATAL, both were killed by sharks",Y,Glenn Hatch Parkin,gunner ,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.a-2men-incomplete.pdf +1583,1944.10.25.b,25-Oct-44,1944,Sea Disaster,Philippines,Off Samar Island in the Gulf of Leyte,Unknown,USS Johnston DD 557 sunk on 10/24/1944 in the Battle off Samara. Crewmen were swimming beside a raft.,"William Clinton Carter, Jr. & 2 other men",M,"Clinton was bitten on his back, 2 others did not survive",Y,Abiline Reporter News,12/29/1944,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.b-Carter.pdf +1582,1944.10.25.a,25-Oct-44,1944,Unprovoked,Philippines,Unknown,Off Cape Engano,Parachuted into Pacific,US Naval ensign,M,"Shark grazed leg, leaving toothmarks",N,G.A. Llano in Airmen Against the Sea,p.66,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.a-Ensign.pdf +1581,1944.10.24,24-Oct-44,1944,Sea Disaster,Hong kong,Unknown,225 miles east of Hong Kong,Japanese POW ship Arisan Maru with 1800 American prisoners of war on board bound for slave labor camps was torpedoed by an American submarine,Unknown,M,Most of the men drowned & some were taken by sharks. Only only nine men survived,Y,internet (multiple),,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.24-ArisanMaru.pdf +1580,1944.10.23.R,23-Oct-1944,1944,Boating,Australia,Queensland,Tewantin,Fishing,dinghy,Unknown,No injury to occupants; shark bit dinghy leaving tooth fragments in its woodwork,N,G.P. Whitley (1951),p.193,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.23.R-Tewantin-dinghy.pdf +1579,1944.09.03,03-Sep-44,1944,Unprovoked,Usa,Maryland,North Beach,Swimming,Philip Stanton,M,Laceration to right lower leg,N,Washington Post,9/4/1944,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.03-PhilipStanton.pdf +1578,1944.09.00,Sep-44,1944,Unprovoked,Unknown,Unknown,Unknown,Fell overboard from US Navy PC boat,a sailor,M,FATAL,Y,E. Buleman,NMRI,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.00-sailor.pdf +1577,1944.08.20,20-Aug-44,1944,Unprovoked,South africa,KwaZulu-Natal,Margate,Swimming ,Dennis Nissen,M,"FATAL, body not recovered",Y,T. Blake,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.08.20-Nissen.pdf +1576,1944.07.22,22-Jul-144,1944,Unprovoked,South africa,Western Cape Province,Hartenbos,Swimming,Albert Schmidt,M,"FATAL, body not recovered",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.07.22-Schmidt.pdf +1575,1944.06.23,23-Jun-44,1944,Invalid,North pacific ocean,Unknown,Aircraft went down on 6/12/1944. He survived on raft for 11 days and was 150 miles off Guam when rescued,Unknown,Lt. Cmdr. Price,M,"When picked up by the USS Boyd DD 44 on 6/23/1944 his raft was ""surrounded by sharks""",N,USS Boyd archive,,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.06.23-Boyd-Rescue-incomplete.pdf +1574,1944.05.31,31-May-44,1944,Unprovoked,Usa,Florida,"Atlantic Beach, Mayport, Duval County",Bathing,Mary Ann Shands,F,Left calf bitten,N,H.W. Bigelow & C.W. Schroeder (1948) pp.70 & 368; V.M. Coppleson (1958) ; Randall,p.353 in Sharks & Survival; T. Helm,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.31-Shands.pdf +1573,1944.05.24.R,24-May-1944,1944,Unprovoked,Unknown,Unknown,Unknown,Unknown,a male from the Second Seabee Battalion,Unknown,Minor injury when shark tore off his boot,N,St. Petersburg Times,5/24/1943,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.24.R-Seabee.pdf +1572,1944.05.04,04-May-44,1944,Unprovoked,Panama,Caribbean Sea,Unknown,Washed overboard by swell,"US Naval seaman, one of a crew on a Panama Sea Frontier Naval Patrol craft manned by Coast Guard",M,"FATAL. His back was bitten as he was being towed to ship by rescuer, Lieut (j.g.) Stanley Kurta, then the shark pulled him below the surface. ",Y,Star & Herald (Panama),5/17/1944; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.04.a-seaman.pdf +1571,1944.04.00,Apr-44,1944,Unprovoked,Nicaragua,Lake Nicaragua (fresh water),Unknown,Unknown,multiple bathers,Unknown,Some killed & others severely injured,Y,V.M. Coppleson (1958),,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.04.00-LakeNicaragua.pdf +1570,1944.03.26.b,26-Mar-44,1944,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Gabriel Botha,M,Left thigh bitten,N,G. Botha,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.b-Botha.pdf +1569,1944.03.26.a,26-Mar-44,1944,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Standing,Geoffrey Best,M,"FATAL, left thigh & calf bitten ",Y,G. Botha,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.a-Best.pdf +1568,1944.03.14,14-Mar-44,1944,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Richard D. Field,M,Ankle severely lacerated,N,R.D. Field,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.14-Field.pdf +1567,1944.02.27,27-Feb-44,1944,Unprovoked,South africa,Western Cape Province,False Bay,Treading water,Corporal N.S. LeBlanc,M,Foot & ankle lacerated,N,L. Green; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.27-LeBlanc.pdf +1566,1944.02.18,18-Feb-44,1944,Unprovoked,India,Unknown,"Triplicane Beach, Chennai",Bathing,male,M,FATAL,Y,Indian Express,2/19/1944,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.18-Madras.pdf +1565,1944.01.20,20-Jan-44,1944,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Body surfing,Anthony Bunn,M,"FATAL, right thigh lacerated, femoral artery severed ",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.20-Bunn.pdf +1564,1944.01.16,16-Jan-44,1944,Boating,Australia,Western Australia,"Cottesloe, Perth",Fishing,"14' dinghy, 2 occupants",M,"No injury, shark took day's catch & struck boat",N,Canberra Times,1/17/1944,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.16-dinghy-Cottesloe.pdf +1563,1944.01.14,14-Jan-44,1944,Unprovoked,Australia,New South Wales,"First Beach, Forster",Surfing,Peter Weir,M,"Both legs bitten, one surgically amputated",N,G.P. Whitley (1951),p.193,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.14-Weir.pdf +1562,1944.01.04,04-Jan-44,1944,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Swimming,Ronald Joel Selby,M,"FATAL, leg bitten knee to ankle & posterior tibial artery severed; died of toxemia 2 days later ",Y,M. Selby,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.04-Selby.pdf +1561,1944.00.00.c,Some time between Apr & Nov-1944,1944,Sea Disaster,Unknown,Unknown,Unknown,Adrift on raft,"Unknown, he was Nabetari's companion",M,FATAL Arm severed,Y,TIME,7/29/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.c-Nebatari'sCompanion.pdf +1560,1944.00.00.b,1944,1944,Sea Disaster,Italy,Adriatic Sea,Unknown,B-24 aircraft crashed into the sea,"male, a member of the crew",M,FATAL,Y,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.b-B-24 crew.pdf +1559,1944.00.00.a,1944,1944,Unprovoked,New guinea,Pacific Ocean,Unknown,Fell overboard from USS Ward,sailor,M,FATAL,Y,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.a-Ward crew.pdf +1558,1943.12.12,12-Dec-43,1943,Unprovoked,South africa,KwaZulu-Natal,"Inyoni Rocks, Amazimtoti ",Treading water,James Crawford Matthews,M,"FATAL, abdomen, buttock & thigh lacerated ",Y,R. Kahn,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.12-Matthews.pdf +1557,1943.12.04,04-Dec-43,1943,Sea Disaster,Usa,South Carolina,Off Charleston,The Cuban freighter Libertad was torpedoed and sunk by the German submarine U-129,Julio C. de Cabarrocas ,M,"Of the 18 crew who survived the sinking, 10 were taken by sharks. Cabarrocas was bitten but survived",Y,Troy Record,12/13/1943; J. Rohwer,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.04-Libertad.pdf +1556,1943.11.21,21-Nov-43,1943,Unprovoked,South africa,Eastern Cape Province,Kei River Mouth,Swimming with board,Richard Richardson,M,Right foot lacerated,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.21-Richardson.pdf +1555,1943.11.11,11-Nov-43,1943,Sea Disaster,Pacific ocean,Near the Fiji Islands,22º08'S : 178º06'W,The 6711-ton American freighter & troop transport Cape San Juan was torpedoed by the Japanese submarine I-21,males,M,"Of the 1,429 people on board, only 448 survived. Sharks were attacking survivors as they were being rescued",Y,M. McDiarmid,p.67,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.11-CapeSanJuan.pdf +1554,1943.10.26,26-Oct-43,1943,Invalid,Usa,Florida,Victim was on said to be on tanker that collided off Florida coast on 10-20-1943,Unknown,"Clyde Kelly Ormand, Jr.",M,"Hand, forearm, leg and pelvis recovered from shark’s gut",N,R.F. Hutton (1959); D. Baldridge,p.171; T. Helm,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.10.26-Ormond.pdf +1553,1943.09.23,23-Sep-43,1943,Unprovoked,Panama,Gulf of Panama,"North shore of Rey Island, Las Perlas archipelago",Dived overboard to check propeller of US Navy motor torpedo boat,sailor,M,"FATAL, left leg & shoulder bitten ",Y,Captain B. H. Kean,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.09.23-sailor.pdf +1552,1943.08.00,Aug-43,1943,Sea Disaster,Italy,40 miles south of Naples ,Tyrrhenian Sea,Flying Fortress bomber aircraft went down after daytime raid on Naples. He was swimming on the surface,"Lieutenant Robert D. Kurz (U.S.), co-pilot",M,"Bitten on arms, hands & feet while awaiting rescue",N,New York Times 8/9/1943,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.08.00-Kurz.pdf +1551,1943.07.18,18-Jul-43,1943,Sea Disaster,Usa,Florida,"40 miles off Islamorada, near Cay Sal",Treading water after survivng crash of the US Navy airship K-74 that was hit by the German submarine U-134,Petty Officer Isadore Stessel,M,FATAL,Y,Wikipedia,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.18-Stessel.pdf +1550,1943.07.00.b,Jul-43,1943,Boating,Portugal,Unknown,Sines,Fishing for mackerel,rowboats attacked by sharks,Unknown,No injury to occupants,N,Letter dated 8/31/1959 from A. Cordeiro,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.b-Portugal.pdf +1549,1943.07.00.a,Jul-43,1943,Invalid,Mexico,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,"Manuel Zamora, a lawyer",M,"No injury, a shark made a threat display",N,C.G. Robles; SAF Case #1327 ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.a-Zamora.pdf +1548,1943.06.16,16-Jun-43,1943,Boating,Australia,Tasmania,Triabunna,Fishing for cod,"a dinghy, occupant Neil Parker",M,"No injury to occupant, shark grabbed rudder and dragged the dinghy stern-first",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.06.16-dinghy-Parker.pdf +1547,1943.05.27,27-May-43,1943,Invalid,Unknown,Unknown,Unknown,B-24 crashed during a search mission. Survivors in raft for 47 days ,Louis Zamperini & Russell Phillips ,M,Survived,N,G.A. Llano,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.27-Zamperini.pdf +1546,1943.05.17.b,17-May-43,1943,Sea Disaster,Central pacific,Unknown,68 miles east of Wallis Island,"S2N Navy scout plane went down, E.H. Almond & Lieut A.G. Reading in water","Arthur George Reading, Naval aviator",M,"Jaw dislocated & contusions from many blows on legs & body by shark fins, rescued after 14 hours",N,W.L. Jones; V.M. Coppleson (1962),p.217; G.A. Llano in Airmen Against the Sea,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.b-Reading.pdf +1545,1943.05.17.a,17-May-43,1943,Sea Disaster,Central pacific,Unknown,68 miles east of Wallis Island,"S2N Navy scout plane went down, E.H. Almond & Lieut A.G. Reading in water","E.H. Almond, US Navy radioman",M,"FATAL, right leg & left thigh bitten ",Y,V.M. Coppleson (1962),p.217; G.A. Llano in Airmen Against the Sea,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.a-Almond.pdf +1544,1943.05.14,14-May-43,1943,Sea Disaster,Australia,Queensland,Off Brisbane,Hospital Ship Centaur torpedoed & sunk by the Japanese submarine I-177,unknown,M,FATAL,Y,The Age,5/19/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.14-Centaur.pdf +1543,1943.05.01.R,01-May-1943,1943,Sea Disaster,Unknown,Unknown,Unknown,ship torpedoed 400 miles off the African coas. Man was clinging to hatch cover,Clarence Master,M,"Leg, foot & arm bitten",N,St. Petersburg Times,5/1/1943,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.01.R-Clarence-Master.pdf +1542,1943.04.05,05-Apr-43,1943,Invalid,Usa,Hawaii,"3 miles from shore off McGregor Point, Maui","Small boat swamped, 4 people swimming to shore but he fell behind the other 3 and vanished",Leonard Gant,M,On 29-Apr-1943 his remains (right forearm & swim trunks) were found in shark’s gut,Y,Honolulu Advertiser,8/9/1953; V.M. Coppleson (1958); J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.04.05-Gant.pdf +1541,1943.03.21,21-Mar-43,1943,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Swimming,Eric Ridley,M,"FATAL, thigh lacerated, both calves bitten ",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.21-Ridley.pdf +1540,1943.03.14,14-Mar-43,1943,Sea Disaster,Unknown,Unknown,Unknown,"The 21,516-ton troopship Empress of Canada torpedoed and sunk by the Italian submarine Leonardo da Vinci",Unknown,Unknown,"Of the 1346 on board, 392 perished including 90 women & 44 crew. 1 person known to have been fatally injured by a shark.",Y,Greatships.net,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.14-Empress-of-Canada.pdf +1539,1943.03.02.b,02-Mar-43,1943,Sea Disaster,Brazil,Unknown,Near the Abrolhos Archipelago ,The 3540-ton Alfonso Penna was torpedoed & sunk by the Italian submarine Barbarigo,Unknown,Unknown,"33 crew & 92 passengers were lost, it was thought that some were killed by sharks FATAL",Y,New York Times,3/20/1943; Axis submarine losses in WWII,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.b-AlfonsoPenna.pdf +1538,1943.03.02.a,02-Mar-1943 to 07-Mar-1943,1943,Sea Disaster,Papua new guinea,Morobe Province, Huon Gulf,"Known as The Battle of the Bismarck Sea : 8 Japanese destroyers guarding a convoy of 8 transports were attacked by 129 Allied fighters, 207 bombers & 3 squadrons of the Royal Australian Air Force. ",Unknown,Unknown,"An estimated 3,000 to 7,000 Japanese troops perished, some were taken by sharks",Y,G. Duncan,et al,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.a-HuonGulf.pdf +1537,1943.01.26,26-Jan-43,1943,Sea Disaster,Pacific ocean,Northwest of Papua New Guinea,Unknown,The USS Wahoo torpedoes & sank the Japanese troop transport Buyo Maru,Japanese seamen,M,FATAL,Y,Naval Historical Center,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.01.26-BuyoMaru.pdf +1536,1943.00.00.f,Summer 1943,1943,Unprovoked,Mexico,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,a U.S. citizen,Unknown,FATAL,Y,C.G. Robles,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.f-NV-Veracruz.pdf +1535,1943.00.00.e,1943,1943,Unprovoked,Solomon islands,Unknown,Guadalcanal,Swimming,"U.S. soldier in 161st Infantry Regiment, 25th Infantry Division",M,Arm severed,N,J. Lawton Collins,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.e-Soldier.pdf +1534,1943.00.00.d,1943,1943,Unprovoked,Iraq,Unknown,River Tigris,Swimming,Syed Khaleeulla ,M,"Right arm severed, left foot bitten",N,Times of India,8/19/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.d-Khaleeula.pdf +1533,1943.00.00.c,Fall 1943,1943,Unprovoked,Usa,Hawaii,"Midway Island, Northwestern Hawaiian Islands",Spearfishing, 2 males,M,Calf nipped in each case,N,W. M. Chapman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.c - Midway.pdf +1532,1943.00.00.b,Fall 1943,1943,Unprovoked,Usa,Hawaii,"Midway Island, Northwestern Hawaiian Islands",Spearfishing, 2 males,M,Calf nipped in each case,N,W. M. Chapman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.b - Midway.pdf +1531,1943.00.00.a,1943,1943,Unprovoked,Usa,Hawaii,"Midway, Northwestern Hawaiian Islands",Unknown,male,M,"Unprovoked, but circumstances unknown",UNKNOWN,G.H. Balazs & A.K.H. Kam; J. Borg,p.72; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.a-Midway.pdf +1530,1942.12.26,26-Dec-42,1942,Unprovoked,Australia,New South Wales,"Bantry Bay, near Ironstone Point, Middle Harbor, Sydney",Dog paddling or standing,Denise Rosemary Burch,F,"FATAL, legs bitten ",Y,G.P. Whitley (1951),p. 193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1942.12.26-Burch.pdf +1529,1942.11.28,28-Nov-42,1942,Sea Disaster,South africa,KwaZulu-Natal,50 km off St. Lucia,U-177 torpedoed & sank the troopship Nova Scotia,Sammy Levine & his pet parrot,M,"192 survived, but 750 perished. Many were taken by sharks, including Levine",Y,L. de Lease; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.28-NovaScotia.pdf +1528,1942.11.25,25-Nov-42,1942,Unprovoked,South africa,KwaZulu-Natal,Umkomaas,Swimming,E.W. Bilton,M,"Calf bitten, leg surgically amputated",N,"M. Levine,GSAF ",,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.25-Bilton.pdf +1527,1942.11.16,16-Nov-42,1942,Sea Disaster,Solomon islands,Unknown,Battle of Guadalcanal,Thrown from destroyer when shell hit,Unknown,M,Hip bitten,N,Lima News,7/13/1944,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.16-Guadalcanal-HospitalShip.pdf +1526,1942.11.21,21-Nov-42,1942,Sea Disaster,Indian ocean,Unknown,Bound from Cape Town for St. Helena,"On 6-Nov-1942, the German submarine U-68 sank the City of Cairo 5 days from Cape Town, survivors took to lifeboats & rafts. On the 15th day, a fireman jumped over the stern & was taken by sharks",male,M,FATAL,Y,Coppleson (1962),pp.207 & 258 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.21-City-of-Cairo.pdf +1525,1942.11.13.c,13-Nov-42,1942,Sea Disaster,Solomon islands,Unknown,Off Guadalcanal,"Anti-Aircraft cruiser USS Atlanta (CL,-05) travelling in convoy after the Battle of Midway, encountered a Japanese flotilla (Battle of Guadalcanal) &, heavily damaged by gunfire, she was lost off Lunga Point. Victim was swimming when bitten.","Sam Hicks, a gunner",M,"Injured by sharks, but managed to swim ashore 6.5 hours later",N,Memoirs of Sam Hicks,,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.c-Hicks.pdf +1524,1942.11.13.b,13-Nov-42,1942,Sea Disaster,Solomon islands / vanuatu,Unknown,"North of Guadalcanal, Solomon Islands while enroute to Vanuatu",Explosion & sinking of the USS Juneau after being torpedoed by the submarine I-85,"Because of a mistaken belief that there were no survivors and several other successive errors, of the 100 to 150 men who survived the sinking, only 11 were rescued. Four of the Sullivan brothers died in the initial blast. ",M,"Over a period of a week men in the water died of wounds, thirst & sharks. George Sullivan, the last of the Sullivan brothers, survived for 5 days & then was killed by 3 sharks.",Y,US Navy Military History,,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.b-Juneau.pdf +1523,1942.11.13.a,12-Nov-42,1942,Sea Disaster,Solomon islands,Unknown,Off Savo Island,Unknown,Japanese seaman,M,FATAL,Y,C. Cromie,Chicago Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.a-Guadalcanal.pdf +1522,1942.11.01,01-Nov-42,1942,Unprovoked,South africa,Western Cape Province,Clifton,Swimming ,Willem Johannes Bergh,M,"FATAL, body not recovered",Y,Natal Daily News,11/28/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.01-Bergh.pdf +1521,1942.11.00.b,Nov-42,1942,Provoked,Pacific ocean,Between Hawaii and U.S.A.,Unknown,In rubber dinghy with Captain Eddie Rickenbacker for 21 days. ,male,M,One man drove a knife through rubberized canvas trying to stab a shark & it injured him with its tail PROVOKED INCIDENT,N,V.M. Coppleson (1962),p.257,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.b-Rickenbacker-raftmate.pdf +1520,1942.11.00.a,Nov-42,1942,Sea Disaster,International_water,Off South American coast,Unknown,"Dutch merchant ship Zaandam torpedoed by the U-174 amidships, sank & dozens of survivors took to rafts & boats. One man, Izzi, who drifted 83 days on a raft related that sharks attacked many men in the water when the ship went down",Unknown,M,FATAL,Y,M. Murphy; V.M. Coppleson (1962),pp.207-208,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.a-Izzi.pdf +1519,1942.10.12,12-Oct-42,1942,Sea Disaster,Solomon islands,Makora-Ulawa Province,Cape Esperance (near Savo Islands),"His ship, the US destroyer Duncan DD 485, had been sunk by crossfire from Japanese warships. He was wearing a kapok lifejacket & using 2 aluminum powder tins for floatation ",Lieutenant Commander Herbert Richard Kabat,M,"Foot, hand, elbow & calf lacerated & abraded, thigh gashed",N,W. L. Jones,M.D.; Saturday Evening Post; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1942.10.12-Kabat.pdf +1518,1942.09.30,30-Sep-42,1942,Sea Disaster,Atlantic ocean,04.05N-13.23W,Unknown,The 6015-ton British ship Empire Avocet was torpedoed by the German submarine U-125. ,Unknown,Unknown,Survivors on life rafts were harassed by sharks,N,V.M. Coppleson (1962),p.208,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.30-EmpireAvocet.pdf +1517,1942.09.12.b,12-Sep-42,1942,Sea Disaster,Atlantic ocean,Unknown,360 miles north of Ascension Island,"The Pacquebot Laconia, enroute to Liverpool with 600 Italian prisoners onboard, was torpedoed by the German submarine U-156 and only 2 rafts were launched before the ship went down. Unable to board an overcrowded raft, he was swimming.",Michael Setti,M,"Calf lacerated. He was rescued by German submarine, which sunk. Rescued by Italian submarine, which sunk. Managed to reach Dakar",N,V.M. Coppleson (1962),p.258; Rohwer,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.b-Laconia.pdf +1516,1942.09.12.a,12-Sep-42,1942,Unprovoked,Australia,Queensland,"Trinity Beach, 17 km northwast of Cairns",Treading water,"Athol Wearne, Royal Australian Air Force. officer",M,"Right foot severed & calf removed, leg surgically amputated below the knee",N,A Wearne,J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.a-Wearne.pdf +1515,1942.09.11,11-Sep-1942 to 16-Sep-1942,1942,Sea Disaster,Southwest pacific ocean,Unknown,Southwestern Pacific Base,Adrift on life raft,US Army fliers,M,"FATAL, 2 of the 9 airmen killed by sharks",Y,SAF Case #741,,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.11-NV-AdriftonRaft.pdf +1514,1942.08.08,08-Aug-42,1942,Sea Disaster,Unknown,Unknown,Unknown,Japanese aircraft shot down. He was one of two survivors rescued by the U.S. destroyer Mugford,Tamaki Amano,M,Lacerations to left arm,N,Appleton Post-Crescent,4/18/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.08.08-Amano.pdf +1513,1942.07.12,12-Jul-42,1942,Sea Disaster,Unknown,Unknown,Unknown,The SS Potlach was torpedoed & sunk by the U-153 on 27-Jun-1942. ,John Martin Miller,M,FATAL Arm bitten,Y,Kingsport Times,8/6/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.12-Miller.pdf +1512,1942.07.06,06-Jul-42,1942,Provoked,Italy,Liguria,Savona,Sculling,Gino Bardolini,M,"After he hit the shark with an oar, the shark bit the oar and overturned the boat PROVOKED INCIDENT",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.06-Bardolini +1511,1942.06.11.R,11-Jun-1942,1942,Sea Disaster,Unknown,Unknown,Unknown,A 210-ton brig was sunk by a Japanese submarine. Some of the survivors were machine-gunned & some were taken by sharks,2 males,M,FATAL,Y,Canberra Times,6/11/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.11.R-Bay-of-Bengal.pdf +1510,1942.06.08.R,08-Jun-1942,1942,Invalid,Unknown,Unknown,Unknown,boat capsized during filming,Jacare,M,"Remains recovered from shark, but cause of death was probably drowning",Y,Time Magazine,6/8/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.08.R-Jacare-Brazil.pdf +1509,1942.06.04,04-Jun-42,1942,Unprovoked,Usa,Midway Atoll,Unknown,"Plane crashed in water, men in life raft",a pilot,M,Survived,N,Evening Standard,7/16/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.04-Midway.pdf +1508,1942.06.00,Jun-42,1942,Unprovoked,International_water,300 miles east of St. Thomas (Virgin Islands),Unknown,On life raft tethered to lifeboat. A seaman put hand over side to rinse a cup,male,M,Forearm lacerated,N,V.M. Coppleson (1962),p.258,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.00-on-life-raft.pdf +1507,1942.05.09,09-May-42,1942,Unprovoked,Australia,Queensland,"Great Barrier Reef, off Cairns",Diving from lugger,Abraham Johnson,M,"Hands, arms & knee lacerated",N,V.M. Coppleson (1958),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.05.09-Johnson.pdf +1506,1942.04.05,05-Apr-42,1942,Invalid,Indian ocean,West of Ceylon (Sri Lanka),300 nm from shore,H.M.S. Cornwall & H.M.S.Dorsetshire sunk by Japanese dive bombers. Officers & men in the water formed a circle with 60 of their dead in the center for 36 hours,Unknown,Unknown,Sharks were numerous & took corpses but made no attempts to harm the survivors.,Y,V.M. Coppleson (1962),p.218,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.04.05-Dorsetshire-Cornwall.pdf +1505,1942.03.08,08-Mar-42,1942,Sea Disaster,Cuba,Guantanamo Province,30 nm southeast of Guantanamo Bay,Esso Bolivar was torpedoed & shelled by the German submarine U-126,A wounded member of Naval guncrew being towed by Charles Anderson toward a lifeboat & injured crew being towed by watertender Arthur Lauman,M,"Of her crew of 50, eight perished, including the two injured men",Y,Baltimore Evening Sun,4/13/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.08-EssoBolivar.pdf +1504,1942.03.04,04-Mar-42,1942,Invalid,Australia,New South Wales,George’s River,Unknown,Ronald J. Bishop,M,"Cause of death was drowning, shark bites were post mortem",Y,G.P. Whitley (1951),p. 192,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.04-Bishop.pdf +1503,1942.01.18,18-Jan-42,1942,Boating,Australia,New South Wales,Fairy Bower,Unknown,paddle of surf-ski,Unknown,Paddle of surf ski bitten by shark,N,G.P. Whitley (1951),p. 192 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.18-Surf-ski.pdf +1502,1942.01.04,04-Jan-42,1942,Unprovoked,Australia,New South Wales,"Egg Rock, Middle Harbor, Sydney",Swimming,Zita Steadman,F,"FATAL, bitten in two ",Y,V.M. Coppleson (1958),p.70; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.04-Steadman.pdf +1501,1942.01.00,Jan-42,1942,Provoked,Australia,New South Wales,"Fairy Bower, near North Steyne",Surf-skiing,male,M,Attempted to frighten shark by smacking water with paddle. Shark bit paddle. No injury to surf-skier PROVOKED INCIDENT,N,V.M. Coppleson (1958),p.41,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.00-Surfski.pdf +1500,1942.00.00.k,1942,1942,Sea Disaster,Indonesia,East Java,Surabaya,Captured Allied soldiers were squeezed into 3' bamboo pig baskets & fed to waiting sharks,200 soldiers,M,"General Imamura, Commander in Chief of Japanese forces in Java was sentenced to 10 years imprisonment by Australian Military Court for his role in the ""Pig Basket Atrocities""",Y,G. Duncan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.k-PigBasketAtrocity.pdf +1499,1942.00.00.j,Winter 1942,1942,Boating,Australia,Tasmania,Off Big Friar Island,Fishing for perch,Storm King; occupants - George Bridge & 2 sons,M,"No injury to occupants, rudder damaged by shark",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.j-StormBay.pdf +1498,1942.00.00.i,Summer 1942,1942,Unprovoked,Philippines,Camiguin Island,2 kilometres off Sagay,"Sailing from Gingood, Misamis Oriental to Sagay (normally a 2-day voyage) capsized with 6 on board, three men were taken by sharks when they attempted to swim to shore.",Andong & 2 others,M,FATAL,Y,V. Obedencio,,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.i-Adong.pdf +1497,1942.00.00.h,1942,1942,Boating,South africa,Western Cape Province,Simon’s Bay,Unknown,boat,Unknown,"No injury to occupants, boat rammed by shark",N,T. Wallett,p.27,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.h-boat.pdf +1496,1942.00.00.g,1942,1942,Boating,South africa,Western Cape Province,Simon's Bay,Unknown,boat,Unknown,No injury,N,T. Wallett,p.27,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.g-SimonsTown.pdf +1495,1942.00.00.f,1942,1942,Unprovoked,Bahamas,Cay Sal Bank,Anchored off the largest island in the group,Swimming along side N.E.L. vessel Saluda,Herbert J. Mann,M,"Minor injury, ankle scratched by shark's teeth",N,H.J. Mann,,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.f-Mann.pdf +1494,1942.00.00.e,1942,1942,Sea Disaster,Unknown,Unknown,Unknown,Jumped overboard from torpedoed Panamanian freighter,male,M,FATAL,Y,V.M. Coppleson (1962),p.258,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.e-seaman.pdf +1493,1942.00.00.d,1942,1942,Sea Disaster,Mid-pacifc ocean,(Southwestern Pacific),Unknown,"Plane forced down, 3 men on rubber life raft. Put hand over side to feel drift of boat ",Gene Aldrich,M,"Fingers badly lacerated, wounds became septic",N,V.M. Coppleson (1962),p.258,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.d-Aldrich.pdf +1492,1942.00.00.c,1942,1942,Sea Disaster,Unknown,Unknown,Unknown,Ditched plane in the sea & were adrift on a rubber life raft. ,American aviators,M,"No injury to occupants, They fought off sharks & killed one with an automatic. Rescued 34 days later",N,V.M. Coppleson (1962),p.258,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.c-AmericanAviators.pdf +1491,1942.00.00.b,1942,1942,Boating,Unknown,Unknown,Unknown,"Days before the surrender of Singapore, the 3 men escaped to Sumatra where they acquired a 17' dinghy. After 125 days at sea they drifted back to Sumatra","Bombardier J. Hall, Private Green of the Sherwood Foresters & Captain C. O. Jennings, R.E. Anti-tank Regiment",M,"No injury to occupants. Sharks continually followed the dinghy, and one smashed its rudder ",N,V.M. Coppleson (1962),p.206,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.b-Hall-Green-Jennings.pdf +1490,1942.00.00.a,1942,1942,Unprovoked,Panama,Panama City,Bella Vista Beach,Swimming,male,M,"FATAL, body not recovered",Y,V.M. Coppleson (1958),,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.a-BellaVista.pdf +1489,1941.12.07,07-Dec-41,1941,Sea Disaster,Unknown,Unknown,Unknown,Torpedoed & burning British light cruiser with a crew of 450 men,Unknown,Unknown,"Only 170 survived, many of the crew were said to have been taken by sharks",Y,F. Dennis,pp. 19-20; A. Resciniti,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.07-SouthAtlantic.pdf +1488,1941.12.03,03-Dec-41,1941,Unprovoked,Australia,Western Australia,Carnarvon,Swimming,Ron Graham,M,Right ankle bitten,N,The West Australian,12/11/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.03-Graham.pdf +1487,1941.11.27.b,27-Nov-41,1941,Sea Disaster,South atlantic ocean,Off Libya,Unknown,HMAS Parramatta torpedoed & sunk by the U-559,Bill Nash,M,Right hand severed,N,Canberra Times,12/3/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.b-Nash.pdf +1486,1941.11.27.a,27-Nov-41,1941,Sea Disaster,South atlantic ocean,Off Libya,Unknown,HMAS Parramatta torpedoed & sunk by the U-559,Gordon Annison,M,Lacerations to chest,N,Canberra Times,12/3/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.a-Annison.pdf +1485,1941.11.24,25-Nov-41,1941,Sea Disaster,South atlantic ocean,"North of Pernambuco, Brazil",Unknown,British cruiser Dunedin torpedoed & sunk by the U-124,Unknown,Unknown,"418 perished, only 67 survived, some of the men were taken by sharks",Y,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.24-Dunedin.pdf +1484,1941.11.19,19-Nov-41,1941,Sea Disaster,Australia,Western Australia,Shark Bay,German raider Kormoran was sunk in an engagement with HMAS Sydney,male from the Kormoran,M,Leg bitten,N,Canberra Times,12/4/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.19-Kormoran.pdf +1483,1941.09.25,25-Sep-41,1941,Unprovoked,Caribbean sea,Unknown,125 nm north of Aruba,SS Ethel Skakel foundered in Central America Hurricane of 1941,Scotty,M,Leg lacerated FATAL,Y,Washington Post. 10/2/1941,,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.09.25-Scotty.pdf +1482,1941.08.21.R,21-Aug-1941,1941,Provoked,Usa,New York,Montauk,Fishing,Captain Jack Kelly,Unknown,Laceration to left forearm from hooked shark PROVOKED INCIDENT,N,New York Times,8/21/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.21.R-Kelly.pdf +1481,1941.08.05,05-Aug-41,1941,Invalid,Australia,New South Wales,Parramata River,Swimming,Ronald Dickerson,M,Shark involvement prior to death unconfirmed,Y,Canberra Times,8/6/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.05-Dickerson.pdf +1480,1941.08.01,01-Aug-41,1941,Unprovoked,Usa,South Carolina,Sullivan's Island at entrance to Charleston Harbor,Swimming at edge of channel,"Howard E. Sweatmon, a soldier",M,Chest lacerated,N,V.M. Coppleson (1958),p.153; T. Helm,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.01-Sweatmon.pdf +1479,1941.07.22,22-Jul-41,1941,Boating,Usa,New Jersey,"Brielle, Monmouth County (Offshore)",Fishing for tuna,"Fishing boat Bingo III , occupants: Michael Perkins, George Hornack & Capt. Lonergan ",Unknown,"No injury to occupants, shark leapt into boat & bit cabin door",N,N.Y Times,7/23/1941; SAF Case #951,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.23-boatBingo.pdf +1478,1941.07.01,01-Jul-41,1941,Provoked,Usa,Hawaii,"Nankuli, O'ahu",Fishing,Hisao Shimoto,M,Arm bitten while removing shark from fishing line PROVOKED INCIDENT,N,G.H. Balazs & A.K.H. Kam; J. Borg,p.71; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.01-Shimoto.pdf +1477,1941.06.15,15-Jun-41,1941,Provoked,Usa,New York,15 miles south of Jones Inlet,Fishing from 32' boat,Paul Ruhle,M,Left hand bitten as he tried to put rope around shark's tail PROVOKED INCIDENT,N,New York Times,6/16/1941; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.15-Ruhle.pdf +1476,1941.06.00,Jun-41,1941,Sea Disaster,Pacific ocean,Off coast of Ecuador,Between Esmeraldas & Salinas,"Ditched aircraft, 3 men in the water. Swam for 31 hours",Colonel B. & Sub-Lieutenant D.,M,"1 man survived & was rescued, sharks took the corpses of the two men that perished",Y,G.A. Llano in Airmen Against the Sea,pp.67-68; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.00-Ecuador.pdf +1475,1941.03.24,24-Mar-41,1941,Sea Disaster,South atlantic ocean,Unknown,750 miles off the African coast,The troopship Britannia was sunk by the German raider Thor,male,M,Dr. A.R. Hernandez of ship Cabo Hornos treated passenger whose leg was severed by a shark,N,NY Times,"4/4/1941 +",http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.24-Britannia.pdf +1474,1941.03.09,09-Mar-41,1941,Provoked,Usa,California,"Santa Monica, Los Angeles County",Fishing,Frank Martinez,M,Right hand bitten by boated shark PROVOKED INCIDENT,N,Press clipping dated 3/11/1941,,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.09-Martinez.pdf +1473,1941.02.13.,13-Feb-41,1941,Provoked,Australia,New South Wales,Wollongong,Fishing,Robert See,M,Hand lacerated by hooked shark PROVOKED INCIDENT,N,Canberra Times,2/18/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.13-See.pdf +1472,1941.02.01,01-Feb-41,1941,Provoked,Jamaica,Trelawney Province,Bogue (near Falmouth),Seine netting,Albert Buchanan,M,"Left knee, calf & heel bitten by shark trapped in the net PROVOKED INCIDENT",N,Daily Gleaner,2/3/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.01-Buchanan.pdf +1471,1941.01.29,29-Jan-41,1941,Unprovoked,South atlantic ocean,In Convoy OB 274,Off Sierra Leone,Rescuing seaman after ship sunk by German raider,David Hay,M,Clothing torn by sharks,N,The London Gazette,7/8/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.29-Hay.pdf +1470,1941.01.00,Jan-41,1941,Sea Disaster,Unknown,Unknown,Unknown,Adrift on raft after their ship was sunk by an Axis raider ,a Scotsman & an Indian servant,M,FATAL,Y,Lethbridge Herald. 11/17/1941,,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.00-Scotsman-Indian.pdf +1469,1941.00.00.h,1941,1941,Unprovoked,Solomon islands,New Georgia,Munda,Floating,male,M,Buttock bitten,N,Chapman,p.182,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.h-Munda.pdf +1468,1941.00.00.f,1941,1941,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River",Standing,a old fisherman,M,FATAL,Y,Lt. Col. R. S. Hunt,pp.80-81,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.f-old-fisherman.pdf +1467,1941.00.00.e,1941,1941,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River",Unknown,a local dignitary,M,FATAL,Y,Lt. Col. R. S. Hunt,pp.81-82,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.e-local-dignitary.pdf +1466,1941.00.00.d,1941,1941,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River",Unknown,a Gurkha soldier,M,"Survived, but suffered a “forequarter amputation”",N,Lt. Col. R. S. Hunt,p.80,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.d-Gurkha-soldier.pdf +1465,1941.00.00.c,1941,1941,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River",Slipped off rocks and fell into the water,boy,M,"FATAL, both arms bitten ",Y,Lt.Col. R.S. Hunt,p.80,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.c-small-boy.pdf +1464,1941.00.00.b,1941,1941,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River",Standing,I.S.A.C. Ambulance driver,M,FATAL,Y,Lt.Col. R.S. Hunt,p.80,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.b-IASCambulance-driver.pdf +1463,1941.00.00.a,1941,1941,Unprovoked,Papua new guinea,Unknown,"Gaire Village, between Rigo & Port Moresby",Unknown,Renagi Loi,M,"Foot severely bitten, surgically amputated",N,V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.a-RenagiLoi.pdf +1462,1940.12.28,28-Dec-40,1940,Unprovoked,Australia,New South Wales,"Stockton Beach, Newcastle",Standing on sandbank,Clarence Hammond,M,"FATAL, injuries to lower back ",Y,J. Green,p.33; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.28-Hammond.pdf +1461,1940.12.20,20-Dec-40,1940,Unprovoked,South africa,KwaZulu-Natal,"Inyoni Rocks, South Coast",Swimming,Desmond Chandley,M,"FATAL, multiple injuries to legs & buttocks ",Y,R. Kahn,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.20-Chandley.pdf +1460,1940.12.19.R,19-Dec-1940,1940,Unprovoked,Australia,Queensland,Double Island Beach,Fishing,Jack Ryan,M,Minor injury to leg,N,Soda Springs Sun,12/19/1940,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.19.R-JackRyan.pdf +1459,1940.12.10,10-Dec-40,1940,Provoked,Australia,Northern Territory,Darwin,Collecting fish in military trap when bitten by captured shark that had been shot by soldiers with Garten,Private. Michael Garten,M,Leg severely lacerated PROVOKED INCIDENT,N,V.M. Coppleson; G.P. Whitley (1951),p. 192,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.10-Garten.pdf +1458,1940.09.00,Sep-40,1940,Unprovoked,Panama,Panama Bay (Pacific Ocean),Otoque Island,Bathing,Roberto Menacho,M,FATAL,Y,V.M. Coppleson (1958),p.263,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.09.00-Menacho.pdf +1457,1940.07.13.b,13-Jul-40,1940,Unprovoked,Usa,South Carolina,"Folly Beach, Charleston County",Standing,William Tanner,M,Ankle bitten,N,V.M. Coppleson (1958),p.253,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.b-Tanner.pdf +1456,1940.07.13.a,13-Jul-40,1940,Unprovoked,Usa,South Carolina,"Folly Beach, Charleston County",Standing ,Harvey H. Haley (rescuer),M,Struck by shark immediately before it bit Tanner (see below),N,V.M. Coppleson (1958),p.253 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.a-Haley.pdf +1455,1940.06.30,30-Jun-40,1940,Unprovoked,Usa,North Carolina,"Holden Beach, Brunswick County",Fishing,William T. Dye,M,Thigh lacerated,N,C. Creswell,GSAF; F. Schwartz,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.06.30-Dye.pdf +1454,1940.03.31,31-Mar-40,1940,Unprovoked,South africa,KwaZulu-Natal,"Danger Pool, Winkelspruit, South Coast",Treading water,Joe Lees,M,"FATAL, right thigh & calf bitten ",Y,G. Cawston; H. Robson,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.31-Lees.pdf +1453,1940.03.20,20-Mar-40,1940,Unprovoked,Australia,New South Wales,Gerringong,Free diving for lobster,Smiles Walker,M,Minor injuries to foot,N,Sydney Morning Herald,3/21/1940; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.20-Walker.pdf +1452,1940.02.22,22-Feb-40,1940,Unprovoked,South africa,KwaZulu-Natal,"Inyoni Rocks, South Coast",Swimming,Leslie Plummer Lund,M,"FATAL, left thigh & knee bitten ",Y,H. Robson,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.22 - Lund.pdf +1451,1940.02.20,20-Feb-40,1940,Boating,Australia,New South Wales,Sydney Harbour,Canoeing,"""a youth""",Unknown,"No injury. Shark grazed canoe, snapped at a piece of mast being trailed in the water & followed it into 2' of water",N,G.P. Whitley,p.265,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.20-canoe-Sydney.pdf +1450,1940.02.04,04-Feb-40,1940,Unprovoked,Australia,New South Wales,"North Brighton, Botany Bay",Wading,John William Eke,M,"FATAL, injuries to both arms ",Y,V.M. Coppleson (1958),p.69; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.04-Eke.pdf +1449,1940.01.29,29-Jan-40,1940,Unprovoked,Australia,Queensland,Brisbane River,Dived into the water,male,M,Shoulder nipped,N,Morning Bulletin,1/30/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.29-BrisbaneRiver.pdf +1448,1940.01.23,23-Jan-40,1940,Unprovoked,Australia,New South Wales,"North Brighton, Botany Bay",Swimming,Maxwell Farrin,M,"FATAL, left leg severed ",Y,V.M. Coppleson (1958),p.69; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.23-Farrin.pdf +1447,1940.01.15,15-Jan-40,1940,Unprovoked,Australia,Queensland,"Surfers Paradise, near Southport",Swimming,Douglas Bright,M,Chest lacerated,N,V.M. Coppleson (1958),pp. 93 & 238,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.15-Bright.pdf +1446,1940.01.07,07-Jan-40,1940,Unprovoked,South africa,KwaZulu-Natal,"Warner Beach, South Coast",Swimming ,Frederick Aubrey Hooper,M,"FATAL, leg & thigh bitten ",Y,R. Guy,T. Jucker & M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.07-Hooper.pdf +1445,1940.01.01,01-Jan-40,1940,Unprovoked,Australia,Queensland,"Malagil, Barrier Reef",Diving for trochus,native diver,M,Thigh lacerated,N,J. Green,p.33; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.01-native-diver.pdf +1444,1940.00.00.f,Ca. 1940,1940,Boating,Slovenia,Adriatic Sea,Koper,Boating,Unknown,Unknown,"No inury to occupants, shark struck boat",N,A. De Maddalena; M. Zuffa (pers. Comm.),,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.f-boat-Slovenia.pdf +1443,1940.00.00.e,1940,1940,Unprovoked,New guinea,Bwagaoia,"Bagalina, North coast Misima Island",Unknown,small girl,F,FATAL,Y,A. Bleakley; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.e-small-girl.pdf +1442,1940.00.00.d,1940,1940,Unprovoked,Papua new guinea,Western Papuan Gulf,Kerema ,male,a native,Unknown,Hand bitten,N,Papuan Villager,11/1940,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.d-Kerema.pdf +1441,1940.00.00.c,1940,1940,Invalid,South africa,Eastern Cape Province,Kidd's Beach,Swimming,Unknown,Unknown,No details,UNKNOWN,D. Davies,p. 102,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.c-KiddsBeach.pdf +1440,1940.00.00.b,1940,1940,Invalid,South africa,KwaZulu-Natal,Winkelspruit,Unknown,Indian female,F,FATAL,Y,V.M. Coppleson (1958),p.247; SAF Case #161. Unable to authenticate this incident in local records or press reports.,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.b-IndianFemale.pdf +1439,1940.00.00.a,1940,1940,Invalid,South africa,Eastern Cape Province,"Kowie River Mouth, Port Alfred",Standing in water with child in her arms,female,F,Leg bitten,N,E. Skaife,V. M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.a-Woman-Kowie.pdf +1438,1939.12.28,28-Dec-39,1939,Invalid,Australia,New South Wales,"Cabramatta Creek, George’s River ",Swimming,Percy Carroll,M,Abrasion above knee ,N,V.M. Coppleson (1958),pp.44 & 234; SAF Case #39,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.28-Carroll.pdf +1437,1939.12.14,14-Dec-39,1939,Unprovoked,Australia,Queensland,"Rubbish Dump Creek, Mackay",Swimming ,Frank Gurran,M,"FATAL, left foot & right leg bitten, later surgically amputated ",Y,Sydney Morning Herald,12/15/1939; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.14-Gurran.pdf +1436,1939.11.23,23-Nov-39,1939,Boating,Australia,New South Wales,Wollongong,Unknown,boat of Thomas Baker,Unknown,No injury,N,Northern Miner,11/25/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.23-Wollongong-3.pdf +1435,1939.11.11,11-Nov-39,1939,Provoked,Australia,New South Wales,Maroubra,Unknown,boat,Unknown,Boat bitten by gaffed shark PROVOKED INCIDENT,N,G.P. Whitley,p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.11-boat-Maroubra.pdf +1434,1939.11.09,09-Nov-39,1939,Boating,Australia,New South Wales,Wollongong,Unknown,another boat,Unknown,No details,UNKNOWN,G.P. Whitley,p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.09-boat-2-Wollongong.pdf +1433,1939.11.06,06-Nov-39,1939,Boating,Australia,New South Wales,Wollongong,Unknown,boat,Unknown,No details,UNKNOWN,G.P. Whitley,p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.06-boat-1-Wollongong.pdf +1432,1939.11.02.R,02-Nov-1939,1939,Unprovoked,Unknown,Unknown,Unknown,Fishing,a Samoan boy,M,FATAL,Y,Canberra Times,11/2/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.02.R-Samoa.pdf +1431,1939.10.25.R,25-Oct-1939,1939,Unprovoked,Australia,Queensland,Near Restoration Rock off Portland Roads ,"Free diving for trochus shell, swimming to dinghy",Small Cobbe,M,"Both thighs were lacerated, recovered at Thursday Island hospital",N,G.P. Whitley,p. 20; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.25.R-Cobbe.pdf +1430,1939.10.04,04-Oct-39,1939,Unprovoked,Usa,Hawaii,"Kane'ohe Bay, Mokapu, O'ahu",Spearfishing & had just speared a ulua,James Akina,M,Hand bitten,N,G.H. Balazs & A.K.H. Kam; J. Borg,p.71; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.04-Akina.pdf +1429,1939.09.27.R,27-Sep-1939,1939,Unprovoked,Australia,Torres Strait ,Near Mabuiag Island,Pearl diving,Sammy Mira,M,"Leg severely bitten, surgically amputated",N,Cairns Post,9/27/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.09.27-Mira.pdf +1428,1939.08.01,01-Aug-39,1939,Provoked,Usa,California,"Off San Pedro, Los Angeles County",Fishing,John Ray,M,Harpooned shark bit his arm PROVOKED INCIDENT,N,L.A. Times,8/11/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.08.01-Ray.pdf +1427,1939.07.18,18-Jul-39,1939,Sea Disaster,Unknown,Unknown,Unknown,Japanese freighter Bokuyo Maru burned & sank,child,Unknown,Thought to have been taken by a shark,Y,Syracuse Herald,7/30/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.18-Child-B-Maru.pdf +1426,1939.07.16,16-Jul-39,1939,Provoked,Bahamas,Andros Islands,Blue Hole,"Dress diving, filming shark & pulling it through the water for a motion picture scene",E.F. MacEwan,M,Minor injury to shoulder & back PROVOKED INCIDENT,N,Evening Sun (Baltimore),7/31/1939; E.R.F. Johnson,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.16-MacEwan.pdf +1425,1939.07.14,14-Jul-39,1939,Provoked,Usa,Texas,"West Bay, 19 miles from Galveston",Seine netting,John Bolling,M,Leg bitten by snared shark PROVOKED INCIDENT,N,Galveston Daily News,7/20/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.14-Bolling.pdf +1424,1939.05.03,03-May-39,1939,Unprovoked,Usa,Virginia,"At sea, several hundred miles south east of Cape Henry, Virginia",Washed off freighter Huncliff by a freak wave,John Heagan,M,"FATAL, attacked by shark, body not recovered ",Y,L.A. Times,5/7/1939; NY Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.05.03-Heagan.pdf +1423,1939.04.12.R,12-Apr-39,1939,Unprovoked,Papua new guinea,Morobe Province,Bulolol,Dived for a coin,child,M,FATAL,Y,Cairns Post,4/12/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.04.12.R-Child.pdf +1422,1939.03.24,24-Mar-39,1939,Unprovoked,Papua new guinea,Central Province,Port Moresby,Dived for a coin,Raho-Heni,M,"FATAL, leg severed just below hip ",Y,The Papuan Villager,March 1939; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.03.24-Raho-Heni.pdf +1421,1939.02.26,26-Feb-39,1939,Provoked,New zealand,North Island,Matakana River Mouth,Fishing,T. S. Ramsbottom,M,Lacerations to left hand from hooked shark PROVOKED INCIDENT,N,Auckland Star,2/28/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.02.26-Ramsbottom.pdf +1420,1939.01.12,12-Jan-39,1939,Unprovoked,Australia,New South Wales,Clarence River,Scooping prawns,Earl Yager & Riley McLachlan,M,No injury,N,G.P. Whitley,p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.01.12.R-ClarenceRiver.pdf +1419,1939.00.00.e,Woirld War II,1939,Sea Disaster,Unknown,Unknown,Unknown,She was on a ship that was torpedoes & was in the water awaiting rescue,A W.R.E.N.,F,Leg severely bitten,N,V.M. Coppleson (1962),p.258,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.e-WREN.pdf +1418,1939.00.00.d,Ca. 1939,1939,Boating,Bahamas,Andros Islands,Middle Bight,Fishing,"12' skiff, occupant: E.R.F. Johnson",Unknown,"No injury to occupant, shark rammed bow of boat",N,E.R.F. Johnson,,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.d-skiff.pdf +1417,1939.00.00.c,1939,1939,Unprovoked,Venezuela,Carabobo,"El Falito, near Puerto Cabello",Bathing,male,M,FATAL.,Y,H.E. Iverson,,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.c-Haberdasher.pdf +1416,1939.00.00.b,1939,1939,Unprovoked,Curacao,Ascension Bay,Unknown,Diving,Hans Hass,M,"No injury, left hip bumped by shark",N,H. Hass in Diving To Adventure,p.169,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.b-Hass.pdf +1415,1939.00.00.a,1939,1939,Unprovoked,Papua new guinea,"Abau Sub District, Central Province",Aroma Passage,Swimming to anchored boat,a male from Garvakala,M,"Fatal, lower abdomen bitten",Y,A. Bleakley; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.a-Garvakala.pdf +1414,1938.12.27,27-Dec-38,1938,Unprovoked,Australia,New South Wales,"North Beach, Belligen River",Swimming,Daniel Graham,M,"FATAL, thought to have been taken by a shark ",Y,G.P. Whitley,p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.12.27-Graham.pdf +1413,1938.10.05,05-Oct-38,1938,Provoked,Australia,Queensland,Between Wynnum & St. Helena Island,Fishing,Jack Lopez,M,Laceration to left foot & ankle by netted shark PROVOKED INCIDENT,N,Cairns Post,10/6/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.10.05-Lopez.pdf +1412,1938.08.29,29-Aug-38,1938,Unprovoked,China,North China,"Outer harbor, Hong Kong",Swimming alongside warship Tsingt-ao,"Ulrick Baker or William M. Baker, a sailor from H.M.S. Folkestone",M,"FATAL, leg severed ",Y,New York Times (William Baker),8/30/1938; [SAF Case #934]; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.29-Baker.pdf +1411,1938.08.18,18-Aug-38,1938,Provoked,Usa,California,"Near Encino, Los Angeles County",Fishing,Warren William,M,Lacerations to hand by hooked shark PROVOKED INCIDENT,N,Washington Post. 8/19/1938,p.24,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.18-WarrenWilliams.pdf +1410,1938.07.18,18-Jul-38,1938,Unprovoked,Usa,South Carolina,Charleston,Swimming,Maynard Tanner,M,Foot & ankle lacerated,N,Kingsport Times,7/18/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.18-MaynardTanner.pdf +1409,1938.07.17.R,17-Jul-1938,1938,Provoked,Unknown,Unknown,Unknown,Fishing,Ahmed,M,Injured by harpooned shark PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17.R-Turkey.pdf +1408,1938.07.17,17-Jul-38,1938,Provoked,Usa,California,"Dana Point, Orange County","Fishing, removing gaff from shark's mouth","Harry Griffet, passenger on fishing boat Flyer",M,Leg bitten by gaffed shark PROVOKED INCIDENT,N,L.A. Times,7/18/1938 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17-Griffet.pdf +1407,1938.07.12,12-Jul-38,1938,Unprovoked,Australia,Torres Strait,Off Bathurst Island,"Hardhat diving from Japanese pearling lugger, Reiyo Maru",Okada,M,"FATAL, dragged out of diving helmet ",Y,G.P. Whitley,p.264; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.12-Okada.pdf +1406,1938.06.17,17-Jun-38,1938,Unprovoked,Nicaragua,Lower San Juan River,Unknown,"The schooner Elizabeth, bound from Bluefields, Nicaragua to the river port of San Carlos foundered",Elena Hodgson & Isaac Ollis,Unknown,"FATAL x 2, all other passengers & crew reached shore after a long swim",Y,NY Times; L. Schultz & M. Malin,p.558,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.17-Hodgson_Ollis.pdf +1405,1938.06.08,08-Jun-38,1938,Unprovoked,Australia,New South Wales,Manly,Hardhat diving,Charles Edwards,M,"No injury, the shark knocked him off his feet",N,The Canberra Times,6/10/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.08-Edwards.pdf +1404,1938.05.26,26-May-38,1938,Unprovoked,Costa rica,Nicoya Peninsula,Unknown,Fishing,Laureano Villareal,M,"FATAL, pulled overboard by tuna, & bitten by shark ",Y,V.M. Coppleson (1958),p.259 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.26.R-Villareal.pdf +1403,1938.05.15,15-May-38,1938,Unprovoked,Iraq,Basrah City,"Ashar Canal, where people wash clothes & kitchen pans","Swimming, naked",male,M,"Arm severed, but survived. Note: Some weeks later he was swimming at the same spot when a shark severed his right foot.",N,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.15-Basrah.pdf +1402,1938.05.02.R,02-May-1938,1938,Unprovoked,India,West Bengal,Hooghley River near Budge-Budge,Bathing,Unknown,Unknown,"2 survived, 1 FATAL",Y,The Times (London),5/2/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.02.R-India.pdf +1401,1938.03.21.R,21-Mar-1938,1938,Unprovoked,Fiji,Viti Levu,Singatoka River,Wading,male,M,unknown,N,Time Magazine,3/21/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.21.R-FijianMethodist.pdf +1400,1938.03.08,08-Mar-38,1938,Unprovoked,Australia,Northern Territory,Liverpool River,Canoe capsized by shark,aboriginal male,M,"Leg severed, but survived",N,V.M. Coppleson (1958) (in text); Sydney Morning Herald,3/16/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.08-Liverpool-River.pdf +1399,1938.01.21,21-Jan-38,1938,Provoked,Australia,New South Wales,Tweed Heads,Fishing,Robert Corowa,M,Thumb bitten by landed shark PROVOKED INCIDENT,N,Courier-Mail,1/22/1938; Sydney Morning Herald 1/26/1938; Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.21-Corowa.pdf +1398,1938.01.18,18-Jan-38,1938,Provoked,South africa,KwaZulu-Natal,"Vetch’s Pier, Durban","Watching seine netters with friends, one of whom picked up a netted shark",George Parkin,M,Leg bitten PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.18-Parkin.pdf +1397,1938.01.14,14-Jan-38,1938,Unprovoked,Australia,New South Wales,"Lady Martin’s Beach, Sydney Harbor",Diving off jetty,Alan Murray,M,Superficial lacerations on feet & toes,N,The Canberra Times,1/15/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.14-Murray.pdf +1396,1938.01.02,02-Jan-38,1938,Unprovoked,Australia,New South Wales,Cronulla,Surf skiing,Ernest. S. Baker,M,"No injury, ski bumped & he was thrown in the water. Ski had indentations",N,Sydney Morning Herald,1/3/1938; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.02-Baker.pdf +1395,1938.00.00.e.R,1938,1938,Unprovoked,Egypt,Unknown,Mersa Matruh,Sponge diving,males,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.e.R-Egypt.pdf +1394,1938.00.00.d,1938,1938,Unprovoked,Trinidad & tobago,Trinidad,"Manzanilla Bay, St. Andrew County",Body surfing,Donald Fraser Huggins,M,Left hand and arm bitten,N,E. Pace,FSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.d-Huggins.pdf +1393,1938.00.00.c,1938,1938,Provoked,Usa,North Carolina,On one of the sounds near Wilmington,Fishing,"rowboat, occupant: Joe Whitted, Christopher Quevedo & 2 Willard Brothers",M,"No injury, boat towed by harpooned shark, PROVOKED INCIDENT",N,C. Creswell,GSAF; J. Hair,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.c-Willards.pdf +1392,1938.00.00.b,1938,1938,Unprovoked,Australia,Torres Strait,Unknown,Diving,Sammy,M,Leg severed above knee,N,V.M. Coppleson (1958),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.b-Sammy.pdf +1391,1938.00.00.a,1938,1938,Unprovoked,South africa,KwaZulu-Natal,"Bilanhlolo River Mouth, Ramsgate",Swimming,black male,M,"""Mauled""",N,H. Greenwood,,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.a-blackmale.pdf +1390,1937.11.13,13-Nov-37,1937,Sea Disaster,Usa,North Carolina,Off Cape Hatteraa,"Tzenny Chandris, a Greek freighter laden with scrap iron, foundered in heavy weather",3 crewmen,M,FATAL ,Y,Stevens Point Journal,11/15/1937; TIME,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.13-Tzenny-Chandris.pdf +1389,1937.11.11,11-Nov-37,1937,Unprovoked,Australia,Torres Strait ,Ota Reef,Diving for trochus,Nelan Kris,M,FATAL,Y,J. Green,p.33; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.11-Kris.pdf +1388,1937.11.06.R,06-Nov-1937,1937,Sea Disaster,Unknown,Unknown,Unknown,"Two canoes with 14 aboard blown to sea in a storm. While adrift for 3 week, one person fell overboard and was killed by a shark",Unknown,M,FATAL,Y,The Argus,11/6/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.06.R-Solomon-Islands.pdf +1387,1937.10.27.b,27-Oct-37,1937,Unprovoked,Australia,Queensland ,"Kirra Beach, Coolangatta",Swimming ,Jack Brinkley,M,FATAL,Y,J. Green; V.M. Coppleson,pp.51,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.b-Brinkley.pdf +1386,1937.10.27.a,27-Oct-37,1937,Unprovoked,Australia,Queensland,"Kirra Beach, Coolangatta",Swimming ,Norman Girvan,M,FATAL,Y,V.M. Coppleson,pp.51,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.a-Girvanpub.pdf +1385,1937.10.24.c,24-Oct-37,1937,Unprovoked,Australia,New South Wales,Byron Bay ,Swimming near jetty,Thomas McDonald,M,Tooth imprints on torso,N,The Age,10/25/1937; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.b-McDonald.pdf +1384,1937.10.24.a,24-Oct-37,1937,Unprovoked,Australia,New South Wales,Byron Bay ,Surf skiing,Glen Denning,M,"No injury, repulsed shark",N,The Age,10/25/1937; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.a-Denning.pdf +1383,1937.09.26.R,26-Sep-t937,1937,Provoked,Croatia, Split-Dalmatia County,Bisk,Fishing,2 males,M,Injured by shark they were trying to catch PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.16.R-Omis.pdf +1382,1937.09.12,12-Sep-37,1937,Boating,Scotland,Argyllshire,Arran,Pleasure boating,Clyde steamer Glen Sannox,Unknown,"No injury to occupants, two 5-foot observation windows shattered",N,Daily Mail (undated clipping); A Buttigieg ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.12-GlenSannox.pdf +1381,1937.09.11,11-Sep-37,1937,Boating,Scotland,Arran,Fallen Rocks,Fishing,"boat: Lady Charlotte, occupants: C. McSporran & his crew",Unknown,"No injury to occupants, propeller shaft damaged",N,Times (London),9/13/1937; C. Creswell,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.11-LadyCharlotte.pdf +1380,1937.09.01,01-Sep-37,1937,Unprovoked,Scotland,Argyll,"Carradale Bay, Kintyre Peninsula",Rowing,"Captain Angus Brown, his son & brother",M,3 people drowned when the boat was capsized by the shark,N,Times (London),9/2/1937; Fairfax,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.01-Scotland.pdf +1379,1937.08.31,31-Aug-37,1937,Unprovoked,Australia,Torres Strait,"Mabuiag Island, between New Guinea & Australia","Diving from the lugger San, operated by the Protector of the Aborigines",Iona Asai,M,"Head, neck & shoulder bitten (In 1918, he was also bitten by a shark off Cairns)",N,The Maitland Daily Mercury,8/31/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.31-IonaAsai.pdf +1378,1937.08.16,16-Aug-37,1937,Invalid,Turkey,Unknown,Istanbul,Swimming,male,M,"No injury, no attack",N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.16-Istanbul.pdf +1377,1937.08.02,02-Aug-37,1937,Unprovoked,Panama,Colon Province,Limon Bay,Swimming,Jorge Fernandez,M,FATAL,Y,The Gleaner,8/12/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.02-Fernandez.pdf +1376,1937.07.16.R,16-Jul-1937,1937,Unprovoked,Australia,Northern Territory,Elcho Island,Pearl diving,A Japanese hard hat diver,M,FATAL,Y,Mansfield News-Journal,7/16/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.16.R-JapaneseDiver.pdf +1375,1937.07.06,07-Jul-37,1937,Invalid,Italy,Liguria,Borgeo Verezzi,Unknown,row boat: 2 occupants,Unknown,No injury,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.06-Italy.pdf +1374,1937.06.28.R,28-Jun-1937,1937,Unprovoked,Greece,Unknown,Salonika?,Unknown,A. Arvanitakis ,Unknown,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.28.R-Salonika.pdf +1373,1937.06.15.b,15-Jun-37,1937,Provoked,Australia,New South Wales,"Wallamba River, near entrance to Wallis Lake","Fishing from launch, fell into net with shark",David Emmerton,M,Bitten by netted shark PROVOKED INCIDENT,N,Sydney Morning Herald,6/19/1937; V.M. Coppleson (1958) (in text); SAF Cases #549 & 550,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.b-Emmerton.pdf +1372,1937.06.15, 15-Jun-1937,1937,Unprovoked,Usa,Texas,Galveston,Swimming,"Hal A. Thompson, Jr.",M,FATAL,Y,Amarillo Globe,6/16/1937 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.a-Thompson.pdf +1371,1937.05.30,30-May-37,1937,Provoked,Usa,Texas,Galveston,Fishing,William Siskalo,M,Leg nipped by hooked shark PROVOKED INCIDENT,N,Galveston Daily News,6/1/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.30-Siskalo.pdf +1370,1937.05.15,15-May-37,1937,Unprovoked,Australia,Queensland,"Ross River, Townsville","Refused permission to cross on the ferry, he was swimming across the river",William Tennant,M,"FATAL, left arm severed at elbow, right arm bitten, right leg severed at knee ",Y,V.M. Coppleson (1958),pp.90 & 238,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.15-Tennant.pdf +1369,1937.03.26,26-Mar-37,1937,Invalid,Australia,New South Wales,South Cronulla,Bathing,Austin Shaw,M,His body was recovered 2 days later but shark involvement prior to death was not confirmed,N,Canberra Times,3/29/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.26-Shaw.pdf +1368,1937.03.09,09-Mar-37,1937,Invalid,Australia,Victoria,Port Melbourne,Swimming,Chief Petty Officer A. E. King,M,Shark involvement prior to death was not confirmed,Y,Canberra Times,3/10/1937;Sydney Morning Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.09-King.pdf +1367,1937.02.13,13-Feb-37,1937,Unprovoked,Australia,New South Wales,"Bar Beach, Newcastle",Swimming,John Welsh,M,"FATAL, buttocks, ankle & right elbow bitten ",Y,V.M. Coppleson (1958),pp.77 & 234; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.13-Welsh.pdf +1366,1937.02.11,11-Feb-37,1937,Unprovoked,Australia,New South Wales,Kempsey,Swimming ashore after launch capsized,Mr. Redman,Unknown,Foot bitten,N,Canberra Times,2/12/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.11-Redman.pdf +1365,1937.02.04,04-Feb-37,1937,Boating,Australia,New South Wales, Botany Bay ,Fishing,"a launch, occupants- Albert Cree & John Blacksall",Unknown,"No injury to occupants, launch holed",N,Canberra Times,2/5/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.04-BotanyBay-launch.pdf +1364,1937.02.03,03-Feb-37,1937,Provoked,Australia,Queensland,Moreton Island,Fishing,Edgar Woodley,M,Left shoulder bitten by netted shark PROVOKED INCIDENT,N,G.P. Whitley,p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.03-Woodley.pdf +1363,1937.02.02,1937,1937,Invalid,Australia,South Australia,Port Germein,12 of the Penang's crew were returning to the ship when their 12' dinghy capsized,"male, one of the crew of the Penang",M,Shark involvement prior to death was not confirmed,Y,West Australian,2/8/1937; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.02-Penang.pdf +1362,1937.01.27,27-Jan-37,1937,Provoked,Australia,New South Wales,"Lake Conjola, near Milton",Holding shark's tail ,Raymond Hemsworth,M,Bitten on forearm PROVOKED INCIDENT,N,Northern Standard,1/29/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.01.27-Hemsworth.pdf +1361,1937.00.00,1937,1937,Unprovoked,Australia,Torres Strait,Unknown,Unknown,"O'Leary, a Torres Strait islander",M,Survived,N,Rpt. Dept. Harb. Mar. (Qld),1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.00.00-O'Leary.pdf +1360,1936.12.30,30-Dec-36,1936,Unprovoked,Usa,Hawaii,"Honokohau, Maui","Diving, attempting to retrieve body of drowning victim wedged between rocks",John Kekuhi,M,Thigh lacerated,N,J. Borg,p.71; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.30-Kekuhi.pdf +1359,1936.12.19,19-Dec-36,1936,Boating,Australia,Queensland,Brisbane River,Sculling,"Racing scull, occupant: C.E. Slaughter, Queensland sculling champion",Unknown,"No injury to occupant. Shark damaged scull, tooth fragments recovered",N,G.P. Whitley,p.264; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.19-Slaughter.pdf +1358,1936.12.15,15-Dec-36,1936,Provoked,Australia,New South Wales,Newcastle Harbor,Fishing for the shark that killed George Lundberg,"skiff, occupants: J. & A. Ayerst",Unknown,Hooked shark bit rudder PROVOKED INCIDENT,N,V.M. Coppleson (1958),pp.182-183,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.15-boat-Ayerst.pdf +1357,1936.12.12,12-Dec-36,1936,Unprovoked,Australia,New South Wales,"Throsby Creek, Newcastle",Swimming,George Lundberg,M,"FATAL, leg severed at knee",Y,V.M. Coppleson (1958),p.234,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.12-Lundberg.pdf +1356,1936.12.01,01-Dec-36,1936,Boating,Australia,Victoria,Mordialloc,Fishing,"Charles Swan, a returned soldier",M,"FATAL, his 2.4 m dinghy was found with 2' x 3' hole in its side & tooth fragments embedded in the planking",Y,The Age,12/4/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.01-Swan.pdf +1355,1936.11.27,27-Nov-36,1936,Provoked,Australia,Torres Strait,Near Thursday Island,Spearfishing ,Frank McDonnell,M,Speared shark bit his hand PROVOKED INCIDENT,N,Whitley,p.264; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.11.27-McDonnell.pdf +1354,1936.09.04,04-Sep-36,1936,Unprovoked,Usa,Hawaii,"Lahaina, Maui",Swimming,young male,M,Leg lacerated,N,J. Borg,p.71; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.09.04-Maui.pdf +1353,1936.08.24,24-Aug-36,1936,Unprovoked,Australia,Torres Strait,Near Mabuiag Island,"Trochus diving, but floating on surface","Tala Lui, a Torres Strait islander",M,Flexed right leg bitten,N,G.P. Whitley,p.264; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.24-TalaLui.pdf +1352,1936.08.11,11-Aug-36,1936,Provoked,Canada,Newfoundland,Georges Bank,Fishing for cod,"a dory of the schooner Raymonde, occupants: Albion Muise, Peter Dousette & Jack Shannon",Unknown,"No injury to occupants, hooked shark leapt onboard boat PROVOKED INCIDENT",N,NY Times,8/13/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.11-schoonerRaymonde.pdf +1351,1936.08.04,04-Aug-1936,1936,Unprovoked,Australia,Torres Strait,Bathurst Island,Pearl diving,Japanese diver,M,Torso bitten ,N,Nortnern Standard,8/4/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.04.R-PearlDiver.pdf +1350,1936.08.00,Aug-36,1936,Boating,Usa,North Carolina,"Pamlico Sound off Frisco, Dare County",Fishing,"rowboat, occupants: James Mitchell-Hedges & Raymond McHenry",M,Shark rammed boat; no injury to occupants,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.00-PamlicoSound.pdf +1349,1936.07.25,25-Jul-36,1936,Unprovoked,Usa,Massachusetts,"Hollywood Beach, just above Mattapoisett Harbor, Buzzards Bay",Swimming crawl stroke,"Joseph Troy, Jr",M,"FATAL, finger severed, thigh bitten He died during the surgical amputation of his leg ",Y,B. R. Tilden,M.D.; NY Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.25-Troy.pdf +1348,1936.07.12,12-Jul-36,1936,Boating,Usa,New Jersey,"Long Branch, Monmouth County (offshore)",Fishing for bluefish,"22' boat, occupants: Saul White & Charles Dillione",Unknown,"No injury to occupants, shark leapt onboard boat",N,NY Times,6/13/1936 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.12-SaulWhite.pdf +1347,1936.07.07,07-Jul-36,1936,Unprovoked,Australia,Torres Strait,Off Nepean Island,Diving,aboriginal male,M,Survived? Admitted to Thursday Island Hospital,N,V.M. Coppleson (1958),p.244,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.07-aboriginal-diver.pdf +1346,1936.07.00,Jul-36,1936,Boating,South africa,Western Cape Province,Cape Point,"Fishing, catching snoek, Thyrsites atun",10m boat Lucky Jim,Unknown,"Shark leapt onboard & into fishwell, tossing a crew member, Pepino, in the sea",N,T. Wallett,p.25,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.00-LuckyJim.pdf +1345,1936.06.26,26-Jun-36,1936,Unprovoked,Australia,Torres Strait,Nepean Island,"Diving for trochus , but swimming on surface","Willie, an aboriginal",M,FATAL,Y,Sydney Morning Herald,7/7/1936; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.26-Willie.pdf +1344,1936.06.06,06-Jun-36,1936,Unprovoked,Usa,Florida,"Boca Ciega Bay, Pinellas County",Swimming,Unknown,M,FATAL,Y,Evening Independent,6/8/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.06-BocaCiegaBay.pdf +1343,1936.04.22,22-Apr-36,1936,Unprovoked,Australia,Queensland,Arlington Reef near Cairns,Diving for trochus,Guisne Oscoto (Japanese),M,"Arm & back bitten, heel lacerated",N,Sydney Morning Herald,4/23/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.22-Oscoto.pdf +1342,1936.04.08,08-Ap-1936,1936,Unprovoked,Australia,Queensland,Arlington Reef near Cairns,Diving,Ohta,Unknown,Arm severed,N,The Argus,4/9/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.08-Ohta.pdf +1341,1936.03.30,30-Mar-36,1936,Provoked,Usa,Florida,"Miami, Miami-Date County",Fishing,Bill Samsoe,M,No injury. His hand entangled in line of hooked shark. He was pulled overboard & towed 150' PROVOKED INCIDENT ,N,NY Times,4/1/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.30-Samsoe.pdf +1340,1936.03.22,12-Mar-36,1936,Unprovoked,Australia,Torres Strait,"Near Shelburne Bay, Queenland",Among 31 survivors of crew from the sampan Fukulya Maru (which reached Thursday Island in rowing boat) was a man whose arm had been bitten off by shark. The sampan wrecked west of McArthur island ,Japanese sailor,M,Survived,N,Coppleson (1958),p.244; The Argus,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.22-Japanese-sailor.pdf +1339,1936.03.19,19-Mar-36,1936,Unprovoked,Australia,Queensland,"Near Forbes Island, Barrier Reef",Diving for trochus,"Norman, an aboriginal",M,Right forearm lacerated,N,G.P. Whitley,p.263; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.19-Norman.pdf +1338,1936.03.04.,04-Mar-36,1936,Boating,Australia,Northern Territory,Between Cape Hotham & Darwin (50 miles from Darwin),Rowing ,"dinghy, occupants: aborigine & lighthouse keeper",Unknown,"No injury to occupants, shark almost wrenched oar from aborigine",N,G.P. Whitley,p.263; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.04-CapeHotham.pdf +1337,1936.02.23,23-Feb-36,1936,Provoked,Australia,New South Wales,"Angourie, near Yamba",Touching the mouth of a supposedly dead shark,Eva Cameron,F,Finger bitten PROVOKED INCIDENT,N,Coppleson (1958),p. 176; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.23-Cameron.pdf +1336,1936.02.20..R,20-Feb-1936,1936,Unprovoked,Australia,Queensland,Brisbane River,Sculling,C.E. Slaughter,M,"No injury, scull sank",N,Nevada State Journal,5/2/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.20.R-Slaughter.pdf +1335,1936.02.04,04-Feb-36,1936,Unprovoked,Australia,New South Wales,"South Steyne, Manly",Swimming,David Paton,M,"FATAL, taken by shark, body not recovered. Twenty months later, in October 1937, meshing (setting anti-shark gill nets) began at metropolitan beaches",Y,V.M. Coppleson (1958),pp.67 & 234; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.04-Paton.pdf +1334,1936.01.22,22-Jan-36,1936,Unprovoked,Australia,South Australia,"West Beach, near Adelaide","Swimming. Passer-by, Len Bedford, heard him shriek , saw shark leap from the water & swimmer disappeared",Ray Bennett,M,FATAL ,Y,Sydney Morning Herald,1/23/1936; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.22-Bennett.pdf +1333,1936.01.05,05-Jan-36,1936,Invalid,Australia,Queensland,"Main Beach, Southport",Surfing,Kevin Canavan,M,Disappeared & his torn clothing washed ashore,N,Canberra Times,1/7/1936; V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.05-Canavan.pdf +1332,1936.01.00,Jan-36,1936,Provoked,Australia,New South Wales,North Bondi,Paddleskiing,Ken Howell,M,"He tried to hit shark with paddle, shark bumped ski PROVOKED INCIDENT",N,V.M. Coppleson (1958),p.41,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.00-Howell.pdf +1331,1936.00.00,1936,1936,Unprovoked,Australia,Victoria ,"Port Phillip Bay, Port Melbourne",Swimming ,male,M,FATAL ,Y,J. Green,p.33; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.00.00-PortMelbourne.pdf +1330,1935.12.23,23-Dec-35,1935,Provoked,Australia,Victoria,150 yards from the pier at Lorne,Cruising,16' motor launch owned by A. & E. Norton,Unknown,"Harpooned shark stove in bow (20"" x 10"" hole), boat sank PROVOKED INCIDENT",N,V.M. Coppleson (1958),p.183,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.12.23-NortonBoat.pdf +1329,1935.11.13,13-Nov-35,1935,Unprovoked,Australia,Torres Strait,Barrier Reef near Innisfail,Diving?,"James Messot, a Thursday Islander",M,Back & arm gashed but survived,N,NY Times,11/16/1935; Sun (Sydney) 1/13/1936 (pictures of healed wounds); V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1935.11.13-Messot.pdf +1328,1935.09.21,21-Sep-35,1935,Unprovoked,Usa,North Carolina,"Brown’s Inlet on New River, Onslow Beach",Swimming,Jere W. Fountain,M,"FATAL, thigh bitten ",Y, F. Schwartz,p.23; C. Creswell,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.21-Fountain.pdf +1327,1935.09.04.R,04-Sep-1935,1935,Unprovoked,Papua new guinea,Central Province,Hula,Swimming,Mailia Ola,M,FATAL,Y,Cairns Post,9/24/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.04.R-Hula.pdf +1326,1935.08.26,26-Aug-35,1935,Unprovoked,Australia,Queensland,"At Flat Top, near Mackay","Fell overboard, hanging onto lifebuoy",Patrick Quinn,M,"FATAL. His body was not recovered, but about 3 weeks later 2 sharks were caught with human remains, thought to be those of Quinn",Y,V.M. Coppleson (1958),p.22; G. P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.26-Quinn.pdf +1325,1935.08.24,24-Aug-35,1935,Invalid,United kingdom,Isle of Wight,Atherfield,Fishing,Percy Wadham,M,"The hooked shark didn't cut his finger, he was injured by his line",N,C. Moore; Isle of Wight Press,,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.24-Atherfield +1324,1935.08.13,13-Aug-35,1935,Unprovoked,Australia,Torres Strait,"Near Warrior Reefs, Queensland",Diving for beche-de-mer from lugger,"Barani, a Papuan",M,"FATAL, right buttock & thigh bitten ",Y,J. Green,p.33; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.13 -Barani.pdf +1323,1935.07.27.b,27-Jul-35,1935,Invalid,Usa,California,Santa Barbara Channel,fishing boat exploded & sank,Barney Wilkes,M,"Although listed as an uprovoked fatal attack by SAF, shark bite on his ankle was post-mortem following death by drowning",Y,N.Y. Herald Tribune,7/28/1935; D. Miller & R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27-b-Wilkes.pdf +1322,1935.07.27.a,27-Jul-35,1935,Invalid,Usa,California,Santa Barbara Channel,fishing boat exploded & sank,Dr. Alfred L. Wilkes ,M,"Although listed as an uprovoked fatal attack by SAF, he was killed by the explosion. The shark bites were post-mortem ",Y,N.Y. Herald Tribune,7/28/1935; D. Miller & R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27.a-Wilkes.pdf +1321,1935.07.05,05-Jul-35,1935,Unprovoked,Panama,Unknown,off Culebra,"Fishing with dynamite, afterwards in water retrieving catch",Valentin Alonso,M,"FATAL, leg severed ",Y,New York Times,7/6/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.05-Alonso.pdf +1320,1935.07.01,01-Jul-35,1935,Unprovoked,Croatia,Adriatic Sea,"Susak / Fiume (Rijeka, Istria)",Swimming,Mira Kudlich,F,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.01-Kudlich.pdf +1319,1935.06.18,18-Jun-35,1935,Unprovoked,Usa,New Jersey,50 miles offshore,"Fishing for bluefish, shark leapt into dory",Captain Manuel Chalor of fishing trawler Nautilus,M,Arm lacerated by a shark that leapt onto boat ,N,NY Times,6/19/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.18-Chalor.pdf +1318,1935.06.05.R,05-Jun-1935,1935,Unprovoked,Solomon islands,Makira-Uluwa Province,Makira Island,Fishing,a native,M,FATAL,Y,Sydney Mail,6/5/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf +1317,1935.06.00.b,Jun-35,1935,Boating,Australia,South Australia,Off Port Broughton,Unknown,"A dinghy, occupant J.W. Wall",Unknown,Shark bumped dinghy twice,N,Australian Woman's Weekly,8/27/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf +1316,1935.06.00.a,Jun-35,1935,Unprovoked,Papua new guinea,Northern (Oro) Province,"Dobu Passage, D'Entrecasteaux Islands (between Normanby & Fergusson Islands)",Unknown,Unknown,Unknown,"Samoan missionary, Filemani, caught an 8'6"" shark after it had killed 1 man & 2 boys in space of few weeks",N,D.K. Webster,p.67,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.00.a-Filemani.pdf +1315,1935.05.19,19-May-35,1935,Provoked,South africa,KwaZulu-Natal,"North Pier, Durban",Put foot inside a landed & supposedly dead shark,"male, a spectator",M,"Foot bitten, required 1 week hospitalization PROVOKED INCIDENT",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.19-spectator.pdf +1314,1935.05.12,12-May-35,1935,Unprovoked,Australia,Torres Strait,On edge of reef near Warrior Island,Pearl diving,"Andrew, a Torres Strait Islander",M,3 gashes on hand & wrist,N,V.M. Coppleson (1958),pp.103 & 243,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.12-Andrew.pdf +1313,1935.04.25,25-Apr-35,1935,Invalid,Australia,New South Wales,Coogee,"Disappeared 11 days earlier, probable homicide victim","James Smith, murder victim",M,Captive shark regurgitated his arm in the Coogee Aquarium,N,A. Sharpe,pp.28-32,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.25-SharkArmCase.pdf +1312,1935.04.12.R,12-Apr-1935,1935,Unprovoked,Unknown,Unknown,Unknown,Diving,Pearl Purdy Scott,F,Laceration to left leg,N,Port Arthur News,4/12/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.12.R-PearlPurdyScott.pdf +1311,1935.04.08.R,08-Apr-1935,1935,Unprovoked,Usa,California,"Hermosa Beach, Los Angeles County",Unknown,A. R. Davis,M,Laceration to hand ,N,Los Angeles Times,4/8/1935 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.08.R-Davis.pdf +1310,1935.03.30,30-Mar-35,1935,Unprovoked,Australia,Queensland,Barrier Reef off Mackay,Diving from dinghy for trochus shell,"Samuel, a Thursday islander",M,Buttocks injured by fin or a bump ,N,G.P. Whitley citing the Sydney Morning Herald,4/1/1935; 1951),http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.30-Samuel.pdf +1309,1935.03.25.R,25-Mar-1935,1935,Provoked,South africa,KwaZulu-Natal,"North Pier, Durban",Put foot inside mouth of supposedly dead shark,male,M,Injury to foot PROVOKED INCIDENT,N,Natal Coast Angler,3/25/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.25.R-Durban.pdf +1308,1935.03.20,20-Mar-35,1935,Unprovoked,Australia,Torres Strait,Three Mile Reef off Lizard Island 50 miles north of Cooktown,"Pearl diving, but standing in the water","Kosam, a Torres Strait Islander",M,Left thigh abraded & 3 fingers lacerated,N,Sydney Morning Herald,3/20/1935; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.20-Kosam.pdf +1307,1935.03.13,13-Mar-35,1935,Provoked,Australia,Queensland,Pimpana River,Hauling in net with shark in it,William Charles Beitz,M,Calf & shin bitten PROVOKED INCIDENT,N,G.P. Whitley,,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.13-Beitz.pdf +1306,1935.03.11,11-Mar-35,1935,Unprovoked,Australia,New South Wales,Newcastle,Surfing,Eric McMichael,M,Abrasions to shins,N,Sydney Morning Herald,3/11/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.11-McMichael.pdf +1305,1935.03.09,09-Mar-35,1935,Unprovoked,Australia,New South Wales,Maroubra Beach,Swimming,Ernest MacDonald,M,"FATAL, left thigh, buttock, left forearm bitten, finger removed ",Y,V.M. Coppleson (1958),pp.65,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.09-MacDonald.pdf +1304,1935.03.02,02-Mar-35,1935,Unprovoked,Australia,New South Wales,North Narrabeen Beach,Standing,Herbert McFarlane,M,"FATAL, thigh bitten ",Y,Amarillo Globe,6/21/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.02-McFarlane.pdf +1303,1935.02.14,14-Feb-35,1935,Unprovoked,Australia,New South Wales,Austinmer,Surfing (pneumatic surfboard),Darcy Lorenz,M,"Thigh lacerated, abrasions",N,V.M. Coppleson (1958),pp.45 & 233,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.02.14-Lorenz.pdf +1302,1935.01.24.b,24-Jan-35,1935,Unprovoked,Australia,New South Wales,"Off Ben Buckler, near Sydney",Fishing,William Johnson,M,"No injury, sleeve ripped",N,G.P. Whitley,p.263,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.b-Johnson.pdf +1301,1935.01.24.a,24-Jan-35,1935,Boating,Australia,Queensland,"Ross River, Townsville",Fishing for sharks,flat-bottomed boat,Unknown,No injury to occupants,N,G.P. Whitley,p.263,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.a-Flat-bottomed-boat.pdf +1300,1935.01.21.R,21-Jan-1935,1935,Invalid,Israel,Herzliyah,Sidny Ali,Unknown,Unknown,Unknown,human remains washed ahore,F,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.21.R-SidnyAli.pdf +1299,1935.01.17,17-Jan-35,1935,Invalid,Australia,Queensland,"Seaforth River, near MacKay",Unknown,small boy,M,No injury; onlookers saw shark heading for him and lifted him ashore,N,G.P. Whitley,p.263,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.17-Seaforth.pdf +1298,1934.12.31.b,31-Dec-34,1934,Unprovoked,Australia,New South Wales,George’s River at Kentucky,Splashing,Beryl Morrin,F,Hands severed,N,V.M. Coppleson (1958),pp.67 & 233; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.b-Morrin.pdf +1297,1934.12.31.a,31-Dec-34,1934,Unprovoked,Australia,New South Wales," St. George’s River at Moorebank, near Milperra Bridge",Swimming (lead swimmer in race),Richard George Soden,M,"FATAL, left leg bitten ",Y,V.M. Coppleson (1958),pp.67 & 233; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.a-Soden.pdf +1296,1934.12.23.b,23-Dec-34,1934,Unprovoked,Australia,New South Wales,Woy Woy on the Brisbane Waters,Taken as he dived into the water,Roy Inman,M,FATAL,Y,V.M. Coppleson (1958),pp.85-86 & 233; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf +1295,1934.12.23.a,23-Oct-34,1934,Unprovoked,Australia,New South Wales,Woy Woy on the Brisbane Waters,Swimming & splashing,Joyce Inman (Roy’s sister),M,Leg injured,N,J. Green,pp.10 & 33 corrects earlier accounts that gave the location as Queensland; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf +1294,1934.10.09,09-Oct-34,1934,Unprovoked,Australia,Northern Territory,"Redcliff, Cobourg Peninsula",Bathing,aboriginal woman,F,FATAL,Y,The Age,10/27/1934;; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.09-Coburg.pdf +1293,1934.10.08,08-Oct-34,1934,Provoked,Bermuda,Hamilton,Hamilton Parish,Fishing,McCallan,M,Arm bitten by hooked shark PROVOKED INCIDENT,N,The Gleaner,10/16/1934,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.08-McCallan.pdf +1292,1934.10.02,22-Oct-34,1934,Unprovoked,Australia,Torres Strait,Warrior Reefs,Freediving for trochus shell (submerged),"David Younger, Torres Strait Islander",M,"FATAL, forearm lacerated & surgically amputated, but died of gas gangrene 13 days afterwards ",Y, V.M. Coppleson (1958),pp.102-103,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.02-Younger.pdf +1291,1934.09.08,08-Sep-34,1934,Provoked,Bermuda,Hamilton,Nine miles off Frasconi Flats,Fishing,"Captain Earnest Gibbons, skipper of the cruiser Cupid",M,Right foot bitten by shark caught & taken onboard by Mrs. Tucker North PROVOKED INCIDENT,N,NY Times,9/10/193,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.09.08-Gibbons.pdf +1290,1934.08.27,27-Aug-34,1934,Boating,Italy,Sicily,Catania,Fishing on a boat,Unknown,M,No injury to occupants,N,A. De Maddalena; Giudici & Fino (1989),,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.27-Catania.pdf +1289,1934.08.26.R,26-Aug-1934,1934,Invalid,Italy / croatia,Unknown,Kralievica,Swimming,Zorca Prinz,F,"Reported to be FATAL, but found to be a false report; there was no attack",N,C. Moore R. Roccini,GSAF; D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26.R-Prinz.pdf +1288,1934.08.26,26-Aug-34,1934,Unprovoked,Australia,Queensland,Off Eva Island 20 miles from Cardwell,Dived into sea from launch & bitten immediately,Robert Steele,M,"FATAL, body was not recovered",Y,G.P. Whitley citing Sydney Morning Herald 8/27/1934; Sunday Mail (Brisbane) 11/18/1934; G.P. Whitley,p.262; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26-Steeke.pdf +1287,1934.08.21,21-Aug-34,1934,Unprovoked,Croatia,Adriatic Sea,"Susak (Rijeka, Istria)",Swimming,Agnes Novak,F,FATAL,Y,NY Times,7/10/1934,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.21-Novak.pdf +1286,1934.08.05,05-Aug-34,1934,Unprovoked,Usa,Georgia,"Thunderbolt, Chatham County",Swimming,"William Aimar, Jr.",M,Lacerations to right leg,N,Cullman Democrat,8.9/1934,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.05-Aimar.pdf +1285,1934.07.11,11-Jul-34,1934,Boating,Australia,New South Wales,Cronulla,Fishing,"18' boat, occupants William & Leslie Newton",Unknown,"No injury to occupants Sharks continually followed the dinghy, and one smashed its rudder ",N,G.P. Whitley,ref: Daily Telegraph,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.07.11-Newton-boat-Australia.pdf +1284,1934.06.21, 21-Jun-1934,1934,Provoked,Australia,New South Wales,Off Mooloolabah,Fishing,Thomas Henry Durbridge,M,Hand bitten while landing shark PROVOKED INCIDENT,N,Sydney Morning Herald,6/23 & 6/25/1934 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.21-Durnbridge.pdf +1283,1934.06.20,20-Jun-34,1934,Unprovoked,Usa,Florida,"Melbourne, Brevard County",Standing,"Richard Clark Best, Jr.",M,FATAL,Y,New York Herald Tribune,6/21/1934 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.20-Best.pdf +1282,1934.04.15,15-Apr-34,1934,Unprovoked,Australia,Queensland,"Elephant Rock, Currumbin near Southport",Body surfing,Frank Ilett,M,Leg lacerated & punctured,N,V.M. Coppleson (1958),pp.92 & 238. Note: L. Schultz lists date as 1/15/1934 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.15-Ilett.pdf +1281,1934.04.01.c,01-Apr-34,1934,Unprovoked,South africa,KwaZulu-Natal,"Granny’s Pool, Winkelspruit",Swimming,Zulu male,M,FATAL,Y,N. Doveton; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.c-young-black-male.pdf +1280,1934.04.01.b,01-Apr-34,1934,Unprovoked,South africa,KwaZulu-Natal,"Danger Pool, Winkelspruit",Swimming ,Alan Donald McArthur,M,Right thigh lacerated,N,A.D. McArthur,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.b-McArthur.pdf +1279,1934.04.01.a,01-Apr-34,1934,Unprovoked,Australia,New South Wales,North Steyne,Swimming in waist-deep water ,Leon Ritson Hermes,M,"FATAL, right leg lacerated",Y,V.M. Coppleson (1958),p. 233 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.a-Hermes.pdf +1278,1934.03.12,12-Mar-34,1934,Unprovoked,Australia,New South Wales,"Dee Why, north of Queenscliff ",Swimming in hip-deep water,Frank Athol Riley,M,"FATAL, leg & buttocks removed ",Y,V.M. Coppleson (1958),pp.66 & 232; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.12-Riley.pdf +1277,1934.03.00,Mar-34,1934,Provoked,Australia,New South Wales,Cronulla,Fishing ,"18' launch, occupants: 2 fishermen",Unknown,"No injury to occupants, hooked shark, snapped at rudder & then attacked boat PROVOKED INCIDENT",N,V.M. Coppleson (1958),p.182; G.P. Whitley ,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.00-Cronulla-boat.pdf +1276,1934.02.24,24-Feb-34,1934,Unprovoked,Australia,Torres Strait,Adolphus Channel,Splashing in water ,"Rixon, an aboriginal",M,"Lacerated knee & foot, deep puncture wounds",N,V.M. Coppleson (1958),p.243,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.24-Rixon.pdf +1275,1934.02.22,22-Feb-34,1934,Unprovoked,Chile,Elqui Province,Coquimbo,Fell into the water,a soldier,M,FATAL,Y,Los Angeles Times,2/23/1934,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.22-Soldier-Chile.pdf +1274,1934.01.08.R,08-Feb-1934,1934,Boating,Turkey,Istanbul,"Haydarpasa jetty, Istanbul",Fishing,2 males,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08.R-Turkey.pdf +1273,1934.01.27,27-Jan-34,1934,Unprovoked,Australia,New South Wales,"Lambeth Street Wharf, George’s River, East Hills (20 miles from river mouth)",Swimming outside the safety enclosure attempting to retrieve a tennis ball drifting toward midstream ,Wallace John McCutcheon,M,"Bumped, chest bitten & badly injured",N,V.M. Coppleson (1958),pp.67 & 232; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.27-McCutcheon.pdf +1272,1934.01.07,07-Jan-34,1934,Unprovoked,Australia,New South Wales,Queenscliff,Swimming on sandbar adjacent to channel,Colin Grant ,M,Severely lacerated right leg. Later surgically amputated & survived despite gas gangrene,N,V.M. Coppleson (1958),pp.65-66 & 232; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.07-Grant.pdf +1271,1933.11.20,20-Nov-33,1933,Unprovoked,Australia,Torres Strait,Near Boydong Cay,Free diving for trochus ,"Bili, a Papuan",M,"FATAL, right buttock & thigh bitten ",Y,Cairns Post,11/29/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.20-Bill.pdf +1270,1933.11.18,18-Nov-33,1933,Unprovoked,Australia,Queensland,Near Barrow Point,Pearl diving,"Alfred Aniba, a Torres Strait Islander",M,"Hand badly injured, right arm surgically amputated above wrist",N,V.M. Coppleson (1958),p.243,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.18-AlfredAniba.pdf +1269,1933.10.25.R,25-Oct-1933,1933,Unprovoked,Australia,Queensland,Off Bloomfield River,Diving,male,M,Hand severed,N,Courier-Mail,10/25/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.10.25.R-BloomfieldRiver.pdf +1268,1933.09.27.R,27-Sep-1933,1933,Boating,Israel,Unknown,Nabi Rubin,Fishing,2 males,M,"One man bitten on thigh, another on arm",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.09.27.R-NabiRubin.pdf +1267,1933.08.28.b,28-Aug-33,1933,Provoked,Usa,California,"Hermosa Beach, Los Angeles County","Fishing, caught a 15' shark & took it onboard",Nathaniel Myrick,M,Severely lacerated arm PROVOKED INCIDENT,N,D. Baldridge,p.90,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.b-Myrick.pdf +1266,1933.08.28.a,28-Aug-33,1933,Unprovoked,Usa,South Carolina,"Pawley’s Island, north of Charleston",Bathing,Kenneth Layton,M,Right heel & ankle bitten,N,E.M. Burton; V.M. Coppleson (1958),pp.153 & 253,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.a-Layton.pdf +1265,1933.08.26.R,26-Aug-1933,1933,Unprovoked,Usa,Connecticut,Mystic River,Swimming,Helen Clarke,F,Foot bitten,N,Hartford Courant,8/26/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.26.R-HelenClarke.pdf +1264,1933.07.07.R,07-Jul-1933,1933,Unprovoked,Usa,California,"San Diego, San Diego County",Unknown,Tom Schaliniski,M,Survived,N,Woodland Daily Democrat,7/7/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.07-Shalininski.pdf +1263,1933.07.03,03-Jul-33,1933,Unprovoked,Australia,Western Australia,Broome,Pearl diving,Unknown,M,"No injury, shark tore diving suit",N,Canberra Times,7/6/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.03-Pearl-diver-Broome.pdf +1262,1933.06.21,21-Jun-33,1933,Unprovoked,Usa,South Carolina,North end of Morris Island at mouth of Charleston Harbor,Sitting in 3' of water,Dayton Hastie,M,Right knee & left leg bitten,N,E. M. Burton (1935); V.M. Coppleson (1958),pp.152-153 & 252; Randall in Sharks and Survival,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.21-Hastie.pdf +1261,1933.06.16,16-Jun-33,1933,Unprovoked,Usa,South Carolina,"Folly Island, near Charleston",Standing,Emma G. Megginson,F,Left calf bitten,N,E. M. Burton; Note: A. Resciniti lists date as 16-Jul-1933,,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.16-Megginson.pdf +1260,1933.06.13,13-Jun-33,1933,Invalid,Australia,Northern Territory,Darwin,Fishing,Ah Cup,M,"No injury, ""shark chased him ashore""",N,V.M. Coppleson (1962),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.13-Chinese-fisherman.pdf +1259,1933.05.24,24-May-33,1933,Sea Disaster,Barbados,St Michael Parish,Off Pelican Island,Yacht of Michael Howell capsized,9 people in the water,Unknown,"5 survived & 4 perished, but shark involvement not confirmed",Y,New York Times 5/26/1933; L. Schultz & M. Malin,p.558; SAF Case #931,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.24-yacht-Barbados.pdf +1258,1933.05.23,23-May-33,1933,Provoked,Australia,Queensland,Off Stradbroke Island,Fishing,Mr. E.B. Port,M,Laceration to lower leg by netted shark PROVOKED INCIDENT,N,Brisbane Courier,5/24/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.23-Port.pdf +1257,1933.06.08.R,08-Jun-1933,1933,Unprovoked,Australia,Queensland,Currumbin,Treading water,Walter Mitchell,M,Lacerations to legs from fins of shark,N,Townsville Daily Bulletin,6/9/1933 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.08-Mitchell.pdf +1256,1933.05.03,03-May-33,1933,Sea Disaster,Cuba,Havana Province,"Off Jaimanitas Yacht Club, Havana",Swimming to shore from capsized sailboat,Majin Alvarez Piedra,M,FATAL,Y,NY Times,May 4,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.03-sailor_cuba.pdf +1255,1933.04.10,10-Apr-33,1933,Unprovoked,Usa,Florida,"Miami Beach, Miami-Dade County",Swimming,Thomas N. Martin,M,FATAL,Y,New York Herald Tribune,4/12/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.04.10-Martin.pdf +1254,1933.02.26,26-Feb-33,1933,Unprovoked,Australia,New South Wales,Sydney,Standing on his hands,W. McCann,M,Abrasions to legs,N,Townsville Daily Bulletin,2/27/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.26-McCann.pdf +1253,1933.02.15.R,15-Feb-1933,1933,Unprovoked,Australia,Torres Strait,"Barrow Point, 100 miles north of Cooktown, Queensland",Diving for trochus from dinghy when seized by shark 6' below the surface,"Tumia, a Torres Strait Islander",M,"Injuries to arm, shoulder & chest, took 2 days to reach hospital",N,La Crosse Tribune And Leader-Press,5/15/1933; V.M. Coppleson.Q12. (1933); V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.15.R-Tumia.pdf +1252,1933.02.14,14-Feb-33,1933,Boating,Australia,South Australia,Adelaide,Unknown,boat,Unknown,No injury to occupants. Shark leapt into boat during sailing races,N,G.P. Whitley citing Sydney Morning Herald,2/16/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.14-Shark-leaps-in-boat.pdf +1251,1933.02.12,12-Feb-33,1933,Provoked,Australia,South Australia,"Port River, Adelaide",Fishing,Donald Jukes,M,Forearm injured by hooked shark PROVOKED INCIDENT,N,The Advertiser,2/13/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.12-Jukes.pdf +1250,1933.01.04,04-Jan-33,1933,Unprovoked,Australia,Queensland,"Strand Beach, Kissing Point, Townsville",Swimming,Stanley Victor Locksley,M,Severe abdominal wounds FATAL (Note: 14 days earlier a dog was bitten in two by a large shark),Y,V. M. Coppleson.Q11. (1933); V.M. Coppleson (1958),pp.90 & 238,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.01.04-Locksley.pdf +1249,1932.12.11.R,11-Dec-1932,1932,Unprovoked,Australia,Northern Territory,Arnhem Land,Unknown,Unknown,M,Leg bitten,N,Sunday Times (Perth),12/11/1932 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.11-ArnhemLand.pdf +1248,1932.12.09.R,09-Dec-1932,1932,Provoked,New zealand,North Island,Mahurangi River Mouth,Fishing ,Mr. L. E. Brasting,M,Laceration to hand PROVOKED INCIDENT,N,New Zealand Herald,12/9/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.09-Brasting.pdf +1247,1932.11.09,08-Nov-32,1932,Sea Disaster,Unknown,Unknown,Unknown,Hurricane & Tidal Wave,Unknown,Unknown,Unknown,N,Barrier Miner,11/14/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.11.09-Hurricane-Cuba.pdf +1246,1932.10.31,31-Oct-32,1932,Unprovoked,Australia,New South Wales,"Redhead Beach, Newcastle",Swimming,Reginald Ogilvie,M,"Torso bitten with pneumothorax, slight lacerations on left hand",N,V.M. Coppleson.N19. (1933); V.M. Coppleson (1958),pp.80 & 232,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.31-Ogilvie.pdf +1245,1932.10.11,11-Oct-32,1932,Unprovoked,Cape verde,Barlavento Islands,São Vicente ,Swimming,Michele Ruck,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.11-Ruck.pdf +1244,1932.09.26.R,26-Sep-1932,1932,Unprovoked,Fiji,Viti Levu Island,Navua,Catching a turtle,male,M,Left arm severely bitten,N,Queensland Times,9/26/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.09.26.R-Fiji.pdf +1243,1932.08.30.b,30-Aug-32,1932,Provoked,Australia,New South Wales,Bondi,Unknown,male,M,Hand bitten by landed shark PROVOKED INCIDENT,N,G.P. Whitley,,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.b-male-Bondi.pdf +1242,1932.08.30.a,30-Aug-32,1932,Provoked,Australia,New South Wales,Newcastle,Unknown,D. Bennett,M,Bitten by landed shark PROVOKED INCIDENT,N,G.P. Whitley; J. Green,p.32,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.a-Bennett.pdf +1241,1932.08.10,10-Aug-32,1932,Provoked,Usa,New Jersey,"Offshore, between Mantoloking & Point Pleasant, Ocean County",Fishing,John Olsen,M,Hooked shark gashed right leg PROVOKED INCIDENT,N,Lime Springs Herald,9/22/1932; R. Heyer,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.10-Olsen.pdf +1240,1932.08.09,09-Aug-32,1932,Unprovoked,Australia,Torres Strait,Unknown,Pearl diving,"Jack Giblett or Gilbert, Torres Strait Islander",M,Bitten on buttock & leg,N,J. Green,p.32; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.09-JackGiblett.pdf +1239,1932.08.06,06-Aug-32,1932,Provoked,Bahamas,New Providence Island,Nassau,On expedition filming a feature movie & standing on tripod,George Vanderbilt,M,"No injury, hooked shark rammed tripod PROVOKED INCIDENT",N,New York Times,8/7/1932 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.06-Vanderbilt.pdf +1238,1932.07.14.R,14-Jul-1932,1932,Invalid,Usa,Texas,Galveston,Unknown,male,M,Body recovered from shark but death due to shark bite was not confirmed,Y,IGFA,,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.14.R-Galveston.pdf +1237,1932.07.02,02-Jul-32,1932,Boating,Canada,Bay of Fundy,16 km west of Digby Gut,"Fishing, hauling in fishing gear"," 7.6 m motorized boat, occupants: fisherman & his son",M,"No injury to occupants, shark bumped boat repeatedly",N,Piers (1933),,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.02-Bay-of-Fundy.pdf +1236,1932.06.28,28-Jun-32,1932,Provoked,Usa,New Jersey,"10 miles offshore from Sea Isle City, Cape May County",Fishing,Antonio Fonzzo,M,Knee bitten by boated shark PROVOKED INCIDENT,N,NY Times,6/29/1932 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.28-Fonzzo.pdf +1235,1932.06.26,26-Jun-32,1932,Provoked,Usa,New Jersey,"Off Ocean City, Cape May County",Fishing,Giacomo Giavanco,M,Ankle broken when 500-lb boated shark lashed him with its tail PROVOKED INCIDENT,N,NY Times,6/29/1932 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.26-Giacomo.pdf +1234,1932.06.20,20-Jun-32,1932,Unprovoked,Fiji,Yasawa Islands,Nabukeru ,Free diving with goggles,Asena (female),F,FATAL,Y,V.M. Coppleson (1958),p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.20-Asena.pdf +1233,1932.05.12,12-May-32,1932,Unprovoked,Australia,Torres Strait,Near Warrior Reefs,Pearl diving,"Henry Solomon, Cape York native",M,FATAL,Y,V.M. Coppleson (1958),p242,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.12-HenrySolomon.pdf +1232,1932.05.00,May-32,1932,Unprovoked,Australia,Torres Strait,Thursday Island,Pearl diving,"Nishi, Japanese diver",M,Severe injury to forearm near elbow,N,J. Green,p.32; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.00-Nishi.pdf +1231,1932.04.16.b,16-Apr-32,1932,Unprovoked,Philippines,Manila,Fort Mills,Standing,male (civilian),M,"FATAL, torso bitten ",Y,J.F. Corby,,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.b-civilian-male.pdf +1230,1932.04.16.a,16-Apr-32,1932,Unprovoked,Philippines,Manila,Fort Mills,Standing,female,F,"FATAL, torso bitten ",Y,J. F. Corby,,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.a-Philippine-female.pdf +1229,1932.02.16,16-Feb-32,1932,Unprovoked,Usa,Hawaii,"1 mile off Mala Wharf, Lahaina, Maui",Swimming,"William France, a sailor from U.S. Navy vessel Saratoga",M,Two 6-inch lacerations,N,San Antonio Light (San Antonio,Texas),http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.16-WilliamFrance.pdf +1228,1932.02.13,13-Feb-32,1932,Unprovoked,Australia,Queensland,Calliope River,Fishing with dynamite,Eric Francis Beck,M,Foot bitten,N,Morning Bulletin,6/5/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.13-Beck.pdf +1227,1932.02.08,08-Feb-32,1932,Unprovoked,Philippines,Manila,Fort Mills,Working near fish traps,Filipino soldier,M,"FATAL, died next day at 03h00",Y,J.F. Corby,,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.08-PhilippineSoldier.pdf +1226,1932.01.27,27-Jan-32,1932,Unprovoked,Australia,Queensland,Ipswich,Swimming,Charles Adams,M,Thigh bitten,N,Brisbane Courier,1/28/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.27-Adams.pdf +1225,1932.01.11,11-Jan-32,1932,Boating,Australia,Victoria,Frankston,Fishing,boat,Unknown,No details,UNKNOWN,G.P. Whitley citing Herald (Melbourne) 1/12/1932 ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.11-boatFrankston.pdf +1224,1932.01.06,06-Jan-32,1932,Provoked,Mexico,Baja California,Descano Point,Fishing,Efrain Ybarra & Francisco Durazzo,M,Hooked shark capsized rowboat & the 2 men were drowned PROVOKED INCIDENT,Y,NY Herald Tribune,1/8/1933 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.06-BajaFishermen.pdf +1223,1932.00.00,1932,1932,Unprovoked,South africa,Eastern Cape Province,"Kowie River Mouth, Port Alfred",Collecting fish by lamplight in gully,Manning Samuels,M,"Right shin, calf and sole of foot lacerated",N,R. Samuels,K. Reynolds & M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.00.00-Samuels.pdf +1222,1931.11.26,26-Nov-31,1931,Unprovoked,Australia,Torres Strait,Barrier Reef near Innisfail,Diving for trochus from lugger,"Albert Mainlander, an aboriginal",M,Left foot acerated,N,The Argus,11/28/1931; /V.M. Coppleson.Q10. (1933) ,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.11.26-Mainlander.pdf +1221,1931.09.27,27-Sep-31,1931,Unprovoked,Jamaica,Unknown,"East Beach, Kingsston",Diving off wharf,Wilbert Gibbs,M,FATAL,Y,The Gleaner,9/29/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.27-Gibbs.pdf +1220,1931.09.21.b,21-Sep-31,1931,Unprovoked,Usa,Florida,"Municipal Beach, West Palm Beach, Palm Beach County",Swimming,Sam Barrows,M,Minor injury,N,L. Schultz & M. Malin,p.534,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf +1219,1931.09.21.a,21-Sep-31,1931,Unprovoked,Usa,Florida,"Municipal Beach, West Palm Beach, Palm Beach County",Swimming ,Gertrude Holiday,F,Right thigh & calf lacerated,N,E.W. Gudger (1937); V.M. Coppleson (1958),p.252; R. Skocik,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf +1218,1931.09.02,02-Sep-31,1931,Invalid,Usa,Hawaii,"Kahala, O'ahu",Fishing,George Gaspar,M,"Swept out to sea by strong currents, his remains found in shark caught off Barber’s Point",Y,G.H. Balazs & A.K.H. Kam; J. Borg,p.71; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.02-Gaspar.pdf +1217,1931.08.31,31-Aug-31,1931,Unprovoked,Cuba,Havana Province,"Vedado Baths, Miramar, Havana",Swimming,Manuel Romero,M,FATAL (Wire netting installed at local beaches after this incident.),Y,NYTimes,9/2/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.31-Romero.pdf +1216,1931.08.30,30-Aug-31,1931,Invalid,Usa,Hawaii,Unknown,Unknown,Sadao Nakatus,M,"""Mysteriously disappeared"" His body was found in a shark caught at Barber's Point on 01-Sep-1931",Y,Middlesboro Daily News,9//2/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.30-Nakatus.pdf +1215,1931.08.27,27-Aug-31,1931,Boating,Usa,New Jersey,"1 mile ESE of Navesink, Monmouth County",Fishing for bluefish,"boat, occupants: Nels Jacobson & Franklin Harriman Covert",Unknown,No injury to occupants. Shark chasing fish struck boat,N,Press clipping dated 8/28/1931 ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.27-NaveskinShrewsbury.pdf +1214,1931.08.25,25-Aug-31,1931,Unprovoked,Cuba,Havana Province,"Miramar subdivision, Havana",Swimming a quarter mile offshore,Pablo Medina,M,"FATAL, right leg bitten ",Y,New York Times,8/27/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.25-Medina.pdf +1213,1931.08.23,23-Aug-31,1931,Unprovoked,Cuba,Havana Province,"Miramar, Havana",Swimming ,Laureano Rodriguez,M,"FATAL, ""rescuers saw shark trying to drag him under by the leg"" ",Y,New York Times,8/27/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.23-Rodriguez.pdf +1212,1931.08.18,18-Aug-31,1931,Unprovoked,Usa,Texas,Off Brownsville,Swimming,P. Kincaid Zifflewwiggett,M,Minor injury,N,Brownsville Herald,8/19/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.18-Zifflewwiggett.pdf +1211,1931.08.06.R,06-Aug-1931,1931,Unprovoked,Usa,New Jersey,"Sandy Hook (ocean side), Monmouth County",Swimming,"soldier, a private",M,Survived,N,New York Times,8/6/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.06.R-soldier.pdf +1210,1931.08.01,01-Aug-31,1931,Unprovoked,Australia,Queensland,Port Douglas,Fell overboard?,Llewellyn Roberts,M,FATAL,Y,Townsville Daily Bulletin,8/4/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.01-Roberts.pdf +1209,1931.07.28.R,28-Jul-1931,1931,Unprovoked,Fiji,Viti Levu Island,Tamavua River,Swimming,Narnak,M,Multiple injuries ,N,Sydney Morning Herald,8/12/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.28.R-Narnak.pdf +1208,1931.07.15,15-Jul-31,1931,Unprovoked,Usa,New Jersey,"Sea Girt, Monmouth County",Swimming,soldier in NJ National Guard,M,Nipped on leg,N,Daily Courier,7/21/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.15-SeaGirt.pdf +1207,1931.06.14,14-Jun-31,1931,Unprovoked,Usa,Hawaii,"Pearl Harbor, O'ahu","Fishing, had just speared a ulua",male,M,Survived,N,V.M. Coppleson,p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.14-male.pdf +1206,1931.06.13,13-Jun-31,1931,Provoked,Usa,Hawaii,"Pearl Harbor, O'ahu",Gaffing & attempting to bring onboard a harpooned shark,Lieutenant Williamson,M,Tip of finger amputated PROVOKED INCIDENT,N,G.H. Balazs; J. Borg,p.70; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.13-Williamson.pdf +1205,1931.06.04.R,04-Jun-1931,1931,Unprovoked,Usa,Florida,"Key West, Monroe County ",Crabbing,"Frank Johnson, Jr.",M,Lacerations to fingers,N,Key West Citizen,6/4/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.04.R-Johnson.pdf +1204,1931.05.02,02-May-31,1931,Boating,Australia,New South Wales,Kempsey,Unknown,"pilot boat, occupants; Captain McAlister & crew",Unknown,No injury to occupants; oar & rudder bitten,N,Sydney Morning Herald,6/5/1931; Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.05.02-pilot-boat.pdf +1203,1931.04.27.R,27-Apr-1931,1931,Unprovoked,France,French Southern Territories,Île Saint-Paul,"Fishing, boat capsized",Quillezic,M,FATAL,Y,Los Angeles Times,4/27/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.04.27.R-Quillezic.pdf +1202,1931.03.22,22-Mar-31,1931,Unprovoked,Australia,Queensland,"Ross River, Townsville",Fishing with a cast net,Arthur Tomida,M,"FATAL, left thigh severely bitten ",Y,V. M. Coppleson.Q9. (1933); V.M. Coppleson (1958),pp.90 & 238,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.22-Tomida.pdf +1201,1931.03.15,16-Mar-31,1931,Boating,Turkey,Unknown,"Bakurköy, Istanbul",Fishing,"Fishing boat. occupants: Laz Hüseyin, Ali Osman & Tursun +",Unknown,"No injury to occupants, shark crushed boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.15-Turkey.pdf +1200,1931.03.06,06-Mar-31,1931,Provoked,Australia,South Australia,Encounter Bay,"Fishing, hauling in net, shark in net",A. Ewen,M,"Finger lacerated, PROVOKED INCIDENT",N,Whitley,p.262; V.M. Coppleson (1933),http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.06-Ewen.pdf +1199,1931.02.10,10-Feb-31,1931,Invalid,Australia,New South Wales,Maroubra Beach,Swimming ,Samuel Rosenthal,M,Death may have been due to drowning,Y,Examiner,2/11/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.02.10-Rosenthal.pdf +1198,1931.01.24,24-Jan-31,1931,Unprovoked,Australia,Torres Strait,Near Thursday Island,Unknown,native,M,Recovered,N,G.P. Whitley,p.262,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.24-ThursdayIsland.pdf +1197,1931.01.14,14-Jan-31,1931,Unprovoked,Australia,Torres Strait,Unknown,Pearl diving,"Albertus, a Malay",M,"Thigh, kneecap & lower leg badly lacerated",N,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.14-Albertus.pdf +1196,1931.01.07,07-Jan-31,1931,Unprovoked,Australia,Queensland,"Yeppoon, near Ross Creek",Swimming,Stanley Roser,M,Severe bump & few superficial wounds ,N,Canberra Times,1/9/1931; V.M. Coppleson.Q8. (1933); V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.07-Roser.pdf +1195,1931.00.00.b,1931,1931,Unprovoked,Tonga,Niua ,Niuafo'ou Island ,"Swimming, carrying tin can with mail to steamer",male,M,"FATAL, thereafter canoes were used to carry the mail",Y,Clearfield Progress,5/27/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.b-Tin-can-mail.pdf +1194,1931.00.00.a,1931,1931,Unprovoked,Unknown,Unknown,Unknown,Unknown,"""3 shark attacks in 3 days""",Unknown,No details,UNKNOWN,V.M. Coppleson,p.49,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.a-NewGuinea.pdf +1193,1930.12.25,25-Dec-30,1930,Unprovoked,Australia,New South Wales,"Homebush Bay, Parramatta River, Sydney",Swimming,James Knight,M,"Bumped by shark, legs abraded",N,V.M. Coppleson (1933); V.M. Coppleson (1958),pp.44 & 232; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.25-Knight.pdf +1192,1930.12.13,13-Dec-30,1930,Unprovoked,Australia,New South Wales,"Sailor Bay, Middle Harbour, Sydney",Fell overboard,Frank Kenny,M,FATAL,Y,Northern Standard (Dawin),12/18/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.13-Kenny.pdf +1191,1930.12.02,02-Dec-30,1930,Boating,Australia,Victoria,Rosebud,Fishing,12' dinghy,Unknown,No injury to occupants; shark seized gunwale & tried to overturn boat,N,G.P. Whitley,p.262,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.02-dinghy.pdf +1190,1930.12.00,Dec-30,1930,Unprovoked,Australia,New South Wales,Parramata River,Unknown,male,M,FATAL,Y,H.D.Baldridge (1994),SAF Case #506,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.00-ParamattaRiver.pdf +1189,1930.11.30,30-Nov-30,1930,Unprovoked,Australia,Queensland,"St. Helena Island, Moreton Bay",Thrown into water from fishing dinghy,Moses Smith,M,Laceration to leg,N,Sydney Morning Herald,12/1/1930 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.11.30-Smith.pdf +1188,1930.09.26.R,26-Sep-1930,1930,Unprovoked,Honduras,Black River,Unknown,Swimming,Indian guide,M,FATAL,Y,NY Times,9/26/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.26.R-IndianGuide.pdf +1187,1930.09.12.R,1930,1930,Boating,Unknown,Unknown,Unknown,Unknown,Unknown,Unknown,"No inury to occupants, shark struck boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.12.R-Azores.pdf +1186,1930.08.31,31-Aug-30,1930,Unprovoked,Australia,Western Australia,Geraldton,Fishing,William Burton,M,Minor injury,N,Geraldton Guardian,9/2/1930 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.31-Burton.pdf +1185,1930.08.16,16-Aug-30,1930,Unprovoked,Spain,Canary Islands,"El Escabonal, Tenerife ",Swimming,Cecil Bethencourt,M,Leg bitten,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.16-El-Escabonal-CanaryIslands.pdf +1184,1930.08.06,06-Aug-30,1930,Unprovoked,Usa,Florida,"Palm Beach Inlet, Palm Beach County",Swimming,Captain W. Kemp,M,Lacerations to foot & ankle,N,Palm Beach Post,8/7/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.06-Kemp.pdf +1183,1930.07.19,19-Jul-30,1930,Unprovoked,Cuba,Havana Province,"LaPlaya Beach / Vedado, Havana",Swimming,Emilio Grenet ,M,"Right arm & leg bitten, arm & leg surgically amputated ",N,NY Times,7/21/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.19-Grenet.pdf +1182,1930.07.11,11-Jul-30,1930,Unprovoked,Usa,Florida,"Jensen Beach, Martin County",Swimming,William Harns,M,Arm lacerated from shoulder to wrist,N,NY Times,7/13/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.11-Harns.pdf +1181,1930.06.04,04-Jun-30,1930,Unprovoked,Australia,Torres Strait,Near Mabuiag Island,Unknown,"Ibigan, a Torres Strait islander",M,FATAL,Y,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.06.04-Ibigan.pdf +1180,1930.05.27,27-May-30,1930,Unprovoked,Usa,Texas,High Island,Swimming / floating,A.B. Wattigney,M,Lacerations to arm,N,Port Arthur News,5/28/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.27-Wattigney.pdf +1179,1930.05.11.R,11-May-1930,1930,Boating,Turkey,Unknown,Ye?ilköy,Fishing,small boat. Occupants: 2 Englishmen,M,No injury but shark damaged boat,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11.R-Turkey.pdf +1178,1930.05.11,11-May-30,1930,Invalid,Costa rica,Limón Province,Off Porto Limon,Air disaster,Unknown,Unknown,Shark involvement prior to death was not confirmed,Y,Evening Independent,5/12/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11-Rovirosa-Sidar.pdf +1177,1930.04.08,08-Apr-30,1930,Invalid,South africa,Eastern Cape Province,Bashee River,Unknown,male,M,Remains of drowning victim recovered from shark,Y,Dr. J.A. Du Toit,,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.04.08-BasheeRiver.pdf +1176,1930.03.07.R,07-Mar-1930,1930,Unprovoked,Usa,Florida,70 miles off Tarpon Springs,Sponge diving,Speros Gigis,M,No injury to diver but shark left 3 toothmarks in his helmet,N,Evening Independent,3/7/1930 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.03.07.R-Giglis.pdf +1175,1930.02.20,20-Feb-30,1930,Unprovoked,Australia,Torres Strait,Unknown,Pearl diving,Jerry,M,Arm & chest injured,N,V.M. Coppleson (1958),p.242 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.20-Jerry.pdf +1174,1930.02.15,15-Feb-30,1930,Unprovoked,Australia,Victoria,"Middle Brighton, Port Phillip",Diving off pier & treading water,Norman Clark,M,FATAL,Y,V.M. Coppleson.V2.(1933); V.M. Coppleson (1958),pp.110 & 241; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.15-Clarke.pdf +1173,1930.02.03.R,03-Feb-1930,1930,Provoked,Australia,Western Australia,Onslow,Removing shark from a trap,Mr. M. Donovan,M,Laceration to thigh from trapped shark PROVOKED INCIDENT,N,Geraldton Guardian and Express,2/3/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.03.R-Donovan.pdf +1172,1930.01.22,22-Jan-30,1930,Boating,Mexico,Veracruz,Panuco River Mouth,Fishing schooner Jose Luis foundered,Unknown,Unknown,remains of one of the crew found in shark,Y,Reno Evening Gazette,2/14/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.22-FishingSchooner.pdf +1171,1930.01.16,16-Jan-30,1930,Unprovoked,South africa,Western Cape Province,"Melkbaai, False Bay",Swimming,Servy LeRoux,M,Torso & arm bitten,N,A. LeRoux,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.16-le-Roux.pdf +1170,1930.01.00,Jan-30,1930,Sea Disaster,Mauritius,Unknown,Two miles from shore in Tamarind Bay,Swimming to shore after a squall capsized their motorized shark fishing boat,"males, shark fishermen",M,Five men were said to have been killed by sharks ,Y,NY Times,1/14/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.00-Mauritius.pdf +1169,1930.00.00.c,1930,1930,Unprovoked,Unknown,Unknown,Unknown,Unknown,Hyoyu Kadena,M,Survived,N,Wonderokinawa.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.c-Kadena.pdf +1168,1930.00.00.a,1930,1930,Unprovoked,South africa,Eastern Cape Province,"North End Beach, Port Elizabeth",Swimming,Mr. Meyer,M,FATAL,Y,H. Monsen,,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.a-Meyer.pdf +1167,1929.12.26,26-Dec-29,1929,Unprovoked,Australia,New South Wales,"White Bay, near Bald Rock Jetty, Sydney Harbor ",Diving by wharf,William Oakley,M,"FATAL, left arm severed above elbow, lacerations on chest, right thumb severed, left thigh lacerated to bone, abrasions ",Y,V.M. Coppleson.N3.(1933); V.M. Coppleson (1958),p.232; G.A. Llano,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.26-Oakley.pdf +1166,1929.12.21,21-Dec-29,1929,Unprovoked,Australia,Torres Strait,Thursday Island,Diving,male,M,Recovered at Thursday Island Hospital,N,L. Schultz & M. Malin ref. SAF Case #510,,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.21-ThursdayIsland.pdf +1165,1929.12.16,16-Dec-29,1929,Unprovoked,Australia,New South Wales,Collaroy,Bathing or body surfing ,Nancy Thom,F,Superficial lacerations on right leg,N,V.M. Coppleson.N10. (1933); V.M. Coppleson (1958),pp.112 & 232. Note: In 1933 Coppleson gives the date of 16-Jan-1929 but revised it to 16-Dec-1929 in later works,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.16-Thom.pdf +1164,1929.12.13,13-Dec-29,1929,Unprovoked,Australia,Torres Strait,Thursday Island,Pearl diving,"Nago, a Japanese diver",M,Injuries to chest & arm,N,J. Green,p.32; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.13-Nago.pdf +1163,1929.12.03.R,03-Dec-1929,1929,Unprovoked,Australia,Queensland,Townsville,Unknown,male,M,FATAL,Y,Brisbane Courier,12/3/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.03.R-Unidentified.pdf +1162,1929.11.29,29-Nov-29,1929,Sea Disaster,Kiribati,Phoenix Islands,Nikumaroro Island,"Sea Disaster, wreck of the SS Norwich City",Unknown,Unknown,"11 of her crew perished, most, possibly all, deaths were due to drowning",Y,Hartford Courant,2/15/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.29-NorwichCity.pdf +1161,1929.11.21,21-Nov-29,1929,Unprovoked,Cuba,Cienfuegos Province,Cienfuegos,Fishing,Gamatano Yugoago,M,"Shark attacked his boat, threatening to capsize it. He jumped overboard & shark bit his arm. He knifed & killed shark. Later his arm was surgically amputated",N,New York Times,11/28/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.21-Yugoago.pdf +1160,1929.10.20,20-Oct-29,1929,Unprovoked,Australia,Torres Strait,Near Badu Island,Pearl diving,Lifu,M,Heel injured,N,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.20-Lifu.pdf +1159,1929.10.02,02-Oct-29,1929,Unprovoked,Spain,Valencia,Nasareth Beach,Fishing ,Vicente Bonet,M,Arm injured when sharks rammed his boat,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.02-Bonet-Valencia.pdf +1158,1929.09.01,01-Sep-29,1929,Unprovoked,Australia,Queensland,"Ross River, Townsville",Fell from wharf into water & attacked immediately,Edward William Hobbs,M,"FATAL, severe injuries to both legs ",Y,V.M. Coppleson.Q7. (1933); V.M. Coppleson (1958),pp.90 & 237; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.09.01-Hobbs.pdf +1157,1929.08.05,05-Aug-29,1929,Unprovoked,Usa,South Carolina,Fort Moultrie,Bathing,"Robert W. McGhee, Private 1st Class, 8th Infantry",M,Left foot & ankle bitten,N,Clay Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.08.05-McGhee.pdf +1156,1929.07.29,29-Jul-29,1929,Unprovoked,Mexico,Tamaulipas,Tampico,Swimming,Crew member of Casanova,M,Right leg severed below knee,N,V.M. Coppleson (1958),p.262,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.29-Casanova.pdf +1155,1929.07.17.R,17-Jul-1929,1929,Invalid,Cape verde,Santiago Island,Tarrafal,Unknown,female,F,Body of woman recovered from shark,Y,C. Moore; Heraldo de Madrid,7/17/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.17.R-CapeVerde.pdf +1154,1929.06.23,23-Jun-29,1929,Provoked,Usa,Florida,"Fort Pierce, St Lucie County",Fishing,F.P. Jones,M,Leg bitten by hooked shark PROVOKED INCIDENT,N,Miami News,6/25/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.06.23-Jones.pdf +1153,1929.05.31,31-May-29,1929,Unprovoked,Australia,Torres Strait,Unknown,Pearl diving,Johnny Moira,M,"Injuries to both legs, buttocks, back, lower abdomen & chest",N,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.05.31-Moira.pdf +1152,1929.04.26.R,26-Apr-1929,1929,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving for trepang,Ali Ah Mat,M,Thigh bitten,N,Northern Standard (Dawin),4/26/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.26.R-AliAhMat.pdf +1151,1929.04.17.R,17-Apr-1929,1929,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving for trochus,Nistritani Taked,M,Lacerations to right wrist,N,Brisbane Courier,4/19/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.17.R-Taked.pdf +1150,1929.04.11,11-Apr-29,1929,Provoked,Australia,Queensland,"Bribie Passage, Caloundra",Standing in knee-deep water,David Alexander Manners,M,Right calf severely bitten by shark caught in the net PROVOKED INCIDENT,N,Brisbane Courier,4/12/1929; Coppleson (1933),http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.11-Manners.pdf +1149,1929.04.09,09-Apr-29,1929,Unprovoked,Australia,Torres Strait,Badu Island,Unknown,diver,M,FATAL,Y,G.P. Whitley,citng R.S.M.A.C.,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.09-BaduIsland.pdf +1148,1929.04.04,04-Apr-29,1929,Unprovoked,Australia,Torres Strait,Badu Island,Swimming between boats,"Ned Luffman, a Torres Strait Islander",M,FATAL,Y,V.M. Coppleson (1958),p.242 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.04-Luffman.pdf +1147,1929.03.16,16-Mar-29,1929,Unprovoked,Usa,Florida,"Sea Spray, Palm Beach",Swimming,Leroy Chadbourne,M,Right sole & toes lacerated,N,New York Herald Tribune,3/17/1929 edtion; H. Monsen,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.16-Chadbourne.pdf +1146,1929.03.12,12-Mar-29,1929,Unprovoked,Australia,Torres Strait,Near Dauan Island,Bathing,"schoolboy, a Torres Strait Islander",M,FATAL,Y,G.P. Whitley; J. Green,p.32; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.12-schoolboy.pdf +1145,1929.03.04.b,04-Mar-29,1929,Unprovoked,Australia,South Australia,Ardrossan,Launching rowboat through the surf,L. Aldridge,M,Foot bitten,N,Barrier Miner,3/5/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf +1144,1929.03.04.a,04-Mar-29,1929,Unprovoked,Australia,South Australia,Ardrossan,Launching rowboat through the surf,Dick Roads ,M,Legs bitten,N,Barrier Miner,3/5/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf +1143,1929.02.18,18-Feb-29,1929,Unprovoked,Australia,New South Wales,Maroubra Bay,Body surfing,Allan Butcher,M,"FATAL, both thighs lacerated, right foot, fingers and knee abraded, died of sepsis",Y,V.M. Coppleson.N12. (1933); V.M. Coppleson (1958),pp.64 & 231; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.18-Butcher.pdf +1142,1929.02.09,09-Feb-29,1929,Boating,Australia,Western Australia,Glenelg,Canoeing,canoe. Occupants: Doreen Tyrell & Frederick Bates,Unknown,"No injury, shark pushed canoe from jetty to a point 100 m away",N,The Mail,2/9/1929; G.P. Whitley; SAF Case #505,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.09-canoe.pdf +1141,1929.02.08,08-Feb-29,1929,Unprovoked,Australia,New South Wales,Bondi,Swimming,John Gibson,M,"FATAL, right thigh bitten, femoral artery severed",Y,V. M. Coppleson.N11. (1933); J. Green,p.32; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.08-Gibson.pdf +1140,1929.01.27,27-Jan-29,1929,Unprovoked,Australia,Queensland,"Alma Bay, Magnetic Island, Townsville",Swimming,Harry Weatherall,M,"FATAL, right buttock lacerated, left arm severed above elbow, right forearm severed by shark, both arms surgically amputated",Y,V.M. Coppleson.Q.6. (1933); V.M. Coppleson (1958),pp. 90 & 237; G.A. Llano,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.27-Weatherall.pdf +1139,1929.01.14,14-Jan-29,1929,Unprovoked,New zealand,North Island,"Miranda Head, Hauriki Gulf",Bathing,2 women,F,"One was bitten on the leg, the other on the arm",N,Argus,1/15/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.14-NewZealand.pdf +1138,1929.01.12,12-Jan-29,1929,Unprovoked,Australia,New South Wales,Bondi,Body surfing,Colin James Stewart,M,"FATAL, right thigh & hip bitten",Y,V.M. Coppleson.N9. (1933); V.M. Coppleson (1958),pp.64 & 231 ; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.12-Stewart.pdf +1137,1929.01.06.R,06-Jan-29,1929,Boating,Turkey,Unknown,San Stefano,Fishing boat,male x 2,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.06.R-Istanbul.pdf +1136,1929.01.05,05-Jan-29,1929,Unprovoked,Fiji,Viti Levu Island,Suva Harbor,Diving for coins thrown from ship S.S. Moeraki,male,M,"FATAL, hand severed, both legs & arms bitten & nearly severed ",Y,V.M. Coppleson (1962),p.253,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.05-FijianBoy.pdf +1135,1929.00.00.e.R,1929,1929,Invalid,Australia,New South Wales,Sydney Harbor,Swimming,Eric Johanssen,M,"Later found to be fixtion, never happened",N,J. Lowell,Cradle of the Deep,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.e.R-Johanssen.pdf +1134,1929.00.00.d,Ca. 1929,1929,Provoked,Australia,South Australia,Ardrossan,"Wading, netting fish",Ted Bowman,M,Bitten below the knee,N,Barrier Miner,3/5/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.d-Bowman.pdf +1133,1929.00.00.c,1929,1929,Provoked,Usa,Florida,Indian River area,Fishing,Buck Jones,M,Thigh lacerated by hooked shark PROVOKED INCIDENT,N,News Tribune,6/28/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.c-Jones.pdf +1132,1929.00.00.b,1929,1929,Unprovoked,Australia,New South Wales,"Garden Island, Sydney",Unknown,William Luckie,M,Hand lacerated,N,G.P. Whitley,p.261,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.b-Luckie.pdf +1131,1929.00.00.a,1929,1929,Unprovoked,Usa,Florida,"Cape Canaveral, Brevard County",Hardhat diving ,Carl Holm,M,"“Put hand through hatch, shark nearly bit off thumb”",N,R. McAllister; D. Baldridge,p.180 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.a-Holm.pdf +1130,1928.12.21,21-Dec-28,1928,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,Rueben,M,Injuries to arm ,N,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.12.21-Rueben.pdf +1129,1928.11.18,18-Nov-28,1928,Provoked,Usa,New Jersey,"Seabright, Monmouth County",Fishing,"boat, occupants: Captains Charles Anderson, Emit Lindberg & Oscar Benson",M,"Fishermen were cut & bruised by netted, harpooned and gaffed sharks PROVOKED INCIDENT",N,NY Herald Tribune,,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.18-SeaBright.pdf +1128,1928.11.15.R,15-Nov-1928,1928,Boating,Unknown,Unknown,Unknown,Unknown,"dhow, occupant Eugene Wright",M,"No injury to occupants, shark bit keel",N,Sun Herald,11/15/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.15.R-Wright.pdf +1127,1928.11.12,12-Nov-28,1928,Sea Disaster,Usa,Virginia,"200 miles off Hampton Roads, Virginia, USA","Sea Disaster, sinking of the SS Vestris",Earl DeVore,M,FATAL,Y,Havre Daily News Promoter,11/20/1928; TIME Magazine,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.12-Vestris-DeVore.pdf +1126,1928.11.04,04-Nov-28,1928,Unprovoked,Panama,Gulf of Panama,Taboga Island Bay,Swimming,Abraham Moreno,M,"FATAL, multiple injuries including evisceration, 3 fractures of right arm, 5 fingers & leg severed below knee",Y,J.W. Phalen is original source. NOTE: V.M. Coppleson (1958),p.263,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.04-Moreno.pdf +1125,1928.09.00,Sep-28,1928,Unprovoked,Usa,Texas,Corpus Christi,Fishing,W.R. Loesberg,M,Knee bitten,N,Galveston Daily News,12/7/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.09.00-Loesberg.pdf +1124,1928.08.24.R,24-Aug-1928,1928,Invalid,Usa,New Jersey,Off shore,Unknown,male,M,Thumb & coat sleeve recovered from shark's gut,UNKNOWN,Decatur Evening Herald,8/24/1928 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.08.24.R-Thumb.pdf +1123,1928.07.11,11-Jul-28,1928,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,"Willie Poid, a Torres Strait islander",M,Injuries to chest,N,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.11-Poid.pdf +1122,1928.07.00,Late Jul-1928,1928,Provoked,Italy,Tuscany,Viareggio,Boating,Mr. Bagolinii,M,"No injury, shark approached the boat, he hit it with and oar and fell into the sea PROVOKED INCIDENT",N,A. De Maddalena; Gianturco (1978),,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.00-Bagolini.pdf +1121,1928.06.24.R,24-Jun-1928,1928,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Swimming,Jim Stevens,M,Bitten on leg,N,Ludington Daily News,6/24/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.06.24.R-Stevens.pdf +1120,1928.05.17,27-May-28,1928,Invalid,Unknown,Unknown,Unknown,Unknown,A.F.C. Smiot,M,No details,UNKNOWN,H.D. Baldridge (1994) SAF Case #1595,questioned authenticity of this incident,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.05.17-Smiot.pdf +1119,1928.04.14.R,14-Apr-1928,1928,Unprovoked,Australia,Queensland,"Barrow Point, 100 miles north of Cooktown, Queensland",Fishing,a Murray Islander,M,Severe lacerations to arm,N,The Western Champion,4/14/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.R-BarrowPoint.pdf +1118,1928.04.14,14-Apr-28,1928,Unprovoked,Australia,New South Wales,Bondi,Treading water,Maxwell Steele,M,Tissue of left leg stripped from knee to ankle ,N,V. M. Coppleson.N8. (1933); V.M. Coppleson (1958),pp.64 &231; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.a-Steele.pdf +1117,1928.04.09,09-Apr-28,1928,Unprovoked,Jamaica,Unknown,"Coal wharf, Port Royal",Diving,Lewis,M,FATAL,Y,Kingston Gleaner,4/11/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.09-Jamaica.pdf +1116,1928.04.06,06-Apr-28,1928,Unprovoked,Australia,Queensland,Graceville,Bathing,Noel Arthy,M,Lacerations to right leg ,N,Brisbane Courier,5/8/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.06-Arthy.pdf +1115,1928.04.04,04-Apr-28,1928,Unprovoked,Australia,New South Wales,"Cooks Hill, Newcastle",Standing in waist-deep water,Edward Arthur Lane,M,"FATAL, right hand severed, large lacerations on thigh",Y,V.M. Coppleson.N18. (1933); V.M. Coppleson (1958),pp.76 & 231; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.04-Lane.pdf +1114,1928.03.28.R,28-Mar-1928,1928,Unprovoked,Australia,Queensland,Unknown,Unknown,Bob,M,Hip bitten,N,Townsville Daily Bulletin,3/28/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.03.28.R-Bob.pdf +1113,1928.02.20,20-Feb-28,1928,Unprovoked,Australia,Torres Strait,"Near Barrow Point, Queensland",Pearl diving,"Wanewa, a Torres Strait Islander",M,FATAL,Y,Townsville Daily Bulletin,2/28/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.20-Wanewa.pdf +1112,1928.02.00.b,Feb-28,1928,Unprovoked,Costa rica,Near Puntarenas,Unknown,Swimming,Lily Artavia,F,Right leg severely lacerated. Surgically amputated,N,Gleaner (Jamaica),3/7/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.b-Artavia.pdf +1111,1928.02.00.a,Feb-28,1928,Unprovoked,Costa rica,Near Puntarenas,Unknown,Swimming,Armando Chavez,M,Right leg & hand severely lacerated,N,Gleaner (Jamaica),3/7/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.a-Chavez.pdf +1110,1928.01.27,27-Jan-28,1928,Unprovoked,Australia,Torres Strait,Deliverance Island,Retrieving meat from a cage in the water,Harry Envoldt,M,FATAL,Y,Portland Guardian,12/10/1934,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.27-Envoldt.pdf +1109,1928.01.21.b,21-Jan-28,1928,Invalid,Usa,Florida,Unknown,Swimming,Unknown,Unknown,Body not recovered ,Y,H.D. Baldridge (1994) SAF Case #838,,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.b-Florida-Swimmer.pdf +1108,1928.01.21.a,Some time between 08-Jan-1928 & 21-Jan-1928,1928,Invalid,Usa,Florida,Off Florida coast,Jumped overboard and swimming,Two stowaways on German steamer Vela,M,"FATAL, presumed taken by shark/s",Y,NY Times,1/22/1928; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.a-Stowaways.pdf +1107,1928.01.02,02-Jan-28,1928,Unprovoked,South africa,Eastern Cape Province,"Salt Vlei, Port Alfred",Unknown,Mrs. Hoskin,F,Leg lacerated,N,M. Levine,GSAF; Natal Mercury,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.02-Hoskin.pdf +1106,1928.01.00,Jan-28,1928,Unprovoked,South africa,Eastern Cape Province,Kei River mouth,Body surfing,Patrick Desmond Lynch,M,Foot bitten,N,P.D. Lynch,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.00-Lynch.pdf +1105,1928.00.00,1928,1928,Unprovoked,South africa,KwaZulu-Natal,Tugela River Mouth,Standing,N'gena Zakali,M,"Tissue of right thigh removed to the bone, both thumbs & some fingers severed ",N,T. O. Niven,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.00.00-N'genaZakali.pdf +1104,1927.12.28,28-Dec-27,1927,Unprovoked,South africa,Western Cape Province,Little Brak River,Swimming,Ockert Stephanus Heyns,M,"FATAL, leg bitten ",Y,M. Levine & C. Fourie,,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.12.28-Heyns.pdf +1103,1927.11.03,03-Nov-27,1927,Sea Disaster,Australia,New South Wales,"Bradleys Head, Sydney ",The steamer Tahiti collided with the ferry Greycliffe,Unknown,Unknown,40 people perished,Y,Oakland Tribune,8/16/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.11.0-Tahiti-diaster.pdf +1102,1927.10.25,25-Oct-27,1927,Sea Disaster,Brazil,Porto Seguro,90 miles off Albrohos Island,Italian liner Principessa Mafalda sank,Unknown,Unknown,"Of 1256 on board, 295 perished, some were taken by sharks",Y,L. Schultz & M. Malin,p.557; SAF Case #833,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.25-Mafalda.pdf +1101,1927.10.12,12-Oct-27,1927,Unprovoked,Australia,New South Wales,"Kiah Creek, Eden",Riding horseback across the creek,Norman Severs & horse,M,No injury to man or horse,N,Advertiser,10/14/1927; V.M. Coppleson (1933); G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10-12-Severs-horse.pdf +1100,1927.10.00,Oct-27,1927,Unprovoked,Fiji,Unknown,a river,"Standing, collecting bananas",Josiah,M,Leg bitten. He survived,N,The Methodist,3/13/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.00-Josiah.pdf +1099,1927.07.03,03-Jul-27,1927,Boating,Australia,New South Wales,Bellambi Reef,Unknown,"14' boat, occupants: 2 men",Unknown,"No injury to occupants, boat was bumped & lifted 2' out of the water by the shark",N,G.P. Whitley; V.M. Coppleson (1933); Note: V.M. Coppleson (1958),p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.07.03-Bellambi.pdf +1098,1927.05.29,29-May-27,1927,Sea Disaster,Philippines,Luzon Island,Bondoc Peninsula,Sea disaster,Inter island ferry Negros foundered during a typhoon,Unknown," 55 perished, some were taken by sharks",Y,The Times (London),6/2/1927 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.29-Negros.pdf +1097,1927.05.09.R,09-May 1927,1927,Unprovoked,Australia,Queensland,Off Cairns,Walking,"Quassa, a Torres Strait Islander",M,FATAL,Y,Brisbane Courier,5/10/1927; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.09.R-Quassa.pdf +1096,1927.04.10,20-Apr-27,1927,Unprovoked,Australia,Torres Strait,Near Thursday Island,Diving,"Napoleon Doola, a Murray Islander)",M,Extensive injuries to left leg,N,J. Green,p.32; Bartlett,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.10-NapoleonDoola.pdf +1095,1927.04.08,08-Apr-27,1927,Unprovoked,Australia,Queensland,Near Thursday Island,Pearl diving,Eseromi,M,Leg injured,N,J. Green,p.32; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.08-Eseromi.pdf +1094,1927.03.01,11-Mar-27,1927,Unprovoked,Australia,New South Wales,Mereweather Beach,Body surfing / treading water,Edward Pritchard,M,"Right buttock & thigh bitten, thumb removed",N,V.M. Coppleson.N17. (1933); V.M. Coppleson (1958),p.76 & 231; G.A. Llano,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.03.01-Pritchard.pdf +1093,1927.02.14,14-Feb-27,1927,Provoked,Nicaragua,Salinas Bay,"A shark was caught, its head severed from body and hung from the anchor davit onboard the U.S.S. Borie",Feeling the shark’s teeth,a sailor,M,"Sharks’s jaws snapped shut, lacerating his right hand PROVOKED INCIDENT",N,G.A. Llano,p.178,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.14-sailor.pdf +1092,1927.02.09,09-Feb-27,1927,Unprovoked,Australia,Queensland,Brisbane River,Attempting to rescue drowning man,Bernard Gill,M,"No injury, but trouser leg shredded by shark",N,Northern Territory Times & Gazette,2/11/1927,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.09-Gill.pdf +1091,1927.02.00,Feb-27,1927,Provoked,New zealand,South Island,"Menzies Bay, Banks Peninsula, ",Fishing,male,M,Severely bitten by shark caught 30 minutes earlier PROVOKED INCIDENT,N,R.D. Weeks,GSAF; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.00-MenziesBay.pdf +1090,1927.01.20,20-Jan-27,1927,Unprovoked,South africa,Eastern Cape Province,Kidd’s Beach,Body surfing,Andrew I. Brown,M,Both thighs lacerated,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.20-Brown.pdf +1089,1927.01.08.R,08-Jan-1927,1927,Unprovoked,Usa,California,"Catalina Channel, Los Angeles County",Swimming,Price Taylor,M,Lost hand,N,The Afro-American,1/8/1927,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.08.R-Taylor.pdf +1088,1927.01.03,03-Jan-27,1927,Unprovoked,Australia,New South Wales,"Grey’s Point, Port Hacking",Swimming,Mervwyn Allum,M,"FATAL, leg bitten from thigh to ankle",Y,V.M. Coppleson.N.21.(1933); V.M. Coppleson (1958),p.230; NYTimes,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.03-Allum.pdf +1087,1927.00.00.b,1927,1927,Unprovoked,Australia,New South Wales,15 miles up the Cataract River,Swimming,Anonymous ,M,"FATAL, shoulder bitten ",Y,W.E.,pp. 192-193,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.b-Australia.pdf +1086,1927.00.00.a,1927,1927,Unprovoked,Australia,Torres Strait,Thursday Island,Pearl diving,Dick Lahou,M,Shoulder bitten,N,V.M. Coppleson (1958),p.241,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.a-Lahou.pdf +1085,1926.12.02.R,02-Dec-1926,1926,Unprovoked,Australia,Torres Strait,Palm Island,Diving for trochus,Norman Skeen,M,FATAL,Y,Brisbane Courier,12/3/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.12.02-Norman.pdf +1084,1926.11.17,17-Nov-26,1926,Unprovoked,Australia,Torres Strait,Near Thursday Island,Diving,Noma,M,Arm injured,N,J. Green,p.32; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1926.11.17-Noma.pdf +1083,1926.10.29.R,29-Oct-1926,1926,Unprovoked,Papua new guinea,Central Province,Roku Point,Jumped into the water,male,M,"FATAL, abdomen bitten",Y,Cairns Post,10/29/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.29.R-RokuPoint.pdf +1082,1926.10.23.b,23-Oct-26,1926,Unprovoked,Australia,New South Wales,Clarence River,Bathing,Herbert Webster,M,"3"" laceration to leg",N,Barrier Miner,10/25/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.b-Webster.pdf +1081,1926.10.23.a,23-Oct-26,1926,Sea Disaster,Bermuda,Unknown,18 miles southwest of Bermuda ,British patrol boat 1250-ton HMS Valerian foundered in a hurricane,Unknown,Unknown,"Of 104 people in the water, only 20 survived. 84 people were lost, many to sharks. Sharks 2 pulled crew off life rafts",N,New York Herald Tribune,10/29/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.a - HMS Valerian.pdf +1080,1926.09.06.R,06-Sep-1926,1926,Unprovoked,Papua new guinea,Unknown,Near Port Moresby,Jumped out of canoe,a native,M,FATAL,Y,Barrier Miner,9/6/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.09.06.R-PortMoresby.pdf +1079,1926.08.24,24-Aug-26,1926,Unprovoked,Usa,New Jersey,"Seaside, Ocean County",Swimming,Charles A. Burke,M,FATAL,Y,Washington Post 8/25/1926; L. Schultz & M. Malin,p.531,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.08.24-Burke.pdf +1078,1926.07.23,23-Jul-26,1926,Unprovoked,Italy,Golfo di Genova in the Ligurian Sea,Varazze,Swimming,Augusto Casellato,M,"FATAL, body was not recovered",Y,NY Herald Tribune,7/25/1926; A. De Maddalena; Anon. (1926a),http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.23-Casellato.pdf +1077,1926.07.12,12-Jul-26,1926,Boating,Usa,New Jersey,20 miles off Seabright,Fishing,"boat, occupants: Andrew Peterson & Peter Jergerson",M,No injury to occupants,N,Evening Sun,undated clipping,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.12-boat.pdf +1076,1926.07.08,08-Jul-26,1926,Unprovoked,Usa,California,"San Francisco Bay (or San Leandro Bay), near cannery, Alameda County",Swimming with dog near canning factory,Norman Piexotto,M,Leg & hand lacerated and dog bitten,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.08-Peixotto_Collier.pdf +1075,1926.07.03,03-Jul-26,1926,Invalid,Spain,Sants-Montjic,"Casa Antunez Beach, Barcelona",Bathing,Sebastian Llopis Puges,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.03-Puges.pdf +1074,1926.05.18,18-May-26,1926,Unprovoked,Usa,Hawaii,"Hale'iwa, O'ahu",Swimming,William J. Goins,M,"FATAL, gave sudden shriek & disappeared, body found in shark caught off Kahuka",Y,G.H. Balazs & A.K.H. Kam; J. Borg,p.70; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1926.05.18-Goins.pdf +1073,1926.04.22,22-Apr-26,1926,Unprovoked,South atlantic ocean,South of the Equator ,Steamship bound from Cape Town to Philadelphia,Fell overboard from SS Ripley Castle,Thomas (or Tony) Madison,M,When taken back on board 2 hours later both legs were bleeding from shark bites,N,New York Times,4/28/1926 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.22-Madison.pdf +1072,1926.04.07,07-Apr-26,1926,Unprovoked,Usa,Hawaii,"Hilo Bay Yacht Club, Hilo, Hawai'i",Swimming,Mrs. Leonard Carlsmith,F,Right leg bitten thigh to heel,N,New York Tribune,8/9/1953; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.07-Carlsmith.pdf +1071,1926.03.17,17-Mar-26,1926,Unprovoked,Australia,South Australia,"West Beach, Brighton",Swimming ,Primrose Whyte,F,FATAL,Y,V.M. Coppleson.S1.(1933); V.M. Coppleson (1958),pp.107 & 240; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.03.17-Whyte.pdf +1070,1926.01.26,26-Jan-26,1926,Unprovoked,South africa,Eastern Cape Province,Hamburg,Swimming,Mr. Bennett,M,Thigh lacerated,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.26-Bennett.pdf +1069,1926.01.00,Jan-26,1926,Unprovoked,Australia,Victoria,Unknown,Unknown,male,M,Leg lacerated,N,V.M. Coppleson (1958),p.110,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.00-Victoria.pdf +1068,1926.00.00.d,Summer of 1926,1926,Unprovoked,Monaco,Bay of Monaco,Unknown,Unknown,boy,M,FATAL,Y,Excerpt from news article dated 10/23/1926,,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.d-Monaco.pdf +1067,1926.00.00.c,1926,1926,Provoked,New zealand,Cook Islands,Rarotonga,Shark hoisted on board liner Tahiti,Bosun of the ship,M,"Struck on head by shark’s tail, knocked unconscious & deep gash in head PROVOKED INCIDENT",N,V.M. Coppleson (1958),pp.176-177,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.c-bosun-Tahiti.pdf +1066,1926.00.00.b,1926,1926,Unprovoked,Singapore,Unknown,Sea View Beach,Dived onto shark from floating stage,woman,F,"FATAL, femoral artery severed ",Y,V.M. Coppleson (1958),"pp.148 & 265 (Note: ""A few days earlier",http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.b-womanSingapore.pdf +1065,1926.00.00.a,1926,1926,Unprovoked,South africa,Western Cape Province,Mossel Bay,Swimming to mail boat,Mr. Daniels,M,No details,UNKNOWN,M. Joss; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.a-Daniels.pdf +1064,1925.11.22,22-Nov-25,1925,Unprovoked,Australia,Western Australia,Cottesloe Beach,Floating on his back,Simeon (Samuel) Ettelton,M,"FATAL, thigh & torso bitten, then shark charged rescue boat ",Y,V.M. Coppleson.W2,(1933); V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.22-Ettelton.pdf +1063,1925.11.00.b,Nov-25,1925,Unprovoked,Usa,Puerto Rico,"Condado Beach, San Juan",Unknown,Lawyer’s secretary,Unknown,Laceration across abdomen,N,V.M. Coppleson (1958),pp.48 & 265,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.b-secretary.pdf +1062,1925.11.00.a,Nov-25,1925,Unprovoked,Usa,Puerto Rico,"Condado Beach, San Juan",Unknown,American lawyer,M,Both calves lacerated,N,V.M. Coppleson (1958),pp.48 & 265,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.a-Lawyer.pdf +1061,1925.09.04,04-Sep-25,1925,Provoked,Spain,Valencia ,Valencia,Fishing,Pascual Gurran,M,Right hand bitten by hooked shark PROVOKED INCIDENT,N,Chris Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.04-Gurren-Valencia.pdf +1060,1925.09.03,03-Sep-25,1925,Unprovoked,England,Isle of Wight,Off Shanklin,Fishing,Mr. S. Page ,M,No injury but shark lifted boat out of the water,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.03-Page-Isle-of-Wight.pdf +1059,1925.08.02,02-Aug-25,1925,Unprovoked,Usa,South Carolina,"Folly Island, near Charleston",Swimming,Mrs. Walter H. Kahrs,F,"Multiple lacerations on both thighs, right buttock and hip",N,E. M. Burton,,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.08.02-MrsKahrs.pdf +1058,1925.06.15,15-Jun-25,1925,Invalid,Australia,Western Australia,"Princess Royal Harbor, near King George’s Sound",Unknown,Unknown,Unknown,Human arm found in shark,UNKNOWN,Geraldton Guardian,6/18/1925 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.06.15 Princess Royal Harbor.pdf +1057,1925.05.00,May-25,1925,Unprovoked,Usa,Puerto Rico,"Condado Beach, San Juan",Unknown,American University student,M,"Right arm nearly severed at shoulder, left wrist lacerated",N,V.M. Coppleson (1958),pp.48 & 265,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.05.00-AmericanUniversityStudent.pdf +1056,1925.03.27,07-Mar-1925 or 27-Mar-1925,1925,Unprovoked,Australia,New South Wales,Coogee,Bathing in waist-deep water,Jack Dagworthy,M,"Left thigh bitten, leg surgically amputated ",N,V.M. Coppleson.N7.(1933); V.M. Coppleson (1958),pp.63 & 230; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.27-Dagworthy.pdf +1055,1925.03.12,12-Mar-25,1925,Unprovoked,Australia,New South Wales,Newcastle Beach,Swimming,Jack Canning,M,"FATAL, right forearm severed, lacerations from buttocks to heel L",Y,V.M. Coppleson.N16.(1933) V.M. Coppleson (1958),pp.76 & 230,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.12-Canning.pdf +1054,1925.03.10,10-Mar-25,1925,Unprovoked,Papua new guinea,Central Province,Hula,Swimming,a Papuan,M,FATAL,Y,The Queenslander,4/4/1925,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.10-Papuan.pdf +1053,1925.01.27.R,27-Jan-1925,1925,Unprovoked,Usa,Florida,"Miami Beach, Miami-Dade County",Swimming,Frank Chorie,M,Lacerations to arm,N,Evening Independent,1/27/1925,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.27.R-Chorie.pdf +1052,1925.01.08,08-Jan-25,1925,Unprovoked,Canada,Vancouver,Second Narrows in Burrard Inlet,"Diving, repairing water main at depth of 90'", male,M,"Injuries, if any, unknown, but afterwards diver stunned shark with iron bar",N,ABCS; Manitoba Free-Press,1/13/1925,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.08-Vancouver.pdf +1051,1925.00.00,1925,1925,Unprovoked,Fiji,Viti Levu Island,"Suva Harbor, Suva",Diving for coins tossed from passenger ship,Fijian boy,M,"Both arms bitten, surgically amputated",N,V.M. Coppleson (1958),p.258,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.00.00-Fijian boy.pdf +1050,1924.11.25,25-Nov-24,1924,Unprovoked,Mexico,Tamaulipas,Tampico,The Ward liner Esperanza stranded during a gale & she leapt overboard to rescue her dog which had been swept overboard.,Ofelia Rivas,F,FATAL,Y,Indianapolis Star,12/15/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.25-Rivas.pdf +1049,1924.11.24,24-Nov-24,1924,Unprovoked,Panama,"2 to 3 miles off Taboguilla Island, Pacific Ocean",Pacific Anchorage off the Panama Canal,"Inebriated, woke from sleep and fell off deck into the water ",male,M,Knee bitten,N,Gorgas Hospital Records,,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.24-Panama.pdf +1048,1924.11.21,21-Nov-24,1924,Unprovoked,Usa,Puerto Rico,Santurce,Bathing,Professor Winslow,M,"FATAL, hand severed, both legs & arms bitten & nearly severed ",Y,R. W. Kramer; V.M. Coppleson (1958),pp.48 & 264,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.21-Winslow.pdf +1047,1924.10.31.R,31-Oct-1924,1924,Provoked,French polynesia,Tuamotus,Rangiroa,Pearl diving,Huri-Huri,M,Abrasions PROVOKED ATTACK,N,F. O'Brien in Atolls of the Sea,,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.31-Huri-Huri.pdf +1046,1924.10.18,18-Oct-24,1924,Unprovoked,Australia,Victoria,Port Melbourne,Bathing,Fred White,M,Leg bitten,N,Coppleson.V1. (1933); Melbourne Herald,1/7/1925,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.18-White.pdf +1045,1924.07.31,31-Jul-24,1924,Unprovoked,Usa,South Carolina,"Folly Island, near Charleston",Standing,Lewis Kornahrens,M,Left knee & leg bitten. (Tooth fragment recovered from kneecap),N,E. M. Burton; E.W. Gudger (1935); V.M. Coppleson (1958),pp.152 & 252; J. Randall,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.31-Kornahrens.pdf +1044,1924.07.14,14-Jul-24,1924,Provoked,England,Dorset,Weymouth,Fishing for mackerel,2 fishermen,M,Arms broken by hooked shark PROVOKED INCIDENT,N,C. Moore; The Times,7/14/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.14-Weymouth.pdf +1043,1924.07.04,04-Jul-24,1924,Boating,Usa,California,"Newport Beach, Orange County",Fishing,"18' boat, occupants Richard Gunther & Donald Cavanaugh",M,"No injury, shark tore hole in the side of the boat",N,The Daily Pilot,3/6/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.04-boat-NewportBeach.pdf +1042,1924.06.18,18-Jun-24,1924,Provoked,Usa,Florida,"Bayboro, Pinellas County",Removing shark from a net,Robert Martin,M,Netted shark made a5-inch incision above the knee PROVOKED INCIDENT,N,Evening Independent,6/19/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.06.18-Martin.pdf +1041,1924.04.25,25-Apr-24,1924,Unprovoked,Australia,New South Wales,Kiama,"Fishing, fell in water & swimming strongly to shore",Ernest Conroy,M,"FATAL, partial remains recovered ",Y,V.M. Coppleson (1933); G.P. Whitley,p.266,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.25-Conroy.pdf +1040,1924.04.22,22-Apr-24,1924,Unprovoked,Panama,150 miles offshore,Unknown,"Floating, after falling or jumping off the Standard Oil tanker Frederick W. Weller",Claremont L. Staden,M,"Reported to have had ""2 fights with sharks"" before being rescued by the British freighter Dorsetafter 23 hours in the water",N,NY Times,5/4/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.22-Staden.pdf +1039,1924.04.20,20-Apr-24,1924,Invalid,Australia,Western Australia,Fremantle,Swimming ,Noel Knight,M,Abrasions,N,V.M. Coppleson (1933); G.P. Whitley (1951),p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.20-Knight.pdf +1038,1924.03.28.R,28-Mar-1924,1924,Unprovoked,Solomon islands,Central Province,Savo Island,Swimming,male,M,"Left arm severed, leg bitten",N,Cairns Post,3/28/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.28.R-Savo-Island.pdf +1037,1924.03.24,24-Mar-24,1924,Boating,Spain,Galica,Sisargas Islands,Fishing,Boat owned by Ricardo Laneiro,Unknown,"No injury to occupants, shark bit boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.24.Sisargas.pdf +1036,1924.02.13,13-Feb-24,1924,Unprovoked,Australia,New South Wales,Bronte,Bathing in 5' of water,Nita Derritt,F,"Legs severely bitten, surgically amputated",N,V.M. Coppleson.N6. (1933); V.M. Coppleson (1958),pp.63 & 230; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.13-Derritt.pdf +1035,1924.02.08,08-Feb-24,1924,Invalid,Australia,Queensland,Currumbin,Bathing,Frederick Dullroy,M,Probable drowning & scavenging,UNKNOWN,11/02/1924,,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08-Dullroy.pdf +1034,1924.01.29,29-Jan-24,1924,Unprovoked,South africa,KwaZulu-Natal,"South Beach, Durban",Swimming,Johannes Karl Schultz,M,FATAL,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.29-Schultz.pdf +1033,1924.01.25,25-Jan-24,1924,Unprovoked,South africa,Eastern Cape Province,"St. George’s Strand, Port Elizabeth",Swimming,male,M,Foot lacerated,N,Eastern Province Herald,1/28/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.25-StGeorgesStrand.pdf +1032,1924.01.19,09-Jan-24,1924,Unprovoked,Australia,New South Wales,"Near Asbestos Works, Camellia, Parramatta River",Had just dived into water & was swimming,Charles Brown,M,"FATAL, right thigh severely bitten, left arm lacerated ",Y,V.M. Coppleson.N.2. (1933); V.M. Coppleson (1958),pp.69 & 230,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.19-Brown.pdf +1031,1923.12.12,12-Dec-23,1923,Unprovoked,Australia,New South Wales,"Murwillumbah, Tweed River",Swimming,Leo Wohill,M,Lacerations to leg,N,Barrier Miner,12/12/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.12-Wohill.pdf +1030,1923.12.02,02-Dec-23,1923,Unprovoked,Australia,New South Wales,"Urunga, Belliger Heads","Fishing, standing in waist-deep water",James Elton,M,"FATAL, disappeared, thought to have been taken by a shark ",Y,Sydney Morning Herald,12/5/1923 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.02 - Elton.pdf +1029,1923.11.23,23-Nov-23,1923,Unprovoked,Australia,Western Australia,"Condon, 88 km NE of Port Hedland",Dry shelling,"Selim and Dea Opre, Koepang Islanders",M,"FATAL, disappeared, partial remains of Selim was found, there was no trace of Dea Opre",Y,Western Mail,11/29/1923; V.M. Coppleson (1933); G.P. Whitley (1940),http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.23-KoepangIslanders.pdf +1028,1923.11.02,02-Nov-23,1923,Invalid,Australia,New South Wales,Bellinger Head,Fishing,male,M,FATAL,Y,V.M. Coppleson,p.452; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.02-BellingerHead.pdf +1027,1923.10.20,20-Oct-23,1923,Invalid,Australia,New South Wales,"Botany Bay, Sydney",Sailing,male,M,"He failed to return, his body was recovered 11/9/1922; chest & abdomen had been bitten by shark/s",Y,V.M. Coppleson (1933);,,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.20-BotanyBay.pdf +1026,1923.10.17,17-Oct-23,1923,Boating,Australia,New South Wales," Black Head, south of Taree",Fishing,15' boat,Unknown,"No injury to occupants, shark bit boat",N,V.M. Coppleson (1933); SAF Case #494,,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.17-boat-Taree.pdf +1025,1923.10.16,16-Oct-23,1923,Unprovoked,Australia,Torres Strait,Near Thursday Island,Pearl diving,"Amano, a Japanese diver",M,"Arm severed, but survived",N,V.M. Coppleson (1958),p.241; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.16-Amano.pdf +1024,1923.08.08,08-Aug-23,1923,Unprovoked,Guyana,Demerara County,Off the Demerara River ,Fishing,Charles Blair,M,Puncture wounds to left leg,N,Gleaner (Jamaica),9/6/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.08.08-Blair.pdf +1023,1923.07.02.R,02-Jul-1923,1923,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving for pearl,aboriginal male,M,non-fatal,N,Brisbane Courer,7/2/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.07.02-Mildred-Diver.pdf +1022,1923.06.16,16-Jun-23,1923,Boating,Australia,New South Wales,Bellambi Reef,"After rowing skiff was holed by shark, he was attempting to swim ashore",J. Rigby,M,"FATAL, taken by shark. Two other men drowned, only 1 man survived",Y,V.M. Coppleson (1933); G. P. Whitley; V.M. Coppleson (1958),p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.16-Rigby.pdf +1021,1923.06.06,06-Jun-23,1923,Boating,Mexico,Vera Cruz,Outside Vera Cruz Harbor,Dismantling cable buoys of the cable ship All America,"boat, occupants; Carl Sjoistrom & 2 other crew",Unknown,"No injury to occupants, shark rammed boat",N,NY Herald Tribune,undated clipping,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.06-AllAmerica.pdf +1020,1923.05.23.R,23-May-1923,1923,Unprovoked,Australia,Western Australia,"Southgates, near Geraldton",Wading,Percy Evensen,M,Minor puncture wounds to foot,N,The West Australian,5/23/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.23.R-Evensen.pdf +1019,1923.05.22,22-May-23,1923,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving?,Keizo Masoyo,M,FATAL,Y,Northern Miner,5/27/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.22-Masoyo.pdf +1018,1923.03.18,18-Mar-23,1923,Unprovoked,Australia,Queensland,"Ross River, Townsville",Diving,Jellannie Solomon,M,Lacerations to right thigh and knee,N,Northern Miner,3/19/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.03.18-Solomon.pdf +1017,1923.02.00,Feb-23,1923,Unprovoked,Usa,Puerto Rico,San Juan,Swimming ,Puerto Rican,M,"Right calf, right side of abdomen & left wrist & hand bitten",N,V.M. Coppleson (1958),pp.48 & 265,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.02.00.a-PuertoRican.pdf +1016,1923.01.27.b,27-Jan-23,1923,Invalid,Australia,Western Australia,Bunbury,Unknown,John Hayes,M,Death may have been due to drowning,UNKNOWN,The Register,2/3/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.b-Hayes.pdf +1015,1923.01.27.a,27-Jan-23,1923,Unprovoked,Australia,Western Australia,"In Swan River at Freshwater Bay, Claremont, 5 miles from river mouth",Swimming,Charles Topsail Robertson,M,"FATAL, back of thigh bitten ",Y,V.M. Coppleson.W1.(1933) V.M. Coppleson (1958),pp.111 & 241; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.a-Robertson.pdf +1014,1923.01.13,14-Jan-23,1923,Invalid,Cuba,Caribbean Sea,20 miles from Havana,seaplane Columbus ditched in the sea,"Edwin F. Atkins, Jr.",M,"Although this incident is listed elsewhere as a shark attack, the account of the disaster suggests the 4 who perished probably drowned. Five people survived",Y,W.E.,pp.152-156; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.13-seaplaneColumbus.pdf +1013,1923.00.00.c,1923,1923,Boating,Usa,New Jersey,"Sea Bright, Monmouth County",Fishing,"boat, occupant: Richard Rodney",M,No injury to occupant Shark struck boat,N,NY Herald Tribune,8/27/1931; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.c - NJ fisherman.pdf +1012,1923.00.00.b,1923-1924,1923,Unprovoked,Philippines, Manila Bay,Fort Drum,Unknown,male,M,"FATAL, abdomen severely bitten. Airplane summoned from Corregidor & injured man was lashed to wing, but he died ",Y,Pinchot in To the South Seas,citing M. Craig who reports 6 incidents in 1923-24 including this one,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.b-FortDrum.pdf +1011,1923.00.00.a,1923,1923,Provoked,Usa,New Jersey,Ocean City (offshore),Hoisting shark aboard fishing boat,male,M,Shark's tail broke his leg. PROVOKED INCIDENT,N,Ref in New York Herald Tribune,8/23/1960; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf +1010,1923.00.00.a,1923,1922,Provoked,Usa,New Jersey,Ocean City (offshore),Hoisting shark aboard fishing boat,male,M,Shark's tail broke his leg. PROVOKED INCIDENT,N,Ref in New York Herald Tribune,8/23/1960; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf +1009,1922.12.14,14-Dec-22,1922,Unprovoked,Usa,Puerto Rico,San Juan,Bathing,Katherine W. Bourne,F,"FATAL, hip & thigh bitten with tissue removed, including bone ",Y,L.A. Times,12/17/1922; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.14-KatherineBourne.pdf +1008,1922.12.05,05-Dec-22,1922,Unprovoked,Australia,Queensland,Pialba Beach near Maryborough,Bathing in 3' to 4' of water,Alfred Gassman,M,"FATAL, severe injuries to torso ",Y,Coppleson.Q4.(1933); V.M. Coppleson (1958),pp.92 & 237 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.05-Gassman.pdf +1007,1922.09.29,29-Sep-22,1922,Unprovoked,Barbados,Lucy,Pie Corner,Fishing,Master Hurley,M,FATAL,Y,Kingston Gleaner,10/17/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.29-Barbados.pdf +1006,1922.10.29,29-Oct-22,1922,Invalid,Australia,New South Wales,"Botany Bay, Sydney",Sailing,H.R.W.,M,"FATAL, but shark involvement prior to death unconfirmed",UNKNOWN,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.10.29-HRW.pdf +1005,1922.09.28,28-Sep-22,1922,Unprovoked,Usa,Hawaii,"Keawanui, Kamalo, Moloka'i","Freediving, inspecting Kaunakakai wharf construction after blasting & dredging ","male, Territorial Surveyor",M,Survived,N,Honolulu Advertiser,8/19/1953; Tribune Herald (Hilo),http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.28-TerritorialSurveyor.pdf +1004,1922.09.26.R,26-Sep-1922,1922,Unprovoked,England,East Yorkshire,Hornsea,Swimming ,Mr.P. H. Lee,M,FATAL,Y,Western Argus,9/26/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.26.R-Lee.pdf +1003,1922.09.21.R,21-Sep-1922,1922,Boating,Usa,Massachusetts,Nahant,Fishing,"boat, occupants: Mr. Goslin & 4 passengers",Unknown,"No injury to occupants, shark splintered stern",N,L. Schultz & M. Malin,p.554,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.21-GoslinBoat.pdf +1002,1922.07.19,19-Jul-22,1922,Unprovoked,Usa,Florida,"Pablo Beach, Jacksonville, Duval County",Unknown,Francis L'Engle,M,Leg bitten,N,Palm Beach Post,7/19/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.07.19-L'Engle.pdf +1001,1922.06.17,17-Jun-22,1922,Unprovoked,Usa,Florida,"Municipal Pier, St. Petersburg, Tampa bay",Floating,Dorothy MacLatchie,F,"FATAL, thigh bitten",Y,V.M. Coppleson,(1958) pp.155 & 252,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.06.17-MacLatchie.pdf +1000,1922.05.24,24-May-22,1922,Unprovoked,Jamaica,Westmoreland Parish,Savanna-la-Mar,Swimming,Sausse Leon,M,"FATAL, arm severed, thigh severely bitten ",Y,Daily Gleaner,5/25/1922; H.E. Lloyd,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.24-Leon.pdf +999,1922.05.06,06-May-22,1922,Unprovoked,South africa,Western Cape Province,"Simon’s Town, False Bay",Swimming,Edward G. Pells,M,Abdomen & thigh bitten,N,M. Levine,GSAF; E.Wilson,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.06-Pells.pdf +998,1922.04.26,26-Apr-22,1922,Unprovoked,Australia,New South Wales,Hawkesbury River,Swimming,William A. Munro,M,FATAL,Y,Argus,4/29/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.04.26-Munro.pdf +997,1922.03.20,20-Mar-22,1922,Unprovoked,Jamaica,Kingston Parish,Kingston Harbor,Fishing,Unknown,M,Survived,N,Daily Gleaner,3/21/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.20-Jamaica.pdf +996,1922.03.13,13-Mar-22,1922,Unprovoked,Jamaica,Kingston Parish,Kingston Harbor,Standing,Adeline Lopez,F,"FATAL, right leg severed at thigh ",Y,Daily Gleaner,3/21/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.13-Lopez.pdf +995,1922.03.02,02-Mar-22,1922,Unprovoked,Australia,New South Wales,Coogee,Bathing in knee-deep water,Mervyn Gannon,M,"FATAL, right hand severed, lacerations on left thigh & left hand, died in hospital of gas gangrene",Y,V.M. Coppleson.N5. (1933); V.M. Coppleson (1958),pp.63 & 230; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.02-Gannon.pdf +994,1922.02.22.R,02-Feb-1922,1922,Invalid,Australia,New South Wales,"Bilgola Beach, Sydney",Swimming,Norman Whiteley,M,"Disappeared whiile swimming alone, body parts recovered, but shark involvement prior to death unconfirmed",Y,Cairns Post,2/33/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.22.R-Whiteley.pdf +993,1922.02.04,04-Feb-22,1922,Unprovoked,Australia,New South Wales,Coogee ,Swimming,Milton Coughlan,M,"FATAL, both arms & shoulder bitten",Y,V.M. Coppleson.N.4. (1933); V.M. Coppleson (1958),pp.62 & 230; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.04-Coughlan.pdf +992,1922.01.28.R,28-Jan-1922,1922,Unprovoked,Iraq,Unknown,Shatt-al Arab River,Bathing,Haroun-al-Raschid,M,FATAL,Y,The Queenslander,1/28/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.28.R-Haroun-al-Raschid.pdf +991,1922.01.15,15-Jan-22,1922,Unprovoked,Australia,Queensland,"Ross River, Townsville",Swimming ,Robert Milroy,M,FATAL,Y,V.M. Coppleson.Q5. (1933); V.M. Coppleson (1958),pp. 90 & 229,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.15-Milroy.pdf +990,1922.01.13,13-Jan-22,1922,Unprovoked,Australia,New South Wales,"Stockton Beach, Newcastle",Standing,Alwyn Bevan,M,Small laceration on left thigh & swim costume torn,N,V.M. Coppleson.N15. (1933); V.M. Coppleson (1958),p.229,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.13-Bevan.pdf +989,1922.01.04,04-Jan-22,1922,Unprovoked,Australia,New South Wales,"Stockton Beach, Newcastle",Surfing,John Manning Rowe,M,"FATAL, disappeared, then his shark-bitten remains washed ashore ",Y,The Argus,1/9/1922; V.M. Coppleson (1933),http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.04-JManningRowe.pdf +988,1921.12.11,11-Dec-21,1921,Unprovoked,Australia,Queensland,Fitzroy River at Rockhampton,Swimming,Robert Murphy,M,Survived,N,The Queenslander,12/17/ 1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.12.11-Murphy.pdf +987,1921.11.27.b,27-Nov-21,1921,Unprovoked,Australia,Queensland,"Gay’s Corner, Bulimba Reach of Brisbane River",Fell from his father's back into the water,George Jack,M,"FATAL, disappeared, body not recovered",Y,V.M. Coppleson (1958),pp.92 & 237,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf +986,1921.11.27.a,27-Nov-21,1921,Unprovoked,Australia,Queensland,"Gay’s Corner, Bulimba Reach of Brisbane River","Wading to dinghy, carrying his son",Herbert Jack,M,"Right hip, buttock, elbow, arm & wrist bitten",N,V.M. Coppleson.Q3. (1933); V.M. Coppleson (1958),pp.92 & 237,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf +985,1921.11.15.R,15-Nov-1921,1921,Unprovoked,Fiji,Viti Levu Island,Rewa River,Swimming,Esau & his young daughter,Unknown,FATAL,Y,Richmond River Express,12/2/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.15.R-Fiji.pdf +984,1921.10.12,12-Oct-21,1921,Unprovoked,Australia,Queensland,Off Hinchinbrook Island,Diving for beche-de-mer ,aboriginal diver,M,Lacerations to right arm & chest,N,Brisbane Courier,10/15/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.12-Hinchinbrook-Island.pdf +983,1921.10.04,04-Oct-21,1921,Unprovoked,Australia,Queensland,Barrier Reef,Diving for beche-de-mer,Yoichi Schamok,M,"Left thigh bitten, FATAL",Y,Cairns Post,10/17/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.04-Schamok.pdf +982,1921.09.00,Sep-21,1921,Provoked,England,Dorset,Weymouth,Fishing,Roberts,M,Leg bitten by shark he was attempting to capture PROVOKED INCIDENT,N,Argus,10/8/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.09.00-Roberts.pdf +981,1921.08.29.R,29-Aug-1929,1921,Unprovoked,Australia,Torres Strait,Unknown,Unknown,Oku Hayadi,M,Lacerations to arm,N,The Register,8/29/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.29.R-Hayadi.pdf +980,1921.08.28,28-Aug-21,1921,Unprovoked,Philippines,Luzon Island,"Fort Frank, Manila Bay",Swimming,"Marcellus T. Abernathy, a US soldier in the 9th Coast Artillery",M,"FATAL, abdomen severely lacerated, taken by seaplane to hospital in Corrigedor but died ",Y,New York Times,9/1/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.28-Abernathy.pdf +979,1921.01.11.R,11-Jan-1921,1921,Invalid,Philippines,"Cavite Province, Luzon",Unknown,Unknown,Unknown,Unknown,Buttons & shoes found in shark caught in fish trap,UNKNOWN,Reno Evening Gazette,1/11/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.01.11.R-Cavite.pdf +978,1920.11.29,29-Nov-20,1920,Unprovoked,Australia,Western Australia,Bunbury,Wading,Reginald Gibbs,M,Lacerations to leg & hand,N,Geraldton Guardian,12/4/1920 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.29-Gibbs.pdf +977,1921.08.22,22-Aug-21,1921,Unprovoked,Haiti,Cape Haitien,Marine Dock,Dived into a school of baitfish,"E.C.P, a U.S. Marine",M,"FATAL, large wound on thigh",Y,V.M. Coppleson (1958),p.259; Baker & Rose,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.22-ECP.pdf +976,1920.11.22,22-Nov-20,1920,Unprovoked,Australia,Western Australia,Cottesloe Beach,Standing,T.F. Davies,M,"Minor injuries to leg, hand & fingers",N,Daily News,11/24/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.22-Davies.pdf +975,1920.11.04,04-Nov-20,1920,Sea Disaster,Philippines,Leyte,Unknown,The coastwise steamer San Basilio capsized in a typhoon,male,Unknown,FATAL,Y,Oakland Tribune,11/11/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.04-Philippines.pdf +974,1920.07.14,14-Jul-20,1920,Invalid,Usa,New York,"Woodcliff Channel, Freeport, Long Island",Swimming ,Thomas McCann,M,Thought to have been taken by a shark. Body was not recovered,Y,V.M. Coppleson (1958),p.151 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.14-McCann.pdf +973,1920.07.05.R,06-Jul-1920,1920,Unprovoked,Australia,Torres Strait,200 miles from MacKay,Diving for trochus shell,Japanese diver,M,Severe lacerations to right shoulder & arm,N,Brisbane Courier,7/6/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.05.R-Japanese-DIver.pdf +972,1920.06.29,29-Jun-20,1920,Unprovoked,Usa,Florida,"Englewood Beach, Charlotte County",Swimming ,Hayward Green,M,Knee & thigh bitten,N,E. Clark,,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.29-Green.pdf +971,1920.06.27,27-Jun-20,1920,Provoked,Canada,Halifax,"Slaunwhite's Ledge, Hubbard Cove",Harpooned shark,occupants: John Chandler & Walter Winters,Unknown,"No injury to occupants, but shark struck boat with such force that Chandler was flung overboard. PROVOKED INCIDENT",N,H. Piers (1933),,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.27-Hubbard.pdf +970,1920.03.08,08-Mar-20,1920,Unprovoked,Australia,Queensland,"Between Bay Rock & Magnetic Island, Cleveland Bay","Boat capsized, swimming to shore",Alfred Burgess,M,"Tossed in air by shark, sustained abrasions",N,H. Miller (1920); V.M. Coppleson Q.2.(1933); V.M. Coppleson (1958),pp.43,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.03.08-Burgess.pdf +969,1920.01.24.R.b,24-Jan-1920,1920,Unprovoked,Australia,Torres Strait,Unknown,Diving,male,M,Lacerations to foot,N,The Argus,1/24/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.b-TorresStrait-diver.pdf +968,1920.02.03,03-Feb-20,1920,Unprovoked,South africa,Eastern Cape Province,Zwartkops River,Floating face down,Thea Toft,F,Abdomen bitten,N,T. Toft,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.02.03-Toft.pdf +967,1920.01.24.R.a,24-Jan-1920,1920,Unprovoked,Australia,Torres Strait,Arlington Reef,Free diving,Japanese diver,M,FATAL,Y,The Argus,1/24/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.a-JapaneseDiver.pdf +966,1920.01.15,15-Jan-20,1920,Unprovoked,Australia,New South Wales,"Throsby Creek, Newcastle",Swimming ,David Miller,M,Leg bitten. FATAL,Y,V.M. Coppleson.N14. (1933); V.M. Coppleson (1958),p.229,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.15-Miller.pdf +965,1920.00.00.b,1920s,1920,Unprovoked,Jamaica,Westmoreland Parish,Savanna-la-Mar,Jumped overboard,sailor,M,FATAL,Y,Daily Gleaner,4/14/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.c-Jamaica.pdf +964,1920.00.00.b,1920,1920,Unprovoked,New zealand,North Island,"Stanley Bay, Auckland Harbor",Unknown,female,F,"""Recovered""",N,V.M. Coppleson (1958),p.262,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.b-StanleyBay.pdf +963,1920.00.00.a,1920,1920,Unprovoked,South africa,KwaZulu-Natal,Tugela River,Splashing,Zulu male,M,Thigh & buttocks bitten. Not known if he survived.,N,J.L.B. Smith,,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.a-TugelaRiver.pdf +962,1919.12.30.R,30-Dec-1919,1919,Unprovoked,Australia,Queensland,Brible Island,Swimming,John Brothy,M,Lacerations to left leg,N,Brisbane Courier,12/30/1919,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.30.R-Brothy.pdf +961,1919.12.07,07-Dec-19,1919,Unprovoked,Australia,New South Wales,"Pelican Island, Macleay River",Swimming,James Ridley,M,"FATAL, left leg & calf bitten, leg surgically amputated ",Y,Sydney Morning Herald,12/9/1919; V.M. Coppleson.N.20.(1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.07-Ridley.pdf +960,1919.11.18,18-Nov-19,1919,Unprovoked,Australia,Northern Territory,Darwin,Sitting in a boat,a sailor,M,Lacerations to buttocks,N,G.P. Whitley; V.M. Coppleson (1933) ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.11.18-sailor.pdf +959,1919.09.12,12-Sep-19,1919,Unprovoked,Costa rica,Turtle Bogue,Where Colorado River enters the sea,Small vessel with 13 men on board capsized crossing the bar and 6 men drowned. The 7 survivors were swimming to shore,6 males,M,"FATAL, 6 men were taken by sharks as they neared the beach, 1 survived",Y,Pinchot,p.85-86,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.09.12-CostaRica.pdf +958,1919.08.10,10-Aug-19,1919,Unprovoked,Usa,Florida,"Gadsden Point, Tampa Bay",Swimming,George (or Edward) Eaton,M,Laceration to left thigh,N,Miami Metropolis,8/14/1919,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.08.10-Eaton.pdf +957,1919.05.29,29-May-19,1919,Unprovoked,Usa,South Carolina,"James Island Sound, Charleston","""Swimming vigorously""",W.E. Davis,M,Left foot bitten & abraded,N,E. M. Burton,,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.05.29-WE-Davis.pdf +956,1919.04.06,06-Apr-19,1919,Unprovoked,Usa,Florida,"Florida Keys 25ºN,82ºW",Knocked into the water,"fisherman, a companion of J. Rose & W. Koegler",M,FATAL,Y,Gazette (Pittsburgh),no date,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.04.06-Rose-Koegler.pdf +955,1919.03.16,16-Mar-19,1919,Invalid,Australia,New South Wales,Sydney Harbor,Cutter capsized,5 cadets from the Naval training ship Tingara,M,Shark involvement not confirmed,UNKNOWN,The Mercury,3/18/1919,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.03.16-Cadets.pdf +954,1919.01.17,17-Jan-19,1919,Unprovoked,Australia,New South Wales,Newcastle Beach,Swimming,Douglas Arkell,M,"Multiple injuries, left leg surgically amputated at knee",N,V.M. Coppleson.N13. (1933); V.M. Coppleson (1958),p.76 & 229,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.17-Arkell.pdf +953,1919.01.15,15-Jan-19,1919,Unprovoked,New zealand,South Island,"Tahuna Beach, Nelson",Swimming,female,F,Leg bitten,N,Marlborough Express,1/16/1919,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.15-Tahuna-Beach.pdf +952,1919.01.09,09-Jan-19,1919,Unprovoked,Australia,New South Wales,"Sirius Cove, Sydney Harbor",Wading,Richard Simpson,M,"FATAL, right thigh bitten ",Y,T. Peake,GSAF; V.M. Coppleson.N1.(1933); V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.09-Simpson.pdf +951,1919.01.05,05-Jan-19,1919,Unprovoked,Australia,Queensland,"Ross River, Townsville",Wading (shrimping),Jack Hoey,M,"FATAL, thigh bitten, leg amputated ",Y,V.M. Coppleson.Q1.(1933); V.M. Coppleson (1958),pp.90 & 237,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.05-Hoey.pdf +950,1900.00.00.R,to have taken place in 1919,1919,Boating,Italy,Unknown,Savona,Fishing,Unknown,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00.R-Savona.pdf +949,1919.00.00,1919,1919,Unprovoked,Usa,Florida,"Near Panama City, Bay County",Swimming,adult female (Mrs. Avery?),F,Leg severed,N,R. F. Hutton; T. Helm,p.219; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00-MrsAvery.pdf +948,1918.11.00.b,Nov-18,1918,Unprovoked,Usa,Hawaii,Papaikou plantation ,Fishing,Tadaichi Mayamura,M,FATAL,Y,Ogden Examiner,12/15/1918,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.b-Mayamura.pdf +947,1918.11.00.a,Nov-18,1918,Sea Disaster,San domingo,60 miles north of San Domingo in the West Indies,Muchoir Banks,Steamer Una wrecked with 75 laborers onboard. Survivors took to rafts & lifeboats.,males,M,"FATAL, ""men snatched from rafts by sharks"" ",Y,V.M. Coppleson (1958),p.194; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.a-Una.pdf +946,1918.09.19,19-Sep-18,1918,Unprovoked,Australia,Queensland,Townsville,Bathing,Joseph Bartlett,M,FATAL,Y,Cairns Post,9/24/1918,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.09.19-Bartlett.pdf +945,1918.03.22,22-Mar-18,1918,Unprovoked,Australia,New South Wales,Newcastle,Surfing,Arthur Cook,M,"Severe laceration to arm, necessitating surgical amputation at the elbow",N,The Advertiser,3/25/1918,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.03.22-Cook.pdf +944,1918.00.00,1918,1918,Unprovoked,Australia,Queensland,Near Cairns,Diving,Iona Asai,M,Survived,N,A. Sharpe,p.109,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.00.00-Asai.pdf +943,1917.12.15,15-Dec-17,1917,Unprovoked,Australia,Western Australia,Port Hedland,Swimming,F.W. Dean,M,Lacerations to left leg,N,West Australian,12/17/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.12.15-Dean.pdf +942,1917.11.00,Nov-17,1917,Unprovoked,Mozambique,Maputo Province,Off Inhaca Island,Wreck of the tug Magellan,a South African sailor,M,FATAL,Y,C.J. McGuinness,,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.11.00-Magellan.pdf +941,1917.09.21,21-Sep-17,1917,Unprovoked,Usa,New Jersey,"Sea Bright, Monmouth County","Swimming, towing an empty barrel","Daniel Thompson, lifeguard",M,Left knee lacerated,N,V.M. Coppleson (1958),p.251 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.21-Thompson.pdf +940,1917.09.09,09-Sep-17,1917,Provoked,Usa,Hawaii,"Nanakuli, Oah’u",Stuffing a shark into an automobile,Carl Nakuina,M,Arm severely lacerated by shark that had been hooked and shot PROVOKED INCIDENT,N,Ogden Standard,9/11/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.09-Nakuina.pdf +939,1917.09.00,Sep-17,1917,Unprovoked,Panama,Colon,Unknown,Swimming to shore from the Medic,male,M,FATAL,Y,Morwell Advertiser & Gazette,1/18/1918,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.00-Panama.pdf +938,1917.07.18,18-Jul-17,1917,Unprovoked,Usa,Florida,Florida Keys ,Diving,William Sinker,M,FATAL,Y,Washington Post,7/20/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.18-WmSinker.pdf +937,1917.07.15,15-Jul-17,1917,Sea Disaster,Ireland,Off Ireland,82 miles from Fastnet,Ship Mariston torpedoed & sunk,Unknown,M,"FATAL, only 1 survivor",Y,Western Mail, 11/9/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.15-Mariston-ship.pdf +936,1917.06.03,03-Jun-17,1917,Unprovoked,Usa,South Carolina,Calibogue Sound,Swimming beside launch,"Walter J. Pierpont, Jr.",M,Right arm bitten,N,C. Creswell,GSAF; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1917.06.03-Pierpont.pdf +935,1917.05.31,31-May-17,1917,Unprovoked,Philippines,Luzon Island,Canacao Bay,Swimming,"E.E., water tender of the U.S.S. Dale",M,"FATAL, abdominal cavity removed ",Y,P.F. Prioleau; W.E.,p.195; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.31-EE.pdf +934,1917.05.05,05-May-1917,1917,Unprovoked,Unknown,Unknown,Unknown,Diving for pearls,a young Arab,M,Torso bitten,N,Denton Journal,5/5/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.05-Arab.pdf +933,1917.00.00,1917,1917,Unprovoked,Libya,Mediterranean Sea,Tripoli,Diving for sponges,male,M,"Bitten by shark, but repelled it with his 'skandalopetra' ",N,F. Warn (see Bitter Sea in bibliography),,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.00.00-SpongeDiver.pdf +932,1916.12.30,30-Dec-16,1916,Unprovoked,Australia,Queensland,"Yeppoon, near Ross Creek",Bathing,John Ford,M,Right calf bitten,N,Morning Bulletin,1/1/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.30-Ford.pdf +931,1916.12.08.b,08-Dec-16,1916,Unprovoked,Australia,New South Wales,"Seven Shillings Beach, Middle Harbor, Sydney (Estuary)",Taking wife to beach & about 1 m from the shore,Walter C. German,M,"FATAL, right arm severed, chest punctured ",Y,G.P. Whitley,ref. Dr. Cleland,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf +930,1916.12.08.a,08-Dec-16,1916,Unprovoked,Australia,New South Wales,"Seven Shillings Beach, Middle Harbor, Sydney (Estuary)",Swimming 10 m from shore,Mrs Walter German,F,Leg nipped by shark,N,A. Sharpe,p.71,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf +929,1916.11.15,15-Nov-16,1916,Provoked,Panama,Unknown,Panama Canal,Unknown,Clarence Ware,M,"""Severely bitten""",N,Hartford Courant,11/16/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.15-ClarenceWare.pdf +928,1916.11.10,10-Nov-16,1916,Unprovoked,Australia,Queensland,Townsville,Swimming,Walter Gregson,M,FATAL,Y,Cairns Post,11/11/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.10-Gregson.pdf +927,1916.11.09,09-Nov-16,1916,Unprovoked,Australia,Queensland,"Kissing Point Camp, Townsville",Bathing,Robert Alexander Poultney,M,FATAL,Y,Brisbane Courier,11/10/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.09-Poultney.pdf +926,1916.10.11,11-Oct-16,1916,Provoked,Usa,Florida,"Sewell’s Point, near Palm Beach","Fishing, attempted to take a netted shark",J.L. Hanscomb,M,"FATAL, leg severely bitten, surgically amputated PROVOKED INCIDENT",Y,V.M. Coppleson (1958),p.251; R.F. Hutton; NY Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.10.11-Hanscom.pdf +925,1916.08.24, 24-Aug-1916,1916,Unprovoked,Usa,Louisiana,Grand Lake,Netting shrimp,William Lerey,M,Lower left leg severely bitten & became septic. Not known if he survived,N,The News,8/15/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.08.24-Lerey.pdf +924,1916.07.26,26-Jul-16,1916,Unprovoked,Usa,North Carolina,"Atlantic, near New Bern, Craven County",Fishing,William Nelson,M,Arm severely lacerated,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.26-Nelson.pdf +923,1916.07.13.b,13-Jul-16,1916,Invalid,Usa,New York,"Sheepshead Bay, Brooklyn",Swimming,Gertude Hoffman,F,"No attack, no injury",N,New York Times,7/14/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.b-Hoffman.pdf +922,1916.07.13,13-Jul-16,1916,Unprovoked,Usa,New York,"Sheepshead Bay, Brooklyn",Swimming,Thomas Richards,M,Ankle bruised,N,NY Tribune,7/14/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.a-Richards.pdf +921,1916.07.12.c,12-Jul-16,1916,Unprovoked,Usa,New Jersey,"In Matawan Creek, off NJ Clay Company brickyards at Cliffwood, Monmouth County, 9.5 miles from the sea, Monmouth County",Swimming,John Dunn,M,"Lower left leg bitten, surgically amputated",N,R. Fernicola,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.c-Dunn.pdf +920,1916.07.12.b,12-Jul-16,1916,Unprovoked,Usa,New Jersey,"Matawan Creek, 10 miles from the sea, Monmouth County",Swimming (recovering remains of Stilwell) ,Stanley Fisher,M,"FATAL, thigh bitten ",Y,R. Fernicola,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf +919,1916.07.12.a,12-Jul-16,1916,Unprovoked,Usa,New Jersey,"Matawan Creek, 10 miles from the sea, Monmouth County",Swimming,Lester Stillwell,M,"FATAL, legs & torso bitten ",Y,R. Fernicola,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf +918,1916.07.11,11-Jul-16,1916,Sea Disaster,Bahamas,Unknown,50 miles off Bahamas,S.S. Ramos foundered in a hurricane. Captain & 14 crew in water-logged lifeboats. ,Mr. Wichman,M,"FATAL. When the survivors were rescued next day they were clubbing sharks with oars. ""Sharks were so thick that it was difficult to row""",Y,NY Times,7/18/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.11-Wichman-Ramos.pdf +917,1916.07.08,08-Jul-16,1916,Unprovoked,Spain,Gran Canaria,Las Palmas,Diving,male,M,Survived,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.08-GrandCanary.pdf +916,1916.07.07,07-Jul-16,1916,Unprovoked,Philippines,Luzon Island,"Olongapo Harbor, Subic Bay",Bathing,a sailor from the U.S.S. Galveston,M,Right foot severed,N,The Sun,12/16/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.07-Sailor.pdf +915,1916.07.06,06-Jul-16,1916,Unprovoked,Usa,New Jersey,"Spring Lake, Monmouth County",Swimming,Charles Bruder,M,FATAL,Y,R. Fernicola,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.06-Bruder.pdf +914,1916.07.01,01-Jul-16,1916,Unprovoked,Usa,New Jersey,"Beach Haven, Ocean County",Swimming,Charles E. Vansant,M,"FATAL, left leg bitten",Y,R. Fernicola,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.01-Vansant.pdf +913,1916.06.30,30-Jun-16,1916,Unprovoked,Usa,New Jersey,"Atlantic City, Atlantic County",Swimming,boy,M,Heel bitten,N,C. Phinizy,,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.30-AtlanticCity.pdf +912,1916.06.24.R,24-Jun-1916,1916,Unprovoked,Unknown,Unknown,Unknown,Jumped overboard from Norwegian steamship Venator,Victor Matheson,M,Presumed FATAL,Y,Washington Post,6/24/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.24.R-Matheson.pdf +911,1916.06.23,23-Jun-16,1916,Provoked,Usa,Florida,Unknown,Unknown,Adolph Crouse,M,Leg bitten by shark hooked shark PROVOKED INCIDENT,N,New York Times,6/29/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.23-Crouse.pdf +910,1916.04.25.R,25-Apr-1916,1916,Unprovoked,Australia,New South Wales,Manley Beach,Swimming,Thomas Harrington,M,FATAL,Y,Modesto Evening News,4/25/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.25.R-Harrington.pdf +909,1916.04.03,03-Apr-16,1916,Unprovoked,Australia,Victoria,Carrum,Clinging to overturned rowing boat,Monte Robinson & Andrew McNeill,M,FATAL,Y,Argus,3/5/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.03-Robinson-McNeill.pdf +908,1916.03.19,19-Mar-16,1916,Unprovoked,Australia,New South Wales,Curl Curl,Bathing,Alexander Robinson,M,Minor lacerations to heel,N,Argus,4/21/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.03.19-Robinson.pdf +907,1915.12.09.R,09-Dec-1915,1915,Unprovoked,Australia,Torres Strait, Thursday Island,Diving,A Japanese diver,M,"Arm severed, lacerations to thigh",N,Big Piney Examiner,12/9/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.12.09.R-JapaneseDiver.pdf +906,1915.11.10,10-Nov-15,1915,Unprovoked,Australia,Queensland,"Cabbage Tree Creek, Sandgate",Bathing,James Gleeson,M,Severe bite to arm,N,Argus,11/11/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.10-Gleeson.pdf +905,1915.11.08,08-Nov-14,1915,Unprovoked,Australia,New South Wales,Manly,Bathing,Albert Rebecchi,M,Severe lacerations to feet & ankles,N,Sydney Morning Herald,11/9/1915; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.08-Rebecchi.pdf +904,1915.08.03,03-Aug-15,1915,Unprovoked,Usa,Florida,"St. Augustine, St Johns County",Unknown,M.F. Turnipseed,M,Laceration to left leg,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.08.03-Turnipseed.pdf +903,1915.07.06.a.R,06-Jul-1915,1915,Unprovoked,Mexico,Tamaulipas,Tampico,Fishing,Captain Thaxton,M,FATAL,Y,Oakland Tribune,7/6/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.b.R-Thaxton.pdf +902,1915.07.06.a.R,06-Jul-1915,1915,Unprovoked,Mexico,Unknown,Santa Maria Bar,Wading,J.W. McDonald,M,FATAL,Y,Oakland Tribune,7/6/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.a.R-McDonald.pdf +901,1915.05.15.R,15-May-1915,1915,Invalid,Egypt,Unknown,Alexandria,Fell overboard,male,M,Shark involvement not confirmed,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.05.15.R-Alexandria.pdf +900,1915.03.29,29-Mar-15,1915,Unprovoked,Australia,Torres Strait,Near Thursday Island,Skin diving for trepang but at surface next to the boat,Hana,M,"Shoulder bitten. Hana, one of the rescuers, fended shark off with an oar, then shark bit oar in two",N,N. Bartlett,pp.234,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.03.29-Hana.pdf +899,1915.02.06,06-Feb-15,1915,Unprovoked,Australia,Queensland,Wynnum-Manley,Swimming,H. Stanton,M,Foot bitten,N,Brisbane Courier,2/8/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.02.06-Stanton.pdf +898,1915.01.13,13-Jan-15,1915,Invalid,New zealand,North Island,Otaki,Fishing,Henry Hodge & his son,M,Death may have been due to drowning,Y,The Mercury,1/14/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.13-Hodge.pdf +897,1915.01.01,01-Jan-15,1915,Unprovoked,Australia,New South Wales,"Sirius Cove, Sydney Harbor",Bathing,Warren Tooze,M,FATAL,Y,G.P. Whitley,citing Argus (Melbourne) 1/5/1915; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.01-Tooze.pdf +896,1915.00.00,Ca. 1915,1915,Invalid,Usa,Florida,"Soldier Key, Miami-Dade County",Unknown,Remains of male found in shark,M,"Fatal, drowning or scavenging",UNKNOWN,Fishing Gazette 1915,Vol. 32,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.00.00-HumanRemains.pdf +895,1914.12.04.R,04-Dec-1914,1914,Unprovoked,Australia,Queensland,Magnetic Island,Swimming,A. Steinstecke,M,Lacerations to right thigh and knee,N,Northern Miner,12/4/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.12.04.R-Steinstecke.pdf +894,1914.10.17,17-Oct-14,1914,Sea Disaster,Samoa,Apolima Strait,Opposite Apelima & Manona,Copra vessel with 19 on board was wrecked in a squall,female,F,Thigh bitten,N,Evening Post,12/2/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.10.17-Samoa.pdf +893,1914.09.26.R,26-Sep-1914,1914,Unprovoked,Jamaica,Kingston Parish,Port Royal,Fell overboard,"""a native boy""",M,FATAL,Y,Stevens Point Daily Journal,9/26/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.26.R-Jamaica.pdf +892,1914.09.09,09-Sep-14,1914,Unprovoked,Usa,Louisiana,Lake Pontchartrain,Swimming,Peter Kontspoulas,M,FATAL,Y,Washington Post,9/10/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.09-PeterKontspoulas.pdf +891,1914.07.15.R,15-Jul-1914,1914,Unprovoked,Croatia,Zadar County,Biograd na moru,Washing clothes,female,F,"No injury, shark grabbed clothes",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.15.R.pdf +890,1914.07.09.R,09-Jul-1914,1914,Provoked,Usa,Louisiana,New Orleans,Fishing,Lopez,M,PROVOKED INCIDENT Legs severed by shark entangled in his net,N,Lima Daily News,7/9/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.09.R-Lopez.pdf +889,1914.07.07,07-Jul-14,1914,Unprovoked,Croatia, Primorje-Gorski Kotar County,Rijeka,Unknown,male,M,"No injury, shark nudged raft and circled for 2 hrs.",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.07.pdf +888,1914.06.12,13-Jun-14,1914,Boating,Montenegro,Adriatic Sea,Between St. Stjepan and Budva,Fishing boat,Occupants: Ivan Angjus & Stevo Kentera,M,"No injury, shark bit paddle and stern of boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.13-Budva.pdf +887,1914.06.10,10-Jun-14,1914,Unprovoked,Australia,Victoria,Sandringham,Bathing,Mr. Croxford,M,FATAL,Y,Evening Post,6/11/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.10-Croxford.pdf +886,1914.05.31,31-May-14,1914,Sea Disaster,New caledonia,South Province,Noumea,Swimming ashore from swamped 13-ft boat,Mr. Child & a Kanaka,M,FATAL x 2,Y,The Mercury,6/23/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.31-Child-Kanaka.pdf +885,1914.05.14,14-May-14,1914,Provoked,Usa,Florida,"Boca Ciega Bay, Pinellas County",Fishing,Mrs. A.L. Cummings,F,PROVOKED INCIDENT Lacerations to right hand by hooked shark,N,Evening Independent,5/14/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.14-Cummings.pdf +884,1914.03.14.R,14-Mar-1914,1914,Invalid,Usa,Florida,"St. Augustine, St Johns County",Swimming,John B. Mooney,M,His remains were recovered from a shark 3 years after his disappearance - Probable drowning / scavenging,Y,Washington Post,3/14/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.14.R-Mooney.pdf +883,1914.03.03,03-Mar-14,1914,Unprovoked,Usa,Hawaii,"Honomu, Hawai'i",Washed into sea while picking opihi & attacked by 2 large sharks ,Okomoto,M,FATAL,Y,C.H. Townsend,,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.03-Okomoto.pdf +882,1914.02.09.R,09-Feb-1914,1914,Unprovoked,Australia,South Australia,Marion Bay,Wading,Mr. Hasell,M,Lacerations to foot,N,The Advertiser,2/10/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.09.R-Hasell.pdf +881,1914.02.03, 03-Feb-1914,1914,Unprovoked,Australia,New South Wales,Paramatta River,Canoeing,John Dabbs,M,Lacerations to arms,N,Oakland Tribune,3/241914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.03-Dabbs.pdf +880,1914.01.17.R,17-Jan-1914,1914,Unprovoked,Australia,Queensland,Brisbane,Wading,Mrs. Schmidt,F,Laceration to leg,N,The Queenslandert ,1/17/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.01.17.R-Schmidt.pdf +879,1914.00.00,1914,1914,Unprovoked,South africa,KwaZulu-Natal,Durban,Unknown,Indian female,F,No details,UNKNOWN,L. Green,South African Beachcomber,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.00.00-IndianWoman.pdf +878,1913.12.30.R,30-Dec-1913,1913,Provoked,Usa,Florida,"Palm Beach, Palm Beach County",Fishing for mackerel,"motor boat, occupants: Mr. & Mrs. Sidney M. Colgate and their three children, Bayard, Caroline and Margaret ",Unknown,No injury to occupants but hull splintered by harpooned shark PROVOKED INCIDENT,N,New Smyrna Daily News,1/2/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.30.R-Colgate Boat.pdf +877,1913.11.27,27-Nov-13,1913,Unprovoked,Nigeria,Lagos ,Lagos,Boat swamped,Gerald Arthur Edwin Denny,M,FATAL,Y,The Times (London),7/21/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.27-Denny.pdf +876,1913.11.21,21-Nov-13,1913,Unprovoked,Australia,Queensland,"Sandgate Jetty, Brisbane",Swimming,Henry Boucher,M,Calf severely bitten; leg surgically amputated,N,Sydney Morning Herald,11/24/1913 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.21-Boucher.pdf +875,1913.09.21,21-Sep-13,1913,Unprovoked,Usa,Florida,"West Palm Beach, Palm Beach County",Unknown,male,M,Major injuries but survived,N,V.M. Coppleson (1958),p.251; T. Helm,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.21-WestPalmBeach.pdf +874,1913.09.03,03-Sep-13,1913,Provoked,Croatia,Istria County,Pula,Unknown,Fishing,M,Badly bitten by a shark dragged onboard PROVOKED INCIDENT,N,C.Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.03-Croatia.pdf +873,1913.08.27.R,27-Aug-1913,1913,Invalid,Usa,New Jersey,"Lavalette, Ocean County",Unknown,Unknown,M,Man's leg recovered from 800-lb shark,UNKNOWN,Trenton Evening Times,8/27/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-Lavalette.pdf +872,1913.08.27.R,27-Aug-1913,1913,Invalid,Usa,New Jersey,"Spring Lake, Monmouth County",Unknown,Unknown,F,Female foot recovered from shark,UNKNOWN,Washington Post,8/27/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-FemaleFoot.pdf +871,1913.08.26.R,26-Aug-13,1913,Invalid,Italy,Trieste,Unknown,Unknown,Unknown,Unknown,Human casualties,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.26.R-Trieste.pdf +870,1913.07.12,12-Jul-13,1913,Unprovoked,Usa,South Carolina,Charleston,Unknown,soldier,M,FATAL,Y,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.07.12-soldier.pdf +869,1913.05.21,21-May-13,1913,Provoked,Usa,Florida,"John's Pass, Pinellas County",Fishing,George Roberts,M,"Forefinger of right hand bitten by a ""dead"" shark PROVOKED INCIDENT",N,Evening Independent,5/22/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.21-Roberts.pdf +868,1913.05.02,02-May-13,1913,Provoked,Australia,New South Wales,Unknown,Hauling in net,Richard Moss,M,Lacerations to thigh by netted shark PROVOKED INCIDENT,N,Northern Star,5/7/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.02-Moss.pdf +867,1913.03.27,27-Mar-13,1913,Unprovoked,Samoa,Upolu Island,Apia Harbor,Unknown,German sailor,M,Leg severed,N,Coppleson (1962),p.247,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.03.27-Samoa.pdf +866,1913.01.00,Jan-13,1913,Unprovoked,Australia,Torres Strait,Thursday Island,Diving,"Treacle, a Torres Strait islander",M,"Head, neck & left shoulder bitten",N,N. Bartlett,pp.232-233; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1913.01.00-Treacle.pdf +865,1913.00.00.d,1913,1913,Unprovoked,Reunion,Saint-Denis,Barachoise bridge,Swimming after his hat,male,M,FATAL,Y,H. Cornu,,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.d-ReunionIsland.pdf +864,1913.00.00.c,1913,1913,Unprovoked,Reunion,5aint-Denis,Barachois,Swimming,male,M,FATAL,Y,H. Cornu,,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.c-ReunionIsland.pdf +863,1913.00.00.a,1913,1913,Unprovoked,Australia,Victoria,Brighton,Unknown,"male, a ""youth""",M,Arm severed,N,V.M. Coppleson (1958),"p.110 [ Note: Coppleson had no concrete evidence about this incident; he heard only ""vague reports"".",http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.a-youth.pdf +862,1912.08.30,30-Aug-12,1912,Unprovoked,Usa,Georgia,"Tybee Island, Chatham County",Swimming,Edward Coffee,M,FATAL,Y,Atlanta Constitution,8/31/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.08.30-Coffee.pdf +861,1912.07.23,23-Jul-12,1912,Unprovoked,Usa,South Carolina,Sullivan's Island,Swimming,Corporal Kirkpatrick,M,Toes severed,N,Atlanta Constitution,7/25/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.23-Kirkpatrick.pdf +860,1912.07.06.R,06-Jul-1912,1912,Unprovoked,Solomon islands,Central Province,Savo,Bathing,male,M,FATAL,Y,Sydney Morning Herald,7/6/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.06.R-Savo.pdf +859,1912.05.04,04-May-12,1912,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,arm recovered from hooked shark,M,Unknown,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.05.04-arm.pdf +858,1912.03.18,18-Mar-12,1912,Unprovoked,New zealand,North Island,Takapuna,Swimming,male,M,"""Slight laceration to leg""",N,Evening Post,3/20/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.03.18-Takapuna.pdf +857,1912.02.22,22-Feb-12,1912,Provoked,Australia,Western Australia,Bunbury,Hard hat diving,Mr. Swanson,M,"No injury, shark nipped diving suit after he prodded the shark PROVOKED INCIDENT ",N,Western Argus,2/27/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.22-Swanson.pdf +856,1912.02.19,19-Feb-12,1912,Unprovoked,Australia,New South Wales,Coogee,Swimming,Fred Wort,M,Left calf & heel bitten,N,Argus (Melbourne) 2/20/1912,p.6; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.19-Wort.pdf +855,1912.02.03,03-Feb-12,1912,Unprovoked,New caledonia,South Province,Noumea,Swimming,Raoul Gillies,M,Left shoulder & both legs bitten,N,Northern Star,3/16/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.03-Gillies.pdf +854,1912.01.26,26-Jan-12,1912,Unprovoked,Australia,New South Wales,"Fig Tree Bridge, Lane Cove River, near Sydney ",Swimming,James Edward Morgan,M,FATAL,Y,Argus (Melbourne) 1/27,28,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.26-Morgan.pdf +853,1912.01.13.R,13-Jan-1912,1912,Unprovoked,Fiji,Viti Levu group,Beqa,Washed overboard,Unknown,M,FATAL,Y,Clarence & Richmond Examiner,1/13/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.13.R-Fiji.pdf +852,1912.01.06,06-Jan-12,1912,Unprovoked,Australia,New South Wales,Sydney Harbor,Unknown,male,M,Thigh & lower abdomen severely bitten,N, V.M. Coppleson (1933),page 450,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.06-Sydney.pdf +851,1912.01.01,01-Jan-12,1912,Unprovoked,Australia,Queensland,Ross Creek,Bathing,Samuel Tristing,M,FATAL,Y,Argus,1/2/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.01-Tristing.pdf +850,1912.00.00,1912,1912,Unprovoked,Spain,Balearics,Isla Cabrera,Fell into the water,the governor of Cabrera,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.00.00-Isla-Cabrera-Balearics.pdf +849,1911.11.08,08-Nov-11,1911,Invalid,Usa,Florida,"Pensacola Bay, Escambia County",Unknown,Jules Antoine,M,"Cause of death undetermined. 3.6 m [11'9""] shark seen carrying body. Next day, shark was killed & Antoine's entire body was found in its gut.",Y,The Sun,7/13/1913; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.11.08-Antonine.pdf +848,1911.10.26,26-Oct-11,1911,Unprovoked,Usa,South Carolina,Off Charleston,Fell overboard from steamship Rio Grande,George Spencer,M,FATAL,Y,Fresno Bee,10/31/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.26-Spencer.pdf +847,1911.10.25,25-Oct-11,1911,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving,Toby,M,Calves bitten,N,Cairns Post,11/2/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.25-Toby.pdf +846,1911.09.23,23-Sep-11,1911,Unprovoked,Usa,Texas,Galveston Ship Channel,Jumped overboard to rescue companion,"John Blomquist, a dredgerman",M,FATAL,Y,The Sun,7/13/1913; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.23-Blomquist.pdf +845,1911.09.20,20-Sep-11,1911,Unprovoked,Usa,Florida,"Pensacola Bay, Escambia County",Fell overboard & swimming,"Thomas Ashe, a ship’s pilot",M,FATAL,Y,The Sun,7/13/1913; Washington Post,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.20-Ashe.pdf +844,1911.09.17,17-Sep-11,1911,Unprovoked,Usa,Florida,"Pablo Beach, Jacksonville, Duval County",Bathing,Harold C. Rood,M,Left arm & thigh bitten,N,Sun,7/13/1913; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.17-HCRood.pdf +843,1911.07.31.R,31-Jul-1911,1911,Unprovoked,Spain,Málaga ,Ceuta,Bathing,a soldier,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.31.R-Ceuta.pdf +842,1911.07.16.R,16-Jul-1911,1911,Provoked,Usa,Delaware,Delaware Lightship,Fishing,Martin Berg,M,"Hooked shark bit his leg, knee to ankle PROVOKED INCIDENT",N,Washington Post,7/16/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.16.R-Berg.pdf +841,1911.05.09,09-May-11,1911,Unprovoked,South africa,Western Cape Province,Victoria Bay,Bathing,James May,M,"FATAL, partial remains recovered",Y,Cape Mercantile Advertiser,5/16/1911; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.09-JamesMay.pdf +840,1911.05.01.R,01-May-1911,1911,Provoked,Usa,Texas,"Rockport, Aransas County",Fishing,Mateo Zapeda,M,Bitten on left leg by hooked shark PROVOKED INCIDENT,N,Daily Advocate,5/1/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01.R-Zepada.pdf +839,1911.05.01,01-May-11,1911,Unprovoked,South africa,Western Cape Province,Victoria Bay,Swimming,James Jantjes,M,FATAL,Y,Cape Mercantile Advertiser,5/2/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01-Jantjies.pdf +838,1911.04.08.R,08-Apr-1911,1911,Boating,New zealand,Chatham Islands,Unknown,Fishing,2 fishermen,Unknown,"No injury to occupants, shark bit boat",N,Grey River Argus,4/8/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.04.08.R-ChathamIslandBoat.pdf +837,1911.03.29.R,29-Mar-1911,1911,Unprovoked,Australia,Torres Strait,Thursday Island,Swimming,male,M,FATAL,Y,Northern Star,3/29/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.03.29.R-ThursdayIsland.pdf +836,1911.01.04,04-Jan-11,1911,Sea Disaster,Australia,Western Australia,Off Legendre Island,3-masted steel barque Glenbank foundered during a cyclone,Anti Ketola,M,Minor injuries,N,Washington Post,1/26/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.01.04-Katola.pdf +835,1911.00.00.b,1911,1911,Unprovoked,Usa,Texas,"Texas City, Galveston",Swimming,a sailor,M,Minor injury to feet,N,D.G. McComb,,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.b-TexasCity.pdf +834,1911.00.00.a,Ca. 1911,1911,Unprovoked,New zealand,North Island,"Manukau Harbor, 6 miles south of Auckland",Fishing,male,M,FATAL,Y,H.C. Chapman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.a-Manukau Harbor.pdf +833,1910.12.25.R,25-Dec-1910,1910,Invalid,Croatia, Primorje-Gorski Kotar County,Rijeka,Unknown,male,M,FATAL?,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.15.R-Rijeka.pdf +832,1910.12.23.R,23-Dec-1910,1910,Sea Disaster,Australia,Western Australia,Fremantle,Shipwrecked pearling schooner,Theodore Anderson’s captain & rest of crew taken by sharks,M,FATAL,Y,Iowa City Citizen,12/23/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.23.R-Anderson.pdf +831,1910.11.28,28-Nov-10,1910,Provoked,North atlantic ocean,Georges Bank,Unknown,Fishing,Tham Key,M,Right hand severely bitten by netted shark PROVOKED INCIDENT,N,NY Times,11/30/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.28-Key.pdf +830,1910.11.24,24-Nov-10,1910,Unprovoked,Australia,Queensland,Mackay,Bathing,Cecil Smith,M,Foot bitten,N,The Advertiser,11/25/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.24-Smith.pdf +829,1910.06.25.R,25-Jun-1910,1910,Unprovoked,Mexico,Unknown,LaBarra,Swimming,H. Gebler,M,Leg bitten,N,Indiana Evening Gazette,9/25/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.25.R-Gebler.pdf +828,1910.06.08.R,08-Jun-1910,1910,Sea Disaster,Mozambique,Zambesi River,Portuguese territory,"Steamer Durao struck rock & filled, boats capsized, passengers & crew tried to swim to shore",Unknown,Unknown,"FATAL, 3 passengers & 14 crew taken by sharks, captain, 1 passenger & 2 crew survived",Y,D. Davies,,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.08.R-Durao.pdf +827,1910.05.16.R,16-May-1910,1910,Invalid,Usa,Alabama,"Off Fort Gaines, Dauphin Island, Mobile County","Unknown, their unoccupied yawlboat was recovered","William Olsen, William Peterson, Albert Thomas & R. Zekoski",M,Presumed drowned & bodies taken by sharks,N,Atlanta Constitution,5/17/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.05.16.R-yawlboat.pdf +826,1910.03.31,31-Mar-10,1910,Unprovoked,Panama,Colón Province,Cristobal,Fell overboard from USS cruiser Tacoma,"Samuel Barnes, a Marine",M,FATAL,Y,The Ogden Standard,4/13/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.31-Barnes.pdf +825,1910.03.08,08-Mar-10,1910,Unprovoked,New zealand,North Island,"Waikanae Beach, Gisborne",Swimming,H. McGregor,M,Lacerations to foot,N,Poverty Bay Herald,3/9/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.08-McGregor.pdf +824,1910.03.00,Mar-10,1910,Invalid,Usa,Hawaii,"Pearl Harbor, O'ahu","Hard hat diving, laying some charge of powder",Martin Lund,M,No injury,N,The Sun,4/3/1910; Authenticity questioned by G.H. Balazs in J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.00-Lund.pdf +823,1910.02.16, 16-Feb-1910,1910,Unprovoked,Australia,Western Australia,Bunbury,Surf bathing,George Cridland,M,"Shoulder, back & leg bitten",N,Western Mail,2/26/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.02.16-Cridland.pdf +822,1910.01.26,26-Jan-10,1910,Unprovoked,Australia,New South Wales,Newcastle Harbor,Unknown,Alfred Victor Clulow,M,FATAL,Y,V.M. Coppleson (1962),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.01.26-Clulow.pdf +821,1910.00.00.b,1910,1910,Invalid,Usa,Hawaii,"Hilo, Hawai'i","Fishing, thrown into water by heavy sea, clinging to rocks at the water line",male,M,"Body bitten by shark/s, but death may have been due to drowning",Y,C.H. Townsend; Authenticity questioned by G.H. Balazs in J. Borg,p.70,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.b-Hilo.pdf +820,1910.00.00.a,1910,1910,Unprovoked,Philippines,Luzon Island,"Polinao Point, Manila",Swimming,Lieut. James H. Stewart,M,"Calf removed, not known if he survived ",UNKNOWN,V.M. Coppleson (1958),p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.a-Stewart.pdf +819,1909.12.26.R,26-Nov-1909,1909,Unprovoked,Usa,Florida,"16 miles north of Fort Pierce Inlet, Indian River County ",Unknown,Herman Hovelsrud ,M,Severe lacerations to arm,N,Washington Post,12/26/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.26.R-Hovelsrud.pdf +818,1909.12.15.R,15-Dec-1909,1909,Unprovoked,Australia,New South Wales,20 miles off Sydney,Fell overboard,Mr. Witt,M,FATAL,Y,Star,12/15/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.15.R-Witt.pdf +817,1909.12.05,05-Dec-09,1909,Provoked,Australia,New South Wales,Bondi,Fishing,male,M,3 fingers bitten by hooked shark PROVOKED INCIDENT,N,The Advertiser,12/9/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.05-Fisherman.pdf +816,1909.11.14,14-Nov-1909 to 19-Nov-1909,1909,Sea Disaster,Indonesia,30 nm from Singapore,Rhio Strait,The 2379-ton French steamer La Seyne collied with British steamer Onda & sank in minutes. Passengers jumped overboard expecting to be picked up by Onda’s boats,Unknown,Unknown,"FATAL, 101 people perished, including commander, Joseph Couailhac. Iit was reported that a “shoal of sharks circled passengers in the water and dragged scores of people to their deaths” Of the 61 survivors, many were injured by sharks",Y,The Sun,7/13/1913 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.11.14-LaSeyne.pdf +815,1909.09.04.R,04-Sep-1909,1909,Provoked,Usa,Delaware,"Lewes, Sussex County",Seine netting,Walter Beach,M,Abrasion to leg from netted shark PROVOKED INCIDENT,N,Gettysburg Times,9/4/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.09.04.R-Beach.pdf +814,1909.08.13,13-Aug-09,1909,Unprovoked,Usa,Florida,"Pensacola Bay, Escambia County",Fell overboard from fishing schooner Halycon,William Craug,M,FATAL,Y,Laurel Ledger,8/19/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.08.13-Craug.pdf +813,1909.07.24,24-Jul-09,1909,Unprovoked,Usa,New York,Rockaway,Fell overboard while fishing for sharks,Albert Tyler,M,Right leg bitten,N,NY Times,7/25/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.24-Tyler.pdf +812,1909.07.15,15-Jul-09,1909,Unprovoked,Usa,Florida,"Panama City, Bay County",Swimming,Henry Munson,M,Hip & thigh lacerated,N,News Herald,7/29/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.15-Munson.pdf +811,1909.06.26.a.R,26-Jun-1909,1909,Unprovoked,Mexico,Guerrero,Zacatula,Bathing,Rosa Lopez,F,FATAL,Y,Adams County News,6/26/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.a.R-Lopez.pdf +810,1909.06.26.b.R,26-Jun-09,1909,Unprovoked,South africa,Western Cape Province,Cape Town,Unknown,Unknown,M,Remains of soldier in uniform. Probable drowning & scavenging,Y,Adams County News,6/26/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.b.R-CapeTown.pdf +809,1909.06.18,18-Jun-09,1909,Sea Disaster,Australia,Queensland,"Middleton Reef, 300 nm from Brisbane","1446-ton Norwegian barque Errol, bound from Peru to Newcastle with 22 on board wrecked. Survivors shelterd on the wreck of the Annasona. Subsequently the Master, his wife & 4 children perished along with several crew. Survivors (5) were rescued 7/12/1909",Master of the Errol,M,"FATAL, only his legs, still in sea-boots, were recovered ",Y,Australian Zoologist,viii.,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.18-Errol.pdf +808,1909.04.27.R,27-Apr-1909,1909,Provoked,Spain,Andalucia,"Puente Mayorga, San Roque, Cádiz",Fishing,male,M,Shark knocked him down after he grabbed it by the tail. No injury. PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.27.R-Cadiz.pdf +807,1909.04.10,10-Apr-09,1909,Invalid,Usa,Hawaii,"Pa'uwela, Maui",Reported swept away by waves while gathering opihi,Mrs. Ah Kim Chong,F, Search party saw a large shark devour what appeared to be part of her body,Y,J. Borg,pp.69-70; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.10-Chong.pdf +806,1909.04.09.R,09-Apr-1909,1909,Unprovoked,Tunisia,Sfax,Unknown,Diving (Helmet) for sponges,Johannis Zambeltos,M,FATAL,Y,C. Moore,GSAF; Petit Paisien,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.09.R-Zambeltos.pdf +805,1909.03.06,06-Mar-09,1909,Sea Disaster,South africa,South Atlantic Ocean,Possession Island,Wreck of the 1308-ton Norwegian ship Auckland,The Captain’s wife,F,FATAL,Y,L. Green,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.03.06-Auckland.pdf +804,1909.01.17,17-Jan-09,1909,Invalid,International_water,Unknown,Near the equator,Jumped overboard ,Thomas Butler,M,FATAL,Y,Star,3/18/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.17-Butler.pdf +803,1909.01.00,Jan-09,1909,Invalid,Italy,Sicily,"Off Capo San Croce, near Augusta (Catania)","On December 28, 1908, an earthquake, followed by tsunamis, destroyed coastal towns in Silcily and southern Italy, killing more than 100,000 people",Unknown,Unknown," 3 unidentified bodies recovered (male, female & young girl) from gut of female 4.5 m [14'9""] white shark caught in fishing net. They may have drowned in tidal wave following earthquake ",Y,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.00-Messina.pdf +802,1909.00.00,1909,1909,Unprovoked,Australia,New South Wales,Woy Woy,Unknown,anonymous,Unknown,Survived,N ,G.P. Whitley,citing Lone Hand,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.00.00-WoyWoy.pdf +801,1908.12.31,31-Dec-08,1908,Unprovoked,South africa,Western Cape Province,Stilbaai,Swimming,The son of Rabbi East,M,FATAL,Y,Fairbridge Index,Cape Archives,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.31-East.pdf +800,1908.12.16.R,16-Dec-1908,1908,Unprovoked,Mexico,Quintana Roo,Unknown,Swimming ashore from capsized boat,Colonel Harry J. Earle,M,"FATAL, ""bitten in two""",Y,Lowell Sun,12/16/1908; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.16-Earle.pdf +799,1908.09.21, 21-Sep-1908,1908,Unprovoked,Australia,Torres Strait,Thursday Island,Fell from the jetty,Kong Choong Ting,M,FATAL,Y,Northern Territory Times & Gazette,9/25/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.21-KongChoongTing.pdf +798,1908.09.05,05-Sep-08,1908,Unprovoked,Usa,California,"Redondo, Los Angeles County",On fishing boat & trailing hand in the water,Ralph Nelson,M,Lacerations to fingers,N,Los Angeles Times,9/6/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.05-RalphNelson.pdf +797,1908.08.28.R,28-Aug-1908,1908,Unprovoked,Spain,Galicia,Cape Finisterre,Fell overboard from P&O steamship Arabia,William Newbury,M,FATAL,Y,Poverty Bay Herald,10/14/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.08.28.R-Newbury.pdf +796,1908.07.18.R,18-Jul-1908,1908,Invalid,Spain,Canary Islands,"Tazacorte, La Palma",Unknown,Unknown,Unknown,Human remains recovered but shark involvement prior to death unconfirmed ,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.18.R-LasPalmas.pdf +795,1908.07.08.R,08-Jul-1908,1908,Unprovoked,Croatia,Adriatic Sea,Medola,Boating,Milena Scambelli,F,"FATAL, lost a leg",Y,A. De Maddalena; M. Zuffa (pers. Comm.),Anon. (1908); C. Moore,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.08.R-Milena.pdf +794,1908.06.18,18-Jun-08,1908,Unprovoked,Egypt,Gulf of Suez,Off Ras Gharib,The 168-ton Belmore foundered in heavy seas,Seaman Gray,M,FATAL,Y,Bay of Plenty Times,6/26/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.18-Gray.pdf +793,1908.06.08,08-Jun-08,1908,Sea Disaster,Usa,Georgia,Unknown,The British steamer Caribbee foundered,Walter Howe,M,FATAL,Y,New York Times,6/15/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.08-Howe.pdf +792,1908.06.02.R,02-Jun-1908,1908,Sea Disaster,Papua new guinea,New Britain,Matupi,.,Unknown,Unknown,"Remains of 3 humans recovered from shark, but shark involvement prior to death unconfirmed",Y,Taranaki Herald,6/2/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.02.R-Matupi.pdf +791,1908.05.13,13-May-08,1908,Sea Disaster,Indonesia,Java,Jakarta Harbor,native boats sunk in storm,Unknown,Unknown,FATAL,Y,The Advertiser,6/26/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.13-Jakarta.pdf +790,1908.05.10,10-May-08,1908,Invalid,Usa,Florida," Marathon, Monroe County",Unknown,John C. Williams,M,"FATAL, but shark involvement prior to death was not confirmed",Y,Weekly Miami Metropolis,5/11/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.10-Williams.pdf +789,1908.01.08,08-Jan-08,1908,Unprovoked,Usa,Hawaii,"Mana, Kaua'i",Gathering fish stunned by dynamite,"male, a Japanese fisherman",M,"FATAL, ""pulled below the surface' ",Y,C.H. Townsend,Bull. N.Y. Zoological Society,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.01.08-JapaneseFisherman.pdf +788,1907.12.21,21-Dec-07,1907,Unprovoked,Australia,New South Wales,"Middle Harbour, Sugarloaf Bay, Sydney (Estuary)",Bathing,Henry Jones,M,FATAL,Y,R.D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.12.21-Jones.pdf +787,1907.10.18.R,18-Oct-1907,1907,Unprovoked,Australia,Torres Strait,Near Thursday Island,Bathing,male from the lugger Teazer,M,FATAL,Y,The Queenslander,10/26/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.18.R-male-Teazer.pdf +786,1907.10.16.R,16-Oct-1907,1907,Unprovoked,China,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M,"3 of thel 5 were injured, one of whom lost both hands",N,Dawson Daily News,11/20/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf +785,1907.10.16.R,16-Oct-1907,1907,Unprovoked,China,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M, 2 of the 5 fishermen were so seriously injured they died of their wounds,Y,Dawson Daily News,11/20/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf +784,1907.10.14,14-Oct-07,1907,Unprovoked,Australia,New South Wales,"Merewether Beach, near Newcastle",Bathing,Edward. Nolan,M,Lacerations to left arm from shoulder to wrist,N,Evening Post,10/14/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.14-Nolan.pdf +783,1907.10.12,12-Oct-07,1907,Invalid,Haiti,Tiburon Peninsula,Aux Cayes (now Les Cayes),Reached out to disentangle rope & fell overboard,"William Thomas, a seaman from the Hamburg-American liner Alleghany",M,"No attack, no injury",N,H.D. Baldridge, SAF Case #412,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.12-alleghany-sailor.pdf +782,1907.10.08,08-Oct-07,1907,Unprovoked,Usa,Hawaii," Kalepolepo, Kihei, Maui","Diving, retrieving fish caught in net ","male, a Japanese fisherman",M,"Arm severed at elbow, surgically amputated at shoulder ",N,C. Townsend; Pacific Commerical Advertiser,10/13/1907; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.08-fisherman.pdf +781,1907.09.18.R,19-Sep-1907,1907,Invalid,England,English Channel,Unknown,Swimming,J. Wolffe,M," ""Struck across loins"" but no injury. According to witnesses, incident involved a bottlenose dolphin.",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.18.R-Wolffe.pdf +780,1907.09.11,11-Sep-07,1907,Unprovoked,Croatia," Split-Dalmatia Count,","Sucurja, Hvar Island,",Swimming,female,F,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.11-Croatia.pdf +779,1907.08.12.b..R,12-Aug-1907,1907,Unprovoked,Croatia, Primorje-Gorski Kotar County,Krk Island,Swimming,a school teacher,F,FATAL,Y,Ogden Standard,8/13/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.b.R-SchoolTeacher.pdf +778,1907.08.12.a..R,12-Aug-1907,1907,Unprovoked,Croatia, Primorje-Gorski Kotar County,Krk Island,Swimming,Josef Slivovic,M,FATAL,Y,Ogden Standard,8/13/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.a.R-Silvovic.pdf +777,1907.08.08.R,08-Aug-1907,1907,Unprovoked,Usa,New Jersey,Lower Delaware Bay,Wading,George Kell,M,Abrasion to chest,N,New Oxford Item,8/8/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.08.R-Kell.pdf +776,1907.07.14.R,14-Jul-1907,1907,Unprovoked,Croatia," Split-Dalmatia Count,","Su?uraj, Hvar Island",Swimming,female,F,FATAL,Y,C. Moore,S. Navajas,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.14-R-Adriatic.pdf +775,1907.07.04.R,04-Jul-1907,1907,Invalid,Australia,Queensland,Karra Garra,.,Dick Atkins,M,"Disappeared, but shark involvement unconfirmed",Y,Queensland Figaro,7/4/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.04-R-Atkins.pdf +774,1907.07.00,Jul-07,1907,Unprovoked,Usa,South Carolina,Small creek near Coles Island,Floating in creek,C.B. Hernandez,M,Slight injuries to left knee & calf ,N,E. M. Burton,,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.00-CB-Hernandez.pdf +773,1907.04.20,20-Apr-07,1907,Unprovoked,Mexico,Oaxaca,Salina Cruz,Bathing,Laurence Funda,M," 3 fingers & thigh lacerated, foot crushed",N,Los Angles Times,8/7/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.04.20-Funda.pdf +772,1907.03.26,26-Mar-07,1907,Unprovoked,Usa,Florida,"Garden Key, Charlotte County","Fishing, tarpon being chased by shark leapt across his skiff, breaking it in half & Larkin became tangled in the net",Belton Larkin,M,"FATAL, shark bit his side, nearly cutting him in two ",Y,The Sun,7/13/1913 reprinted article from Punta Gorda Herald of 3/31/1907. NOTE: V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.26-Larkin.pdf +771,1907.03.07,07-Mar-07,1907,Unprovoked,Malta,Harare Province,Marsaskala,Fishing,2 fishermen,M,"FATAL, Fell overboard and were killed by shark",Y,A. De Maddalena,citing Mojetta,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.07-fishemen-Malta.pdf +770,1907.02.09,09-Feb-07,1907,Unprovoked,Philippines,Luzon Island,Manila Bay,"Row boat (from the gunboat Elcano) was sinking, put finger in hole",J.J. Dunlap,M,Finger severed,N,Souix Vally News,4/4/1907; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.09-J.J.Dunlap.pdf +769,1907.02.05,05-Feb-07,1907,Unprovoked,New zealand,South Island,Port Moeraki,Standing,Mr. W. H. Hutcheson,M,"FATAL, leg severely bitten ",Y,R.D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.05-Hutcheson.pdf +768,1907.02.03,03-Feb-07,1907,Unprovoked,Australia,Queensland,Ross Creek,Bathing,William Williams,M,FATAL,Y,The Queenslander,2/9/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.03-Williams.pdf +767,1907.00.00.b,1907,1907,Unprovoked,Vietnam,Khánh Hòa Province,Nha Trang,Fishing,A fisherman,M,"Leg severely bitten, surgically amputated",N,G. Vassal,,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.b-Vietnam.pdf +766,1907.00.00.a,1907,1907,Unprovoked,Usa,Hawaii,"Pepe'ekeo, Honomu, Hawai'i","Net fishing, fell into the water",Japanese fisherman,M,FATAL,Y,C. H. Townsend; G. H. Balazs & A. H. Kam; J. Borg,p.69; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.a-Pepeekeo.pdf +765,1906.11.16,16-Nov-06,1906,Unprovoked,Jamaica,Westmoreland Parish,Cabaritta River mouth,Fishing,Zacey Allen,M,Leg bitten,N,The Gleaner (Jamaica),11/20/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.11.16-ZaceyAllen.pdf +764,1906.10.10.d.R,10-Oct-1906,1906,Unprovoked,Usa,Hawaii,Unknown,Unknown,"an ""old native""",M,Buttock bitten,N,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.d.R-OldNative.pdf +763,1906.10.10.c.R,10-Oct-1906,1906,Unprovoked,Usa,Hawaii,Unknown,Swimming,skipper of a coasting schooner,M,FATAL,Y,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.c.R-skipper.pdf +762,1906.10.10.b.R,10-Oct-1906,1906,Unprovoked,Usa,Hawaii,Unknown,Diving,a native,M,Arm severed,N,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.b.R-Hawaii.pdf +761,1906.10.10.a.R,10-Oct-1906,1906,Unprovoked,Usa,Hawaii,Unknown,Swimming,a sailor,M,FATAL,Y,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.a.R-Hawaii.pdf +760,1906.09.27.R.b,27-Sep-1906,1906,Unprovoked,Indonesia,Java,Lorok Bay,Swimming,William Munich,M,Thumb & index finger of left hand severed,N,Atlanta Constitution,9/27/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf +759,1906.09.27.R.a,27-Sep-1906,1906,Unprovoked,Indonesia,Java,Lorok Bay,Swimming,a Swedish sailor,M,FATAL,Y,Atlanta Constitution,9/27/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf +758,1906.09.05.R,05-Sep-1906,1906,Unprovoked,Australia,Torres Strait,Mabiuag,Swimming,Smith,M,FATAL,Y,Wanganui Herald,9/12/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.05.R-Smith.pdf +757,1906.09.00,Sep-06,1906,Provoked,Usa,California,"Avalon, Los Angeles County",Fishing,Percy Neale,M,PROVOKED INCIDENT No injury; shirt torn by gaffed shark,N,L.A.Times,10/1/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.00-Neale.pdf +756,1906.08.20,20-Aug-06,1906,Unprovoked,Yemen ,Aden,Unknown,Diving around anchored liner,boy,M,Leg severed. Injury originally thought due to boat's propeller,N,S. Samuels,,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.20-boy.pdf +755,1906.08.04,04-Aug-06,1906,Unprovoked,Usa,Maryland,"Tangier Sound, Somerset County",Fell overboard,William McFlood,M,FATAL,Y,Washington Post,8/11/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.04-McFlood.pdf +754,1906.07.05.R,05-Jul-1906,1906,Unprovoked,Usa,Mississippi,"Bay St. Louis, Hancock County",Swimming,a St. Stanislaus College student,M,FATAL,Y,The Courier,7/5/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.05.R-St.Stanislaus.pdf +753,1906.07.00,Jul-06,1906,Invalid,Mozambique,Maputo Province,Lourenco Marques,Unknown,Captain Sanna,M,Sanna drowned; his hand (identified by ring on finger) found in a shark at the market,Y,L.M. Guardian,7/23/1906; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.00-CaptainSanna.pdf +752,1906.04.27.R,27-Apr-1906,1906,Unprovoked,Indonesia,Maluku Province,Aru Islands,Hard hat diving,Unknown,M,FATAL,Y,The Advertiser,5/16/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.27.R-Aru-Islands.pdf +751,1906.04.16,16-Apr-06,1906,Provoked,Australia,Victoria,Western Port Bay,Shooting sharks ,Leo Clarke,M,Finger severed by shark he had shot & stabbed PROVOKED INCIDENT,N,The Argus,4/18/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.16-Clarke.pdf +750,1906.04.14,14-Apr-06,1906,Unprovoked,Australia,Queensland,Lizard Island,Diving for beche-de-mer ,Charley ,M,FATAL,Y,Morning Post,4/20/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.14-Charley.pdf +749,1906.04.10.R.a & b,10-April 1906,1906,Sea Disaster,Indonesia,Unknown,40 miles from Tahane Island,The schooner Tahitienne foundered in a hurricane,Captain Baxter & Dick Chares,M,FATAL x 2,Y,Atlanta Constitution,5/13/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.10.R.a-b-Baxter.pdf +748,1906.04.02.R,02-April 1906,1906,Invalid,Australia,New South Wales,Moodie Beach,.,Herbert Mills,M,Cause of death may have been downing,Y,.Morning Bulletin,4/3/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.02.R-Mills.pdf +747,1906.02.14.R,14-Feb-1906,1906,Invalid,New zealand,North Island,Mototapu Island,Swimming,Herbert Thomas,M,"FATAL, but shark involvement prior to death was not determined",Y,Otago Witness,2/14/11906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.02.14.R-Thomas.pdf +746,1906.01.28,28-Jan-06,1906,Unprovoked,Australia,New South Wales,Georges River,Bathing,William Joseph Dobson.,M,FATAL,Y,J. Green,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.28-Dobson.pdf +745,1906.01.20,20-Jan-06,1906,Unprovoked,South africa,KwaZulu-Natal,"Battery Beach, Durban",Washing horses,Ramdayal,M,"FATAL, hips & thigh bitten ",Y,Natal Mercury Pictorial,1/31/1906; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.20-Ramdayal.pdf +744,1905.12.31,31-Dec-05,1905,Unprovoked,South africa,KwaZulu-Natal,"Back Beach, Durban",Floating or standing,"Eric Suppeman, cabin boy on the Norwegian ship Blanca",M,"FATAL, left torso, buttocks, thigh & foot bitten ",Y,Natal Mercury 1/1/1906; Natal Mercury Pictorial,1/10/1906; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.31-Suppeman.pdf +743,1905.12.29,29-Dec-05,1905,Invalid,Australia,Western Australia,Geraldton,Bathing,Hugh Carroll,M,"""Bad wound in the leg"" - 7-ft shark caught in the bath same day",N,The Advertiser,12/30/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.29-Carroll.pdf +742,1905.11.17.R,17-Nov-1905,1905,Invalid,Unknown,Unknown,Unknown,A man's head found in a shark caught by British steamer Syria,Unknown,M,Probable scavenging,Y,Altoona Mirror,11/17/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.11.17.R-Syria.pdf +741,1905.09.29,29-Sep-05,1905,Unprovoked,Australia,New South Wales,"Waverly, Sydney",Swimming,Jame Crotty,M,FATAL. Shark involvement suspected but not confirmed,Y,The Argus,9/30/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.09.29-Crotty.pdf +740,1905.08.00.b,Late Aug-1905,1905,Unprovoked,Usa,New Jersey,"Atlantic City, Atlantic County",Swimming from naptha launch after a day of fishing,George Wright,M,3 toes of right foot were severed,N,The Sun (undated article),,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.b-Wright.pdf +739,1905.08.00.a,Aug-05,1905,Unprovoked,Philippines,Luzon Island,Manila Bay,Bathing,Frank Abernathy,M,Leg bitten,N,Obrien County Bell,8/31/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.a-Abernathy.pdf +738,1905.07.29,29-Jul-05,1905,Unprovoked,Usa,North Carolina,"Davis Shore, east of Beaufor, Carteret Countyt",Wading,Sutton Davis,M,Body not recovered FATAL,Y,C. Creswell,GSAF; F. Schwartz,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.29-Davis.pdf +737,1905.07.25.R,25-Jul-1905,1905,Invalid,Italy,Unknown,Naples,Unknown,boy,M,"Body recovered from shark, probable drowning and scavenging",Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.25.R-Naples.pdf +736,1905.07.00,Jul-05,1905,Unprovoked,Usa,North Carolina,"Ocracoke, Hyde County",Fishing,Coast Guard personnel,M,FATAL,Y,F. Schwartz,p.23 & pers.com to C. Creswell,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.00 +735,1905.05.22,22-May-05,1905,Unprovoked,Usa,Florida,"Pablo Beach, Jacksonville, Duval County",Swimming,Dunham Coxetter,M,Lacerations to back & right leg,N,Atlanta Constitution,5/23/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.05.22.R-Coxetter.pdf +734,1905.04.06,06-Apr-05,1905,Unprovoked,South africa,KwaZulu-Natal,"Back Beach, Durban",Swimming,James Anderson,M,"FATAL, thigh bitten, femoral artery severed ",Y,Natal Mercury,4/7/1905; H.Gill & M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.04.06-Anderson.pdf +733,1905.03.26,26-Mar-05,1905,Unprovoked,Australia,New South Wales,Lismore,Bathing,Richard Owen,M,Righ thigh severely bitten,N,Adelaide Advertiser,3/31/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.26-Owen.pdf +732,1905.03.25,25-Mar-05,1905,Invalid,Australia,Tasmania,Bridport,Bathing,Charles Taylor,Unknown,FATAL,Y,C. Black,GSAF; Adelaide Advertiser,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.25-Taylor.pdf +731,1905.02.10,10-Feb-05,1905,Invalid,Australia,Victoria,Elwood,Bathing,Charles Blake,M,Thought to have been taken by a shark,Y,Adelaide Advertiser,2/13/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.02.10-Blake.pdf +730,1905.01.01,01-Jan-05,1905,Invalid,Australia,Victoria,Elwood,Bathing,Alfred Boldner,M,Reported to have been killed by a shark but 2 years later he was found very much alive,Y,Adelaide Advertiser,1/3/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.01.01-Boldner.pdf +729,1905.00.00,1905,1905,Boating,Usa,North Carolina,"Cape Lookout, Carteret County",Harpooning turtles,"skiff, occupants: Russel J. Coles and others",Unknown,"No injury, shark bumped skifft",N,Clay Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.00.00.b-CoastGuard.pdf +728,1904.11.02,02-Nov-04,1904,Unprovoked,Philippines,Luzon Island,"Inner Harbor, Olongapo",Bathing alongside US Naval ship,"sailor, a boatswain's mate from the Piscataqua",M,Foot bitten,N,The Sun,undated article; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1904.11.02-sailor.pdf +727,1904.10.11.R,11-Oct-1904,1904,Unprovoked,Indian ocean,Between Noumea & Sydney,Unknown,Fell overboard,Axel Slettsten,M,FATAL,Y,The Argus,10/11/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.10.11.R-Slettsten.pdf +726,1904.09.00,Sep-04,1904,Unprovoked,Cuba,Havana Province,Havana Harbor,Lost his footing & fell overboard,Sailor from ship Mobile,M,"FATAL, left leg severed below knee, right leg severed above knee by a second shark",Y,Washington Post 7/19/1905,,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.09.00-Mobile-sailor.pdf +725,1904.08.00,Aug-04,1904,Unprovoked,Cuba,Villa Clara Province,Caibarien Harbor,"Ship's boat capsized in squall, captain & 2 sailors clinging onto hull",2 sailors,M,"FATAL, shark pulled them off hull of boat ",Y,Washington Post 7/19/1905,,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.08.00-boat-of-German-bark.pdf +724,1904.07.28,28-Jul-04,1904,Unprovoked,Usa,New Jersey,"Shrewsbury River, Monmouth County",Sailing,"boat, 2 occupants",M,No injury,N,New York Herald Tribune,7/29/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.28-ShrewsburyRiver.pdf +723,1904.07.27,27-Jul-04,1904,Unprovoked,Usa,Texas,Unknown,Swimming,Chester Kennedy,M,"FATAL, body not recovered",Y,New York Times,7/28/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.27-ChesterKennedy.pdf +722,1904.07.01.R,01-Jul-1904,1904,Unprovoked,Italy,Ancona Province,Ancona,Swimming,Unknown,M,FATAL x 4. Afterwards metal mesh nets were installed,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.01-Ancona.pdf +721,1904.02.07,07-Feb-04,1904,Unprovoked,Australia,Queensland,Brisbane,Swimming after his hat,George Grant,M,FATAL,Y,Grey River Argus,2/26/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.07-Grant.pdf +720,1904.02.04,04-Feb-04,1904,Unprovoked,New zealand,North Island,Waitara,Swimming,Ngawai Rakau,M,FATAL,Y,Star,2/4/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.04-Rakau.pdf +719,1904.01.23,23-Jan-04,1904,Unprovoked,New caledonia,South Province,Noumea,Bathing,Charley Smith,M,FATAL,Y,The Advertiser,2/4/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.01.23-Smith.pdf +718,1904.00.00.c,1904,1904,Invalid,Unknown,Unknown,Unknown,Diving on a wreck,Egan,M,Leg bitten,N,New York Times,6/21/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.c-Egan.pdf +717,1904.00.00.b,1904,1904,Unprovoked,Philippines,Quezon,Tayabas,Bathing,Lt. Edward Hearn,M,Left arm bitten,N,N.Y. Sun,3/19/1911 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.b-Hearn.pdf +716,1904.00.00.a,1904,1904,Unprovoked,Usa,Hawaii,"Off Diamond Head, Honolulu, O'ahu",Swimming,male,M,"FATAL, disappeared, then shark caught with head and body of man, from waist down minus leg, in its gut",Y,The Sun (no date); D. Baldridge,p.171; G.H. Balazs,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.a-Honolulu.pdf +715,1903.10.04,04-Oct-03,1903,Unprovoked,Cuba,Havana Province,Havana Harbor,Fell overboard,a sailor,M,FATAL,Y,NY Times,10/18/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.10.04-Sailor.pdf +714,1903.09.16.R,16-Sep-1903,1903,Unprovoked,Usa,New Jersey,"Atlantic City, Atlantic County",Fishing,Rev. John McMillan,M,Lacerations to right arm & shoulder,N,Indiana Messenger,9/16/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.09.16.R-McMillan.pdf +713,1903.07.00,Jul-03,1903,Unprovoked,Unknown,Unknown,Unknown,"Swimming, after falling overboard",Juan de la Cruz Silva Martinez,M,"Right leg bitten, surgically amputated",N,Atlanta Constitution,1/10/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.07.00-Martinez.pdf +712,1903.06.21,21-Jun-03,1903,Unprovoked,Australia,New South Wales,Georges River,Swimming,William Price,M,FATAL,Y,The Advertiser,6/22/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.06.21-Price.pdf +711,1903.05.04,04-May-03,1903,Unprovoked,Mexico,Veracruz,Coatzacoalcos,Bathing,3 men,M,FATAL x 3,Y,Chicago Tribune,5/5/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.05.04-Mexicox3.pdf +710,1903.03.20.R,20-Mar-1903,1903,Unprovoked,Australia,New South Wales,Sydney,Suicide,R. Raymond,M,Jumped off cliff,Y,Northern Territory Times,3/20/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.20.R-Raymond-Suicide.pdf +709,1903.03.12,12-Mar-03,1903,Unprovoked,Australia,Queensland,Logan River,Swimming,William Bartlett,M,FATAL,Y,Sydney Morning Herald,3/16/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.12-Bartlett.pdf +708,1903.01.10, 10-Jan-1903,1903,Unprovoked,Australia,New South Wales,"Lane Cove River, Sydney Harbor (Estuary)",Unknown,Sydney James,M,FATAL,Y,Northern Territory Times & Gazette,1/12/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.01.10-James.pdf +707,1903.00.00.b,Summer of 1903,1903,Unprovoked,Unknown,Unknown,Unknown,Sponge diving,2 males,M,FATAL,Y,M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.b-Crete.pdf +706,1903.00.00.a,Ca. 1903,1903,Unprovoked,Usa,Hawaii,"Koko Head, south side of O'ahu Island",Fishing,Phil Kitchin,M,"FATAL, remains (foot) recovered from shark 2 days later",Y,Captain W. Young, 51-52,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.a-PhilKitchin.pdf +705,1902.12.22.R,22-Dec-1902,1902,Unprovoked,Nicaragua,Rio San Juan,Greytown,Swimming,Frederick Wiseman,M,FATAL,Y,Racine Daily Journal,12/22/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.12.22.R-Wiseman.pdf +704,1902.11.10,10-Nov-02,1902,Unprovoked,Australia,New South Wales,"Middle Harbour, Sydney ",Swimming,Howard Dent,M,FATAL,Y,The Advertiser,11/11/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.10-Dent.pdf +703,1902.11.01.R,01-Nov-1902,1902,Unprovoked,Usa,Texas,"Near Port Lavaca, Calhoun County",Fishing,male,M,Severe laceration to hand,N,Victoria Weekly,1/11/ 1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.01.R-PortLavaca.pdf +702,1902.08.28.R,29-Aug-1902,1902,Unprovoked,Italy,Calabria,Nicotera,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.28.R-Nicotera.pdf +701,1902.08.24.R,24-Aug-1902,1902,Boating,Croatia,Istria County,Porec,Fishing,Row boat; occupants - 2 young men,M,"No injury to occupants, shark grabbed anchor rope & towed boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.24.R-Croatia.pdf +700,1902.08.08,08-Aug-02,1902,Unprovoked,Usa,Hawaii,"Kalihi, O'ahu",Catching crabs,Hawaiian boy,M,"FATAL, both arms severed ",Y,G. H. Balazs & A. H. Kam; V.M. Coppleson (1958),p.250; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.08-HawaiianBoy.pdf +699,1902.07.15,15-Jul-02,1902,Provoked,Italy,Liguria,"Galliera dock, Genoa",Fishing,male,M,Face & arms injured by hooked shark PROVOKED INCIDENT ,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.15-Genoa.pdf +698,1902.07.06,06-Jul-02,1902,Provoked,Usa,New Jersey,"Atlantic City, Atlantic County",Swimming,Harry M. Speerman,M,Shark bit his left arm after he grabbed its tail PROVOKED INCIDENT,N,New York Times,7/7/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.06-Speerman.pdf +697,1902.06.02,02-Jun-02,1902,Unprovoked,Philippines,Zamboanga del Sur Province,"Near mouth of River Cumalarang, 5 miles from Port Isabela, Basilan Island",Unknown,Apy,M,"""Nose hanging by a threat, prints of shark's teeth over entire right cheek""",N,V.M. Coppleson,p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.08-Apy.pdf +696,1902.06.00,Jun-02,1902,Unprovoked,Egypt,Mediterranean Sea,"Tzortzou Reef, Marsa Matruh",Sponge diving,Giorgos,M,Bitten on hand and thigh,N,M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.00-Giorgos.pdf +695,1902.04.00,Apr-02,1902,Invalid,South africa,Eastern Cape Province,Algoa Bay,Swimming,Neil Sorenson,M,Probable drowning & scavenging,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.04.19-Sorenson.pdf +694,1902.02.22.R,.22-Feb-1902,1902,Provoked,New zealand,North Island,Poverty Bay,Standing on ship deck,male,M,"No injury, hooked shark bit tousers. PROVOKED INCIDENT",N,The Colonist 2/22/1902,,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.02.22.R-PovertyBay.pdf +693,1902.01.25.R,25-Jan-1902,1902,Unprovoked,Australia,New South Wales,Kerosene Bay,Dangling feet in the water,John Ogier,M,FATAL,Y,The Advertiser,1/25/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.22-Ogier.pdf +692,1902.01.19.R,19-Jan-1902,1902,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,a soldier from the Natal Garrison,M,Possible drowning & scavenging. Remains were recovered from a 15' shark's gut,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19R-soldier-Durban.pdf +691,1902.01.19,19-Jan-02,1902,Unprovoked,Australia,Queensland,Brisbane,Swimming,Charles Jones,M,Legs bitten,N,Brisbane Courier,1/20/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19-Jones.pdf +690,1901.12.01,01-Dec-01,1901,Unprovoked,Australia,Queensland,Brisbane,Bathing,William Quince,M,Lacerations to torso & thigh,N,The Argus,12/2/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.12.01-Quince.pdf +689,1901.10.00,Mid Oct-1901,1901,Unprovoked,Philippines,Zamboanga del Sur Province, Port Isabela de Basilan,Taking catch from a fish weir in which the shark was snared,"Dahkus, a Molussa Moro",M,Right thigh bitten ,N,J.A. Guthrie,M.D.; Newark Advocate,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.10.00-Dahkus.pdf +688,1901.09.23.R,23-Sep-1901,1901,Unprovoked,Cyprus,Southern Cyprus,Larnaca,Swimming,male,M,"FATAL, bitten on arms, chest & legs",Y,Bardanis citing Embros,9/23/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.09.23.R-Cyprus.pdf +687,1901.07.30,30-Jul-01,1901,Unprovoked,South africa,Western Cape Province,Windmill Beach,Swimming,"John Hendrick Adrian Chandler, a prisoner of war",M,"Right leg bitten & foot severed, right arm bitten, bones fractured & nearly severed FATAL",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.30-Chandler.pdf +686,1901.07.17,17-Jul-01,1901,Invalid,Italy,Syracuse,Capo Santa Croce,Swimming,Antonio Tornatori,M,"Disappeared, but shark involvement unconfirmed",Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.17-Antonio.pdf +685,1901.06.29.R,29-Jun-1901,1901,Invalid,Yemen ,Aden,Unknown,Diving around anchored liner,boy,M,Unknown,N,The Graphic,6/29/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf +684,1901.06.24,24-Jun-01,1901,Unprovoked,Philippines,Western Viscayas,"Island of Panay, Iliolo",Swimming,"S. McKie, apprentice 1st class on the U.S. Naval ship Annapolis",M,"Left thigh stripped of flesh 4"" above the knee ",N,J.A. Guthrie; Sun,7/13/1913; V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.24-McK.pdf +683,1901.01.30,30-Jan-01,1901,Unprovoked,Australia,Queensland,Brisbane,Bathing,John Thompson,M,"Thigh bitten, FATAL",Y,Otago Witness,2/6/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.01.30-Thompson.pdf +682,1901.00.00,Summer 1901,1901,Unprovoked,Usa,Florida,Indian River Inlet / Fort Pierce Inlet,Bathing,Michael O'Brien,M,Abdomen bitten,N,W.H. Gregg; L. Schultz & M. Malin,p.533,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.00.00-O'Brien.pdf +681,1900.12.27,27-Dec-00,1900,Unprovoked,Australia,New South Wales,"Middle Harbour, Sydney ",Bathing,Thomas Houstan,M,FATAL,Y,Taranaki Herald,12/28/1900,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.12.27-Houston.pdf +680,1900.11.14,14-Nov-00,1900,Unprovoked,South africa,Western Cape Province,Three Anchor Bay,Swimming,William Strathorn,M,"FATAL, legs severed",Y,P. Logan; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.11.14-Strathorn.pdf +679,1900.10.27,27-Oct-00,1900,Invalid,South africa,Western Cape Province,"Woodstock Beach, Cape Town",Swimming,Amos Layzell,M,Probable drowning & scavenging,Y,P. Logan; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.10.27-Layzell.pdf +678,1900.09.15,15-Sep-00,1900,Unprovoked,Australia,Queensland,Townsville,Swimming,John Hennessy,M,Laceration to right leg,N,Sydney Morning Herald,9/17/1900,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.15-Hennessy.pdf +677,1900.09.13,13-Sep-00,1900,Unprovoked,Usa,Rhode Island,Coddington Cove,Diving,George Brown,M,No injury,UNKNOWN,NY Times,9/14/1900,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.13-Brown.pdf +676,1900.09.05,05-Sep-00,1900,Unprovoked,Usa,Hawaii,"Waikiki Beach, Oahu",Floating,Joe Hartman,M,"Bathing suit torn & ""imprints of the shark's teeth on his body""",N,Honolulu Republican,9/6/1900,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.05-Hartman.pdf +675,1900.08.21,21-Aug-00,1900,Unprovoked,Usa,North Carolina,"Southport, Brunswick County",Bathing,Burris,M,Left hand lacerated,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.08.21-Burriss.pdf +674,1900.07.31,31-Jul-00,1900,Unprovoked,Croatia, Primorje-Gorski Kotar County,"Volosko, Opatija",Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.31-Croatia.pdf +673,1900.07.14,14-Jul-00,1900,Invalid,Usa,Hawaii,"Makapu'u Point, O'ahu",Hunting seashells,Emil Uhlbrecht & unidentified person,M,"Believed drowned. Uhlbrecht’s foot, and the pelvis & femur of another person recovered in gut of tiger shark shark caught on 17-Aug-1900",Y,Los Angeles Times,7/28/1900,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.14-Uhlbrecht.pdf +672,1900.07.00,Late Jul-1900,1900,Provoked,Usa,Connecticut,"Bridgeport, Fairfield County", ,"skiff with Dr. William T. Healey, Dr. Henry Callahan on board",Unknown,"No injury to occupants. They shot shark, then it capsized their skiff. PROVOKED INCIDENT",N,Times,8/1/1900,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.00-Bridgeport.pdf +671,1900.01.28, 28-Jan-1900,1900,Unprovoked,Australia,New South Wales,"Lane Cove River, Sydney Harbor (Estuary)","Standing, gathering oysters",Charles Duck,M,Right posterior thigh bitten,N,Poverty Bay Herald,2/12/1900,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.01.28-Duck.pdf +670,1900.00.00.b,Early 1900s,1900,Unprovoked,Usa,Hawaii,"Inter-Island Dry Dock at Kakaako Street, Honolulu, O'ahu",Unknown,Emil A. Berndt,M,Severe abrasion when shark swam between his legs,N,G. H. Balazs; J. Borg,p.69; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.b-Berndt.pdf +669,1900.00.00.a,Ca. 1900,1900,Unprovoked,South africa,Eastern Cape Province,Port Elizabeth,Swimming,Mr. Gruner,M,Leg severed,N,H. Monsen ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.a-Gruner.pdf +668,1899.12.18,18-Dec-1899,1899,Unprovoked,Australia,Queensland,Tingalpa Creek,Fell into the water,J. Richardson,M,bite to lower leg,N,Brisbane Courier,12/21/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.12.18-Richardson.pdf +667,1899.11.20,20-Nov-1899,1899,Sea Disaster,Philippines,Mindoro Occidental,Off Lubang Island,Sea Disaster,wreck of the steamship Hubeh,Unknown,FATAL,Y,The Mercury,1/191900,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.11.20-Hupeh-wreck.pdf +666,1899.10.12.b,12-Oct-1899,1899,Unprovoked,Libya,Mediterranean Sea,Off Bengasi,Diving,John Cataris,M,Lacerations to head,N,Iowa Daily Press,10/12/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.b.R-Cataris.pdf +665,1899.10.12.a,12-Oct-1899,1899,Unprovoked,Libya,Mediterranean Sea,Off Bengasi,Sponge diving,Skoumbourdi,M,FATAL,Y,Iowa Daily Press,10/12/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.a.R-Skoumbourdi.pdf +664,1899.09.11.R,11-Sep-1899,1899,Unprovoked,Mexico,Tamaulipas,Tampico,Swimming,Paul Guyot,M,FATAL,Y,Bryan Morning Eagle,9/12/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.09.11.R-Guyot +663,1899.08.23.R,23-Aug-1899,1899,Provoked,Usa,California,"Monterey Bay, Monterey County",Hunting sharks,males,M,"FATAL, Drowned or crushed when harpooned shark smashed their boat PROVOKED INCIDENT",Y,Mexia Evening Ledger,8/23/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.23.R-BaskingShark-Monterey.pdf +662,1899.08.15,15-Aug-1899,1899,Unprovoked,Usa,Florida,"Trout River, Panama Park",Swimming,Delano Wood,M,FATAL,Y,Washington Post,8/16/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.15-DelanoWood.pdf +661,1899.08.08.c,08-Aug-1899,1899,Unprovoked,Egypt ,Mediterranean Sea,Port Said,Floating on his back,Arab boy,M,Back muscles torn away,N,W. B. Orme,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.c-ArabBoy-9.pdf +660,1899.08.08.b,08-Aug-1899,1899,Unprovoked,Egypt ,Mediterranean Sea,Port Said,Bathing,Arab boy,M,"Forearm, wrist & hand bitten",N,W. B. Orme,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.b-ArabBoy-19.pdf +659,1899.08.08.a,08-Aug-1899,1899,Unprovoked,Egypt,Mediterranean Sea,Port Said,Bathing,Arab boy,M,Left leg bitten,N,W. B. Orme,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.a-ArabBoy-13.pdf +658,1899.07.08.R,08-Jul-1899,1899,Unprovoked,Unknown,Unknown,Unknown,Fell overboard ,Captain Masson,M,FATAL,Y,Mataura Ensign,7/8/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.07.08.R-Masson.pdf +657,1899.06.07,07-Jun-1899,1899,Provoked,Italy,Calabria,Bagnara Calabra,Fishing,Enrico & Noce,M,Multiple injuries from boated shark PROVOKED INCIDENT,N,C. Moore. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.07-Bagnara.pdf +656,1899.06.02, 02-Jun-1899,1899,Invalid,New zealand,North Island,East Cape,Attempting to land a boat from the Hinemoa,N. Buchanan,M,FATAL,Y,Brisbane Courier,6/7/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.02-Buchanan.pdf +655,1899.05.28,28-May-1899,1899,Invalid,Philippines,Negros ,Escalante,Swimming,Captain Tilly,M,FATAL,Y,New York Times,5/30/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.28-CaptTilly.pdf +654,1899.05.04.R,04-May-1899,1899,Unprovoked,Italy,Imperia Province,Bordighera,Bathing,The valet of the Earl of Strathmore and Kinghorne,M,FATAL,Y,Washington Post,5/5/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.04.R-Valet.pdf +653,1899.01.28,28-Jan-1899,1899,Invalid,Australia,New South Wales,Newcastle,Bathing,Rose Sutcliffe,F,Drowning may hav preceded attack,Y,Kalgoorlie Western Argus,2/2/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.01.28-Sutcliffe.pdf +652,1899.00.00.c,1899 During the Seige of Ladysmith,1899,Unprovoked,South africa,KwaZulu-Natal,Durban,Dangling feet in the water,a petty officer,M,Foot severed ,N,Indiana Evening Gazette,11/22/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.c-Durban.pdf +651,1899.00.00.b,1899,1899,Boating,Usa,Florida,St. John's River,Rowing,"boat, occupants: 2 Jacksonville pilots",M,No injury to occupants. shark bit oar,N,W. H. Gregg,p. 22,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.b-2pilots.pdf +650,1899.00.00.a,Ca. 1899,1899,Unprovoked,Usa,Florida,Near a small wreck in a channel at Indian Key,Hunting crayfish,male,M,Leg bitten,N,W.H. Gregg,p.19,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.a-IndianKey.pdf +649,1898.12.28.R,28-Dec-1898,1898,Unprovoked,Australia,Queensland,The Narrows,Fell oveboard,James Waters,M,FATAL,Y,Brisbane Courier,12/28/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.12.28.R-Waters.pdf +648,1898.10.28,28-Oct-1898,1898,Unprovoked,Usa,Hawaii,Off Kohala,Jumped overboard,Ah Hoi,M,FATAL,Y,Hawaiian Gazette,11/1/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.10.28-AhHol.pdf +647,1898.09.19.b.R,19-Sep-1898,1898,Unprovoked,Unknown,Unknown,Unknown,Diving,Halletts,M,Lacerations to hand from shark trapped inside diving bell. ,N,Lincoln Evening News & Daily Call,9/19/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.b.R-Halletts.pdf +646,1898.09.19.a.R,19-Sep-1898,1898,Unprovoked,Unknown,Unknown,Unknown,Diving,male,M,Lacerations to fingers,N,Lincoln Evening News & Daily Call,9/19/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.a.R.Sully.pdf +645,1898.08.22,22-Aug-1898,1898,Unprovoked,Usa,New York,"Prince's Bay, Staten Island",Swimming,Charles E. Boone,M,Laceration to thigh,N,Lima News,9/27/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.08.22-Boone.pdf +644,1898.07.26.R,26-Jul-1898,1898,Invalid,Australia,New South Wales,Sydney,Swimming after their boat capsized,Martin Gunner,Unknown,"Reported fatal, but this is a questionable incident",Y,Brisbane Courier,7/26/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.26.R-Gunner.pdf +643,1898.07.15,15-Jul-1898,1898,Unprovoked,Yemen ,Aden,Outer Harbor,Swimming at side of small boat,Somali boatman,M,"FATAL, severe injuries to both arms & legs, 3 limbs surgically amputed & died after 3 days ",Y,Captain J. L.T. Jones,,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.15-SomaliBoatman.pdf +642,1898.07.14,14-Jul-1898,1898,Unprovoked,Yemen ,Aden,Sapper Bay,Standing,Davies,M,FATAL,Y,Inangahua Times,10/26/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.07.14-Davies.pdf +641,1898.07.00, Jul-1898,1898,Unprovoked,Cuba,Santiago de Cuba Province,Santiago de Cuba,Swimming,male,M,FATAL,Y,V.M. Coppleson (1958),p.258 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.00-Cuba.pdf +640,1898.06.22,22-Jun-1898,1898,Unprovoked,New caledonia,South Province,Noumea,boat from City of Naples capsized,14 sailors,M,FATAL,Y,New York Times,6/23/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.06.22-NewCaledonia.pdf +639,1898.04.13,13-Apr-1898,1898,Sea Disaster,Fiji,Muala,Unknown,The cutter Francis Adams foundered,male,M,Lacerations to thigh,N,Launceston Examiner,8/26/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.04.13-FrancisAdams.pdf +638,1898.00.00.R,1898,1898,Invalid,Unknown,Unknown,Unknown,Sponge divers,male,M,Unknown,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf +637,1898.00.00.f,1898,1898,Unprovoked,Usa,South Carolina,Ramshorn Creek,Fishing (Seining),Archibald Rutledge,M,Lacerations to left hand,N,Field & Stream,1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.f-Rutledge.pdf +636,1898.00.00.e,1898 (soon after the close of the Spanish-American War),1898,Unprovoked,Cuba,Santiago de Cuba Province,Off Santiago de Cuba,13 men in the water after sailboat capsized & sank,seamen,M,"FATAL, 7 survived but 6 were taken by sharks",Y,J. E. Kirby,letter to Captain Dinning,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.e-13-men.pdf +635,1898.00.00.d,1898,1898,Unprovoked,Jamaica,Kingston Parish,Kingston Harbor,Trailing hand in the water,Gonzales,F,"Hand lacerated, 2 fingers severed",N,Indiana Evening Gazette,11/22/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.d-Gonzales.pdf +634,1898.00.00.c,1898,1898,Unprovoked,Cuba,Camaguey Province,Nuevitas Harbor,Attempting to escape by swimming to shore,"5 American soldiers, prisoners ",M,"FATAL, 4 were killed by sharks, 1 survived",Y,J. E. Kirby,letter to Captain Dinning,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.c-AmericanPOWs.pdf +633,1898.00.00.b,1898-1899,1898,Unprovoked,Usa,Florida,"a creek near Jacksonville, Duval County",Unknown,boy,M,Lacerations,N,W. H. Gregg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.b-Florida.pdf +632,1898.00.00.a,Summer of 1898,1898,Unprovoked,Yemen ,Aden,Harbor,Diving for coins,male,M,FATAL,Y,Daily Kennebec Journal,3/27/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.a-AdenDiver.pdf +631,1898.00.00 g,1898,1898,Sea Disaster,Usa,Hawaii,Unknown,Loss of the schooner Nomad,male,M,FATAL,Y,H.W. McCurdy,History of the Pacific Northwest,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.g-Nomad.pdf +630,1897.12.04.R,04-Dec-1897,1897,Provoked,Usa,East coast,Unknown,Angling,a sailor,M,Hooked shark bit his leg PROVOKED INCIDENT,N,Trenton Evening Times,12/4/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.12.04.R-Sailor.pdf +629,1897.10.15,15-Oct-1897,1897,Invalid,Mexico,Vera Cruz,Vera Cruz Harbor,Diving,Alexander Cameron,M,Minor injuries,N,NY Times,11/11/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.15-Cameron.pdf +628,1897.10.05.R,05-Oct-1897,1897,Unprovoked,Marshall islands,Ratak ,Ailuk Island,Fishing,5 children,Unknown,FATAL,Y,North Otago Times,1258/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.05.R-Ailuk-Island.pdf +627,1897.09.17,17-Sep-1897,1897,Provoked,Usa,Rhode Island,Point Judith,Fishing,"""Hoke"" Smith",M,Lacerations to hand by netted shark PROVOKED INCIDENT,N,New York Times,9/18/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.17-HokeSmith.pdf +626,1897.09.06,06-Sep-1897,1897,Unprovoked,Usa,South Carolina,"Elliott Cut, Charleston County",Standing,Allan Fripp,M,Lacerations to lower leg,N,Hartford Courant,8/7/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.06-Fripp.pdf +625,1897.07.21,21-Jul-1897,1897,Unprovoked,South africa,KwaZulu-Natal,"Back Beach, Durban",Wading after stray fish from seine netter’s catch,a young Indian boy,M,FATAL,Y,Natal Mercury,7/24/1897; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.07.21-Indianboy.pdf +624,1897.06.09,09-Jun-1897,1897,Invalid,Yemen ,Socotra Islands,Socotra,Wreck of the steamship Sultan of Bombay,Moslem pilgrims,Unknown,Sharks scavenged on the dead,Y,Star,7/10/1897; Kalgoorlie Western Argus,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.06.09-Sultan-of-Bombay.pdf +623,1897.03.15.b.R,15-Mar-1897,1897,Unprovoked,International_water,Mediterranean Sea,Unknown,Swimming,male,M,FATAL,Y,Daily Northwestern,5/15/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.b.R-Mediterranean.pdf +622,1897.03.15.a.R,15-Mar-1897,1897,Unprovoked,Usa,Massachusetts,30 miles south of Lynn,Fishing,male,M,FATAL,Y,Daily Northwestern,5/15/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.a.R-Lynn.pdf +621,1897.00.00.b,1897,1897,Unprovoked,Unknown,Unknown,Unknown,Unknown,Maori male,M,Lacerations to left arm,N,Deseret News,6/28/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Maori.pdf +620,1897.00.00.a,1897,1897,Unprovoked,Egypt,Mediterranean Sea,Port Said,Unknown,Anonymous,Unknown,No details,UNKNOWN,Mentioned in paper by W.B. Orme; G.A. Llano,p.127,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.00.00.a-Egypt.pdf +619,1896.12.23,23-Decp1896,1896,Boating,Australia,Victoria,Hobson's Bay,Fishing,10' skiff. Occupants F. Whitehead & L. Honeybone,M,No injury to occupants. Shark bit boat several times,N,South Australian Register,12/25/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.23-skiff-HobsonsBay.pdf +618,1896.12.20,20-Dec-1896,1896,Unprovoked,New zealand,North Island,"Marine Parade, Napier, Hawke Bay",Bathing,Bright Cooper,M,"FATAL, left arm severed at elbow, right arm at wrist ",Y,A.W. Parrott,p. 68; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.20-Cooper.pdf +617,1896.12.17.R,17-Dec-1896,1896,Unprovoked,New zealand,South Island,Hoiktika,Unknown,E. Reynolds,M,FATAL,Y,The Star,12/17/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.17.R-Reynolds.pdf +616,1896.11.29,29-Nov-1896,1896,Unprovoked,Australia,Western Australia,Albany,Swimming,Davies,M,FATAL,Y,West Australian,12/3/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.29-Davies.pdf +615,1896.11.01,01-Nov-1896,1896,Unprovoked,Australia,Western Australia,Esperance,Boat swamped,Louis,M,FATAL,Y,West Australian,11/2/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.01-Louis.pdf +614,1896.09.11.R,11-Sep-1896,1896,Unprovoked,Unknown,Unknown,Unknown,Diving,Unknown,M,Leg severed,N,New Oxford Item,9/11/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.09.11.R-SriLanka.pdf +613,1896.07.25,25-Jul-1896,1896,Unprovoked,Usa,Hawaii,"Kahului, Maui",Fishing,Nahalehau,M,FATAL,Y,Hawaiian Gazette,8/4/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.07.25-Nahalehau.pdf +612,1896.06.21.R,21-Jun-1896,1896,Unprovoked,Usa,South Carolina,Charleston,Bathing,Mr. Walsh ,M,Lacerations to foot and calf,N,New York Times,6/21/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.06.21.R-Walsh.pdf +611,1896.01.11, 11-Jan-1896,1896,Unprovoked,Australia,New South Wales,"Johnstone's Bay, Sydney",Bathing,William Ready,M,FATAL,Y,Brisbane Courier,1/13/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.01.11-Ready.pdf +610,1896.00.00.b,1896,1896,Unprovoked,Usa,Florida,Unknown,"Swimming ashore from a ""filibuster""",male,M,FATAL,Y,W.H. Gregg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.b-filibuster.pdf +609,1896.00.00.a,1896,1896,Unprovoked,Haiti,Off Cape Haitien,Unknown,Wading,Syrian,M,Leg severed below knee,N,C. R. Baker & C.M. Rose; V.M. Coppleson (1958),p.259 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.a-Syrian.pdf +608,1895.12.09,09-Dec-1895,1895,Unprovoked,Australia,New South Wales,"West Balmain, Sydney",Bathing,Thomas John Terrill,M,FATAL,Y,Brisbane Courier,12/9/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.12.09-Terrill.pdf +607,1895.11.21.R,21-Nov-1895,1895,Unprovoked,Barbados,St Michael Parish,Bridgetown,Diving for coins,Rouee Youma,M,Leg bitten,N,NY Times,11/21/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.21.R-Youma.pdf +606,1895.11.16,16-Nov-1895,1895,Unprovoked,Australia,New South Wales,Jervis Bay ,Fishing,Edward Bailey,M,FATAL,Y,West Australian,11/19/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.16-Bailey.pdf +605,1895.09.18,18-Sep-1895,1895,Sea Disaster,Cuba,Havana Province,Havana Harbor,Shipwreck,male,M,Probable drowning & scavenging,Y,NY Times,9/21/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.18-HavanaShipwreck.pdf +604,1895.09.14.R,14-Sep-1895,1895,Unprovoked,Yemen ,Aden,Unknown,Diving for coins,a native boy ,M,FATAL,Y,Queenslander,9/14/8/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.14.R-Aden.pdf +603,1895.09.00,Sep-1895,1895,Provoked,Usa,North Carolina,"Near the mouth of the Cape Fear River, Brunswick County",Fishing,"open boat, occupants: Robert Ruark, Hoyle Dosher & Elmer Adkins",Unknown,"No injury, hooked shark rammed boat & Ruark fell on its back PROVOKED INCIDENT",N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.00-boat.pdf +602,1895.08.11,11-Aug-1895,1895,Unprovoked,Usa,Rhode Island,Noyes Beach,Swimming,Charles Beattie,M,FATAL,Y,Boston Globe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.11-Beattie.pdf +601,1895.08.02,2-Aug-1895,1895,Unprovoked,Usa,New Jersey,Raritan Bay,Fishing,Elias Turner,M,Arm bitten,N,Boston Globe,8/3/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.02-Turner.pdf +600,1895.07.16.R,16-Jul-1895,1895,Unprovoked,Unknown,Unknown,Unknown,Hunting seals,William Lloyd,M,FATAL,Y,Morning News,7/16/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.07.16.R-Lloyd.pdf +599,1895.06.13.R,13-Jun-1895,1895,Unprovoked,Unknown,Unknown,Unknown,Diving,Marsh,M,Right hand severed,N,Lima Times,6/13/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.13.R-EnglishDiver.pdf +598,1895.06.03.R,03-Jun-1895,1895,Unprovoked,Australia,Western Australia,Barrow Passage,Pearl diving,a Japanese diver,M,FATAL,Y,The West Australian,6/3/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.03.R-JapaneseDiver.pdf +597,1895.05.21,21-May-1895,1895,Sea Disaster,Bahamas,Bimini Islands,Off Gun Cay,Sea Disaster : Wreck of the Carrie E. Long,Tip Stanley,M,Heel bitten,N,Meriden Daily Republican,6/12/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.21-Stanley.pdf +596,1895.05.03,03-May-1895,1895,Unprovoked,New zealand,South Island,Preservation Inlet,"""Boat accident""",James Cromarty,M,FATAL Thigh bitten,Y,Otago Witness,5/16/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.03-Cromarty.pdf +595,1895.04.29,29-Apr-1895,1895,Unprovoked,South africa,Eastern Cape Province,Mzimvubu River,"""Crossing the river""",Sombutize,M,"FATAL, right arm lacerated ",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.29-Sombutize.pdf +594,1895.04.23,23-Apr-1895,1895,Unprovoked,New zealand,South Island,Oamaru,Swimming,Percy Mitchell,M,Lacerations to foot,N,Star,4/25/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.23-Mitchell.pdf +593,1895.03.29.R,29-Mar-1895,1895,Unprovoked,Indonesia,Moluccas,South Aroo Island,Swimming,Pindo Island pirates,M,FATAL,Y,Fitzroy City Press,3/29/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.29.R-Pindo-Islanders.pdf +592,1895.03.15,15-Mar-1895,1895,Unprovoked,Australia,Queensland,Burnett River,Swimming,Nicol Pringle,M,Lower leg & foot bitten,N,The Telegraph,3/20/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.15-Pringle.pdf +591,1895.02.27,27-Feb-1895,1895,Unprovoked,Australia,New South Wales,Sydney Harbor,Swimming,James Edward Clifton Donald,M,FATAL,Y,I. Donald ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.27-Donald.pdf +590,1895.02.23.R,23-Feb-1895,1895,Unprovoked,Panama,Bocas del Toro,Unknown,"Swimming, after sailboat capsized",John Minard,M,FATAL,Y,Fort Wayne Sentinel,2/23/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.23.R-Minard.pdf +589,1895.00.00.b,1895,1895,Boating,Australia,Western Australia,"Dampier's Creek, Broome",Unknown,oar of Knut Dahl's boat,Unknown,No injury to occupants of boat,N,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.00.00-Dahl.pdf +588,1894.12.11,11-Dec-1894,1894,Provoked,Usa,Florida,"North Beach, St. Augustine",Fishing,Chatiles F. Brynes,M,Left leg bitten PROVOKED INCIDENT,N,Atlanta Constitution,12/12/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.12.11-Brynes.pdf +587,1894.11.28,28-Nov-1894,1894,Unprovoked,Australia,New South Wales,Newcastle ,Bathing,Horace Hewison,M,"""Lost his arm""",N,Brisbane Courier,1/7/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.11.28-Hewison.pdf +586,1894.10.06.R,06-Oct-1894,1894,Unprovoked,Usa,Alabama,Mobile Bay,Swimming,a deserter from the ship Evarest,M,FATAL,Y,Middletown Daily Argus,10/6/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.10.06.R-deserter.pdf +585,1894.09.12.R,12-Sep-1894,1894,Unprovoked,Usa,Virginia,Norfolk,Bathing,Michael Daly,M,Lacerations to leg,N,Washington Post,9/13/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.12.R-Daly.pdf +584,1894.09.06.R,06-Sep-1894,1894,Unprovoked,Fiji,Vita Levu,Rewa River,Dangling feet in the water,Fijian girl,F,Foot severed,N,The Colonist,9/6/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.06.R-FijianGirl.pdf +583,1894.09.01.R,01-Sep-1894,1894,Provoked,Usa,Texas,Rockport,Fishing,William Muller,M,Laceration to calf PROVOKED INCIDENT,N,Lima Times Democrat,9/1/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.01.R-Muller.pdf +582,1894.08.21,21-Aug-1894,1894,Unprovoked,Usa,New York,"Woolsey's Point, East River",Swimming,Catherine Beach,F,No injury,UNKNOWN,NY Times,8/22/1894 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.21-CatherineBeach.pdf +581,1894.08.01,01-Aug-1894,1894,Unprovoked,Usa,Florida,"Jacksonville, Duval County",Swimming / floating on his back,Milton Shane,M,Lacerations to thigh,N,Jacksonville Times-Union,8/2/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.01-MiltonShane.pdf +580,1894.07.15.R,Reportd 15-Jul-1894,1894,Unprovoked,France,Provence,"la Badine, Hyères ",Fishing,"la Badine, Hyères, ",M,No injury,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.07.15.R-France.pdf +579,1894.06.29,29-Jun-1894,1894,Unprovoked,Usa,Florida,Anastasia Island,Bathing,Erskine H. Reynolds,M,"""Painfully injured"" but no details",UNKNOWN,Atlanta Constitution,7/1/1894; Washington Post 7/1/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.29-ErskineReynolds.pdf +578,1894.06.25,25-Jun-1894,1894,Unprovoked,South africa,Western Cape Province,Simons Town,Swimming after harpooned whale capsized boat,"Swedish male, crewman from the Harry Mundahl",M,FATAL,Y,Cape Argus,7/2/1894 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.25-SwedishWhaler.pdf +577,1894.06.15.b.R,15-Jun-1894,1894,Unprovoked,Usa,North Carolina,"New Bern, Craven County",bathing ,soldier ,M,Right leg bitten,N,Warren Ledger,6/15/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.b.R-Newbern.pdf +576,1894.06.15.a.R,15-Jun-1894,1894,Unprovoked,Mexico,Bay of Campeche,Unknown,Fell from yardarm of British ship Rover,sailor,M,"FATAL, torso bitten ",Y,Warren Ledger,6/15/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.a-R-Rover.pdf +575,1894.04.28.b.R,28-Apr-1894,1894,Unprovoked,Burma,Rangoon,Amherst,Bathing, Grace Darling,F,FATAL,Y,Bruce Herald,8/24/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.b.R-GraceDarling.pdf +574,1894.04.28.a.R,28-Apr-1894,1894,Unprovoked,Burma,Rangoon,Amherst,Bathing,Lucy Stone ,F,FATAL ,Y,Bruce Herald,8/24/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.a.R-LucyStone.pdf +573,1893.10.20.R,20-Oct-1893,1893,Unprovoked,India,Bay of Bengal,Madras Harbor,Murder,A young pearl trader,M,FATAL,Y,Middletown Daily Argus,10/20/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.20.R-PearlTrader.pdf +572,1893.10.16,16-Oct-1893,1893,Invalid,Croatia, Primorje-Gorski Kotar County,"Off Volusca, Opatija",small boat,4 passengers frightened by shark,Unknown,No injury; no attack,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.16-Opatija.pdf +570,1893.07.03,03-Jul-1893,1893,Unprovoked,Philippines,Unknown,Off Manila,Abandoning burning steamship Don Juan,Unknown,M,FATAL,Y,New Zealand Tablet,12/1/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.07.03-DonJuan.pdf +569,1893.06.22,22-Jun-1893,1893,Unprovoked,Lebanon,Unknown,Off Tripoli,HMS Victoria collided with the HMS Camperdown,crew,M,FATAL,Y,The Sydney Morning Herald,6/29/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22-HMSVictoria.pdf +568,1893.05.23.R,23-May-1893,1893,Unprovoked,Fiji,Unknown,Between Kadavu & Beqa,Canoe swamped,a girl,F,FATAL,Y,Brisbane Courier,5/23/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.23.R-FijianCanoe.pdf +567,1893.05.17,17-May-1893,1893,Unprovoked,Cuba,Havana Province,Havana Harbor,His balloon crashed in the harbor,"Ramon Margulies, aeronaut",M,FATAL,Y,Portsmouth Herald,3/6/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.17-Margulies.pdf +566,1893.04.15,15-Apr-1893,1893,Unprovoked,Unknown,Unknown,Unknown,Swimming after falling overboard from the sealing ship Vesper,Charles Barclay,M,"One leg severed by the shark, the other surgically amputated",N,The News,4/15/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.15.R-Barclay.pdf +565,1893.04.14,14-Apr-1893,1893,Unprovoked,Australia,Queensland,Torres Strait,"Boat capsized, swimming ashore",Kangaroo,M,Leg bitten,N,Brisbane Courier,6/2/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.14-Kangaroo.pdf +564,1893.04.04,04-Apr-1893,1893,Invalid,Australia,Tasmania,"Chimney Point, George’s Bay","Boat capsized, swimming ashore",Joseph Meredith,M,"Fatal, probable drowning",Y,C. Black,GSAF; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.04-Meredith.pdf +563,1893.01.30.R,30-Jan-1893,1893,Unprovoked,New zealand,South Island?,Downs River,Bathing,Donald McKenzie,M,FATAL,Y,Taranaki Herald,1/30/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.30.R-McKenzie.pdf +562,1893.01.18.R,18-Jan-1893,1893,Unprovoked,French polynesia,Unknown,One week out of Pápete,Murdered,sailor,M,FATAL.Tossed overboard to sharks by Rodrigue brothers who were later executed in Manila,Y,West Australian,1/18/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.18.R-RodrigueBrothersVictims.pdf +561,1893.00.00,1893,1893,Unprovoked,Egypt,Mediterranean Sea,Port Said,Unknown,No details,Unknown,No details,UNKNOWN,Briefly mentioned in paper by W.B. Orme; G.A. Llano,p.127,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.00.00-PortSaid.pdf +560,1892.12.15,15-Dec-1892,1892,Unprovoked,Unknown,Unknown,Unknown,Fell overboard,Samuel Coolidge,M,FATAL,Y,Washington Post,1/9/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.12.15-SamuelCoolidge.pdf +559,1892.11.09.R,09-Nov-1892,1892,Unprovoked,Australia,Norfolk Island,Unknown,Fishing,a boat steerer,M,Laceration to arm,N,Timaru Herald,11/8/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.09.R-NorfolkIsland.pdf +558,1892.11.06,06-Nov-1892,1892,Unprovoked,Australia,Queensland,"Wellington Point, Brisbane",Swimming,Mrs. Coe,F,Abrasions to left leg,N,Brisbane Courier,11/9/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.06-Coe.pdf +557,1892.09.16.R,16-Sep-1892,1892,Unprovoked,Usa,Texas,Velasco,Unknown,Baker,M,Hand bitten,N,Galveston Daily News,9/16/1892 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.09.16.R-Baker.pdf +556,1892.06.24,24-Jun-1892,1892,Invalid,France,Brittany,Brest,Fishing boat,Unknown,Unknown,"No injury, no attack",Y,C.Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.24-Brest.pdf +555,1892.06.20.R,20-Jun-1892,1892,Unprovoked,Cuba,Havana Province,Havana Harbor,Riding a horse,a mestizo,M,FATAL,Y,Daily Citizen,6/20/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.20.R-Rider.pdf +554,1892.05.19.R,19-May-1892,1892,Unprovoked,New zealand,North Island,Rockhampton,Bathing,Abraham Yates,M,Minor injury to leg,N,Wanganui Chronicle,5/19/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.05.19.R-Yates.pdf +553,1892.04.21.R,21-Apr-1892,1892,Unprovoked,Bahamas,Out Islands,Unknown,Fell overboard from sponge vessel,male,M,"FATAL, leg severed",Y,The Gleaner (Jamaica),4/21/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.04.21.R-Bahamas.pdf +552,1892.03.25.R,25-Mar-1893,1892,Unprovoked,Unknown,Unknown,Unknown, a canoe was pursuing a schooner that had forcibily abducted 5 young girls,Unknown,M,6 or 8 of the would-be rescuers were shot & the rest were killed by sharks,Y,West Australian,3/25/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.25.R-Canoe.pdf +551,1892.03.02,02-Mar-1892,1892,Provoked,Australia,New South Wales,Lake Macquarie,Fishing,Christopher Wang,M,Lacerations to calf by netted shark PROVOKED INCIDENT,N,The Argus,3/4/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.02-Wang.pdf +550,1892.00.00,1892,1892,Provoked,Australia,Torres Strait,Badu Island,Dress diving,Mr. A. Rotaman,M,FATAL Bitten in two by shark that he molested with a knife. Buried at Batu Island. PROVOKED INCIDENT,Y,G.P. Whitley,p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.00.00-Rotaman.pdf +549,1891.12.31.R,31-Dec-1891,1891,Unprovoked,Australia,New South Wales,Unknown,Swimming,Mr. Christesen,M,Foot severed,N,Maitland Mercury & Hunter River General Advertiser,12/31/1891 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.31.R-Christesen.pdf +548,1891.12.22.R,22-Dec-1891,1891,Unprovoked,New zealand,North Island,"Manukau Harbor, 6 miles south of Auckland","Swimming, after boat swamped",Henry Jacobson,M,Hand bitten,N,The Advertiser,1/1/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.22.R-Jacobson.pdf +547,1891.09.14.R,14-Sep-1891,1891,Sea Disaster,Kiribati,Line Islands,Flint Island,"Sea Disaster, canoes capsized in storm",Unknown,Unknown,"FATAL Of 38 people in the water, 8 were killed by sharks & 1 man's leg was severed",Y,Newark Daily Advocate,9/14/1891; Bismark Daily Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.09.14.R-Kiribati.pdf +546,1891.08.30.R,30-Aug-1891,1891,Unprovoked,Canada,Nova Scotia,Halifax,Knocked overboard,John Roult,M,FATAL,Y,Washington Post,8/31/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.30.R-Roult.pdf +545,1891.08.29,29-Aug-1891,1891,Provoked,Usa,New Jersey,"Off Longport, Atlantic County",Shooting sharks ,one of the crew of the schooner Mary C. Brown,M,"Survived, PROVOKED INCIDENT",N,The Daily Argus News,9/3/1891 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.29-Mary-Brown-crew.pdf +544,1891.06.11,11-Jun-1891,1891,Invalid,Usa,Virginia,Hampton Roads,Fishing for sharks when he became entangled in net & fell overboard,John Howard,M,"Fatal, but death may have been due to drowning",Y,Washington Post,6/12/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.06.11-JohnHoward.pdf +543,1891.03.10,10-Mar-1891,1891,Unprovoked,Unknown,Unknown,Unknown,Fleeing across a river,Unknown,Unknown,FATAL,Y,West Australian,11/2/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.03.10-Paraguay.pdf +542,1891.01.08.R,08-Jan-1891,1891,Unprovoked,Jamaica,Kingston Parish,Port Royal Harbour,boat capsized,3 sailors,M,FATAL,Y,Tuapeka Times,1/21/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.01.08.R-Jamaica.pdf +541,1890.12.30,30-Dec-1890,1890,Invalid,Australia,Queensland,Moreton Bay,Swimming to shore after boat capsized by a squall,C. Gregory,Unknown,"Fatal, but death may have been due to drowning",Y,The Argus,21/2/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.30-Gregory.pdf +540,1890.12.27.R,27-Dec-1890,1890,Unprovoked,British new guinea,Woodlark Islands,Off Panamota,Thrown overboard,Tetebara,M,Arm bitten,N,Queenslander,12/27/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.27.R-Tetebara.pdf +539,1890.10.25.R,25-Oct-1890,1890,Unprovoked,Unknown,Unknown,Unknown,Thrown overboard,Captain Lavarello ,M,FATAL,Y,Taranaki Herald,10/25/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.10.25.R-Lavarello.pdf +538,1890.08.17.R,17-Aug-1890,1890,Provoked,Usa,New Jersey,"Off Normandie-by-the-Sea, Monmouth County",Fishing for bluefish,a charter fishing boat with James Whiteside and his party,Unknown,No injury to occupants. Hooked shark damaged boat PROVOKED INCIDENT,N,NY Times,8/17/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.17.R-NJ-PartyBoat.pdf +537,1890.08.09,9-Aug-1890,1890,Unprovoked,Usa,Connecticut,"Bridgeport, Fairfield County",Treading for clams,Raymond Odell,M,Severe lacerations to left arm.,N,NY Times,8/12/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.09-Odell.pdf +536,1890.08.08, 08-Aug-1890,1890,Unprovoked,Samoa,Upolu Island,Apia Harbour,Bathing,Hermann Schwebke,M,Both legs severed,N,Argus,9/9/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.08-Schwebke.pdf +535,1890.06.26,06-26-1890,1890,Unprovoked,Croatia,Unknown,Fiume,Swimming,Mayonni,M,Legs severed ,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.26-Mayonni.pdf +534,1890.06.14.R,14-Jun-1890,1890,Unprovoked,Unknown,Unknown,Unknown,Fell overboard,a Frenchman,M,Severe lacerations to foot,N,Bush Advocate,6/14/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.14.R-Frenchman.pdf +533,1890.06.02.R,02-Jun-1890,1890,Unprovoked,Egypt,Unknown,Port Said,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.02.R-PortSaid.pdf +532,1890.05.14,14-May-1890,1890,Invalid,South africa,Eastern Cape Province,Port Elizabeth,Unknown,Joseph Lundy,M,"Forensic evidence indicated death resulted from drowning, his body was subsequently scavenged by a shark",#VALUE!,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.05.14-Lundy.pdf +531,1890.02.25,25-Feb-1890,1890,Boating,Malta,Munxar Reef,Marsascala,"Fishing boat with 4 men on board was rammed & capsized by a shark, throwing all occupants into the water",Salvatore & Agostino Bugeja,M,"FATAL, 2 men were lost, presumed taken by the shark",Y,A. Buttigieg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.02.25-Malta.pdf +530,1890.00.00.e,1890,1890,Unprovoked,Australia,Tasmania,Derwent River (empties into the sea at Hobart),Wading,Frederick Sampson Johnson,M,Knee bitten,N,V.M. Coppleson (1958),p.105; C. Black pp. 147-148,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.e-FrederickSampsonJohnson.pdf +529,1890.00.00.d,1890,1890,Unprovoked,India,Tamil Nadu,Tuticorin,Diving,a pearl diver,M,No details,UNKNOWN,Sydney Morning Herald,10/1/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.d-Tuticorin.pdf +528,1890.00.00.c,1890,1890,Unprovoked,India,Tamil Nadu,Tuticorin,Diving,a pearl diver,M,No details,UNKNOWN,Steubenville Herald,11/12/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.c-Tuticorin.pdf +527,1890.00.00.b,1890,1890,Unprovoked,New zealand,North Island,"Lampton Harbour, Wellington",Swimming,soldier ,M,FATAL,Y,A. W. Parrott,p.68,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.b-soldier.pdf +526,1890.00.00.a,Ca. 1890,1890,Unprovoked,South africa,KwaZulu-Natal,Cape Vidal,Bathing,Zulu boy,M,"FATAL, leg bitten, foot partly severed ",Y,J. Daniel,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.a-ZuluMale.pdf +525,1889.11.29.R,29-Nov-1889,1889,Invalid,Greece,Northern Peloponnese,Patras,Unknown,Unknown,Unknown,"Human remains found in 4m, 900 kg shark",Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.29.R-Greece.pdf +524,1889.11.22,22-Nov-1889,1889,Unprovoked,Australia,Queensland,Bowen,Fell into the water,E.J. Sharpe,M,FATAL,Y,Brisbane Courier,11/26/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.22-Sharpe.pdf +523,1889.11.16,16-Nov-1889,1889,Invalid,Usa,Hawaii,Honolulu,Parachuted from balloon,Joe Lawrence,M,Speculated that he was taken by a shark but most likely drowned,Y,NY Times,11/24/1889 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.16-Honolulu.pdf +522,1889.10.03.R,03-Oct-1889,1889,Unprovoked,India,Tamil Nadu,Madras,Swimming,"B, a young English officer",M,FATAL,Y,Decatur Daily Republican,10/3/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.10.03.R-Madras.pdf +521,1889.07.21,21-Jul-1889,1889,Unprovoked,Usa,Florida,"Fernandina, Nassau County",Swimming,Eddie Roe,M,"FATAL, calf bitten",Y,NY Times,7/22/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.21-Roe.pdf +520,1889.07.19, 19-Jul-1889,1889,Unprovoked,Usa,Texas,West Bay near Galveston ,Fishing,John Bolling,M,Leg bitten,N,Galveston Daily News,7/21/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.19-Bolling.pdf +519,1889.07.08,08-Jul-1889,1889,Unprovoked,Australia,Victoria,Port Phillip,Fell into the water,male,M,FATAL ,Y,Brisbane Courier,7/9/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.08-PortPhillip.pdf +518,1889.01.31.R,31-Jan-1889,1889,Provoked,Usa,Florida,Hillsborough Bay,Fishing,"rowboat, ",Unknown,No injury to occupants. Gaffed shark capsized boat PROVOKED INCIDENT,N,Timaru Herald,1/31/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.31.R-Florida.pdf +517,1889.01.00,Jan-1889,1889,Unprovoked,Sierra leone,Western Area,Freetown,Cleaning the side of a ship,English sailor,M,FATAL,Y,NY Times,1/20/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.00-EnglishSailor.pdf +516,1888.12.25.R,25-Dec-1888,1888,Unprovoked,Indian ocean,Between Perth & Colombo,Unknown,Swimming,E. Burnside,M,Foot severed,N,West Australian,12/25/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.25.R-Burnside.pdf +515,1888.12.09,09-Dec-1888,1888,Unprovoked,Australia,New South Wales,"Iron Cove Bridge, Sydney (Estuary)",Swimming,Stephen Carter,M,FATAL,Y,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.09-Carter.pdf +514,1888.12.00,Dec-1888,1888,Unprovoked,Australia,New South Wales,"Hawkesbury Bridge, Sydney",Working on the bridge when he fell into the river,Mr. Ryland,M,FATAL,Y,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.00-Ryland.pdf +513,1888.10.23.R,23-Oct-1888,1888,Unprovoked,Croatia, Primorje-Gorski Kotar County,Rijeka,Unknown,Unknown,Unknown,Human remains found in shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.10.23.R-Croatia. Pdf +512,1888.08.14,14-Aug-1888,1888,Sea Disaster,Canada,Nova Scotia,Off Sable Island,The steamships Thingvalla and Geiser collided,1 man,M,FATAL,Y,Aurora Daiy Express,8/18/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.14-Geiser-passenger.pdf +511,1888.08.01.R,01-Aug-1888,1888,Boating,Usa,New York,Unknown,Sailing,catboat. Occupants: Captain Tuppe & 2 young ladiesr,Unknown,No injury to occupants. Shark beat away with oar,N,The Ledger,8/3/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.01-catboat.pdf +510,1888.07.20.R,20-Jul-1888,1888,Invalid,Unknown,Unknown,Unknown,Probabable drowning,Unknown,M,Human remains recovered from a 10' to 12' shark caught in a turtle net,Y,Otago Witness,7/20/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.20.R-Jamaica-scavenging.pdf +509,1888.07.13.R,13-Jul-1888,1888,Sea Disaster,India,Gujarat,Cutch Coast,The Dwarka foundered,6 crew,M,"FATAL, only 1 of her crew of 7 survived",Y,Otago Witness,7/13/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.13.R-Dwarka.pdf +508,1888.07.04,04-Jul-1888,1888,Invalid,Croatia,Lukovo,Unknown,Unknown,Unknown,Unknown,Human remains & clothing found in 7' shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.04-Croatia.pdf +507,1888.06.24,24-Jun-1888,1888,Boating,Australia,Victoria,Port Melbourne,Fishing,2 men,Unknown,"No injury to occupants, shark holed boat",N,Taranaki Herald,7/9/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.24-fishermen.pdf +506,1888.06.18.R,18-Jun-1888,1888,Invalid,Australia,Victoria,"Point Cook, Port Phillip Bay",The cutter yacht Cutty Sark sank,"Claude Hadley, William Grundy, Albert Faulkner & Frederick Faulkner",M,Probable drowning & scavenging,Y,New York Times,6/18/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.18-PortPhillip.pdf +505,1888.02.17,17-Feb-1888,1888,Unprovoked,New zealand,South Island,Oamaru,Floating on his back,David Grant,M,"Arm severely lacerated, surgically amputated",N,R.D. Weeks,GSAF; K.C. McDonald; Evening Post (Wellington),http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.17-DavidGrant.pdf +504,1888.02.00,Feb-1888,1888,Unprovoked,South africa,Eastern Cape Province,Mzimvubu River mouth,Crossing the river mouth,male,M,FATAL,Y,Cape Mercantile Advertiser,2/15/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.00-Mzimvubu.pdf +503,1888.01.22,22-Jan-1888,1888,Boating,Australia,New South Wales,Sydney Harbor,Rowing,Burke,M,"Shark bit boat, but no injury to occupant who swam ashore",N,Star,1/23/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.01.22-Burke.pdf +502,1888.00.00,1888,1888,Unprovoked,Libya,Mediterranean Sea,Off Tripoli,Sponge diving,T riantafyllos,M,Lacerations to thorax and hands,N,M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.00.00-Triantafyllos.pdf +501,1887.12.22.R,22-Dec-1887,1887,Unprovoked,Honduras,Cortés,Off Puerto Cortez (Caribbean coast),Fell oveboard from steamer Wanderer,Carl Luhudahl,M,FATAL,Y,Union County Journal,12/22/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.22.R-Luhudahl.pdf +500,1887.12.04,04-Dec-1887,1887,Unprovoked,Australia,New South Wales,"Ryde, Sydney (Estuary)",Unknown,Thomas Cochrane (William Charles Corkhill0,M,FATAL,Y,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.04-Cochrane.pdf +499,1887.10.18,18-Oct-1887,1887,Unprovoked,Usa,Florida,"Between Lake Worth & Biscayne Bay, near Hillsboro","Crossing inlet in a boat, seen fighting sharks with his oar, sharks smashed boat","James F. Hamilton, a mail carrier",M,FATAL,Y,Evening Telegram,11/5/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.18-Hamilton.pdf +498,1887.10.00,October 1887,1887,Sea Disaster,Unknown,Unknown,Unknown,"Sea disaster, wreck of the Alfred Watts",Burgess & 2 seamen,M,FATAL,Y,New York Times,12/23/1887 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.00-Shipwreck-Alfred-Watts.pdf +497,1887.09.22,22-Sep-1887,1887,Unprovoked,Italy,Unknown,Trieste,Swimming,Joseph Weissmantel,M,Leg injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.22-Weissmantel.pdf +496,1887.09.06,11-Sep-1887,1887,Invalid,Croatia, Primorje-Gorski Kotar County,Kraljevica,Unknown,Unknown,Unknown,Shoes & human remains found in a shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.06-Croatia.pdf +495,1887.03.12,12-Mar-1887,1887,Boating,Australia,South Australia,Black Point,Rowing a dinghy,Mr. Boucaut & Mr. Harris,Unknown,No injury to occupants,N,New York Times,5/16/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.03.12-dinghy-Black-Point.pdf +494,1887.02.08.R,08-Feb-1887,1887,Unprovoked,New zealand,North Island,Kaipara,Swimming,a seaman from the Johann Brodersen,M,FATAL,Y,Bruce Herald,2/8/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-Kaipara.pdf +493,1887.02.08,08-Feb-1887,1887,Provoked,South africa,Western Cape Province,Blaauwberg,Unknown,boat,Unknown,"Harpooned shark, bit boat, causing it to ship water. Boat reached shore in sinking condition PROVOKED INCIDENT",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-boat.pdf +492,1887.01.20,20-Jan-1887,1887,Sea Disaster,Brazil,Alagoas,Maceió,The passenger ship Kapuna was run down the ore carrier Ada Melmore,Whittle,M,FATAL,Y,Brisbane Courier,4/14/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.20-Whittle.pdf +491,1887.01.12,12-Jan-1887,1887,Unprovoked,South africa,Eastern Cape Province,"Mzimvubu River, 9.6 km from the sea",Swimming,Zangile,M,"FATAL, flesh removed hip to knee, calf & heel bitten ",Y,Cape Mercantile Advertiser,1/25/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.12-Zangile.pdf +490,1887.00.00,1887,1887,Sea Disaster,Ocean,"Somewhere between Philadelphia and Hiogo, Japan",Unknown,British ship Macedon was thrown on her beam ends by a sudden squall,a ship's steward,M,Foot severed,N,Galveston Daily News,2/11/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.00.00-Macedom.pdf +489,1886.08.00.c,Mid-Aug-1886,1886,Boating,Usa, New Jersey,"Shrewsbury River, Highlands, Monmouth County",Unknown,"boat, occupants: 4 men",M,"Shark attacked boat, shark killed & towed to shore",N,R. Heyer,citing the Red Bank Register,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.c-boat.pdf +488,1886.08.00.b,Mid-Aug-1886,1886,Provoked,Usa,New Jersey,"Sandy Hook Bay, Highlands, Monmouth County","Netting menhaden, sharks caught in net",Boat of Captain Forman White,Unknown,"No injury, sharks ripped net & bit boat PROVOKED INCIDENT",N,R. Heyer,citing the Red Bank Register,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.b-FormanWhite-boat.pdf +487,1886.08.00.a,Aug-1886,1886,Boating,Usa,New Jersey,"Shrewsbury River, Highlands, Monmouth County",Clamming,John Parker & Edward Matthews,M,"No injury. They were chased by three sharks, one of which rammed their boat",N,R. Heyer citing the Red Bank Register,9/1/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.a-Parker-Matthews.pdf +486,1886.06.17,17-Jun-1886,1886,Unprovoked,Australia,Queensland,Off Bribie Heads,Swimming after being washed overboard,Lacoon,M,FATAL,Y,Brisbane Courier,6/21/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.17-Lacoon.pdf +485,1886.06.02,02-Jun-1886,1886,Invalid,Usa,Hawaii,"Hamakua Homakua, Hawai'i","Fishing from shore, washed into the sea",2 women,F,"The body of one woman had been bitten by a shark but it is not known if she was alive at the time, the other woman disappeared",Y,G. H. Balazs & A. H. Kam; V.M. Coppleson (1958),p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.02-Hamakua.pdf +484,1886.05.06,06-May-1886,1886,Unprovoked,New caledonia,South Province,Noumea,Bathing,male,M,FATAL,Y,Timaru Herald,6/8/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.05.06-Noumea.pdf +483,1886.04.26,26-Apr-1886,1886,Unprovoked,Australia,Queensland,Rothesay Bay,Oystering,male,M,Wrist bitten,N,The Capricornian,5/1/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.26-RothesayBay.pdf +482,1886.04.11,11-Apr-1886,1886,Invalid,New zealand,South Island,Near the mouth of the Clarence River,Sea disaster : Wreck of the Taiaroa,male,M,Probable drowning & scavenging,Y,Auckland Star,4/24/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.11-TaiaroaShipwreck.pdf +481,1886.03.06.R,06-Mar-1886,1886,Invalid,New zealand,South Island,Dunedin ,Bathing ,Rodwell,M,Left leg severed. Probably confusion with GSAF 1886.01.28,N,Feilding Star,3/6/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.06-Rodwell-NZ.pdf +480,1886.03.00,Mar-1886,1886,Invalid,Australia,New South Wales,"Dobroyd Head, Watson Bay, Sydney",He drowned when boat capsized,James Barefoot,M,His body was found in a tiger shark; next day other human remains found in sharks at Berry's Bay ,Y,Evening Post,4/7/1886; G.P. Whitley (1951),http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.00-Barefoot.pdf +479,1886.02.13.R,13-Feb-1886,1886,Boating,Australia,Victoria,Mordialloc,Fishing,20' boat; occupants: John Wright & a friend,M,"No injury to occupants, shark shook boat ""stem to stern""",N,Evening Post,2/13/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.02.13.R-Wright.pdf +478,1886.01.28,28-Jan-1886,1886,Unprovoked,South africa,Eastern Cape Province,"South Jetty, Port Elizabeth",Diving off jetty,Mr. Rodwell,M,"Chest & buttocks bitten, left leg severed at knee",N,Eastern Province Herald,1/28/1886; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.28-Rodwell.pdf +477,1886.01.26,26-Jan-1886,1886,Unprovoked,Australia,Queensland,Unknown,Diving alongsidethe steamship Ranelagh ,John Byrne,M,Foot bitten,N,Brisbane Courier,1/27/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.26-Byrne.pdf +476,1886.01.01,01-Jan-1886,1886,Unprovoked,South africa,Western Cape Province,Groot River,Swimming,Dr. James Woolby,M,"FATAL. He threw up his hands, shrieked and disappeared. Partial remains washed ashore the next day",Y,P. Logan; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.01-Woolby.pdf +475,1886.00.00,1886,1886,Unprovoked,Australia,New South Wales,Sydney Harbor,Sailing,male,M,Leg severed,N,I. M. Sigismund,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.00.00-Sydney.pdf +474,1885.11.26.R,26-Nov-1885,1885,Boating,Australia,Queensland,Brisbane ,Unknown,"boat, occupant John Bishop",Unknown,"No injury to occupant, shark bit off section of the boat's rudder",N,Brisbane Courier,11/26/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.R-Bishop.pdf +473,1885.11.26,26-Nov-1885,1885,Unprovoked,Australia,Western Australia,Bunbury,Bathing,A.Y. Glyde,M,Laceration to calf,N,The West Australia,12/2/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.a-Glyde.pdf +472,1885.08.17,17-Aug-1885,1885,Unprovoked,Unknown,Unknown,Unknown,Fell or jumped overboard from the liner Rhynland,J.R. Loesch,M,FATAL,Y,New York Times,8/27/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.08.17-Loesch.pdf +471,1885.07.26.c,26-Jul-1885,1885,Sea Disaster,Usa,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor,M,Left arm severed,N,Hawaiian Gazette,8124/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26-b-Schooner-crew-1.pdf +470,1885.07.26.b,26-Jul-1885,1885,Sea Disaster,Usa,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor ,M,Laceration to torso,N,Hawaiian Gazette,8124/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.c-Schooner-crew-2.pdf +469,1885.07.26.a,26-Jul-1885,1885,Sea Disaster,Usa,Hawaii,Kau District,Wreck of the schooner Pohoiki ,Captain Mark Robinson,M,FATAL,Y,Hawaiian Gazette,8/24/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.a-CaptainRobinson.pdf +468,1885.04.16.R,16-Apr-1885,1885,Unprovoked,Unknown,Unknown,Unknown,Swimming,2 males,M,FATAL,Y, Gleaner (Jamaica),4/16/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.16.R-GermanShip.pdf +467,1885.04.09,09-Apr-1885,1885,Unprovoked,New zealand,North Island,Auckland,Bathing,Pahi,M,Lacerations to lower leg,N,"Grey River Argus,4/18/185",,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.09-Pahi.pdf +466,1885.03.28,28-Mar-1885,1885,Unprovoked,South africa,KwaZulu-Natal,Kokstad District,Fishing,"boat, occupant: Mr. Anderson",M,"No injury to occupant, rammed oar in shark's mouth and it bit the oar ",N,South African Illustrated News,3/28/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.03.28-oar.pdf +465,1884.12.13,13-Dec-1884,1884,Sea Disaster,Australia,South Australia,Port Phillip,yachting accident,Willaim Browne,M,"Cause of death most likely drowning, remains recovered in shark",Y,The Argus,12/29/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.13-Browne.pdf +464,1884.12.08.R,08-Dec-1884,1884,Provoked,France,Côte d'Azur ,Between Nice & Villefranche,Unknown,child,F,FATAL Leg severed by harpooned shark PROVOKED INCIDENT,Y,North Otago Times,12/8/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.08.R-France.pdf +463,1884.08.28.R.,28-Aug-1884,1884,Unprovoked,Usa,New Jersey,"Bayonne, Hudson County",Boating,Edward Monroe,M,Hand bitten,N,Atlanta Contitution,8/28/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.28.R-EdwardMonroe.pdf +462,1884.08.18,18-Aug-1884,1884,Invalid,Usa,New York,Jamaica Bay,Clamming,Stephen Rylor,M,Unclear if he sustained any injury from the shark,N,New York Times,8/20/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.18-Rylor.pdf +461,1884.01.16,16-Jan-1884,1884,Unprovoked,South africa,Eastern Cape Province,"South Jetty, Port Elizabeth",Swimming,Mr. Meyer,M,FATAL,Y,Port Elizabeth Herald,1/23/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.16-Meyer.pdf +460,1884.01.14,14-Jan-1884,1884,Unprovoked,Australia,South Australia,"Port Pirie, Spencer Gulf, 230 km north of Adelaide",Fell overboard,Miss Warren,F,FATAL,Y,G.P. Whitley (1951),p. 192,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.14-Warren.pdf +459,1883.12.19,19-Dec-1883,1883,Unprovoked,Australia,New South Wales,Parramatta River,Swimming,Cuthbert Vere Lysaght,M,FATAL,Y,West Australian,12/22/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.19-Lysaght.pdf +458,1883.09.14.R,14-Sep-1883 (probably happened Ca. 1843/1844),1883,Unprovoked,Australia,Tasmania,Between Port Arthur Penal Colony & Forestier Peninsula,Swimming / escaping imprisonment ,Owen,M,FATAL,Y,C. Black,GSAF; Bruce Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.09.14.R-Owen-the-Bushranger.pdf +457,1883.07.05,05-Jul-1883,1883,Provoked,Georgia,Unknown,"Savannah River, Chatham County",Fishing for sharks,male,M,Leg injured by hooked shark PROVOKED INCIDENT,N,Savannah Times,7/13/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.07.05-Savannah.pdf +456,1883.02.26.R,26-Feb-1883,1883,Unprovoked,Australia,Northern Territory,the pearling beds,Diving,male,M,Arm severed,N,The Queenslander,3/3/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.26.R-PearlDiver.pdf +455,1883.02.25.R,25-Feb-1883,1883,Unprovoked,Australia,Northern Territory,the pearling beds,Diving,male,M,FATAL,Y,The Queenslander,3/3/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.25.R-Pearl-Diver.pdf +454,1883.01.21,21-Jan-1883,1883,Unprovoked,Australia,New South Wales,"Iron Cove, Sydney",Bathing,John Eaton,M,FATAL,Y,Maitland Mercury,1/23/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.01.21-Eaton.pdf +453,1883.00.00.d,1883,1883,Unprovoked,Unknown,Unknown,Unknown,Fishing,"male, a cook",M,"FATAL, remains recovered from 2 sharks",Y,Freeborn County Standard,11/14/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.d-cook.pdf +452,1883.00.00.c,Summer of 1883,1883,Unprovoked,Usa,Florida,"Fort Pickens, Escambia County",Fell overboard,the Captain’s boy,M,FATAL,Y,St Joseph Herald,7/12/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.c-CaptainsBoy.pdf +451,1883.00.00.b,1883,1883,Invalid,Usa,South Carolina,"Bull’s Bay, near Charleston",Unknown,adult male,M,"Body found with arm severed by shark, but shark involvement prior to death was uncomfirmed",Y,W.H. Gregg,p.21; SAF Case #910,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.b-BullsBay.pdf +450,1883.00.00.a,1883,1883,Unprovoked,Usa,South Carolina,Unknown,Unknown,an aeronaut,M,FATAL,Y,W.H. Greg,p.22,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.a-aeronaut.pdf +449,1882.12.03,03-Dec-1882,1882,Provoked,New zealand,South Island,New Brighton,Restraining a beached shark,Mr. Hill,M,Hand severely nipped PROVOKED INCIDENT ,N,The Star,12/4/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.12.03-Hill.pdf +448,1882.11.12.b,12-Nov-1882,1882,Unprovoked,New zealand,North Island,"Tararu, Thames",Bathing,Arthur Evans,M,Sole of foot bitten,N,Colonist,11/22/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.b-Evans.pdf +447,1882.11.12.a,12-Nov-1882,1882,Unprovoked,New zealand,North Island,"Tararu, Thames",Bathing,William Connerly,M,Lacerations to thigh,N,Colonist,11/22/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.a-Connerly.pdf +446,1882.09.00,Sep-1882,1882,Unprovoked,Unknown,Unknown,Unknown,Clinging to shipwrecked junk,Japanese fisherman,M,Lacerations to elbows & knees,N,Launceston Examiner,6/21/1883 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.09.00-JapaneseFisherman.pdf +445,1882.05.14,14-May-1882,1882,Unprovoked,Australia,New South Wales,Millers Point,Fell overboard,John Clare,M,Laceration to calf,N,Launceston Examiner,5/20/1882 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.14-Clare.pdf +444,1882.05.12.R,12-May-1882,1882,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,a Malay diver,M,FATAL Torso bitten,Y,West Australian,5/12/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.12.R-MalayDiver.pdf +443,1882.04.15,15-Apr-1882,1882,Unprovoked,Australia,New South Wales,Lake Macquarie,Fishing,Unknown,M,FATAL,Y,The Mercury,4/25/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.04.15-fisherman.pdf +442,1882.02.07.R, 07-Feb-1882,1882,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,a native diver,M,FATAL Thigh bitten,Y,West Australian,3/28/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.02.07.R-PearlDiver.pdf +441,1882.01.23.R,23-Jan-1882,1882,Unprovoked,Australia,New South Wales,"Darling Harbor, Sydney",Bathing,George Sinclair,M,FATAL,Y,Brisbane Courier,1/24/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.23.R-Sinclair.pdf +440,1882.00.00.b,1882,1882,Unprovoked,Usa,Florida,"In the bay near the naval yard at Pensacola, Escambia County","During ""an exhibition"" he was tied in sack & thrown overboard ",John T. Clark,M,"No injury, sack rammed by shark & shark harassed him when he surfaced",N,The Sun; Iowa City Citizen,9/15/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.b-Clark.pdf +439,1882.00.00.a,1882,1882,Unprovoked,Australia,Queensland,Maryborough,Unknown,male,M,Survived,N,V.M. Coppleson (1958),p.453; G.P. Whitley (1940),http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.a-Maryborough.pdf +438,1881.11.13,13-Nov-1881,1881,Invalid,Australia,New South Wales,"Johnstone's Bay, Sydney",Swimming,John Sullivan,M,Shark involvement suspected but not confirmed,N,Maitland Mercury & Hunter River General Advertiser,11/15/1881,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.11.13-Sullivan.pdf +437,1881.10.16,16-Oct-1881,1881,Invalid,Usa,Florida,"Pensacola Bay, Escambia County",Bathing,Anthony McDonald,M,Shark involvement prior to death unconfirmed,Y,Pensacola Gazette,"10/18/1881; Fort Wayne Daily Gazette,11/2/1881 ",http://sharkattackfile.net/spreadsheets/pdf_directory/1881.10.16-McDonald.pdf +436,1881.09.05,05-Sep-1881,1881,Unprovoked,Usa,North Carolina,"Elizabeth City, Pasquotank County ",Bathing,Frank G. Hines,M,"FATAL, possible post-mortem bites",Y,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.09.05-Hines.pdf +435,1881.08.16.R,16-Aug-1881,1881,Unprovoked,International_water,Western Banks,Unknown,"Floating, holding onto an oar after dory capsized",George Sedgwick,M,FATAL,Y,Lewiston Evening Journal,8/16/1881,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.16.R-Sedgwick.pdf +434,1881.08.12,12-Aug-1881,1881,Unprovoked,Usa,Rhode Island,Providence,Swimming,Jerry Lowney,M,"No injury, overalls ripped by shark",N,Providence Journal 8/15/1881,,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.12-Lowney.pdf +433,1881.06.25,25-Jut-1881,1881,Unprovoked,Usa,Unknown,Santa Cruz,Bathing,Father Hudson,M,Survived,N,"Grey River Argus,10/3/1881",p.2,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.25-FatherHudson.pdf +432,1881.06.13,13-Jun-1881,1881,Unprovoked,Usa,Alabama,Mobile Bay,Fell overboard,William Smith,M,FATAL,Y,Mobile Register,7/14/1881; NY Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.13-Smith.pdf +431,1881.00.00.b,1881,1881,Unprovoked,India,Unknown,"At Panihattu, Barrackpore, Dackhineshwar, Barahonagore, Kashipur & Chitpur down to Baug Bazar ghats",Unknown,Unknown,Unknown,"""More than 20 persons severely bitten by sharks this year. Almost all were fatal""",Y,A.C. Kastagir,Asst. Surgeon in the Indian Medical Gazette,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.b-India.pdf +430,1881.00.00.a,Ca. 1881,1881,Boating,Italy,Sicily,Stretto di Messina,Fishing on a boat,male,M,Non-Fatal,N,A. De Maddalena; Doderlein (1881),,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.a-Italy.pdf +429,1880.11.25,25-Nov-1880,1880,Unprovoked,Australia,Queensland,"Petrie Bight, Brisbane River",Swimming,Alexey Drury,M,"Feet bitten, surgically amputated FATAL",Y,Bucks County Gazette,2/10/1881,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.11.25-AlexeyDrury.pdf +428,1880.10.10,10-Oct-1880,1880,Sea Disaster,Australia,New South Wales,Bermagui,Traveling by boat,The Lamont Young party,M,"Disappeared, thought to have murdered or drowned or taken by a sharks after entrails washed ashore",Y,Sydney Morning Herald,10/26/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.10.10-Lamont-Young-Party.pdf +427,1880.08.08,08-Aug-1880,1880,Unprovoked,Unknown,Unknown,Unknown,Swimming to retrieve a flannel,Farejallah,M,Legs severed FATAL,Y,Newfoundlander (NZ),11/5/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.08.08-Farejallah.pdf +426,1880.07.25,25-Jul-1880,1880,Boating,Usa,New York,The Narrows,Sailing,Captain Aleck Robertson,M,"Shark bit stern, no injury to occupant",N,The Sun,7/26/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.07.25-Robertson.pdf +425,1880.05.15,15-May-1880,1880,Unprovoked,India,West Bengal,Ganges River,Unknown,"Sutto Cumar Mukerjea, a.k.a. Haboo",M,"Left hand severed, arm & right calf injured",N,A.C. Kastagir,surgeon; G.A. Llano,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.15-Haboo.pdf +424,1880.05.14,14-May-1880,1880,Unprovoked,India,West Bengal,Hoogly River,Bathing in river,a widow,F,"Hands, forearm & left thigh lacerated, radial artery severed",N,V.M. Coppleson (1958),p.261,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.14-Widow.pdf +423,1880.05.07.R,07-May-1880,1880,Invalid,Mexico,Guerro,Acapulco,Unknown,A.H.C.,M,"Human remains recovered from a 15' shark, probable scavenging",Y,Dover Weekly Argus,5/7/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.07.R-AHC.pdf +422,1880.05.02.b,02-May-1880,1880,Unprovoked,India,West Bengal,(Calcutta?),Bathing in river,Sasti,M,"FATAL, left forearm & hand bitten, brachial artery severed, died of secondary hemorrhage 11 days later ",Y,V.M. Coppleson (1958),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.b-Sasti.pdf +421,1880.05.02.a,02-May-1880,1880,Unprovoked,India,West Bengal,"Panihati, 4 miles south of Barrackpore on the Hoogly River",Bathing,"N., a native boy",M,"FATAL, right leg severed at mid-thigh, femur severed ",Y,V.M. Coppleson (1958),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.a-N.pdf +420,1880.01.22,22-Jan-1880,1880,Boating,Australia,New South Wales,"Chowder Bay, Sydney",Fishing,"boat, Occupants: William Smith & Thomas Martin",Unknown,"No injury to occupants, shark rammed boat",N,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.22-ChowderBayBoat.pdf +419,1880.01.03,03-Jan-1880,1880,Unprovoked,Australia,New South Wales,Cooranbong,Bathing,Teresa Bonnell,F,Lacerations to leg,N,Morning Bulletin,1/28/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.03-Bonnell.pdf +418,1880.00.00.e,1880?,1880,Invalid,Unknown,Unknown,Unknown,Diving for sponges,male,M,FATAL but shark involvement in death unconfirmed,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf +417,1880.00.00.d,Ca. 1880,1880,Invalid,Usa,Florida,"Hutchinson Island, Martin County",Unknown,"""Old Cuba""",M,"Drowned, body scavenged by shark",Y,History of Martin County by J. Hutchinson,,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.d-OldCuba.pdf +416,1880.00.00.c,Ca. 1880,1880,Unprovoked,Solomon islands,Guadalcanal Province,Guadalcanal,Unknown,boy,M,"Arm & leg severed, survived ",N,C.M. Woodford,page 35,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.c-Guadalcanal.pdf +415,1880.00.00.a,1880,1880,Unprovoked,New zealand,South Island,Campbell’s Point,Unknown,male,M,Recovered,N,Coppleson (1958),p.262 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.a-CampbellsPoint.pdf +414,1879.12.24,24-Dec-1879,1879,Unprovoked,India,Andaman Islands,Port Blair,Swimming,Kenney,M,FATAL,Y,Elyria Republican,3/18/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.12.24-Kenney.pdf +413,1879.11.10,10-Nov-1879,1879,Unprovoked,Australia,New South Wales,Clarence Heads,Swimming,Goddard,M,Thigh bitten,N,Maitland Mercury & Hunter River General Advertiser,11/18/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.11.10-Goddard.pdf +412,1879.09.22, 22-Sep-1879,1879,Provoked,Spain,Valencia,Castellon de la Plana,Fishing,Unknown,Unknown,"No injuries to occupants, Hooked shark bit boat PROVOKED INCIDENT",N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.09.22-Castellon-de-la-Plana.pdf +411,1879.08.30.R,30-Aug-1879,1879,Sea Disaster,Fiji,Lau Group,Totoya ,Unknown,male + 20,M,"Severely bitten on heel, 20 others taken by sharks",N,Wagga Wagga Advertiser,8/30/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.08.30.R-Totoya.pdf +410,1879.07.03,3-Jul-1879,1879,Unprovoked,Usa,California,"Los Angeles, Los Angeles County",Bathing,John Fry,M,No details,N,Reno Evening Gazette,7/11/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.07.03-JohnFry.pdf +409,1879.03.19,19-Mar-1879,1879,Unprovoked,New zealand,North Island,Napier,Standing,Michal O'Neill,M,FATAL,Y,Star,3/20/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.19-O'Neill.pdf +408,1879.03.10,10-Mar-1879,1879,Invalid,Australia,New South Wales,Near Sydney ,The steamship Bonnie Dundee lost in collision,Cabin boy of the Bonnie Dundee,M,Partial remains found in shark,Y,Star,3/22/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.10-Bonnie-Dundee.pdf +407,1879.00.00,1879,1879,Unprovoked,Usa,Mississippi,River mouth,Floating with life buoy after pilot launch capsized,Gus Ericsson,M,FATAL,Y,Indiana County Gazette,10/3/1900,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.00.00-Ericsson.pdf +406,1878.11.17,17-Nov-1878,1878,Unprovoked,Australia,New South Wales,"Lane Cove River, Sydney Harbor ",Bathing,Mr. Meares,M,Laceration to leg,N,The Mercury,11/22/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.11.17-Meares.pdf +405,1878.10.24.R,24-Oct-1878,1878,Unprovoked,Indonesia,East Java,Probolinggo,Swimming,Owen,M,FATAL,Y,Hartford Weekly Times,10/24/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.24.R-Owen.pdf +404,1878.10.13,13-Oct-1878,1878,Unprovoked,Unknown,Unknown,Unknown,Jumped overboard after murdering 2 shipmates,Sherrington,M,FATAL,Y,The Maitland Mercury & Hunter River General Advertiser,1/28/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.13-Sherrington.pdf +403,1878.09.14.R,14-Sep-1878,1878,Provoked,Usa,Connecticut,"Branford, New Haven County",Fishing,Captain Pattison,M,Leg bitten by netted shark PROVOKED INCIDENT,N,St. Joseph Herald,9/14/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.14.R-Pattison.pdf +402,1878.09.02.b,02-Sep-1878,1878,Sea Disaster,South atlantic ocean,Off the coast of West Africa,Unknown,Boat with 5 men capsized while returning to the Amerique,Antonio du Val,M, Du Val's leg was bitten but he survived,N,Brisbane Courier,11/19/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.b-Amerique-boy.pdf +401,1878.09.02.a,02-Sep-1878,1878,Sea Disaster,South atlantic ocean,Off the coast of West Africa,Unknown,Boat with 5 men capsized while returning to the Amerique,Unknown,M,"FATAL, 2 of the crew were killed by sharks",Y,Brisbane Courier,11/19/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.a-Amerique.pdf +400,1878.08.09,09-Aug-1878,1878,Unprovoked,Usa,New York,East River,Swimming,Cole,M,FATAL?,Y,Daily Kennebec Journal,8/10/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.09-Cole.pdf +399,1878.08.08,08-Aug-1878,1878,Unprovoked,Usa,New York,Brooklyn,Swimming,George Gates,M,FATAL,Y,NY Times,8/9 & 8/16/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.08-Gates.pdf +398,1878.06.10,10-Jun-78,1878,Unprovoked,Philippines,Misamis Oriental,Cagayan de Oro,Unknown,Dolores Margarita Corrales y Roa,F,FATAL,Y,A.J. Montalvan II,Philippine Daily Inquirer,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.06.10-Philippines.pdf +397,1878.03.30.R,30-March-1878,1878,Unprovoked,Unknown,Unknown,Unknown,Unknown,Unknown,M,"""Fearfully injured""",N,Hawkes Bay Herald,4/16/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.03.30.R-NewGuinea.pdf +396,1878.02.13,13-Feb-1878,1878,Sea Disaster,South africa,Western Cape Province,Olifantbos Point,Wreck of the Union Steamship Company 982-ton iron steamer Kafir,An Arab who had been with Stanley when he met Livingstone,M,"FATAL, shark removed large part of his hip",Y,M. Levine,GSAF; Times of Natal,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.13-Kafir.pdf +395,1878.00.00,1878,1878,Unprovoked,Australia,New South Wales,"Balmain, Sydney (Estuary)",Bathing in 2 feet of water,boy,M,"FATAL, leg severed ",Y,G.P. Whitley,ref Dr. Cleland,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.00.00-Balmain.pdf +394,1877.12.15.R,15-Dec-1877,1877,Sea Disaster,Unknown,Unknown,Unknown,Unknown,a male & a female,Unknown,FATAL,Y,Australian Town & Country Journal,12/15/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15.R-Fiji.pdf +393,1877.12.15,15-Dec-1877,1877,Unprovoked,Australia,New South Wales,"Peacock Point, Balmain, Sydney",Bathing,Albert Thomas Burless,M,Leg severely bitten & later surgically amputated,N,Sydney Mail,2/16/1878; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15-Burless.pdf +392,1877.12.12,12-Dec-1877,1877,Unprovoked,Australia,New South Wales,Near Sydney,Washed overboard from the barque Mary Eady,2 males,M,FATAL,Y,Brisbane Courier,12/15/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.12-MaryEady.pdf +391,1877.09.15,15-Sep-1877,1877,Unprovoked,Australia,New South Wales,Port Jackson,Fishing,Mr. Coulthard,M,"No injury, pulled overboard by a shark that grabbed his coat",N,The Mercury (Hobart),9/22/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.09.15-Coulthard.pdf +390,1877.08.28.R,28-Aug-1877,1877,Invalid,Unknown,Unknown,Unknown,Unknown,female,M,Partial human remains found in 13' shark,Y,Western Australian Times,8/28/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.08.28.R-IndianOcean.pdf +389,1877.04.07, 07-Apr-1877,1877,Provoked,Australia,Tasmania,Smelting Works Bay near Hobart,Unknown,John Smart,M,Fingers injured by landed shark PROVOKED INCIDENT,N,C. Black,GSAF; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.07-Smart.pdf +388,1877.04.04.,04-Apr-1877,1877,Unprovoked,Australia,Victoria,Portarlington,Bathing,Mitchell,M,Thigh & foot bitten,N,Brisbane Courier,4/11/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.04-Mitchell.pdf +387,1877.03.16,16-Mar-1877,1877,Unprovoked,Italy,Strait of Messina,Off Calabria,Paddling,Captain Paul Boyton,M,3 ribs broken by shark's tail,N,J. Stanton,et. Al,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.16-Boyton.pdf +386,1877.03.11, 11-Mar-1877,1877,Unprovoked,Fiji,Viti Levu Island,"Na Koro Vatu, Rewa River",Unknown,boy,M,"Thigh severely bitten, femur exposed ",N,Timaru Herald,5/18/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.11-RewaRiver.pdf +385,1877.02.17.R,17-Feb-1877,1877,Unprovoked,Australia,Victoria,Off Melbourne,Fishing ,Gesoun Gentel,M,Severe bite to hand,N,Otago Witness,2/17/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.02.17.R-Gentel.pdf +384,1877.01.28, 28-Jan-1877,1877,Unprovoked,Australia,Victoria,Emerald Hill,Bathing,William Marks,M,FATAL,Y,The Mercury,2/19/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.28-Marks.pdf +383,1877.01.24.R,24-Jan-1877,1877,Unprovoked,Australia,Victoria,Boarding School Bay,Swimming,female,F,Ankle injured,N,The Argus,1/24/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.24.R-BoardingSchoolBay.pdf +382,1877.01.04,04-Jan-1877,1877,Invalid,South africa,KwaZulu-Natal,Durban,Body found floating next to his ship,"Anno Toosegir, a Malagasy crewman from the 130-ton brig Sea Nymph",M,"Although his body was bitten by a shark/s, bruises on his neck & face suggested foul play & a shipmate taken into custody but no charges made",Y,M. Levine,GSAF; Natal Colonist,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.04-Toosegeir.pdf +381,1877.00.00,Before 1878,1877,Unprovoked,India,Hoogly River,Near Calcutta,Unknown,Indian,Unknown,"Thigh severely bitten, femur exposed & grooved",N,J. Fayrer,M.D. cited in F. Day,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.00.00-Calcutta.pdf +380,1876.09.07.R,07-Sep-1876,1876,Unprovoked,Greece,Cyclades archipelago,Between the islands of Tenos and Andros ,Diving for sponges,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.09.07.R-Greece.pdf +379,1876.06.04.R,04-Jun-1876,1876,Unprovoked,Usa,Georgia,Cumberland Island,Bathing,Arthur E.. Boardman,M,Leg bitten,N,The Constitution,6/24/1876,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.06.04.R-Boardman.pdf +378,1876.05.14,14-May-1876,1876,Unprovoked,Australia,New South Wales,Sydney Harbour,Swimming,Frederick Brown,M,FATAL,Y,Sydney Mail,6/3/1876,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.05.14-Brown.pdf +377,1876.02.06,06-Feb-1876,1876,Unprovoked,Australia,Victoria,Albert Park in Port Phillip Bay,Bathing,Patrick Rooney,M,"FATAL, rescued by man on horseback, but died on the beach ",Y,V.M. Coppleson (1958),p.110; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.02.06-Rooney.pdf +376,1876.00.00.d,1876,1876,Unprovoked,Lebanon,Mount Lebanon,Batroun,Sponge diving,male,M,FATAL,Y,Drug Cir. & Chem. Gazette,1876,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.d-Lebanon.pdf +375,1876.00.00.c,1876,1876,Unprovoked,England,"Between Hastings & Fairlight, Sussex",Unknown,Unknown,male,M,Leg abraded,N,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.c-MEDSAF.pdf +374,1876.00.00.b,1876,1876,Unprovoked,Australia,Western Australia,Between De Grey River and Port Walcott,Pearl diving,"male, aboriginal diver",M,"""Severely bitten"" but survived",N,G.P. Whitley (1951) pp.185 & 192,citing P.Walcott,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.b-pearl-diver.pdf +373,1876.00.00.a,1876,1876,Unprovoked,Australia,New South Wales,Sydney,Unknown,boy,M,"FATAL, ""his side was bitten""",Y,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.a-boy-Sydney.pdf +372,1875.11.27.R,27-Nov-1875,1875,Unprovoked,Australia,New South Wales,Clarence Heads,Fishing,Aboriginal male,M,Foot severed at ankle,N,Brisbane Courier,11/27/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.11.27.R-AboriginalFisherman.pdf +371,1875.08.10,10-Aug-1875,1875,Invalid,South africa,KwaZulu-Natal,"Back Beach, Durban",Unknown,Unknown,Unknown,"Press reported that a 3 m shark was caught with human remains in its gut, but remains were those of a porpoise according to medical examiner",Y, Natal Colonist,8/13/1875; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.08.10-porpoise.pdf +370,1875.03.03,03-Mar-1875,1875,Unprovoked,New zealand,North Island,Tauranga,Bathing,male,M,FATAL,Y,Thames Star,3/3/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.03.03-Maori_boy.pdf +369,1875.01.20.R,20-Jan-1875,1875,Invalid,Australia,Queensland,Mary River,Bathing,male,M,"Forehead bitten, but shark involvement questionable",N,Nelson Evening Mail,1/20/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.01.20.R-MaryRiver.pdf +368,1874.11.21,21-Nov-1874,1874,Unprovoked,Australia,Queensland,Maryborough,Bathing,"""a lad""",M,Thigh bitten,N,Maryborough Chronicle,11/24/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.21-Maryborough.pdf +367,1875.00.00,Ca. mid-1870s,1875,Unprovoked,Australia,Western Australia,Sharks Bay,Sitting on gunwale of boat,Andrew Farmer,M,FATAL,Y,Western Mail (Perth),6/27/1919,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.00.00-Farmer.pdf +366,1874.11.14.R,14-Nov-1874,1874,Boating,Croatia,Zadar County,"Lika-Senj, Pag Island",Fishing,2 occupants,Unknown,"Shark damaged boat, but no injury to occupants",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.14.R-Croatia.pdf +365,1874.07.23,23-Jul-1874,1874,Boating,Unknown,Unknown,Unknown,Fishing,Unknown,Unknown,Shark and boat collided. No injury to occupants,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.23-Planier.pdf +364,1874.07.15.R,15-Jul-1874,1874,Unprovoked,Usa,Hawaii,Waikiki,Fishing,a native fisherman,M,Thumb & thigh lacerated,N,Empire,7/15/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.R-Hawaii.pdf +363,1874.07.15,15-Jul-1874,1874,Unprovoked,Usa,New York,Coney Island,Bathing,Mr. Keatly,M,Lacerations to groin,N,NY Times,7/17/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.a-Keatly.pdf +362,1874.06.15.b.R,15-Jun-1874,1874,Unprovoked,Kiribati,Gilbert Islands,Beru,Escaping from blackbirding vessel,Unknown,M,FATAL,Y,Daily Southern Cross,6/15/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.b.R-Blackbirder.pdf +361,1874.06.15.a.R,15-Jun-1874,1874,Unprovoked,Unknown,Unknown,Unknown,Salvaging a shipwreck,Unknown,M,Heel bitten,N,Daily Southern Cross,6/15/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.a.R-Achilles-tendon.pdf +360,1874.04.20.R,20-Apr-1874,1874,Boating,Canada,Newfoundland,St. Pierre Bank ,Fishing,A dory: occupants : 2 men,M,Shark bit & tipped the dory,N,Jones (1879); Piers (1933),,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.04.20.R-Dory.pdf +359,1874.01.09,09-Jan- 1874,1874,Unprovoked,Australia,New South Wales,"Darling Harbor, Sydney",Bathing,Thomas Thompson,M,Thigh severely bitten,N,Sydney Morning Herald,1/1/1874; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1874.01.09-Thompson.pdf +358,1874.00.00,1874,1874,Boating,Tuvalu,Unknown,Between Nanumea & Nanumaga Atolls,Fleet of canoes caught by a squall and charged by sharks.,Unknown,Unknown,"2 people out of +70 survived, one of whom was bitten by sharks",Y,Otago Witness,10/28/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.00.00-Tuvalu.pdf +357,1873.07.28,28-Jul-1873,1873,Provoked,Usa,Maryland,Chester River,Fishing (Seining),James Green,M,Leg severely bitten by netted shark. Lower leg surgically amputated PROVOKED INCIDENT,N,NY Times,7/30/1873,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.07.28-Green.pdf +356,1873.06.09.R,09-Jun-1873,1873,Invalid,Australia,New South Wales,Newcastle ,Bathing,Joseph Henry,M,Shark involvement prior to death was not confirmed,Y,The Mercury,6/9/1873,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.06.09.R-Henry.pdf +355,1873.01.09.R,09-Jan-1873,1873,Unprovoked,Australia,Queensland,White Cliffs,Bathing,young aboriginal male,M,Survived,N,Brisbane Courier,1/9/1873,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.01.09.R-Aboriginal-male.pdf +354,1873.00.00,Nov- or Dec-1873,1873,Unprovoked,Cuba,Havana Province,Havana Harbor,Swimming / escaping imprisonment ,Franz Mayer,M,"Legs severed bitten, later surgically amputated",N,NY Times,8/9/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.00.00-Mayer.pdf +353,1872.11.30.R,30-Nov-1872,1872,Unprovoked,Unknown,Unknown,Unknown,Swimming to avoid capture,Malay pirates,M,FATAL,Y,The Mercury,11/230/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.30.R-MalayPirates.pdf +352,1872.11.24,24-Nov-1872,1872,Invalid,Unknown,Unknown,Unknown,Unknown,Abel Fosdyk (who claimed to be sole survivor from the Mary Celeste),M,"No injury, but according to Fosdyk, captain & crew were killed by sharks",N,Strand Magazine ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.24-MaryCeleste.pdf +351,1872.08.07.R,07-Aug-1872,1872,Invalid,Croatia,Unknown,Fiume,Fishing,male,M,No injury,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.08.07.R-Fiume.pdf +350,1872.04.03.R,03-Apr-1872,1872,Unprovoked,Usa,Hawaii,Kawahae,Canoeing,Kaholo,M,"Thigh bitten, shark teeth embedded in canoe",N,Honolulu Gazette,4/3/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.04.03.R-Kaholo.pdf +349,1872.02.26,26-Feb-1872,1872,Sea Disaster,Australia,Queensland,Bramble Reef,Wreck of the 150-ton brig Maria,Unknown,Unknown,"FATAL, some were taken by sharks",Y,coralsea-wrecks.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.02.26-MariaShipwreck.pdf +348,1872.01.28,28-Jan-1872,1872,Invalid,Fiji,Lomaiviti Provine,"Levuka Point, Ovalau Island",boat capsized,Mr. Manning,M,Probable drowning,Y,Empire,2/20/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.01.28-Manning.pdf +347,1872.00.00,Circa 1872,1872,Sea Disaster,South atlantic ocean,Off the coast of South America,Unknown,Adrift on a raft ,an Italian fisherman,M,Leg bitten,N,San Francisco Bulletin,11/1/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.00.00-Italian.pdf +346,1871.12.11.R,11-Dec-1871,1871,Invalid,Australia,New South Wales,Hawkesbury River,Unknown,male,M,Human remains recovered from 11' shark,N,Border Watch,1/10/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.12.11.R-Remains.pdf +345,1871.08.29.R,29-Aug-1871,1871,Unprovoked,Usa,Hawaii,Unknown,Fishing,male,M,Limbs severed,N,The British Colonist,8/29/1871,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.29.R-Hawaii.pdf +344,1871.08.00,Aug-1871,1871,Provoked,Usa,New York,Long Island,Shark fishing,Unknown,M,Hand injured PROVOKED INCIDENT,N,New York Times,8/26/1871,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.00-SharkFisherman.pdf +343,1871.05.22.R,22-May-1871,1871,Unprovoked,Sri lanka,Eastern Province,Trincomalee,Bathing,An officer from H.M. Forte,M,Severe laceration to thigh,N,The Argus,5/22/1871,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.22.R-Trincomalee.pdf +342,1871.03.24,24-Mar-1871,1871,Unprovoked,India,"22ºN, 88ºE",Hoogly River at Multah,Bathing,Deno,M,"FATAL, left thigh & buttock bitten, died of pneumonia 7 weeks later ",Y,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.03.24-Deno.pdf +341,1871.00.00.c,1871,1871,Unprovoked,Australia,New South Wales,Manning River,Unknown,male,M,"FATAL, ""caught by legs"" ",Y,G.P. Whitley,ref E.S. Hill,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.c-ManningRiver.pdf +340,1871.00.00.b,Before 1871,1871,Unprovoked,Australia,Queensland,Brisbane River,Unknown,male,M,Survived,N,G.P. Whitley,ref. E.S. Hill,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.b-BrisbaneRiver.pdf +339,1871.00.00.a,Before 1871,1871,Unprovoked,Australia,New South Wales,Jervis Bay & Long Reef,Fishing,"2 males, aborigines",M,Feet grabbed,N,G.P. Whitley (1940),p.79,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.a-aborigines.pdf +338,1870.07.27,27-Jul-1870,1870,Unprovoked,Usa,North Carolina,"Smithville (now Southport), Brunswick County",Bathing,Giles Gordon,M,Foot bitten & toe severed,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.07.27-Gordon.pdf +337,1870.06.19,19-Jun-1870,1870,Unprovoked,India,"22ºN, 88ºE","Calcutta, Hoogly River at one of the ghats",Bathing,"male, a Hindu shopkeeper",M,"Left arm bitten, developed gangrene, surgically amputated",N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.19-HinduShopkeeper.pdf +336,1870.06.01,01-Jun-1870,1870,Unprovoked,India,West Bengal,"Hoogly River, Calcutta",Bathing / standing,"B., ""an Ooryah coolie""",M,"Right foot & leg bitten, surgically amputated",N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.01-Ooryah.pdf +335,1870.05.26.R,26-May-1870,1870,Unprovoked,Australia,Queensland,Moreton Island,Fishing,Master Lacy,M,bite to lower leg,N,Brisbane Courier,5/26/1870,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.26.R-Lacy.pdf +334,1870.05.18,18-May-1870,1870,Unprovoked,India,"22ºN, 88ºE","Hatkolah, Ghat,",Bathing,"H.E.S., a Hindu trader",M,4 irregular lacerated wounds on right arm,N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.18-HinduTrader.pdf +333,1870.05.11,11-May-1870,1870,Unprovoked,India,"22ºN, 88ºE",Near Sobah Bazar,Bathing,"male, a Hindu confectioner",M,3 lacerated irregular wounds on anterior left thigh,N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.11-HinduConfectioner.pdf +332,1870.01.09,09-Jan-1870,1870,Unprovoked,Australia,Queensland,Brisbane River,Bathing,John Saunders,M,Right thigh bitten,N,Brisbane Courier,1/15/1870,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.01.09-Saunders.pdf +331,1870.00.00,Early 1870s,1870,Invalid,Australia,Tasmania,Derwent River,Canoeing,Sub Lieut. Bowyer of H.M.S. Chile,M,Shark bit canoe in half & bit man. Note: There is an earlier story of FATAL shark attack in same river,N,C. Black,p.12; V.M. Coppleson (1958) pp. 104-105,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.00.00-Bowyer.pdf +330,1869.04.15.R,15-Apr-1869,1869,Unprovoked,Australia,South Australia,Cape Elizabeth,Net fishing,Joseph Simms,M,Foot bitten,N,The Mercury,4/151869,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.15.R-Simms.pdf +329,1869.04.10,10-Apr-1869,1869,Invalid,Unknown,Unknown,Unknown,Fell overboard,Christian Frederick,M,"FATAL, but shark involvement prior to death was not determined",Y,Nelson Examiner & New Zealand Chronicle,4/24/1869,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.10-Frederick.pdf +328,1868.09.01,01-Sep-1868,1868,Unprovoked,Italy,Adriatic Sea,Trieste,Unknown,male,M,FATAL,Y,A. De Maddalena; Radovanovi (1965),Soldo & Jardas (2000),http://sharkattackfile.net/spreadsheets/pdf_directory/1868.09.01-Trieste.pdf +327,1868.05.13,13-May-1868,1868,Unprovoked,India,Hoogly River,Ghat,Standing,male,M,"FATAL, upper left thigh, groin & buttocks severely bitten, leg surgically amputated at the hip ",Y,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.05.13-Hindoo.pdf +326,1868.01.17,17-Jan-1868,1868,Sea Disaster,Vietnam,Unknown,Cohong,A junk foundered,Unknown,M,FATAL,Y,Argus,5/26/1868,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.17-Vietnamese.pdf +325,1868.01.04.R,04-Jan-1868,1868,Sea Disaster,Australia,South Australia,Belfast (now Port Fairy),Fishing,"boat, occupants: John Griffiths & Thomas Johnson",Unknown,"No injury to occupants, shark's teeth embedded in keel",N,Nelson Examiner & New Zealand Chronicle,4/3/1868,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.04.R-PortFairy.pdf +324,1868.00.00.b,"24-Oct-1888, but took place around 1868",1868,Unprovoked,Australia,Torres Strait,South Aroo Island,Swimming,15 Pindo Islanders,M,FATAL,Y,The New Era,10/24/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.b-PindoIslanders.pdf +323,1868.00.00.a,1868 (?),1868,Unprovoked,New zealand,North Island,"Brickfield Bay, Auckland Harbour",Bathing close inshore,Cook,M,Thigh bitten,N,V.M. Coppleson (1958) (May refer to Thomas Cooke,see- 22-Dec-1862),http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.a-Cook.pdf +322,1867.08.22.R,22-Aug-1867,1867,Unprovoked,Egypt,Unknown,Port Said,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.22.R-PortSaid.pdf +321,1867.08.00,Aug-1867,1867,Unprovoked,Mexico,Veracruz ,Vera Cruz Harbor,boat from the Austrian ship Elizabeth,14 crewmen,M,FATAL,Y,Washington Star,12/12/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.00-ElizabethCrew.pdf +320,1867.06.26,26-Jun-1867,1867,Sea Disaster,Cuba,Villa Clara Province,Remedios,boat from ship Josephine capsized in squall,2 crew clinging to floating barrels,M,FATAL,Y,Cork Examiner,8/17/1867; Whaleman's Shipping List,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.06.26-JosephineCrewmen.pdf +319,1867.00.00,1867,1867,Unprovoked,Cuba,Matanzas Province (north coast),Matanzas,Painting a ship,male,M,"FATAL, pulled off float by shark, body not recovered ",Y,Washington Star,12/12/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.00.00-Cuba.pdf +318,1866.04.24.R,24-Apr-1866,1866,Invalid,Australia,Western Australia,Off De Grey river,Fell overboard,Mr. Groves,M,Thought to have been taken by a shark. Body was not recovered,Y,The Argus,4/24/1866,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.04.24.R-Groves.pdf +317,1865.09.02,02-Sep-1865,1865,Unprovoked,Usa,New York,"Greenport Sound, Long Island",Swimming alongside the schooner Catherine Wilcox,Peter Johnson,M,Multiple lacerations,N,P. Bailey; J. Gaudin,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.09.02-Johnson.pdf +316,1865.07.18.R,18-Jul-1865,1865,Unprovoked,Usa,Texas,Brazos,Bathing,Col. Bryant,M,FATAL,Y,Daily Index,7/18/1865,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.07.18.R-Col-Bryant.pdf +315,1865.03.01.R,01-Mar-1865,1865,Boating,South africa,Western Cape Province,St. Helena Bay,Fishing,boat: 4 occupants,M,"FATAL: Boat capsized, sharks took fishermen",Y,South African Advertiser,3/1/1865,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.03.01.R-St-HelenaBay.pdf +314,1865.00.00,1865,1865,Boating,Australia,South Australia,Semaphore,Boarding a ship,"R.H. Barrett, pilot holding steering oar of whaleboat",Unknown,"No injury to pilot, oar bitten",N,V.M. Coppleson (1958),p.186,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.00.00-Barrett.pdf +313,1864.09.18.R,18-Sep-1864,1864,Provoked,France,Alpes Maritime,Antibes,Dragging a shark,fisherman,M,Knee bitten PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.18.R-Antibes.pdf +312,1864.09.00,Sep-1864,1864,Unprovoked,Scotland,Edinburgh,Granton,Unknown,Mr. Ballard,M,Leg bitten 3 times,N,C. Moore citing R. Peirce,,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.00-Ballard.pdf +311,1864.08.12,12-Aug-1864,1864,Unprovoked,Usa,New York,Mahattan,Swimming,Henry Brice,M,Left thigh severely bitten,N,NY Times,8/13/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.12-Brice.pdf +310,1864.07.25,25-Jul-1864,1864,Unprovoked,Spain,Eastern Catalona,Badalona,Bathing,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.07.25-Badalona-Spain.pdf +309,1864.01.27.R,27-Jan-1864,1864,Unprovoked,Panama,Colón Province,Aspinwall (Colón),Coming ashore on a hawser,a sailor from ther RM steam packet Solent,M,FATAL,Y,Chicago Tribune,1/27/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.27.R-SailorSolent.pdf +308,1864.01.16.R,16-Jan-1864,1864,Unprovoked,New zealand,Foveaux Strait,Stewart Island,Boat swamped,male,M,FATAL,Y,Otago Witness,1/16/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.16.R-StewartsIsland.pdf +307,1864.01.02,02-Jan-1864,1864,Unprovoked,New zealand,North Island,"Brickfield Bay, Auckland Harbour",Standing / Bathing,Mr. Kelsall,M,Minor injury to hip,N,Wellington Independent,1/21/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.01-Kelsall.pdf +306,1864.00.00,1864,1864,Invalid,Australia,South Australia,"Corio Bay, Port Phillip",Swimming,"Mr. Warren, Jr.",M,"Presumed Fatal, but shark involvement not confirmed",Y,The Argus,11/24/1868,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.00.00-Warren.pdf +305,1863.12.14,14-Dec-1863,1863,Unprovoked,Guinea,Conakry Region,Ile de Loss,"Bathing near whaling ship (bark A. R. Tucker of New Bedford, Massachusetts)",Charles H. Petty,M,"FATAL ""Most of leg torn away . . . Buried on Island of DeLoss on the west coast of Africa""",Y,P. Purrington,Whaling Museum & Old Dartmouth Historical Society; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1863.12.14-Petty.pdf +304,1863.09.13.R,13-Sep-1863,1863,Unprovoked,Usa,South Carolina,"Stono Inlet, near Charleston, Charleston County",Bathing,male,M,Thrown into the air & bruised,N,NY Times,9/13/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.09.13.R-StonoInlet.pdf +303,1863.04.00,Apr-1863,1863,Unprovoked,Australia,Queensland,Caloundra Heads,Launching a boat,Mr. Barnsfield,M,FATAL,Y,Brisbane Courier,6/12/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.04.00-Barnsfield.pdf +302,1863.03.05,05-Mar-1863,1863,Unprovoked,Australia,Victoria,Brighton,Floating on back,William Thorn,M,Lacerations to right torso & ankle,N,Argus,3/10/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.03.05-Thorn.pdf +301,1863.02.05,05-Feb-1863,1863,Invalid,South africa,KwaZulu-Natal,"Back Beach, Durban","Swimming, caught in strong backwash & disappeared",Mr. J. Canham,M,Shark caught 9 days later contained human remains thought to be those of Canham,Y,M. Levine,GSAF; Times of Natal,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.02.05-Canham.pdf +300,1863.01.10,10-Jan-1863,1863,Unprovoked,Australia,New South Wales,"""Bellynahinch"" on the Manning River",Bathing,James Brown,M,FATAL,Y,G.P. Whitley,p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.01.10-Brown.pdf +299,1863.00.00.R,1863,1863,Unprovoked,Greece,Corfu,Unknown,Swimming,male,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R-Corfu +298,1862.12.22,22-Dec-1862,1862,Unprovoked,New zealand,North Island,"Soldier's Point, Brick Bay, Auckland",Swimming,Thomas Cooke,M,Right thigh and left foot severely bitten,N,V.M. Coppleson (1962),p.247,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.22-Cooke.pdf +297,1862.12.19.R,19-Dec-1862,1862,Unprovoked,Australia,Queensland,Brisbane River,Trying to catch a wounded bird,male,M,FATAL,Y,Courier,12/19/1862,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.19.R-Boy-Brisbane.pdf +296,1862.12.04,04-Dec-1862,1862,Invalid,New zealand,South Island,Lyttleton?,Unknown,Unknown,Unknown,Unknown,N,Bendigo Advertiser,1/3/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf +295,1862.08.15.R,15-Aug-1862,1862,Unprovoked,Spain,Unknown,A Spanish port,Bathing,The widowed Marchioness of Lendinez,F,Survived,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.15.R-Lendinez.pdf +294,1862.08.02.R,02-Aug-1862,1862,Invalid,Spain,Malaga,Fuengirola,Unknown,male,M,Possible drowning and scavenging,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.02.R-Fuengirola.pdf +293,1862.07.25,25-Jul-1862,1862,Unprovoked,Spain,Malaga,San Andres Beach,Swimming,Joaquin Rosales Martinez,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.25-Martinez.pdf +292,1862.07.14,14-Jul-1862,1862,Unprovoked,Spain,Cádiz,Off Algeciras,Unknown,male,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.14-Algeciras.pdf +291,1862.07.13,13-Jul-1862,1862,Unprovoked,Spain,Cádiz,Off Algeciras,Swimming alongside the SS Kearsarge,Tibbetts,M,FATAL,Y,C. Moore; W.H. Bedlam,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.13-Tibbetts.pdf +290,1862.06.03,03-Jun-1862,1862,Unprovoked,South africa,KwaZulu-Natal,Durban Harbor,Unknown,male,M,"""Very severe wounds""",N,Cape Argus,6/10/1862; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.06.03-male_Durban_Harbour.pdf +289,1862.05.05,05-May-1862,1862,Unprovoked,South africa,KwaZulu-Natal,Durban,Bathing,Mr. Cummings,M,Lacerations,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.05.05-Cummings.pdf +288,1862.00.00.b,Circa 1862,1862,Unprovoked,Usa,Hawaii,Puna,Unknown,A chiefess,F,Ankle bitten,N,Captain W. Young,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.b-Hawaii.pdf +287,1862.00.00.a,1862,1862,Unprovoked,Japan,Bonin Islands,Unknown,Boat of a Hawaiian brig was stove in by whale,boat crew,M,FATAL,Y,Otago Witness,10/28/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.a-BoninIslands.pdf +286,1861.11.10,10-Nov-1861,1861,Unprovoked,Unknown,Unknown,Unknown,Bathing alongside the American ship Thomas W. Sears,crew,M,FATAL,Y,The Argus,11/15/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.11.10-Singapore.pdf +285,1861.09.25.R,25-Sep-1861,1861,Unprovoked,Cuba,Unknown,60 miles off Trinidad de Cuba,Deserting the bark Nazarene,Caughlin (A.K.A. James Dilano),M,Lacerations,N,New York Times,10/5/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.09.25.R-deserter.pdf +284,1861.03.00,Mar-1861,1861,Unprovoked,New zealand,North Island,"Wynyard Wharf, Auckland Harbor",Bathing,a soldier,M,"""Severely bitten but recovered""",N,P. Tichener,,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.03.00-soldier.pdf +283,1861.02.12.R,12-Feb-1861,1861,Unprovoked,Equatorial guinea / cameroon,Fernando Po Island,Unknown,Swimming,William Looney,M,FATAL,Y,Daily Southern Cross,2/12/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.02.12.R-Looney.pdf +282,1861.01.15.R,15-Jan-1861,1861,Unprovoked,Australia,Queensland,Cleveland,Bathing,Dr. Lucas,M,Lacerations to fingers,N,Moreton Bay Courier,1/15/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.01.15.R-Lucas.pdf +281,1860.12.26,26-Dec-1860,1860,Unprovoked,Australia,New South Wales,"The Domain, Sydney",Bathing,Unknown,M,Lacerations to leg,N,The Argus,12/31/1860,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.12.26-TheDomain-Sydney.pdf +280,1860.08.01,01-Aug-1860,1860,Unprovoked,Usa,New York,Brooklyn,Swimming,Jerry Duke,M,Toe severed,N,New York Times,8/3/1860; Brooklyn News,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.08.01-JerryDuke.pdf +279,1860.04.00.b,Apr-1860,1860,Unprovoked,New zealand,North Island,"Princes Wharf, Auckland Harbor",Swimming,H. Cook,M,"Leg bitten, surgically amputated",N,P.Tichener,,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.b-Cook.pdf +278,1860.04.00.a,Apr-1860,1860,Unprovoked,New zealand,North Island,"St. George's Bay, Auckland Harbor",Bathing,H. Bradley,M,FATAL Foot & leg bitten,Y,P. Tichener,,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.a-Bradley.pdf +277,1860.03.27,27-Mar-1860,1860,Sea Disaster,Cook islands,Mangaia Island,Unknown,43-ton schooner Irene capsized & sank,a Cook's Islander,M,Probable drowning ,Y,Brisbane Courier,8/1/1866,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.27-Clark'sIslander.pdf +276,1860.03.11,11-Mar-1860,1860,Unprovoked,Bahamas,New Providence Island,Nassau,"In boat being towed by ship, Karnak",a pilot,M,FATAL,Y,New York Times,3/26/1860,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.11-KarnakPilot.pdf +275,1859.03.16,16-Mar-1859,1859,Unprovoked,Usa,Hawaii,Off Kawaihae,Fell overboard,J.G. Luther,M,FATAL,Y,Pacific Commercial Advertiser,3/24/1850,http://sharkattackfile.net/spreadsheets/pdf_directory/1859.03.16-Luther.pdf +274,1858.08.31,31-Aug-1858,1858,Invalid,Usa,New York ,"Staten Island, Richmond County",Swimming,male,M,Thought to have been taken by a shark/s. Body not recovered,Y,Weekly Hawk Eye And Telegraph,9/7/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.31-StatenIsland.pdf +273,1858.08.29,29-Aug-1858,1858,Invalid,Usa,New York ,"Staten Island, Richmond County",Swimming,3 males,M,Thought to have been taken by a shark/s. Bodies not recovered,Y,Weekly Hawk Eye And Telegraph,9/7/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.29-StatenIsland.pdf +272,1858.03.14,14-Mar-1858,1858,Unprovoked,Australia,Victoria,Hobson Bay,Bathing,Adolphe Bollander,M,FATAL,Y,Moreton Bay Courier,3/31/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.03.14-Bollander.pdf +271,1858.01.09.R,09-Jan-1858,1858,Unprovoked,Tonga,Vava'u,Unknown,Jumped overboard while intoxicated,crewman from the Shepherdess,M,FATAL,Y,Sydney Morning Herald,1/9/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.09.R-Tonga.pdf +270,1856.11.30,30-Nov-1856,1856,Unprovoked,Unknown,Unknown,Unknown,Unknown,Cornelius Conhlren,M,FATAL,Y,Hartford Daily Courant,1/29/1857,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.30-Conhlren.pdf +269,1856.11.25.R,25-Nov-1856,1856,Unprovoked,Unknown,Unknown,Unknown,Swimming,a seaman,M,FATAL,Y,The Argus,11/25/1856,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.25.R-Fiji.pdf +268,1856.06.21.R,21-Jun-1856,1856,Unprovoked,England,Isle of Wight,Colwell Bay,Swimming,male,M,Survived,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.06.21.R-Isle-of-Wight.pdf +267,1856.02.06,06-Feb-1856,1856,Unprovoked,Australia,Victoria,Point Henry,Swimming,a seaman from the John and Lucy,M,Severe bite to thigh. Not known if he survived,UNKNOWN,The Argus,2/8/1856,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.02.06-Point-Henry.pdf +266,1855.11.11,11-Nov-1855,1855,Unprovoked,Australia,Victoria,Melbourne,Swimming,a seaman from the whaling brig Curlew,M,FATAL,Y,Maitland Mercury,11/14/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.11.11-Curlew-seaman.pdf +265,1855.09.30,30-Sep-1855,1855,Sea Disaster,Usa,North Carolina,Cape Hatteras,ship William Penn grounded & broke apart,sailor,M,Foot bitten,N,NY Times,10/12/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.09.30-WilliamPenn.pdf +264,1855.07.28,28-Jul-1855,1855,Unprovoked,Unknown,Unknown,Unknown,Bathing,"a young boy, one of the crew of the Post Boy",M,FATAL,Y,Maitland Mercury,8/25/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.07.28-PostBoy-sailors.pdf +263,1855.04.09.R,09-Apr-1855,1855,Unprovoked,Australia,South Australia,Port Wakefield,Fell overboard from the Malacca,child,F,FATAL,Y,The Argus,4/9/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.04.09.R-Malacca-child.pdf +262,1855.03.28,28-Mar-1855,1855,Unprovoked,Australia,South Australia,Port Wakefield,Fell overboard from the Sobella,Master Coleman,M,FATAL,Y,The Register,4/20/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.03.28-Coleman.pdf +261,1855.02.12.R,12-Feb-1855,1855,Unprovoked,Solomon islands,Makira-Ulawa Province,Makira Island (Formerly San Cristobal),Swimming ,male,M,FATAL,Y,The Hobarton Mercury,2/12/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.02.12.R-Native.pdf +260,1855.00.00,Circa 1855,1855,Invalid,Australia,New South Wales,Sydney Harbor,Swimming ,C.T. Clark,M,"No injury & although reported as an attack, it was simply an encounter",N,Brighton Southern Cross,2/13/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.00.00-Clark.pdf +259,1854.04.08.R,08-Apr-1854,1854,Unprovoked,Greece,Corfu ,Unknown,Swimming,Hanson,M,Leg severed at knee,N,South Australian Register,5/8/1854,http://sharkattackfile.net/spreadsheets/pdf_directory/1854.04.08.R-Hanson.pdf +258,1853.11.08,08-Nov-1853,1853,Unprovoked,Australia,New South Wales,Unknown,Swimming,John Peters,M,Leg bitten,N,Maitland Mercury,11/19/1853,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.11.08-Peters.pdf +257,1853.09.28,28-Sept-1853,1853,Unprovoked,Usa,North Carolina,"Morehead, Carteret County",Commercial Salvage Diving,Alfetto,M,No injury. Copper breastplate & harness bitten,N,C. Creswell,GSAF; Washington Post,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.09.28-Alfetto.pdf +256,1853.07.13.R,13-Jul-1853,1853,Unprovoked,Usa,South Carolina,"Charleston Harbor, Charleston County",Swimming,male,M,FATAL,Y,Democratic Banner 8/5/1853,,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.07.13.R-Charleston.pdf +255,1853.00.00.d,1853,1853,Unprovoked,Australia,Queensland,Moreton Bay,Fell into the water,"James Hexton, pilot",M,FATAL,Y,Brisbane Courier,1/28/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.d-Hexton.pdf +254,1853.00.00.c,Sep or Oct-1853,1853,Unprovoked,Usa,North Carolina,"Morehead, Carteret County",Hard hat diving,Mark Dare,M,"No injury, copper breastplate punctured",N,Fort Wayne Gazette,1/24/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.c-MarkDare.pdf +253,1853.00.00.b,1853,1853,Invalid,Usa,South Carolina,Off the Battery,He was fighting a shark when his boat capsized & he disappeared,a young man,M, His gold watch was later found in a shark but death may have been due to drowning,Y,W. H. Gregg,p.21 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.b-battery.pdf +252,1853.00.00.a,1853 or 1854,1853,Unprovoked,Usa,Florida,"Near Fernandina Bar, Nassau County ",Knocked overboard,Captain George Jacob Hanscheldt,M,FATAL,Y,W. H. Gregg,p.22 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.a-Hanscheldt.pdf +251,1852.12.19,19-Dec-1852,1852,Invalid,Australia,New South Wales,"Clark's Island, Sydney Harbor",Swimming,Edward Graham,M,Shark involvement prior to death was not confirmed,Y,Maitland Mercury & Hunter River General Advertiser,12/25/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.12.19-Graham.pdf +250,1852.10.23.R,23-Oct-1852,1852,Provoked,Pacific ocean,Between Australia & USA,Unknown,Fishing,William Stannard,M,Foot bitten by hooked shark PROVOKED INCIDENT,N,Maitland Mercury,10/23/1852,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.23.R-Stannard.pdf +249,1852.10.09.R,09-Oct-1852,1852,Unprovoked,Australia,New South Wales,Coalcliff,Fell overboard,James Rogers,M,FATAL,Y,Maitland Mercury,10/09/1852,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.09.R-Rogers.pdf +248,1852.08.07,07-Aug-1852,1852,Unprovoked,Tonga,Tongatapu,Unknown,Fell overboard,Charles Weymouth,M,FATAL,Y,Courier,1/3/1853,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.07-Weymouth.pdf +247,1852.08.00,Aug-1852,1852,Unprovoked,Usa,Virginia,Norfolk,Swimming,a deserter from the U.S. Pennsylvania,M,FATAL,Y,Dixon Telegraph,8/14/1852,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.00-Sailor.pdf +246,1852.07.28,28-Jul-52,1852,Invalid,Unknown,Unknown,Unknown,Unknown,Karen Bredesen Stræte ,F,Death preceded shark involvement,Y,Norway Heritage,,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.07.28-Karen.pdf +245,1852.05.24,24-May-1852,1852,Unprovoked,South africa,KwaZulu-Natal,Durban Bay,Swimming from capsized boat,Mr. Messum's servant,M,FATAL,Y,M. Levine,GSAF; Natal Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.05.24-Messum-servant.pdf +244,1852.02.26,26-Feb-1852,1852,Sea Disaster,South africa,Western Cape Province,Danger Point,Wreck of the steamship Birkenhead,Unknown,M,"FATAL. All of the women & children on board survived, but many of the 445 men that perished were taken by sharks",Y,D. Davies,pp.182-184; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.02.26-Birkenhead.pdf +243,1852.01.22,"""Anniversary Day"" 22-Jan-1850 or 1852",1852,Unprovoked,New zealand,North Island,Wellington Harbor,Swimming,"Johnny Balmer, a soldier from the 65th Regiment",M,"FATAL, posterior thigh bared to femur, kneecap lacerated ",Y,Ref: H. Blake,Sixty Years in New Zealand,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.01.22-Balmer.pdf +242,1852.00.00,1852,1852,Unprovoked,Usa,South Carolina,"Mount Pleasant, Charleston County","Vessel capsized, wading ashore carrying an oar",Charles Chambers,M,"FATAL, body was not recovered",Y,W. H. Gregg,p. 21,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.00.00-Chambers.pdf +241,1851.06.19.R,19-Jun-1851,1851,Unprovoked,Mexico,Oaxaca,Unknown,Bathing,John Gray & another member of the Tehuantepec surveying party,M,FATAL,Y,Burlington Hawk-Eye,6/19/1851,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.06.19.R-JohnGray.pdf +240,1851.03.08.R,Mar-1851,1851,Unprovoked,Usa,Hawaii,Honolulu Harbor,Swimming,James Kinney,M,FATAL,Y,The Friend (Honolulu),3/8/1851,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.03.08.R-Kinney.pdf +239,1851.00.00,1851,1851,Unprovoked,Usa,California,"San Francisco Bay (or San Leandro Bay), near cannery, Alameda County",Hard hat diving,William Cortigan,M,3 toes severed,N,The Perry Chief,10/16/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.00.00-Cortigan.pdf +238,1850.00.00,1850,1850,Unprovoked,Nicaragua,Lake Nicaragua (fresh water),"Granada, Granada Department",Bathing,Unknown,M,FATAL,Y,E. Squier,1852,http://sharkattackfile.net/spreadsheets/pdf_directory/1850.00.00-LakeNicaragua.pdf +237,1849.12.09,09-Dec-1849,1849,Unprovoked,Australia,New South Wales,Sydney Harbor,Unknown,male,M,FATAL,Y,T.H. Huxley's Diary,1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.09-SydneyHarbour.pdf +236,1849.12.01,01-Dec-1849,1849,Unprovoked,Australia,New South Wales,"Woolloomooloo, Sydney Harbor (Estuary)",Bathing,a sailor from the steamship Eagle,M,FATAL,Y,Moreton Bay Courier,12/15/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.01-Sailor.pdf +235,1849.09.19,19-Sep-1849,1849,Unprovoked,Australia,Victoria,Warrnambool,Swimming,a sailor from the schooner Brother,M,FATAL,Y,Maitland Mercury & Hunter River General Advertiser,10/10/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.09.19-Brother-seaman.pdf +234,1849.06.08.b,08-Jun-1849,1849,Unprovoked,Usa,Florida,"Pensacola, Escambia County",Attempting to rescue woman seized by shark,Mr. Mansfield,M,FATAL,Y,Adams Sentinel,8/6/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.b-Mansfield.pdf +233,1849.06.08.a,08-Jun-1849,1849,Unprovoked,Usa,Florida,"Pensacola, Escambia County",Bathing,Mrs. Cracton,F,FATAL,Y,Adams Sentinel,8/6/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.a-Cracton.pdf +232,1849.01.27,27-Jan-1849,1849,Invalid,Australia,New South Wales,Sydney,boat capsized,William Henry Elliott,M,Torso bitten but may have been postmorem,Y,Maitland Mercury,2/3/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.01.27-Elliot.pdf +231,1848.08.31,31-Aug-1848,1848,Unprovoked,Usa,Maryland,Patapsco River,Swimming,male,M,Left leg severely bitten,N,Adams Sentinel,9/4/1848,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.08.31-PatapscoRiver.pdf +230,1848.07.00,Jul-1848,1848,Unprovoked,England,Norfolk,Hunstanton,Standing,male,M,Shark struck him with its tail,N,C. Moore,citing R. Peirce,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.07.00-Hunstanton.pdf +229,1847.11.30,30-Nov-1847,1847,Unprovoked,Australia,Queensland,Brisbane River,Swimming,James Stewart,M,Thigh & calf bitten,N,Moreton Bay Courier,12.4/1847,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.11.30-Stewart.pdf +228,1847.07.19,19-Jul-1847,1847,Unprovoked,Greece,Corfu,Off the harbor wall at Mandrakina,Swimming,"William Mills, a British solider, 36th Regiment",M,FATAL,Y,I. Fergusson; A. Buttigieg; M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.19-Mills.pdf +227,1847.03.11,11-Mar-1847,1847,Sea Disaster,Australia,Queensland,Moreton Bay,Wreck of the Sovereign,Spicer,M,Foot severed,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.03.11-Spicer.pdf +226,1847.00.00.c,in 1847,1847,Unprovoked,Australia,Queensland,Moreton Bay,Unknown,a native,Unknown,Foot severed at ankle joint,N,Narrative of the Voyage of HMS Rattlesnake 1846-1850,,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.c-HMS-Rattlesnake.pdf +225,1847.00.00.b,1847,1847,Invalid,Usa,South Carolina,"Charleston Harbor, Charleston County",Swimming,a young sailor,M,"Disappeared, thought to have been taken by a shark",Y,W.H. Gregg,pp. 21-22,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.b-sailor.pdf +224,1847.00.00.a,Ca. 1847,1847,Unprovoked,Usa,South Carolina,Unknown,Boating,adult,M,Hand severed,N,W.H. Greg,p.21,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.a-SouthCarolina.pdf +223,1846.12.08,08-Dec-1846,1846,Sea Disaster,Mexico,Veracruz,Vera Cruz,Wreck of the USS Somers,Unknown,M,"FATAL, some were taken by sharks",Y,Report of the loss of the Somers,J.H.W.,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.12.08-Somers.pdf +222,1845.12.26,26-Dec-1845,1845,Unprovoked,Australia,New South Wales,Newcastle ,Fishing,John Williams,M,FATAL,Y,The Maitland Mercury & Hunter River General Advertiser 11/18/1893,,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.12.26-Williams.pdf +221,1845.09.16.R,16-Sep-1845,1845,Unprovoked,Unknown,Unknown,Unknown,Unknown,a school teacher,M,Leg severed,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.16.R-England.pdf +220,1845.09.10.R,10-Sep-1845,1845,Unprovoked,Usa,Florida,"Pensacola Bay, Escambia County",Seine netting,Nickerson,M,FATAL,Y,Tioga Eagle,9/10/1845,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.10.R-Nickerson.pdf +219,1845.00.00.R,1845,1845,Unprovoked,Unknown,Unknown,Unknown,Unknown,"""The Queen's Chaplain""",M,FATAL,Y,Journal of an African Cruiser,,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.00.00.R-SierraLeone.pdf +218,1844.07.20.,20-Jul-1844,1844,Unprovoked,Unknown,Unknown,Unknown,Boat capsized,a seaman from HMS Isis,M,FATAL,Y,Colonial Times,5/24/1845,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.20-Isis-seaman.pdf +217,1844.07.16.R,1844.07.16.R,1844,Unprovoked,Algeria,Unknown,Cape Matifou,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.16.R-Algeria.pdf +216,1844.05.24,24-May-1844,1844,Unprovoked,Coast of africa,Island of St. Thomas,Unknown,Fell overboard,"Martin, coxswain of the USS Saratoga",M,"FATAL, taken immediately by a shark ",Y,Tioga Eagle,7/31/1844 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.05.24-Saratoga.pdf +215,1844.00.00,1844,1844,Unprovoked,Unknown,Unknown,Unknown,"Portuguese seaman fell overboard. Boat lowered to pick up with 1st mate & 4 crew, but done hurriedly & all were thrown into the water. As a second boat was lowered, a shark went after the 1st mate but he was rescued. Then the shark went after Mr. Andrews ",Mr. Andrews,M,FATAL,Y,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.00.00-Andrews.pdf +214,1842.07.06,06-Jul-1842,1842,Provoked,Usa,New Jersey,"Absecon, Atlantic County",Harassing a shark,male,Unknown,Lacerations to leg PROVOKED INCIDENT,n,New York Evening Post,7/11/1842,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.06-Absecon.pdf +213,1842.00.00.b,1842,1842,Unprovoked,India,Tamil Nadu, Chennai (formerly Madras),Washed off catamaran in the surf,male,M,FATAL,Y,Tioga Eagle,10/26/1842,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.b-Hindoo.pdf +212,1842.00.00.a,1842,1842,Unprovoked,Australia,New South Wales,Sydney Harbor,"Unknown, but it was said to be the ""First known attack in Sydney Harbour""",male,M,Recovered,N,V.M. Coppleson (1933),p.450,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.a-1st-SydneyHarbour.pdf +211,1841.03.27,27-Mar-1841,1841,Unprovoked,Australia,New South Wales,"Cockatoo Island, Sydney",Bathing,Andrew Goggin,M,FATAL,Y,Sydney Gazette,4/27/1841,http://sharkattackfile.net/spreadsheets/pdf_directory/1841.03.27-Goggin.pdf +210,1840.12.00,Dec-1840,1840,Unprovoked,Australia,New South Wales,"Off Domain, Sydney Harbor",Swimming,male,M,FATAL,Y,G.P. Whitley,p.259; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.12.00 - Domain.pdf +209,1840.09.18.R,18-Sep-1840,1840,Unprovoked,Fiji,Viti Levu Island,Rewa ,Unknown,male,M,Arms & legs severed,N,Hobart Town Courier,9/18/1840,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.09.18.R-Fiji.pdf +208,1840.02.00,Feb-1840,1840,Boat,Australia,Tasmania,George Town Cove,Sailing,A dinghy,Unknown,"No injury to occupant, shark seized stern post",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.02.00-dinghy.pdf +207,1840.00.00.a,Ca. 1840,1840,Unprovoked,Usa,South Carolina,"Charleston Harbor, Charleston County",Accidentally thrown overboard & treading water while awaiting rescue,crew member of a pilot boat,M,"FATAL, body was not recovered",Y,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.00.00.a-pilot.pdf +206,1839.11.17,17-Nov-1839,1839,Invalid,Australia,New South Wales,Unknown,Unknown,Mr.Johnson (male),M,"""Drowned, 2 days later his head was bitten off by a shark""",Y,H.D. Baldridge,p.146,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.11.17-Johnson.pdf +205,1839.04.14,14-Apr-1839,1839,Unprovoked,Cuba,Matanzas Province (north coast),Matanzas,Sitting on gunwale of boat,sailor,M,FATAL,Y,Daily Courant,5/31/1839,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.04.14-Matanzas.pdf +204,1839.00.00.b,1839/1840,1839,Unprovoked,Australia,South Australia,"Horn Point, Lady's Bay",Attempting to rescue crew after whale upset their boat,Captain Wishart of the whaler Wallaby,M,FATAL,Y,G. Dunderdale,The Book of the Bush,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.b-Wishart.pdf +203,1839.00.00.a,Ca. 1839,1839,Unprovoked,Fiji,Viti Levu Island,Rewa ,Unknown,"Joeli Bulu, missionary",M,Survived,N,J. Garrett; T. Kanailagi,,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.a-Pulu.pdf +202,1837.09.03,09-Sep-1837,1837,Unprovoked,Usa,South Carolina,"Magwoods Wharf, Charleston Harbor, Charleston County",Bathing,a young boy from the Plymouth,M,Right foot bittten,N,C. Creswell,GSAF; J. Hair,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.09.03-Plymouth-boy.pdf +201,1837.01.17,17-Jan-1837,1837,Unprovoked,Australia,New South Wales,Macleay River,Washing his feet,Alfred Australia Howe,M,"FATAL Injured by shark, died of tetanus",Y,Gazette (Sydney) 1/31/1837; Proc. Royal Aust. Hist. Scty,I,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.01.17-Howe.pdf +200,1837.00.00.a,Ca. 1837,1837,Invalid,Usa,South Carolina,“Southern Wharf”,Unknown,"adult male, a sailor",M,Shark caught contained human remains,Y,W. H. Gregg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.00.00.a-remains.pdf +199,1836.07.26.R,1836.07.26.R,1836,Invalid,Unknown,Unknown,Unknown,Unknown,Unknown,Unknown,"Shark caught, contained human remains",Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.07.26.R-Spain.pdf +198,1836.00.00.a,1836.00.,1836,Unprovoked,Australia,South Australia,Unknown,Unknown,Unknown,Unknown,"No details, it was the year the first settlers came ashore in Holdfast Bay, Port Pirie",UNKNOWN,A. Sharpe,p.119,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.00.00.a-HoldfastBay.pdf +197,1835.02.21.R,21-Feb-1835,1835,Unprovoked,Vanuatu,Sanma Province,"Bay of Yago, Espiritu Santo Island",Bathing,John McKeig,M,FATAL,Y,Sydney Gazette,2/21/1835,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.02.21.R-McKeig.pdf +196,1835.01.06,06-Jan-1835,1835,Unprovoked,Tasman sea,35º39 : 165º8',Alongside the whaler Marianne,Hooking into a whale,male,M,"""Savagely bitten"" but apparently survived",N,G.P. Whitley,p. 259,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.01.06-Whaler.pdf +195,1834.07.15.R,15-Jul-1834,1834,Unprovoked,French polynesia,Society Islands,Tahiti,Swimming,Kaugatava Orurutm,F,FATAL,Y,Republican Banner,7/15/1834,http://sharkattackfile.net/spreadsheets/pdf_directory/1834.07.15.R-Tahiti.pdf +194,1832.06.04,04-Jun-1832,1832,Unprovoked,Australia,New South Wales,"South Head, Sydney",Fishing,Aboriginal female,F,Leg severed,N,Sydney Herald,6/11/1832,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.06.04-AboriginalWoman.pdf +193,1832.01.23.R,23-Jan-1832,1832,Unprovoked,Australia,New South Wales,Sydney,Bathing,male,M,Laceration to leg,N,Sydney Herald,1/23/1832,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.01.23.R-Wilshire-slaughter-house.pdf +192,1831.01.22.R,22- Jan-1831,1831,Invalid,Australia,Tasmania,Hobart,"Boat capsized, clinging to line",Robert Dudlow,M,"Drowned, no shark involvement",Y,C. Black,GSAF; Sydney Gazette,http://sharkattackfile.net/spreadsheets/pdf_directory/1831.01.22.R-Dudlow.pdf +191,1830.07.26,26-Jul-1830,1830,Unprovoked,Usa,Massachusetts,"Swampscott, Essex County","Fishing from dory, shark upset boat & he fell into the water",Joseph Blaney,M,FATAL,Y,Huron Sun,8/3/1830,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.26-JosephBlaney.pdf +190,1830.07.02.R,02-Jul-1830,1830,Unprovoked,India,Tamil Nadu,Madras,Washing a dog,male,M,FATAL,Y,Madras Courier,7/2/1830,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.02.R-Madras.pdf +189,1830.04.30,30-Apr-1830,1830,Unprovoked,India,Tamil Nadu,St. Thomé,Bathing,Ensign Bromwick,M,FATAL,Y,Madras Gazette,5/1/1830,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.04.30-Bromwick.pdf +188,1829.07.03.R,03-Jul-1829,1829,Unprovoked,Sierra leone,Western Area,Unknown,Unknown,Thomas Cargill,M,Both hands severed,N,Hagerstown Mail,7/3/1829,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.07.03.R-Cargill.pdf +187,1829.00.00,1829,1829,Sea Disaster,Caribbean sea,Unknown,Between St. Bart's and Saba,Wreck of the schooner Driver,Ned & Pawn,M,FATAL x 2,Y,The Times,12/14/1829,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.00.00-Ned-Pawn.pdf +186,1828.09.28,28-Sep-1828,1828,Unprovoked,Sierra leone,Western Area,"River Sierra Leone, 35 miles upriver from Freetown","British ship, Britannia, was loading lumber. He was bathing","Thomas Corrigle, an apprentice from the ship",M,"Left arm severed 2.5"" from elbow, groin, abdomen, right forearm & hand lacerated, flesh removed from thigh, baring femur. Both arms surgically amputated: left arm above elbow, right arm above wrist. Survived",N,Account by J. Boyle,,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.09.28-Corrigle.pdf +185,1828.00.00,1828,1828,Unprovoked,Usa,Hawaii,"Uo, Lahaina, Maui",Surfing,Male,M,FATAL,Y,J. Borg,p.68; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1828.00.00-male.pdf +184,1827.06.00.b,Jun-1827,1827,Unprovoked,Sierra leone,Western Area ,Tombo Island in the Sierra Leone River,Swimming,"A boy, one of the crew of the ship Thomas Gelston",M,The boy's foot was bitten,N,Edinburgh Advertiser. 9/12/1828,,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.b-boy-crew-Gelston.pdf +183,1827.06.00.a,Jun-1827,1827,Unprovoked,Sierra leone,Western Area ,Tombo Island in the Sierra Leone River,Swimming,"William Davis, of the ship Thomas Gelston",M,Davis' leg was severed,N,Edinburgh Advertiser. 9/12/1828,,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.a-Davis.pdf +182,1827.01.11.R,11-Jan-1827,1827,Unprovoked,Unknown,Unknown,Unknown,Jumped overboard,Thomas Laurington,M,FATAL,Y,Sydney Gazette,1/11/1827,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.01.11.R-Laurington.pdf +181,1827.00.00,1827,1827,Unprovoked,Egypt,Unknown,Alexandria,Unknown,Two men,M,Remains of the men were recovered from a +17-foot shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.00.00-Alexandria.pdf +180,1826.12.00,Dec-1826,1826,Unprovoked,Brazil,Paraiba,Paraiba,Unknown,a seaman from the ship Beverly,M,Leg severed,N,Book of the Ocean,,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.12.00-seaman-Beverly.pdf +179,1826.11.00,Ca. Nov-1826,1826,Unprovoked,Ghana,Cape Coast,Unknown,Bathing,a seaman from HM Redwing,M,FATAL,Y,Sydney Gazette and New South Wales Advertiser,7/25/1827 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.11.00-seaman-Redwing.pdf +178,1826.08.28,28-Aug-1826,1826,Sea Disaster,Unknown,Unknown,Unknown,HBM Magpie foundered in a squall,Lieutenant Edward Smith,M,FATAL ,Y,Edinburgh Advertiser. 10/20/1826,,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.28-Smith.pdf +177,1825.00.00.b,1820s,1825,Unprovoked,Australia,Tasmania,"Sweet Water Point, Pitt Water",Swimming,"""Amphibious Jack"" male",M,FATAL,Y,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.b-AmphibiousJack.pdf +176,1825.00.00,Ca . 1825,1825,Invalid,Australia,Western Australia,South Bruny Island,Unknown,Nelson,M,"Arms severed, but he survived",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.a-Nelson.pdf +175,1822.04.15,15-Apr-1822,1822,Unprovoked,Nigeria,Rivers State,Bonny River,Unknown,slaves,Unknown,FATAL,Y,Times of London,8/5/1822,http://sharkattackfile.net/spreadsheets/pdf_directory/1822.04.15-Slaver.pdf +174,1819.07.08.R,08-Jul-1819,1819,Invalid,Spain,Unknown,Cadiz,Unknown,male,M,No injury / No attack,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1819.07.08-Cadiz.pdf +173,1818.05.22.R,22-May-1818,1818,Invalid,Norway,Unknown,Herøy,Unknown,male,M,Probable drowning ,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1818.05.22.R-Norway.pdf +172,1817.06.24,24-Jun-1817,1817,Unprovoked,Usa,South Carolina,"Charleston Harbor, Charleston County",Swimming,Jemmy,M,FATAL,Y,The Times,6/25/1817,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.24-Jemmy.pdf +171,1817.06.15,15-Jun-1817,1817,Unprovoked,India,Maharashtra,Bombay (now Mumbai),Swimming,Charles Anderson,M,FATAL,Y,Edinburgh Advertiser. 2/3/1818,,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.15-Anderson.pdf +170,1817.05.11,11-May-1817,1817,Unprovoked,Sri lanka,Western Province,Colombo,Swimming,William May,M,FATAL,Y,Edinburgh Advertiser. 11/4/1817; R. DeSilva,,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.05.11-May.pdf +169,1817.02.22,22-Feb-1817,1817,Unprovoked,Sri lanka,Unknown,Gulf of Mannar,Conch diver,male,M,Abdomen bitten,N,J. Kennedy,,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.02.22-Mannar.pdf +168,1816.09.03.R,03-Sept-1816,1816,Unprovoked,Usa,Rhode Island,Bristol Harbor,Swimming,male,Unknown,FATAL,Y,Connecticut Courant,9/3/1816,http://sharkattackfile.net/spreadsheets/pdf_directory/1816.09.03.R-Rhode-Island.pdf +167,1812.07.00,May 1812,1812,Unprovoked,England,Devon,Mill Bay,Swimming,soldier from the Lancashire militia,M,Both legs injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1812.07.00-Mill-Bay.pdf +166,1811.03.01,01-Mar-1811,1811,Unprovoked,Unknown,Unknown,Unknown,Fell overboard,John Walker,M,FATAL,Y,Journal of Captain Marryat,,http://sharkattackfile.net/spreadsheets/pdf_directory/1811.03.01-John-Walker.pdf +165,1807.01.12,12-Jan-1807,1807,Unprovoked,Australia,New South Wales,"Cockle Bay, Sydney Harbour",Unknown,male,M,Survived,N,J. Green,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1807.01.12-Cockle-Bay.pdf +164,1805.09.00,Sep-1805,1805,Invalid,Usa,New York,"Sag Harbor, Suffolk County",Unknown,Unknown,M, human remains (male) found in shark’s gut,Y,S.L. Mitchill (1814),,http://sharkattackfile.net/spreadsheets/pdf_directory/1805.09.00-NY.pdf +163,1804.02.26.R,26-Feb-1804,1804,Boat,Australia,New South Wales,"Georges Head, off Port Jackson",Unknown,boat,Unknown,No injury to occupants,N, Sydney Gazette,2/26/1804 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1804.02.26-boat-GeorgesHead.pdf +162,1803.03.00,Mar-1803,1803,Unprovoked,Australia,Western Australia,"Hamelin Harbour, at Faure Island",Unknown,M. Lefevre & a sailor (rescuer),M,Shark knocked him down & tore clothing of the rescuer,N,F. Peron ref in G.P. Whitley (Fishes of Australia),p.13 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1803.03.00-Lefevre.pdf +161,1800.00.00,1800,1800,Unprovoked,Seychelles,St. Anne,Unknown,a corsair's boat was overturned,Unknown,F,"FATAL, all onboard were killed by sharks",Y,V. C. Harvey-Brain,,http://sharkattackfile.net/spreadsheets/pdf_directory/1800.00.00-Corsair-boat.pdf +160,1791.00.00,1791,1791,Unprovoked,Australia,New South Wales,Port Jackson,Unknown,"female, an Australian aboriginal",F,"FATAL, ""bitten in two""",Y,G.P. Whitley; D. Baldridge,p.162,http://sharkattackfile.net/spreadsheets/pdf_directory/1791.00.00-aboriginal woman.pdf +159,1788.05.10,10-May-1788,1788,Boat,Australia,New South Wales,Sydney Harbor,Fishing,boat,Unknown,"No injury to occupants, shark bit oar and rudder",N,G.P. Whitley citing J. Cobley,Sydney Cove,http://sharkattackfile.net/spreadsheets/pdf_directory/1788.05.10-Sydney +158,1787.07.05,05-Jul-1787,1787,Unprovoked,St helena,Unknown,Landing Place,Swimming,Private Isaac Hicksled,M,FATAL,Y,H.R. Janisch (1885),Extracts from the St. Helena Archives,http://sharkattackfile.net/spreadsheets/pdf_directory/1787.07.05-Hicksled.pdf +157,1785.09.26.R,26-Sep-1785,1785,Unprovoked,England,Sussex,Brighton,Unknown,Unknown,M,Human remains recovered from shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1785.09.26.R-Brighton.pdf +156,1779.00.00,1779,1779,Unprovoked,Usa,Hawaii,"Maliu, Hawai'i",Surfing,Nu'u-anu-pa'a hu,M,"FATAL, buttock lacerated ",Y,G.H. Balazs; J. Borg,p.68; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1779.00.00-Hawaii.pdf +155,1776.00.00.R,1776,1776,Unprovoked,Unknown,Unknown,Unknown,Murder,African slave,M,FATAL,Y,T. Pennant,,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00.R-Slave.pdf +154,1776.00.00.b,1776,1776,Boat,Unknown,Unknown,Unknown,Unknown,Occupants of skin boats,Unknown,FATAL,Y,T. Pennant,,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00-Greenland.pdf +153,1771.07.12.R,12-Jul-1771,1771,Unprovoked,Usa,Unknown,Damiscotte,Fishing,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1771.07.12.R-Damiscotte.pdf +152,1767.00.00,1767,1767,Invalid,France,Côte d'Azur ,St. Tropez,Bathing,Samuel Matthews,M,Lacerations to arm & leg,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1767.00.00-Matthews.pdf +151,1764.00.00,1764,1764,Unprovoked,Spain,Unknown,Guadalquivir River,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1764.00.00-Spain.pdf +150,1758.00.00,1758,1758,Unprovoked,Unknown,Unknown,Unknown,"Fell overboard from a frigate & was swallowed by a shark. The captain fired a gun at the shark, and ""the creature cast the man out of his throat.""",sailor,M,"""He was taken up alive and but little injured."" ",N,A.M. Hodgkin,,http://sharkattackfile.net/spreadsheets/pdf_directory/1758.00.00-Mediterranean.pdf +149,1749.00.00,1749,1749,Unprovoked,Cuba,Havana Province,Havana Harbor,Swimming,Brook Watson,M,"Right leg severed at knee. In 1796 he became Lord Mayor of London. In 1778 he commissioned American artist, John Singleton Copley, to paint the incident: Watson and the Shark",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1749.00.00-Watson.pdf +148,1755.00.00,1755,1755,Unprovoked,Sweden,Skagerrak arm of the North Sea,Bohuslän,Unknown,Fishermen,M,Unknown,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1755.00.00-Sweden.pdf +147,1748.00.00,1748,1748,Unprovoked,Panama,Las Perlas archipelago,Taboga & Isla del Rey,Pearl diving,African slaves,M,FATAL,Y,J. Castro,et al,http://sharkattackfile.net/spreadsheets/pdf_directory/1748.00.00.R-LasPerlas.pdf +146,1742.12.17,17-Dec-1742,1742,Unprovoked,Barbados,Unknown,Carlisle Bay,Swimming,2 impressed seamen,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1742.12.17-AdviceSeamen.pdf +145,1738.04.06.R,06-Apr-1738,1738,Unprovoked,Italy,Sicily,Strait of Messina,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1738.04.06.R-Messina.pdf +144,1733.00.00,1733,1733,Invalid,Iceland,Bardestrand,Talkknefiord,Unknown,Unknown,Unknown,"Partial hominid remains recovered from shark, probable drowning and scavenging",Y,E. Olafsen,,http://sharkattackfile.net/spreadsheets/pdf_directory/1733.00.00-Iceland.pdf +143,1721.06.00,June 1721,1721,Unprovoked,Italy,Sardinia,"Ponte della Maddelena,",Swimming,male,M,"FATAL, partial remains recovered from shark’s gut",Y,F. Ricciardi; A. De Maddalena. ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1721.06.00-Maddalena.pdf +142,1703.03.26,26-Mar-1703,1703,Unprovoked,Barbados,Southwest coast,Carlisle Bay,Swimming,"Samuel Jennings, a deserter from the British frigate Milford",M,"Hand and foot severely bitten, surgically amputated",N,W.R.Cutter,Vol.1,http://sharkattackfile.net/spreadsheets/pdf_directory/1703.03.26-Jennings.pdf +141,1700.00.00.c,1700s,1700,Unprovoked,France,Unknown,Nice,Unknown,child,M,FATAL,Y,A. De Maddalena,citing Cazeils (1998),http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.c-Nice.pdf +140,1700.00.00.b,1700s,1700,Unprovoked,France,Côte d'Azur ,Antibes,Bathing,seaman,M,Leg severed,N,A. De Maddalena,citing Cazeils (1998),http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.b-Antibes.pdf +139,1700.00.00.a,1700s,1700,Unprovoked,Unknown,Unknown,Unknown,Bathing,seaman from the York,M,FATAL,Y,Tioga Eagle,10.26/ 1842,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.a-Barbados.pdf +138,1642.00.00.b,Late 1600s 1728,1642,Invalid,Unknown,Unknown,Unknown,Went overboard,crew member of the Nieuwstadt,M,FATAL,Y,History of the Pyrates,by D. Defoe,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00.b-Nieuwstadt.pdf +137,1638.00.00.R,1638,1638,Unprovoked,Unknown,Unknown,Unknown,Unknown,sailors,M,Unknown,N,Sir Thomas Herbert,,http://sharkattackfile.net/spreadsheets/pdf_directory/1638.00.00.R-Herbert +136,1637.00.00.R,1637,1637,Unprovoked,India,West Bengal,Hooghly River mouth,Wading,Hindu pilgrims,Unknown,Unknown,N,H. Edwards,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1637.00.00-Manrique.pdf +135,1617.00.00.R,1617,1617,Unprovoked,India,West Bengal,Ganges Delta,Unknown,Indian people,Unknown,Unknown,N,H. Edwards,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1617.00.00-Purchas.pdf +134,1642.00.00,1642,1642,Unprovoked,Usa,New York ,Between Manhattan and The Bronx,Swimming ,Antony Van Corlear,M,FATAL,Y,Knickerbocker's History of New York,by Washington Irving,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00-Corlear.pdf +133,1595.00.00,1595,1595,Unprovoked,India,Kerala,River Cochin,Ship lay at anchor & man was working on its rudder,male,M,"Leg severed mid-thigh, hand severed, arm above elbow and part of buttocks. Not known if he survived",UNKNOWN,The Voyage of John Huyghen van Linschoten,,http://sharkattackfile.net/spreadsheets/pdf_directory/1595.00.00-Cochin.pdf +132,1580.01.10.R,Letter dated 10-Jan-1580,1580,Unprovoked,Unknown,Unknown,Unknown,Man fell overboard from ship. Those on board threw a rope to him with a wooden block & were pulling him to the ship,male,M,"FATAL. ""Shark tore him to pieces.",Y,G.P. Whitley,p. 10,http://sharkattackfile.net/spreadsheets/pdf_directory/1580.01.10.R-Portugal-India.pdf +131,1555.00.00,1555,1555,Unprovoked,Unknown,Unknown,Unknown,Swimming,male,M,Unknown,N,Olaus Magnus,,http://sharkattackfile.net/spreadsheets/pdf_directory/1555.00.00 - Olaus Magnus.pdf +130,1554.00.00,Ca. 1554,1554,Unprovoked,France,Nice & Marseilles,Unknown,Unknown,males (wearing armor),M,Unknown,N,G. Rondelet ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1554.00.00-Rondelet.pdf +129,1543.00.00,Ca. 1543,1543,Unprovoked,Venezuela,Magarita or Cubagua Islands,Unknown,Pearl diving,Indian slave,M,FATAL,Y,J. Castro,,http://sharkattackfile.net/spreadsheets/pdf_directory/1543.00.00.R-LasCasas.pdf +128,0500.00.00,Circa 500 A.D.,500,Unprovoked,Unknown,Unknown,Unknown,Unknown,male,Unknown,Foot severed,N,J. Castro,,http://sharkattackfile.net/spreadsheets/pdf_directory/500AD-Mexico.pdf +127,0077.00.00,77 A.D.,77,Unprovoked,International_water,Ionian Sea,Unknown,Sponge diving,males,M,FATAL,Y,Perils mentioned by Pliny the Elder (23 A.D. to 76 A.D.),,http://sharkattackfile.net/spreadsheets/pdf_directory/77AD-Pliny.pdf +126,0005.00.00,Ca. 5 A.D.,5,Unprovoked,Australia,New South Wales,Bondi,Unknown,male,M,Aboriginal rock carving depicts man being attacked by a shark,N,Waverly Library,,http://sharkattackfile.net/spreadsheets/pdf_directory/0005.00.00-AustralianAboriginal.pdf +125,0.0214,Ca. 214 B.C.,0,Unprovoked,International_water,Ionian Sea,Unknown,Ascending from a dive,"Tharsys, a sponge diver",M,"FATAL, shark/s bit him in two",Y,Reported by Greek poet,Leonidas of Tarentum (228 B.C to 174 B.C.); V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/214BC-Tharsys.pdf +124,0.0336,Ca. 336.B.C..,0,Unprovoked,Greece,Piraeus,In the haven of Cantharus,Washing his pig in preparation for a religious ceremony,A candidate for initiation,M,"FATAL, shark ""bit off all lower parts of him up to the belly""",Y,Plutarch (45 - 125 A.D.) in Life of Phoecion (Phoecion 28),,http://sharkattackfile.net/spreadsheets/pdf_directory/336-BC-Carnathus.pdf +123,0.0493,493 B.C.,0,Sea Disaster,Greece,Off Thessaly,Unknown,Shipwrecked Persian Fleet,Unknown,M,Herodotus tells of sharks attacking men in the water,N,Herodotus (485 - 425 B.C.),,http://sharkattackfile.net/spreadsheets/pdf_directory/493BC-PersianFleet.pdf +122,0.0725,Ca. 725 B.C.,0,Sea Disaster,Italy,Tyrrhenian Sea,"Vase found during excavations at Lacco Ameno, Ischia",Unknown,Unknown,Unknown,"Vase depicts shipwrecked sailors, one of whom is being attacked by a shark",N,V.M. Coppleson (1958),,http://sharkattackfile.net/spreadsheets/pdf_directory/725BC-vase.pdf +121,ND-0153,1990 or 1991,0,Unprovoked,Kenya,Mombasa,Kilindini,Diving,Conway Plough & Dr. Jonathan Higgs,M,Conway's leg was bitten Higgs injury was FATAL,N,A.J. Venter,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0153-Plough-Higgs.pdf +120,ND-0152,Before 2016,0,Unprovoked,Kenya,Mombasa,Kilindini,Diving,Hamisi Njenga,M,FATAL,Y,eadestination,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0152-Kenya.pdf +119,ND-0151,Before Oct-2009,0,Unprovoked,Panama,Bocas del Toro Province,Red Frog Beach,Swimming/,male,M,FATAL,Y,C. Mendieta & A. Duarte,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0151-Panama.pdf +118,ND-0150,Before 1934,0,Unprovoked,Uruguay,Rocha,"Isla Chica, La Paloma",Swimming,Unknown,Unknown,Foot bitten,N,Di Candia,2004,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0150-Uruguay.pdf +117,ND-0149,Before 1934,0,Unprovoked,Uruguay,Rocha ,"Playa del Barco, La Pedrera",Swimming,Maciello,M,FATAL,Y,Di Candia,2004,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0149-Maciello.pdf +116,ND-0148,2009?,0,Unprovoked,Usa,South Carolina,Charleston,Swimming,Rick Donnis,M,Minor injury,N,WBTV-News3,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0148-Donnis.pdf +115,ND-1940,Before 1930,0,Unprovoked,Papua new guinea,Morobe Province,Simbang,Swimming to canoe,male,M,FATAL,Y,The Advertiser (Adelaide),6/2/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0140-NewGuinea.pdf +114,ND-0139,1880-1899,0,Unprovoked,Australia,Queensland,Boonooroo,Unknown,Lassie,F,Foot severed,N,Courier Mail,6/30/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0139-Lassie.pdf +113,ND-0138,Before 1909,0,Unprovoked,Australia,Queensland,Moreton Bay,Fell into the water,Lieutenant Hexton,M,FATAL,Y,Brisbane Courier,1/28/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0138-Hexton.pdf +112,ND-0136,Before 2012,0,Unprovoked,Usa,Hawaii,Oahu,Diving,Ken O'Keefe,M,Minor laceration to hand,N,K. O'keefe,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0136-Keefe.pdf +111,ND-0135,Before 1916,0,Unprovoked,Unknown,Unknown,Unknown,Unknown,male,M,FATAL,Y,New York Times,7/22/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0135-Bermuda.pdf +110,ND-0134,Between 1951-1963,0,Unprovoked,Unknown,Unknown,Unknown,Swimming,Martha Hatagouei,F,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0134-Greece-Hatagouei.pdf +109,ND-0133,Before 1908,0,Unprovoked,Usa,California,"Monterey, Montery County",Fishing for basking sharks,males,M,FATAL PROVOKED INCIDENTS,Y,C.F. Holder,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0133-BaskingShark.pdf +108,ND-0132,Before 1900,0,Provoked,Unknown,Unknown,Unknown,Unknown,male,M,Cut to arm while roping shark PROVOKED INCIDENT,N,Naval Journal (undated),,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0132-India-fight-with-shark.pdf +107,ND-0130,Before 1876,0,Unprovoked,Unknown,Unknown,Unknown,Collecting fish ,Kahlifeh,M,Posterior thigh bitten,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0130-Lebanon.pdf +106,ND-0129,Before 2012,0,Unprovoked,Spain,Canary Islands,Tenerife,Skin diving,Unknown,Unknown,Injury required 16 stitches,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0129-Tenerife.pdf +105,ND-0127,Before 2011,0,Unprovoked,Sudan,Red Sea State,Unknown,Snorkeling,female,F,Leg severely bitten,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0127-Sudan.pdf +104,ND-0124,Before 2011,0,Provoked,Unknown,Unknown,Unknown,Unknown,Phillip Peters,M,Bitten by captive sharks PROVOKED INCIDENTS,N,Watertown Daily Times,7/8/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0124-Peters.pdf +103,ND-0123,Before 2009,0,Unprovoked,Usa,Florida,Unknown,Shark tagging,Danniell Washington,F,Severe abrasion to forearm from captive shark PROVOKED INICIDENT,N,Daniell Washington,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0123-Daniell-Washington.pdf +102,ND-0122,Beforer 1994,0,Unprovoked,Usa,Florida,"Lost Tree Village, Palm Beach County",Surfing,C.M,M,Legs bitten,N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0122-CM.pdf +101,ND-0119,Before 1963,0,Unprovoked,Djibouti,Gulf of Tadjoura,Unknown,A dhow capsized,Passenger & crew,Unknown,FATAL,Y,A. C. Doyle,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0119-Gulf-of-Tadjoura.pdf +100,ND-0118,1896-1913,0,Unprovoked,Libya,Cyrenaica,Kirinaiki,Sponge diving,a diver from Kalymnos,M,FATAL,Y,M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0118-Stathis-partner.pdf +99,ND-0116,Before 1936,0,Unprovoked,Unknown,Unknown,Unknown,Net-fishing,August Eichmann,M,Calf bitten,N,Courier-Mail,1/11/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0116-Eichmann.pdf +98,ND-0115,Before 08-Jun-1912,0,Unprovoked,New zealand,North Island,"Point Halsey, Wellington",Unknown,Kai-tawaro,M,FATAL,Y,Evening Post,6/8/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0115-Wellington.pdf +97,nd-0114,Before 2012,0,Unprovoked,International_water,Unknown,In a river feeding into the Bay of Bengal,Netting shrimp,Sametra Mestri,F,Hand severed,N,National Georgraphic Television,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0114-BayOfBengal.pdf +96,ND-0113,Before 1911,0,Unprovoked,Unknown,Unknown,Unknown,Bathing,male,M,Foot bitten,N,Daily Kennebec Journal,3/27/ 1911,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0113-Vietnam.pdf +95,ND-0111,Before 1901,0,Unprovoked,Sri lanka,Northern Province,Mannar,Fishing?,male,M,Foot bitten,N,Gould & Pyle,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0111-SriLanka.pdf +94,ND.0110,"No date, late 1960s",0,Unprovoked,Venezuela,Los Roques Islands,Unknown,Spearfishing ,4 French divers,M,"FATAL (x3), one survived with minor injuries",Y,http://waterco.com.br/ataque_tubarao.htm,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0110-FrenchDivers.pdf +93,ND-0109,Before 2006,0,Unprovoked,Usa,Florida,"Tampa Bay, Hillsborough County",Wade-fishing,Ed Snyder,M,"No injury, shark rammed his back",N,Fishingworld.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0109-Ed-Snyder.pdf +92,ND-0108,Before 2003,0,Unprovoked,Greece,Dodecanese Islands,Near Symi Island,Free diving for sponges,male,M,FATAL,Y,M. Kalafatas,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0108-SpongeDiver-Symi.pdf +91,ND-0107,Before 2004,0,Boat,Mozambique,Inhambane Province,Off Inhambane,Fishing,"4.8-metre skiboat, Occupants: Rod Salm & 4 friends",Unknown,"No injury to occupants, shark bumped boat",N,South African Shark Attack File,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0107-Inhambane.pdf +90,ND-0106,Before 1962,0,Unprovoked,South africa,Western Cape Province,"Murray Bay, Robben Island",Swimming,"male, a mental patient",M,"FATAL, body not recovered",Y,L.Green,A Decent Fellow doesn't Work,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0106-MentalPatient.pdf +89,ND.0104,1950s,0,Unprovoked,Australia,Torres Strait,Unknown,Helmet diving,male,M,"No injury, helmet bitten",N,A. Seekee & R. Callinan,Courier-Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0104-HelmetDiver.pdf +88,ND.0102,"No date, Before 1963",0,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,male,M,FATAL,Y,A.C. Doyle,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0102-Bahrein.pdf +87,ND.0100,2003?,0,Unprovoked,Bahamas,Andros Islands,Great Guana Cay,Spearfishing ,C.D. Dollar,M,Swim fin bitten,N,R.D. Weeks,GSAF,Q93http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0100-CDDollar.pdf +86,ND.0097,No date,0,Unprovoked,Usa,Florida,"Key West, Monroe County",Kitesurfing,Paul Menta,M,Hand bitten,N,Internet,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0097-PaulMenta.pdf +85,ND.0096,No date,0,Unprovoked,Reunion,Grand'Anse,Petite-île,yachtsman in a zodiac,Unknown,M,Survived,N,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0096-Zodiac-Reunion.pdf +84,ND.0095,Before Feb-1998,0,Unprovoked,Solomon islands,Malaita Province,Waibana Passage,Diving,Albert Raiti,Unknown,Lacerations to hands and knee,N,Islands Magazine,2/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0095-AlbertRaiti.pdf +83,ND.0094,"No date, Before May-1996",0,Unprovoked,Korea,South Korea,Cheju Island,Diving,"female, a Hae Nyeo",F,"FATAL, injured while diving, then shark bit her ",Y,K. Amsler,Divernet.com,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0094-HaeNyeo.pdf +82,ND.0093,"No date, Before Mar-1995",0,Unprovoked,French polynesia,Tuamotus,Rangiroa,Fishing,male,M,"Speared a shark, fell overboard and another shark severed his arm ",N,J. Windh,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0093-Rangiroa.pdf +81,ND.0091,Before 1996,0,Unprovoked,Sudan,Red Sea State,Sha'ab Rumi,Diving,Erik Bjurstrom,M,"No injury, BC ripped",N,"E. Bjurstrom,",,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0091-Bjurstrom-RedSea.pdf +80,ND.0090,"No date, Before Aug-1989",0,Unprovoked,Vanuatu,Malampa Province,Malakula,Unknown,female,F,FATAL,Y,S. Combs,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0090-Vanuatu-female.pdf +79,ND.0089,"No date, Before Aug-1987",0,Provoked,Vanuatu,Malampa Province,"Hokai, Malakula",Attempting to drive shark from area,a chief,M,Speared shark broke outrigger of canoe throwing man into the water & shark bit his buttock PROVOKED INCIDENT,N,S. Combs,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0089-VanuatuChief.pdf +78,ND.0088,"No date, Before 1987",0,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River",Unknown,Mr. Jabar-Kaaby,M,Foot severed,N,B. Coad & F. Papahn,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0088-Jabar-Kaaby.pdf +77,ND.0087,"No date, Before 1975",0,Provoked,Usa,Florida,"Riviera Beach, Palm Beach County",Skin diving. Grabbed shark's tail; shark turned & grabbed diver's ankle & began towing him to deep water,Carl Bruster,M,"Ankle punctured & lacerated, hands abraded PROVOKED INCIDENT",N,R. Skocik,p.176,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0087-Carl-Bruster.pdf +76,ND.0086,"No date, Before 1975",0,Invalid,Papua new guinea,Milne Bay Province," D'Entrecasteaux islands, 20 miles off the coast",Scuba diving,Dan Hogan,M,Said to be fatal but incident highly questionable,Y,F. Dennis,pp.15-16,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0086-DanHogan.pdf +75,ND.0085,"No date, Before 1969",0,Unprovoked,Unknown,Unknown,Unknown,Free diving,Jill Reed,F,"Shoulder scratched, swim fin bitten",N,Captain T. Falcon-Barker,pp. 91-93,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0085-JillReed.pdf +74,ND.0084,"No date, Before 3-Jan-1967",0,Unprovoked,South africa,Eastern Cape Province,Keiskamma River mouth,Crossing river on a raft,Sinsa,M,"FATAL, leg severed",Y,Whitaker,The Sun,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0084-Sinsa.pdf +73,ND.0083,"No date, Before 1963",0,Unprovoked,Usa,California,"LaJolla, San Diego County","Free diving, collecting sand dollars",Charles Fleming,M,Calf bitten,N,C. Limbaugh in Sharks & Survival,pp.77-78,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0083-Fleming.pdf +72,ND.0082,"No date, Before 8-May-1965",0,Unprovoked,Greece,Island of Volos,Eastern shore,Swimming,woman,F,FATAL,Y,Sydney Morning Herald,5/8/1965 ,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0082-Volos-Greece.pdf +71,ND.0081,"No date, Before 1963",0,Invalid,Usa,Hawaii,"Portlock, Oahu",Diving,Val Valentine,M,"A 4.3 m [14'] shark made threat display. No injury, no attack",N,B. Sojka & D. Lloyd,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0081-Valentine.pdf +70,ND.0078,"No date, Before 1902",0,Unprovoked,Usa,Florida,"Mosquito Inlet (Ponce Inlet), Volusia County",Canoeing,male,M,FATAL,Y,W.H. Gregg,p.19; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0078-canoeist-mail-carrier.pdf +69,ND.0076,"No date, Before 1902",0,Unprovoked,Unknown,Unknown,Unknown,Unknown,"male, a ship carpenter",M,FATAL,Y,W.H. Gregg,p.22; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0076-Mediterranean.pdf +68,ND.0075,"No date, Before 1963",0,Unprovoked,Australia,Torres Strait,Unknown,Diving for trochus,male,M,Calf removed,N,G.P. Whitley (1952),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0075-TorresStrait.pdf +67,ND.0074,"No date, After August 1926 and before 1936",0,Unprovoked,Australia,Western Australia,Cossack Creek,Pearl diving,Ted Luck,M,Leg bitten,N,N. Caldwell; T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0074-Ted-Luck.pdf +66,ND.0073,"No date, Before 1963",0,Unprovoked,Singapore,Unknown,"Keppel Harbor, 2 miles from Singapore city center",Swimming,Unknown,Unknown,Recovered,N,V.M. Coppleson (1958),p.266,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0073-KeppelHarbourSingapore.pdf +65,ND.0069,Before 1962,0,Unprovoked,Unknown,Unknown,Unknown,Spearfishing ,Dalton Baldwin,M,"No injury, bumped by shark which took speared fish",N,V. M. Coppleson (1962),p.253,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0069-Dalton.pdf +64,ND.0068,Before 1962,0,Unprovoked,Mozambique,Maputo Province,Santa Maria Peninsula,Skindiving,Les Bishop,M,Bumped by sharks,N,L. Bishop; V.M. Coppleson (1962),,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0068-LesBishop.pdf +63,ND.0066,Before 1961,0,Unprovoked,Seychelles,Amirante Islands,Marie Louise Island,Swimming from capsized pirogue,Aristede,M,FATAL,Y,Travis,pp. 326-327,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0066-Aristede.pdf +62,ND.0065,1960s,0,Unprovoked,Iraq,Basrah,Shatt-al-Arab River,Fishing from a small boat & put his hand in the water while holding a dead fish,male,M,Right hand severed,N,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0065-deadfish.pdf +61,ND.0064,1960s,0,Unprovoked,Iraq,Basrah,Shatt-al-Arab River ,Swimming naked near a date palm where many dates fell into the water,male,M,Arm severed,N,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0064-Shatt-al-Arab.pdf +60,ND.0063,1960s,0,Unprovoked,Iraq,Basrah,Shatt-al-Arab River near Abu al Khasib,Swimming in section of river used for washing clothes & cooking utensils,male,M,Right leg lacerated & surgically amputated,N,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0063-Shatt-al-Arab.pdf +59,ND.0062,Before 1960,0,Unprovoked,Bahamas,Andros Islands,Unknown,Unknown,"male, a sponge Diver",M,Lower leg and forearm severed,N,Star-Ledger (Newark,NJ),http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0062-Spongediver-Andros.pdf +58,ND.0060,Before 19-Jun-1959,0,Unprovoked,Usa,California,"Capistrano, Orange County",Unknown,girl,F,Leg injured,N,B. Walton,Sun (San Bernardino),http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0060-Capistrano.pdf +57,ND.0059,Before 24 Apr-1959,0,Unprovoked,Bermuda,Paget,Paget Parish,Spearfishing ,Ross Doe,M,Shoulder abraded by skin of shark,N,Mentioned in letter from L. S. Mowbray dated 4/24/1959; L. Schultz & M. Malin,p.516,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0059-RossDoe.pdf +56,ND.0058,Before 1958,0,Unprovoked,Fiji,Kadavu Island Group,"18.8S, 178.25E",Swimming with fish attached to belt,Fijian girl,F,"""Severely injured when fish were seized by shark""",N,V.M. Coppleson (1958),p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0058-Fiji-girl.pdf +55,ND.0057,Before 1958,0,Unprovoked,Madagascar,Toamasina Province,Tamatave,Bathing,male,M,FATAL,Y,V.M. Coppleson (1958),p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0057-Tamatave-Madagascar.pdf +54,ND.0056,Before 1958,0,Unprovoked,Usa,Florida,"Palm Beach, Palm Beach County",Standing,Horton Chase,M,Abrasions & bruises hip to ankle,N,V.M. Coppleson (1956),p.255; R.F. Hutton,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0056-HortonChase.pdf +53,ND.0055,Before 1958,0,Provoked,Bahamas,Andros Islands,Middle Bight,Testing movie camera in full diving dress,John Fenton,M,Shark bit diver's sleeve after he patted it on the head PROVOKED INCIDENT,N,V.M. Coppleson (1958),p.97,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0055-JohnFenton.pdf +52,ND.0054,Before 1958,0,Unprovoked,Indonesia,Riau Province,"Natuna Islands, between Sumatra & Kalimantan in the South China Sea",Swimming near anchored ship, a ship's engineer,M,"FATAL, leg severed ",Y,C.H. Townsend,p. 172; V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0054-NatunaIslands.pdf +51,ND.0053,Before 1958,0,Unprovoked,India,Maharashtra,"Malwan, near Ratnagiri",Unknown,male,M,FATAL,Y,V.M. Coppleson (1958),p.261,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0053-India.pdf +50,ND.0052,Before 1957,0,Unprovoked,Nicaragua,Lake Nicaragua (fresh water),A village north of San Carlos,Lashing logs together when he fell into the water,an Indian,M,"FATAL, leg severed ",Y,F. Poli,pp.150-153,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0052-NicaraguanIndian.pdf +49,ND.0051,Before 1957,0,Provoked,Cuba,Havana Province,Cojimar,"Shark fishing, knocked overboard",Sandrillio,M,"FATAL, hip bitten PROVOKED INCIDENT",Y,F. Poli,pp.75,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0051-Sandrillio.pdf +48,ND.0049,Before 1956,0,Unprovoked,Marshall islands,Bikini Atoll,Unknown,Swimming,male,M,Buttocks bitten,N,J.E. Lasch,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0049-BikiniAtoll.pdf +47,ND.0048,Before 1956,0,Unprovoked,Kiribati,Phoenix Islands,Canton Island,Diving,Dusty Rhodes,M,No injury,N,J. Oetzel,Skin Diver Magazine,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0048-DustyRhodes.pdf +46,ND.0047,Before Mar-1956,0,Unprovoked,North pacific ocean,Unknown,Wake Island,"Fishing, wading with string of fish",male,M,Survived,N,J. Oetzel,Skin Diver Magazine,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0047-WakeIsland.pdf +45,ND.0046,Before 1952,0,Unprovoked,Kiribati,Gilbert Islands,Nonouti,Unknown,Gilbertese fisherman,M,FATAL,Y,Grimble,pp. 142-143,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0046-GilberteseFisherman.pdf +44,ND.0044,1941-1945,0,Sea Disaster,Unknown,Unknown,Unknown,A group of survivors on a raft for 17-days,C.,Unknown,"FATAL, shark leapt into raft and bit the man who died 4 hours later",Y,G.A. Llano in Airmen Against the Sea,p.69,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0044-C.pdf +43,ND.0043,"""During the war"" 1943-1945",0,Unprovoked,Solomon islands,New Georgia,"Munda Island, Roviana Lagoon",Floating on his back,American male,M,Buttock bitten,N,W. Chapman (1949) Fishing in Troubled Waters, p.182,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0043-American-male.pdf +42,ND.0042,"""Before the war""",0,Unprovoked,Australia,Torres Strait,Thursday Island?,Free diving,Mortakee,M,Head bitten,N,Press clipping dated 6/28/1950,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0042-Mortakee.pdf +41,ND.0041,"Said to be 1941-1945, more likely 1945",0,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River",Fishing in ankle-deep water,an old fisherman,M,"FATAL, foot lacerated & crushed ",Y,Lt. Col. R.S. Hunt,pp. 80-81,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0041-OldFisherman.pdf +40,ND.0040,1941-1945,0,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River",Unknown,a local dignitary,M,"FATAL, femoral artery severed, died 12 days later ",Y,Lt. Col. R.S. Hunt of the Royal Army Medical Corp,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0040-Local dignitary.pdf +39,ND.0039,1941-1945,0,Unprovoked,Iran,Khuzestan Province,"Ahvaz, on the Karun River","Standing, washing rear wheels of his ambulance in ankle-deep water",I.A.S. C. driver ,M,"FATAL, fell into water when shark seized his right ankle, right leg bitten, left forearm & hand lacerated, all tissue stripped from right arm ",Y,Lt.Col. R.S. Hunt,p.79,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0039-AmbulanceDriver.pdf +38,ND.0038,1941-1942,0,Unprovoked,Iraq,Basrah,Shatt-el Arab River near a small boat stand,Swimming,male,M,"FATAL, left leg bitten with severe blood loss",Y,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0038-Shatt-al-Arab.pdf +37,ND.0037,1940 - 1950,0,Unprovoked,Saudi arabia,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,"FATAL, died of sepsis",Y,G.F. Mead,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0037-PearlDiver-sepsis.pdf +36,ND.0036,1940 - 1950,0,Unprovoked,Saudi arabia,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a fisherman / diver,M,Buttocks bitten,N,G.F. Mead,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0036-Fisherman-SaudiArabia.pdf +35,ND.0035,1940 - 1950,0,Unprovoked,Saudi arabia,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,"Foot lacerated, surgically amputated",N,G.F. Mead,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0035-PearlDiver.pdf +34,ND.0034,1940-1946,0,Sea Disaster,Unknown,Unknown,Unknown,Unknown,"8 US airmen in the water, 1 was bitten by a shark",M,FATAL,Y,G. Llano,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0034-8-men-on-raft.pdf +33,ND.0033,Before 1905,0,Provoked,Unknown,Unknown,Unknown,Carrying a supposedly dead shark by its mouth,boy,M,4 finger severed by 'dead' shark. PROVOKED ACCIDENT,N,Massillon Independent,3/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0033-Burma.pdf +32,ND.0032,World War II,0,Sea Disaster,Papua new guinea,Between New Ireland & New Britain,St. George’s Channel,Spent 8 days in dinghy,pilot,M,"No injury, but shark removed the heel & part of his left shoe",N,G.A. Llano in Airmen Against the Sea,p.69; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0032-RabaulPilot.pdf +31,ND.0031,World War II,0,Sea Disaster,Papua new guinea,Madang Province,Off Lae,"Aircraft ditched in the sea, swimming ashore",male,M,Shark bumped him,N,V.M. Coppleson (1962),p.257,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0031-Ditched-Aircrat.pdf +30,ND.0030,Before 1905,0,Unprovoked,Unknown,Unknown,Unknown,Bathing,male,M,Fatal x 2,Y,Massillon Independent,3/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0030-Burma.pdf +29,ND.0028,A few years before 1938,0,Boat,Italy,Adriatic Sea,Unknown,Wooden fishing boat,Occupant: Mr. Maciotta,M,No injury to occupant; shark capsized boat,N,A. De Maddalena; Anon. (1938),,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0028-Maciotta.pdf +28,ND.0027,No date,0,Unprovoked,Greece,Dodecanese Islands,Symi Island,Sponge diving,Psarofa-gomenes,M,Head bitten,N,M. N. Kalafatas ,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0027-Psarofagomenos.pdf +27,ND.0026,Early 1930s,0,Unprovoked,Unknown,Unknown,Unknown,Standing,a servant,M,FATAL,Y,Mitchell-Hedges,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0026-Belize.pdf +26,ND.0025,Before 1927,0,Unprovoked,Australia,New South Wales,"Spectacle Island, Port Jackson",Unknown,"male, the Sergeant of Marines",M,Unknown,N,H. Capper,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0025-Sgt-SpectacleIsland.pdf +25,ND.0024,Between 1918 & 1939,0,Unprovoked,Reunion,Saint-Denis,Barachois,Swimming,Unknown,Unknown,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0024-Barachois-Reunion.pdf +24,ND.0023,No date,0,Unprovoked,South africa,Western Cape Province,Arniston,Wading,Madelaine Dalton,F,Ankle bitten,N,L. Green in Tavern of the Seas,p.182,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0023-Dalton.pdf +23,ND.0022,No date,0,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,Jaringoorli,M,Lacerations to thigh,N,Adelaide Advertiser,1/11/1940,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0022-Jaringoorli.pdf +22,ND.0021,No date,0,Unprovoked,South africa,KwaZulu-Natal,Durban ,Swimming in pool formed by construction of a wharf,Indian boy,M,"FATAL, leg severed ",Y,L. Green in South African Beachcomber,p.97,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0021-DurbanIndianBoy.pdf +21,ND.0020,1920 -1923,0,Unprovoked,Australia,Queensland,Great Barrier Reef,Unknown,3 Japanese divers,M,FATAL,Y,V.M. Coppleson (1958),p.241,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0020-3JapaneseDivers.pdf +20,ND.0019,Before 1921,0,Unprovoked,Usa,Florida,"Gadsden Point, Tampa Bay",Fishing,James Kelley,M,2-inch lacerations,N,T. Helm,p.219,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0019-Kelley.pdf +19,ND.0018,Before 1911,0,Unprovoked,Vietnam,Ba Ria-Vung Tau Province,V?ng Tàu,Swimming around anchored ship,crewman,M,Foot bitten,N,Daily Kennebec Journal,3/27/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0018-Vietnam.pdf +18,ND.0017,Before 1921,0,Unprovoked,South africa,KwaZulu-Natal,Durban ,Crew swimming alongside their anchored ship,male,M,FATAL,Y,Captain A. Anderson, Natal Mercury,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0017-alongside-ship.pdf +17,ND.0016,Before 1921,0,Unprovoked,South africa,KwaZulu-Natal,Durban,4 men were bathing,male,M,FATAL,Y,Captain A. Anderson, Natal Mercury,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0016- Durban-PostOffice.pdf +16,ND.0015,Before 1917,0,Unprovoked,Fiji,Moala Island,Unknown,Wreck of large double sailing canoe,20 Fijians,Unknown,"FATAL, 18 people were killed by sharks, 2 survived",Y,Fijian Society papers presented April 17,1918; W.E.,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0015-FijianCanoe.pdf +15,ND.0014,Before 17-Jul-1916,0,Unprovoked,Usa,North Carolina ,Somewhere between Hatteras and Beaufort,Swimming,"""youthful male""",M,"""Lost leg""",N,C. Creswell,GSAF; Wilmington Star,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0014-pre1916-NorthCarolina.pdf +14,ND.0013,No date (3 days after preceding incident) & prior to 19-Jul-1913,0,Unprovoked,South africa,KwaZulu-Natal,Durban,Fishing,a native fisherman,M,"FATAL, body not recovered but shark was caught with the man's loincloth in its gut shortly afterwards.",Y,Rural New Yorker,7/19/1913 ,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0013-Durban-native-fisherman.pdf +13,ND.0012,Before 19-Jul-1913,0,Unprovoked,South africa,KwaZulu-Natal,Durban,Wading,a young Scotsman,M,"FATAL, leg stripped of flesh ",Y,Rural New Yorker,7/19/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0012-Durban-Scotsman.pdf +12,ND.0011,Before 1911,0,Unprovoked,Unknown,Unknown,Unknown,Swimming,Mr. Masury,M,Foot severed,N,Ref. J. T. Dubois in N.Y. Sun,3/19/1911 ,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0011-Masury.pdf +11,ND.0010,Circa 1862,0,Unprovoked,Usa,Hawaii,Puna,Unknown,A chiefess,F,Ankle bitten,N,Captain W. Young,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0010-Puna Hawaii.pdf +10,ND.0009,Before 1906,0,Unprovoked,Unknown,Unknown,Unknown,Fishing,boy,M,"FATAL, knocked overboard by tail of shark & carried off by shark ",Y,NY Sun,9/9/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0009-boy-Australia.pdf +9,ND.0008,Before 1906,0,Unprovoked,Unknown,Unknown,Unknown,Fishing,fisherman,M,FATAL,Y,NY Sun,9/9/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0008-Fisherman2-Australia.pdf +8,ND.0007,Before 1906,0,Unprovoked,Unknown,Unknown,Unknown,Fishing,fisherman,M,FATAL,Y,NY Sun,9/9/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0007 - Fisherman-Australia.pdf +7,ND.0006,Before 1906,0,Unprovoked,Australia,New South Wales, ,Swimming,Arab boy,M,FATAL,Y,L. Becke in New York Sun,9/9/1906; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0006-ArabBoy-Prymount.pdf +6,ND.0005,Before 1903,0,Unprovoked,Australia,Western Australia,Roebuck Bay,Diving,male,M,FATAL,Y,H. Taunton; N. Bartlett, p. 234,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf +5,ND.0004,Before 1903,0,Unprovoked,Australia,Western Australia,Unknown,Pearl diving,Ahmun,M,FATAL,Y,H. Taunton; N. Bartlett, pp. 233-234,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf +4,ND.0003,1900-1905,0,Unprovoked,Usa,North Carolina,Ocracoke Inlet,Swimming,Coast Guard personnel,M,FATAL,Y,F. Schwartz,p.23; C. Creswell,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf +3,ND.0002,1883-1889,0,Unprovoked,Panama,Unknown,"Panama Bay 8ºN, 79ºW",Unknown,Jules Patterson,M,FATAL,Y,The Sun,10/20/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf +2,ND.0001,1845-1853,0,Unprovoked,Ceylon (sri lanka),Eastern Province,"Below the English fort, Trincomalee",Swimming,male,M,"FATAL. ""Shark bit him in half, carrying away the lower extremities"" ",Y,S.W. Baker,,http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf diff --git a/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.pkl b/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.pkl new file mode 100644 index 0000000000000000000000000000000000000000..83270f76fc71b6dc931d01d3bf09b0310ac55c39 GIT binary patch literal 1580410 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

\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
2731NaNEnglish ChannelUnknown
3162NaNCaribbean SeaBetween St. Kitts & Nevis
3379NaNNaNFlorida Strait
3792NaNBetween Timor & Darwin, AustraliaUnknown
4005NaNNear the Andaman & Nicobar IslandsUnknown
4040NaNBetween Comores & MadagascarGeyser Bank
4271NaNCaribbean SeaBetween Cuba & Costa Rica
4412NaNNaN225 miles east of Hong Kong
4473NaNOff South American coastUnknown
4485NaN300 miles east of St. Thomas (Virgin Islands)Unknown
4790NaNFrench Southern TerritoriesÎle Saint-Paul
5189NaNNaNNear the equator
5370NaNMediterranean SeaUnknown
5558NaNWestern BanksUnknown
5560NaNNaNSanta Cruz
5847NaNNaNCarlisle Bay
5866NaNIonian SeaUnknown
5868NaNIonian SeaUnknown
5896NaNNaNIn a river feeding into the Bay of Bengal
\n", + "
" + ], + "text/plain": [ + " Country Area \\\n", + "2731 NaN English Channel \n", + "3162 NaN Caribbean Sea \n", + "3379 NaN NaN \n", + "3792 NaN Between Timor & Darwin, Australia \n", + "4005 NaN Near the Andaman & Nicobar Islands \n", + "4040 NaN Between Comores & Madagascar \n", + "4271 NaN Caribbean Sea \n", + "4412 NaN NaN \n", + "4473 NaN Off South American coast \n", + "4485 NaN 300 miles east of St. Thomas (Virgin Islands) \n", + "4790 NaN French Southern Territories \n", + "5189 NaN NaN \n", + "5370 NaN Mediterranean Sea \n", + "5558 NaN Western Banks \n", + "5560 NaN NaN \n", + "5847 NaN NaN \n", + "5866 NaN Ionian Sea \n", + "5868 NaN Ionian Sea \n", + "5896 NaN NaN \n", + "\n", + " Location \n", + "2731 Unknown \n", + "3162 Between St. Kitts & Nevis \n", + "3379 Florida Strait \n", + "3792 Unknown \n", + "4005 Unknown \n", + "4040 Geyser Bank \n", + "4271 Between Cuba & Costa Rica \n", + "4412 225 miles east of Hong Kong \n", + "4473 Unknown \n", + "4485 Unknown \n", + "4790 Île Saint-Paul \n", + "5189 Near the equator \n", + "5370 Unknown \n", + "5558 Unknown \n", + "5560 Santa Cruz \n", + "5847 Carlisle Bay \n", + "5866 Unknown \n", + "5868 Unknown \n", + "5896 In a river feeding into the Bay of Bengal " + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Check if we can determine the country with values of Area and Location since no. of missing values is not too big \n", + "df[['Country','Area','Location']][df['Country'].isnull()]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# Insert known values determined by area and location\n", + "\n", + "input_countries = {3792:'AUSTRALIA',4412:'HONG KONG',4790: 'FRANCE',5560:'USA',5847:'BARBADOS'}\n", + "\n", + "for x,y in input_countries.items():\n", + " df.loc[x,\"Country\"]=y\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
2731NaNEnglish ChannelUnknown
3162NaNCaribbean SeaBetween St. Kitts & Nevis
3379NaNNaNFlorida Strait
4005NaNNear the Andaman & Nicobar IslandsUnknown
4040NaNBetween Comores & MadagascarGeyser Bank
4271NaNCaribbean SeaBetween Cuba & Costa Rica
4473NaNOff South American coastUnknown
4485NaN300 miles east of St. Thomas (Virgin Islands)Unknown
5189NaNNaNNear the equator
5370NaNMediterranean SeaUnknown
5558NaNWestern BanksUnknown
5866NaNIonian SeaUnknown
5868NaNIonian SeaUnknown
5896NaNNaNIn a river feeding into the Bay of Bengal
\n", + "
" + ], + "text/plain": [ + " Country Area \\\n", + "2731 NaN English Channel \n", + "3162 NaN Caribbean Sea \n", + "3379 NaN NaN \n", + "4005 NaN Near the Andaman & Nicobar Islands \n", + "4040 NaN Between Comores & Madagascar \n", + "4271 NaN Caribbean Sea \n", + "4473 NaN Off South American coast \n", + "4485 NaN 300 miles east of St. Thomas (Virgin Islands) \n", + "5189 NaN NaN \n", + "5370 NaN Mediterranean Sea \n", + "5558 NaN Western Banks \n", + "5866 NaN Ionian Sea \n", + "5868 NaN Ionian Sea \n", + "5896 NaN NaN \n", + "\n", + " Location \n", + "2731 Unknown \n", + "3162 Between St. Kitts & Nevis \n", + "3379 Florida Strait \n", + "4005 Unknown \n", + "4040 Geyser Bank \n", + "4271 Between Cuba & Costa Rica \n", + "4473 Unknown \n", + "4485 Unknown \n", + "5189 Near the equator \n", + "5370 Unknown \n", + "5558 Unknown \n", + "5866 Unknown \n", + "5868 Unknown \n", + "5896 In a river feeding into the Bay of Bengal " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[['Country','Area','Location']][df['Country'].isnull()]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \"\"\"\n" + ] + } + ], + "source": [ + "# The rest of cases tend to happen in international seas\n", + "# Assign 'INTERNATIONAL_WATER' in Country columns for those records to indicate that\n", + "\n", + "\n", + "df['Country'][df['Country'].isnull()] = \"INTERNATIONAL_WATER\"" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Area 0.031208\n", + "Fatal (Y/N) 0.003171\n", + "dtype: float64" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.isnull().sum()[df.isnull().sum()>0]/len(df)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:4: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " after removing the cwd from sys.path.\n" + ] + } + ], + "source": [ + "# Looking into the locations values for the rest of missing values of 'Area', \n", + "# inputs are usually still not precise enough for us to determine the Area. \n", + "# Assign 'Unknown' \n", + "df['Area'][df['Area'].isnull()] ='Unknown'" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:4: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " after removing the cwd from sys.path.\n" + ] + } + ], + "source": [ + "# Colunm 'Fatal' should contain only Y/N values \n", + "# Assign 'N' to 'Fatal' if 'Injury' is unknown. \n", + "\n", + "df['Fatal (Y/N)'][df['Injury']=='Unknown'] = 'N'" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "# Looking into injuries data, A lot of no injuries and others cases victims are dead... \n", + "# Since the remaining percentage of missing values is very low, assign 'N' to the rest of missing values \n", + "# df['Fatal (Y/N)'][df['Fatal (Y/N)'].isnull()] = 'N'" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "54 No injury, but sharks repeatedly hit their fin...\n", + "1844 Reported as shark attack but probable drowning \n", + "2449 FATAL\n", + "3280 Diver shot the shark, then it injured his arm ...\n", + "3435 Disappeared, probable drowning but sharks in a...\n", + "3901 Boat damaged\n", + "4107 No injury to occupants. Shark tore nets & traw...\n", + "4112 Human remains found in shark\n", + "5307 Disappeared, but shark involvement unconfirmed\n", + "5437 No injury, no attack\n", + "5468 Human remains found in 4m, 900 kg shark\n", + "5642 No injury\n", + "5699 Possible drowning and scavenging\n", + "5718 FATAL\n", + "5747 Death preceded shark involvement\n", + "5793 Shark caught contained human remains\n", + "5794 Shark caught, contained human remains\n", + "5820 Probable drowning \n", + "5849 Partial hominid remains recovered from shark, ...\n", + "Name: Injury, dtype: object" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Checking the injury values and determine the missing values in Fatal column if possible\n", + "df['Injury'][df['Fatal (Y/N)'].isnull()]" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [], + "source": [ + "fatal_value = {5939:'N',4149:'N',2713:'N',2092:'N',1886:'N',556:'N',351:'N',294:'N',173:'N'}\n", + "\n", + "for x,y in fatal_value.items():\n", + " df.loc[x,\"Fatal (Y/N)\"]=y" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \"\"\"Entry point for launching an IPython kernel.\n" + ] + } + ], + "source": [ + "df['Fatal (Y/N)'][df['Fatal (Y/N)'].isnull()]='Y'" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Case Number 0\n", + "Date 0\n", + "Year 0\n", + "Type 0\n", + "Country 0\n", + "Area 0\n", + "Location 0\n", + "Activity 0\n", + "Name 0\n", + "Sex 0\n", + "Injury 0\n", + "Fatal (Y/N) 0\n", + "Investigator or Source 0\n", + "pdf 0\n", + "href formula 0\n", + "href 0\n", + "Case Number.1 0\n", + "Case Number.2 0\n", + "original order 0\n", + "dtype: int64" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.isnull().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2. Verify supected duplicates of columns\n", + "Suspects:\n", + " - 'Case Number', 'Case Number.1','Case Number.2' \n", + " - 'pdf','href formula','href'" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Checked quickly if they are identical, result is False\n", + "df['Case Number'].equals(df['Case Number.1'])\n", + "df['Case Number.1'].equals(df['Case Number.2'])\n", + "df['Case Number.2'].equals(df['Case Number'])" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Case NumberCase Number.1Case Number.2
42016.09.152016.09.162016.09.15
332016.07.14.42016.07.14.R2016.07.14.4
972016.01.24.b2015.01.24.b2016.01.24.b
1162015.12.232015.11.072015.12.23
1212015.10.28.a2015.10.282015.10.28.a
1692015.07-102015.07.102015.07.10
32961967.07.051967/07.051967.07.05
35691962,08.30.b1962.08.30.b1962,08.30.b
36541961.09.02.R1961.09,06.R1961.09.02.R
41771952.08.051952.08.041952.08.05
47191934.01.08.R1934.02.08.R1934.02.08.R
50431900.00.00.R1919.00.00.R1900.00.00.R
51501911.07.31.R1911.07.31.T1911.07.31.R
\n", + "
" + ], + "text/plain": [ + " Case Number Case Number.1 Case Number.2\n", + "4 2016.09.15 2016.09.16 2016.09.15\n", + "33 2016.07.14.4 2016.07.14.R 2016.07.14.4\n", + "97 2016.01.24.b 2015.01.24.b 2016.01.24.b\n", + "116 2015.12.23 2015.11.07 2015.12.23\n", + "121 2015.10.28.a 2015.10.28 2015.10.28.a\n", + "169 2015.07-10 2015.07.10 2015.07.10\n", + "3296 1967.07.05 1967/07.05 1967.07.05\n", + "3569 1962,08.30.b 1962.08.30.b 1962,08.30.b\n", + "3654 1961.09.02.R 1961.09,06.R 1961.09.02.R\n", + "4177 1952.08.05 1952.08.04 1952.08.05\n", + "4719 1934.01.08.R 1934.02.08.R 1934.02.08.R\n", + "5043 1900.00.00.R 1919.00.00.R 1900.00.00.R\n", + "5150 1911.07.31.R 1911.07.31.T 1911.07.31.R" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Locate the difference\n", + "df.loc[(df['Case Number']==df['Case Number.1'])==False][['Case Number','Case Number.1','Case Number.2']]\n" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [], + "source": [ + "# Count of difference is really minor and Column'Case Number' contains either values in Case number 1 or 2\n", + "# Keep Case number and drop the other two\n", + "df.drop(['Case Number.1','Case Number.2'],axis=1,inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "href 0.009012\n", + "href formula 0.009012\n", + "dtype: float64" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[(df['href']==df['href formula'])==False][['href','href formula']].count()/len(df)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
hrefhref formula
20http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
27http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
61http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
107http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
114http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
134http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
180http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
193N/Ahttp://sharkattackfile.net/spreadsheets/pdf_di...
232http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
262http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
263http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
264http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
271http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
272http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
293http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
305http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
323http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
347http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
361http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
362http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
363http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
364http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
365pdf_directory2014.01.04-Riano.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...
367http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
377http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
378http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
379http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
380http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
381http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
382http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
383http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
384http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
448http://sharkattackfile.net/spreadsheets/pdf_di...pdf-directory/2013.05.27.b-Ena.pdf
449http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
823http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
1217http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
1218http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
2274N/Ahttp://sharkattackfile.net/spreadsheets/pdf_di...
2477http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
3019http://sharkattackfile.net/spreadsheets/pdf_di...N/A
3549http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
3603http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
3917http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
3928http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
4394http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
4642http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
4668http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
4719http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
5317http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
5458http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
5686N/Ahttp://sharkattackfile.net/spreadsheets/pdf_di...
5694http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
5819http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
5857http://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...
\n", + "
" + ], + "text/plain": [ + " href \\\n", + "20 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "27 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "61 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "107 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "114 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "134 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "180 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "193 N/A \n", + "232 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "262 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "263 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "264 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "271 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "272 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "293 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "305 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "323 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "347 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "361 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "362 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "363 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "364 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "365 pdf_directory2014.01.04-Riano.pdf \n", + "367 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "377 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "378 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "379 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "380 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "381 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "382 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "383 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "384 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "448 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "449 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "823 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "1217 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "1218 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "2274 N/A \n", + "2477 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3019 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3549 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3603 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3917 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3928 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4394 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4642 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4668 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4719 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5317 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5458 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5686 N/A \n", + "5694 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5819 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5857 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "\n", + " href formula \n", + "20 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "27 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "61 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "107 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "114 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "134 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "180 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "193 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "232 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "262 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "263 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "264 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "271 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "272 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "293 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "305 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "323 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "347 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "361 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "362 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "363 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "364 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "365 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "367 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "377 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "378 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "379 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "380 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "381 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "382 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "383 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "384 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "448 pdf-directory/2013.05.27.b-Ena.pdf \n", + "449 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "823 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "1217 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "1218 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "2274 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "2477 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3019 N/A \n", + "3549 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3603 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3917 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3928 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4394 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4642 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4668 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4719 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5317 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5458 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5686 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5694 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5819 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5857 http://sharkattackfile.net/spreadsheets/pdf_di... " + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.loc[(df['href']==df['href formula'])==False][['href','href formula']]" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "# 'href' and 'href formula' are almost identical. A few values are missing in either one of the column. \n", + "# Combine the values in the two columns then drop 'href formula'\n", + "\n", + "combine_values = {(193,'href'):(193,'href formula'),\n", + " (365,'href'):(365,'href formula'),\n", + " (448,'href formula'):(448,'href'),\n", + " (2274,'href'):(2274,'href formula'),\n", + " (3019,'href formula'):(3019,'href'),\n", + " (5686,'href'):(5686,'href formula')}\n", + "\n", + "for x,y in combine_values.items():\n", + " df.loc[x]=df.loc[y]\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [], + "source": [ + "df.drop('href formula',axis=1,inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True 0.99466\n", + "False 0.00534\n", + "dtype: float64" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Comparing the values in 'pdf' and in 'href', values in 'pdf' tend to be the filenames of the path in 'href'. \n", + "# Check percentage of values in 'href' contains values of 'pdf' \n", + "pd.Series([b in a for a , b in zip(df['href'], df['pdf'])]).value_counts()/len(df)\n", + "\n", + "# Result: Around 99.5% of values in 'href' contains the values in 'pdf'\n", + "# Action: Drop 'pdf'\n", + "# Reason: 99.5% chances that the user can refer to 'href' to find the path to pdf.file of the shark attack cases." + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [], + "source": [ + "df.drop('pdf',axis=1,inplace=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 3. Reset index\n", + "- Looking into Case number, they contain usually date of the attach cases. However the user input is too inconsistant and therefore it is not recommended to use this column as index reference. Nonetheless we will keep this column as it provides information in case the input in date column is not complete. \n", + "- Column 'original order' seems to be a good candidate. They seem to follow the order when attacks were reported. " + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "5661 2\n", + "569 2\n", + "3847 2\n", + "5739 2\n", + "2057 1\n", + " ..\n", + "2031 1\n", + "4082 1\n", + "2035 1\n", + "4086 1\n", + "3385 1\n", + "Name: original order, Length: 5988, dtype: int64" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Check value counts in 'original order' \n", + "df['original order'].value_counts().sort_values(ascending=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Case NumberDateYearTypeCountryAreaLocationActivityNameSexInjuryFatal (Y/N)Investigator or Sourcehreforiginal order
2532014.11.1616-Nov-142014UnprovokedUSAFloridaIndian Harbor Beach, Brevard CountySurfingmaleMLaceration to left handNUSA Today, 11/16/2014http://sharkattackfile.net/spreadsheets/pdf_di...5739
2542014.11.17Reported 17-Nov-20142014BoatUSACaliforniaFranklin Point, San Mateo CountyUnknownBoat: occupants: Matt Mitchell & 2 other peopleUnknownShark bumped boat, no injury to occupantsNInquisitr, 11/17/2014http://sharkattackfile.net/spreadsheets/pdf_di...5739
3312014.05.2222-May-142014ProvokedAUSTRALIANew South WalesThe Australian Shark and Ray CentreTeasing a sharkmaleMCut to tip of finger by a captive shark PROVOK...NNewcastle Herald, 5/22/2014http://sharkattackfile.net/spreadsheets/pdf_di...5661
3322015.11.2020-Nov-152015UnprovokedECUADORGalapagos IslandsPunta Vicente Roca, Isabella IslandSnorkelingGraham HurleyMLacerations to left calfNG. Hurleyhttp://sharkattackfile.net/spreadsheets/pdf_di...5661
21461984.11.0808-Nov-841984UnprovokedSOUTH AFRICAEastern Cape ProvinceGonubie River MouthSurfingWayne MonkMWetsuit laceratedNW. Monk, M. Levine, GSAFhttp://sharkattackfile.net/spreadsheets/pdf_di...3847
21471995.07.0707-Jul-951995UnprovokedBRAZILPernambucoCandeiasSurfingClélio Rosendo Falcão FilhoMArm bitten, FATALYJCOnlinehttp://sharkattackfile.net/spreadsheets/pdf_di...3847
54231893.06.2222-Jun-18931893UnprovokedLEBANONUnknownOff TripoliHMS Victoria collided with the HMS CamperdowncrewMFATALYThe Sydney Morning Herald, 6/29/1893http://sharkattackfile.net/spreadsheets/pdf_di...569
54241893.06.22.RReported 22-Jun-18931893UnprovokedNIGERIABayelsa StateMouth of the Nun RiverA barque wreckedmate & crewMFATALYOtago Witness, 6/22/1893http://sharkattackfile.net/spreadsheets/pdf_di...569
\n", + "
" + ], + "text/plain": [ + " Case Number Date Year Type Country \\\n", + "253 2014.11.16 16-Nov-14 2014 Unprovoked USA \n", + "254 2014.11.17 Reported 17-Nov-2014 2014 Boat USA \n", + "331 2014.05.22 22-May-14 2014 Provoked AUSTRALIA \n", + "332 2015.11.20 20-Nov-15 2015 Unprovoked ECUADOR \n", + "2146 1984.11.08 08-Nov-84 1984 Unprovoked SOUTH AFRICA \n", + "2147 1995.07.07 07-Jul-95 1995 Unprovoked BRAZIL \n", + "5423 1893.06.22 22-Jun-1893 1893 Unprovoked LEBANON \n", + "5424 1893.06.22.R Reported 22-Jun-1893 1893 Unprovoked NIGERIA \n", + "\n", + " Area Location \\\n", + "253 Florida Indian Harbor Beach, Brevard County \n", + "254 California Franklin Point, San Mateo County \n", + "331 New South Wales The Australian Shark and Ray Centre \n", + "332 Galapagos Islands Punta Vicente Roca, Isabella Island \n", + "2146 Eastern Cape Province Gonubie River Mouth \n", + "2147 Pernambuco Candeias \n", + "5423 Unknown Off Tripoli \n", + "5424 Bayelsa State Mouth of the Nun River \n", + "\n", + " Activity \\\n", + "253 Surfing \n", + "254 Unknown \n", + "331 Teasing a shark \n", + "332 Snorkeling \n", + "2146 Surfing \n", + "2147 Surfing \n", + "5423 HMS Victoria collided with the HMS Camperdown \n", + "5424 A barque wrecked \n", + "\n", + " Name Sex \\\n", + "253 male M \n", + "254 Boat: occupants: Matt Mitchell & 2 other people Unknown \n", + "331 male M \n", + "332 Graham Hurley M \n", + "2146 Wayne Monk M \n", + "2147 Clélio Rosendo Falcão Filho M \n", + "5423 crew M \n", + "5424 mate & crew M \n", + "\n", + " Injury Fatal (Y/N) \\\n", + "253 Laceration to left hand N \n", + "254 Shark bumped boat, no injury to occupants N \n", + "331 Cut to tip of finger by a captive shark PROVOK... N \n", + "332 Lacerations to left calf N \n", + "2146 Wetsuit lacerated N \n", + "2147 Arm bitten, FATAL Y \n", + "5423 FATAL Y \n", + "5424 FATAL Y \n", + "\n", + " Investigator or Source \\\n", + "253 USA Today, 11/16/2014 \n", + "254 Inquisitr, 11/17/2014 \n", + "331 Newcastle Herald, 5/22/2014 \n", + "332 G. Hurley \n", + "2146 W. Monk, M. Levine, GSAF \n", + "2147 JCOnline \n", + "5423 The Sydney Morning Herald, 6/29/1893 \n", + "5424 Otago Witness, 6/22/1893 \n", + "\n", + " href original order \n", + "253 http://sharkattackfile.net/spreadsheets/pdf_di... 5739 \n", + "254 http://sharkattackfile.net/spreadsheets/pdf_di... 5739 \n", + "331 http://sharkattackfile.net/spreadsheets/pdf_di... 5661 \n", + "332 http://sharkattackfile.net/spreadsheets/pdf_di... 5661 \n", + "2146 http://sharkattackfile.net/spreadsheets/pdf_di... 3847 \n", + "2147 http://sharkattackfile.net/spreadsheets/pdf_di... 3847 \n", + "5423 http://sharkattackfile.net/spreadsheets/pdf_di... 569 \n", + "5424 http://sharkattackfile.net/spreadsheets/pdf_di... 569 " + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Out of 5988 records, values of 4 records are duplicated. \n", + "# Action: drop one of the duplicate cases, sort the column and make it as index \n", + "\n", + "df[(df['original order']==5661) | (df['original order']==569)|(df['original order']==3847) | (df['original order']==5739)]" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [], + "source": [ + "rows_to_drop = [254,331,2146,5424]\n", + "df = df.drop(rows_to_drop)" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['original order'].is_unique" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [], + "source": [ + "df = df.set_index('original order',drop=True)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4. Clear data contained in the columns\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "1. Date\n", + " - 'reported' appeared multiple times in date and provide no useful information\n", + " - remove 'reported'\n" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [], + "source": [ + "remove_reported = {'Reported ':'',\n", + " 'Reported':'',\n", + " 'reported ':'',\n", + " 'repored':''}\n", + "\n", + "for x,y in remove_reported.items():\n", + " df['Date'] = df['Date'].str.replace(x,y)" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "original order\n", + "5993 18-Sep-16\n", + "5992 18-Sep-16\n", + "5991 18-Sep-16\n", + "5990 17-Sep-16\n", + "5989 16-Sep-16\n", + " ... \n", + "6 Before 1903\n", + "5 Before 1903\n", + "4 1900-1905\n", + "3 1883-1889\n", + "2 1845-1853\n", + "Name: Date, Length: 5988, dtype: object" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Date']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "2. Country\n", + " - Capitalize the first letter\n" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [], + "source": [ + "df['Country']=df['Country'].str.capitalize()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "3. Sex\n", + " - Remove extra space and incomprehensible values" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "M 4832\n", + "F 585\n", + "Unknown 566\n", + "M 2\n", + "lli 1\n", + ". 1\n", + "N 1\n", + "Name: Sex , dtype: int64" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Sex '].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [], + "source": [ + "df['Sex '] = df['Sex '].str.replace(' ','')" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \"\"\"Entry point for launching an IPython kernel.\n" + ] + } + ], + "source": [ + "df['Sex '][(df['Sex ']!='M') & (df['Sex ']!='F') & (df['Sex ']!='Unknown')] = 'Unknown'" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "M 4834\n", + "F 585\n", + "Unknown 569\n", + "Name: Sex , dtype: int64" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Sex '].value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "4. Fatal (Y/N)\n", + " - Replace unwanted format and empty value" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "N 4341\n", + "Y 1569\n", + "UNKNOWN 66\n", + " N 8\n", + "n 1\n", + "#VALUE! 1\n", + "F 1\n", + "N 1\n", + "Name: Fatal (Y/N), dtype: int64" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Fatal (Y/N)'].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "N 4351\n", + "Y 1570\n", + "UNKNOWN 67\n", + "Name: Fatal (Y/N), dtype: int64" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Fatal (Y/N)'].str.replace(' ','').str.replace('F','Y').str.replace('n','N').str.replace('#VALUE!','UNKNOWN').value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "original order\n", + "5993 N\n", + "5992 N\n", + "5991 N\n", + "5990 N\n", + "5989 N\n", + " ..\n", + "6 Y\n", + "5 Y\n", + "4 Y\n", + "3 Y\n", + "2 Y\n", + "Name: Fatal (Y/N), Length: 5988, dtype: object" + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Fatal (Y/N)'].str.replace('#VALUE!','')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 5. Split columns\n", + " - 'Investigator or Source' Column contains several informations in each value\n", + " - Split column into two:\n", + " - Investigator or Source\n", + " - Reference page/date" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "metadata": {}, + "outputs": [], + "source": [ + "df_copy = df.copy()" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0123456789
original order
5993Orlando Sentinel9/19/2016NoneNoneNoneNoneNoneNoneNoneNone
5992Orlando Sentinel9/19/2016NoneNoneNoneNoneNoneNoneNoneNone
5991Orlando Sentinel9/19/2016NoneNoneNoneNoneNoneNoneNoneNone
5990The Age9/18/2016NoneNoneNoneNoneNoneNoneNoneNone
5989The Age9/16/2016NoneNoneNoneNoneNoneNoneNoneNone
.................................
6H. Taunton; N. Bartlettp. 234NoneNoneNoneNoneNoneNoneNoneNone
5H. Taunton; N. Bartlettpp. 233-234NoneNoneNoneNoneNoneNoneNoneNone
4F. Schwartzp.23; C. CreswellGSAFNoneNoneNoneNoneNoneNoneNone
3The Sun10/20/1938NoneNoneNoneNoneNoneNoneNoneNone
2S.W. BakerNoneNoneNoneNoneNoneNoneNoneNoneNone
\n", + "

5988 rows × 10 columns

\n", + "
" + ], + "text/plain": [ + " 0 1 2 3 4 \\\n", + "original order \n", + "5993 Orlando Sentinel 9/19/2016 None None None \n", + "5992 Orlando Sentinel 9/19/2016 None None None \n", + "5991 Orlando Sentinel 9/19/2016 None None None \n", + "5990 The Age 9/18/2016 None None None \n", + "5989 The Age 9/16/2016 None None None \n", + "... ... ... ... ... ... \n", + "6 H. Taunton; N. Bartlett p. 234 None None None \n", + "5 H. Taunton; N. Bartlett pp. 233-234 None None None \n", + "4 F. Schwartz p.23; C. Creswell GSAF None None \n", + "3 The Sun 10/20/1938 None None None \n", + "2 S.W. Baker None None None None \n", + "\n", + " 5 6 7 8 9 \n", + "original order \n", + "5993 None None None None None \n", + "5992 None None None None None \n", + "5991 None None None None None \n", + "5990 None None None None None \n", + "5989 None None None None None \n", + "... ... ... ... ... ... \n", + "6 None None None None None \n", + "5 None None None None None \n", + "4 None None None None None \n", + "3 None None None None None \n", + "2 None None None None None \n", + "\n", + "[5988 rows x 10 columns]" + ] + }, + "execution_count": 108, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_copy['Investigator or Source'].str.split(pat=', ',expand=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "metadata": {}, + "outputs": [], + "source": [ + "# Keep the first two columns with more important information\n", + "df['Investigator or Source'] = df_copy['Investigator or Source'].str.split(pat=', ',expand=True)[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 121, + "metadata": {}, + "outputs": [], + "source": [ + "df = df.assign(Ref_date_or_page=df_copy['Investigator or Source'].str.split(pat=', ',expand=True)[1])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 6. Check duplicated rows " + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 122, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.duplicated().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 7. Rename and format columns \n", + " - Rename 'href' to 'Case file path\n", + " - Remove unessary space in 'Sex ' column name" + ] + }, + { + "cell_type": "code", + "execution_count": 123, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Case Number', 'Date', 'Year', 'Type', 'Country', 'Area', 'Location',\n", + " 'Activity', 'Name', 'Sex ', 'Injury', 'Fatal (Y/N)',\n", + " 'Investigator or Source', 'href', 'Ref_date_or_page'],\n", + " dtype='object')" + ] + }, + "execution_count": 123, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "metadata": {}, + "outputs": [], + "source": [ + "df.columns = ['Case Number', 'Date', 'Year', 'Type', 'Country', 'Area', 'Location',\n", + " 'Activity', 'Name', 'Sex', 'Injury', 'Fatal (Y/N)',\n", + " 'Investigator or Source','Case file path','Ref date or page']" + ] + }, + { + "cell_type": "code", + "execution_count": 129, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Case NumberDateYearTypeCountryAreaLocationActivityNameSexInjuryFatal (Y/N)Investigator or SourceCase file pathRef date or page
original order
59932016.09.18.c18-Sep-162016UnprovokedUsaFloridaNew Smyrna Beach, Volusia CountySurfingmaleMMinor injury to thighNOrlando Sentinelhttp://sharkattackfile.net/spreadsheets/pdf_di...9/19/2016
59922016.09.18.b18-Sep-162016UnprovokedUsaFloridaNew Smyrna Beach, Volusia CountySurfingChucky LucianoMLacerations to handsNOrlando Sentinelhttp://sharkattackfile.net/spreadsheets/pdf_di...9/19/2016
59912016.09.18.a18-Sep-162016UnprovokedUsaFloridaNew Smyrna Beach, Volusia CountySurfingmaleMLacerations to lower legNOrlando Sentinelhttp://sharkattackfile.net/spreadsheets/pdf_di...9/19/2016
59902016.09.1717-Sep-162016UnprovokedAustraliaVictoriaThirteenth BeachSurfingRory AngiolellaMStruck by fin on chest & legNThe Agehttp://sharkattackfile.net/spreadsheets/pdf_di...9/18/2016
59892016.09.1516-Sep-162016UnprovokedAustraliaVictoriaBells BeachSurfingmaleMNo injury: Knocked off board by sharkNThe Agehttp://sharkattackfile.net/spreadsheets/pdf_di...9/16/2016
\n", + "
" + ], + "text/plain": [ + " Case Number Date Year Type Country \\\n", + "original order \n", + "5993 2016.09.18.c 18-Sep-16 2016 Unprovoked Usa \n", + "5992 2016.09.18.b 18-Sep-16 2016 Unprovoked Usa \n", + "5991 2016.09.18.a 18-Sep-16 2016 Unprovoked Usa \n", + "5990 2016.09.17 17-Sep-16 2016 Unprovoked Australia \n", + "5989 2016.09.15 16-Sep-16 2016 Unprovoked Australia \n", + "\n", + " Area Location Activity \\\n", + "original order \n", + "5993 Florida New Smyrna Beach, Volusia County Surfing \n", + "5992 Florida New Smyrna Beach, Volusia County Surfing \n", + "5991 Florida New Smyrna Beach, Volusia County Surfing \n", + "5990 Victoria Thirteenth Beach Surfing \n", + "5989 Victoria Bells Beach Surfing \n", + "\n", + " Name Sex Injury \\\n", + "original order \n", + "5993 male M Minor injury to thigh \n", + "5992 Chucky Luciano M Lacerations to hands \n", + "5991 male M Lacerations to lower leg \n", + "5990 Rory Angiolella M Struck by fin on chest & leg \n", + "5989 male M No injury: Knocked off board by shark \n", + "\n", + " Fatal (Y/N) Investigator or Source \\\n", + "original order \n", + "5993 N Orlando Sentinel \n", + "5992 N Orlando Sentinel \n", + "5991 N Orlando Sentinel \n", + "5990 N The Age \n", + "5989 N The Age \n", + "\n", + " Case file path \\\n", + "original order \n", + "5993 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5992 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5991 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5990 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5989 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "\n", + " Ref date or page \n", + "original order \n", + "5993 9/19/2016 \n", + "5992 9/19/2016 \n", + "5991 9/19/2016 \n", + "5990 9/18/2016 \n", + "5989 9/16/2016 " + ] + }, + "execution_count": 129, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 8. Rearrange columns\n", + "\n", + " - Move 'Ref date or page' after 'Investigator or Source'" + ] + }, + { + "cell_type": "code", + "execution_count": 132, + "metadata": {}, + "outputs": [], + "source": [ + "df = df[['Case Number', 'Date', 'Year', 'Type', 'Country', 'Area', 'Location',\n", + " 'Activity', 'Name', 'Sex', 'Injury', 'Fatal (Y/N)',\n", + " 'Investigator or Source','Ref date or page','Case file path']]" + ] + }, + { + "cell_type": "code", + "execution_count": 134, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Case NumberDateYearTypeCountryAreaLocationActivityNameSexInjuryFatal (Y/N)Investigator or SourceRef date or pageCase file path
original order
59932016.09.18.c18-Sep-162016UnprovokedUsaFloridaNew Smyrna Beach, Volusia CountySurfingmaleMMinor injury to thighNOrlando Sentinel9/19/2016http://sharkattackfile.net/spreadsheets/pdf_di...
59922016.09.18.b18-Sep-162016UnprovokedUsaFloridaNew Smyrna Beach, Volusia CountySurfingChucky LucianoMLacerations to handsNOrlando Sentinel9/19/2016http://sharkattackfile.net/spreadsheets/pdf_di...
59912016.09.18.a18-Sep-162016UnprovokedUsaFloridaNew Smyrna Beach, Volusia CountySurfingmaleMLacerations to lower legNOrlando Sentinel9/19/2016http://sharkattackfile.net/spreadsheets/pdf_di...
59902016.09.1717-Sep-162016UnprovokedAustraliaVictoriaThirteenth BeachSurfingRory AngiolellaMStruck by fin on chest & legNThe Age9/18/2016http://sharkattackfile.net/spreadsheets/pdf_di...
59892016.09.1516-Sep-162016UnprovokedAustraliaVictoriaBells BeachSurfingmaleMNo injury: Knocked off board by sharkNThe Age9/16/2016http://sharkattackfile.net/spreadsheets/pdf_di...
\n", + "
" + ], + "text/plain": [ + " Case Number Date Year Type Country \\\n", + "original order \n", + "5993 2016.09.18.c 18-Sep-16 2016 Unprovoked Usa \n", + "5992 2016.09.18.b 18-Sep-16 2016 Unprovoked Usa \n", + "5991 2016.09.18.a 18-Sep-16 2016 Unprovoked Usa \n", + "5990 2016.09.17 17-Sep-16 2016 Unprovoked Australia \n", + "5989 2016.09.15 16-Sep-16 2016 Unprovoked Australia \n", + "\n", + " Area Location Activity \\\n", + "original order \n", + "5993 Florida New Smyrna Beach, Volusia County Surfing \n", + "5992 Florida New Smyrna Beach, Volusia County Surfing \n", + "5991 Florida New Smyrna Beach, Volusia County Surfing \n", + "5990 Victoria Thirteenth Beach Surfing \n", + "5989 Victoria Bells Beach Surfing \n", + "\n", + " Name Sex Injury \\\n", + "original order \n", + "5993 male M Minor injury to thigh \n", + "5992 Chucky Luciano M Lacerations to hands \n", + "5991 male M Lacerations to lower leg \n", + "5990 Rory Angiolella M Struck by fin on chest & leg \n", + "5989 male M No injury: Knocked off board by shark \n", + "\n", + " Fatal (Y/N) Investigator or Source Ref date or page \\\n", + "original order \n", + "5993 N Orlando Sentinel 9/19/2016 \n", + "5992 N Orlando Sentinel 9/19/2016 \n", + "5991 N Orlando Sentinel 9/19/2016 \n", + "5990 N The Age 9/18/2016 \n", + "5989 N The Age 9/16/2016 \n", + "\n", + " Case file path \n", + "original order \n", + "5993 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5992 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5991 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5990 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5989 http://sharkattackfile.net/spreadsheets/pdf_di... " + ] + }, + "execution_count": 134, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Export to pickle and csv files" + ] + }, + { + "cell_type": "code", + "execution_count": 135, + "metadata": {}, + "outputs": [], + "source": [ + "df.to_pickle('cleaned_shark_attacks.pkl')" + ] + }, + { + "cell_type": "code", + "execution_count": 136, + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv('cleaned_shark_attacks.csv')" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_projects/pandas-project/your-code/shark_attack.csv b/module-1_projects/pandas-project/your-code/shark_attack.csv new file mode 100644 index 0000000..18b63fd --- /dev/null +++ b/module-1_projects/pandas-project/your-code/shark_attack.csv @@ -0,0 +1,6004 @@ +Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Sex ,Age,Injury,Fatal (Y/N),Time,Species ,Investigator or Source,pdf,href formula,href,Case Number,Case Number,original order,, +2016.09.18.c,18-Sep-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,16,Minor injury to thigh,N,13h00,,"Orlando Sentinel, 9/19/2016",2016.09.18.c-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf,2016.09.18.c,2016.09.18.c,5993,, +2016.09.18.b,18-Sep-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chucky Luciano,M,36,Lacerations to hands,N,11h00,,"Orlando Sentinel, 9/19/2016",2016.09.18.b-Luciano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf,2016.09.18.b,2016.09.18.b,5992,, +2016.09.18.a,18-Sep-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,43,Lacerations to lower leg,N,10h43,,"Orlando Sentinel, 9/19/2016",2016.09.18.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf,2016.09.18.a,2016.09.18.a,5991,, +2016.09.17,17-Sep-16,2016,Unprovoked,AUSTRALIA,Victoria,Thirteenth Beach,Surfing,Rory Angiolella,M,,Struck by fin on chest & leg,N,,,"The Age, 9/18/2016",2016.09.17-Angiolella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17-Angiolella.pdf,2016.09.17,2016.09.17,5990,, +2016.09.15,16-Sep-16,2016,Unprovoked,AUSTRALIA,Victoria,Bells Beach,Surfing,male,M,,No injury: Knocked off board by shark,N,,2 m shark,"The Age, 9/16/2016",2016.09.16-BellsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf,2016.09.16,2016.09.15,5989,, +2016.09.15.R,15-Sep-16,2016,Boat,AUSTRALIA,Western Australia,Bunbury,Fishing,Occupant: Ben Stratton,,,Shark rammed boat. No injury to occupant,N,,,"West Australian, 9/15/2016",2016.09.15.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.15.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.15.R-boat.pdf,2016.09.15.R,2016.09.15.R,5988,, +2016.09.11,11-Sep-16,2016,Unprovoked,USA,Florida,"Ponte Vedra, St. Johns County",Wading,male,M,60s,Minor injury to arm,N,15h15,3' to 4' shark,"News4Jax, 9/11/2016",2016.09.11-PonteVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.11-PonteVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.11-PonteVedra.pdf,2016.09.11,2016.09.11,5987,, +2016.09.07,07-Sep-16,2016,Unprovoked,USA,Hawaii,"Makaha, Oahu",Swimming,female,F,51,Severe lacerations to shoulder & forearm,N,14h30,"Tiger shark, 10?","Hawaii News Now, 9/7/2016",2016.09.07-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.07-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.07-Oahu.pdf,2016.09.07,2016.09.07,5986,, +2016.09.06,06-Sep-16,2016,Unprovoked,NEW CALEDONIA,North Province,Koumac,Kite surfing,David Jewell,M,50,FATAL,Y,15h40,,"TVANouvelles, 9/6/2016",2016.09.06-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.06-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.06-Jewell.pdf,2016.09.06,2016.09.06,5985,, +2016.09.05.b,05-Sep-16,2016,Unprovoked,USA,South Carolina,"Kingston Plantation, Myrtle Beach, Horry County",Boogie boarding,Rylie Williams,F,12,Lacerations & punctures to lower right leg,N,Late afternoon,,"C. Creswell, GSAF",2016.09.05.b-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.b-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.b-Williams.pdf,2016.09.05.b,2016.09.05.b,5984,, +2016.09.05.a,05-Sep-16,2016,Unprovoked,AUSTRALIA,Western Australia,Injidup ,Surfing,Fraser Penman,M,,"No inury, board broken in half by shark",N,Late afternoon,,"Perth Now, 9/5/2016",2016.09.05.a-Penman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.a-Penman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.a-Penman.pdf,2016.09.05.a,2016.09.05.a,5983,, +2016.09.04,04-Sep-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body boarding,Austin Moore,M,9,Foot bitten,N,,,"Orlando Sentinel, 9/7/2016",2016.09.04-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.04-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.04-Moore.pdf,2016.09.04,2016.09.04,5982,, +2016.09.01,01-Sep-16,2016,Unprovoked,USA,California,"Refugio State Beach, Santa Barbara County",Spearfishing,Tyler McQuillen ,M,22,Two toes broken & lacerated,N,,White shark,"R. Collier, GSAF",2016.09.01-McQuillen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.01-McQuillen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.01-McQuillen.pdf,2016.09.01,2016.09.01,5981,, +2016.08.29.b,29-Aug-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Sam Cumiskey ,M,25,Lacerations to right foot,N,15h00,"Bull shark, 6'","News Channel 8, 8/30/16",2016.08.29.b-Cumiskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.b-Cumiskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.b-Cumiskey.pdf,2016.08.29.b,2016.08.29.b,5980,, +2016.08.29.a,29-Aug-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,37,Minor injury to ankle,N,14h00,,"News Channel 8, 8/30/16",2016.08.29.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.a-NSB.pdf,2016.08.29.a,2016.08.29.a,5979,, +2016.08.27,27-Aug-16,2016,Unprovoked,REUNION,,Boucan Canot,Surfing,Laurent Chardard ,M,20,"Right arm severed, ankle severely bitten ",N,17h00,"Bull shark, 3.5 m","LaDepeche, 8/29/2016",2016.08.27-Chardard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.27-Chardard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.27-Chardard.pdf,2016.08.27,2016.08.27,5978,, +2016.08.25,25-Aug-16,2016,Unprovoked,USA,Florida,"Ponte Vedra, St. Johns County",Wading,David Cassetty,M,49,Minor injury to ankle,N,16h00,,"First Coast News, 7/25/2016",2016.08.25-Cassetty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.25-Cassetty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.25-Cassetty.pdf,2016.08.25,2016.08.25,5977,, +2016.08.07,07-Aug-16,2016,Unprovoked,BAHAMAS,New Providence Island,Nassau,Snorkeling,Johnny Stoch,M,15,Lacerations to left leg,N,,,"ABC, 8/11/2016",2016.08.07-Stoch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.07-Stoch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.07-Stoch.pdf,2016.08.07,2016.08.07,5976,, +2016.08.06,06-Aug-16,2016,Unprovoked,USA,Hawaii,Maui,SUP Foil boarding,Connor Baxter,M,21,"No inury, shark & board collided",N,,"Tiger shark, 10' ","SUP, 8/9/2015",2016.08.06-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.06-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.06-Baxter.pdf,2016.08.06,2016.08.06,5975,, +2016.08.04,04-Aug-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Tyler,M,22,Big toe bitten,N,,Blacktip shark,"News 965, 8/5/2016",2016.06.04-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Tyler.pdf,2016.08.04,2016.08.04,5974,, +2016.07.29,29-Jul-16,2016,Unprovoked,SPAIN,Alicante Province,Arenales del Sol,Swimming,male,M,40,Lacerations to right hand,N,11h30,Blue shark,"Informacion.es, 7/29/2016",2016.07.29-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.29-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.29-Spain.pdf,2016.07.29,2016.07.29,5973,, +2016.07.28.R,28-Jul-16,2016,Unprovoked,CHINA,Hong Kong,,Swimming,Justus Franz,M,72,Lacerations to leg,N,,,"Klassick, 7/28/2016",2016.07.28.R-Franz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28.R-Franz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28.R-Franz.pdf,2016.07.28.R,2016.07.28.R,5972,, +2016.07.28,28-Jul-16,2016,Boat,AUSTRALIA,Western Australia,Near Albany,Kayaking,Ian Watkins,M,,"No injury, shark nudged kayak repeatedly",N,,White shark,"ABC Australia, 7/28/2016",2016.07.28-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28-Watkins.pdf,2016.07.28,2016.07.28,5971,, +2016.07.27,27-Jul-16,2016,Provoked,USA,Florida,"Florida Keys, Monroe County",Lobstering,Warren Sapp,M,43,Laceration to left forearm PROVOKED INCIDENT,N,,"Nurse shark, 4'","Tampa Bay Times, 7/27/2016",2016.07.27-Sapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.27-Sapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.27-Sapp.pdf,2016.07.27,2016.07.27,5970,, +2016.07.26,26-Jul-16,2016,Unprovoked,AUSTRALIA,New South Wales,"Sharpes Beach, Ballina",Surfing,Curran See & Harry Lake,M,18,"No injury. Leg rope severed, knocked off board by shark",N,12h00,,"Gold Coast Bulletin, 7/28/2016",2016.07.26-Ballina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.26-Ballina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.26-Ballina.pdf,2016.07.26,2016.07.26,5969,, +2016.07.24,24-Jul-16,2016,Unprovoked,JAPAN,Kochi Prefecture,Irino Beach,Surfing,male,M,29,Lacerations to left leg,N,19h05,,"Japan Times, 7/25/2016",2016.07.24-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.24-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.24-Japan.pdf,2016.07.24,2016.07.24,5968,, +2016.07.23.b,23-Jul-16,2016,Unprovoked,AUSTRALIA,Tasmania,Clifton Beach,Surfing,Zebulon Critchlow,M,36,Calf bumped but no injury,N,,,"C. Black, GSAF",2016.07.23.b-Critchlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23.b-Critchlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23.b-Critchlow.pdf,2016.07.23.b,2016.07.23.b,5967,, +2016.07.23.a,23-Jul-16,2016,Unprovoked,BAHAMAS,Abaco Islands,Green Turtle Cay,Spearfishing,Steve Cutbirth,M,,Lacerations to face and right leg,N,,"Bull shark, 6'","KWTX, 7/23/2016",2016.07.23.a-Cutbirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23.a-Cutbirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23-Cutbirth.pdf,2016.07.23.a,2016.07.23.a,5966,, +2016.07.20,20-Jul-16,2016,Provoked,AUSTRALIA,Queensland,"20 k off The Spit, off the Gold Coast",Fishing,Scott van Burck,M,31,Laceration to left calf from hooked shark PROVOKED INCIDENT,N,After noon,"reef shark, 1m","Nine News, 7/20/2016",2016.07.20-Burck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.20-Burck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.20-Burck.pdf,2016.07.20,2016.07.20,5965,, +2016.07.17,17-Jul-16,2016,Boat,USA,Alabama,8 miles off Mobile,Fishing in Alabama Deep Fishing Rodeo,Occupant: Ben Raines,,,"No injury, shark bit trolling motor",N,,"Tiger shark, 10' ","Al.com, 7/19/2016",2016.07.17-Gulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.17-Gulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.17-Gulf.pdf,2016.07.17,2016.07.17,5964,, +2016.07.16.b,16-Jul-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,female,F,9,Minor injury to leg,N,1300,,"Orlando Sentinel, 7/21/2016",2016.07.16.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.b-NSB.pdf,2016.07.16.b,2016.07.16.b,5963,, +2016.07.16.a,16-Jul-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",,female,F,11,Minor injury to toes,N,11h00,,"Orlando Sentinel, 7/21/2016",2016.07.16.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.a-NSB.pdf,2016.07.16.a,2016.07.16.a,5962,, +2016.07.15,15-Jul-16,2016,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Swimming,male,M,,Puncture wounds to foot,N,,,"C. Creswell, GSAF",2016.07.14-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14-MyrtleBeach.pdf,2016.07.15,2016.07.15,5961,, +2016.07.14.4,Reported 14-Jul-2016,2016,Unprovoked,BAHAMAS,,Tiger Beach,Scuba Diving,Michael Dornellas,M,,Face bruised when partly blind shark collided with him,N,,"Lemon shark, 9'","GrindTV, 7/14/2016",2016.07.14.R-TigerBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14.R-TigerBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14.R-TigerBeach.pdf,2016.07.14.R,2016.07.14.4,5960,, +2016.07.08.R,Reported 08-Jul-2016,2016,Unprovoked,SPAIN,Canary Islands,"Las Teresitas, Tenerife",Wading,female,F,10,"5 tiny puncture marks to lower leg, treated with hydrogen peroxide",N,,Angel shark,La Opinion de Tenerife,2016.07.08.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08.R-Spain.pdf,2016.07.08.R,2016.07.08.R,5959,, +2016.07.08,08-Jul-16,2016,Boat,USA,California,"Capitola, Santa Cruz County",Fishing for squid,Mark Davis,M,,"No injury. Hull bitten, tooth fragment recovered",N,,White shark,"R. Collier, GSAF",2016.07.08-CapitolaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08-CapitolaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08-CapitolaBoat.pdf,2016.07.08,2016.07.08,5958,, +2016.07.07.b,07-Jul-16,2016,Provoked,USA,Massachusetts,"Off Gloucester, Essec County",Fishing,Roger Brissom,M,59,Fin of hooked shark injured fisherman's forearm. . PROVOKED INCIDENT,N,10h00,dogfish shark,Salem News 7/8/2016,2016.07.07.b-Brissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.b-Brissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.b-Brissom.pdf,2016.07.07.b,2016.07.07.b,5957,, +2016.07.07.a,07-Jul-16,2016,Boat,USA,California,"Off Palos Verdes peninsula, Los Angeles County",Fishing for sharks,24' boat Shark Tagger Occupant Keith Poe,M,,"No injury. Hull bitten, tooth fragment recovered",N,,White shark,"R. Collier, GSAF",2016.07.07.a-PoeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.a-PoeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.a-PoeBoat.pdf,2016.07.07.a,2016.07.07.a,5956,, +2016.07.06,06-Jul-16,2016,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Swimming,female,F,42,"Buttocks, thigh, left hand & wrist injured",N,14h30 / 15h30,,"Florida Today, 7/6/2016",2016.07.06-Njwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.06-Njwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.06-Njwoman.pdf,2016.07.06,2016.07.06,5955,, +2016.07.04,04-Jul-16,2016,Provoked,AUSTRALIA,Queensland,Palm Cove ,Fishing,Nathan Oliver,M,34,Right thigh injured by hooked pregnant female shark PROVOKED INCIDENT,N,22h00,Tawny nurse shark,"Cairns Post, 7/9/2016",2016.07.04-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.04-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.04-Oliver.pdf,2016.07.04,2016.07.04,5954,, +2016.06.27,27-Jun-16,2016,Unprovoked,USA,South Carolina,Sullivan's Island,,male,M,35,Minor injury,N,16h20,3' to 4' shark,"C. Creswell, GSAF",2016.06.27-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.27-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.27-Sullivans.pdf,2016.06.27,2016.06.27,5953,, +2016.06.25,25-Jun-16,2016,Unprovoked,USA,North Carolina,"Atlantic Beach, Emerald Isle, Carteret County",Surfing,male,M,11,Foot injured,N,14h34,,"C. Creswell, GSAF",2016.06.25-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.25-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.25-AtlanticBeach.pdf,2016.06.25,2016.06.25,5952,, +2016.06.24,24-Jun-16,2016,Unprovoked,COLUMBIA,Isla Provedencia,,Scuba Diving,Arturo Velez,M,59,Severe bite to right hand,N,11h00,"Caribbean reef shark, 4.5'",Dr. A. Velez,2016.06.24-Velez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.24-Velez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.24-Velez.pdf,2016.06.24,2016.06.24,5951,, +2016.06.23,23-Jun-16,2016,Unprovoked,SOUTH AFRICA,Western Cape Province,Ryspunt,Spearfishing,male,M,43,Injuries to left leg & right hand,N,,White shark,"News 24, 6/23/2016",2016.06.23-Rysport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.23-Rysport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.23-Rysport.pdf,2016.06.23,2016.06.23,5950,, +2016.06.21.b,21-Jun-16,2016,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Floating,Jeff Schott,M,42,Lacerations and punctures to foot,N,15h25,3' to 5' shark,"C. Creswell, GSAF",2016.06.21.b-Schott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.b-Schott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.b-Schott.pdf,2016.06.21.b,2016.06.21.b,5949,, +2016.06.21.a,21-Jun-16,2016,Unprovoked,USA,Florida,"Pelican Beach Park, Satellite Beach, Brevard County",Wading,male,M,,Injuries to right calf,N,14h55,,"Florida Today, 6/22/2016",2016.06.21.a-SatelliteBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.a-SatelliteBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.a-SatelliteBeach.pdf,2016.06.21.a,2016.06.21.a,5948,, +2016.06.15.b,15-Jun-16,2016,Unprovoked,USA,Hawaii,"Kalapaki Beach, Kauai",Surfing,male,M,,Single puncture wound to arm,N,06h00,3' to 4' shark,"West Hawaii Today, 6/16/2016",2016.06.15.b-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.b-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.b-Kauai.pdf,2016.06.15.b,2016.06.15.b,5947,, +2016.06.15.a,15-Jun-16,2016,Provoked,AUSTRALIA,Western Australia,Coral Bay,Spearfishing,Brad Vale,M,19,No injury but shark punctured his wetsuit after he prodded it with his spear PROVOKED INCIDENT,N,,5' shark,"Perth Now, 6/16/2016",2016.06.15.a-Vale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.a-Vale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.a-Vale.pdf,2016.06.15.a,2016.06.15.a,5946,, +2016.06.14,14-Jun-16,2016,Unprovoked,USA,Texas,"Pirates Beach, Galveston",Floating in tube,Marin Alice Melton,F,6,Injury to lower leg,N,17h30,3' to 4' shark,"Click2Houston, 6/14/2016",2016.06.14-Melton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.14-Melton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.14-Melton.pdf,2016.06.14,2016.06.14,5945,, +2016.06.11,11-Jun-16,2016,Unprovoked,USA,North Carolina,"Atlantic Beach, Emerald Isle, Carteret County",Standing,Dillon Bowen,M,19,Laceration to wrist,N,15h00,3' shark,"C. Creswell, GSAF",2016.06.11-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.11-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.11-Bowen.pdf,2016.06.11,2016.06.11,5944,, +2016.06.07,07-Jun-16,2016,Invalid,USA,South Carolina,"Folly Beach, Charleston County",Surfing,Jack O'Neill,M,27,"No injury, board damaged",N,11h30,Said to involve an 8' shark but more likely damage caused by debris,"C. Creswell, GSAF",2016.06.07-Oneill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.07-Oneill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.07-Oneill.pdf,2016.06.07,2016.06.07,5943,, +2016.06.05.b,05-Jun-16,2016,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Swimming,male,M,64,Leg bitten,N,08h30,,"Daytona Beach News-Journal, 6/5/2016",2016.06.05.b-Flagler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.b-Flagler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.b-Flagler.pdf,2016.06.05.b,2016.06.05.b,5942,, +2016.06.05.a,05-Jun-16,2016,Unprovoked,AUSTRALIA,Western Australia,Mindarie,Diving,Doreen Collyer,F,60,FATAL,Y,11h30,3+ m shark,"B. Myatt, GSAF",2016.06.05.a-Collyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.a-Collyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.a-Collyer.pdf,2016.06.05.a,2016.06.05.a,5941,, +2016.06.04,04-Jun-16,2016,Unprovoked,EGYPT,Suez,Ain Sokhna,Swimming,Omar Abdel Qader,M,23,"Leg severely bitten, surgically amputated",N,Morning,Mako shark,"Ahram Online, 6/4/2016",2016.06.04-Qader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Qader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Qader.pdf,2016.06.04,2016.06.04,5940,, +2016.06.02.b,02-Jun-16,2016,Unprovoked,AUSTRALIA,New South Wales,Kingscliff,Spearfishing,Waade Madigan and Dr Seyong Kim ,M,,"No injury, but sharks repeatedly hit their fins and guns",,,Bronze whaler sharks x 3,"Gold Coast Bulletin, 6/4/2016",2016.06.02.b-Matigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.b-Matigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.b-Matigan.pdf,2016.06.02.b,2016.06.02.b,5939,, +2016.06.02.a,02-Jun-16,2016,Unprovoked,NEW CALEDONIA,," Cte-Blanche, Nouma ",Kite surfing,Pierre de Rotalier,M,,Laceration to heel,N,Afternoon,3 m shark,"Les Nouvelles Caledoniennes, 6/3/2016",2016.06.02.a-Pierre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.a-Pierre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.a-Pierre.pdf,2016.06.02.a,2016.06.02.a,5938,, +2016.05.31,31-May-16,2016,Unprovoked,AUSTRALIA,Western Australia,"Falcon Beach, Mandurah",Surfing,Ben Gerring,M,29,FATAL,Y,16h00,White shark,"Perth Now, 5/31/2016",2016.05.31-Gerring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.31-Gerring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.31-Gerring.pdf,2016.05.31,2016.05.31,5937,, +2016.05.29.b,29-May-16,2016,Unprovoked,USA,California,"Corona Del Mar, Newport, Orange County",Swimming," Maria Korcsmaros +",F,52,Injuries to arm and shoulder,N,16h00,,"R. Collier, GSAF",2016.05.29.b-Corona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.b-Corona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.b-Corona.pdf,2016.05.29.b,2016.05.29.b,5936,, +2016.05.29.a,29-May-16,2016,Unprovoked,USA,Florida,"Neptune, Duval County",Swimming,male,M,13,Injury to posterior right leg,N,15h45,5' shark,"News4Jax, 5/29/2016",2016.05.29.a-Neptune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.a-Neptune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.a-Neptune.pdf,2016.05.29.a,2016.05.29.a,5935,, +2016.05.22,22-May-16,2016,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Swimming,Mary Marcus,F,57,Puncture wounds to thigh,N,12h00,,"Florida Today, 5/22/2016",2016.05.22-Marcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.22-Marcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.22-Marcus.pdf,2016.05.22,2016.05.22,5934,, +2016.05.21.b,21-May-16,2016,Unprovoked,USA,Florida,"St. Petersburg, Pinellas County",Swimming,Krystal Magee,F,22,Lacerations and puncture wounds to foot and ankle,N,18h00,"Bull shark, 4' to 5'","ABC Action News, 6/15/2016",2016.05.21.b-Magee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.b-Magee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.b-Magee.pdf,2016.05.21.b,2016.05.21.b,5933,, +2016.05.21.a,21-May-16,2016,Unprovoked,USA,Florida,"Hugenot Beach , Jacksonville, Duval County",Swimming,female,F,11,"Back, arm & hand injured",N,17h46,,"Action News Jax, 5/23/2016",2016.05.21.a-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.a-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.a-Girl.pdf,2016.05.21.a,2016.05.21.a,5932,, +2016.05.18,18-May-16,2016,Unprovoked,USA,Florida,"Ponte Vedra, St. Johns County",Swimming,Mark Wilson,M,48,Ankle bitten,N,Morning ,"Blacktip shark, 4'","News4Jax, 5/19/2016",2016.05.18-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.18-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.18-Wilson.pdf,2016.05.18,2016.05.18,5931,, +2016.05.15,15-May-16,2016,Provoked,USA,Florida,"Boca Raton, Palm Beach County",Teasing a shark,female,F,23,Arm grabbed PROVOKED INCIDENT,N,13h20,"Nurse shark, 2'","CBS News, 5/16/2016",2016.05.15-Boca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.15-Boca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.15-Boca.pdf,2016.05.15,2016.05.15,5930,, +2016.05.03,03-May-16,2016,Unprovoked,USA,Hawaii,"Wailea Beach, Maui",Floating,male,M,59,Minor lacerations to right shoulder,N,15h49,,"Maui Now, 5/3/2016",2016.05.03-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.03-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.03-Maui.pdf,2016.05.03,2016.05.03,5929,, +2016.05.02,02-May-16,2016,Provoked,NEW ZEALAND,North Island,Cormandel,Fishing,male,M,39,Foot bitten by landed shark PROVOKED INCIDENT,N,Afternoon,"Mako shark, 1.5 m [5'] ",Radio New Zealand 5/3/2016,2016.05.02-NZ-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.02-NZ-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.02-NZ-pdf,2016.05.02,2016.05.02,5928,, +2016.04.25,25-Apr-16,2016,Unprovoked,INDONESIA,Bali,Balian,Surfing,Ryan Boarman,M,24,Elbow bitten,N,07h00,"Bull shark, 6'","News.com.au, 4/26/2016",2016.04.25-Boarman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.25-Boarman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.25-Boarman.pdf,2016.04.25,2016.04.25,5927,, +2016.04.23,23-Apr-16,2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kelton Beardall,M,15,Minor injury to left foot,N,17h30,,"News4Jax, 4/23/2016",2016.04.23-Beardall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.23-Beardall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.23-Beardall.pdf,2016.04.23,2016.04.23,5926,, +2016.04.22,22-Apr-16,2016,Unprovoked,SOUTH AFRICA,Western Cape Province,"Robberg Beach, Plettenberg Bay",Surf-skiing,Dave Manson,M,,"No injury, surf-ski bitten",N,08h00,White shark,"Knysna-Plett Herald, 4/22/2016",2016.04.22-Manson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.22-Manson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.22-Manson.pdf,2016.04.22,2016.04.22,5925,, +2016.04.19,19-Apr-16,2016,Unprovoked,AUSTRALIA,New South Wales,"First Sun Beach, Byron Bay",Swimming,Zak Kedem,M,12,Minor puncture wound to foot,N,12h00,Wobbegong shark,"Gold Coast Bulletin, 4/19/2016",2016.04.19-Kedem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.19-Kedem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.19-Kedem.pdf,2016.04.19,2016.04.19,5924,, +2016.04.18,18-Apr-16,2016,Provoked,FRENCH POLYNESIA,Tuamotos,Makemo Atoll,Spearfishing,Teva Tokoragi,M,26,"Severe lacerations to right forearm, hand and calf from speared shark PROVOKED INCIDENT",N,,"Grey reef shark, 2 m","Tahiti Infos, 4/19/2016",2016.04.18-Tokoragi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.18-Tokoragi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.18-Tokoragi.pdf,2016.04.18,2016.04.18,5923,, +2016.04.13,13-Apr-16,2016,Unprovoked,USA,Florida,"Off Singer Island, Palm Beach County",Spearfishing,Kyle Senkowicz,M,26,Multiple bites to right arm,N,,"Bull shark, 7'","Palm Beach Post, 4/13/2016",2016.04.13-Senkowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.13-Senkowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.13-Senkowicz.pdf,2016.04.13,2016.04.13,5922,, +2016.04.09,09-Apr-16,2016,Unprovoked,NEW CALEDONIA,Grand Terre,Poe Beach,Walking,Nicole Malignon,F,69,FATAL,Y,10h45,"Tiger shark, 2.5 m",Les Nouvelles Caledonnie. 4/11/2016,2016.04.09-Malignon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.09-Malignon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.09-Malignon.pdf,2016.04.09,2016.04.09,5921,, +2016.04.08,08-Apr-16,2016,Invalid,CAPE VERDE,Boa Vista Island,,,a British citizen,M,60,"""Serious""",N,,Shark involvement not confirmed,L.O.Guttke,2016.04.08-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.08-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.08-CapeVerde.pdf,2016.04.08,2016.04.08,5920,, +2016.04.07.b,07-Apr-16,2016,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Fishing,Jonathan Lester,M,34,Left hand bitten,N,,5' to 6' shark,,2016.04.07.b-Lester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.b-Lester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.b-Lester.pdf,2016.04.07.b,2016.04.07.b,5919,, +2016.04.07.a,07-Apr-16,2016,Invalid,USA,Florida,"Corners Beach, Jupiter, Palm Beach County",SUP,Maximo Trinidad,M,,Fell off board when spinner shark leapt from the water next to him. No injury to surfer,N,,,YouTube,2016.04.07.a-Trinidad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.a-Trinidad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.a-Trinidad.pdf,2016.04.07.a,2016.04.07.a,5918,, +2016.03.31,31-Mar-16,2016,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,J. Orr,F,46,Minor injury to left foot,N,11h00,,"Maui Now, 3/31/2016",2016.03.31-Orr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.31-Orr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.31-Orr.pdf,2016.03.31,2016.03.31,5917,, +2016.03.30,30-Mar-16,2016,Unprovoked,AUSTRALIA,New South Wales,Bombo Beach,Surfing,Brett Connellan,M,22,Severe injury to thigh,N,19h00,,"Daily Telegraph, 3/30/2016",2016.03.30-Connellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.30-Connellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.30-Connellan.pdf,2016.03.30,2016.03.30,5916,, +2016.03.28.b,28-Mar-16,2016,Unprovoked,USA,Florida,"Fort Myers Beach, Lee County",,Nick Kawa,M,Teen,Minor injury to arm. Possibly caused by smalll nurse shark,N,,Shark involvement not confirmed,"Fox 35, 3/30/2015",2016.03.28.b-Kawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.28.b-Kawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.28.b-Kawa.pdf,2016.03.28.b,2016.03.28.b,5915,, +2016.03.28.a,28-Mar-16,2016,Unprovoked,AUSTRALIA,New South Wales,North Cronulla Beach,Surfing,Roie Smyth,M,41,"No injury, board dented",N,11h00,,"B. Myatt, GSAF",2013.03.28.a-Smyth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.28.a-Smyth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.28.a-Smyth.pdf,2016.03.28.a,2016.03.28.a,5914,, +2016.03.26,26-Mar-16,2016,Provoked,BAHAMAS,,,,Henry Kreckman ,M,9,Minor injury to chest PROVOKED INCIDENT,N,,"Nurse shark, 2.5-ft","Wisconsin State Journal, 4/2/2016",2016.03.26-Kreckman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.26-Kreckman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.26-Kreckman.pdf,2016.03.26,2016.03.26,5913,, +2016.03.13,13-Mar-16,2016,Invalid,USA,California,"Bolsa Chica State Park, Orange County",Surfing,unknown,,,Board reportedly bumped by shark. No injury,N,Morning,Shark involvement not confirmed,"Orange County Register, 3/13/2016",2016.03.13-BolsaChicaSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.13-BolsaChicaSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.13-BolsaChicaSurfer.pdf,2016.03.13,2016.03.13,5912,, +2016.03.11,11-Mar-16,2016,Unprovoked,USA,Florida,"Vero Beach, St. Lucie County",Body surfing,Daniel Kenny,M,19,Lacerations to right foot and ankle,N,13h30,,"WCBV-5, 3/31/206",2016.03.11-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.11-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.11-Kenny.pdf,2016.03.11,2016.03.11,5911,, +2016.03.10,10-Mar-16,2016,Unprovoked,Fiji,Vanua Levu,,Diving for beche-de-mer,Maika Tabua,M,45,FATAL,Y,Afternoon,,"Fiji Sun, 3/12/2016",2016.03.10-Tabua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.10-Tabua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.10-Tabua.pdf,2016.03.10,2016.03.10,5910,, +2016.03.04,04-Mar-16,2016,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",,male,M,12,Superficial injury to foot,N,Afternoon,,WPTV. 3/4/2016,2016.03.04-OCPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.04-OCPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.04-OCPark.pdf,2016.03.04,2016.03.04,5909,, +2016.03.03.R,Reported 03-Mar-2016,2016,Unprovoked,AUSTRALIA,South Australia,Wrights Bay,Fishing,Lee Taplin,M,,Puncture wounds to right calf,N,Midnight,Bronze whaler,"9 News, 3/1/2016",2016.03.03.R-Taplin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.03.R-Taplin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.03.R-Taplin.pdf,2016.03.03.R,2016.03.03.R,5908,, +2016.03.02,02-Mar-16,2016,Unprovoked,BRAZIL,Santa Catarina State,Escalerio Beach Balnerio Cambori,Swimming,Rafael Hermes Thomas,M,41,Minor injury to head,N,,Sandtiger shark,"Misones Online, 3/4/2016",2016.03.02-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.02-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.02-Thomas.pdf,2016.03.02,2016.03.02,5907,, +2016.02.22,22-Feb-16,2016,Unprovoked,NEW CALEDONIA,South Province,"Ricaudy Reef, Noumea",Kite surfing,Adrian *,M,21,Puncture wounds to right thigh,N,19h00,,"Les Nouvelles Caldoniennes, 2/23/2016",2016.02.22-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.22-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.22-Noumea.pdf,2016.02.22,2016.02.22,5906,, +2016.02.19, 19-Feb-2016,2016,Unprovoked,NEW CALEDONIA,South Province,Yate,Spearfishing,male,M,31,Forearm bitten,N,16h00,,"Les Nouvelles Caldoniennes, 2/19/2016",2016.02.19-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.19-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.19-NewCaledonia.pdf,2016.02.19,2016.02.19,5905,, +2016.02.12,12-Feb-16,2016,Unprovoked,DOMINICAN REPUBLIC,Altagracia Province,"Bavaro Beach, Punta Cana",Wading,Patricia Howe,F,,Avulsion injury to lower leg,N,15h00,,S. Harris,2016.02.12-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.12-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.12-Howe.pdf,2016.02.12,2016.02.12,5904,, +2016.02.10.R,Reported 10-Feb-2016,2016,Invalid,CAYMAN ISLANDS,Grand Cayman,Stingray City Bar,Feeding stingrays?,Richard Branson,M,65,Minor injury to wrist from Southern stingray,N,,No shark involvement,R. Branson,2016.02.10.R-Branson-stingray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.10.R-Branson-stingray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.10.R-Branson-stingray.pdf,2016.02.10.R,2016.02.10.R,5903,, +2016.02.10,10-Feb-16,2016,Invalid,AUSTRALIA,Tasmania,Nettley Bay,Surfing,male,M,,"No injury, knocked off board",N,12h30,No shark involvement,"C. Black, GSAF",2016.02.11-NettleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.11-NettleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.11-NettleyBay.pdf,2016.02.10,2016.02.10,5902,, +2016.02.05,05-Feb-16,2016,Unprovoked,AUSTRALIA,Queensland,Stradbroke Island,Walking,female,F,45,Foot nipped,N,13h20,,"Courier Mail, 2/5/2016",2016.02.05-Stradbroke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.05-Stradbroke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.05-Stradbroke.pdf,2016.02.05,2016.02.05,5901,, +2016.02.04,04-Feb-16,2016,Unprovoked,AUSTRALIA,New South Wales,Hams Beach,Windsurfing,Andrew Morris,M,40,"No injury, shark bit board",N,Late afternoon,,"B. Myatt, GSAF",2016.02.04-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.04-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.04-Morris.pdf,2016.02.04,2016.02.04,5900,, +2016.01.29,29-Jan-16,2016,Boat,SOUTH AFRICA,KwaZulu-Natal,,Kayak fishing,Dev De Lange,M,,"No injury, shark capsized kayak",N,,,"Nine News, 2/1/2016",2016.01.29-DeLange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.29-DeLange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.29-DeLange.pdf,2016.01.29,2016.01.29,5899,, +2016.01.28,28-Jan-16,2016,Unprovoked,USA,Hawaii,"Hanalei Bay, Kauai",Surfing,male,M,,Lacerations to both hands,N,14h00,"Reef shark, 5'",KHON2. 1/28/2016,2016.01.28-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.28-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.28-Kauai.pdf,2016.01.28,2016.01.28,5898,, +2016.01.25,25-Jan-16,2016,Unprovoked,USA,Hawaii,"Hanalei Bay, Kauai, ",Surfing,Kaya Waldman,F,15,No injury,N,11h30,,"The Garden Island, 2/2/2016",2016.01.25-Waldman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.25-Waldman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.25-Waldman.pdf,2016.01.25,2016.01.25,5897,, +2016.01.24.b,24-Jan-16,2016,Unprovoked,USA,Texas,Off Surfside,Spearfishing,Keith Love,M,,"Bruised ribs & tail bone, speargun broken and wetsuit cut",N,09h30 / 10h00,Bull sharks x 2,K. Love,2016.01.24.b-Love.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.b-Love.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.b-Love.pdf,2015.01.24.b,2016.01.24.b,5896,, +2016.01.24.a,24-Jan-16,2016,Boat,UNITED ARAB EMIRATES,Fujairah Emirate,35 miles off Fujairah,Fishing,Occupants: Hamza Humaid Al Sahraa & 5 crew,M,,"No injury to occupants, shark leapt into boat",N,,Mako shark,"Gulf News, 1/25/2016",2016.01.24.a-UAEboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.a-UAEboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.a-UAEboat.pdf,2016.01.24.a,2016.01.24.a,5895,, +2016.01.23,23-Jan-16,2016,Unprovoked,USA,Hawaii,"Wailea Beach, Maui",Paddle boarding,Matt Mason,M,48,No injury,N,Morning,"Tiger shark, 14'","Grand Forks Herald, 1/27/2915",2016.01.23-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.23-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.23-Mason.pdf,2016.01.23,2016.01.23,5894,, +2016.01.11.R,Reported 11-Jan-2016,2016,Unprovoked,AUSTRALIA,Queensland,"Happy Valley Beach, Caloundra",Surfing,Shane Hilder,M,,Laceration to right foot,N,,Wobbegong shark,"ABC Sunshine Coast, 1/11/2016",2016.01.11.R-Hilder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.11.R-Hilder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.11.R-Hilder.pdf,2016.01.11.R,2016.01.11.R,5893,, +2016.01.05,05-Jan-16,2016,Unprovoked,AUSTRALIA,Queensland,Heron Island,Wading,Nicolas Davis,M,11,Laceration to right calf,N,Afternoon,Blacktip shark,"Nine News, 1/5/2016",2016.01.05-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.05-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.05-Davis.pdf,2016.01.05,2016.01.05,5892,, +2016.01.02,02-Jan-16,2016,Unprovoked,AUSTRALIA,Queensland,Miall Island,Spearfishing,Allan Countryman,M,31,Lacerations to arms & leg,N,11h30,3 m shark,"Courier Mail, 1/2/2016",2016.01.02-Countryman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.02-Countryman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.02-Countryman.pdf,2016.01.02,2016.01.02,5891,, +2015.12.26,26-Dec-15,2015,Boat,SOUTH AFRICA,KwaZulu-Natal,Westbrook Beach,Kayak Fishing,Occupant: Grant Wardell,M,,"No injury, kayak damaged",N,Morning,"White shark, 3 m","Traveller24, 12/26/2015",2015.12.26-Wardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.26-Wardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.26-Wardell.pdf,2015.12.26,2015.12.26,5890,, +2015.12.25,25-Dec-15,2015,Unprovoked,SPAIN,Grand Canary Island,"Arinaga Beach, Aguimes, Gran Canaria",Swimming,Cristina Ojeda-Thies ,F,38,Lacerations to left forearm,N,,"Silky shark, 6.5'","Diaro de Visos, 12/26/2015",2015.12.25-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.25-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.25-GrandCanary.pdf,2015.12.25,2015.12.25,5889,, +2015.12.22,22-Dec-15,2015,Unprovoked,USA,Hawaii,La'aloa Beach Park,Paddle boarding,Robert Ford,M,71,"No injury, shark bit board",N,Morning,9' shark,"West Hawaii Today, 12/23/2015",2015.12.22-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.22-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.22-Ford.pdf,2015.12.22,2015.12.22,5888,, +2015.12.21.b,21-Dec-15,2015,Unprovoked,AUSTRALIA,New South Wales,Bondi Beach,Surfing,Dean Norburn,M,43,"No injury, shark leapt on surfboard",N,07h00,"Bronze whaler shark, 6'","The Telegraph, 12/22/;2015",2015.12.21.b-Norburn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.b-Norburn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.b-Norburn.pdf,2015.12.21.b,2015.12.21.b,5887,, +2015.12.21.a,21-Dec-15,2015,Unprovoked,BRAZIL,Pernambuco,Fernano de Noronha,Scuba diving,Mrcio de Castro Palma ,M,32,Right hand & part of forearm removed,N,,"Tiger shark, 1.5 m ","Fox News, 12/22/2015",2015.12.21.a-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.a-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.a-Brazil.pdf,2015.12.21.a,2015.12.21.a,5886,, +2015.12.19,19-Dec-15,2015,Unprovoked,ARUBA,,Boat capsized,Sea disaster,Adrian Esteban Rafael,M,58,FATAL,Y,,,"Fox News, 12/11/2015",2015.12.19-Aruba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.19-Aruba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.19-Aruba.pdf,2015.12.19,2015.12.19,5885,, +2015.12.13,13-Dec-15,2015,Boat,AUSTRALIA,New South Wales,Lake Macquarie,Fishing,6 m boat: occupants Stephen & Andrew Crust,,,"No injury, shark rammed boat & bit motor",N,10h30,"White shark, 3.5 m","Courier Mail, 12/15/2015",2015.12.13-Crust-Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.13-Crust-Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.13-Crust-Boat.pdf,2015.12.13,2015.12.13,5884,, +2015.12.11,11-Dec-15,2015,Unprovoked,BAHAMAS,,Off Andros Island,Lobster fishing,Richard Pinder,M,26,"Bitten on thigh, abdomen & hand",N,,Bull shark,"Nassau Guardian, 12/12/2015",2015.12.11-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.11-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.11-Pinder.pdf,2015.12.11,2015.12.11,5883,, +2015.12.08,08-Dec-15,2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mpande,Swimming / Wading,Tamsin Scott,F,22,Lacerations to both hands and forearms,N,Morning,,"The Bulletin, 12/17/2015",2015.12.08-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.08-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.08-Scott.pdf,2015.12.08,2015.12.08,5882,, +2015.11.16,16-Nov-15,2015,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Aaron Conti,M,,Right heel injured,N,Afternoon,,WFTV. 11/17/2015,2015.11.16-Conti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.16-Conti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.16-Conti.pdf,2015.11.16,2015.11.16,5880,, +2015.11.15.b,15-Nov-15,2015,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Swimming,female,F,,Leg injured,N,Morning,,"Palm Beach Post, 11/16/2015",2015.11.15.b-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.b-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.b-PalmBeach.pdf,2015.11.15.b,2015.11.15.b,5879,, +2015.11.15.a,15-Nov-15,2015,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Surfing,Allen Engelman,M,28,Lacerations to hand,N,,"Spinner shark, 7'","5WPTV, 11/15/2015",2015.11.15.a-Engelman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.a-Engelman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.a-Engelman.pdf,2015.11.15.a,2015.11.15.a,5878,, +2015.11.10,10-Nov-15,2015,Unprovoked,AUSTRALIA,New South Wales,East Ballina,Surfing,Sam Morgan,M,20,Injury to left thigh,N,18h15,"Bull shark, 2.8 to 3.1 m","The Sydney Morning Herald, 11/11/2015",2015.11.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.10-Morgan.pdf,2015.11.10,2015.11.10,5877,, +2015.12.23,07-Nov-15,2015,Invalid,USA,Florida,"Paradise Beach, Melbourne, Brevard County",Surfing,Ryla Underwood,F,9,Lower left leg injured,N,11h00,Shark involvement not confirmed,"Fox25Orlando, 11/7/2015",2015.11.07-Underwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.07-Underwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.07-Underwood.pdf,2015.11.07,2015.12.23,5876,, +2015.11.03,03-Nov-15,2015,Unprovoked,USA,Hawaii,"Kehena Beach, Hawaii",Swimming,Paul O'Leary,M,54,Laceration to right ankle,N,11h00,,"Hawaii News Now, 11/4/2015",2015.11.03-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.03-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.03-O'Leary.pdf,2015.11.03,2015.11.03,5875,, +2015.11.01.b,01-Nov-15,2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Wading,Jill Kruse,F,28,Injury to right ankle/calf & hand,N,14h00,3' to 5' shark,"USA Today, 11/1/2015",2015.11.01.b-Kruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.b-Kruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.b-Kruse.pdf,2015.11.01.b,2015.11.01.b,5874,, +2015.11.01.a,01-Nov-15,2015,Unprovoked,MOZAMBIQUE,Inhambane Province,Maxixe,Fishing,Albino Ernesto,M,19,"Arms severely injured, surgically amputated",N,04h00,,"Coastweek, 12/3/2015",2015.11.01.a-Ernesto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.a-Ernesto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.a-Ernesto.pdf,2015.11.01.a,2015.11.01.a,5873,, +2015.10.30,30-Oct-15,2015,Unprovoked,AUSTRALIA,Western Australia,Bald Island,Spearfishing,Norman Galli,M,50,Minor injury,N,,,"Perth Now, 10/30/2015",2015.10.30-Galli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.30-Galli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.30-Galli.pdf,2015.10.30,2015.10.30,5872,, +2015.10.28.a,28-Oct-15,2015,Unprovoked,USA,Hawaii,"Malaka, Oahu",Body boarding,Raymond Senensi,M,10,"Lacerations & puncture wounds to right thigh, calf & ankle",N,14h50,,"Star Advertiser, 10/28/2015",2015.10.28-Senensi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.28-Senensi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.28-Senensi.pdf,2015.10.28,2015.10.28.a,5871,, +2015.10.25,25-Oct-15,2015,Unprovoked,SOUTH AFRICA,Western Cape Province,Stil Bay,Surfing,Stuart Anderson,M,42,"Lacerations to right calf, knee & hip",N,15h00,"White shark, 3 to 3.5m ","News 24, 10/26/2015",2015.10.25-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.25-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.25-Anderson.pdf,2015.10.25,2015.10.25,5870,, +2015.10.21,21-Oct-15,2015,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Michael Salinger,M,21,Lacerations to left hand,N,14h30,5' shark,"ClickOrlando.com, 10/21/2015",2015.10.21-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.21-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.21-Playalinda.pdf,2015.10.21,2015.10.21,5869,, +2015.10.19,19-Oct-15,2015,Unprovoked,USA,Florida,"Deerfield Beach, Broward County",Surfing,Peter Kirn,M,21,Left foot bitten,N,13h50,"Spinner shark, 5'","NBC6.com, 10/19/2015",2015.10.19-Kirn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.19-Kirn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.19-Kirn.pdf,2015.10.19,2015.10.19,5868,, +2015.10.17.c,17-Oct-15,2015,Unprovoked,MOZAMBIQUE,Inhambane Province,"Nahaduga, Inhambane Bay",Fishing for shrimp,Albertina Cavel,F,35,FATAL,Y,,,Xinhua News Agency,2015.10.17.c-Cavel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.c-Cavel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.c-Cavel.pdf,2015.10.17.c,2015.10.17.c,5867,, +2015.10.17.b,17-Oct-15,2015,Invalid,USA,Hawaii,"Waikiki, ",Surfing,male,M,32,Left foot bitten by eel,N,19h20,No shark involvement,"KHON2, 10/17/2015",2015.10.17.b.-Hawaii. pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.b.-Hawaii. pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.b.-Hawaii. pdf,2015.10.17.b,2015.10.17.b,5866,, +2015.10.17.a,17-Oct-15,2015,Unprovoked,USA,Hawaii,"Lanikai Beach, Kailua, Oahu",Swimming,Tony Lee,M,44,Injuries to lower legs,N,11h30,"Tiger shark, 7'","KHON2, 10/17/2015",2015.10.17.a-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.a-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.a-Lee.pdf,2015.10.17.a,2015.10.17.a,5865,, +2015.10.13,13-Oct-15,2015,Boat,USA,California,"Off Leffingwell Landing, San Luis Obispo County",Kayak Fishing,Jordan Pavacich,M,,"No injury, shark rammed kayak repeatedly",N,11h00,Hammerhead sp.,"The Tribune, 10/28/2015",2015.10.13-Pavacich-kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.13-Pavacich-kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.13-Pavacich-kayak.pdf,2015.10.13,2015.10.13,5864,, +2015.10.09.b,09-Oct-15,2015,Unprovoked,USA,South Carolina,"Shipyard Beach Club, Hilton Head Island, Beaufort County",Boogie boarding,Meti Kershner,F,9,Laceration to forearm,N,16h20,,"C. Creswell, GSAF",2015.10.09.b-Kershner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.b-Kershner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.b-Kershner.pdf,2015.10.09.b,2015.10.09.b,5863,, +2015.10.09.a,09-Oct-15,2015,Unprovoked,USA,Hawaii,"Leftovers, Oahu",Surfing,Colin Cook,M,25,"Left leg severed below the knee, defense injuries to left hand",N,10h25,"Tiger shark, 13' ","Hawaii News Now, 10/9/2015",2015.10.09.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.a-Cook.pdf,2015.10.09.a,2015.10.09.a,5862,, +2015.10.08,08-Oct-15,2015,Unprovoked,MOZAMBIQUE,Inhambane Province,"Maxixe, Inhambane Bay",Fishing,Alberto Rafael,M,,"Arm severely injured, surgically amputated",N,,,Club of Mozambique,2015.10.08-Rafael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.08-Rafael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.08-Rafael.pdf,2015.10.08,2015.10.08,5861,, +2015.10.07,07-Oct-15,2015,Unprovoked,AUSTRALIA,Western Australia,Pyramids Beach,Surfing,Eli Zawadzki,M,18,Foot injured,N,16h50,,"Daily Mail, 10/7/2015",2015.10.07-Zawadzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.07-Zawadzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.07-Zawadzki.pdf,2015.10.07,2015.10.07,5860,, +2015.10.05.b,05-Oct-15,2015,Unprovoked,USA,Florida,"Pepper Park Beach, St. Lucie County",Body boarding,male,M,22,2 lacerations to ankle,N,13h00,,"WPBF.com, 10/6/2015",2015.10.05.b-FtPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05.b-FtPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05.b-FtPierce.pdf,2015.10.05.b,2015.10.05.b,5859,, +2015.10.05.a,05-Oct-15,2015,Unprovoked,USA,Texas,Galveston,Wading,Gregory Slaughter,M,13,Foot & hands bitten,N,10h00,4' to 5' shark,"Houston Chronicle, 10/5/2015",2015.10.05.a-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05.a-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05-Slaughter.pdf,2015.10.05.a,2015.10.05.a,5858,, +2015.10.04,04-Oct-15,2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Phillip Tarasovic,M,14,Severe lacerations to left hand,N,08h30,"Blacktip shark, 4' to 5'","CNN, 10/4/2015",2015.10.04-Tarasovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.04-Tarasovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.04-Tarasovic.pdf,2015.10.04,2015.10.04,5857,, +2015.09.29,29-Sep-15,2015,Unprovoked,USA,Florida,"Vilano Beach, St. Johns County",Surfing,"David Morrison, Jr.",M,22,"Laceration to heel, puncture wounds to dorsum of foot",N,16h20,"Blacktip shark, 5' to 6'","First Coast News, 9/30/2015",2015.09.29-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.29-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.29-Morrison.pdf,2015.09.29,2015.09.29,5856,, +2015.09.26,26-Sep-15,2015,Unprovoked,AUSTRALIA,Queensland,"Russel Island, Frankland Group",Snorkeling,female,F,7,Laceration to leg,N,Afternoon,,"The Cairns Post, 9/28/2015",2015.09.26-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.26-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.26-QLD.pdf,2015.09.26,2015.09.26,5855,, +2015.09.24,24-Sep-15,2015,Unprovoked,USA,California,"Horseshoe Rock, Santa Barbara County",Kayak fishing,Darren Kenney,M,,"No injury, kayak damaged",N,10h45-11h15,"White shark, 19'",R. Collier,2015.09.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.24-Kenney.pdf,2015.09.24,2015.09.24,5854,, +2015.09.20.d,20-Sep-15,2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,14,Minor injury to left ankle,N,16h45,juvenile shark,"Orlando Sentinel, 9/20/2015",2015.09.20.d-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.d-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.d-NSB.pdf,2015.09.20.d,2015.09.20.d,5853,, +2015.09.20.c,20-Sep-15,2015,Unprovoked,USA,Hawaii,"Upolu Point, North Kohala, Big Island",Spearfishing, Braxton Rocha,M,27,Severe laceration to left leg,N,15h52,"Tiger shark, 13'","Big Island Video, 9/20/2015",2015.09.20.c-Braxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.c-Braxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.c-Braxton.pdf,2015.09.20.c,2015.09.20.c,5852,, +2015.09.20.b,20-Sep-15,2015,Unprovoked,USA,Florida,"Fernandina Beach, Amelia Island, Nassau County",Wading,"Joshua Bitner, Jr.",M,12,Significant injuries to leg,N,12h30,4' shark,"News4Jax, 9/21/2015",2015.09.20.b-Bitner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.b-Bitner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.b-Bitner.pdf,2015.09.20.b,2015.09.20.b,5851,, +2015.09.20.a,20-Sep-15,2015,Unprovoked,USA,Florida,"Vilano Beach, St. Johns County",Photographing fish,Filippo Schiavo ,M,16,Injury to right hand / wrist,N,07h30,,"News4JAX, 9/21/2015",2015.09.20.a-Schiavo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.a-Schiavo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.a-Schiavo.pdf,2015.09.20.a,2015.09.20.a,5850,, +2015.09.18,18-Sep-15,2015,Unprovoked,USA,Florida,"Big Talbot Island, Duval County",Swimming,Peter Vergenz ,M,,Lacerations to calf,N,19h00,,"Action News Jax, 9/23/2015",2015.09.18-Vergenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.18-Vergenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.18-Vergenz.pdf,2015.09.18,2015.09.18,5849,, +2015.09.17,17-Sep-15,2015,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Surfing,Bryan Liebetrau,M,20,Injury to right foot,N,15h00,,"News4JAX, 9/15/2015",2015.09.17-Liebetrau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.17-Liebetrau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.17-Liebetrau.pdf,2015.09.17,2015.09.17,5848,, +2015.09.08,08-Sep-15,2015,Unprovoked,AUSTRALIA,New South Wales,North Shelly Beach,Surfing,Justin Daniels,M,42,Minor laceration to hand,N,06h15,6' shark,"ABC News, 9/8/2015",2015.09.08-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.08-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.08-Daniels.pdf,2015.09.08,2015.09.08,5847,, +2015.09.06,06-Sep-15,2015,Unprovoked,USA,California,"El Pescador Beach, Los Angeles County",Stand-Up Paddleboarding,Caterina Gennaro,F,50,"No injury, shark struck board, tossing her into the sea",N,17h30,"White shark, 11' to 12'","R. Collier, GSAF",2015.09.06-Gennaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.06-Gennaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.06-Gennaro.pdf,2015.09.06,2015.09.06,5846,, +2015.09.05,05-Sep-15,2015,Provoked,USA,California,"Deer Creek Beach, Ventura County",Kayak Fishing,Dylan Marks,M,29,Laceration to dorsum of foot by hooked shark PROVOKED INCIDENT,N,14h40,Hammerhead shark.,"R. Collier, GSAF",2015.09.05-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.05-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.05-Marks.pdf,2015.09.05,2015.09.05,5845,, +2015.09.04,04-Sep-15,2015,Unprovoked,AUSTRALIA,New South Wales,Hallidays Point,Surf-skiing,David Quinliven,M,62,Inuries to lower left leg & ankle,N,11h30,"White shark, 2.5 m","The Sydney Morning Herald, 9/4/2015",2015.09.04-Quinliven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.04-Quinliven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.04-Quinliven.pdf,2015.09.04,2015.09.04,5844,, +2015.09.03,03-Sep-15,2015,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",,Chip Wagner,M,,Right foot bitten,N,16h00,4' shark?,"C. Creswell, GSAF",2015.09.03-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.03-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.03-Wagner.pdf,2015.09.03,2015.09.03,5843,, +2015.09.01,01-Sep-15,2015,Unprovoked,THAILAND,Phuket,Karon Beach,Wading,Jane Neame,F,37,Left foot & ankle bitten,N,08h30,small shark,"Phuket Gazette, 9/1/2015",2015.09.01-Neame.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.01-Neame.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.01-Neame.pdf,2015.09.01,2015.09.01,5842,, +2015.09.00,Sep-15,2015,Unprovoked,FIJI,,,Spearfishing,Viliame Lautiki,M,,Leg bitten,N,,Tiger shark,"Fiji Times, 2/8/2016",2015.09.00-Lautiki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.00-Lautiki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.00-Lautiki.pdf,2015.09.00,2015.09.00,5841,, +2015.08.29.b,29-Aug-15,2015,Unprovoked,USA,California,"Morro Strand State Beach, San Luis Obispo County",Surfing,Elinor Dempsey,F,54,"No injury, surfboard bitten",N,10h25,"White shark, 11' to 12'","R. Collier, GSAF",2015.08.29.b-Dempsey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.b-Dempsey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.b-Dempsey.pdf,2015.08.29.b,2015.08.29.b,5840,, +2015.08.29.a,29-Aug-15,2015,Unprovoked,USA,California,"Morro Bay, San Luis Obispo County",Surfing,Daniel Phillips,M,21,"No injury, shark struk sufer's leg and his board",N,10h00,"White shark, 10' to 12' ","R. Collier, GSAF",2015.08.29.a-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.a-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.a-Phillips.pdf,2015.08.29.a,2015.08.29.a,5839,, +2015.08.22.b,22-Aug-15,2015,Invalid,USA,Florida,"Cocoa Beach, Brevard County",,young boy,M,,Wound to right lower leg,N,19h45,Shark involvement not confirmed,"Brevard Times, 8/22/2015",2015.08.22.b-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.b-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.b-CocoaBeach.pdf,2015.08.22.b,2015.08.22.b,5838,, +2015.08.22.a,22-Aug-15,2015,Unprovoked,AUSTRALIA,New South Wales,Lighthouse Beach,Surfing,Dale Carr,M,38,Severe laceration to left buttock & thigh,N,17h10,,"Daily Telegraph, 8/22/2015",2015.08.22.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.a-Carr.pdf,2015.08.22.a,2015.08.22.a,5837,, +2015.08.20,20-Aug-15,2015,Unprovoked,USA,South Carolina,"Murrells Inlet, Georgetown County",Surfing,Dylan Peyton,M,15,"Injuries to left calf, arm and hand",N,12h30,4' shark,"C. Creswell, GSAF",2015.08.20-Peyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.20-Peyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.20-Peyton.pdf,2015.08.20,2015.08.20,5836,, +2015.08.19,19-Aug-15,2015,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Walking,Kaley Szarmack,F,10,Lacerations to right leg,N,15h30,3' shark,"ABC News, 8/21/2015",2015.08.19-Szsarmack,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.19-Szsarmack,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.19-Szsarmack,2015.08.19,2015.08.19,5835,, +2015.08.18.b,18-Aug-15,2015,Unprovoked,USA,California,Santa Barbara County,Kayak Fishing,Connor Lyon,M,22,"No injury, kayak bitten",N,07h30,"White shark, 13'","R. Collier, GSAF",2015.08.18.b-Lyon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.b-Lyon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.b-Lyon.pdf,2015.08.18.b,2015.08.18.b,5834,, +2015.08.18.a,18-Aug-15,2015,Invalid,SPAIN,Alicante,"Poniente Beach, Benidorm",Swimming,male,M,10,Minor injury when he attempted to touch a fish. ,N,11h00,Shark involvement not confirmed,"The Local, 8/18/2015",2015.08.18.a-Benidorm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.a-Benidorm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.a-Benidorm.pdf,2015.08.18.a,2015.08.18.a,5833,, +2015.08.10,10-Aug-15,2015,Provoked,USA,California,Cortes Bank,Spearfishing,Richard Shafer,M,57,Right hand bitten PROVOKED INCIDENT,N,08h00,Hammerhead shark. 6' to 7',"NBC San Diego, 8/13/2015",2015.08.10-Shafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.10-Shafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.10-Shafer.pdf,2015.08.10,2015.08.10,5832,, +2015.07.31,31-Jul-15,2015,Unprovoked,AUSTRALIA,New South Wales,Evans Head,Surfing,Craig Ison,M,52,"Lacerations and puncture wounds to hip, thigh, arm and hand",N,06h00,White shark,"Daily Telegraph, 7/31/2015",2015.07.31-Ison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.31-Ison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.31-Ison.pdf,2015.07.31,2015.07.31,5831,, +2015.07.26.b,26-Jul-15,2015,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Shawn Warrilow,M,25,Minor injury to sole of foot,N,19h00,"Blacktip or spinner shark, 4'",CBS 7/27/2015,2015.07.26.b-Warrilow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.b-Warrilow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.b-Warrilow.pdf,2015.07.26.b,2015.07.26.b,5830,, +2015.07.26.a,26-Jul-15,2015,Invalid,USA,South Carolina,"Edisto Beach, Colleton County",Floating,female,F,35,"2' cut to dorsum of foot, 2 puncture wounds to sole",N,10h10,"Thought to involve a 3' to 4' shark, but shark involvement not confirmed","C. Creswell, GSAF, ABC 11, 7/27/2015",2015.07.26.a-Edisto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.a-Edisto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.a-Edisto.pdf,2015.07.26.a,2015.07.26.a,5829,, +2015.07.25,25-Jul-15,2015,Unprovoked,AUSTRALIA,Tasmania,"Lachan Island, Mercury Passage",Scallop diving on hookah,Damien Johnson,M,46,FATAL,Y,10h00,White shark,"C. Black, GSAF",2015.07.25-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.25-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.25-Johnson.pdf,2015.07.25,2015.07.25,5828,, +2015.07.23.b,23-Jul-15,2015,Provoked,USA,California,"La Jolla, San Diego County",Kayak Fishing,Austin Lorber,M,31,No injury to occupant. Kayak bitten by gaffed shark. PROVOKED INCIDENT,N,,"Mako shark, 100-lb","NBC San Diego, 7/27/2015",2015.07.23.b-Lorber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.b-Lorber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.b-Lorber.pdf,2015.07.23.b,2015.07.23.b,5827,, +2015.07.23.a,23-Jul-15,2015,Unprovoked,AUSTRALIA,Victoria,Tyrendarra Beach near Portland,Surfing,male,M,40s,Left hand bitten,N,,"Bronze whaler shark, 1.5m","ABC News, 7/27/2015",2015.07.23.a-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.a-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.a-Victoria.pdf,2015.07.23.a,2015.07.23.a,5826,, +2015.07.22,22-Jul-15,2015,Unprovoked,REUNION,,St. Leu,Surfing,Rodolphe Arriguy,M,45,Arm bitten,N,,"Bull shark, 2m",Zig Zag Surfing Magazine,2015.07.22-Arrieguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.22-Arrieguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.22-Arrieguy.pdf,2015.07.22,2015.07.22,5825,, +2015.07.19,19-Jul-15,2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffrey's Bay,Surfing,Mick Fanning,M,34,No injury,N,,White shark,"BBC, 7/20/2015",2015.07.19-Fanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.19-Fanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.19-Fanning.pdf,2015.07.19,2015.07.19,5824,, +2015.07-10,10-Jul-15,2015,Unprovoked,USA,California,"Huntington Beach, Orange County",Surfing,Danny Miskin,M,38,"No injury, shark bumped & damaged board",N,08h45,"White shark, 7'","KTLA, 7/10/2015",2015.07.10-Miskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.10-Miskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.10-Miskin.pdf,2015.07.10,2015.07.10,5823,, +2015.07.08,08-Jul-15,2015,Invalid,USA,California,"Huntington Beach, Orange County",Treading water,Eugene Finney,M,39,Laceration to back,N,,Shark involvement not cofirmed,"Sentinel & Enterprise.com, 10/4/2015",2015.07.08-Finney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.08-Finney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.08-Finney.pdf,2015.07.08,2015.07.08,5822,, +2015.07.06,06-Jul-15,2015,Invalid,FRENCH POLYNESIA,Bora Bora,,Swimming,Joe Termini,M,,Parallel lacerations to torso inconsistent with shark bite,N,,No shark involvement,"Hollywood Life, 7/6/2015",2015.07.06-Termini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.06-Termini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.06-Termini.pdf,2015.07.06,2015.07.06,5821,, +2015.07.04.b,04-Jul-15,2015,Unprovoked,BAHAMAS,Grand Bahama Island,"Port Lucaya, Freeport",Spearfishing,Katie Hester,F,23,Lacerations to lower leg & ankle,N,,6' shark,"ABC action News, 7/7/2015",2015.07.04.b-Hester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.b-Hester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.b-Hester.pdf,2015.07.04.b,2015.07.04.b,5820,, +2015.07.04.a,04-Jul-15,2015,Unprovoked,USA,North Carolina,"Off Surf City, Pender County",,a marine,M,32,Lacerations to right hand & forearm,N,Evening,,"C. Creswell, GSAF",2015.07.04.a-Marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.a-Marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.a-Marine.pdf,2015.07.04.a,2015.07.04.a,5819,, +2015.07.03,03-Jul-15,2015,Unprovoked,AUSTRALIA,New South Wales,Lennox Head,Surfing,Michael Hoile,M,52,"No injury, shark bit surfboard",N,09h00,White shark,"Northern Star, 7/3/2015",2015.07.03-Hoile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.03-Hoile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.03-Hoile.pdf,2015.07.03,2015.07.03,5818,, +2015.07.02,02-Jul-15,2015,Unprovoked,AUSTRALIA,New South Wales,East Ballina,Body boarding ,Matt Lee,M,32,Significant injuries to lower legs,N,09h00,White shark,"Northern Star, 7/2/2015",2015.07.02-Matt-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.02-Matt-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.02-Matt-Lee.pdf,2015.07.02,2015.07.02,5817,, +2015.07.01,01-Jul-15,2015,Unprovoked,USA,North Carolina,"Ocracoke, Lifeguard Beach, National Park Service, Hyde County",Swimming,Andrew Costello,M,68,"Injuries to torso, hip, lower leg & hands",N,12h10,6' to 7' shark,"C. Creswell, GSAF",2015.07.01-Costello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.01-Costello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.01-Costello.pdf,2015.07.01,2015.07.01,5816,, +2015.06.30.b,30-Jun-15,2015,Unprovoked,AUSTRALIA,New South Wales,"Flat Rock, Yamba",Surfing,Steve,M,,Hand bitten,N,,,"The Telegraph, 7/8/2015",2015.06.30.b-Steve.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.b-Steve.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.b-Steve.pf,2015.06.30.b,2015.06.30.b,5815,, +2015.06.30.a,30-Jun-15,2015,Unprovoked,USA,South Carolina,"Isle of Palms County Park, Isle of Palms, Charleston County",Playing in the water,Kysen Weakley,M,12,Shallow lacerations & puncture to lateral left leg,N,18h05,4' to 5' shark,"C. Creswell, GSAF",2015.06.30.a.pdf-Weakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.a.pdf-Weakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.a.pdf-Weakley.pdf,2015.06.30.a,2015.06.30.a,5814,, +2015.06.27.b,27-Jun-15,2015,Unprovoked,USA,North Carolina,"Rodanthe, Dare County",Swimming,John Cole,M,18,"Injuries to right calf, buttock and both hands",N,16h00,Bull shark,"C. Creswell, WRAL, 6/27/2015",2015.06.27.b-Rodanthe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27.b-Rodanthe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27.b-Rodanthe.pdf,2015.06.27.b,2015.06.27.b,5813,, +2015.06.27.a,27-Jun-15,2015,Unprovoked,SOUTH AFRICA,Western Cape Province,Buffels Bay near Knysna,Body Boarding,Caleb Swanepoel,M,19,"Right leg severed, multiple lacerations to left leg",N,14h40,White shark,"NSRI, 6/27/205",2015.06.27.a-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27.a-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27-Swanepoel.pdf,2015.06.27.a,2015.06.27.a,5812,, +2015.06.26.c,26-Jun-15,2015,Invalid,USA,Florida,"Jacksonville Beach, Duval County",Swimming,female,F,,Minor lacerations to leg,N,19h30,Shark involvement not confirmed,"Action News Jax, 6/26/2015",2015.06.26.c-Jacksonville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.c-Jacksonville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.c-Jacksonville.pdf,2015.06.26.c,2015.06.26.c,5811,, +2015.06.26.b,26-Jun-15,2015,Unprovoked,SOUTH AFRICA,Western Cape Province,"Lookout Beach, Plettenberg Bay",Surfing,Dylan Reddering,M,23,Multiple lacerations to torso & leg,N,16h00,"White shark, 2m to 3 m",Zig Zag Surfing Magazine,2015.06.26.b-Reddering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.b-Reddering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.b-Reddering.pdf,2015.06.26.b,2015.06.26.b,5810,, +2015.06.26.a,26-Jun-15,2015,Unprovoked,USA,South Carolina,"South Beach, Hunting Island State Park, Beaufort County",Standing,"Lance Donahue, Jr",M,43,Puncture wounds to foot,N,11h00,4' shark,"C. Creswell, GSAF; WCNC, 6/26/2015",2015.06.26.a-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.a-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.a-Donahue.pdf,2015.06.26.a,2015.06.26.a,5809,, +2015.06.25.R,Reported 25-Jun-2015,2015,Provoked,AUSTRALIA,Western Australia,Rottnest Island,Swimming,Stephen,M,19,Minor lacerations to forearm when he grabbed shark by its tail PROVOKED INCIDENT,N,,Wobbegong shark,"West Australian Police, 6/25/2015",2015.06.25.R-Stephen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25.R-Stephen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25.R-Stephen.pdf,2015.06.25.R,2015.06.25.R,5808,, +2015.06.25,25-Jun-15,2015,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Body surfing?,Patrick Thornton,M,47,Multiple lacerations to back,N,11h41,,"C. Creswell, GSAF",2015.06.25-Avon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25-Avon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25-Avon.pdf,2015.06.25,2015.06.25,5807,, +2015.06.24.b,24-Jun-15,2015,Unprovoked,USA,North Carolina,Surf City,Swimming,Brady Noyes,M,6,Minor injury to foot,N,12h25,Sandtiger shark,"C. Creswell, GSAF",2015.06.24.b-Noyes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.b-Noyes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.b-Noyes.pdf,2015.06.24.b,2015.06.24.b,5806,, +2015.06.24.a,24-Jun-15,2015,Invalid,AUSTRALIA,Western Australia,Denmark,Surfing,Lily Kumpe,F,37,"Bruises and abrasions to face, chin, chest, both shins & feet and cut to right hand when her surfboard was struck with force",N,09h30,White shark,"L. Kumpe, R. Mcauley",2015.06.24.a-Kumpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.a-Kumpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.a-Kumpe.pdf,2015.06.24.a,2015.06.24.a,5805,, +2015.06.23,23-Jun-15,2015,Unprovoked,USA,South Carolina,"St. Helena Island, Beaufort County",Standing,male,M,9,Minor injury to calf ,N,,small shark,"C. Creswell, GSAF; R. Lurye, Island Packet",2015.06.23-Davenport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.23-Davenport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.23-Davenport.pdf,2015.06.23,2015.06.23,5804,, +2015.06.19,19-Jun-15,2015,Unprovoked,PUERTO RICO,,Off Cabo Rojo,Spearfishing,Benjamin Rios,M,36,Injury to hand,N,Morning,,"Yahoo News, 6/19/2015",2015.06.19-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.19-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.19-Rios.pdf,2015.06.19,2015.06.19,5803,, +2015.06.17,17-Jun-15,2015,Unprovoked,USA,Florida,Daytona Beach Shores,Swimming,Gavin Simpson,M,10,Minor injury to calf ,N,13h00,,"WTXL TV, 6/17/2015",2015.06.17-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.17-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.17-Simpson.pdf,2015.06.17,2015.06.17,5802,, +2015.06.14.b,14-Jun-15,2015,Unprovoked,USA,North Carolina,"Oak Island, Brunswick County",Wading,Hunter Treschel,M,16,Arm amputated below shoulder,N,17h51,Bull shark,"C. Creswell, GSAF",2015.06.14.b-Treschel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.b-Treschel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.b-Treschel.pdf,2015.06.14.b,2015.06.14.b,5801,, +2015.06.14.a,14-Jun-15,2015,Unprovoked,USA,North Carolina,"Oak Island, Brunswick County",Wading,Kiersten Yow,F,12,Left arm amputated at elbow & severe injury to leg,N,16h12,Bull shark,"C. Creswell, GSAF",2015.06.14.a-Yow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.a-Yow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.a-Yow.pdf,2015.06.14.a,2015.06.14.a,5800,, +2015.06.13,13-Jun-15,2015,Unprovoked,USA,California,Off San Diego,,Elke Specker,F,,Severe laceration to leg,N,,Mako shark,"Courthouse News Service, 11/18/2015",Court Case pending,http://sharkattackfile.net/spreadsheets/pdf_directory/Court Case pending,,2015.06.13,2015.06.13,5799,, +2015.06.11,11-Jun-15,2015,Unprovoked,USA,North Carolina,"Ocean Isle, Brunswick County",Boogie boarding,girl,F,13,Minor lacerations to foot,N,12h45,4' shark,"C. Creswell, GSAF",2015.06.11-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.11-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.11-OceanIsle.pdf,2015.06.11,2015.06.11,5798,, +2015.06.07,07-Jun-15,2015,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Playing,Lucas Vertullo,M,11,Lacerations to right calf,N,10h50,"Bull shark, 5'","Florida Today, 6/7/2015",2015.06.07-Vertullo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.07-Vertullo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.07-Vertullo.pdf,2015.06.07,2015.06.07,5797,, +2015.06.05,05-Jun-15,2015,Unprovoked,USA,Florida,Fort Lauderdale,Attempting to rescue a shark,female,F,17,Puncture wound to finger,N,,small nurse shark,"7 News, 6/5/2015",2015.06.05-FortLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.05-FortLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.05-FortLauderdale.pdf,2015.06.05,2015.06.05,5796,, +2015.06.01,01-Jun-15,2015,Unprovoked,REUNION,Le Port,Folette,Surfing,Eddy Chaussalet,M,47,Left forearm bitten,N,15h00,"Bull shark, 2.5 m","Clincanoo, 6/1/2015",2015.06.01-Chaussalet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.01-Chaussalet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.01-Chaussalet.pdf,2015.06.01,2015.06.01,5795,, +2015.05.29.b,29-May-15,2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Standing,Ashlyn Gilpin,F,14,Left foot bitten,N,15h00,,"Orlando Sentinel, 5/29/2015",2015.05.29.b-Gilpin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.b-Gilpin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.b-Gilpin.pdf,2015.05.29.b,2015.05.29.b,5794,, +2015.05.29.a,29-May-15,2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Dakota Hatfield,F,19,Minor lacerations to dorsum of right foot,N,13h45,,"ClickOrlando, 5/29/2015",2015.05.29.a-Hatfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.a-Hatfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.a-Hatfield.pdf,2015.05.29.a,2015.05.29.a,5793,, +2015.05.25,25-May-15,2015,Unprovoked,FRENCH POLYNESIA,Rangiroa,Avatoru Pass,Spearfishing,male,M,19,Lacerations to right forearm,N,08h00,1m to 1.2 m shark,Polynsie 1re. 5/262015,2015.05.25-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.25-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.25-Rangiroa.pdf,2015.05.25,2015.05.25,5792,, +2015.05.24,24-May-15,2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,Alysa Whetro,F,13,"Puncture wounds to lower left leg and ankle, shallow lacerations to foot, deep laceration to Achilles tendon",N,,,"WFTV, 5/27/2015",2015.05.24-Wheatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.24-Wheatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.24-Wheatro.pdf,2015.05.24,2015.05.24,5791,, +2015.05.20,20-May-15,2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Matthew Zaccaria,M,18,2 puncture wounds to dorsum of left foot,N,10h30,5' shark,"WFTV, 5/20/2015",2015.05.20-Zaccaria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.20-Zaccaria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.20-Zaccaria.pdf,2015.05.20,2015.05.20,5790,, +2015.05.15,15-May-15,2015,Unprovoked,USA,South Carolina,Sullivan's Island,,male,M,30,Laceration to foot ,N,14h15,6' shark,"News 2, 5/15/2015",2015.05.15-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.15-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.15-Sullivans.pdf,2015.05.15,2015.05.15,5789,, +2015.05.09,09-May-15,2015,Unprovoked,NEW CALEDONIA,,Kouare ,Snorkeling,Yves Berthelot,M,50,FATAL,Y,,"Bull shark, 3.5 m",Les Nouvelles Caledonnie,2015.05.09-Berthelot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.09-Berthelot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.09-Berthelot.pdf,2015.05.09,2015.05.09,5788,, +2015.05.07,07-May-15,2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,Josh Green,M,,"Lacerations to lower left leg, ankle & foot",N,15h00,,"KnightNews.com, 5/9/2015",2015.05.07-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.07-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.07-Green.pdf,2015.05.07,2015.05.07,5787,, +2015.05.03,03-May-15,2015,Unprovoked,AUSTRALIA,New South Wales,Saltwater Beach,Surfing,Bruce Lucas,M,,Injuries to left arm & right hand,N,15h00,White shark,"ABC, 5/3/2015",2015.05.03-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.03-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.03-Lucas.pdf,2015.05.03,2015.05.03,5786,, +2015.05.02,02-May-15,2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. John's,Diving,Mathieu Dasnois,M,29,"Injuries to leg, left arm & both hands",N,13h00,"White shark, 3.5 m","DispatchLive, 5/4/2015",2015.05.02-Dasnois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.02-Dasnois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.02-Dasnois.pdf,2015.05.02,2015.05.02,5785,, +2015.04.29,29-Apr-15,2015,Unprovoked,USA,Hawaii,Kanahena Cove ,Snorkeling,Margaret Cruse,F,65,FATAL,Y,09h00,,"Star Advertiser, 4/30/2015",2015.04.29-Cruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.29-Cruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.29-Cruse.pdf,2015.04.29,2015.04.29,5784,, +2015.04.26,26-Apr-15,2015,Unprovoked,USA,Florida,"Resident's Beach, Marco Island",Wading,Carsten Jessen,M,63,Lacerations to left calf,N,16h30,3- to 4-foot shark,"ABC-7, 4/27/2015",2015.04.26-Jessen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.26-Jessen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.26-Jessen.pdf,2015.04.26,2015.04.26,5783,, +2015.04.25,25-Apr-15,2015,Unprovoked,AUSTRALIA,South Australia,Fishery Bay,Surfing,Chris Blowes,M,26,Leg severed at mid-thigh,N,09h45,"White shark, 6 m","The Advertiser, 4/25/2015",2015.04.25-Blowes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.25-Blowes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.25-Blowes.pdf,2015.04.25,2015.04.25,5782,, +2015.04.24.c,24-Jun-15,2015,Unprovoked,AUSTRALIA,New South Wales,"Belongil Beach, Byron Bay",Surf skiing ,Woody Vidgens,M,71,"No injury, knocked off ski",N,11h00,"White shark, 3 m","Echo Daily, 6/25/2015",2015.04.24.c-Vidgens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.24.c-Vidgens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.24.c-Vidgens.pdf,2015.04.24.c,2015.04.24.c,5781,, +2015.04.13,13-Apr-15,2015,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Photographing the shark,Mark Rackley,M,48,Lacerations to shoulder and left bicep,N,,"Blue shark, 8 to 9 feet","Miami Herald, 4/25/2015",2015.04.13-Rackley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.13-Rackley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.13-Rackley.pdf,2015.04.13,2015.04.13,5780,, +2015.04.11,11-Apr-15,2015,Unprovoked,AUSTRALIA,New South Wales,McKenzies Beach,Paddle boarding,male,M,,Ankle injured,N,07h30,,"Surf Life Saving, 4/11/2015",2015.04.11-McKenzie-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.11-McKenzie-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.11-McKenzie-Surfer.pdf,2015.04.11,2015.04.11,5779,, +2015.04.12,12-Apr-15,2015,Unprovoked,REUNION,Saint-Gilles-les-Bains,Cap Homard,Surfing,Elio Canestri,M,13,FATAL,Y,09h00,Bull shark,"Le Huffington Post, 4/15/2015",2015.04.12-Canestri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.12-Canestri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.12-Canestri.pdf,2015.04.12,2015.04.12,5778,, +2015.03.31,31-Mar-15,2015,Invalid,BRAZIL,Pernambuco,"Praia del Chifre, Olinda",Surfing,Diego Gomes Mota,M,23,Injury to left thigh from unidentified species of fish; injuries inconsistent with shark bite,N,11h00,No shark involvement,"Globo, 3/31/2015",2015.03.31-Mota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.31-Mota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.31-Mota.pdf,2015.03.31,2015.03.31,5777,, +2015.04.03,03-Apr-15,2015,Unprovoked,USA,Florida,"3 miles off Jupiter, Palm Beach County",Spearfishing,Rick Neumann,M,70,Injuries to head & torso,N,Afternoon,Bull shark,"ABC Action News, 4/6/2015",2015.04.03-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.03-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.03-Neumann.pdf,2015.04.03,2015.04.03,5776,, +2015.03.29,29-Mar-15,2015,Invalid,ITALY,Sardinia,,Diving,Eugenio Masala,M,43,"FATAL, but shark involvement prior to death unconfirmed",Y,,Shark involvement not cofirmed,"A. de Maddalena, GSAF",2015.03.29-Masala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.29-Masala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.29-Masala.pdf,2015.03.29,2015.03.29,5775,, +2015.03.26,26-Mar-15,2015,Boat,SOUTH AFRICA,Eastern Cape Province,Yellow Sands Point,Kayak Fishing,Kayak: Occupant Kelly Janse van Rensburg,M,36,No injury but kayak bitten,N,,"White shark, 4 m","Times Live, 4/1/2015",2015.03.26-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.26-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.26-VanRensburg.pdf,2015.03.26,2015.03.26,5774,, +2015.03.21,21-Mar-15,2015,Unprovoked,EGYPT,,Marsa Alam,Swimming,male,M,52,FATAL,Y,,Mako shark,"E. Ritter, GSAF",2015.03.21-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.21-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.21-Egypt.pdf,2015.03.21,2015.03.21,5773,, +2015.03.18,18-Mar-15,2015,Unprovoked,USA,Hawaii,Hapuna Beach,Standing / Snorkeling,Ken Grasing,M,58,Lacerations to left forearm. Lacerations to left hand and thigh,N,11h45,"Tiger shark, 8 to 12 feet","KMBC, 3/19/2015",2015.03.18-Grasing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.18-Grasing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.18-Grasing.pdf,2015.03.18,2015.03.18,5772,, +2015.03.16,16-Mar-15,2015,Unprovoked,FRENCH POLYNESIA,Bora Bora,Anau,Hand feeding sharks,male,M,9,Hand bitten,N,10h00,Blacktip shark,"Radio1, 3/16/2015",2015.03.16-Bora-Bora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.16-Bora-Bora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.16-Bora-Bora.pdf,2015.03.16,2015.03.16,5771,, +2015.03.11,11-Mar-15,2015,Boat,AUSTRALIA,New South Wales,"Julian Rocks, Byron Bay",Fishing,Dinghy: Occupant Robbie Graham,M,,Bruised in falling overboard as shark bumped boat,N,Morning,,"Northern Star, 3/13/2015",2015.03.11-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.11-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.11-Graham.pdf,2015.03.11,2015.03.11,5770,, +2015.03.10,10-Mar-15,2015,Provoked,MEXICO,Sinaloa,Mazlatan,Fishing,David Villegas Mora,M,36,Right hand bitten by hooked shark PROVOKED INCIDENT,N,10h20,,"Noreste, 3/10/2015",2015.03.10-Mora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.10-Mora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.10-Mora.pdf,2015.03.10,2015.03.10,5769,, +2015.03.07,07-Mar-15,2015,Unprovoked,FRENCH POLYNESIA,Central Tuamotu,"Tupapati, Hikueru Atoll",Sitting in the water,male,M,18 months,Thigh bitten,N,,Blacktip Reef shark ,"Radio1, 3/9/2015",2015.03.07-18-month.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.07-18-month.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.07-18-month.pdf,2015.03.07,2015.03.07,5768,, +2015.02.15,15-Feb-15,2015,Boat,ATLANTIC OCEAN,,,Transatlantic Rowing,"Avalon, a carbon kevlar monohull: 8 occupants",,,"No injury, shark bit rudder",N,,White shark,"Yorkshire Post, 3/16/2014",2015.02.15-Avalon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.15-Avalon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.15-Avalon.pdf,2015.02.15,2015.02.15,5767,, +2015.02.14,14-Feb-15,2015,Unprovoked,REUNION,dtang-Sal,Ravine Mula,Swimming,Talon Bishop,F,22,FATAL,Y,18h30,"Tiger shark, 3.5 m","L'Yonne Rpublicaine, 2/14/2015",2015.02.14-Bishop.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.14-Bishop.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.14-Bishop.pdf ,2015.02.14,2015.02.14,5766,, +2015.02.09,09-Feb-15,2015,Unprovoked,AUSTRALIA,New South Wales,Shelly Beach,Surfing,Tadashi Nakahara,M,41,FATAL,Y,10h00,3.5 to 4 m shark,"The Telegraph, 2/9/2015",2015.02.09-Nakahara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.09-Nakahara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.09-Nakahara.pdf,2015.02.09,2015.02.09,5765,, +2015.02.08,08-Feb-15,2015,Unprovoked,AUSTRALIA,New South Wales,"Seven Mile Beach, Byron Bay",Surfing,Jacob Reitman,M,35,Laceration & puncture wounds to right flank & hip,N,06h45,2 m to 3 m shark,"The Telegraph, 2/8/2015",2015.02.08-Reitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.08-Reitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.08-Reitman.pdf,2015.02.08,2015.02.08,5764,, +2015.02.05,05-Feb-15,2015,Unprovoked,AUSTRALIA,New South Wales,Mereweather Beach,Bodysurfing,Ben McPhee,M,,5 minor puncture wounds to lower left leg,N,,1.8 m shark,"The Telegraph, 1/6/2015",2015.02.05-McPhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.05-McPhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.05-McPhee.pdf,2015.02.05,2015.02.05,5763,, +2015.01.30,30-Jan-15,2015,Boat,AUSTRALIA,Queensland,"Nerang River, Surfer's Paradise",Rowing,Racing scull: Occupant Trevor Carter,M,57,"No injury, shark's teeth scratched hull",N,05h00,"Bull shark, 1.3 m","Gold Coast Bulletin, 1/31/2015",2015.01.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.20-Carter.pdf,2015.01.30,2015.01.30,5762,, +2015.01.27,27-Jan-15,2015,Provoked,USA,Hawaii,Lahaina,Shark fishing,Michael Pollard,M,20,Lacerations to calf by hooked shark PROVOKED INCIDENT,N,03h30,4' shark,"Huffington Post, 1/28/2015",2015.01.27-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.27-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.27-Pollard.pdf,2015.01.27,2015.01.27,5761,, +2015.01.24,24-Jan-15,2015,Unprovoked,AUSTRALIA,New South Wales,Flat Rock,Surfing,Hamish Murray,M,,"No injury, surfboard dented",N,,,"Northern Star, 1/26/2015",2015.01.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.24-Murray.pdf,2015.01.24,2015.01.24,5760,, +2015.01.19.b,19-Jan-15,2015,Boat,USA,Florida,Off Panama City,Fishing,22-ft boat. Occupant Captain Scott Fitzgerald,M,,No injury but shark bit trolling motor & rammed boat,N,,White shark,"The Panhandle, 1/20/2015",2015.01.19.b-Fitzgerald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.b-Fitzgerald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.b-Fitzgerald-boat.pdf,2015.01.19.b,2015.01.19.b,5759,, +2015.01.19.a,19-Jan-15,2015,Invalid,AUSTRALIA,New South Wales,"Wategos Beach, Byon Bay",Surfing & filming dolphins,Diane Ellis,F,,Board snapped in two,N,,Shark involvement not confirmed,"ABC North Coast, 1/21/2015",2015.01.19.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.a-Ellis.pdf,2015.01.19.a,2015.01.19.a,5758,, +2015.01.17,17-Jan-15,2015,Boat,AUSTRALIA,New South Wales,Off Blacksmith Beach,Fishing,Boat: occupants: Tim Watson & Allan de Sylva,M,,"Shark bumped boat, no injury to occupants",N,13h45,5 m shark,"The Sydney Morning Herald, 1/18/2015",2015.01.17-Watson-Tinny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.17-Watson-Tinny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.17-Watson-Tinny.pdf,2015.01.17,2015.01.17,5757,, +2015.01.16,16-Jan-15,2015,Unprovoked,AUSTRALIA,New South Wales,"Mollymook Beach, Bannister Head",Filming,Sam Smith,M,17,Bitten on hand & wrist,N,,1.5 m shark,"Milton-Ulladulla Times, 1/16/2015",2015.01.16-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.16-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.16-Smith.pdf,2015.01.16,2015.01.16,5756,, +2015.01.08,08-Jan-15,2015,Invalid,USA,Florida,,Swimming after falling overboard,Rob Konrad,M,38,"During his 16-hour swim to shore, he was circled by a shark but it did not injure him",N,Night,No shark involvement,"UPI, 1/12/2015",2015.01.08-Konrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.08-Konrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.08-Konrad.pdf,2015.01.08,2015.01.08,5755,, +2015.01.06,06-Jan-15,2015,Unprovoked,BAHAMAS,Abaco Islands,"Tahiti Beach, Elbow Cay",Snorkeling,Lacy Webb,F,34,Severe bite to right flank,N,16h00,White shark or oceanic whitetip shark,"Britt Martin; Local10, 1/7/2015",2015.01.06-Webb-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.06-Webb-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.06-Webb-Martin.pdf,2015.01.06,2015.01.06,5754,, +2015.01.03,03-Jan-15,2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Chintsa East Beach,Surfing,Jason Krafft,M,15,"Lacerations to lower left leg, puncture wounds to sole of left foot",N,08h00,"Raggedtooth shark, 1.3 m","Dispatch Online, 1/7/2015",2015.01.03-Krafft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.03-Krafft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.03-Krafft.pdf,2015.01.03,2015.01.03,5753,, +2015.01.01,01-Jan-15,2015,Unprovoked,USA,Florida,"Windsor Beach, Indian River County",,male,M,12,Leg bitten,N,Afternoon,"""A small shark""","WPTV-West Palm Beach, 1/2/2015",2015.01.01-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.01-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.01-Child.pdf,2015.01.01,2015.01.01,5752,, +2014.12.29.b,29-Dec-14,2014,Unprovoked,AUSTRALIA,New South Wales,Bherwerre Beach,Surfing,Jeff Brown,,,Lacerations to both feet,N,Morning,2 m shark,"South Coast Register, 12/29/2014",2014.12.29.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/N56702014.12.29.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/N56702014.12.29.b-Brown.pdf,2014.12.29.b,2014.12.29.b,5751,, +2014.12.29.a,29-Dec-14,2014,Unprovoked,AUSTRALIA,Western Australia,Three Stripes near Cheynes Beach,Spearfishing,Jay Muscat,M,17,FATAL,Y,Morning,"White shark, 4 to 5 m","The West Australian, 12/29/2014",2014.12.29.a-Muscat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.29.a-Muscat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.29.a-Muscat.pdf,2014.12.29.a,2014.12.29.a,5750,, +2014.12.28.d,28-Dec-14,2014,Sea Disaster,GREECE,,33 nautical miles off Othonoi Island,,Passenger ferry Norman Atlantic,,,"Of 9 bodies recovered, one was bitten by a shark",N,,Shark involvement prior to death still to be determined,"Greek Reporter, 1/13/2015",2014.12.28.d-NormanAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.d-NormanAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.d-NormanAtlantic.pdf,2014.12.28.d,2014.12.28.d,5749,, +2014.12.28.c,28-Dec-14,2014,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Swimming,"5 people claimed to have been injured by a ""baby"" shark",,,Minor cuts on feet,N,Morning,Shark involvement not confirmed & highly unlikely,"IOL News, 12/29/2014",2014.12.28.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.c-Durban.pdf,2014.12.28.c,2014.12.28.c,5748,, +2014.12.28.b,28-Dec-14,2014,Unprovoked,USA,California,"Montaa de Oro State Park, San Luis Obispo County ",Surfing,Kevin Swanson,M,50,Injury to hip/leg,N,11h30,"White shark, 8' to 10'","R. Collier, GSAF",2014.12.28.b-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.b-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.b-Swanson.pdf,2014.12.28.b,2014.12.28.b,5747,, +2014.12.28.a,28-Dec-14,2014,Provoked,AUSTRALIA,Victoria,Paradise Beach,Fishing,male,M,40s,Laceration to calf when he fell on shark he had caught PROVOKED INCIDENT,N,Morning,1.5 m shark,"ABC.net.au, 12/28/2014",2014.12.28.a-ParadiseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.a-ParadiseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.a-ParadiseBeach.pdf,2014.12.28.a,2014.12.28.a,5746,, +2014.12.23.R,Reported 23-Dec-2014,2014,Unprovoked,JAPAN,,,Diving / Filming,male,M,,"No injury, shark snagged its teeth in diver's suit",N,,Goblin shark,"Maxisciences.com, 12/23/2014",2014.12.23.R-GoblinShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.23.R-GoblinShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.23.R-GoblinShark.pdf,2014.12.23.R,2014.12.23.R,5745,, +2014.12.15,15-Dec-14,2014,Unprovoked,AUSTRALIA,Queensland,Rudder Reef,Spearfishing,Daniel Smith,M,17,FATAL,Y,11h30,,"Herald Sun, 12/15/2014",2014.12.15-DanielSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.15-DanielSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.15-DanielSmith.pdf,2014.12.15,2014.12.15,5744,, +2014.12.03.R,Reported 03-Dec-2014,2014,Provoked,SPAIN,Granada,Off Motril,Fishing for blue sharks,male,M,,Glancing bite to wrist from netted shark PROVOKED INCIDENT,N,07h00,,"ABCandalucia, 12/3/2014",2014.12.03.R-Spanish-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.03.R-Spanish-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.03.R-Spanish-fisherman.pdf,2014.12.03.R,2014.12.03.R,5743,, +2014.11.29,29-Nov-14,2014,Unprovoked,AUSTRALIA,Western Australia,"Pyramids Beach, Port Bouvard",Surfing,Cameron Pearman,M,13,Minor injuries to right leg,N,Sometime between 06h00 & 08hoo,,"The Sydney Morning Herald, 11/29/2014",2014.11.29-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.29-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.29-Pearman.pdf,2014.11.29,2014.11.29,5742,, +2014.11.20,20-Nov-14,2014,Provoked,MAURITIUS,Cargados Carajos Shoals (St. Brandon),,Fishing,Rameshwar Ram Dhauro,M,39,"FATAL, arm bitten by shark hauled on deck PROVOKED INCIDENT",Y,,,A. R. Ramjatan ,2014.11.20-Mauritius.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.20-Mauritius.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.20-Mauritius.pdf ,2014.11.20,2014.11.20,5741,, +2014.11.19,19-Nov-14,2014,Boat,AUSTRALIA,Western Australia,Freo,Fishing,Boat: occupants: David Lock & his father,M,,"Shark chasing fish bumped boat, no injury to occupants",N,,White shark,"The West Australian, 11/20/2014",2014.11.19-Freo.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.19-Freo.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.19-Freo.pdf ,2014.11.19,2014.11.19,5740,, +2014.11.16,16-Nov-14,2014,Unprovoked,USA,Florida,"Indian Harbor Beach, Brevard County",Surfing,male,M,44,Laceration to left hand,N,13h00,2' shark,"USA Today, 11/16/2014",2014.11.16-IndianHarbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.16-IndianHarbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.16-IndianHarbor.pdf,2014.11.16,2014.11.16,5739,, +2014.11.17,Reported 17-Nov-2014,2014,Boat,USA,California,"Franklin Point, San Mateo County",,Boat: occupants: Matt Mitchell & 2 other people,,,"Shark bumped boat, no injury to occupants",N,,White shark,"Inquisitr, 11/17/2014",2014.11.17-CA-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.17-CA-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.17-CA-Fishermen.pdf,2014.11.17,2014.11.17,5739,, +2014.11.13,13-Nov-14,2014,Unprovoked,USA,Hawaii,"Airplane Beach, Lahina, West Maui",Snorkeling,Andrew Haas,M,53,Laceration to left upper leg,N,13h30,1.5 m shark,"G. Kubota, Star Advertiser, 11/13/2014",2014.11.13-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.13-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.13-Hawaii.pdf,2014.11.13,2014.11.13,5738,, +2014.11.10,10-Nov-14,2014,Unprovoked,AUSTRALIA,New South Wales,Moonee Beach,Surfing,male,M,,Minor injury to lower leg and foot,N,06h30,,"Norhern Rivers Echo, 11/10/2014",2014.11.10-Moonee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.10-Moonee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.10-Moonee.pdf,2014.11.10,2014.11.10,5737,, +2014.11.08,08-Nov-14,2014,Unprovoked,USA,Florida,"Fort Pierce Inlet State Park, St. Lucie County",Surfing,Ryan Shapiro,M,18,Minor injuries to hand & arm ,N,16h30,,WPTV.com,2014.11.08-FortPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.08-FortPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.08-FortPierce.pdf,2014.11.08,2014.11.08,5736,, +2014.10.31,31-Oct-14,2014,Unprovoked,USA,Hawaii,"North Kohala, Hawaii County",Surfing,McKenzie Clark,F,34,Lacerations to fingers,N,11h00,"Tiger shark, 12'","L. Kubota, Hawaii News Now, 10/31/2014",2014.10.31-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.31-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.31-Clark.pdf,2014.10.31,2014.10.31,5735,, +2014.10.30,29-Oct-14,2014,Provoked,AUSTRALIA,New South Wales,Wallabi Point,Surfing,Ryan Hunt,M,20,Laceration to dorsum of left foot when he stepped on the shark PROVOKED INCIDENT,N,18h00,,"The Sydney Morning Herald, 10/30/2014",2014.10.29-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.29-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.29-Hunt.pdf,2014.10.30,2014.10.30,5734,, +2014.10.22,22-Oct-14,2014,Unprovoked,USA,Hawaii,"Kihei, Maui",Stand-Up Paddleboarding,Kim Lawrence,F,,"No injury, paddleboard bitten",N,10h00,Tiger shark,"Hawaii News Now, 10/22/2014",2014.10.22-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.22-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.22-Lawrence.pdf,2014.10.22,2014.10.22,5733,, +2014.10.20,20-Oct-14,2014,Unprovoked,USA,Hawaii,"Kahului, Maui",Stand-Up Paddleboarding,male,M,,"No injury, paddleboard bitten",N,08h00,,"The Maui News, 10/21/2014",2014.10.20-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.20-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.20-Maui.pdf,2014.10.20,2014.10.20,5732,, +2014.10.19,19-Oct-14,2014,Boat,USA,California,"Leadbetter Beach, Santa Barbara County",Canoeing,Tara Burnley,F,,"No injury to occupant, canoe bitten",N,,,"R. Collier, GSAF",2014.10.19-Tara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.19-Tara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.19-Tara.pdf,2014.10.19,2014.10.19,5731,, +2014.10.18,18-Oct-14,2014,Unprovoked,USA,Hawaii,"Maalaea, South Maui",Surfing,Kaleo Roberson ,M,,"No injury, surfboard bitten",N,11h15,12' to 14' shark,"Star Advertiser, 10/18/2014",2014.10.18-Roberson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.18-Roberson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.18-Roberson,2014.10.18,2014.10.18,5730,, +2014.10.17,17-Oct-14,2014,Unprovoked,AUSTRALIA,New South Wales,Avoca Beach,Surfing,Kirra-Belle Olsson,F,13,"Lacerations to left calf & ankle, puncture wounds to left foot",N,06h30,1 m shark,"Sydney Morning Herald, 10/17/2014","2014.10.17-Olsson, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.17-Olsson, pdf",http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf,2014.10.17,2014.10.17,5729,, +2014.10.14,14-Oct-14,2014,Unprovoked,USA,South Carolina,"Hilton Head Island, Beaufort County",Standing in inner tube,Kyra Bandy,F,7,Lacerations to left foot,N,,"Bull shark, 3' to 4'","TheIndyChannel, 10/16,2014",2014.10.14-Bandy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf,2014.10.14,2014.10.14,5728,, +2014.10.12,12-Oct-14,2014,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Body surfing or Boogie boarding,female,F,,Laceration to right hand/wrist,N,15h30,,"Florida Today, 10/13/2014",2014.10.12-Melbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.12-Melbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.12-Melbourne.pdf,2014.10.12,2014.10.12,5727,, +2014.10.07,07-Oct-14,2014,Unprovoked,USA,Florida,"Cherie Down Park, Brevard County",Fishing,female,F,40,Thigh bitten,N,Afternoon,,"Click Orlando, 10/7/2014",2014.10.07-CherieDownPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.07-CherieDownPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.07-CherieDownPark.pdf,2014.10.07,2014.10.07,5726,, +2014.10.11,11-Oct-14,2014,Boat,AUSTRALIA,Western Australia,"Castle Rock, north of Dunsborough",Kayaking,"Inflatable kayak Occupants: Andrej Kultan & Steve Hopkins. + +",M,,"Kayak deflated, no injury to occupants",N,17h20,,"Perth Now, 10/11/2014",2014.10.11-Dunsborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.11-Dunsborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.11-Dunsborough.pdf,2014.10.11,2014.10.11,5725,, +2014.10.05.b,05-Oct-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kevin Ross,M,29,Foot bitten,N,11h30,Blacktip shark,"WESH2, 10/6/2014",2014.10.05.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.b-Ross.pdf,2014.10.05.b,2014.10.05.b,5723,, +2014.10.05.a,05-Oct-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Hilton Mantooth,M,15,Foot bitten,N,11h00,Blacktip shark,"WESH2, 10/6/2014",2014.10.05.a-Mantooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.a-Mantooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.a-Mantooth.pdf,2014.10.05.a,2014.10.05.a,5722,, +2014.10.03.b,03-Oct-14,2014,Boat,USA,California,Santa Barbara County,Kayaking,Ryan Howell,M,,"No injury to occupant, shark/s holded kayak",N,14h00,"White shark, 18' to 20'","R. Collier, GSAF",2014.10.03.b-Kayaks2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.03.b-Kayaks2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,2014.10.03.b,2014.10.03.b,5721,, +2014.10.03.a,03-Oct-14,2014,Boat,USA,California,Santa Barbara County,Kayaking ,Raul Armenta ,M,,"No injury to occupant, shark/s holded kayak",N,11h30,White shark,"R. Collier, GSAF",2014.10.03.a-Kayaks1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.03.a-Kayaks1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,2014.10.03.a,2014.10.03.a,5720,, +2014.10.02.b,02-Oct-14,2014,Unprovoked,USA,California,"Walls Beach, Vandenberg AFB, Santa Barbara County",Surfing,M.M.,M,28,Lacerations to knee,N,17h30,8' to 10' shark,"R. Collier, GSAF",2014.10.02.b-Vandenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,2014.10.02.b,2014.10.02.b,5719,, +2014.10.02.a,02-Oct-14,2014,Unprovoked,AUSTRALIA,Western Australia,"Kelpids Beach, Wylie Bay, Esperance",Surfing,Sean Pollard,M,23,"Left arm & right hand severed, lacerations to both legs",N,11h00,"2 white shark: 13' & 9""8""","9News, 2/15/2015",2014.10.02.a-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.a-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.a-Pollard.pdf,2014.10.02.a,2014.10.02.a,5718,, +2014.09.21,21-Sep-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jordan Lefebvre,M,,Minor injury to left foot,N,11h30,,"NBC2 News, 9/21/2014",2014.09.21-Lefebvre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.21-Lefebvre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.21-Lefebvre.pdf,2014.09.21,2014.09.21,5717,, +2014.09.13.R,Reported 12-Sep-2014,2014,Unprovoked,FRENCH POLYNESIA,Moorea,Tiahura Lagoon,Feeding fish,female,F,36,Thumb & finger nipped,N,,Blacktip shark,"LeDepeche, 9/12/2014",2014.09.12.R-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.12.R-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.12.R-Moorea.pdf,2014.09.13.R,2014.09.13.R,5716,, +2014.09.13,13-Sep-14,2014,Invalid,USA,California,"Manresa State Beach, Santa Cruz County",Surfing,Beau Browning,M,,"A hoax, no shark involvement",N,18h45,No shark involvement,"R. Collier, GSAF",2014.09.13-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.13-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.13-Browning.pdf,2014.09.13,2014.09.13,5715,, +2014.09.09,09-Sep-14,2014,Unprovoked,AUSTRALIA,New South Wales,"Clarkes Beach, Byron Bay",Swimming,Paul Wilcox,M,50,FATAL,Y,10h45,7' shark,"BBC, 9/9/2014",2014.09.09-Wilcox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.09-Wilcox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.09-Wilcox.pdf,2014.09.09,2014.09.09,5714,, +2014.09.06,06-Sep-14,2014,Unprovoked,USA,Alabama,"Katrina Cut, Dauphin Island, Mobile County",Fishing ,Jamie Robson,M,43,Leg bitten,N,13h00,Bull shark,"Fox10TV.com, 9/7/2014",2014.09.06-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.06-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.06-Robson.pdf,2014.09.06,2014.09.06,5713,, +2014.09.03,03-Sep-14,2014,Unprovoked,USA,Massachusetts,"Manomet Point, Plymouth, Plymouth County",Kayaking ,Ida Parker & Kristen Orr,F,20s,"No injury, shark bit kayak",N,18h00,"White shark, 12' to 14'","Boston Globe, 9/4/2014",2014.09.03-Plymouthkayakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.03-Plymouthkayakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.03-Plymouthkayakers.pdf,2014.09.03,2014.09.03,5712,, +2014.09.02,02-Sep-14,2014,Provoked,USA,Florida,"Fletcher Beach, Hutchinson Island, Martin County",Fishing,male,M,52,Bitten twice on the leg by a shark he was attempting to free from his line PROVOKED INCIDENT,N,20h00,3' to 4' shark,"WPBF.com, 9/2/2014",2014.09.02-FletcherBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.02-FletcherBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.02-FletcherBeach.pdf,2014.09.02,2014.09.02,5711,, +2014.09.00,Sep-14,2014,Unprovoked,SPAIN,Catalonia,Salou,Playing with an air mattress,male,M,16,Lacerations to right hand,N,,,"A. Brenneka, Shark Attack Survivors",2014.09.00-Salou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.00-Salou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.00-Salou.pdf,2014.09.00,2014.09.00,5710,, +2014.08.31,31-Aug-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Alexandra Masterson,F,13,Injury to left calf,N,16h40,Spinner shark,"Sun Sentinel, 8/31/2014",2014.08.31-Masterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.31-Masterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.31-Masterson.pdf,2014.08.31,2014.08.31,5709,, +2014.08.29.b,29-Aug-14,2014,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Brendan Murphy,M,17,Lacerations to shin,N,,Spinner shark or blacktip shark,"Click Orlando, 9/12/2014",2014.08.29.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.b-Murphy.pdf,2014.08.29.b,2014.08.29.b,5708,, +2014.08.29.a,29-Aug-14,2014,Invalid,USA,Florida,"Atlantic Beach, Duval County",,child,,,Shark involvement not confirmed,N,16h18,Shark involvement not confirmed,"Orlando Sentinel, 8/31/2014",2014.08.29.a-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.a-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.a-AtlanticBeach.pdf,2014.08.29.a,2014.08.29.a,5707,, +2014.08.28,28-Aug-14,2014,Provoked,USA,Maryland,Assateague National Seashore,Fishing,Mathew Vickers,M,33,Lacerations to foot by hooked shark PROVOKED INCIDENT,N,,,"Delmarva Now, 8/29/2014",2014.08.28-Vickers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.28-Vickers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.28-Vickers.pdf,2014.08.28,2014.08.28,5706,, +2014.08.27.c,27-Aug-14,2014,Unprovoked,SPAIN,Alicante,Benidorm,Swimming,Raquel Martin,F,30s,Minor lacerations to posterior lower leg,N,,small shark,"Diario Informacion, 8/29/2014",2014.08.27.c-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.c-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.c-Spain.pdf,2014.08.27.c,2014.08.27.c,5705,, +2014.08.27.b,27-Aug-14,2014,Unprovoked,USA,North Carolina,"Figure Eight Island, New Hanover County",Surfing,Hunter Anderson,M,29,Laceration to left hand,N,,4' to 6' shark,"C. Creswell, GSAF",2014.08.27.b-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.b-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.b-Anderson.pdf,2014.08.27.b,2014.08.27.b,5704,, +2014.08.27.a,27-Aug-14,2014,Unprovoked,USA,South Carolina,"Surfside Beach, Horry County",Standing,female,F,,Heel bitten,N,15h00,,"C. Creswell, GSAF",2014.08.27.a-Surfside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.a-Surfside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.a-Surfside.pdf,2014.08.27.a,2014.08.27.a,5703,, +2014.08.25,Reported 25-Aug-2014,2014,Provoked,USA,Florida,Apalachicola Bay ,Fishing for sharks,John Wiley,M,,Lacerations to forearm from hooked shark PROVOKED INCIDENT,N,,"Bull shark, 4.5' ","Nooga.com, 8/25/2014",2014.08.25.R-Wiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.25.R-Wiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.25.R-Wiley.pdf,2014.08.25,2014.08.25,5702,, +2014.08.24,24-Aug-14,2014,Unprovoked,USA,North Carolina,"Off Masonboro Island, New Hanover County",Kite boarding,Miller Diggs,,,Laceration to left foot,N,,4' shark,"C. Creswell, GSAF; WWAY, 8/24/2014",2014.08.24-Diggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.24-Diggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.24-Diggs.pdf,2014.08.24,2014.08.24,5701,, +2014.08.16,16-Aug-14,2014,Unprovoked,AUSTRALIA,Western Australia,Gnaraloo,Spearfishing,Adam Haling ,M,31,Lacerations to face and neck,N,,reef shark,"Herald Sun, 8/21/2014",2014.08.16-Haling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.16-Haling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.16-Haling.pdf,2014.08.16,2014.08.16,5700,, +2014.08.12,12-Aug-14,2014,Unprovoked,USA,Florida,"3 to 4 miles west of Indian Pass, Gulf County",Standing,Kyle Hayes,M,,Puncture wounds and lacerations to left thigh and knee,N,11h10," Bull shark, 8'","K. Hayes / Brewton Standard, 8/19/2014",2014.08.15-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.15-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.12-Hayes.pdf,2014.08.12,2014.08.12,5699,, +2014.08.10,10-Aug-14,2014,Unprovoked,USA,Florida,"Hallandale Beach, Broward County",,male,M,26,Puncture wounds & lacerations to foot,N,,,"CBS Miami, 8/11/1014",2014.08.10-Hallandale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.10-Hallandale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.10-Hallandale.pdf,2014.08.10,2014.08.10,5698,, +2014.08.09.R,09-Aug-14,2014,Unprovoked,BAHAMAS,,,Spearfishing,Andrew Hindley,M,,Puncture wounds to right foot and ankle,N,,"Bull shark, 9' to 10'",A. Hindley / M. Michaelson,"2014.08.09.R-Hindley, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09.R-Hindley, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09.R-Hindley, pdf",2014.08.09.R,2014.08.09.R,5697,, +2014.08.09,09-Aug-14,2014,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Swimming,Krama Fordham,F,10,Puncture wounds to right foot & ankle,N,13h30,,"Florida Today, 8/9/2014",2014.08.09-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09-CocoaBeach.pdf,2014.08.09,2014.08.09,5696,, +2014.08.08,08-Aug-14,2014,Unprovoked,USA,Louisiana,"Lake Ponchartain off Southshore Harbor, New Orleans",Swimming,Trent Trentacosta,M,7,Minor lacerations to left heel and big toe,N,Afternoon," Bull shark, 5'","The Times-Picayune, 8/9/2014",2014.08.08-Trentacosta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-Trentacosta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-Trentacosta.pdf,2014.08.08,2014.08.08,5695,, +2014.08.06,06-Aug-14,2014,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Boogie boarding,Riley Harris,M,10,Lacerations to right leg & foot,N,14h00,4' tp 5' shark,"C. Creswell, GSAF; WCSC. 8/6/2014",2014.08.14-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.14-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.14-Harris.pdf,2014.08.06,2014.08.06,5694,, +2014.08.05,05-Aug-14,2014,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,female,F,45,Lacerations to foot,N,,,"Inquisitr, 8/7/2014",2014.08.05-Tulip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.05-Tulip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.05-Tulip.pdf,2014.08.05,2014.08.05,5693,, +2014.08.02,02-Aug-14,2014,Unprovoked,USA,Florida,"South of Cocoa Beach, Brevard County",Surfing,male,M,50s,Foot bitten,N,,,"Florida Today, 8/8/2014",2014.08.08-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-CocoaBeach.pdf,2014.08.02,2014.08.02,5692,, +2014.08.02,02-Aug-14,2014,Unprovoked,USA,Florida,"Table Beach, Brevard County",Boogie boarding,Christian Sanhueza,M,8,Laceration to ankle,N,13h00,,"Florida Today, 8/2/2014",2014.08.02-Sanhueza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.02-Sanhueza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.02-Sanhueza.pdf,2014.08.02,2014.08.02,5691,, +2014.08.01,01-Aug-14,2014,Unprovoked,SOUTH AFRICA,Western Cape Province,Muizenberg,Surfing,Matthew Smithers,M,20,Lower limbs & thigh bitten,N,14h00,White shark,"NSRI, 8/1/2014",2014.08.01-Smithers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.01-Smithers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.01-Smithers.pdf,2014.08.01,2014.08.01,5690,, +2014.08.00,Aug-14,2014,Invalid,,,,Sea disaster,Cuban refugees,M,,Shark involvement prior to death not confirmed,Y,,Shark involvement not confirmed,"Associated Press, 11/27/2014",2014.08.00-Cuban-refugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.00-Cuban-refugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.00-Cuban-refugees.pdf,2014.08.00,2014.08.00,5689,, +2014.07.27,27-Jul-14,2014,Unprovoked,USA,North Carolina,"Sunset Beach, Brunswick County",Swimming,male,M,Teen,Left foot bitten,N,,Possibly juvenile tiger shark,"C. Creswell, GSAF",2014.07.27-SunsetBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.27-SunsetBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.27-SunsetBeach.pdf,2014.07.27,2014.07.27,5688,, +2014.07.22,22-Jul-14,2014,Unprovoked,REUNION,Saint-Leu,,Surfing,Vincent Rintz,M,51,Lacerations to right wrist & calf,N,15h00,1.8 metre shark,"BFM-tv, 7/22/2014",2014.07.22-Rintz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.22-Rintz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.22-Rintz.pdf,2014.07.22,2014.07.22,5687,, +2014.07.21,21-Jul-14,2014,Unprovoked,USA,Florida,"Indialantic, Brevard County",Standing,Aayden Crick,M,8,Lacerations to right knee,N,Early afternoon,,"ClickOrlando, 7/22/2014",2014.07.21-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.21-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.21-Crick.pdf,2014.07.21,2014.07.21,5686,, +2014.07.20,20-Jul-14,2014,Unprovoked,SPAIN,Canary Islands,"Teresita, Santa Cruz, Tenerife",Wading,child,,,Minor injury,N,,Angel shark,"DiariodeAvisos, 7/25/2014",2014.07.20-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.20-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.20-Tenerife.pdf,2014.07.20,2014.07.20,5685,, +2014.07.16,16-Jul-14,2014,Unprovoked,USA,Hawaii,"Paia Bay, Maui",Swimming,male,M,61,Lacerations to left foot,N,17h50,6' to 8' shark,"Maui Now, 7/16/2014",2014.07.16-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.16-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.16-Maui.pdf,2014.07.16,2014.07.16,5684,, +2014.07.14,14-Jul-14,2014,Unprovoked,USA,Florida,Okaloosa Island,Swimming,Terrell Moore,M,39,Puncture wounds to foot,N,14h30,4' shark,"W. Victora, Daily News, 7/15/2014",2014.07.14-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.14-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.14-Moore.pdf,2014.07.14,2014.07.14,5683,, +2014.07.13,13-Jul-14,2014,Invalid,BAHAMAS,West End,Tiger Beach,Shark diving,John Petty,M,63,"Missing after a dive, shark involvement considered probable, but not confirmed",Y,Night,Shark involvement not confirmed,"Outside, 7/14/2014",2014.07.13-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.13-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.13-Petty.pdf,2014.07.13,2014.07.13,5682,, +2014.07.12,12-Jul-14,2014,Unprovoked,USA,North Carolina,"Masonboro Island, New Hanover County",Body surfing,Carson Jewell,M,,Lacerations to hand and wrist,N,,,"C. Creswell, GSAF",2014.07.12-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.12-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.12-Jewell.pdf,2014.07.12,2014.07.12,5681,, +2014.07.09,09-Jul-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Tristan Durham,M,14,Lacerations to foot,N,14h00,,"WESH.com, 7/9/2014",2014.07.09-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.09-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.09-Durham.pdf,2014.07.09,2014.07.09,5680,, +2014.07.05.b,05-Jul-14,2014,Provoked,USA,California,"Manhattan Beach, Los Angeles County",Swimming,Steve Robles,M,,PROVOKED INCIDENT Torso bitten by shark hooked by an angler,N,09h30," White shark, 7' ","R. Collier, GSAF / M Michaelson, SRI ",2014.07.05.b-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.b-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.b-Robles.pdf,2014.07.05.b,2014.07.05.b,5679,, +2014.07.05.a,05-Jul-14,2014,Unprovoked,USA,California,"Oceano Dunes State Beach, San Luis Obispo County",Surfing,R.J.,M,,"No injury, surboard bitten",N,07h00 - 08h00,,"R. Collier, GSAF",2014.07.05.a-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.a-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.a-Surfer.pdf,2014.07.05.a,2014.07.05.a,5678,, +2014.07.03,03-Jul-14,2014,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Body surfing,Christian Fairbourne,M,19,Right hand bitten,N,18h15-18h30,4' to 5' shark,"C. Creswell, GSAF Live5News, 7/3/2014",2014.07.03-Fairbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.03-Fairbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.03-Fairbourne.pdf,2014.07.03,2014.07.03,5677,, +2014.06.27.R,Reported 27-Jun-2014,2014,Boat,ST. MARTIN,,20 miles from shore,Transatlantic Rowing,Victor Mooney,M,48,His boat was holed by a shark,N,,Oceanic whitetip shark',"Star Advertiser, 6/272014; Goree Challenge.com",2014.06.27-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.27-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.27-Mooney.pdf,2014.06.27.R,2014.06.27.R,5676,, +2014.06.25,25-Jun-14,2014,Unprovoked,BAHAMAS,Abaco Islands,,Spearfishing,Mark Adams,M,42,No injury but shark took his pole spear,N,13h00,"Caribbean reef shark, 7' to 8'","A. Brenneka, Shark Attack Survivors, M. Adams",2014.06.25-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.25-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.25-Adams.pdf,2014.06.25,2014.06.25,5675,, +2014.06.18.b,18-Jun-14,2014,Unprovoked,AUSTRALIA,South Australia,"Middleton Point, Fleurieu Peninsula",Surfing,Max Longhurst ,M,,"No injury, surfboard 'attacked'",N,17h01,,"The Times, 6/19/2014",2014.06.18.b-Longhurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.b-Longhurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.b-Longhurst.pdf,2014.06.18.b,2014.06.18.b,5674,, +2014.06.18.a,18-Jun-14,2014,Unprovoked,AUSTRALIA,South Australia,"Middleton Point, Fleurieu Peninsula",Body boarding,Jesse McKinnon,M,15,Lacerations to knee,N,17h00,,"The Advertiser, 6/19/2014",2014.06.18.a-McKinnon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.a-McKinnon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.a-McKinnon.pdf,2014.06.18.a,2014.06.18.a,5673,, +2014.06.17.R,Reported 17-Jun-2014,2014,Provoked,AUSTRALIA,Western Australia,Horizontal Falls,Petting a shark,Ric Wright,M,,Lacerations to right hand by captive shark PROVOKED INCIDENT,N,," Lemon shark, 3.5 m","Meribula News, 6/17/2014",2014.06.17.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.17.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.17.R-Wright.pdf,2014.06.17.R,2014.06.17.R,5672,, +2014.06.09.c,09-Jun-14,2014,Unprovoked,BRAZIL,,500 km off the coast of Pernambuco,Fishing,Sunarko,M,43,Severe injury to arm,N,,,"msn, 6/11/2014",2014.06.09.c-Sunarko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.c-Sunarko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.c-Sunarko.pdf,2014.06.09.c,2014.06.09.c,5671,, +2014.06.09.b,09-Jun-14,2014,Unprovoked,USA,Delaware,"Cape Henlopen State Park, Sussex County",Standing,Andrew Vance,M,16,"Abrasion to right hand, lacerations to left forearm",N,17h00," Sandbar shark, 3' to 4'","News Journal (Wilmington, Del), 6/11/2014",2014.06.09.b-Vance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.b-Vance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.b-Vance.pdf,2014.06.09.b,2014.06.09.b,5670,, +2014.06.09.a,09-Jun-14,2014,Unprovoked,AUSTRALIA,South Australia,"Parsons Beach, Fleurieu Peninsula",Body boarding,Scott Berry,M,39,Minor injury to torso,N,09h45,"Bronze whaler shark, 1.5m","The Australian, 6/9/2014",2014.06.09.a-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.a-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09-Berry.pdf,2014.06.09.a,2014.06.09.a,5669,, +2014.06.08,08-Jun-14,2014,Unprovoked,JAPAN,Atsumi peninsula,Aichi,Surfing,Tsuyoshi Takahashi,M,43,Left arm bitten,N,Afternoon,,"Sky News, 6/10/2013",2014.06.08-Takahashi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.08-Takahashi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.08-Takahashi.pdf,2014.06.08,2014.06.08,5668,, +2014.06.07,07-Jun-14,2014,Unprovoked,USA,Texas,"West Beach, Galveston",Kneeling in the water,Mikaela Amezaga Medina,F,14,Shallow lacerations & puncture wounds below shoulder,N,Afternoon,,"Inquisitr.com, 6/9/2014",2014.06.07-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.07-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.07-Medina.pdf,2014.06.07,2014.06.07,5667,, +2014.06.01.c,01-Jun-14,2014,Unprovoked,USA,Florida,Fort Lauderdale,Swimming,Jessica Vaughn,F,22,Laceration to right lower leg,N,13h30,Bull shark,"Local10.com, 6/1/2014",2014.06.01.c-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.c-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.c-Vaughn.pdf,2014.06.01.c,2014.06.01.c,5666,, +2014.06.01.b,01-Jun-14,2014,Unprovoked,AUSTRALIA,New South Wales,"Seven Mile Beach, Gerroa",Surfing,Bob Smith,M,,Lacerations & puncture wounds to ankle and foot,N,Morning,,"Newcastle Herald, 6/3/2014",2014.06.01.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.b-Smith.pdf,2014.06.01.b,2014.06.01.b,5665,, +2014.06.01.a,01-Jun-14,2014,Unprovoked,USA,Palmyra Atoll,,Tagging sharks,female,F,37,Laceration to left hand,N,,Blacktip Reef shark ,U.S. Coast Guard,2014.06.01.a-PalmyraAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.a-PalmyraAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.a-PalmyraAtoll.pdf,2014.06.01.a,2014.06.01.a,5664,, +2014.05.27.R,24-May-14,2014,Unprovoked,AUSTRALIA,Queensland,Nerang River near Chevron Island,Fell into the water,Bianca Freeman,F,29,Lacerations to legs,N,," Bull shark, 1.2m ","Gold Coast Bulletin, 4/27/2014",2014.05.27.R-Freeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.27.R-Freeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.27.R-Freeman.pdf,2014.05.27.R,2014.05.27.R,5663,, +2014.05.23,23-May-14,2014,Unprovoked,FRANCE,Wallis and Futuna,Wallis Island,Scuba diving,Eric Barnabas,M,,Lacerations to left thigh and hip,N,Morning,3m shark,Facebook.com,2014.05.23-Barnabas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.23-Barnabas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.23-Barnabas.pdf,2014.05.23,2014.05.23,5662,, +2014.05.22,22-May-14,2014,Provoked,AUSTRALIA,New South Wales,The Australian Shark and Ray Centre,Teasing a shark,male,M,10,Cut to tip of finger by a captive shark PROVOKED INCIDENT,N,," Tawney nurse shark, 1m","Newcastle Herald, 5/22/2014",2014.05.22-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.22-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.22-Aquarium.pdf,2014.05.22,2014.05.22,5661,, +2015.11.20,20-Nov-15,2015,Unprovoked,ECUADOR,Galapagos Islands,"Punta Vicente Roca, Isabella Island",Snorkeling,Graham Hurley,M,55,Lacerations to left calf,N,10h15,Galapagos shark,G. Hurley,2015.11.20-Hurley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.20-Hurley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.20-Hurley.pdf,2015.11.20,2015.11.20,5661,, +2014.05.15,15-May-14,2014,Unprovoked,USA,Florida,"Juan Ponce de Len Landing, Melbourne Beach, Brevard County",Body boarding,Amy Tatsch,F,38,Calf bitten,N,11h30,,"M. Michaelson, Shark Research Institute",2014.05.15-Tatsch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.15-Tatsch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.15-Tatsch.pdf,2014.05.15,2014.05.15,5660,, +2014.05.14,14-May-14,2014,Unprovoked,AUSTRALIA,South Australia,"Elliston, Eyre Peninsula",Surfing,Andrew McLeod,M,35,"No injury, but surfboard severely damaged",N,09h30," white shark, 15' ","N. Davies, The Advertiser, 5/114/2014","2014.05.14-McLeod, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.14-McLeod, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.14-McLeod, pdf",2014.05.14,2014.05.14,5659,, +2014.05.13,13-May-14,2014,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Wading,Mihaela Cosa,F,44,Lacerations and puncture wounds to right foot,N,11h00,,"M. Michaelson, Shark Research Institute",2014.05.13-Cosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.13-Cosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.13-Cosa.pdf,2014.05.13,2014.05.13,5658,, +2014.05.11,11-May-14,2014,Unprovoked,USA,Georgia,"Tybee Island, Chatham County",Surfing,Ayden Meadows,M,12,Puncture wounds to right thigh,N,,Shark involvement not confirmed,"Savannah Morning News, 5/12/2014",2014.05.11-Meadows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.11-Meadows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.11-Meadows.pdf,2014.05.11,2014.05.11,5657,, +2014.05.10.R,Reported 10-May-2014,2014,Invalid,USA,Florida,"Bethel Shoals, Indian River County",Diving,Jimmy Roseman,M,,"No injury. No attack. 12' white shark appeared curious, not aggressive & departed when prodded by spear",N,,No shark involvement,"Metro, 5/10/2014",2014.05.10.R-Roseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.10.R-Roseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.10.R-Roseman.pdf,2014.05.10.R,2014.05.10.R,5656,, +2014.05.06,06-May-14,2014,Unprovoked,USA,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Swimming,Kimberly Popp,F,40,Lacerations to left foot,N,15h00,4' to 5' shark,"The Island Packet, 5/7/2014",2014.05.06-Popp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.06-Popp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.06-Popp.pdf,2014.05.06,2014.05.06,5655,, +2014.05.01,01-May-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Shane Nolet,M,23,Laceration to right hand and cuts on fingertips,N,15h00,3' shark,"Wesh.com, 5/2/2014",2014.05.01-Nolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.01-Nolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.01-Nolet.pdf,2014.05.01,2014.05.01,5654,, +2014.04.24,24-Apr-14,2014,Unprovoked,AUSTRALIA,Western Australia,"South Passage, south of Coral Bay",Spearfishing,male,M,,Minor injury,N,,reef shark?,"9 News, 4/24/2014",2014.04.24-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.24-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.24-WA.pdf,2014.04.24,2014.04.24,5653,, +2014.04.22,22-Apr-14,2014,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,male,M ,42,Laceration & puncture wounds to right foot,N,15h30,,"R. Neale, Florida Today, 4/22/2014",2014.04.22-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.22-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.22-CocoaBeach.pdf,2014.04.22,2014.04.22,5652,, +2014.04.15,15-Apr-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Justin Davidson,M,25,Minor lacerations to left foot,N,09h57,,"Daytona Beach News-Journal, 4/15/2014",2014.04.15-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.15-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.15-NSB.pdf,2014.04.15,2014.04.15,5651,, +2014.04.12.R,Reported 12-Apr-2014,2014,Boat,SOUTH AFRICA,,,Shark watching,Inflatable boat,,,"No injury to occupants, shark bit pontoon",N,,White shark,"You Tube, posted 4/12/2014",.2014.04.12.R-inflatable,http://sharkattackfile.net/spreadsheets/pdf_directory/.2014.04.12.R-inflatable,http://sharkattackfile.net/spreadsheets/pdf_directory/.2014.04.12.R-inflatable,2014.04.12.R,2014.04.12.R,5650,, +2014.04.12,12-Apr-14,2014,Provoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Fishing,Lionel McDougall,M,,Lacerations to leg & hand by hooked shark PROVOKED INCIDENT,N,Morning," Raggedtooth shark, 2m","The Citizen, 4/12/2014",2014.04.12-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.12-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.12-McDougall.pdf,2014.04.12,2014.04.12,5649,, +2014.04.04.b,04-Apr-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,teen,Minor puncture wounds to lower left leg,N,13h50,,"News 13, 4/4/2014",2014.04.04.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.b-NSB.pdf,2014.04.04.b,2014.04.04.b,5648,, +2014.04.04.a,04-Apr-14,2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,teen,Lacerations to foot,N,13h30,,"News 13, 4/4/2014",2014.04.04.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.a-NSB.pdf,2014.04.04.a,2014.04.04.a,5647,, +2014.04.03,03-Apr-14,2014,Unprovoked,AUSTRALIA,New South Wales,Tathra,Swimming,Christine Armstrong,F,63,FATAL,Y,08h20,3 m to 4 m white shark,"B. Myatt, GSAF",2014.04.03-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.03-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.03-Armstrong.pdf,2014.04.03,2014.04.03,5646,, +2014.03.29,29-Mar-14,2014,Invalid,AUSTRALIA,Western Australia,Off Dawesville Cut,Diving for lobsters,Michael McGregor,M,38,Shark bites may have been post mortem,Y,13h30,,"The West Australian, 4/2/2014",2014.03.29-WesternAustralia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.29-WesternAustralia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.29-WesternAustralia.pdf,2014.03.29,2014.03.29,5645,, +2014.03.22.b,22-Mar-14,2014,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St Johns",Swimming,Friedrich Burgstaller.,M,66,FATAL,Y,15h00,2 m shark,"Austrian Independent, 3/24/2014",2014.03.22.b-SecondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.b-SecondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.b-SecondBeach.pdf,2014.03.22.b,2014.03.22.b,5644,, +2014.03.22.a,22-Mar-14,2014,Unprovoked,USA,Florida,Delray Beach,Kite Surfing,Kurt Hoffman,M,,Lacerations to left forearm,N,,4' to 5' shark,"TC Palm, 3/23/2014",2014.03.22.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.a-Hoffman.pdf,2014.03.22.a,2014.03.22.a,5643,, +2014.03.21,21-Mar-14,2014,Unprovoked,USA,Florida,Macarthur State Park,Surfing,Sebastian Cozzen,M,9,Lacerations to toes and heel of right foot,N,,,"E. Guy, WPBF, 3/26/2014",2014.03.21-Cozzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.21-Cozzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.21-Cozzen.pdf,2014.03.21,2014.03.21,5642,, +2014.03.18.c,18-Mar-14,2014,Unprovoked,NEW CALEDONIA,Baie de Sainte-Marie,,Kite Surfing,Laurent Borgna ,M,42,Lacerations to calf,N,17h58,,"A. Brenneka, Shark Attack Surviors",2014.03.18.c-Borgna,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.c-Borgna,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.c-Borgna,2014.03.18.c,2014.03.18.c,5641,, +2014.03.18.b,18-Mar-14,2014,Unprovoked,AUSTRALIA,Victoria,Winkipop Beach,Surfing,Mark Byrne,M,42,Shark leapt onto surfboard; surfer uninjured ,N,Morning,,"New7 Melbourne, 3/19/2014",2014.03.18.b-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.b-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.b-Byrne.pdf,2014.03.18.b,2014.03.18.b,5640,, +2014.03.13,13-Mar-14,2014,Invalid,CAYMAN ISLANDS,,,Scuba diving / culling lionfish,Jason Dimitri,M,,"Caribbean reef shark buzzed him. No injury, no attack. ",N,,,"You Tube, posted 4/12/2014",2014.03.13-Dimitri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.13-Dimitri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.13-Dimitri.pdf,2014.03.13,2014.03.13,5639,, +2014.03.18,18-Mar-14,2014,Invalid,AUSTRALIA,New South Wales,Lennox Head,,Myxie Ryan,F,10,"Injuries to wrist/hand by a mackerel, not a shark",N,17h00,No shark involvement,"Brisbane Times, 3/18/2014",2014.03.18-NSW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18-NSW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18-NSW.pdf,2014.03.18,2014.03.18,5638,, +2014.03.12,12-Mar-14,2014,Unprovoked,AUSTRALIA,New South Wales,Lighthouse Beach,Swimming,Mike Porter,M,,Minor lacerations to foot,N,18h00,Wobbegong shark,"N. Keene, The Daily Telegraph, 3/13/2014",2014.03.12-LightouseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.12-LightouseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.12-LightouseBeach.pdf,2014.03.12,2014.03.12,5637,, +2014.03.02,02-Mar-14,2014,Unprovoked,USA,Florida,"Santa Lucea Beach, South Hutchinson Island, St. Lucie County",Surfing,Dylan Fugitt,M,21,Lacerations to toes,N,,Blacktip or spinner shark?,"L.Gordon, CBS 12, 3/3/2014",2014.03.02-Fugitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.02-Fugitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.02-Fugitt.pdf,2014.03.02,2014.03.02,5636,, +2014.02.20,20-Feb-14,2014,Unprovoked,FRENCH POLYNESIA,Society Islands,Huahine,Kitesurfing,male,M,21,Lacerations to lower leg,N,16h00,Blacktip reef shark ,"A. Brenneka, Shark Attack Survivors",2014.02.20-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.20-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.20-FrenchPolynesia.pdf,2014.02.20,2014.02.20,5635,, +2014.02.17,Reported 17-Feb-2014,2014,Boat,PAPUA NEW GUINEA,,,Sailing,OneDLL,M,21,"No injury to occupants, hull bitten",N,Night,,"Sail-World.com, 2/17/2014",2014.02.17.R-OneDLL,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.17.R-OneDLL,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.17.R-OneDLL,2014.02.17,2014.02.17,5634,, +2014.02.08,08-Feb-14,2014,Unprovoked,AUSTRALIA,South Australia,"Goldsmith Beach, Yorke Peninsula",Spearfishing / Free diving,Sam Kellett ,M,28,FATAL,Y,12h00,,"The Advertiser, 2/9/2014",2014.02.08-Kellett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.08-Kellett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.08-Kellett.pdf,2014.02.08,2014.02.08,5633,, +2014.02.07.b,07-Feb-14,2014,Provoked,TRINIDAD & TOBAGO,Trinidad,,Fishing,Simon Torres,M,,Possibly a PROVOKED INCIDENT,N,,,"Trinidad Guardian, 2/11/2014",2014.02.07.b-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.07.b-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.02.07.b,2014.02.07.b,5632,, +2014.02.07,07-Feb-14,2014,Unprovoked,NEW ZEALAND,South Island,Porpoise Bay,Surfing,Darren Mills,M,28,Lacerations to leg,N,20h30,7-gill shark?,"New Zealand Herald, 2/7/2014",2014.02.07-PorpoiseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.07-PorpoiseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.02.07,2014.02.07,5631,, +2014.01.26,26-Jan-14,2014,Provoked,AUSTRALIA,New South Wales,Umina Beach,Fishing,Richard O'Connor,M,,Lacerations to ring and pinky fingers of his left hand by hooked shark PROVOKED INCIDENT,N,,1m shark,"Daily Telegraph, 1/29/2014",2014.01.26-O'Connor.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.01.26-O'Connor.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.01.26,2014.01.26,5630,, +2014.01.25,25-Jan-14,2014,Unprovoked,NEW ZEALAND,South Island,Garden Bay near Cosy Nook,Spearfishing,James Grant,M,24,Minor injury to left lower leg & heel,N,,7-gill shark,"Stuff.co.nz,1/27/2014",2014.01.25-Grant,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.01.25-Grant,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.01.25,2014.01.25,5629,, +2014.01.04,04-Jan-14,2014,Sea Disaster,JAPAN,Okinawa Prefecture,Off Miyako Island,Sea disaster,Rianto,M,31,5 cm bite to left foot,N,,,"Focus Taiwan, 1/7/2014",2014.01.04-Rianto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.01.04-Rianto.pdf,pdf_directory2014.01.04-Riano.pdf ,2014.01.04,2014.01.04,5628,, +2014.00.00,2014,2014,Boat,NEW ZEALAND,,Stewart Island,Filming a documentary,Dinghy. Occupants: Jeff Kurr and Andy Casagrande,,,"No injury to occupants, shark nudged and bit boat",N,,"White shark, 6 m",Discovery Channel,2014.00.00-Jeff-Andy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.00.00-Jeff-Andy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.00.00-Jeff-Andy.pdf,2014.00.00,2014.00.00,5627,, +2013.12.25,25-Dec-13,2013,Unprovoked,NEW CALEDONIA,North Province,"Lindralique, Hienghne",Snorkeling,Loc Merlet,M,37,Leg bitten,N,11h00,Reported to involve a bull shark,"Les Novelles Caledonie, 12/26/2014",2013.12.25-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.25-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.25-NewCaledonia.pdf ,2013.12.25,2013.12.25,5626,, +2013.12.16,16-Dec-13,2013,Unprovoked,SOUTH AFRICA,Western Cape Province,Die Platt,Surfing,Thomas Browne,M,19,Injuries to left thigh,N,08h45,"White shark, 3m ","Cape Argus, 12/16/2013",2013.12.16-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.16-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.16-Browne.pdf,2013.12.16,2013.12.16,5625,, +2013.12.13,13-Dec-13,2013,Unprovoked,KIRIBATI,740 miles SE of Tarawa Atoll,,Attempting to remove fishing net from submerged object,male,M,35,Severe injury to arm,N,,,"Coast Guard News, 12/16/2013",2013.12.13-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.13-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.13-Kiribati.pdf,2013.12.13,2013.12.13,5624,, +2013.12.11,11-Dec-13,2013,Unprovoked,USA,Hawaii,"Ninole Bay, Hawaii County",Boogie boarding,male,M,29,Lacerations to right hand & knee,N,08h00,"Tiger shark, 10' to 12'","Big Island Now, 12/11/2013",2013.12.11-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.11-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.11-Hawaii.pdf,2013.12.11,2013.12.11,5623,, +2013.12.10,10-Dec-13,2013,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Bobby Baughman,M,30,Right foot bitten,N,14h30,4' to 6' shark,"Florida Today, 12/10/2103",2013.12.10-Baughman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.10-Baughman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.10-Baughman.pdf,2013.12.10,2013.12.10,5622,, +2013.12.05,05-Dec-13,2013,Unprovoked,AUSTRALIA,New South Wales,"Shelly Beach, near Port Macquarie",Surfing,male,M,26,"Puncture wounds to hand, laceration to leg",N,18h15," Wobbegong shark, 1.6 to 1.8m ","The Sydney Morning Herald, 12/5/2013",2013.12.05-PortMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.05-PortMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.05-PortMacquarie.pdf,2013.12.05,2013.12.05,5621,, +2013.12.02,02-Dec-13,2013,Unprovoked,USA,Hawaii,"Between Makena & Molokini, Maui",Kayaking / Fishing,Patrick Briney,M,57,FATAL,Y,09h00,,"C. Sugidono, The Maui News, 12/2/2013",2013.12.02-Briney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.02-Briney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.02-Briney.pdf,2013.12.02,2013.12.02,5620,, +2013.11.30,30-Nov-13,2013,Unprovoked,AUSTRALIA,New South Wales,"Riecks Point, Campbells Beach, ",Body boarding,Zac Young,M,19,FATAL,Y,14h00,"Tiger shark, 3m ","The Sydney Morning Herald, 11/30/2013",2013.11.30-ZacYoung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.30-ZacYoung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.30-ZacYoung.pdf,2013.11.30,2013.11.30,5619,, +2013.11.29,29-Nov-13,2013,Unprovoked,USA,Hawaii,"Keawekapu Beach, Kihei, Maui",Snorkeling,female,F,58,Right calf bitten,N,13h00,,"L. Fujimoto, Maui News, 11/29/2013",2013.11.29-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.29-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.29-Maui.pdf,2013.11.29,2013.11.29,5618,, +2013.11.23.a,23-Nov-13,2013,Unprovoked,AUSTRALIA,Western Australia,Gracetown,Surfing,Chris Boyd,M,35,FATAL,Y,09h00,Thought to involve a white shark,"J. Baily; Perth Now, 11/23/2013",2013.11.23.a-Boyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.23.a-Boyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.23.a-Boyd.pdf,2013.11.23.a,2013.11.23.a,5617,, +2013.11.22,22-Nov-13,2013,Unprovoked,USA,Oregon,"Gleneden Beach, Lincoln County",Surfing,Andrew Gardiner,M,25,"No injury, board bitten",N,10h30,"White shark, 10 '",R. Collier,2013.11.22-Gardiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.22-Gardiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.22-Gardiner,2013.11.22,2013.11.22,5616,, +2013.11.12,12-Nov-13,2013,Unprovoked,AUSTRALIA,Western Australia,"Trigg Beach, Perth",Surfing,Shaun Daly,M,,"No injury, board bumped by shark",N,15h00,Reported to involve a white shark,"West Australian, 11/13/2013",2013.11.12-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.12-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.12-Daly,2013.11.12,2013.11.12,5615,, +2013.11.10,10-Nov-13,2013,Provoked,BAHAMAS,,Off Cape Eleuthera,Shark fishing,male,M,77,Injuries to arm & leg by hooked shark PROVOKED INCIDENT,N,11h00,,"Jamaica Observer, 11/11/2013",2013.11.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.10-Bahamas,2013.11.10,2013.11.10,5614,, +2013.11.07.b,07-Nov-13,2013,Unprovoked,USA,New Jersey,"Bay Head, Ocean County",Body boarding,Quinn Gates,M,16,"No injury, swim fin bitten",N,Afternoon,,"S. Nagiewicz, SRI; Star Ledger, 11/9/2013",2013.11.07.b-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.b-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.b-Gates,2013.11.07.b,2013.11.07.b,5613,, +2013.11.07.a,07-Nov-13,2013,Unprovoked,USA,Florida,"Floridana Beach, Brevard County",Surfing,Sandor Melian,M,,Foot bitten,N,,,"Space Coast Daily, 11/11/2013",2013.11.07.a-Melian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.a-Melian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.a-Melian,2013.11.07.a,2013.11.07.a,5612,, +2013.10.31,31-Oct-13,2013,Unprovoked,USA,Hawaii,"Kanaha Beach, Maui",Kiteboarding,Christian Brandon,M,46,Severe bite to right calf & anklel,N,15h19,Tiger shark,"Maui TV, 10/31/2013",2013.10.31-ChristianBrandon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.31-ChristianBrandon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.31-ChristianBrandon,2013.10.31,2013.10.31,5611,, +2013.10.28,28-Oct-13,2013,Unprovoked,AUSTRALIA,Western Australia,Turquoise Bay,Snorkeling,Glenda Simmons,F,60,Lacerations to right arm,N,Afternoon,"Blacktip reef shark, 1m","AAP, 10/28/2013",2013.10.28-Simmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.28-Simmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.28-Simmons,2013.10.28,2013.10.28,5610,, +2013.10.26.b,26-Oct-13,2013,Unprovoked,REUNION,dtang-Sal,Ravine Mula,Body boarding,Gicquel Tanguy,M,24,Right leg severed,N,16h30,Thought to involve a bull shark,"Global Post, 10/26/2013",2013.10.26.b-Tanguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.b-Tanguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.b-Tanguy,2013.10.26.b,2013.10.26.b,5609,, +2013.10.26.a,26-Oct-13,2013,Unprovoked,AUSTRALIA,Western Australia,"Little Island, near Hillarys",Diving for crayfish,Todd Robinson,M,,"No injury, swim fin shredded",N,10h55,Reported to involve a 4 m white shark,"Sky News, 10/26/2013",2013.10.26.a-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.a-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.a-Robinson.pdf,2013.10.26.a,2013.10.26.a,5608,, +2013.10.24,24-Oct-13,2013,Unprovoked,AUSTRALIA,New South Wales,South Narrabeen Beach,Surfing,Anthony Joyce,M,41,Injuries to right foot,N,18h15,Wobbegong shark,"A. Brenneka, Shark Attack Survivors",2013.10.24-Joyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.24-Joyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.24-Joyce.pdf,2013.10.24,2013.10.24,5607,, +2013.10.23,23-Oct-13,2013,Unprovoked,USA,Hawaii,"Waiehu, Maui",Diving ,Shane Mills,M,45,"3"" laceration to left hip",N,15h55,"Whitetip reef shark, 4' to 6'","Maui News, 10/23/2013",2013.10.23-ShaneMills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.23-ShaneMills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.23-ShaneMills.pdf,2013.10.23,2013.10.23,5606,, +2013.10.20,20-Oct-13,2013,Unprovoked,USA,Hawaii,"Pila'a Beach, Kaua'i",Surfing,Jeff Horton,M,25,"No injury, shark bit surfboard",N,11h00,Tiger shark,"B. Buley, The Garden Island, 10/22/2013",2013.10.20-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.20-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.20-Horton.pdf,2013.10.20,2013.10.20,5605,, +2013.10.19,19-Oct-13,2013,Unprovoked,USA,Florida,Miami Beach,Wading,Logan Hamby,M,6,Bitten on left calf & foot,N,Late afternoon,Nurse shark?,K & D Hamby ,2013.10.19-Hamby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.19-Hamby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.19-Hamby.pdf,2013.10.19,2013.10.19,5604,, +2013.10.11,11-Oct-13,2013,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Albatros Point, near Jeffrey's Bay",Swimming / snorkeling,Burgert Van Der Westhuizen,M,74,FATAL,Y,11h30,White shark,"JBayNews.com, 10/11/2013",2013.10.11-Vd-Westhuizen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.11-Vd-Westhuizen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.11-Vd-Westhuizen.pdf,2013.10.11,2013.10.11,5603,, +2013.10.08,08-Oct-13,2013,Unprovoked,AUSTRALIA,Western Australia,"Off Poison Creek, Cape Arid",Diving for Abalone,Greg Pickering,M,55,"Injuries to torso, head and face",N,10h30,White shark,"Fox News, 10/9/2013",2013.10.08-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.08-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.08-Pickering.pdf,2013.10.08,2013.10.08,5602,, +2013.10.05,06-Oct-13,2013,Unprovoked,USA,California,"Bunkers, Humboldt Bay, Eureka, Humboldt County",Surfing,Jay Scrivner,M,45,Laceration to thigh,N,08h45,"White shark, 8' to 10'","R. Collier, GSAF",2013.10.06-Scrivner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.06-Scrivner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.06-Scrivner.pdf,2013.10.05,2013.10.05,5601,, +2013.10.05,10-Oct-13,2013,Unprovoked,USA,Florida,"Destin, Okaloosa County",Wading,Zachary Tyke Standridge ,M,12,Lacerations to right forearm,N,15h30,Small bull shark,"Monroe County Advocate, 10/9/2013",2013.10.05-Standridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.05-Standridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.05-Standridge.pdf,2013.10.05,2013.10.05,5600,, +2013.09.29.b,29-Sep-13,2013,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,male,M,50,Lacerations to hand,N,10h00,,"Florida Today, 9/30/2013",2013.09.29.b-BrevardSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.b-BrevardSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.b-BrevardSurfer.pdf,2013.09.29.b,2013.09.29.b,5599,, +2013.09.29.a,29-Sep-13,2013,Provoked,ISRAEL,Southern District,Ashdod,Diving,Erez Lev,M,27,Hand bitten PROVOKED INCIDENT,N,11h30,,"Times of Israel, 9/30/2013",2013.09.29.a-Lev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.a-Lev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.a-Lev.pdf,2013.09.29.a,2013.09.29.a,5598,, +2013.09.25, 25-Sep-2013,2013,Unprovoked,USA,Florida,"Panama City, Bay County",Standing,Ethan Hand,M,7,Laceration and puncture wounds to ankle,N,10h30,,"C. Dobridnia, WMBB.com",2013.09.25-EthanHand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.25-EthanHand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.25-EthanHand.pdf,2013.09.25,2013.09.25,5597,, +2013.09.21.b, 21-Sep-2013,2013,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Swimming,female,M,45,Lacerations to right foot,N,13h00,,"M. I. Johnson, Daytona Beach News Journal",2013.09.21.b-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.b-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.b-OrmondBeach.pdf,2013.09.21.b,2013.09.21.b,5596,, +2013.09.21.a, 21-Sep-2013,2013,Unprovoked,USA,Florida,"Carlin Park, Jupiter, Palm Beach County",Surfing,Brandon Dugan,M,,Lacerations to left foream,N,Morning,,News Channel 5,2013.09.21.a-Dugan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.a-Dugan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.a-Dugan.pdf,2013.09.21.a,2013.09.21.a,5595,, +2013.09.14, 14-Sep-2013,2013,Unprovoked,USA,Florida,"Casino Beach, Pensacola, Escambia County",Swimming,Trevor Kalck,M,21,Lacerations to right foot,N,15h30,Bull shark,"E. Ritter, GSAF",2013.09.14-Kalck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.14-Kalck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.14-Kalck.pdf,2013.09.14,2013.09.14,5594,, +2013.09.12, 12-Sep-2013,2013,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Storm Portman,F,13,Heel bitten,N,13h00,3' shark,"Orlando Sentinel, 9/7/2013",2013.09.12-Portman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.12-Portman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.12-Portman.pdf,2013.09.12,2013.09.12,5593,, +2013.09.08,08-Sep-13,2013,Unprovoked,USA,South Carolina,"St. Helena Island, Beaufort County",,female,F,,No details,UNKNOWN,,,"WIS-TV, 9/9/2013",2013.09.08-St-Helena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.08-St-Helena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.08-St-Helena.pdf,2013.09.08,2013.09.08,5592,, +2013.09.07.b, 07-Sep-2013,2013,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,John Graham,M,43,Foot bitten when he accidentally jumped onto the shark PROVOKED INCIDENT,N,16h00,3' shark,"Orlando Sentinel, 9/7/2013",2013.09.07.b-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.b-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.b-Graham.pdf,2013.09.07.b,2013.09.07.b,5591,, +2013.09.07.a, 07-Sep-2013,2013,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Marco Edmundo Cardiel,M,25,"Minor injury, shin bitten",N,16h00,3' shark,"Orlando Sentinel, 9/7/2013",2013.09.07.a-Cardiel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.a-Cardiel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.a-Cardiel.pdf,2013.09.07.a,2013.09.07.a,5590,, +2013.09.02, 02-Sep-2013,2013,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Swimming,Raushod Floyd,M,17,Shoulder bitten,N,13h00,,"WFTV, 9/2/2013",2013.09.02-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.02-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.02-Floyd.pdf,2013.09.02,2013.09.02,5589,, +2013.09.01.c, 01-Sep-2013,2013,Provoked,USA,Florida,Key West Aquarium,,female,M,3,Arm bitten by captive shark PROVOKED INCIDENT,N,,Nurse shark,"KeyNews, 8/4/2013",2013.09.01-KeyWestAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01-KeyWestAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01-KeyWestAquarium.pdf,2013.09.01.c,2013.09.01.c,5588,, +2013.09.01.b, 01-Sep-2013,2013,Unprovoked,BAHAMAS,,,,boy,M,,Leg injured,N,,,"WFTV, 9/2/2013",2013.09.01.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.b-Bahamas.pdf,2013.09.01.b,2013.09.01.b,5587,, +2013.09.01.a, 01-Sep-2013,2013,Unprovoked,USA,Florida,"St Augustine Beach, St Johns County",Casting a net,Connor Baker,M,9,Lacerations to left calf,N,12h00,4' shark,"WTEV 47, 9/1/2013",2013.09.01.a-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.a-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.a-Baker.pdf,2013.09.01.a,2013.09.01.a,5586,, +2013.08.31.b,31-Aug-13,2013,Unprovoked,BAHAMAS,,Freetown Beach,Spearfishing,Bryan Collins,M,,Lower left leg bitten,N,,Blacktip shark,,2013.08.31.b-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.b-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.b-Collins.pdf,2013.08.31.b,2013.08.31.b,5585,, +2013.08.31.a,31-Aug-13,2013,Unprovoked,USA,California,"Butterfly Beach, Montecito, Santa Barbara County",Swimming,Nick Kennedy,M,,Foot bitten,N,23h00,Salmon shark,R. Collier,2013.08.31.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.a-Kennedy.pdf,2013.08.31.a,2013.08.31.a,5584,, +2013.08.29,29-Aug-13,2013,Invalid,USA,California,Catalina Channel,Marathon swimming,Charlotte Brynn,F,47,"Puncture wound to torso. Reported as a bite by a leopard shark, the tooth fragment appears to be that of a bony fish",N,,No shark involvement,"Stowe Reporter, 9/5/2013",2013.08.29-Brynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.29-Brynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.29-Brynn.pdf,2013.08.29,2013.08.29,5583,, +2013.08.26,26-Aug-13,2013,Provoked,FRANCE,Bay of Biscay,,Longline fishing for sharks,Ramon Arufe,M,50,Laceration to right arm from hooked shark PROVOKED INCIDENT,N,20h30,"Mako shark, 5'","Diariovasco.com, 8/28/2013",2013.08.26-Arufe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.26-Arufe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.26-Arufe.pdf,2013.08.26,2013.08.26,5582,, +2013.08.25.b, 25-Aug-2013,2013,Unprovoked,USA,Florida,"Winterhaven Park, Ponce Inlet, Volusia County",Boogie boarding,Riley Breihan,F,11,Minor injury to left lower leg & heel,N,17h00,,"Daytona Beach News-Journal, 8/28/2013",2013.08.25-OttoLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-OttoLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-OttoLee.pdf,2013.08.25.b,2013.08.25.b,5581,, +2013.08.25, 25-Aug-2013,2013,Unprovoked,AUSTRALIA,New South Wales,Smiths,Wrangling a shark,Otto Lee,M,,Lacerations to left forearm,N,15h00,,"Great Lakes Advocate, 8/28/2013",2013.08.25-Breihan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-Breihan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-Breihan.pdf,2013.08.25,2013.08.25,5580,, +2013.08.18, 18-Aug-2013,2013,Unprovoked,USA,Hawaii,Pohoiki ,Surfing,Jimmy Napeahi,M,16,Lacerations to buttocks & thigh,N,13h00,,"T. Mori, KHON2, 8/18/2013",2013.08.18-Napeahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.18-Napeahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.18-Napeahi.pdf,2013.08.18,2013.08.18,5579,, +2013.08.17,17-Aug-13,2013,Unprovoked,USA,California,"Pillar Point, Half-Moon Bay, San Mateo County",Surfing,Wendi Zuccaro,F,,"No injury, shark bumped surfboard",N,12h40,White shark,R. Collier,2013.08.17-Zaccaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.17-Zaccaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.17-Zaccaro.pdf,2013.08.17,2013.08.17,5578,, +2013.08.14, 14-Aug-2013,2013,Unprovoked,USA,Hawaii,"Makenat, Maui",Snorkeling,Jana Lutteropp,F,20,FATAL,Y,16h30,Tiger shark?,"KHON2, 8/15/2013",2013.08.14-Lutteropp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.14-Lutteropp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.14-Lutteropp.pdf,2013.08.14,2013.08.14,5577,, +2013.08.13, 13-Aug-2013,2013,Unprovoked,USA,Hawaii,"Ka'a Point, Maui",Kiteboarding,Morgan Flannery,F,19,No injury & not on board. Board adrift when bitten by shark,N,13h55,,"Maui News, 8/14/2013",2013.08.13-Flannery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.13-Flannery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.13-Flannery.pdf,2013.08.13,2013.08.13,5576,, +2013.08.11,11-Aug-13,2013,Unprovoked,USA,South Carolina,Folly Beach,Surfing,Tyson Royston,M,10,"No injury, shark became entangled in his surfboard leash",N,17h30,"Bull shark, 8'","Post and Courier, 8/11/2013",2013.08.11-Royston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.11-Royston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.11-Royston.pdf,2013.08.11,2013.08.11,5575,, +2013.08.08.R,Reported 08-Aug-2013,2013,Unprovoked,SOUTH AFRICA,,,Attempting to free the shark,Tyler,M,,"Unknown, but survived",N,,Blacktip shark,"WebProNews/Science, 8/8/2013",2013.08.08-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.08-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.08-Tyler.pdf,2013.08.08.R,2013.08.08.R,5574,, +2013.08.05, 05-Aug-2013,2013,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Fishing,Christian Mercurio,M,17,Minor injury to foot & shin,N,15h00,"Bull shark, 6' to 8'","NBC2 News, 8/5/2013",2013.08.05-Mercurio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.05-Mercurio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.05-Mercurio.pdf,2013.08.05,2013.08.05,5573,, +2013.07.31, 31-Jul-2013,2013,Unprovoked,USA,Hawaii,"Ulua Beach, Maui",Snorkeling,Evonne Cashman,F,56,"Lacerations to hand, face and torso",N,08h45,,"Maui Now, 7/31/2013",2013.07.31-Cashmani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.31-Cashmani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.31-Cashmani.pdf,2013.07.31,2013.07.31,5572,, +2013.07.30, 30-Jul-2013,2013,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Ty Bretz,M,32,Foot bitten,N,,,"A. Brenneka, Shark Attack Survivors; C. Creswell, GSAF",2013.07.30-Bretz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.30-Bretz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.30-Bretz.pdf,2013.07.30,2013.07.30,5571,, +2013.07.29.c,28-Jul-13,2013,Unprovoked,BAHAMAS,Abaco Islands,Scotland Cay,Spearfishing,Erik Norrie,M,40,Leg bitten,N,16h05,6' shark,"CBS Miami, 8/1/2013",2013.07.29.c-Norrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.c-Norrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.c-Norrie.pdf,2013.07.29.c,2013.07.29.c,5570,, +2013.07.29.b, 29-Jul-2013,2013,Unprovoked,MEXICO,Quintana Roo,,Wading,Bonnie Davis,F,,Hip bitten,N,11h00,,"A. Brenneka, Shark Attack Survivors",2013.07.29.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.b-Davis.pdf,2013.07.29.b,2013.07.29.b,5569,, +2013.07.29.a, 29-Jul-2013,2013,Unprovoked,USA,Hawaii,"White Plains Beach, Oahu",Surfing,Kiowa Gatewood,M,18,Lower leg bitten,N,14h10,"Tiger shark, 8' to 10' ","Hawaii News Now, 7/29/2013",2013.07.29.a-Gatewood,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.a-Gatewood,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.a-Gatewood,2013.07.29.a,2013.07.29.a,5568,, +2013.07.28.b,28-Jul-13,2013,Unprovoked,BAHAMAS,Exuma Islands,Compass Cay,Cleaning fish,male,M,64,Bitten on left hand,N,16h45,Nurse shark,"Tribune 242, 7/28/2013",2013.07.28.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.b-Bahamas.pdf,2013.07.28.b,2013.07.28.b,5567,, +2013.07.28.a,28-Jul-13,2013,Unprovoked,BAHAMAS,Abaco Islands,Grand Cay,Diving,male,M,50,Bitten on rear lower extremities,N,11h15,,"News Channel 5, 7/28/2013",2013.07.28.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.a-Bahamas.pdf,2013.07.28.a,2013.07.28.a,5566,, +2013.07.22, 22-Jul-2013,2013,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Bruna Silva Gobbi ,F,18,FATAL,Y,13h20,,"G! Pernambuco, 7/22/2013",2013.07.22-Gobbi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.22-Gobbi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.22-Gobbi.pdf,2013.07.22,2013.07.22,5565,, +2013.07.19,19-Jul-13,2013,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Walking in surf,Laura Havrylkoff,F,50,Lacerations and abrasions to foot and ankle,N,14h30,,"A. Brenneka, Shark Attack Survivors; L. Havrylkoff",2013.07.19-Havrylkoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.19-Havrylkoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.19-Havrylkoff.pdf,2013.07.19,2013.07.19,5564,, +2013.07.17.R,Reported 17-Jul-2013,2013,Unprovoked,USA,Florida,"Butler Beach, St Augustine, St. Johns County",Swimming ,male,M,teen,4 cuts to posterior calf,N,,,"Florida Today, 7/17/2013",2013.07.17-StAugustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.17-StAugustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.17-StAugustine.pdf,2013.07.17.R,2013.07.17.R,5563,, +2013.07.15,15-Jul-13,2013,Unprovoked,REUNION,Saint-Paul,Le cimetire marin,Swimming & snorkeling,Sarah Roperh,F,15,FATAL,Y,14h15,,"Clicanoo, 7/15/2013",2013.07.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.15-Reunion.pdf,2013.07.15,2013.07.15,5562,, +2013.07.14,14-Jul-13,2013,Unprovoked,DIEGO GARCIA,,,Swimming,Fernando Licay,M,33,FATAL,Y,,,"Sun Star, 7/18/2013",2013.07.14-Licay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.14-Licay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.14-Licay.pdf,2013.07.14,2013.07.14,5561,, +2013.07.11,11-Jul-13,2013,Unprovoked,USA,North Carolina,Holden Beach. Brunswick County,Wading,Barbara Corey,F,63,Right foot bitten,N,15h20,,"C. Creswell, GSAF, WWAY-TV, 7/12/2013",2013.07.11-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.11-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.11-Corey.pdf,2013.07.11,2013.07.11,5560,, +2013.07.09,07-Jul-13,2013,Invalid,SPAIN,Catalonia,"Sant Marti dEmpuries Beach, LEscala",Swimming,Thierry Frennet,M,48,"Scrape to right forearm. Frennet says inflicted by a blue shark, but authorities question shark involvement",N,,Shark involvement not confirmed,"DH.be, 7/11/2013",2013.07.09-Frennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.09-Frennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.09-Frennet.pdf,2013.07.09,2013.07.09,5559,, +2013.07.02,02-Jul-13,2013,Unprovoked,AUSTRALIA,Victoria,"Flinders, Mornington Penisula",Body surfing,Jimmy McDonald-Jones,M,29,"No injury, holes in wetsuit ",N,,,"Herald Sun, 7/3/2013",2013.07.02-McDonald-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.02-McDonald-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.02-McDonald-Jones.pdf,2013.07.02,2013.07.02,5558,, +2013.06.30,30-Jun-13,2013,Unprovoked,TAIWAN,Taitung ,,Fishing,male,M,,Right thigh bitten,N,,,"China Post, 7/1/2013",2013.06.30-TaiwaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.30-TaiwaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.30-TaiwaneseFisherman.pdf,2013.06.30,2013.06.30,5557,, +2013.06.27,27-Jun-13,2013,Invalid,JAMAICA,Kingston Parish,Port Royal,,Kevin,M,20,Probable drowning with post-mortem bites,Y,,,Shark Attack Survivors,2013.06.27-Kevin-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.27-Kevin-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.27-Kevin-Jamaica.pdf,2013.06.27,2013.06.27,5556,, +2013.06.25.c,25-Jun-13,2013,Unprovoked,USA,California,"Pacific State , San Mateo County",Kayaking / Fishing,Micah Flanaburg,M,,"No injury, kayak scratched",N,15h30,White shark,R. Collier,2013.06.25.c-Flanaberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.c-Flanaberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.c-Flanaberg.pdf,2013.06.25.c,2013.06.25.c,5555,, +2013.06.25.b,25-Jun-13,2013,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming,Colleen Malone,M,,Lacerations to left foot,N,,"Possibly a Bull shark, 3'","Action News, 7/25/2013",2013.06.25.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.b-Malone.pdf,2013.06.25.b,2013.06.25.b,5554,, +2013.06.25.a,25-Jun-13,2013,Unprovoked,USA,South Carolina,"Kiawah Island, Charleston County",Swimming,Joshua Watson,M,14,"Bitten on lower right leg, reported as a minor injury",N,12h45,4' to 5' shark,"C. Creswell, GSAF",2013.06.25.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.a-Watson.pdf,2013.06.25.a,2013.06.25.a,5553,, +2013.06.18,18-Jun-13,2013,Unprovoked,USA,Hawaii,Kona Coast State Park,Swimming,James Kerrigan,M,28,Right thigh & calf bitten,N,12h50,"Tiger shark, 14'","Hawaii News Now, 6/18/2013",2013.06.18-Kerrigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.18-Kerrigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.18-Kerrigan.pdf,2013.06.18,2013.06.18,5552,, +2013.06.17,17-Jun-13,2013,Unprovoked,USA,Texas,"Surfside Beach, Brazoria County",Swimming,Garrett Sebesta ,M,15,Left leg & hand bitten,N,14h45,,"ABC News, 6/18/2013",2013.06.17-Sebesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.17-Sebesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.17-Sebesta.pdf,2013.06.17,2013.06.17,5551,, +2013.06.16,16-Jun-13,2013,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Queensberry Bay,Surfing,Kevin Bracey,M,,Lacerations to knee,N,Morning,,"Dispatch Online, 6/19/2013",2013.06.16-Bracey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.16-Bracey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.16-Bracey.pdf,2013.06.16,2013.06.16,5550,, +2013.06.15,15-Jun-13,2013,Unprovoked,USA,Florida,"Atlantic Beach, Duval County",Surfing,female,F,,Lacerations to left ankle,N,,,"ActionNewsJax.com, 6/15/2013",2013.06.15-LaFlam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.15-LaFlam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.15-LaFlam.pdf,2013.06.15,2013.06.15,5549,, +2013.06.14.R,Reported 14-Jun-2013,2013,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Boogie Boarding,Allison Foreman,F,10,Puncture marks to hand,N,Afternoon,4' to 5' shark,"WMBF News, 6/14/2013",2013.06.14.R-Foreman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.14.R-Foreman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.14.R-Foreman.pdf,2013.06.14.R,2013.06.14.R,5548,, +2013.06.06.b,06-Jun-13,2013,Provoked,USA,Florida,"Off Snipe Point, Florida Keys, Monroe County",Fishing for sharks,Walter Kefauver,M,58,Left hand bitten as he attempted to remove hook from shark PROVOKED INCIDENT,N,,"Lemon shark, 4'","CBS Miami, 6/6/2013",2013.06.06.b-Kefauver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.b-Kefauver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.b-Kefauver.pdf,2013.06.06.b,2013.06.06.b,5547,, +2013.06.06.a,06-Jun-13,2013,Unprovoked,AUSTRALIA,New South Wales,Target Beach,Surfing,Steve Adamson,M,,"No injury, board damaged",N,16h00,6' shark,"A. Brenneka, Shark Attack Survivors",2013.06.06.a-Adamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.a-Adamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.a-Adamson.pdf,2013.06.06.a,2013.06.06.a,5546,, +2013.05.27.b,27-May-13,2013,Unprovoked,USA,Hawaii,"Halewia, Oahu",Diving,Tali Ena,M,32,Lacerations to right hand,N,,Galapagos shark,"A. Brenneka, Shark Attack Survivors",2013.05.27.b-Ena.pdf,pdf-directory/2013.05.27.b-Ena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27.b-Ena.pdf,2013.05.27.b,2013.05.27.b,5545,, +2013.05.27.a,27-May-13,2013,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Swimming,Kyle Kirkpatrick,M,11,Right foot bitten,N,Afternoon,,"Fox News, 5/28/2013",2013.05.27.a-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27.a-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27-Kirkpatrick.pdf,2013.05.27.a,2013.05.27.a,5544,, +2013.05.23.b,23-May-13,2013,Unprovoked,BRAZIL,Pernambuco,Coral Cove Beach,,Jos Rogrio da Silva,M,41,FATAL,Y,,,"JC Online, 6/6/2013",2013.05.25.b-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.25.b-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.25.b-daSilva.pdf,2013.05.23.b,2013.05.23.b,5543,, +2013.05.23.a,23-May-13,2013,Provoked,PALESTINIAN TERRITORIES,,Gaza,Fishing,Hamed Salah,M,30,Two fingers lost PROVOKED INCIDENT,N,Evening,,"Ma'an News Agency, 5/25/2013",2013.05.23-Salah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.23-Salah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.23-Salah.pdf,2013.05.23.a,2013.05.23.a,5542,, +2013.05.14,14-May-14,2013,Unprovoked,ECUADOR,Santa Cruz Island,"Playa Brava, Turtle Bay",Surfing,Intriago Diego,M,29,Superficial injury to left calf,N,12h00,Galapagos shark,"El Universo, 5/16/2013",2013.05.14-Diego.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.14-Diego.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.14-Diego.pdf,2013.05.14,2013.05.14,5541,, +2013.05.08.b,08-May-13,2013,Invalid,USA,California,"Tourmaline Surf Park, San Diego County",Surfing,Brandon Beaver,M,42,Shark bites were post-mortem,Y,,,"Sacramento Bee, 6/4/2013",2013.05.08.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.b-Beaver.pdf,2013.05.08.b,2013.05.08.b,5540,, +2013.05.08.a,08-May-13,2013,Unprovoked,REUNION,Saint-Gilles,Brisant Beach,Body boarding,Stphane Berhamel,M,36,FATAL,Y,08h20,Bull shark,A. Morel,2013.05.08.a-Berhamel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.a-Berhamel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.a-Berhamel.pdf,2013.05.08.a,2013.05.08.a,5539,, +2013.05.04.a,04-May-13,2013,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Michael Adler,M,16,Lacerations to left foot and ankle,N,11h15,a small shark,"Local News 10, 5/5/2013",2013.05.04-Adler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.04-Adler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.04-Adler.pdf,2013.05.04.a,2013.05.04.a,5538,, +2013.04.28,28-Apr-13,2013,Provoked,AUSTRALIA,New South Wales,Emerald Beach,Fishing,Ted Collins,M,,Foot bitten by landed shark PROVOKED INCIDENT,N,,"Wobbegong, 2m","Coffs Coast Advocate, 5/4/2013",2013.04.28-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.28-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.28-Collins.pdf,2013.04.28,2013.04.28,5537,, +2013.04.24,24-Apr-13,2013,Unprovoked,MEXICO,Quintana Roo,"Seagull Beach, Cancun",Swimming,Isabella Carchia,F,34,Avulsion injury to lower right leg,N,13h40,Tiger shark,"I. Carchia; A. Brenneka, Shark Attack Survivors; Novedades 4/24/2013",2013.04.24-Carchia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.24-Carchia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.24-Carchia.pdf,2013.04.24,2013.04.24,5536,, +2013.04.21,21-Apr-13,2013,Unprovoked,AUSTRALIA,New South Wales,Crowdy Head,Fishing,Alan Saunders,M,51,Puncture wounds and lacerations to both legs,N,14h00,"Grey nurse shark, 3m","7NewsSydney, 4/22/2013",2013.04.21-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.21-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.21-Saunders.pdf,2013.04.21,2013.04.21,5535,, +2013.04.17,17-Apr-13,2013,Unprovoked,USA,Florida,"Near Boynton Beach, Palm Beach County",Playing in the surf,Colten Cicarelli,M,9,Lacerations to right foot,N,10h30,3' shark,"News Channel 5, 4/18/2013",2013.04.17-Cicarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.17-Cicarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.17-Cicarelli.pdf,2013.04.17,2013.04.17,5534,, +2013.04.14,14-Apr-13,2013,Unprovoked,SOUTH AFRICA,Western Cape Province,False Bay,Free diving,male,M,,"""Light scratch on hand/wrist area""",N,,Blue shark,"Cape Argus, 4/16/2013",2013.04.14-FalseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.14-FalseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.14-FalseBay.pdf,2013.04.14,2013.04.14,5533,, +2013.04.13.b,13-Apr-13,2013,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joshua White,M,21,Minor lacerations to right hand,N,13h30,Bull shark,"News13, 4/14/2013",2013.04.13.b-JoshuaWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.b-JoshuaWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.b-JoshuaWhite.pdf,2013.04.13.b,2013.04.13.b,5532,, +2013.04.13.a,13-Apr-13,2013,Unprovoked,GUAM,,,,Nae Deok Kim,M,40,FATAL,Y,,,"Pacific News Center, 4/15/2013",2013.04.13.a-NaeDeokKim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.a-NaeDeokKim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.a-NaeDeokKim.pdf,2013.04.13.a,2013.04.13.a,5531,, +2013.04.10,10-Apr-13,2013,Unprovoked,FRENCH POLYNESIA,Tuamotus,"North Pass, Fakarava",Kite boarding,Nick Eitel,M,53,"Underside of board, fins and, harness were damaged, and left hip, thigh and buttock sustained puncture wounds",N,12h00,Possibly a blacktip reef shark,N. Eitel,2013.04.10-Eitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.10-Eitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.10-Eitel.pdf,2013.04.10,2013.04.10,5530,, +2013.04.04,04-Apr-13,2013,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Swimming,male,M,50,Lacerations to hand,N,,,"A. Brenneka, Shark Attack Survivors; TC Palm, 4/7/2013",2013.04.04-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.04-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.04-JensenBeach.pdf,2013.04.04,2013.04.04,5529,, +2013.04.02.R,Reported 02-Apr-2013,2013,Invalid,AUSTRALIA,Western Australia,Perth,,Martin Tann,M,24,Disappeared. No evidence that he was taken by a shark,Y,,shark involvement not confirmed,"WA Today, 4/4/2013",2013.04.02.R-Tann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.R-Tann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.R-Tann.pdf,2013.04.02.R,2013.04.02.R,5528,, +2013.04.02.a,02-Apr-13,2013,Unprovoked,USA,Hawaii,Kaanapali Shores,Surfing,male,M,58,Right thigh bitten,N,08h30,4' shark,"Maui Now, 4/2/2013",2013.04.02.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.a-Hawaii.pdf,2013.04.02.a,2013.04.02.a,5527,, +2013.03.31,31-Mar-13,2013,Invalid,AUSTRALIA,New South Wales,Terrigal Beach,Surfing,Richard Tognetti,M,47,Never happened; it was a hoax,N,,No shark involvement,"Limelight Magazine, 4/1/2013",2013.03.31-Tognetti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.31-Tognetti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.31-Tognetti.pdf,2013.03.31,2013.03.31,5526,, +2013.03.29,29-Mar-13,2013,Unprovoked,SEYCHELLES,,Ile Platte,Free diving,Richard Parkinson,M,34,Lacerations to left foot,N,,,"E. Ritter, GSAF",2013.03.29-Parkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.29-Parkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.29-Parkinson.pdf,2013.03.29,2013.03.29,5525,, +2013.03.21.R,Reported 21-Mar-2013,2013,Unprovoked,BELIZE,,,Snorkeling,Monika Wanis,F,,Toe injured,N,,Nurse shark,"H. Fairchild, The Lantern, 3/21/2013",2013.03.21.R-Wanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.R-Wanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.R-Wanis.pdf,2013.03.21.R,2013.03.21.R,5524,, +2013.03.21,21-Mar-13,2013,Unprovoked,BAHAMAS,Eleuthera,Savannah Sound,Fly fishing,Kerry Anderson,M,50,Left foot bitten,N,,,"13wham.com, 3/22/2013",2013.03.21.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.a-Bahamas.pdf,2013.03.21,2013.03.21,5523,, +2013.03.16.b,16-Mar-13,2013,Provoked,SOUTH AFRICA,Western Cape Province,De Mond,Fishing - 'tag & release',Kobus Koeberg,M,30,Lacerations to left calf and heel from hooked shark PROVOKED INCIDENT,N,09h00,"Raggedtooth shark, 1.5 m",National Sea Rescue Institute,2013.03.16.b-Koeberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.b-Koeberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.b-Koeberg.pdf,2013.03.16.b,2013.03.16.b,5522,, +2013.03.16.a,16-Mar-13,2013,Unprovoked,SOUTH AFRICA,Western Cape Province,Hawston Beach,Surfing,Troy Henri,M,,"No injury, surfboard bitten",N,,,"Cape Times, 3/19/2013",2013.03.16.a-Henri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.a-Henri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.a-Henri.pdf,2013.03.16.a,2013.03.16.a,5521,, +2013.03.12,12-Mar-13,2013,Unprovoked,JAMAICA,St. Catherine,Pillikin Red Light area ,Spearfishing,George Facey,M,68,FATAL,Y,09h00,"Tiger shark, 4.8 m","R. Turner & A. Williams, Jamaica Star, 3/13/2013 ",2013.03.12-Facey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.12-Facey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.12-Facey.pdf,2013.03.12,2013.03.12,5520,, +2013.03.10.b,10-Mar-13,2013,Unprovoked,AUSTRALIA,Western Australia,African Reef off Geraldton,Spearfishing,Adam Thomason,M,28,Laceration to left hand,N,09h00,"Bronze whaler shark, 2.5m","The West Australian, 3/13/2013",2013.03.10.b-Thomason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.b-Thomason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.b-Thomason.pdf,2013.03.10.b,2013.03.10.b,5519,, +2013.03.10.a,10-Mar-13,2013,Unprovoked,PHILIPPINES,Palawan,Off Likas Island,Swimming to shore with floatioon devices after boat engine conked out,Alvin Lovido & John Paul Mangaoang,M,28 & 26,Minor leg injuries,N,,"""small sharks""","E. Badilla, InterAksyon.com, 3/15/2013",2013.03.10.a-PhilippineMarines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.a-PhilippineMarines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.a-PhilippineMarines.pdf,2013.03.10.a,2013.03.10.a,5518,, +2013.03.03,03-Mar-13,2013,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. John's,Swimming,Fundile Nogumla,M,39,Injuries to arms & hands,N,,,"Daily Dispatch, 3/4/2013",2013.03.03-Nogumla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.03-Nogumla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.03-Nogumla.pdf,2013.03.03,2013.03.03,5517,, +2013.02.27,27-Feb-13,2013,Unprovoked,NEW ZEALAND,North Island,Muriwai,Swimming,Adam Strange,M,46,FATAL,Y,13h24,"White shark, 4m","New Zealand Herald, 2/27/2013",2013.02.27-Strange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.27-Strange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.27-Strange.pdf,2013.02.27,2013.02.27,5516,, +2013.02.21.b,21-Feb-13,2013,Unprovoked,USA,Hawaii,"Ka'anapali, Honokowai, Maui",Surfing,,,,Lacerations to right leg,N,18h00,reef shark?,Hawaiisharks.com,2013.02.21.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.b-Hawaii.pdf,2013.02.21.b,2013.02.21.b,5515,, +2013.02.21.a,21-Feb-13,2013,Unprovoked,USA,Hawaii,"Paia Bay, Maui",Surfing,Jacob Lanskey,M,,"No injury, shark bit rail of foam board",N,18h00,reef shark?,Hawaiisharks.com,2013.02.21.a-Lansky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.a-Lansky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.a-Lansky.pdf,2013.02.21.a,2013.02.21.a,5514,, +2013.02.10,10-Feb-13,2013,Unprovoked,USA,Florida,"""Stuart Rocks"", Martin County",Surfing,Cole Taschman,M,16,Lacerations to right hand,N,14h00,"Blacktip shark, 4' to 5'","Palm Beach Post, 2/12/2013",2013.02.10-Taschman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.10-Taschman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.10-Taschman.pdf,2013.02.10,2013.02.10,5513,, +2013.02.09,09-Feb-13,2013,Unprovoked,FRENCH POLYNESIA,Society Islands,"Tapu, a dive site on the outer reefs of Bora Bora",Scuba diving,Zohar Kritzer ,M,48,Lacerations to right arm & thigh,N,09h00 - 09h30,Lemon shark,"A. Brenneka, Shark Attack Survivors; Les Nouvelles Caledoniennes, 2/21/2013",2013.02.09-Kritzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.09-Kritzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.09-Kritzer.pdf,2013.02.09,2013.02.09,5512,, +2013.02.01,01-Feb-13,2013,Unprovoked,JAMAICA,Kingston Parish,Pedro Cays,,male,M,18,Knee bitten,N,,,"The Gleaner, 2/1/2013",2013.02.01-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.01-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.01-Jamaica.pdf,2013.02.01,2013.02.01,5511,, +2013.01.26,26-Jan-13,2013,Boat,AUSTRALIA,Victoria,Cape Nelson,Fishing,"Occupants: Andrew & Ben Donegan & Joel Ryan, ",M,,"No injury to occupants, shark bit propeller",N,,"White shark, 5m","7NewsMelbourne, 1/28/2013",2013.01.26-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.26-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.26-boat.pdf,2013.01.26,2013.01.26,5510,, +2013.01.25,25-Jan-13,2013,Unprovoked,AUSTRALIA,Queensland,Noosa,Surfing,Matthew Cassaigne,M,,Lacerations to neck,N,,,sharkattackfile.info,2013.01.25-Cassaigne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.25-Cassaigne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.25-Cassaigne.pdf,2013.01.25,2013.01.25,5509,, +2013.01.21.R,Reported 21-Jan-2013,2013,Invalid,AUSTRALIA,Queensland,Bullcock Beach,Dragging stranded shark into deeper water,Paul Marshallsea,M,62,"No injury, a 3 m blue shark merely snapped at the man.",N,,,"The Guardian, 1/21/2013",2013.01.21.R-Marshallsea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.21.R-Marshallsea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.21.R-Marshallsea.pdf,2013.01.21.R,2013.01.21.R,5508,, +2013.01.16,16-Jan-13,2013,Unprovoked,USA,Hawaii,Kiholo Bay,Surfing,Paul Santos,M,43,Left forearm bitten ,N,16h30,"Tiger shark, 15'","Hawaii 24/7, 1/16/2013",2013.01.16-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.16-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.16-Santos.pdf,2013.01.16,2013.01.16,5507,, +2013.01.13,13-Jan-13,2013,Unprovoked,NEW ZEALAND,Mercury Islands,Great Mercury Island,Spearfishing,Kim Bade,M,,Minor cut on finger,N,,"Bronze whaler shark, 3m","Bay of Plenty Times, 1/18/2013",2013.01.13-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.13-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.13-Bade.pdf,2013.01.13,2013.01.13,5506,, +2013.01.05,05-Jan-13,2013,Unprovoked,AUSTRALIA,Western Australia,Near Legendre Island,Spearfishing / Free diving,Jake Swaffer,M,26,Calf & shin bitten ,N,10h00,,"Perth Now, 1/7/2013",2013.01.05-Swaffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.05-Swaffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.05-Swaffer.pdf,2013.01.05,2013.01.05,5505,, +2012.12.31,31-Dec-12,2012,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Swimming,male,M,,Lower leg or ankle bitten,N,14h00,,"TC Palm, 12/31/2012",2012.12.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.31-JensenBeach.pdf,2012.12.31,2012.12.31,5504,, +2012.12.30,30-Dec-12,2012,Unprovoked,AUSTRALIA,New South Wales,Between Dee Why and Long Reef,Surfing,Danny Sheather,M,23,"No injury, chunk missing from surfboard",N,12h45,2.5 m shark,"The Daily Telegraph, 12/31/2012",2012.12.30-Sheather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.30-Sheather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.30-Sheather.pdf,2012.12.30,2012.12.30,5503,, +2012.12.28,28-Dec-12,2012,Unprovoked,AUSTRALIA,New South Wales,"Kylie's Beach, Diamond Head",Paddle boarding,Luke Allan,M,29,Lacerations to thigh and hand,N,10h45,"Bull shark, 2m ","Port Macqquarie News, 12/28/2012",2012.12.28-Luke-Allan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.28-Luke-Allan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.28-Luke-Allan.pdf,2012.12.28,2012.12.28,5502,, +2012.12.25,25-Dec-12,2012,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. John's,Swimming,Liya Sibili,M,20,FATAL,Y,,Tiger shark,"SAPA, 12/27/2012",2012.12.25-Sibili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.25-Sibili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.25-Sibili.pdf,2012.12.25,2012.12.25,5501,, +2012.12.19,19-Dec-12,2012,Unprovoked,AUSTRALIA,Western Australia,Trigg Beach,Surfing,Richard Wands,M,32,No injury,N,830,"Tiger shark, 6'","The West Ausralian, 12/20/2012",2012.12.19-Wands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.19-Wands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.19-Wands.pdf,2012.12.19,2012.12.19,5500,, +2012.12.05,05-Dec-12,2012,Unprovoked,USA,Hawaii,Kauai,Surfing,"""Lorrin""",M,60,Lacerations to left foot,N,13h20,10' shark,"Hawaii News Now, 11/5/2012",2012.12.05-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.05-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.05-Kauai.pdf,2012.12.05,2012.12.05,5499,, +2012.12.02,02-Dec-12,2012,Unprovoked,AUSTRALIA,New South Wales,Green Island,Spearfishing,male,M,31,Minor puncture wounds to knee,N,16h45,Sandtiger shark,"ABC News, 12/2/2012",2012.12.02-Green-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.02-Green-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.02-Green-Island.pdf,2012.12.02,2012.12.02,5498,, +2012.12.00,Dec-12,2012,Unprovoked,NEW ZEALAND,South Island,"Sunday Cove, Fiordland",Scuba diving,Jenny Oliver,F,25,"No injury, shark grabbed hood",N,,Seven-gill shark,"Stuff.co.nz, 1/18/2013",2012.12.00-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.00-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.00-Oliver.pdf,2012.12.00,2012.12.00,5497,, +2012.11.30,30-Nov-12,2012,Unprovoked,USA,Hawaii,"Kihei, Maui",Snorkeling,Thomas Floyd Kennedy ,M,61,Lacerations to thigh & lower left leg,N,09h40,"Tiger shark, 10'","KHON2, 11/30/2012",2012.11.30-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.30-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.30-Kennedy.pdf,2012.11.30,2012.11.30,5496,, +2012.11.27,27-Nov-12,2012,Invalid,AUSTRALIA,Queensland,Mooloolaba,,,M,20,"Injury to ankle caused by a stingray, not a shark",N,14h50,No shark involvement,"Fraser Coast Chronicle, 11/27/2012",2012.11.27-stingray_accident.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.27-stingray_accident.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.27-stingray_accident.pdf,2012.11.27,2012.11.27,5495,, +2012.11.22,22-Nov-12,2012,Unprovoked,MEXICO,Sinaloa,Nuevo Altata,Swimming,Fernando Cardenas Garcia,M,32,FATAL,Y,11h40,2.5 m shark,"El Universal, 11/22/2012",2012.11.22-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.22-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.22-Garcia.pdf,2012.11.22,2012.11.22,5494,, +2012.11.19,19-Nov-12,2012,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Kai Rittgers,M,14,Minor lacerations to left foot & heel,N,17h30,2' to 3' shark,"Florida Today, 11/19/2012",2012.11.19-Rittgers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.19-Rittgers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.19-Rittgers.pdf,2012.11.19,2012.11.19,5493,, +2012.11.04.b,04-Nov-12,2012,Unprovoked,USA,Hawaii,"Makena Landing, Maui",Diving,Mark Riglos,M,30,Right lower leg and foot bitten,N,08h30,"Tiger shark, 15'","Hawaii News Now, 11/5/2012",2012.11.04.b-Riglos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.b-Riglos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.b-Riglos.pdf,2012.11.04.b,2012.11.04.b,5492,, +2012.11.04.a,04-Nov-12,2012,Unprovoked,USA,Hawaii,"Davidson's Surf Break, Kekaha, Kaua'i",Surfing,male,M,43,"No injury, surfboard bitten",N,08h10,"Tiger shark, 8'",Kaua'i Police Department,2012.11.04.a-Kekaha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.a-Kekaha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.a-Kekaha.pdf,2012.11.04.a,2012.11.04.a,5491,, +2012.10.30,30-Oct-12,2012,Unprovoked,USA,California,"Humboldt Bay, Eureka, Humboldt County",Surfing,Scott Stephens,M,25,Multiple lacerations to torso,N,12h00,White shark,"R. Collier; Redwood Times, 11/5/2012",2012.10.30-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.30-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.30-Stephens.pdf,2012.10.30,2012.10.30,5490,, +2012.10.27,27-Oct-12,2012,Unprovoked,USA,Hawaii,"Makena Landing, Maui",Swimming,Mariko Haugen ,F,51,"Puncture wounds to thigh, defense wounds to hand",N,15h56,"Tiger shark, 10' to 12' ","MauiNow.com, 10/28/2012",2012.10.27-Haugen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.27-Haugen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.27-Haugen.pdf,2012.10.27,2012.10.27,5489,, +2012.10.23,23-Oct-12,2012,Unprovoked,USA,California,"Surf Beach, Lompoc, Santa Barbara County",Surfing,Francisco Javier Solorio Jr,M,39,FATAL,Y,11h00,"White shark, 15' to 16' ",R. Collier,2012.10.23-Solorio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.23-Solorio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.23-Solorio.pdf,2012.10.23,2012.10.23,5488,, +2012.10.19,19-Oct-12,2012,Unprovoked,USA,Florida,"Seaport, Brevard County",,female,F,35,Left calf bitten,N,,,"Brevard Times, 10/19/2012",2012.10.19-BrevardCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.19-BrevardCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.19-BrevardCounty.pdf,2012.10.19,2012.10.19,5487,, +2012.10.18.b,18-Oct-12,2012,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,male,M,24,Minor bite to ankle,N,10h30,,"WESH.com, 10/18/2012",2012.10.18.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.b-PonceInlet.pdf,2012.10.18.b,2012.10.18.b,5486,, +2012.10.18.a,18-Oct-12,2012,Unprovoked,USA,Hawaii,"Kanaha Beach, Maui",Paddle boarding,David Peterson,M,55,"No injury, board bitten",N,07h30,6' to 8' shark,"Maui News, 10/18/2012",2012.10.18.a-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.a-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.a-Peterson.pdf,2012.10.18.a,2012.10.18.a,5485,, +2012.10.16,16-Oct-12,2012,Invalid,USA,Florida,Hobe Sound,,male,M,,Laceration to toe,N,17h00,Shark involvement not confirmed,"WPTV, 10/16/2012",2012.10.16-HobeSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.16-HobeSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.16-HobeSound.pdf,2012.10.16,2012.10.16,5484,, +2012.10.11.R,Reported 11-Oct-2012,2012,Unprovoked,NIGERIA,Delta,Oboro,Bathing,Mrs. Torugbene-Ere Aboh,F,38,Laceration to right leg,N,,,"The Osun Defender, 10/11/2012",2012.10.11.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.11.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.11.R-Nigeria.pdf,2012.10.11.R,2012.10.11.R,5483,, +2012.10.07,10-Oct-12,2012,Unprovoked,USA,California,"Davenport Landing, Santa Cruz County",Windsurfing,Gunner Proppe,M,42,"No ijnury to boardrider, shark struck board breaking the mast",N,18h30,,R. Collier,2012.10.07-Proppe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.07-Proppe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.07-Proppe.pdf,2012.10.07,2012.10.07,5482,, +2012.10.02,02-Oct-12,2012,Unprovoked,AUSTRALIA,Western Australia,"Mullaloo Beach, Perth",Bodyboarding,Andrew Gavriliu,M,11,"No injury, but swim fin bitten & torn",N,12h00,2m shark,"The West Australian, 10/4/2012",2012.10.02-Gavriliu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.02-Gavriliu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.02-Gavriliu.pdf,2012.10.02,2012.10.02,5481,, +2012.09.25,25-Sep-12,2012,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Brandon Taylor,M,21,Lacerations to left forearm,N,16h30,5' shark,"The Examiner, 9/26/2012",2012.09.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.25-Taylor.pdf,2012.09.25,2012.09.25,5480,, +2012.09.24,24-Sep-12,2012,Unprovoked,USA,Florida,"Spanish House Beach, Brevard County",Surfing,Brandon Murray,M,22,Left foot bitten,N,Afternoon,4' shark,"TC Palm, 9/26/2012",2012.09.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.24-Murray.pdf,2012.09.24,2012.09.24,5479,, +2012.09.16,16-Sep-12,2012,Unprovoked,USA,Florida," Cocoa Beach, Brevard County",Surfing,male,M,52,Foot bitten,N,15h00,,"Florida Today, 9/16/2012",2012.09.16-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.16-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.16-CocoaBeach.pdf,2012.09.16,2012.09.16,5478,, +2012.09.10,10-Sep-12,2012,Unprovoked,TONGA,Vava'u,Eueiki Island,Swimming,Kylie Maguire,F,29,Injuries to thighs & buttocks,N,,Possibly a 3 m bull shark,"Northern Star, 9/13/2012",2012.09.10-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.10-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.10-Maguire.pdf,2012.09.10,2012.09.10,5477,, +2012.09.09,09-Sep-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,teen,,19,Minor injury to elbow,N,14h20,,"Daytona Beach News Journal, 9/9/2012",2012.09.09-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.09-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.09-NSB.pdf,2012.09.09,2012.09.09,5476,, +2012.09.08.b,08-Sep-12,2012,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Surfing,Matthew Fowler,M,25,Right foot bitten,N,12h00,,Shark Attack Survivors,2012.09.08.b-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.b-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.b-Fowler.pdf,2012.09.08.b,2012.09.08.b,5475,, +2012.09.08.a,08-Sep-12,2012,Unprovoked,USA,Florida,"South Beach, Miami-Dade County",Swimming,male,M,,Lacerations to right calf,N,Afternoon,,"Miami CBS Local, 9/8/2012",2012.09.08.a-SouthBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.a-SouthBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.a-SouthBeach.pdf,2012.09.08.a,2012.09.08.a,5474,, +2012.09.06.b,06-Sep-12,2012,Unprovoked,USA,Florida,"Neptune Beach, Duval County",Surfing,James Fyfe,M,30s,Right calf bitten,N,Just before noon,,"New4Jax, 9/7/2012",2012.09.06.b-Fyfe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.b-Fyfe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.b-Fyfe.pdf,2012.09.06.b,2012.09.06.b,5473,, +2012.09.06.a,06-Sep-12,2012,Unprovoked,USA,Florida,"St. Augustine Beach, St. John's County",Surfing,Andrew Birchall,M,37,Lacerations to foot,N,11h30,,"WFTV, 9/4/2012",2012.09.06.a-Birchall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.a-Birchall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.a-Birchall.pdf,2012.09.06.a,2012.09.06.a,5472,, +2012.09.04,04-Sep-12,2012,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,male,M,32,Puncture wounds to hand,N,07h56,,"WFTV, 9/4/2012",2012.09.04-MelbourneBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.04-MelbourneBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.04-MelbourneBeach.pdf,2012.09.04,2012.09.04,5471,, +2012.09.02.b,02-Sep-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,female,F,8,Puncture wounds to calf and hand,N,18h30,3.5' to 4' shark,"WYTV, 9/3/2012",2012.09.02.b-NSB-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.b-NSB-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.b-NSB-girl.pdf,2012.09.02.b,2012.09.02.b,5470,, +2012.09.02.b,02-Sep-12,2012,Provoked,USA,Hawaii,"Spreckelsville, Maui",Spearfishing,M. Malabon,,,Minor laceration to hand PROVOKED INCIDENT,N,12h00,"Tiger shark, 10' to 12' ",HawaiiNow.com,2012.09.02.c-Malabon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.c-Malabon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.c-Malabon.pdf,2012.09.02.b,2012.09.02.b,5469,, +2012.09.02.a,02-Sep-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming or boogie boarding,female,F,56,Puncture wound to left ankle,N,16h30,3.5' to 4' shark,"WYTV, 9/3/2012",2012.09.02.a-NSB-Woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.a-NSB-Woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.a-NSB-Woman.pdf,2012.09.02.a,2012.09.02.a,5468,, +2012.08.31,31-Aug-12,2012,Provoked,SCOTLAND,Inner Hebrides,Off the Isle of Islay,Shark fishing,Hamish Currie,M,53,"No injury, shoe bitten by hooked and landed shark PROVOKED INCIDENT",N,,"Porbeagle shark, 7'","The Mirror, 8/31/2012",2012.08.31.R-Hamish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.31.R-Hamish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.31.R-Hamish.pdf,2012.08.31,2012.08.31,5467,, +2012.08.28,28-Aug-12,2012,Unprovoked,AUSTRALIA,Western Australia,Red Bluff near Quobba Station,Surfing,Jon Hines,M,34,Lacerations to torso and arm,N,15h30,,"T. Peake, GSAF",2012.08.28-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.28-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.28-Hines.pdf,2012.08.28,2012.08.28,5466,, +2012.08.26,26-Aug-12,2012,Unprovoked,BRAZIL,Pernambuco,"Coral Cove, Cabo de Santo Agostinho",Swimming,Tiago Jos de Oliveira da Silva ,M,18,FATAL,Y,Afternoon,,"JC Online, 8/30/2012",2012.08.26-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.26-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.26-Brazil.pdf,2012.08.26,2012.08.26,5465,, +2012.08.15,15-Aug-12,2012,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Wading or swimming,"male, a tourist from Germany",M,31,Lacerations to leg,N,,,"Fox 10, 8/17/2012",2012.08.15-GulfShoresSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.15-GulfShoresSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.15-GulfShoresSwimmer.pdf,2012.08.15,2012.08.15,5464,, +2012.08.11,11-Aug-12,2012,Boat,AUSTRALIA,Western Australia,Ocean Reef,Fishing,dinghy,,,"No injury, shark grabbed outboard motor",N,12h00,4.5 m shark,"Perth Now, 8/11/2012",2012.08.11-FishingBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.11-FishingBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.11-FishingBoat.pdf,2012.08.11,2012.08.11,5463,, +2012.08.09,08-Aug-12,2012,Unprovoked,USA,Florida,Key Largo,Free diving ,"David Lowe, Sr.",M,56,Lacerations to little finger of left hand,N,1600,"Lemon shark, 4' to 5' ",D. Lowe,2012.08.09-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.09-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.09-Lowe.pdf,2012.08.09,2012.08.09,5462,, +2012.08.05,06-Aug-12,2012,Unprovoked,REUNION,Saint Leu,,Surfing,Fabien Bujon,M,39,Right hand and foot severed,N,17h17,Bull shark,"Linfo.re, 8/5/2012",2012.08.05-Bujon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.05-Bujon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.05-Bujon.pdf,2012.08.05,2012.08.05,5461,, +2012.08.04,04-Aug-12,2012,Unprovoked,FRENCH POLYNESIA,Tuamotus,Kaukura Atoll,Spearfishing,Tophane Tauiratea,M,,Shoulder bitten,N,,"Lemon shark, 2.5m to 3m ","A. Brenneka, Shark Attack Survivors; Les Nouvelles caldoniennes, 9/6/2012",2012.08.04-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.04-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.04-FrenchPolynesia.pdf,2012.08.04,2012.08.04,5460,, +2012.07.31.b,31-Jul-12,2012,Unprovoked,USA,California,"Topanga Beach, Los Angeles County",Surfing,Jared Tennison,M,17,"No injury, surfer knocked off board when shark struck surfboard",N,06h45,,R. Collier,2012.07.31.b-Tennison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.b-Tennison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.b-Tennison.pdf,2012.07.31.b,2012.07.31.b,5459,, +2012.07.31.a,31-Jul-12,2012,Unprovoked,AUSTRALIA,South Australia,Streaky Bay,Surfing,John Campion,M,48,Lacerations to torso & arm,N,14h40,White shark or bronze whaler,"T. Conlin, Adelaide Now, 7/31/2012",2012.07.31.a-Campion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.a-Campion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.a-Campion.pdf,2012.07.31.a,2012.07.31.a,5458,, +2012.07.30.b,30-Jul-12,2012,Unprovoked,USA,Hawaii,"Mahaulepu Beach, Kauai",Surfing,Steve Stotts,M,44,Left foot bitten,N,16h35,,"T. LaVenture, The GardenIsland.com",2012.07.30.b-Stotts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.b-Stotts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.b-Stotts.pdf,2012.07.30.b,2012.07.30.b,5457,, +2012.07.30.a,30-Jul-12,2012,Unprovoked,USA,Massachusetts,"Ballston Beach, Truro, Cape Cod",Body surfing,Chris Myers,M,50,Lacerations to both legs below the knees,N,15h30,Thought to involve a white shark,"A. Costellano, ABC News, 7/31/202",2012.07.30.a-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.a-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.a-Myers.pdf,2012.07.30.a,2012.07.30.a,5456,, +2012.07.24,24-Jul-12,2012,Invalid,USA,North Carolina,"Ocean Isle, Brunswick County",,male,M,12,Shark involvement unconfirmed,N,11h45,Shark involvement not confirmed,"C. Creswell, GSAF",2012.07.24-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.24-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.24-OceanIsle.pdf,2012.07.24,2012.07.24,5455,, +2012.07.23,23-Jul-12,2012,Unprovoked,REUNION,Trois-Bassins,,Surfing,Alexandre Rassiga,M,22,FATAL,Y,16h30,,"Clicanoo.re, 7/23/20122",2012.07.23-Rassica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.23-Rassica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.23-Rassica.pdf,2012.07.23,2012.07.23,5454,, +2012.07.21,21-Jul-12,2012,Invalid,TRINIDAD & TOBAGO,Trinidad,"Off Radix Village, Mayoro County",Swimming,Shaka Galera,M,24,Probable drowning with post-mortem bite,Y,,,"Trinidad Express, 8/3/2012",2012.07.21-Galera-drowning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.21-Galera-drowning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.21-Galera-drowning.pdf,2012.07.21,2012.07.21,5453,, +2012.07.19,19-Jul-12,2012,Invalid,CANADA,British Colombia,"Tofino, Vancouver",Surfing,Kaitlin Dakers,F,23,"Lacerations to 2 fingers, but shark involvement unconfirmed",N,,"Salmon shark suspected, but unlikely","CBC News, 7/23/2012",2012.07.19-Dakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.19-Dakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.19-Dakers.pdf,2012.07.19,2012.07.19,5452,, +2012.07.14,14-Jul-12,2012,Unprovoked,AUSTRALIA,Western Australia,Off Wedge Island,Surfing,Ben Linden,M,24,FATAL,Y,09h05,"White shark, 5m","WA News, 7/15/2012",2012.07.14-Linden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.14-Linden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.14-Linden.pdf,2012.07.14,2012.07.14,5451,, +2012.07.08,08-Jul-12,2012,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Swimming,Tracy Fasick,F,43,Lacerations to right ankle and calf,N,17h30,,"A. Brenneka, SharkAttackSurvivors.com; T.Fasick",2012.07.08-Fasick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.08-Fasick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.08-Fasick.pdf,2012.07.08,2012.07.08,5450,, +2012.07.07.c,07-Jul-12,2012,Unprovoked,BAHAMAS,Eleuthera,,Spearfishing,Sean Connelly,M,,Lacerations to right leg,N,,,S. Connelly,2012.07.07.c-Connelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.c-Connelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.c-Connelly.pdf,2012.07.07.c,2012.07.07.c,5449,, +2012.07.07.b,07-Jul-12,2012,Invalid,AUSTRALIA,Victoria,Ship's Graveyard off Point Lonsdale,Scuba diving,Karen Lee,F,42,Cause of death was drowning & preceded shark involvement,Y,15h00,,"Aleks Devic, Herald Sun, 7/11/2012",2012.07.07.b-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.b-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.b-Lee.pdf,2012.07.07.b,2012.07.07.b,5448,, +2012.07.07.a,07-Jul-12,2012,Unprovoked,USA,California,"Pleasure Point, Santa Cruz County",Kayaking,M.C.,M,52,"No injury, kayak bitten",N,08h30,14' to 18'shark,R. Collier,2012.07.07.a-SantaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.a-SantaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.a-SantaCruz.pdf,2012.07.07.a,2012.07.07.a,5447,, +2012.07.06,06-Jul-12,2012,Unprovoked,SOUTH AFRICA,Western Cape Province,"Sandstrand, Jongensfontein",Surfing,Jacque Mostert,M,29,Lacerattions to left thigh & knee,N,16h30,15' shark,"NSRI, 7/6/2012",2012.07.06-Mostert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.06-Mostert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.06-Mostert.pdf,2012.07.06,2012.07.06,5446,, +2012.06.28.R,Reported 28-Jun-2012,2012,Invalid,CROATIA,,Buccari Bay,Swimming,,,60,"Leg struck. Initally reported as a shark attack, but involved a swordfish",N,,No shark involvement,"Il Gazzettino, 6/28/2012",2012.06.28.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.28.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.28.R-Croatia.pdf,2012.06.28.R,2012.06.28.R,5445,, +2012.06.26.c,26-Jun-12,2012,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Swimming,Nickolaus Bieber ,M,6,Thigh bitten,N,19h00,possibly a bull shark,"WPTV.com, 6/26/2012",2012.06.26.c-Bieber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.c-Bieber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.c-Bieber.pdf,2012.06.26.c,2012.06.26.c,5444,, +2012.06.26.b,26-Jun-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,26,Nip to left foot,N,15h00,,"H. Frederick, Headline Surfer, 6/26/2012",2012.06.26.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.b-NewSmyrnaBeach.pdf,2012.06.26.b,2012.06.26.b,5443,, +2012.06.26.a,26-Jun-12,2012,Unprovoked,USA,Hawaii,"Kahana Beach, Maui",Sitting in the water,Sage St. Clair,F,16,Laceration to left calf,N,09h45,a small reef shark,"Hawaii News Now, 6/26/2012",2012.06.26.a-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.a-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.a-StClair.pdf,2012.06.26.a,2012.06.26.a,5442,, +2012.06.22.b,22-Jun-12,2012,Unprovoked,AUSTRALIA,Tasmania,South Cape Bay,Surfing,James Barthy,M,,"Knocked off board, shark bit nose off surfboard",N,,,J. Barthy,2012.06.22.b-Barthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.b-Barthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.b-Barthy.pdf,2012.06.22.b,2012.06.22.b,5441,, +2012.06.22.a,22-Jun-12,2012,Unprovoked,USA,Florida,"Bathtub Reef Beach, Stuart, Martin County",Swimming,Patrick McInerney,M,12,Minor injury,N,16h30,,WPTV.com,2012.06.22.a-McInerney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.a-McInerney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.a-McInerney.pdf,2012.06.22.a,2012.06.22.a,5440,, +2012.06.20,20-Jun-12,2012,Unprovoked,AUSTRALIA,Western Australia,"Mullaloo Beach, Perth",Surf skiing ,Martin Kane,M,62,"No injury, ski severely damaged",N,07h15,3 m shark,"Perth Now, 6/20/2012",2012.06.20-Kane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.20-Kane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.20-Kane.pdf,2012.06.20,2012.06.20,5439,, +2012.06.19,19-Jun-12,2012,Invalid,USA,South Carolina,"Myrtle Beach, Horry County",Standing,Matthew Breen,M,16,"Laceration to foot. Injured by a stingray, not a shark",N,,No shark involvement,C. Creswell,2012.06.19-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.19-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.19-MyrtleBeach.pdf,2012.06.19,2012.06.19,5438,, +2012.06.18,18-Jun-12,2012,Unprovoked,USA,North Carolina,"Ocean Isle, Brunswick County",Wading,Brooklyn Daniel,F,6,Numerous puncture wounds to leg ,N,11h00,,C. Creswell,2012.06.18-Daniel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.18-Daniel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.18-Daniel.pdf,2012.06.18,2012.06.18,5437,, +2012.06.15,15-Jun-12,2012,Provoked,USA,Florida,"Summerland Key, Monroe County",Fishing,male,M,23,Superficial injury to calf by hooked shark PROVOKED ACCIDENT,N,14h20,Nurse shark,WSVN-TV,2012.06.15-SummerlandKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.15-SummerlandKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.15-SummerlandKey.pdf,2012.06.15,2012.06.15,5436,, +2012.06.14.d,14-Jun-12,2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,female,F,18,Foot & hand bitten,N,Afternoon,small blacktip shark?,C. Creswell,2012.06.14.d-female-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.d-female-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.d-female-MyrtleBeach.pdf,2012.06.14.d,2012.06.14.d,5435,, +2012.06.14.c,14-Jun-12,2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,male,M,,Minor injury,N,Afternoon,Shark involvement not confirmed,C. Creswell,2012.06.14.c-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.c-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.c-MyrtleBeach.pdf,2012.06.14.c,2012.06.14.c,5434,, +2012.06.14.b,14-Jun-12,2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,male,M,,Calf bitten,N,Afternoon,small blacktip shark?,C. Creswell,2012.06.14.b-male-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.b-male-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.b-male-MyrtleBeach.pdf,2012.06.14.b,2012.06.14.b,5433,, +2012.06.14.a,14-Jun-12,2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,Jordon Garosalo,M,16,Laceration to right foot,N,13h20,Blacktip shark ,C. Creswell,2012.06.14.a-Garosalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.a-Garosalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.a-Garosalo.pdf,2012.06.14.a,2012.06.14.a,5432,, +2012.06.12,12-Jun-12,2012,Unprovoked,AUSTRALIA,Victoria,Port Campbell,Surfing,Mike Higgins,M,42,Laceration to right foot,N,Morning,1.5 m shark,"Herald Sun, 6/13/2012",2012.06.12-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.12-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.12-Higgins.pdf,2012.06.12,2012.06.12,5431,, +2012.06.10,10-Jun-12,2012,Provoked,ITALY,Sardinia,Muravera,Attempting to rescue an injured & beached shark,Giorgio Zara,M,57,Lower left leg injured PROVOKED ACCIDENT,N,Morning,"Blue shark, 2.5m","D. Puddo, 6/11/2012",2012.06.10-Zara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.10-Zara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.10-Zara.pdf,2012.06.10,2012.06.10,5430,, +2012.06.03,03-Jun-12,2012,Unprovoked,AUSTRALIA,New South Wales,"Redhead Beach, Newcastle",Surf skiing ,Mark Ayre,M,30,"No injury, ski bitten",N,14h30,"White shark, 2 m","Newcastle Herald, 6/6/2012",2012.06.03-Ayre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.03-Ayre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.03-Ayre.pdf,2012.06.03,2012.06.03,5429,, +2012.06.02.b,02-Jun-12,2012,Unprovoked,USA,Florida,"Bethune Beach, Volusia County",Surfing,Angelina DelRosso,F,12,Laceration to thigh,N,,,"J. Horton, West Volusia Bulletin, 6/6/2012",2012.06.02.b-DelRosso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.b-DelRosso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.b-DelRosso.pdf,2012.06.02.b,2012.06.02.b,5428,, +2012.06.02.a,02-Jun-12,2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Boogie Boarding,Ryan Orellana-Maczynski ,M,25,Severe laceration to foot,N,19h45,,C. Creswell,2012.06.02.a-Maczynski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.a-Maczynski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.a-Maczynski.pdf,2012.06.02.a,2012.06.02.a,5427,, +2012.05.31,31-May-12,2012,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Wading,Megan Konkler,F,33,Foot bitten,N,13h30,"18"" to 24"" shark",C. Creswell,2012.05.31-Konkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.31-Konkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.31-Konkler.pdf,2012.05.31,2012.05.31,5426,, +2012.05.29,29-May-12,2012,Unprovoked,MEXICO,Guerrero," Boca de la Lea, La Unin",Free diving / spearfishing,Benigno Medina Navarrete ,M,46,Left hand severed,N,09h00,"Bull shark, 3m","El Sol ee Morelia, 5/30/2012",2012.05.29-Navarrette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.29-Navarrette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.29-Navarrette.pdf,2012.05.29,2012.05.29,5425,, +2012.05.23,23-May-12,2012,Unprovoked,USA,Florida,"Jacksonville, Duval County",Surfing,Chad Refro,M,22,Lacerations to foot,N,15h00,4' to 5' shark,"First Coast News, 5/24/2012",2012.05.23-Renfro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.23-Renfro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.23-Renfro.pdf,2012.05.23,2012.05.23,5424,, +2012.05.20,20-May-12,2012,Unprovoked,USA,Hawaii,"Iroquiois Point, Oahu",Kayak Fishing,Jerry Gallardo,M,,"No injury, teethmarks in kayak",N,Morning,"Tiger shark, 8' to 9' ","Hawaii Now, 5/25/2012",2012.05.20-Gallardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.20-Gallardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.20-Gallardo.pdf,2012.05.20,2012.05.20,5423,, +2012.05.16,16-May-12,2012,Unprovoked,FIJI,,Matacucu Reef ,Spearfishing,Tevita Naborisi ,M,20,Lacerations to head,N,,,"Fiji Times, 5/17/2012",2012.05.16-Naborisi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.16-Naborisi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.16-Naborisi.pdf,2012.05.16,2012.05.16,5422,, +2012.05.12,12-May-12,2012,Unprovoked,USA,California,"Leffingwell Landing, Cambria, San Luis Obispo County",Kayaking / Fishing,Joey Nocchi,M,30,"No injury, kayaker fell in the water when kayak bitten by a shark",N,14h30,White shark,R. Collier,2012.05.12-Nocchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.12-Nocchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.12-Nocchi.pdf,2012.05.12,2012.05.12,5421,, +2012.05.09,09-May-12,2012,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Swimming,Karin Ulrike Stei,F,47,Upper left thigh bitten,N,11h30,,News Channel 5,2012.05.09-Stei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.09-Stei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.09-Stei.pdf,2012.05.09,2012.05.09,5420,, +2012.05.06,06-May-12,2012,Unprovoked,USA,California,Off Catalina Island,Paddle boarding,Rose McKereghan,F,15,"No injury, shark bit paddleboard",N,07h20,White shark,"R. Collier, A. Brenneka",2012.05.06-McKereghan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.06-McKereghan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.06-McKereghan.pdf,2012.05.06,2012.05.06,5419,, +2012.04.19.b,19-Apr-12,2012,Unprovoked,USA,Florida,"Indialantic, Brevard County",Surfing,Justin Ellingham,M,28,Lacerations to hand,N,19h28,5' shark,"MyFoxOrlando, 4/19/2012",2012.04.19.b-Ellingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.b-Ellingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.b-Ellingham.pdf,2012.04.19.b,2012.04.19.b,5418,, +2012.04.19.a,19-Apr-12,2012,Unprovoked,SOUTH AFRICA,Western Cape Province,Caves near Kogel Bay,Body boarding,David Lilienfeld ,M,20,FATAL,Y,12h30,"White shark, 4 m to 5m ","News 24, 4/19/2012",2012.04.19.a-Lilienfeld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.a-Lilienfeld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.a-Lilienfeld.pdf,2012.04.19.a,2012.04.19.a,5417,, +2012.04.11,11-Apr-12,2012,Unprovoked,AUSTRALIA,South Australia,"Dolphin Bay, Innes National Park",Kayaking,Michael Demasi,M,27,Minor wound to his thigh when shark bit kayak,N,,"White shark, 6m ","Adelaide Now, 4/12/2012",2012.04.11-Demasi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.11-Demasi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.11-Demasi.pdf,2012.04.11,2012.04.11,5416,, +2012.04.03,03-Apr-12,2012,Unprovoked,USA,Hawaii,"Leftovers near Chun's Reef, Oahu",Surfing,Joshua Holley,M,28,Lacerations to left foot,N,12h38,"Tiger shark, 10' ","Hawaii News Now, 4/3/2012",2012.04.03-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.03-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.03-Holley.pdf,2012.04.03,2012.04.03,5415,, +2012.04.00,Apr-13,2012,Unprovoked,USA,Florida,"Sanibel Island, Lee County",,Dylan Hapworth,M,,Right shin bitten,N,,a small shark,"Morning Sentinel, 4/20/2012",2012.04.00-Hapworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.00-Hapworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.00-Hapworth.pdf,2012.04.00,2012.04.00,5414,, +2012.03.31,31-Mar-12,2012,Unprovoked,AUSTRALIA,Western Australia,Stratham Beach,Scuba diving,Peter Kurmann,M,33,FATAL,Y,09h30,"White shark, 4m ","Associated Press, 3/31/2012",2012.03.31-Kurmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.31-Kurmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.31-Kurmann.pdf,2012.03.31,2012.03.31,5413,, +2012.03.24,24-Mar-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joey Coppola,M,21,Minor lacerations to foot,N,14h00,,"H. Frederick, NSB News, 3/24/2012",2012.03.24-Coppola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.24-Coppola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.24-Coppola.pdf,2012.03.24,2012.03.24,5412,, +2012.03.22,22-Mar-12,2012,Boat,AUSTRALIA,Western Australia,Kalbarri,Crayfishing,crayfish boat. Occupants: Dave & Mitchell Duperouzel: ,,,"No injury to occupants. Shark bit propelle, rope & crayfish float",N,05h50,White shark,"Sydney Morning Herald, 3/22/2012",2012.03.22-Kalbarri-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.22-Kalbarri-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.22-Kalbarri-fishermen.pdf,2012.03.22,2012.03.22,5411,, +2012.03.20,20-Mar-12,2012,Unprovoked,AUSTRALIA,Queensland,Nobby's Beach,Surfing,Billy O'Leary,M,20,Lacerations to left calf,N,17h00,Possibly a bull shark,"Courier Mail, 3/20/2012",2012.03.20-OLeary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.20-OLeary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.20-OLeary.pdf,2012.03.20,2012.03.20,5410,, +2012.03.15,15-Mar-12,2012,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Surfing,Frank Wacha,M,61,Left forearm bitten,N,15h50,Possibly a 5' to 6' bull shark,"WPBF.com, 3/16/2012",2012.03.15-Wacha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.15-Wacha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.15-Wacha.pdf,2012.03.15,2012.03.15,5409,, +2012.03.14.b,14-Mar-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Sydney Levy,F,15,Bitten on ankle,N,16h00,4' to 5' shark,"C. Graham, Daytona Beach News-Journal, 3/14/2012",2012.03.14.b-Levy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.b-Levy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.b-Levy.pdf,2012.03.14.b,2012.03.14.b,5408,, +2012.03.14.a,14-Mar-12,2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nick Romano,M,17,Bitten on calf,N,16h05,4' to 5' shark,"C. Graham, Daytona Beach News-Journal, 3/14/2012",2012.03.14.a-Romano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.a-Romano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.a-Romano.pdf,2012.03.14.a,2012.03.14.a,5407,, +2012.03.06.b,06-Mar-12,2012,Unprovoked,NEW ZEALAND,North Island,"Opunake, Taranake",Surfing,Peter Garrett,M,,Lacerations to left calf,N,19h00,,"NZ Herald, 3/7/2012",2012.03.06.b-Garrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.b-Garrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.b-Garrett.pdf,2012.03.06.b,2012.03.06.b,5406,, +2012.03.06.a,06-Mar-12,2012,Provoked,AUSTRALIA,Victoria,"Shipwreck Cove, Melbourne Aquarium","Diving, feeding sharks",female,F,34,Superficial lacerations to right side of face PROVOKED ACCIDENT,N,11h30,"Tawny nurse shark, 40cm","The Age, 3/6/2012",2012.03.06.a-MelbourneAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.a-MelbourneAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.a-MelbourneAquarium.pdf,2012.03.06.a,2012.03.06.a,5405,, +2012.03.05,05-Mar-12,2012,Unprovoked,REUNION,Saint-Benoit,Port de laMarine,Body boarding,Gerard Itema,M,31,"No injury, board bitten",N,14h30,,"Clicanoo, 3/5/2012",2012.03.05-Itema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.05-Itema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.05-Itema.pdf,2012.03.05,2012.03.05,5404,, +2012.03.04,04-Mar-12,2012,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Kite Surfing,Justin Worral,M,19,Lacerations to left calf,N,13h00,4' shark,Brevard Times,2012.03.04-Worrall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.04-Worrall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.04-Worrall.pdf,2012.03.04,2012.03.04,5403,, +2012.03.03,03-Mar-12,2012,Invalid,SAUDI ARABIA,Tabuk Province,Off Duba,Attempting to Kite surf from Egypt to Saudi Arabia,Jan Lisewski,M,42,Harassed by sharks but not injured by them,N,,,"Polskie Radio, 3/5/2012",2012.03.03-Lisewski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.03-Lisewski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.03-Lisewski.pdf,2012.03.03,2012.03.03,5402,, +2012.03.01,01-Mar-12,2012,Provoked,CHILE,Antofagasta Province,Antofagasta,Fishing (illegally),Paye Len Salomn,M,,Hand injured PROVOKED INCIDENT,N,,,"Soychile.cl, 3/1/2012",2012.03.01-Salomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.01-Salomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.01-Salomon.pdf,2012.03.01,2012.03.01,5401,, +2012.02.26,26-Feb-12,2012,Provoked,USA,Florida,"Palm Beach Inlet, Palm Beach County",Kite Surfing,Jason Lasser,M,,Laceration to right foot when he struck a shark PROVOKED INCIDENT,N,14h00,Spinner shark,"Aspen Daily News, 2/29/2012",2012.02.26-Lasser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.26-Lasser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.26-Lasser.pdf,2012.02.26,2012.02.26,5400,, +2012.02.25,25-Feb-12,2012,Unprovoked,AUSTRALIA,New South Wales,Broughton Island,Fishing,male,M,,Laceration to left foot,N,16h00,Grey nurse shark,"B. Smee, Newcastle Herald, 2/27/2012",2012.02.25-BroughtonIslandFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.25-BroughtonIslandFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.25-BroughtonIslandFisherman.pdf,2012.02.25,2012.02.25,5399,, +2012.02.20,20-Feb-12,2012,Boat,SOUTH AFRICA,Western Cape Province,Strandfontein,Fishing,8m inflatable boat. Occupants: Bhad Battle & Kevin Overmeyer,,,"No injury to occupants, boat damaged",N,,"White shark, 7m","Cape Argus, 2/21/2012",2012.02.20-StrandfonteinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.20-StrandfonteinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.20-StrandfonteinBoat.pdf,2012.02.20,2012.02.20,5398,, +2012.02.06,06-Feb-12,2012,Unprovoked,AUSTRALIA,Queensland,Wurtulla,Surfing,Nick Ferguson,M,29,"No injury, but fin lost from surfboard",N,12h00,,"Sunshine Coast Daily, 2/7/2012",2012.02.06-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.06-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.06-Ferguson.pdf,2012.02.06,2012.02.06,5397,, +2012.01.22.R,Reported 22-Jan-2012,2012,Unprovoked,BAHAMAS,,Cat Island,"Diving, photographing sharks",Russell Easton,M,,"No injury, shark grabbed his camera",N,,Tiger shark,"Evening Chronicle, 1/23/2012",2012.01.22.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.22.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.22.R-Bahamas.pdf,2012.01.22.R,2012.01.22.R,5396,, +2012.01.27,27-Jan-12,2012,Unprovoked,USA,Hawaii,Lanai,Snorkeling,J. Graden,,,"No injury, shark bit swim fin",N,11h05,6' to 8' shark,HawaiiNow.com,2012.01.27-NV-Graden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.27-NV-Graden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.27-NV-Graden.pdf,2012.01.27,2012.01.27,5395,, +2012.01.19,19-Jan-12,2012,Unprovoked,AUSTRALIA,Western Australia,Coral Bay,Snorkeling,David Pickering,M,26,Lacerations to right forearm,N,Afternoon,"Tiger shark, 3m","Sydney Morning Herald, 1/20/2012",2012.01.19-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.19-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.19-Pickering.pdf,2012.01.19,2012.01.19,5394,, +2012.01.18.b,18-Jan-12,2012,Provoked,TAIWAN,Taitung ,Taimali,Fishing,male,M,24,Bitten on left thigh PROVOKED ACCIDENT,N,,"Blue shark, 70-kg blue shark",Taiwan television,2012.01.18.b-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.b-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.b-Taiwan.pdf,2012.01.18.b,2012.01.18.b,5393,, +2012.01.18.a,18-Jan-12,2012,Unprovoked,AUSTRALIA,New South Wales,Redhead Beach,Surfing,Glen Folkard,M,44,Lacerations to thigh,N,16h45,"White shark, 2.7 m",V. Peddemors,2012.01.18.a-Folkard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.a-Folkard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.a-Folkard.pdf,2012.01.18.a,2012.01.18.a,5392,, +2012.01.15,15-Jan-12,2012,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. Johns",Swimming,Lungisani Msungubana,M,25,FATAL,Y,15h40,Thought to involve a bull shark,"News 24, 1/15/2012; R. Bonorchis, Bloomberg News, 1/16/2012",2012.01.15-Msungubana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.15-Msungubana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.15-Msungubana.pdf,2012.01.15,2012.01.15,5391,, +2012.01.13,13-Jan-12,2012,Unprovoked,USA,Oregon,"Lincoln City, Lincoln County",Surfing,Steve Harnack,M,53,"No injury, surfboard damaged",N,,White shark,R. Collier,2012.01.13-Harnack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.13-Harnack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.13-Harnack.pdf,2012.01.13,2012.01.13,5390,, +2012.01.03,03-Jan-12,2012,Unprovoked,AUSTRALIA,New South Wales,North Avoca Beach,Surfing,Mike Wells,M,28,Right forearm and wrist injured,N,20h00,2 m shark,"Daily Telegraph, 1/3/2012",2012.01.03-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.03-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.03-Wells.pdf,2012.01.03,2012.01.03,5389,, +2012.01.02,02-Jan-12,2012,Unprovoked,AUSTRALIA,Queensland,Duranbah,Spearfishing,Hugo Silva,M,34,"No injury, punctures to swim fin",N,09h00,Allegedly a 4 m tiger shark,"A. Brenneka, goldcoast.com.au, 1/3/2012",2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf,2012.01.02,2012.01.02,5388,, +2011.12.31,31-Dec-11,2011,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",,male,M,,Hand injured,N,18h00,,"Palm Beach Post, 12/31/2011",2011.12.31-Jupiter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.31-Jupiter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.31-Jupiter.pdf,2011.12.31,2011.12.31,5387,, +2011.12.26.R,Reported 26-Dec-2011,2011,Invalid,ANTIGUA,St John's,Fort James Beach,Swimming,"Veron Edwards, Sr. ",M,,Bitten on right hand & wrist,N,Early morning,Shark involvement not confirmed,"D. Francis, Caribarena, 12/26/2011",2011.12.26.R-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.26.R-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.26.R-Edwards.pdf,2011.12.26.R,2011.12.26.R,5386,, +2011.12.25,25-Dec-11,2011,Unprovoked,ECUADOR,Santa Elena,Baranda Beach,Surfing,Flix Jnior Lainez Trejos,M,23,Lacerations to left thigh and calf,N,18h00,,"A. Brenneka, SharkAttackSurvivors.com",2011.12.25-Trejos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.25-Trejos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.25-Trejos.pdf,2011.12.25,2011.12.25,5385,, +2011.12.23,23-Dec-11,2011,Unprovoked,USA,Florida,New Smyrna Beach,Surfing,Will Futato,M,27,Laceration to ankle,N,12h30,,"Daytona Beach News-Journal, 12/24/2011",2011.12.23-Futato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.23-Futato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.23-Futato.pdf,2011.12.23,2011.12.23,5384,, +2011.12.21.b,21-Dec-11,2011,Provoked,USA,Hawaii,"Makahuena Point, Kauai",Canoeing,Keone Miyake,M,,"No injury, after kayak collided with the shark, it bit the rudder PROVOKED INCIDENT",N,,7' to 8' shark ,"A. Brenneka, SharkAttackSurvivors.com",2011.12.21.b-Miyake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.b-Miyake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.b-Miyake.pdf,2011.12.21.b,2011.12.21.b,5383,, +2011.12.21.a,21-Dec-11,2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Noordhoek, Port Elizabeth",Kayak Fishing,Werner Coetzee,M,35,No injury but kayak dented,N,Dawn,,"Port Elizabeth Herald, 12/22/2011",2011.12.21.a-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.a-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.a-Coetzee.pdf,2011.12.21.a,2011.12.21.a,5382,, +2011.12.11,11-Dec-11,2011,Unprovoked,AUSTRALIA,New South Wales,Angourie,Surfing,Steve King,M,51,5 puncture wounds to thigh,N,05h45,"White shark, 2.5m","Daily Examiner, 12/11/2011",2011.12.11-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.11-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.11-King.pdf,2011.12.11,2011.12.11,5381,, +2011.12.07.b,07-Dec-11,2011,Invalid,SOUTH AFRICA,KwaZulu-Natal,Between Sodwana & Cape Vidal,Surf skiing ,Richard Kohler,M,,"No injury, ski damaged",N,,Shark involvement not confirmed,"Durban Daily News, 12/8/2011",2011.12.07.b-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.b-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.b-Kohler.pdf,2011.12.07.b,2011.12.07.b,5380,, +2011.12.07.a,07-Dec-11,2011,Unprovoked,AUSTRALIA,New South Wales,Maroubra,Surfing,Ronald Mason,M,14,Minor injuries to left leg ,N,,Wobbegong shark,"The Australian, 12/12/2011",2011.12.07.a-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.a-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.a-Mason.pdf,2011.12.07.a,2011.12.07.a,5379,, +2011.12.06,06-Dec-11,2011,Unprovoked,USA,Oregon,Seaside Cove,Surfing,female,F,,Minor injury to calf ,N,09h00,,"Seaside Signal, 12/6/2011",2011.12.06-Seaside-Oregon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.06-Seaside-Oregon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.06-Seaside-Oregon.pdf,2011.12.06,2011.12.06,5378,, +2011.12.05,05-Dec-11,2011,Invalid,AUSTRALIA,Queensland,Bushy Ilet,Spearfishing,Dave Fordson,,,Killed by a shark or crocodile.,Y,,Shark involvement not confirmed,"H. Beck, Cairns.com, 12/7/2011",2011.12.05-Forsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.05-Forsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.05-Forsden.pdf,2011.12.05,2011.12.05,5377,, +2011.12.02,02-Dec-11,2011,Unprovoked,AUSTRALIA,New South Wales,Broken Head,Surfing,Milton Carter,M,63,Torn shoulder ligament as result of collision with shark,N,06h00,,"Northern Star, 12/3/2011",2011.12.02-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.02-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.02-Carter.pdf,2011.12.02,2011.12.02,5376,, +2011.11.29,29-Nov-11,2011,Unprovoked,INDONESIA,Bali,Tabanan,Surfing,Marc Andrews,M,18,Lacerations to right hand,N,13h30,,"Daily Telegraph, 11/30/2011",2011.11.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.29-Andrews.pdf,2011.11.29,2011.11.29,5375,, +2011.11.28,28-Nov-11,2011,Unprovoked,AUSTRALIA,Queensland,Peregian,Swimming,Eamon Kriz,M,10,Puncture marks to foot,N,Afternoon,Wobbegong shark?,"Sunshire Coast Daily, 12/1/2011 ",2011.11.28-Kriz-not-on-spreadsheet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.28-Kriz-not-on-spreadsheet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.28-Kriz-not-on-spreadsheet.pdf,2011.11.28,2011.11.28,5374,, +2011.11.22,22-Nov-11,2011,Unprovoked,USA,California,Pigeon Point,Kayaking,Harry Pali,M,,"No injury, kayak bitten",N,,"White shark, 15' to 16'",R. Collier,2011.11.22-Harry-Pali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.22-Harry-Pali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.22-Harry-Pali.pdf,2011.11.22,2011.11.22,5373,, +2011.11.20.R,Reported 20-Nov-2011,2011,Unprovoked,PAPUA NEW GUINEA,East New Britain,Pigeon Island,Scuba diving,male,M,,"No injury, shark collided with diver",N,,,"you Tube, Shark Attack at 57 metres",2011.11.20.R-PigeonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.20.R-PigeonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.20.R-PigeonIsland.pdf,2011.11.20.R,2011.11.20.R,5372,, +2011.11.12,12-Nov-11,2011,Unprovoked,BRAZIL,Pernambuco,"Punta Del Chifre Beach, Olinda",Surfing,Jernimo Pereira da Paz ,M,35,Legs bitten,N,,,"H. Nickel & A. Brenneka, SharkAttackSurvivors.com",2011.11.12-Periera-Pernambuco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.12-Periera-Pernambuco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.12-Periera-Pernambuco.pdf,2011.11.12,2011.11.12,5371,, +2011.11.11,11-Nov-11,2011,Unprovoked,REUNION,Bois-Blanc ,Sainte-Rose,Free diving / spearfishing,Jean-Paul Delaunay,M,42,Left foot bitten,N,Morning,,"H. Nickel & A. Brenneka, SharkAttackSurvivors.com",2011.11.11-Delaunay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.11-Delaunay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.11-Delaunay.pdf,2011.11.11,2011.11.11,5370,, +2011.10.29., 29-Oct-2011,2011,Unprovoked,USA,California,"Marina State Beach, Monterey County",Surfing,Eric Tarantino,M,27,"Lacerations to right wrist, foream & neck",N,,White shark,R. Collier,2011.10.29-Tarantino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.29-Tarantino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.29-Tarantino.pdf,2011.10.29.,2011.10.29.,5369,, +2011.10.28.R,Reported 28-Oct-2011,2011,Unprovoked,SCOTLAND,Moray,Spey Bay,Surfing,Andrew Rollo,M,26,"No injury, shark bumped leg & board. ",N,,8' to 10' shark,"Daily Record, 10/28/2011",2011.10.28.R-Rollo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28.R-Rollo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28.R-Rollo.pdf,2011.10.28.R,2011.10.28.R,5368,, +2011.10.28., 29-Oct-2011,2011,Provoked,SOUTH AFRICA,KwaZulu-Natal,"uShaka Aquarium, Durban",Diving,,,,Arm bitten by captive shark PROVOKED INCIDENT,N,,Raggedtooth shark,"Durban Radio, 10/29/2011",2011.10.28-uShaka-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28-uShaka-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28-uShaka-Aquarium.pdf,2011.10.28.,2011.10.28.,5367,, +2011.10.22,22-Oct-11,2011,Unprovoked,AUSTRALIA,Western Australia,Rottnest Island,Diving,George Wainwright,M,32,FATAL,Y,13h25,"White shark, 10'","Sky News, 10/22/2011",2011.10.22-Wainwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.22-Wainwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.22-Wainwright.pdf,2011.10.22,2011.10.22,5366,, +2011.10.20,20-Oct-11,2011,Unprovoked,USA,Oregon,"Newport, Lincoln County",Surfing,Bobby Gumm,M,41,"No injury, shark bit surfboard",N,,"White shark, 15'",R. Collier,2011.10.20-Gumm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.20-Gumm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.20-Gumm.pdf,2011.10.20,2011.10.20,5365,, +2011.10.19,19-Oct-11,2011,Unprovoked,AUSTRALIA,Victoria,Elwood Beach,Diving,Andrew Houston ,M,50,Small bruise to calf,N,16h00,"Port Jackson shark, 1m","The Age, 10/20/2011",2011.10.19-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.19-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.19-Houston.pdf,2011.10.19,2011.10.19,5364,, +2011.10.11,11-Oct-11,2011,Unprovoked,USA,Florida,Cape Canaveral,Surfing,Tim Riley,M,,Foot bitten,N,,3' shark,T. Riley,2011.10.11-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.11-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.11-Riley.pdf,2011.10.11,2011.10.11,5363,, +2011.10.10,10-Oct-11,2011,Unprovoked,USA,Oregon,Seaside,Surfing,Doug Niblack,M,,No injury,N,,10' to 12' shark,"R.Collier; KATU News, 10/11/2011",2011.10.10-Niblack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.10-Niblack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.10-Niblack.pdf,2011.10.10,2011.10.10,5362,, +2011.10.09,09-Oct-11,2011,Unprovoked,AUSTRALIA,Western Australia,Cottesloe Beach,Swimming,Bryn Martin,M,64,FATAL,Y,08h10,,"Perth Now, 10/11/2011",2011.10.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.09-Martin.pdf,2011.10.09,2011.10.09,5361,, +2011.10.05,05-Oct-11,2011,Boat,REUNION,,Cap La Houssaye,Canoeing,Jean-Pierre Castellani ,M,51,No injury to occupant,N,10h30,2 to 2.5 m shark,"Clicanoo, 10/5/2011",2011.10.05-Castellani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.05-Castellani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.05-Castellani.pdf,2011.10.05,2011.10.05,5360,, +2011.10.02,02-Oct-11,2011,Unprovoked,USA,Florida,"Santa Maria Island, Manatee County",Wade fishing,Javier Perez,M,,Minor injury to thigh,N,Afternoon,,"Herald Tribune, 10/2/2011",2011.10.02-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.02-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.02-Perez.pdf,2011.10.02,2011.10.02,5359,, +2011.10.01,01-Oct-11,2011,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",,Victor Meade,M,29,Lacerations to right wrist and middle finger,N,,,WKRG,2011.10.01-Meade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.01-Meade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.01-Meade.pdf,2011.10.01,2011.10.01,5358,, +2011.09.30,30-Sep-11,2011,Invalid,USA,Puerto Rico,Hatillo Beach,Surfing,Rafael Coln Casanova,M,27,Lacerations to lower right leg ,N,09h50,No shark involvement,"El Nuevodia, 9/30/2011",2011.09.30-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.30-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.30-Casanova.pdf,2011.09.30,2011.09.30,5357,, +2011.09.28.b,28-Sep-11,2011,Provoked,DOMINICAN REPUBLIC,Saman Province,Playa Jackson ,Fishing,Leocadio Reyes Sarante,M,48,Severe injuries to left arm PROVOKED INCIDENT,N,,,"Hoy Digital, 9/28/2011",2011.09.28.b-Sarante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.b-Sarante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.b-Sarante.pdf,2011.09.28.b,2011.09.28.b,5356,, +2011.09.28.a,28-Sep-11,2011,Unprovoked,SOUTH AFRICA,Western Cape Province,Clovely Beach,Swimming,Michael Cohen,M,43,"Right leg severed, left leg lacerated",N,12h25,White shark,"News 24, 9/29/2011",2011.09.28.a-Cohen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.a-Cohen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.a-Cohen.pdf,2011.09.28.a,2011.09.28.a,5355,, +2011.09.24.b,24-Sep-11,2011,Unprovoked,USA,Florida,"Santa Maria Island, Manatee County",Spearfishing,C.J. Wickersham,M,21,Laceration to left thigh,N,15h00,"Bull shark, 6'","Herald Tribune, 9/24/2011",2011.09.24.b-Wickersham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.b-Wickersham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.b-Wickersham.pdf,2011.09.24.b,2011.09.24.b,5354,, +2011.09.24.a,24-Sep-11,2011,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Jumping in the waves,"Isaac O'Hara, ",M,5,Laceration to left thigh,N,10h00,,"Sun News, 9/26/2011",2011.09.24.a-O'Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.a-O'Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.a-O'Hara.pdf,2011.09.24.a,2011.09.24.a,5353,, +2011.09.20,20-Sep-11,2011,Boat,USA,Hawaii,Kauai,Canoeing,Tom Bartlett,M,,"No injury, canoe bitten by shark",N,15h00,,"R. Mizutani, KHON2, 9/23/2011",2011.09.20-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.20-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.20-Bartlett.pdf,2011.09.20,2011.09.20,5352,, +2011.09.19,19-Sep-11,2011,Unprovoked,REUNION,Saint-Gilles,Boucan-Canot,Body boarding,Mathieu Schiller ,M,38,FATAL,Y,15h30,,zinfos974,2011.09.19-Schiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.19-Schiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.19-Schiller.pdf,2011.09.19,2011.09.19,5351,, +2011.09.17,17-Sep-11,2011,Unprovoked,KENYA,Coast Province,"Mama Ngina Beach, Mombasa ",Swimming,,M,17,FATAL,Y,,,"Mombasa411, 9/20/2011",2011.09.17-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.17-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.17-Kenya.pdf,2011.09.17,2011.09.17,5350,, +2011.09.16,16-Sep-11,2011,Unprovoked,USA,Florida,New Smyrna Beach,Surfing,Daniel Jorgensen,M,25,Lacerations to arm,N,11h00,4' to 6' shark,"Daytona Beach News-Journal, 9/16/2011",2011.09.16-Jorgensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.16-Jorgensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.16-Jorgensen.pdf,2011.09.16,2011.09.16,5349,, +2011.09.11.b,11-Sep-11,2011,Unprovoked,USA,California,"Samoa Beach, Humboldt County",Surfing,Benjie Rose,M,37,"No injury, board bitten",N,12h20,,R. Collier,2011.09.11.b-Benji-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.b-Benji-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.b-Benji-Rose.pdf,2011.09.11.b,2011.09.11.b,5348,, +2011.09.11.a,11-Sep-11,2011,Unprovoked,PAPUA NEW GUINEA,Central Province,"Hula, near Port Moresby",Kite Surfing,Thomas Viot,M,30,Lacerations to right leg,N,Afternoon,"Tiger shark, 2m","Sydney Morning Herald, 9/12/2011",2011.09.11.a-Viot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.a-Viot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.a-Viot.pdf,2011.09.11.a,2011.09.11.a,5347,, +2011.09.04.b,04-Sep-11,2011,Unprovoked,USA,Hawaii,"Nimitz State Beach, Oahu",Surfing,M. Filipe,,,"No injury, shark bit surfboard",N,13h00,,"KITV.com, 9/4/2011",2011.09.04.b-Felipe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.b-Felipe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.b-Felipe.pdf,2011.09.04.b,2011.09.04.b,5346,, +2011.09.04.a,04-Sep-11,2011,Unprovoked,AUSTRALIA,Western Australia, Bunker Bay,Body boarding,Kyle James Burden,M,21,FATAL,Y,13h26,White shark,"Sunshine Coast Daily, 9/5/2011",2011.09.04.a-Burden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.a-Burden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.a-Burden.pdf,2011.09.04.a,2011.09.04.a,5345,, +2011.09.02,02-Sep-11,2011,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Daniel True,M,19,Lacerations to ankle & foot,N,11h00,"6' shark, possibly a blactip or spinner shark","WESH.com, 9/2/2011",2011.09.02-True.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.02-True.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.02-True.pdf,2011.09.02,2011.09.02,5344,, +2011.08.31,31-Aug-11,2011,Unprovoked,USA,Florida,Crescent Beach St. Johns County,Surfing,Shane Lancaster,M,19,Lacerations to lower leg,N,11h00,6' shark,"News4JAX, 9/1/2011",2011.08.31-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.31-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.31-Lancaster.pdf,2011.08.31,2011.08.31,5343,, +2011.08.28.b,28-Aug-11,2011,Invalid,AUSTRALIA,Queensland,Fantome Island,Swimming,Rooster,M,48,FATAL,Y,19h30,Shark involvement prior to death not confirmed,"Courier Pigeon, 8/30/2011",2011.08.28-Roosteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28-Roosteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28-Roosteer.pdf,2011.08.28.b,2011.08.28.b,5342,, +2011.08.28.a,28-Aug-11,2011,Unprovoked,USA,Texas,"Grass Island, Aransas County",Wade Fishing,Mary Locklear,F,39,"Lacerations to anterior left shin, abrasion to posteior right leg",N,19h00,,M. Locklear,2011.08.28.a-Locklear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28.a-Locklear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28.a-Locklear.pdf,2011.08.28.a,2011.08.28.a,5341,, +2011.08.26,26-Aug-11,2011,Unprovoked,RUSSIA,Primorsky Krai,Slavyanka,"Standing, collecting sea stars",Pavel Nechaev ,M,,Superficial laceration to shoulder,N,Morning,,"Voice of Russia, 8/27/2011",2011.08.26-Nechaev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.26-Nechaev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.26-Nechaev.pdf,2011.08.26,2011.08.26,5340,, +2011.08.24.b,24-Aug-11,2011,Unprovoked,USA,North Carolina,"Buxton Beach, Dare County",Surfing,Kevin Dinneen,M,21,Lacerations to foot,N,,,Shark Times,2011.08.24.b-Dinneen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.b-Dinneen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.b-Dinneen.pdf,2011.08.24.b,2011.08.24.b,5339,, +2011.08.24.a,24-Aug-11,2011,Unprovoked,USA,North Carolina,Holden Beach. Brunswick County,,male,M,10,Heel bitten,N,15h30,,"WECT.com, 8/24/2011",2011.08.24.a-Holden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.a-Holden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.a-Holden.pdf,2011.08.24.a,2011.08.24.a,5338,, +2011.08.23,23-Aug-11,2011,Unprovoked,SOUTH AFRICA,Western Cape Province,"Lookout Beach, near the Keurbooms river mouth in Plettenberg Bay",Surfing,Tim van Heerden,M,49,FATAL,Y,09h11,"White shark, >6'","News24, 8/23/2011",2011.08.23-VanHeerden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.23-VanHeerden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.23-VanHeerden.pdf,2011.08.23,2011.08.23,5337,, +2011.08.18,18-Aug-11,2011,Unprovoked,RUSSIA,"Peter the Great Bay, Khasan, Primorsky Krai (Far East)",Zheltukhin Island,Swimming,Valery Sidorovich ,M,16,"Lacerations to hip, thigh and knee",N,,,"Ria Novosti, 8/18/2011",2011.08.18-Siderovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.18-Siderovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.18-Siderovich.pdf,2011.08.18,2011.08.18,5336,, +2011.08.17.c.,17-Aug-11,2011,Unprovoked,USA,North Carolina,"Kure Beach, New Hanover County",Wading,Trang Aronian,F,20s,Lacerations to foot,N,17h00,Possibly a 5' to 6' sandtiger shark,C. Creswell,2011.08.17.c-Aronian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.c-Aronian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.c-Aronian.pdf,2011.08.17.c.,2011.08.17.c.,5335,, +2011.08.17.b.,17-Aug-11,2011,Invalid,USA,North Carolina,"Wrightsville Beach, New Hanover County",,,M,12,Abrasions to left hand,N,16h00,Shark involvement not confirmed,"C. Creswell, GSAF; Wway, 8/17/2011",2011.08.17.b-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.b-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.b-child.pdf,2011.08.17.b.,2011.08.17.b.,5334,, +2011.08.17.a,17-Aug-11,2011,Unprovoked,RUSSIA,"Telyakovsky Bay, Khasan, Primorsky Krai (Far East)",Vityaz,Swimming,Denis Udovenko,M,25,Hands severed,N,Evening,4 m shark,"AsiaOne, 8/17/2011",2011.08.17.a-Udovenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.a-Udovenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.a-Udovenko.pdf,2011.08.17.a,2011.08.17.a,5333,, +2011.08.16.c,16-Aug-11,2011,Unprovoked,FRENCH POLYNESIA,Society Islands,"Teahupoo, Tahiti",Surfing,Adam 'Biff' D'Esposito,M,32,"No injury, board bitten",N,15h30,Grey reef shark ,Sharksurvivors.com,2011.08.16.c-D'Esposito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.c-D'Esposito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.c-D'Esposito.pdf,2011.08.16.c,2011.08.16.c,5332,, +2011.08.16.b,16-Aug--2011,2011,Unprovoked,USA,Puerto Rico, Vieques,Floating ,Lydia Strunk,M,27,Lacerations to lower right leg and foot,N,Night,,"El Nuevodia, 7/17/2011",2011.08.16.b-Strunk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.b-Strunk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.b-Strunk.pdf,2011.08.16.b,2011.08.16.b,5331,, +2011.08.16.a,16-Aug-11,2011,Unprovoked,SEYCHELLES,Praslin,Anse Lazio ,Swimming or Snorkeling,Ian Martin Redmond,M,30,FATAL,Y,16h30,"Bull shark, 6'","P. Cahalan, The Independent, 8/17/2011",2011.08.16.a-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.a-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.a-Redmond.pdf,2011.08.16.a,2011.08.16.a,5330,, +2011.08.15,15-Aug-11,2011,Invalid,USA,South Carolina,"Myrtle Beach, Horry County",Playing in the surf,Rudy Varney ,M,7,Puncture wounds to foot,N,,Shark involvement not confirmed,"C. Creswell; Carolina Live, 8/15/2011",2011.08.15-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.15-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.15-Varney.pdf,2011.08.15,2011.08.15,5329,, +2011.08.11,11-Aug--2011,2011,Unprovoked,USA,North Carolina,Beaufort Inlet,Swimming,Don White,M,54,Lower right leg bitten,N,14h00,,"Eyewitness News 9, 8/12/011",2011.08.11-DonnieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.11-DonnieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.11-DonnieWhite.pdf,2011.08.11,2011.08.11,5328,, +2011.08.01,01-Aug-11,2011,Unprovoked,SEYCHELLES,Praslin,Anse Lazio ,Diving,Nicolas Virolle ,M,36,FATAL,Y,15h30,,"Gulf News, 8/2/2011; Clicanoo, 8/4/2011",2011.08.01-Virolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.01-Virolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.01-Virolle.pdf,2011.08.01,2011.08.01,5327,, +2011.07.31,31-Jul-11,2011,Invalid,BRAZIL,Pernambuco,Praia do Pina,Swimming,Gabriel Alves dos Santos ,M,14,Cause of death may have been drowning; remains scavenged by sharks,Y,,Shark involvement prior to death not confirmed,surfguru.com.br ,2011.07.31-GabrielAlves-dos-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.31-GabrielAlves-dos-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.31-GabrielAlves-dos-Santos.pdf,2011.07.31,2011.07.31,5326,, +2011.07.30,30-Jul-11,2011,Sea Disaster,PHILIPPINES,,,Sea disaster,"Fishing vessel. Occupants Gerry Malabago, Mark Anthony Malabago & 2 others",M,43,The two Malabagos were bitten by sharks but survived. The other occupants of the boat were rescued.,N,,,"ABS-CBN News, 8/17/2011",2011.07.30-Malabago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.30-Malabago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.30-Malabago.pdf,2011.07.30,2011.07.30,5325,, +2011.07.25,25-Jul-11,2011,Unprovoked,USA,New Jersey,"Egg Harbor, Atlantic County",Wade Fishing,Eric Aubrey,M,,"No injury, shark bit boot",N,Night,,"NBC, 7/28/2011",2011.07.25-Aubrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.25-Aubrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.25-Aubrey.pdf,2011.07.25,2011.07.25,5324,, +2011.07.22,22-Jul-11,2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Cintza Beach, East London",Surfing,Denver Struwig,M,29,Upper left arm & right leg bitten,N,10h00,"White shark, 3m to 4m","Zigzag, 7/22/2011",2011.07.22-Struwig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.22-Struwig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.22-Struwig.pdf,2011.07.22,2011.07.22,5323,, +2011.07.19,19-Jul-11,2011,Unprovoked,USA,North Carolina,"Ocracoke Island, Hyde County",Boogie Boarding,Lucy Magnum,F,6,Lower right leg & foot bitten,N,17h30,,"C. Creswell, GSAF; WITN.com",2011.07.19-Mangum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.19-Mangum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.19-Mangum.pdf,2011.07.19,2011.07.19,5322,, +2011.07.15,15-Jul-11,2011,Unprovoked,REUNION,Saint-Gilles,Brisants. ,Kayaking or Wave skiing,male,M,,No injury,N,17h00,,"Le Post, 7/19/2011",2011.07.15-Reunion-kayaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.15-Reunion-kayaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.15-Reunion-kayaker.pdf,2011.07.15,2011.07.15,5321,, +2011.07.13.b,13-Jul-11,2011,Unprovoked,USA,Texas,"South Padre Island, Cameron County",Surf fishing,Eugenio Gonzlez Paez,M,,Lacerations to left foot,N,20h30,,E.G. Paez,2011.07.13.b-Paez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13.b-Paez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13.b-Paez.pdf,2011.07.13.b,2011.07.13.b,5320,, +2011.07.13.a,13-Jul-11,2011,Unprovoked,BAHAMAS,Grand Bahama Island,Off Lucaya,Scuba diving,male,M,54,Injuries to arm,N,12h30,,"Royal Bahamas Police Force, 7/13/2011",2011.07.13-diver-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13-diver-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13-diver-Bahamas.pdf,2011.07.13.a,2011.07.13.a,5319,, +2011.07.07.b,07-Jul-11,2011,Unprovoked,USA,Texas,"Sunday Beach, Matagorda Island, Calhoun County",Swimming,Nicholas Vossler,M,12,Foot bitten,N,17h00,,"A. Acosta, Victoria Advocate, 7/9/2011",2011.07.07.b-Vossler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.b-Vossler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.b-Vossler.pdf,2011.07.07.b,2011.07.07.b,5318,, +2011.07.07.a,07-Jul-11,2011,Unprovoked,USA,Texas,"Mustang Island, Nueces County",Wade Fishing,Shawn Hamilton,M,14,Lacerations to right foot,N,,,"J. Martinez, Corpus Christi Caller Times, 7/19/2011",2011.07.07.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.a-Hamilton.pdf,2011.07.07.a,2011.07.07.a,5317,, +2011.07.06,06-Jul-11,2011,Unprovoked,REUNION,Saint-Gilles,Roches Noires,Surfing,Arnaud Dussel ,M,16,Minor injuries: scratches on nose & ankle. Board broken in two,N,14h50,,"V. Boyer, Le Journal de lle de la Runion, 7/7/2011",2011.07.06-Arnaud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.06-Arnaud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.06-Arnaud.pdf,2011.07.06,2011.07.06,5316,, +2011.07.05,05-Jul-11,2011,Unprovoked,COLUMBIA,Sucre,"Libertad, San Onofre",Kayaking,Andrs Tulio Amaya Vidal ,M,17,"Right arm bitten, defense wounds to left hand",N,10h30,,"El Universal, 7/6/2011",2011.07.05-Vidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.05-Vidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.05-Vidal.pdf,2011.07.05,2011.07.05,5315,, +2011.06.30,30-Jun-11,2011,Unprovoked,TURKS & CAICOS,Middle Caicos,Mudjin Harbor,Snorkeling,Tyler Cyronak ,M,28,Lacerations to left shoulder and back,N,13h30,,"T. Cyronak, R. Collier",2011.06.30-Cryonak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.30-Cryonak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.30-Cryonak.pdf,2011.06.30,2011.06.30,5314,, +2011.06.29,29-Jun-11,2011,Unprovoked,BRAZIL,Pernambuco,Praia do Pina,Surfing,Malisson Lima ,M,21,Lacerations to right thigh,N,10h00,,"USA Today, 6/29/2011",2011.06.29-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.29-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.29-Brazil.pdf,2011.06.29,2011.06.29,5313,, +2011.06.28,28-Jun-11,2011,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Aliwal Shoal,Scuba diving,Paolo Stanchi,M,22,Lacerations to left leg and hands,N,12h00,"Dusky shark, 3m","Surfline.com, 6/28/2011",2011.06.28-Stanchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.28-Stanchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.28-Stanchi.pdf,2011.06.28,2011.06.28,5312,, +2011.06.26,26-Jun-08,2011,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Playing in the surf,Cassidy Cartwright ,F,10,Ankle bitten,N,Afternoon,"Bull shark, 6'",C. Creswell & G. Hubbell,2011.06.26-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.26-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.26-Cartwright.pdf,2011.06.26,2011.06.26,5311,, +2011.06.24,24-Jun-11,2011,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Doug Green,M,,Shark leapt onto surfboard; surfer uninjured ,N,13h30,"White shark, 5' k",R. Collier,2011.06.24-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.24-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.24-Green.pdf,2011.06.24,2011.06.24,5310,, +2011.06.21,21-Jun-11,2011,Unprovoked,USA,Florida,"Perdido Key, Escambia County",Jet skiing,Tyler McConnell,M,20,Lacerations to foot and ankle,N,Afternoon,,"B. Raines, Press-Register, 6/21/2011",2011.06.21-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.21-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.21-McConnell.pdf,2011.06.21,2011.06.21,5309,, +2011.06.19.b,19-Jun-11,2011,Unprovoked,TURKS & CAICOS,Caicos Bank,French Cay,Spearfishing,Cefor Lewis,M,35,Right calf bitten,N,,5' shark,"fptci.com, 6/23/2011",2011.06.19.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.b-Lewis.pdf,2011.06.19.b,2011.06.19.b,5308,, +2011.06.19.a,19-Jun-11,2011,Unprovoked,COSTA RICA,Guanacaste,Playa Grande,Surfing,Kevin Moraga,M,15,FATAL,Y,12h15,,"D. Martinez, Tico Times, 6/21/2011",2011.06.19.a-Moraga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.a-Moraga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.a-Moraga.pdf,2011.06.19.a,2011.06.19.a,5307,, +2011.06.15,15-Jun-11,2011,Unprovoked,REUNION,Saint-Gilles-les-Bains,Boucan-Canot,Boogie Boarding,Eddie Aubert,M,31,FATAL,Y,17h30,,"Surfprevention.com, 6/16/2011",2011.06.15-Auber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.15-Auber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.15-Auber.pdf,2011.06.15,2011.06.15,5306,, +2011.06.14.R,Reported 14-Jun-2011,2011,Boat,UNITED KINGDOM,Cornwall,St. Ives,Fishing,16' Dreamcatcher. Occupant: Ian Bussus,,,"No injury, shark slammed into boat",N,,"Oceanic whitetip shark, 7'","G. Box-Turnbull, Daily Mirror, 6/14/2011",2011.06.14.R-St.Ives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.14.R-St.Ives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.14.R-St.Ives.pdf,2011.06.14.R,2011.06.14.R,5305,, +2011.06.12,12-Jun-11,2011,Unprovoked,USA,Florida,"Off Jupiter Inlet, Palm Beach County",Scuba diving,Daniel Webb,M,28,Lacerations to right calf,N,14h30,"Blacktip shark, 4'","WPTV, 6/13/2011",2011.06.12-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.12-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.12-Webb.pdf,2011.06.12,2011.06.12,5304,, +2011.06.06.R,Reported 06-Jun-2011,2011,Unprovoked,COLUMBIA,San Andrs archipelago,Albuquerque Cay,Spearfishing,Jhon Jairo James,M,24,Injuries to right hand and forearm,N,,,"Il Isleno.com, 6/6/2011",2011.06.06.R-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.R-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.R-James.pdf,2011.06.06.R,2011.06.06.R,5303,, +2011.06.06.b,06-Jun-11,2011,Unprovoked,USA,California,"La Jolla, San Diego County",Spearfishing,Justin Schlaefli,M,28,"No injury, minor damage to wetsuit",N,,"Sevengill shark, 6' to 8'",R. Collier,2011.06.06.b-Schlaefli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.b-Schlaefli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.b-Schlaefli.pdf,2011.06.06.b,2011.06.06.b,5302,, +2011.06.06.a,06-Jun-11,2011,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Alan McIntosh,M,19,Puncture wound to calf,N,12h00,3' to 4' shark,"L. Lelis, Orlando Sentinel, 6/7/2011",2011.06.06.a-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.a-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.a-McIntosh.pdf,2011.06.06.a,2011.06.06.a,5301,, +2011.06.01,01-Jun-11,2011,Unprovoked,MALAYSIA,Kedah,Palau Payar,Snorkeling,Canadian teen,F,,Laceration to dorsum of right foot,N,,Blacktip reef shark ,meglognature.blogspot.com,2011.06.01-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.01-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.01-Malaysia.pdf,2011.06.01,2011.06.01,5300,, +2011.05.30,30-May-11,2011,Unprovoked,USA,Texas,"Follett's Island, Brazoria County",Standing or boogie boardin,Kori Robertson,F,22,Lacerations & punctures to right thigh ,N,15h00,,"KHOU.com, 5/31/2011",2011.05.30-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.30-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.30-Robertson.pdf,2011.05.30,2011.05.30,5299,, +2011.05.29,29-May-11,2011,Unprovoked,SOUTH AFRICA,Western Cape Province,Robberg Beach,Surfing,Clinton Nelson,M,33,"No injury, board bumped by shark",N,,White shark,"The George Herald, 5/30/2011",2011.05.29-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.29-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.29-Nelson.pdf,2011.05.29,2011.05.29,5298,, +2011.05.25,25-May-11,2011,Unprovoked,USA,Hawaii,"Lyman Beach, Kailua-Kona",Surfing,Theresa Fernandez,F,,"No injury, board bitten",N,13h15,"Tiger shark, 10'","Star Advertiser, 5/26/2011",2011.05.25-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.25-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.25-Fernandez.pdf,2011.05.25,2011.05.25,5297,, +2011.05.22,22-May-11,2011,Unprovoked,USA,Hawaii,"Lyman Beach, Kailua-Kona",Paddle boarding,Alaina DeBina,F,,"No injury, board bitten",N,12h00,Tiger shark,"Hawaii News Now, 5/22/2011",2011.05.22-DeBina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.22-DeBina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.22-DeBina.pdf,2011.05.22,2011.05.22,5296,, +2011.05.21.a,21-May-11,2011,Unprovoked,NEW CALEDONIA,North Province,Kendec,Kite Boarding,Nathan ____,M,15,"Thigh bitten, FATAL",Y,11h00," Tiger shark, 2.8m","Radio New Zealand & Les Nouvelles Caledoniennes, 5/23/2011",2011.05.21.a-Nathan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.a-Nathan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.a-Nathan.pdf,2011.05.21.a,2011.05.21.a,5295,, +2011.05.21.b,21-May-11,2011,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Levan Point,Spearfishing,Warren Smart,M,28,"Thigh bitten, FATAL",Y,Midday,Zambesi shark,"News 24, 5/21/2011",2011.05.21.b-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.b-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.b-Smart.pdf,2011.05.21.b,2011.05.21.b,5294,, +2011.05.13.b,13-May-11,2011,Unprovoked,USA,Florida,"Ponte Vedra Beach, St Johns County",Body surfing,Bob Brown,M,86,Lacerations to left foot & ankle,N,15h30,,"News 4, 5/16/2011",2011.05.13.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.b-Brown.pdf,2011.05.13.b,2011.05.13.b,5293,, +2011.05.13.a,13-May-11,2011,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Adrian Bronson,M,37,Minor injury; puncture wounds to calf,N,06h30,,"L. Lelis, Orlando Sentinel, 5/13/2011",2011.05.13.a-Bronson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.a-Bronson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.a-Bronson.pdf,2011.05.13.a,2011.05.13.a,5292,, +2011.05.10,10-May-11,2011,Provoked,USA,Florida,Miami,Fishing ,Brian Storch,M,,Laceration to arm by captive shark PROVOKED INCIDENT,N,,"Sandbar shark ,8'","News 7, 5/11/2011",2011.05.10-Storch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.10-Storch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.10-Storch.pdf,2011.05.10,2011.05.10,5291,, +2011.05.07.R,Reported 07-May-2011,2011,Invalid,UNITED ARAB EMIRATES (UAE),Umm al Qaywayan Province,Khor Fakkan ,Fishing ,Mustafa Al Hammadi,M,43,"Erroneously reported on several internet sites as a ""shark attack"", it was the shark 8', 300-kg mako shark that was attacked, not the fisherman",N,,,"Emirates 24/7 News, 5/7/2011",2011.05.07.R-UAE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.07.R-UAE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.07.R-UAE.pdf,2011.05.07.R,2011.05.07.R,5290,, +2011.05.04,04-May-11,2011,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Palm Beach,Spearfishing,Trevor Burger,M,37,Calf bitten,N,,,"The Witness, 5/10/2011",2011.05.04-Burger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.04-Burger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.04-Burger.pdf,2011.05.04,2011.05.04,5289,, +2011.04.26,26-Apr-11,2011,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",Spearfishing,Anthony Segrich,M,32,Calf bitten,N,,"Bull shark, 12'","J. Wigham III, Palm Beach Post, 4/27/2011",2011.04.26-Seagrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.26-Seagrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.26-Seagrich.pdf,2011.04.26,2011.04.26,5288,, +2011.04.23,23-Apr-11,2011,Unprovoked,AUSTRALIA,Western Australia,Red Bluffs,Washing sand off a speared fish,Marcus van der Vyver,M,17,Heel bitten,N,15h00,"reef shark, 1.5m","T. Peake, GSAF",2011.04.23-VanderVyver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.23-VanderVyver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.23-VanderVyver.pdf,2011.04.23,2011.04.23,5287,, +2011.04.22,22-Apr-11,2011,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing ,Ronald White,M,49,Minor puncture wounds,N,15h30,1' to 2' shark,S. Petersohn,2011.04.22-RonWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.22-RonWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.22-RonWhite.pdf,2011.04.22,2011.04.22,5286,, +2011.04.16,16-Apr-11,2011,Unprovoked,NEW ZEALAND,South Island,Snapper Point,Surfing,Laine Hobson,M,41,Puncture to left hand,N,Afternoon,possibly a bronze whaler shark,"R.D. Weeks, GSAF",2011.04.16-Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.16-Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.16-Hobson.pdf,2011.04.16,2011.04.16,5285,, +2011.04.12,13-Apr-11,2011,Unprovoked,INDONESIA,Bali,Balian,Surfing,Joe Ferrar,M,,Lacerations to forearm,N,Morning," Bull shark, 2.5 m","A.Brenneka, SharkAttackSurvivors.com",2011.04.12-Ferrar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.12-Ferrar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.12-Ferrar.pdf,2011.04.12,2011.04.12,5284,, +2011.04.08,08-Apr-11,2011,Unprovoked,FIJI,Vitu Levu,"Malake Island, Ra Province",Diving,Etuate Caucau ,M,27,Minor injuries to left leg and hand,N,Afternoon,,"Bula Namaste, 4/10/2011",2011.04.08-Caucau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.08-Caucau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.08-Caucau.pdf,2011.04.08,2011.04.08,5283,, +2011.03.29.R,Reported 29-Mar-2011,2011,Provoked,USA,Texas,Matagorda Beach,"Standing, holding shark pup",Orlando,M,,Minor laceration to shoulder from captive shark PROVOKED INCIDENT,N,,Blacktip shark pup,"You Tube, Baby Blacktip Shark Attack - How NOT to hold a shark.",2011.03.29.R-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.29.R-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.29.R-Orlando.pdf,2011.03.29.R,2011.03.29.R,5282,, +2011.03.24,24-Mar-11,2011,Unprovoked,MEXICO,Quintana Roo,"Gaviotas Beach, Cancun",Swimming,Liuba Taran,F,,Lower leg & foot bitten,N,,Bull shark,"Canadian press, 3/25/2011",2011.03.24-Taran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.24-Taran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.24-Taran.pdf,2011.03.24,2011.03.24,5281,, +2011.03.23,23-Mar-11,2011,Unprovoked,AUSTRALIA,New South Wales,Crowdy Head,Surfing,David Pearson,M,48,Severe injury to left forearm,N,17h45,"Bull shark, 2.5m","Nine News, 3/24/2011",2011.03.23-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.23-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.23-Pearson.pdf,2011.03.23,2011.03.23,5280,, +2011.03.21.b,21-Mar-11,2011,Unprovoked,MEXICO,Quintana Roo,,Swimming,Andrew Masternak ,M,46,Right foot bitten,N,,,"Mississauga.net, 3/29/2011",2011.03.21.b-Masternak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.b-Masternak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.b-Masternak.pdf,2011.03.21.b,2011.03.21.b,5279,, +2011.03.21.a,21-Mar-11,2011,Unprovoked,FIJI,,Nukudamu ,Diving / fishing,Metereti Jeke,M,30,"Left forearm severely bitten, surgically amputated",N,16h00,,"Fiji Times Online, 3/24/2011",2011.03.21.a-Jeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.a-Jeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.a-Jeke.pdf,2011.03.21.a,2011.03.21.a,5278,, +2011.03.16,16-Mar-11,2011,Unprovoked,AUSTRALIA,New South Wales,"Jimmys Beach, Port Stephens",Wakeboarding,Lisa Mondy,F,24,"Severe injuries to head, neck, shoulder & upper left arm",N,13h00,3 m to 4 m shark,"The Sydney Morning Herald, 3/17/2011",2011.03.16-Mondy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.16-Mondy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.16-Mondy.pdf,2011.03.16,2011.03.16,5277,, +2011.03.10.R,Reported 10-Mar-2010,2011,Invalid,EGYPT,South Sinai Peninsula,Sharm-el-Sheikh,,female,F,,"Apparent drowning, and subsequent scavenging by 16' tiger shark",N,,,"Swindon Advertiser, 3/10/2011 ",2011.03.10.R-Sharm-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.R-Sharm-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.R-Sharm-scavenging.pdf,2011.03.10.R,2011.03.10.R,5276,, +2011.03.10,10-Mar-11,2011,Unprovoked,AUSTRALIA,New South Wales,"Tallow Beach, Byron Bay",Surfing,Prem Puri,M,,"No injury, surboard broken",N,,,"Northern Star, 3/11/2011",2011.03.10.a-Puri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.a-Puri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.a-Puri.pdf,2011.03.10,2011.03.10,5275,, +2011.02.28.R,Reported 28-Feb-2011,2011,Provoked,AUSTRALIA,Queensland,Between ,Fishing,Shane Nyari,M,36,Lacerations to right hand by hooked shark PROVOKED INCIDENT,N,10h45,"Bull shark, 2m","C. Eksander, GSAF",2011.02.28.R-Nyari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.28.R-Nyari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.28.R-Nyari.pdf,2011.02.28.R,2011.02.28.R,5274,, +2011.02.23,23-Feb-11,2011,Unprovoked,NEW CALEDONIA, Loyalty Islands,"Bay of Bweedro, Ouva",Spearfishing,Jean-Luc Majele,M,21,Lacerations to left forearm,N,Early afternoon,1.5 m shark,"Les Nouvelles Caledoniennes, 2/25/2011",2011.02.23-Jean-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.23-Jean-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.23-Jean-Luc.pdf,2011.02.23,2011.02.23,5273,, +2011.02.19,18-Feb-11,2011,Unprovoked,REUNION,Saint Gilles ,Trois-Roches,Surfing,Eric Dargent ,M,32,Left leg severed at the knee,N,18h30,,"Clicanoo.com, 2/21/2011",2011.02.19-Dargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.19-Dargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.19-Dargent.pdf,2011.02.19,2011.02.19,5272,, +2011.02.17,17-Feb-11,2011,Unprovoked,AUSTRALIA,South Australia,Off Perforated Island near Coffin Bay,Diving for abalone,Peter Clarkson,M,49,FATAL,Y,18h20,White shark x 2,"T. Peake, GSAF",2011.02.17-Clarkson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.17-Clarkson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.17-Clarkson.pdf,2011.02.17,2011.02.17,5271,, +2011.02.13,13-Feb-11,2011,Provoked,AUSTRALIA,Queensland,Sunshine Beach,Fishing,male,M,,Lacerations to calf by hooked shark PROVOKED INCIDENT,N,10h40,1 m shark,"Courier-Mail, 2/14/2011",2011.02.13-SunshineBeach-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.13-SunshineBeach-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.13-SunshineBeach-angler.pdf,2011.02.13,2011.02.13,5270,, +2011.02.12,12-Feb-11,2011,Unprovoked,AUSTRALIA,Western Australia,Exmouth,Snorkeling,Allen ___,M,58,Arm bitten,N,Late afternoon,,"T. Peake, GSAF",2011.02.12-Exmouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.12-Exmouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.12-Exmouth.pdf,2011.02.12,2011.02.12,5269,, +2011.02.04.R,Reported 04-Feb-2011,2011,Provoked,MEXICO,Colima,"Manzanillo, Revillagigedo Islands",Shark fishing on the Ricardo Astorga,Porfirio Lugo Camacho ,M,,Left foot bitten PROVOKED INCIDENT,N,,,"AngelGuardianMX, 2/4/2011",2011.02.04.R-Camacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.04.R-Camacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.04.R-Camacho.pdf,2011.02.04.R,2011.02.04.R,5268,, +2011.02.02,02-Feb-11,2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Sundays River Mouth, Port Elizabeth",Surf fishing,Johannes Jonk,M,37,Right leg bitten,N,,,"Iafrica.com, 2/2/2011",2011.02.02-Jonk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.02-Jonk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.02-Jonk.pdf,2011.02.02,2011.02.02,5267,, +2011.01.31,31-Jan-11,2011,Unprovoked,MEXICO,Quintana Roo,Cancun,Swimming,Nicole Moore,F,38,"Leg, forearm & hand severely bitten",N,12h00,6' shark,"El Diario de Yucatan, 2/1/2011",2011.01.31-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.31-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.31-Moore.pdf,2011.01.31,2011.01.31,5266,, +2011.01.28,28-Jan-11,2011,Provoked,MEXICO,Colima,Revillagigedo Islands,Shark fishing on the Don Agustn-VI. ,C. Pedro Luis Beltrn Camargo ,M,25,Left eg bitten PROVOKED INCIDENT,N,,,"Sun Sentinel, 1/30/2011",2011.01.28-Camargo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.28-Camargo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.28-Camargo.pdf,2011.01.28,2011.01.28,5265,, +2011.01.26,26-Jan-11,2011,Unprovoked,BAHAMAS,West End,Tiger Beach,Scuba diving,Jim Abernethy,M,55,Arm bitten ,N,15h00,Caribbean reef shark,J. Abernethy,2011.01.26-Abernethy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.26-Abernethy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.26-Abernethy.pdf,2011.01.26,2011.01.26,5264,, +2011.01.20,20-Jan-11,2011,Invalid,AUSTRALIA,New South Wales,Cudgen Creek ,Swimming,Mia Merlini,F,7,Lacerations to both legs,N,17h00,Shark involvement not confirmed,"L. Brodnik, Tweed News, 1/22/2011",2011.01.20-Merlini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.20-Merlini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.20-Merlini.pdf,2011.01.20,2011.01.20,5263,, +2011.01.15,15-Jan-11,2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Surfing,Zama Ndamase,M,16,FATAL,Y,12h30,,"The Mercury, 1/15/211",2011.01.15-Ndamase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.15-Ndamase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.15-Ndamase.pdf,2011.01.15,2011.01.15,5262,, +2011.01.12.R,Reported 12-Jan 2011,2011,Unprovoked,MEXICO,Quintana Roo,Xcalak ,Attempting to fix motor,Juan Miguel Infante Ramrez,M,37,Bitten on leg and groin,N,,,Sharksurvivors.com,2011.01.12.R-Infante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.12.R-Infante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.12.R-Infante.pdf,2011.01.12.R,2011.01.12.R,5261,, +2011.01.03,03-Jan-11,2011,Boat,AUSTRALIA,Western Australia,Busselton,Fishing,"A 'tinnie"". Occupants :Paul Sweeny, Paul Nieuwkerdk, John and Mark Kik ",,,"No injury, shark nudged boat and bit propeller",N,12h00,White shark,"S. Gordon, Sky News, 1/4/2011",2011.01.03-BusseltonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.03-BusseltonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.03-BusseltonBoat.pdf,2011.01.03,2011.01.03,5260,, +2010.12.26,26-Dec-10,2010,Unprovoked,USA,Hawaii," Kahului, Maui",Body boarding,Vaun Stover-French ,M,16,"Lacerations to his lower left leg, calf, foot & ankle",N,15h35,6' shark,"J. Howard, Surfing, 12/27/2010",2010.12.26-Stover-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.26-Stover-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.26-Stover-French.pdf,2010.12.26,2010.12.26,5259,, +2010.12.17,17-Dec-10,2010,Unprovoked,FIJI,Vitu Levu,Sigatoka,Surfing,Jordi Gracia ,M,,Lacerations to foot,N,AM,,"Fiji Times Online, 12/19/2010",2010.12.17-Gracia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.17-Gracia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.17-Gracia.pdf,2010.12.17,2010.12.17,5258,, +2010.12.11,11-Dec-10,2010,Unprovoked,USA,Hawaii,"Tavares Bay, Maui",Surfing,Andrew Wilson,M,46,Lacerations to right foot,N,13h51,,"Maui News, 12/14/2010",2010.12.11-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.11-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.11-Wilson.pdf,2010.12.11,2010.12.11,5257,, +2010.12.05,05-Dec-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,"Middle Garden, Sharm el-Shiekh",Snorkeling,Renate Seiffert,F,70,FATAL,Y,12h00,"Oceanic whitetip shark, 2.5m ","M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.12.05-Renate- Seiffert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.05-Renate- Seiffert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.05-Renate- Seiffert.pdf,2010.12.05,2010.12.05,5256,, +2010.12.03.R,Reported 03-Dec-2010,2010,Unprovoked,INDONESIA,Bali,Balian,Surfing,Wei Ong,M,,Lacerations to right hand,N,,,"M. Trott, Indo Surf Life, 12/5/2010",2010.12.03.R-Ong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.03.R-Ong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.03.R-Ong.pdf,2010.12.03.R,2010.12.03.R,5255,, +2010.12.01.b,01-Dec-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,"Ras Nasrani, Sharm el-Sheikh",Snorkeling,Yevgeniy (Eugene) Trishkin ,M,54,Both arms severely bitten,N,11h00,Mako shark ,"M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.12.01.b-Yevgeniy-Trishkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.b-Yevgeniy-Trishkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.b-Yevgeniy-Trishkin.pdf,2010.12.01.b,2010.12.01.b,5254,, +2010.12.01.a,01-Dec-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,"Ras Nasrani, Sharm el-Sheikh",Snorkeling,Viktor Koliy ,M,46,Lacerations to right leg,N,10h55,Mako shark,"M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.12.01.a-Viktor-Koliy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.a-Viktor-Koliy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.a-Viktor-Koliy.pdf,2010.12.01.a,2010.12.01.a,5253,, +2010.11.30.b,30-Nov-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,"Coral Bay, Sharm el-Sheikh",Snorkeling,Lyudmila Stolyarova ,F,70,"Foot severed, Right forearm severed, lacerations to left hand (defense wounds)",N,14h55,"Oceanic whitetip shark, 2.5m, female","M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.11.30.b-Lyudmila-Stolyarova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.b-Lyudmila-Stolyarova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.b-Lyudmila-Stolyarova.pdf,2010.11.30.b,2010.11.30.b,5252,, +2010.11.30.a,30-Nov-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,"Coral Bay, Sharm el-Sheikh",Snorkeling,Olga Martsinko ,F,48,Foot and arm bitten,N,14h40,"Oceanic whitetip shark, 2.5m, female","M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.11.30.a-Olga Marsyenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.a-Olga Marsyenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.a-Olga Marsyenko.pdf,2010.11.30.a,2010.11.30.a,5251,, +2010.11.27.R,Reported 27-Nov-2010,2010,Unprovoked,SAMOA,,,Fishing,male,M,47,Serious wounds to chest,N,Morning,,"Samoa Observer, 11/27/2010",2010.11.27.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.R-Samoa.pdf,2010.11.27.R,2010.11.27.R,5250,, +2010.11.27,27-Nov-10,2010,Invalid,AUSTRALIA,Western Australia,Native Dog Beach,Swimming,Michael Utley,M,,Death may have been due to drowning,Y,,Shark involvement not confirmed,"mailonline.com, 12/2/2010",2010.11.27.a-Utley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.a-Utley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.a-Utley.pdf,2010.11.27,2010.11.27,5249,, +2010.11.19,19-Nov-10,2010,Provoked,USA,Palmyra Atoll,,Snorkeling,Kydd Pollock,M,33,Head bitten by netted shark PROVOKED INCIDENT,N,13h30,,"Sunday News, 12/12/2010",2010.11.19-Pollock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.19-Pollock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.19-Pollock.pdf,2010.11.19,2010.11.19,5248,, +2010.11.15,15-Nov-10,2010,Unprovoked,DOMINICAN REPUBLIC,,Boca Chica,Diving,Pinales Pedro Zapata,M,21,FATAL,Y,Morning,,"Dominican Today, 11/15/2010",2010.11.15-Zapata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.15-Zapata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.15-Zapata.pdf,2010.11.15,2010.11.15,5247,, +2010.11.14,14-Nov-10,2010,Unprovoked,INDONESIA,Bali,Balian,Surfing,male,M,,Hand bitten ,N,,,Bali Waves,2010.11.14-Bali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.14-Bali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.14-Bali.pdf,2010.11.14,2010.11.14,5246,, +2010.11.12.R,Reported 12-Nov-2010,2010,Boat,AUSTRALIA,Western Australia,Between Carnac and Garden Islands,Fishing,4-m runabout. Occupant: Allen Gade,M,,No injury to occupant. Shark rammed bottom of the boat,N,Night,White shark,R. Hidding,2010.11.12.R-Gade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.12.R-Gade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.12.R-Gade.pdf,2010.11.12.R,2010.11.12.R,5245,, +2010.10.30,30-Oct-10,2010,Unprovoked,AUSTRALIA,Western Australia,Off Garden Island,Snorkeling,Elyse Frankcom,F,20,Torso and left buttock bitten,N,12h30,White shark,"Perth Now, 10/30/2010",2010.10.30-Francom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.30-Francom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.30-Francom.pdf,2010.10.30,2010.10.30,5244,, +2010.10.28.R,Reported 28-Oct-2010,2010,Unprovoked,AUSTRALIA,Western Australia,Cheynes Beach,Spearfishing,Deacon Plant,M,,"No injury, shark head-butted diver's thigh",N,,,"Albany & Great Southern Weekender, 10/28/2010",2010.10.28.R-Plant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.R-Plant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.R-Plant.pdf,2010.10.28.R,2010.10.28.R,5243,, +2010.10.28,28-Oct-10,2010,Unprovoked,USA,Oregon,Florence,Surfing,Seth Mead,M,,No injury to surfer,N,15h20,,R. Collier,2010.10.28.a-SethMead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.a-SethMead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.a-SethMead.pdf,2010.10.28,2010.10.28,5242,, +2010.10.25,25-Oct-10,2010,Provoked,AZORES,,350 miles from Faial Island,Fishing,crewman from the Gedi,M,,PROVOKED INCIDENT? ,N,,,"Jornal Diario, 10/26/2010",2010.10.25-Gedi-crewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.25-Gedi-crewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.25-Gedi-crewman.pdf,2010.10.25,2010.10.25,5241,, +2010.10.23.b,23-Oct-10,2010,Unprovoked,USA,Maine,"Burnt Cove near Eastport, Washington County",Scuba diving,Scott MacNichol,M,30,"No injury to diver, shark bit his video camera",N,Afternoon,"Porbeagle shark, 8' ","Bangor Daily News, 10/27/2010",2010.10.23-MacNichol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23-MacNichol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23-MacNichol.pdf,2010.10.23.b,2010.10.23.b,5240,, +2010.10.23.a,23-Oct-10,2010,Unprovoked,AUSTRALIA,Western Australia,Wedge Island,Kite Surfing,Liam Walker,M,14,Lacerations to lower right leg,N,,,Sharksurvivors.com,2010.10.23.a-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23.a-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23.a-Walker.pdf,2010.10.23.a,2010.10.23.a,5239,, +2010.10.22,22-Oct-10,2010,Unprovoked,USA,California,"Surf Beach, Vandenberg AFB, Santa Barbara County",Body boarding,Lucas Ransom,M,19,FATAL,Y,08h50,"White shark, 14' to 18' ",R. Collier,2010.10.22-Ransom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.22-Ransom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.22-Ransom.pdf,2010.10.22,2010.10.22,5238,, +2010.10.20,20-Oct-10,2010,Unprovoked,EGYPT,South Sinai Peninsula,Sharm el-Sheikh ,Snorkeling,Elena Rubanovich.,F,,Multiple lacerations to left leg and foot,N,A.M.,,M. Salem; Y. Sobolev,2010.10.20-Rubanovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.20-Rubanovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.20-Rubanovich.pdf,2010.10.20,2010.10.20,5237,, +2010.10.09,09-Oct-10,2010,Unprovoked,AUSTRALIA,New South Wales,Mullaway Headland,Surfing,Ken Turk,M,22,Foot bitten,N,13h30,"Bull shark, 1.4m ","The Coffs Coast Advocate, 10/16/2010",2010.10.09-Turk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.09-Turk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.09-Turk.pdf,2010.10.09,2010.10.09,5236,, +2010.10.02.b,02-Oct-10,2010,Unprovoked,BAHAMAS,Exuma Islands,,Snorkeling,Jose Molla,M,,Calf bitten,N,,Lemon shark,Sharksurvivors.com,2010.10.02.b-Molla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.b-Molla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.b-Molla.pdf,2010.10.02.b,2010.10.02.b,5235,, +2010.10.02.a,02-Oct-10,2010,Unprovoked,BAHAMAS,Abaco Islands,Elbow Cay,Surfing,Jane Engle,F,,Bitten between left ankle & knee,N,15h00,Possibly a 6' lemon shark,"The Tribune, 10/4/2010",2010.10.02.a-Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.a-Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.a-Engle.pdf,2010.10.02.a,2010.10.02.a,5234,, +2010.10.01,01-Oct-10,2010,Unprovoked,SOUTH AFRICA,Western Cape Province,"Melkbaai, Strand",Surfing,male,M,Teen,3 lacerations to foot,N,14h30,,"News24.com, 10/1/2010",2010.10.01-Melkbaai-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.01-Melkbaai-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.01-Melkbaai-surfer.pdf,2010.10.01,2010.10.01,5233,, +2010.09.27,27-Sep-10,2010,Unprovoked,USA,Oregon,Winchester Bay,Surfing,David Lowden,M,29,"No injury, surfboard rammed",N,16h00,White shark,R. Collier,2010.09.27-Lowden-COLLIER.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.27-Lowden-COLLIER.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.27-Lowden-COLLIER.pdf,2010.09.27,2010.09.27,5232,, +2010.09.24,24-Sep-10,2010,Unprovoked,USA,Virginia,Sandridge Beach,Surfing,Caleb Kauchak,M,18,Bite to left ankle and knee,N,16h30,,"K.Adams, The Virginian Pilot, 9/24/2010",2010.09.24-Kauchak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.24-Kauchak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.24-Kauchak.pdf,2010.09.24,2010.09.24,5231,, +2010.09.21,21-Sep-10,2010,Unprovoked,SOUTH AFRICA,Western Cape Province,Between Dyer Island and Pearly Beach,Swimming,Khanyisile Momoza ,M,29,FATAL,Y,,White shark,"Cape Argus, 9/25/2010",2010.09.21-Momoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.21-Momoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.21-Momoza.pdf,2010.09.21,2010.09.21,5230,, +2010.09.13, 13-Sep-2010,2010,Unprovoked,AUSTRALIA,New South Wales,Fraser's Reef,Surfing,Jake Davis,M,15,Lacerations and puncture wounds to leg and foot,N,17h00,2m shark,"Daily Telegraph, 9/16/2010",2010.09.13-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.13-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.13-Davis.pdf,2010.09.13,2010.09.13,5229,, +2010.09.07,07-Sep-10,2010,Unprovoked,USA,Florida,"St. Augustine, St. John's County",Swimming,Jason Whitworth,M,27,Lacerations to left wrist,N,,3' shark,"St. Augustine Record, 9/9/2010",2010.09.07-Whitworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.07-Whitworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.07-Whitworth.pdf,2010.09.07,2010.09.07,5228,, +2010.09.06.R,Reported 06-Sep-2010,2010,Unprovoked,TONGA,Ha'api ,,Swimming / Whale Watching,Bjrn Jensen,M,24,Puncture wounds to right foot,N,12h00,,"New Zealand Herald, 9/6/2010",2010.09.06.R-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.06.R-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.06.R-Jensen.pdf,2010.09.06.R,2010.09.06.R,5227,, +2010.09.04, 04-Sep-2010,2010,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kris Kerr,M,,"No injury, shark charged surfboard",N,,,"CBS News, 9/10/2010",2010.09.04-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.04-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.04-Kerr.pdf,2010.09.04,2010.09.04,5226,, +2010.09.03.b,03-Sep-10,2010,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Coffman,M,24,Lacerations to right hand ,N,12h00,,"S. Petersohn; Daytona Beach News-Journal, 9/3/2010",2010.09.03.b-Coffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.b-Coffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.b-Coffman.pdf,2010.09.03.b,2010.09.03.b,5225,, +2010.09.03.a,03-Sep-10,2010,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Andrew Heald,M,24,Left thigh bitten,N,09h00,,"S. Petersohn; M. Johnson, Daytona Beach News-Journal, 9/3/2010",2010.09.03.a-Heald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.a-Heald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.a-Heald.pdf,2010.09.03.a,2010.09.03.a,5224,, +2010.09.02,02-Sep-10,2010,Unprovoked,SOLOMON ISLANDS,Western Province,,,Benjamin D'Emden,M,34,Lacerations to face and neck,N,,,"The Daily Telegraph, 9/3/2010",2010.09.02-D'Emden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.02-D'Emden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.02-D'Emden.pdf,2010.09.02,2010.09.02,5223,, +2010.08.29,29-Aug-10,2010,Invalid,BAHAMAS,Exuma Islands,"Off Jaws Beach, New Providence Island",Swimming after boat became disabled,Judson Newton,M,43,"His partial remains were recovered from a 12' tiger shark on September 5, 2010. Cause of death was thought to be drowning",Y,,,"P.Nunez, Tribune",2010.08.29-Newton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.29-Newton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.29-Newton.pdf,2010.08.29,2010.08.29,5222,, +2010.08.18,18-Aug-10,2010,Unprovoked,USA,Florida,Crescent Beach St. Johns County,Boogie Boarding,Seth Shorten,M,10,Minor injuries to foot,N,09h00,,"Gainesville Sun, 8/18/2010",2010.08.18-Shorten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.18-Shorten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.18-Shorten.pdf,2010.08.18,2010.08.18,5221,, +2010.08.17,17-Aug-10,2010,Unprovoked,AUSTRALIA,Western Australia,Cowaramup Bay,Surfing,Nicholas Edwards,M,31,FATAL,Y,08h05,White shark,"The Australian, 8/17/2010",2010.08.17-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.17-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.17-Edwards.pdf,2010.08.17,2010.08.17,5220,, +2010.08.14,14-Aug-10,2010,Unprovoked,USA,California,"Pigeon Point, San Mateo County",Kayak Fishing,Adam Coca,M,45,"No injury, kayak bitten",N,,White shark,"Mercury News, 8/15/2010",2010.08.14-Coca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.14-Coca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.14-Coca.pdf,2010.08.14,2010.08.14,5219,, +2010.08.10.b,10-Aug-10,2010,Provoked,AUSTRALIA,Queensland,"Three Mile Creek, Townsville",Fishing,female,F,,Leg bitten by hooked shark PROVOKED INCIDENT,N,19h00,,"Courier-Mail, 8/10/2010",2010.08.10.b-Townsville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.b-Townsville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.b-Townsville.pdf,2010.08.10.b,2010.08.10.b,5218,, +2010.08.10,10-Aug-10,2010,Unprovoked,SOUTH KOREA,Jeju Province,Jeju Island,Swimming,Jaylee Pierce,F,16,Lacerations to left lower leg,N,Late afternoon,,"J. Williamson, Texarkana Gazette, 9/20/2010",2010.08.10.a-Pierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.a-Pierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.a-Pierce.pdf,2010.08.10,2010.08.10,5217,, +2010.08.08,08-Aug-10,2010,Unprovoked,AUSTRALIA,New South Wales,Crescent Head,Surfing,Rick Carroll,M,47,Left foot bitten,N,08h00,,"Macleay Argus, 8/10/2010",2010.08.08-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.08-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.08-Carroll.pdf,2010.08.08,2010.08.08,5216,, +2010.08.07.b,07-Aug-10,2010,Unprovoked,USA,North Carolina,"Figure Eight Island, Wilmington, New Hanover County",Surfing,Josh Clement,M,25,Left foot bitten,N,15h00,,"C. Creswell, GSAF",2010.08.07.b-Clement.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.b-Clement.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.b-Clement.pdf,2010.08.07.b,2010.08.07.b,5215,, +2010.08.07.a,07-Aug-10,2010,Unprovoked,MALTA,,"Off Fort St. Elmo, Valetta",Windsurfing,David Bonavia,M,35,"No injury, sail bitten",N,,3 m shark,"A. Buttigieg, GSAF",2010.08.07.a-Bonavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.a-Bonavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.a-Bonavia.pdf,2010.08.07.a,2010.08.07.a,5214,, +2010.08.05,05-Aug-10,2010,Invalid,USA,Florida,"Bethune Beach, Volusia County",Swimming,Judy Fischman,F,,Minor abrasions to legs when she was lifted on the back of a large marine animal,N,19h15,Shark involvement not confirmed,"Daytona Beach News-Journal, 8/7/2010",2010.08.05-Fischman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.05-Fischman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.05-Fischman.pdf,2010.08.05,2010.08.05,5213,, +2010.08.02.b,02-Aug-10,2010,Unprovoked,USA,California,"Near oil rig Hondo, 5 nm from Gaviota, Santa Barbara County",Kayaking,Duane Strosaker,M,,"No injury, kayak bitten",N,12h40,"White shark, 15'","R. Collier, GSAF",2010.08.02.b-Strosaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.b-Strosaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.b-Strosaker.pdf,2010.08.02.b,2010.08.02.b,5212,, +2010.08.02.a,02-Aug-10,2010,Unprovoked,USA,Florida,"Micklers Landing, St. Johns County",Standing,Kimberly Presser,F,37,Lacerations to forearm,N,11h00,3' to 4' shark,"News4JAX, 8/2/2010",2010.08.02.a-Presser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.a-Presser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.a-Presser.pdf,2010.08.02.a,2010.08.02.a,5211,, +2010.07.25,25-Jul-10,2010,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Standing,Alex Stamm,M,16,Lacerations to right lower leg,N,,4' shark,"C. Creswell, GSAF",2010.07.25-Stamm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.25-Stamm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.25-Stamm.pdf,2010.07.25,2010.07.25,5210,, +2010.07.23,23-Jul-10,2010,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Surfing,Clayton Schulz,M,20,Left foot bitten,N,16h30,,"C. Creswell, GSAF",2010.07.23-Schulz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.23-Schulz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.23-Schulz.pdf,2010.07.23,2010.07.23,5209,, +2010.07.19,19-Jul-10,2010,Unprovoked,USA,South Carolina,Myrtle Beach,Swimming,Josh Myers,M,10,Minor lacerations to left calf,N,10h35,Possibly a small blacktip shark,"C. Creswell, GSAF",2010.07.19-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.19-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.19-Myers.pdf,2010.07.19,2010.07.19,5208,, +2010.07.17.b,17-Jul-10,2010,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Swimming,Kendall Parker,F,13,Lacerations to right forearm,N,13h30,"Sandtiger shark, 4' to 5'","C. Creswell, GSAF",2010.07.17.b-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.b-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.b-Parker.pdf,2010.07.17.b,2010.07.17.b,5207,, +2010.07.17.a,17-Jul-10,2010,Unprovoked,USA,Florida,New Smyrna Beach,Surfing,Jimmy Johnston,M,55,Minor lacerations to right foot,N,,A small spinner shark,S. Petersohn,2010.07.17.a-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.a-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.a-Johnston.pdf,2010.07.17.a,2010.07.17.a,5206,, +2010.07.16.b,16-Jul-10,2010,Provoked,SPAIN,Grand Canary Island,"Sardina del Norte, Gldar",Swimming,male,M,9,Lacerations to left foot when he stepped on the shark PROVOKED INCIDENT,N,19h15,Angel shark,"gldahora, 7/16/2010",2010.07.16.b-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.b-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.b-Spain.pdf,2010.07.16.b,2010.07.16.b,5205,, +2010.07.16.a,16-Jul-10,2010,Unprovoked,USA,Texas,Galveston,Fishing,Charlie Gauzer,M,,Leg bitten,N,,,"NY Post, 7/16/2010",2010.07.16.a-Gauzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.a-Gauzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.a-Gauzer.pdf,2010.07.16.a,2010.07.16.a,5204,, +2010.07.11,11-Jul-10,2010,Provoked,USA,Florida,"Lauderdale-by-the-Sea, Broward County",Fishing,male,M,,Small laceration to forearm from netted shark PROVOKED INCIDENT,N,,"Nurse shark, juvenile ","News 7, 7/13/2010",2010.07.11-Lauderdale-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.11-Lauderdale-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.11-Lauderdale-fisherman.pdf,2010.07.11,2010.07.11,5203,, +2010.07.04,04-Jul-10,2010,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Two Mile Reef, Sodwana Bay",Snorkeling,Sarah Haiden,F,21,Left leg bitten,N,,,The Sowetan. 7/9/2010,2010.07.04-Haiden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.04-Haiden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.04-Haiden.pdf,2010.07.04,2010.07.04,5202,, +2010.07.03,03-Jul-10,2010,Provoked,USA,New York,Off Long Island,Fishing,Frank Joseph,M,20,Laceration to right bicep by hooked shark PROVOKED INCIDENT,N,12h30,"Blue shark, 7'",NBC,2010.07.03-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.03-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.03-Joseph.pdf,2010.07.03,2010.07.03,5201,, +2010.07.02.b,02-Jul-10,2010,Unprovoked,USA,California,"Pismo Beach, San Luis Obispo County",Surfing,Derek Crane,M,19,Laceration to left foot,N,Evening,4' shark,R. Collier,2010.07.02.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.b-Crane.pdf,2010.07.02.b,2010.07.02.b,5200,, +2010.07.02.a,02-Jul-10,2010,Unprovoked,USA,California,"Dog Patch, San Onofre",Stand-Up Paddleboarding,David Bull,M,48,"No injury, board bumped by shark",N,15h15,8' shark,R. Collier,2010.07.02.a-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.a-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.a-Bull.pdf,2010.07.02.a,2010.07.02.a,5199,, +2010.06.27,27-Jun-10,2010,Unprovoked,USA,Texas,"Eight Mile Beach, Galveston",Surfing,Chad Rogers,M,20,Lacerations to right foot,N,,"Bull shark, 5'",KMBC,2010.06.27-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.27-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.27-Rogers.pdf,2010.06.27,2010.06.27,5198,, +2010.06.25.b,25-Jun-10,2010,Unprovoked,USA,South Carolina,Fripp Island,Boogie Boarding,Ella Morris,F,6,Laceration to leg,N,,,"C. Creswell, GSAF",2010.06.25.b-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.b-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.b-Morris.pdf,2010.06.25.b,2010.06.25.b,5197,, +2010.06.25.a,25-Jun-10,2010,Unprovoked,USA,North Carolina,"Topsail Island, Pender County",Swimming,Carley Schlentz,F,13,Laceration to left foot,N,13h00,,"C. Creswell, GSAF",2010.06.25.a-Schlentz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.a-Schlentz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.a-Schlentz.pdf,2010.06.25.a,2010.06.25.a,5196,, +2010.06.15,15-Jun-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Huynh Nhu Hoang,M,17,Laceration to left foot,N,17h00,1 m shark,"Thanh Nien News, 5/15/2010",2010.06.15-Hoang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.15-Hoang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.15-Hoang.pdf,2010.06.15,2010.06.15,5195,, +2010.06.10,10-Jun-10,2010,Unprovoked,USA,Florida,Jacksonville,Boogie Boarding,Hannah Mayo-Foster,F,18,Lacerations to left calf and foot,N,12h30,4' shark,"Gwinnett Daily Post, 6/10/2010",2010.06.10-Mayo-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.10-Mayo-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.10-Mayo-Foster.pdf,2010.06.10,2010.06.10,5194,, +2010.06.06,06-Jun-10,2010,Unprovoked,AUSTRALIA,Western Australia,"Conspicuous Beach, near Walpole",Surfing,Michael Bedford,M,40,Severe laceration to right knee,N,12h00,,"The West Australian, 6/7/2010",2010.06.06-Bedford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.06-Bedford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.06-Bedford.pdf,2010.06.06,2010.06.06,5193,, +2010.06.00,Jun-10,2010,Unprovoked,USA,Florida,"Ponte Vedra Beach, St Johns County",Surfing,Matt Searcy,M,20,Lacerations to left foot,N,,,"Florida Times-Union, 7/28/2010",2010.06.00-Searcy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.00-Searcy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.00-Searcy.pdf,2010.06.00,2010.06.00,5192,, +2010.05.30,30-May-10,2010,Provoked,USA,Florida,Off Tarpon Springs,Fishing,Mike Seymore,M,49,Laceration to left calf by hooked shark PROVOKED INCIDENT,N,08h45,"Lemon shark, 4'",tbo.com,2010.05.30-Seymore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.30-Seymore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.30-Seymore.pdf,2010.05.30,2010.05.30,5191,, +2010.05.18.c,18-May-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Rescuing,Nguyen Thi Thu Thao,F,58,Minor laceration to leg,N,18h00,20 to 30kg shark,"Thanh Nien, 5/21/2010",2010.05.18.c-Thao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.c-Thao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.c-Thao.pdf,2010.05.18.c,2010.05.18.c,5190,, +2010.05.18.b,18-May-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Nguyen Thi Tanh ,F,60,Severe lacerations to left foot,N,18h00,20 to 30kg shark,"Thanh Nien, 5/21/2010",2010.05.18.b-Thanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.b-Thanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.b-Thanh.pdf,2010.05.18.b,2010.05.18.b,5189,, +2010.05.18.a,18-May-10,2010,Unprovoked,AUSTRALIA,New South Wales,Point Plomer,Surfing,Craig Gibson,M,,Superficial lacerations to lower left leg,N,16h30,,"Macleay Argus, 5/2/2010",2010.05.18.a-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.a-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.a-Gibson.pdf,2010.05.18.a,2010.05.18.a,5188,, +2010.05.03,03-May-10,2010,Unprovoked,MADAGASCAR,Antsiranana Province," Ambatolaoka, Nosy Be Island",Scuba diving,Michel Touzet,M,59,Lacerations to arm & chest,N,09h30,,M.Touzel; Shark Attack Survivors,2010.05.03-Touzet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.03-Touzet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.03-Touzet.pdf,2010.05.03,2010.05.03,5187,, +2010.05.01,01-May-10,2010,Unprovoked,USA,Florida,New Smyrna Beach,Wading,Caitlin Dubois,F,10,Minor puncture wounds to right ankle,N,10h30,4' shark,"S. Petersohn;J. Wheeler, 13 News, 5/4/2010",2010.05.01-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.01-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.01-Dubois.pdf,2010.05.01,2010.05.01,5186,, +2010.04.28,28-Apr-10,2010,Provoked,USA,Florida,Hanalei Bay,Measuring sharks,Kirk Gastrich,M,29,Arm bitten PROVOKED INCIDENT ,N,Afternoon,"Lemon shark, 6'","D. Guevara, WSVN-TV, 4/28/2010",2010.04.28-Gatrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.28-Gatrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.28-Gatrich.pdf,2010.04.28,2010.04.28,5185,, +2010.04.19,19-Apr-10,2010,Unprovoked,USA,Hawaii,"Hanalei Bay, Kauai",Surfing,Jim Rawlinson,M,68,"No injury, surfboard bitten",N,16h00,14' shark,"R. Collier, Honolulu Advertiser, 4/23/2010",2010.04.19-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.19-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.19-Rawlinson.pdf,2010.04.19,2010.04.19,5184,, +2010.04.13,13-Apr-10,2010,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"East Beach, Port Alfred",Surfing,Brendan Denton,M,35,Both feet bitten,N,10h00,2 m shark,"Dispatch Now, 4/13/2010",2010.04.13-Denton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.13-Denton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.13-Denton.pdf,2010.04.13,2010.04.13,5183,, +2010.04.04,04-Apr-10,2010,Unprovoked,EGYPT,Sinai Peninsula,Sharm el-Sheikh ,Swimming / treading water,James Elliott,M,24,Lacerations to left ankle and foot,N,14h00,"Oceanic whitetip shark, 6'","J. Elliott; Blackpool Gazette, 4/16/2010",2010.04.04-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.04-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.04-Elliot.pdf,2010.04.04,2010.04.04,5182,, +2010.03.27, 27-Mar-2010,2010,Unprovoked,REUNION,Saint-Benoit,Bittern,Surfing,Oliver Schorebreak,M,34,"No injury, board bitten",N,11h00,1.5 m shark,"C. Ekstander, GSAF",2010.03.27-Schorebreak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.03.27-Schorebreak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.03.27-Schorebreak.pdf,2010.03.27,2010.03.27,5181,, +2010.02.19,190Feb-2010,2010,Unprovoked,NEW ZEALAND,South Island,Tahunanui Beach,Swimming,Paul Baird,M,,Bruised but otherwise unhurt,N,Night,Possibly a blue shark,"Nelson Mail, 2/23/2010",2010.02.19-Baird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.19-Baird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.19-Baird.pdf,2010.02.19,2010.02.19,5180,, +2010.02.16,16-Feb-10,2010,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Yellow Sands Point,Surfing,Michal du Plessis ,M,,Lacerations to right leg,N,11h00,3 m shark,"Die Burger, 2/18/2010",2010.02.16-duPlessis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.16-duPlessis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.16-duPlessis.pdf,2010.02.16,2010.02.16,5179,, +2010.02.15,15-Feb-10,2010,Unprovoked,FIJI,Off Vanua Levu,Nara Reef,Scuba diving,Henry Usimewa,M,19,FATAL,Y,09h30,,"Fiji Times, 2/17/2010",2010.02.15-Usimewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.15-Usimewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.15-Usimewa.pdf,2010.02.15,2010.02.15,5178,, +2010.02.13,13-Feb-10,2010,Unprovoked,AUSTRALIA,Queensland,"Dent Island, Whitsundays",Snorkeling,Patricia Trumbull,F,60,Lacerations to legs & buttocks,N,13h30,2 m shark,"Sydney Morning Herald, 2/14/2010",2010.02.13-Trumbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.13-Trumbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.13-Trumbull.pdf,2010.02.13,2010.02.13,5177,, +2010.02.11,11-Feb-10,2010,Unprovoked,AUSTRALIA,New South Wales,"Mona Vale Beach, Sydney",Surfing,Paul Welsh,M,46,"Minor injury, lacerations to left lower leg",N,08h00,"Wobbegong shark, 1.6m","John West, Taronga Zoo",2010.02.11-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.11-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.11-Welsh.pdf,2010.02.11,2010.02.11,5176,, +2010.02.06.R,Reported 06-Feb-2010,2010,Provoked,NEW ZEALAND,South Island,Cosy Nook,Spearfishing,Aaron Muilwyk,M,,"No injury, shark bit his speargun after he used it to prod the shark PROVOKED INCIDENT",N,,2 m to 3 m shark,"Southland Times, 2/6/2010",2010.02.06.R-Muilwyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.R-Muilwyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.R-Muilwyk.pdf,2010.02.06.R,2010.02.06.R,5175,, +2010.02.06.b,06-Feb-10,2010,Unprovoked,AUSTRALIA,New South Wales,Turners' Beach,Body boarding,Dean Everson,M,18,"No injury, shark & board collided",N,15h30,"White shark, 2.5m","K. Matthews, Lismore Northern Star, 2/10/2010",2010.02.06.b-Everson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.b-Everson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.b-Everson.pdf,2010.02.06.b,2010.02.06.b,5174,, +2010.02.06.a,06-Feb-10,2010,Provoked,USA,Florida,Riviera Beach,Surf fishing / wading,male,M,,Leg bitten while trying to free a hooked shark PROVOKED INCIDENT,N,15h00,"Spinner shark, 6'","WPTV.com, 2/7/2010",2010.02.06.a-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.a-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.a-RivieraBeach.pdf,2010.02.06.a,2010.02.06.a,5173,, +2010.02.04,04-Feb-10,2010,Invalid,GUAM,Merizo,Achang Reef,Spearfishing (free diving),Andrew Duenas,M,31,Shark bites were post-mortem,Y,11h00,,"B. Kelman, Pacific Daily News, 2/9/2010",2010.02.04-Duenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.04-Duenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.04-Duenas.pdf,2010.02.04,2010.02.04,5172,, +2010.02.03,03-Feb-10,2010,Unprovoked,USA,Florida,"Stuart, Martin County",Kite Boarding,Stephen Howard Schafer,M,38,FATAL,Y,15h44,,"TC Palm, 2/3/2010",2010.02.03-Schafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.03-Schafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.03-Schafer.pdf,2010.02.03,2010.02.03,5171,, +2010.02.01,01-Feb-10,2010,Provoked,NEW ZEALAND,South Island,Oreti Beach,Boogie Boarding,Lydia Ward,F,14,Stepped on shark PROVOKED INCIDENT,N,18h30,1.5 m shark,"R.D. Weeks, GSAF; K. Ritchie, ABC News, 2/1/2010",12.26,http://sharkattackfile.net/spreadsheets/pdf_directory/12.26,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.01-Ward.pdf,2010.02.01,2010.02.01,5170,, +2010.01.30,31-Jan-10,2010,Unprovoked,BRAZIL,Rio Grande Do Sul,"Atlantis Beach, near Tramandai",Surfing,Andrei Johann,M,29,Foot bitten,N,,Thought to involve a juvenile hammerhead shark,"C. Eksander, GSAF",2010.01.30-Andrei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.30-Andrei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.30-Andrei.pdf,2010.01.30,2010.01.30,5169,, +2010.01.27,27-Jan-10,2010,Unprovoked,AUSTRALIA,Queensland,Archie's Beach,Surfing,Ashley Ramage,M,,"No injury, surfboard bitten",N,16h30,,"C. Ekstander, GSAF; Bundberg News-Mail, 1/29/2010",2010.01.27-Ramage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.27-Ramage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.27-Ramage.pdf,2010.01.27,2010.01.27,5168,, +2010.01.22.b,22-Jan-10,2010,Unprovoked,UNITED ARAB EMIRATES (UAE),Dubai,"Umm Suqeim Beach, Dubai",Surfing,Michael Geraghty,M,54,Laceration to bottom of foot,N,Evening,,"C. Eksander, GSAF",2010.01.22.b-Geraghty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.b-Geraghty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.b-Geraghty.pdf,2010.01.22.b,2010.01.22.b,5167,, +2010.01.22.a,22-Jan-10,2010,Unprovoked,AUSTRALIA,Victoria,Geelong,Surfing,Dr. Pat Lockie,M,,Lacerations to right hand ,N,07h30,,"C. Dickens, Geelong Advertiser, 1/25/2010",2010.01.22.a-Lockie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.a-Lockie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.a-Lockie.pdf,2010.01.22.a,2010.01.22.a,5166,, +2010.01.12,12-Jan-10,2010,Unprovoked,SOUTH AFRICA,Western Province,Fish Hoek,Standing,Lloyd Skinner,M,37,FATAL,Y,15h15,White shark,"L. Cohen, Times Live, 1/12/2010",2010.01.12-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.12-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.12-Skinner.pdf,2010.01.12,2010.01.12,5165,, +2010.01.09.d,09-Jan-10,2010,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Snorkeling,Reenie Morrissey ,F,9,2 sets of minor lacerations below her right knee,N,,"Whitetip reef shark, 1m","Courier-Mail, 1/10/2009",2010.01.09.d-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.d-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.d-Morrissey.pdf,2010.01.09.d,2010.01.09.d,5164,, +2010.01.09.c,09-Jan-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,,female,F,,Minor injuries,N,,,"C. Eksander, GSAF",2010.01.09.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.c-woman.pdf,2010.01.09.c,2010.01.09.c,5163,, +2010.01.09.b,09-Jan-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,,Mang Duc Hanh,M,,Right wrist bitten,N,17h00,,"C. Eksander, GSAF",2010.01.09.b-Hanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.b-Hanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.b-Hanh.pdf,2010.01.09.b,2010.01.09.b,5162,, +2010.01.09.a,09-Jan-10,2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Bathing,Nguyen Minh Tuan ,M,,Left arm bitten twice,N,06h45,,"C. Eksander, GSAF",2010.01.09.a-Tuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.a-Tuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.a-Tuan.pdf,2010.01.09.a,2010.01.09.a,5161,, +2010.01.06,06-Jan-10,2010,Unprovoked,USA,Florida,Elliot Key,Spearfishing,Dreice Chirino,M,32,Lacerations to arm,N,10h15,,"WSVN-TV, 1/7/2010",2010.01.06-Chirino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.06-Chirino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.06-Chirino.pdf,2010.01.06,2010.01.06,5160,, +2010.01.05,05-Jan-10,2010,Unprovoked,SOUTH AFRICA,Eastern Province,"Nahoon, East London",Surfing,male,M,,"No injury, reportedly knocked of his board by a shark",N,,,"C. Eksander, GSAF",2010.01.05-Nahoon-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.05-Nahoon-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.05-Nahoon-surfer.pdf,2010.01.05,2010.01.05,5159,, +2009.12.29,29-Dec-09,2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Wading,Simon Bruce,M,20,Lacerations to left foot,N,08h30,,"News24.com, 12/31/2009",2009.12.29-Bruce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.29-Bruce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.29-Bruce.pdf,2009.12.29,2009.12.29,5158,, +2009.12.26,26-Dec-09,2009,Provoked,AUSTRALIA,New South Wales,Avoca Beach,Swimming,John Sojoski ,M,55,Lacerations to lower left leg after stepping on the shark PROVOKED INCIDENT,N,11h00,,"Express Advocate, 12/26/2009",2009.12.26-Sojoski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.26-Sojoski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.26-Sojoski.pdf,2009.12.26,2009.12.26,5157,, +2009.12.22,22-Dec-09,2009,Unprovoked,MOZAMBIQUE,Maputo Province,Ponta do Ouro,Swimming,Peter Fraser,M,27,Multiple lacerations to right torso & arm. Defense wounds on hands,N,16h30,"Zambesi shark, 2m ","Beeld, 12/29/2009",2009.12.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.22-Fraser.pdf,2009.12.22,2009.12.22,5156,, +2009.12.20.b,20-Dec-09,2009,Boat,AUSTRALIA,Queensland,Mudjimba Island,Kayaking,2 males,M,,"No injury to occupants, kayak bumped by shark",N,11h00,,"C. Eksander, GSAF",2009.12.20.b-Queensland-Kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.b-Queensland-Kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.b-Queensland-Kayak.pdf,2009.12.20.b,2009.12.20.b,5155,, +2009.12.20.a,20-Dec-09,2009,Unprovoked,AUSTRALIA,Queensland,Lamont Reef,Spearfishing,John Pengelly,M,18,Lacerations to hand & forearm,N,07h30,"Bull shark, 3m","Brisbane Times, 12/20/2009",2009.12.20.a-Pengelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.a-Pengelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.a-Pengelly.pdf,2009.12.20.a,2009.12.20.a,5154,, +2009.12.18,18-Dec-09,2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. Johns",Paddling on kneeboard,Tshintshekile Nduva,M,22,FATAL,Y,14h30,,"B. Jordan & A. Ferreira, Times Live, 12/21/2009",2009.12.18.a-Nduva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.a-Nduva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.a-Nduva.pdf,2009.12.18,2009.12.18,5153,, +2009.12.18,18-Dec-09,2009,Invalid,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Surfing,Lance Morris,M,,"Minor lacerations to left leg. nitially reported as a shark bite, but involved a barracuda",N,,No shark involvement,"M. Addison, C. Eckstander, GSAF",2009.12.18.b-Morris-barracuda bite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.b-Morris-barracuda bite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.b-Morris-barracuda bite.pdf,2009.12.18,2009.12.18,5152,, +2009.12.16,16-Dec-09,2009,Unprovoked,NEW ZEALAND,South Island,Clark Island,Swimming to shore from capsized kayak,Maurice Bede Philips,M,24,FATAL,Y,,"White shark, 2.8 to 3 m ","R.D. Weeks, GSAF",2009.12.16-Philips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.16-Philips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.16-Philips.pdf,2009.12.16,2009.12.16,5151,, +2009.12.13,13-Dec-09,2009,Unprovoked,AUSTRALIA,New South Wales,Coffee Head,Surfing,Nigel Hughes,M,39,Laceration to big toe,N,07h00,,"Northern Star, 12/14/2009",2009.12.13-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.13-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.13-Hughes.pdf,2009.12.13,2009.12.13,5150,, +2009.12.12,12-Dec-09,2009,Boat,AUSTRALIA,New South Wales,Hawks Nest Beach,Rowing,Surf boat with 5 lifesavers on board,,,No injury to occupants; shark bit steering oar,N,07h30,White shark,"Herald Sun, 12/13/2009",2009.12.12-Ross-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.12-Ross-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.12-Ross-boat.pdf,2009.12.12,2009.12.12,5149,, +2009.12.06,05-Dec-09,2009,Provoked,USA,New Jersey,"Adventure Aquarium, Camden",Diving,Robert Large,M,58,Lacerations & puncture wounds to right calf & ankle when diver accidentally backed into the shark PROVOKED INCIDENT,N,13h00,"Sandtiger shark, 8'","R. Large; Philadelphia Daily News, 4/22/2010",2009.12.06-Large.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.06-Large.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.06-Large.pdf,2009.12.06,2009.12.06,5148,, +2009.11.25,25-Nov-09,2009,Invalid,USA,California,"Huntington Beach, Orange County",Surfing,Kenneth Hall,M,49,Puncture wounds to right foot,N,15h30,Shark involvement not confirmed,"R. Collier, GSAF",2009.11.25-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.25-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.25-Hall.pdf,2009.11.25,2009.11.25,5147,, +2009.11.24,24-Nov-09,2009,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Wading,Garrett Gollihugh,M,10,Left foot bitten,N,Morning,6' shark,My Fox Orlando,2009.11.24-Gollighugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.24-Gollighugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.24-Gollighugh.pdf,2009.11.24,2009.11.24,5146,, +2009.11.16.b,16-Nov-09,2009,Unprovoked,USA,California,"Loch Lomond, Marin County",Fishing,James White,M,31,Puncture wounds and minor lacerations to dorsal surface of his left hand,N,16h45,Thresher shark,"R. Collier, GSAF",2009.11.16.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.b-White.pdf,2009.11.16.b,2009.11.16.b,5145,, +2009.11.16.a,16-Nov-09,2009,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Surfing,Steven Burdelski,M,22,Foot bitten,N,09h30,,"A. Pefley, Channel 12 News",2009.11.16.a-Burdelski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.a-Burdelski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.a-Burdelski.pdf,2009.11.16.a,2009.11.16.a,5144,, +2009.11.13,13-Nov-09,2009,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Surfing,Melissa Hardcastle,F,27,Foot bitten,N,16h30,,"C. Scofield, WPTV.com",2009.11.13-Hardcastle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.13-Hardcastle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.13-Hardcastle.pdf,2009.11.13,2009.11.13,5143,, +2009.11.11,11-Nov-09,2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,18,Foot bitten,N,Afternoon,4' shark,Captain S. Petersohn,2009.11.11-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.11-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.11-NewSmyrnaBeach.pdf,2009.11.11,2009.11.11,5142,, +2009.11.08,08-Nov-09,2009,Unprovoked,AUSTRALIA,South Australia,Second Valley,Kayaking,Dean Brougham,M,25,Ankle bitten,N,10h30,2 m shark,"Adelaide Now, 11/19/2009",2009.11.08-Brougham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.08-Brougham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.08-Brougham.pdf,2009.11.08,2009.11.08,5141,, +2009.11.05,05-Nov-09,2009,Unprovoked,USA,California,"Davenport, Santa Cruz County",Surfing,Eric Geiselman,M,21,"No injury, board broken in half",N,Dusk,,R. Collier,2009.11.05-Geiselman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.05-Geiselman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.05-Geiselman.pdf,2009.11.05,2009.11.05,5140,, +2009.10.30,30-Oct-09,2009,Unprovoked,AUSTRALIA,Victoria,Portland,Kayaking,Rhys Gadsden,M,27,"No injury, shark bit kayak",N,Morning,"White shark, 4m","The Age, 10/31/2009",2009.10.30-Gadsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.30-Gadsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.30-Gadsden.pdf,2009.10.30,2009.10.30,5139,, +2009.10.29.R,Reported 29-Oct-2009,2009,Unprovoked,MOZAMBIQUE,Inhambane Province,Off Vilanculo,Spearfishing,Mark Rogotzki ,M,,Left ankle & foot bitten,N,,Zambesi shark,R. Allen; J. Little,2009.10.29.R-Rogotzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.29.R-Rogotzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.29.R-Rogotzki.pdf,2009.10.29.R,2009.10.29.R,5138,, +2009.10.28,28-Oct-09,2009,Unprovoked,AUSTRALIA,New South Wales,Lennox Heads,Paddle-boarding,Zahli Lowe,F,17,"No injury, shark bit rear of paddleboard",N,07h00,,"Northern Star, 10/30/2009",2009.10.28-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.28-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.28-Lowe.pdf,2009.10.28,2009.10.28,5137,, +2009.10.24,24-Oct-09,2009,Unprovoked,USA,California,"San Onofre, San Diego County ",Surfing,Scott Barton,M,,"3 puncture wounds to big toe of left foot, and laceration on arch of foot",N,17h30,,R. Collier,2009.10.24-Scott-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.24-Scott-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.24-Scott-Barton.pdf,2009.10.24,2009.10.24,5136,, +2009.10.19,19-Oct-09,2009,Unprovoked,USA,Hawaii,"Kalama Park, Maui",Surfing,Scott Henrich,M,54,Bitten on upper right thigh & right ankle,N,06h00,6' to 8' shark,"Star Bulletin, 10/19/2009",2009.10.19-Henrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.19-Henrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.19-Henrich.pdf,2009.10.19,2009.10.19,5135,, +2009.10.18,18-Oct-09,2009,Unprovoked,PANAMA,Bocas,Playa La Cabaa ,Wading,female,F,10,Arm & torso bitten,N,18h30,,A. Blaker,2009.10.18-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.18-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.18-Panama.pdf,2009.10.18,2009.10.18,5134,, +2009.10.17,17-Oct-09,2009,Provoked,SCOTLAND,Fife,Deep Sea World Aquarium,Diving,male,M,23,15-20 puncture wounds to arm by captive shark PROVOKED INCIDENT ,N,14h45,Angel shark,"Telegraph.co.uk, 10/18/2009",2009.10.17-DeepSeaWorld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.17-DeepSeaWorld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.17-DeepSeaWorld.pdf,2009.10.17,2009.10.17,5133,, +2009.10.14.R,Reported 14-Oct-2009,2009,Unprovoked,AUSTRALIA,Western Australia,,Diving,Matt Bowen,M,23,Severe lacerations to lower right leg,N,,"Bull shark, 10'","BBC News, 10/19/2009",2009.10.14.R-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.14.R-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.14.R-Bowen.pdf,2009.10.14.R,2009.10.14.R,5132,, +2009.10.09,09-Oct-09,2009,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Bernard Wagor,M,,Laceration to shin of left leg,N,11h00,,R. Collier,2009.10.09-Wagor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.09-Wagor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.09-Wagor.pdf,2009.10.09,2009.10.09,5131,, +2009.10.02,02-Oct-09,2009,Provoked,UNITED KINGDOM,Devon,Mewstone Rock,Fishing,male,M,39,Injury to forearm from shark's spine PROVOKED INCIDENT ,N,12h50,Spurdog,"The Herald, 10/2/2009",2009.10.02-UK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.02-UK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.02-UK.pdf,2009.10.02,2009.10.02,5130,, +2009.09.26,26-Sep-09,2009,Unprovoked,USA,Florida,"Key Colony Beach, Monroe County",Swimming,Daniel Callahan,M,,Laceration to right foot,N,17h30,"Bull shark, 8'",keysnet.com,2009.09.26-Callahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.26-Callahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.26-Callahan.pdf,2009.09.26,2009.09.26,5129,, +2009.09.18,18-Sep-09,2009,Unprovoked,VIETNAM,,,,Nguyen Quang Vinh ,M,,Lower right leg bitten,N,,,"H. Trong & U. Phuong,.Saigon Daily, 1/13/2010",2009.09.18-Vinh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.18-Vinh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.18-Vinh.pdf,2009.09.18,2009.09.18,5128,, +2009.09.15,15-Sep-09,2009,Provoked,SOMALIA,,300 miles off the coast ,Fishing,a Spanish sailor,M,,Arm bitten PROVOKED INCIDENT ,N,,,"SMCM, 9/20/2009",2009.09.15-SpanishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.15-SpanishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.15-SpanishSailor.pdf,2009.09.15,2009.09.15,5127,, +2009.09.13,13-Sep-09,2009,Provoked,BRAZIL,Pernambuco,"Piedade, Recife",,Maurcio da Silva Monteiro,M,34,Cause of death was drowning; his remains were scavenged by sharks,Y,,,"C. Ekstander, GSAF",2009.09.13-Monteiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.13-Monteiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.13-Monteiro.pdf,2009.09.13,2009.09.13,5126,, +2009.09.12,12-Sep-09,2009,Invalid,USA,North Carolina,"Corolla, Currituck County",Swimming,Richard A Snead,M,60,FATAL,Y,21h00,Shark involvement prior to death not confirmed,"C. Creswell, GSAF ",2009.09.12-Snead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.12-Snead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.12-Snead.pdf,2009.09.12,2009.09.12,5125,, +2009.09.07,07-Sep-09,2009,Unprovoked,BRAZIL,Pernambuco,"Piedade, Recife","Swimming, attempting to rescue a girl believed to be drowning",Geovanni Tiago Barbosa ,M,15,FATAL,Y,Afternoon,,"C. Eksander, GSAF",2009.09.07-Barbosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.07-Barbosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.07-Barbosa.pdf,2009.09.07,2009.09.07,5124,, +2009.09.02,02-Sep-09,2009,Invalid,NEVIS,,Castle Beach,Swimming,Brian Mills,M,,Death was due to drowning. Two days later his remains were recovered from a 12' tiger shark,Y,,,Dr. C. Jacobs; J. Daniel,2009.09.02-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.02-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.02-Mills.pdf,2009.09.02,2009.09.02,5123,, +2009.09.01,01-Sep-09,2009,Provoked,SOLOMON ISLANDS,Makira-Ulawa Province,"Kirakira, Makira Island (formerly San Cristobal)",Fishing,male,M,,Injuries to face & neck PROVOKED INCIDENT,N,,,"Solomon Star, 9/4/2009",2009.09.01-Kirakira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.01-Kirakira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.01-Kirakira.pdf,2009.09.01,2009.09.01,5122,, +2009.08.30,30-Aug-09,2009,Unprovoked,USA,California,"Huntington Beach, Orange County",Surfing,Cory Hedgepeth,M,,No injury,N,18h30,4' shark,"R. Collier, GSAF",2009.08.30-Hedgepeth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.30-Hedgepeth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.30-Hedgepeth.pdf,2009.08.30,2009.08.30,5121,, +2009.08.29,29-Aug-09,2009,Unprovoked,SOUTH AFRICA,Western Cape Province,Glentana,Surfing,Gerhard van Zyl,M,25,FATAL,Y,15h30,White shark,"Cape Argus, 8/30/2009, p.1",2009.08.29-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.29-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.29-VanZyl.pdf,2009.08.29,2009.08.29,5120,, +2009.08.25,25-Aug-09,2009,Unprovoked,USA,California,"Terramar Beach, Carlsbad, San Diego County",Swimming,Bethany Edmund,F,22,Puncture wounds to left foot & calf,N,16h30,"White shark, 5' to 6' juvenile ","R. Collier, GSAF",2009.08.25-Edmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.25-Edmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.25-Edmund.pdf,2009.08.25,2009.08.25,5119,, +2009.08.11,11-Aug-09,2009,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Alkantstrand ,Body boarding,Jeandre Nagel,M,,"No injury, shark bit bodyboard",N,Lunchtime,"White shark, 2m",Zululand Observer,2009.08.11-Nagel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.11-Nagel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.11-Nagel.pdf,2009.08.11,2009.08.11,5118,, +2009.08.10,10-Aug-09,2009,Unprovoked,USA,Florida,"Ponce, Volusia County",Swimming,A visitor from Spain,M,26,Puncture marks on left foot,N,19h00,,S. Petersohn,2009.08.10-Volusia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.10-Volusia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.10-Volusia.pdf,2009.08.10,2009.08.10,5117,, +2009.08.06,06-Aug-09,2009,Unprovoked,USA,Hawaii,Kawa'a ,Surfing,Dylan Crawford,M,,"No injury, surfboard bitten",N,08h45,"Tiger shark, 12","Big Island Weekly, 8/19/2009",2009.08.06-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.06-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.06-Crawford.pdf,2009.08.06,2009.08.06,5116,, +2009.08.01,01-Aug-09,2009,Unprovoked,USA,Louisiana,"Curlew Island, Breton Sound",Wade Fishing,"Chris Haynes, Jr.",M,56,Right ankle & foot bitten,N,10h00,Bull shark?,Clarion Ledger,2009.08.01-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.01-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.01-Haynes.pdf,2009.08.01,2009.08.01,5115,, +2009.07.31,31-Jul-09,2009,Unprovoked,BAHAMAS,Abaco Islands,Spanish Cay,Spearfishing,Derek Mitchell,M,14,Lacerations to calf,N,,Bull shark,WPTV.com,2009.07.31-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.31-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.31-Mitchell.pdf,2009.07.31,2009.07.31,5114,, +2009.07.30,30-Jul-09,2009,Unprovoked,AUSTRALIA,New South Wales,Broken Head,Surfing,Zac Skyring,M,14,Left forearm grazed & puncture marks in wetsuit,N,06h15,,"Lismore Northern Star, 7/31/2009",2009.07.30-Skyring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.30-Skyring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.30-Skyring.pdf,2009.07.30,2009.07.30,5113,, +2009.07.29,29-Jul-09,2009,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Hoang Thi Thuy Hong ,F,41,Foot bitten,N,17h30,,"CandOnline, 1/15/2020",2009.07.29-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.29-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.29-Hong.pdf,2009.07.29,2009.07.29,5112,, +2009.07.24.R,Reported 24-Jul-2009,2009,Unprovoked,KENYA,Mombasa,Likoni Channel,Washing his feet,male,M,,FATAL,Y,,,"Standard Digital, 7/24/2009",2009.07.24.R-Likoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.R-Likoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.R-Likoni.pdf,2009.07.24.R,2009.07.24.R,5111,, +2009.07.24.b,24-Jul-09,2009,Unprovoked,USA,Texas,South Padre Island,Wading,Deidre Casas,F,14,Lacerations to anterior left lower leg,N,Afternoon,,KRGV.com,2009.07.24.b-Casas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.b-Casas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.b-Casas.pdf,2009.07.24.b,2009.07.24.b,5110,, +2009.07.24.a,24-Jul-09,2009,Invalid,SPAIN,Catalunya,Sant Salvador,Swimming,,F,11,Laceration to left foot,N,10h15,Shark involvement questionable,"ABC-Spain, 7/25/2009",2009.07.24.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.a-Spain.pdf,2009.07.24.a,2009.07.24.a,5109,, +2009.07.22.b,22-Jul-09,2009,Unprovoked,USA,North Carolina,Holden Beach. Brunswick County,Swimming,Julia Anne Mittleberg,F,26,Laceration to left foot,N,15h00,,"C. Creswell, GSAF",2009.07.22.b-Mittleberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.b-Mittleberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.b-Mittleberg.pdf,2009.07.22.b,2009.07.22.b,5108,, +2009.07.22.a,22-Jul-09,2009,Unprovoked,USA,Florida,"Intracoastal Waterway, St. Petersburg",Swimming,Jenna James,F,19,Laceration to lower right leg,N,15h00,,"J. Eager; R. Reyes, Tampa Tribune, 7/22/2009",2009.07.22.a-JennaJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.a-JennaJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.a-JennaJames.pdf,2009.07.22.a,2009.07.22.a,5107,, +2009.07.18,18-Jul-09,2009,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Nguyen Quang Huynh,M,57,Severe bite to right leg,N,,,"C. Eksander, GSAF",2009.07.18-Haynh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.18-Haynh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.18-Haynh.pdf,2009.07.18,2009.07.18,5106,, +2009.07.11.b,11-Jul-09,2009,Provoked,BAHAMAS,,,Spearfishing,John Cooper,M,,Leg bitten by shark that had been shot in the head by another diver PROVOKED INCIDENT,N,,"Caribbean reef shark, 6'","Fox News, 7/14/2009",2009.07.11.b-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.b-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.b-Cooper.pdf,2009.07.11.b,2009.07.11.b,5105,, +2009.07.11.a,11-Jul-09,2009,Unprovoked,USA,California,"San Onofre, San Diego County ",Paddle-surfing,Brian Hovnanian,M,,"No injury, shark collided with surfer & board",N,08h30,5' shark,R. Collier,2009.07.11.a-Hovnanian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.a-Hovnanian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.a-Hovnanian.pdf,2009.07.11.a,2009.07.11.a,5104,, +2009.07.07,07-Jul-09,2009,Unprovoked,SOUTH AFRICA,Western Cape Province,"Jogensfontein, Stilbaai",Surfing,Paul Buckley,M,37,Leg bitten,N,11h15,,"Weekend Post, 7/8/2009",2009.07.07-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.07-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.07-Buckley.pdf,2009.07.07,2009.07.07,5103,, +2009.07.05,05-Jul-09,2009,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Boogie Boarding,female,F,12,Right ankle bitten,N,16h00,,S. Petersohn,2009.07.05-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.05-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.05-Daytona.pdf,2009.07.05,2009.07.05,5102,, +2009.07.04,04-Jul-09,2009,Provoked,USA,Florida,"Biscayne National Park, Miami",Swimming,Carmen Dominguez ,F,43,Thigh injured by hooked shark PROVOKED INCIDENT,N,15j45,"Nurse shark, 6'","Miami Herald, 7//4/2009",2009.07.04-Miami.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.04-Miami.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.04-Miami.pdf,2009.07.04,2009.07.04,5101,, +2009.06.27,27-Jun-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Seven Mile Beach, Gerroa",Surfing,Les Wade,M,52,2-inch laceration to upper left arm,N,08h45,"Thought to involve a Bronze whale shark, 2m","Brisbane Times, 6/28/2009",2009.06.27-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.27-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.27-Wade.pdf,2009.06.27,2009.06.27,5100,, +2009.06.21,21-Jun-09,2009,Invalid,USA,California,"Shell Beach, San Luis Obispo County",Surfing,male,M,26,Puncture wounds to foot,N,,Shark involvement not confirmed,"San Luis Obispo Tribune, 6/24/2009",2009.06.21-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.21-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.21-California.pdf,2009.06.21,2009.06.21,5099,, +2009.06.16,16-Jun-09,2009,Invalid,USA,Florida,"Melbourne Beach, Brevard County",Crawling,Kevin Crowley,M,14,2-inch laceration to upper left arm,N,17h30,"Shark involvement probable, but not confirmed","Florida Today, 1/17/2009",2009.06.16-Crowley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.16-Crowley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.16-Crowley.pdf,2009.06.16,2009.06.16,5098,, +2009.06.14.R,Reported 14-Jun-2009,2009,Provoked,VIETNAM,,,Fishing for sharks,Tran Van Quy,M,,Hand bitten by hooked shark PROVOKED INCIDENT,N,,White shark,"Tin Tuc online, 6/14/2009",2009.06.14.R-Quy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.14.R-Quy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.14.R-Quy.pdf,2009.06.14.R,2009.06.14.R,5097,, +2009.06.02.b,02-Jun-09,2009,Unprovoked,EGYPT,St. Johns Reef,Habili Gafar,Scuba diving,"Nil, a dive guide",M,,Lacerations to left hand,N,,Oceanic whitetip shark,"E. Ritter, GSAF",2009.06.02.b-Nil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.b-Nil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.b-Nil.pdf,2009.06.02.b,2009.06.02.b,5096,, +2009.06.02.a,02-Jun-09,2009,Unprovoked,EGYPT,St. Johns Reef,Habili Gafar,Scuba diving,"Luc, a Belgian diver",M,,3 cm laceration to shoulder,N,,Oceanic whitetip shark,"E. Ritter, GSAF",2009.06.02.a-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.a-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.a-Luc.pdf,2009.06.02.a,2009.06.02.a,5095,, +2009.06.01,01-Jun-09,2009,Unprovoked,EGYPT,St. Johns Reef,Habili Gafar,Snorkeling,Katrina Tipio,F,50,FATAL,Y,Morning,"Oceanic whitetip shark, 2.5 to 3m","A. Hamada; E.Ritter, GSAF",2009.06.01-Tipio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.01-Tipio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.01-Tipio.pdf,2009.06.01,2009.06.01,5094,, +2009.05.31,31-May-09,2009,Provoked,TAIWAN,Off Green Island,Onboard the fishing vessel Chin Sheng Fa 13 ,Fishing,Zhang Sanqian,M,46,Lacerations to knee & left lower leg by electrocuted captive shark PROVOKED INCIDENT,N,20h30,80 kg shark,"Taiwan News, 5/21/09",2009.05.31-Sangian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.31-Sangian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.31-Sangian.pdf,2009.05.31,2009.05.31,5093,, +2009.05.25,25-May-09,2009,Provoked,USA,Florida,"Clearwater Beach, Pinellas County",Swimming,Dana Joseph,M,,Right foot bitten,N,20h30,5' to 8' shark,"Tampa Bay online, 5/26/2009",2009.05.25-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.25-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.25-Joseph.pdf,2009.05.25,2009.05.25,5092,, +2009.05.17,17-May-09,2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Provido,M,31,Lacerations to left leg & foot,N,09h35,blacktip or spinner shark,"S. Petersohn, GSAF",2009.05.17-Provido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.17-Provido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.17-Provido.pdf,2009.05.17,2009.05.17,5091,, +2009.05.16.b,16-May-09,2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Bryan Heath,M,49,Lacerations to right foot,N,10h27,blacktip or spinner shark,"S. Petersohn, GSAF",2009.05.16.b-Heath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.b-Heath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.b-Heath.pdf,2009.05.16.b,2009.05.16.b,5090,, +2009.05.16.a,16-May-09,2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,David Bryant,M,55,Lacerations to right hand,N,10h16,blacktip or spinner shark,"S. Petersohn, GSAF",2009.05.16.a-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.a-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.a-Bryant.pdf,2009.05.16.a,2009.05.16.a,5089,, +2009.05.12,12-May-09,2009,Provoked,GUAM,North Region,Ritidian Point,Spearfishing,Jonathan Leon Guerrero,M,27,Speared shark bit his forearm PROVOKED INCIDENT,N,Afternoon,"Blacktip shark, 4'","N. Delgado, Pacific News Center; KUAM.com",2009.05.12-Guerrero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.12-Guerrero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.12-Guerrero.pdf,2009.05.12,2009.05.12,5088,, +2009.05.06,06-Mar-09,2009,Provoked,BAHAMAS,Exuma Islands,,Spearfishing,Luis Hernandez,M,48,Lacerations to right forearm after he poked the shark with his spear PROVOKED INCIDENT ,N,,7' shark,"Sun Sentinel, 5/8/2009",2009.05.06-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.06-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.06-Hernandez.pdf,2009.05.06,2009.05.06,5087,, +2009.04.28,28-Apr-09,2009,Unprovoked,USA,Florida,"St. Augustine, St. John's County",,Alicia,F,,Multiple lacerations to right foot & ankle,N,16h45,,,2009.04.28-Alicia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.28-Alicia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.28-Alicia.pdf,2009.04.28,2009.04.28,5086,, +2009.04.25.R,Reported 25-Apr-2009,2009,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Drew Senner,M,,No injury,N,10h00,,"R. Collier, GSAF",2009.04.25.R-Senner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.25.R-Senner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.25.R-Senner.pdf,2009.04.25.R,2009.04.25.R,5085,, +2009.04.21,21-Apr-09,2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,20,3 puncture wounds to posterior right ankle,N,Late afternoon,,"S. Petersohn, GSAF",2009.04.21-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.21-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.21-NSB.pdf,2009.04.21,2009.04.21,5084,, +2009.04.20,20-Apr-09,2009,Unprovoked,PHILIPPINES,Batangas province,Mabini,Swimming,Gerald Perez,M,23,Legs bitten,N,500,,"Abs-cbnNEWS.com, 4/22/2009",2009.04.20-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.20-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.20-Perez.pdf,2009.04.20,2009.04.20,5083,, +2009.04.19,19-Apr-09,2009,Unprovoked,USA,Florida,"Carlin Park, Jupiter Inlet",Surfing,Bruce Klinker,M,52,Left foot bitten,N,16h00,,"UPI, 4/20/2009",2009.04.19-Klinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.19-Klinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.19-Klinker.pdf,2009.04.19,2009.04.19,5082,, +2009.04.12,12-Apr-09,2009,Unprovoked,AUSTRALIA,New South Wales,Fingal Bay,Surf skiing ,Heath Milne,M,40,"No injury, catapulted into the water & ski damage",N,08h00,2' to 3' shark,"Port Stephens Examiner, 4/15/2009",2009.04.12-Milne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.12-Milne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.12-Milne.pdf,2009.04.12,2009.04.12,5081,, +2009.04.17.,17-Apr-09,2009,Unprovoked,USA,Florida,"Walton Rocks, St Lucie County",Surfing,Alexander Wagner,M,31,Laceration to forearm,N,13h15,2' to 3' shark,"TC Palm, 4/17/09",2009.04.17-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.17-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.17-Wagner.pdf,2009.04.17.,2009.04.17.,5080,, +2009.04.11,11-Apr-09,2009,Invalid,USA,Hawaii,Kona,Spearfishing,Paolo Dominici,M,49,Missing,N,,Shark involvement not confirmed,"CBS, 4/14/2009",2009.04.11-Dominici.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.11-Dominici.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.11-Dominici.pdf,2009.04.11,2009.04.11,5079,, +2009.04.06.b,06-Apr-09,2009,Invalid,SOUTH AFRICA,KwaZulu-Natal,Umtentweni,Swimming,Odwa Hlanganisela,M,24,Body not recovered,Y,Morning,Shark involvement not confirmed,"Daily Dispatch, 4/10/2009",2009.04.06.b-Hlanganisela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.b-Hlanganisela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.b-Hlanganisela.pdf,2009.04.06.b,2009.04.06.b,5078,, +2009.04.06.a,06-Apr-09,2009,Unprovoked,USA,California,San Diego County,Spearfishing,"Raymundo Ayus, Jr.",M,,Shark struck him but the diver was not injured,N,07h45,"White shark, 12' to 15' female",R. Collier,2009.04.06.a-Ayus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.a-Ayus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.a-Ayus.pdf,2009.04.06.a,2009.04.06.a,5077,, +2009.04.03,03-Apr-09,2009,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Wading,Jack May,M,15,Lacerations to right foot and ankle,N,16h00,,"Cape Coral News, 4/3/2009",2009.04.03-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.03-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.03-May.pdf,2009.04.03,2009.04.03,5076,, +2009.03.27,27-Mar-09,2009,Provoked,SOUTH AFRICA,Eastern Cape Province,2-3 km north of Sunday's River mouth,Fishing ,Tony Dell,M,59,Calf bitten while helping angler measure the shark during fishing competition PROVOKED INCIDENT,N,,Raggedtooth shark,"The Herald (Port Elizabeth), 3/27/2007",2009.03.27-TonyDell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.27-TonyDell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.27-TonyDell.pdf,2009.03.27,2009.03.27,5075,, +2009.03.21,21-Mar-09,2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Surfing,Luyolo Mangele,M,16,FATAL,Y,Afternoon,,"Daily Dispatch, 3/22/2009",2009.03.21-Mangele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.21-Mangele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.21-Mangele.pdf,2009.03.21,2009.03.21,5074,, +2009.03.20,20-Mar-09,2009,Unprovoked,AUSTRALIA,New South Wales,Blue Bay,Surfing,Calvin Galbraith,M,17,"Laceration to right foot, puncture wounds to calf",N,18h45,Bronze whaler shark?,"Madurah Mail, 3/26/2009",2009.03.20-BatemansBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.20-BatemansBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.20-BatemansBay.pdf,2009.03.20,2009.03.20,5073,, +2009.03.19.b,19-Mar-09,2009,Unprovoked,AUSTRALIA,New South Wales,South Broulee,Surfing,male,M,,"No injury, shark damaged surfboard",N,Early morning,,"ABC News, 3/19/2009",2009.03.19.b-SouthBroulee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.b-SouthBroulee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.b-SouthBroulee.pdf,2009.03.19.b,2009.03.19.b,5072,, +2009.03.19.a,19-Mar-09,2009,Unprovoked,AUSTRALIA,New South Wales,Bateman's Bay,Surfing,Bernadette Davis,F,,"No injury, shark bit nose of surfboard",N,07h45,,"Canberra Times, 3/20/2009",2009.03.19.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.a-Davis.pdf,2009.03.19.a,2009.03.19.a,5071,, +2009.03.18.a,18-Mar-09,2009,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,female,F,17,Minor bite to ankle,N,17h30,3' to 4' shark,"S. Petersohn, GSAF",2009.03.18.a-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.18.a-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.18.a-PonceInlet.pdf,2009.03.18.a,2009.03.18.a,5070,, +2009.03.17.R,Reported 17-Mar-2009,2009,Unprovoked,MALAYSIA,Strait of Malacca,Pulau Payar Island,Feeding fish,female,F,,Minor injury,N,,Blacktip reef shark pup,"C. Johansson, GSAF",2009.03.17.R-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.R-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.R-Malaysia.pdf,2009.03.17.R,2009.03.17.R,5069,, +2009.03.17,17-Mar-09,2009,Unprovoked,USA,Hawaii,Alenuihaha Channel,Swimming,Mike Spaulding,M,61,"Minor injury, bite chest and left calf",N,20h00,Thought to involve a cookie cutter shark,"B. Perry, Maui News, 3/18/2009",2009.03.17.a-Spaulding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.a-Spaulding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.a-Spaulding.pdf,2009.03.17,2009.03.17,5068,, +2009.03.16.R,Reported 16-Mar-2009,2009,Provoked,AUSTRALIA,Western Australia,"The Natural Jetty, Rottnest Island",Wading,male,M,21,Thigh bitten when he trod on the shark PROVOKED INCIDENT,N,,"Wobbegong shark, 60cm","The West, 3/16/2009",2009.03.16.R-Rottnest-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.16.R-Rottnest-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.16.R-Rottnest-Island.pdf,2009.03.16.R,2009.03.16.R,5067,, +2009.03.06,06-Mar-09,2009,Unprovoked,NEW CALEDONIA,South Province,Bourail,Surfing,Kevin Hannecart,M,19,FATAL,Y,11h30,,"Les Nouvelles Caledoniennes, 3/7-10/2009",2009.03.06-Hannecart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.06-Hannecart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.06-Hannecart.pdf,2009.03.06,2009.03.06,5066,, +2009.03.02,02-Mar-09,2009,Provoked,SOUTH AFRICA,Western Cape Province,Off Cape Point,Fishing,Gabriel Fernandez,M,40,Lacerations to arm and 2 fingers by hooked shark PROVOKED INCIDENT,N,13h30,"Blue shark, 1m","Cape Times, 3/3/2009",2009.03.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.02-Fernandez.pdf,2009.03.02,2009.03.02,5065,, +2009.03.01.b,01-Mar-09,2009,Boat,NEW ZEALAND,North Island,Taranaki,Fishing,"boat, occupants: Boyd Rutherford & Hamish Roper",M,,"No injury to occupants, shark bit propeller",N,,,"Taranaki Daily News, 3/3/2009",2009.03.01-Taranaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Taranaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Taranaki.pdf,2009.03.01.b,2009.03.01.b,5064,, +2009.03.01.a,01-Mar-09,2009,Unprovoked,AUSTRALIA,New South Wales,Avalon,Surfing,Andrew Lindop,M,15,Lacerations to leg,N,06h45,2.6 m shark,"Sunday Telegraph, 3/1/2009",2009.03.01-Lindop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Lindop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Lindop.pdf,2009.03.01.a,2009.03.01.a,5063,, +2009.02.22,22-Feb-09,2009,Unprovoked,AUSTRALIA,Queensland,Batt Reef,Fishing,male,M,,Severe laceration to finger,N,10h15,,"The Australian, 2/22/2009",2009.02.22-BattReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.22-BattReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.22-BattReef.pdf,2009.02.22,2009.02.22,5062,, +2009.02.18,18-Feb-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Shelly Beach, near Port Macquarie",Surfing,Glen Lockery,M,,"No injury to surfer, but the nose of his board was broken",N,17h00,,"Daily Telegraph, 2/24/2009",2009.02.18-Lockery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.18-Lockery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.18-Lockery.pdf,2009.02.18,2009.02.18,5061,, +2009.02.12,12-Feb-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Bondi Beach, Sydney",Surfing,Glen Orgias,M,33,Severe injury to hand ,N,19h30,"White shark, 2.5m ",The Sydney Morning Herald 2/24/2009,2009.02.12-Orgias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.12-Orgias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.12-Orgias.pdf,2009.02.12,2009.02.12,5060,, +2009.02.11,11-Feb-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Garden Point, Woolloomooloo Sydney Harbour","Diving, but on the surface when bitten by the shark",Paul Degelder,M,31,Severe injuries to right hand & right thigh. Right hand surgically amputated & his right leg a week later,N,Before 07h00,"Bull shark, 2.7 m ","ABC News, 2/11/2009",2009.02.11-Degelder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.11-Degelder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.11-Degelder.pdf,2009.02.11,2009.02.11,5059,, +2009.02.08,08-Feb-09,2009,Sea Disaster,USA,Puerto Rico,Quebradillas,Air Disaster,occupant of a Cessna 206,M,,It is probable that all 5 passengers died on impact. The body of one was scavenged by a shark,Y,,,"C. Ekstander, GSAF",2009.02.08-PuertoRicoAirCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.08-PuertoRicoAirCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.08-PuertoRicoAirCrash.pdf,2009.02.08,2009.02.08,5058,, +2009.02.07.b,07-Feb-09,2009,Unprovoked,AUSTRALIA,New South Wales,Cellito Beach,Surfing,Durwin Keg,M,41,"No injury, surfboard dented",N,11h00,"White shark, 12' ","D. Keg; Herald Sun, 2/8/2009",2009.02.07.b-Keg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.b-Keg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.b-Keg.pdf,2009.02.07.b,2009.02.07.b,5057,, +2009.02.07.a,07-Feb-09,2009,Unprovoked,AUSTRALIA,New South Wales,Sandon,Surfing,Joe Kennard,M,,"No injury, flung from surfboard by the shark",N,07h30,,"A. Vlastaras, Daily Examiner, 3/9/2009",2009.02.07.a-Kennard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.a-Kennard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.a-Kennard.pdf,2009.02.07.a,2009.02.07.a,5056,, +2009.01.27.R,Reported 27-Jan-2009,2009,Provoked,AZORES,,Onboard the fishing vessel Nuevo Cedes ,Fishing,A Spanish fisherman,M,49,Left forearm bitten PROVOKED INCIDENT,N,,,"C. Johansson, GSAF",2009.01.27.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.27.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.27.R-Azores.pdf,2009.01.27.R,2009.01.27.R,5055,, +2009.01.26.R,Reported 26-Jan-2009,2009,Invalid,BRAZIL,,Praia do Olho d'Aqua,,Luciano Guimaraes dos Santos,M,17,Probable drowning with post-mortem bites,Y,,,"Jornal Pequeno, 1/26/2009",2009.01.26.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.26.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.26.R-Brazil.pdf,2009.01.26.R,2009.01.26.R,5054,, +2009.01.25,25-Jan-09,2009,Unprovoked,CUBA,Guantanamo Province,Guantanamo Bay,Spearfishing,John Emory,M,15,Severe lacerations to lower left leg,N,10h30,Bull shark,"J. Emory; Caribbean Net, 4/142009",2009.01.25-Emory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.25-Emory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.25-Emory.pdf,2009.01.25,2009.01.25,5053,, +2009.01.24.c,24-Jan-09,2009,Boat,NEW ZEALAND,North Island,Alderman Islands,Fishing,7.2 m boat. Occupant Kelvin Travers,,,"No injury to occupant, shark removed small auxiliary outboard motor",N,19h00,,"NZ Herald, 1/26/2009",2009.01.24.c-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.c-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.c-NewZealand.pdf,2009.01.24.c,2009.01.24.c,5052,, +2009.01.24.b,24-Jan-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Surf Beach, Batemans Bay",Swimming,Jeremy McDonagh,M,19,Hand injured,N,16h30,,"ABC News, 1/28/2009",2009.01.24.b-McDonough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.b-McDonough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.b-McDonough.pdf,2009.01.24.b,2009.01.24.b,5051,, +2009.01.24.a,24-Jan-09,2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Swimming,Sikhanyiso Bangilizwe,M,25,FATAL,Y,14h00,Tiger shark,"Daily Dispatch, 1/26/2009",2009.01.24.a-Bangalizwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.a-Bangalizwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.a-Bangalizwe.pdf,2009.01.24.a,2009.01.24.a,5050,, +2009.01.23,23-Jan-09,2009,Invalid,BRAZIL,Maranho,Olho d'gua ,Swimming,Luciano Guimares dos Santos ,M,17,"Drowned, body scavenged by shark",Y,,,"Jornal Pequeno, 1/26/2009",2009.01.23-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.23-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.23-Santos.pdf,2009.01.23,2009.01.23,5049,, +2009.01.18,18-Jan-09,2009,Boat,AUSTRALIA,Victoria,Off Tower Hill,Fishing,Occupants: Scott & John Fulton,M,,"No injury to occupants, shark bit propeller",N,09h20,"White shark, 5.5 m ","The Standard, 1/20/2009",2009.01.18-Fulton-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.18-Fulton-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.18-Fulton-boat.pdf,2009.01.18,2009.01.18,5048,, +2009.01.16,16-Jan-09,2009,Unprovoked,NEW ZEALAND,South Island,Karitane Beach,Surfing,Tane Tokona,M,,"No injury, bumped off board by the shark",N,,,"R. Weeks, GSAF",2009.01.16-Tokana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.16-Tokana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.16-Tokana.pdf,2009.01.16,2009.01.16,5047,, +2009.01.13.R,Reported 13-Jan-2009,2009,Unprovoked,SOUTH AFRICA,Western Cape Province,"Shark Alley, off Gansbaai",,4 poachers ,,,FATAL,Y,,,"ABC News, 1/13/2009",2009.01.13.R-Poachers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.13.R-Poachers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.13.R-Poachers.pdf,2009.01.13.R,2009.01.13.R,5046,, +2009.01.12,12-Jan-09,2009,Unprovoked,AUSTRALIA,New South Wales,"Windang, Lake Illawara",Snorkeling,Steven Fogarty,M,24,Puncture wounds to right calf,N,10h45,"Dusky shark, 2m","T. Peake, GSAF",2009.01.12-Fogarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.12-Fogarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.12-Fogarty.pdf,2009.01.12,2009.01.12,5045,, +2009.01.11.b,11-Jan-09,2009,Unprovoked,AUSTRALIA,Tasmania,Binalong Bay,Surfing,Hannah Mighall,F,13,Severe lacerations to right leg,N,15h45,"White shark, 5m","P. Kemp, GSAF; C. Black pp. 169-177",2009.01.11.b-Mighall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.b-Mighall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.b-Mighall.pdf,2009.01.11.b,2009.01.11.b,5044,, +2009.01.11.a,11-Jan-09,2009,Unprovoked,AUSTRALIA,New South Wales,Fingal Beach,Surfing,Jonathan Beard,M,31,Left thigh severely bitten,N,09h00,"White shark, 3.5m","T. Peake, GSAF",2009.01.11.a-Beard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.a-Beard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.a-Beard.pdf,2009.01.11.a,2009.01.11.a,5043,, +2009.01.10.R, 10-Jan-2009,2009,Boat,NEW ZEALAND,North Island,Hawkes Bay,Fishing,Bry & David Mossman & 2 friends,,,"No injury to occupants, shark hit boat & bit outboard motor",N,,"Mako shark, 3m","New Zealand Herald, 1/10/2009",2009.01.10.R-Mossman-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.R-Mossman-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.R-Mossman-boat.pdf,2009.01.10.R,2009.01.10.R,5042,, +2009.01.10.a,10-Jan-09,2009,Unprovoked,ECUADOR,Galapagos Islands,Isla Isabella,Surfing,Gonzalo Vsquez Alcvar ,M,22,Right lower leg bitten & defense wounds to hand,N,,,"C. Johansson, GSAF",2009.01.10.a-Alcivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.a-Alcivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.a-Alcivar.pdf,2009.01.10.a,2009.01.10.a,5041,, +2009.01.06,06-Jan-09,2009,Unprovoked,NEW ZEALAND,North Island,Haumoana ,Swimming,Greg Sims,M,49,Posterior thigh bitten,N,17h30,Broadnose sevengill shark,"R. Weeks, GSAF",2009.01.06-Sims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.06-Sims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.06-Sims.pdf,2009.01.06,2009.01.06,5040,, +2009.01.00,Jan-09,2009,Unprovoked,CUBA,Guantanamo Province,Guantanamo,Spearfishing,John,,,Lacerations to right calf,N,,Bull shark,"C. Johansson, GSAF",2009.01.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.00-Cuba.pdf,2009.01.00,2009.01.00,5039,, +2008.12.30,30-Dec-08,2008,Invalid,AUSTRALIA,Western Australia,Port Kennedy Beach,Crabbing,5 m aluminum dinghy - occupants Mr. & Mrs. Paul Vickery,,,"Reports said a shark attacked the dinghy, but Vickery said it did not",N,09h30,No shark involvement,"Ninemsn, 12/30/2008",2008.12.30-Vickery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.30-Vickery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.30-Vickery.pdf,2008.12.30,2008.12.30,5038,, +2008.12.27.d,27-Dec-08,2008,Boat,AUSTRALIA,Tasmania,near Schouten Island,Yacht race,Wild Oats XI,,,No injury to occupants - shark became entangled in aft rudder,N,,2 m shark,"Sydney Morning Herald, 12/28/2008",2008.12.27.d-WildOats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.d-WildOats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.d-WildOats.pdf,2008.12.27.d,2008.12.27.d,5037,, +2008.12.27.c,27-Dec-08,2008,Unprovoked,AUSTRALIA,New South Wales,Seal Rocks,Boogie Boarding,Bayden Schumann,M,10,"No injury, shark tore his swim fin",N,,,"T. Peake, GSAF",2008.12.27.c-Schumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.c-Schumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.c-Schumann.pdf,2008.12.27.c,2008.12.27.c,5036,, +2008.12.27.b,27-Dec-08,2008,Unprovoked,AUSTRALIA,New South Wales,"Long Reef, north of Sydney",Kayaking,Steve Kulcsar,M,29,"No injury, shark struck kayak, catapulting him into the water",N,11h00,"White shark, 4m to 5m ","Canberra Times, 12/28/2008",2008.12.27.b-Kulcsar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.b-Kulcsar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.b-Kulcsar.pdf,2008.12.27.b,2008.12.27.b,5035,, +2008.12.27.a,27-Dec-08,2008,Unprovoked,AUSTRALIA,Western Australia,Port Kennedy Beach,Snorkeling,Brian Guest,M,51,FATAL,Y,07h00,4 to 5m white shark,"T. Peake, GSAF",2008.12.27.a-Guest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.a-Guest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.a-Guest.pdf,2008.12.27.a,2008.12.27.a,5034,, +2008.12.20,20-Dec-08,2008,Unprovoked,USA,California,"Dillon Beach, Marin County",Kayaking,Tony Johnson,M,,"No injury, shark struck paddle",N,15h00,White shark,R. Collier,2008.12.20-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.20-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.20-Johnson.pdf,2008.12.20,2008.12.20,5033,, +2008.12.14,14-Dec-08,2008,Unprovoked,NEW ZEALAND,North Island,Maraetai,Fishing,Ken Lindberg,M,,Lacerations to left calf and ankle,N,,Bronze whaler shark?,"R.D. Weeks, GSAF",2008.12.14-Lindberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.14-Lindberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.14-Lindberg.pdf,2008.12.14,2008.12.14,5032,, +2008.12.10,10-Dec-08,2008,Provoked,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Fishing,Luke Parker,M,15,"Lacerations to knees, thigh and hip by hooked shark PROVOKED iNCIDENT ",N,20h00,"Raggedtooth shark, 2m","The Herald, 12/12/2008",2008.12.10-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.10-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.10-Parker.pdf,2008.12.10,2008.12.10,5031,, +2008.12.06,06-Dec-06,2008,Boat,AUSTRALIA,New South Wales,Mowarry Point,Fishing,"6 m Seaduce - Occupants: Allen Roberts, Jason Savage & Rob Lindsay.",,,Shark bit boats sea anchor,N,Morning,"White shark, 4.5 to 5 m ",S. Chenhall,2008.12.06-boat_Seaducer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.06-boat_Seaducer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.06-boat_Seaducer.pdf,2008.12.06,2008.12.06,5030,, +2008.12.00,Dec-08,2008,Unprovoked,MOZAMBIQUE,Inhambane Province,Chidenguele,Spearfishing,Darryl Kriel,M,,FATAL,Y,,Zambesi shark?,J. Little,2008.12.00-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.00-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.00-Kriel.pdf,2008.12.00,2008.12.00,5029,, +2008.11.28,28-Nov-08,2008,Unprovoked,EGYPT,Red Sea,Elphinstone Reef,Scuba diving,female diver,F,,Lacerations to fingers,N,Morning,Oceanic whitetip shark,"E. Ritter, GSAF",2008.11.28-ElphinstoneReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.28-ElphinstoneReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.28-ElphinstoneReef.pdf,2008.11.28,2008.11.28,5028,, +2008.11.25,25-Nov-08,2008,Sea Disaster,PHILIPPINES,Batanes Provine,Luzon Strait,Sinking of the cargo ship Mark Jason,4 crew,M,,"Of the 20 crew, 4 were bitten by shark. None of their iinjuries were life-threatening",N,,,"C. Johansson, GSAF",2008.11.25-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.25-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.25-Philippines.pdf,2008.11.25,2008.11.25,5027,, +2008.11.24,24-Nov-08,2008,Unprovoked,ECUADOR,Galapagos Islands,Santa Cruz,,a Danish tourist,F,,Leg bitten,N,,,ecuadorinmediato.com,2008.11.24-Galapagos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.24-Galapagos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.24-Galapagos.pdf,2008.11.24,2008.11.24,5026,, +2008.11.09.b,09-Nov-08,2008,Boat,AUSTRALIA,South Australia,North Haven,Fishing,,M,,"No injury to occupant, shark bit dinghy & motor",N,,Bronze whaler shark,"C. Johansson, GSAF",2008.11.09.b-dinghy-NorthHaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.b-dinghy-NorthHaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.b-dinghy-NorthHaven.pdf,2008.11.09.b,2008.11.09.b,5025,, +2008.11.09.a,09-Nov-08,2008,Sea Disaster,TAIWAN,,50 miles off Kaohsiung,Fishing boat swamped in storm,Chen Te-hsing,M,45,FATAL,Y,,,"Reuters, 11/10/2008",2008.11.09.a-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.a-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.a-Taiwan.pdf,2008.11.09.a,2008.11.09.a,5024,, +2008.11.06,06-Nov-08,2008,Unprovoked,PHILIPPINES,Luzon,"off Paoay, Ilocos Norte Province",Fishing,Joel Bacud,M,39,Torso & righ arm bitten FATAL,Y,10h00 -- 11h00,,"Sun Star, 11/08/2008",2008.11.06-Bacud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.06-Bacud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.06-Bacud.pdf,2008.11.06,2008.11.06,5023,, +2008.10.22,22-Oct-08,2008,Provoked,AUSTRALIA,New South Wales,"Oceanworld, Manley",Scuba diving,Steve Cloke,M,34,Small laceration to head from captive shark,N,17h20,"Grey nurse shark, 3m","Herald, 10/22/2008",2008.10.22-Clote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.22-Clote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.22-Clote.pdf,2008.10.22,2008.10.22,5022,, +2008.10.21,21-Oct-08,2008,Unprovoked,NEW CALEDONIA,,,Spearfishing,Nicolas Wright,M,24,Legs bitten,N,11h00,Lemon shark,"C. Johansson, GSAF",2008.10.21-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.21-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.21-Wright.pdf,2008.10.21,2008.10.21,5021,, +2008.10.12,12-Oct-08,2008,Provoked,AUSTRALIA,Northern Territory,Darwin,Fishing,Geoff Johnson,M,50,Right leg injured by hook and hooked shark PROVOKED INCIDENT,N,," reef shark, 1.8m","Northern Territory News, 10/14/2008",2008.10.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.12-Johnson.pdf,2008.10.12,2008.10.12,5020,, +2008.10.11,11-Oct-08,2008,Unprovoked,AUSTRALIA,New South Wales,Lake Macquarie,Surfing,male,M,15,"No injury, board damaged",N,15h30,,"Herald, 10/12/2008",2008.10.11-LakeMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.11-LakeMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.11-LakeMacquarie.pdf,2008.10.11,2008.10.11,5019,, +2008.10.08,08-Oct-08,2008,Unprovoked,USA,Florida,"Santa Rosa Beach, Walton County",Fishing,Hudson Anthony,M,11,Lacerations,N,12h00,,"L. Garlngton, Memphis Commercial Appeal, 10/9/2008",2008.10.08-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.08-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.08-Anthony.pdf,2008.10.08,2008.10.08,5018,, +2008.10.06,06-Oct-08,2008,Unprovoked,CROATIA," Split-Dalmatia Count,","Smokvina Bay, Vis Island",Spearfishing,Damjan Pecek ,M,43,Calf bitten,N,12h00,5 m white shark,A. De Maddalena,2008.10.06-Pecek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.06-Pecek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.06-Pecek.pdf,2008.10.06,2008.10.06,5017,, +2008.09.28.b,28-Sep-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,David Logan,M,44,Small puncture wounds to the heel of left foot,N,11h45,,S. Petersohn,2008.09.28.b-Logan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.b-Logan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.b-Logan.pdf,2008.09.28.b,2008.09.28.b,5016,, +2008.09.28.a,28-Sep-08,2008,Unprovoked,USA,Florida,Bethune Beach,Surfing,David Carr,M,40,Right foot bitten,N,11h00,+3' shark,S. Petersohn,2008.09.28.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.a-Carr.pdf,2008.09.28.a,2008.09.28.a,5015,, +2008.09.15,15-Sep-08,2008,Provoked,AUSTRALIA,Northern Territory,Near Croker Island,Swimming,Quentin Gorrell,M,43,Right hand lacerated by netted shark PROVOKED INCIDENT,N,14h30,Bronze whaler shark,"Northern Territory News, 9/18/2008",2008.09.15-Gorrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.15-Gorrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.15-Gorrell.pdf,2008.09.15,2008.09.15,5014,, +2008.09.14,14-Sep-08,2008,Unprovoked,USA,Florida,"Ormond-by-the-Sea, Volusia County",Swimming,,M,32,Lacerations to foot,N,12h00,2' to 3' juvenile shark,S. Petersohn,2008.09.14-Ormond-by-the-Sea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.14-Ormond-by-the-Sea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.14-Ormond-by-the-Sea.pdf,2008.09.14,2008.09.14,5013,, +2008.09.09,09-Sep-08,2008,Unprovoked,USA,Hawaii,"Ka'a'awa, Oahu",Surfing,Todd Murashige,M,40,Bitten on right thigh & calf,N,16h30,Tiger shark,"Honolulu Advertiser, 9/10/08",2008.09.09-Murashige.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.09-Murashige.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.09-Murashige.pdf,2008.09.09,2008.09.09,5012,, +2008.09.08,08-Sep-08,2008,Unprovoked,USA,California,"Surf Beach, Lompoc, Santa Barbara County",Surfing,Kyle K.,M,,"No injury to surfer, board bitten",N,10h30,"White shark, 14' to 16' ",R. Collier,2008.09.08-Kyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.08-Kyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.08-Kyle.pdf,2008.09.08,2008.09.08,5011,, +2008.09.07,07-Sep-08,2008,Unprovoked,AUSTRALIA,New South Wales,"Clarks Beach, Byron Bay",Surfing,John Morgan,M,51,Shark became tangled in his surfboard leash. The surfer was not injured,N,12h00,3 m shark,"Mailonline.com, 9/8/2008",2008.09.07-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.07-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.07-Morgan.pdf,2008.09.07,2008.09.07,5010,, +2008.09.06.b,06-Sep-08,2008,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,male,M,43,Minor injury to foot,N,12h00,,"S. Petersohn, GSAF",2008.09.06.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.b-NSB.pdf,2008.09.06.b,2008.09.06.b,5009,, +2008.09.06.a,06-Sep-08,2008,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,male,M,15,Minor injury to foot,N,12h00,,"S. Petersohn, GSAF",2008.09.06.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.a-NSB.pdf,2008.09.06.a,2008.09.06.a,5008,, +2008.09.01,01-Sep-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joe McGauley,M,52,Shark bumped right ankle,N,10h00,4' shark,J. McGauley,2008.09.01-McGauley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.01-McGauley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.01-McGauley.pdf,2008.09.01,2008.09.01,5007,, +2008.09.00,Sep-08,2008,Unprovoked,USA,Florida,Hutchinson Island,Surfing,Daryl Zbar,M,,Right hand bitten,N,Morning,,"C. Johannson, GSAF",2008.09.00-Zbar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.00-Zbar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.00-Zbar.pdf,2008.09.00,2008.09.00,5006,, +2008.08.30.c,30-Aug-08,2008,Unprovoked,AUSTRALIA,New South Wales,"Tallow Beach, Byron Bay",Surfing,Ben Vining,M,29,"No injury, bumped off board by the shark",N,,,"C. Johansson, GSAF",2008.08.30.c-Vining.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.c-Vining.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.c-Vining.pdf,2008.08.30.c,2008.08.30.c,5005,, +2008.08.30.b,30-Aug-08,2008,Invalid,USA,Hawaii,"McKenzie Beach Park in Pahoa, Hawai'i ",Swimming,Kameron Brown,M,27,Death was probably due to drowning,Y,19h20,Shark involvement not confirmed,"D. Nakaso, Honolulu Advertiser, 8/31/2008",2008.08.30.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.b-Brown.pdf,2008.08.30.b,2008.08.30.b,5004,, +2008.08.30.a,30-Aug-08,2008,Provoked,ENGLAND,North Devon, Lundy Island,Fishing,Stephen Perkins,M,52,Wrist bitten by hooked shark PROVOKED INCIDENT,N,,Blue shark,"Telegraph.co.uk, 9/1/2008",2008.08.30.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.a-Perkins.pdf,2008.08.30.a,2008.08.30.a,5003,, +2008.08.28,28-Aug-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Thomas Gold,M,19,Superfical cut to left ankle,N,12h00,,"S. Petersohn, GSAF",2008.08.28-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.28-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.28-Gold.pdf,2008.08.28,2008.08.28,5002,, +2008.08.27,27-Aug-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Alexander Zgura,M,26,Lacerations to lower left leg,N,11h00,6' shark,"S. Petersohn, GSAF",2008.08.27-Zgura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.27-Zgura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.27-Zgura.pdf,2008.08.27,2008.08.27,5001,, +2008.08.24,24-Aug-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County","Swimming, towing surfboard",Jacob Shoup,M,20,Minor injury to left foot,N,15h00,,"S. Petersohn, GSAF",2008.08.24-Shoup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.24-Shoup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.24-Shoup.pdf,2008.08.24,2008.08.24,5000,, +2008.08.22,24-Aug-08,2008,Invalid,USA,North Carolina,"Surf City, Topsail Island, Pender County",Surfing,Jessica Brothers,F,20,Calf bitten,N,18h00,Shark involvement not confirmed,"C. Creswell, GSAF",2008.08.22-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.22-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.22-Brothers.pdf,2008.08.22,2008.08.22,4999,, +2008.08.20,20-Aug-08,2008,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Swimming,Jack Miller,M,47,3 lacerations to forearm,N,14h45,,News-Press.com ,2008.08.20-JackMiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.20-JackMiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.20-JackMiller.pdf,2008.08.20,2008.08.20,4998,, +2008.08.18,18-Aug-08,2008,Invalid,USA,South Carolina,"North Myrtle Beach, Horry County",,male,M,7,Minor injuries,N,,Shark involvement not confirmed,C. Creswell,2008.08.18-boy-SC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.18-boy-SC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.18-boy-SC.pdf,2008.08.18,2008.08.18,4997,, +2008.08.16,16-Aug-08,2008,Unprovoked,USA,US Virgin Islands,Buck Island,Treading water,Elizabeth Riggs,F,38,Severe lacerations to left foot,N,Dusk,8' bull shark or Caribbean reef shark,"M. Levne, GSAF",2008.08.16-Riggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.16-Riggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.16-Riggs.pdf,2008.08.16,2008.08.16,4996,, +2008.08.12,12-Aug-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Emma Klopchin ,F,13,Puncture wounds & 3-inch laceration to right calf,N,12h05,,"S. Petersohn, GSAF",2008.08.12-Klopchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.12-Klopchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.12-Klopchin.pdf,2008.08.12,2008.08.12,4995,, +2008.08.11,11-Aug-08,2008,Unprovoked,USA,Hawaii,"Ala Moana Beach Park, Oah'u",Diving,male,M,,"No injury, shark grabbed his bag of fish",N,14h00,"Tiger shark, 12'","Honolulu Advertiser, 8/13/2008",2008.08.11-AlaMoana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.11-AlaMoana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.11-AlaMoana.pdf,2008.08.11,2008.08.11,4994,, +2008.07.30.R,30-Jul-08,2008,Unprovoked,AUSTRALIA,Victoria,Levys Beach,Surfing,Aaron Seare,M,31,"No injury, surfboard leash severed",N,10h30,8' white shark or 7-gill shark,"Herald Sun, 7/31/2008",2008.07.30-Seare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30-Seare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30-Seare.pdf,2008.07.30.R,2008.07.30.R,4993,, +2008.07.30,Reported 30-Jul-2008,2008,Unprovoked,SOUTH AFRICA,,,,Michael Rutzen,M,,Lacerations to fingers,N,,White shark,http://www.youtube.com/watch?v=0jVJFXlapWY&feature=related,2008.07.30.R-Rutzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30.R-Rutzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30.R-Rutzen.pdf,2008.07.30,2008.07.30,4992,, +2008.07.27,27-Jul-08,2008,Unprovoked,PANAMA,San Carlos,Playa Teta,Swimming or surfing,Gerardo Solis ,M,,5 lacerations to left foot,N,18h00,3' shark,"International Herald Tribune, 7/28/2008",2008.07.27-Solis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.27-Solis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.27-Solis.pdf,2008.07.27,2008.07.27,4991,, +2008.07.26.b,26-Jul-08,2008,Unprovoked,MEXICO,Cabo San Lucas,,Swimming,Ryan Seacrest,M,33,3 puncture wounds to toe,N,,2' shark,"Fox News, 7/28/2008",2008.07.26.b-Seacrest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.b-Seacrest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.b-Seacrest.pdf,2008.07.26.b,2008.07.26.b,4990,, +2008.07.26.a,26-Jul-08,2008,Unprovoked,USA,Hawaii,"Honokowai, Maui",Swimming,U. Mataafa,M,,Minor injury,N,15h30,2' to 3' reef shark,"Maui News, 7/27/2008",2008.07.26.a-Maui,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.a-Maui,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.a-Maui,2008.07.26.a,2008.07.26.a,4989,, +2008.07.25.b,25-Jul-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Ethan Fulton,M,17,Right foot bitten,N,09h00,,"S. Petersohn, GSAF",2008.07.25.b-Fulton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.b-Fulton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.b-Fulton.pdf,2008.07.25.b,2008.07.25.b,4988,, +2008.07.25.a,25-Jul-08,2008,Unprovoked,USA,Hawaii,"Lahilahi Point, Oahu",Snorkeling,Kaori Fiack ,F,44,Forearm bitten ,N,08h45,,"Honolulu Star Bulletin, 7/26/2008",2008.07.25.a-Fiack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.a-Fiack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.a-Fiack.pdf,2008.07.25.a,2008.07.25.a,4987,, +2008.07.24.b,24-Jul-08,2008,Unprovoked,USA,North Carolina,"Surf City, Topsail Island, Pender County",Wading,Jake Martin,M,9,Minor lacerations to toe,N,,3' shark,"C. Creswell, GSAF",2008.07.24.b-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.b-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.b-Martin.pdf,2008.07.24.b,2008.07.24.b,4986,, +2008.07.24.a,24-Jul-08,2008,Unprovoked,USA,North Carolina,"Topsail Island, Pender County",Wading,Madeline Sinsley ,F,8,Lacerations to dorsum of right foot ,N,13h00,3' to 4' shark,"C. Creswell, GSAF",2008.07.24.a-Sinsley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.a-Sinsley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.a-Sinsley.pdf,2008.07.24.a,2008.07.24.a,4985,, +2008.07.23,23-Jul-08,2008,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Troy Zettle,M,15,Foot bitten after he stepped on the shark PROVOKED INCIDENT,N,14h30,,"S. Petersohn, GSAF",2008.07.23-Zettle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.23-Zettle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.23-Zettle.pdf,2008.07.23,2008.07.23,4984,, +2008.07.19,19-Jul-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,S.A.,M,16,Lacerations to lower left leg,N,13h55,4' shark,"S. Petersohn, GSAF",2008.07.19-NewSmyrnaBach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.19-NewSmyrnaBach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.19-NewSmyrnaBach.pdf,2008.07.19,2008.07.19,4983,, +2008.07.18,18-Jul-08,2008,Unprovoked,EGYPT,,Daedalus Reef,Diving,Russian male,M,,Leg severed,N,,Oceanic whitetip shark,Ocean7,2008.07.18-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.18-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.18-RedSea.pdf,2008.07.18,2008.07.18,4982,, +2008.07.13,13-Jul-08,2008,Invalid,USA,North Carolina,"Carolina Beach, New Hanover County",Body surfing,Donald Griffin,M,52,"Bruises, abrasions and some spinal and nerve damage when collided with marine animal, possibly a shark or dolphin.",N,,Shark involvement not confirmed,"C. Creswell, GSAF",2008.07.13-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.13-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.13-Griffin.pdf,2008.07.13,2008.07.13,4981,, +2008.07.11,11-Jul-08,2008,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Surfing,male,M,24,Laceration to foream,N,14h00,,"C. Creswell, GSAF",2008.07.11-Isle-of-Palms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.11-Isle-of-Palms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.11-Isle-of-Palms.pdf,2008.07.11,2008.07.11,4980,, +2008.07.09,09-Jul-08,2008,Unprovoked,USA,North Carolina,"Emerald Isle, Carteret County",Swimming,Bailleigh Foster,F,14,Lacerations to right foot,N,19h30,,"C. Creswell, GSAF",2008.07.09-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.09-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.09-Foster.pdf,2008.07.09,2008.07.09,4979,, +2008.07.05,05-Jul-08,2008,Unprovoked,USA,South Carolina,"Litchfield Beach, Georgetown County",,J.L.,F,17,Lacerations to right foot,N,14h21,,"C. Creswell, GSAF",2008.07.05-Lunti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.05-Lunti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.05-Lunti.pdf,2008.07.05,2008.07.05,4978,, +2008.07.00,Late Jul-2008,2008,Boat,UNITED KINGDOM,Sussex,"Rock-a-Nore, Hastings",Rowing an inflatable dinghy,Occupants: Luke Jones & James Sequin ,M,16,Shark leapt into & damaged the dinghy but no injury to occupants,N,,"Starry smoothhound shark, 1m","Hastings Observer, 8/1/2008",2008.07.00-UK-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.00-UK-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.00-UK-dinghy.pdf,2008.07.00,2008.07.00,4977,, +2008.06.28.c,28-Jun-08,2008,Invalid,USA,Hawaii,"Kamilo Point, Hawai'i",Wading,Nathan Labarios,M,53,Probable drowning with post-mortem bites,Y,Afternoon,Shark involvement prior to death not confirmed,"Honolulu Star Bulletin, 6/30/2008",2008.06.28.c-Labarios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.c-Labarios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.c-Labarios.pdf,2008.06.28.c,2008.06.28.c,4976,, +2008.06.28.b,28-Jun-08,2008,Unprovoked,BAHAMAS,Abaco Islands,,Spearfishing,Max Briggs,M,42,Lacerations to calf,N,11h00,"Bull shark, 6' to 7'","M. Briggs; C. Johansson, GSAF",2008.06.28.b-Briggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.b-Briggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.b-Briggs.pdf,2008.06.28.b,2008.06.28.b,4975,, +2008.06.28.a,28-Jun-08,2008,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surf skiing ,Kobus Maritz,M,46,"No injury, ski bitten",N,14h00,"White shark, 2m",,2008.06.28.a-Maritz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.a-Maritz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.a-Maritz.pdf,2008.06.28.a,2008.06.28.a,4974,, +2008.06.26.R,Reported 26-Jun-2008,2008,Unprovoked,SOUTH AFRICA,Western Cape Province,Struis Bay,Spearfishing (free diving),Kevin Macghie ,M,,No injury,N,,"White shark, 4.5m",D. Inggs; Gletwyn Rubidges Spearfishing and Freediving blog,2008.06.26.R-Macghie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.R-Macghie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.R-Macghie.pdf,2008.06.26.R,2008.06.26.R,4973,, +2008.06.26.b,26-Jun-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,29,Minor laceration to foot,N,Afternoon,,S. Petersohn,2008.06.26.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.b-NSB.pdf,2008.06.26.b,2008.06.26.b,4972,, +2008.06.26.a,26-Jun-08,2008,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Preston Pearman,M,37,Lacerations to hand,N,11h15,4.5 to 5' shark,"P. Pearman; C. Creswell, GSAF",2008.06.26.a-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.a-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.a-Pearman.pdf,2008.06.26.a,2008.06.26.a,4971,, +2008.06.24,24-Jun-08,2008,Unprovoked,BRAZIL,Bahia,Guarajuba,Surfing,Ricardo Garcia Santo S ,M,,"No injury, board bitten",N,Morning,,"O Globo, 6/25/2008",2008.06.24-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.24-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.24-Brazil.pdf,2008.06.24,2008.06.24,4970,, +2008.06.21,21-Jun-08,2008,Unprovoked,USA,California,"West Cove, Catalina Island",Kayaking,Bettina Pereira,F,40," No injury. Shark bumped kayak, flinging her into the water. ",N,09h00,"White shark, 15'","R. Collier, GSAF",2008.06.21-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.21-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.21-Pereira.pdf,2008.06.21,2008.06.21,4969,, +2008.06.20,20-Jun-08,2008,Unprovoked,USA,Florida,"Fernandina Beach, Nassau County",Wading,Jennifer Cation,F,35,Lacerations to lower right calf,N,11h10,,"News-Leader, 6/21/2008",2008.06.20-Cation.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.20-Cation.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.20-Cation.pdf,2008.06.20,2008.06.20,4968,, +2008.06.11,11-Jun-08,2008,Unprovoked,BRAZIL,Pernambuco,"Punta Del Chifre, Olinda",Surfing,Juan Rodrigues Galvao ,M,14,Laceration to left leg & foot,N,,,"O Globo, 6/12/2008",2008.06.11-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.11-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.11-Rodrigues.pdf,2008.06.11,2008.06.11,4967,, +2008.06.07,07-Jun-08,2008,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Body surfing,John Vasbinder,M,40,Lacerations & abrasions to right hand,N,,,"TC Palm, 6/20/08",2008.06.07-Vasbinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.07-Vasbinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.07-Vasbinder.pdf,2008.06.07,2008.06.07,4966,, +2008.06.02.R,Reported 02-Jun-2008,2008,Boat,SCOTLAND,Easter Ross,Balintore Bay,Fishing,"12' boat, 2 occupants",,,No injury to occupants; shark struck their boat,N,,Basking shark,"C. Johansson, GSAF",2008.06.02.R-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.02.R-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.02.R-Scotland.pdf,2008.06.02.R,2008.06.02.R,4965,, +2008.06.01.b,01-Jun-08,2008,Unprovoked,USA,South Carolina,Cherry Grove,Body surfing,Madi Taff,F,15,Foot bitten,N,18h30,5' shark,"C. Creswell, GSAF",2008.06.01.b-Taff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01.b-Taff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01.b-Taff.pdf,2008.06.01.b,2008.06.01.b,4964,, +2008.06.01.a,01-Jun-08,2008,Unprovoked,BRAZIL,Pernambuco,"Piedade, Recife",Swimming,Wellington dos Santos ,M,14,"Hand severed, buttocks bitten",N,15h00,Bull shark,Associated Press,2008.06.01-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01-Santos.pdf,2008.06.01.a,2008.06.01.a,4963,, +2008.05.26,26-May-08,2008,Unprovoked,USA,North Carolina,"Hammocks Beach State Park, Bear Island, Onslow County",Surfing,William Early,M,9,Biceps & lower arm bitten,N,15h50,,"C. Creswell, GSAF",2008.05.26-Early.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.26-Early.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.26-Early.pdf,2008.05.26,2008.05.26,4962,, +2008.05.24.b,24-May-08,2008,Sea Disaster,BAHAMAS,Grand Bahama Island,Off West End,Sea Disaster,unknown,M,,Boat capsized in squall. 2 bodies scavenged by sharks,N,,Tiger sharks in area,Associated Press,2008.05.24.b-BahamasBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.b-BahamasBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.b-BahamasBoat.pdf,2008.05.24.b,2008.05.24.b,4961,, +2008.05.24.a,24-May-08,2008,Unprovoked,MEXICO,Guerro,Playa Linda,Surfing,Bruce Grimes,M,49,Lacerations to right forearm and hand,N,Early morning,3 m shark,Associated Press,2008.05.24.a-Grimes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.a-Grimes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.a-Grimes.pdf,2008.05.24.a,2008.05.24.a,4960,, +2008.05.23,23-May-08,2008,Unprovoked,MEXICO,Guerro,Pantla Beach,Surfing,Osvaldo Mata Valdovinos ,M,21,FATAL,Y,,2 m shark,Reuters,2008.05.23-Mata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.23-Mata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.23-Mata.pdf,2008.05.23,2008.05.23,4959,, +2008.05.14,14-May-08,2008,Unprovoked,FIJI,Yasawa Islands,Turtle Island,Night diving,Aisake Sadole,M,28,FATAL,Y,Night,,"Fiji Times, 5/15/2008",2008.05.14-Sidole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.14-Sidole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.14-Sidole.pdf,2008.05.14,2008.05.14,4958,, +2008.05.10,10-May-08,2008,Unprovoked,AUSTRALIA,Western Australia,Albany,Swimming,Jason Cull,M,37,Severe lacerations to left leg,N,07h30,"White shark, 4m","Perth Now, 5/10/2008",2008.05.10-JasonCull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.10-JasonCull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.10-JasonCull.pdf,2008.05.10,2008.05.10,4957,, +2008.05.07.b,07-May-08,2008,Unprovoked,NEW CALEDONIA,North Province,Hienghne,Fishing,male,M,40,Lower legs bitten,N,14h00,2 small bull sharks,"C. Johansson, GSAF",2008.05.07.b-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.b-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.b-NewCaledonia.pdf,2008.05.07.b,2008.05.07.b,4956,, +2008.05.07.a,07-May-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Zane Atcha,M,6,2 inch laceration to left lower calf.,N,Just before noon,,"M. Johnson, Daytona News-Journal, 5/8/2008; S. Petersohn",2008.05.07.a-Atcha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.a-Atcha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.a-Atcha.pdf,2008.05.07.a,2008.05.07.a,4955,, +2008.05.01,01-May-08,2008,Provoked,SOUTH AFRICA,,,Fishing,male,M,24,Leg bitten by shark taken aboard Japanese trawler PROVOKED INCIDENT,N,,,National Sea Rescue Institute,2008.05.01-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.01-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.01-fisherman.pdf,2008.05.01,2008.05.01,4954,, +2008.04.28.b,28-Apr-08,2008,Unprovoked,MEXICO,Guerro,Troncones Beach,Surfing,Adrian Ruiz,M,24,FATAL Severe bite to right thigh,Y,Afternoon,Tiger shark,Surfline.com,2008.04.28.b-Ruiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.b-Ruiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.b-Ruiz.pdf,2008.04.28.b,2008.04.28.b,4953,, +2008.04.28.a,28-Apr-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,David Alger,M,18,3-inch laceration to dorsal surface of left foot,N,11h45,4' shark,S. Petersohn,2008.04.28.a-Alger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.a-Alger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.a-Alger.pdf,2008.04.28.a,2008.04.28.a,4952,, +2008.04.27,27-Apr-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Adam Tobin,M,24,Calf bitten,N,10h30,,S. Petersohn,2008.04.27-Tobin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.27-Tobin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.27-Tobin.pdf,2008.04.27,2008.04.27,4951,, +2008.04.26.b,26-Apr-08,2008,Unprovoked,NEW CALEDONIA,North Province,Poindimi,Swimming,Olivier Vilain ,M,32,Lacerations to left foot,N,Morning,"Bull shark, 1.8m","Les Nouvelles Caldonie, 4/28/2008 & 4/29/2008",2008.04.26.b-Vilain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.b-Vilain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.b-Vilain.pdf,2008.04.26.b,2008.04.26.b,4950,, +2008.04.26.a,26-Apr-08,2008,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Mark Pattison,M,21,Puncture wounds to right foot PROVOKED INCIDENT,N,09h50,,S. Petersohn,2008.04.26.a-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.a-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.a-Pattison.pdf,2008.04.26.a,2008.04.26.a,4949,, +2008.04.25,25-Apr-08,2008,Unprovoked,USA,California,"Solana Beach, San Diego County",Swimming,Dave Martin,M,66,FATAL,Y,07h00,"White shark, 12' to 15'",R. Collier,2008.04.25-DaveMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.25-DaveMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.25-DaveMartin.pdf,2008.04.25,2008.04.25,4948,, +2008.04.20.b,20-Apr-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,female,M,14,Cuts & punctures to right foot,N,08h45,,"S. Petersohn, GSAF ",2008.04.20.b-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.b-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.b-Girl.pdf,2008.04.20.b,2008.04.20.b,4947,, +2008.04.20.a,20-Apr-08,2008,Unprovoked,AUSTRALIA,New South Wales,Crescent Head,,Jamie Adlington,M,,,UNKNOWN,,"Tiger shark, 2.3m ","T. Peake, GSAF",2008.04.20.a-Adlington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.a-Adlington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.a-Adlington.pdf,2008.04.20.a,2008.04.20.a,4946,, +2008.04.19.R,Reported 19-Apr-2008,2008,Invalid,SOUTH AFRICA,KwaZulu-Natal,Aliwal Shoal,Free-diving,Jean-Francois Avenier,M,,"As he pushd the shark away from his camera, his finger was cut on a tooth",N,,"Tiger shark, 13' female",J. Avenier,2008.04.19.R-Avenier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.19.R-Avenier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.19.R-Avenier.pdf,2008.04.19.R,2008.04.19.R,4945,, +2008.04.18,18-Apr-08,2008,Invalid,MEXICO,Quintana Roo,"Delfines Beach, Cancun",Swimming,Joram Galleros Villanueva,M,32,Probable drowning with post-mortem bites,Y,Evening,"Reported by media as shark attack, but shark involvement prior to death was not confirmed",C.Johansson,2008.04.18-Villanueva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.18-Villanueva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.18-Villanueva.pdf,2008.04.18,2008.04.18,4944,, +2008.04.17,17-Apr-08,2008,Invalid,AUSTRALIA,Queensland,"Duranbah, Greenmount Beach",Surfing,David Weale,M,19,2 puncture wounds to leg,N,11h00,Shark involvement not confirmed; thought to be a barracuda bite,"C. Johansson, GSAF",2008.04.17-Weale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.17-Weale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.17-Weale.pdf,2008.04.17,2008.04.17,4943,, +2008.04.15,15-Apr-08,2008,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Bobby Phillips,M,30,Puncture wounds to right foot,N,15h00,1.5' to 2' shark,B. Phillips,2008.04.15-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.15-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.15-Phillips.pdf,2008.04.15,2008.04.15,4942,, +2008.03.28.a,28-Mar-08,2008,Unprovoked,USA,Florida,"Near Cocoa Beach, Brevard County",Boogie Boarding,Teresa Holloway,M,,Right foot bitten,N,,a small shark,"D. MacAnnally, Eyewitness News ",2008.03.28.a-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.a-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.a-Holloway.pdf,2008.03.28.a,2008.03.28.a,4941,, +2008.04.09.R,Reported 09-Apr-2008,2008,Unprovoked,FIJI,,,Spearfishing,Rutu Meli,M,,Left forearm bitten ,N,,,"C. Johansson, GSAF; Orange County Register 4/9/2009",2008.04.09.R-Meli-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.09.R-Meli-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.09.R-Meli-Fiji.pdf,2008.04.09.R,2008.04.09.R,4940,, +2008.04.08.R,Reported 08-Apr-2008,2008,Unprovoked,USA,Florida,"1.4 miles south of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Surfing,,,,Foot bitten,N,,,"News 13,4/8/2008",2008.04.08.R-NSB-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.R-NSB-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.R-NSB-2.pdf,2008.04.08.R,2008.04.08.R,4939,, +2008.04.08,08-Apr-08,2008,Unprovoked,AUSTRALIA,New South Wales,"Lighthouse Beach, Ballina",Body boarding,Peter Edmonds,M,16,FATAL,Y,08h05,Bull shark,"T. Peake, GSAF; NSW Police Force",2008.04.08.a-Edmonds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.a-Edmonds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.a-Edmonds.pdf,2008.04.08,2008.04.08,4938,, +2008.04.03,03-Apr-08,2008,Unprovoked,USA,Florida,"South of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Walking out of the water after surfing,Joey Giangrasso,M,18,Right foot & ankle bitten,N,12h00,,"S. Petersohn, GSAF ",2008.04.03-Giangrasso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.03-Giangrasso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.03-Giangrasso.pdf,2008.04.03,2008.04.03,4937,, +2008.03.28.c,28-Mar-08,2008,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Fishing from surfski,Jacques Peens,M,39,Right leg bitten,N,,,"C. Johansson, GSAF",2008.03.28.c-Peens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.c-Peens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.c-Peens.pdf,2008.03.28.c,2008.03.28.c,4936,, +2008.03.28.b,28-Mar-08,2008,Unprovoked,USA,Florida,"New Smyrna Beach / Ponce Inlet, Volusia County",Surfing,Mark Lemelin,M,52,Foot bitten,N,18h50,4' to 5' shark,"S. Petersohn, GSAF ",2008.03.28.b-Lemelin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.b-Lemelin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.b-Lemelin.pdf,2008.03.28.b,2008.03.28.b,4935,, +2008.03.25,25-Mar-08,2008,Unprovoked,USA,Florida,"Palm Beach Shores, Palm Beach County",Wading,Nick Canganelli,M,15,Shin bitten,N,,6' shark,"The Plain Dealer, 4/1/2008",2008.03.25-Canganelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.25-Canganelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.25-Canganelli.pdf,2008.03.25,2008.03.25,4934,, +2008.03.23,23-Mar-08,2008,Unprovoked,USA,Florida,"South of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Walking out of the water after surfing,male,M,13,Three small lacerations/ punctures to right foot,N,11h30,2.5' shark,"S. Petersohn, GSAF ",2008.03.23-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.23-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.23-NewSmyrnaBeach.pdf,2008.03.23,2008.03.23,4933,, +2008.03.21,21-Mar-08,2008,Unprovoked,USA,Florida,"Beachway Avenue Approach, New Smyrna Beach, Volusia County",Wading,male,M,14,Two 3-inch lacerations to right ankle,N,15h53,,"S. Petersohn, GSAF ",2008.03.21-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.21-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.21-NewSmyrnaBeach.pdf,2008.03.21,2008.03.21,4932,, +2008.03.15,15-Mar-08,2008,Unprovoked,USA,Florida,"Lovers Key State Park, Bonita Springs, Lee County",Jet skiing,male,M,8,Minor injury,N,Afternoon,Shark involvement not confirmed,News-Press.com ,2008.03.15-BonitaSprings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.15-BonitaSprings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.15-BonitaSprings.pdf,2008.03.15,2008.03.15,4931,, +2008.03.07,07-Mar-08,2008,Unprovoked,USA,California," Huntington Beach, Orange County",Surfing,Thomas Larkin,M,27,"No injury to surfer, surfboard bitten by the shark",N,08h00,White shark,R. Collier,2008.03.07-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.07-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.07-Larkin.pdf,2008.03.07,2008.03.07,4930,, +2008.02.24,24-Feb-08,2008,Unprovoked,BAHAMAS,Northern Bahamas,"Dive site known as ""The End of the Map""",Diving,Markus Groh,M,49,"Leg bitten, FATAL",Y,10h00,"A bull shark, according to some of the divers on the boat","Sun-Sentinel, 2/25/2008",2008.02.24-Groh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.24-Groh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.24-Groh.pdf,2008.02.24,2008.02.24,4929,, +2008.02.21.R,Reported 21-Feb-2008,2008,Unprovoked,FRENCH POLYNESIA,Society Islands,Tahiti,Spearfishing,Apia Hauta,M,26,Lacerations to face,N,,,"Independent News Online, 2/21/2008",2008.02.21.R-Hauta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.21.R-Hauta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.21.R-Hauta.pdf,2008.02.21.R,2008.02.21.R,4928,, +2008.02.15,15-Feb-08,2008,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Harold Bradner,M,25,Lacerations to foot,N,17h00,,"S. Petersohn, GSAF",2008.02.15-Bradner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.15-Bradner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.15-Bradner.pdf,2008.02.15,2008.02.15,4927,, +2008.02.07,07-Feb-08,2008,Unprovoked,AUSTRALIA,New South Wales,Horseshoe Bay,Surfing,Fiona Casey,F,14,Abrasions to elbow; collided with shark,N,,1 m shark,"T. Peake, GSAF",2008.02.07-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.07-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.07-Casey.pdf,2008.02.07,2008.02.07,4926,, +2008.02.06,06-Feb-08,2008,Unprovoked,USA,Florida,"Opposite Patrick Air Force Base, Brevard County",Surf-skiing,Unidentified,M,,Lacerations to foot,N,,3' shark,"Vero Beach Press Journal, 2/7/2008",2008.02.06-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.06-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.06-Surfer.pdf,2008.02.06,2008.02.06,4925,, +2008.01.29,29-Jan-08,2008,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Suncoast Pirates Beach, Durban",Surf-skiing,Wayne Symington,M,42,"No injury to surf-skiier, shark holed ski",N,,"Blacktip shark, 2m","The Mercury, 2/1/2008",2008.01.29-Symington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.29-Symington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.29-Symington.pdf,2008.01.29,2008.01.29,4924,, +2008.01.27,27-Jan-08,2008,Provoked,AUSTRALIA,Queensland,200 km east of Coolangatta ,Accidentally stood on hooked shark's tail before attempting to gut it ,Jarryd Tinson ,M,20,Laceration to left knee PROVOKED INCIDENT,N,07h30,"Mako shark, 90kg",News.com.au,2008.01.27-Tinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.27-Tinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.27-Tinson.pdf,2008.01.27,2008.01.27,4923,, +2008.01.19.R,Reported 19-Jan-2008,2008,Invalid,NEW ZEALAND,South Island,Marfells Beach,Wading,Matthew O'Neill,M,,"Stingray envenomation, not a shark",N,,No shark involvement,"R.D. Weeks, GSAF",2008.01.19.R-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.19.R-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.19.R-O'Neill.pdf,2008.01.19.R,2008.01.19.R,4922,, +2008.01.14,14-Jan-08,2008,Boat,NEW ZEALAND,North Island,Omaha Beach,Attempting to chase shark out to sea,inflatable rescue boat. Occupants: Lauren Johnson &. Kris O'Neill,,,"No injury to occupants, pontoon punctured",N,14h00,"Bronze whaler shark, 4m","TV3; R.D. Weeks, GSAF",2008.01.14-inflatable-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.14-inflatable-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.14-inflatable-boat.pdf,2008.01.14,2008.01.14,4921,, +2008.01.10,10-Jan-08,2008,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Jordan Marsden,M,20,Left foot bitten,N,,a small shark,"Forida Today, 1/18/2008; Channel 9 News",2008.01.10-Marsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.10-Marsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.10-Marsden.pdf,2008.01.10,2008.01.10,4920,, +2008.00.00.b,Fall 2008,2008,Provoked,USA,Florida,"Off Fort Pierce, St. Lucie County",Fishing for snapper,Johnny Silva,M,,Minor injury to hand by hooked shark PROVOKED INCIDENT,N,,"Nurse shark, 10'",Extremecoast.com/ 1/30/2009,2008.00.00.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.b-Silva.pdf,2008.00.00.b,2008.00.00.b,4919,, +2008.00.00.a,Summer-2008,2008,Unprovoked,MEXICO,Baja California,Playas de Tijuana,Surfing,Chase Edwards,M,26,Leg bitten,N,,Possibly a hammerhead shark,"San Diego Reader, 1/7/2009",2008.00.00.a-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.a-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.a-Edwards.pdf,2008.00.00.a,2008.00.00.a,4918,, +2007.12.21,21-Dec-07,2007,Unprovoked,ECUADOR,Galapagos Islands,San Cristobal Island,Surfing,Sam Judd,M,24,Lacerations & puncture wounds to left thigh,N,,3 m shark,"R. D. Weeks, GSAF; Radio New Zealand",2007.12.21-Judd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.21-Judd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.21-Judd.pdf,2007.12.21,2007.12.21,4917,, +2007.12.19,19-Dec-07,2007,Invalid,BRITISH VIRGIN ISLANDS,Green Bay,,Scuba diving,Wayne Francis Johanning,M,53,Shark bites were post-mortem,Y,,,"C. Johannson, GSAF",2007.12.19-Johanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.19-Johanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.19-Johanning.pdf,2007.12.19,2007.12.19,4916,, +2007.12.18,18-Dec-07,2007,Unprovoked,AUSTRALIA,New South Wales,Jimmy's Beach,Surfing,Ben Morcom,M,31,Severe lacerations to right buttock,N,11h00,2 m shark,"Daily Telegraph, 12/18/2007",2007.12.18-Morcom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.18-Morcom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.18-Morcom.pdf,2007.12.18,2007.12.18,4915,, +2007.12.15,15-Dec-07,2007,Unprovoked,AUSTRALIA,Queensland,South Stradbroke Island,Swimming,Josh Edwards,M,teen,Lacerations to hand,N,,"""a small shark""",goldcoast.com.au,2007.12.15-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.15-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.15-Edwards.pdf,2007.12.15,2007.12.15,4914,, +2007.12.14,14-Dec-07,2007,Invalid,AUSTRALIA,New South Wales,Bondi ,Swimming,Scott Wright,M,34,Lacerations to left forearm,N,20h30,Not a shark attack; it was a hoax,"Sydney Morning Herald, 12/16/2007",2007.12.14-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.14-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.14-Wright.pdf,2007.12.14,2007.12.14,4913,, +2007.12.10,10-Dec-07,2007,Unprovoked,USA,Hawaii,"Waialua Bay, O'ahu",Surfing,Valentino Ramirez,M,52,"No injury, shark bit surfboard ",N,"""Just before 11h00""",Tiger shark,"Honolulu Advertiser, 12/12/2007",2007.12.10-Ramirez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.10-Ramirez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.10-Ramirez.pdf,2007.12.10,2007.12.10,4912,, +2007.12.09,09-Dec-07,2007,Unprovoked,NEW ZEALAND,South Island,Kaikoura,Surfing,Olivia Hislop,F,,"No injury, shark bit surfboard & severed leash",N,,,"NZ Herald, 12/11/2007",2007.12.09-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.09-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.09-Hislop.pdf,2007.12.09,2007.12.09,4911,, +2007.12.07,07-Dec-07,2007,Unprovoked,BRAZIL,Pernambuco,Itamarac,Removing fish from a trap,Malvis Cristino de Souza,M,28,20 cm injury to left foot,N,,2.27 m shark,"JC online, 12/8/2007",2007.12.07-Malvis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.07-Malvis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.07-Malvis.pdf,2007.12.07,2007.12.07,4910,, +2007.11.18,18-Nov-07,2007,Provoked,AUSTRALIA,Western Australia,In a tidal creek 5 km from Wickham,Fishing,male,M,32,Minor injury to finger by netted shark PROVOKED INCIDENT,N,,reef shark,"thewest.com.au, 11/19/2007",2007.11.18-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.18-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.18-WA.pdf,2007.11.18,2007.11.18,4909,, +2007.11.08,08-Nov-07,2007,Unprovoked,AUSTRALIA,New South Wales,"Wategos Beach, Byon Bay",Surfing,Craig Evans,M,,"No injury, teethmarks in board & torn wetsuit",N,14h20,,"Northern Star, 11/10/2007",2007.11.08-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.08-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.08-Evans.pdf,2007.11.08,2007.11.08,4908,, +2007.11.07,07-Nov-07,2007,Unprovoked,SOUTH AFRICA,Western Cape Province,The Strand,Surfing,Andrew Smith,M,14,Lacerations to feet,N,17h30,1.5 to 2 m shark,"The Times (Cape Town), 11/9/2007",2007.11.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.07-Smith.pdf,2007.11.07,2007.11.07,4907,, +2007.11.06,06-Nov-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joseph Fox,M,21,Cut to right knee,N,11h115,4' to 5' shark,"S. Petersohn; GSAF' Central Florida News, 11/7/2006",2007.11.06-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.06-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.06-Fox.pdf,2007.11.06,2007.11.06,4906,, +2007.11.04,04-Nov-07,2007,Unprovoked,USA,Florida,"Round Island Park, Indian River County",Surfing,Jeffrey Nolan,M,42,Lacerations to right leg,N,09h00,5' shark,"T.C. Palm, 11/4/2007 & 11/5/2007",2007.11.04-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.04-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.04-Nolan.pdf,2007.11.04,2007.11.04,4905,, +2007.11.03,03-Nov-07,2007,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Bonza Bay,Surfing,Lee Mellin,M,37,Lacerations to thigh,N,08h45,"White shark, 3m to 4m",Daily Dispatch,2007.11.03-Mellin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.03-Mellin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.03-Mellin.pdf,2007.11.03,2007.11.03,4904,, +2007.11.00,Nov-11,2007,Invalid,MEXICO,Baja California,Guadalupe Island,Shark diving,Patrick Walsh & Paul Damgaard ,M,,White shark breached cage. No injury to occupants,N,,,Today Show,2007.11.00-cage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.00-cage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.00-cage.pdf,2007.11.00,2007.11.00,4903,, +2007.10.29,29-Oct-07,2007,Unprovoked,USA,Hawaii,"Wailea, Maui",Floating,Aaron Finley,M,32,Lacerations to left lower leg,N,15h30,Tiger shark,KHNL8.com,2007.10.29-Finley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.29-Finley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.29-Finley.pdf,2007.10.29,2007.10.29,4902,, +2007.10.15,15-Oct-07,2007,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Surf-skiing,Linda Whitehurst,F,52,small laceration to wrist,N,11h30,"White shark, 2.5m ","Sydney Morning Herald, 10/15/2007",2007.10.15-Whitehurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.15-Whitehurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.15-Whitehurst.pdf,2007.10.15,2007.10.15,4901,, +2007.10.13,13-Oct-07,2007,Unprovoked,AUSTRALIA,Queensland,Holmes Reef,Spearfishing,Adam Wood,M,31,Laceration to calf,N,12h00,Bronze whaler shark,"news.com.au, 10/14/2007",2007.10.13-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.13-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.13-Wood.pdf,2007.10.13,2007.10.13,4900,, +2007.10.07,07-Oct-07,2007,Unprovoked,USA,California,"Venice Pier, Venice, Los Angeles County",Surfing,Sam Bendall,M,22,4 scratches on left hand,N,20h30,3' to 4' shark,R. Collier,2007.10.07-Bendall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.07-Bendall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.07-Bendall.pdf,2007.10.07,2007.10.07,4899,, +2007.10.06,06-Oct-07,2007,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,E.H.,M,16,Severe lacerations to right hand,N,08h10,"Blacktip shark, 5'",E. H.,2007.10.06-EH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.06-EH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.06-EH.pdf,2007.10.06,2007.10.06,4898,, +2007.09.30.c,30-Sep-07,2007,Unprovoked,USA,California,"Santa Monica, Los Angeles County",Surfing,Andrew Sinagra,M,,Puncture wound to foot,N,11h30,,R. Collier,2007.09.30.c-Sinagra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.c-Sinagra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.c-Sinagra.pdf,2007.09.30.c,2007.09.30.c,4897,, +2007.09.30.b,30-Sep-07,2007,Sea Disaster,PHILIPPINES,Palawan,Off Cagayancillo,"The 426-ton cargo ship Mia, laden with cement, capsized in heavy seas ",,M,,"FATAL Only 4 of the 18 on board were rescued, some of the missing were allegedly killed by sharks",Y,14h40,,"Cebu Daily News, 10/3/2007",2007.09.30.b-Mia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.b-Mia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.b-Mia.pdf,2007.09.30.b,2007.09.30.b,4896,, +2007.09.30.a,30-Sep-07,2007,Unprovoked,NEW CALEDONIA,Loyalty Islands,"Bay of Luengoni, Lifou Island",Swimming,Stphanie Belliard ,F,23,FATAL,Y,Early morning,Tiger shark,"Les Nouvelles Caledoniennes, 10/1/2007 ",2007.09.30.a-Belliard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.a-Belliard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.a-Belliard.pdf,2007.09.30.a,2007.09.30.a,4895,, +2007.09.28,28-Sep-07,2007,Unprovoked,BAHAMAS,Grand Bahama Island,Sweetings Cay,Spearfishing,Leslie Gano,F,48,Thigh bitten,N,12h00,Caribbean reef shark,"A. Brenneka, SharkAttackSurvivors.com",2007.09.28-Gano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.28-Gano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.28-Gano.pdf,2007.09.28,2007.09.28,4894,, +2007.09.27.b,27-Sep-07,2007,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,Sue Snyder,F,,"No injury to surfer, surfboard bitten",N,08h15,White shark,R. Collier,2007.09.27.b-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.b-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.b-Snyder.pdf,2007.09.27.b,2007.09.27.b,4893,, +2007.09.27.a,27-Sep-07,2007,Unprovoked,EGYPT,Red Sea,Daedalus Reef,Swimming,Kristina Aleksandrova,F,18 or 20,"Severe lacerations to lower left leg, ankle and foot",N,07h00,Oceanic whitetip sharks were in the vicinity,"E. Ritter & Y. Sobolev, GSAF; M. Salem ",2007.09.27.a-Aleksandrova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.a-Aleksandrova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.a-Aleksandrova.pdf,2007.09.27.a,2007.09.27.a,4892,, +2007.09.22.b,22-Sep-07,2007,Invalid,USA,Florida,Jupiter Inlet,Scuba diving,Nikki Cuomo,F,,Shark involvement prior to death unconfirmed,Y,,,"Florida Today, 12/14/2007",2007.09.22.b-Cuomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.b-Cuomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.b-Cuomo.pdf,2007.09.22.b,2007.09.22.b,4891,, +2007.09.22.a,22-Sep-07,2007,Unprovoked,USA,Florida,Huguenot Park,Surfing,,F,,Laceration to foot,N,,4' shark,"R.Duffy, First Coast News. 9/23/2007",2007.09.22.a-HuguenotPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.a-HuguenotPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.a-HuguenotPark.pdf,2007.09.22.a,2007.09.22.a,4890,, +2007.09.20,20-Sep-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Tyler Robertson,M,23,Small lacerations to bottom of right big toe,N,18h20,3' shark,"S. Petersohn, GSAF",2007.09.20-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.20-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.20-Robertson.pdf,2007.09.20,2007.09.20,4889,, +2007.09.17,17-Sep-07,2007,Unprovoked,SOLOMON ISLANDS,Marovo Lagoon,Kicha Island,Spearfishing,Corey Howell,M,,Left thigh bitten,N,Dusk,Gray reef shark,L. Choquette,2007.09.17-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.17-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.17-Corey.pdf,2007.09.17,2007.09.17,4888,, +2007.09.16.b,16-Sep-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading?,Jack Calogero,M,56,Laceration to right heel,N,11h15,,"S. Petersohn, GSAF",2007.09.16.b-Calogero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.b-Calogero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.b-Calogero.pdf,2007.09.16.b,2007.09.16.b,4887,, +2007.09.16.a,16-Sep-07,2007,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Jessica Riley,F,Teen,"No injury, surfboard bitten",N,Early morning,9.5' shark?,wsbtv.com,2007.09.16.a-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.a-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.a-Riley.pdf,2007.09.16.a,2007.09.16.a,4886,, +2007.09.13,13-Sep-07,2007,Unprovoked,USA,Florida,"Lauderdale-by-the-Sea, Broward County",Snorkeling,Brandon Chapman,M,14,"Minor injury, shark latched onto his abdomen",N,16h00,"Nurse shark, 2' to 3' ","Miami Herald, 9/13/2007; Sun-Sentinel, 9/14/2007",2007.09.13-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.13-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.13-Chapman.pdf,2007.09.13,2007.09.13,4885,, +2007.09.08,08-Sep-07,2007,Unprovoked,USA,Florida,"Pepper Park Beach, St. Lucie County",Wading,Carolyn Griffin,F,58,Puncture wounds & 2-inch laceration to calf,N,11h45,,"First Coast News, 9/11/2007",2007.09.08-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.08-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.08-Griffin.pdf,2007.09.08,2007.09.08,4884,, +2007.09.05,05-Sep-07,2007,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Colette Wilson,F,36,Laceration to right big toe,N,13h42,,"S. Petersohn, GSAF",2007.09.05-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.05-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.05-Wilson.pdf,2007.09.05,2007.09.05,4883,, +2007.09.04,04-Sep-07,2007,Unprovoked,USA,South Carolina,Sullivan's Island,Standing,Rory Corr,M,15,Lacerations to left calf and both feet ,N,18h30,,"C. Creswell, GSAF; J. Johnson, Post and Courier, 9/26/2007",2007.09.04-Corr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.04-Corr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.04-Corr.pdf,2007.09.04,2007.09.04,4882,, +2007.09.03.b,03-Sep-07,2007,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Jumping,female,F,12,Tiny punctures to arm,N,Morning,"18"" to 24"" shark","S. Petersohn, GSAF",2007.09.03.b-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.b-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.b-Daytona.pdf,2007.09.03.b,2007.09.03.b,4881,, +2007.09.03.a,03-Sep-07,2007,Unprovoked,USA,Florida,"Fort Lauderdale, Broward County",Swimming,Dominco Iaciofano,M,58,"3"" laceration to left forearm",N,09h45,Possibly a spinner shark,"S. Wyman, Sun-Sentinel, 9/3/2007; Local10.com",2007.09.03.a-Iaciofano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.a-Iaciofano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.a-Iaciofano.pdf,2007.09.03.a,2007.09.03.a,4880,, +2007.08.28.b,28-Aug-07,2007,Unprovoked,USA,Hawaii,"Ka'a'awa, Oahu",Body boarding,Joshua Sumait,M,15,Laceration to right heel,N,16h30,"Tiger shark, 10' to 12' ","Honolulu Advertiser, 8/29/2007",2007.08.28.b-Sumait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.b-Sumait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.b-Sumait.pdf,2007.08.28.b,2007.08.28.b,4879,, +2007.08.28.a,28-Aug-07,2007,Unprovoked,USA,California,"Marina State Beach, Monterey County",Surfing,Todd Endris,M,24,Lacerations to thigh & torso,N,10h45,"White shark, 12'",R. Collier,2007.08.28.a-Endris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.a-Endris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.a-Endris.pdf,2007.08.28.a,2007.08.28.a,4878,, +2007.08.26,26-Aug-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joseph Coursey,M,54,Left hand bitten,N,14h00,3' shark,"S. Petersohn, GSAF ",2007.08.26-Coursey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.26-Coursey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.26-Coursey.pdf,2007.08.26,2007.08.26,4877,, +2007.08.25,25-Aug-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Taylor Smith,M,27, 6 lacerations to left hand,N,Morning,3' shark,"S. Petersohn, GSAF; WESH 2 News",2007.08.25-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.25-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.25-Smith.pdf,2007.08.25,2007.08.25,4876,, +2007.08.22,22-Aug-07,2007,Provoked,USA,North Carolina,North Carolina Aquarium at Fort Fisher,Diving,Bruce Pennington,M,,Minor injury from captive shark PROVOKED INCIDENT,N,,Sand shark,"Clay Creswell, GSAF; WECT TV6",2007.08.22-Pennington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.22-Pennington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.22-Pennington.pdf,2007.08.22,2007.08.22,4875,, +2007.08.20,20-Aug-07,2007,Provoked,USA,Delaware,"Indian River Inlet, Rehoboth Beach",Fishing,male,M,,Forearm bitten by hooked shark PROVOKED INCIDENT,N,19h45,Sandtiger shark,"Delaware Coast Press, 8/24/2007",2007.08.20-DelawareFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.20-DelawareFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.20-DelawareFisherman.pdf,2007.08.20,2007.08.20,4874,, +2007.08.19.c,19-Aug-07,2007,Unprovoked,USA,Florida,"Islamorada Founder's Park, Plantation Key, Monroe County",Swimming,Chris Olstad,M,52,Torso bitten,N,20h15,,"Miami Herald, 8/20/2007",2007.08.19.c-Olstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.c-Olstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.c-Olstad.pdf,2007.08.19.c,2007.08.19.c,4873,, +2007.08.19.b,19-Aug-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,16,Foot bitten,N,12h39,4' to 5' shark,"S. Petersohn, GSAF",2007.08.19.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.b-NewSmyrnaBeach.pdf,2007.08.19.b,2007.08.19.b,4872,, +2007.08.19.a.,19-Aug-07,2007,Unprovoked,USA,South Carolina,"Lakewood Campground, Grand Strand, Horry County",Playing,male,M,7,Right calf bitten,N,10h00,,"C. Creswell, GSAF",2007.08.19.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.a-boy.pdf,2007.08.19.a.,2007.08.19.a.,4871,, +2007.08.15,15-Aug-07,2007,Unprovoked,USA,Florida,Sarasota Bay,Floating near boat & observing bioluminesce,Andrea Lynch,M,20,Puncture wounds to torso,N,Night,Possibly a 6' bull shark,"Charlotte Observer, 8/18/2007",2007.08.15-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.15-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.15-Lynch.pdf,2007.08.15,2007.08.15,4870,, +2007.08.12,12-Aug-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,female,F,15,"Minor injury, small lacerations to right foot",N,17h35, ,"S. Petersohn, GSAF",2007.08.12-girl-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.12-girl-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.12-girl-NewSmyrnaBeach.pdf,2007.08.12,2007.08.12,4869,, +2007.08.11,11-Aug-07,2007,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Walking out of the water after surfing,Matthew Barton,M,19,"Minor injury, lacerations to left ankle & foot ",N,18h00,,"S. Petersohn, GSAF",2007.08.11-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.11-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.11-Barton.pdf,2007.08.11,2007.08.11,4868,, +2007.08.09.b,09-Aug-07,2007,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Noah Green,M,30,Lacerations to right foot,N,16h40,,"C. Creswell, GSAF",2007.08.09.b-NoahGreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.b-NoahGreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.b-NoahGreen.pdf,2007.08.09.b,2007.08.09.b,4867,, +2007.08.09.a,09-Aug-07,2007,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Boogie Boarding,Chase Crawford,M,9,Lacerations to lower leg & ankle,N,14h00,,"C. Creswell, GSAF",2007.08.09.a-ChaseCrawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.a-ChaseCrawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.a-ChaseCrawford.pdf,2007.08.09.a,2007.08.09.a,4866,, +2007.08.07,07-Aug-07,2007,Unprovoked,USA,Florida,"Islamorada, Monroe County",Jumped into the water,Ashley Silverman,F,19,Lacerations to arm,N,Afternoon,Possibly a 10' bull shark,"Miami Herald, 8/8/2007",2007.08.07-Silverman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.07-Silverman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.07-Silverman.pdf,2007.08.07,2007.08.07,4865,, +2007.07.29,29-Jul-07,2007,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Jeffrey Clark,M,51,Minor injury to shoulder,N,Afternoon,,"S. Petersohn, GSAF",2007.07.29-JeffreyClark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.29-JeffreyClark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.29-JeffreyClark.pdf,2007.07.29,2007.07.29,4864,, +2007.07.28,28-Jul-07,2007,Unprovoked,USA,California,"Imperial Beach, San Diego County",Surfing,Jordan Springer,M,20,"No injury, shark bit surfboard",N,23h00,,R. Collier,2007.07.28-Springer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.28-Springer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.28-Springer.pdf,2007.07.28,2007.07.28,4863,, +2007.07.22,22-Jul-07,2007,Unprovoked,USA,California,"Malibu, Los Angeles County",Surf paddling,Vic Calandra,M,,"No injury, surfboard bumped by shark for 20 minutes",N,,"White shark, 12' ",R. Collier,2007.07.22-Calandra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.22-Calandra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.22-Calandra.pdf,2007.07.22,2007.07.22,4862,, +2007.07.21,21-Jul-07,2007,Boat,USA,California,"Bean Hollow State Beach, San Mateo County",Kayak Fishing,Dan Prather,M,,"No injury, kayak bitten",N,10h15,White shark,"R. Collier; San Francisco Chronicle, 7/23/2007; NorCal Kayak Anglers",2007.07.21-DanPrather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.21-DanPrather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.21-DanPrather.pdf,2007.07.21,2007.07.21,4861,, +2007.07.19.b,19-Jul-2007.b,2007,Unprovoked,USA,Hawaii,"Bellows Beach near Wailea Point, Oahu",Snorkeling,Harvey Miller,M,36,Left calf severely bitten,N,15h15, ,"Honolulu Advertiser, 7/20/2007; Honolulu Star Bulletin, 7/20/2007",2007.07.19.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.b-Miller.pdf,2007.07.19.b,2007.07.19.b,4860,, +2007.07.19.a,19-Jul-2007.a,2007,Unprovoked,AUSTRALIA,Territory of Cocos (Keeling) Islands,Direction Island,Wading,Angus Chapman,M,15,Calf bitten,N,11h00,"Bronze whaler shark, 1.5 m ","The Western Australian, 7/20/2007",2007.07.19.a-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.a-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.a-Chapman.pdf,2007.07.19.a,2007.07.19.a,4859,, +2007.07.18.b,18-Jul-07,2007,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Swimming,Matt Baker,M,14,Right calf bitten,N,12h30,2' to 3' shark,"C. Creswell, GSAF",2007.07.18.b-MattBaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.b-MattBaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.b-MattBaker.pdf,2007.07.18.b,2007.07.18.b,4858,, +2007.07.18.a,18-Jul-07,2007,Provoked,NORWAY,Oslo Fjord,Sjstrand,Scuba diving,Odd Ingebretsen,M,48,PROVOKED INCIDENT No injury. Diver touched 'dead' shark; shark bit his equipment-covered arm,N,,"3' small spotted catshark, Scyliorhinus canicula","Aftenposten, 7/18/2007",2007.07.18.a-Ingelbretsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.a-Ingelbretsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.a-Ingelbretsen.pdf,2007.07.18.a,2007.07.18.a,4857,, +2007.07.17.b,17-Jul-07,2007,Invalid,USA,California,"Faria Beach, Ventura County",Swimming,Susan Levy,F,43,Foot injured. Shark involvment uncomfirmed,N,11h00,Shark involvement not confirmed,R. Collier,2007.07.17.b-SusanLevy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.b-SusanLevy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.b-SusanLevy.pdf,2007.07.17.b,2007.07.17.b,4856,, +2007.07.17.a,17-Jul-07,2007,Unprovoked,USA,North Carolina,"Atlantic Beach, Carteret County",Wading,female,F,30,Lacerations to right thigh & left foot,N,13h00,5' shark,"C. Creswell, GSAF",2007.07.17.a-NC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.a-NC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.a-NC.pdf,2007.07.17.a,2007.07.17.a,4855,, +2007.07.10,10-Jul-07,2007,Unprovoked,BAHAMAS,Abaco Islands,Allan-Pensacola Cay,Spearfishing,Joanie Regan,F,48,"Lacerations to thumb, ring and pinky fingers of right hand ",N,11h00,"Bull shark, 5' ",J. Regan,2007.07.10-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.10-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.10-Regan.pdf,2007.07.10,2007.07.10,4854,, +2007.07.05,05-Jul-07,2007,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Chaz Cecil,M,18,Right foot bitten,N,16h00,,"S. Petersohn, GSAF",2007.07.05-Cecil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.05-Cecil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.05-Cecil.pdf,2007.07.05,2007.07.05,4853,, +2007.07.04,04-Jul-07,2007,Unprovoked,REUNION,,Boucan Canot,Body boarding,Vincent Bouju,M,17,Minor injuries to thigh & knee ,N,14h30,2 m shark,"clicanoo.com, 7/5/2007",2007.07.04-Bouju.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.04-Bouju.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.04-Bouju.pdf,2007.07.04,2007.07.04,4852,, +2007.07.00,Jul-07,2007,Invalid,SENEGAL,,,Murder,Alex Takyi,,,,UNKNOWN,,,"Daily Guide, 8/20/2007",2007.07.00-Takyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.00-Takyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.00-Takyi.pdf,2007.07.00,2007.07.00,4851,, +2007.06.30.b,30-Jun-07,2007,Provoked,USA,Florida,Marques Island,Removing hook from shark,Samuel Gruber,M,,Lacerations to right hand by hooked shark PROVOKED INCIDENT,N,,"Lemon shark, 6' female ",S. Gruber; SharkAttackSurvivors.com,2007.06.30.b-Gruber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.b-Gruber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.b-Gruber.pdf,2007.06.30.b,2007.06.30.b,4850,, +2007.06.30.a,30-Jun-07,2007,Unprovoked,USA,California,"Will Rogers State Beach, Los Angeles County",Swimming,Katina Zinner,F,,Hand bitten,N,10h00,,R. Collier,2007.06.30.a-Zinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.a-Zinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.a-Zinner.pdf,2007.06.30.a,2007.06.30.a,4849,, +2007.06.25,25-Jun-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Justin Lewis,M,20,6 to 8 puncture wounds to right hand,N,17h30,4' shark,"S. Petersohn, GSAF",2007.06.25-JustinLewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.25-JustinLewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.25-JustinLewis.pdf,2007.06.25,2007.06.25,4848,, +2007.06.24,24-Jun-07,2007,Unprovoked,USA,Hawaii,"Silva's Channel, Mokuleia, O'ahu",Surfing,E. Yamada,M,,"No injury, board damaged",N,07h05,Tiger shark,"G. Lee, KGMB9.com",2007.06.24-Yamada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.24-Yamada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.24-Yamada.pdf,2007.06.24,2007.06.24,4847,, +2007.06.17,17-Jun-07,2007,Invalid,USA,Florida,"Vilano Beach, St. Johns County",Surfing,Kasey Schmidt,F,9,Superficial injuries to upper leg may have been caused by surfboard fin,N,16h30,Shark involvement not confirmed,"St Augustine Record, 6/19/2007",2007.06.17-CaseySchmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.17-CaseySchmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.17-CaseySchmidt.pdf,2007.06.17,2007.06.17,4846,, +2007.06.12,12-Jun-07,2007,Unprovoked,USA,Florida,"Turtle Beach, Siesta Key, Sarasota County",Swimming,Jeanne Schaefer ,F,,Right foot bitten,N,11h00,3' to 4' shark,"R.B. Hackney, Sun-Sentinel, 7/13/2007",2007.06.12-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.12-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.12-Schaefer.pdf,2007.06.12,2007.06.12,4845,, +2007.06.05,05-Jun-07,2007,Unprovoked,AUSTRALIA,New South Wales,"Shelly Beach, Crescent Head",Surfing,Jack Moir,M,,Lacerations to leg & ankle,N,Sunset,,"S. Williams, Daily Telegraph, 6/7/2007",2007.06.05-JackMoir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.05-JackMoir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.05-JackMoir.pdf,2007.06.05,2007.06.05,4844,, +2007.05.26,26-May-07,2007,Unprovoked,USA,South Carolina,Garden City,Wading,Susan Dornquast,F,,Lacerations to lower leg,N,17h00,,"C. Creswell, GSAF; Hilton Head Island Packet, 5/27/2007",2007.05.26-Dornquast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.26-Dornquast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.26-Dornquast.pdf,2007.05.26,2007.05.26,4843,, +2007.05.24,24-May-07,2007,Provoked,USA,Virginia,"Virginia Aquarium & Marine Science Center, Virginia Beach ",Reviving a sedated shark,Beth Firchau,F,40,Left shin bitten by captive shark PROVOKED INCIDENT,N,Morning,A 10-year-old 94-pound pregnant blacktip reef shark,WAVY-TV10-News,2007.05.24-Firchau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.24-Firchau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.24-Firchau.pdf,2007.05.24,2007.05.24,4842,, +2007.05.17.R,Reported 17-May-2007,2007,Provoked,ENGLAND,Kent,Folkestone,Fishing,Phil Tanner,M,38,Bitten on the nose by a hooked shark PROVOKED INCIDENT,N,Afternoon,"Lesser spotted dogfish, Scyliorhinus canicula, less than 80 cm in length","V. Wheeler, The Sun, 5/17/2007",2007.05.17.R-PhilTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.17.R-PhilTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.17.R-PhilTanner.pdf,2007.05.17.R,2007.05.17.R,4841,, +2007.05.16,16-May-07,2007,Unprovoked,AUSTRALIA,Western Australia,"Warra Beach, Coral Bay",Wading,Becky Cooke,F,38,Left heel & calf bitten,N,14h30,2.5 m shark,"The Western Australian, 5/16/2007",2007.05.16-BeckyCooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.16-BeckyCooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.16-BeckyCooke.pdf,2007.05.16,2007.05.16,4840,, +2007.05.12,12-May-07,2007,Unprovoked,AUSTRALIA,Victoria,Warrnambool,Surfing,Blake French,M,19,"No injury, shark's fin caught his leg",N,17h45,10' shark,"The Standard, 5/15/2007",2007.05.12-BlakeFrench.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.12-BlakeFrench.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.12-BlakeFrench.pdf,2007.05.12,2007.05.12,4839,, +2007.05.10,10-May-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jennifer Manis,F,21,Knee bitten,N,16h00,4' to 5' shark,J. Manis,2007.05.10-Manis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.10-Manis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.10-Manis.pdf,2007.05.10,2007.05.10,4838,, +2007.05.09.R,Reported 09-May-2007,2007,Unprovoked,SEYCHELLES,Bird Island,,Snorkeling,male,M,,No injury,N,,"White shark, 2m ",Seychelles Forum,2007.05.09.R-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.09.R-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.09.R-Seychelles.pdf,2007.05.09.R,2007.05.09.R,4837,, +2007.05.08,08-May-07,2007,Invalid,AUSTRALIA,New South Wales,Kingscliff Beach,Swimming,male,M,45,Shark involvement prior to death unconfirmed,Y,12h15,,"NineMSNews, 5/10/2007",2007.05.08-KingscliffBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.08-KingscliffBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.08-KingscliffBeach.pdf,2007.05.08,2007.05.08,4836,, +2007.05.07.b,07-May-07,2007,Unprovoked,USA,Hawaii,"Keawakapu Beach, Maui",Snorkeling,Peller Marion,F,63,Right foot bitten,N,08h30,"Tiger shark, 14' ","G. Kubota, Honolulu Star Bulletin, 5/8/2007",2007.05.07.b-PellerMarion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.b-PellerMarion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.b-PellerMarion.pdf,2007.05.07.b,2007.05.07.b,4835,, +2007.05.07.a,07-May-07,2007,Unprovoked,USA,Florida,Naples,Swimming,Hans Pruss,M,68,Circular bite on left thigh,N,08h30,6' to 8' shark,"Naples News, 5/10/2007",2007.05.07.a-HansPruss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.a-HansPruss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.a-HansPruss.pdf,2007.05.07.a,2007.05.07.a,4834,, +2007.05.04,04-May-07,2007,Sea Disaster,TURKS & CAICOS,Providenciales,,Sea Disaster,Haitian refugees perished when their boat capsized in choppy seas,,,Some of the bodies recovered had been bitten by sharks,Y, ,,CNN,2007.05.04-HaitianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.04-HaitianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.04-HaitianRefugees.pdf,2007.05.04,2007.05.04,4833,, +2007.05.00,May-07,2007,Provoked,BAHAMAS,Bimini Islands,,Shark tagging,Sabrina Garcia,F,20,Lacerations to right upper arm by captive shark PROVOKED INCIDENT,N,,"Lemon shark, >1 m ",S. Garcia,2007.05.00-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.00-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.00-Garcia.pdf,2007.05.00,2007.05.00,4832,, +2007.04.26,26-Apr-07,2007,Unprovoked,AUSTRALIA,Queensland,"Mornington Island, Gulf of Carpentaria",Swimming / jumping off a jetty,Lorraine,F,13,Lower leg & foot injured,N,18h00,"""a small shark""","news.com.au, 4/29/2007",2007.04.26-Lorraine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.26-Lorraine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.26-Lorraine.pdf,2007.04.26,2007.04.26,4831,, +2007.04.22,22-Apr-07,2007,Unprovoked,USA,Florida,"Hutchinson Island, St. Lucie County",Body boarding,Matthew Honyak,M,12,Left foot bitten,N,12h30,blacktip or spinner shark,"Sun-Sentinel, 4/23/2007",2007.04.22-Honyak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.22-Honyak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.22-Honyak.pdf,2007.04.22,2007.04.22,4830,, +2007.04.20,20-Apr-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chad Guthrie,M,24,Lacerations to left index finger & thumb ,N,17h00,3' to 4' shark,"Florida Today, 4/21/2007",2007.04.20-ChadGuthrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.20-ChadGuthrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.20-ChadGuthrie.pdf,2007.04.20,2007.04.20,4829,, +2007.04.13.R,Reported 13-Apr-2007,2007,Boat,USA,Florida,"Florida Keys, Monroe County",Fishing,boat: 48' charter boat GonFishin V ,,,"No injury to occupants, shark holed the transom-mounted livewell ",N,,"Bull shark, 10' ","Florida Today, 4/13/2007; A. Brenneka",2007.04.13.R-GonFishin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.13.R-GonFishin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.13.R-GonFishin.pdf,2007.04.13.R,2007.04.13.R,4828,, +2007.04.09,09-Apr-07,2007,Unprovoked,NEW CALEDONIA,South Province,Dumba,Surfing,Olivier Bertholom,M,26,Left foot bitten,N,16h00,Tiger shark,"Les Nouvelles Caldoniennes, 4/11/2007",2007.04.09-Bertholom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.09-Bertholom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.09-Bertholom.pdf,2007.04.09,2007.04.09,4827,, +2007.04.01,01-Apr-07,2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Playing on a sandbar,Jack LoMedico,M,7,Lacerations & puncture wounds to right calf,N,13h05,,"S. Petersohn, GSAF; WESH 2, 4/1/2007; Local6news.com, 4/3/2007",2007.04.01-Lomedico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.01-Lomedico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.01-Lomedico.pdf,2007.04.01,2007.04.01,4826,, +2007.03.31.b,31-Mar-07,2007,Unprovoked,USA,Florida,"Normandy Beach, Hutchinson Island, St. Lucie County",Surfing,Larry Olson,M,27,Lacerations to right ankle ,N,14h20,3' shark,"Palm Beach Post, 3/31/2007; Sun Sentinel, 4/3/2007",2007.03.31.b-Olson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.b-Olson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.b-Olson.pdf,2007.03.31.b,2007.03.31.b,4825,, +2007.03.31.a,31-Mar-07,2007,Unprovoked,USA,Florida,"Waveland Beach, Hutchinson Island, St. Lucie County",,male,M,9,Minor cuts to right buttock & thigh,N,13h20,,"Palm Beach Post, 3/31/2007",2007.03.31.a-Waveland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.a-Waveland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.a-Waveland.pdf,2007.03.31.a,2007.03.31.a,4824,, +2007.03.22,22-Mar-07,2007,Unprovoked,YEMEN,Muhafazat Hadramawt,Ras-Alkalb,Murder,At least 29 (and possibly another 71) Somali & Ethiopian refugees,,,"FATAL, beaten & thrown overboard by smugglers, they were killed by sharks",Y,Morning,,"United Nations High Commission for Refugees, 3/26/2007",2007.03.22-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.22-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.22-EthiopianRefugees.pdf,2007.03.22,2007.03.22,4823,, +2007.03.21,21-Mar-07,2007,Unprovoked,USA,Florida,Jupiter Inlet,Surfing,Sam Chief,M,11,Punctures & lacerations to right calf & calf,N,Evening,4' to 5' shark,"TCPalm, 3/23/2007 ",2007.03.21-Chief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.21-Chief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.21-Chief.pdf,2007.03.21,2007.03.21,4822,, +2007.03.20,20-Mar-07,2007,Unprovoked,AUSTRALIA,New South Wales,South Golden Beach,Surfing,Jodie Cooper,F,42,Lacerations to 3 fingers of left hand ,N,10h00,1.5 m shark,"Gold Coast Bulletin, 3/21/2007",2007.03.20-JodieCooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.20-JodieCooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.20-JodieCooper.pdf,2007.03.20,2007.03.20,4821,, +2007.03.14.R,Reported 14-Mar-2007,2007,Provoked,USA,Florida,Delray Beach,Shark fishing,Gregory Kuehlewind ,M,,Right hand bitten by hooked shark PROVOKED INCIDENT,N,,5' shark,Associated Press,2007.03.14.R-Kuehlewind.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.14.R-Kuehlewind.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.14.R-Kuehlewind.pdf,2007.03.14.R,2007.03.14.R,4820,, +2007.03.12,12-Mar-07,2007,Unprovoked,AUSTRALIA,Queensland,"Moore Park, north of Bundaberg",Swimming,Mary Jane Ryan,F,59,"Bruises to arm and hand, laceration to lower leg & minor injuries to foot",N,15h30,2 to 2.5 m shark,ABC News Online,2007.03.12-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.12-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.12-Ryan.pdf,2007.03.12,2007.03.12,4819,, +2007.03.11,11-Mar-07,2007,Unprovoked,USA,Florida,"Tiger Shores Beach, Martin County",Surfing,Adam McMichael,M,29,Lacerations to right forearm & hand,N,13h00,,"J. Ashton, T.C. Palm, 3/12/2007",2007.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.11-McMichael.pdf,2007.03.11,2007.03.11,4818,, +2007.03.05.R,Reported 05-Mar-2007,2007,Provoked,NEW ZEALAND,Cook islans,Penhryn Island,Spearfishing,Turua William Maretapu,M,16,Leg bitten by shark after he shot at it & missed PROVOKED INCIDENT,N,,Tiger shark,"R. Weeks, GSAF",2007.03.05.R-Maretapu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.05.R-Maretapu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.05.R-Maretapu.pdf,2007.03.05.R,2007.03.05.R,4817,, +2007.02.04,04-Feb-07,2007,Invalid,COSTA RICA,,,Swimming,Jason Cash,M,36,Death due to drowning. Shark bite may have been postmortem,Y,,,"The Argus, 3/2/2007",2007.02.04-Cash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.04-Cash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.04-Cash.pdf,2007.02.04,2007.02.04,4816,, +2007.02.03,03-Feb-07,2007,Unprovoked,AUSTRALIA,New South Wales,Shelly Beach,Boogie Boarding,Matthew McIntosh,M,26,Lacerations to lower left leg & ankle ,N,08h00,,"P. Immerz, SharkProject; P. Kemp, GSAF",2007.02.03-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.03-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.03-McIntosh.pdf,2007.02.03,2007.02.03,4815,, +2007.02.00,Feb-07,2007,Unprovoked,NEW CALEDONIA,Loyalty Islands,Ouva,Spearfishing,male,M,,Survived,N,,,"Les Nouvelles Caledoniennes, ",2007.02.00-Ouvea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.00-Ouvea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.00-Ouvea.pdf,2007.02.00,2007.02.00,4814,, +2007.01.25.b,25-Jan-07,2007,Unprovoked,NEW CALEDONIA,North Province,Kaala-Gomen ,Spearfishing (free diving),Jesse Jizdny,M,30,Leg bitten,N,14h00,Tiger shark,"Les Nouvelles Caledoniennes, 1/29/2007",2007.01.25.b-Jizdny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.b-Jizdny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.b-Jizdny.pdf,2007.01.25.b,2007.01.25.b,4813,, +2007.01.25.a,25-Jan-07,2007,Boat,USA,Florida,100 miles off Ft. Myers Beach,Shrimping,boat: 69.5' trawler Christy Nichole ,,,"A large shark rammed boat, breaking prop shaft. No injury to occupants but boat sank several hours later",N,03h30,14' shark,"P. Morales, News-Press, 2/5/2007",2007.01.25.a-ChristyNichole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.a-ChristyNichole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.a-ChristyNichole.pdf,2007.01.25.a,2007.01.25.a,4812,, +2007.01.23,23-Jan-07,2007,Unprovoked,AUSTRALIA,New South Wales,Cape Howe,Diving,Eric Nerhus,M,41,Head & torso bitten,N,10h30,"White shark, 3m","NZ Herald, 1/23/2007",2007.01.23-Nerhus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.23-Nerhus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.23-Nerhus.pdf,2007.01.23,2007.01.23,4811,, +2007.01.19,19-Jan-07,2007,Invalid,AUSTRALIA,New South Wales,Brunswick Heads,Swimming,Thomas Houghton,M,20,Shark involvement prior to death unconfirmed,Y,,,"Northern Star, 1/24/2007",2007.01.19-Houghton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.19-Houghton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.19-Houghton.pdf,2007.01.19,2007.01.19,4810,, +2007.01.14,14-Jan-07,2007,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Swimming / Body Surfing,Sibulele Masiza,M,24,"Presumed FATAL, body not recovered",Y,Afternoon,Tiger shark,"G. Cliff, Natal Sharks Board; East London Dispatch, 1/18/2007",2007.01.14-Masiza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.14-Masiza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.14-Masiza.pdf,2007.01.14,2007.01.14,4809,, +2007.01.09,09-Jan-07,2007,Unprovoked,AUSTRALIA,New South Wales,Sandbar Beach,Surfing,David Sparkes,M,,"No injury, shark damaged surfboard",N,06h30,2.4 m shark,"J. Watson, Great Lakes Your Guide",2007.01.09-Sparkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.09-Sparkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.09-Sparkes.pdf,2007.01.09,2007.01.09,4808,, +2007.01.07,07-Jan-07,2007,Invalid,USA,New York,"Smith Point, Long Island",Surfing,Wayne Brodsky,M,54,No injury,N,14h00,"24"" to 30"" shark",W. Brodsky,2007.01.07-Brodsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.07-Brodsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.07-Brodsky.pdf,2007.01.07,2007.01.07,4807,, +2007.01.05,01-Jan-07,2007,Unprovoked,USA,Hawaii,"Majors Bay, Kaua'i",Surfing,Rich Reed,M,24,"No injury, shark removed piece of surfboard",N,10h15,"6' to 8' shark, possibly a tiger shark","P. Immerz, SharkProject.org; J. TenBruggencate, Honolulu Advertiser, 1/5/2007",2007.01.05-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.05-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.05-Reed.pdf,2007.01.05,2007.01.05,4806,, +2006.12.18,18-Dec-06,2006,Unprovoked,AUSTRALIA,Victoria,"Winki Pop, Bells Beach",Surfing,Peter Galvin,M,25,Left leg bitten,N,20h00,2.5 to 3 m shark,"P. Kemp, GSAF",2006.12.18-Galvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.18-Galvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.18-Galvin.pdf,2006.12.18,2006.12.18,4805,, +2006.12.11,11-Dec-06,2006,Unprovoked,NEW ZEALAND,North Island,"Raglan, Manu Bay",Surfing,Elliot Paerata-Reid ,M,10,Foot bitten,N,11h00,2 to 3 m shark,"R.D. Weeks, GSAF",2006.12.11-Reid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.11-Reid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.11-Reid.pdf,2006.12.11,2006.12.11,4804,, +2006.12.10,10-Dec-06,2006,Unprovoked,USA,California,"Dillon Beach, Marin County",Surfing,Royce Fraley,M,43,"Minor injuries, surfboard bitten",N,11h50,"White shark, 12' to 15' ","P. Immerz; R. Collier; San Francisco Chronicle, 12/11/2006 ",2006.12.10-Frailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.10-Frailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.10-Frailey.pdf,2006.12.10,2006.12.10,4803,, +2006.12.06,06-Dec-06,2006,Provoked,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,Fishing,Peter Willoughby,M,25,"Hand, thigh & calf bitten by hooked shark PROVOKED INCIDENT",N,"""Evening""","Raggedtooth shark, 150-kg","C. Johansson; Pretoria News, 12/8/2006",2006.12.06-Willoughby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.06-Willoughby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.06-Willoughby.pdf,2006.12.06,2006.12.06,4802,, +2006.12.02,02-Dec-06,2006,Unprovoked,AUSTRALIA,Western Australia,Wharton Beach,Body boarding,Zac Golebiowski,M,15,"Right leg severed, left leg lacerated",N,07h30,"White shark, 5m ","P. Kemp, GSAF, Sunday Mail, 12/3/2006",2006.12.02-Golebiowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.02-Golebiowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.02-Golebiowski.pdf,2006.12.02,2006.12.02,4801,, +2006.11.25,25-Nov-06,2006,Sea Disaster,PHILIPPINES,Surigao del Norte,"Off Bilisan Point, Hinatuarn Island",Sea Disaster,Sinking of the m.v.Leonida,,,15 perished but shark involvement prior to death was not confirmed,Y,14h20,,"Manila Bulletin Online, 11/27/2006",2006.11.25-Leonida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.25-Leonida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.25-Leonida.pdf,2006.11.25,2006.11.25,4800,, +2006.11.11,11-Nov-06,2006,Unprovoked,USA,Hawaii,"Kihei, Maui",Swimming,Kyle Gruen,M,29,Laceration to left thigh & left hand,N,12h30,2 m to 3 m shark,"Honolulu Advertiser, 11/12/2006; B. Nicholson",2006.11.11-Gruen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.11-Gruen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.11-Gruen.pdf,2006.11.11,2006.11.11,4799,, +2006.11.09,09-Nov-06,2006,Provoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Canoeing,Richard Tebutt,M,,Left arm lacerated when he grabbed shark by its tail PROVOKED INCIDENT,N,Afternoon,"Bull shark, 1.5m ","P. Immerz, SharkProject",2006.11.09-Tebutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.09-Tebutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.09-Tebutt.pdf,2006.11.09,2006.11.09,4798,, +2006.10.31,31-Oct-06,2006,Unprovoked,USA,Oregon,"Siletz River mouth, Lincoln County",Surfing,Tony Perez,M,22,"No injury, surfboard bitten",N,Just before sundown,"White shark, 16' ",R. Collier,2006.10.31-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.31-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.31-Perez.pdf,2006.10.31,2006.10.31,4797,, +2006.10.16,16-Oct-06,2006,Unprovoked,USA,Florida,Sebastian Inlet,Fishing,"Blaise Castellano, Jr.",M,15,Lower right leg and foot bitten,N,,,"K. Kridel, Herald Tribune, 10/21/2006",2006.10.16-Castellano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.16-Castellano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.16-Castellano.pdf,2006.10.16,2006.10.16,4796,, +2006.10.10,10-Oct-06,2006,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Kyle Cody,M,20,Left ankle bitten,N,11h30,,"S. Petersohn, GSAF",2006.10.10-Cody.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.10-Cody.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.10-Cody.pdf,2006.10.10,2006.10.10,4795,, +2006.10.07,07-Oct-06,2006,Unprovoked,USA,Texas,"Isla Blanca Park, South Padre Island",Surfing,Freddy Torres,M,,Lacerations to lower left leg,N,,1' to 4' shark,"M. Martinez, KGBT4",2006.10.07-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.07-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.07-Torres.pdf,2006.10.07,2006.10.07,4794,, +2006.10.05,05-Oct-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Playing soccer in the water,Stephen Mnoz,M,18,Lacerations to foot,N,12h00,3' to 3.5' shark,"S. Petersohn, GSAF",2006.10.05-Munoz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.05-Munoz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.05-Munoz.pdf,2006.10.05,2006.10.05,4793,, +2006.10.00.b,Oct-06,2006,Unprovoked,BAHAMAS,New Providence Island,Nassau,Free diving / modeling,Renata Foucre,F,26,Puncture wounds to left foot,N,,,"J. Lambiet, Palm Beach Post, 10/22/2006",2006.10.00.b-Foucre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.b-Foucre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.b-Foucre.pdf,2006.10.00.b,2006.10.00.b,4792,, +2006.10.00.a,Oct-06,2006,Unprovoked,GULF OF ADEN,Between Somalia & Yemen,,Murder,5 Ethiopian refugees,,,"FATAL, beaten & thrown overboard by smugglers, they were killed by sharks",Y,,,"United Nations High Commission for Refugees, 10/20/2006",2006.10.00.a-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.a-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.a-EthiopianRefugees.pdf,2006.10.00.a,2006.10.00.a,4791,, +2006.09.30,30-Sep-06,2006,Invalid,SOUTH AFRICA,Western Cape Province,Miller's Point,Spearfishing,Joseph Johnston,M,36,No injury; 4m white shark made a threat display,N,,,"Cape Argus, 10/2/2006",2006.09.30-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.30-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.30-Johnston.pdf,2006.09.30,2006.09.30,4790,, +2006.09.29,29-Sep-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Andrews ,M,19,Big toe bitten,N,,,"S. Petersohn, GSAF",2006.09.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.29-Andrews.pdf,2006.09.29,2006.09.29,4789,, +2006.09.18.R,Reported 18-Sep-2006,2006,Provoked,USA,Florida,"Off Key Largo, Monroe County",Diving / Kissing the shark,Dave Marcel,M,,Lacerations to upper lip PROVOKED INCIDENT,N,,Nurse shark,"CBS-4, 9/18/2006",2006.09.18.R-DaveMarcel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.18.R-DaveMarcel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.18.R-DaveMarcel.pdf,2006.09.18.R,2006.09.18.R,4788,, +2006.09.16,16-Sep-06,2006,Unprovoked,USA,North Carolina,Onslow Beach,Surfing,Jake Poland,M,16,Laceration to left thigh,N,Morning,,"C. Creswell, GSAF",2006.09.16-JakePoland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.16-JakePoland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.16-JakePoland.pdf,2006.09.16,2006.09.16,4787,, +2006.09.14,14-Sep-06,2006,Unprovoked,USA,Florida,"Singer Island, Riviera Beach",Swimming,William Carol,M,55,Minor injury to left hand,N,14h00,Spinner shark,WFTV.com,2006.09.14-Carol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.14-Carol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.14-Carol.pdf,2006.09.14,2006.09.14,4786,, +2006.09.11,11-Sep-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Dennis Macy,M,52,Left torso grazed,N,,5' shark,"S. Petersohn, GSAF",2006.09.11-Macy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.11-Macy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.11-Macy.pdf,2006.09.11,2006.09.11,4785,, +2006.09.04,04-Sep-06,2006,Invalid,AUSTRALIA,Queensland,Great Barrier Reef ,Diving,Steve Irwin,M,44,"Killed by a stingray, not a shark - a tragedy for his family and marine wildlife",Y,11h00,No shark involvement,"Sydney Morning Herald, CNN & internet",2006.09.04-SteveIrwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.04-SteveIrwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.04-SteveIrwin.pdf,2006.09.04,2006.09.04,4784,, +2006.09.03.b,03-Sep-06,2006,Unprovoked,BRAZIL,,,,Darlan dos Santos Luz ,M,20,FATAL,Y,13h00,,"JC Online, 6/26/2023",2006.09.03.b-Darlan-dos-Santos-Luz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.b-Darlan-dos-Santos-Luz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.b-Darlan-dos-Santos-Luz.pdf,2006.09.03.b,2006.09.03.b,4783,, +2006.09.03.a,03-Sep-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Christopher Duncan,M,33,Puncture wounds and cuts to right thigh,N,17h30,3' shark,"S. Petersohn, GSAF",2006.09.03.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.a-Duncan.pdf,2006.09.03.a,2006.09.03.a,4782,, +2006.09.02,02-Sep-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,male,M,12 or 13,Arm bitten,N,17h55,,"S. Petersohn, GSAF",2006.09.02.b-Child-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.b-Child-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.b-Child-NSB.pdf,2006.09.02,2006.09.02,4781,, +2006.09.02,02-Sep-06,2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Noordhoek,Surfing,Steven Harcourt-Wood,M,37,"No injury, shark rammed surfboard",N,,"White shark, 3.5m ","Cape Times, 9/3/2006",2006.09.02.a-Harcourt-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.a-Harcourt-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.a-Harcourt-Wood.pdf,2006.09.02,2006.09.02,4780,, +2006.08.29.b,29-Aug-06,2006,Unprovoked,USA,Oregon,"Florence, Lane County",Surfing,Tom Larson,M,23,Laceration & puncture wounds to foot,N,Sunset,,"R. Collier, GSAF; Register-Guard, 8/31/2006",2006.08.29.b-Larson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.b-Larson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.b-Larson.pdf,2006.08.29.b,2006.08.29.b,4779,, +2006.08.29.a,29-Aug-06,2006,Unprovoked,AUSTRALIA,South Australia,"Pennington Bay, Kangaroo Island",Surfing,Brad Jamieson ,M,,"No injury, shark towed surfer & board",N,16h00,"Bronze whaler shark, 6'","P. Kemp, GSAF; S. Black, The Islander, 9/7/2006",2006.08.29.a-Jamieson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.a-Jamieson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.a-Jamieson.pdf,2006.08.29.a,2006.08.29.a,4778,, +2006.08.27,27-Aug-06,2006,Unprovoked,REUNION,Saint-Gilles-les-Bains,"Les Aigrettes, near Boucan-Canot",Body boarding,Grald Prau,M,27,Laceration to right calf & heel,N,18h00,,"G. Vitry; G. Holt, scubaradio; Clicanoo, 8/28/2006 & 8/29/2006",2006.08.27-Gerald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.27-Gerald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.27-Gerald.pdf,2006.08.27,2006.08.27,4777,, +2006.08.22.b,22-Aug-06,2006,Invalid,BRAZIL,Pernambuco,Pina,,Tatiano Silva de Melo,M,17,Shark bites may have been post mortem,Y,,,JC Oline 8/24/2006,2006.08.22.b-Melo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22.b-Melo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22-IsaulCoba.pdf,2006.08.22.b,2006.08.22.b,4776,, +2006.08.22.a,22-Aug-06,2006,Invalid,BELIZE,Ambergris Caye,Near Ramon's Village,Spearfishing,Isaul Coba,M,34,Shark involvement prior to death not confirmed,Y,,,C. Johansson,2006.08.22.a-Coba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22.a-Coba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22.b-Brazil-incomplete.pdf,2006.08.22.a,2006.08.22.a,4775,, +2006.08.20.b,20-Aug-06,2006,Sea Disaster,ITALY,,Lampedusa Island,Sea Disaster,a refugee,M,,FATAL,Y,,,IM/LR,2006.08.20.b-Lampedusa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20.b-Lampedusa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20.b-Lampedusa.pdf,2006.08.20.b,2006.08.20.b,4774,, +2006.08.20.a,20-Aug-06,2006,Unprovoked,REUNION,Saint-Pierre,Pointe du Diable,Surfing,Sbastien mond,M,34,FATAL,Y,11h00,,P. Immerz ,2006.08.20-Emond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20-Emond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20-Emond.pdf,2006.08.20.a,2006.08.20.a,4773,, +2006.08.15,15-Aug-06,2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Danger Reef,Surfing,Richard Whitaker,M,,"No injury, surfboard leash severed",N,,5 m shark,A. Brenneka,2006.08.15-RichardWhitaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.15-RichardWhitaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.15-RichardWhitaker.pdf,2006.08.15,2006.08.15,4772,, +2006.08.13,13-Aug-06,2006,Unprovoked,SOUTH AFRICA,Western Cape Province,"Sunrise Beach, Muizenberg",Lifesaving drill,Achmat Hassiem,M,24,Foot severed,N,11h00,White shark,P. Immerz ,2006.08.13-Hassiem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.13-Hassiem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.13-Hassiem.pdf,2006.08.13,2006.08.13,4771,, +2006.08.00.b,Aug-06,2006,Unprovoked,USA,North Carolina,"Masonboro Island, New Hanover County",Wading,Miriam Picklesimer,F,59,Lacerations & punctures to left foot,N,12h00,,"C. Creswell, GSAF",2006.08.00.b-Picklesimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.b-Picklesimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.b-Picklesimer.pdf,2006.08.00.b,2006.08.00.b,4770,, +2006.08.00.a,Early Aug-2006,2006,Unprovoked,REUNION,,Le Port,Spearfishing,male,M,,Thigh bitten,N,,"Bull shark, 1.5m ","Clicanoo, 8/29/2006",2006.08.00.a-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.a-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.a-Reunion.pdf,2006.08.00.a,2006.08.00.a,4769,, +2006.07.31.R,31-Jul-06,2006,Provoked,USA,Kentucky,"Newport Aquarium, Newport",Touching sharks,12 people,,,"Minor injuries, similar to paper cuts from the captive sharks PROVOKED INCIDENTS",N,,small catsharks,"Cincinatti News, 7/31/2006",2006.07.31.R-NewportAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.R-NewportAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.R-NewportAquarium.pdf,2006.07.31.R,2006.07.31.R,4768,, +2006.07.31.a,31-Jul-06,2006,Unprovoked,USA,Oregon,Oswald State Park,Surfing,Robert Martin,M,41,Minor injury,N,16h00,White shark?,"R. Collier, GSAF",2006.07.31.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.a-Martin.pdf,2006.07.31.a,2006.07.31.a,4767,, +2006.07.29.b,29-Jul-06,2006,Invalid,USA,California,"Broad Beach, Malibu, Los Angeles County",Boogie Boarding,Bruce Lurie,M,,"Bruises, laceration to head, spinal cord injury & neck broken at C5/C6 ",N,Afternoon,"Thought to involve a mako shark, but possibly a sea lion","R. Colier, GSAF",2006.07.29.b-Lurie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.b-Lurie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.b-Lurie.pdf,2006.07.29.b,2006.07.29.b,4766,, +2006.07.29.a,29-Jul-06,2006,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Matt Wishengrad,M,15,Foot bitten,N,,,WFTV.com,2006.07.29.a-Wishengrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.a-Wishengrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.a-Wishengrad.pdf,2006.07.29.a,2006.07.29.a,4765,, +2006.07.28,28-Jul-06,2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Fish Hoek,Surf-skiing,Lyle Maarsdorp,M,19,"No injury, surf ski bitten",N,16h30,"White shark, 3m to 4m","Cape Argus, 7/29/2006",2006.07.28-Maasdorp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.28-Maasdorp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.28-Maasdorp.pdf,2006.07.28,2006.07.28,4764,, +2006.07.25,25-Jul-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,14,Minor lacerations to right foot,N,13h45, ,"S. Petersohn, GSAF",2006.07.25-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.25-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.25-NSB.pdf,2006.07.25,2006.07.25,4763,, +2006.07.23,23-Jul-06,2006,Unprovoked,USA,Texas,"Sargent Beach, Matagorda County",Surf fishing,R.K. Halbert,M,,Right foot bitten,N,,"Bull shark, 4' to 5' ",KHOU.com,2006.07.23-Halbert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.23-Halbert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.23-Halbert.pdf,2006.07.23,2006.07.23,4762,, +2006.07.17.R,Reported 17-Jul-2006,2006,Invalid,AUSTRALIA,Torres Strait,Western Province,,,,,8 shark-bitten bodies washed ashore,N,,,"The Torres News, 7/17/2006",2006.07.17.R-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.R-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.R-TorresStrait.pdf,2006.07.17.R,2006.07.17.R,4761,, +2006.07.17,17-Jul-06,2006,Unprovoked,USA,South Carolina,"Singleton Beach, Hilton Head Island, Beaufort County",Standing,Dallas Jackson,M,49,Left ankle & foot bitten,N,10h00,"Angel shark, 1.2m "," C. Creswell, GSAF",2006.07.17.a-DallasJackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.a-DallasJackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.a-DallasJackson.pdf,2006.07.17,2006.07.17,4760,, +2006.07.13,13-Jul-06,2006,Invalid,SPAIN,Alicante,San Juan Beach ,Swimming,female,F,7,Hand & wrist severely bitten,N,,"Shark involvement not confirmed, injury may have been caused by a bluefish",C. Johansson,2006.07.13-girl-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.13-girl-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.13-girl-Spain.pdf,2006.07.13,2006.07.13,4759,, +2006.07.12,12-Jul-06,2006,Unprovoked,USA,South Carolina,"Kiawah Island, Charleston County",Swimming,female,F,21,Ankle & foot bitten,N,13h30,," C. Creswell, GSAF",2006.07.12-KiawahIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.12-KiawahIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.12-KiawahIsland.pdf,2006.07.12,2006.07.12,4758,, +2006.07.10,10-Jul-06,2006,Unprovoked,BRAZIL,Pernambuco,Body recovered at Goiana,,Unidentified,M,,FATAL,Y,,Bull or tiger shark,"Qualittas; F. Hazin; N. Souza; Folho de Pernambuco, 7/12/2006",2006.07.10-Goiana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.10-Goiana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.10-Goiana.pdf,2006.07.10,2006.07.10,4757,, +2006.07.09.b,09-Jul-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,male,M,40,Dorsum of left foot bitten,N,17h00,,"S. Petersohn, GSAF",2006.07.09.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.b-NewSmyrnaBeach.pdf,2006.07.09.b,2006.07.09.b,4756,, +2006.07.09.a,09-Jul-2006.,2006,Unprovoked,USA,Florida,"Ponte Vedra Beach, St Johns County",Walking,male,M,11,Lower leg & ankle bitten,N,13h00,,"Orlando Sentinel, 7/9/2006",2006.07.09.a-PontaVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.a-PontaVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.a-PontaVedra.pdf,2006.07.09.a,2006.07.09.a,4755,, +2006.07.08.b,08-Jul-06,2006,Unprovoked,USA,South Carolina,"Debordieu Beach, Georgetown County",Body boarding,Caelin Lacy ,F,14,Foot bitten,N,11h00,5' to 6' spinner or bull shark,"C. Creswell, GSAF",2006.07.08.b-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.b-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.b-Lacy.pdf,2006.07.08.b,2006.07.08.b,4754,, +2006.07.08.a,08-Jul-06,2006,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Swimming,male,M,13,Right calf bitten,N,13h00,,Orlando Sentinel,2006.07.08.a-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.a-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.a-Playalinda.pdf,2006.07.08.a,2006.07.08.a,4753,, +2006.06.30.b,Jul-06,2006,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Spearfishing,Bebe Hall,F,28,Lacerations & puncture wound to arm,N,,"1.8 m blacktip ""reef"" shark","Swimming World Magazine, 2 July 2006",2006.06.30.b-Bebe-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.b-Bebe-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.b-Bebe-Hall.pdf,2006.06.30.b,2006.06.30.b,4752,, +2006.06.30.a,Jul-06,2006,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Spearfishing,Gary Hall,M,35,Minor injuries,N,,"1.8 m blacktip ""reef"" shark","Swimming World Magazine, 2 July 2006",2006.06.30.a-GaryHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.a-GaryHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.a-GaryHall.pdf,2006.06.30.a,2006.06.30.a,4751,, +2006.06.27,27-Jun-06,2006,Unprovoked,USA,Florida,"Hutchinson Island, St. Lucie County",Body boarding,Juliette Shipp,F,9,Right calf bitten,N,11h10,, P. Immerz,2006.06.27-Shipp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.27-Shipp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.27-Shipp.pdf,2006.06.27,2006.06.27,4750,, +2006.06.26,26-Jun-06,2006,Provoked,USA,Florida,Fort Myers,Fishing,male,M,,Non-swimmer pulled off pier& into the water by a hooked shark PROVOKED INCIDENT,N,Afternoon,,"News Press, 6/27/2006",2006.06.26-FtMyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.26-FtMyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.26-FtMyers.pdf,2006.06.26,2006.06.26,4749,, +2006.06.24,24-Jun-06,2006,Unprovoked,BAHAMAS,Andros Islands,Mangrove Cay,Spearfishing,Whitefield Rolle,M,25,Right arm severely bitten,N,13h00,,"A. Brenneka; Nassau Guardian, 6/30/2006",2006.06.24-Rolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.24-Rolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.24-Rolle.pdf,2006.06.24,2006.06.24,4748,, +2006.06.20,20-Jun-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Elizabeth Schelk,F,22,2-inch puncture wounds on right foot,N,13h00,Possibly a 1' to 3' blacktip or spinner shark," S. Petersohn, GSAF; P. Immerz",2006.06.20-Schelk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.20-Schelk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.20-Schelk.pdf,2006.06.20,2006.06.20,4747,, +2006.06.18,18-Jun-06,2006,Unprovoked,BRAZIL,Pernambuco,"Punta Del Chifre Beach, Olinda",Body boarding,Humberto Pessoa Batista,M,27,Left thigh bitten FATAL,Y,09h00,,globalsurfnews.com,2006.06.18-Batista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdf,2006.06.18,2006.06.18,4746,stopped here, +2006.06.17,17-Jun-06,2006,Unprovoked,USA,California,"Monterey, Monterey County",Scuba diving,Jon Piatt,M,43,"No injury, shark bit scuba tank boot",N,11h10,,R. Collier,2006.06.17-Piatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.17-Piatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.17-Piatt.pdf,2006.06.17,2006.06.17,4745,, +2006.06.15,15-Jun-06,2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Mike Milea,M,24,Four 1-inch puncture wounds on left foot ,N,15h30,2' to 3' shark,"S. Petersohn, GSAF",2006.06.15-Milea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.15-Milea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.15-Milea.pdf,2006.06.15,2006.06.15,4744,, +2006.06.07,07-Jun-06,2006,Unprovoked,USA,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Playing,Megan Wallis,F,7,Lacerations & puncture wounds to left foot & buttocks,N,13h45,3' to 4' shark,"C. Creswell, GSAF; Islandpacket.com, 6/7/2006",2006.06.07-Wallis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.07-Wallis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.07-Wallis.pdf,2006.06.07,2006.06.07,4743,, +2006.06.05,05-Jun-06,2006,Unprovoked,AUSTRALIA,South Australia,Waitpinga,Surfing,Peter Dunn,M,40,"No injury, knocked off surfboard",N,11h30,14' white shark,"P.Kemp, GSAF; Sunday Mail (Adelaide), 6/11/2006, p.17",2006.06.05-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.05-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.05-Dunn.pdf,2006.06.05,2006.06.05,4742,, +2006.05.31,31-May-06,2006,Unprovoked,USA,Hawaii,O'ahu,Spearfishing,Ron Deguilmo,M,26,"4"" laceration to left forearm",N,13h30,"Tiger shark, 8' to 12'","P. Immerz; Honolulu Advertiser, 6/1/2006",2006.05.31-Deguilmo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.31-Deguilmo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.31-Deguilmo.pdf,2006.05.31,2006.05.31,4741,, +2006.05.28,28-May-06,2006,Provoked,USA,Hawaii,French Frigate Shoals,Tagging sharks,"25' rigid-hulled inflatable boat, HI-2",,,"No injury to occupants, boat damaged by hooked shark PROVOKED INCIDENT",N,Afternoon,"Tiger shark, 15' female","Honolulu Advertiser, 5/29/2006",2006.05.28-HI-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.28-HI-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.28-HI-2.pdf,2006.05.28,2006.05.28,4740,, +2006.05.27,27-May-06,2006,Unprovoked,USA,Hawaii,"North Shore, O'ahu",Surfing,Bret Desmond,M,31,"No injury, shark bumped surfboard",N,16h00,,R. Collier,2006.05.27-Desmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.27-Desmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.27-Desmond.pdf,2006.05.27,2006.05.27,4739,, +2006.05.24,24-May-06,2006,Provoked,USA,Hawaii,Lanai,Spearfishing,Andres Balmacda,M,15,Knee bitten after diver poked shark PROVOKED INCIDENT,N,16h30,"Grey reef shark, 5' to 8' ","Maui News, 5/26/2006",2006.05.24-Balmacda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.24-Balmacda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.24-Balmacda.pdf,2006.05.24,2006.05.24,4738,, +2006.05.21,21-May-06,2006,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Rogrio Antnio de Carvalho,M,33,"Injuries to left thigh, calf & foot",N,11h30,,"Avisa Nordland, 5/22/2006",2006.05.21-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.21-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.21-Carvalho.pdf,2006.05.21,2006.05.21,4737,, +2006.05.19,19-May-06,2006,Unprovoked,USA,Guam,Gun Beach,Scuba diving,Japanese female,F,30s,Laceration to leg,N,15h30,"Tiger shark, 10' to 12'",R. Segal,2006.05.19-Guam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.19-Guam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.19-Guam.pdf,2006.05.19,2006.05.19,4736,, +2006.05.10,05-May-06,2006,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",,male,M,,Small lacerations to arm,N,12h15,,"Florida Today, 5/10/2006",2006.05.10-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.10-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.10-CocoaBeach.pdf,2006.05.10,2006.05.10,4735,, +2006.05.04,04-May-06,2006,Unprovoked,USA,Florida,"Hutchinson Island, St. Lucie County",Swimming,Rachel King,F,20s,2 lacerations on lower right leg,N,16h30,,"TCPalm.com, 5/4/2006 ",2006.05.04-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.04-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.04-King.pdf,2006.05.04,2006.05.04,4734,, +2006.05.02,02-May-06,2006,Provoked,AUSTRALIA,Queensland,"Moffat Beach, Caloundra",Snorkeling,male,M,46,Abrasion & 6 puncture wounds on chest after grabbing the shark by its tail PROVOKED INCIDENT,N,16h30,"Wobbegong shark, 2 m ","Sunshine Coast Daily, 5/4/2006",2006.05.02-Caloundra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.02-Caloundra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.02-Caloundra.pdf,2006.05.02,2006.05.02,4733,, +2006.04.23.R,Reported 23-Apr-2006,2006,Invalid,USA,Florida,"Alligator Reef off Islamorada, Monroe County",,male,M,,Shark bites post mortem,Y,,,"KRT Wire, 4/24/2006",2006.04.23.R-Islamorada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.23.R-Islamorada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.23.R-Islamorada.pdf,2006.04.23.R,2006.04.23.R,4732,, +2006.04.21,21-Apr-06,2006,Unprovoked,USA,Florida,"Sebastian Inlet, Brevard County",Surfing,T. Davis Bunn,M,54,Feet bitten,N,,,Local 6 News,2006.04.21-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.21-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.21-Bunn.pdf,2006.04.21,2006.04.21,4731,, +2006.04.19,19-Apr-06,2006,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Standing,Megan Prescott,F,13,3 tiny punctures & small lacerations on right ankle,N,15h00,,"Orlando Sentinel, 4/20/2006; Yahoo News; S. Petersohn",2006.04.19-Prescott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.19-Prescott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.19-Prescott.pdf,2006.04.19,2006.04.19,4730,, +2006.04.13,13-Apr-06,2006,Provoked,USA,Florida,"Port of the Islands, Collier County",Fishing,a sport fisherman,M,35,3 to 4 cm laceration on foot from hooked shark brought on board PROVOKED INCIDENT,N,Afternoon,"Bull shark, 4' to bull shark","Naples News, 4/13/2006",2006.04.13-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.13-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.13-fisherman.pdf,2006.04.13,2006.04.13,4729,, +2006.04.11,11-Apr-06,2006,Unprovoked,AUSTRALIA,New South Wales,Newcastle Beach,Surfing,Luke Cook,M,15,Minor laceration to left foot,N,13h30,"Bronze whaler shark, a juvenile ","Daily Telegraph, 4/12/2006",2006.04.11-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.11-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.11-Cook.pdf,2006.04.11,2006.04.11,4728,, +2006.04.09.b,09-Apr-06,2006,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Francis Bay,Body boarding,Stuart Duffie,M,15,Leg bitten,N,17h30,"Raggedtooth shark, 2.5 m to 3 m ",J. Visser,2006.04.09.b-Duffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.b-Duffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.b-Duffin.pdf,2006.04.09.b,2006.04.09.b,4727,, +2006.04.09.a,09-Apr-06,2006,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Jos Ivair Pereira,M,35,Left leg bitten,N,Afternoon,Tiger shark,"Diario de Pernambuco, 4/10/2006",2006.04.09.a-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.a-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.a-Pereira.pdf,2006.04.09.a,2006.04.09.a,4726,, +2006.04.03,03-Apr-06,2006,Unprovoked,USA,Florida,"Marco Island, Collier County",Wading,Paul Ausum,M,11,Minor injury to right hand & thigh,N,12h30,,CBS Broadcasting,2006.04.03-Ausum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.03-Ausum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.03-Ausum.pdf,2006.04.03,2006.04.03,4725,, +2006.03.28.R,Reported 28-Mar-2006,2006,Unprovoked,Sierra Leone,Western Area,"Lumely Beach, Freetown",Fishing,4 fishermen,M,,Reportedly FATAL but few details,Y,,"3 m, 600-kg shark",Reuters,2006.03.28.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.28.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.28.R-SierraLeone.pdf,2006.03.28.R,2006.03.28.R,4724,, +2006.03.23,23-Mar-06,2006,Unprovoked,USA,Hawaii,"Leftovers, near Waimea Bay, O'ahu",Surfing,Elizabeth Dunn,F,28,5 puncture wounds in left calf,N,11h30,"Tiger shark, 10' ",Honolulu Advertiser,2006.03.23-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.23-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.23-Dunn.pdf,2006.03.23,2006.03.23,4723,, +2006.03.22,22-Mar-06,2006,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Swimming,Lorenzo Kroutz ,M,17,"FATAL, but shark involvement prior to death unconfirmed",Y,,,"Cape Times, 3/24/2006, p.3",2006.03.22-Koutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.22-Koutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.22-Koutz.pdf,2006.03.22,2006.03.22,4722,, +2006.03.19,18-Mar-06,2006,Unprovoked,FIJI,Vitu Levu,Sigatoka,Surfing,Paul Sue,M,21,Lacerations to right hand,N,18h00,"Tiger shark, 5' ","R.D. Weeks, GSAF; Fiji Sun, 3/19/2006",2006.03.19-PaulSue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.19-PaulSue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.19-PaulSue.pdf,2006.03.19,2006.03.19,4721,, +2006.03.15,15-Mar-06,2006,Unprovoked,AUSTRALIA,New South Wales,"Bondi, Sydney",Surfing,Blake Mohair,M,15,"No injury, shark nudged surfboard",N,17h00,"Bronze whaler shark, 2 m","The Australian, 3/15/2006",2006.03.15-Moclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.15-Moclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.15-Moclair.pdf,2006.03.15,2006.03.15,4720,, +2006.02.27,27-Feb-06,2006,Unprovoked,USA,Hawaii,"Makena, Maui",Standing,Nikky Raleigh,F,15,Deep laceration to right calf,N,16h30,5' to 7' shark,"G.T. Kubota, Star Bulletin, 2/28/2006",2006.02.27-Raleigh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.27-Raleigh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.27-Raleigh.pdf,2006.02.27,2006.02.27,4719,, +2006.02.23,23-Feb-06,2006,Invalid,USA,Hawaii,"Makena, Maui",Free diving,Anthony Moore,M,45,Forensic examination suggested diver drowned & afterwards his body was bitten by a shark/s,Y,Late afternoon,,http://www.kesq.com,2006.02.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.23-Moore.pdf,2006.02.23,2006.02.23,4718,, +2006.02.13,13-Feb-06,2006,Unprovoked,AUSTRALIA,Queensland,"Golden Beach, Caloundra",Wading,male,M,18,Lacerations to foot,N,11h00,,"G. Stolz, Courier-Mail, 2/14/2006",2006.02.13-GoldenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.13-GoldenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.13-GoldenBeach.pdf,2006.02.13,2006.02.13,4717,, +2006.02.12.b,12-Feb-06,2006,Unprovoked,AUSTRALIA,Queensland,"Point Vernon, Hervey Bay",Swimming,male,M,,Puncture wound on arm,N,,,"G. Stolz, Courier-Mail, 2/14/2006",2006.02.12.b-HerveyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.b-HerveyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.b-HerveyBay.pdf,2006.02.12.b,2006.02.12.b,4716,, +2006.02.12.a,12-Feb-06,2006,Boat,AUSTRALIA,South Australia,"Brighton Beach, Adelaide",Fishing,"Josh Francou, Michael Brister & Paul Bahr",M,,No injury to occupants; shark nudged the 5.3 m boat,N,12h00,4.5 m white shark,Port Adelaide Football Club,2006.02.12.a-Franco_boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.a-Franco_boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.a-Franco_boat.pdf,2006.02.12.a,2006.02.12.a,4715,, +2006.02.08,08-Feb-06,2006,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Jason Noades,M,15,2 bite marks on right calf,N,Late afternoon,Raggedtooth shark,"M. Kabeli, Dispatch Online.com; G. Brett & K. Cole, EL Museum",2006.02.08-Noades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.08-Noades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.08-Noades.pdf,2006.02.08,2006.02.08,4714,, +2006.02.01.b,01-Feb-06,2006,Unprovoked,TONGA,Vava'u,Tuanuku,Swimming,Tessa Horan,F,24,Severe bite to right leg FATAL,Y,18h00,Tiger shark,D. Clem; www.matangitonga.to,2006.02.01.b-Horan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.b-Horan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.b-Horan.pdf,2006.02.01.b,2006.02.01.b,4713,, +2006.02.01.a,01-Feb-06,2006,Boat,USA,Hawaii,"Off Pu'u Ola'l, Makena, Maui",Kayaking,Dan Lankheit,M,57,No injury to occupant; shark bumped the kayak repeatedly for 15 minutes,N,Afternoon,12' to 18' shark,"R. Collier, GSAF; Honolulu Advertiser, 2/1/2006",2006.02.01.a-Lankheit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.a-Lankheit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.a-Lankheit.pdf,2006.02.01.a,2006.02.01.a,4712,, +2006.01.28.R,Reported 28-Jan-2006,2006,Boat,ATLANTIC OCEAN,300 miles from Antigua,,Competing in the Woodvale Atlantic Rowing Race,"Mayabrit, an ocean rowing boat. Occupants: Andrew Barnett & J.C.S. Brendana",M,46 & 34,No injury to occupants; shark rammed boat repeatedly,N,,12' shark,"N. Bevan, icwales.icnetwork.co.uk, 1/28/2006",2006.01.28.R-Mayabrit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.28.R-Mayabrit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.28.R-Mayabrit.pdf,2006.01.28.R,2006.01.28.R,4711,, +2006.01.25,25-Jan-06,2006,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Coffee Bay,Spearfishing,Michael Vriese,M,34,Right arm bitten,N,14h00,,"Geremy Cliff, NSB",2006.01.25-Vriese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.25-Vriese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.25-Vriese.pdf,2006.01.25,2006.01.25,4710,, +2006.01.23,23-Jan-06,2006,Boat,ATLANTIC OCEAN,800 miles from land,,Competing in the Woodvale Atlantic Rowing Race,"Rowgirls, an ocean rowing boat. Occupants: Sally Kettle, Claire Mills & Sue McMillan",F,"28, 23 & 30","No injury to occupants; a shark, accidentally caught in a line, threatened to rip out the transom",N,,,"Northants News, 1/25/2006",2006.01.23-Rowgirls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.23-Rowgirls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.23-Rowgirls.pdf,2006.01.23,2006.01.23,4709,, +2006.01.18,18-Jan-06,2006,Unprovoked,USA,California,"Santa Cruz, Santa Cruz County",Night Surfing,Mario Lari,M,,"No injury, but 2 small nicks on wetsuit",N,22h30,,R. Collier,2006.01.18-Lari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.18-Lari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.18-Lari.pdf,2006.01.18,2006.01.18,4708,, +2006.01.15,15-Jan-06,2006,Unprovoked,AUSTRALIA,Western Australia,"Off City Beach, Perth",Scuba diving,Bernie Williams,M,52,Lacerations to left elbow,N,11h00,3.5 m white shark,"T. Peake, GSAF",2006.01.15-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.15-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.15-Williams.pdf,2006.01.15,2006.01.15,4707,, +2006.01.11,11-Jan-06,2006,Invalid,BAHAMAS,Grand Bahama Island,Sandy Cay,Diving for lobsters,Hayward Thomas & Shalton Barr,M,,"No injury, divers felt threatened by 10' pregnant female tiger shark & killed the shark",N,Morning,,"Bahama Journal, 1/13/2006",2006.01.11-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.11-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.11-Bahamas.pdf,2006.01.11,2006.01.11,4706,, +2006.01.07,07-Jan-06,2006,Unprovoked,AUSTRALIA,Queensland,"Amity Point, North Stradbroke Island",Swimming,Sarah Whiley,F,21,FATAL,Y,17h15,Bull shark,"T. Peake, GSAF",2006.01.07-Whiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.07-Whiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.07-Whiley.pdf,2006.01.07,2006.01.07,4705,, +2006.01.04,04-Jan-06,2006,Unprovoked,USA,Florida,"Round Island Park, Indian River County",Surfing,male,M,21,3 puncture wounds in right wrist & hand,N,16h45,4' shark,"A. Neal, scripps.com",2006.01.04-IndianRiverSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.04-IndianRiverSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.04-IndianRiverSurfer.pdf,2006.01.04,2006.01.04,4704,, +2006.01.01,01-Jan-06,2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Soetwater,Diving for crayfish,John Williams,M,49,Lacerations to little finger,N,,Said to involve a 1.5 m shark,"J.P. Botha, GSAF",2006.01.01-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.01-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.01-Williams.pdf,2006.01.01,2006.01.01,4703,, +2005.12.24,24-Dec-05,2005,Unprovoked,USA,Oregon,"Tillamook Head, Clatsop County",Surfing,Brian Anderson,M,30,Lacerations to ankle & calf,N,12h00,White shark,"R. Collier, GSAF; L.A. Times, 12/25/2005",2005.12.24-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.24-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.24-Anderson.pdf,2005.12.24,2005.12.24,4702,, +2005.12.21,21-Dec-05,2005,Unprovoked,USA,Hawaii,"Keawakapu Beach, Maui",Swimming,Jonathan Genant,M,29,Left hand bitten,N,11h45,Tiger shark, San Francisco Gate 2/21/2005,2005.12.21-Genant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.21-Genant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.21-Genant.pdf,2005.12.21,2005.12.21,4701,, +2005.12.20,20-Dec-05,2005,Boat,ATLANTIC OCEAN,600 nm west of the Canary Islands,,Competing in the Woodvale Atlantic Rowing Race,"7 m boat, occupants: Tara Remington & Iain Rudkin",,,"No injury to occupants, shark rammed boat for 15 minutes",N,13h30,3 m shark,"R.D. Weeks, GSAF; NZ Herald, 12/21/2005",2005.12.20-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.20-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.20-rowboat.pdf,2005.12.20,2005.12.20,4700,, +2005.12.11,11-Dec-05,2005,Unprovoked,AUSTRALIA,Queensland,St. Crispin Reef,Spearfishing,Glenn Simpson,M,44,Right forearm & elbow bitten,N,11h00,Whitetip reef shark,"Courier-Mail, 12/12/2005",2005.12.11-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.11-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.11-Simpson.pdf,2005.12.11,2005.12.11,4699,, +2005.12.05.R,Reported 06-Dec-2005,2005,Boat,AUSTRALIA,South Australia,"Middle Beach, 40 km north of Adelaide",Fishing,"5.4 m fibreglass boat, occupants: Robert & James Hogg",,,"No injury to occupants, hydrofoil of outboard motor bitten ",N,15h30,4 m white shark,"Melbourne Herald Sun, 12/5/2005",2005.12.05.R-HoggBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.05.R-HoggBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.05.R-HoggBoat.pdf,2005.12.05.R,2005.12.05.R,4698,, +2005.11.29.R,Reported 29-Nov-2005,2005,Unprovoked,USA,Florida,"Cape San Blas, Gulf County",Surfing,John Larsen,M,teen,Left foot bitten,N,,,wpmi.com,2005.11.29.R-Larsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.29.R-Larsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.29.R-Larsen.pdf,2005.11.29.R,2005.11.29.R,4697,, +2005.11.27,27-Nov-05,2005,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Blake Perry,M,23,Right thumb & palm lacerated,N,13h00,4' shark,"S. Petersohn, GSAF",2005.11.27-Perry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.27-Perry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.27-Perry.pdf,2005.11.27,2005.11.27,4696,, +2005.11.25.c,25-Nov-05,2005,Boat,AUSTRALIA,Victoria,"6 km off Collendina, south of Melbourne",Fishing,"4.5 m boat, occupant: Rodney Lawn",,,"No injury to occupant, shark bit outboard motor",N,,3 m white shark,"Sunday Mail (QLD), 11/27/2005, p.30",2005.11.25.c-boat-Lawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.c-boat-Lawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.c-boat-Lawn.pdf,2005.11.25.c,2005.11.25.c,4695,, +2005.11.25.b,25-Nov-05,2005,Unprovoked,AUSTRALIA,Victoria,Flinders,Surfing,Tom Burke,M,18,"2 lacerations on leg, each 4"" to 5"" long",N,18h00,1.8 m shark,"Sydney Morning Herald, 11/25/2005",2005.11.25.b-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.b-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.b-Burke.pdf,2005.11.25.b,2005.11.25.b,4694,, +2005.11.25.a,25-Nov-05,2005,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Ashley Milford,M,26,"Cut on finger, board bitten",N,11h30,,Dispatch online,2005.11.25.a-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.a-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.a-Milford.pdf,2005.11.25.a,2005.11.25.a,4693,, +2005.11.24,24-Nov-2005-,2005,Unprovoked,NEW CALEDONIA,Loyalty Islands,Mar,Spearfishing,Emile,,,Arm bitten,N,20h30,,"Les Nouvelles Caledoniennes, 11/29/2005",2005.11.24-Emile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.24-Emile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.24-Emile.pdf,2005.11.24,2005.11.24,4692,, +2005.11.21,21-Nov-05,2005,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Surfing,a male from Miami,M,30s,Left foot bitten,N,Afternoon,4' shark,Stuart News,2005.11.21-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.21-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.21-JensenBeach.pdf,2005.11.21,2005.11.21,4691,, +2005.11.20,20-Nov-05,2005,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kevin Spradlin,M,17,Lacerations to right thigh,N,14h30,,"S. Petersohn, GSAF",2005.11.20-Spradlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.20-Spradlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.20-Spradlin.pdf,2005.11.20,2005.11.20,4690,, +2005.11.16.R,Reported 16-Nov-2005,2005,Boat,NEW CALEDONIA,,,,3.8-m boat with 3 people on board,,,"No injury to occupants, shark lifted bow of boat 3 times",N,,4.5 m white shark,"Le Quotidien, 11/16/2005, p.62",2005.11.16.R-boat-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.16.R-boat-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.16.R-boat-NewCaledonia.pdf,2005.11.16.R,2005.11.16.R,4689,, +2005.11.15,15-Nov-05,2005,Provoked,SOUTH AFRICA,Eastern Cape Province,Aston Bay,Fishing for sharks,Ivan Gerger,M,32,Lacerations to hands & right leg when he tried to pull shark from the water PROVOKED INCIDENT,N,14h00,"Raggedtooth shark, 2.5m ",J. Visser,2005.11.15-Gerger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.15-Gerger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.15-Gerger.pdf,2005.11.15,2005.11.15,4688,, +2005.11.12,12-Nov-05,2005,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Lance Cameron,M,18,Puncture wounds to right foot,N,13h00,6' shark,"S. Petersohn, GSAF",2005.11.12-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.12-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.12-Cameron.pdf,2005.11.12,2005.11.12,4687,, +2005.11.02.b,02-Nov-05,2005,Unprovoked,USA,California,"Mavericks, Half Moon Bay, San Mateo County",Surfing,Tim West,M,25,"No injury, board bitten",N,16h45,,"R. Collier, GSAF",2005.11.02.b-West.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.b-West.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.b-West.pdf,2005.11.02.b,2005.11.02.b,4686,, +2005.11.02.a,02-Nov-05,2005,Unprovoked,USA,California,"Ocean Beach, San Francisco, San Francisco County",Surfing,Jake Daneman,M,26,"No injury, board bumped",N,07h15,12' to 14' white shark,"R. Collier, GSAF",2005.11.02.a-Daneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.a-Daneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.a-Daneman.pdf,2005.11.02.a,2005.11.02.a,4685,, +2005.10.29,29-Oct-05,2005,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County ",Wading,male,M,15,Puncture wounds to foot,N,,2' to 3' shark,"Sentinel, 1-/30/2005",2005.10.29-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.29-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.29-PonceInlet.pdf,2005.10.29,2005.10.29,4684,, +2005.10.25,25-Oct-05,2005,Unprovoked,ST. MAARTIN,Simpson Bay,Sunterra Beach,Standing,James Bumpers,M,55,Lower right leg lacerated,N,08h00,2' shark,"M. Levine, GSAF",2005.10.25-Bumpers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.25-Bumpers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.25-Bumpers.pdf,2005.10.25,2005.10.25,4683,, +2005.10.22,22-Oct-05,2005,Unprovoked,SOUTH AFRICA,Western Cape Province,Uilenkraalsmond (near Gansbaai),Standing / Surfing,Christiaan van Zyl,M,20,Right foot bitten,N,Morning,3 m shark,Cape Times,2005.10.22-vanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.22-vanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.22-vanZyl.pdf,2005.10.22,2005.10.22,4682,, +2005.10.21,21-Oct-05,2005,Unprovoked,USA,California,"Klamath River mouth, Del Norte County",Surfing,Chad Reiker,M,36,No injury,N,11h00,White shark,"R. Collier, GSAF",2005.10.21-Reiker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.21-Reiker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.21-Reiker.pdf,2005.10.21,2005.10.21,4681,, +2005.10.19,19-Oct-05,2005,Unprovoked,USA,California,"Salmon Beach, Sonoma County",Surfing,Megan Halavais,F,20,Leg bitten,N,10h30,18' white shark,"R. Collier, GSAF; Bay City Newswire",2005.10.19-Halavais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.19-Halavais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.19-Halavais.pdf,2005.10.19,2005.10.19,4680,, +2005.10.15,15-Oct-05,2005,Provoked,USA,Florida,"Ponce Inlet, Volusia County",Wading,N.W.,M,15,Minor cuts to dorsum & sole of left foot when he stepped on shark PROVOKED INCIDENT,N,17h55,,"S. Petersohn, GSAF; Florida Today, 10/16/2005 ",2005.10.15-NW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.15-NW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.15-NW.pdf,2005.10.15,2005.10.15,4679,, +2005.10.13,13-Oct-05,2005,Unprovoked,USA,Hawaii,"Honokowai, Maui",Surfing,Clayton Sado,M,22,"No injury, surfboard bitten",N,18h00,"Tiger shark, less than 10'",Hawaii Department of Land and Natural Resources,2005.10.13-Sado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.13-Sado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.13-Sado.pdf,2005.10.13,2005.10.13,4678,, +2005.10.11,11-Oct-05,2005,Unprovoked,GRAND CAYMAN,East Wall,Jack McKenney's Canyon,Scuba diving,Lea Ann Hughes,F,57,No injury ,N,15h00,Caribbean reef sharks,"L.A.Hughes; G. Holt, Scubaradio.com",2005.10.11-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.11-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.11-Hughes.pdf,2005.10.11,2005.10.11,4677,, +2005.10.06,06-Oct-05,2005,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Treading water/ Surfing,Charles Hutson,M,48,Five 1-inch lacerations to left foot,N,16h05,,"S. Petersohn, GSAF",2005.10.06-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.06-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.06-Hutson.pdf,2005.10.06,2005.10.06,4676,, +2005.10.03,03-Oct-05,2005,Unprovoked,BAHAMAS,Abaco Islands,Grand Cay,Diving,Nixon Pierre,M,35,Lacerations to right side of face,N,,,"E. Ritter, GSAF; A. Armbrister, Freeport News, 10/3/2005",2005.10.03-Nixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.03-Nixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.03-Nixon.pdf,2005.10.03,2005.10.03,4675,, +2005.10.01,01-Oct-05,2005,Unprovoked,SOUTH AFRICA,Western Cape Province,"Sunny Cove, Fish Hoek",Surf-skiing,Trevor Wright,M,52,"No injury, shark bit ski",N,15h00,White shark,"Cape Argus, Cape Times, 10/3/2005",2005.10.01-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.01-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.01-Wright.pdf,2005.10.01,2005.10.01,4674,, +2005.09.27.R,Reported 27-Sep-2005,2005,Unprovoked,AUSTRALIA,New South Wales,Arakoon's Little Bay,Surfing,Wal Lewis,M,28,"No injury, knocked off board",N,,"Tiger shark, 3 m ","Macleay Argues, 9/27/2005",2005.09.27.R- Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.27.R- Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.27.R- Lewis.pdf,2005.09.27.R,2005.09.27.R,4673,, +2005.09.24,24-Sep-05,2005,Unprovoked,AUSTRALIA,South Australia,Kangaroo Island,Surfing,Josh Berris,M,26,Lacerations to legs,N,12h05,14' to 16' white shark,"T. Peake, GSAF",2005.09.24-Berris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.24-Berris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.24-Berris.pdf,2005.09.24,2005.09.24,4672,, +2005.09.23,23-Sep-05,2005,Unprovoked,AUSTRALIA,Western Australia,"Scarborough Beach, Perth",Surfing,Brad Satchell,M,44, No injury,N,Morning,Bronze whaler shark,"T. Peake, GSAF",2005.09.23-Satchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.23-Satchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.23-Satchell.pdf,2005.09.23,2005.09.23,4671,, +2005.09.22,22-Sep-05,2005,Invalid,USA,Florida,"Tigertail Beach, Collier County",Surfing,Charlie Corrado,M,,Lacerations to dorsum of left foot,N,07h30,Shark involvement not confirmed,"A. Galabinski, Marco Island Sun Times, 9/22/2005",2005.09.22-Corrado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.22-Corrado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.22-Corrado.pdf,2005.09.22,2005.09.22,4670,, +2005.09.20,20-Sep-05,2005,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Body surfing,Clair Parrett,F,68,"Injuries to fingers, calf & heel",N,16h30,3' to 4' shark,"C. Creswell, GSAF; K. Galliard, Sun News, 9/21/2005",2005.09.20-Parrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.20-Parrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.20-Parrett.pdf,2005.09.20,2005.09.20,4669,, +2005.09.11,11-Sep-05,2005,Unprovoked,USA,South Carolina,Folly Beach,Surfing,"Greg Norton, Jr.",M,18,FATAL,Y,14h00,,"Post & Courier, 9/12/2005",2005.09.11-Norton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.11-Norton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.11-Norton.pdf,2005.09.11,2005.09.11,4668,, +2005.09.07,07-Sep-05,2005,Unprovoked,AUSTRALIA,New South Wales,"Park Beach, Coff's Harbour",Standing,Blake Garnett,M,15,Left foot & ankle lacerated,N,Dusk,,"Sydney Morning Herald, 9/9/2005",2005.09.07-Garnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.07-Garnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.07-Garnett.pdf,2005.09.07,2005.09.07,4667,, +2005.09.05,05-Sep-05,2005,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Wading,Elizabeth Gardner,F,18,Calf severely lacerated,N,15h20,Bull shark,"Clay Creswell, GSAF",2005.09.05-Gardner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.05-Gardner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.05-Gardner.pdf,2005.09.05,2005.09.05,4666,, +2005.09.04.a,04-Sep-05,2005,Unprovoked,AUSTRALIA,South Australia,"Fishery Bay, Eyre Peninsula",Surfing,Jake Heron,M,40,Lacerations to right arm & thigh,N,15h00,4 m [13'] white shark,"C.Jenkin, Courier-Mail, 9/5/2005",2005.09.04-Heron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.04-Heron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.04-Heron.pdf,2005.09.04.a,2005.09.04.a,4665,, +2005.09.02.b,02-Sep-05,2005,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Standing / Surfing,Frances Grause,M,62,Right foot bitten,N,11h10,,"S. Petersohn, GSAF",2005.09.02.b-Grause.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.b-Grause.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.b-Grause.pdf,2005.09.02.b,2005.09.02.b,4664,, +2005.09.02.a,02-Sep-05,2005,Provoked,THAILAND,,On deck of fishing trawler 100 nautical miles offshore,Removing shark from net,"Ham, a Cambodian migrant worker",M,21,FATAL PROVOKED INCIDENT,Y,,"2 m [6.75'] shark, 200-kg shark T","Africa online, citing the Bangkok Post",2005.09.02.a-Ham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.a-Ham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.a-Ham.pdf,2005.09.02.a,2005.09.02.a,4663,, +2005.08.24.b,24-Aug-05,2005,Unprovoked,AUSTRALIA,South Australia,Glenelg ,Scuba diving,Jarrod Stehbens,M,23,FATAL,Y,16h10,White shark,"Adelaide Advertiser, 8/26/2005",2005.08.24.b-Stehbens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.b-Stehbens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.b-Stehbens.pdf,2005.08.24.b,2005.08.24.b,4662,, +2005.08.24.a,24-Aug-05,2005,Unprovoked,USA,California,"Scripps, LaJolla, San Diego County",Surfing,Tony Simmonson,M,37,Lower right leg lacerated,N,11h00,juvenile white shark,"R. Collier, GSAF ",2005.08.24.a-Simmonson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.a-Simmonson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.a-Simmonson.pdf,2005.08.24.a,2005.08.24.a,4661,, +2005.08.22,22-Aug-05,2005,Invalid,USA,South Carolina,"6th Avenue North, Myrtle Beach, Horry County","Boogie boarding, kicked at object in the water",Nicholas House,M,17,Laceration to knee,N,Afternoon,possibly a small blacktip shark,"Clay Creswell, GSAF",2005.08.22-House.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.22-House.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.22-House.pdf,2005.08.22,2005.08.22,4660,, +2005.08.21,21-Aug-05,2005,Unprovoked,USA,South Carolina,"34th Avenue North, Myrtle Beach, Horry County",Swimming,Jacob Kolessar,M,8,Bitten underneath left arm,N,Morning,Possibly a sandbar shark or small blacktip shark,"Clay Creswell, GSAF",2005.08.21-Kolessar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.21-Kolessar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.21-Kolessar.pdf,2005.08.21,2005.08.21,4659,, +2005.08.19,19-Aug-05,2005,Unprovoked,USA,Texas,Crystal Beach (east of Galveston),Walking,Julian Elizondo,M,12,Left foot bitten,N,20h00,,"Clay Creswell, GSAF; Houston Chronicle, 8/20/2005",2005.08.19-Elizondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.19-Elizondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.19-Elizondo.pdf,2005.08.19,2005.08.19,4658,, +2005.08.14,14-Aug-05,2005,Invalid,SOUTH AFRICA,Western Cape Province,"Milnerton Lagoon, Cape Town",,,,,Human foot recovered from the water,N,,,"J. Eager, scubaradio.com; Cape Times, 8/15/2005",2005.08.14-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.14-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.14-foot.pdf,2005.08.14,2005.08.14,4657,, +2005.08.12,12-Aug-05,2005,Unprovoked,USA,North Carolina,"Carolina Beach off Texas Avenue, New Hanover County",Surfing,Chris O'Connor,M,16,Laceration on right wrist & crescent of puncture wounds on forearm ,N,11h30,1.8 m [6'] shark,"C. Creswell, GSAF",2005.08.12-ChrisO'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.12-ChrisO'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.12-ChrisO'Connor.pdf,2005.08.12,2005.08.12,4656,, +2005.08.06,06-Aug-05,2005,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Michael Lamb,M,14,Puncture wounds on left foot ,N,09h45,,"C. Creswell, GSAF",2005.08.06-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.06-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.06-Lamb.pdf,2005.08.06,2005.08.06,4655,, +2005.08.01,01-Aug-05,2005,Invalid,Seychelles,Inner Islands,Off North Island,Fishing,Rolly Lesperance,M,,"FATAL, shark involvement prior to death is unconfirmed",Y,,Bull shark,D. Rowat,2005.08.01-Lesperance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.01-Lesperance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.01-Lesperance.pdf,2005.08.01,2005.08.01,4654,, +2005.07.27,27-Jul-05,2005,Unprovoked,USA,Florida,"Off Zelda Boulevard, Daytona Beach, Volusia Countyy",Wading,Nicole Carlos,F,13,Laceration on the back of left hand & toothmarks on wrist,N,18h00,,"D. Salamone, GSAF",2005.07.27-Carlos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.27-Carlos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.27-Carlos.pdf,2005.07.27,2005.07.27,4653,, +2005.07.23,23-Jul-05,2005,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Bob Thompson,M,61,"Right foot: Toes and back of foot, minor injury",N,11h30,,"D. Salamone, GSAF",2005.07.23-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.23-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.23-Thompson.pdf,2005.07.23,2005.07.23,4652,, +2005.07.22,22-Jul-05,2005,Invalid,USA,Florida,"Quarter mile south of Ponce de Leon Inlet, Volusia County",Surfing,Matthew Pearce,M,25,"Straight 2.5"" laceration on top of left ankle",N,11h15,Shark involvement not confirmed,"D. Salamone, GSAF",2005.07.22-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.22-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.22-Pearce.pdf,2005.07.22,2005.07.22,4651,, +2005.07.17.b,17-Jul-05,2005,Invalid,LIBERIA,,,Swimming,Valentyn Onuk,M,,Presumed to have drowned until his body washed ashore 2 weeks later with shark bites,Y,,,"R.D. Weeks, GSAF",2005.07.17.b-Onuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.b-Onuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.b-Onuk.pdf,2005.07.17.b,2005.07.17.b,4650,, +2005.07.17.a,17-Jul-05,2005,Provoked,CHINA,Shanghai,"Ocean World, Changfeng Park",Scuba diving in aquarium tank,Zhang Liang ,M,24,2 small cuts on right ear & head when he collided with the captive shark. PROVOKED INCIDENT,N,,3.5 m [11.5']shark,"Shanghai Star, 7/21/2005",2005.07.17.a-Liang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.a-Liang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.a-Liang.pdf,2005.07.17.a,2005.07.17.a,4649,, +2005.07.15.R,Reported 15-Jul-2005,2005,Invalid,AUSTRALIA,,,,"Jeff Wells claimed he rescued his ""daughter"" from a 4 m tiger shark",,,"A hoax - No shark was involved and Wells' ""daughter"" was his business partner Eileen Purchase who injured her finger on his boat",N,,No shark involvement,"Sunday Mail, 15/7/2005",2005.07.15.R- Hoax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.R- Hoax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.R- Hoax.pdf,2005.07.15.R,2005.07.15.R,4648,, +2005.07.15,15-Jul-05,2005,Unprovoked,USA,North Carolina,"Holden Beach, Brunswick County",Swimming,Chris Humphrey,M,22,Lacerations of left forearm,N,16h40,[4.5' to 5'] shark,"C. Creswell, GSAF",2005.07.15.a-Humphrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.a-Humphrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.a-Humphrey.pdf,2005.07.15,2005.07.15,4647,, +2005.07.13,13-Jul-05,2005,Unprovoked,USA,Texas,"Port Bolivar, Galveston County",Holding onto an inflatable boat,Lydia Paulk,F,14,Left foot bitten,N,13h00,[4' to 5'],"C. Creswell, GSAF",2005.07.13-Paulk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.13-Paulk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.13-Paulk.pdf,2005.07.13,2005.07.13,4646,, +2005.07.01,01-Jul-05,2005,Unprovoked,USA,Florida,"Boca Grande, Lee County",Standing,Armin Trojer,M,19,Ankle bitten,N,11h30,,"E. Ritter, GSAF",2005.07.01-Trojer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.01-Trojer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.01-Trojer.pdf,2005.07.01,2005.07.01,4645,, +2005.06.27,27-Jun-05,2005,Unprovoked,USA,Florida,"Cape San Blas, Gulf County",Fishing,Craig Adam Hutto,M,16,"Leg severely bitten, surgically amputated",N,11h30,Bull shark,"E. Ritter, GSAF",2005.06.27-Hutto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.27-Hutto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.27-Hutto.pdf,2005.06.27,2005.06.27,4644,, +2005.06.25,25-Jun-05,2005,Unprovoked,USA,Florida,"Destin, Walton County",Swimming with boogie board,Jamie Marie Daigle ,F,14,"FATAL, leg bitten",Y,11h15,1.8 m [6'] bull shark,"E. Ritter, GSAF",2005.06.25-Daigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.25-Daigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.25-Daigle.pdf,2005.06.25,2005.06.25,4643,, +2005.06.22,22-Jun-05,2005,Unprovoked,VANUATU,Malampa Province,Atchin Island off Malakula,Swimming,Alysha Margaret Webster,F,7,FATAL,Y,Afternoon,"On 8/13/2005 anglers from New Zealand caught a 2.8 m [9'3""], 140-kg [309-lb] shark at the same spot. It was believed this was the same shark that killed Alysha","R.D. Weeks, GSAF; New Zealand Herald, 6/23/2005",2005.06.22-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.22-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.22-Webster.pdf,2005.06.22,2005.06.22,4642,, +2005.06.21,20-Jun-05,2005,Unprovoked,MEXICO ,Baja California,San Luis beach,Surfing,Frank Johnson,M,,Left foot bitten,N,07h00,,http://www.signonsandiego.com/news/mexico/20050622-1621-mexico-sharkattack.html,2005.06.21-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.21-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.21-Johnson.pdf,2005.06.21,2005.06.21,4641,, +2005.06.18,18-Jun-05,2005,Invalid,USA,Hawaii,Maui,Swimming,Brad Grissom,M,49,"No injury, 2.1m [7'] tiger shark approached swimmer who repelled it with his fist",N,08h00,,www.mauinews.com,2005.06.18-Grissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.18-Grissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.18-Grissom.pdf,2005.06.18,2005.06.18,4640,, +2005.06.16,16-Jun-05,2005,Unprovoked,USA,Florida,"Howard E. Futch Memorial Park at Paradise Beach, Brevard County",Swimming,male,M,20,Foot bitten,N,Afternoon,"Unknown, but it was reported that a shark tooth was recovered from the wound",Local6.com,2005.06.16-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.16-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.16-male.pdf,2005.06.16,2005.06.16,4639,, +2005.06.13,13-Jun-05,2005,Unprovoked,SOUTH KOREA,South Ch'ungch'ong Province,Dando/Kaeui Island ,Diving,Lee,F,38,Knee bitten,N,,3 m [10'] white shark,"Korea Times, 6/13/2005 ",2005.06.13-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.13-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.13-Lee.pdf,2005.06.13,2005.06.13,4638,, +2005.06.07,07-Jun-05,2005,Unprovoked,USA,South Carolina,"Kiawah Island, Charleston County",Boogie boarding,Catherine Cochrane,F,11,Foot lacerated,N,11h30 ,,"C. Creswell, GSAF; N. Kenney, NewsChannel 19",2005.06.07-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.07-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.07-Cochrane.pdf,2005.06.07,2005.06.07,4637,, +2005.06.05,05-Jun-05,2005,Invalid,USA,New Jersey,"Surf City, Long Beach Island, Ocean County",Surfing,Ryan Horton,M,17,Dorsum of foot/ankle injured by surfboard skeg or other inanimate object.,N,11h00,"Mr. Burgess of ISAF announced the injury was the bite of a 1.8 m [6'], 2- to 3-year old white shark. Subsequent investigation revealed there was no shark involvement in this incident","Mr. Horton; R. Collier, R. Fernicola; M. Levine, E. Ritter, GSAF ",2005.06.05-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.05-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.05-Horton.pdf,2005.06.05,2005.06.05,4636,, +2005.06.04,04-Jun-05,2005,Unprovoked,SOUTH AFRICA,Western Cape Province,Miller's Point,Spearfishing (Free diving),Henri Murray,M,22,FATAL,Y,15h45,White shark,News24.com; SABC; H. Steele,2005.06.04-HenriMurray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.04-HenriMurray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.04-HenriMurray.pdf,2005.06.04,2005.06.04,4635,, +2005.06.02,02-Jun-05,2005,Unprovoked,USA,Texas,"Mustang Island, Corpus Christi",Wading,male,M,6,Two 2-inch lacerations on right foot,N,Morning,,KRIS6 News,2005.06.02-Texas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.02-Texas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.02-Texas.pdf,2005.06.02,2005.06.02,4634,, +2005.05.28,28-May-05,2005,Unprovoked,USA,Florida,Daytona Beach Shores,Swimming,Alfonso Garcia,M,33,Left foot bitten,N,17h30,"""small shark""","Daytona Beach News Journal, 5/29/2005; Orlando Sentinel, 5/30/2005, p.B3",2005.05.28-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.28-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.28-Garcia.pdf,2005.05.28,2005.05.28,4633,, +2005.05.27,27-May-05,2005,Unprovoked,USA,Florida,"Sand Key Beach, Clearwater, Pinellas County",Crouching in 2' of water,Michelle Smith,F,,Right arm & torso bitten,N,18h30,"18"" to 36"" shark","D.Wilhoit, The Ledger, 5/29/ 2005",2005.05.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.27-Smith.pdf,2005.05.27,2005.05.27,4632,, +2005.05.25,25-May-05,2005,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Surfing,Jay Catherall ,M,32,Left buttock & legs lacerated ,N,11h00,Raggedtooth shark,"C. Prince, East London Daily Dispatch, 5/26/2005; SABC News",2005.05.25-Catherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.25-Catherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.25-Catherall.pdf,2005.05.25,2005.05.25,4631,, +2005.05.15,15-May-05,2005,Unprovoked,AUSTRALIA,Queensland,50 km east of Townsville,Spearfishing,Ben Edelstein,M ,,Severe injury to lower leg,N,,Blacktip shark,"J. Anderson, Townsville Bulletin, 5/21/2005 ",2005.05.15-Edelstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.15-Edelstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.15-Edelstein.pdf,2005.05.15,2005.05.15,4630,, +2005.05.14,14-May-05,2005,Unprovoked,USA,Hawaii,"North Kihei, Maui",Kayaking,J. Bailey,,,"No injury, shark bit kayak",N,11h00,"Tiger shark, 8' to 9' ",Hawaii Department of Land and Natural Resources,2005.05.14-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.14-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.14-Bailey.pdf,2005.05.14,2005.05.14,4629,, +2005.05.03,03-May-05,2005,Unprovoked,MADAGASCAR,,,Fishing,Sochidjin,M,,Thigh bitten,N,,2.5 m shark,"Clicanoo, 5/6/2005, 5/7/2005",2005.05.03-Sochodjin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.03-Sochodjin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.03-Sochodjin.pdf,2005.05.03,2005.05.03,4628,, +2005.05.02.R,02-May-05,2005,Sea Disaster,USA,South Carolina,Off Sullivans Island,Sea Disaster,Boat: 14' Sunfish. Occupants Josh Long & Troy Driscoll,M,Teens,No injury,N,,,"Gaffney Ledger, 5/2/2005",2005.05.02.R-NC-boysAdrift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.R-NC-boysAdrift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.R-NC-boysAdrift.pdf,2005.05.02.R,2005.05.02.R,4627,, +2005.05.02,02-May-05,2005,Unprovoked,USA,Hawaii,"Noreiga's, Maui",Surfing,Scott Hoyt,M,47,"No injury, board damaged",N,10h30,"Tiger shark, 3 m [10']","T. Hurley, Honolulu Advertiser; L. Fujimoto, Maui News, 5/3/2005 ",2005.05.02.a-Hoyt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.a-Hoyt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.a-Hoyt.pdf,2005.05.02,2005.05.02,4626,, +2005.04.25,25-Apr-05,2005,Provoked,AUSTRALIA,New South Wales,Bermagui,Fishing,male,M,25,Laceration on left thigh PROVOKED INCIDENT,N,23h00,"Mako shark, 1.5 m [5'] ","Brisbane Courier Mail, 4/26/2005",2005.04.25-deckhand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.25-deckhand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.25-deckhand.pdf,2005.04.25,2005.04.25,4625,, +2005.04.17.R,17-Apr-05,2005,Unprovoked,AUSTRALIA,New South Wales,Crookhaven,,,,,Shark-bitten surfboard found adrift,N,,,"Illawarra Mercury, 4/17/2005",2005.04.17.a-Crookhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.17.a-Crookhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.17.a-Crookhaven.pdf,2005.04.17.R,2005.04.17.R,4624,, +2005.04.16.b,16-Apr-05,2005,Unprovoked,AUSTRALIA,Northern Territory,Bremer Island,Spearfishing,Clayton Deane,M,20,Minor cuts above his right eye,N,,2 m [6.75'] copper shark,"G. McLean, Northern Territory News; Sunday Territorian, 4/17/2005, p.6",2005.04.16.b-Deane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.b-Deane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.b-Deane.pdf,2005.04.16.b,2005.04.16.b,4623,, +2005.04.16.a,16-Apr-05,2005,Unprovoked,AUSTRALIA,New South Wales,Bronte Beach,Surfing,Simon Letch,M,40,"No injury, board bitten",N,06h10,Bronze whaler shark,The Sun; Illwarra Mercury; Yahoo News,2005.04.16.a-Letch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.a-Letch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.a-Letch.pdf,2005.04.16.a,2005.04.16.a,4622,, +2005.04.13,13-Apr-05,2005,Unprovoked,USA,Florida,"Crescent Beach, Sarasota County",Wading,Jessica Lynch,F,70,Right lower leg bitten,N,,1.8 m [6'] blacktip shark,Herald Tribune.com,2005.04.13-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.13-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.13-Lynch.pdf,2005.04.13,2005.04.13,4621,, +2005.04.09,09-Apr-05,2005,Invalid,USA,Florida,"Central Gulf Coast, St. John County",Surfing,Glenn Henderson,M,52,Foot injured ,N,,Shark involvement not confirmed,"WTSP TampaBays10.com; First Coast News, April 10, 2005 ",2005.04.09-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.09-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.09-Henderson.pdf,2005.04.09,2005.04.09,4620,, +2005.04.07,07-Apr-05,2005,Unprovoked,USA,Texas,"Isla Blanca Park, South Padre Island, Cameron County",Surfing,Gianluca Ferrario ,M,37,Left foot bitten ,N,19h00,,"G. Ferrario; J. Mendoza, Cameron County Parks; The Herald (Brownsville), 4/11/2005",2005.04.07-GianlucaFerrario.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.07-GianlucaFerrario.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.07-GianlucaFerrario.pdf,2005.04.07,2005.04.07,4619,, +2005.04.06,06-Apr-05,2005,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",,Jessica Abe,F,,Left calf injured,N,,small hammerhead shark,WJXT News4Jax.com,2005.04.06.a-Abe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.a-Abe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.a-Abe.pdf,2005.04.06,2005.04.06,4618,, +2005.04.06,06-Apr-05,2005,Invalid,HONDURAS,Bay Islands,Utila,SCUBA Diving,female,F,,"Laceration on siide of calf, small laceration on thigh, large bruise on other leg inside the knee, knuckle of hand abraded",N,,Shark involvement not confirmed,"J. Engel, SRI & S. Fox, Deep Blue",2005.04.06.b-Utila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.b-Utila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.b-Utila.pdf,2005.04.06,2005.04.06,4617,, +2005.03.28,28-Mar-05,2005,Unprovoked,SOUTH AFRICA,Western Cape Province,Noordhoek,Surfing,Chris Sullivan,M,32,"Lacerations to right calf, puncture wounds on right foot",N,09h45,4 m [13'] shark,"ITN, 3/30/2005",2005.03.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.28-Sullivan.pdf,2005.03.28,2005.03.28,4616,, +2005.03.27.R,Reported 27-Mar-2005,2005,Unprovoked,AUSTRALIA,New South Wales,,Surfing,Chris Parker,M,,"No injury, shark rammed surfboard",N,,,"Sunday Age, 3/27/2005",2005.03.27.R-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.27.R-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.27.R-Parker.pdf,2005.03.27.R,2005.03.27.R,4615,, +2005.03.25,25-Mar-05,2005,Unprovoked,VENEZUELA,,Punta Caracas,Surfing,Jokin Leizaola,M,,Right leg bitten,N,17h30,,"A. Brenneka, GSAF",2005.03.25-Leizaola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.25-Leizaola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.25-Leizaola.pdf,2005.03.25,2005.03.25,4614,, +2005.03.19,19-Mar-05,2005,Unprovoked,AUSTRALIA,Western Australia,"Wreck Point, Abrolhos Islands",Snorkeling,Geoffrey Brazier,M,26,FATAL,Y,14h00,6 m [20'] white shark,"T. Peake, GSAF",2005.03.19-Brazier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.19-Brazier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.19-Brazier.pdf,2005.03.19,2005.03.19,4613,, +2005.03.12,12-Mar-05,2005,Provoked,USA,New Mexico,"Albuquerue Aquarium, Albuquerue",Diving in aquarium display tank,Ken Pitts,M,45,2 punctures on forearm as captive shark collided with diver PROVOKED INCIDENT,N,15h30,"Sandtiger shark, 2.1 m [7'] ","H. Casman; T. Dukart, KOBTV",2005.03.12-Pitts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.12-Pitts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.12-Pitts.pdf,2005.03.12,2005.03.12,4612,, +2005.03.10,10-Mar-05,2005,Invalid,SOUTH AFRICA,KwaZulu-Natal,Isipingo,,Anthony Arnachallan ,M,51,Shark bites post mortem,N,,"Tiger shark, 2.5 m [8.25']","J. Govander, Nokia Sea Rescue, SAPA",2005.03.10-Arnachallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.10-Arnachallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.10-Arnachallan.pdf,2005.03.10,2005.03.10,4611,, +2005.03.09,09-Mar-05,2005,Provoked,NEW ZEALAND,North Island,"Waiapu River mouth , East Cape",Fishing,"Chris Haenga, Wayne Rangihuna & Tamahau Tibble",M,,"No injury, netted shark dragged them 350 metres out to sea PROVOKED INCIDENT",N,14h00,"Bronze whaler shark, 4.3 m [14'] ","R.D. Weeks, GSAF",2005.03.09-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.09-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.09-fishermen.pdf,2005.03.09,2005.03.09,4610,, +2005.03.05,05-Mar-05,2005,Unprovoked,SOLOMON ISLANDS,Santa Isabel Province,,Diving,male,M,,Thighs bitten,N,,,"Solomon Star, 3/9/2005",2005.03.05-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.05-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.05-SolomonIslands.pdf,2005.03.05,2005.03.05,4609,, +2005.02.26,26-Feb-05,2005,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Swimming,Nathan Shaxson,M,18,Finger bitten,N,,Bull shark,Queensland Times,2005.02.26-Shaxson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.26-Shaxson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.26-Shaxson.pdf,2005.02.26,2005.02.26,4608,, +2005.02.22,22-Feb-05,2005,Provoked,USA,Florida,"Long Key, Monroe County",Spearfishing,Alex Mumzhiu,M,,Speared shark bit his chest PROVOKED INCIDENT,N,,"Nurse shark, 3' ",http://www.foldabikes.com/CurrentEvents/Story/Florida.html,2005.02.22-AlexMumzhiu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.22-AlexMumzhiu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.22-AlexMumzhiu.pdf,2005.02.22,2005.02.22,4607,, +2005.02.16,16-Feb-05,2005,Unprovoked,USA,Hawaii,"Rocky Point, north shore of O'ahu",Surfing,Greg Long,M,,"No injury, knocked off board, shark bit board",N,14h30,"Tiger shark, 2.4 m [8']"," R. Collier, GSAF; T. Winters, Honolulu Advertiser, 2/17/2005 ",2005.02.16-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.16-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.16-Long.pdf,2005.02.16,2005.02.16,4606,, +2005.02.13,13-Feb-05,2005,Unprovoked,USA,Florida,Fort Lauderdale,Spearfishing,male,M,,Hand bitten,N,,1.8 m [6'] Caribbean reef shark,J. Herrera,2005.02.13-FtLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.13-FtLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.13-FtLauderdale.pdf,2005.02.13,2005.02.13,4605,, +2005.02.04,04-Feb-05,2005,Unprovoked,BRAZIL,Bahia,Ilhus,Surfing,Antonio de Carvalho Miguel Pereira ,M,12,Right thigh & ankle injured,N,,,"Orlando Sentinel, 2/5/2005, p.A6",2005.02.04-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.04-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.04-Pereira.pdf,2005.02.04,2005.02.04,4604,, +2005.01.20,20-Jan-05,2005,Unprovoked,CUBA,Santiago de Cuba Province,Uvero,Swimming,Hurdenis Jrez ,M,19,Left foot severed,N,,3 m [10'] shark,Cuba News,2005.01.20-Jerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.20-Jerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.20-Jerez.pdf,2005.01.20,2005.01.20,4603,, +2005.01.19,19-Jan-05,2005,Provoked,AUSTRALIA,Victoria,Port Phillip Bay,Spearfishing,Julian McLaughlin,M,,No injury. Towed by speared shark PROVOKED INCIDENT,N,,3 m shark,Herald Sun News,2005.01.19-McLaughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.19-McLaughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.19-McLaughlin.pdf,2005.01.19,2005.01.19,4602,, +2005.01.14,14-Jan-05,2005,Provoked,AUSTRALIA,Victoria,Blairgowrie,Attempting to drive shark away from sailing regatta,dinghy,,,"No injury to occupants, one of the boat's flotation tanks holed PROVOKED INCIDENT",N,14h00,"Bronze whaler shark, 2 m to 3 m [6.75' to 10'] ",Herald Sun News,2005.01.14-raceboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.14-raceboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.14-raceboat.pdf,2005.01.14,2005.01.14,4601,, +2005.01.08,08-Jan-05,2005,Unprovoked,NEW ZEALAND,North Island,Taupiri Bay,Fishing from a kayak,Paul Morris,M,39,"No injury, kayak bumped repeatedly",N,12h00,White shark,"R. Collier & R.D. Weeks, GSAF ",2005.01.08-PaulMorris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.08-PaulMorris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.08-PaulMorris.pdf,2005.01.08,2005.01.08,4600,, +2004.12.26,26-Dec-04,2004,Invalid,SRI LANKA,Eastern Province,Pasikudha,"Swept out to sea by the tsunami, she clung to a log for 24 hours",Sylvia Lucas,F,11,No injury,N,,No shark involvement,"R.D. Weeks, GSAF",2004.12.26-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.26-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.26-Lucas.pdf,2004.12.26,2004.12.26,4599,, +2004.12.16,16-Dec-04,2004,Unprovoked,AUSTRALIA,South Australia,"West Beach, Adelaide",Scurfing (surfboard being towed behind a boat),Nick Peterson,M,18,FATAL,Y,15h15,4.5 m & 5 m white shark ,"P. Kemp & T. Peake, GSAF",2004.12.16-Peterson-draft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.16-Peterson-draft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.16-Peterson-draft.pdf,2004.12.16,2004.12.16,4598,, +2004.12.11,11-Dec-04,2004,Unprovoked,AUSTRALIA,Queensland,Opal Reef,Spearfishing,Mark Thompson,M,38,"FATAL, leg bitten",Y,13h00,Bull shark,"Weekend Australian, 2/17/2005, et al.",2004.12.11-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.11-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.11-Thompson.pdf,2004.12.11,2004.12.11,4597,, +2004.11.27,27-Nov-04,2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Llewellyn Maske,M,20,3 lacerations on foot,N,18h00,Raggedtooth shark,J. Eager,2004.11.27-Maske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.27-Maske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.27-Maske.pdf,2004.11.27,2004.11.27,4596,, +2004.11.26,26-Nov-04,2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie,Playing,Arno de Bruyn,M,16,Lacerations on lower leg & foot,N,,Raggedtooth shark,J. Eager,2004.11.26-ArnoDeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.26-ArnoDeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.26-ArnoDeBruyn.pdf,2004.11.26,2004.11.26,4595,, +2004.11.15,15-Nov-04,2004,Unprovoked,SOUTH AFRICA,Western Cape Province,"Fish Hoek, False Bay",Swimming,Tyna Webb,F,77,FATAL,Y,07h00,6 m [20'] white shark,"J.P. Botha, GSAF",2004.11.15-TynaWebb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.15-TynaWebb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.15-TynaWebb.pdf,2004.11.15,2004.11.15,4594,, +2004.11.11.b,11-Nov-04,2004,Unprovoked,USA,California,"Bunkers, Humboldt Bay, Eureka, Humboldt County",Surfing,Brian Kang,lli,38,"Lacerations to hand, knee & thigh ",N,13h30,5.5 m [18'] white shark,"R. Collier, GSAF ",2004.11.11.b-Kang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.b-Kang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.b-Kang.pdf,2004.11.11.b,2004.11.11.b,4593,, +2004.11.11.a,11-Nov-04,2004,Unprovoked,VANUATU,Malampa Province,Malakula (Malakula Island),Snorkeling,a German tourist (male),M,30s,Thigh bitten,N,09h00,,"R. Harris, M.D., T. Peake, GSAF",2004.11.11.a-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.a-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.a-Vanuatu.pdf,2004.11.11.a,2004.11.11.a,4592,, +2004.11.00,Nov-04,2004,Unprovoked,NEW CALEDONIA,North Province,Koumac,Diving,Unknown,,,Forearm bitten,N,,3 m shark,"Les Nouvelles Caledoniennes, 11/19/2004",2004.11.00-Koumac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.00-Koumac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.00-Koumac.pdf,2004.11.00,2004.11.00,4591,, +2004.10.31,31-Oct-04,2004,Unprovoked,CUBA,Camaguey Province,Santa Lucia,Diving,male,M,40,Left forearm bitten,N,14h00,2.5 m [8.25'] bull shark,"E. Ritter, GSAF",2004.10.31-CubanSharkFeed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.31-CubanSharkFeed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.31-CubanSharkFeed.pdf,2004.10.31,2004.10.31,4590,, +2004.10.30.x,30-Oct-04,2004,Invalid,NEW ZEALAND,North Island,Whangarei,,,,,No injury,N,,3 m white shark,"New Zealand Herald, 11/24/2004/15/2004",2004.10.30.x-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.x-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.x-NewZealand.pdf,2004.10.30.x,2004.10.30.x,4589,, +2004.10.30.a,30-Oct-04,2004,Unprovoked,SOUTH AFRICA,Western Cape Province,Gansbaai,Chumming for white sharks,Andre Hartman,M,52,Right ankle & foot lacerated,N,Morning,2 m [6.75'] white shark,"J.P. Botha, GSAF",2004.10.30.a-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.a-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.a-Hartman.pdf,2004.10.30.a,2004.10.30.a,4588,, +2004.10.21,21-Oct-04,2004,Unprovoked,AUSTRALIA,New South Wales,Stockton Beach,Surfing,John Gresham,M,59,Right foot lacerated,N,Afternoon,"Bronze whaler shark, 2.4 m [8'] ","The Border Mail, 10/23/2004",2004.10.21-Gresham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.21-Gresham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.21-Gresham.pdf,2004.10.21,2004.10.21,4587,, +2004.10.10,10-Oct-04,2004,Unprovoked,USA,California,"Limantour Beach, Point Reyes National Seashore",Surfing,Paul de Jung,M,,Lower leg bitten,N,09h30,1.8 m to 2.4 m [6' to 8'] white shark,"R. Collier, GSAF",2004.10.10-deJung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.10-deJung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.10-deJung.pdf,2004.10.10,2004.10.10,4586,, +2004.10.09.b,09-Oct-04,2004,Unprovoked,USA,Hawaii,Moloka'i,Spearfishing,Davy Sanada,M,34,Left shoulder bitten,N,12h40,"Tiger shark, 2.4 m to 3.7 m [8' to 12'] ","The Maui News, 10/10/2004 ",2004.10.09.b-Sanada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.b-Sanada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.b-Sanada.pdf,2004.10.09.b,2004.10.09.b,4585,, +2004.10.09.a,09-Oct-04,2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Surfing,Wayne Monk,M,34,Puncture wounds on right foot,N,Morning,"Raggedtooth shark, 1.5 to 2 m [5' to 6.75']","Sunday Argus, 10/10/2004; W. Steenkamp, Cape Times 10/9/2004",2004.10.09.a-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.a-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.a-Monk.pdf,2004.10.09.a,2004.10.09.a,4584,, +2004.10.06,06-Oct-04,2004,Unprovoked,REUNION,Conservatria District,"P' tit Paris, Saint-Pierre",Body boarding,Vincent Motais ,M,15,"Leg severely bitten, surgically amputated",N,16h15,Thought to involve a 2.5 m bull or tiger shark,Federation Francaise de Surf,2004.10.06-Motais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.06-Motais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.06-Motais.pdf,2004.10.06,2004.10.06,4583,, +2004.10.02,02-Oct-04,2004,Unprovoked,USA,California,"Pismo Beach, San Luis Obispo County",Surfing,Ben Ikola,M,16,"No injury, knocked off surfboard",N,15h30,,"R. Collier, GSAF",2004.10.02-Ikola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.02-Ikola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.02-Ikola.pdf,2004.10.02,2004.10.02,4582,, +2004.10.01,01-Oct-04,2004,Unprovoked,USA,California,"Lifeguard Tower 16, Huntington Beach, Orange County",Surfing,Chuck Wilson,M,40,"No injury, shark struck board & spun it around",N,14h00,,"R. Collier, GSAF",2004.10.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.01-Wilson.pdf,2004.10.01,2004.10.01,4581,, +2004.09.25,25-Sep-04,2004,Boat,AUSTRALIA,Queensland,Batt Reef,Spearfishing/ filming,"inflatable dinghy, occupants: Ben Cropp, J. Harding & T. Fleischman",,,"No injury to occupants, boat damaged",N,12h00,"Tiger shark, 3 m [10'] ","R. Collier, GSAF",2004.09.25-CroppBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.25-CroppBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.25-CroppBoat.pdf,2004.09.25,2004.09.25,4580,, +2004.09.20,20-Sep-04,2004,Unprovoked,USA,Oregon,Gold Beach,Surfing,Seth Mead,M,26,Leg bitten,N,09h00,White shark,"S. Mead, R. Collier, J. Eager, B. Middleton",2004.09.20-Mead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.20-Mead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.20-Mead.pdf,2004.09.20,2004.09.20,4579,, +2004.09.10,10-Sep-04,2004,Invalid,USA,Texas,South Padre Island,Surf fishing,male,M,,Minor scratch on calf,N,Between 05h00 and 08h00,Shark involvement questionable,M. Shields,2004.09.10-SouthPadreIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.10-SouthPadreIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.10-SouthPadreIsland.pdf,2004.09.10,2004.09.10,4578,, +2004.09.08,08-Sep-04,2004,Unprovoked,BRAZIL,Pernambuco,"Pina, Recife",Swimming,Unidentified,,,FATAL,Y,,,JCOnline,2004.09.08-Pina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.08-Pina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.08-Pina.pdf,2004.09.08,2004.09.08,4577,, +2004.09.04,04-Sep-04,2004,Unprovoked,USA,South Carolina ,"North of Apache Pier, Myrtle Beach, Horry County",Jumping,Megan Durham,F,17,Left knee & leg bitten,N,15h40,2.4 m [8'] shark,"C. Creswell, GSAF",2004.09.04-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.04-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.04-Durham.pdf,2004.09.04,2004.09.04,4576,, +2004.08.29,29-Aug-04,2004,Unprovoked,USA,Florida,"New Smyrna Beach / Cape Canaveral National Seashore, Brevard County",Walking,Debbie Salamone,F,38,Heel bitten,N,17h30,,"T. Jerome, GSAF; Daytona Beach News Journal, 8/31/2004",2004.08.29-Salamone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.29-Salamone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.29-Salamone.pdf,2004.08.29,2004.08.29,4575,, +2004.08.21,21-Aug-04,2004,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Bathing,Wagner da Silva,M,24,Calf bitten & both hands injured,N,13h00,"Tiger shark, 1.5 m ","P. M. Lopes, GSAF, 8/22/2004",2004.08.21-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.21-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.21-daSilva.pdf,2004.08.21,2004.08.21,4574,, +2004.08.20,20-Aug-04,2004,Unprovoked,USA,California,"204s, San Clemente, Orange County",Surfing,Shannon Lehman,M,,Foot bitten,N,17h30,0.9 m to 1.2 m [3' to 4'] white shark,"R. Collier, GSAF",2004.08.20-Lehmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.20-Lehmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.20-Lehmann.pdf,2004.08.20,2004.08.20,4573,, +2004.08.15,15-Aug-04,2004,Unprovoked,USA,California,"Kibesillah, Mendocino County",Diving,Randy Fry,M,50,FATAL,Y,16h00,4.9 m to 5.5 m [16' to 18'] white shark,"R. Collier & L. Levine, GSAF",2004.08.15-Fry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.15-Fry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.15-Fry.pdf,2004.08.15,2004.08.15,4572,, +2004.08.06,06-Aug-04,2004,Unprovoked,USA,Florida,"Big Bayou, St. Petersburg, Pinellas County ",Swimming,James Tiffee,M,47,"Back, buttocks, left hand & left side of face bitten",N,20h30,1.2 m [4'] shark,"T. Jerome, GSAF",2004.08.06-Tiffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.06-Tiffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.06-Tiffee.pdf,2004.08.06,2004.08.06,4571,, +2004.08.03,03-Aug-04,2004,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Spearfishing,male,M,30,Minor puncture wounds to leg,N,14h00,,"T. Peake, GSAF",2004.08.03-ByronBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.03-ByronBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.03-ByronBay.pdf,2004.08.03,2004.08.03,4570,, +2004.08.00,Aug-04,2004,Boat,SOUTH AFRICA,KwaZulu-Natal,Park Rynie,Fishing,boat x 2,,,No injury to occupants; boat damaged,N,,3 m to 4 m [10' to 13'] white shark,"J. Eager, scubaradio.com",2004.08.00-SAboats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.00-SAboats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.00-SAboats.pdf,2004.08.00,2004.08.00,4569,, +2004.07.31,31-Jul-04,2004,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Kelly Getzfread,F,20,Right foot bitten,N,13h00,,"C. Creswell, GSAF",2004.07.31-Getzfread.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.31-Getzfread.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.31-Getzfread.pdf,2004.07.31,2004.07.31,4568,, +2004.07.30,30-Jul-04,2004,Unprovoked,RUSSIA,Kuril Islands in the Pacific,"Kunashir Island, 70 km from northern Japan",Diving & fishing with net,Vladimir Skutelnik,M,,Thigh & calf bitten,N,,White shark,"M. Gozum & J. Eager, scubaradio.com",2004.07.30-Skutelnik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.30-Skutelnik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.30-Skutelnik.pdf,2004.07.30,2004.07.30,4567,, +2004.07.28,28-Jul-04,2004,Unprovoked,USA,North Carolina,"Rodanthe, Dare County",Surfing,Catherine Delneo,F,28,Right calf bitten,N,17h30,,"C.Delneo, C. Creswell, M. Levine, R. Collier, GSAF",2004.07.28-Delneo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.28-Delneo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.28-Delneo.pdf,2004.07.28,2004.07.28,4566,, +2004.07.27.b,27-Jul-04,2004,Unprovoked,USA,North Carolina,"Carolina Beach, New Hanover County",Swimming,Alexis Huesgen,F,13,Right forearm & wrist lacerated,N,17h00,1.8 m [6'] shark,"C. Creswell, GSAF",2004.07.27.b-Huesgen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.b-Huesgen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.b-Huesgen.pdf,2004.07.27.b,2004.07.27.b,4565,, +2004.07.27.a,27-Jul-04,2004,Unprovoked,USA,Texas,Galveston Island,Swimming,Erika Hailey,F,19,Right foot bitten,N,16h30,1.2 m to 1.5 m [4' to 5'] shark,KETK56 News,2004.07.27.a-Hailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.a-Hailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.a-Hailey.pdf,2004.07.27.a,2004.07.27.a,4564,, +2004.07.25,25-Jul-04,2004,Unprovoked,USA,Texas,"Bryan Beach, Brazoria County",Wading / fishing & carrying a bag of fish,Aaron Perez,M,11,Right forearm nearly severed and bites above & below the right knee,N,19h30,Bull shark,KRISTV.com,2004.07.25-AaronPerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.25-AaronPerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.25-AaronPerez.pdf,2004.07.25,2004.07.25,4563,, +2004.07.19.R," 19-Jul-2004 Reported to have happened ""on the weekend""",2004,Boat,AUSTRALIA,Western Australia,"7 km off Trigg surf beach, Perth",Fishing,"boat, occupants: Mike Taylor & his son, Jack, age 9 ",,,"No injury to occupants; shark mouthed motor, severed anchor line",N,,4 m [13'] white shark,"Channel 9; Northern Territory News, 7/20/2004, p.10 ",2004.07.19.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.19.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.19.R-boat.pdf,2004.07.19.R,2004.07.19.R,4562,, +2004.07.15,15-Jul-04,2004,Unprovoked,JAPAN,Wakayama Prefecture,Susami,Fishing for squid aboard the trawler Shikishima-Maru when the shark leapt into the boat,Yuji Torimi,M,51,Suffered broken ribs when the shark's tail fin slammed into his chest,N,,"Longfin mako shark, 3.5 m [11.5'], 350-kg [772-lb] ","Mainichi Shimbun, 7/17/2004 ",2004.07.15-Torimi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.15-Torimi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.15-Torimi.pdf,2004.07.15,2004.07.15,4561,, +2004.07.10,10-Jul-04,2004,Unprovoked,AUSTRALIA,Western Australia,"Lefthanders Beach, Margaret River",Surfing,Bradley Adrian Smith,M,30,"FATAL, abdomen, pelvis & leg bitten ",Y,14h10,"2 sharks, 4.5 m & 3 m ","T. Peake, GSAF",2004.07.10-BradSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.10-BradSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.10-BradSmith.pdf,2004.07.10,2004.07.10,4560,, +2004.07.02.b,02-Jul-04,2004,Unprovoked,EGYPT,Sinai Peninsula,The lagoon at Dahab,Snorkeling,"Mirjam Buser, a Swiss tourist",F,Teen,Hand severed,N,,"""black tipped"" shark","E. Ritter, GSAF; iwindsurf.co.uk",2004.07.02.b-MiriamBuser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.b-MiriamBuser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.b-MiriamBuser.pdf,2004.07.02.b,2004.07.02.b,4559,, +2004.07.02.a,02-Jul-04,2004,Unprovoked,USA,Alabama,"Gulf Shores Beach, Baldwin County",Wading,Trenton Martin,M,7,Right foot lacerated,N,16h40,4' to 5' shark,"C. Creswell, GSAF",2004.07.02.a-TrentonMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.a-TrentonMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.a-TrentonMartin.pdf,2004.07.02.a,2004.07.02.a,4558,, +2004.06.26.b,26-Jun-04,2004,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Kelly French,M,45,"No injury, shark struck his board",N,09h00,"9'2"" white shark",R. Collier; GSAF,2004.06.26.b-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.b-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.b-French.pdf,2004.06.26.b,2004.06.26.b,4557,, +2004.06.26.a,26-Jun-04,2004,Invalid,AUSTRALIA,Western Australia,Floreat Beach,Crayfishing,Gavin Duncan,M,,"No injury, shark made threat displays & diver fended it off with his speargun",N,,,"T. Peake, GSAF; Sunday Times (Perth) 6/27/2004, p.11",2004.06.26.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.a-Duncan.pdf,2004.06.26.a,2004.06.26.a,4556,, +2004.06.14,14-Jun-04,2004,Unprovoked,USA,Florida,"Disney / Vero Beach, Indian River County",In water with diving seabirds,girl,F,,Foot bitten,N,,,Global Lifeguards,2004.06.14-Disney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.14-Disney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.14-Disney.pdf,2004.06.14,2004.06.14,4555,, +2004.06.10.b,10-Jun-04,2004,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Body boarding,Tom O'Brien,M,17,Ankle & foot lacerated,N,Late afternoon,"Bronze whaler shark, 2.5 m [8.25'] ","T. Peake, GSAF",2004.06.10.b-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.b-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.b-O'Brien.pdf,2004.06.10.b,2004.06.10.b,4554,, +2004.06.10.a,10-Jun-04,2004,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Swimming,Mitchell Anderson,M,8,Right wrist & left arm lacerated,N,18h00,1.2 m [4'] shark,"T. Jerome, GSAF; Daytona Beach News Journal,, 6/11/2004, p.1C",2004.06.10.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.a-Anderson.pdf,2004.06.10.a,2004.06.10.a,4553,, +2004.06.02,02-Jun-04,2004,Unprovoked,SOUTH AFRICA,Western Cape Province,Dyer Island,"Swimming, poaching perlemoen",Nkosinathi Mayaba,M,21,"FATAL, leg severed ",Y,15h00,White shark,"J. Smetherham & B. Ndenze, Cape Times",2004.06.02-Mayabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.02-Mayabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.02-Mayabai.pdf,2004.06.02,2004.06.02,4552,, +2004.05.29,29-May-04,2004,Unprovoked,USA,Texas,"Pirate's Beach, Galveston Island",Wading,Ryan Eckstrum,M,16,Puncture wounds on shin,N,19h45,0.9 m to 1.5 m [3' to 5'] shark,J. David,2004.05.29-Eckstrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.29-Eckstrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.29-Eckstrum.pdf,2004.05.29,2004.05.29,4551,, +2004.05.23.b,23-May-04,2004,Unprovoked,BRAZIL,Pernambuco,Piedade Beach,Swimming,Walmir Pereira da Silva,M,17,"Left hand, foot severed & left calf & arm bitten",N,14h30,Bull shark,"P. M. Lopes, GSAF; JC, 5/24/2004",2004.05.23.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.b-Silva.pdf,2004.05.23.b,2004.05.23.b,4550,, +2004.05.28,28-May-04,2004,Unprovoked,USA,California,"Salmon Creek, Sonoma County",Surfing,"Bernard 'Butch' Connor, Jr.",M,44,No injury,N,11h00,2.4 m to 3.7 m [8' to 12'] shark,"R. Collier, GSAF; B. Connor, Jr.",2004.05.28-Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.28-Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.28-Connor.pdf,2004.05.28,2004.05.28,4549,, +2004.05.23.a,23-May-04,2004,Unprovoked,USA,Florida,"St. Augustine, St. John's County",Boogie-boarding / swimming,male,M,9,Calf & foot lacerated,N,12h30,,News4Jax,2004.05.23.a - St.Augustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.a - St.Augustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.a - St.Augustine.pdf,2004.05.23.a,2004.05.23.a,4548,, +2004.05.22.c,22-May-04,2004,Invalid,USA,Florida,St. Augustine St. Johns County,Swimming,male,M,9,Single puncture wound on the foot,N,,Shark involvement not confirmed,"T. Jerome, GSAF",2004.05.22.c-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.c-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.c-male.pdf,2004.05.22.c,2004.05.22.c,4547,, +2004.05.22.b,22-May-04,2004,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",,Michaela Grogan,F,9,Foot bitten,N,Afternoon,,First Coast News,2004.05.22.b-Grogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.b-Grogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.b-Grogan.pdf,2004.05.22.b,2004.05.22.b,4546,, +2004.05.22.a,22-May-04,2004,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Recife",Wading,Naiane Barbosa Bringel,F,24,Hips & thighs bitten,N,16h00,,"P.M. Lopes, GSAF, JC, 5/23/2004",2004.05.22.a-Bringel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.a-Bringel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.a-Bringel.pdf,2004.05.22.a,2004.05.22.a,4545,, +2004.05.18,18-May-04,2004,Provoked,BAHAMAS,Abaco Islands,Green Turtle Cay,Free diving & spearfishing,Wolfgang Leander,M,63,Left forearm bitten PROVOKED INCIDENT,N,15h00,"1,5 m [5'] Caribbean reef shark (Carcharhinus perezi)","W. Leander, M. Levine, GSAF",2004.05.18-Leander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.18-Leander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.18-Leander.pdf,2004.05.18,2004.05.18,4544,, +2004.05.04,04-May-04,2004,Unprovoked,USA,Texas,Channel between South Padre Island & Padre Island National Seashore,Tandem surfing,Rachel Gore,M,28,"No injury, board bitten",N,16h30,"Mako shark, 1.8 m [6']",G. Gore & M. Sturdevant,2004.05.04-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.04-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.04-Gore.pdf,2004.05.04,2004.05.04,4543,, +2004.05.01,01-May-04,2004,Unprovoked,BRAZIL,Pernambuco,Piedade ,Swimming,Orlando Oscar da Silva,M,22,FATAL,Y,Afternoon,,"JCOnline, 5/2/2004",2004.05.01-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.01-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.01-Orlando.pdf,2004.05.01,2004.05.01,4542,, +2004.04.26,26-Apr-04,2004,Unprovoked,AUSTRALIA,New South Wales,"Latitude Reef, near Forster",Diving,Chai Griffin,M,,Puncture wounds on wrist,N,Morning,"Wobbegong shark, 1.2 m [4'] k","T. Peake, GSAF",2004.04.26-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.26-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.26-Griffin.pdf,2004.04.26,2004.04.26,4541,, +2004.04.22,22-Apr-04,2004,Boat,NEW ZEALAND,North Island,Motunui,Fishing,boat Live N Hope,,,"No injury to occupants, boat scratched by shark",N,,"White shark, 5.5 m [18']","T. Peake, GSAF",2004.04.22-boatLive'N-Hope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.22-boatLive'N-Hope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.22-boatLive'N-Hope.pdf,2004.04.22,2004.04.22,4540,, +2004.04.13.b,13-Apr-04,2004,Unprovoked, TONGA,Nuku'alofa,30 nautical miles offshore,Five men on makeshift raft after their 10 m fishing boat capsized and sank in rough seas. Survivors rescued after 7.5 hours in the water, male 2,M,,"Bitten on feet, legs, back & abdomen but survived. Survivors rescued after 7.5 hours in the water",Y,,small sharks,"New Zealand Herald, 4/15/2004",2004.04.13.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.b-Tonga.pdf,2004.04.13.b,2004.04.13.b,4539,, +2004.04.13.a,13-Apr-04,2004,Invalid, TONGA,Nuku'alofa,30 nautical miles offshore,Five men on makeshift raft after their 10 m fishing boat capsized and sank in rough seas. Survivors rescued after 7.5 hours in the water,male 1,M,,"He was was bitten on the arm by small sharks & died, but it was not clear if he died as result of the bite or death resulted from drowing",Y,,,"New Zealand Herald, 4/15/2004",2004.04.13.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.a-Tonga.pdf,2004.04.13.a,2004.04.13.a,4538,, +2004.04.07,07-Apr-04,2004,Unprovoked,USA,Hawaii,"Kahana Beach, Maui",Surfing,Willis McInnis,M,57,FATAL Severe wound to right thigh & calf,Y,07h08,Tiger shark,"L. Fujimoto, B. Perry & M. Tanji, Maui News ",2004.04.07-McInnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.07-McInnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.07-McInnis.pdf,2004.04.07,2004.04.07,4537,, +2004.04.05,05-Apr-04,2004,Unprovoked,SOUTH AFRICA,Western Cape Province,"Surfers' Corner, Muizenberg, False Bay",Surfing,J.P. Andrew,M,16,"Left leg lacerated, right leg severed above the knee ",N,14h00,5 m [16.5'] white shark,"L. Compagno & E. Ritter, GSAF",2004.04.05-JP-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.05-JP-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.05-JP-Andrew.pdf,2004.04.05,2004.04.05,4536,, +2004.04.04,04-Apr-04,2004,Invalid,USA,Hawaii,Velzyland,Surfing,Courtney Marcher,F,22,"Disappeared, surfboard washed ashore, marks on leash suggested shark involvement ",Y,,,"R. Antone, Honolulu Star Bulletin",2004.04.04-CourtneyMarcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.04-CourtneyMarcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.04-CourtneyMarcher.pdf,2004.04.04,2004.04.04,4535,, +2004.03.31.b,31-Mar-04,2004,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",,Todd Rapp,M,26,Right foot bitten,N,,,"D. Davies, Palm Beach Post, 6/3/2004",2004.03.31.b-Rapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.b-Rapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.b-Rapp.pdf,2004.03.31.b,2004.03.31.b,4534,, +2004.03.31.a,31-Mar-04,2004,Unprovoked,USA,Florida,"Stuart Rocks, Martin County",Surfing,Chance Dean,M,20,15 puncture wounds on foot,N,09h00,1.2 m [4'] bull shark,"T. Jerome, GSAF; Palm Beach Post, 4/1/2004",2004.03.31.a-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.a-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.a-Dean.pdf,2004.03.31.a,2004.03.31.a,4533,, +2004.03.29,29-Mar-04,2004,Unprovoked,BRAZIL,Pernambuco,Piedade Beach,Body boarding,Alcindo de Souza Leo Jnior,M,22,"Lower left leg bitten, surgically amputated",N,07h30,bull shark,"P.M. Lopes, GSAF; Diaro, 3/30/2004",2004.03.29-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.29-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.29-Souza.pdf,2004.03.29,2004.03.29,4532,, +2004.03.28,28-Mar-04,2004,Unprovoked,USA,Florida,"Pelican Beach Park, Satellite Beach, Brevard County",Surfing,male,M,,Heel bitten,N,15h00,bull shark,"J.D. Gallop, Florida Today",2004.03.28-PelicanBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.28-PelicanBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.28-PelicanBeach.pdf,2004.03.28,2004.03.28,4531,, +2004.03.27.b,27-Mar-04,2004,Unprovoked,REUNION,Saint-Benot,Spot de la gare,Surfing,Rmy Lorion,M,20,Right thigh bitten,N,17h00 or 17h40,2.5 m shark,"Clicanoo, le journal de l'Ile de la Runion",2004.03.27.b-Lorion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.b-Lorion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.b-Lorion.pdf,2004.03.27.b,2004.03.27.b,4530,, +2004.03.27.a,27-Mar-04,2004,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Swimming,Peter G. Hoffman,M,61,Minor lacerations & abrasions on forearm,N,08h30,,"T. Jerome, GSAF",2004.03.27.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.a-Hoffman.pdf,2004.03.27.a,2004.03.27.a,4529,, +2004.03.24,14-Mar-04,2004,Unprovoked,USA,Hawaii,Punaluu,Snorkeling,C. Mooney,F,,Lacerations to left foot,N,10h00,1.8 m [6'] shark,Hawaii Department of Land and Natural Resources,2004.03.24-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.24-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.24-Mooney.pdf,2004.03.24,2004.03.24,4528,, +2004.03.22,22-Mar-04,2004,Unprovoked,NEW ZEALAND,North Island,Te Arai Point,Spearfishing,Marc Fraser & Blair Fraser,M,,No injury,N,12h30,Bronze whaler shark,J. Edgar,2004.03.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.22-Fraser.pdf,2004.03.22,2004.03.22,4527,, +2004.03.16,16-Mar-04,2004,Unprovoked,USA,Hawaii,"Kalihiwai Beach, Kauai",Surfing,Bruce Orth,M,51,"No injury, board bitten",N,07h45,"Tiger shark, 2.4 m to 3 m [8' to 10'] ",The Hawaii Channel,2004.03.16-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.16-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.16-Orth.pdf,2004.03.16,2004.03.16,4526,, +2004.03.06,06-Mar-04,2004,Unprovoked,AUSTRALIA,Western Australia,5 nm off Cervantes,Spearfishing,Greg Pickering,M,47,Shin & calf bitten,N,,"Bronze whaler shark, 1.5 m [5'] ","T. Peake, GSAF; Sunday Times (Perth) 3/7/2004, p.19",2004.03.06-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.06-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.06-Pickering.pdf,2004.03.06,2004.03.06,4525,, +2004.02.29,29-Feb-04,2004,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Recife",Swimming,Edimilson Henrique dos Santos,M,29,"FATAL, right thigh & hip bitten ",Y,15h00,,"P. M. Lopez, GSAF; Northern Territory News, 3/2/2004, p.11",2004.02.29-dosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.29-dosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.29-dosSantos.pdf,2004.02.29,2004.02.29,4524,, +2004.02.26,26-Feb-04,2004,Unprovoked,NEW ZEALAND,"South Island, near Karitane north of Dunedin",South Beach,Surfing,Chris Blair,M,15,Thigh lacerated,N,19h00,2 m [6.75'] sevengill shark,"R.D. Weeks, GSAF; NZ Herald",2004.02.26-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.26-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.26-Blair.pdf,2004.02.26,2004.02.26,4523,, +2004.02.21,21-Feb-04,2004,Unprovoked,AUSTRALIA,New South Wales,"Taree, Old Bar Beach",Swimming,male,M,,Three toes lacerated,N,,,Manning River Times,2004.02.21-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.21-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.21-Taree.pdf,2004.02.21,2004.02.21,4522,, +2004.02.16,16-Feb-04,2004,Invalid,AUSTRALIA,Queensland,"Fido's Reef, 300 m east of Cook Island. Cook Island is 2 miles from Tweed Heads, Gold Coast",Free diving & spearfishing,Mark Bryant,M,31,"Disappeared while diving, may have suffered shallow water blackout. Searchers observed large tiger sharks & whaler sharks in the area",N,11h00,Shark involvement not confirmed,"news.com.au; Northern Territory News, 2/18/2004, p.10; Sunday Territorian, 2/22/2004, p.9; ",2004.02.16-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.16-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.16-Bryant.pdf,2004.02.16,2004.02.16,4521,, +2004.02.14,14-Feb-04,2004,Unprovoked,EGYPT,,"Coral Bay, Sharm-el-Sheikh",Snorkeling, male,M,,FATAL,Y,,,divernet.com,2004.02.14-Sinai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.14-Sinai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.14-Sinai.pdf,2004.02.14,2004.02.14,4520,, +2004.02.11,11-Feb-04,2004,Unprovoked,AUSTRALIA,New South Wales,Caves Beach,Snorkeling,Luke Tresoglavic,M,22,Leg bitten,N,,"60 cm [23.6""] blind or brown shark","T. Peake, GSAF",2004.02.11-Tresoglavic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.11-Tresoglavic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.11-Tresoglavic.pdf,2004.02.11,2004.02.11,4519,, +2004.01.25,25-Jan-04,2004,Unprovoked,AUSTRALIA,Western Australia,Binningup,Scuba diving,Allan Oppert,M,46,Left leg bitten,N,11h05,4 m to 5 m [13' to 16.5'] white shark,"T. Peake, GSAF",2004.01.25-Oppert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.25-Oppert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.25-Oppert.pdf,2004.01.25,2004.01.25,4518,, +2004.01.23,23-Jan-04,2004,Unprovoked,URUGUAY,Rocha,Ensenada de la Coronilla,Surfing,Marcos Gonzlez Selayaran ,M,21,Puncture wounds to dorsum of right foot,N,,Possibily a 1.5 to 2 m sandtiger shark,C.M. Prigioni el al,2004.01.23-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.23-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.23-Uruguay.pdf,2004.01.23,2004.01.23,4517,, +2004.01.22,22-Jan-04,2004,Invalid,NEW ZEALAND,Northlands,90 Mile Beach,Boogie boarding,male,M,,"No injury, swim fin damaged",N,,Shark involvement doubtful,The Northlands,2004.01.22.R-90MileBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.22.R-90MileBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.22.R-90MileBeach.pdf,2004.01.22,2004.01.22,4516,, +2004.01.21.b,21-Jan-04,2004,Unprovoked,VENEZUELA,Anzoategui,"Playa Colorada Beach, Mochima National Park, only 200 m west of Santa Cruz Beach",Swimming,Stefan Moeller,M,,Lower back & hand bitten,N,14h30,"Bull shark, 1.65 m [5'5""] was speared & killed","D. Ramierez, GSAF ",2004.01.21.b-Moeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.b-Moeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.b-Moeller.pdf,2004.01.21.b,2004.01.21.b,4515,, +2004.01.21.a,21-Jan-04,2004,Unprovoked,VENEZUELA,Anzoategui,"Santa Cruz Beach, Mochima National Park, 250 km from Caracas",Spearfishing,Alside Raphael Morales Gonzalez,M,40,Right leg bitten,N,11h00,"Bull shark, 132-kg [291-lb] ","D. Ramierez, GSAF ",2004.01.21.a-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.a-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.a-Gonzalez.pdf,2004.01.21.a,2004.01.21.a,4514,, +2004.01.15.R,Reported 15-Jan-2004 ,2004,Boat,SOUTH AFRICA,KwaZulu-Natal,Ballito,Surf skiing,Dave Hamilton-Brown & Ant Rowan,M,,"No injury to occupants, stern of ski bitten",N,,"Mako shark, 3 m to 4 m [10' to 13'] ",surfski.co.nz,2004.01.15.R-Ballito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.15.R-Ballito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.15.R-Ballito.pdf,2004.01.15.R,2004.01.15.R,4513,, +2004.01.12,12-Jan-04,2004,Unprovoked,AUSTRALIA,New South Wales,Bushrangers Pass at Bass Point,Diving,Bruce Flynn & his dive buddy,M,,"No injury, swim fin ripped off",N,Midday,"Raggedtooth shark, 3.5 m [11.5'] ","T. Peake, GSAF",2004.01.12-Flynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.12-Flynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.12-Flynn.pdf,2004.01.12,2004.01.12,4512,, +2004.01.07,07-Jan-04,2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"West Beach, Port Alfred",Surfing,Alan Horsfield,M,22,Foot lacerated,N,,Raggedtooth shark,"A. Cobb & E. Ritter, GSAF",2004.01.07-Horsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.07-Horsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.07-Horsfield.pdf,2004.01.07,2004.01.07,4511,, +2004.01.03.b,03-Jan-04,2004,Invalid,NEW ZEALAND,North Island,"Whiritoa, Eastern Cormandel",Kayaking (returning from spearfishing),a male from Waikato,M,,"No injury, no attack, shark took fish from back of kayak",N,Afternoon,,"R.D. Weeks, GSAF; Waikto Times, 1/4/2004 ",2004.01.03.b-WaikatoMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.b-WaikatoMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.b-WaikatoMale.pdf,2004.01.03.b,2004.01.03.b,4510,, +2004.01.03.a,03-Jan-04,2004,Sea Disaster,EGYPT,Sinai Peninsula,Off Sharm El-Sheikh,Air disaster. Flash Airlines Boeing 737 crashed into the Red Sea,135 passengers & 13 crew,,,"No survivors, sharks scavenged on remains",Y,03h00,,"Scotsman, 1/4/2004",2004.01.03.a-RedSeaAirDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.a-RedSeaAirDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.a-RedSeaAirDisaster.pdf,2004.01.03.a,2004.01.03.a,4509,, +2004.00.00,2004,2004,Unprovoked,AUSTRALIA,Western Australia,Redgate Beach,Surfing,Jack Carlsen,M,,No inury,N,Morning,,J. Carlsen,2004.00.00-Carlsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.00.00-Carlsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.00.00-Carlsen.pdf,2004.00.00,2004.00.00,4508,, +2003.12.31,31-Dec-03,2003,Boat,SOUTH AFRICA,KwaZulu-Natal,Salt Rock ,,skiboat,,,No injury to occupants,N,,Shortfin mako shark,Natal Sharks Board,2003.12.31-SaltRock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.31-SaltRock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.31-SaltRock.pdf,2003.12.31,2003.12.31,4507,, +2003.12.26,26-Dec-03,2003,Invalid,USA,Florida,"Miami, Dade County",Swimming,Richard Hansell,M,28,Knee lacerated,N,,Questionable Incident,"The Times (London), 12/27/2003, p.4",2003.12.26-Hansell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.26-Hansell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.26-Hansell.pdf,2003.12.26,2003.12.26,4506,, +2003.12.13.b,13-Dec-03,2003,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Swimming,male,M,13,Foot bitten,N,13h15,,"Florida Today (Melbourne), 12/14/2003",2003.12.13.b-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.b-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.b-boy.pdf,2003.12.13.b,2003.12.13.b,4505,, +2003.12.13.a,13-Dec-03,2003,Unprovoked,NEW ZEALAND,Cook Islands,Pukapuka Northern Group,Swimming / shipwreck,Teta Vaotiare,M,45,FATAL,Y,Night,,R. Weeks; Cook Islands Government News Release,2003.12.13.a-Vaotiare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.a-Vaotiare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.a-Vaotiare.pdf,2003.12.13.a,2003.12.13.a,4504,, +2003.12.08,08-Dec-03,2003,Unprovoked,AUSTRALIA,Victoria,Collendina Beach east of Ocean Grove,Surfing amid a shoal of sharks,Sam Myer,M,36,"No inury, shark caught leash attached to surfer's ankle & towed him a short distance",N,09h30,,"J. Eager, scubaradio.com",2003.12.08-Myer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.08-Myer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.08-Myer.pdf,2003.12.08,2003.12.08,4503,, +2003.11.30.b,30-Nov-03,2003,Unprovoked,AUSTRALIA,Western Australia,Perth? (Margaret River District),Swimming,Shane Scott,M,,"After biting Halverson, it bit Scott's thigh",N,11h30,"Wobbegong shark, 1.2 m [4'] ","J. Eager, scubaradio.com",2003.11.30.b-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.b-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.b-Scott.pdf,2003.11.30.b,2003.11.30.b,4502,, +2003.11.30.a,30-Nov-03,2003,Unprovoked,AUSTRALIA,Western Australia,Perth? (Margaret River District),Swimming,Josh Halverson ,M,,Hand & foot bitten,N,11h30,"Wobbegong shark, 1.2 m [4'] ","J. Eager, scubaradio.com",2003.11.30.a-Halverson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.a-Halverson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.a-Halverson.pdf,2003.11.30.a,2003.11.30.a,4501,, +2003.11.27,27-Nov-03,2003,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sodwana,Spearfishing,Seldon Jee,M,21,"Presumed FATAL, severed hand recovered",Y,>08h00,"Tiger shark, 4 m [13'] ?","E. Ritter, GSAF",2003.11.27-Jee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.27-Jee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.27-Jee.pdf,2003.11.27,2003.11.27,4500,, +2003.11.22,22-Nov-03,2003,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Taylor Trumbauer,F,35,Severe abrasion to left lateral calf,N,15h30,4' shark,T. Trumbauer,2003.11.22-Trumbauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.22-Trumbauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.22-Trumbauer.pdf,2003.11.22,2003.11.22,4499,, +2003.11.12.b,12-Nov-03,2003,Unprovoked,INDIA,Tamilnadu,"Mahabalipuram beach, 37 km south of Chennai",Swimming or surfing,Mark Moquin,M,35,Left index finger lacerated,N,,Tiger shark?," P.C.V. Kumar; A. Patil, GSAF ",2003.11.12-Moquin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12-Moquin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12-Moquin.pdf,2003.11.12.b,2003.11.12.b,4498,, +2003.11.12.a,12-Nov-03,2003,Unprovoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Surfing,Josh Crawford,M,24,Lacerations to hand,N,,,"S. Petersohn, GSAF",2003.11.12.a-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12.a-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12.a-NV-Crawford.pdf,2003.11.12.a,2003.11.12.a,4497,, +2003.11.06.b,06-Nov-03,2003,Unprovoked,EGYPT,Sinai Peninsula,"Shaab Mahmud, Ras Mohamed Park",Snorkeling,Igor Fedorov ,M,,Hand/elbow injured,N,,2.5 oceanic whitetip shark,N. Pankratov,2003.11.06.b-Fedorov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.b-Fedorov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.b-Fedorov.pdf,2003.11.06.b,2003.11.06.b,4496,, +2003.11.06.a,06-Nov-03,2003,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Karridene,Surf skiing,2 people on ski,,,"No injury to occupants, hull of ski bitten",N,,White shark,Natal Sharks Board,2003.11.06.a-Karridene.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.a-Karridene.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.a-Karridene.pdf,2003.11.06.a,2003.11.06.a,4495,, +2003.11.01,01-Nov-03,2003,Unprovoked,AUSTRALIA,New South Wales,"Seal Rocks, north of Newcastle",Standing,male,M,,Minor lacerations to leg & foot,N,Dusk,,"The Sun; 11/2/2003, p.9",2003.11.01-SealRocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.01-SealRocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.01-SealRocks.pdf,2003.11.01,2003.11.01,4494,, +2003.11.00,Nov-03,2003,Provoked,PANAMA,Pearl Islands,,Spearfishing,Richard Hatch,M,,Left forearm bitten PROVOKED INCIDENT,N,,"Nurse shark, 60 cm to 90 cm [2' to 3'] ","J. Eager, scubaradio.com",2003.11.00-RichardHatch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.00-RichardHatch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.00-RichardHatch.pdf,2003.11.00,2003.11.00,4493,, +2003.10.31.c,31-Oct-03,2003,Unprovoked,USA,Florida,"Ponte Vedra Beach, St. Johns County",Surfing,Adam Gray,M,18,Left foot (sole) bitten,N,15h00,1.2 m to 1.5 m [4' to 5'] shark,"D. Dixon, Florida Times-Union, 11/8/2003 ",2003.10.31.c-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.c-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.c-Gray.pdf,2003.10.31.c,2003.10.31.c,4492,, +2003.10.31.b,31-Oct-03,2003,Unprovoked,AUSTRALIA,New South Wales,"Lighthouse Beach, Seal Rocks",Surfing,Nick Anthony,M,22,Left ankle & foot lacerated,N,17h30,"1.5 m [5'] shark, either a bronze whaler or a grey nurse shark",ABC News Australia,2003.10.31.b-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.b-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.b-Anthony.pdf,2003.10.31.b,2003.10.31.b,4491,, +2003.10.31.a,31-Oct-03,2003,Unprovoked,USA,Hawaii,"Tunnels surf break off Makua Beach, Kaua'i",Surfing,Bethany Hamilton,F,13,Left arm severed below shoulder,N,07h30,"Tiger shark, 14' "," E. Ritter, GSAF ",2003.10.31.a-BethanyHamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.a-BethanyHamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.a-BethanyHamilton.pdf,2003.10.31.a,2003.10.31.a,4490,, +2003.10.27,27-Oct-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jeffrey Hauser,M,46,Laceration on right ankle & heel,N,12h20,,"S. Petersohn, GSAF",2003.10.27-Hauser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.27-Hauser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.27-Hauser.pdf,2003.10.27,2003.10.27,4489,, +2003.10.24,24-Oct-03,2003,Invalid,USA,Hawaii,Honolua Bay,Snorkeling,Don Keener,M,56,Left forearm lacerated,N,12h20,Shark involvement not confirmed,"Timothy Hurley, Advertiser Maui County Bureau",2003.10.24-DonKeener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.24-DonKeener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.24-DonKeener.pdf,2003.10.24,2003.10.24,4488,, +2003.10.14,14-Oct-03,2003,Unprovoked,USA,Florida,Near Patrick Air Force Base Brevard County,Surfing,male,M,19,Foot bitten,N,--,1.2 m [4'] shark,WFTV.com,2003.10.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.14-male.pdf,2003.10.14,2003.10.14,4487,, +2003.10.06,06-Oct-03,2003,Invalid,USA,Florida,Palm Beach?,Swimming to shore from boat or kayak,male,M,,"Fatal, drowning or scavenging. Two hours later his body, with bite marks, washed ashore.",Y,--,,"E. Pace, FSAF",2003.10.06-NV-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.06-NV-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.06-NV-PalmBeach.pdf,2003.10.06,2003.10.06,4486,, +2003.10.05.e,05-Oct-03,2003,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Surfing,female,F,,Minor puncture wounds in hand,N,15h00,,"J. Eager, scubaradio.com",2003.10.05.e-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.e-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.e-female.pdf,2003.10.05.e,2003.10.05.e,4485,, +2003.10.05.d,05-Oct-03,2003,Unprovoked,USA,Florida,"Stuart Park Beach, Martin County",Surfing,male,M,18,5 to 6 lacerations on right foot & ankle,N,14h30,,"Vero Beach Press Journal (FL) 10/6/2003; Stuart News, 10/6/2003",2003.10.05.d-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.d-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.d-surfer.pdf,2003.10.05.d,2003.10.05.d,4484,, +2003.10.05.c,05-Oct-03,2003,Provoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Surfing,Rick Eckstein,M,30,Left ankle bitten when he stepped on the shark PROVOKED INCIDENT,N,14h00,,"S. Petersohn, GSAF",2003.10.05.c-Eckstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.c-Eckstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.c-Eckstein.pdf,2003.10.05.c,2003.10.05.c,4483,, +2003.10.05.b,05-Oct-03,2003,Unprovoked,USA,Florida,"Crawford Road beach approach at New Smyrna Beach, Volusia County",Sitting on surfboard,John Demartino,M,50,Left foot bitten,N,12h02,,"S. Petersohn, GSAF; J. Eager, scubaradio.com",2003.10.05.b-DeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.b-DeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.b-DeMartino.pdf,2003.10.05.b,2003.10.05.b,4482,, +2003.10.05.a,05-Oct-03,2003,Unprovoked,USA,Hawaii,"Cove Beach / Kalama Beach, Kihei, Maui",Wading near a fishing net,Clara Alo,F,41,"Left thigh abraded, right knee and right index finger injured",N,12h55,"1.2 m [4'] ""grey-colored shark""","G. Kubota, Star Bulletin",2003.10.05.a-Clara-Alo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.a-Clara-Alo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.a-Clara-Alo.pdf,2003.10.05.a,2003.10.05.a,4481,, +2003.09.29,29-Sep-03,2003,Unprovoked,FIJI,Taveuni,Welagi coastal reef off Drekeniwai,Wading to shore from his boat,Epeli Mate,M,40,FATAL abdomen bitten,Y,Night,,"R. Weeks, GSAF; Fiji Times, 10/2/2003; Fiji TV",2003.09.29-Mate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.29-Mate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.29-Mate.pdf,2003.09.29,2003.09.29,4480,, +2003.09.28,28-Sep-03,2003,Unprovoked,USA,Florida,"North Hutchinson Island, St. Lucie Couny",Surfing,Stephen Johnson,M,16,Arm lacerated,N,07h45,,"7News Online; Vero Beach Press Journal, Fort Pierce Tribune, Stuart News, 10/1/2003",2003.09.28-S.Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.28-S.Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.28-S.Johnson.pdf,2003.09.28,2003.09.28,4479,, +2003.09.21,21-Sep-03,2003,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Jimmy Arnold,M,21,Left foot bitten,N,11h45,,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/22/2003, p.1C",2003.09.21-Jimmy-Arnold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.21-Jimmy-Arnold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.21-Jimmy-Arnold.pdf,2003.09.21,2003.09.21,4478,, +2003.09.19,19-Sep-03,2003,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,David Cales,M,19,Left heel lacerated,N,16h30,,"S. Petersohn, GSAF",2003.09.19-DavidCales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.19-DavidCales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.19-DavidCales.pdf,2003.09.19,2003.09.19,4477,, +2003.09.17,17-Sep-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,A.B.,M,17,3 puncture wounds on left foot,N,14h00,,"S. Petersohn, GSAF",2003.09.17-AB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.17-AB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.17-AB.pdf,2003.09.17,2003.09.17,4476,, +2003.09.14.c,14-Sep-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Williams,M,30,Left foot: lacerations on heel and sole,N,16h14,3' shark,"S. Petersohn, GSAF",2003.09.14.c-JasonWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.c-JasonWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.c-JasonWilliams.pdf,2003.09.14.c,2003.09.14.c,4475,, +2003.09.14.b,14-Sep-03,2003,Boat,SOUTH AFRICA,Western Cape Province,Melkbosstrand,Fishing ,"inflatable boat, occupants: Rudolf Bokelmann and Sakkie Vermeulen",,36 & 26,"No injury to occupants, shark bit boat",N,09h40,2 m cow shark,"E. Ritter, GSAF ",2003.09.14.b-CowShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.b-CowShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.b-CowShark.pdf,2003.09.14.b,2003.09.14.b,4474,, +2003.09.14.a,14-Sep-03,2003,Invalid,USA,Florida,"Bathtub Reef Beach, Martin County",Swimming,female,F,8 or 10,Puncture wounds on inner thigh,N,13h30,Shark involvement doubtful,"Fort Pierce Tribune, 9/15/2003",2003.09.14.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.a-girl.pdf,2003.09.14.a,2003.09.14.a,4473,, +2003.09.13.b,13-Sep-03,2003,Unprovoked,USA,Florida,"Daytona Beach, Volusia County ",Body boarding,Aaron Edelson,M,18,Left calf avulsion,N,17h11,6' shark,"S. Petersohn, GSAF; News Journal Online; Orlando Sentinel, 9/15/2003, p.B2; R. Weiss, Daytona Beach News Journal, 9/15/2001, p.3C",2003.09.13.b-Edelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.b-Edelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.b-Edelson.pdf,2003.09.13.b,2003.09.13.b,4472,, +2003.09.13.a,13-Sep-03,2003,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County","Standing, stepped on shark",Joe Davis,M,15,Ankle lacerated,N,Afternoon,7' shark,"P. Caston, Post & Courier",2003.09.13.a-JoeDavis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.a-JoeDavis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.a-JoeDavis.pdf,2003.09.13.a,2003.09.13.a,4471,, +2003.09.12,12-Sep-03,2003,Unprovoked,SOUTH AFRICA,Western Cape Province,Near the wreck of the Kakapo off Noordhoek Beach,Body boarding,David Bornman,M,19,"FATAL, left thigh, buttocks, back of spine, abdomen & chest bitten ",Y,14h30,White shark,"E. Ritter, GSAF; http://www.wavescape.co.za/top_bar/locals_only9.htm ",2003.09.12-Bornman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.12-Bornman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.12-Bornman.pdf,2003.09.12,2003.09.12,4470,, +2003.09.00,Sep-03,2003,Unprovoked,USA,Florida,"Boca Grande, Lee County",Wade-fishing,male,M,,2 lacerations on each side of Achilles tendon,N,,,"B. Stout, News-Press, 9/24/2003",2003.09.00-wade-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.00-wade-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.00-wade-fisherman.pdf,2003.09.00,2003.09.00,4469,, +2003.08.29,29-Aug-03,2003,Provoked,USA,Texas,1.5 miles off Surfside ,Fishing,Saul Gonzalez,M,,PROVOKED INCIDENT Hooked shark pulled onboard bit his arm ,N,12h20,1.2 m [4'] bull shark,http://www.dfw.com/mld/startelegram/news/state/6656592.htm?1c,2003.08.29-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.29-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.29-Gonzalez.pdf,2003.08.29,2003.08.29,4468,, +2003.08.19,19-Aug-03,2003,Unprovoked,USA,California,"Avila Beach, San Luis Obispo County","Swimming, wearing black wetsuit & swim fins",Deborah Franzman,F,50,"FATAL Hip & upper thigh bitten, femoral artery severed ",Y,08h15,4.5 m to 5.5 m [15' to 18'] white shark,"R. Collier, GSAF ",2003.08.19-Franzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.19-Franzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.19-Franzman.pdf,2003.08.19,2003.08.19,4467,, +2003.08.12,12-Aug-03,2003,Invalid,USA,California,"Venice Beach, Los Angeles County",Swimming,male,M,31,Left ankle lacerated,N,00h30,Shark involvement not confirmed,ABC News,2003.08.12-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.12-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.12-VeniceBeach.pdf,2003.08.12,2003.08.12,4466,, +2003.08.08,08-Aug-03,2003,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Sitting on surfboard,Joseph Krone,M,16,"No injury, wetsuit torn & board bitten",N,08h00,3.5 m [11.5'] white shark,"E. Ritter, GSAF http://sport.iafrica.com/news/261271.htm ",2003.08.08-Krone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.08-Krone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.08-Krone.pdf,2003.08.08,2003.08.08,4465,, +2003.07.26.R,Reported 26-Jul-2003,2003,Unprovoked,AUSTRALIA,Northern Territory,Nhulunbuy,Surf skiing,Martin Gunda,M,37,"No injury, flung into water when shark bit rudder of ski",N,,,"Northern Territory News, 7/26/2003, p.1",2003.07.26.R-Gunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.26.R-Gunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.26.R-Gunda.pdf,2003.07.26.R,2003.07.26.R,4464,, +2003.07.20,20-Jul-03,2003,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,John McGovern,M,18,Laceration to little finger of right hand,N,15h45,,"S. Petersohn, GSAF",2003.07.20-McGovern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.20-McGovern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.20-McGovern.pdf,2003.07.20,2003.07.20,4463,, +2003.07.15,15-Jul-03,2003,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,C.K.,F,15,Heel & sole of left foot,N,14h37,,"S. Petersohn, GSAF",2003.07.15-CK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.15-CK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.15-CK.pdf,2003.07.15,2003.07.15,4462,, +2003.07.09,10-Jul-03,2003,Unprovoked,BAHAMAS,Abaco Islands,Bakers Bay,Spearfishing,Richard Horton,M,58,Right thigh bitten,N,14h30,Unidentified species,"M. Levine, GSAF; Associated Press, 7/12/03",2003.07.09-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.09-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.09-Horton.pdf,2003.07.09,2003.07.09,4461,, +2003.07.05.b,05-Jul-03,2003,Provoked,USA,Florida,"Near New Smyrna Jetty, Volusia County","Walking, carrying surfboard & stepped on shark",P.L.,M,10,3 puncture wounds on right lateral ankle PROVOKED INCIDENT,N,10h07,2' shark,"S. Petersohn, GSAF",2003.07.05.b-PL.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.b-PL.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.b-PL.pdf,2003.07.05.b,2003.07.05.b,4460,, +2003.07.05.a,05-Jul-03,2003,Unprovoked,USA,Florida,"Canova Beach, Brevard County",Surfing,James Ingram,M,21,Left foot bitten,N,,1.5 m to 1.8 m [5' to 6'] shark,Vero Beach Press Journal (FL) 7/9/2003,2003.07.05.a-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.a-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.a-Ingram.pdf,2003.07.05.a,2003.07.05.a,4459,, +2003.07.04,04-Jul-03,2003,Unprovoked,BAHAMAS,Abaco Islands,10 miles west of Walkers Cay,Spearfishing,Benjamin Brown,M,39,Left calf bitten,N,14h45,2.1 m [7'] bull shark,"Associated Press, 7/12/03; Palm Beach Post, 7/7/2003 ",2003.07.04-BenBrown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.04-BenBrown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.04-BenBrown.pdf,2003.07.04,2003.07.04,4458,, +2003.07.00.c,Jul-03,2003,Unprovoked,USA,Florida,"Fort Lauderdale, Broward County",Spearfishing,Mark Marks,M,,Laceration to toe,N,,8' great hammerhead shark,M. Marks,2003.07.00.c-MarkMarks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.c-MarkMarks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.c-MarkMarks.pdf,2003.07.00.c,2003.07.00.c,4457,, +2003.07.00.b,Late Jul-2003,2003,Unprovoked,FRENCH POLYNESIA,Society Islands,Moorea,Spearfishing,male,M,,Leg bitten,N,,,Noonsite.com,2003.07.00.b-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.b-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.b-Moorea.pdf,2003.07.00.b,2003.07.00.b,4456,, +2003.07.00.a,Jul-03,2003,Unprovoked,NEW ZEALAND,Cook Islands,Beveridge Reef,Snorkeling,Allen --,M,,Chest & buttocks bitten,N,,Grey reef shark,R. & J. Zorro; Noonsite.com,2003.07.00.a-BeveridgeReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.a-BeveridgeReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.a-BeveridgeReef.pdf,2003.07.00.a,2003.07.00.a,4455,, +2003.06.30,30-Jun-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,E.W.,M,17,Right foot & toes lacerated,N,13h53,Unidentified species,"S. Petersohn, GSAF",2003.06.30-EW..pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.30-EW..pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.30-EW..pdf,2003.06.30,2003.06.30,4454,, +2003.06.26,26-Jun-03,2003,Unprovoked,USA,Florida,St Augustine Beach. St. Johns County,Surfing,Shelby Tostevin,M,15,Ankle lacerated,N,Morning,106 cm [3.5'] shark,Local6.com,2003.06.26-Tostevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.26-Tostevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.26-Tostevin.pdf,2003.06.26,2003.06.26,4453,, +2003.06.24.c,24-Jun-03,2003,Unprovoked,BRAZIL,Pernambuco,"Piedade, Recife",,Moses Nunes de Albuquerque Junior,M,,FATAL,Y,,,"JCOnline, 6/23/2012",2003.06.24.c-MosesAlbuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.c-MosesAlbuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.c-MosesAlbuquerque.pdf,2003.06.24.c,2003.06.24.c,4452,, +2003.06.24.b,24-Jun-03,2003,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Standing,Hannah Hathaway,F,12,2 lacerations to the thigh,N,Afternoon,small brown shark,"Florida Today, 6/26/ 2003; WKMG Local 6",2003.06.24.b-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.b-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.b-Hathaway.pdf,2003.06.24.b,2003.06.24.b,4451,, +2003.06.24.a,24-Jun-03,2003,Unprovoked,USA,Hawaii,"Makua Beach, Oahu",Swimming with pod of dolphins,John Marrack,M,60,Right foot bitten,N,08h00,3.7 m to 4.3 m [12' to 14'] shark,Honolulu Advertiser,2003.06.24.a-Marrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.a-Marrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.a-Marrack.pdf,2003.06.24.a,2003.06.24.a,4450,, +2003.06.22,22-Jun-03,2003,Unprovoked,USA,Johnston Atoll,,Swimming,George Fahey,M,51,Left leg bitten,N,Afternoon,Unidentified species,"H. Edwards, GSAF; The Hawaai Channel",2003.06.22-Fahey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.22-Fahey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.22-Fahey.pdf,2003.06.22,2003.06.22,4449,, +2003.06.19,19-Jun-03,2003,Unprovoked,USA,North Carolina,"Masonboro Island, New Hanover County",Surfing ,Chris White,M,33,Hand bitten ,N,Late afternoon,"""sand shark""","C. Creswell, GSAF",2003.06.19-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.19-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.19-White.pdf,2003.06.19,2003.06.19,4448,, +2003.06.08,08-Jun-03,2003,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,J.D.,,15,6 puncture wounds to left ankle,N,11h55,,"S. Petersohn, GSAF",2003.06.08-JD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.08-JD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.08-JD.pdf,2003.06.08,2003.06.08,4447,, +2003.06.00,Jun-03,2003,Invalid,USA,South Carolina,"Pawleys Island, Georgetown County",Swimming,female,F,22,Foot lacerated,N,,Shark involvement not confirmed,J. Eager,2003.06.00-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.00-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.00-PawleysIsland.pdf,2003.06.00,2003.06.00,4446,, +2003.05.25,25-May-03,2003,Unprovoked,USA,Florida,"Coral Cove Park, Jupiter Inlet, Palm Beach County",Surfing,"Kris ""Cutty"" Kildosher",M,18,Left foot lacerated,N,10h00,,Local 6 News,2003.05.25-Kildosher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.25-Kildosher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.25-Kildosher.pdf,2003.05.25,2003.05.25,4445,, +2003.05.14,14-May-03,2003,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County ",Wading,Joshua Brust,M,22,Left foot bitten,N,13h23,3' to 5' shark,"S. Petersohn, GSAF; Orlando Sentinel, 5/16;2003, p.C3",2003.05.14-Brust.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.14-Brust.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.14-Brust.pdf,2003.05.14,2003.05.14,4444,, +2003.05.10,10-May-03,2003,Unprovoked,USA,Hawaii,Between Magic Sands Beach and Kahaluu Beach on the Kona coast,Swimming,Koa Paulo,M,20,Right calf & heel bitten,N,11h45,1.8 m [6'] reef shark - or a 2.1 m to 2.4 m [7' to 8'] grey-colored shark,WestHawaiiToday.com,2003.05.10-Paulo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.10-Paulo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.10-Paulo.pdf,2003.05.10,2003.05.10,4443,, +2003.05.07,07-May-03,2003,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Gerald Gaskins,M,34,Multiple bites to foot after jumping off surfboard onto shark PROVOKED INCIDENT,N,11h40,4' to 5' shark,"S. Petersohn, GSAF; M. I. Johnson, Daytona Beach News Journal. 5/8/2003, p.1C; Tampa Tribune, 5/8/2003",2003.05.07-Gaskins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.07-Gaskins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.07-Gaskins.pdf,2003.05.07,2003.05.07,4442,, +2003.05.03,03-May-03,2003,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Walking,A.J.,F,9,Laceration to right lower leg,N,12h20,,"S. Petersohn, GSAF",2003.05.03-AJ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.03-AJ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.03-AJ.pdf,2003.05.03,2003.05.03,4441,, +2003.05.00,May-03,2003,Unprovoked,PHILIPPINES,Baatan,Limay,,a resident of Barangay Luz,,,Arm severed,N,,White shark,"D. Cervantes, Star",2003.05.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.00-Philippines.pdf,2003.05.00,2003.05.00,4440,, +2003.04.26,26-Apr-03,2003,Provoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Killing sharks,male,M,,Shallow lacerations to left thigh PROVOKED INCIDENT,N,,,"P.M. Lopes, GSAF",2003.04.26-Rio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.26-Rio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.26-Rio.pdf,2003.04.26,2003.04.26,4439,, +2003.04.25,25-Apr-03,2003,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming ,Felipe Tavares Marinho,M,16,Bitten on finger,N,18h30,,Web ProWire,2003.04.25-Marinho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.25-Marinho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.25-Marinho.pdf,2003.04.25,2003.04.25,4438,, +2003.04.23.b,23-Apr-03,2003,Unprovoked,BRAZIL,Pernambuco,"Pau Amarelo Beach, Paulista District (17 km from Recife)",Surfing,Tiago Augusto da Silva Machado,M,17,"Hand & foot lacerated, lower left leg severely bitten, necessitating surgical amputation",N,17h00,Bull shark,"P. M. Lopes, GSAF; N. Souza da Silva; JC, 4/24/2003",2003.04.23.b-Machado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.b-Machado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.b-Machado.pdf,2003.04.23.b,2003.04.23.b,4437,, +2003.04.23.a,23-Apr-03,2003,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming,male,M,7,Right hand lacerated,N,,,Local 6 News,2003.04.23.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.a-boy.pdf,2003.04.23.a,2003.04.23.a,4436,, +2003.04.21.b,21-Apr-03,2003,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County ",Surfing,Ralph Sammis,M,36,Right leg bitten,N,14h30,Unidentified species,"Local 6 News; St. Petersburg Times, 4/22/2003; The Eagle, 4/24/2003 ",2003.04.21.b-Sammis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.b-Sammis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.b-Sammis.pdf,2003.04.21.b,2003.04.21.b,4435,, +2003.04.21.a,21-Apr-03,2003,Unprovoked,USA,Florida,"Shepard Park, Cocoa Beach, Brevard County ",Surfing,male,M,17,Survived,N,13h30,Unidentified species,"Orlando Sentinel, 4/22/2003, B3",2003.04.21.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.a-surfer.pdf,2003.04.21.a,2003.04.21.a,4434,, +2003.04.20.c,20-Apr-03,2003,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Tommy Ryan,M,30,Left foot bitten,N,Afternoon,Unidentified species,"Orlando Sentinel, 4/22/2003, B3 + ",2003.04.20.c-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.c-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.c-Ryan.pdf,2003.04.20.c,2003.04.20.c,4433,, +2003.04.20.b,20-Apr-03,2003,Unprovoked,USA,Florida,"Sunglow Pier, Daytona Beach Shores, Volusia County",Surfing,Jeff Albright,M,23,Small lacerations to foot,N,09h00,0.9 m to 1.2 m [3' to 4'] shark,"S. Petersohn, GSAF; Local6.com; Daytona Beach News-Journal . 4/21/2003, p.1C",2003.04.20.b-Albright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.b-Albright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.b-Albright.pdf,2003.04.20.b,2003.04.20.b,4432,, +2003.04.20.a,20-Apr-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Stephen Flowers,M,18,Left ankle bitten or right foot,N,14h20,Unidentified species,"S. Petersohn, GSAF; Local 6 News; S. Frederick, Daytona Beach News Journal, 4/28/2003, p.1C; Orlando Sentinel, 4/22/2003, p.B3",2003.04.20.a-StephenFlowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.a-StephenFlowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.a-StephenFlowers.pdf,2003.04.20.a,2003.04.20.a,4431,, +2003.04.19,19-Apr-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County ",Jumping,S.D.,M,11,Left foot bitten,N,13h20,A small shark,"S. Petersohn, GSAF; S. Frederick, Daytona Beach News Journal, 4/21/2003, p.1C; J. Waymer, Florida Today (Melbourne), 4/19/2003",2003.04.19-SD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.19-SD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.19-SD.pdf,2003.04.19,2003.04.19,4430,, +2003.04.18,18-Apr-03,2003,Unprovoked,USA,Florida,"North Beach, Patrick AFB, Brevard County",Surfing,male,M,12,2 lacerations on left thigh,N,08h50,Unidentified species,"Local 6 News; Tallahassee Democrat (FL) 4/19/2003; J. Waymer, Florida Today (Melbourne), 4/19/2003 ",2003.04.18-PatrickAFB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.18-PatrickAFB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.18-PatrickAFB.pdf,2003.04.18,2003.04.18,4429,, +2003.04.15,15-Apr-03,2003,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming (using a float),"male, a tourist from Venezuela",M,20,Left calf lacerated,N,13h00,"15 cm to 20 cm [6"" to 8""] bite diameter just below left knee","Florida Today (Melbourne), 4/16/2003; Orlando Sentinel, 4/16/2003, p.B3",2003.04.15-Venezuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.15-Venezuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.15-Venezuela.pdf,2003.04.15,2003.04.15,4428,, +2003.04.11,11-Apr-03,2003,Unprovoked,VENEZUELA,Nueva Esparta,"El Yaqu, Isla de Margarita",Surfing,Yann Perras,M,28,"Right foot bitten, left leg severed",N,--,"Mako shark, 3 m [10']","E. Ritter & M. Levine, GSAF",2003.04.11-YannPerras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.11-YannPerras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.11-YannPerras.pdf,2003.04.11,2003.04.11,4427,, +2003.04.09,09-Apr-03,2003,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Damien Share,M,,Arm lacerated,N,Dusk,,D. Share,2003.04.09-Share.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.09-Share.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.09-Share.pdf,2003.04.09,2003.04.09,4426,, +2003.04.04,04-Apr-03,2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,"Frederick Jordan, Jr.",M,50,Left hand and wrist bitten,N,08h00,4' to 5' shark,"S. Petersohn, GSAF",2003.04.04-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.04-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.04-Jordan.pdf,2003.04.04,2003.04.04,4425,, +2003.03.10,10-Mar-03,2003,Provoked,USA,Florida,"Petting Tank, Florida Aquarium, Tampa, Hillsborough County",Petting captive sharks,Julie Menke,F,,Hand nipped PROVOKED INCIDENT,N,,60 cm [2'] captive shark,"Florida Aquarium; Miami Herald, 3/13/2002 ",2003.03.10-Menke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.03.10-Menke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.03.10-Menke.pdf,2003.03.10,2003.03.10,4424,, +2003.02.27,27-Feb-03,2003,Unprovoked,NEW ZEALAND,Southland,East side of Bench Island in the Foveaux Strait,Scuba diving,Alistair Kerr,M,44,Arm lacerated (shark made 3 strikes),N,11h45,2.5 m [8.25'] white shark,"R.D. Weeks & Mark Marks, GSAF; New Zealand Herald",2003.02.27-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.27-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.27-Kerr.pdf,2003.02.27,2003.02.27,4423,, +2003.02.15.b,15-Feb-03,2003,Unprovoked,AUSTRALIA,South Australia,"Goolwa Beach, Fleurieu Peninsula",Wading,Damien Smith,M,37,Ankle lacerated,N,Dusk,"""a small shark""","T. Peake, GSAF, surfsouthoz.com, 3/38/2003",2003.02.15.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.b-Smith.pdf,2003.02.15.b,2003.02.15.b,4422,, +2003.02.15.a,15-Feb-03,2003,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Swimming,James Bailey,M,54,Left hand bitten,N,12h10,Species unidentified,"J. Eager, scubaradio.com",2003.02.15.a-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.a-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.a-Bailey.pdf,2003.02.15.a,2003.02.15.a,4421,, +2003.02.11,11-Feb-03,2003,Unprovoked,AUSTRALIA,New South Wales,"Coogee Bay, near Sydney",Swimming,Tom Plumridge,M,24,"Puncture wounds on heel, legs and buttocks",N,--,Thought to involve a 2 m [6.75'] grey nurse shark,"T. Peake, GSAF",2003.02.11-Plumridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.11-Plumridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.11-Plumridge.pdf,2003.02.11,2003.02.11,4420,, +2003.02.08,08-Feb-03,2003,Unprovoked,AUSTRALIA,Queensland,Burleigh Lake on the Gold Coast,Swimming,Bob Purcell,M,84,FATAL,Y,Morning,Thought to involve a >2 m [6.75'] bull shark,"T. Peake, GSAF; Sunday Territorian, 2/9/2003, p.9",2003.02.08-Purcell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.08-Purcell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.08-Purcell.pdf,2003.02.08,2003.02.08,4419,, +2003.01.17,17-Jan-03,2003,Invalid,SOUTH AFRICA,Western Cape Province,"Near the lagoon at Table View, Cape Peninsula",Unknown,male,M,14,Probable scavenging. The boy disappeared while at the beach on January 1st. His decomposed shark-bitten body washed ashore January 17th,Y,--,,IOL.co.za,2003.01.17-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.17-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.17-scavenging.pdf,2003.01.17,2003.01.17,4418,, +2003.01.03,03-Jan-03,2003,Unprovoked,COSTA RICA,North Pacific coast,Playa Tamarindo ,Surfing,Ross Menking,M,,Lower right leg lacerated,N,,"Bull shark, 7'",A.M. Costa Rica,2003.01.03-Menking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.03-Menking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.03-Menking.pdf,2003.01.03,2003.01.03,4417,, +2003.01.02,02-Jan-03,2003,Unprovoked,AUSTRALIA,Western Australia,Left break at the Hot Spot at Sheringa Beach,Surfing,Gabrielle Eason,F,N/A,"No injury, but her surfboard was bitten",N,13h00,"Bronze whaler shark, 2.5 m [8.25'] ","T. Peake, GSAF",2003.01.02-Eason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.02-Eason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.02-Eason.pdf,2003.01.02,2003.01.02,4416,, +2002.12.29,29-Dec-02,2002,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef (near Upolu Bay),Snorkeling,"Lienne Schellekens, ",F,18,Left arm lacerated,N,,Reported to involve a hammerhead shark,"T. Peake, GSAF; Mercury (Hobart), 12/30/2002, p.10",2002.12.29-Schellekens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.29-Schellekens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.29-Schellekens.pdf,2002.12.29,2002.12.29,4415,, +2002.12.24,24-Dec-02,2002,Unprovoked,SOUTH AFRICA,Western Cape Province,Scarborough,Snorkeling,Craig Bovim,M,25,Forearms lacerated,N,Just after 12h00,"White shark, 4 m white shark",IOL.co.za,2002.12.24-Bovim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.24-Bovim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.24-Bovim.pdf,2002.12.24,2002.12.24,4414,, +2002.12.21,21-Dec-02,2002,Unprovoked,AUSTRALIA,Queensland,Depth of 40 m on the wreck of the St. Paul off Brisbane,Scuba diving,Jai Hennessey,M,26,Groin bitten,N,,"Wobbegong shark, 1m",GC Online. Note: same diver's swim fin was bitten 3 weeks earlier by a 2 m [6.75'] wobbegong shark,2002.12.21-Hennessey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.21-Hennessey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.21-Hennessey.pdf,2002.12.21,2002.12.21,4413,, +2002.12.20,20-Dec-02,2002,Invalid,AUSTRALIA,Queensland,Golden Beach,Swimming,Bayne Doyle,M,11,Foot lacerated,N,,"Shark involvement not confirmed, injury may be due to a stingray","T. Peake, GSAF",2002.12.20-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.20-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.20-Doyle.pdf,2002.12.20,2002.12.20,4412,, +2002.12.16,16-Dec-02,2002,Unprovoked,AUSTRALIA,Queensland,Miami Lake,Swimming,Beau Martin,M,23,FATAL,Y,02h30,Bull shark,"T. Peake, GSAF; Northern Territory News, 12/20/2002, p.9",2002.12.16-BeauMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.16-BeauMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.16-BeauMartin.pdf,2002.12.16,2002.12.16,4411,, +2002.12.01,01-Dec-02,2002,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Aylson Gadelha,M,19,FATAL,Y,,,O. Gadig,2002.12.01-Gadelha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.01-Gadelha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.01-Gadelha.pdf,2002.12.01,2002.12.01,4410,, +2002.11.28.b,28-Nov-02,2002,Unprovoked,MICRONESIA,Caroline Islands,"Pision Reef, Truk",Scuba diving,Kevin --,M,,Minor injury to right calf,N,Afternoon,Blacktip shark,J. Connick,2002.11.28.b-Kevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.b-Kevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.b-Kevin.pdf,2002.11.28.b,2002.11.28.b,4409,, +2002.11.28.a,28-Nov-02,2002,Unprovoked,USA,California,"Salmon Creek, Sonoma County",Body boarding,Michael Casey,M,48,Both legs severely lacerated,N,09h45,3 m to 4.5 m [10' to 15'] white shark,"R. Collier, GSAF; Press Report: Santa Rosa Press Democrat ",2002.11.28.a-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.a-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.a-Casey.pdf,2002.11.28.a,2002.11.28.a,4408,, +2002.11.17,17-Nov-02,2002,Unprovoked,USA,Hawaii,Ka'anapali,Swimming,Julie Glance ,F,34,Right shoulder forarm & wrist bitten,N,10h45,2.4 m to 3 m [8' to 10'] grey colored shark,San Francisco Gate,2002.11.17-Glance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.17-Glance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.17-Glance.pdf,2002.11.17,2002.11.17,4407,, +2002.11.14,14-Nov-02,2002,Unprovoked,TURKS & CAICOS,Caicos Bank,French Cay,Snorkeling,Michelle Glenn,F,41,"Right upper am, shoulder & back severely bitten",N,08h40,1.8 m to 2.1 m [6' to 7'] Caribbean Reef Shark ,"M. Glenn, Local 10 News; Miami Herald, 11/28/2002",2002.11.14-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.14-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.14-Glenn.pdf,2002.11.14,2002.11.14,4406,, +2002.11.11,11-Nov-02,2002,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Joshua Johnson,M,21,1.5-inch laceration,N,13h40,6' shark,"S. Petersohn, GSAF",2002.11.11-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.11-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.11-Johnson.pdf,2002.11.11,2002.11.11,4405,, +2002.11.02,02-Nov-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,A.H.,M,16,Puncture wounds on right foot,N,13h25,3' to 4' shark,"S. Petersohn, GSAF",2002.11.02-AH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.02-AH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.02-AH.pdf,2002.11.02,2002.11.02,4404,, +2002.11.00.a,Nov-02,2002,Unprovoked,FRENCH POLYNESIA,Society Islands,Tetiaroa,"Fishing, standing in 2' of water",Scott Heywood,M,52,Shin bruised,N,,,S. Heywood,2002.11.00-Heywood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.00-Heywood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.00-Heywood.pdf,2002.11.00.a,2002.11.00.a,4403,, +2002.10.30,30-Oct-02,2002,Unprovoked,USA,Hawaii,"Kama'ole Beach Park I, Kihei, Maui",Swimming,Karen Miller,F,60,Left foot bitten ,N,11h56,A small shark,J. Crites,2002.10.30-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.30-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.30-Miller.pdf,2002.10.30,2002.10.30,4402,, +2002.10.14,14-Oct-02,2002,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Jaboato dos Guararapes City, Recife",Swimming,Luis Soares de Arruda,M,36,"FATAL, body not recovered",Y,16h00,Possibly a bull shark or tiger shark,"P.M. Lopes, GSAF",2002.10.14-Arruda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.14-Arruda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.14-Arruda.pdf,2002.10.14,2002.10.14,4401,, +2002.10.11,11-Oct-02,2002,Unprovoked,USA,Florida,"Opposite main gate at Patrick Air Force Base, Cape Canaveral, Brevard County",Surfing,male,M,21,Left foot bitten,N,Sunset,,"Florida Today, 10/12/2002 ",2002.10.11-CapeCanaveral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.11-CapeCanaveral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.11-CapeCanaveral.pdf,2002.10.11,2002.10.11,4400,, +2002.10.05.b,05-Oct-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Darren Harrity,M,14,Abrasions on right hand & deep laceration on middle finger,N,12h00,Blacktip or spinner shark,"D. Harrity; S. Petersohn, GSAF; L. Lelis, Orlando Sentinel",2002.10.05.b-DarrenHarrity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.b-DarrenHarrity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.b-DarrenHarrity.pdf,2002.10.05.b,2002.10.05.b,4399,, +2002.10.05.a,05-Oct-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Ivan Rios ,M,35,Heel & back of right knee lacerated,N,13h30,3.5' to 4.5' shark,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/22/2003, p.1C",2002.10.05.a-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.a-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.a-Rios.pdf,2002.10.05.a,2002.10.05.a,4398,, +2002.10.03,03-Oct-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Cheyne Kehoe ,M,18,Left hand lacerated and abraded,N,14h35,3.5' to 4' shark,"S. Petersohn, GSAF; Local 6 News; Orlando Sentinel, 10/4/2002, p.B3",2002.10.03-Kehoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.03-Kehoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.03-Kehoe.pdf,2002.10.03,2002.10.03,4397,, +2002.09.30,30-Sep-02,2002,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Matt Crawford,M,47,Right hand severely lacerated,N,16h20,4' to 5' shark,"S. Petersohn, GSAF; J. Eager, scubaradio.com; P.Balona, Vero Beach Press Journal, 5/10/2003, p.1C",2002.09.30-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.30-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.30-Crawford.pdf,2002.09.30,2002.09.30,4396,, +2002.09.29,29-Sep-02,2002,Unprovoked,USA,Florida,"Sebastian Inlet, Brevard County",Surfing,Dave Fogelberg,M,32,Left hand bitten,N,07h30,,"Local 6 News; P. Balona, Vero Beach Press Journal, 10/2/2002",2002.09.29-Fogelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.29-Fogelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.29-Fogelberg.pdf,2002.09.29,2002.09.29,4395,, +2002.09.27.c,27-Sep-02,2002,Unprovoked,USA,Hawaii,"Kahala, O'ahu",Fishing from Surfboard,Arnold Lum,M,55,"No injury, surfboard bitten ",N,15h35,1.2 m [4'] blacktip shark,"C. Lum & J. Widner, Honolulu Advertiser",2002.09.27.c-Lum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.c-Lum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.c-Lum.pdf,2002.09.27.c,2002.09.27.c,4394,, +2002.09.27.b,27-Sep-02,2002,Provoked,USA,Florida,"Key Largo, Monroe County",Fishing,Jose Diaz,M, ,Left thumb lacerated PROVOKED INCIDENT,N,Afternoon,1.8 m [6'] blacktip shark,"J. Eager, scubaradio.com",2002.09.27.b-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.b-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.b-Diaz.pdf,2002.09.27.b,2002.09.27.b,4393,, +2002.09.27.a,27-Sep-02,2002,Provoked,TONGA,Vava'u,Swimming with humpback whales,Swimming,Felipe Tonga ,M, ,Thigh lacerated PROVOKED INCIDENT,N,15h00,"Tiger shark, 1.5 m [5']k",C. Butterfield,2002.09.27.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.a-Tonga.pdf,2002.09.27.a,2002.09.27.a,4392,, +2002.09.21.b,21-Sep-02,2002,Unprovoked,USA,Oregon,Cape Kiwanda,Boogie boarding or Surfing,Garry Turner,M,24, Ankle lacerated,N, ,2.4 m [8'] shark,"R. Collier, GSAF ",2002.09.21.b-GarryTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.b-GarryTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.b-GarryTurner.pdf,2002.09.21.b,2002.09.21.b,4391,, +2002.09.21.a,21-Sep-02,2002,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,Reed Richards,M,35,No injury,N,Early Morning,3 m to 3.7 m [10' to 12'] shark,"R. Collier , GSAF",2002.09.21.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.a-Richards.pdf,2002.09.21.a,2002.09.21.a,4390,, +2002.09.16.b,16-Sep-02,2002,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Jaboato dos Guararapes City",Swimming,Fabrcio Jos de Carvalho,M,19,"Left thigh bitten, leg surgically amputated",N,15h00,Bull or tiger shark,"P.M. Lopes, GSAF",2002.09.16.b-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.b-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.b-Carvalho.pdf,2002.09.16.b,2002.09.16.b,4389,, +2002.09.16.a,16-Sep-02,2002,Unprovoked,USA,Hawaii,"Hideaways Beach, Princeville, Kaua'i",Body boarding,,,,"No injury, shark fin seen just before board ripped away & dragged out to sea",N,07h50,,Hawaii Department of Land and Natural Resources,2002.09.16.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.a-Hawaii.pdf,2002.09.16.a,2002.09.16.a,4388,, +2002.09.13,13-Sep-02,2002,Unprovoked,SOUTH AFRICA,Western Cape Province,"Glencairn, False Bay",Surf skiing,Paul Mauger (or Major),M,47,No injury,N,16h00,White shark,Multiple internet sources,2002.09.13-Mauger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.13-Mauger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.13-Mauger.pdf,2002.09.13,2002.09.13,4387,, +2002.09.09,09-Sep-02,2002,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Boogie boarding,Sean M. Erwin,M,20,Bitten above & below right knee,N,15h55,4' to 6' shark,"S. Petersohn, GSAF; Orlando Sentinel, 9/10/2002, p.B3; Daytona Beach News Journal, 9/10/2002, p.1C ",2002.09.09-Erwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.09-Erwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.09-Erwin.pdf,2002.09.09,2002.09.09,4386,, +2002.09.05,05-Sep-02,2002,Provoked,USA,Florida,"Daytona Beach Shores, Volusia County","Wading, when he stepped on the shark",Alex Lancaster,M,36,2 small puncture wounds on left foot PROVOKED INCIDENT,N,17h45,1' to 2' hammerhead or bonnethed shark,"S. Petersohn, GSAF",2002.09.05-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.05-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.05-Lancaster.pdf,2002.09.05,2002.09.05,4385,, +2002.08.28,28-Aug-02,2002,Unprovoked,USA,Hawaii,"Kewalo Basin Channel, O'ahu",Surfing,Shawn Farden,M,16,Left foot lacerated ,N,15h45,"Tiger shark, 2.4 m to 3 m [8' to 10'] ","G. Kubota, Honolulu Star Bulletin",2002.08.28-Farden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.28-Farden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.28-Farden.pdf,2002.08.28,2002.08.28,4384,, +2002.08.17,17-Aug-02,2002,Unprovoked,USA,Alabama,"Gulf of Mexico, 65 miles offshore from Mobile",Swimming,Kimberly McClain,F,29,Both arms & leg bitten,N,17h00,,"J. Eager, scubaradio.com",2002.08.17-McLean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.17-McLean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.17-McLean.pdf,2002.08.17,2002.08.17,4383,, +2002.08.14,14-Aug-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Paxton Vinyard,M,27,Big toe bitten,N,14h45,0.9 m to 1.2 m [3' to 4'] shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/15/2002, p.B3",2002.08.14-Vinyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.14-Vinyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.14-Vinyard.pdf,2002.08.14,2002.08.14,4382,, +2002.08.11,11-Aug-02,2002,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Surfing,Brad Milliken,M,15,Lacerations on heel & dorsum of right foot,N,15h30,"Nurse shark, 1.5 m [5'] ","Stuart News, 8/12/2002",2002.08.11-Milliken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.11-Milliken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.11-Milliken.pdf,2002.08.11,2002.08.11,4381,, +2002.08.07,07-Aug-02,2002,Unprovoked,USA,Florida,"Ponce De Leon Inlet, Volusia County",Standing,David Brennen Smith,M,15,Ankle & leg lacerated,N,12h30,,"S. Petersohn, GSAF; J. Eager; A. Caldwell, Orlando Sentinel, 8/8/2002, p.B1",2002.08.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.07-Smith.pdf,2002.08.07,2002.08.07,4380,, +2002.08.06.R,Reported 06-Aug-2002,2002,Provoked,UNITED KINGDOM,Cheshire,"Blue Planet Aquarium, Ellesmere Port",Diving,Rob Bennett,M,30,Hand bitten by captive shark PROVOKED INCIDENT,N,,"Sandtiger shark, 3 m [10'] ","Evening Standard (London, England)",2002.08.06-Bennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.06-Bennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.06-Bennet.pdf,2002.08.06.R,2002.08.06.R,4379,, +2002.08.05,05-Aug-02,2002,Unprovoked,USA,North Carolina,"Topsail Beach, Pender County",Standing,Robert Pollan,M,14,Leg lacerated,N,11h00,1.2 m to 1.5 m [4' to 5'] shark,"Wisconsin State Journal; C. Creswell, GSAF",2002.08.05-Pollan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.05-Pollan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.05-Pollan.pdf,2002.08.05,2002.08.05,4378,, +2002.07.26,26-Jul-02,2002,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Surfing,T.J. Nimmons,M,13,Heel bitten,N,19h00,1.2 m [4'] blacktip or sandbar shark,"C. Creswell, GSAF; The State (Columbia, SC) 7/28/2002 ; Sun News (Myrtle Beach), 7/28/2002",2002.07.26-Nimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.26-Nimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.26-Nimmons.pdf,2002.07.26,2002.07.26,4377,, +2002.07.20,20-Jul-02,2002,Unprovoked,USA,North Carolina,"Emerald Isle, Carteret County",Swimming,Mary Katherine Strong,F,15,Calf bitten,N,17h00,"Bull shark, 1.8 m to 2.1 m [6' to 7'] ","C. Creswell, GSAF",2002.07.20-Strong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.20-Strong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.20-Strong.pdf,2002.07.20,2002.07.20,4376,, +2002.07.10,10-Jul-02,2002,Provoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Josh Nichtro,M,19,2 small lacerations on left lower leg when he jumped off board and landed on the shark PROVOKED INCIDENT,N,18h45,,"S. Petersohn, GSAF",2002.07.10-Nichtro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.10-Nichtro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.10-Nichtro.pdf,2002.07.10,2002.07.10,4375,, +2002.07.09.b,09-Jul-02,2002,Provoked,USA,Maryland,"100 miles off Ocean City, Maryland, in 7000' of water",Shark Fishing,Captain Billy Verbanas,M,41,Drowned when caught in line and pulled overboard by hooked shark PROVOKED INCIDENT,Y,Shortly after midnight,"Mako shark, 400-lb ",Life in Legacy ,2002.07.09.b-Verbanas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.b-Verbanas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.b-Verbanas.pdf,2002.07.09.b,2002.07.09.b,4374,, +2002.07.09.a,10-Jul-02,2002,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Recife",Surfing,Mrio Csar Carneiro da Silva,M,22,Right hand severed,N,15h00,Bull or tiger shark,"P.M. Lopes, GSAF",2002.07.09.a-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.a-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.a-daSilva.pdf,2002.07.09.a,2002.07.09.a,4373,, +2002.07.04,04-Jul-02,2002,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Standing,Avery Olearczyk,F,9,"Calf, foot & hand bitten",N,17h15,"1.2 m to 1.5 m [4' to 5'] shark, possibly a bull shark","Miami Herald, 7/7/2002 ",2002.07.04-Olearczyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.04-Olearczyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.04-Olearczyk.pdf,2002.07.04,2002.07.04,4372,, +2002.06.20.b,20-Jun-02,2002,Unprovoked,AUSTRALIA,Queensland,Sunshine Beach,Surfing,male,M,30,minor injury to foot,N,10h00,,"AAP, 6/20/2002",2002.06.20.b-surfer-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.b-surfer-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.b-surfer-QLD.pdf,2002.06.20.b,2002.06.20.b,4371,, +2002.06.20.a,20-Jun-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,female,F,11,Small lacerations on right lower leg,N,14h25,,"S. Petersohn, GSAF",2002.06.20.a-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.a-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.a-female.pdf,2002.06.20.a,2002.06.20.a,4370,, +2002.06.16,16-Jun-02,2002,Invalid,INDONESIA,,"Shark caught in Indonesia, offloaded to trawler that docked at Samut Prakan, 20 miles south of Bangkok, Thailand",,,,,Human remains (right forearm & leg) recovered from 3.7m [12'] tiger sharks gut. Forensic examination suggested the remains had been consumed by the shark one to two weeks earlier,Y,,,espn.go.com,2002.06.16-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.16-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.16-Indonesia.pdf,2002.06.16,2002.06.16,4369,, +2002.06.13.R2,Reported 13-Jun-2002,2002,Unprovoked,PAPUA NEW GUINEA,Louisiade Archipelago,"Brooker Island , Calvados Chain",,,,,"Arm severely lacerated, surgically amputated",N,,,"PNG Post-Courier, 6/13/2002, p.5",2002.06.13-R.2-beche-de-mer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13-R.2-beche-de-mer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13-R.2-beche-de-mer.pdf,2002.06.13.R2,2002.06.13.R2,4368,, +2002.06.13.R1,Reported 13-Jun-2002,2002,Unprovoked,PAPUA NEW GUINEA,Louisiade Archipelago,"Gawa Reefs, Sudest Island",Attempting to retreive a dinghy,an elementary school teacher,,,FATAL,Y,,,"PNG Post-Courier, 6/13/2002, p.5",2002.06.13.R.1-schoolteacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13.R.1-schoolteacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13.R.1-schoolteacher.pdf,2002.06.13.R1,2002.06.13.R1,4367,, +2002.06.11.b,11-Jun-02,2002,Unprovoked,USA,Hawaii,"Anini Beach, Kaua'i",Sitting on surfboard,C. Levin,,,"No injury, shark bit side of surfboard",N,13h345,"Tiger shark, 2.4 m to 2.7 m [8' to 9'] ",Hawaii Department of Land and Natural Resources,2002.06.11.b-Levin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.b-Levin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.b-Levin.pdf,2002.06.11.b,2002.06.11.b,4366,, +2002.06.11.a,10-Jun-02,2002,Unprovoked,USA,Florida,"St Augustine Beach, St Johns County",Surfing,Jason Smith,M,28,Right hand lacerated,N,13h00,0.9 m to 1.2 m [3' to 4'] shark; Tooth fragment recovered from hand,"Orlando Sentinel, 6/12/2002, pp. B2 & B5; Florida Times-Union, 6/10/2002",2002.06.11.a-JasonSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.a-JasonSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.a-JasonSmith.pdf,2002.06.11.a,2002.06.11.a,4365,, +2002.06.09.b,09-Jun-02,2002,Unprovoked,USA,Florida,"South of Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Craig Taylor,M,50,6-inch gash on right foot,N,10h40, ,"S. Petersohn, GSAF; S. Pedicini, Orlando Sentinel, 6/13/2002., p.B1 & 6/12/2002, p.B2",2002.06.09.b-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.b-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.b-Taylor.pdf,2002.06.09.b,2002.06.09.b,4364,, +2002.06.09.a,09-Jun-02,2002,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Swimming,Corey Brooks,M,10,Right calf lacerated,N,13h00,,"ESPN; Orlando Sentinel, 6/12/2002, p.B2",2002.06.09.a-Brooks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.a-Brooks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.a-Brooks.pdf,2002.06.09.a,2002.06.09.a,4363,, +2002.06.03,03-Jun-02,2002,Unprovoked,SOUTH AFRICA,KwaZulu-Natal between Port Edward and Port St Johns,Off Mkhambati ,Snorkeling (filming the sardine run),Tony White,M,50,Upper arm bitten,N, ,1.5 to 2.5 m [5' to 8.25'] copper shark,T. White,2002.06.03-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.03-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.03-White.pdf,2002.06.03,2002.06.03,4362,, +2002.05.31.b,31-May-02,2002,Unprovoked,USA,California,"Stinson Beach, Marin County",Surfing,Lee Fontan,M,24,Lacerated leg & back,N,14h15,3.7 m to 4.3 m [12' to 14'] white shark,San Francisco Gate,2002.05.31.b-Fontan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.b-Fontan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.b-Fontan.pdf,2002.05.31.b,2002.05.31.b,4361,, +2002.05.31.a,31-May-02,2002,Unprovoked,USA,Florida,"St. George Island (near Apachicola), Franklin County",Floating on a raft,Matt Tichenor,M,16,Lacerated foot,N,16h15,1 m shark,"South Florida Sun-Sentinel; Orlando Sentinel, 6/3/2002, p.B.2; Miami Herald, 6/3/2002",2002.05.31.a-Tichenor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.a-Tichenor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.a-Tichenor.pdf,2002.05.31.a,2002.05.31.a,4360,, +2002.05.22.b,22-May-02,2002,Provoked,USA,Florida,"a pier at the end of Caxambas Drive, Marco Island ","Fishing, removing the shark from his line",male,M,55,Leg bitten by hooked shark PROVOKED INCIDENT,N,17h15,3' blacktip shark,"News-Press, 5/23/2002",2002.05.22.b-MarcoIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.b-MarcoIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.b-MarcoIsland.pdf,2002.05.22.b,2002.05.22.b,4359,, +2002.05.22.a,22-May-02,2002,Unprovoked,USA,Florida,"Atlantic Avenue, Palm Beach County",Playing in the surf with his 2 dogs,Sean Oliver,M,35,"2-inch wound on dorsum of right foot, 1-inch wound on sole",N,06h47,,"Palm Beach Post, 5/24 & 26/2002",2002.05.22.a-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.a-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.a-Oliver.pdf,2002.05.22.a,2002.05.22.a,4358,, +2002.05.21.R,Reported 21-May-2002,2002,Unprovoked,COSTA RICA,Guanacaste,Playa Grande,Surfing,Nick Wallace,M,,Toothmarks in board & his swim trunks,N,,"Bull shark, 1.8 m to 2.1 m [6' to 7'] ",Surfline.com,2002.05.21.R-Wallace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.R-Wallace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.R-Wallace.pdf,2002.05.21.R,2002.05.21.R,4357,, +2002.05.21,21-May-02,2002,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,Tewatewa Island,Collecting beche-de-mer,Billy Leonard,M,14,Wrist lacerated,N,,,"PNG Post-Courier, 6/13/2002, p.5",2002.05.21.a-Leonard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.a-Leonard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.a-Leonard.pdf,2002.05.21,2002.05.21,4356,, +2002.05.13,13-May-02,2002,Unprovoked,USA,Florida,"Ten Thousand Islands National Wildlife Refuge, Collier County",Fishing,Fermin Gallegos,M,31,Laceration to arm.,N,,2.1 m to 2.4 m [7' to 8'] shark,South Florida Sun-Sentinel; Southwest Florida Digest,2002.05.13-Gallegos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.13-Gallegos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.13-Gallegos.pdf,2002.05.13,2002.05.13,4355,, +2002.05.10,10-May-02,2002,Unprovoked,BRAZIL,Pernambuco,"Pina, Recife",Surfing,Paulo Fernandes Alves Ferreira,M,40,Leg injured,N,17h00,,"JCOnline, 5/11/2002",2002.05.10-PauloFernandesAlvesFerreira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.10-PauloFernandesAlvesFerreira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.10-PauloFernandesAlvesFerreira.pdf,2002.05.10,2002.05.10,4354,, +2002.05.07,07-May-02,2002,Provoked,AUSTRALIA,Northern Territory,Darwin,Fishing from prawn trawler,Richard Morris,M,20,Netted shark injured his am & 6 fingers PROVOKED INCIDENT,N,,,"Northern Territory News, 5/29/2002, p.7",2002.05.07-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.07-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.07-Morris.pdf,2002.05.07,2002.05.07,4353,, +2002.04.30,30-Apr-02,2002,Unprovoked,AUSTRALIA,South Australia,"Smoky Bay, near Ceduna, on the Eyre Peninsula",Scallop diving (using surface-supplied air & a POD) ,Paul Buckland,M,23,"FATAL, torso & leg bitten ",Y,12h40,"White shark, 6m [20']","T. Peake, GSAF",2002.04.30-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.30-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.30-Buckland.pdf,2002.04.30,2002.04.30,4352,, +2002.04.21,21-Apr-02,2002,Invalid,AUSTRALIA,New South Wales,26 nautical miles out to sea off Lake Macquarie,Fishing (Drowned 2-Apr-2002),Mr. Kang Suk Lee,M,52,"Drowned, his remains were found in a 3m [10'], 368 kg [811-lb] tiger shark",Y,,,Newcastle Herald. 10/3/2002,2002.04.21-KangSukLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.21-KangSukLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.21-KangSukLee.pdf,2002.04.21,2002.04.21,4351,, +2002.04.20,20-Apr-02,2002,Unprovoked,USA,Florida,"St. Augustine Beach, St. Johns County","Surfing, but standing in water alongside board",Robert Stinson,M,34,Left foot bitten,N,10h30,1.2 m [4'] shark,"Miami Herald, 4/25/2002; Florida Times-Union, 4/23/2002",2002.04.20-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.20-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.20-Stinson.pdf,2002.04.20,2002.04.20,4350,, +2002.04.18,18-Apr-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Sutliff,M,28,Left foot bitten,N,11h10,,"S. Petersohn, GSAF; Orlando Sentinel, 4/19/2002, p.G1; Daytona Beach News Journal, 4/19/2002, p.1C",2002.04.18-Sutliff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.18-Sutliff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.18-Sutliff.pdf,2002.04.18,2002.04.18,4349,, +2002.04.12,12-Apr-02,2002,Unprovoked,AUSTRALIA,New South Wales,"Bar Beach, Newcastle",Swimming,John Schneider,M,45,Foot bitten,N,18h30,,"T. Peake, GSAF",2002.04.12-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.12-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.12-Schneider.pdf,2002.04.12,2002.04.12,4348,, +2002.04.09,09-Apr-02,2002,Unprovoked,BAHAMAS,Abaco Islands,Walkers Cay,Standing,Erich Ritter,M,43,Calf bitten,N,10h45,"Bull shark, 400-lb ","E. Ritter, GSAF",2002.04.09-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.09-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.09-Ritter.pdf,2002.04.09,2002.04.09,4347,, +2002.04.02,02-Apr-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,male,M,41,Two half-inch lacerations on right heel and one near small toe,N,15h00,3' shark,"S. Petersohn, GSAF",2002.04.02-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.02-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.02-male.pdf,2002.04.02,2002.04.02,4346,, +2002.04.01,01-Apr-02,2002,Unprovoked,USA,Florida,"Lauderdale-By-The-Sea, Broward County",Swimming / Wading,Matthew May,M,29,Upper left arm bitten,N,11h30,0.9 m [3'] shark,"Orlando Sentinel, 4/2/2002, p.B3; Miami Herald, 4/2/2002",2002.04.01-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.01-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.01-May.pdf,2002.04.01,2002.04.01,4345,, +2002.03.25.b,25-Mar-02,2002,Unprovoked,USA,Hawaii,"Brenecke Beach, Po'ipu, Kaua'i",Body-boarding,Hoku Aki,M,17,Left leg severed below knee,N,12h00,Tiger shark,"G. Kubota, Honolulu Star Bulletin",2002.03.25.b-HokuAki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.b-HokuAki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.b-HokuAki.pdf,2002.03.25.b,2002.03.25.b,4344,, +2002.03.25.a,25-Mar-02,2002,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Wading,Ms Tori Lawrence,F,11,Foot bitten,N,10h10, ,"Orlando Sentinel, 3/26/2002, p.B2; Miami Herald, 3/26/2002",2002.03.25.a-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.a-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.a-Lawrence.pdf,2002.03.25.a,2002.03.25.a,4343,, +2002.03.24,24-Mar-02,2002,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Fbio Fernandes Silva,M,16,"Severe kacerations, FATAL",Y,17h00,,JCOnline,2002.03.24-FabioFernandesSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.24-FabioFernandesSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.24-FabioFernandesSilva.pdf,2002.03.24,2002.03.24,4342,, +2002.03.19,19-Mar-02,2002,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Swimming / boogie boarding,John Sadler,M,20,Punctures on left foot and foot ,N,15h45,4' shark,"S. Petersohn, GSAF; Orlando Sentinel, 3/20/2002, p.B2",2002.03.19-Sadler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.19-Sadler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.19-Sadler.pdf,2002.03.19,2002.03.19,4341,, +2002.03.15.b,15-Mar-02,2002,Unprovoked,USA,Florida,"Deerfield Beach (near Boca Raton), Broward County",Snorkeling,Robert Land,M,39,Arm bitten,N,Morning,"Nurse shark, 1m ",ezboard.com,2002.03.15.b-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.b-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.b-Land.pdf,2002.03.15.b,2002.03.15.b,4340,, +2002.03.15.a,15-Mar-02,2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,31,Several puncture wounds on lower right leg,N,10h55,"Spinner shark, 3' to 4' ","S. Petersohn, GSAF; Orlando Sentinel, 3/16/2002, p.C.2",2002.03.15.a-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.a-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.a-male-surfer.pdf,2002.03.15.a,2002.03.15.a,4339,, +2002.03.03,03-Mar-02,2002,Invalid,NEW CALEDONIA,Loyalty Islands,Lifou,Spearfishing,Yves Koidrin,M,44,"PRESUMED FATAL, body not recovered",Y,,Shark involvement prior to death unconfired,"Les Nouvelles Caledoniennes, 3/11/2002",2002.03.03-Yves-Koidrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.03-Yves-Koidrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.03-Yves-Koidrin.pdf,2002.03.03,2002.03.03,4338,, +2002.02.23,23-Feb-02,2002,Unprovoked,TURKS & CAICOS,,,Capsized fishing boat,John Sutton,M,,FATAL,Y,,,sharkattacks.com,2002.02.23-Sutton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.23-Sutton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.23-Sutton.pdf,2002.02.23,2002.02.23,4337,, +2002.02.16,16-Feb-02,2002,Unprovoked,AUSTRALIA,Queensland,Sunshine Beach,Surfing,Kirk Koster,M,30 or 36,Heel / foot bitten,N,09h00 -10h00,"1.5 m [5'] ""whaler shark""","Sunday Mail (QLD), 2/17/2002, p.13; T. Peake, GSAF; AAP (Australia)",2002.02.16-Koster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.16-Koster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.16-Koster.pdf,2002.02.16,2002.02.16,4336,, +2002.02.11,11-Feb-02,2002,Unprovoked,FIJI,Cikobia Island (north of Vanua Levu),,,Jokini Rasoki,M,15,"FATAL, lower thigh & knee severely lacerated ",Y,20h00,,Press Report dated 2-14-2002,2002.02.11-Rasoki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.11-Rasoki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.11-Rasoki.pdf,2002.02.11,2002.02.11,4335,, +2002.02.07,07-Feb-02,2002,Unprovoked,AUSTRALIA,New South Wales,Paramatta River (near Sydney),Kayaking,Paul McNamara,M,35,Stern of kayak bitten/chest bruised ,N,19h15,C. leucas tooth fragment recovered from kayak,"T. Peake, GSAF",2002.02.07-McNamara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.07-McNamara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.07-McNamara.pdf,2002.02.07,2002.02.07,4334,, +2002.01.30.b,30-Jan-02,2002,Unprovoked,AUSTRALIA,New South Wales,Just north of Fingal Spit,Surfing,Andrew Cribb,M,20,Bruises & minor cuts,N,20h45 (Sunset),"Tiger shark, 3 m [10']","T. Peake, GSAF",2002.01.30.b-Cribb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.b-Cribb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.b-Cribb.pdf,2002.01.30.b,2002.01.30.b,4333,, +2002.01.30.a,30-Jan-02,2002,Unprovoked,AUSTRALIA,Western Australia,Collie River ,Swimming,Shayne Calliss,M,32,15 cm wound on inner thigh,N,,,"T. Peake, GSAF; D. Green",2002.01.30.a-Calliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.a-Calliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.a-Calliss.pdf,2002.01.30.a,2002.01.30.a,4332,, +2002.01.04,04-Jan-02,2002,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban Harbor,Fishing,Imraan Sheik,M,16,Leg bitten & surgically amputated,N,02h00,Zambesi shark?,"G. Gifford, GSAF",2002.01.04-Sheik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.04-Sheik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.04-Sheik.pdf,2002.01.04,2002.01.04,4331,, +2002.01.03,03-Jan-02,2002,Unprovoked,BRAZIL,Pernambuco,Candeias,Swimming,Unidentified,,,FATAL,Y,,,JCOnline,2002.01.03-Candeias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.03-Candeias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.03-Candeias.pdf,2002.01.03,2002.01.03,4330,, +2002.01.01.b,01-Jan-02,2002,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mtunzini,Surf skiing,Michael van Niekerk,M,26,Foot & calf bitten,N,Sunset,Unidentified,ioL.co.za,2002.01.01.b-vanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.b-vanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.b-vanNiekerk.pdf,2002.01.01.b,2002.01.01.b,4329,, +2002.01.01.a,01-Jan-02,2002,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,Thomas Holmes,M,35,Lacerations to buttocks & thigh,N,13h00,"Tiger shark, 1.8 m [6'] ","G. Kubota, Star Bulletin",2002.01.01.a-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.a-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.a-Holmes.pdf,2002.01.01.a,2002.01.01.a,4328,, +2001.12.21,21-Dec-01,2001,Invalid,AUSTRALIA,Western Australia,"Honeycombs, 250 km south of Perth",Surfing,Shane Dickson,M,36,"No injury, 2 m to 2.5 m [6.75' to 8.25'] shark made a threat display",N,Morning,,sharkattacks.com,2001.12.21-Dickson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.12.21-Dickson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.12.21-Dickson.pdf,2001.12.21,2001.12.21,4327,, +2001.11.23,23-Nov-01,2001,Unprovoked,AUSTRALIA,New South Wales,"Flat Rock Beach, Lennox Head",Surfing,Roger Frankland,M,49,"No Injury, shark hit board",N,,Bronze whaler shark,"T. Peake, GSAF",2001.11.23-Frankland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.23-Frankland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.23-Frankland.pdf,2001.11.23,2001.11.23,4326,, +2001.11.14,14-Nov-01,2001,Unprovoked,USA,Hawaii,"Kapalua, Maui",Surfing,M. Schweitzer,,,"No injury, portion of board's lower surface removed",N,17h00,,Hawaii Department of Land and Natural Resources,2001.11.14-Schweitzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.14-Schweitzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.14-Schweitzer.pdf,2001.11.14,2001.11.14,4325,, +2001.11.07,07-Nov-01,2001,Invalid,AUSTRALIA,Western Australia,"Leighton Beach, south of North Cottesloe",Surf-skiing,male,M,,"No injury, fell off ski after possibly colliding with a shark",N,,,"T. Peake, GSAF",2001.11.07-LeightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.07-LeightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.07-LeightonBeach.pdf,2001.11.07,2001.11.07,4324,, +2001.10.07,07-Oct-01,2001,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Salt Rock ,Kite-Boarding,Alwin van Breda,M,,No injury,N,,"Mako shark, 2 m [6.75'] ",NSB,2001.10.07-vanBreda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.07-vanBreda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.07-vanBreda.pdf,2001.10.07,2001.10.07,4323,, +2001.10.02,02-Oct-01,2001,Unprovoked,AUSTRALIA,Queensland,200 miles offshore,Snorkeling,Katherine Jones,F,20,Lacerations to right forearm & shoulder injured,N,13h00,Bronze whaler shark?,K. Jones,2001.10.02-Katherine-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.02-Katherine-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.02-Katherine-Jones.pdf,2001.10.02,2001.10.02,4322,, +2001.09.30.b,30-Sep-01,2001,Unprovoked,MEXICO,Guerrero,Ixtapa,Body surfing,Brian Lavelle,M,26,Hand injured,N,Late morning,"Tiger shark, 1.8 m [6']",T. Carlson,2001.09.30.b-Lavelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.b-Lavelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.b-Lavelle.pdf,2001.09.30.b,2001.09.30.b,4321,, +2001.09.30.a,30-Sep-01,2001,Boat,AUSTRALIA,Queensland,"Moreton Bay, NE of Brisbane ",,"boat: inflatable boat, occupant: Matt George, owner",M,31,No injury from shark,N,P.M.,4 m [13'] white shark,"T. Peake, GSAF ",2001.09.30.a-MattGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.a-MattGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.a-MattGeorge.pdf,2001.09.30.a,2001.09.30.a,4320,, +2001.09.24,24-Sep-01,2001,Provoked,USA,Florida,"Ponce Inlet, Volusia County","Surfing, fell off surfboard & stepped on the shark.",male,M,21,PROVOKED INCIDENT Several small lacerations on left foot ,N,16h20,4' shark,"S. Petersohn, GSAF",2001.09.24-male_Ponce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.24-male_Ponce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.24-male_Ponce.pdf,2001.09.24,2001.09.24,4319,, +2001.09.18,18-Sep-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Blaise Mosler,M,14,"1"" to 2"" cuts on right ankle & foot",N,15h00,,"Orlando Sentinel, 9/20/2001, p.D2; S. Frederick, Daytona Beach News Journal, 9/19/2001, p.1C",2001.09.18-Mosler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.18-Mosler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.18-Mosler.pdf,2001.09.18,2001.09.18,4318,, +2001.09.16,16-Sep-01,2001,Invalid,USA,Florida,"2 miles off Pompano Beach, Broward County",Wreck / Technical diving,Eric Reichardt,M,42,FATAL or drowning & scavenging,Y,13h20,Questionable incident - shark bite may have precipitated drowning,D. Fleshler,2001.09.16-Reichardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.16-Reichardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.16-Reichardt.pdf,2001.09.16,2001.09.16,4317,, +2001.09.15.b,15-Sep-01,2001,Unprovoked,USA,Florida,A quarter mile north of Fort Pierce Inlet,Boogie boarding,Cory Hock,M,6,"2 lacerations on lower back, punctures on buttock",N,15h00,2' to 3.5' shark,"G. Hock, M. Levine, GSAF; Orlando Sentinel, 9/18/2001, p.D2",2001.09.15.b-Hock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.b-Hock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.b-Hock.pdf,2001.09.15.b,2001.09.15.b,4316,, +2001.09.15.a,15-Sep-01,2001,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Surfing,"Dale Fulcher, Jr.",M,16,Foot bitten,N,13h45,,"Clay Creswell, GSAF; Topsail Voice, 9/19/2001",2001.09.15.a-Fulcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.a-Fulcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.a-Fulcher.pdf,2001.09.15.a,2001.09.15.a,4315,, +2001.09.13,13-Sep-01,2001,Provoked,UNITED KINGDOM,Cheshire,"Blue Planet Aquarium, Ellesmere Port",Diving,,M,,Head bitten by captive shark PROVOKED INCIDENT,N,,12' sandtiger shark,"Daily Post, 9/14/2001",2001.09.13-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.13-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.13-Aquarium.pdf,2001.09.13,2001.09.13,4314,, +2001.09.08,08-Sep-01,2001,Provoked,USA,Florida,"Everglades National Park, Monroe County",Fishing,male,M,44,Fingers & leg lacerated by hooked shark PROVOKED INCIDENT,N,,,"Orlando Sentinel, 9/9/2001",2001.09.08-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.08-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.08-angler.pdf,2001.09.08,2001.09.08,4313,, +2001.09.07.b,07-Sep-01,2001,Unprovoked,USA,Florida,"Key Biscayne, Dade County",Walking in shallows,Patrick Homer,M,13,Minor injury to left leg,N,18h40,,"Miami Herald, 9/8/2001",2001.09.07.b-Homer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.b-Homer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.b-Homer.pdf,2001.09.07.b,2001.09.07.b,4312,, +2001.09.07.a,07-Sep-01,2001,Invalid,USA,South Carolina,"Waites Island, Horry County",Swimming,Jackie Boyce,F,,Left hand injured,N,,Shark involvement not confirmed,"Sun News (Myrtle Beach, SC) , 9/11/2001; The State (Columbia, SC), 9/12/2001",2001.09.07.a-Boyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.a-Boyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.a-Boyce.pdf,2001.09.07.a,2001.09.07.a,4311,, +2001.09.03.b,03-Sep-01,2001,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Swimming ,Sergi Zaloukaev,M,28,FATAL,Y,18h00,A large white shark was filmed by divers on a local wreck 2 days prior to the incident.,"M. Levine, GSAF ",2001.09.03.b-Sergei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.b-Sergei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.b-Sergei.pdf,2001.09.03.b,2001.09.03.b,4310,, +2001.09.03.a,03-Sep-01,2001,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Swimming,Natalia (Natasha) Slobonskaya,F,23,Left buttock & foot severed,N,18h00,A large white shark was filmed by divers on a local wreck 2 days prior to the incident.,"M. Levine, GSAF ",2001.09.03.a-Natasha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.a-Natasha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.a-Natasha.pdf,2001.09.03.a,2001.09.03.a,4309,, +2001.09.02,02-Sep-01,2001,Unprovoked,USA,Florida,"Mayport Naval Station, Jacksonville, Duval Country",Wading,William Moseley,M,20,Right calf lacerated,N,Afternoon,1.5 m [5'] shark,"Orlando Sentinel, 9/4/2001, p.B2; Florida Times-Union, 9/5/2001",2001.09.02-Moseley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.02-Moseley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.02-Moseley.pdf,2001.09.02,2001.09.02,4308,, +2001.09.01,01-Sep-01,2001,Unprovoked,USA,Virginia,"Sandbridge Beach, Princess Anne County",Swimming ,David Peltier,M,10,"FATAL, thigh bitten ",Y,18h00,bull shark,"M. Levine, GSAF ",2001.09.01-Peltier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.01-Peltier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.01-Peltier.pdf,2001.09.01,2001.09.01,4307,, +2001.08.31,31-Aug-01,2001,Unprovoked,BAHAMAS,Abaco Islands,North of Grand Cay,Spearfishing,Nick Raich,M,44,Torso lacerated,N,13h30,3 m [10'] bull shark,G. Atkinson,2001.08.31-Raich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.31-Raich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.31-Raich.pdf,2001.08.31,2001.08.31,4306,, +2001.08.29,29-Aug-01,2001,Unprovoked,USA,Florida,"Coquina Beach, Anna Maria Island, Manatee County",Standing,Kristi Herzberg,F,29,Punctures & lacerations on elbow & forearm,N,13h30,,"Sarasota Herald-Tribune, 8/31/2001",2001.08.29-Herzberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.29-Herzberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.29-Herzberg.pdf,2001.08.29,2001.08.29,4305,, +2001.08.27,27-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,William Goettel,M,69,Heel lacerated,N,16h20,,"S. Petersohn, GSAF; CNN; M.I. Johnson, Daytona Beach News Journal, 8/28/2001, p.1A",2001.08.27-Goettel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.27-Goettel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.27-Goettel.pdf,2001.08.27,2001.08.27,4304,, +2001.08.26,26-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie Boarding,Ben Gibbs,M,18,Thigh & foot bitten,N,16h00,,"Miami Herald, 8/26/2001; S. Mussenden, Orlando Sentinel, 8/26/2002, p.B1",2001.08.26-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.26-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.26-Gibbs.pdf,2001.08.26,2001.08.26,4303,, +2001.08.25,25-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie Boarding,male,M,18,Upper left thigh & right foot bitten,N,14h00,,"S. Petersohn, Miami Herald, 8/26/2001",2001.08.25-boogie-boarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.25-boogie-boarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.25-boogie-boarder.pdf,2001.08.25,2001.08.25,4302,, +2001.08.22,22-Aug-01,2001,Unprovoked,USA,Florida,"Daytona, Volusia County ",Surfing,Lowell Lutz,M,17,Foot lacerated,N,16h20,a small shark,"M. Giusti, Daytona Beach News Journal, 8/23/2001, p.1A",2001.08.22-Lutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.22-Lutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.22-Lutz.pdf,2001.08.22,2001.08.22,4301,, +2001.08.21,21-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Omar Oyarce,M,27,Thigh lacerated,N,16h00,,"S. Petersohn, GSAF; L.Lelis, Orlando Sentinel, 8/22/2001, p.D.1",2001.08.21-Oyarce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.21-Oyarce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.21-Oyarce.pdf,2001.08.21,2001.08.21,4300,, +2001.08.19.c,19-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Robert Kurrek,M,32,Cuts on right foot,N,13h14,,"S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.19.c-Kurrek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.c-Kurrek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.c-Kurrek.pdf,2001.08.19.c,2001.08.19.c,4299,, +2001.08.19.b,19-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Becky Chapman,F,17,Lacerations to lower leg,N,13h06,,"E. Ritter & S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; L.Lelis, Orlando Sentinel, 8/22/2001, p.D.1",2001.08.19.b-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.b-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.b-Chapman.pdf,2001.08.19.b,2001.08.19.b,4298,, +2001.08.19.a,19-Aug-01,2001,Unprovoked,USA,Florida,"Wilbur-by-the-Sea, Volusia County",Surfing,female,F,17,Left foot lacerated,N,11h20,,"S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.19.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.a-girl.pdf,2001.08.19.a,2001.08.19.a,4297,, +2001.08.18.c,18-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jeff White,M,20,Cuts on right foot,N,12h30,Possibly a blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.18.c-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.c-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.c-White.pdf,2001.08.18.c,2001.08.18.c,4296,, +2001.08.18.b,18-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jaison Valentin,M,19,Back of left hand gashed,N,12h05,"3' shark, possibly a blacktip or spinner shark","S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.18.b-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.b-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.b-Valentine.pdf,2001.08.18.b,2001.08.18.b,4295,, +2001.08.18.a,18-Aug-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Dylan Feindt,M,19,Left ankle bitten,N,10h00,"Blacktip shark, 5' to 6' ","S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.18.a-Feindt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.a-Feindt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.a-Feindt.pdf,2001.08.18.a,2001.08.18.a,4294,, +2001.08.16,16-Aug-01,2001,Unprovoked,BAHAMAS,Grand Bahama Island,"High Rock, 25 to 30 miles east of Freeport",Spearfishing,Kent Bonde,M,43,Calf bitten,N,16h00,1.9 m [6.5'] bull shark,"E. Ritter, GSAF; 8/17/2001, p.A9",2001.08.16-Bonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.16-Bonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.16-Bonde.pdf,2001.08.16,2001.08.16,4293,, +2001.08.12,12-Aug-01,2001,Unprovoked,THAILAND,Rayong Province,Laem Mae Pim Beach,Fell off banana boat,O. Jaimaung & friend,M,21 & ?,Legs bitten,N,,3 m [10'] shark,O. Jaimuang,2001.08.12-Jaimuang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.12-Jaimuang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.12-Jaimuang.pdf,2001.08.12,2001.08.12,4292,, +2001.08.05,05-Aug-01,2001,Unprovoked,USA,South Carolina,"Near 70th Avenue, Myrtle Beach, Horry County",,female,F,,Toe bitten,N,,,"C. Creswell, GSAF",2001.08.05-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.05-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.05-female.pdf,2001.08.05,2001.08.05,4291,, +2001.08.04,04-Aug-01,2001,Unprovoked,BAHAMAS,Grand Bahama Island,Freeport,Swimming,Krishna Thompson,M,36,"Leg bitten, later surgically amputated above the knee",N,10h20,,"Orlando Sentinel, 8/7/2001, p.D3; 8/8/2001, p.D2",2001.08.04-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.04-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.04-Thompson.pdf,2001.08.04,2001.08.04,4290,, +2001.08.03,03-Aug-01,2001,Boat,ITALY,,Rimini,Fishing,boat; occupants: T & G Longhi,,,No Injury to occupants,N,,,MEDSAF,2001.08.03-Longhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.03-Longhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.03-Longhi.pdf,2001.08.03,2001.08.03,4289,, +2001.07.26,26-Jul-01,2001,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",,female,F,,Survived,N,,,SAF,2001.07.26-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.26-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.26-female.pdf,2001.07.26,2001.07.26,4288,, +2001.07.25,25-Jul-01,2001,Unprovoked,USA,Florida,"Taverniier, Monroe County",,male,M,,Minor injury,N,16h00,,"Key West Citizen, 7/26/2001",2001.07.25-FloridaKeys-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.25-FloridaKeys-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.25-FloridaKeys-male.pdf,2001.07.25,2001.07.25,4287,, +2001.07.24,24-Jul-01,2001,Unprovoked,USA,Florida,"Marathon , Monroe County",,female,F,,2 bites behind knee,N,,Nurse shark,"Key West Citizen, 7/26/2001",2001.07.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.24-female.pdf,2001.07.24,2001.07.24,4286,, +2001.07.21,21-Jul-01,2001,Boat,USA,Massachusetts,Chatham Island,Fishing,"boat, occupants: Joseph Fitzback & 6 passengers",,,No Injury to occupants; shark bumped the boat ,N,,"Mako shark, 14' ",GSAF,2001.07.21-Massachusetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.21-Massachusetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.21-Massachusetts.pdf,2001.07.21,2001.07.21,4285,, +2001.07.15.b,15-Jul-01,2001,Unprovoked,USA,Florida,"Santa Rosa Island, Escambia County",Surfing,Michael Waters ,M,48,Left foot & heel lacerated,N,14h30,,"CNN; Pensacola News Journal; R. Suriano, Otlando Sentinel, 7/17/2001, p.D.1",2001.07.15.b-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.b-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.b-Waters.pdf,2001.07.15.b,2001.07.15.b,4284,, +2001.07.15.a,15-Jul-01,2001,Unprovoked,USA,Florida,"Amelia Island, Nassau County",Boogie boarding,Tim Flanigan,M,18,Foot lacerated,N,14h30,0.9 m [3'] shark,"The Enquirer (Cincinnati), 7/17/2001 ",2001.07.15.a-Flanigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.a-Flanigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.a-Flanigan.pdf,2001.07.15.a,2001.07.15.a,4283,, +2001.07.06.b,06-Jul-01,2001,Unprovoked,MEXICO,Baja California,Ensenada,Surfing,Tim Fabel,M,42,Foot bitten,N,Evening,,KGTV,2001.07.06.b-Fabel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.b-Fabel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.b-Fabel.pdf,2001.07.06.b,2001.07.06.b,4282,, +2001.07.06.a,06-Jul-01,2001,Unprovoked,USA,Florida,Gulf Islands National Seashore,Swimming,Jesse Arbogast,M,8,"Arm severed, surgically reattached",N,Dusk,"Bull shark, 2.3 m [7.5'] ","E. Ritter, GSAF",2001.07.06.a-Arbogast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.a-Arbogast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.a-Arbogast.pdf,2001.07.06.a,2001.07.06.a,4281,, +2001.07.03,03-Jul-01,2001,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County ",,,,,Hand bitten,N,,,"C. Creswell, GSAF",2001.07.03-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.03-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.03-SouthCarolina.pdf,2001.07.03,2001.07.03,4280,, +2001.07.00,Jul-01,2001,Unprovoked,USA,Georgia,"Jekyll Island, Glynn County",Floating face-down in knee-deep water,John Davis,M,35,2-inch cut on dorsum of left foot,N,18h30,,"Atlanta Journal-Constitution, 9/5/2001; Florida Times-Union, 9/5/2001",2001.07.00-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.00-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.00-Davis.pdf,2001.07.00,2001.07.00,4279,, +2001.06.12,12-Jun-01,2001,Unprovoked,USA,Texas,Padre Island National Seashore,Swimming,Jared Black,M,14,Leg lacerated,N,,1.5 m [5'] shark,"Houston Chronicle, 6/17/2001",2001.06.12-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.12-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.12-Black.pdf,2001.06.12,2001.06.12,4278,, +2001.06.10,10-Jun-01,2001,Provoked,USA,California,Catalina Island,Spearfishing,Bill McNair,M,52,"No injury. Shark made threat display, then diver shot the shark PROVOKED INCIDENT",N,09h00,"White shark, 2.4 m to 3 m [8' to 10'] ","R. Collier, GSAF",2001.06.10-McNair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.10-McNair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.10-McNair.pdf,2001.06.10,2001.06.10,4277,, +2001.06.09,09-Jun-01,2001,Invalid,AUSTRALIA,New South Wales,Lord Howe Island (island group 440 miles northeast of Sydney),Hiking on the beach,Arthur Applet,M,75,Remains recovered from gut of a 3.7 m [12'] tiger shark,Y,,,Times Online,2001.06.09-Applet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.09-Applet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.09-Applet.pdf,2001.06.09,2001.06.09,4276,, +2001.06.03,03-Jun-01,2001,Unprovoked,USA,South Carolina,"Off 21st Avenue, Isle of Palms, Charleston County",Wading,Mary Pound,F,29,3 puncture wounds on each side of her left hand,N,Shortly before 13h00,2' shark,"C. Creswell, GSAF, Charleston Post & Courier, 6/4/2001",2001.06.03-MaryPound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.03-MaryPound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.03-MaryPound.pdf,2001.06.03,2001.06.03,4275,, +2001.05.29,29-May-01,2001,Unprovoked,USA,Texas,Galveston Island,,male,M,16,Survived,N,,,sharkattacks.com,2001.05.29-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.29-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.29-Galveston.pdf,2001.05.29,2001.05.29,4274,, +2001.05.23 ,23-May-01,2001,Unprovoked,USA,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Swimming,Tripp Choate,M,11,Shin lacerated,N,,1.2 m to 1.5 m [4.5' to 5'] shark,"C. Creswell, GSAF",2001.05.23-Choate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.23-Choate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.23-Choate.pdf,2001.05.23 ,2001.05.23 ,4273,, +2001.05.20,20-May-01,2001,Unprovoked,USA,South Carolina,"Fripp Island, Beaufort County",Swimming,Michael Heidenreich,M,,5.5-inch laceration on calf,N,19h00,,"Charlotte Observer, 5/23/2001, p.5B; Greenville News, 5/26/2001",2001.05.20-Heidenreich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.20-Heidenreich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.20-Heidenreich.pdf,2001.05.20,2001.05.20,4272,, +2001.05.18,18-May-01,2001,Provoked,PHILIPPINES,Zamboanga del Sur Province,,Shark fishing,Amir Badi,M,24,Arm bitten PROVOKED INCIDENT,N,,,AFP,2001.05.18-Badi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.18-Badi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.18-Badi.pdf,2001.05.18,2001.05.18,4271,, +2001.05.11,11-May-01,2001,Invalid,MADAGASCAR,,Shipwrecked Ferry M/V Samsonnette,,French national,M,,Fatal or drowned & remains scavenged by shark,Y,,,GDACS (Global Disaster Alert & Coordination System),2001.05.11-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.11-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.11-Madagascar.pdf,2001.05.11,2001.05.11,4270,, +2001.05.08,08-May-01,2001,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Surfing,David van Staden,M,26,Leg bitten,N,,"White shark, 2.7 m to 3 m [9' to 10'] ","East London Daily Dispatch, 5/9/2001",2001.05.08-Van Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.08-Van Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.08-Van Staden.pdf,2001.05.08,2001.05.08,4269,, +2001.05.04,04-May-01,2001,Unprovoked,AUSTRALIA,New South Wales,Noraville,Surfing,Michael Valentine,M,33 or 37,"Chest lacerated, surfboard bitten",N,17h45,,"Newcastle Herald; Sunday Mail (QLD), 5/6/2001, p.46; Sunday Territorian, 5/6/2001, p.8",2001.05.04-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.04-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.04-Valentine.pdf,2001.05.04,2001.05.04,4268,, +2001.05.03,03-May-01,2001,Unprovoked,USA,Florida,"Jacksonville, Duval County",Surfing,John McCall,M,45,Foot lacerated ,N,19h00,1.2 m to 1.5 m [4' to 5'] shark,"J. Eager, scubaradio.com; J. Gaudin, GSAF",2001.05.03-McCall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.03-McCall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.03-McCall.pdf,2001.05.03,2001.05.03,4267,, +2001.05.00,May-01,2001,Unprovoked,FIJI,Taveuni,,"Spearfishing, carrying his catch",male,M,,FATAL,Y,,,FijiTV,2001.05.00-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.00-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.00-Fiji.pdf,2001.05.00,2001.05.00,4266,, +2001.04.28,28-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,male,M,14,4 small lacerations on lower right leg,N,15h49,,"S. Petersohn, GSAF",2001.04.28-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.28-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.28-NV-NewSmyrnaBeach.pdf,2001.04.28,2001.04.28,4265,, +2001.04.13.b,13-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jonathan Bush,M,16,Foot & ankle lacerated,N,11h00,,"J. Eager, scubaradio.com; Orlando Sentinel, April 14, 2001, p.A1",2001.04.13.b-Bush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.b-Bush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.b-Bush.pdf,2001.04.13.b,2001.04.13.b,4264,, +2001.04.13.a,13-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Andrew Barron,M,12,Right foot & ankle lacerated,N,10h55,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.13.a-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.a-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.a-Barron.pdf,2001.04.13.a,2001.04.13.a,4263,, +2001.04.12.e,12-Apr-01,2001,Unprovoked,USA,Florida,"Waveland Beach, Hutchinson Island, St Lucie County",,male,M,mid-30s,Right ankle & lower leg lacerated,N,16h00,,"M. Large, Stuart News, 4/13/2001 ",2001.04.12.e-WavelandBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.e-WavelandBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.e-WavelandBeach.pdf,2001.04.12.e,2001.04.12.e,4262,, +2001.04.12.d,12-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Richard Spence,M,38,Foot & ankle lacerated,N,16h45,,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.d-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.d-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.d-Spence.pdf,2001.04.12.d,2001.04.12.d,4261,, +2001.04.12.c,12-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Emmet Browning,M,21,Small cuts on big & pinky toes of left foot,N,16h05,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.c-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.c-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.c-Browning.pdf,2001.04.12.c,2001.04.12.c,4260,, +2001.04.12.b,12-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body boarding,"John Fasio, Jr ",M,12,Foot & ankle lacerated,N,12h34,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.b-Fasio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.b-Fasio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.b-Fasio.pdf,2001.04.12.b,2001.04.12.b,4259,, +2001.04.12.a,12-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach / Waveland, Volusia County",Surfing,Richard Lloyd,M,22,Foot lacerated,N,11h53,Possibly a 1.5 m [5'] blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.a-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.a-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.a-Lloyd.pdf,2001.04.12.a,2001.04.12.a,4258,, +2001.04.11.d,11-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Elren Thresher,M,19,Minor cuts on right heel & foot,N,8:04 PM,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; scubaradio.com; Orlando Sentinel, 4/14/2001, p.A1",2001.04.11.d-Thresher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.d-Thresher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.d-Thresher.pdf,2001.04.11.d,2001.04.11.d,4257,, +2001.04.11.c,11-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach / Waveland, Volusia County",Surfing,Jordan Carter,M,22,Lacerations to top & bottom of left foot,N,12h46,,"S. Petersohn, GSAF",2001.04.11.c-NV-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.c-NV-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.c-NV-Carter.pdf,2001.04.11.c,2001.04.11.c,4256,, +2001.04.11.a,11-Apr-01,2001,Unprovoked,USA,Hawaii,"Ewa Beach, O'ahu",Surfing,Gilbert Dano,M,,Minor punctures & lacerations on left hand ,N,07h00,"1 m shark, possibly whitetip reef shark",Honolulu Star Bulletin,2001.04.11.a-Dano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.a-Dano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.a-Dano.pdf,2001.04.11.a,2001.04.11.a,4255,, +2001.04.10,10-Apr-01,2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,a surfer from Port Orange,,16,Foot lacerated,N,,Possibly a juvenile blacktip or spinner shark,"Orlando Sentinel, 4/14/2001, p.A1",2001.04.10-PortOrangeSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.10-PortOrangeSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.10-PortOrangeSurfer.pdf,2001.04.10,2001.04.10,4254,, +2001.04.08.b,08-Apr-01,2001,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape St. Francis,Surfing,Dunstan Hogan,M,46,"Thigh, hip & buttock bitten",N,09h30,"White shark, 2.7 m [9'] ","M. Smale, P.E. Museum ",2001.04.08.b-Hogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.b-Hogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.b-Hogan.pdf,2001.04.08.b,2001.04.08.b,4253,, +2001.04.08.a,08-Apr-01,2001,Provoked,AUSTRALIA,New South Wales,Bronte Beach,Snorkeling,Andranik Markossian,M,,Wrist lacerated PROVOKED INCIDENT,N,,Wobbegong shark,"ABC News; Northern Territory News, 4/9/2001, p.2",2001.04.08.a-Markossian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.a-Markossian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.a-Markossian.pdf,2001.04.08.a,2001.04.08.a,4252,, +2001.04.05,05-Apr-01,2001,Unprovoked,USA,Florida,"Bethune Beach, south of New Smyrna Beach, Volusia County",Standing alongside surfboard,Jason Bartholem,M,26,Minor lacerations to dorsum of left foot,N,14h45,"""small shark""","S. Petersohn, GSAF",2001.04.05-Bartholem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.05-Bartholem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.05-Bartholem.pdf,2001.04.05,2001.04.05,4251,, +2001.04.02.b,02-Ap-2001,2001,Unprovoked,BRAZIL,Rio Grande de Norte,"Praia de Camapum, Macau",Batin,A.C.C.,F,12,Left thigh bitten,N,,,M. Szpilman,2001.04.02.b-ACC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.b-ACC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.b-ACC.pdf,2001.04.02.b,2001.04.02.b,4250,, +2001.04.02.a,02-Apr-01,2001,Unprovoked,AUSTRALIA,New South Wales,Nambucca River Entrance,Surfing,Richard Ellis,M,40,Calf bitten,N,10h00,Bronze whaler shark,"T. Peake, GSAF",2001.04.02.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.a-Ellis.pdf,2001.04.02.a,2001.04.02.a,4249,, +2001.03.23,23-Mar-01,2001,Unprovoked,USA,Hawaii,"Sandy Beach, Oahu",Body-boarding,Michael Mendez,M,,"Minor cuts on left hand, body board bitten",N,14h40,,Hawaii Department of Land and Natural Resources,2001.03.23-Mendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.23-Mendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.23-Mendez.pdf,2001.03.23,2001.03.23,4248,, +2001.03.09,09-Mar-01,2001,Unprovoked,USA,Florida,"Coral Cove Park, Jupiter Island, Martin County",Surfing,Chad Hooker,M,,Fingers & hand lacerated,N,,"Spinner shark, 1.2 m to 1.5 m [4' to 5'] ",Shark Survivor. Inc.,2001.03.09-Hooker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.09-Hooker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.09-Hooker.pdf,2001.03.09,2001.03.09,4247,, +2001.03.08,08-Mar-01,2001,Invalid,BRAZIL,Bahia,Nova Vicosa,Attempting to catch a crocodile,V.A.F.,M,12,Lacerations below the knee,N,,Shark involvement not confirmed,M. Szpilman,2001.03.08-VAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.08-VAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.08-VAF.pdf,2001.03.08,2001.03.08,4246,, +2001.03.03,03-Mar-01,2001,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Carlo Alberto Brasileiro,M,20,FATAL,Y,,,"JC, 3/7/2001; Orlando Sentinel, 3/9/2001, p.A13",2001.03.03-Brasileiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.03-Brasileiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.03-Brasileiro.pdf,2001.03.03,2001.03.03,4245,, +2001.03.00,Mar-01,2001,Sea Disaster,CARIBBEAN SEA,,Between St. Maarten & Anguilla,Sinking of the 40' Esperanza off St. Maartin with 36 refugees on board,Unknown,,,"Human remains recovered in shark caught off Anguilla, probable scavenging on drowned body",Y,,"Tiger shark, 8' ","C. Johansson, GSAF",2001.03.00-Anguilla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.00-Anguilla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.00-Anguilla.pdf,2001.03.00,2001.03.00,4244,, +2001.02.26,26-Feb-01,2001,Boat,AUSTRALIA,Western Australia,Albany (incident took place 200 metres from swimmers),Fishing for whiting,"5 m boat, occupants: Don & Margaret Stubbs",,,No injury to occupants,N,,"White shark, 5 m [16.5'] ",Illwara Mercury,2001.02.26-BOAT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.26-BOAT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.26-BOAT.pdf,2001.02.26,2001.02.26,4243,, +2001.02.11,11-Feb-01,2001,Invalid,MALAYSIA,Off the western coast of peninsular Malaysia,Pulau Pangkor (Pangkor Island),Unknown,female,F,,Bones recovered by fishermen in 300-kg [662-lb] white sharks gut,Y,,,Associated Press,2001.02.11-Pangkor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.11-Pangkor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.11-Pangkor.pdf,2001.02.11,2001.02.11,4242,, +2001.02.04,04-Feb-01,2001,Unprovoked,AUSTRALIA,New South Wales,Broome Head,Surfing,Mark Butler,M,40,Leg bitten,N,16h15,"Bronze whaler shark, 2.5 m [8.25'] k","Daily Dispatch, 2/6/2001",2001.02.04-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.04-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.04-Butler.pdf,2001.02.04,2001.02.04,4241,, +2001.01.24.R,Reported 24-Jan-2001,2001,Boat,AUSTRALIA,New South Wales,South West Rocks,Kayaking,Mark Elkinton,M,35,"No injury, shark ramme d & bit kayak",N,,5 m shark,"Daily Telegraph 1/24/2001, p.19",2001.01.24.R-Elkinton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.R-Elkinton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.R-Elkinton.pdf,2001.01.24.R,2001.01.24.R,4240,, +2001.01.24,24-Jan-01,2001,Unprovoked,CUBA,Holquin Province,Off Blau Costa Verde resort,Swimming,Mrs. Soile Hamalainen,F,55,Left arm bitten,N,,2 m [6.75'] shark,"Trip Advisor, et al.",2001.01.24.a-Hamalainen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.a-Hamalainen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.a-Hamalainen.pdf,2001.01.24,2001.01.24,4239,, +2001.01.21 ,21-Jan-01,2001,Boat,AUSTRALIA,South Australia,Adelaide,Fishing,"6 m boat, occupants John Winslet & customers",,,No injury to occupants,N,,"White shark, 4.3 m [14'] ","Northern Territory News, 1/22/2001, p.8",2001.01.21-FishingBoats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.21-FishingBoats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.21-FishingBoats.pdf,2001.01.21 ,2001.01.21 ,4238,, +2001.01.09,09-Jan-01,2001,Unprovoked,USA,California,"Sunset Cliffs, San Diego",Surfing,Larry McCash,M,,"Foot bruised, board dinged",N,,"1.8 m to 2.4 m [6' to 8'] ""black finned shark""",M. Sanders,2001.01.09-McCash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.09-McCash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.09-McCash.pdf,2001.01.09,2001.01.09,4237,, +2001.01.06,06-Jan-01,2001,Boat,NEW ZEALAND,North Island,Sandy Bay/Whananaki,Kayaking,Dr. Michael Hogan ,M,,"No injury, kayak bitten",N,,White shark,C. Duffy,2001.01.06-MikeHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.06-MikeHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.06-MikeHogan.pdf,2001.01.06,2001.01.06,4236,, +2000.12.24,24-Dec-00,2000,Unprovoked,AUSTRALIA,Queensland,Flinders Cay,Scuba diving,male,M,23,Hand bitten,N,,,"Daily Telegraph, 12/26/2000, p.7",2000.12.24-FlindersDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.24-FlindersDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.24-FlindersDiver.pdf,2000.12.24,2000.12.24,4235,, +2000.12.12,12-Dec-00,2000,Unprovoked,FIJI,Taveuni,Garden Island Resort,Swimming back from anchored sailboat,Michael Loxton,M,47,"FATAL, leg severed ",Y,14h30,6 m [20'] shark,multiple internet sources,2000.12.12-Loxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.12-Loxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.12-Loxton.pdf,2000.12.12,2000.12.12,4234,, +2000.12.11,11-Dec-00,2000,Boat,AUSTRALIA,South Australia,"3 km off Port Victoria, Yorke Peninsula",Fishing for whiting,"3.5 -metre fibreglass boat, occupants: Harry Ulbrich and another fisherman",,,No injury to occupants,N,,"White shark, 4.5 m [14'9""] ","The Dominion, 12/13/2000; Northern Territory News, 12/13/2000, p.9",2000.12.11- boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.11- boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.11- boat.pdf,2000.12.11,2000.12.11,4233,, +2000.12.05,05-Dec-00,2000,Unprovoked,CANADA,New Brunswick,Bay of Fundy,Diving for sea urchins,Daniel MacDonald,M,30,No injury,N,,"Porbeagle shark, 3 m [10']rk","A. Martin; Telegraph-Journal, 12/8/2000",2000.12.05-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.05-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.05-MacDonald.pdf,2000.12.05,2000.12.05,4232,, +2000.12.03,03-Dec-00,2000,Unprovoked,AUSTRALIA,Queensland,"Sykes Reef, Great Barrier Reef",Spearfishing,Chris Hogan,M,38,Left elbow and forearm bitten,N,09h30,"Bronze whaler shark, 2.5 m [8.25'] ","N. Leys; Daily Telegraph, 12/4/2000.p.3",2000.12.03-ChrisHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.03-ChrisHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.03-ChrisHogan.pdf,2000.12.03,2000.12.03,4231,, +2000.12.00,Dec-00,2000,Unprovoked,NEW ZEALAND,Cook Islands,"Arorangi, Rarotonga",Surfing,female,F,,FATAL,Y,,,"C. Tini, R.D. Weeks, GSAF",2000.12.00 - Arorangi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.00 - Arorangi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.00 - Arorangi.pdf,2000.12.00,2000.12.00,4230,, +2000.11.21,21-Nov-00,2000,Unprovoked,AUSTRALIA,Queensland,Orpheus Island,Diving (shell maintenance),George Lyons,M,28,"No injury, wetsuit & swimfin torn",N,,"Tiger shark, 4 m ","Courier-Mail, 11/24/2000, p.3",2000.11.21-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.21-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.21-Lyons.pdf,2000.11.21,2000.11.21,4229,, +2000.11.20,20-Nov-00,2000,Invalid,AUSTRALIA,South Australia,Ceduna,Shipwrecked,Danny Thorpe,M,47,"Missing, thought to have been taken by a shark",Y,,Shark involvement not confirmed,"T. Peake, GSAF",2000.11.20-Thorpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.20-Thorpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.20-Thorpe.pdf,2000.11.20,2000.11.20,4228,, +2000.11.18,17-Nov-00,2000,Unprovoked,USA,Florida,"Bonita Springs, Lee County",Swimming,Colin Shadforth,M,73,Right calf lacerated,N,12h00,1.2 m to 1.8 m [4' to 6'] shark,"South Florida Sun Sentinel, 11/19/2000, p.6B",2000.11.18-Shadforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.18-Shadforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.18-Shadforth.pdf,2000.11.18,2000.11.18,4227,, +2000.11.10,10-Nov-00,2000,Invalid,USA,Florida,"Vaughn Beach, Flagler County",Walking,Eileen Skeie,F,27,No injury,N,,"Bull shark, 1.5 m to 1.8 m [5' to 6'] ",E. Skeie,2000.11.10-Skeie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.10-Skeie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.10-Skeie.pdf,2000.11.10,2000.11.10,4226,, +2000.11.06.b,06-Nov-00,2000,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe Beach, Perth",Swimming,Dirk Avery,M,52,Leg & feet lacerated,N,06h30,"White shark, 4.9 m [16'] ","B. May, AAP; G. Thiel",2000.11.06.b-Avery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.b-Avery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.b-Avery.pdf,2000.11.06.b,2000.11.06.b,4225,, +2000.11.06.a,06-Nov-00,2000,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe Beach, Perth",Swimming,Ken Crew,M,49,"FATAL, torso bitten, leg severed ",Y,06h30,"White shark, 5 m [16.5'] ","B. May, AAP; G. Thiel",2000.11.06.a-KenCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.a-KenCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.a-KenCrew.pdf,2000.11.06.a,2000.11.06.a,4224,, +2000.11.04,04-Nov-00,2000,Unprovoked,USA,California,"1/4 to 1/2 m north of the jetty at Bunkers, Eureka, Humboldt County",Surfing,Casey Stewman,M,27,Both thighs bitten,N,16h30,"White shark, 2.4 m to 3 m [8' to 10'] ","J. Ramsay, California Fish & Game; R. Collier",2000.11.04-Stewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.04-Stewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.04-Stewman.pdf,2000.11.04,2000.11.04,4223,, +2000.10.29,29-Oct-00,2000,Boat,AUSTRALIA,Queensland,Peel Island,Fishing ,"boat, occupant: Paul Kelly",,31,"No Injury to occupant, shark holed and sank boat",N,22h00,White shark,"T. Peake, GSAF",2000.10.29-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.29-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.29-Kelly.pdf,2000.10.29,2000.10.29,4222,, +2000.10.20,20-Oct-00,2000,Unprovoked,USA,Florida,"Fort Pierce Inlet State Park, St Lucie County",Surfing,Jason Licamele,M,23,Leg lacerated,N,18h00,,"Stuart News, 10/21/2000",2000.10.20-Licamele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.20-Licamele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.20-Licamele.pdf,2000.10.20,2000.10.20,4221,, +2000.10.18,18-Oct-00,2000,Unprovoked,USA,Hawaii,Olowalu,Swimming / snorkeling,Henrietta Musselwhite,F,56,Right side of back / torso lacerated,N,11h20,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ",GSAF,2000.10.18-Musselwhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.18-Musselwhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.18-Musselwhite.pdf,2000.10.18,2000.10.18,4220,, +2000.10.14,14-Oct-00,2000,Unprovoked,USA,Florida,"South Beach, Sebastian, Indian River County",Swimming,Norman Payne,M,69,Right hand lacerated,N,15h30,,"D. Robinson, Vero Beach Press Journal, 10/17/2000, p.A4",2000.10.14-Payne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.14-Payne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.14-Payne.pdf,2000.10.14,2000.10.14,4219,, +2000.10.09,09-Oct-00,2000,Unprovoked,USA,Florida,"Lake Worth Inlet/West Palm Beach, Palm Beach County",Surfing,Matt Kraskiewicz,M,17,Foot lacerated,N,Morning,2.1 to 2.4 m [7' to 8'] shark,"South Florida Sun-Sentinel, 10/11/2000",2000.10.09-Kraskiecwicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.09-Kraskiecwicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.09-Kraskiecwicz.pdf,2000.10.09,2000.10.09,4218,, +2000.10.06.b,06-Oct-00,2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Austin White,M,23,Fingers lacerated,N,14h30,"Blacktip shark, 2' ","SharkSurvivor.com; M.I.Johnson, Daytona Beach News Journal, 10/7/2000, p.1A; Daytona News Journal, 10/8/2000, p.4B",2000.10.06.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.b-White.pdf,2000.10.06.b,2000.10.06.b,4217,, +2000.10.06.a,06-Oct-00,2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Taylor Holley,M,11,Right foot & heel lacerated,N,12h48,,"S. Petersohn, GSAF; M.I.Johnson, Daytona Beach News Journal, 10/7/2000, p.1A; Bradenton Herald 10/8/2000, ",2000.10.06.a-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.a-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.a-Holley.pdf,2000.10.06.a,2000.10.06.a,4216,, +2000.10.02,02-Oct-00,2000,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Surfing,Mark Taylor,M,24,Upper left arm lacerated,N,16h30,,"The State (Columbia), 10/6/2000, p.A6",2000.10.02-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.02-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.02-Taylor.pdf,2000.10.02,2000.10.02,4215,, +2000.09.29,29-Sep-00,2000,Unprovoked,USA,California,"Mavericks, Half Moon Bay, San Mateo County",Sitting on surfboard,Peck Euwer,M,,No injury,N,09h00,"White shark, 4.3 m [14']","P. Euwer, Ocean.com; D.W. Cole & M. DesJardins, Santa Cruz Sentinel",2000.09.29-Euwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.29-Euwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.29-Euwer.pdf,2000.09.29,2000.09.29,4214,, +2000.09.25,25-Sep-00,2000,Unprovoked,AUSTRALIA,South Australia,"Black Point, Eyre Peninsula",Surfing,Jevan Wright,M,17,FATAL,Y,13h00,White shark,"T. Peake, GSAF",2000.09.25-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.25-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.25-Wright.pdf,2000.09.25,2000.09.25,4213,, +2000.09.24,24-Sep-00,2000,Unprovoked,AUSTRALIA,South Australia,Cactus Beach near Penong,Surfing,Cameron Bayes,M,25,FATAL,Y,07h30,"White shark, 4 m to 5 m [13' to 16.5'] ","T. Peake, GSAF",2000.09.24-Bayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.24-Bayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.24-Bayes.pdf,2000.09.24,2000.09.24,4212,, +2000.09.18,19-Sep-00,2000,Provoked,AUSTRALIA,New South Wales,Wollongong,Fell onto dead shark,boy,M,12,Foot lacerated from toe to heel when he tripped on shark during fishing competition PROVOKED INCIDENT,N,,100-kg [221-lb] dead blue shark,Illwara Mercury. 9/19/2000,2000.09.18-boy_provoked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.18-boy_provoked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.18-boy_provoked.pdf,2000.09.18,2000.09.18,4211,, +2000.09.16.b,16-Sep-00,2000,Unprovoked,OKINAWA,Miyako Island,Sunayama Beach,Surfing,Takayuki Miura,M,31, FATAL,Y,17h00,"White shark, 2.5 m ",M. Shimbun; japanupdate.com,2000.09.16.b-Miura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.b-Miura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.b-Miura.pdf,2000.09.16.b,2000.09.16.b,4210,, +2000.09.16.a,16-Sep-00,2000,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",,,,,Non-fatal,N,,,"C. Creswell, GSAF",2000.09.16.a-NV-IsleOfPalms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.a-NV-IsleOfPalms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.a-NV-IsleOfPalms.pdf,2000.09.16.a,2000.09.16.a,4209,, +2000.09.15,15-Sep-00,2000,Unprovoked,USA,Florida,"Fort Pierce Inlet, St Lucie County",Standing / surfing,Gary Smith,M,49,Right lower leg & ankle lacerated,N,18h00,,"SharkSurvivor.com.; The Stuart (FL) News, 9/19/2000",2000.09.15-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.15-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.15-Smith.pdf,2000.09.15,2000.09.15,4208,, +2000.09.12,12-Sep-00,2000,Unprovoked,USA,Florida,"Sebastian Inlet, Indian River or Brevard County",Surfing,Brenda Fried,F,26,Puncture wounds on knee,N,12h00,,"SharkSurvivor.com; Florida Today, 9/13/2000",2000.09.12-Fried.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.12-Fried.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.12-Fried.pdf,2000.09.12,2000.09.12,4207,, +2000.09.11,11-Sep-00,2000,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Swimming / Body surfing,Jason Armstrong,M,25,Finger lacerated,N,13h20,60 cm to 90 cm [2' to 3'] shark,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/12/2000, p.1.A; Orlando Sentinel, 9/12/2000, p.D2",2000.09.11-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.11-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.11-Armstrong.pdf,2000.09.11,2000.09.11,4206,, +2000.09.10.b,10-Sep-00,2000,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Swimming,male,M,8,Minor injury to arm and hand,N,17h42,,"Fort Pierce Tribune, 9/12/2000",2000.09.10.b-Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.b-Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.b-Boy.pdf,2000.09.10.b,2000.09.10.b,4205,, +2000.09.10.a,10-Sep-00,2000,Unprovoked,SOUTH AFRICA,Western Cape Province,Dyer Island,Free diving,Gary Adkison,M,48,Swim fin bitten,N,11h00,"White shark, 3.5 m [11.5'] male ","E. Ritter, GSAF",2000.09.10.a-Adkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.a-Adkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.a-Adkinson.pdf,2000.09.10.a,2000.09.10.a,4204,, +2000.09.08.c,08-Sep-00,2000,Unprovoked,TANZANIA,,"Coco Beach, Dar-es-Salaam (Reported as the 5th fatality in 3 months at Coco Beach)",Swimming,Godfrey Msemwa,M,28,FATAL,Y,,Thought to involve a Zambesi shark,E. Matechi; A. Mbogora ,2000.09.08.c-Msemwa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.c-Msemwa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.c-Msemwa.pdf,2000.09.08.c,2000.09.08.c,4203,, +2000.09.08.b,08-Sep-00,2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Terrill Crane,M,40,Left foot lacerated ,N,11h45,1.5 m [5'] shark,"S. Petersohn, GSAF; M. I. Johnson, Daytona Beach News Journal, 9/19/2000, p.1A; Orlando Sentinel, 9/9/2000 , p.D2",2000.09.08.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.b-Crane.pdf,2000.09.08.b,2000.09.08.b,4202,, +2000.09.08.a,08-Sep-00,2000,Unprovoked,REUNION,Saint-Pierre,Pic du Diable ,Surfing,Karim Maan,M,27,Left arm bitten,N,18h05,"Tiger shark, 3 m [10'] ","Clicanoo, le journal de l'Ile de la Runion; Northern Territory News, 9/12/2000, p.6",2000.09.08.a-KarimMaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.a-KarimMaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.a-KarimMaan.pdf,2000.09.08.a,2000.09.08.a,4201,, +2000.09.00.b,Early Sep-2000,2000,Unprovoked,TANZANIA,,"Coco Beach, Dar-es-Salaam",Swimming,,,,FATAL,Y,,Thought to involve a Zambesi shark,T. Thierry,2000.09.00-CocoBeach4.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.00-CocoBeach4.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.00-CocoBeach4.pdf,2000.09.00.b,2000.09.00.b,4200,, +2000.08.31,31-Aug-00,2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Rickey Johnson,M,47,Punctures & lacerations on right foot,N,12h35,A 2' shark was seen in the area by witnesses,"S. Petersohn, GSAF",2000.08.31-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.31-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.31-Johnson.pdf,2000.08.31,2000.08.31,4199,, +2000.08.30,30-Aug-00,2000,Unprovoked,USA,Florida,"Boca Ciega Bay, Tampa, Pinellas County",Jumped into the water,Thaddeus Kubinski,M,69,FATAL,Y,16h00,"Thought to involve a 2.7 m [9'], 400-lb bull shark","E. Ritter, GSAF; Charlotte Observer, 9/1/2000, p.4A; Orlando Sentinel, 8/31/2000, p.A19",2000.08.30-Kubinski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.30-Kubinski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.30-Kubinski.pdf,2000.08.30,2000.08.30,4198,, +2000.08.27.R,Reported 27-Aug-2000,2000,Provoked,USA,Alaska,Prince William Sound,Conducting research,Bruce Wright,M,,Leg bitten by netted shark PROVOKED INCIDENT,N,,Salmon shark,B.A. Wright,2000.08.27.R-BruceWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.27.R-BruceWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.27.R-BruceWright.pdf,2000.08.27.R,2000.08.27.R,4197,, +2000.08.21,21-Aug-00,2000,Unprovoked,USA,North Carolina,"Bouges Bank, Emerald Isle, Carteret County",Swimming out to porpoises ,male,M,,"Severe gash to left hand above wrist, almost severing hand",N,,,"C. Creswell, GSAF; Wilmington Morning Star; Charlotte Observer, 8/23/2000, p.2B",2000.08.21-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.21-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.21-male.pdf,2000.08.21,2000.08.21,4196,, +2000.08.15,15-Aug-00,2000,Unprovoked,USA,Hawaii,"Kanaha Beach, Maui","Windsurfing, but sitting on his board",Jean Alain Goenvec,M,53,Left calf lacerated,N,11h50,"Tiger shark, 3.7 m to 4.5 m [12' to 14'9""] ",Maui.net,2000.08.15-Goenvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.15-Goenvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.15-Goenvec.pdf,2000.08.15,2000.08.15,4195,, +2000.08.13,13-Aug-00,2000,Unprovoked,USA,Florida,"South Jacksonville Beach, Duval County",Surfing / Wading,Jason Wuss,M,27,Minor lacerations to the dorsum of the right foot,N,16h30,juvenile shark,"Florida Times-Union, 8/14/2000; Orlando Sentinel, 8/15/2000, p.D3",2000.08.13-JasonWuss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.13-JasonWuss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.13-JasonWuss.pdf,2000.08.13,2000.08.13,4194,, +2000.08.12,12-Aug-00,2000,Unprovoked,USA,Florida,"St. Augustine, St. Johns County",Standing,Margaret White,F,44,Severely bitten on lower leg ,N,16h45,"Blacktip shark, 2.4 m to 3 m [8' to 10'] ",M. White,2000.08.12-MargaretWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.12-MargaretWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.12-MargaretWhite.pdf,2000.08.12,2000.08.12,4193,, +2000.08.11,11-Aug-00,2000,Invalid,USA,North Carolina,"Emerald Isle, Carteret County",Swimming ,Daniel Macatee,M,,Non-fatal,N,Possibly same incident as 2000.08.21,Shark involvement not confirmed, F. Schwartz,2000.08.11-Macatee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.11-Macatee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.11-Macatee.pdf,2000.08.11,2000.08.11,4192,, +2000.08.10,10-Aug-00,2000,Invalid,USA,Florida,Florida Keys,Attempting to illegally enter the USA,Juan & Alex Bueno,M,23 & 20,Shark involvement probably post-mortem,Y,,,Press clippings,2000.08.10-BuenoBrothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.10-BuenoBrothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.10-BuenoBrothers.pdf,2000.08.10,2000.08.10,4191,, +2000.08.00,Aug-00,2000,Unprovoked,TANZANIA,,"Coco Beach, Dar-es-Salaam",Swimming,,,,FATAL,Y,,Thought to involve a Zambesi shark,T. Thierry,2000.08.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.00-NV-Tanzania.pdf,2000.08.00,2000.08.00,4190,, +2000.07.25,25-Jul-00,2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",,male,M,5,Minor laceration on left leg,N,,,"M. Johnson, Daytona Beach News Journal",2000.07.25-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.25-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.25-male.pdf,2000.07.25,2000.07.25,4189,, +2000.07.22,22-Jul-00,2000,Unprovoked,USA,Florida,"Big Pine Key, Monroe County ",Snorkeling,Andrea Nani,F,45,Leg pinched,N,,"Nurse shark, 1.5 m [5']","E. Ritter, GSAF",2000.07.22-Nani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.22-Nani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.22-Nani.pdf,2000.07.22,2000.07.22,4188,, +2000.07.17,17-Jul-00,2000,Unprovoked,USA,North Carolina,"Oceanic Pier, Wrightsville Beach, New Hanover County",Surfing,Patrick G. Bruff,M,16,Foot lacerated,N,,,"C. Creswell, GSAF; Charlotte Observer, 7/20/2000, p.1A & 8/23/2000, p.2B; F. Schwartz, p.23",2000.07.17-Bruff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.17-Bruff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.17-Bruff.pdf,2000.07.17,2000.07.17,4187,, +2000.07.16.b,16-Jul-00,2000,Unprovoked,USA,North Carolina,"Holden Beach, Brunswick County",Surfing,Tim Poynter,M,14,Minor lacerations on foot,N,,1.8 m [6'] grey-colored shark,"C. Creswell, GSAF; Charlotte Observer, 7/20/2000, p.1A",2000.07.16.b-Poynter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.b-Poynter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.b-Poynter.pdf,2000.07.16.b,2000.07.16.b,4186,, +2000.07.16.a,16-Jul-00,2000,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Shannon Ainslie,M,15,Hand lacerated,N,,,"A. Gifford, GSAF; Orlando Sentinel, 7/19/2000, p.A11 ",2000.07.16.a-Ainslie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.a-Ainslie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.a-Ainslie.pdf,2000.07.16.a,2000.07.16.a,4185,, +2000.07.15.b,15-Jul-00,2000,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape Recife,Surfing,male,M,18,"No injury, flung off board",N,,,"A. Gifford, GSAF",2000.07.15.b-NV-CapeRecife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.b-NV-CapeRecife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.b-NV-CapeRecife.pdf,2000.07.15.b,2000.07.15.b,4184,, +2000.07.15.a,15-Jul-00,2000,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,South of Durban,Surfing,Ian Barnes,M,,No Injury,N,After Dusk,,"A. Gifford, GSAF",2000.07.15.a-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.a-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.a-Barnes.pdf,2000.07.15.a,2000.07.15.a,4183,, +2000.07.12,12-Jul-00,2000,Unprovoked, TONGA,Minerva Reef,Treated at Nuku-alofa,Scuba diving,Christian Eckoff,M,69,Left arm bitten,N,,"Grey reef shark, 2 m [6.75'] ",www.spearfishingsa.co.za,2000.07.12-Eckoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.12-Eckoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.12-Eckoff.pdf,2000.07.12,2000.07.12,4182,, +2000.07.10,10-Jul-00,2000,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,M.A.,M,13,Minor laceration & 3 punctures to right foot,N,15h45,,"S. Petersohn, GSAF; M. I. Johnson; H. Frederick, Daytona Beach News Journal, 7/11/2000, p.1A",2000.07.10-MA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.10-MA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.10-MA.pdf,2000.07.10,2000.07.10,4181,, +2000.07.09,09-Jul-00,2000,Unprovoked,USA,Florida,"Neptune Avenue, Ormond Beach, Volusia County",Swimming ,Anthony Zent,M,41,Knee & calf lacerated,N,18h00,,"S. Petersohn, GSAF: H. Frederick, Daytona Beach News Journal, 7/11/2000, p.1A; Orlando Sentinel, 7/10/2000, p.C3; A. Givens, Orlando Sentinel, 7/11/2000, p.D1",2000.07.09-Zent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.09-Zent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.09-Zent.pdf,2000.07.09,2000.07.09,4180,, +2000.07.07,07-Jul-00,2000,Unprovoked,USA,Texas,"Mustang Island, Corpus Christi",Jumping,Robby Doolittle,M,5,Ankle & foot lacerated,N,,"Lemon shark, 2.1 m to 2.4 m [7' to 8'] ","K. Hastings, Dallas Morning News",2000.07.07-Doolittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.07-Doolittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.07-Doolittle.pdf,2000.07.07,2000.07.07,4179,, +2000.07.06,06-Jul-00,2000,Unprovoked,USA,North Carolina,"Pine Island, Corolla, Currituck County",Playing,Ashley Walker,F,12,Calf lacerated,N,16h30,"Tiger shark, 0.9 m to 1.5 m [3' to 5'] ?","Charlotte Observer, 7/20/2000, p.1A",2000.07.06-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.06-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.06-Walker.pdf,2000.07.06,2000.07.06,4178,, +2000.07.04.b,04-Jul-00,2000,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Niesha Peterson,F,20,Left inner thigh,N,18h00,,"S. Petersohn, GSAF",2000.07.04.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.b-Peterson.pdf,2000.07.04.b,2000.07.04.b,4177,, +2000.07.04.a,04-Jul-00,2000,Unprovoked,USA,Florida,"Artifical reef 3 miles off Manatee Beach, Manatee County","Spearfishing, holding mesh bag with speared fish",Beverly Comstock,F,55,Lower right calf lacerated,N,12h00,"Nurse shark, 1.2 m [4'] ","V. Mannix, Bradenton Herald, 8/3/2000, p.1 ",2000.07.04.a-Comstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.a-Comstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.a-Comstock.pdf,2000.07.04.a,2000.07.04.a,4176,, +2000.07.02.b,02-Jul-00,2000,Unprovoked,USA,Florida,"Smyrna Dunes Park, New Smyrna Beach, Volusia County",Wading,Amber Benningfield,F,13,Left calf & hand lacerated,N,17h00,0.9 m [3'] shark,"S. Petersohn, GSAF; M.Guisti, Daytona Beach News Journal, 7/3/2000, p.6C; Orlando Sentinel, 7/3/2000,p.C3",2000.07.02.b-Benningfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.b-Benningfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.b-Benningfield.pdf,2000.07.02.b,2000.07.02.b,4175,, +2000.07.02.a,02-Jul-00,2000,Unprovoked,USA,Florida,"Smyrna Dunes Park, New Smyrna Beach, Volusia County",Standing,Danielle Shidemantle,F,19,Left thigh lacerated,N,14h45,"0.9 m [3'] shark, probably a blacktip or spinner shark","S. Petersohn; M.Guisti, Daytona Beach News Journal, 7/3/2000, p.6C; Orlando Sentinel, 7/3/2000,p.C3",2000.07.02.a-Shidemantle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.a-Shidemantle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.a-Shidemantle.pdf,2000.07.02.a,2000.07.02.a,4174,, +2000.07.00,Jul-00,2000,Unprovoked,TANZANIA,,"Coco Beach, Dar-es-Salaam",Swimming,,,,FATAL,Y,,Thought to involve a Zambesi shark,T. Thierry,2000.07.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.00-NV-Tanzania.pdf,2000.07.00,2000.07.00,4173,, +2000.06.30,30-Jun-00,2000,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",,male,M,,FATAL,Y,,,Squali.org,2000.06.30-NV-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.30-NV-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.30-NV-PNG.pdf,2000.06.30,2000.06.30,4172,, +2000.06.29,29-Jun-00,2000,Boat,NEW ZEALAND,North Island,"Papamoa Beach, Bay of Plenty",Fishing,"inflatable dinghy, occupants: Craig Ward & Gavin John Halse",M,,"No injury, shark bit the dinghy",N,,"Mako shark, 2 m [6.75'] ","R. D. Weeks, GSAF",2000.06.29-Halse-Ward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.29-Halse-Ward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.29-Halse-Ward.pdf,2000.06.29,2000.06.29,4171,, +2000.06.19,19-Jun-00,2000,Unprovoked,USA,Florida,"Seminole Avenue, Ormond Beach, Volusia County",Standing,Jacob Alegood,M,52,Right ankle lacerated,N,07h50,,"S. Petersohn, GSAF; M. I. Johnson, Daytona Beach News Journal; Orlando Sentinel, 6/20/2000, p.D3",2000.06.19-Alegood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.19-Alegood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.19-Alegood.pdf,2000.06.19,2000.06.19,4170,, +2000.06.13,13-Jun-00,2000,Boat,USA,Florida,"Pensacola Bay, Escambia County",Sailing,22' pleasure boat,,,"No injury to occupants, boat's rear platform bitten",N,14h30,"Bull shark, 2.4 m [8']","Mobile Register 6/14/2000; Charlotte Observer, 6/15/2000, p.8A",2000.06.13-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.13-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.13-boat.pdf,2000.06.13,2000.06.13,4169,, +2000.06.10,10-Jun-00,2000,Unprovoked,USA,Texas,"J.P. Luby Surf Park, Corpus Christi",Surfing,Kenny Alexander,M,17,Foot lacerated,N,16h00,"Blacktip shark, 1.2 m to 1.8 m [4' to 6'] ",GSAF,2000.06.10-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.10-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.10-Alexander.pdf,2000.06.10,2000.06.10,4168,, +2000.06.09.b,09-Jun-00,2000,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Swimming,Richard Whatley,M,55,Puncture wounds on right hip and arm,N,06h45,Bull shark?,"Orlando Sentinel, 6/10/2000, p.A20 & 6/11/2000, p.A22; T. Allen, pp.74-75Jun 10, 2000. pg. A.20",2000.06.09.b-Watley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.b-Watley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.b-Watley.pdf,2000.06.09.b,2000.06.09.b,4167,, +2000.06.09.a,09-Jun-00,2000,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Swimming ,Chuck Anderson,M,44,Right forearm severed surgically amputated above elbow,N,06h45,Bull shark,"Orlando Sentinel, 6/10/2000, p.A20 & 6/11/2000, p.A22; T. Allen, pp.74-75Jun 10, 2000. pg. A.20",2000.06.09.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.a-Anderson.pdf,2000.06.09.a,2000.06.09.a,4166,, +2000.06.02,02-Jun-00,2000,Unprovoked,USA,Florida,"27th Avenue, New Smyrna Beach, Volusia County",Snorkeling,Brian Alcorn,M,13,Right forearm lacerated,N,14h55,,"S. Petersohn, GSAF; D. Brannon; M.I. Johnson, Daytona Beach News Journal, 6/3/2000, p.1C",2000.06.02-Alcorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.02-Alcorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.02-Alcorn.pdf,2000.06.02,2000.06.02,4165,, +2000.06.00,Early Jun-2000,2000,Unprovoked,TANZANIA,,"Coco Beach in Oyster Bay, 7 km north of Dar-es-Salaam",Swimming,male,M,,"FATAL, legs severed ",Y,,Thought to involve a Zambesi shark,T. Thierry,2000.06.00-CocoBeach1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.00-CocoBeach1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.00-CocoBeach1.pdf,2000.06.00,2000.06.00,4164,, +2000.05.13,13-May-00,2000,Sea Disaster,NEW CALEDONIA,South Province,Mont Dore,"Air Disaster - Piper aircraft crashed into the sea, killing all on board",3 people,,,Sharks prevented recovery of remains,Y,,Tiger sharks & bull sharks (20 sharks in all),"W. Leander; Les Nouvelles Caledoniennes, 5/15/2000",2000.05.13-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.13-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.13-aircraft.pdf,2000.05.13,2000.05.13,4163,, +2000.05.09,09-May-00,2000,Invalid,AUSTRALIA,Victoria,"Koonya Beach, Melbourne",,Severed human foot washed ashore (in sneaker with 2 Velcro closures),,,Probable drowning,Y,,,"T. Peake, GSAF",2000.05.09-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.09-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.09-foot.pdf,2000.05.09,2000.05.09,4162,, +2000.05.07.b,07-May-00,2000,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",Standing,Adam,M,9,Left leg & ankle bitten,N,,,Reuters; Papua New Guinea Post-Courier,2000.05.07.b-Adam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.b-Adam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.b-Adam.pdf,2000.05.07.b,2000.05.07.b,4161,, +2000.05.07.a,07-May-00,2000,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",Diving,male,M,,FATAL,Y,,,Reuters; Papua New Guinea Post-Courier,2000.05.07.a-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.a-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.a-diver.pdf,2000.05.07.a,2000.05.07.a,4160,, +2000.04.14,14-Apr-00,2000,Unprovoked,USA,Florida,"On the south side of Ponce Inlet, Volusia County",Walking,Adam Metz,M,34,Left foot lacerated,N,11h57,,"Scott Petersohn, GSAF; M. Johnson; Daytona Beach News-Journal, 4/16/2000, p.3B",2000.04.14-Metz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.14-Metz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.14-Metz.pdf,2000.04.14,2000.04.14,4159,, +2000.04.09,09-Apr-00,2000,Unprovoked,USA,Florida,"Municipal Beach, Riviera Beach, Palm Beach County",Boogie boarding / wading,teen,M,,Puncture marks on right thigh,N,14h30,,"The Palm Beach Post, 4/11/2000, p.4B ",2000.04.09-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.09-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.09-boy.pdf,2000.04.09,2000.04.09,4158,, +2000.03.31,31-Mar-00,2000,Unprovoked,USA,Florida,Santa Rosa Sound Escambia County,Fishing,Dave Edwards,M,,"No Injury, bumped by shark",N,,,"R. Aiden Martin, GSAF; Pensacola News Journal & Orlando Sentinel, 5/9/2000, p.D.5",2000.03.31-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.31-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.31-Edwards.pdf,2000.03.31,2000.03.31,4157,, +2000.03.30,30-Mar-00,2000,Unprovoked,AUSTRALIA,Queensland,"Main Beach, Gold Coast",Swimming,Anrija (Andy) Rojcezic,M,26,Left calf bitten,N,14h00,2.5 m shark,"T. Peake, GSAF",2000.03.30-Rojcevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.30-Rojcevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.30-Rojcevic.pdf,2000.03.30,2000.03.30,4156,, +2000.03.26,26-Mar-00,2000,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Boogie boarding,Heather Van Olst,F,14,Right knee lacerated,N,11h15,1.8 m [6'] shark,"Stuart News, 3/28/2000; Jupiter Couier, 3/29/2000",2000.03.26-VanOlst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.26-VanOlst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.26-VanOlst.pdf,2000.03.26,2000.03.26,4155,, +2000.03.24,24-Mar-00,2000,Unprovoked,USA,Florida,"Floridana Beach, Brevard County",Surfing,Barry Pasonski,M,37,Left hand bitten,N,14h00,1.2 m [4'] shark,"Orlando Sentinel, 3/25/2000, p.D.3 ",2000.03.24-Pasonski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.24-Pasonski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.24-Pasonski.pdf,2000.03.24,2000.03.24,4154,, +2000.03.15,15-Mar-00,2000,Unprovoked,NEW CALEDONIA,North Province,Poum,Spearfishing,Gilbert Bui Van Minh,M,35,FATAL,Y,Morning,Tiger shark?,"Les Nouvelles Caledoniennes, 3/16/2000",2000.03.15-GilbertBui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.15-GilbertBui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.15-GilbertBui.pdf,2000.03.15,2000.03.15,4153,, +2000.03.14,14-Mar-00,2000,Unprovoked,AUSTRALIA,New South Wales,"McMasters Beach, Central Coast",Surfing,Craig Ruth,M,,No Injury,N,19h30,"Tiger shark, 4 m [13'] ?","Sydney Morning Herald, 3/16/2000 ",2000.03.14-Ruth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.14-Ruth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.14-Ruth.pdf,2000.03.14,2000.03.14,4152,, +2000.03.10,10-Mar-00,2000,Boat,AUSTRALIA,New South Wales,Parramatta River,Rowing,boat of Scot's College rowers,,,No Injury to occupants,N,P.M.,2 m to 2.5 m [6.75' to 8.25'] shark,"Sydney Morning Herald, ",2000.03.10-rowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.10-rowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.10-rowers.pdf,2000.03.10,2000.03.10,4151,, +2000.03.09,09-Mar-00,2000,Boat,AUSTRALIA,New South Wales,Parramatta River,Rowing,boat of Al Hattersly,,,No injury to occupants; oar bitten,N,,,Sydney Morning Herald,2000.03.09-Oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.09-Oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.09-Oar.pdf,2000.03.09,2000.03.09,4150,, +2000.03.03.R,Reported 03-Mar-2000,2000,Invalid,NEW ZEALAND,North Island,Between the Kakanui River and Campbell's Bay,Kayaking,Ricky Stringer,M,27,Reported as shark attack but probable drowning ,,,Shark involvement questionable,"R. D. Weeks, GSAF",2000.03.03.R-Stringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.03.R-Stringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.03.R-Stringer.pdf,2000.03.03.R,2000.03.03.R,4149,, +2000.03.02,02-Mar-00,2000,Unprovoked,AUSTRALIA,New South Wales,"Taronga Wharf, Athol Bay, Sydney Harbor",Swimming,Jack Dasey,M,,Survived,N,,,Sydney Morning Herald,2000.03.02-Dasey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.02-Dasey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.02-Dasey.pdf,2000.03.02,2000.03.02,4148,, +2000.03.00,Mar-00,2000,Unprovoked,USA,Louisiana,Midnight Lump (38 miles offshore),Spearfishing,Kurt Bickel,M,39,"No injury to diver, speargun damaged",N,16h00,"Shortfin mako shark, 3 m to 3.4 m [10' to 11'] ","R. Collier, GSAF",2000.03.00.a-Bickel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.00.a-Bickel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.00.a-Bickel.pdf,2000.03.00,2000.03.00,4147,, +2000.02.21,21-Feb-00,2000,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",,male,M,27,Right calf bitten,N,Afternoon,,"The Palm Beach Post, 2/22/2000",2000.02.21-male-Riviera Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.21-male-Riviera Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.21-male-Riviera Beach.pdf,2000.02.21,2000.02.21,4146,, +2000.02.19,19-Feb-00,2000,Unprovoked,SOUTH AFRICA,Western Cape Province,Struis Bay,Body surfing,Dr. Weich,M,,Foot bitten,N,14h00,"White shark, 2.5 m ","C. Creswell, GSAF",2000.02.19-Weich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.19-Weich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.19-Weich.pdf,2000.02.19,2000.02.19,4145,, +2000.02.14,14-Feb-00,2000,Provoked,ENGLAND,Worcestershire,The Fountain Pub in Tenbury Wells,Feeding prawns to captive sharks,"Paul Smith, a chef",M,,Fingers bitten PROVOKED INCIDENT,N,,"Miami, a 60 cm blacktip shark and two 60 cm bamboo catsharks","The Sun (London), 2/17/2000",2000.02.14-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.14-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.14-Smith.pdf,2000.02.14,2000.02.14,4144,, +2000.02.03,03-Feb-00,2000,Unprovoked,NEW ZEALAND,South Island,Oreti Beach (reported as the 4th person bitten in NZ in 2000),Surfing,Michael Petas,M,12,"No injury, wetsuit punctured",N,,,"Waikato Times; Southland Times, 10/23/1999, p.1",2000.02.03-Petas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.03-Petas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.03-Petas.pdf,2000.02.03,2000.02.03,4143,, +2000.02.01,01-Feb-00,2000,Unprovoked,AUSTRALIA,South Australia,"Point Sinclair, Cactus Beach near Penong",Surfing,Anthony Hayes,M,26,Hand bitten,N,,3 m [10'] shark,"T. Peake, GSAF",2000.02.01-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.01-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.01-Hayes.pdf,2000.02.01,2000.02.01,4142,, +2000.01.28.R,Reported 28-Jan-2000,2000,Boat,REUNION,,Saint Pierre,Canoe with 3 men onboard sank,Boulabha Ishmael,M,,FATAL,Y,,,B.L. du Vendre,2000.01.28.R-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.28.R-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.28.R-Reunion.pdf,2000.01.28.R,2000.01.28.R,4141,, +2000.01.05,05-Jan-00,2000,Unprovoked,THAILAND,Phang nga Province,Phang nga Island,Diving,Stephan Kahl,M,35,FATAL,Y,,,A. Xuereb,2000.01.05-Kahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.05-Kahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.05-Kahl.pdf,2000.01.05,2000.01.05,4140,, +2000.00.00,2000,2000,Boat,USA,Florida,"Boca Grande, Lee County",Fishing for tarpon,"boat: occupant, Terry Winters",M,,No injury to occupant; shark bit propeller,N,,Hammerhead shark,"B. Stout, News-Press, 7/2/2005",2000.00.00-BocaGrandeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.00.00-BocaGrandeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.00.00-BocaGrandeBoat.pdf,2000.00.00,2000.00.00,4139,, +1999.12.31.c,31-Dec-99,1999,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Surfing,Tim Wild,M,15,Six puncture wounds on leg,N,,Sevengill shark,"R.D. Weeks, GSAF; The Otago Daily Times, 1/2/2000",1999.12.31.c-Wildl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.c-Wildl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.c-Wildl.pdf,1999.12.31.c,1999.12.31.c,4138,, +1999.12.31.b,31-Dec-99,1999,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Swimming,Jennifer McDowell,F,13,Arm bitten,N,,Sevengill shark,"R.D. Weeks, GSAF; The Otago Daily Times, 1/2/2000; Waikato Times, 2/5/2000",1999.12.31.b-McDowell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.b-McDowell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.b-McDowell.pdf,1999.12.31.b,1999.12.31.b,4137,, +1999.12.31.a,31-Dec-99,1999,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Bathing,Genna Hayward ,F,12,A cut on her hand,N,,Sevengill shark,"R.D. Weeks, GSAF; The Otago Daily Times, 1/2/2000",1999.12.31.a-Hayward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.a-Hayward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.a-Hayward.pdf,1999.12.31.a,1999.12.31.a,4136,, +1999.12.26,26-Dec-99,1999,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Alton Cicero da Silva,M,18,"Leg bitten, surgically amputated",N,,"Thought to involve a white, bull or tiger shark","L. A. Pereira & J. Morris; JC, 12/27/1999",1999.12.26-Cicero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.26-Cicero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.26-Cicero.pdf,1999.12.26,1999.12.26,4135,, +1999.12.14,14-Dec-99,1999,Invalid,USA,California,"Off Ventura, Anacapa & Santa Cruz Islands",Scuba diving,Joo Whan Hong,M,,"Presumed taken by a shark, but forensic evidence suggested otherwise.",Y,,Shark involvement not confirmed,R. Collier,1999.12.14-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.14-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.14-Hong.pdf,1999.12.14,1999.12.14,4134,, +1999.12.06,06-Dec-99,1999,Invalid,BRAZIL,Rio de Janeiro,"Rio de Janeiro, Guanabara Bay",Spearfishing,Frederico Nbrega (aka Derico) ,M,39,Lateral right thigh bitten,N,09h30,"Thought to involve a 1.2 to 1.5 m tubaro da gralha preta - a blacktip shark, C. limbatus?",L. A. Pereira ,1999.12.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.06-Brazilian-diver.pdf,1999.12.06,1999.12.06,4133,, +1999.12.02,02-Dec-99,1999,Unprovoked,USA,Florida,"Boynton Beach, Palm Beach County",Surfing,male,M,35,Right arm & fingers lacerated,N,12h30,,"The Palm Beach Post,12/3/1999 ",1999.12.02-BoyntonBeach-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.02-BoyntonBeach-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.02-BoyntonBeach-surfer.pdf,1999.12.02,1999.12.02,4132,, +1999.11.30,30-Nov-99,1999,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Jeremiah Wyche,M,19,Lacerations to hand & wrist,N,15h30,,"A. Brenneka, Shark Attack Survivors; The Palm Beach Post,12/3/1999 ",1999.11.30-Wyche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.30-Wyche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.30-Wyche.pdf,1999.11.30,1999.11.30,4131,, +1999.11.23,23-Nov-99,1999,Unprovoked,USA,Hawaii,"Big Island off Kona Village Resort, North Kona",Swimming,Laurie Boyette,F,51,"Buttock bitten, hands lacerated",N,17h20,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ","G. Kubota, Star Bulletin",1999.11.23-Boyette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.23-Boyette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.23-Boyette.pdf,1999.11.23,1999.11.23,4130,, +1999.11.15,15-Nov-99,1999,Unprovoked,USA,California,"Waddell Reef, Santa Cruz County",Surfing (sitting on his board),Jack Wolf,M,,"No injury, board bitten",N,,White shark,"R. Collier, pp.166-167",1999.11.15-JackWolf_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.15-JackWolf_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.15-JackWolf_Collier.pdf,1999.11.15,1999.11.15,4129,, +1999.11.13,13-Nov-99,1999,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umtentweni,Surfing,Sean Grenfell,M,35,Lower legs lacerated,N,,"White shark, 3 m [10'] ","G. Cliff, NSB",1999.11.13-Grenfell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.13-Grenfell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.13-Grenfell.pdf,1999.11.13,1999.11.13,4128,, +1999.11.06,06-Nov-99,1999,Unprovoked,BRAZIL,Rio de Janeiro,"Rio de Janeiro, Guanabara Bay","Spearfishing, but swimming at surface",male,M,39,Upper right thigh bitten,N,10h30,1.3 to 1.6 m shark,O. Gadig,1999.11.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.06-Brazilian-diver.pdf,1999.11.06,1999.11.06,4127,, +1999.11.00.b,Nov-99,1999,Unprovoked,MARSHALL ISLANDS,Alinglaplap Atoll,Island J4H,Swimming,Dally Bayo,M,12,Lacerations to leg,N,,"Grey reef shark, 1.2 m [4'] ",www.svcherokee.com/pages/ Ailingilaplap.htm,1999.11.00.b-Bayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.b-Bayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.b-Bayo.pdf,1999.11.00.b,1999.11.00.b,4126,, +1999.11.00.a,Nov-99,1999,Unprovoked,MARSHALL ISLANDS,Alinglaplap Atoll,Island J4H,Swimming, Morson Daniel,M,12,Lacerations to buttocks,N,,"Grey reef shark, 1.2 m [4'] ",www.svcherokee.com/pages/ Ailingilaplap.htm,1999.11.00.a-Morson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.a-Morson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.a-Morson.pdf,1999.11.00.a,1999.11.00.a,4125,, +1999.10.30.b,30-Oct-99,1999,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Body boarding,Keven Dolsky,M,45,Right foot lacerated,N,17h30,,"S. Petersohn, GSAF",1999.10.30.b-Dolsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.b-Dolsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.b-Dolsky.pdf,1999.10.30.b,1999.10.30.b,4124,, +1999.10.30.a,30-Oct-99,1999,Unprovoked,USA,Florida,"Gulfstream Park beach, Palm Beach County",Body surfing,Troy Jesse,M,13,"Shark bit 8"" chunk from swim fin",N,15h00,,"C. Lambert, Palm Beach Post, 10/31/1999, p.3C",1999.10.30.a-TroyJesse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.a-TroyJesse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.a-TroyJesse.pdf,1999.10.30.a,1999.10.30.a,4123,, +1999.10.20,20-Oct-99,1999,Unprovoked,USA,Florida,"Pet Den, Satellite Beach, Brevard County",Surfing,David Hunt,M,,Lacerations to right hand & wrist,N,Noon,"Lemon shark, 2.7 m [9'] ",W. Schauman,1999.10.20-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.20-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.20-Hunt.pdf,1999.10.20,1999.10.20,4122,, +1999.10.01,01-Oct-99,1999,Unprovoked,USA,Hawaii,Old Kona Airport State Park,"Surfing, lying on surfboard",Jesse Spencer,M,16,Right arm bitten,N,18h30,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ",Star Bulletin,1999.10.01-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.01-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.01-Spencer.pdf,1999.10.01,1999.10.01,4121,, +1999.09.29,29-Sep-99,1999,Unprovoked,USA,Florida,"South side of Ponce de Leon Inlet, Volusia County",Wading to shore after surfing,Joel A. Borges,M,22,3 one-inch lacerations to sole of right foot,N,18h45,,"S. Petersohn, GSAF",1999.09.29-Borges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.29-Borges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.29-Borges.pdf,1999.09.29,1999.09.29,4120,, +1999.09.24,24-Sep-99,1999,Boat,ITALY,Adriatic Sea,San Benedetto,Fishing,Boat Coca Cola,,,No Injury to occupants,N,,Said to involve a 7 m [23'] white shark,"Orlando Sentinel, 9/28/1999, p.A12",1999.09.24-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.24-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.24-boat.pdf,1999.09.24,1999.09.24,4119,, +1999.09.16,Reported 16-Sep-1999,1999,Unprovoked,USA,Florida,"Cape Canaveral, Brevard County",Wading,Janet Ferguson,F,61,Thigh (posterior) bitten,N,,Unidentified,"Evening News (Edinburgh, Scotland)",1999.09.16-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.16-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.16-Ferguson.pdf,1999.09.16,1999.09.16,4118,, +1999.09.10,10-Sep-99,1999,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Wading,Taylor Warnock,F,10,Toes lacerated,N,Afternoon,,"C. Creswell, GSAF",1999.09.10-Warnock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.10-Warnock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.10-Warnock.pdf,1999.09.10,1999.09.10,4117,, +1999.09.05,05-Sep-99,1999,Unprovoked,USA,Florida,"Fort Pierce Inlet, St. Lucie County",Surfing,Mike Sprague,M,13,Right foot bitten,N,,1.5 m to 1.8 m [5' to 6'] shark,"Orlando Sentinel, 9/8/1999, p.D3; Allen, p.65",1999.09.05-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.05-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.05-Sprague.pdf,1999.09.05,1999.09.05,4116,, +1999.09.04.b,04-Sep-99,1999,Provoked,USA,Florida,"World Typhoon Lagoon, Disney Water Park, Orange County",Wading,Troy Patterson,M,7,Left knee nipped by captive shark PROVOKED INCIDENT,N,,0.9 m [3'] shark,"K. Morelli, Tampa Tribune, 9/6/1999",1999.09.04.b-Patterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.b-Patterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.b-Patterson.pdf,1999.09.04.b,1999.09.04.b,4115,, +1999.09.04.a,04-Sep-99,1999,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Wading with surfboard,Tony Crabtree,M,39,Right foot bitten,N,19h00,,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/5/1999, p.7B ",1999.09.04.a-Crabtree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.a-Crabtree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.a-Crabtree.pdf,1999.09.04.a,1999.09.04.a,4114,, +1999.08.26,26-Aug-99,1999,Unprovoked,USA,Florida,"Bethune Beach, south of New Smyrna Beach, Volusia County",Surfing,Chris Ayers,M,28,3-inch laceration to right foot,N,14h30,"""a small shark""","S. Petersohn, GSAF; Orlando Sentinel, 8/27/1999, p.D3; Miami Herald, 8/28/1999",1999.08.26-Ayers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.26-Ayers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.26-Ayers.pdf,1999.08.26,1999.08.26,4113,, +1999.08.24,24-Aug-99,1999,Unprovoked,USA,North Carolina,"Fort Fisher, New Hanover County",Surfing,male,M,,Foot injured,N,,,"Wilmington Star, 8/25/1999, C. Creswell, GSAF",1999.08.24-FortFisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.24-FortFisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.24-FortFisher.pdf,1999.08.24,1999.08.24,4112,, +1999.08.23,23-Aug-99,1999,Unprovoked,MARSHALL ISLANDS,Ralik Chain,Kwajalein Atoll,Fishing,Jeffery Joel,M,23,Lacerations to left leg,N,Morning,7' shark,"Kwajalein Hourglass, 8/27/1999",1999.08.23-Joel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.23-Joel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.23-Joel.pdf,1999.08.23,1999.08.23,4111,, +1999.08.21,21-Aug-99,1999,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,G.C.,M,17,Small lacerations to right foot,N,18h40,,"S. Petersohn, GSAF",1999.08.21-GC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.21-GC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.21-GC.pdf,1999.08.21,1999.08.21,4110,, +1999.08.16,16-Aug-99,1999,Unprovoked,USA,South Carolina,"Grand Strand, Myrtle Beach, Horry County",Lying prone in 2' of water,Christopher (Will) Handley,M,10,"Ear lacerated, cuts on scalp, back, arm & shoulder ",N,17h40,1.8 m [6'] shark,"Charlotte Observer, 8/18/1999, p.4C; J. Kennedy, ProQuest; Sun News (Myrtle Beach), 8/19/1999; Richmond Times Dispatch, 8/19/1999",1999.08.16-Handley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.16-Handley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.16-Handley.pdf,1999.08.16,1999.08.16,4109,, +1999.08.05.a,05-Aug-99,1999,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Charles Adkins,M,62,Right ankle & heel lacerated,N,11h25,4' to 5' shark,"S. Petersohn, Orlando Sentinel, 8/6/1999; M.I. Johnson, Daytona Beach News Journal, 8/6/1999, p.3C ",1999.08.05-Adkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-Adkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-Adkins.pdf,1999.08.05.a,1999.08.05.a,4108,, +1999.08.05,05-Aug-99,1999,Unprovoked,BAHAMAS,Abaco Islands,Grand Cay,Spearfishing & holding catch,Kevin King,M,35,Right arm bitten,N,17h00,2.7 m [9'] bull shark or Caribbean reef shark,"South Florida Sun-Sentinel, 8/7/1999, p.1A; Palm Beach Post, 8/7/1999",1999.08.05-KevinKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-KevinKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-KevinKing.pdf,1999.08.05,1999.08.05,4107,, +1999.07.29,29-Jul-99,1999,Unprovoked,SOUTH AFRICA,Western Cape Province,Kogebaai,Surfing,Sergio Capri,M,42,Right thigh bitten,N,14h00,"White shark, 3 m to 5 m [10' to 16.5'] ","A. Gifford, GSAF",1999.07.29-Capri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.29-Capri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.29-Capri.pdf,1999.07.29,1999.07.29,4106,, +1999.07.26,26-Jul-99,1999,Unprovoked,USA,Florida,"Two miles off Key Colony Beach, Monroe County",Swimming with dolphins,Michael Knowles,M,43,Ankle bitten,N,18h25,"Bull shark, 2.1 m [7']","M. Lynch; Miami Herald, 7/28/1999 ",1999.07.26-Knowles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.26-Knowles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.26-Knowles.pdf,1999.07.26,1999.07.26,4105,, +1999.07.21,21-Jul-99,1999,Unprovoked,USA,Hawaii,Honoli'i in Hilo (west side of Big Island),Surfing,Griffith Yamaguchi,M,43,Right thigh & buttock bitten,N,10h28,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ",Star Bulletin,1999.07.21-Yamaguchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.21-Yamaguchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.21-Yamaguchi.pdf,1999.07.21,1999.07.21,4104,, +1999.07.15,15-Jul-99,1999,Unprovoked,SOUTH AFRICA,Western Cape Province,Buffels Bay (near Knysna),Boogie boarding,Hercules Pretorius,M,14,FATAL,Y,11h15,White shark,"A. Gifford, GSAF",1999.07.15-Pretorius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.15-Pretorius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.15-Pretorius.pdf,1999.07.15,1999.07.15,4103,, +1999.07.06,06-Jul-99,1999,Unprovoked,USA,South Carolina,Charleston,,Shannon Morsy,M,,Five cuts on his heel,N,,,Channel 9 News Charlotte,1999.07.06-NV-Morsy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.06-NV-Morsy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.06-NV-Morsy.pdf,1999.07.06,1999.07.06,4102,, +1999.07.04,04-Jul-99,1999,Unprovoked,USA,Florida,"Pensacola Beach, Escambia County",Wading in school of baitfish,Lisa Alexander,F,30,Lacerations knee to ankle,N,Afternoon,"Blacktip shark, 1.8 m [6'] ","Pensacola News Journal, 7/5/1999 ",1999.07.04-LisaAlexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.04-LisaAlexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.04-LisaAlexander.pdf,1999.07.04,1999.07.04,4101,, +1999.07.03,03-Jul-99,1999,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Cintsa East, East London",Surfing,Colin Grey,M,29,Leg & board bitten,N,Morning,"White shark, 4 m [13'] ","A. Gifford, GSAF",1999.07.03-Grey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.03-Grey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.03-Grey.pdf,1999.07.03,1999.07.03,4100,, +1999.06.19,19-Jun-99,1999,Unprovoked,USA,Florida,"11 miles off Dog Island in the Gulf of Mexico, Franklin County",Adrift in a life jacket,Robert Bass,M,20,9-inch gash in left foot ,N,,1.2 m [4'] shark,"Orlando Sentinel, 6/21/1999, p.B.3",1999.06.19-Bass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.19-Bass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.19-Bass.pdf,1999.06.19,1999.06.19,4099,, +1999.06.17,17-Jun-99,1999,Unprovoked,USA,Florida,"South of Ponce Inlet, Volusia County",Surfing,Lucas Bryant,M,21,Right hand and wrist lacerated,N,09h15,3' to 4' shark,"S. Petersohn, GSAF",1999.06.17-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.17-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.17-Bryant.pdf,1999.06.17,1999.06.17,4098,, +1999.06.12,12-Jun-99,1999,Unprovoked,USA,Florida,"Atlantiic Beach, Duval County",Swimming,male,M,41,8-inch bite on calf,N,13h15,,"Florida Times-Union, 6/13/1999",1999.06.12-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.12-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.12-AtlanticBeach.pdf,1999.06.12,1999.06.12,4097,, +1999.06.09,09-Jun-99,1999,Unprovoked,USA,Florida,"Atlantic Dunes Park, Delray Beach, Palm Beach County",Splashing / wading,Ryan Welborn,M,5,Knee lacerated,N,16h00,Blacktip or spinner shark,"Palm Beach Post, 6/10/1999",1999.06.09-Wellborn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.09-Wellborn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.09-Wellborn.pdf,1999.06.09,1999.06.09,4096,, +1999.05.29,29-May-99,1999,Unprovoked,AUSTRALIA,South Australia,"Hardwicke Bay, Yorke Peninsula",Windsurfing,Tony Donoghue,M,22,"FATAL, body not recovered",Y,14h30,Thought to involve a white shark,J. Morris,1999.05.29-Donoghue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.29-Donoghue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.29-Donoghue.pdf,1999.05.29,1999.05.29,4095,, +1999.05.01,01-May-99,1999,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Charles Heitor Barbosa Pires,M,21,Leg & hands bitten,N,Afternoon,"Tiger shark, 2.5 m [8.25']","P.M. Lopez, GSAF; O. Gadig; JC, 5/3/1999",1999.05.01-Pires.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.01-Pires.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.01-Pires.pdf,1999.05.01,1999.05.01,4094,, +1999.04.22,22-Apr-99,1999,Unprovoked,MAURITIUS,Grand Baie,Pointe aux Canonniers,Swimming,Sylvia Lanner,F,41,Thigh bitten,N,06h00,"Grey reef shark, 1.5 m ",,1999.04.22-Lanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.22-Lanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.22-Lanner.pdf,1999.04.22,1999.04.22,4093,, +1999.04.11,11-Apr-99,1999,Unprovoked,REUNION,L' Etang Sal-les-Bains,Roche-aux-Oiseaux,Swimming after being swept into sea by a large wave,Guy Oudin,M,52,FATAL,Y,10h30,3 bull sharks,G. Van Grevelynghe,1999.04.11-Oudin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.11-Oudin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.11-Oudin.pdf,1999.04.11,1999.04.11,4092,, +1999.04.01,01-Apr-99,1999,Unprovoked,USA,Florida,"Hobe Sound Beach, Palm Beach County",Surfing,male,M,14,Ankle bitten,N,,,"Palm Beach Post, 4/1/1999",1999.04.01-HobeSoundSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.01-HobeSoundSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.01-HobeSoundSurfer.pdf,1999.04.01,1999.04.01,4091,, +1999.03.18.R,Reported 18-Mar-1999 ,1999,Unprovoked,NEW ZEALAND,South Island,Codfish Island (Whenua Hau) west of Stewart Island,Spearfishing & diving for paua,Zane Smith,M,,No injury,N,,"Sevengill shark, 2.4 m [8'] ","Southland Times, 3/18/1999",1999.03.18.R-ZaneSmith-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.R-ZaneSmith-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.R-ZaneSmith-X.pdf,1999.03.18.R,1999.03.18.R,4090,, +1999.03.18.b,18-Mar-99,1999,Provoked,BRAZIL,Rio Grande de Norte,Atol das Rochas,Scientific research (Dr. Sonny Gruber's student),Dan Cartamil,M,,Grabbed small shark & it bit him PROVOKED INCIDENT,N,,,"internet, expedition ",1999.03.18.b-Cartamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.b-Cartamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.b-Cartamil.pdf,1999.03.18.b,1999.03.18.b,4089,, +1999.03.18.a,18-Mar-99,1999,Unprovoked,USA,Hawaii,"Olowalu side of Lahina, Maui ","Swimming, towing a kayak",Navid Davoudabai,F,29,"FATAL, arm bitten ",Y,20h30,,"L. Fujimoto; G. Kubota, Star Bulletin",1999.03.18.a-Davoodabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.a-Davoodabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.a-Davoodabai.pdf,1999.03.18.a,1999.03.18.a,4088,, +1999.03.14.b,14-Mar-99,1999,Unprovoked,NEW CALEDONIA,Loyalty Islands,Ouvea,Spearfishing,Blaise Wouanena,M,,Multiple injuries,N,Morning,200 to 300 kg shark,"W. Leander; Les Nouvelles Caledoniennes, 3/15/1999",1999.03.14.b-Wouanena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.b-Wouanena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.b-Wouanena.pdf,1999.03.14.b,1999.03.14.b,4087,, +1999.03.14.a,14-Mar-99,1999,Provoked,NEW ZEALAND,,,Fishing,Mr. Spain,M,28,Right thigh bitten PROVOKED INCIDENT,N,,"Mako shark, 1.3 m gaffed ","C. Creswell, GSAF",1999.03.14.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.a-Spain.pdf,1999.03.14.a,1999.03.14.a,4086,, +1999.03.08,08-Mar-99,1999,Unprovoked,USA,Hawaii,"Kealia Beach, Kaua'i",Body surfing or body boarding,Jonathan Allen,M,18,Bruised right leg,N,,,G. Balazs,1999.03.08-NV-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.08-NV-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.08-NV-Allen.pdf,1999.03.08,1999.03.08,4085,, +1999.03.05,05-Mar-99,1999,Unprovoked,USA,Hawaii,"Quarter mile offshore in Kaanapali, West Maui",Swimming near pod of whales,Robyne Knutson,F,29,Tissue removed knee to thigh,N,10h45,3.7 m to 4.6 m [12' to 15'] shark seen in the vicinity,"S. Waterman, GSAF; L. Fujimoto; G. Kubota, Star Bulletin",1999.03.05-Knutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.05-Knutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.05-Knutson.pdf,1999.03.05,1999.03.05,4084,, +1999.02.26.R,26-Feb-99,1999,Boat,USA,North Carolina,Frying Pan Shoals,Cruising," 28' sport fishing boat, Bird Dog",,,"No injury to occupants, boat sank after colliding with shark",N,,Basking shark,"Wilmington Star, 2/26/1999, C. Creswell, GSAF",1999.02.26.R-BirdDog.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.26.R-BirdDog.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.26.R-BirdDog.pdf,1999.02.26.R,1999.02.26.R,4083,, +1999.02.23,23-Feb-99,1999,Unprovoked,AUSTRALIA,New South Wales,Scotts Head,Surfing,male,M,35,"Left hand & forearm bitten, board bitten",N,Evening,Bronze whaler or tiger shark,"Daily Telegraph, 2/24/1999, p.3; Orlando Sentinel, 2/24/1999, p.A10",1999.02.23-ScottsHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.23-ScottsHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.23-ScottsHead.pdf,1999.02.23,1999.02.23,4082,, +1999.02.03,03-Feb-99,1999,Unprovoked,USA,Florida,"Hobe Sound, Martin County",Surfing,Kenny Burns,M,25,Left hand bitten,N,15h30,Spinner shark,"The Palm Beach Post, 2/5/1999; St. Petersburg Times, 2/6/1999",1999.02.03-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.03-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.03-KennyBurns.pdf,1999.02.03,1999.02.03,4081,, +1999.01.29,29-Jan-99,1999,Unprovoked,MAURITIUS,,Belle-Mare,Spearfishing,Rajkumar Mansaram,M,47,Legs & torso injured,N,,Bull shark,J.M. Langlois,1999.01.29-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.29-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.29-Mauritius.pdf,1999.01.29,1999.01.29,4080,, +1999.01.13, 13-Jan-1999,1999,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Bonza Beach,Paddle Skiing,Evan Ridge,M,,"No Injury, ski bitten",N,,"White shark, 4 m [13'] ",The Citizen,1999.01.13-Ridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.13-Ridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.13-Ridge.pdf,1999.01.13,1999.01.13,4079,, +1999.01.07,01-Jan-99,1999,Boat,NEW ZEALAND,North Island,"Papamoa, near Tauranga, Bay of Plenty",Inflatable boat,,,,No injury to occupant: boat lost,N,,,"The Dominion, 1/8/1999, p.3I",1999.01.07-NZ-inflatable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.07-NZ-inflatable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.07-NZ-inflatable.pdf,1999.01.07,1999.01.07,4078,, +1999.01.03.R,Reported 03-Jan-1999,1999,Invalid,AUSTRALIA,Northern Territory,Gulf of Carpenteria,Fishing,Donna Turcotte,F,37,"Cut foot, but injury caused by fishing line, not the shark",N,,Shark involvement not confirmed,"Sunday Mail, 3/1/1999",1999.01.03.R-Turcotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03.R-Turcotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03.R-Turcotte.pdf,1999.01.03.R,1999.01.03.R,4077,, +1999.01.03,03-Jan-99,1999,Unprovoked,REUNION,Saint-Leu,Pointe au Sel,Spearfishing,,,,FATAL,Y,,Bull shark,G. Van Grevelynghe,1999.01.03-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03-ReunionIsland.pdf,1999.01.03,1999.01.03,4076,, +1999.00.00.b,1999,1999,Unprovoked,SOUTH AFRICA,Western Cape Province,"Hospital Rock, Dyers Island",Spearfishing,Healy Lootz,M,30,Heel lacerated,N,12h00,"White shark, 4.6 m [15'] ",V. Van der Merwe,1999.00.00.b-Lootz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.b-Lootz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.b-Lootz.pdf,1999.00.00.b,1999.00.00.b,4075,, +1999.00.00.a,1999,1999,Invalid,USA,Virginia,"Sandridge Beach, Virginia Beach, Princess Anne County",Body surfing,male,M,,Abrasions,N,,Shark involvement not confirmed,,1999.00.00.a-NV-SandridgeBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.a-NV-SandridgeBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.a-NV-SandridgeBeach.pdf,1999.00.00.a,1999.00.00.a,4074,, +1998.12.24,24-Dec-98,1998,Provoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Andy Thompson,M,19,Left foot bitten after he accidentally stepped on the shark PROVOKED INCIDENT ,N,08h30,,"S. Petersohn, GSAF; Daytona Beach News Journal, 1/1/1999, p.6C; 9",1998.12.24-AndyThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.24-AndyThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.24-AndyThompson.pdf,1998.12.24,1998.12.24,4073,, +1998.12.22,22-Dec-98,1998,Unprovoked,AUSTRALIA,South Australia,Middleton Beach,Standing,Megan O'Leary,F,21,2 puncture wounds in left leg,N,15h30,,"The Advertiser, 12/23/1998, p.3; Daily Telegraph, 12/23/1998, p.17",1998.12.22-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.22-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.22-O'Leary.pdf,1998.12.22,1998.12.22,4072,, +1998.12.20.R,Reported 20-Dec-1998,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"King's Beach, Port Elizabeth",Surfing,Greg Harrison,M,18,Leg bitten,N,17h00,Possibly a white shark,"G. Cliff, NSB; Sunday Times, 12/20/1998 ",1998.12.20.R-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.20.R-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.20.R-Harrison.pdf,1998.12.20.R,1998.12.20.R,4071,, +1998.12.18,18-Dec-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Splashing,Douw van der Merwe,M,14,Right leg bitten,N,,,"Sunday Times, 12/20/1998",1998.12.18-vanderMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.18-vanderMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.18-vanderMerwe.pdf,1998.12.18,1998.12.18,4070,, +1998.12.15,15-Dec-98,1998,Unprovoked,AUSTRALIA,South Australia,Middleton Beach,Surfing,,F,21,Leg injured,N,Afternoon,,"Animal Attack Files, 12/19/1998",1998.12.15-female surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.15-female surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.15-female surfer.pdf,1998.12.15,1998.12.15,4069,, +1998.11.21,21-Nov-98,1998,Unprovoked,USA,Florida,"Ocean Beach, Jaycee Park, Vero Beach, Indian River County",Swimming,James Willie Tellasmon,M,9,FATAL,Y,14h00,Tiger shark,E. Ritter. GSAF,1998.11.21-Tellasmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.21-Tellasmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.21-Tellasmon.pdf,1998.11.21,1998.11.21,4068,, +1998.11.14,14-Nov-98,1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Larry Foor,M,14,Right foot bitten,N,08h45,1.2 m [4'] shark,"S. Petersohn, GSAF; D. Catron, Orlando Sentinel, 11/19/1998, p.D1; Daytona Beach News Journal, 11/15/1998, p.4C",1998.11.14-LarryFoor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.14-LarryFoor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.14-LarryFoor.pdf,1998.11.14,1998.11.14,4067,, +1998.11.11,11-Nov-98,1998,Unprovoked,USA,Florida,"South Beach Park, Indian River County",Walking,male,M,13,Survived,N,17h00,"A ""small shark""",press report,1998.11.11-NV-IndianRiverCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.11-NV-IndianRiverCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.11-NV-IndianRiverCounty.pdf,1998.11.11,1998.11.11,4066,, +1998.11.05,05-Nov-98,1998,Unprovoked,USA,Oregon,Winchester Bay,Surfing,Dale Inskeep,M,32,No injury,N,,"White shark, 5 m to 6 m [16.5' to 20'] ","R. Collier, pp.165-166",1998.11.05-Inskeep_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.05-Inskeep_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.05-Inskeep_Collier.pdf,1998.11.05,1998.11.05,4065,, +1998.11.02.b,02-Nov-98,1998,Provoked,JAPAN,Southern Japan,460 miles off Iwakuni,Fishing for tuna,Tadashi Kodama,M,52,PROVOKED INCIDENT Knee bitten by shark trapped in net,N,,6' shark,"Deseret News, 11/3/1998, p.A7",1998.11.02.b-Kodama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.b-Kodama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.b-Kodama.pdf,1998.11.02.b,1998.11.02.b,4064,, +1998.11.02.a,02-Nov-98,1998,Unprovoked,BRAZIL,Pernambuco," Boa Viagem Beach, Recife",Surfing,Claudio Roberto Florencio de Freitas,M,22,"FATAL, left forearm severed ",Y,Late afternoon,Though to involve a white shark,O. Gadig & A. Xureb,1998.11.02.a-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.a-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.a-deFrietas.pdf,1998.11.02.a,1998.11.02.a,4063,, +1998.10.24,24-Oct-98,1998,Unprovoked,USA,Florida,"Jupiter Beach, Palm Beach County",Swimming,Jessica Stephens,F,17,Minor lacerations on right ankle & foot,N,Afternoon,,"Sun Sentinel.Fort Lauderdale, 10/25/1998, p.3B",1998.10.24-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.24-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.24-Stephens.pdf,1998.10.24,1998.10.24,4062,, +1998.10.18,18-Oct-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Glengariff,Surfing,Liam Victor,M,30,"No injury, surfboard bitten",N,,,"East London Daily Dispatch, 10/20/1998",1998.10.18-Victor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.18-Victor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.18-Victor.pdf,1998.10.18,1998.10.18,4061,, +1998.10.10,10-Oct-98,1998,Unprovoked,USA,Florida,"Sebastian Inlet, Indian River County",Surfing,Jarod Ruszkowski ,M,,Right hand bitten,N,,,"Sarasota Herald-Tribune, 10/13/1998 ",1998.10.10-Ruszkowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.10-Ruszkowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.10-Ruszkowski.pdf,1998.10.10,1998.10.10,4060,, +1998.10.04,04-Oct-98,1998,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Jlio Csar de Barros Correia,M,17,Right leg bitten,N,,,"Folha de S.Paul, 6/10/1998",1998.10.04-JulioCesarDeBarrosCorreia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.04-JulioCesarDeBarrosCorreia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.04-JulioCesarDeBarrosCorreia.pdf,1998.10.04,1998.10.04,4059,, +1998.10.01.b,01-Oct-98,1998,Unprovoked,REUNION,Saint-Benot,,Diving,,,,Survived,N,,,G. Van Grevelynghe,1998.10.01.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.b-Reunion.pdf,1998.10.01.b,1998.10.01.b,4058,, +1998.10.01.a,01-Oct-98,1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",,Mike Duncan,M,28,2 one-inch lacerations in left foot,N,14h30,,S. Petersohn,1998.10.01.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.a-Duncan.pdf,1998.10.01.a,1998.10.01.a,4057,, +1998.09.27,27-Sep-98,1998,Unprovoked,USA,Florida,"The Rocks, Hutchinson Island, Martin County",Surfing,Kai Haire,M,6,Puncture wounds to leg,N,,,"The Stuart (FL) News, 9/29/1998",1998.09.27-KaiHaire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.27-KaiHaire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.27-KaiHaire.pdf,1998.09.27,1998.09.27,4056,, +1998.09.22,22-Sep-98,1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jade Blackstock,M,18,Left arm lacerated,N,15h35,,"S. Petersohn, GSAF",1998.09.22-Blackstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.22-Blackstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.22-Blackstock.pdf,1998.09.22,1998.09.22,4055,, +1998.09.16.R,Reported 16-Sep-1998,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kowie River,Fishing / washing bait off hands,Grant Rielly,M,,Laceration to right foot,N,Dusk,,"Daily Dispatch, 9/16/1998",1998.09.16.R-Rielly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.16.R-Rielly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.16.R-Rielly.pdf,1998.09.16.R,1998.09.16.R,4054,, +1998.09.14,14-Sep-98,1998,Unprovoked,USA,Florida,"Stuart Beach, Martin County",Surfing,Danny Hoopes,M,28,Right foot bitten,N,,1.8 m [6'] shark,"P. Sheth, Fort Pierce Tribune, 9/15/1998",1998.09.14-DannyHoopes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.14-DannyHoopes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.14-DannyHoopes.pdf,1998.09.14,1998.09.14,4053,, +1998.09.00,Sep-98,1998,Provoked,SENEGAL,Cap Vert Peninsula,Yoff Island,Spearfishing,A.D,M,25,Bitten by harpooned shark PROVOKED INCIDENT,N,,1.5 m shark,S. Trape,1998.09.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.00-Senegal.pdf,1998.09.00,1998.09.00,4052,, +1998.08.30,30-Aug-98,1998,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,J. Howington,M,26,Toes lacerated,N,20h15,3' to 4' shark,"S. Petersohn, GSAF",1998.08.30-Howington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.30-Howington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.30-Howington.pdf,1998.08.30,1998.08.30,4051,, +1998.08.27,27-Aug-98,1998,Invalid,ITALY,Marches region,12 miles off Senigallia (Adriatic Sea),Fishing,30' cabin cruiser owned by Stefano Catalani,,N/A,"No injury; no attack, shark ate the bait hanging over the side of the boat",N,,,MEDSAF,1998.08.27-Catalani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.27-Catalani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.27-Catalani.pdf,1998.08.27,1998.08.27,4050,, +1998.08.26,26-Aug-98,1998,Unprovoked,USA,California,"Stinson Beach, Marin County",Boogie boarding,Jonathan Kathrein,M,16,"Thigh, buttocks & lower back lacerated",N,14h16,"White shark, 5 m to 6 m [16.5' to 20'] ","R. Collier, pp.163-164 ",1998.08.26-Kathrein_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.26-Kathrein_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.26-Kathrein_Collier.pdf,1998.08.26,1998.08.26,4049,, +1998.08.23.R,Reported 23-Aug-1998,1998,Unprovoked,USA,Virginia,Virginia Beach,Spearfishing,male,M,,Lacerations to left hand,N,,"Dusky shark, 12' ",Dan,1998.08.23.R-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.23.R-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.23.R-VirginiaBeach.pdf,1998.08.23.R,1998.08.23.R,4048,, +1998.08.15,15-Aug-98,1998,Unprovoked,BAHAMAS,Berry Islands,Ambergris Cay,Spearfishing,Kevin Paffrath,M,28,Calf bitten,N,16h30,"Caribbean reef shark, 1.2 m to 1.5 m [4' to 5'] ","E. Ritter, GSAF",1998.08.15-Paffrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.15-Paffrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.15-Paffrath.pdf,1998.08.15,1998.08.15,4047,, +1998.08.13,13-Aug-98,1998,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Body-boarding,Robert Parcus,M,11,Left calf injured,N,,4.5' to 5' shark,"A. Buttigieg, GSAF",1998.08.13-Parcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.13-Parcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.13-Parcus.pdf,1998.08.13,1998.08.13,4046,, +1998.08.12,12-Aug-98,1998,Provoked,SOUTH AFRICA,Transvaal,"National Zoological Gardens Aquarium, Pretoria",Moving a shark in a net ,Kobus Goosen,M,,Lacerations to right shin PROVOKED INCIDENT,N,,"Sandtiger shark, 2 m, male ","Daily Dispatch, 8/13/1998",1998.08.12-Goosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.12-Goosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.12-Goosen.pdf,1998.08.12,1998.08.12,4045,, +1998.08.01.b,01-Aug-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,"Buffalo Bay, near Knysna",Surfing (or body boarding),Ross Taylor,M,19,Legs bitten,N,,"White shark, 4 m [13'] ","Daily Record (Glasgow, Scotland), 8/3/1998",1998.08.01.b-RossTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.b-RossTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.b-RossTaylor.pdf,1998.08.01.b,1998.08.01.b,4044,, +1998.08.01.a,01-Aug-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Pringle Bay,Spearfishing,Christian Lombard,M,24,Leg bitten,N,13h00,"White shark, 4.9 m [16']","Daily Record (Glasgow, Scotland), 8/3/1998",1998.08.01.a-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.a-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.a-Lombard.pdf,1998.08.01.a,1998.08.01.a,4043,, +1998.07.26,26-Jul-98,1998,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Rodrigo Rocha Menezes,M,,Lacerations to left foot,N,17h30,,JCOnline,1998.07.26-Menezes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.26-Menezes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.26-Menezes.pdf,1998.07.26,1998.07.26,4042,, +1998.07.25,25-Jul-98,1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Michael Rinto,M,13,Calf bitten,N,P.M.,,"S. Petersohn, GSAF; Orlando Sentinel, 7/24/1998 & 7/27/1998 ",1998.07.25-Rinto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.25-Rinto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.25-Rinto.pdf,1998.07.25,1998.07.25,4041,, +1998.07.06.b,06-Jul-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Wading,Clark Thomas (father / rescuer),M,47,Right leg bitten,N,,"Raggedtooth shark, 1.2 m [4'] ","A. Gifford, GSAF",1998.07.06.b-ClarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.b-ClarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.b-ClarkThomas.pdf,1998.07.06.b,1998.07.06.b,4040,, +1998.07.11,11-Jul-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Francis Bay,Surfing,Darren James,M,16,Knee bitten,N,Morning,5' to 6' shark,"East London Daily Dispatch, 7/13/1998",1998.07.11-DarrenJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.11-DarrenJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.11-DarrenJames.pdf,1998.07.11,1998.07.11,4039,, +1998.07.06.a,06-Jul-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Surfing,Mark Thomas,M,10,Right leg bitten,N,,"Raggedtooth shark, 1.2 m [4'] ","A. Gifford, GSAF",1998.07.06.a-MarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.a-MarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.a-MarkThomas.pdf,1998.07.06.a,1998.07.06.a,4038,, +1998.06.28.a,28-Jun-98,1998,Unprovoked,AUSTRALIA,South Australia,South Neptune Island,Free diving for abalone,Doug Chesser,M,26,"FATAL, left thigh and lower leg severely injured ",Y,14h00,Thought to involve a 5.5 m white shark named Kong,R.W. Byard,1998.06.28-Chesser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.28-Chesser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.28-Chesser.pdf,1998.06.28.a,1998.06.28.a,4037,, +1998.06.22,22-Jun-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Gonubie, 13 km northeast of East London",Body Boarding,Anton deVos,M,20,"FATAL, hands & calf bitten ",Y,09h55,White shark,"A. Gifford, GSAF",1998.06.22-deVos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.22-deVos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.22-deVos.pdf,1998.06.22,1998.06.22,4036,, +1998.06.08,08-Jun-98,1998,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Brian Catarra,M,18,"2-inch laceration on dorsum of foot, 1-inch laceration on sole.",N,18h00,,"S. Petersohn, GSAF",1998.06.08-Catarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.08-Catarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.08-Catarra.pdf,1998.06.08,1998.06.08,4035,, +1998.06.05,05-Jun-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffrey's Bay,Surfing,Danny Bravier,M,,Survived,N,,,"A. Gifford, GSAF",1998.06.05-Bravier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.05-Bravier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.05-Bravier.pdf,1998.06.05,1998.06.05,4034,, +1998.05.30,30-May-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Pollock Beach,Surfing,Jamie Harrington,M,17,Minor laceration on foot,N,,,"A. Gifford, GSAF",1998.05.30-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.30-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.30-Harrington.pdf,1998.05.30,1998.05.30,4033,, +1998.05.29.b,29-May-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Sardinia Bay near Port Elizabeth,Body boarding,Marc Jucker,M,15,Right shoulder & arm bitten,N,2 hours after Opperman,3 m to 4 m [10' to 13'] white shark,"A. Gifford, GSAF",1998.05.29.b-Jucker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.b-Jucker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.b-Jucker.pdf,1998.05.29.b,1998.05.29.b,4032,, +1998.05.29.a,29-May-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Body boarding,Jan-Henrick Opperman,M,16,Leg bitten,N,Early afternoon,Unidentified,"A. Gifford, GSAF",1998.05.29.a-Opperman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.a-Opperman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.a-Opperman.pdf,1998.05.29.a,1998.05.29.a,4031,, +1998.05.25,25-May-98,1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jack Mounteer,M,40,4 lacerations on the sole of his right foot,N,11h10,"Lemon shark, 1.5 m [5'], identified by the surfer","S. Petersohn, GSAF; Orlando Sentinel, 5/26/1998, p.C.3; Daytona Beach News Journal, 5/26/1998, p.2D",1998.05.25-Mounteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.25-Mounteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.25-Mounteer.pdf,1998.05.25,1998.05.25,4030,, +1998.05.16.c,16-May-98,1998,Unprovoked,USA,Florida,"Pecks Lake, Martin County",Swimming,Janelle Dickinson,F,14,Ankle & foot bitten,N,14h30,"1.8 m [6'] shark, possibly a blacktip","The Stuart (FL) News, 5/17/1998",1998.05.16.c-Dickinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.c-Dickinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.c-Dickinson.pdf,1998.05.16.c,1998.05.16.c,4029,, +1998.05.16.b,16-May-98,1998,Unprovoked,USA,Florida,"Walden Rocks, St. Lucie County",Swimming / surfing,Roger Moore,M,24,Left arm & wrist lacerated,N,15h00,,"The Stuart (FL) News, 5/17/1998",1998.05.16.b-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.b-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.b-Moore.pdf,1998.05.16.b,1998.05.16.b,4028,, +1998.05.16.a,16-May-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Keurbooms,Body boarding,Neal Stephenson,M,22,"Lower legs bitten, foot severed",N,14h45,4 m [13'] white shark,"A. Gifford, GSAF",1998.05.16.a-Stephenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.a-Stephenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.a-Stephenson.pdf,1998.05.16.a,1998.05.16.a,4027,, +1998.04.26,26-Apr-98,1998,Unprovoked,MOZAMBIQUE,Gaza,"Bilene Bay, 180 km north of Maputo",Towing rubber dinghy,Wilma van Molendorff,F,35,"FATAL, torso & abdomen bitten, forearm severed ",Y,15h05,3 m [10'] shark,"A. Gifford, GSAF",1998.04.26-VonMollendorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.26-VonMollendorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.26-VonMollendorf.pdf,1998.04.26,1998.04.26,4026,, +1998.04.21,21-Apr-98,1998,Unprovoked,USA,Oregon,Gleneden Beach,Surfing (lying prone on his board),John Forse,M,50,Right thigh bitten,N,09h30 ,5 m [16.5'] white shark,"R. Collier, pp.161-163",1998.04.21-Forse_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.21-Forse_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.21-Forse_Collier.pdf,1998.04.21,1998.04.21,4025,, +1998.04.17,17-Apr-98,1998,Provoked,USA,Florida,"Marathon, Monroe County",Scuba diving,Kevin Morrison,M,16,"He grabbed shark's tail, shark bit his chest & held on. PROVOKED INCIDENT",N,,"Nurse shark, 0.9 m [3'] ","CNN; Orlando Sentinel, 4/18/1998, p.D7; Tallahassee Democrat, 4/19/1998",1998.04.17-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.17-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.17-Morrison.pdf,1998.04.17,1998.04.17,4024,, +1998.04.01,01-Apr-98,1998,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming ,Unidentified,M,,FATAL,Y,,,"JC, 4/2/1998",1998.04.01-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.01-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.01-BoaViagem.pdf,1998.04.01,1998.04.01,4023,, +1998.04.00,Apr-98,1998,Unprovoked,NEW CALEDONIA,,le de Sable,,,,,Calf bitten,N,,,W. Leander,1998.04.00-NewCaledonia-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.00-NewCaledonia-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.00-NewCaledonia-Fisherman.pdf,1998.04.00,1998.04.00,4022,, +1998.03.31,31-Mar-98,1998,Unprovoked,USA,Florida,"Jensen Beach Park, Martin County",Swimming,male,M,40,Heel lacerated,N,15h30,,"The Stuart (FL) News, 4/1/1998",1998.03.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.31-JensenBeach.pdf,1998.03.31,1998.03.31,4021,, +1998.03.15,15-Mar-98,1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Saldanha Bay,Snorkeling hunting crayfish and abalone,Kevin Dewey,M,33,Lower leg lacerated,N,17h30,3 m [10'] white shark,C. Maxwell,1998.03.15-Dewey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.15-Dewey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.15-Dewey.pdf,1998.03.15,1998.03.15,4020,, +1998.03.08.a,08-Mar-98,1998,Unprovoked,USA,Florida,"Loggerhead Park, Juno Beach, Palm Beach County",Swimming or paddle boarding,Rick Welch,M,32,6 puncture wounds to right calf,N,Morning,5' spinner shark,"Jupiter Courier, 3/11/1998",1998.03.08-Welch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.08-Welch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.08-Welch.pdf,1998.03.08.a,1998.03.08.a,4019,, +1998.02.23,23-Feb-98,1998,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Swimming,Gordon Wilson,M,,Hands bitten,N,09h35,Spinner shark,"Palm Beach Post, 2/24/1998",1998.02.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.02.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.02.23-Wilson.pdf,1998.02.23,1998.02.23,4018,, +1998.01.28.R ,Reported 28-Jan-1998,1998,Invalid,AUSTRALIA,New South Wales,Whale Beach,Spearfishing,male,M,31,"Missing, thought to have been taken by a shark",Y,20h00,Shark involvement not confirmed,"Daily Telegraph, 1/28/1998.p.2",1998.01.28.R-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.R-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.R-spearfisherman.pdf,1998.01.28.R ,1998.01.28.R ,4017,, +1998.01.28.a,Jan-98,1998,Unprovoked,NEW CALEDONIA,South Province,l'Anse-Vata,Windsurfing,Frederic Marechal,M,,"No injury, board bumped & fin damaged",N,,1.7 m shark,"W. Leander, Les Nouvelles Caledoniennes, 1/301998",1998.01.28.a-Frederic_Marechal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.a-Frederic_Marechal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.a-Frederic_Marechal.pdf,1998.01.28.a,1998.01.28.a,4016,, +1998.01.25.b,25-Jan-98,1998,Unprovoked,REUNION,Grand'Anse,,Bathing,Philippe Blu,M,,FATAL,Y,Mid afternoon,,G. Van Grevelynghe,1998.01.25.b-Blu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.b-Blu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.b-Blu.pdf,1998.01.25.b,1998.01.25.b,4015,, +1998.01.25.a,25-Jan-98,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Surfing,Glenn Vosloo,M,21,Calf & foot lacerated,N,,,"A. Gifford, GSAF",1998.01.25.a-Vosloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.a-Vosloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.a-Vosloo.pdf,1998.01.25.a,1998.01.25.a,4014,, +1998.01.17,17-Jan-98,1998,Unprovoked,AUSTRALIA,South Australia,Middleton Beach,Surfing,Greg Anderson,M,,20 punctures in right foot,N,Afternoon,,"Sunday Mail (QLD), 1/18/1998, p.22; Hobart Mercury, 1/19/1998, p.41",1998.01.17-GregAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.17-GregAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.17-GregAnderson.pdf,1998.01.17,1998.01.17,4013,, +1998.01.14,14-Jan-98,1998,Unprovoked,MOZAMBIQUE,Maputo Province,Ponta do Ouro,Surfing,Roberto Zornada,M,23,Leg bitten,N,13h15,Small dusky shark or blackfin shark,"A. Gifford, GSAF ",1998.01.14-Zornada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.14-Zornada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.14-Zornada.pdf,1998.01.14,1998.01.14,4012,, +1998.00.00.c,1998,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Hole-in-the Wall,Surfing,M,M,28,FATAL,Y,,,BL Meel / B. Myatt,1998.00.00.c-Transkei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.c-Transkei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.c-Transkei.pdf,1998.00.00.c,1998.00.00.c,4011,, +1998.00.00.b,1998,1998,Unprovoked,REUNION,Beaufonds,,Diving,,,,FATAL,Y,,,G. Van Grevelynghe,1998.00.00.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.b-Reunion.pdf,1998.00.00.b,1998.00.00.b,4010,, +1998.00.00.a,1998,1998,Unprovoked,USA,Virginia,"Wreck of the Navy Barge, 22 miles SE of Rudee ",Spearfishing on scuba & transferring fish onto a stringer,male,M,,Shark grasped diver's gloved hand. Glove was soaked with fish blood & slime,N,,sandtiger shark,"J. Musick,",1998.00.00.a-VirginiaBargeSpearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.a-VirginiaBargeSpearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.a-VirginiaBargeSpearfisherman.pdf,1998.00.00.a,1998.00.00.a,4009,, +1997.12.28.b,28-Dec-97,1997,Unprovoked,SOUTH AFRICA,Western Cape Province,"Pringle Bay, 44 miles southeast of Cape Town",Spearfishing,Ian James Hill,M,39,FATAL,Y,14h00,White shark,"A. Gifford, GSAF",1997.12.28.b-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.b-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.b-Hill.pdf,1997.12.28.b,1997.12.28.b,4008,, +1997.12.28.a,28-Dec-97,1997,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Francis Bay,Sitting on surfboard,Stuart Buchanan,M,,Calf bitten,N,,,"A. Gifford, GSAF",1997.12.28.a-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.a-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.a-Buchanan.pdf,1997.12.28.a,1997.12.28.a,4007,, +1997.12.25.b,25-Dec-97,1997,Invalid,USA,Florida,"Fort Lauderdale, Broward County",,Gerd Olofsson,F,29,"Ankle bitten, but shark involvement unconfirmed",N,,Shark involvement not confirmed,"Miami Herald, 12/27/1997",1997.12.25.b-Olofsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.b-Olofsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.b-Olofsson.pdf,1997.12.25.b,1997.12.25.b,4006,, +1997.12.25.a,25-Dec-97,1997,Unprovoked,USA,Florida,"Hollywood Beach, Broward County",Swimming,Samuel Lussier,M,8,Left leg gashed knee to ankle,N,,,"Orlando Sentinel, 12/27/1997, p.D.3; Globe Newspaper Company",1997.12.25.a-Lussier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.a-Lussier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.a-Lussier.pdf,1997.12.25.a,1997.12.25.a,4005,, +1997.11.09,09-Nov-97,1997,Unprovoked,AUSTRALIA,Western Australia,Albany,Scuba diving (submerged riding a scooter),Kevin Hulkes,M,42,Left arm lacerated when shark grabbed scooter,N,Morning,White shark,"Daily Telegraph, 11/12/1997, p.5",1997.11.09-Hulkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.09-Hulkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.09-Hulkes.pdf,1997.11.09,1997.11.09,4004,, +1997.11.05.R,Reported 05-Nov-1997,1997,Unprovoked,USA,Florida,,Swimming,"James Ogilvy, 31st in line for the British Throne",M,32,Thigh bitten,N,Mid morning,,"The Mirror (London), 11/5/1997",1997.11.05.R-Ogilvy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.R-Ogilvy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.R-Ogilvy.pdf,1997.11.05.R,1997.11.05.R,4003,, +1997.11.05, 05-Nov-1997,1997,Invalid,AUSTRALIA,New South Wales,Botany Bay?,Unknown,Luke McIntyre,M,21,5 m white shark obsrved feeding on remains 6 days later,Y,,Shark involvement in his death uncofirmed,"Courier-Mail, 12/7/1998, p.3",1997.11.05.a-McIntyre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.a-McIntyre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.a-McIntyre.pdf,1997.11.05,1997.11.05,4002,, +1997.10.28.b,28-Oct-97,1997,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe Beach, Perth",Surf-skiing,Brian Sierakowski & Barney Hanrahan,M,51,"Sierakowski suffered a minor facial injury, ski bitten in half by shark",N,,5.5 m [18'] white shark,"Reuters Limited, et al",1997.10.28.b-Sierakowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.b-Sierakowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.b-Sierakowski.pdf,1997.10.28.b,1997.10.28.b,4001,, +1997.10.28.a,28-Oct-97,1997,Unprovoked,USA,Hawaii,"Waiokapua Bay/Majors Bay, Brennecke Beach, Poipu, Kaua'i Island",Body boarding or surfing,Mike Coots,M,19,"Both legs bitten, right leg severed at mid-calf & defense wounds on right hand",N,07h20,"Tiger shark, 4 m to 4.3 m [13' to 14'] ","Yahoo News Canada, 8/16/2012",1997.10.28.a-Coots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.a-Coots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.a-Coots.pdf,1997.10.28.a,1997.10.28.a,4000,, +1997.10.24,24-Oct-97,1997,Unprovoked,USA,Florida,"North Jetty, Fort Pierce Inlet State Park, St. Lucie County",Surfing,Luis Morales,M,23,"5"" gash in foot",N,17h15,Possibly a blacktip shark,"Fort Pierce News, 10/25/1997 & 10/31/1997",1997.10.24-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.24-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.24-Morales.pdf,1997.10.24,1997.10.24,3999,, +1997.10.21,21-Oct-97,1997,Unprovoked,USA,Florida,"North Jetty, Fort Pierce Inlet State Park, St. Lucie County",Surfing,Jacob McBee,M,12,Left foot bitten,N,18h00,1.2 m to 1.5 m [4' to 5'] shark,"Fort Pierce News, 10/24/1997, p.A2",1997.10.21-McBee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.21-McBee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.21-McBee.pdf,1997.10.21,1997.10.21,3998,, +1997.10.11.R,Reported 11-Oct-1997,1997,Boat,SOUTH AFRICA,Eastern Cape Province,Off Port Alfred,Fishingat,Andre Marais & Tony Jensen,,,"No injury, hooked shark bit their 4.8 m inflatable boat",N,,Soupfin shark,"Daily Dispatch, 10/11/1997",1997.10.11.R-Jensen-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.11.R-Jensen-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.11.R-Jensen-Marais.pdf,1997.10.11.R,1997.10.11.R,3997,, +1997.10.04,04-Oct-97,1997,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Tara Stalnaker,F,14,Laceration & 3 puncture wounds to anterior right thigh,N,08h30,,"S. Petersohn, GSAF; Orlando Sentinel, 10/5/1997, p.B.3; J. Bozzo; Daytona Beach News Journal, 10/6/1997, p.3D ",1997.10.04.b-Stalnaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.04.b-Stalnaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.04.b-Stalnaker.pdf,1997.10.04,1997.10.04,3996,, +1997.09.16,16-Sep-97,1997,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Pedro Fernandes da Silva,M,20,FATAL,Y,,,JCOnline,1997.09.16-PedroFernandesDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.16-PedroFernandesDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.16-PedroFernandesDaSilva.pdf,1997.09.16,1997.09.16,3995,, +1997.09.09,09-Sep-97,1997,Unprovoked,USA,Florida,Volusia County ,Surfing,G.D.,M,12,Laceration to right foot,N,17h15,,"S. Petersohn, GSAF",1997.09.09-Dietlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.09-Dietlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.09-Dietlin.pdf,1997.09.09,1997.09.09,3994,, +1997.09.08,08-Sep-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,,17,2 small lacerations to bottom of foot,N,Evening,small blacktip shark,"Daytona News-Journal, 9/9/1997",1997.09.08-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.08-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.08-NSB.pdf,1997.09.08,1997.09.08,3993,, +1997.09.06,06-Sep-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Robert Lange,M,20,Lacerations to lower left leg,N,15h20,,"S. Petersohn, GSAF",1997.09.06-Lange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.06-Lange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.06-Lange.pdf,1997.09.06,1997.09.06,3992,, +1997.08.30,30-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Hoyas,M,18,Lacerations on right ankle & heel,N,13h00,,"S. Petersohn, GSAF",1997.08.30-Hoyas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.30-Hoyas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.30-Hoyas.pdf,1997.08.30,1997.08.30,3991,, +1997.08.27,27-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Walking / surfing,Anthony Aleno,M,22,"2"" laceration on left heel",N,11h20,,"S. Petersohn, GSAF",1997.08.27-Aleno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.27-Aleno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.27-Aleno.pdf,1997.08.27,1997.08.27,3990,, +1997.08.24,24-Aug-97,1997,Unprovoked,USA,California,"Clam Beach, near Eureka, Humboldt County",Surfing (sitting on his board),Scott Yerby,M,29,Leg & hand bitten,N,12h30,5 m [16.5'] white shark,"R. Collier, pp.159-160",1997.08.24-Yerby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.24-Yerby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.24-Yerby_Collier.pdf,1997.08.24,1997.08.24,3989,, +1997.08.14.b,14-Aug-97,1997,Invalid,MEXICO,Quintana Roo,"Santa Rosa, Cozumel",SCUBA diving,Mike Jonatis,M,28,FATAL,Y,,Shark involvement not confirmed,"Charlotte Observer, 8/22/2997, p.7C & 8C; York Observer, 8/22/1997, p.2Y; UWSports.com",1997.08.14.b-Joniatis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.b-Joniatis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.b-Joniatis.pdf,1997.08.14.b,1997.08.14.b,3988,, +1997.08.14.a,14-Aug-97,1997,Unprovoked,MEXICO,Quintana Roo,"Santa Rosa, Cozumel",SCUBA diving,Mac Lupold,M,33,"FATAL, arm & leg severed ",Y,,"Tiger shark, 5.2 m [17']","Charlotte Observer, 8/22/2997, p.7C & 8C; York Observer, 8/22/1997, p.2Y; UWSports.com",1997.08.14.a- Lupold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.a- Lupold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.a- Lupold.pdf,1997.08.14.a,1997.08.14.a,3987,, +1997.08.11.c,11-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Floating on raft,L.B.,F,12,Small lacerations on right lower leg,N,14h16,,"S. Petersohn, GSAF",1997.08.11.c-NV-L.B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.c-NV-L.B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.c-NV-L.B.pdf,1997.08.11.c,1997.08.11.c,3986,, +1997.08.11.b,11-Aug-97,1997,Unprovoked,EGYPT,Red Sea,Safaga,Fishing,Nagah Attalah Al Sayed ,M,17,Seriously injured,N,,,"Middle East Times, 8/15/1997",1997.08.11.b-ElSayed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.b-ElSayed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.b-ElSayed.pdf,1997.08.11.b,1997.08.11.b,3985,, +1997.08.11.a,11-Aug-97,1997,Unprovoked,EGYPT,Red Sea,Safaga,Fishing,Ayman Abul Hassan,M,16,FATAL,Y,,Thought to involve an oceanic whitetip shark or a white shark,"Middle East Times, 8/15/1997",1997.08.11.a-Hassan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.a-Hassan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.a-Hassan.pdf,1997.08.11.a,1997.08.11.a,3984,, +1997.08.10,10-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,N. F.,M,17,Lacerations to foot,N,11h48,,"S. Petersohn, GSAF",1997.08.10-NV-N.F.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.10-NV-N.F.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.10-NV-N.F.pdf,1997.08.10,1997.08.10,3983,, +1997.08.09,09-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,,Lacerations to right foot,N,17h15,,"S. Petersohn, GSAF",1997.08.09-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.09-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.09-NV-NewSmyrnaBeach.pdf,1997.08.09,1997.08.09,3982,, +1997.08.05,05-Aug-97,1997,Unprovoked,USA,Texas,"East Beach, Galveston",Wading,female,F,10,Wrist & am bitten,N,,1 m shark,"Austin American Statesman, 8/7/1997, p.C8",1997.08.05-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.05-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.05-Galveston.pdf,1997.08.05,1997.08.05,3981,, +1997.08.04,04-Aug-97,1997,Unprovoked,USA,Florida,"Carysfort Lighthouse, Key Largo, Monroe County",Wade-fishing,Pete Swenson,M,,Left forearm & wrist bitten,N,,1.5 m [5'] shark,"Miami Herald, 8/29/1997",1997.08.04-Swenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.04-Swenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.04-Swenson.pdf,1997.08.04,1997.08.04,3980,, +1997.08.02.b,02-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Rodigo Cesar,M,17,Top of left foot bitten,N,15h45,juvenile shark,"S. Petersohn, GSAF; D. Catron, Orlando Sentinel, 8/3/1997, B3",1997.08.02.b-Cesar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.b-Cesar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.b-Cesar.pdf,1997.08.02.b,1997.08.02.b,3979,, +1997.08.02.a,02-Aug-97,1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading / Surfing,Matthew Perny,M,19,Top of left foot bitten,N,09h15,"""juvenile shark""","S. Petersohn, GSAF; D. Catron, Orlando Sentinel, 8/3/1997, B3",1997.08.02.a-Perny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.a-Perny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.a-Perny.pdf,1997.08.02.a,1997.08.02.a,3978,, +1997.07.27,27-Jul-97,1997,Unprovoked,AUSTRALIA,Queensland,"Pincushion, north of Maroochydore Beach",Surfing,Neil Davey,M,19,Leg lacerated,N,14h25,,"Courier-Mail, 7/28/1997, p.5",1997.07.27-Davey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.27-Davey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.27-Davey.pdf,1997.07.27,1997.07.27,3977,, +1997.07.21,21-Jul-97,1997,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Breezy Point, Ntlonyana",Surfing,Mark Penches,M,25,FATAL,Y,12h45,4.5 m white shark,"A. Gifford, GSAF, G. Cliff, NSB",1997.07.21-Penches.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.21-Penches.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.21-Penches.pdf,1997.07.21,1997.07.21,3976,, +1997.07.17,17-Jul-97,1997,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Jos Roberto Paraizo de Albuquerque,M,,Survived,N,,,JCOnline,1997.07.17.b-Albuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.17.b-Albuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.17.b-Albuquerque.pdf,1997.07.17,1997.07.17,3975,, +1997.07.14,14-Jul-97,1997,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Standing,Flint Cowden,M,50,Left calf bitten,N,Night,Blacktip shark,"Charlotte Observer, 7/17/1997, p.2C; C. Creswell, GSAF",1997.07.14-Cowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.14-Cowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.14-Cowden.pdf,1997.07.14,1997.07.14,3974,, +1997.07.12,12-Jul-97,1997,Unprovoked,OKINAWA,Miyako,Hirara,Fishing for octopus,Shizuo Nakachi,M,55,"FATAL, legs severed ",Y,,White shark,"Okinawa Weekly Times, 7/19/1997 editon; Ryukyu Shrimpo News (Japan)",1997.07.12-Nakachi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.12-Nakachi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.12-Nakachi.pdf,1997.07.12,1997.07.12,3973,, +1997.07.02.R, 2-Jul-1997,1997,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Jurandir Amorim Silva,,,Right thigh bitten,N,,,"D. Duarte; Globo, 7/2/1997",1997.07.02-Jurandir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.02-Jurandir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.02-Jurandir.pdf,1997.07.02.R,1997.07.02.R,3972,, +1997.06.24,24-Jun-97,1997,Unprovoked,USA,Hawaii,"Sunset Beach, Oahu",Spearfishing / night diving,L. Molina,M,,Leg bitten just above ankle,N,23h00,2.4 m [8'] shark,Hawaii Department of Land and Natural Resources,1997.06.24-Molina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.24-Molina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.24-Molina.pdf,1997.06.24,1997.06.24,3971,, +1997.06.15,15-Jun-97,1997,Unprovoked,FIJI,Taveuni,Off a small island 5 km from Garden Island Resort,Snorkeling,Liz Rogers,F,47,"Bitten on inner thigh, leg surgically amputated",N,14h30,"Tiger shark, 2.7m [9']","R. D. Weeks, GSAF; Otago Daily Times, 6/17/1997, p.2; Sport Diver Magazine, Dec97/Jan98, p.8",1997.06.15-LizRogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.15-LizRogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.15-LizRogers.pdf,1997.06.15,1997.06.15,3970,, +1997.06.09,09-Jun-97,1997,Unprovoked,USA,Florida, Palm Beach County,Surfing,Michael Massey,M,18,Laceration to left upper arm,N,18h00,Possibly a spinner shark,"Palm Beach Post, 6/12/1997",1997.06.09-Massey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.09-Massey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.09-Massey.pdf,1997.06.09,1997.06.09,3969,, +1997.06.07,07-Jun-97,1997,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana, Rio de Janeiro",Bathing,Jos Luiz Lipiani,M,,,UNKNOWN,,,"Globo, 6/9/1997",1997.06.07-NV-Lipiani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.07-NV-Lipiani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.07-NV-Lipiani.pdf,1997.06.07,1997.06.07,3968,, +1997.06.02,02-Jun-97,1997,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County","Body surfing, stood up on sandbar",Doug Amelio,M,33,4 lacerations above left ankle,N,10h25,1.2 m [4'] shark (spinner shark?),"S. Petersohn, GSAF; D. Treen; Florida Times-Union, 6/3/1997; Miami Herald, 6/3/1997",1997.06.02-Amelio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.02-Amelio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.02-Amelio.pdf,1997.06.02,1997.06.02,3967,, +1997.05.31.c,31-May-97,1997,Unprovoked,USA,Florida,In Gulf of Mexico 17 miles off Weeki Wachee ,Spearfishing,Dave Medvec,M,35,Right thigh punctured,N,Morning,4' shark,"R. Nelson, St. Petersburg Times, 6/6/1997",1997.05.31.c-Medvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.c-Medvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.c-Medvec.pdf,1997.05.31.c,1997.05.31.c,3966,, +1997.05.31.b,31-May-97,1997,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Robert Fuller,M,34,Left elbow bitten,N,11h00,Possibly a sand shark,"A. Mikula, Daytona Beach News-Journal, 6/1/199, p.2C",1997.05.31.b-Fuller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.b-Fuller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.b-Fuller.pdf,1997.05.31.b,1997.05.31.b,3965,, +1997.05.31.a,31-May-97,1997,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Johnny Bowden,M,12,Left ankle bitten,N,11h00,Possibly a sand shark,"A. Mikula, Daytona Beach News-Journal, 6/1/1997, p.2C",1997.05.31.a-Bowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.a-Bowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.a-Bowden.pdf,1997.05.31.a,1997.05.31.a,3964,, +1997.05.26,26-May-97,1997,Unprovoked,BAHAMAS,Abaco Islands,Powell Cay,Spearfishing,Wilber Wood,M,54,Right arm bitten,N,,Possibly a Caribbean reef shark,"The Mirror (London); Orlando Sentinel, 5/28, 1997, p.C3",1997.05.26-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.26-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.26-Wood.pdf,1997.05.26,1997.05.26,3963,, +1997.05.17,17-May-97,1997,Unprovoked,BAHAMAS,Abaco Islands,Walkers Cay,Spearfishing,Robert Gunn,M,,Leg bitten,N,Morning,,"Miami Herald, 5/18/1997",1997.05.17-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.17-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.17-Gunn.pdf,1997.05.17,1997.05.17,3962,, +1997.04.20,20-Apr-97,1997,Unprovoked,BRAZIL,Rio de Janeiro,"Manguinhos, Ilha Feia, Bzios",Windsurfing,Joo Pedro Portinari Leo,M,22,Lower left leg & ankle bitten,N,,3.7m to 4.2 m white shark,"O. Gadig; Globo, 4/24/1997",1997.04.20-Leao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.04.20-Leao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.04.20-Leao.pdf,1997.04.20,1997.04.20,3961,, +1997.02.28.b,28-Feb-97,1997,Unprovoked,AUSTRALIA,Queensland,"Carrara, Nerang River",Swimming,Joanna Salmon,F,21,Left leg biten,N,,a small shark,"The Advertiser, 3/1/1997, p.12",1997.02.28.b-Salmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.b-Salmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.b-Salmon.pdf,1997.02.28.b,1997.02.28.b,3960,, +1997.02.28.a,28-Feb-97,1997,Unprovoked,AUSTRALIA,Queensland,Whitsunday Passage,Scuba diving,Gerald Rauch,M,30,Left arm bitten,N,Midday,"Tiger shark, 2m to 3m ","The Advertiser, 3/1/1997, p.12",1997.02.28.a-Rauch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.a-Rauch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.a-Rauch.pdf,1997.02.28.a,1997.02.28.a,3959,, +1997.02.21,21-Feb-97,1997,Unprovoked,USA,Hawaii,"Sunset Beach, O'ahu",,Gersome Perreno,M,,No details,UNKNOWN,,,G. Balazs,1997.02.21-NV-Perreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.21-NV-Perreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.21-NV-Perreno.pdf,1997.02.21,1997.02.21,3958,, +1997.02.20,20-Feb-97,1997,Unprovoked,REUNION,L'Etang-Sale,,,Laurent Lebon,M,,Hand injured,N,,,"LeQuotidien, 12/4/1999",1997.02.20-Lebon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.20-Lebon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.20-Lebon.pdf,1997.02.20,1997.02.20,3957,, +1997.02.03,03-Feb-97,1997,Boat,AUSTRALIA,New South Wales,"Iron Cove, Sydney",Rowing ,Andree Moscari,F,49,"Bruised, when shark struck scull & catapulted her into the water",N,,,"J. Delvecchio & D. Sygall, Sydney Morning Herald, 2/4/1997, p.2",1997.02.03-Mocsari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.03-Mocsari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.03-Mocsari.pdf,1997.02.03,1997.02.03,3956,, +1997.01.25,25-Jan-97,1997,Unprovoked,AUSTRALIA,Queensland,"Whitehaven Beach, Whitsundays Island",Snorkeling,Derek Burrows,M,27,"Left leg lacerated, punctures to right leg",N,11h00 / 11h30,1.8 m to 2.1 m [6' to 7'] shark,"Sunday Mail (QLD), 1/26/1997, p.2; Hobart Mercury, 1/27/1997, p.2",1997.01.25-Burrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.25-Burrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.25-Burrows.pdf,1997.01.25,1997.01.25,3955,, +1997.01.20,20-Jan-97,1997,Unprovoked,AUSTRALIA,Western Australia,Geraldton,Windsurfing,Werner Schonhofer,M,41,"Presumed fatal, no body recovered, shark mutilated wetsuit & harness recovered ",Y,18h00,"Tiger shark, 4.5 m [14'9""]","Daily Telegraph, 1/22/1997, p.1; H. Edwards, p.14-15",1997.01.20.a-Schonhofer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.20.a-Schonhofer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.20.a-Schonhofer.pdf,1997.01.20,1997.01.20,3954,, +1997.01.03.a,03-Jan-97,1997,Unprovoked,REUNION,,la Pointe-au-Sel,Spearfishing,David Lonne,M,,FATAL,Y,,Bull shark,"Clicanoo, le journal de l'Ile de la Runion",1997.01.03-Lonne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.03-Lonne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.03-Lonne.pdf,1997.01.03.a,1997.01.03.a,3953,, +1997.01.01,01-Jan-97,1997,Boat,AUSTRALIA,Victoria,"Seal Rocks, Phillip Island",Watching seals,"Inflatable dinghy, occupants: Jasmine Wigley, Greg Wilkie, Phil Rourke & Fleur Anderson",,,"No injury to occupants, shark bit 2 of the dinghy's 3 floation chambers",N,,White shark,"The Advertiser, 1/3/1997, p.7",1997.01.01-Seal-island-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.01-Seal-island-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.01-Seal-island-boat.pdf,1997.01.01,1997.01.01,3952,, +1996.12.29,29-Dec-96,1996,Unprovoked,AUSTRALIA,Queensland,Coolum Beach,Surfing,Blair Hall,M,18,,UNKNOWN,18h00,,"The Advertiser, 12/30/1996, p.3",1996.12.29-BlairHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.29-BlairHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.29-BlairHall.pdf,1996.12.29,1996.12.29,3951,, +1996.12.10,10-Dec-96,1996,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Duck Pond, Sardina Bay near Port Elizabeth",Surfing,Steven Cross,M,,Elbow bitten,N,16h15,White shark,"A. Gifford, GSAF",1996.12.10-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.10-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.10-Cross.pdf,1996.12.10,1996.12.10,3950,, +1996.12.00.b,Dec-96,1996,Unprovoked,NEW CALEDONIA,,,Spearfishing,Charles Wadra,M,,"Presumed fatal, only his shark-bitten speargun recovered",Y,,,W. Leander,1996.12.00.b-Wadra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.b-Wadra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.b-Wadra.pdf,1996.12.00.b,1996.12.00.b,3949,, +1996.12.00.a,Dec-96,1996,Unprovoked,NEW CALEDONIA,South Province,L'llot Maetre,Attempting to attract dolphins,female,F,,Hand bitten,N,,,W. Leander,1996.12.00.a-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.a-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.a-NewCaledonia.pdf,1996.12.00.a,1996.12.00.a,3948,, +1996.11.29.a,29-Nov-96,1996,Unprovoked,USA,California,"Salmon Creek Beach, Sonoma County",Surfing,Greg Ferry,M,45,Single laceration on ankle & board bitten,N,08h30,3 m to 5 m [10' to 16.5'] white shark,"R. Collier, p.158",1996.11.29-Ferry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.29-Ferry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.29-Ferry_Collier.pdf,1996.11.29.a,1996.11.29.a,3947,, +1996.11.18,18-Nov-96,1996,Unprovoked,USA,Florida,"Coral Cove Park, Palm Beach County",Surfing,Adam Urban ,M,26,Right foot bitten,N,17h00,,"Jupiter Courier, 11/20/1996",1996.11.18-Urban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.18-Urban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.18-Urban.pdf,1996.11.18,1996.11.18,3946,, +1996.10.28.b,28-Oct-96,1996,Unprovoked,BRAZIL,Pernambuco,Barra de Jangada,Surfing,Gilvan Jaime de Freitas Jnior,,,Leg bitten,N,,,D. Duarte,1996.10.28.b-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.b-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.b-deFrietas.pdf,1996.10.28.b,1996.10.28.b,3945,, +1996.10.28.a,28-Oct-96,1996,Unprovoked,BRAZIL,Pernambuco,Barra de Jangada,Surfing,Luis Henrique Messias,M,,Survived,N,,,JCOnline,1996.10.28.a-Messias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.a-Messias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.a-Messias.pdf,1996.10.28.a,1996.10.28.a,3944,, +1996.10.09,09-Oct-96,1996,Unprovoked,OKINAWA,Miyako Island,Boragawa Beach,Swimming or snorkeling,male,M,,FATAL,Y,,,"Okinawa Weekly Times, 10/14/1996 ",1996.10.09-Okinawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.09-Okinawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.09-Okinawa.pdf,1996.10.09,1996.10.09,3943,, +1996.10.05.,05-Oct-96,1996,Unprovoked,USA,California,"Dillon Beach, Marin County",Surfing,Mark Quirt,M,22,Lower leg bitten,N,13h00,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.156-157",1996.10.05-Quirt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.05-Quirt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.05-Quirt_Collier.pdf,1996.10.05.,1996.10.05.,3942,, +1996.10.03.b,03-Oct-96,1996,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Aric Hollingsworth,M,21,"4"" laceration on left forearm",N,08h30,1.2 m [4'] shark,"Orlando Sentinel, 10/4/1996",1996.10.03.b-Hollingsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.b-Hollingsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.b-Hollingsworth.pdf,1996.10.03.b,1996.10.03.b,3941,, +1996.10.03.a,03-Oct-96,1996,Unprovoked,USA,California,"North Salmon Creek Beach, Sonoma County",Surfing,Kennon Cahill,M,31,"No Injury, shark struck his board",N,07h19,5 m [16.5'] white shark,R. Collier http://www.sharkresearchcommittee.com/unprovoked_surfer.htm,1996.10.03.a-Cahill_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.a-Cahill_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.a-Cahill_Collier.pdf,1996.10.03.a,1996.10.03.a,3940,, +1996.10.00,Oct-96,1996,Unprovoked,BRAZIL,Pernambuco,,,Josebias Dias,,,Survived,N,,,D. Duarte,1996.10.00-NV-Josebias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.00-NV-Josebias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.00-NV-Josebias.pdf,1996.10.00,1996.10.00,3939,, +1996.09.18,18-Sep-96,1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Robert Gary,M,14,4 or 5 lacerations on left ankle,N,13h37,,"S. Petersohn, GSAF; Orlando Sentinel, 9/19/1996, p.D3; Tallahassee Democrat, 9/20/1996",1996.09.18-RobertGary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.18-RobertGary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.18-RobertGary.pdf,1996.09.18,1996.09.18,3938,, +1996.09.06.b,06-Sep-96,1996,Unprovoked,NEW ZEALAND,Chatham Islands ,Waihere Bay,Diving for abalone,Vaughn Hill,M,23,"Back, arms & wrist severely lacerated",N,10h00,White shark,"R.D. Weeks, GSAF; Otago Daily Times, 9/7/1996, p.2 +",1996.09.06.b-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.b-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.b-Vaughn.pdf,1996.09.06.b,1996.09.06.b,3937,, +1996.09.06.a,06-Sep-96,1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing / Swimming,John Perkins,M,19,Small puncture wounds and lacerations on right leg just below knee,N,12h15,"""a young shark""","S. Petersohn, GSAF; Orlando Sentinel , 9//7/1996; Daytona Beach News Journal, 9/7/1996, p.4C ",1996.09.06.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.a-Perkins.pdf,1996.09.06.a,1996.09.06.a,3936,, +1996.09.02.b,02-Sep-96,1996,Unprovoked,USA,Florida,"Behune Beach, Volusia County",Standing,William (or Richard) Schwall,M,5,Right foot bitten,N,18h05,,"S. Petersohn, GSAF; Orlando Sentinel , 9//7/1996; Daytona Beach News Journal, 9/7/1999, p.4C",1996.09.02.b-Schwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.b-Schwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.b-Schwall.pdf,1996.09.02.b,1996.09.02.b,3935,, +1996.09.02.a,02-Sep-96,1996,Unprovoked,USA,Florida,"Bethune Beach, Volusia County",Sitting on surfboard,Chris Volz,M,28,Small lacerations on left foot,N,13h25,,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/3/1999, pp. 2D & 4D, 9/7/1999, p.4C",1996.09.02.a-Volz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.a-Volz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.a-Volz.pdf,1996.09.02.a,1996.09.02.a,3934,, +1996.09.01.b,01-Sep-96,1996,Invalid,USA,South Carolina,"Garden City Beach, Horry County",Boogie boarding,female,F,28,Minor injuries to foot,N,Afternoon,Shark involvement not confirmed,"The Sun, 9/2/1996",1996.09.01.b-GardenCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.b-GardenCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.b-GardenCity.pdf,1996.09.01.b,1996.09.01.b,3933,, +1996.09.01.a,01-Sep-96,1996,Provoked,SOUTH AFRICA,KwaZulu-Natal,Hibberdene,Spearfishing,Gyula Plaganyi,M,29,No injury PROVOKED INCIDENT,N,07h19,White shark,"A. Gifford, GSAF",1996.09.01.a-Plaganyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.a-Plaganyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.a-Plaganyi.pdf,1996.09.01.a,1996.09.01.a,3932,, +1996.08.29,29-Aug-96,1996,Unprovoked,USA,Hawaii,"Paukukalo, Maui",Body Boarding,"David Nanod, Jr.",M,19,Right calf bitten,N,16h00,"Tiger shark, 2.4 m [8'] ","Allen, p.117",1996.08.29-Nanod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.29-Nanod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.29-Nanod.pdf,1996.08.29,1996.08.29,3931,, +1996.08.13,13-Aug-96,1996,Unprovoked,USA,California,"Bird Rock, Tomales Point",Free diving for abalone,Colum Tinley,M,36,"Left shoulder, forearm, hand & abdomen lacerated",N,11h15,6 m [20'] white shark,"R. Collier, pp.154-155 ",1996.08.13-Tinley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.13-Tinley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.13-Tinley_Collier.pdf,1996.08.13,1996.08.13,3930,, +1996.08.11,11-Aug-96,1996,Unprovoked,USA,Florida,"Bayshore Garden, Sarasota Bay, Sarasota County",Wade fishing,Jason King,M,21,"No injury, towed by shark that grabbed stringer of fish tied to his waist",N,14h00,1.8 m to 2.1 m [6' to 7'] hammerhead shark,"Bradenton Herald, 8/12/1996, p.L2",1996.08.11-Jason King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.11-Jason King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.11-Jason King.pdf,1996.08.11,1996.08.11,3929,, +1996.07.26,26-Jul-96,1996,Unprovoked,USA,Florida,"Wiggins Pass, Collier County",Standing,a German girl,F,8,Survived,N,19h30,,Press clipping,1996.07.26-NV-WigginsPass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.26-NV-WigginsPass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.26-NV-WigginsPass.pdf,1996.07.26,1996.07.26,3928,, +1996.07.23.b,23-Jul-96,1996,Unprovoked,OKINAWA,Miyako,Hirara City,Swimming,Mr. Moriyoshi Takehara,M,52,"FATAL, torso & abdomen bitten, forearm severedL",Y,,5 m [16.5'] white shark,"press clippings ; Okinawa Weekly Times, 10/14/1996 ",1996.07.23.b-Takehara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.b-Takehara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.b-Takehara.pdf,1996.07.23.b,1996.07.23.b,3927,, +1996.07.23.a,23-Jul-96,1996,Unprovoked,EGYPT / ISRAEL,"South Sinai, Gulf of Aqaba","1 km off the mouth of Marsa Bereika, north of Ras Mohammed",Free diving with a pod of dolphins,Martin Christopher Richardson,M,,"Bitten on back, shoulder & chest",N,18h00,said to involve an oceanic whitetip shark,"Daily Telegraph, 7/26/1996, p.15; K. Lavalli & O. Goffman",1996.07.23.a-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.a-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.a-Richardson.pdf,1996.07.23.a,1996.07.23.a,3926,, +1996.07.21,21-Jul-96,1996,Unprovoked,USA,Massachusetts,"Truro (Cape Cod), Barnstable County",Swimming,James Orlowski,M,46,Lacerations to left leg & right foot ,N,,6' shark,"Associated Press, 7/23/1996",1996.07.21-Orlowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.21-Orlowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.21-Orlowski.pdf,1996.07.21,1996.07.21,3925,, +1996.07.20,20-Jul-96,1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,K.O.,M,9,Laceration to right arm,N,13h30,,"S. Petersohn, GSAF",1996.07.20-K.O.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.20-K.O.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.20-K.O.pdf,1996.07.20,1996.07.20,3924,, +1996.07.14,14-Jul-96,1996,Unprovoked,USA,Hawaii,"Nakalele Point, Maui",,Trimurti Day,,,No details,UNKNOWN,,,G. Balazs,1996.07.14-NV-TrimurtiDay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.14-NV-TrimurtiDay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.14-NV-TrimurtiDay.pdf,1996.07.14,1996.07.14,3923,, +1996.07.10,10-Jul-96,1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",,Andrew Lewis,M,18,Right foot bitten,N,13h45,,"S. Petersohn, GSAF",1996.07.10-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.10-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.10-Lewis.pdf,1996.07.10,1996.07.10,3922,, +1996.07.04.b,04-Jul-96,1996,Unprovoked,USA,Florida,"Public Beach, Siesta Key, Sarasota County",Standing,Carol Diliberto,F,63,Laceration on left foot,N,14h00,5' to 6' shark,"G. Nansen; Sarasota Herald-Tribune (FL), 7/5/1996",1996.07.04.b-Dilberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.b-Dilberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.b-Dilberto.pdf,1996.07.04.b,1996.07.04.b,3921,, +1996.07.04.a,04-Jul-96,1996,Unprovoked,BAHAMAS,Cat Cay,,Diving,Michael Beach,M,24,Left leg lacerated,N,,,"G. Nansen, D. McGee; Miami Herald, 7/5/1996 ",1996.07.04.a-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.a-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.a-Beach.pdf,1996.07.04.a,1996.07.04.a,3920,, +1996.06.25,25-Jun-96,1996,Unprovoked,USA,South Carolina,"Fripp Island, Beaufort County",Body surfing,Beth Shannon,F,24,"Lacerations to left shin, heel & foot",N,Afternoon,,"C. Creswell, GSAF; Macon Telegraph, 6/17/1996",1996.06.25-Shannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.25-Shannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.25-Shannon.pdf,1996.06.25,1996.06.25,3919,, +1996.06.06,06-Jun-96,1996,Unprovoked,AUSTRALIA,Victoria,"Suicide Point, Point Leo",Surfing,George Lucas,M,,"No injury, board bitten",N,17h30,4 m white shark,"P. Anderson, Herald Sun, 6/8/1996, p.7 ",1996.06.06-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.06-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.06-Lucas.pdf,1996.06.06,1996.06.06,3918,, +1996.06.04,04-Jun-96,1996,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,LaMercy,Surfing,Justin Sanders,M,,Survived,N,,,ZigZag Magazine,1996.06.04-JustinSanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.04-JustinSanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.04-JustinSanders.pdf,1996.06.04,1996.06.04,3917,, +1996.05.28,28-May-96,1996,Unprovoked,SOUTH AFRICA,Western Cape Province,"The Steps, Wilderness",Surfing,Donovan Khne,M,17,Leg bitten,N,14h45,2.5 m [8.25'] white shark ,"A. Gifford, GSAF",1996.05.28-Kohne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.28-Kohne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.28-Kohne.pdf,1996.05.28,1996.05.28,3916,, +1996.05.24,24-May-96,1996,Invalid,AUSTRALIA,New South Wales,"Wreck of paddle steamer, Koputai, 6 km off Bondi Beach",Tech diving ,Pat Bowring,M,45,"FATAL, but shark involvement prior to death was not confirmed",Y,,White shark,"Daily Telegraph, 5/29/1996, p.5 & 6/8/1996, p.15; H. Edwards, pp. 9-15",1996.05.24-Bowring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.24-Bowring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.24-Bowring.pdf,1996.05.24,1996.05.24,3915,, +1996.05.18,18-May-96,1996,Unprovoked,USA,Florida,"South of Ponce Inlet, Volusia County",Surfing,Mike Rebel,M,22,Right foot & ankle bitten,N,13h40,1.2 m [4'] shark,"S. Petersohn, GSAF; Orlando Sentinel; Daytona Beach News Journal, 5/19/1996, p.1A ",1996.05.18-Rebel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.18-Rebel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.18-Rebel.pdf,1996.05.18,1996.05.18,3914,, +1996.05.10,10-May-96,1996,Unprovoked,SOUTH KOREA,,,Shell Diving,Lee Kwan-seok,M,33,FATAL,Y,11h00,,Y. Choi & K. Nakaya,1996.05.10-LeeKwan-seok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.10-LeeKwan-seok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.10-LeeKwan-seok.pdf,1996.05.10,1996.05.10,3913,, +1996.05.07,07-May-96,1996,Unprovoked,USA,Florida,"Shark Shallows, Ponce Inlet, Volusia County",Surfing,Jimmy Grunewald,M,27,Left foot & leg bitten,N,11h06,60 cm to 90 cm [2' to 3'] blacktip or spinner shark,"S. Petersohn, GSAF; G. Nansen; P.LaMee, Orlando Sentinel, 5/8/1996, p.B3; Daytona Beach News Journal, 5/8/1996, p.1D",1996.05.07-Grunewald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.07-Grunewald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.07-Grunewald.pdf,1996.05.07,1996.05.07,3912,, +1996.04.28.b,28-Apr-96,1996,Unprovoked,USA,Hawaii,"La'ie Point, O'ahu",,Wayne Leong,M,,No details,UNKNOWN,,,G. Balazs,1996.04.28.b-Leong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.28.b-Leong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.28.b-Leong.pdf,1996.04.28.b,1996.04.28.b,3911,, +1996.04.25.b,25-Apr-96,1996,Unprovoked,AUSTRALIA,New South Wales,Mona Vale,Swimming,Luke Baker,M,11,Puncture wounds on upper left thigh ,N,,Wobbegong shark,"Daily Telegraph, 4/26/1996, p.9",1996.04.25.b-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.b-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.b-Baker.pdf,1996.04.25.b,1996.04.25.b,3910,, +1996.04.25.a,25-Apr-96,1996,Unprovoked,AUSTRALIA,New South Wales,Mona Vale,Swimming,Aya Hamaea ,F,16,Puncture wounds on leg ,N,,Wobbegong shark,"Daily Telegraph, 4/26/1996, p.9",1996.04.25.a-Hamaea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.a-Hamaea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.a-Hamaea.pdf,1996.04.25.a,1996.04.25.a,3909,, +1996.04.07,07-Apr-96,1996,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Marcos Santana Silva,M,,FATAL,Y,,,JCOnline,1996.04.07-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.07-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.07-Silva.pdf,1996.04.07,1996.04.07,3908,, +1996.03.05,05-Mar-96,1996,Unprovoked,AUSTRALIA,Queensland,Heron Island,Swimming breast stoke,Jean Hotchkiss ,F,47,Left arm & leg lacerated,N,07h00,Tiger shark,"Advertiser, 3/6/1996, p.9; Daily Mail (London), 3/9/1996 ",1996.03.05-Hotchkiss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.05-Hotchkiss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.05-Hotchkiss.pdf,1996.03.05,1996.03.05,3907,, +1996.03.00,Mar-96,1996,Unprovoked,AUSTRALIA,New South Wales,Lord Howe Island,Fishing in knee-deep water,male,M,7,Left calf bitten,N,,1.5 m [5'] shark,"J. Royle, et. al. (1997)",1996.03.00-LordHoweIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.00-LordHoweIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.00-LordHoweIsland.pdf,1996.03.00,1996.03.00,3906,, +1996.02.26,26-Feb-96,1996,Unprovoked,AUSTRALIA,New South Wales,"Charles Street Wharf, Parramatta River",Dived naked into the water on a bet,Darren Good,M,24,Left leg & right testicle bitten,N,Night,Bronze whaler shark,"Daily Telegraph, 2/29/1996, p.5; H. Edwards, pp.31-32",1996.02.26-Good.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.26-Good.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.26-Good.pdf,1996.02.26,1996.02.26,3905,, +1996.02.19.R,Reported 19-Feb-1996,1996,Provoked,USA,Missouri,St. Louis,Swimming in fish tank,Kathi Peters,F,32,5 punctures to hand from captive shark PROVOKED INCIDENT,N,,nurse shark,"Deseret News, 2/19/1996; European Stars and Stripes, 2/20/1996",1996.02.19.R-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.19.R-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.19.R-Peters.pdf,1996.02.19.R,1996.02.19.R,3904,, +1996.02.10.c,09-Feb-96,1996,Unprovoked,PAPUA NEW GUINEA,Madang Province,Madang,,a father of six,M,,FATAL,Y,,,"Sunday Mail (QLD), 2/11/1996, p.28",1996.02.10.c-PNGfather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.c-PNGfather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.c-PNGfather.pdf,1996.02.10.c,1996.02.10.c,3903,, +1996.02.10.b,09-Feb-96,1996,Unprovoked,PAPUA NEW GUINEA,Madang Province,Madang,,College student,,,Thigh,N,,,"Sunday Mail (QLD), 2/11/1996, p.28",1996.02.10.b-CollegeStuden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.b-CollegeStuden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.b-CollegeStuden.pdf,1996.02.10.b,1996.02.10.b,3902,, +1996.02.10.a,09-Feb-96,1996,Unprovoked,PAPUA NEW GUINEA,Madang Province,Madang,Diving ,schoolboy,,14,Leg severed FATAL,Y,,,"Sunday Mail (QLD), 2/11/1996, p.28",1996.02.10.a-PNGschoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.a-PNGschoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.a-PNGschoolboy.pdf,1996.02.10.a,1996.02.10.a,3901,, +1996.02.05,05-Feb-96,1996,Sea Disaster,DOMINICAN REPUBLIC,12 miles off the north coast,Boeing 757 enroute from Porta Plata,Boeing 757 enroute from Porta Plata plunged into the sea,No survivors. 189 people were lost,,,"106 bodies were recovered, some had been bitten by sharks",Y,,,Press reports,1996.02.05-aircraftDominican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.05-aircraftDominican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.05-aircraftDominican.pdf,1996.02.05,1996.02.05,3900,, +1996.02.04,04-Feb-96,1996,Unprovoked,AUSTRALIA,New South Wales,"Ned's Beach, Lord Howe Island",Swimming,a South Australian boy,M,7,Ankles injured,N,Afternoon,"""reef shark""","The Advertiser, 2/6/1996, p.2; Daily Telegraph, 2/5/1996, p.9",1996.02.04-boy-7.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.04-boy-7.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.04-boy-7.pdf,1996.02.04,1996.02.04,3899,, +1996.01.23,23-Jan-96,1996,Provoked,USA,Florida,"Florida Keys, Monroe County",Wading,Christopher Riley,M,33,Shark bit his leg after he grabbed its tail & wouldn't let go PROVOKED INCIDENT,N,,"Nurse shark, 0.9 m [3'] ","Miami Herald, 1/25/1996",1996.01.23-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.23-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.23-Riley.pdf,1996.01.23,1996.01.23,3898,, +1996.01.22,22-Jan-96,1996,Unprovoked,AUSTRALIA,Queensland,"Brown's Inlet, Broadwater",Swimming,Jasmine Cox,F,13,Lacerations to left calf,N,,Bronze whaler shark,"Daily Telegraph, 1/23/1996, p.3",1996.01.22-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.22-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.22-Cox.pdf,1996.01.22,1996.01.22,3897,, +1996.01.16,16-Jan-96,1996,Unprovoked,USA,Hawaii,"KaelekiI Point, Maui",Swimming with mask & snorkel,Robert Rogowicz,M,53,Lacerations to left foot & right shin,N,15h45,Possibly a tiger shark,"G. Ambrose, pp.48-53",1996.01.16-Rogowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.16-Rogowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.16-Rogowicz.pdf,1996.01.16,1996.01.16,3896,, +1996.01.14.b,14-Jan-96,1996,Unprovoked,AUSTRALIA,Western Australia,"Mutton Bird Island, Albany",,Marris,,,No details,UNKNOWN,,,"T. Peake, GSAF",1996.01.14.b-NV-Marris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.14.b-NV-Marris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.14.b-NV-Marris.pdf,1996.01.14.b,1996.01.14.b,3895,, +1996.01.12,12-Jan-96,1996,Boat,AUSTRALIA,New South Wales,Eight-mile reef off Port Kembla,Chumming for sharks,"Mini Haa Haar, fiberglass boat, occupants: William Catton, Anthony Green, Tony & Kylie Barnes",,,"No injury to occupants; shark rammed, bit & sank boat ",N,10h00,"Mako shark, 4.3 m [14']","Sunday Mail, 1/14/1996, p.2; A. MacCormick, pp.95-96",1996.01.12-MiniHaaHaar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.12-MiniHaaHaar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.12-MiniHaaHaar.pdf,1996.01.12,1996.01.12,3894,, +1996.01.10,10-Jan-96,1996,Unprovoked,REUNION,Saint-Paul ,Embouchure de l'tang de Saint Paul,Surfing,Grgory Bnche,M,25,FATAL,Y,16h00,"Tiger shark, 300-kg [662-lb] ","Clicanoo, le journal de l'Ile de la Runion",1996.01.10-Beneche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.10-Beneche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.10-Beneche.pdf,1996.01.10,1996.01.10,3893,, +1996.00.00.b,1996,1996,Unprovoked,FIJI,Taveuni,,,male,M,,FATAL,Y,,"Tiger shark, 2.5 m [8.25'] ","R. Weeks, GSAF; Otago Daily Times, 6/18/1997",1996.00.00.b-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.b-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.b-Fiji.pdf,1996.00.00.b,1996.00.00.b,3892,, +1996.00.00.a,1996,1996,Unprovoked,USA,North Carolina,,Surfing,male,M,,Survived,N,,Tiger shark,SAF,1996.00.00.a-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.a-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.a-NV-NorthCarolina.pdf,1996.00.00.a,1996.00.00.a,3891,, +1995.12.18,18-Dec-95,1995,Unprovoked,USA,Hawaii,Southwest of O'ahu,,Carlton Taniyama,M,,No details,UNKNOWN,,,G. Balazs,1995.12.18-NV-Taniyama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.12.18-NV-Taniyama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.12.18-NV-Taniyama.pdf,1995.12.18,1995.12.18,3890,, +1995.11.29,11-Nov-95,1995,Unprovoked,NEW ZEALAND,"Chatham Islands, east of New Zealand",,"Diving, gathering shellfish",Kina Scollay,M,22,Leg & chest lacerated,N,,5 m [16.5'] white shark,"R.D. Weeks, GSAF",1995.11.29-Scollay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.29-Scollay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.29-Scollay.pdf,1995.11.29,1995.11.29,3889,, +1995.11.25.b,25-Nov-95,1995,Invalid,USA,Hawaii,"Ha'ena, Kaua'i",,Wendall Olanolan,M,,Minor injury,N,,Shark involvement not confirmed,G. Balazs,1995.11.25.b-NV-Olanolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.b-NV-Olanolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.b-NV-Olanolan.pdf,1995.11.25.b,1995.11.25.b,3888,, +1995.11.25.a,25-Nov-95,1995,Unprovoked,NORTHERN ARABIAN SEA,,,Fell off aircraft carrier,"Zacharay Mayo, a U.S. Marine",M,,"Minor injuries, bites on fingers & toes. Rescued by Pakistani fishermen",N,,,CNN,1995.11.25.a-Mayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.a-Mayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.a-Mayo.pdf,1995.11.25.a,1995.11.25.a,3887,, +1995.11.17,17-Nov-95,1995,Unprovoked,AUSTRALIA,Queensland,Great Keppel Island,,Roberto Giordan,M,,Survived,N,,,"A. Brenneka, sharkattacksurvivors.com",1995.11.17-Giordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.17-Giordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.17-Giordan.pdf,1995.11.17,1995.11.17,3886,, +1995.10.28.R,Reported 28-Oct-1995,1995,Unprovoked,USA,Florida,,Boogie boarding,Matthew Beyrer,M,13,Lacerations to right foot,N,,,"Flagler/Palm Coast News Tribune, 10/28/1995",1995.10.28.R-Beyrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.28.R-Beyrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.28.R-Beyrer.pdf,1995.10.28.R,1995.10.28.R,3885,, +1995.10.21,21-Oct-95,1995,Unprovoked,USA,Florida,"North Beach, St. Lucie County",Surfing,John Foley,M,17,Foot bitten,N,,,"I. Nordemar, Fort Pierce Tribune, 10/25/1995",1995.10.21-Foley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.21-Foley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.21-Foley.pdf,1995.10.21,1995.10.21,3884,, +1995.10.11,11-Oct-95,1995,Unprovoked,AUSTRALIA,Queensland,"Pialba, Hervey Bay",Playing / standing,Lisa Mott,F,15,Laceration to thigh,N,14h30,4 m shark,"Herald Sun, 10/12/1995, p.9",1995.10.11-Mott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.11-Mott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.11-Mott.pdf,1995.10.11,1995.10.11,3883,, +1995.10.01,01-Oct-95,1995,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Stephen Massfeller,M,39,Right arm injured,N,11h30,1.2 m to 1.5 m [4' to 5'] shark,"Orlando Sentinel, 10/2/1995, p. C1; Ocala Star Banner, 10/3/1995",1995.10.01-Massfeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.01-Massfeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.01-Massfeller.pdf,1995.10.01,1995.10.01,3882,, +1995.09.30.b,30-Sep-95,1995,Unprovoked,USA,Florida,"Crescent Beach, St. Augustine, St. Johns County",Surfing,Jon Grace,M,14,4 punctures in left foot,N,Morning,1.5 to 1.8 m [5' to 6'] shark,"St. Petersburg Times, 10/3/1995",1995.09.30.b-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.b-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.b-Grace.pdf,1995.09.30.b,1995.09.30.b,3881,, +1995.09.30.a,30-Sep-95,1995,Unprovoked,USA,Florida,"North Beach, Hutchinson Island, St. Lucie County",Surfing,Ryan Evans,M,17,Leg & ankle bitten,N,,,"The Palm Beach Post, 10/1/1995",1995.09.30.a-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.a-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.a-Evans.pdf,1995.09.30.a,1995.09.30.a,3880,, +1995.09.28,28-Sep-95,1995,Unprovoked,USA,California,"Davenport Landing, Santa Cruz County",Windsurfing,Mike Sullivan,M,25,"Right foot bruised, board bitten",N,17h30,4 m [13'] white shark,"R. Collier, pp.153-154",1995.09.28-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.28-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.28-Sullivan_Collier.pdf,1995.09.28,1995.09.28,3879,, +1995.09.19.,19-Sep-95,1995,Unprovoked,USA,Florida,"Matanzas Bay Inlet, St. Johns County",Surfing,Gavin Korth,M,19,Left arm & hand lacerated,N,,1.8 m [6'] shark,"Orlando Sentinel, 9/20/1995, p.C.3",1995.09.19-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.19-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.19-Korth.pdf,1995.09.19.,1995.09.19.,3878,, +1995.09.17,17-Sep-95,1995,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Jill Varney,F,19,Left elbow and bicep bitten,N,15h40,,"S. Petersohn, GSAF; Orlando Sentinel, 9/18/1995, p.C.3",1995.09.17-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.17-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.17-Varney.pdf,1995.09.17,1995.09.17,3877,, +1995.09.16,16-Sep-95,1995,Unprovoked,REUNION,Saint-Denis,,Body-boarding,Jerome Pruneaux,M,,FATAL,Y,,,"LeQuotidien, 12/4/1999",1995.09.16-Pruneaux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.16-Pruneaux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.16-Pruneaux.pdf,1995.09.16,1995.09.16,3876,, +1995.09.13,13-Sep-95,1995,Unprovoked,USA,Florida,"Alligator Reef, off Islamorada, Monroe County",Scuba diving,William Covert,M,25,"Presumed FATAL, body not recovered",Y,,3 m to 3.7 m [10' to 12'] bull shark,"G. Hubbell; J. Castro; Ocala Star-Banner, 9/22/1995; Orlando Sentinel, 9/23/1995, p.D1 +",1995.09.13-Covert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.13-Covert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.13-Covert.pdf,1995.09.13,1995.09.13,3875,, +1995.09.11,11-Sep-95,1995,Unprovoked,AUSTRALIA,Western Australia,"Honeymoon Island, near Hopetown",Abalone diving using Hookah (near calving whales),David Alan Weir,M,29,"FATAL, head, shoulder and arm severed, remains recovered at Munglinup Beach on 9/13/1995",Y,15h00,White shark,"The Advertiser, 9/13/1995, p.2; H. Edwards, pp.1-8",1995.09.11-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.11-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.11-Weir.pdf,1995.09.11,1995.09.11,3874,, +1995.09.03.b,03-Sep-95,1995,Unprovoked,USA,California,"Shelter Cove, Humboldt County",Abalone diving using Hookah (resting on the surface),Brian Hillenburg,M,32,Lower leg bitten,N,16h00,3 m to 4 m [10' to 13'] white shark,"R. Collier, pp.151-153",1995.09.03-Hillenburg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03-Hillenburg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03-Hillenburg_Collier.pdf,1995.09.03.b,1995.09.03.b,3873,, +1995.09.03.a,03-Sep-95,1995,Invalid,USA,North Carolina,"Bald Head Island, Brunswick County",Swimming,male,M,9,Laceration to lower leg,N,,Shark involvement not confirmed,"Wilmington MorningStar, 9/5/1995",1995.09.03.a-BaldHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03.a-BaldHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03.a-BaldHead.pdf,1995.09.03.a,1995.09.03.a,3872,, +1995.08.31.b,31-Aug-95,1995,Unprovoked,USA,Florida,"North Beach Inlet, St. Lucie County",Surfing,Jason Cablish,M,19,Left hand & forearm bitten,N,,1.2 m to 1.5 m [4' to 5'] shark,"Fort Pierce Tribune, 9/1/1995",1995.08.31.b-Cablish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.b-Cablish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.b-Cablish.pdf,1995.08.31.b,1995.08.31.b,3871,, +1995.08.31.a,31-Aug-95,1995,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",On a float,Robert Hall,M,44,Puncture wounds on ankle & leg,N,,,"The State (Colombia, SA) 9/1/1995; Charlotte Observer, 9/2/1995, p.4C",1995.08.31.a-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.a-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.a-Hall.pdf,1995.08.31.a,1995.08.31.a,3870,, +1995.08.27,27-Aug-95,1995,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Aluisio Francisco da Silva Filho,M,,Survived,N,,,JCOnline,1995.08.27-AluisioFranciscoDeSilvaFilho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.27-AluisioFranciscoDeSilvaFilho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.27-AluisioFranciscoDeSilvaFilho.pdf,1995.08.27,1995.08.27,3869,, +1995.08.26/b,26-Aug-95,1995,Unprovoked,USA,Florida,"Crescent Beach, St. Johns County",Surfing,Brian Korth,M,16,Left elbow bitten,N,18h30,5' shark,"Gainsville Sun, 8/30/1995",1995.08.26.b-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.b-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.b-Korth.pdf,1995.08.26/b,1995.08.26/b,3868,, +1995.08.26.a,26-Aug-95,1995,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County",Surfing,Dwight Irvin,M,18,4 puncture wounds on right pinky finger,N,14h10,"""a small shark""","S. Petersohn, GSAF; C. Lancaster, Orlando Sentinel, 8/27/1995, p.B5; Ocala Star Banner, 8/28/1995",1995.08.26.a-DwightIrvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.a-DwightIrvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.a-DwightIrvin.pdf,1995.08.26.a,1995.08.26.a,3867,, +1995.08.25,25-Aug-95,1995,Unprovoked,USA,North Carolina,"Off Masonboro Island, New Hanover County",Swimming,Michael Greenwood,M,16,Left arm bitten,N,"""Night""",1.2 m to 1.5 m [4' to 5'] shark,"Charlotte Observer, 8/27/1995, p.2B",1995.08.25-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.25-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.25-Greenwood.pdf,1995.08.25,1995.08.25,3866,, +1995.08.22.c,22-Aug-95,1995,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Swimming ,Scott Hall,M,23,Right foot bitten,N,Afternoon,"""sand"" shark","C. Creswell, GSAF",1995.08.22.b-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.b-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.b-Hall.pdf,1995.08.22.c,1995.08.22.c,3865,, +1995.08.22.a,22-Aug-95,1995,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County",Surfing,Jason Barzo,M,19,Bottom of left foot gashed,N,19h00,"""small shark""","C. Lancaster, Orlando Sentinel, 8/24/1995, p.D1",1995.08.22.a-Barzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.a-Barzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.a-Barzo.pdf,1995.08.22.a,1995.08.22.a,3864,, +1995.08.21,21-Aug-95,1995,Unprovoked,USA,North Carolina,Cape Lookout Bight,Diving,,,,No injury,N,,Two 1.2 m to 1.5 m [4' to 5'] sharks,"C. Creswell, GSAF",1995.08.21-CapeLookoutBight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.21-CapeLookoutBight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.21-CapeLookoutBight.pdf,1995.08.21,1995.08.21,3863,, +1995.08.19,19-Aug-95,1995,Unprovoked,TONGA,Vavau,Near Tapana Island,Fishing,Laukau Lile,M,18,Upper left thigh avulsed ,N,15h00,"""small shark""","S. Fonea, M.D.",1995.08.19-Lile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.19-Lile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.19-Lile.pdf,1995.08.19,1995.08.19,3862,, +1995.08.15,15-Aug-95,1995,Unprovoked,USA,Florida,"Daytona Beach, Volusia County ",Wading,James Oatley,M,20,Thigh lacerated,N,08h30,1.8 m [6'] shark,"S. Petersohn, GSAF; Bradenton Herald & Ocala Star Banner, 8/17/1995; London Daily Star, 8/19/1995",1995.08.15-Oatley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.15-Oatley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.15-Oatley.pdf,1995.08.15,1995.08.15,3861,, +1995.08.13.a,13-Aug-95,1995,Invalid,USA,North Carolina,"Emerald Isle, Carteret County",Swimming,Kyle Dickens,M,15,Death resulted fom drowning; shark bites were post-mortem,Y,,Tiger shark,"J. L. Almeida, M.D.",1995.08.13.a-Dickens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.13.a-Dickens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.13.a-Dickens.pdf,1995.08.13.a,1995.08.13.a,3860,, +1995.08.10.b,10-Aug-95,1995,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,male,M,20,Laceration to left heel,N,13h30,,"News-Journal, 8/11/1995",1995.08.10.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.b-PonceInlet.pdf,1995.08.10.b,1995.08.10.b,3859,, +1995.08.10.a,10-Aug-95,1995,Unprovoked,USA,South Carolina,"Ocean Lakes Campground, south of Myrtle Beach, Horry County","""Riding waves on a board""",Venus Lindsey ,F,14,Left foot bitten,N,,Blacktip shark,"Charlotte Observer, 8/12/1995, p.1C; C . Creswell, GSAF",1995.08.10.a-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.a-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.a-Venus.pdf,1995.08.10.a,1995.08.10.a,3858,, +1995.08.07,07-Aug-95,1995,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County ",Body boarding,Matt Sturgis,M,12,Multiple bites on right leg and knee,N,14h10,1.2 m to 1.5 m [4' to 5'] shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/9/1995, p.C.1; Miami Herald, 8/9/1995",1995.08.07-MattSturgis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.07-MattSturgis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.07-MattSturgis.pdf,1995.08.07,1995.08.07,3857,, +1995.08.01,01-Aug-95,1995,Invalid,TONGA,Vavau,Neiafu,Fishing,Jim McManus,M,,Finger broken when hooked shark grabbed his catch,N,,1.8 m [6'] grey reef shark,"J. McManus, M. Levine, GSAF",1995.08.01-McManus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.01-McManus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.01-McManus.pdf,1995.08.01,1995.08.01,3856,, +1995.08.00,Aug-95,1995,Invalid,USA,California,"Carmel, Monterey County",Diving,Marco Carme,M,,Torso bitten,N,,4 m [13'] white shark,"Reported in Oct issue of Diver magazine, possibly confused with Marco Flagg incident",1995.08.00-Carme.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.00-Carme.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.00-Carme.pdf,1995.08.00,1995.08.00,3855,, +1995.07.28.e,28-Jul-95,1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,,Left foot bitten,N,16h30,,"P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.e-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.e-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.e-male-surfer.pdf,1995.07.28.e,1995.07.28.e,3854,, +1995.07.28.d,28-Jul-95,1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,,Minor laceration on lower leg,N,14h45,,"C. Lancaster & M. Losey, Orlando Sentinel, 7/29/1995; P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.d-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.d-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.d-male-surfer.pdf,1995.07.28.d,1995.07.28.d,3853,, +1995.07.28.c,28-Jul-95,1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Patrick Moore,M,18,Laceration to heel,N,14h10,,"S. Petersohn, GSAF; C. Lancaster & M. Losey, Orlando Sentinel, 7/29/1995; P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.c-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.c-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.c-Moore.pdf,1995.07.28.c,1995.07.28.c,3852,, +1995.07.28.b,28-Jul-95,1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Eric Kozak,M,18,2-inch laceration to lower right leg ,N,13h40,,"S. Petersohn, GSAF; C. Lancaster & M. Losey, Orlando Sentinel, 7/29/1995, p.A1; P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.b-Kozak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.b-Kozak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.b-Kozak.pdf,1995.07.28.b,1995.07.28.b,3851,, +1995.07.28.a,28-Jul-95,1995,Unprovoked,USA,South Carolina,"Pawleys Island, Georgetown County",,male,M,12,Hand bitten (minor injury),N,,,"C. Creswell, GSAF",1995.07.28.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.a-boy.pdf,1995.07.28.a,1995.07.28.a,3850,, +1995.07.24,24-Jul-95,1995,Unprovoked,USA,South Carolina,"Pawleys Island, Georgetown County",Swimming,female,F,7,Right foot bitten,N,,,"Charlotte Observer, 7/29/1995, p.3C",1995.07.24.a-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.24.a-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.24.a-PawleysIsland.pdf,1995.07.24,1995.07.24,3849,, +1995.07.23,23-Jul-95,1995,Unprovoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Body boarding,male,M,47,Foot bitten,N,,,"P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.23-NSB-bodyboarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.23-NSB-bodyboarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.23-NSB-bodyboarder.pdf,1995.07.23,1995.07.23,3848,, +1984.11.08,08-Nov-84,1984,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie River Mouth,Surfing,Wayne Monk ,M,14,Wetsuit lacerated,N,17h00,,"W. Monk, M. Levine, GSAF",1984.11.08-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.08-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.08-Monk.pdf,1984.11.08,1984.11.08,3847,, +1995.07.07,07-Jul-95,1995,Unprovoked,BRAZIL,Pernambuco,Candeias,Surfing,Cllio Rosendo Falco Filho,M,18,"Arm bitten, FATAL",Y,,,JCOnline,1995.07.07-Filhol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.07-Filhol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.07-Filhol.pdf,1995.07.07,1995.07.07,3847,, +1995.07.06,06-Jul-95,1995,Unprovoked,USA,Texas,Port Aransas,Surfing,Mark George,M,34,Foot bitten,N,,,"Associated Press, 7/8/1995",1995.07.06-MarkGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.06-MarkGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.06-MarkGeorge.pdf,1995.07.06,1995.07.06,3846,, +1995.07.03,03-Jul-95,1995,Provoked,USA,Mississippi,"Cat Island, Harrison County",Fishing,Cheryl Lowman,F,32,Minor laceration to leg from a hooked shark PROVOKED INCIDENT,N,,Blacktip shark,"Sun Herald, 7/4/1995",1995.07.03-Lowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.03-Lowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.03-Lowman.pdf,1995.07.03,1995.07.03,3845,, +1995.07.00,Early Jul-1995,1995,Provoked,USA,South Carolina,"Off 29th Avenue, Myrtle Beach, Horry County",Jumped off surfboard & landed on the shark,Roberto Perez,M,,Foot bitten PROVOKED INCIDENT,N,,,"Aiken Standard, 8/12/1995",1995.07.00-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.00-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.00-Perez.pdf,1995.07.00,1995.07.00,3844,, +1995.06.30,30-Jun-95,1995,Unprovoked,USA,California,"Bluefish Cove, Pt. Lobos State Park, Monterey County",Scuba diving (ascending using scooter),Marco Flagg,M,31,"Forearm, abdomen & upper leg lacerated",N,17h30,6 m [20'] white shark,"R. Collier, pp.149-151 ",1995.06.30-MarcoFlagg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.30-MarcoFlagg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.30-MarcoFlagg_Collier.pdf,1995.06.30,1995.06.30,3843,, +1995.06.24,24-Jun-95,1995,Unprovoked,USA,California,"LaJolla Shores, San Diego County",Kayaking,female,F,,Minor injuries,N,,White shark (tooth fragment recovered),"R. Collier, pp.148-149 ",1995.06.24-LaJolla_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.24-LaJolla_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.24-LaJolla_Collier.pdf,1995.06.24,1995.06.24,3842,, +1995.06.23,23-Jun-95,1995,Unprovoked,USA,Georgia,"Tybee Island, Chatham County",Playing / jumping,Joshua Bradley,M,13,Ankle bitten,N,,"""sand"" shark","C. Creswell, GSAF",1995.06.23-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.23-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.23-Bradley.pdf,1995.06.23,1995.06.23,3841,, +1995.06.17.b,17-Jun-95,1995,Unprovoked,USA,South Carolina,"Garden City Beach, Horry County",Surfing,Jim Whitney,M,,Foot bitten,N,,,"C. Creswell, GSAF; Charlotte Observer, 8/12/1995",1995.06.17.b-Whitney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.b-Whitney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.b-Whitney.pdf,1995.06.17.b,1995.06.17.b,3840,, +1995.06.17.a,17-Jun-95,1995,Unprovoked,USA,Florida,"Jensen Beach Park, Martin County",Swimming,Paul Lucas,M,45,Right leg bitten,N,18h30?,1.8 m [6'] shark,"Orlando Sentinel, 6/19/1995, p.B3; Fort Pierce Tribune, 6/19/1995; The Palm Beach Post - June 18, 1995 ",1995.06.17.a-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.a-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.a-Lucas.pdf,1995.06.17.a,1995.06.17.a,3839,, +1995.06.16,16-Jun-95,1995,Unprovoked,USA,Florida,"Tiger Shores Beach, Martin County",Swimming,Amber Delmans,F,10,Leg bitten,N,14h00,6' shark,"Orlando Sentinel, 6/19/1995, p.B3; Fort Pierce Tribune, 6/19/1995",1995.06.16-Delmans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.16-Delmans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.16-Delmans.pdf,1995.06.16,1995.06.16,3838,, +1995.06.14,14-Jun-95,1995,Unprovoked,USA,Hawaii,"Opposite Grand Wailea Resort, Wailea, Maui",Swimming,Donald Bloom,M,38,Puncture wounds & scratches to torso & left leg ,N,11h50,"Tiger shark, 3.7 m [12'] ","G. Ambrose, pp.41-47",1995.06.14-Bloom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.14-Bloom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.14-Bloom.pdf,1995.06.14,1995.06.14,3837,, +1995.06.13,13-Jun-95,1995,Unprovoked,HONG KONG,Clearwater Bay,First Beach,Swimming,Wong Kwai-yung,F,45,"FATAL, left leg & forearm severed",Y,,Though to involve a tiger shark,"J. Wong & R.D. Weeks, GSAF; Daily Telegraph Mirror, 6/14/1995, p.42",1995.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.13-HongKong.pdf,1995.06.13,1995.06.13,3836,, +1995.06.02,02-Jun-95,1995,Unprovoked,HONG KONG,New Territories,Sheung Sze Wan Beach,Swimming,Herman Lo Cheuk-Yuet,M,29,"FATAL, right thigh bitten, femur exposed ",Y,14h30,1.8 m to 2.1 m [6' to 7'] shark,"J. Wong, GSAF; Daily Telegraph Mirror, 6/14/1995, p.42 ",1995.06.02-Herman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.02-Herman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.02-Herman.pdf,1995.06.02,1995.06.02,3835,, +1995.05.31,31-May-95,1995,Unprovoked,HONG KONG,New Territories,Sai Kung Beach,Diving,Tso Kam-Sun,,44,"FATAL, right leg severed, left leg lacerated ",Y,,,"J. Wong, GSAF; Daily Telegraph Mirror, 6/3/1995; ",1995.05.31-Tso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.31-Tso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.31-Tso.pdf,1995.05.31,1995.05.31,3834,, +1995.05.26,26-May-95,1995,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Surfing,Brent Enck,M,15,Left foot bitten,N,,Possibly a bull shark,"Fort Pierce Tribune, 5/31/1995",1995.05.26-Enck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.26-Enck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.26-Enck.pdf,1995.05.26,1995.05.26,3833,, +1995.05.24,24-May-95,1995,Unprovoked,FIJI,Yasawa Islands,Waya Island,Sleeping in anchored boat,Kinijioji Vindovi,M,69,"FATAL, hand & leg severely injured by shark that leapt into boat ",Y,,3.7 m [12'] shark,"Another report of the same or similar incident states that a 15' shark leapt into a boat, injuring all 4 people on board",1995.05.24-Vindovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.24-Vindovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.24-Vindovi.pdf,1995.05.24,1995.05.24,3832,, +1995.05.18,18-May-95,1995,Unprovoked,AUSTRALIA,Western Australia,"Bernier Island, Shark Bay",,Hutchins,,,No details,UNKNOWN,,,"T. Peake, GSAF",1995.05.18-NV-Hutchins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.18-NV-Hutchins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.18-NV-Hutchins.pdf,1995.05.18,1995.05.18,3831,, +1995.05.12,12-May-95,1995,Unprovoked,SOUTH KOREA,,Jangkodo Island,Diving for abalone,Kim Sun-sim,F,44,Right leg severed FATAL,Y,,4 m shark,Y. Choi & K. Nakaya,1995.05.12-Sun-Shim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.12-Sun-Shim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.12-Sun-Shim.pdf,1995.05.12,1995.05.12,3830,, +1995.04.16,16-Apr-95,1995,Invalid,USA,Florida,"New Smyrna Beach, Volusia County",,C.M.,M,12,Dorsum of right hand bitten,N,10h35,Probable bluefish bite,"S. Petersohn, GSAF",1995.04.16-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.16-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.16-CM.pdf,1995.04.16,1995.04.16,3829,, +1995.04.13,13-Apr-95,1995,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",,Mark Degraff,M,20,Puncture wounds on right foot,N,13h20,,"S. Petersohn, GSAF",1995.04.13-NV-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.13-NV-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.13-NV-OrmondBeach.pdf,1995.04.13,1995.04.13,3828,, +1995.04.09.b,09-Apr-95,1995,Unprovoked,AUSTRALIA,New South Wales,"Honeysuckle Point, Eden",Diving,David Malone,M,,"No injury, shark took swimfin",N,,Wobbegong shark,"Daily Telegraph 55/9/1996, p.7",1995.04.09.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.b-Malone.pdf,1995.04.09.b,1995.04.09.b,3827,, +1995.04.09.a,09-Apr-95,1995,Unprovoked,JAPAN,Aichi Prefecture,Atsumi Peninsula,Scuba diving for bivalves,Shintaro Hara,M,47,FATAL,Y,10h15,6 m [20'] white shark,K. Nakaya,1995.04.09.a-Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.a-Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.a-Hara.pdf,1995.04.09.a,1995.04.09.a,3826,, +1995.03.21,21-Mar-95,1995,Unprovoked,AUSTRALIA,New South Wales,"Clark Island, Sydney Harbour",Surf skiing,Mary Meagher,F,,"No injury, knocked off board by shark",N,,,"Deseret News, 3/24/1995 ",1995.03.21-Meagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.21-Meagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.21-Meagher.pdf,1995.03.21,1995.03.21,3825,, +1995.03.11,11-Mar-95,1995,Unprovoked,AUSTRALIA,South Australia,Cactus Beach,Surfing,Andy McBain,M,35,Left arm lacerated,N,07h30,"Bronze whaler shark, 2 m ","Advertiser, 3/13/1995, p.1 & 7/22/1995, p.13",1995.03.11-McBain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.11-McBain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.11-McBain.pdf,1995.03.11,1995.03.11,3824,, +1995.03.05,05-Mar-95,1995,Unprovoked,BRAZIL,Maranho,"Praia do Olho D'gua, So Luis",Swimming,E.S.,,,FATAL,Y,Afternoon,,M. Szpilman,1995.03.05-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.05-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.05-Brazil.pdf,1995.03.05,1995.03.05,3823,, +1995.02.19,19-Feb-95,1995,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kidds Beach,Swimming,Johan Deetlefs,M,22,Lacerations to lower leg & foot,N,17h15,Raggedtooth shark,"A. Gifford, GSAF ",1995.02.19-Deetlefs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.19-Deetlefs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.19-Deetlefs.pdf,1995.02.19,1995.02.19,3822,, +1995.02.00,Feb-95,1995,Unprovoked,VENEZUELA,,,Wind surfing,Justin James,M,,Right ankle & foot bitten,N,,,"A. Brenneka, sharkattacksurvivors.com",1995.02.00-JustinJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.00-JustinJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.00-JustinJames.pdf,1995.02.00,1995.02.00,3821,, +1995.01.24,24-Jan-95,1995,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Swimming,Mthokozisi Cedrick Mpanza,M,14,"FATAL, right thigh bitten & femur exposed, shallow lacerations on right calf & left thigh & fingers lacerated ",Y,18h00,"Tiger shark, 1.8 m [6'] ","A. Gifford, GSAF",1995.01.24-Mpanza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.24-Mpanza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.24-Mpanza.pdf,1995.01.24,1995.01.24,3820,, +1995.01.02,02-Jan-95,1995,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Humberto Moraes de Souza,M,17,Foot bitten,N,, ,"San Jose Mercury News, 1/6/1995, p.12A",1995.01.02-H.de-SouzaMoraes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.02-H.de-SouzaMoraes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.02-H.de-SouzaMoraes.pdf,1995.01.02,1995.01.02,3819,, +1995.00.00.e,1995,1995,Invalid,SOUTH AFRICA,,,Diving,Karl Sacks,M,33,Reportedly lost lower right leg as result of shark bite,N,,,"S. Hughes, Daily Star (UK), 6/10/2010",1995.00.00.e-Sacks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.e-Sacks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.e-Sacks.pdf,1995.00.00.e,1995.00.00.e,3818,, +1995.00.00.d,1995,1995,Provoked,AUSTRALIA,Queensland,Gladstone Reef,Snorkeling,male,M,,"No injury, grabbed byshark after he pulled its tail PROVOKED INCIDENT",N,,Leopard shark,"Shark-L, 9/13/1996",1995.00.00.d-Gladstone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.d-Gladstone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.d-Gladstone.pdf,1995.00.00.d,1995.00.00.d,3817,, +1995.00.00.c,1995,1995,Invalid,USA,North Carolina,Carolina Beach,Scuba diving,Nunley,M,,Death resulted fom drowning; shark bites were post-mortem,Y,,,"C. Creswell, GSAF",1995.00.00.c-Nunley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.c-Nunley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.c-Nunley.pdf,1995.00.00.c,1995.00.00.c,3816,, +1995.00.00.b,1995,1995,Unprovoked,USA,South Carolina,"Pawleys Island, Georgetown County",,male,M,,No details,UNKNOWN,,,"C. Creswell, GSAF; ISAF 2793",1995.00.00.b-NV-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.b-NV-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.b-NV-PawleysIsland.pdf,1995.00.00.b,1995.00.00.b,3815,, +1994.12.30,30-Dec-94,1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Body boarding,Fritz Van Zyl,M,26,"No injury, board bitten",N,16h00,5.5 m [18'] white shark,"M. Levine, GSAF; M. Marks",1994.12.30-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.30-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.30-VanZyl.pdf,1994.12.30,1994.12.30,3814,, +1994.12.18,18-Dec-94,1994,Unprovoked,USA,Hawaii,"Kinikini, Mana, Kaua'i","Surfing, sitting on board",Anonymous,,,"No injury, shark bit surfboard",N,14h45,,Hawaii Department of Land and Natural Resources,1994.12.18-Kaui-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.18-Kaui-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.18-Kaui-surfer.pdf,1994.12.18,1994.12.18,3813,, +1994.12.13,13-Dec-94,1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Tiago Costa de Lima,M,,Survived,N,,,JCOnline; M. Szpilman,1994.12.13-TiagoCostaDaLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.13-TiagoCostaDaLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.13-TiagoCostaDaLima.pdf,1994.12.13,1994.12.13,3812,, +1994.12.11,11-Dec-94,1994,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Jorge de Oliveira Andrade,M,,Right thigh bitten,N,,,D. Duarte,1994.12.11-JorgeDeOliveiraAndrade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.11-JorgeDeOliveiraAndrade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.11-JorgeDeOliveiraAndrade.pdf,1994.12.11,1994.12.11,3811,, +1994.12.10,Reported 10-Dec-1994 ,1994,Unprovoked,VANUATU,Tafea Province,Aniwa Island,,,,,No details,UNKNOWN,,,"Vanuatu Weekly Hebdomadaire, 12/10/1994, p.6",1994.12.10-NV-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.10-NV-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.10-NV-Vanuatu.pdf,1994.12.10,1994.12.10,3810,, +1994.12.09.b,09-Dec-94,1994,Invalid,AUSTRALIA,Queensland,"Hinchinbrook Channel, Queensland",Murder victim,Peter Saibura,M,44,Shark scavenged on his corpse,N,,,"Courier Mail, 3/30/1995",1994.12.09.b-Saibura-murder victim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.b-Saibura-murder victim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.b-Saibura-murder victim.pdf,1994.12.09.b,1994.12.09.b,3809,, +1994.12.09.a,09-Dec-94,1994,Unprovoked,USA,California,"San Miguel Island, Santa Barbara County",Commercial diver (submerged or treading water),James Robinson,M,42,"FATAL, right leg nearly severed, puncture wounds to left leg ",Y,08h45,5 m to 5.5 m [16.5' to 18'] white shark,"R. Collier, pp.147-148; Orlando Sentinel, 12/10/1994, p.A3",1994.12.09.a-Robinson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.a-Robinson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.a-Robinson_Collier.pdf,1994.12.09.a,1994.12.09.a,3808,, +1994.12.01,01-Dec-94,1994,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Laudenilson Gomes de Lima,M,,FATAL,Y,,," San Jose Mercury News, 1/6/1995, p.12A ",1994.12.01-LaudenilsonGomesDeLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.01-LaudenilsonGomesDeLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.01-LaudenilsonGomesDeLima.pdf,1994.12.01,1994.12.01,3807,, +1994.11.25.a,25-Nov-94,1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Spearfishing,Anton Bosman,M,,No injury,N,,"Raggedtooth shark, 2.7 m [9'] ","A. Gifford, GSAF",1994.11.25-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.25-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.25-Bosman.pdf,1994.11.25.a,1994.11.25.a,3806,, +1994.11.13,13-Nov-94,1994,Unprovoked,USA,Hawaii,"Off the Hanalei River, Kaua'i","Surfing, paddling seawards",Kathleen McCarthy Lunn ,F,34,Right thigh & board bitten,N,09h45,2.7 m [9'] shark,"G. Balazs; G. Ambrose, pp.24-29",1994.11.13-Lunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.13-Lunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.13-Lunn.pdf,1994.11.13,1994.11.13,3805,, +1994.11.06.a,06-Nov-94,1994,Unprovoked,USA,Hawaii,"Kealia Beach, Kaua'i",Surfing,C. Stokes,,,"No injury, shark bit surfboard",N,16h00,,Hawaii Department of Land and Natural Resources,1994.11.06.a-Stokes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.06.a-Stokes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.06.a-Stokes.pdf,1994.11.06.a,1994.11.06.a,3804,, +1994.10.18,18-Oct-94,1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Unidentified,,,Survived,N,,,JCOnline,1994.10.18-Piedade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.18-Piedade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.18-Piedade.pdf,1994.10.18,1994.10.18,3803,, +1994.10.17,17-Oct-94,1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Ednaldo Jose da Silva,M,,Survived,N,,,JCOnline,1994.10.17-EdnaldoJoseDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.17-EdnaldoJoseDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.17-EdnaldoJoseDaSilva.pdf,1994.10.17,1994.10.17,3802,, +1994.10.08,09-Oct-94,1994,Provoked,USA,Florida,"Bill Baggs Cape Florida State Recreation Area, Miami-Dade County",Wading,Mariel Parker ,F,9,Ankle bitten when she accidently stepped on the shark PROVOKED INCIDENT,N,13h00,Thought to involve a small sand shark,"Miami Herald, 10/9/1994",1994.10.08-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.08-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.08-Parker.pdf,1994.10.08,1994.10.08,3801,, +1994.10.05,05-Oct-94,1994,Unprovoked,USA,Florida,"Indialantic, Brevard County",Surfing,Scott Dulmage,M,16,Foot bitten,N,12h00,,"Orlando Sentinel, 10/5/1994, p.B3",1994.10.05-ScottDulmage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.05-ScottDulmage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.05-ScottDulmage.pdf,1994.10.05,1994.10.05,3800,, +1994.09.26,26-Sep-94,1994,Unprovoked,USA,South Carolina,"North Forest Beach, near Hilton Head, Beaufort County",Swimming,Lioubov Kozarinova,F,30,Right side of abdomen & left hand bitten,N,,,"Atlanta Journal-Constitution, 9/27/1994; Charlotte Observer, 9/27/1994, p.1C",1994.09.26-Kozarinova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.26-Kozarinova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.26-Kozarinova.pdf,1994.09.26,1994.09.26,3799,, +1994.09.21,21-Sep-94,1994,Unprovoked,USA,Oregon,"Short Sand Beach, Oswald West State Park",Surfing,Rob MacKenzie,M,43,"No injury, surfboard bitten",N,16h30,5 m [16.5'] white shark,R. Collier+M2079,1994.09.21-MacKenzie_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.21-MacKenzie_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.21-MacKenzie_Collier.pdf,1994.09.21,1994.09.21,3798,, +1994.09.11.R,Reported 11-Sep-1994,1994,Sea Disaster,USA,Florida,Florida Straits,Adrift on refugee raft,2 Cuban brothers,M,7 & 31,FATAL,Y,,,"Sunday Herald Sun, 9/11/1994, p.25",1994.09.11.R-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.11.R-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.11.R-CubanRefugees.pdf,1994.09.11.R,1994.09.11.R,3797,, +1994.09.05,05-Sep-94,1994,Unprovoked,USA,Hawaii,Makaha Surf Beach,Jumped off rocks into white water,Rose Ann Savea,F,12,Left calf bitten,N,11h15,Small shark,Dr. P. Bjorkman,1994.09.05-RoseAnnSavea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.05-RoseAnnSavea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.05-RoseAnnSavea.pdf,1994.09.05,1994.09.05,3796,, +1994.08.22,22-Aug-94,1994,Unprovoked,JAPAN,Kagoshima Prefecture,Tatsugo-cho,,Nagisa Yasuhara,,,Survived,N,,,K. Nakaya,1994.08.22-Yashuhara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.08.22-Yashuhara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.08.22-Yashuhara.pdf,1994.08.22,1994.08.22,3795,, +1994.07.24,24-Jul-94,1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Carlos Frederico Gomes Martins,M,15,Left foot severed,N,,,C.F.G. Martins; JCOnline,1994.07.24-Carlos_Martins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.24-Carlos_Martins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.24-Carlos_Martins.pdf,1994.07.24,1994.07.24,3794,, +1994.07.09.d,09-Jul-94,1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Alessandro Gomes de Souza,M,,FATAL,Y,,,JCOnline,1994.07.09.d-AlessandroGomesDeSouza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.d-AlessandroGomesDeSouza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.d-AlessandroGomesDeSouza.pdf,1994.07.09.d,1994.07.09.d,3793,, +1994.07.09.c,09-Jul-94,1994,Unprovoked,REUNION,Saint-Denis,Barachois,Windsurfing,Thierry Boulay,M,24,FATAL,Y,13h45,3 to 3.5 m [10' to 11.5'] bull shark,G. Van Grevelynghe,1994.07.09.c-Boulay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.c-Boulay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.c-Boulay.pdf,1994.07.09.c,1994.07.09.c,3792,, +1994.07.09.b,09-Jul-94,1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Beach, East London",Surfing,Bruce Corby,M,22,"FATAL, leg severed ",Y,13h26,4 m [13'] white shark,"A Gifford, GSAF",1994.07.09.b-Corby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.b-Corby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.b-Corby.pdf,1994.07.09.b,1994.07.09.b,3791,, +1994.07.09.a,09-Jul-94,1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Beach, East London",Surfing,Andrew Carter,M,31,Buttock & leg bitten,N,13h25,4 m [13'] white shark,"A. Gifford, GSAF",1994.07.09.a-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.a-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.a-Carter.pdf,1994.07.09.a,1994.07.09.a,3790,, +1994.07.08.b,08-Jul-94,1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Sandro Paulo dos Santos,M,,Survived,N,,,JCOnline,1994.07.08.b-SandroPaulosDosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.b-SandroPaulosDosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.b-SandroPaulosDosSantos.pdf,1994.07.08.b,1994.07.08.b,3789,, +1994.07.08.a,08-Jul-94,1994,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Michael Post ,M,15,Right calf lacerated,N,15h00,"""small shark""","P. LaMee, Orlando Sentinel, 9/4/1995, p. D3",1994.07.08.a-MichaelPost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.a-MichaelPost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.a-MichaelPost.pdf,1994.07.08.a,1994.07.08.a,3788,, +1994.06.24,24-Jun-94,1994,Unprovoked,BAHAMAS,Grand Bahama Island,Freeport,Spearfishing,Alton Curtis,M,30,Forearm severely bitten,N,15h30,1.8 m [6'] shark,"Miami Herald, 7/9/1994",1994.06.24-Curtis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.06.24-Curtis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.06.24-Curtis.pdf,1994.06.24,1994.06.24,3787,, +1994.05.31.b,31-May-94,1994,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Steve Polack,M,24,Foot lacerated,N,10h30,,"C. Lancaster, Orlando Sentinel, 6/1/1994, p.C1",1994.05.31.b-Polack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.b-Polack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.b-Polack.pdf,1994.05.31.b,1994.05.31.b,3786,, +1994.05.31.a,31-May-94,1994,Unprovoked,USA,Florida," Daytona Beach, Volusia County",Surfing,Alex Reeber,M,28,Right foot lacerated,N,08h00,1.2 m [4'] spinner shark,"C. Lancaster, Orlando Sentinel, 6/1/1994, p.C1; P.LaMee, Orlando Sentinel, 9/4/1995, p.C.3",1994.05.31.a-Reeber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.a-Reeber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.a-Reeber.pdf,1994.05.31.a,1994.05.31.a,3785,, +1994.05.28,28-May-94,1994,Unprovoked,USA,Florida,"3 miles east of Jacksonville Beach, Duval County",Spearfishing,James Plumer,M,35,Shoulder bitten,N,,2.1 m [7'] shark,"Miami Herald, 5/30/1994; Tampa Tribune; Bradenton Herald, Bradenton Herald, 5/30/1994",1994.05.28-Plumer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.28-Plumer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.28-Plumer.pdf,1994.05.28,1994.05.28,3784,, +1994.05.24,24-May-94,1994,Unprovoked,USA,Florida,"Spessard Holland Park, Melbourne Beach, Brevard County",Wading,female,F,36,Lower left calf & ankle lacerated,N,,1.2 m [4'] shark,"Tampa Tribune, 5/26/1994; Bradenton Herald, 5/26/1994",1994.05.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.24-female.pdf,1994.05.24,1994.05.24,3783,, +1994.05.23,23-May-94,1994,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Jim Sellmer,M,26,Gash on ankle,N,Afternoon,,"Orlando Sentinel, 5/24/1994, p. C3 & 5/25/ 1994, p. D.3",1994.05.23-Sellmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.23-Sellmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.23-Sellmer.pdf,1994.05.23,1994.05.23,3782,, +1994.05.15,15-May-94,1994,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joel Tatro,M,22,Right knee lacerated,N,08h30,>1.8 m [6'] shark,"Orlando Sentinel, 5/16/1994",1994.05.15-Tatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.15-Tatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.15-Tatro.pdf,1994.05.15,1994.05.15,3781,, +1994.04.16,Reported 16-Apr-1994,1994,Invalid,USA,California,"Sunset Cliffs, San Diego, San Diego County",,Michele Von Emster,F,25,Not a shark attack; possibly murder. Body recovered 4-16-1994 minus severed leg,Y,,Blue shark bites post mortem,"R. Collier; McCormick, p.147",1994.04.16-Emster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.16-Emster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.16-Emster.pdf,1994.04.16,1994.04.16,3780,, +1994.04.15,15-Apr-94,1994,Unprovoked,REUNION,Saint-Joseph,Lieu-dit Cayenne,,,,,FATAL,Y,,"3 m [10'], 200-kg [441-lb] bull shark",G. Van Grevelynghe,1994.04.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.15-Reunion.pdf,1994.04.15,1994.04.15,3779,, +1994.04.06,06-Apr-94,1994,Unprovoked,BAHAMAS,,Rum Cay,Wading,Scott Curatolo-Wagemann,M,20?,Lower right leg bitten,N,10h30,2' to 3' shark,S. Curatolo-Wagemann; SharkSurvivors.com,1994.04.06-Wagemann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.06-Wagemann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.06-Wagemann.pdf,1994.04.06,1994.04.06,3778,, +1994.04.03,03-Apr-94,1994,Unprovoked,USA,Florida,"Miami Beach, Dade County",Freediving for seashells,Raul Tozo,M,71,Left shoulder lacerated,N,15h00,,"Miami Herald, 4/5/1994",1994.04.03-Tozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.03-Tozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.03-Tozo.pdf,1994.04.03,1994.04.03,3777,, +1994.04.02,02-Apr-94,1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Charles De Wet Reis,M,,FATAL ,Y,,4.9 m white shark,"L Compagno, GSAF",1994.04.02-dwRies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.02-dwRies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.02-dwRies.pdf,1994.04.02,1994.04.02,3776,, +1994.03.23.b,23-Mar-94,1994,Unprovoked,CHILE,,300 miles east of Easter Island,Swimming alongside NOAA research vessel Discoverer,Heather Boswell,F,19,Leg severed mid-thigh,N,11h58,"3.6 m [11'9""] white shark","H. Boswell, M. Levine & E. Ritter, GSAF",1994.03.23.b-Boswell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.b-Boswell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.b-Boswell.pdf,1994.03.23.b,1994.03.23.b,3775,, +1994.03.23.a,23-Mar-94,1994,Unprovoked,CHILE,,300 miles East of Easter Island,Swimming alongside NOAA research vessel Discoverer,Phil Buffington,M,,Thigh bitten,N,11h51,"3.6 m [11'9""] white shark","H. Boswell, M. Levine, GSAF",1994.03.23.a-Buffington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.a-Buffington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.a-Buffington.pdf,1994.03.23.a,1994.03.23.a,3774,, +1994.03.07,07-Mar-94,1994,Provoked,USA,California,,Removing shark from tank in nightclub ,Steve Rosebloome,M,33,Arm lacerated by captive shark PROVOKED INCIDENT,N,,"Lemon shark, 4' ","A. MacCormick, p.227",1994.03.07-Rosenbloome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.07-Rosenbloome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.07-Rosenbloome.pdf,1994.03.07,1994.03.07,3773,, +1994.03.01,01-Mar-94,1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Albano Gomes Dias Filho,M,25,Leg bitten,N,,2 m shark,"O. Gadig, BRASAF",1994.03.01-Albano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.01-Albano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.01-Albano.pdf,1994.03.01,1994.03.01,3772,, +1994.02.27,27-Feb-94,1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Saxon Reef,Spearfishing,Gary Lieberman,M,,Swim fin bitten,N,11h00,3 m [10'] shark,"G. Lieberman, M. Levine, GSAF",1994.02.27-Lieberman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.27-Lieberman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.27-Lieberman.pdf,1994.02.27,1994.02.27,3771,, +1994.02.19,19-Feb-94,1994,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Surfing,Edwin Riley III,M,23,Left foot bitten,N,13h00,1.2 m [4'] shark,"Palm Beach Post, 2/20/1994",1994.02.19-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.19-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.19-Riley.pdf,1994.02.19,1994.02.19,3770,, +1994.02.13,13-Feb-94,1994,Provoked,USA,Hawaii,Kailua Bay,Fishing,J. Magbanua,M,,Arm bitten while trying to secure shark caught by navy personnel from vessel PROVOKED INCIDENT,N,17h00,,Hawaii Department of Land and Natural Resources,1994.02.13-Magbanua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.13-Magbanua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.13-Magbanua.pdf,1994.02.13,1994.02.13,3769,, +1994.02.12,12-Feb-94,1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Beachview Holiday Resort,Surfing,Kevin Anderson,M,15,Leg bitten ,N,16h30,3 m [10'] white shark,"A. Gifford, GSAF",1994.02.12-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.12-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.12-Anderson.pdf,1994.02.12,1994.02.12,3768,, +1994.02.00,Feb-94,1994,Unprovoked,NEW CALEDONIA,South Province,Cap Goulvain,Fishing,Laurent Manuireva,,,"FATAL, right foot severed",Y,,,W. Leander,1994.02.00-Manuireva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.00-Manuireva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.00-Manuireva.pdf,1994.02.00,1994.02.00,3767,, +1994.01.31.b,31-Jan-94,1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Srgio Adriano Gomes Silva,M,,Right leg bitten,N,,,"M. Szpilman, p.139",1994.01.31.b-SG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.b-SG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.b-SG.pdf,1994.01.31.b,1994.01.31.b,3766,, +1994.01.31.a,31-Jan-94,1994,Unprovoked,USA,Hawaii,"Velzyland, north shore of O'ahu",Surfing,Jim Broach,M,,FATAL,Y,,Tiger shark,"G. Balazs; Allen, p.109",1994.01.31.a-Broach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.a-Broach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.a-Broach.pdf,1994.01.31.a,1994.01.31.a,3765,, +1994.01.30,30-Jan-94,1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Beach, East London",Windsurfing,Andy Austin,M,44,Calf bitten,N,13h30,,"A. Gifford, GSAF",1994.01.30-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.30-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.30-Austin.pdf,1994.01.30,1994.01.30,3764,, +1994.01.12.R,Reported 12-Jan-1994,1994,Boat,AUSTRALIA,Western Australia,Albany,Fishing,"5 m aluminum boat, occupants: Ben Turnbull, Lia & Neville Parker",,,"No injury to occupants, shark bit anchor and ladder",N,07h30,White shark,"Advertiser, 1/12/1994, p.18",1994.01.12.R-Turnbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.12.R-Turnbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.12.R-Turnbull.pdf,1994.01.12.R,1994.01.12.R,3763,, +1994.01.09,09-Jan-94,1994,Unprovoked,AUSTRALIA,Queensland,"Katana Downs Reach, Brisbane River","Swimming, after falling off towed kneeboard",Gary Cochrane,M,23,Hamstring bitten,N,,1.5 m shark,"Advertiser, 1/12/1994,p.18",1994.01.09-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.09-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.09-Cochrane.pdf,1994.01.09,1994.01.09,3762,, +1994.01.03,03-Jan-94,1994,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Hibberdene,Swimming ,Ian Galbraith,M,33,Foot bitten,N,16h15,"1.3 m [4'3""] shark","G. Cliff, NSB",1994.01.03-Galbraith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.03-Galbraith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.03-Galbraith.pdf,1994.01.03,1994.01.03,3761,, +1994.00.00.b,Last incident of 1994 in Hong Kong,1994,Unprovoked,HONG KONG,,,Playing volleyball with friends,female,F,,Both legs lacerated,N,,Tiger shark said to be 5 to 7 m [16.5' to 23'] ,J. Wong,1994.00.00.b-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.b-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.b-NV-HongKong.pdf,1994.00.00.b,1994.00.00.b,3760,, +1994.00.00.a,1994,1994,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Jeff Weakley,M,,Foot bitten,N,,,,1994.00.00.a--JeffWeakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.a--JeffWeakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.a--JeffWeakley.pdf,1994.00.00.a,1994.00.00.a,3759,, +1993.12.00,Dec-93,1993,Unprovoked,USA,Hawaii,Waipo,Surfing,Daniel McMoyler,M,,FATAL,Y,,"On 11-Jan-1994, his remains washed ashore. A 2.4 m [8'] tiger shark thought to be involved","Allen, pp.109-110",1993.12.00-McMoyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.12.00-McMoyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.12.00-McMoyler.pdf,1993.12.00,1993.12.00,3758,, +1993.11.28,28-Nov-93,1993,Unprovoked,USA,Florida,"North Beach Jetty, St Lucie County",Swimming,Scott Johnson,M,30,"""Minor cuts to left leg""",N,,,"Fort Pierce Tribune, 11/30/1993",1993.11.28-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.28-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.28-Johnson.pdf,1993.11.28,1993.11.28,3757,, +1993.11.21,21-Nov-93,1993,Unprovoked,AUSTRALIA,Western Australia, A pearl farm in Roebuck Bay,Hookah diving,Richard Peter Bisley,M,27,FATAL,Y,15h15,Tiger shark caught 6 days later with divers remains in its gut,"H. Edwards, pp.135-137",1993.11.21-Bisley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.21-Bisley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.21-Bisley.pdf,1993.11.21,1993.11.21,3756,, +1993.11.12,12-Nov-93,1993,Unprovoked,USA,Hawaii,"Horners, Wailua, Kaua'i","Surfing, paddling shorewards",David Silva,M,,Left leg severely bitten,N,10h55,,Nova transcript; Hawaii Department of Land and Natural Resources ,1993.11.12-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.12-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.12-Silva.pdf,1993.11.12,1993.11.12,3755,, +1993.11.00,Nov-93,1993,Unprovoked,SOMALIA,Banaadir Region,Mogadishu,Stamding,Russian male,M,,FATAL,Y,,,"A. MacCormick, pp.3-4; Orlando Sentinel, 12/1/1993, p.A9",1993.11.00-RussianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.00-RussianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.00-RussianMale.pdf,1993.11.00,1993.11.00,3754,, +1993.10.30,30-Oct-93,1993,Unprovoked,USA,California,"""Bunkers"" Eureka, Humboldt County",Surfing,Robert Williams,M,26,Serious injury to left leg,N,16h30,4 m to 5 m [13' to 16.5'] white shark,"R. Collier, pp.144-145",1993.10.30-Williams_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.30-Williams_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.30-Williams_Collier.pdf,1993.10.30,1993.10.30,3753,, +1993.10.26,26-Oct-93,1993,Unprovoked,USA,Florida,"Treasure Shores Beach, Indian River County",Swimming,Dawn Schaumann (6.5 months pregnant),F,26,Thigh & hand lacerated,N,10h00,3 m [10'] bull shark,"W. Schaumann; Orlando Sentinel, 10/27/1993, p.B6 ",1993.10.26-Schauman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.26-Schauman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.26-Schauman.pdf,1993.10.26,1993.10.26,3752,, +1993.10.10,10-Oct-93,1993,Boat,USA,California,"Goat Rock, Bodega Bay, Sonoma County?",Kayaking,Rosemary Johnson,F,34,"No Injury, Kayak holed",N,14h30,>6 m [20'] white shark,"R. R. Collier, pp.143-144; A. MacCormick, pp.98-99",1993.10.10-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.10-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.10-Johnson_Collier.pdf,1993.10.10,1993.10.10,3751,, +1993.10.00,Oct-93,1993,Unprovoked,USA,Hawaii,"Mouth of Wallua River, Kaua'i",Surfing,,,,Serious leg wounds,N,,Tiger shark,"A. MacCormick, p.197",1993.10.00-WalluaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.00-WalluaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.00-WalluaRiver.pdf,1993.10.00,1993.10.00,3750,, +1993.09.30,30-Sep-93,1993,Unprovoked,SOMALIA,Banaadir Region,Mogadishu,Swimming,Edward J. Nicholson,M,21,FATAL,Y,,," Houston Chronicle, 10/9/1993; Times of London, 11/25/1993, et al",1993.09.30-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.30-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.30-Nicholson.pdf,1993.09.30,1993.09.30,3749,, +1993.09.26,26-Sep-93,1993,Unprovoked,SOUTH AFRICA,Western Cape Province,Danger Point,Spearfishing,Wimpie Bouwer,M,36,Calf lacerated,N,11h30,3 m [10'] white shark,"A. Gifford, GSAF",1993.09.26-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.26-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.26-Bouwer.pdf,1993.09.26,1993.09.26,3748,, +1993.09.16.b,16-Sep-93,1993,Unprovoked,EL SALVADOR,La Libertad,near El Cocal Beach,Surfing,Jose Diter Roque ,,15,Left leg gashed,N,,3.7 m [12'] white shark,"Tampa Tribune, 9/18/1993",1993.09.16.b-Roque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.b-Roque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.b-Roque.pdf,1993.09.16.b,1993.09.16.b,3747,, +1993.09.16.a,16-Sep-93,1993,Unprovoked,EL SALVADOR,La Libertad,El Cocal Beach,Surfing,Mauricio Guzman Castaneda,M,17,"FATAL, arms & legs bitten, then drowned ",Y,,,"Tampa Tribune, 9/18/1993",1993.09.16.a-Castaneda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.a-Castaneda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.a-Castaneda.pdf,1993.09.16.a,1993.09.16.a,3746,, +1993.09.14,14-Sep-93,1993,Unprovoked,USA,Florida,"Huguenot Memorial Park, Duval County",Wading,Arthur Quick,M,19,Left foot bitten,N,,3' shark,"Orlando Sentinel, 9/17/1993, p. B.6; Miami Herald, 9/17/1993; Ocala Star Banner, 9/17/1993",1993.09.14-Quick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.14-Quick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.14-Quick.pdf,1993.09.14,1993.09.14,3745,, +1993.09.09,09-Sep-93,1993,Unprovoked,USA,Florida,"Little Talbot Island, Jacksonville, Duval County",,Jerry McInarnay,M,16,Left foot bitten,N,,,"Orlando Sentinel, 9/17/1993, p. B.6",1993.09.09-McInarnay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.09-McInarnay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.09-McInarnay.pdf,1993.09.09,1993.09.09,3744,, +1993.09.03,03-Sep-93,1993,Unprovoked,SPAIN,Costa Blanca,"Playa de las Arenas, Valencia ",Swimming,Jorge Durich Heredia (or Hernandez),M,69,"Thigh bitten, toes of left foot severed",N,08h00,1.2 m [4'] shark,"Orlando Sentinel, 9/5/1993, p. A.22 citing El Pais newspaper",1993.09.03-Heredia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.03-Heredia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.03-Heredia.pdf,1993.09.03,1993.09.03,3743,, +1993.08.21,21-Aug-93,1993,Unprovoked,BAHAMAS,Walkers Cay,"Matinella Reef, 15 to 20 miles west of Walkers Cay",Spearfishing,William Barnes,M,51,Leg bitten,N,17h15,1.8 m [6'] blacktip shark or Caribbean reef shark,"South Florida Sun Sentinel, 8/22/1993, p. 1A; Palm Beach Post, 8/22/1993",1993.08.21-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.21-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.21-Barnes.pdf,1993.08.21,1993.08.21,3742,, +1993.08.19.R,Reported 19-Aug-1993,1993,Unprovoked,USA,Florida,"Bethune Beach, Volusia County",Surfing,Shawn Bushong ,,13,Right foot bitten,N,,,"Deseret News, 8/19/1993",1993.08.19.R-Bushong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.R-Bushong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.R-Bushong.pdf,1993.08.19.R,1993.08.19.R,3741,, +1993.08.19, 19-Aug-1993,1993,Unprovoked,USA,Hawaii,"Paukukalo, Maui","Surfing, paddling seawards",Reggie Williams,M,,Abrasions & board bitten,N,07h05,,"G. Balazs; T. Allen, p.117; Hawaii Department of Land and Natural Resources",1993.08.19.a-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.a-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.a-Williams.pdf,1993.08.19,1993.08.19,3740,, +1993.08.15.b,15-Aug-93,1993,Boat,USA,California,Between Santa Cruz Island and Santa Barbara,Watching the shark feeding on a dead pinniped,21 m sportfishing vessel Seabiscuit. Occupants: Captain Louie Abbott & 2 dozen anglers,,,No injury to occupants; shark circled boat repeatedly then rammed the vessel 3 times,N,11h30,">6 m white shark, according to witnesses","R. Collier, p.174",1993.08.15.b-Seabiscuit-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.b-Seabiscuit-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.b-Seabiscuit-Collier.pdf,1993.08.15.b,1993.08.15.b,3739,, +1993.08.15.a,15-Aug-93,1993,Unprovoked,USA,North Carolina,Pamlico Sound,Riding floatation device,Petra Rijoes,F,19,Severe lacerations to abdomen & thighs,N,10h00,Bull shark,"Charlotte Observer, 8/19/1993, p.2C; F. Schwartz, p.23",1993.08.15.a-Rijoes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.a-Rijoes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.a-Rijoes.pdf,1993.08.15.a,1993.08.15.a,3738,, +1993.08.14,14-Aug-93,1993,Boat,AUSTRALIA,Western Australia,Off Rottnest Island,Fishing,5.4 m boat ,,,"No injury to occupants. Shark struck boat, lifting the outboard motor",N,,6 m [20'] white shark,"A. Sharpe, p.134",1993.08.14-Rottnest-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.14-Rottnest-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.14-Rottnest-boat.pdf,1993.08.14,1993.08.14,3737,, +1993.08.12,12-Aug-93,1993,Unprovoked,USA,California,"Abalone Point, Westport Union Landing, Mendocino County",Free diving for abalone (ascending),David R. Miles,M,39,Severe bites to head & shoulder,N,14h00,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.140-142; Orlando Sentinel, 10/2/1992, p.A3",1993.08.12-Miles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.12-Miles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.12-Miles_Collier.pdf,1993.08.12,1993.08.12,3736,, +1993.08.00.b,Aug-93,1993,Unprovoked,NEW CALEDONIA,South Province,Ile Moro,Fishing for lobsters,Thierry Kouathe,M,,FATAL,Y,,,W. Leander,1993.08.00.b-Kouathe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.b-Kouathe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.b-Kouathe.pdf,1993.08.00.b,1993.08.00.b,3735,, +1993.08.00.a,Aug-93,1993,Boat,EL SALVADOR,La Libertad,La Libertad,Oyster fishing,"boat, occupants: 2 men",,,FATAL x 2,Y,,White shark?,"Tampa Tribune, 9/18/1993",1993.08.00.a-El-Salvador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.a-El-Salvador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.a-El-Salvador.pdf,1993.08.00.a,1993.08.00.a,3734,, +1993.07.30,30-Jul-93,1993,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Pollock Beach, Port Elizabeth",Surfing,Ralph LeRoux,M,28,Puncture wounds on chest,N,15h00,4 m [13'] white shark,"A. Gifford, GSAF",1993.07.30-LeRoux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.30-LeRoux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.30-LeRoux.pdf,1993.07.30,1993.07.30,3733,, +1993.07.07,07-Jul-93,1993,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Playing,Melissa Rodrigues,F,12,Right knee bitten,N,18h12,"1.8 m to 2.4 m [6' to 8'] shark, tooth fragments recovered ","G. Taylor, Orlando Sentinel, 7/8/1993 edtion, p. B1; P. LaMee, Orlando Sentinel, 7/9/1993 edtion, p.B3",1993.07.07-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.07-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.07-Rodrigues.pdf,1993.07.07,1993.07.07,3732,, +1993.06.30,30-Jun-93,1993,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Robson Antonio R. Santos,M,,FATAL,Y,,,JCOnline,1993.06.30-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.30-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.30-BoaViagem.pdf,1993.06.30,1993.06.30,3731,, +1993.06.29,29-Jun-93,1993,Unprovoked,REUNION,Saint-Paul,Cap de la Marianne,Body boarding,Theirry Mercredi,M,16,Note: see 1992.06.28,N,,,"Quotidien, 4/12/1999",1993.06.29-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.29-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.29-Mercredi.pdf,1993.06.29,1993.06.29,3730,, +1993.06.11.b,11-Jun-93,1993,Unprovoked,HONG KONG,New Territories,Silverstrand,Swimming,Kwong Kong-hing ,M,61,FATAL,Y,07h15,,J. Wong,1993.06.11.b-Kwong Kong-hing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.b-Kwong Kong-hing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.b-Kwong Kong-hing.pdf,1993.06.11.b,1993.06.11.b,3729,, +1993.06.11.a,11-Jun-93,1993,Unprovoked,MEXICO,Quintana Roo,"Santa Rosa Shallows, Cozumel",Scuba diving,Mary Eggemeyer,F,42,FATAL,Y,19h30,,"Dallas Morning News, 6//15/1993",1993.06.11.a-Eggemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.a-Eggemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.a-Eggemeyer.pdf,1993.06.11.a,1993.06.11.a,3728,, +1993.06.10,10-Jun-93,1993,Unprovoked,USA,Hawaii,"Goats Island (Mokuauia Island), Malaekahana State Recreation Area, Laie, O'ahu",Paddling on surfboard or body board,Jonathan Mozo,M,22,Feet & ankles bitten,N,07h10,Thought to involve a tiger shark,"G. Ambrose, pp.61-68; J. Borg, p.83",1993.06.10-Mozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.10-Mozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.10-Mozo.pdf,1993.06.10,1993.06.10,3727,, +1993.06.09,09-Jun-93,1993,Unprovoked,AUSTRALIA,New South Wales,"Julian Rocks, Byron Bay",Scuba diving,John Ford,M,31,FATAL,Y,09h30,Remains recovered from 5.5 m [18'] white shark,"A. MacCormick, p.56; H. Edwards, pp.11 & 159",1993.06.09-JohnFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.09-JohnFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.09-JohnFord.pdf,1993.06.09,1993.06.09,3726,, +1993.06.05,05-Jun-93,1993,Unprovoked,AUSTRALIA,Tasmania,Tenth Island (King Island),Scuba diving at seal colony,Teresa Cartwright,F,34,FATAL,Y,10h55,5 m [16.5'] white shark,"Telegraph Mirror (Sydney), June 7, 1993; H. Edwards, p.156; C. Black pp. 167-169",1993.06.05-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.05-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.05-Cartwright.pdf,1993.06.05,1993.06.05,3725,, +1993.06.01,01-Jun-93,1993,Unprovoked,HONG KONG,New Territories,Sheung Sz Wan,Swimming,Yan Sai-wah,M,42,FATAL,Y,,,"J. Wong; A. MacCormick, p.235; A. Sharpe, p.34",1993.06.01-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.01-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.01-HongKong.pdf,1993.06.01,1993.06.01,3724,, +1993.06.00,Jun-93,1993,Unprovoked,USA,North Carolina,"Hamstead, Pender County",Swimming,Suzanne Pferrer,F,60's,"No injury, bumped by shark",N,Dusk,6' shark,C. Creswell,1993.06.00-Pferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.00-Pferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.00-Pferrer.pdf,1993.06.00,1993.06.00,3723,, +1993.05.00.b,Late May 1993,1993,Unprovoked,HONG KONG,"On the Kowloon penisula, south of Sai Kung",Silverstrand,,female,F,,"Missing, believed taken by a shark",Y,,,"J. Wong; A. Sharpe, p.34",1993.05.00.b-Kowloon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.b-Kowloon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.b-Kowloon.pdf,1993.05.00.b,1993.05.00.b,3722,, +1993.05.00.a,May-93,1993,Unprovoked,SOMALIA,Banaadir Region,"Arroyo Beach, Mogadishu",Swimming,French female,F,,FATAL,Y,,,"A. MacCormick, pp.3-4; Orlando Sentinel, 112/1/1993, p.A9",1993.05.00.a-Frenchfemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.a-Frenchfemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.a-Frenchfemale.pdf,1993.05.00.a,1993.05.00.a,3721,, +1993.04.00,Apr-93,1993,Invalid,AUSTRALIA,Tasmania,Barren Joey Island,Spearfishing,Tony Szolomiak,M,32,No inujury ,N,,,"C. Black & T. Peake, GSAF",1993.04.00-Szolomiak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.04.00-Szolomiak.pdf,,1993.04.00,1993.04.00,3720,, +1993.03.27,27-Mar-93,1993,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Jos Ricardo C. Gouveia,M,,Survived,N,,,JCOnline,1993.03.27-JoseRicardoGouveia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.27-JoseRicardoGouveia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.27-JoseRicardoGouveia.pdf,1993.03.27,1993.03.27,3719,, +1993.03.22,22-Mar-93,1993,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Floating on his back,Ken Dannewitz,M,25,Both feet lacerated,N,16h00,,"Orlando Sentinel, 3/25/1993. p. B5",1993.03.22-Dannewitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.22-Dannewitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.22-Dannewitz.pdf,1993.03.22,1993.03.22,3718,, +1993.03.17,17-Mar-93,1993,Unprovoked,JAPAN,Ehime Prefecture,Iyo,,Yuji Yamamoto,,,Survived,N,,Possiby white shark,K. Nakaya,1993.03.17-Yamamoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.17-Yamamoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.17-Yamamoto.pdf,1993.03.17,1993.03.17,3717,, +1993.03.14,14-Mar-93,1993,Unprovoked,USA,Hawaii,"Paradise Bay (next to Wailua Bay), Maui",Paddling on surfboard,Roddy Lewis,M,35,Lower legs lacerated ,N,15h45,"Tiger shark, 3.7 m [12'], (tooth fragment recovered from wound)","J. Borg, p.83; G. Ambrose, pp.30-40",1993.03.14-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.14-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.14-Lewis.pdf,1993.03.14,1993.03.14,3716,, +1993.03.12,12-Mar-93,1993,Unprovoked,USA,California,"Linda Mar Beach, Pedro Point, San Mateo County",Free diving & spearfishing (ascending),Don Berry,M,55,"No injury, swim fin bitten",N,14h30,White shark,"R. Collier, p.140",1993.03.12-Berry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.12-Berry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.12-Berry_Collier.pdf,1993.03.12,1993.03.12,3715,, +1993.03.00,Mar-93,1993,Unprovoked,NEW CALEDONIA,South Province,le de Casey,Swimming,Frederic Dolbeau,,,Hip bitten,N,,,W. Leander,1993.03.00-Dolbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.00-Dolbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.00-Dolbeau.pdf,1993.03.00,1993.03.00,3714,, +1993.02.19,19-Feb-93,1993,Sea Disaster,TONGA,Tongapatu Group,Between 'Ata and Tongapatu,Sea disaster,Haumole Faing'a ,M,,Puncture wounds to right thigh,N,03h00,,"Tongan Chronicle, 2/26/1993",1993.02.19-Fainga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.19-Fainga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.19-Fainga.pdf,1993.02.19,1993.02.19,3713,, +1993.02.18,18-Feb-93,1993,Sea Disaster,TONGA,Tongapatu Group,Between 'Ata and Tongapatu,Sea disaster,Siale Sime,M,,Foot bitten,N,Afternoon,1.5 m [5'] shark,"Tongan Chronicle, 2/26/1993",1993.02.18-SialeSime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.18-SialeSime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.18-SialeSime.pdf,1993.02.18,1993.02.18,3712,, +1993.02.04,04-Feb-93,1993,Provoked,AUSTRALIA,Queensland,Mooloolaba,Fishing,John Bonell,M,69,"Legs lacerated, puncture wound in hand from hooked shark hauled onboard PROVOKED INCIDENT",N,13h45,"Bronze whaler shark, 1.5 m ","Courier-Mail, 2/5/1993, p.7",1993.02.04-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.04-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.04-Bonnell.pdf,1993.02.04,1993.02.04,3711,, +1993.01.23,23-Jan-93,1993,Unprovoked,BRAZIL,Pernambuco,Piedade,Body boarding,Charles Roberto Soares Veras,M,15,Left leg bitten,N,,,D. Duarte,1993.01.23-Veras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.23-Veras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.23-Veras.pdf,1993.01.23,1993.01.23,3710,, +1993.01.05,05-Jan-93,1993,Unprovoked,AUSTRALIA,Queensland,"Line Reef, northeast of Hamilton Island, Whitsundays",Spearfishing,Daniel Lance McNally,M,21,"6"" laceration to left forearm",N,09h00,1.5 m shark,"Courier-Mail, 1/6/1993, p.1",1993.01.05-McNally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.05-McNally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.05-McNally.pdf,1993.01.05,1993.01.05,3709,, +1993.01.04,04-Jan-93,1993,Boat,CARIBBEAN SEA,,Off Dominican Republic, ,"canoe, occupants: Chris Newman & Stewart Newman",M,32 & 30,"No injury to occupants. Sharks, attracted to offal from slaughtered dolphin, attacked & damaged their canoe",N,,Two 3 m [10'] oceanic whitetip sharks,"A. MacCormick, p.100",1993.01.04-DominicanRepublic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.04-DominicanRepublic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.04-DominicanRepublic.pdf,1993.01.04,1993.01.04,3708,, +1993.01.02,02-Jan-93,1993,Unprovoked,USA,Oregon,"Bastendorf Beach, Coos County",Surfing,William Weaver,M,29,"No injury, shark bit board",N,16h30,6 m [20'] white shark,"R. Collier, pp.138-139; Mark Marks",1993.01.02-Weaver_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.02-Weaver_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.02-Weaver_Collier.pdf,1993.01.02,1993.01.02,3707,, +1993.00.00.d,Fall 1993,1993,Unprovoked,ANGOLA,West Africa,,Surfing,John Doyle,M,,Right Leg bitten,N,,3 m [10'] white shark,Internet report,1993.00.00.d-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.d-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.d-Doyle.pdf,1993.00.00.d,1993.00.00.d,3706,, +1993.00.00.c,Between May & Nov-1993,1993,Unprovoked,SOMALIA,Banaadir Region,Mogadishu,,several Somali children,,,FATAL,Y,,,"Orlando Sentinel, 112/1/1993, p.A9",1993.00.00.c - Somali children.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.c - Somali children.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.c - Somali children.pdf,1993.00.00.c,1993.00.00.c,3705,, +1993.00.00.b,1993,1993,Unprovoked,TONGA,Vavau,Between Ofu & Fafini Islands,Spearfishing,A diver from Spain,,30,Left buttock and thigh bitten,N,,,Drs. S. Fonea & A. Carafa,1993.00.00.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.b-Tonga.pdf,1993.00.00.b,1993.00.00.b,3704,, +1993.00.00.a,1993,1993,Unprovoked,USA,Florida,"Key West, Monroe County",Snorkeling,,,,Survived,N,,Lemon shark,press report,1993.00.00.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.a-NV-KeyWest.pdf,1993.00.00.a,1993.00.00.a,3703,, +1992.12.28,28-Dec-92,1992,Unprovoked,USA,Hawaii,"Honomuni, Moloka'i","Standing in waist-deep water, helping his father tend a gill net containing dead fish",Pahu Tanaka,M,10,Right leg bruised & abraded,N,A.M.,"Tiger shark, 2.4 m [8']","J. Borg, p.82",1992.12.28-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.28-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.28-Tanaka.pdf,1992.12.28,1992.12.28,3702,, +1992.12.23,23-Dec-92,1992,Unprovoked,USA,Hawaii,"Chun's Reef, Laniakea, O'ahu",Lying on surfboard,Gary M. Chun,M,30,"Minor lacerations to hand, 15"" crescent-shaped piece removed from surfboard",N,17h30,"Tiger shark, 3 m to 4.9 m [10' to 16'] ","L. Taylor (1993), pp.114-115; Orlando Sentinel, 12/25/1992, p.A20",1992.12.23-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.23-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.23-Chun.pdf,1992.12.23,1992.12.23,3701,, +1992.11.29,29-Nov-92,1992,Unprovoked,USA,California,"San Onofre, San Diego County ",Spearfishing / free diving,John Regan,M,31,10 puncture wounds to right calf,N,15h30,"Mako shark, 1.8 m [6'] ","R. Collier, p.xxvi; H. Viders, Alert Diver Magazine",1992.11.29-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.29-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.29-Regan.pdf,1992.11.29,1992.11.29,3700,, +1992.11.25.a,25-Nov-92,1992,Unprovoked,USA,Florida,"Brevard County, a mile north of Sebastian Inlet",Surfing,Matthew Robertson Paul,M,19,Forearm & hand bitten; tooth fragments of the shark were recovered from the surfer's hand,N,07h30,6' to 7' blacktip shark,"M. R. Paul; Orlando Sentinel, 11/28/1992; Fort Pierce Tribune, 11/30/1992 ",1992.11.25-Paul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.25-Paul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.25-Paul.pdf,1992.11.25.a,1992.11.25.a,3699,, +1992.11.23,23-Nov-92,1992,Unprovoked,USA,Florida,,Surfing,Larry Bush,M,24,Right ankle bitten,N,13h00,1.8 m [6'] shark,"Fort Pierce Tribune, 11/24/1992 & 11/30/1992; Palm Beach Post, 11/25/1992",1992.11.23-LarryBush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.23-LarryBush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.23-LarryBush.pdf,1992.11.23,1992.11.23,3698,, +1992.11.14,14-Nov-92,1992,Boat,USA,California,"Ano Nuevo, San Mateo County",Kayaking,Ken Kelton,M,46,"No injury, kayak bitten",N,12h50,5 m to 6 m white shark,"R. Collier, p.137",1992.11.14-Kelton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.14-Kelton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.14-Kelton_Collier.pdf,1992.11.14,1992.11.14,3697,, +1992.11.12.R,Reported 12-Nov-1992,1992,Unprovoked,FIJI,Wakaya Island,,Scuba diving,Chad Smith,M,30,Left arm lacerated,N,,3 m hammerhead shark,"Herald Sun, 11/12/1992, p.39",1992.11.12.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.12.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.12.R-Smith.pdf,1992.11.12.R,1992.11.12.R,3696,, +1992.11.11,11-Nov-92,1992,Unprovoked,USA,California,"San Nicholas Island, Santa Barbara County",Scuba diving (submerged),Kenny Crane,M,40,Foot punctured,N,14h00,Unidentified shark,"R. Collier, pp.136-137",1992.11.11-Crane_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.11-Crane_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.11-Crane_Collier.pdf,1992.11.11,1992.11.11,3695,, +1992.11.05.b,06-Nov-92,1992,Unprovoked,USA,Florida,"North Jetty Park, Fort Pierce, St Lucie County",Surfing,Josh Greinstein ,M,17,Heel bitten,N,14h15,,"P.Owers, Fort Pierce Tribune, 11/7/1992 ",1992.11.05.b-Greinstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.b-Greinstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.b-Greinstein.pdf,1992.11.05.b,1992.11.05.b,3694,, +1992.11.05.a,05-Nov-92,1992,Unprovoked,USA,Hawaii,"Kea'au Beach Park, O'ahu",Body boarding,Aaron A. Romento,M,18,Right leg severely lacerated FATAL,Y,09h45,"Tiger shark, 3 m to 3.7 m [10' to 12'] ","Dr. P. Bjokman; Palm Beach Post, 11/7/1992 ",1992.11.05.a-Romento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.a-Romento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.a-Romento.pdf,1992.11.05.a,1992.11.05.a,3693,, +1992.10.29,29-Oct-92,1992,Unprovoked,USA,California,"Castle Rock, San Miguel Island, Santa Barbara County",Hookah diving for sea urchins,Andy Schupe,M,40,Foot & swim fin punctured,N,11h00,2.5 m [8.25'] white shark,"R. Collier, pp.135-136 ",1992.10.29-Schupe_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.29-Schupe_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.29-Schupe_Collier.pdf,1992.10.29,1992.10.29,3692,, +1992.10.22,22-Oct-92,1992,Unprovoked,USA,Hawaii,"Lanaikea, O'ahu",Surfing,Rick (Eric) Gruzinsky,M,28,"Chest & arm bruised & scratched, 15"" crescent-shaped piece removed from board",N,07h40,"Tiger shark, 4.3 m [14'] ","Orlando Sentinel, 10/24/1992, p.A5; G. Ambrose, pp.54-60; A. MacCormick, p.195; J. Borg, p.82; L. Taylor (1993), pp.114-115",1992.10.22-Gruzinsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.22-Gruzinsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.22-Gruzinsky.pdf,1992.10.22,1992.10.22,3691,, +1992.10.15,15-Oct-92,1992,Unprovoked,AUSTRALIA,New South Wales,Avalon Beach,Scuba diving,Dave Gannicott,M,,Minor injury while delivering pup of female shark caught in a net,N,,Grey nurse shark,"Orlando Sentinel, 10/15/1992, p.A3",1992.10.15-Gannicott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.15-Gannicott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.15-Gannicott.pdf,1992.10.15,1992.10.15,3690,, +1992.10.11,11-Oct-92,1992,Unprovoked,BRAZIL,Maranho,"Praia de So Marcus, So Luiz",Boogie boarding,M.C.,,,Legs bitten,N,Afternoon,,M. Szpilman,1992.10.11-MC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.11-MC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.11-MC.pdf,1992.10.11,1992.10.11,3689,, +1992.10.01,01-Oct-92,1992,Unprovoked,AUSTRALIA,Queensland,"North Point Beach, Moreton Island",Surfing,Michael Docherty,M,28,FATAL,Y,14h30,4.2 m white shark,"Daily Telegraph (Sydney) 10/2/1992 ; Orlando Sentinel, 10/2/1992, p.A3; A. Sharpe, p.108; A. MacCormick, p.197",1992.10.01-Docherty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.01-Docherty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.01-Docherty.pdf,1992.10.01,1992.10.01,3688,, +1992.09.18,18-Sep-92,1992,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Body boarding,Eduardo Rodrigues da Cruz,M,,Left leg severely bitten,N,Afternoon,,D. Duarte;,1992.09.18-Cruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.18-Cruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.18-Cruz.pdf,1992.09.18,1992.09.18,3687,, +1992.09.13,13-Sep-92,1992,Unprovoked,USA,Oregon,"Gold Beach, Curry County",Surfing,Jerad Brittain,M,20,Minor bruises,N,17h00,4 m to 5 m [13' to 16.5'] white shark ,"R. Collier, pp.134-135 ",1992.09.13-Brittain_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.13-Brittain_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.13-Brittain_Collier.pdf,1992.09.13,1992.09.13,3686,, +1992.09.11,11-Sep-92,1992,Unprovoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Standing,Tracie Langbein,F,18,Right ankle & calf bitten,N,15h00,,"Orlando Sentinel, 5/20/1993, p.B3; P.LaMee, Orlando Sentinel, 9/4/1995, p.C.3",1992.09.11-Langbein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.11-Langbein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.11-Langbein.pdf,1992.09.11,1992.09.11,3685,, +1992.09.10,10-Sep-92,1992,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Enoque Pereira dos Santos,M,,FATAL,Y,,,D. Duarte,1992.09.10-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.10-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.10-BoaViagem.pdf,1992.09.10,1992.09.10,3684,, +1992.09.00,Sep-92,1992,Unprovoked,USA,Florida,St Lucie County,Surf fishing,male,M,,"Foot bitten, 8 stitches needed to repair the wound",N,,,"Fort Pierce Tribune, 11/24/1992 & 11/30/1992",1992.09.00-surf-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.00-surf-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.00-surf-fisherman.pdf,1992.09.00,1992.09.00,3683,, +1992.08.29,29-Aug-92,1992,Unprovoked,BAHAMAS,Abaco Islands,Double Breasted Cays ,"Snorkeling, carrying a speared fish in her hand",Valerie Fortunato ,F,34,Left hand bitten,N,,1.8 m [6'] blacktip shark,"C. Dummitt, Palm Beach Post. 9/3/1992",1992.08.29-Fortunato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.29-Fortunato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.29-Fortunato.pdf,1992.08.29,1992.08.29,3682,, +1992.08.25,25-Aug-92,1992,Unprovoked,AUSTRALIA,South Australia,"Lipson Cove, Tumby Bay",Surfing,Jason Bates,M,17,"Minor cuts, sufboard bitten",N,17h50,4 m white shark,"Advertiser, 8/28/1992, p.3; J. West, ASAF",1992.08.25-Bates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.25-Bates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.25-Bates.pdf,1992.08.25,1992.08.25,3681,, +1992.08.21,21-Aug-92,1992,Invalid,USA,Hawaii,"Twin Arches, Hana Ranch, Maui",Fell from cliff while fishing & disappeared in strong current,Chester N. Shishido,M,,Body recovered next morning. Injuries appeared to be inflicted post mortem,Y,15h00,,"J. Borg, p.82; L. Taylor (1993), pp.114-115",1992.08.21-Shishido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.21-Shishido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.21-Shishido.pdf,1992.08.21,1992.08.21,3680,, +1992.08.18,18-Aug-92,1992,Unprovoked,USA,California,"Klamath River, Del Norte County",Surfing,Keith Caruso,M,22,"No injury, board bitten",N,17h00,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.132-133",1992.08.18-Caruso_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.18-Caruso_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.18-Caruso_Collier.pdf,1992.08.18,1992.08.18,3679,, +1992.08.17,17-Aug-92,1992,Provoked,USA,Florida,"Manalapan, Palm Beach County",Snorkeling,Rod Duguid,M,26,"Grabbed metal leader to shark, shark clamped on & bit left bicep PROVOKED INCIDENT",N,,"Nurse shark, 3', 20-lb ","J.A. Plunkett, Miami Herald, 8/19/1992, p.1B",1992.08.17-Duguid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.17-Duguid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.17-Duguid.pdf,1992.08.17,1992.08.17,3678,, +1992.08.00,Aug-92,1992,Invalid,USA,Florida,St. Lucie County,Fisherman,male,M,,No details,UNKNOWN,,,"Fort Pierce Tribune, 11/30/1992",1992.08.00-NV-StLucieFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.00-NV-StLucieFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.00-NV-StLucieFisherman.pdf,1992.08.00,1992.08.00,3677,, +1992.07.23,23-Jul-92,1992,Invalid,USA,Hawaii,"Wai'anae, O'ahu","Zosimo & his son, Jeffrey Popa, failed to return from overnight fishing trip in a 14' boat, Boat apparently sank, debris recovered but his son & boat were never found",Zosimo Popa,M,,"Death due to drowning. His body, tied to floating ice chest, had 2 small post-mortem bites ",Y,,Cookie cutter shark,"J. Borg, p.81; L. Taylor (1993), pp.114-115",1992.07.23-Popa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.23-Popa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.23-Popa.pdf,1992.07.23,1992.07.23,3676,, +1992.07.21,21-Jul-92,1992,Unprovoked,USA,Florida,"Manasota Beach, Sarasota County",Standing,Ann Suits,F,42,Lacerations to left foot,N,12h33,"""a small shark""","Sarasota Herald-Tribune, 7/23/1992 ",1992.07.21-Suits.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.21-Suits.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.21-Suits.pdf,1992.07.21,1992.07.21,3675,, +1992.07.08.b,08-Jul-92,1992,Unprovoked,BRAZIL,Maranho,"Praia da Marcela, So Marcos Bay",Surfing,L.G,M,,Arm bitten,N,30 minutes after 1992.07.08.a,,M. Szpilman,1992.07.08.b-LG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.b-LG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.b-LG.pdf,1992.07.08.b,1992.07.08.b,3674,, +1992.07.08.a,08-Jul-92,1992,Unprovoked,BRAZIL,Maranho,"Praia da Marcela, So Marcos Bay",Surfing,M.C.,M,,"Lower leg bitten, surgically amputated",N,Morning,,M. Szpilman,1992.07.08.a-MS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.a-MS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.a-MS.pdf,1992.07.08.a,1992.07.08.a,3673,, +1992.06.28.b,28-Jun-92,1992,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Ubiratan Martins Gomes,M,,FATAL,Y,,,D .Duarte,1992.06.28.b-Piedade-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.b-Piedade-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.b-Piedade-Brazil.pdf,1992.06.28.b,1992.06.28.b,3672,, +1992.06.28.a,28-Jun-92,1992,Unprovoked,REUNION,Saint-Paul,Cap de la Marianne,Surfing,Theirry Mercredi,M,16,FATAL,Y,14h30,Bull shark or lemon shark,G. Van Grevelynghe,1992.06.28.a-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.a-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.a-Mercredi.pdf,1992.06.28.a,1992.06.28.a,3671,, +1992.06.19,19-Jun-92,1992,Unprovoked,VANUATU,Malampa Province,"Port Sandwich, Malakula",Swimming,Andrea Rush,F,21,Right leg was bitten above and below the knee and an artery was punctured,N,,,"A. Rush; R. D. Weeks, GSAF; Otago Daily Times, 6/20/1992",1992.06.19-AndreaRush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.19-AndreaRush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.19-AndreaRush.pdf,1992.06.19,1992.06.19,3670,, +1992.06.17,17-Jun-92,1992,Boat,JAPAN,Ehime Prefecture,"1.5 km north of Igata-cho, 60 km south of Matsyama",Preparing to fish for jack-mackerel,"5.75 m wooden boat, occupant: Yoshaiaki Ueda",,,"No inujury to occupant. Shark bit boat repeatedly, leaving 2 teeth in the bottom keel of the boat",N,12h30,"White shark, identification by K. Nakaya","K. Nakaya; Orlando Sentinel, 6/18/1992, p. A3",1992.06.17-Ueda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.17-Ueda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.17-Ueda.pdf,1992.06.17,1992.06.17,3669,, +1992.06.00,Jun-92,1992,Unprovoked,REUNION,Saint-Paul,,Diving,,,,Survived,N,,Mako shark,G. Van Grevelynghe,1992.06.00-ReunionDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.00-ReunionDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.00-ReunionDiver.pdf,1992.06.00,1992.06.00,3668,, +1992.05.31,31-May-92,1992,Invalid,USA,North Carolina ,Wreck of the U-352 ,Scuba diving ,Mike Weathers,M,45,Disappeared. His ripped dive jacket was recovered,Y,,Shark involvement prior to death was not confirmed,"Charlotte Observer, 6/24/1992, p.1C & 8/8/1992, p.2C",1992.05.31-Weathers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.31-Weathers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.31-Weathers.pdf,1992.05.31,1992.05.31,3667,, +1992.05.22,22-May-92,1992,Unprovoked,REUNION,Saint-Joseph,Lieu-dit Cayenne,Surfing,Emmanuel Nativel,M,,FATAL,Y,14h00,"Tiger shark, 3 m to 4 m [10' to 13'] ",G. Van Grevelynghe,1992.05.22-Nativel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.22-Nativel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.22-Nativel.pdf,1992.05.22,1992.05.22,3666,, +1992.05.00,May-92,1992,Unprovoked,MEXICO,Mexico / Caribbean Sea,Isla Mujeres,Scuba diving & filming,Nick Caloyianis,M,,"Fingers, hand & arm bitten",N,,,"T. Allen, p.238",1992.05.00-Caloyianis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.00-Caloyianis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.00-Caloyianis.pdf,1992.05.00,1992.05.00,3665,, +1992.04.24,24-Apr-92,1992,Unprovoked,NEW ZEALAND,Antarctic Ocean,"Meteorologic Station on Campbell Island, 370 nautical miles south of New Zealand",Snorkeling,Mike Fraser,M,,"Right forearm severed, left forearm lacerated & broken",N,15h30,"4 m [13'], 590-kg white shark","M. Fraser; R. Weeks, GSAF",1992.04.24-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.24-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.24-Fraser.pdf,1992.04.24,1992.04.24,3664,, +1992.04.09,09-Apr-92,1992,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Gordon Harmer,M,35,Punctures & lacerations on lower leg,N,13h20,>2 m shark,"G. Harmer; M. Levine, GSAF",1992.04.09-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.09-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.09-Harmer.pdf,1992.04.09,1992.04.09,3663,, +1992.03.28,28-Mar-92,1992,Unprovoked,USA,Hawaii,"Cannons, at Ha'ena on the north shore of Kaua'i Island","Surfing, paddling seawards",Jude Chamberlin,F,36,"Foot bitten, crescent of bitemarks in both sides of board",N,>06h45,Tiger shark,"G. Ambrose, pp.18-23; J. Borg, p.81; L. Taylor (1993), pp.112-113",1992.03.28-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.28-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.28-Chamberlin.pdf,1992.03.28,1992.03.28,3662,, +1992.03.10,10-Mar-92,1992,Unprovoked,AUSTRALIA,Victoria,Point Lonsdale,Surfing,Mark Jepson,M,17,"Right thigh, back & hand lacerated",N,,"Bronze whaler shark, 3 m","Herald Sun, 1/7/1993; A. Sharpe, p.116",1992.03.10-Jepson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.10-Jepson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.10-Jepson.pdf,1992.03.10,1992.03.10,3661,, +1992.03.08.c,08-Mar-92,1992,Unprovoked,JAPAN,Ehime Prefecture,Matsuyama,Hookah diving for pen shells ,Kazuta Harada,M,41,"FATAL, body not recovered",Y,15h20,"5 m [16.5'] white shark, identification by K. Nakaya","K. Nakaya; Orlando Sentinel, 3/20/1992, p.A10 & 6/18/1992, p. A3",1992.03.08.c-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.c-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.c-Harada.pdf,1992.03.08.c,1992.03.08.c,3660,, +1992.03.08.b,08-Mar-92,1992,Boat,JAPAN,Ehime Prefecture,"Nagahama-cho, 40 km southwest of Matsuyama ","Fishing for yellowtail, Seriola quinqueradiata",wooden boat of Yoshihiro Takasaki,,,No injury to boat or occupant,N,10h15,,K. Nakaya,1992.03.08.b-Takasaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.b-Takasaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.b-Takasaki.pdf,1992.03.08.b,1992.03.08.b,3659,, +1992.03.08.a,08-Mar-92,1992,Unprovoked,USA,Oregon,"Winchester Bay, Douglas County",Surfing (sitting on his board),Mike Allman,M,21,"Left shoulder & side bitten, board broken",N,09h45,Said to involve a 6 m to 7 m [20' to 23'] white shark,"R. Collier, pp.130-132; M. Marks",1992.03.08.a-Allman-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.a-Allman-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.a-Allman-Collier.pdf,1992.03.08.a,1992.03.08.a,3658,, +1992.02.19,19-Feb-92,1992,Unprovoked,USA,Hawaii,"Leftovers, near Waimea Bay, O'ahu",Body boarding,Brian Adona,M,,FATAL Disappeared. His board washed ashore next morning with crescent-shaped piece missing and serrated toothmarks of a shark,Y,Late afternoon,Tiger shark?,"J. Borg, pp.80-81; L. Taylor (1993), pp.112-113. Note: Hawaii Department of Land and Natural Resources lists date as 2/1/1992",1992.02.19 - Adona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.19 - Adona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.19 - Adona.pdf,1992.02.19,1992.02.19,3657,, +1992.02.14,14-Feb-92,1992,Unprovoked,JAPAN,Ehime Prefecture,Matsuyama,Diving for pen shells,Koji Harada,M,,"No injury, steel diving helmet bitten 3 times",N,10h00,5 m [16.5'] shark,K. Nakaya,1992.02.14-Koji-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.14-Koji-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.14-Koji-Harada.pdf,1992.02.14,1992.02.14,3656,, +1992.02.09,09-Feb-92,1992,Invalid,AUSTRALIA,Tasmania,"Clifton Beach, southwest of Hobart",Surfing,Wayne Fitzpatrick,M,19,"No injury, shark allegedly took his surfboard & slashed his wetsuit. Shark involvement questionable",N,19h30,,"C. Black, GSAF; Advertiser, 2/11/1992, p.2; ",1992.02.09-Fitzpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.09-Fitzpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.09-Fitzpatrick.pdf,1992.02.09,1992.02.09,3655,, +1992.01.29.b,29-Jan-92,1992,Unprovoked,REUNION,La Saline-les-Bains,Revine-3-Bassins,Spearfishing,Richard Carnoy,M,,Survived,N,16h30,1.8 m grey shark,G. Van Grevelynghe,1992.01.29.b-Carnoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.b-Carnoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.b-Carnoy.pdf,1992.01.29.b,1992.01.29.b,3654,, +1992.01.29.a,29-Jan-92,1992,Unprovoked,AUSTRALIA,New South Wales,Tweed Heads,Boogie boarding,John Bayliss (or Ballis),M,19,Right leg lacerated,N,20h00,"Bronze whaler shark, 2.3 m [7.5'] ","Advertiser, 1/30/1992, p.7 & 2/1/1992, p.4",1992.01.29.a-Bayliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.a-Bayliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.a-Bayliss.pdf,1992.01.29.a,1992.01.29.a,3653,, +1992.01.23,23-Jan-92,1992,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Swimming ,Noor-Mubeen Shaik,M,19,Right foot lacerated,N,17h30,"Zambesi shark, 1.7 m [5.5'] ","G. Cliff, NSB",1992.01.23-Shaik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.23-Shaik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.23-Shaik.pdf,1992.01.23,1992.01.23,3652,, +1992.01.08,08-Jan-92,1992,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sheffield Beach,Spearfishing,Daniel Van Huysteen,M,36,Left cheek lacerated,N,17h15,Possibly a 1.5 m [5'] blacktip shark,"A. Gifford, GSAF",1992.01.08-vanHuysteen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.08-vanHuysteen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.08-vanHuysteen.pdf,1992.01.08,1992.01.08,3651,, +1992.01.06,06-Jan-92,1992,Unprovoked,MAURITIUS,,Mahebourg,Fishing,male,M,,Survived,N,,Grey reef shark,D. deSpeville,1992.01.06-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.06-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.06-Mauritius.pdf,1992.01.06,1992.01.06,3650,, +1992.01.03,03-Jan-92,1992,Unprovoked,JAPAN,Ehime Prefecture,Matsuyama,,male,M,,Survived,N,,,K. Nakaya,1992.01.03-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.03-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.03-Japan.pdf,1992.01.03,1992.01.03,3649,, +1992.01.00,Jan-92,1992,Invalid,JAPAN,Sea of Japan,Kanazawa?,,Mikado Nakamura,,,Survived. questionable incident,N,,,K. Nakaya,1992.01.00-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.00-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.00-Nakamura.pdf,1992.01.00,1992.01.00,3648,, +1992.00.00,1992,1992,Unprovoked,FIJI,Tavenui,,,Stephen Davies,M,33,FATAL,Y,,,"A.Bull, www.stuff.com.nz",1992.00.00-NV-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.00.00-NV-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.00.00-NV-Davies.pdf,1992.00.00,1992.00.00,3647,, +1991.12.04,04-Dec-91,1991,Unprovoked,USA,California,"Shelter Cover, north of Fort Bragg, Shelter Cove, Mendocino County",Hookah diving for sea urchins,David Abernathy,M,25,"No injury, shark became tangled in hose & towed him 100'",N,15h06,6 m [20'] white shark,"R. Collier, pp.129-130; Mark Marks; S. Waterman ",1991.12.04-Abernathy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.12.04-Abernathy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.12.04-Abernathy_Collier.pdf,1991.12.04,1991.12.04,3646,, +1991.11.26.b,26-Nov-91,1991,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,Martha Joy Morrell,F,41,"FATAL, right leg at hip, left leg and right forearm severed ",Y,09h00,"Tiger shark, 2.4 m 3.4 m [8' to 11'] ","J. Borg, pp.1-3; A. MacCormick, p.151; L. Taylor (1993), pp.112-113",1991.11.26.b-Morrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.b-Morrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.b-Morrell.pdf,1991.11.26.b,1991.11.26.b,3645,, +1991.11.26.a,26-Nov-91,1991,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,Louise Sourisseau,F,,Right calf abraded,N,09h00,"Tiger shark, 2.4 m 3.4 m [8' to 11'] ","J. Borg, p.80; A. MacCormick, p.151; L. Taylor (1993), pp.112-113",1991.11.26.a-Sourisseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.a-Sourisseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.a-Sourisseau.pdf,1991.11.26.a,1991.11.26.a,3644,, +1991.11.19,19-Nov-91,1991,Unprovoked,USA,Hawaii,"Maliko Point, Maui","Fishing from rocks, swept out to sea by large wave & treading water",Suk Kyu (Steve) Park,M,,"Body not recovered, shorts found indicating shark bite on left side",Y,16h30,"Tiger shark, 3.7 m [12'] ","J. Borg, pp.79-80; L. Taylor (1993), pp.110-111",1991.11.19-Park.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.19-Park.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.19-Park.pdf,1991.11.19,1991.11.19,3643,, +1991.11.14,14-Nov-91,1991,Provoked,USA,Florida,Near Port Canaveral Coast Guard Base,Fishing,John Saenza,M,,Hand bitten as he was cleaning hooked shark PROVOKED INCIDENT,N,12h54,2.4 m [8'] shark,"D.E. Owens, Orlando Sentinel, 11/15/1991",1991.11.14-Saenza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.14-Saenza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.14-Saenza.pdf,1991.11.14,1991.11.14,3642,, +1991.11.00,Nov-91,1991,Unprovoked,AUSTRALIA,Western Australia,"Backbeach, Halls Head",Boogie boarding,Chad Wittorff,M,14,Calf scratched & chunk bitten from board,N,,"""small shark""","A. Sharpe, pp.135-136",1991.11.00-Wittorff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.00-Wittorff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.00-Wittorff.pdf,1991.11.00,1991.11.00,3641,, +1991.10.12,12-Oct-91,1991,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Cliff Turner,M,21,Right foot & ankle lacerated,N,08h30,1.8 m [6'] shark,"Orlando Sentinel, 10/13/1991",1991.10.12-CliffTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.12-CliffTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.12-CliffTurner.pdf,1991.10.12,1991.10.12,3640,, +1991.10.05,05-Oct-91,1991,Unprovoked,USA,California,"Horseshoe Reef, Scott Creek, Davenport, Santa Cruz County",Surfing,John Ferrerira,M,32,"Arm, shoulder & back bitten",N,07h30,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, pp.126-128 ; Orlando Sentinel, 10/6/1991, p.A8 & 10/10/ 1991, p.A8 ",1991.10.05-Ferreira_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.05-Ferreira_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.05-Ferreira_Collier.pdf,1991.10.05,1991.10.05,3639,, +1991.09.19,19-Sep-91,1991,Invalid,BAHAMAS,,Bimini,Spearfishing,Omar Karim Huneidi,M,32,"Initally reported as a shark attack, forensic examination concluded cause of death was drowning",Y,17h00,Tiger shark,"E. Pace, FSAF; Sun Sentinel, 9/22/1991, p.3B",1991.09.19-Huneidi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.19-Huneidi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.19-Huneidi.pdf,1991.09.19,1991.09.19,3638,, +1991.09.08,08-Sep-91,1991,Unprovoked,AUSTRALIA,South Australia,"Snapper Point, Aldinga Beach, Adelaide",Scuba diving,Jonathon Lee,M,19,FATAL,Y,15h00,4 m [13'] white shark,"Advertiser, 1/31/1992, p.5; A. Sharpe, pp.127-128 ",1991.09.08-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.08-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.08-Lee.pdf,1991.09.08,1991.09.08,3637,, +1991.08.30,30-Aug-91,1991,Provoked,AUSTRALIA,Queensland,"On board the Japanese longline trawler Fukuya No.38, 100 nm northeast of Brisbane",Finning the shark that bit him,A Japanese fisherman from Miyagi,M,36,"Shark bit his arm, nearly severing it PROVOKED INCIDENT",N,Afternoon,"3 m [10'], 270- kg [595-lb] shark","A. Sharpe, pp.107-108",1991.08.30-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.30-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.30-fisherman.pdf,1991.08.30,1991.08.30,3636,, +1991.08.26,26-Aug-91,1991,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,Brad Hibshman,M,23,Deep cuts on lower leg,N,13h30,sand shark,"Charlotte Observer, 8/27/1991, p.1B",1991.08.26-Hibshman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.26-Hibshman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.26-Hibshman.pdf,1991.08.26,1991.08.26,3635,, +1991.08.12,12-Aug-91,1991,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Wading,Jacquelyn Johnson,F,10,Bite to left thigh & calf,N,16h35,3' shark,"Vero Beach Press Journal, 8/13/1991, E. Pace, FSAF",1991.08.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.12-Johnson.pdf,1991.08.12,1991.08.12,3634,, +1991.08.09,09-Aug-91,1991,Provoked,USA,Florida,Florida Bay,Fishing,Captain John Donnell,M,,Laceration to right forearm PROVOKED INCIDENT,N,,"Lemon shark, 30-lb ","Miami Herald, 8/10/1991, p.2B",1991.08.09-Donnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.09-Donnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.09-Donnell.pdf,1991.08.09,1991.08.09,3633,, +1991.07.30,30-Jul-91,1991,Boat,ITALY,Ligurian Sea,"Portofino, 20 miles offshore, Tigullio Bay, Santa Margherita Ligure (Liguria)",Canoeing,Ivana Iacaccia,F,40,No Injury to occupant; canoe bitten,N,15h30,4 m [13'] white shark,"Stars & Stripes, 8/5/1991, p.8; A. De Maddalena; Graffione (1991), Fergusson (1996), Angela et al. (1997)",1991.07.30-Ivana-Iacaccia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.30-Ivana-Iacaccia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.30-Ivana-Iacaccia.pdf,1991.07.30,1991.07.30,3632,, +1991.07.27,27-Jul-91,1991,Unprovoked,USA,Florida,"John Pennekamp Marine Park, Monroe County",Snorkeling,Jim Yarber,M,39,Arm bitten,N,,"2.1 m [7'], 140-lb reef shark","Miami Herald, 7/31/1991",1991.07.27-Yarber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.27-Yarber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.27-Yarber.pdf,1991.07.27,1991.07.27,3631,, +1991.07.18,18-Jul-91,1991,Unprovoked,USA,Florida,150 miles from Crystal River,Swimming from makeshift raft to life vest after fishing boat sank,Larry Myers,M,42,Punctures in lower abdomen & groin ,N,,1.8 m [6'] blacktip shark,"Orlando Sentinel, 7/23/1991, p.A1",1991.07.18-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.18-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.18-Myers.pdf,1991.07.18,1991.07.18,3630,, +1991.07.07,07-Jul-91,1991,Unprovoked,USA,Florida,"South Miami Beach, Dade County",Swimming,Jorge Garcia,M,22,Arm bitten,N,18h45,,"E. Pace, FSAF",1991.07.07-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.07-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.07-Garcia.pdf,1991.07.07,1991.07.07,3629,, +1991.07.01.b,01-Jul-91,1991,Unprovoked,REUNION,L'Etang-Sal,"Ravine des Sables, Saint Leu",Surfing,Alain Curco-Llovra,M,30,Left arm severed,N,17h30,"Tiger shark, 3 to 4 m [10' to 13'] ","R.D. Weeks, GSAF, p.303; G. Van Grevelynghe",1991.07.01.b-Llovera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.b-Llovera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.b-Llovera.pdf,1991.07.01.b,1991.07.01.b,3628,, +1991.07.01.a,01-Jul-91,1991,Unprovoked,USA,California,"8.5 miles south of Ano Nuevo State Reserve, Davenport County",Surfing,Eric Larsen,M,32,"Forearm, upper thigh, knee & ankle lacerated",N,09h30,5 m [16.5'] white shark,"R. Collier, pp.124-126 ; San Jose Mercury, 7/4/1991; Orlando Sentinel, 7/4/1991, p.A21; 10/6/1991, p.A22 + ",1991.07.01.a-Larsen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.a-Larsen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.a-Larsen_Collier.pdf,1991.07.01.a,1991.07.01.a,3627,, +1991.07.00,Jul-91,1991,Unprovoked,USA,Virginia,"Croatan Beach, Virginia Beach, ",Boogie boarding,Michael Hootman,M,13,Severe laceration to foot,N,,Shark involvement not confirmed,"Virginia Beach Beacon, 10/15/1991",1991.07.00-Hootman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.00-Hootman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.00-Hootman.pdf,1991.07.00,1991.07.00,3626,, +1991.06.29,29-Jun-91,1991,Unprovoked,HONG KONG,,"Basalt Island, 9km from Silverstrand",,male,M,22,FATAL,Y,,,J. Wong,1991.06.29-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.29-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.29-NV-HongKong.pdf,1991.06.29,1991.06.29,3625,, +1991.06.28,28-Jun-91,1991,Unprovoked,HONG KONG,Kowloon Peninsula,Sai Kung,Fishing,male,M,,"FATAL, right arm severed ",Y,,,"A. MacCormick, pp.103-104 & 235",1991.06.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.28-HongKong.pdf,1991.06.28,1991.06.28,3624,, +1991.06.26,26-Jun-91,1991,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Surfing,Joe Bosque,M,18,Hand bitten,N,17h30,,"Miami Herald, 6/28/1991, p.5B",1991.06.26-JoeBosque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.26-JoeBosque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.26-JoeBosque.pdf,1991.06.26,1991.06.26,3623,, +1991.06.07.b,07-Jun-91,1991,Unprovoked,USA,Florida,"Tampa Bay, Hillsborough County",Swimming behind sailboat,Rick Le Prevost,M,31,"Left ankle, calf, thigh and abdomen bitten",N,11h30,2.7 m [9'] bull or lemon shark,"Orlando Sentinel; 6/9/1991, p.B3; Ocala Star-Banner, 6/8/1991; St. Petersburg Times, 11/28/1991 ",1991.06.07.b-LePrevost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.b-LePrevost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.b-LePrevost.pdf,1991.06.07.b,1991.06.07.b,3622,, +1991.06.07.a,07-Jun-91,1991,Unprovoked,HONG KONG,Port Shelter,"Silverstrand Beach, near Hung Hau ",Swimming ,Yeung Tam-ho (female),F,65,Abdomen bitten & leg severed FATAL,Y,Between 06h00 & 07h20,"Tiger shark, >3 m [10']","Sunday Mail, 6/9/91, p.28",1991.06.07.a-YeungTam-ho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.a-YeungTam-ho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.a-YeungTam-ho.pdf,1991.06.07.a,1991.06.07.a,3621,, +1991.05.26,26-May-91,1991,Unprovoked,USA,Hawaii,"Ma'ili Beach, O'ahu",Sitting on surfboard,Frank (Scott) Betz,M,23,Right calf bitten,N,16h45,2.4 m [8'] shark,"J. Borg, p.79; L. Taylor (1993), pp.110-111",1991.05.26-Betz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.26-Betz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.26-Betz.pdf,1991.05.26,1991.05.26,3620,, +1991.05.19,19-May-91,1991,Unprovoked,SOUTH AFRICA,Western Cape Province,Gordons Bay,Scuba diving,Coen Marais,M,,"No injury, tank scratched by shark",N,13h00,"3.5 m [11.5'] female white shark named ""Notchfin""","M. Levine, GSAF",1991.05.19-Marais-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.19-Marais-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.19-Marais-Jordaan.pdf,1991.05.19,1991.05.19,3619,, +1991.04.24,24-Apr-91,1991,Provoked,BRAZIL,Pernambuco,"Praia de Pau Amarelo, Recife",Fishing,L.F.,,,2 fingers severed by netted shark PROVOKED INCIDENT,N,Afternoon,"170-kg, 2.8 m shark",M. Szpilman,1991.04.24-PauAmarelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.24-PauAmarelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.24-PauAmarelo.pdf,1991.04.24,1991.04.24,3618,, +1991.04.16.b,16-Apr-91,1991,Provoked,USA,Maryland,Baltimore Aquarium,Diving,a senior aquarist,,,Minor injury by captive shark PROVOKED INCIDENT,N,09h55,7' female shark,"Washington Post, 4/20/1991",1991.04.16-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16-Kohler.pdf,1991.04.16.b,1991.04.16.b,3617,, +1991.04.16.a,16-Apr-91,1991,Unprovoked,USA,Florida,"South of Ponce Inlet, New Smyrna Beach, Volusia County","Surfing, collided with shark",David Kohler,M,22,Right thigh,N,11h00,1.2 m to 1.5 m [4' to 5'] shark,"Orlando Sentinel, 4/18/199, p.B3",1991.04.16.b-BaltimoreAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16.b-BaltimoreAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16.b-BaltimoreAquarium.pdf,1991.04.16.a,1991.04.16.a,3616,, +1991.04.03,03-Apr-91,1991,Unprovoked,USA,Hawaii,"One'ula Beach Park, 'Ewa Beach, O'ahu",Sitting on surfboard,Todd R. Wenke,M,,Deep lacerations to calf & ankle,N,17h30,"""Shark had a very large girth""","J. Borg, p.79; L. Taylor (1993), pp.110-111",1991.04.03-Wenke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.03-Wenke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.03-Wenke.pdf,1991.04.03,1991.04.03,3615,, +1991.03.03,03-Mar-91,1991,Unprovoked,AUSTRALIA,New South Wales,Bass Point,Scuba diving,John Puljak,M,18,Lacerations to arm & leg,N,,"Grey nurse shark, 2 m","Sunday Advertiser, 3/5/1991, p.2",1991.03.03-Puliak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.03.03-Puliak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.03.03-Puliak.pdf,1991.03.03,1991.03.03,3614,, +1991.02.24,24-Feb-91,1991,Unprovoked,USA,Oregon,"Neskowin, Tillamook County",Surfing,Tony Franciscone,M,38,Calf lacerated & board bitten,N,09h30,5.5 m [18'] white shark,"R. Collier, pp.122-123",1991.02.24-Franciscone_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.24-Franciscone_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.24-Franciscone_Collier.pdf,1991.02.24,1991.02.24,3613,, +1991.02.12,12-Feb-91,1991,Unprovoked,SOUTH AFRICA,Western Cape Province,Millers Point,Spearfishing,Edward Hayman,M,20,Foot & swim fin bitten,N,12h30,5.5 m [18'] white shark,"M. Levine, GSAF",1991.02.12-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.12-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.12-Hayman.pdf,1991.02.12,1991.02.12,3612,, +1991.01.19,19-Jan-91,1991,Unprovoked,AUSTRALIA,Queensland,Mermaid Waters,Swimming,Michael Sproule,M,35,"Hands, legs & buttocks lacerated",N,08h10,,"Sunday Mail, 1/20/1991, p.1",1991.01.19-Sproule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.19-Sproule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.19-Sproule.pdf,1991.01.19,1991.01.19,3611,, +1991.01.09,09-Jan-91,1991,Unprovoked,AUSTRALIA,Western Australia,Scarborough,Surf-skiing,Grant Kenny,M,,"No injury, shark brushed ski",N,,4 m shark,"Courier-Mail, 1/10/1991, p.5",1991.01.09-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.09-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.09-Kenny.pdf,1991.01.09,1991.01.09,3610,, +1991.01.00,Jan-91,1991,Unprovoked,AUSTRALIA,Queensland,Pelican Banks near Gladstone,Surfing (or sailboarding),Tony Hodgson,M,22,Survived,N,,2 m shark,"Courier-Mail, 3/25/1991, p.4",1991.01.00-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.00-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.00-Hodgson.pdf,1991.01.00,1991.01.00,3609,, +1990.12.26,26-Dec-90,1990,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,,male,M,,Survived,N,,,Unverified report,1990.12.26-NV-SouthAfrica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.12.26-NV-SouthAfrica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.12.26-NV-SouthAfrica.pdf,1990.12.26,1990.12.26,3608,, +1990.11.28,28-Nov-90,1990,Unprovoked,AUSTRALIA,Queensland,Nerang River,Swimming ,Michael Pignolet,M,26,"Abdomen, hip, leg & arm bitten",N,,1.5 m shark,"Herald Sun, 11/30/1990, p.34",1990.11.28-Pignolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.28-Pignolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.28-Pignolet.pdf,1990.11.28,1990.11.28,3607,, +1990.11.03,03-Nov-90,1990,Unprovoked,USA,California,"Monastery Beach, Carmel Bay, Monterey County",Scuba diving (but on surface),Eloise Tavares,F,,Leg bitten,N,15h00,4 m to 5 m [13' to 16.5'] white shark,"R. Collier, p.122",1990.11.03-Tavares_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.03-Tavares_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.03-Tavares_Collier.pdf,1990.11.03,1990.11.03,3606,, +1990.11.01,01-Nov-90,1990,Unprovoked,USA,Florida,"Spanish River Park Beach, Palm Beach County",Surfing,James Cornell,M,24,"Ear, shoulder, arm, wrist & ear injured",N,09h30,5' shark,"Palm Beach Post, 11/3/1990; Miami Herald, 11/2/1990 ",1990.11.01-Cornell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.01-Cornell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.01-Cornell.pdf,1990.11.01,1990.11.01,3605,, +1990.10.30.b,30-Oct-90,1990,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Robert Spratt,M,50,"Hand & wrist bitten, tooth fragments in wound",N,16h55,1.8 m [6'] shark ,"S. Jacobson, Orlando Sentinel, 11/1/1990, p. B1; St. Petersburg Times, 11/1/1990; Miami Herald, 11/1/1990",1990.10.30.b-RobertSpratt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.b-RobertSpratt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.b-RobertSpratt.pdf,1990.10.30.b,1990.10.30.b,3604,, +1990.10.30.a,30-Oct-90,1990,Unprovoked,USA,Florida,"Indialantic, Brevard County",Surfing,Mark Evans,M,18,Cuts on left foot ,N,15h30,,"S. Jacobson, Orlando Sentinel, 11/1/1990 ",1990.10.30.a-Mark Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.a-Mark Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.a-Mark Evans.pdf,1990.10.30.a,1990.10.30.a,3603,, +1990.10.27,27-Oct-90,1990,Unprovoked,AUSTRALIA,Queensland,Mermaid Waters,Swimming,Craig Coleman,M,26,Buttocks & hip bitten,N,20h30,,"Sunday Mail (QLD), 10/28/1990, p.1",1990.10.27-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.27-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.27-Coleman.pdf,1990.10.27,1990.10.27,3602,, +1990.10.25,25-Oct-90,1990,Unprovoked,AUSTRALIA,South Australia,Goolwa Beach,Surfing,male,M,,Lacerations to foot,N,10h30,,"The News, 10/26/1990",1990.10.25-Goolwa-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.25-Goolwa-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.25-Goolwa-Surfer.pdf,1990.10.25,1990.10.25,3601,, +1990.10.20,20-Oct-90,1990,Unprovoked,USA,Florida,"North end of County Beach, Palm Beach County",Surfing,Carl Demers,M,25,Wrist bitten,N,16h00,4' spinner shark,"Palm Beach Post, 10/22/1990 ",1990.10.20-Demers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.20-Demers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.20-Demers.pdf,1990.10.20,1990.10.20,3600,, +1990.10.15,15-Oct-90,1990,Unprovoked,USA,Hawaii,"Hanalei Point, Kaua'i",Surfing,Greg Filtzer,M,43,"No Injury, board bitten",N,15h00,"Tiger shark, 3.7 m [12'] ","G.. Filtzer; G. Ambrose, pp.8-17; J. Borg, p.64",1990.10.15-Filzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.15-Filzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.15-Filzer.pdf,1990.10.15,1990.10.15,3599,, +1990.10.12,12-Oct-90,1990,Unprovoked,USA,Florida,"Stuart Beach, Martin County",Surfing,Gabe Martino,M,19,Superficial injuries to left foot & ankle,N,12h30,1.8 m to 2.4 m [6' to 8'] shark,"S.L. Jackson, Palm Beach Post, 10/13/1990 ",1990.10.12-GabeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.12-GabeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.12-GabeMartino.pdf,1990.10.12,1990.10.12,3598,, +1990.09.15,15-Sep-90,1990,Unprovoked,SOUTH AFRICA,Western Cape Province,Oudekraal,Spearfishing,Nasri Gasant,M,26,Right hand lacerated,N,13h20,5 m [16.5'] white shark,"P. v.d. Walt; G. Cliff, NSB",1990.09.15-Gasant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.15-Gasant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.15-Gasant.pdf,1990.09.15,1990.09.15,3597,, +1990.09.08,08-Sep-90,1990,Unprovoked,USA,California,"Russian Gulch, Jenner, Sonoma County","Free diving / spearfishing, from paddleboard & floating on the surface",Rodney Orr,M,49,"Shark rammed & overturned paddleboard, knocking him into water & bit his head, lacerating his face & neck",N,13h00,White shark,R. Collier pp.120-121,1990.09.08-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.08-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.08-Orr_Collier.pdf,1990.09.08,1990.09.08,3596,, +1990.09.05,05-Sep-90,1990,Boat,USA,California,"Trinidad State Beach, Humboldt County",Kayaking,Matt Hinton,M,44,"No injury, kayak capsized",N,17h00,2.5 m to 3 m [8.25' to 10'] white shark,"R. Collier, pp118-119 ",1990.09.05 - Hinton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.05 - Hinton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.05 - Hinton_Collier.pdf,1990.09.05,1990.09.05,3595,, +1990.08.30,30-Aug-90,1990,Invalid,USA,Florida,"Juno Beach / North Palm Beach, Palm Beach County",SCUBA diving,Michael Mortimer,M,30,"Disappeared, body recovered with large bite on thigh",Y,,Shark involvement prior to death could not be determined,"Miami Herald, 9/6/1990; Orlando Sentinel, 9/7/1990, p.B4",1990.08.30-Mortimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.30-Mortimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.30-Mortimer.pdf,1990.08.30,1990.08.30,3594,, +1990.08.28,28-Aug-90,1990,Unprovoked,USA,California,"Trinidad Head, Humboldt County",Surfing,Rodney Swan,M,22,4 punctures on leg & board bitten,N,16h50,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, pp.116-118",1990.08.28-Swan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.28-Swan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.28-Swan_Collier.pdf,1990.08.28,1990.08.28,3593,, +1990.08.19.b,19-Aug-90,1990,Unprovoked,USA,Texas,"Mustang Island, Nueces County",Surfing,male,M,,Minor cuts to foot,N,,,"Dallas Morning News, 8//22/1990",1990.08.19.b-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.b-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.b-Surfer.pdf,1990.08.19.b,1990.08.19.b,3592,, +1990.08.19.a,19-Aug-90,1990,Unprovoked,USA,Texas,"Near Port Aransas, Nueces County",Wade fishing,Jimmy Allen,M,18,Minor injury,N,13h30,,"Dallas Morning News, 8//22/1990",1990.08.19.a-b-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.a-b-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.a-b-Allen.pdf,1990.08.19.a,1990.08.19.a,3591,, +1990.07.22,22-Jul-90,1990,Unprovoked,USA,Texas,"Mustang Island State Park, Nueces County",Wading,Barbara Green,F,53,10-inch laceration to right foot,N,Evening,,"Paris News, 7/23/1990",1990.07.22-Greem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.22-Greem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.22-Greem.pdf,1990.07.22,1990.07.22,3590,, +1990.07.08,08-Jul-90,1990,Unprovoked,USA,Florida,"Perdido Key near the Florida Panhandle, Escambia County",Surfing,Scott Holloway,M,17,Minor injury to left ankle & foot,N,,,"Orlando Sentinel, 7/8/1990, p.B.1",1990.07.08-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.08-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.08-Holloway.pdf,1990.07.08,1990.07.08,3589,, +1990.06.24,24-Jun-90,1990,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Scuba diving (but on surface),Monique Price,F,21,"FATAL, thigh bitten ",Y,15h45,"4.5 m [14'9""] white shark","A Gifford, G. Cliff, GSAF",1990.06.24 - Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.24 - Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.24 - Price.pdf,1990.06.24,1990.06.24,3588,, +1990.06.23,23-Jun-90,1990,Unprovoked,BAHAMAS,,Bimini,Spearfishing,Bruce Cease,M,38,Left forearm bitten,N,14h30,1.2 m to 1.5 m [4' to 5'] shark,"Miami Herald, 6/25/1990",1990.06.23-Cease.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.23-Cease.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.23-Cease.pdf,1990.06.23,1990.06.23,3587,, +1990.05.13,13-May-90,1990,Provoked,SOUTH AFRICA,KwaZulu-Natal,Protea Reef,Fishing,"skiboat Double One, occupants: Anton & Michelle Gets, Ray Whitaker, John & Lyn Palmer",,,"No injury to occupants, hooked shark freed itself, then rammed stern of boat PROVOKED INCIDENT",N,,"6 m, 600-kg shark","G. Charter, GSAF",1990.05.13-DoubleOne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.13-DoubleOne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.13-DoubleOne.pdf,1990.05.13,1990.05.13,3586,, +1990.05.10,10-May-90,1990,Unprovoked,AUSTRALIA,Queensland,Outer Barrier Reef near Port Douglas,Snorkeling, Sydney woman,F,30s,Lacerations,N,,2 m hammerhead,"Courier-Mail, 5/11/1990, p.1",1990.05.10.b-Sydney-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.b-Sydney-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.b-Sydney-woman.pdf,1990.05.10,1990.05.10,3585,, +1990.05.10,10-May-90,1990,Unprovoked,AUSTRALIA,Queensland,Outer Barrier Reef near Port Douglas,"Snorkeling, possibly holding a fish",German male,M,30s,Lacerations,N,,2 m hammerhead,"Courier-Mail, 5/11/1990, p.1",1990.05.10.a-German-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.a-German-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.a-German-male.pdf,1990.05.10,1990.05.10,3584,, +1990.05.06,06-May-90,1990,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cintsa East,Resting on surfboard,Richard Forrester,M,22,Thigh severely lacerated,N,12h00,"5.5 m [18'] white shark, identified by witnesses & tooth marks","R. Forrester, M. Levine, GSAF",1990.05.06-Forrester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.06-Forrester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.06-Forrester.pdf,1990.05.06,1990.05.06,3583,, +1990.04.14,14-Apr-90,1990,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape Recife,Lying on surfboard & paddling,Conrad Botha,M,23,Leg bitten,N,14h00,"2.3 m [7.5'] white shark, identified by M. Smale",M. Smale,1990.04.14-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.14-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.14-Botha.pdf,1990.04.14,1990.04.14,3582,, +1990.04.09,09-Apr-90,1990,Unprovoked,AUSTRALIA,Queensland,Greenmount Beach,Surfing,Mark Fleming,M,31,"Lacerations & abrasions, board bitten in half",N,05h40,"Tiger shark, 3 m ","Herald, 4/10/1990, p.4 & 4/11/1990, p.1",1990.04.09-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.09-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.09-Fleming.pdf,1990.04.09,1990.04.09,3581,, +1990.04.08,08-Apr-90,1990,Unprovoked,AUSTRALIA,Queensland,"Dingo Reef, 80 nm off Townsville",Free diving for trochus,Robert Bullen,M,37,Presumed FATAL,Y,,,"Courier-Mail, 4/12/1990, p.5",1990.04.08-Bullen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.08-Bullen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.08-Bullen.pdf,1990.04.08,1990.04.08,3580,, +1990.04.07,07-Apr-90,1990,Unprovoked,AUSTRALIA,Queensland,Fingal Beach,Surfing,"male, an American tourist",M,,"No injury, board broken in two",N,,3 m shark,"Herald, 4/10/1990, p.4",1990.04.07-AmericanTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.07-AmericanTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.07-AmericanTourist.pdf,1990.04.07,1990.04.07,3579,, +1990.04.06,06-Apr-90,1990,Unprovoked,AUSTRALIA,Queensland,Fingal Beach,Surfing,Tony Patton,M,29,"No injury, board bitten",N,,3 m shark,"Herald, 4/10/1990, p.4",1990.04.06-TonyPatton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.06-TonyPatton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.06-TonyPatton.pdf,1990.04.06,1990.04.06,3578,, +1990.04.01,01-Apr-90,1990,Unprovoked,USA,Hawaii,"Silver (Silva) Channels, Waialua, O'ahu",Sitting on surfboard,Everett Peacock,M,,"Ankle lacerated, lower left leg severely abraded ",N,<07h30,,"J. Borg, p.79; L. Taylor (1993), pp.110-111",1990.04.01-Peacock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.01-Peacock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.01-Peacock.pdf,1990.04.01,1990.04.01,3577,, +1990.03.24, 24-Mar-1990,1990,Unprovoked,FIJI,Laucala Island,,Swimming,Ola Stillman Rockefeller,M,30,Lacerations to right leg,N,,,"The News, 3/27/1990, p.6",1990.03.24-Rockefeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.24-Rockefeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.24-Rockefeller.pdf,1990.03.24,1990.03.24,3576,, +1990.03.05,05-Mar-90,1990,Unprovoked,REUNION,Sainte-Marie,Baie de la Mare,Surfing,Wagner Cataldo-Beugleu,M,,Survived,N,17h45,3 m [10'] bull shark,G. Van Grevelynghe,1990.03.05-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.05-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.05-Reunion.pdf,1990.03.05,1990.03.05,3575,, +1990.02.17,17-Feb-90,1990,Unprovoked,USA,Hawaii,"Mokapu, Kane'ohe Marine Air Corps Station, O'ahu",Scuba diving & spearfishing,Roy T. Tanaka,M,,Right arm severed FATAL,Y,21h30,Two sharks seen in vicinity: 2.4 m & 4.25 m [8' & 14'] TL,"J. Borg, pp.78-79; L. Taylor (1993) pp.110-111",1990.02.17-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.17-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.17-Tanaka.pdf,1990.02.17,1990.02.17,3574,, +1990.02.05,05-Feb-90,1990,Unprovoked,USA,Florida,"Monster Hole, Sebastian Inlet, Indian River County",Board sailing,Bruce Ferguson,M,33,Foot bitten,N,,,"Orlando Sentinel, Feb 9, 1990. pg. B.3",1990.02.05-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.05-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.05-Ferguson.pdf,1990.02.05,1990.02.05,3573,, +1990.01.12,12-Jan-90,1990,Unprovoked,USA,California,"Montera Beach, San Mateo County",Surfing (sitting on his board),Sean Sullivan,M,,"No injury, board bitten",N,,3 m to 4 m [10' to 13'] white shark,"J. McCosker & R.N. Lea; R. Collier, p. 116 ; A. MacCormick, p.67",1990.01.12-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.01.12-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.01.12-Sullivan_Collier.pdf,1990.01.12,1990.01.12,3572,, +1990.00.00,1990,1990,Unprovoked,USA,Florida,"Pensacola, Escambia County",Surfing,male,M,17,,UNKNOWN,,,,1990.00.00-NV-Pensacola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.00.00-NV-Pensacola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.00.00-NV-Pensacola.pdf,1990.00.00,1990.00.00,3571,, +1989.12.19,19-Dec-89,1989,Provoked,USA,Hawaii,"90 miles east of Hilo, Hawai'i",On board 51' fishing vessel One Ki,George Sohswel,M,,Left leg & foot bitten by shark brought onboard. PROVOKED INCIDENT,N,,,"J. Borg, p.78; L. Taylor (1993), pp.108-109",1989.12.19-Sohswel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.19-Sohswel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.19-Sohswel.pdf,1989.12.19,1989.12.19,3570,, +1989.12.03,03-Dec-89,1989,Unprovoked,AUSTRALIA,Northern Territory,Gove Peninsula near Darwin,,Ryan Johnson,M,17,"No details, ""recovering in Darwin Hospital""",UNKNOWN,,"Tiger shark, 2m ","Courier-Mail, 12/6/1989",1989.12.03-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.03-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.03-Johnson.pdf,1989.12.03,1989.12.03,3569,, +1989.12.02,02-Dec-89,1989,Invalid,AUSTRALIA,Queensland,Fraser Island,Swimming,Michael Preston,M,27,"Swept out to sea, feared taken by shark",Y,,,"The Advertiser, 12/4/1989, p.2",1989.12.02-Preston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.02-Preston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.02-Preston.pdf,1989.12.02,1989.12.02,3568,, +1989.11.22,22-Nov-89,1989,Unprovoked,AUSTRALIA,Victoria,Kilcunda,Surfing,Gary White,M,32,Thigh bitten,N,,White shark,"Courier-Mail, 11/24/1989, p.3; J. West, ASAF",1989.11.22-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.22-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.22-White.pdf,1989.11.22,1989.11.22,3567,, +1989.11.18,18-Nov-89,1989,Unprovoked,SOUTH AFRICA,Western Cape Province,Melkbosstrand,Free diving & spearfishing,Gerjo Van Niekerk,M,29,FATAL,Y,12h05,White shark,"M. Levine, GSAF",1989.11.18-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.18-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.18-VanNiekerk.pdf,1989.11.18,1989.11.18,3566,, +1989.11.12,12-Nov-89,1989,Invalid,USA,Hawaii,"Ehukai Beach Park, Sunset Beach, O'ahu","Wading, knocked down & swept away by large waves",Edward Malek,M,,Lower porton of body recovered 3 days later. Note: rare sighting of shark made at same beach on 11-5-1989 ,Y,18h00,,"J. Borg, p.78; L. Taylor (1993), pp.108-109",1989.11.12-Malek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.12-Malek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.12-Malek.pdf,1989.11.12,1989.11.12,3565,, +1989.11.02,02-Nov-89,1989,Unprovoked,AUSTRALIA,Queensland,Mermaid Waters,Swimming in canal,Kristoffer Fredriksen,M,10,Left ankle broken & lacerated,N,,"2 m shark, possibly a bronze whaler","Courier-Mail, 11/7/1989, p.3",1989.11.02-Fredriksen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.02-Fredriksen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.02-Fredriksen.pdf,1989.11.02,1989.11.02,3564,, +1989.10.29.R,Reported 29-Oct-1989,1989,Unprovoked,AUSTRALIA,Northern Territory,Edith Falls,Swimming,Christine Kaesler,F,31,Puncture marks to right calf,N,,,"Sunday Mail, 10/29/1989",1989.10.29.R-Kaesler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.29.R-Kaesler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.29.R-Kaesler.pdf,1989.10.29.R,1989.10.29.R,3563,, +1989.10.22,22-Oct-89,1989,Unprovoked,AUSTRALIA,Tasmania,Shelly Point ,Surfing,Steven Jillet,M,17,"No injury, board bitten",N,14h20,2.7 m [9'] white shark,"Hobart Mercury, 10/23/1989, p.1; C. Black, pp 163-167",1989.10.22-Jillet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.22-Jillet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.22-Jillet.pdf,1989.10.22,1989.10.22,3562,, +1989.10.14,14-Oct-89,1989,Invalid,USA,Hawaii,"Kahe Point, O'ahu",Scuba diving,"Ray Mehl, Jr.",M,,"Disappeared 15 minutes into shallow dive. Decapitated body minus arm found by divers the following morning, then shark appeared and consumed most of remains",Y,16h30,Large tiger shark,"Washington Post, 10/17/1989, J. Borg, pp.77-78; L. Taylor (1993), pp.108-109",1989.10.14-Mehl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.14-Mehl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.14-Mehl.pdf,1989.10.14,1989.10.14,3561,, +1989.10.11,11-Oct-89,1989,Unprovoked,USA,Texas,Surfside Beach,Surfing,Jason Largent,M,12,Foot & leg bitten,N,Evening,4' shark,"Austin American Statesman, 10/13/1989, p.B6",1989.10.11-Largent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.11-Largent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.11-Largent.pdf,1989.10.11,1989.10.11,3560,, +1989.10.08,08-Oct-89,1989,Invalid,USA,North Carolina,"Between Wrightsville Beach & Carolina Beach, New Hanover County",Diving,Doug Nunnally,M,49,FATAL,Y,Late afternoon,Tiger shark,"C. Creswell, GSAF & Search & Rescue diver, New Hanover County; F. Schwartz ",1989.10.08-Nunnally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.08-Nunnally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.08-Nunnally.pdf,1989.10.08,1989.10.08,3559,, +1989.10.01,01-Oct-89,1989,Unprovoked,AUSTRALIA,Victoria,"Surfers Point, Phillip Island",Surfing,John Benson,M,,No details,UNKNOWN,,White shark,"J. West, ASAF",1989.10.01-Benson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.01-Benson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.01-Benson.pdf,1989.10.01,1989.10.01,3558,, +1989.09.17,17-Sep-89,1989,Unprovoked,SOUTH AFRICA,Western Cape Province,"Smitswinkel, False Bay",Free diving,Gerjo Van Niekerk,M,29,Chest lacerated,N,14h30,"White shark, identified by tooth pattern","G.v.Niekerk, C. Walker, M.Levine, GSAF",1989.09.17-GerjoVanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.17-GerjoVanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.17-GerjoVanNiekerk.pdf,1989.09.17,1989.09.17,3557,, +1989.09.13,13-Sep-89,1989,Provoked,USA,Florida,"Gulf of Mexico, 22 miles from Pensacola","Fishing, stepped on hooked shark's head",Charles N. Swafford,M,51,Bitten by hooked shark PROVOKED INCIDENT,N,Afternoon,150-lb shark,"Miami Herald, 9/15/1989",1989.09.13-Swafford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.13-Swafford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.13-Swafford.pdf,1989.09.13,1989.09.13,3556,, +1989.09.10,10-Sep-89,1989,Boat,USA,California,"Off Palos Verdes Estates, Los Angeles",Observing a shark feeding on a carcass of a humpback whale,11.6 m fibreglass boat. Occupants: Tony DeCriston & Dan Fink,,,No injury to occupants. Shark bit boat's swim step & repeatedly pushed the boat away whenever if came within 4 to 5 m of the whale carcass,N,,4 to 5 m white shark,R. Collier,1989.09.10-DeCristo_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.10-DeCristo_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.10-DeCristo_Collier.pdf,1989.09.10,1989.09.10,3555,, +1989.09.09.b,09-Sep-89,1989,Unprovoked,USA,California,"Southeast Farallon Island, Farallon Islands",Hookah diving for abalone (descending),Mark Tisserand,M,38,Leg bitten,N,12h30,4 m to 5 m [13' to 16.5'] white shark,"R. Collier, pp.110-112 ",1989.09.09-Tisserand_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09-Tisserand_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09-Tisserand_Collier.pdf,1989.09.09.b,1989.09.09.b,3554,, +1989.09.09.a,09-Sep-89,1989,Unprovoked,USA,North Carolina,"Salvo, Dare County",Surfing,Robert Ballard,M,31,Non-fatal,N,,Sandbar shark,"C. Creswell, GSAF",1989.09.09.a-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09.a-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09.a-Ballard.pdf,1989.09.09.a,1989.09.09.a,3553,, +1989.09.03,03-Sep-89,1989,Provoked,USA,California,24 km off Santa Catalina Island in the Channel Islands,Filming 5' blue shark,Larry Stroup,M,46,Hand & both arms bitten PROVOKED INCIDENT,N,,Blue Shark ,"R. Collier, p. xxvi; Orlando Sentinel, 9/6/1989, p.3A",1989.09.03-Stroup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.03-Stroup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.03-Stroup.pdf,1989.09.03,1989.09.03,3552,, +1989.08.29,29-Aug-89,1989,Provoked,AUSTRALIA,Queensland,SeaWorld Theme Park,Feeding fish,Mike Richardson,M,30,Left leg bitten by captive shark PROVOKED INCIDENT,N,Afternoon,Grey nurse shark,"The Canberra Times, 9/1/1989",1989.08.29-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.29-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.29-Richardson.pdf,1989.08.29,1989.08.29,3551,, +1989.08.22.b,22-Aug-89,1989,Unprovoked,USA,Florida,"St Augustine, St Johns County",Swimming,Anthony McKnight,M,21,3 wounds on left hand,N,,1.2 m [4'] shark,"Orlando Sentinel, 8/24/1989. p.B1",1989.08.22.b-McKnight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.b-McKnight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.b-McKnight.pdf,1989.08.22.b,1989.08.22.b,3550,, +1989.08.22.a,22-Aug-89,1989,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surfing,Niko von Broembsen,M,21,Multiple Injuries,N,10h45,>3.4 m [11'] white shark,"N.v.Broembsen; M. Levine, GSAF",1989.08.22.a-vonBroembsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.a-vonBroembsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.a-vonBroembsen.pdf,1989.08.22.a,1989.08.22.a,3549,, +1989.08.13,13-Aug-89,1989,Unprovoked,AUSTRALIA,New South Wales,Lennox Head,Surfing,Michael Guy,M,17,"No injury, shark took chunk out of surfboard",N,06h30,"Bronze whaler shark, 3 m [10'] ","Sydney Morning Herald, 8/14/1989, p.3; Courier Mail, 8/19/1989, p.2",1989.08.13-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.13-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.13-Guy.pdf,1989.08.13,1989.08.13,3548,, +1989.08.09,09-Aug-89,1989,Unprovoked,BAHAMAS,Great Exuma Island,Highborn Cay,Spearfishing,Judy St. Clair,F,31,Severe hand and arm injuries; right hand surgically amputated,N,,,"Orlando Sentinel, 8/10/1989, pp B3 & B5; Palm Beach Post, 8/15/1989 +",1989.08.09-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.09-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.09-StClair.pdf,1989.08.09,1989.08.09,3547,, +1989.08.06.R,Reported 06-Aug-1989,1989,Provoked,AUSTRALIA,Queensland,Moreton Bay,Fishing for sharks,Vic Hislop,M,41,Laceration to arm PROVOKED INCIDENT,N,,3.5 m white shark,"Sunday Mail, 8/6/1989",1989.08.06.R-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.06.R-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.06.R-Hislop.pdf,1989.08.06.R,1989.08.06.R,3546,, +1989.07.27,27-Jul-89,1969,Invalid,BERMUDA,,,Scuba diving,Russian male,M,35,FATAL,,,Shark involvement suspected but not confirmed,"LA Times, 7/28/1989",1989.07.27-SovietDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.27-SovietDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.27-SovietDiver.pdf,1989.07.27,1989.07.27,3545,, +1989.07.20,20-Jul-89,1989,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Surfing,Edward Razzano,M,34,Torso bitten,N,10h35,2.5 m [8.25'] white shark," E. Razzano & R. Joseph; M. Levine, GSAF",1989.07.20-Razzano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.20-Razzano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.20-Razzano.pdf,1989.07.20,1989.07.20,3544,, +1989.07.19,19-Jul-89,1989,Unprovoked,REUNION,Sainte-Suzanne,Temple Tamoule,Surfing,Bruno Giraud ,M,,FATAL,Y,17h00 Sunset,,"Clicanoo, le journal de l'Ile de la Runion",1989.07.19-Giraud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.19-Giraud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.19-Giraud.pdf,1989.07.19,1989.07.19,3543,, +1989.07.14,14-Jul-89,1989,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,John O'Brien,M,16,5-inch gash on left leg,N,Afternoon,,"Orlando Sentinel, 7/17/1989",1989.07.14-JohnO'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.14-JohnO'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.14-JohnO'Brien.pdf,1989.07.14,1989.07.14,3542,, +1989.07.07,07-Jul-89,1989,Unprovoked,USA,Texas,"Sargent Beach, Matagorda County",Playing ,Rene Richbourg,F,9,Leg bitten,N,,4' shark,"Austin American Statesman, 7/11/1989, B4 & 10/13/1989, p.B6",1989.07.07-Richbourg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.07-Richbourg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.07-Richbourg.pdf,1989.07.07,1989.07.07,3541,, +1989.06.29,29-Jun-89,1989,Unprovoked,USA,Hawaii,"Anahola, Kaua'i",Fell off surfboard 20' from shore,Anthony Paden,M,,Foot & ankle severely bitten,N,,,"J. Borg, p.77; L. Taylor (1993), pp.108-109",1989.06.29-Paden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.29-Paden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.29-Paden.pdf,1989.06.29,1989.06.29,3540,, +1989.06.17,17-Jun-89,1989,Unprovoked,USA,Louisiana,40 miles off Cocodrie,Spearfishing,Carl Loe,M,45,Puncture wounds & lacerations to both legs,N,,1.8 m [6'] sandtiger shark,"The Advocate (Baton Rouge, La.), 6/21/1989",1989.06.17-Loe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.17-Loe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.17-Loe.pdf,1989.06.17,1989.06.17,3539,, +1989.06.06,06-Jun-89,1989,Unprovoked,ITALY,Tuscany,"Marinella, between Punta Blanca & Marine del Carrara ",Windsurfing (urinating on his board),Ezio Bocedi,M,,Upper right thigh bitten,N,15h30,3 m [10'] white shark,"I. Fergusson, MEDSAF",1989.06.06-Bocedi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.06-Bocedi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.06-Bocedi.pdf,1989.06.06,1989.06.06,3538,, +1989.06.05,05-Jun-89,1989,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Surfing,Roniel Jacobs,M,16,"No injury, board bitten",N,16h15,3 m [10'] white shark,"R. Jacobs, R. Joseph; M. Levine, GSAF ",1989.06.05-Jacobs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.05-Jacobs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.05-Jacobs.pdf,1989.06.05,1989.06.05,3537,, +1989.06.03,03-Jun-89,1989,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie,Free diving,Leon Krouse,M,28,Forearm bitten,N,15h30,2.5 m [8.25'] white shark,"M. Levine, L. Krouse, P. Sachs, GSAF",1989.06.03-Krouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.03-Krouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.03-Krouse.pdf,1989.06.03,1989.06.03,3536,, +1989.06.00,Jun-89,1989,Invalid,JAPAN,Sea of Japan,,,male,M,,"Doubtful incident, needs investigation",N,,,K. Nakaya,1989.06.00-Sea-of-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.00-Sea-of-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.00-Sea-of-Japan.pdf,1989.06.00,1989.06.00,3535,, +1989.04.23,23-Apr-89,1989,Unprovoked,USA,Florida,"Loggerhead Park, Juno Beach, Palm Beach County",Swimming,Scott Scherger,M,19,Right calf bitten,N,,1.2 m [4'] shark,"Palm Beach Post, April 27, 1989 ",1989.04.23-Scherger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.23-Scherger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.23-Scherger.pdf,1989.04.23,1989.04.23,3534,, +1989.04.12,12-Apr-89,1989,Unprovoked,USA,Washington,"Pacific Beach, Grays Harbor County",Surfing (lying prone on his board),Robert Harms,M,,Forearm bitten,N,10h45,White shark,"R. Collier, p.110; J. McCosker & R.N. Lea ",1989.04.12-Harms_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.12-Harms_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.12-Harms_Collier.pdf,1989.04.12,1989.04.12,3533,, +1989.04.09,09-Apr-89,1989,Boat,USA,California,"Monterey Bay, Monterey County",,10.7 m boat. Occupants: John Capella & friends,,,No injury to occupants. Shark rammed boat 4 times,N,10h35,5 m to 7 m white shark,R. Collier,1989.04.09-Capella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.09-Capella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.09-Capella.pdf,1989.04.09,1989.04.09,3532,, +1989.04.03,03-Apr-89,1989,Unprovoked,USA,Hawaii,"Ho'okipa Beach, Pa'ia, Maui",Paddling on surfboard,Sam McLain,M,,Calf lacerated,N,,,"J. Borg, p.77; L. Taylor (1993), pp.108-109",1989.04.03-McLain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.03-McLain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.03-McLain.pdf,1989.04.03,1989.04.03,3531,, +1989.04.00,Apr-89,1989,Unprovoked,USA,Hawaii,"Kekaha Beach, Kaua'i",Paddling on surfboard,William P. Allen,M,,"Board rammed by shark, skegs knocked loose & 5' strip of fiberglass torn off, thigh scratched by sharks teeth",N,,,"J. Borg, p.77; L. Taylor (1993), pp.108-109",1989.04.00-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.00-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.00-Allen.pdf,1989.04.00,1989.04.00,3530,, +1989.03.09,09-Mar-89,1989,Unprovoked,AUSTRALIA,South Australia,"Waitpinga Beach, near Victor Harbor, Encounter Bay",Surfing,Matthew Foale,M,27,Thigh bitten FATAL,Y,20h15,2 m [6.75'] white shark,"Courier-Mail, 3/11/1989, p.5; J. West, ASAF",1989.03.09-Foale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.09-Foale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.09-Foale.pdf,1989.03.09,1989.03.09,3529,, +1989.03.04,04-Mar-89,1989,Boat,AUSTRALIA,Western Australia,Near Broome in Roebuck Bay,Kayaking,Kim Courtenay ,M,,"No injury, but the kayak was bitten by the shark",N,,"Tiger shark, 3.5 m ","K. Courtenay; T. Peake, GSAF",1989.03.04-Courtenay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.04-Courtenay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.04-Courtenay.pdf,1989.03.04,1989.03.04,3528,, +1989.02.19,19-Feb-89,1989,Provoked,SOUTH AFRICA,Western Cape Province,,Fishing,Kobus de Jager,M,,Thigh lacerated & abraded PROVOKED INCIDENT,N,,3 m [10'] gaffed shark,"Sunday Times, 2/19/1989",1989.02.19.R-DeJager.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.19.R-DeJager.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.19.R-DeJager.pdf,1989.02.19,1989.02.19,3527,, +1989.02.15,15-Feb-89,1989,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Windsurfing,Nico Abel,M,26,Foot bruised & minor lacerations,N,13h30,,"G. Cliff, NSB",1989.02.15-Abel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.15-Abel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.15-Abel.pdf,1989.02.15,1989.02.15,3526,, +1989.02.02,02-Feb-89,1989,Unprovoked,ITALY,Tyrrhenian Sea,"Golfo di Baratti, near Piombino (Tuscany)","Scuba diving, but swimming on surface",Luciano Costanzo,M,47,FATAL. His body not recovered,Y,10h25,6 m [20'] white shark,"A. De Maddalena; Cappelletti (1989a), Bertuccelli (1989), Giudici & Fino (1989), Biagi (1989), Albertarelli (1989); I. Fergusson, MEDSA; C. Moore, GSAF",1989.02.02-Constanzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.02-Constanzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.02-Constanzo.pdf,1989.02.02,1989.02.02,3525,, +1989.01.26.b,26-Jan-89,1989,Invalid,USA,California,"Latigo Point / Paradise Cove, west of Malibu, Los Angeles County",Kayaking,Roy Jeffrey Stoddard,M,24,Reported by media as shark attack but forensic evidence indicated the kayaker died prior to any shark involvement,Y,10h15,5 m [16.5'] white shark,"R. Collier, pp.106-109",1989.01.26.b-Stoddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.b-Stoddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.b-Stoddard.pdf,1989.01.26.b,1989.01.26.b,3524,, +1989.01.26.a,26-Jan-89,1989,Unprovoked,USA,California,"Latigo Point / Paradise Cove,west of Malibu, Los Angeles County",Kayaking,Tamara McAllister,F,24,"FATAL, thigh bitten, hands lacerated ",Y,10h15,5 m [16.5'] white shark,"R. Collier, pp.106-109",1989.01.26.a-McAllister_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.a-McAllister_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.a-McAllister_Collier.pdf,1989.01.26.a,1989.01.26.a,3523,, +1989.01.20.b,20-Jan-89,1989,Unprovoked,USA,Hawaii,"Waialua Beach, Moloka'i",Body boarding,Earl Dunnam,M,10,Foot bitten,N,,1.8 m to 2.4 m [6' to 8'] hammerhead shark,"J. Borg, p.77",1989.01.20.b-Dunnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.b-Dunnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.b-Dunnam.pdf,1989.01.20.b,1989.01.20.b,3522,, +1989.01.20.a,20-Jan-89,1989,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Lifesaving drill,Sudesh Sarjoo,M,19,Thigh bitten,N,18h00,,"S. Sarjoo, M. Levine, G. Thompson, G. Charter, M. Anderson-Read, G. Cliff & S. Dudley, GSAF",1989.01.20.a-Sarjoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.a-Sarjoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.a-Sarjoo.pdf,1989.01.20.a,1989.01.20.a,3521,, +1989.01.08,08-Jan-89,1989,Unprovoked,USA,Hawaii,"Wailua, Kaua'i",Swimming in strong current with 3 others when he disappeared,Ken Ahlstrand,M,,"Lower part of body found 6 days later, x-rays revealed teeth marks in femur & tibia",Y,,,"J. Borg, p.77; L. Taylor (1993), pp.106-107",1989.01.08-Ahlstrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.08-Ahlstrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.08-Ahlstrand.pdf,1989.01.08,1989.01.08,3520,, +1989.01.03,03-Jan-89,1989,Unprovoked,AUSTRALIA,New South Wales,"Half Tide Beach, Evans Head",Surfing with dolphins,Adam Maguire (McGuire),M,17,"Abdomen lacerated, surfboard holed",N,17h15,"Tiger shark, 4 m [13'] ","Courier Mail, 1/4/1989, p.1; Herald, 1-4/1989, p.1; Miami Herald, 1/5/1989; A. Sharpe, p.87",1989.01.03-McGuire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.03-McGuire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.03-McGuire.pdf,1989.01.03,1989.01.03,3519,, +1989.00.00.b,1989,1989,Unprovoked,PAPUA NEW GUINEA,New Ireland,Kavieng,"Scuba diving, hand feeding sharks",Dinah Halstead,F,,Thigh & calf bitten,N,,7' silvertip shark,"S. Waterman, GSAF",1989.00.00.b-Halstead,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00.b-Halstead,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00.b-Halstead,1989.00.00.b,1989.00.00.b,3518,, +1989.00.00.a,1989,1989,Unprovoked,USA,Virginia,"Coral Gardens Reef, 6 miles SSE of Chicoteague Inlet",Spearfishing using scuba & trailing a string of bleeding fish,male,M,,"No injury, shark grabbed his fish and chased him to the boat",N,,,J. Musick,1989.00.00.a-Virginia-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00.a-Virginia-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00-Virginia-spearfisherman.pdf,1989.00.00.a,1989.00.00.a,3517,, +1988.12.15,15-Dec-88,1988,Unprovoked,CHILE,Valpariso Province,Valpariso,Skindiving,Juan Tapia-Avalos,M,,FATAL,Y,,16' white shark,J. McCosker & A. Engana,1988.12.15-Avalos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.12.15-Avalos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.12.15-Avalos.pdf,1988.12.15,1988.12.15,3516,, +1988.11.08,08-Nov-88,1988,Sea Disaster,AUSTRALIA,Queensland,"Off North Keppel Island, off Yeppoon","The Christie V sank on 11/6/1988, survivors were adrift on a dinghy",Bruce Coucom,M,17,"FATAL When James Coucom, the lone survivor, was rescued, ""2 sharks were pounding on the dinghy""",Y,Early morning,,"H. Edwards, pp.115-116",1988.11.08-BruceCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.08-BruceCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.08-BruceCoucom.pdf,1988.11.08,1988.11.08,3515,, +1988.11.07,07-Nov-88,1988,Sea Disaster,AUSTRALIA,Queensland,"Off North Keppel Island, off Yeppoon","The Christie V sank on 11/6/1988, survivors were adrift on a dinghy",Cedric Coucom,M,62,FATAL,Y,Nightfall,,"H. Edwards, pp.115-116",1988.11.07-CedricCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.07-CedricCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.07-CedricCoucom.pdf,1988.11.07,1988.11.07,3514,, +1988.10.24,24-Oct-88,1988,Sea Disaster,PHILIPPINES,Viscayan Sea,,The MV Dona Marilyn sank in Typhoon Unsang with the loss of 389 lives,,,,"According to survivors, many people were taken by sharks",Y,,,"Straits Times, 11/5/1988",1988.10.24-DonaMarilyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.24-DonaMarilyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.24-DonaMarilyn.pdf,1988.10.24,1988.10.24,3513,, +1988.10.23,23-Oct-88,1988,Unprovoked,USA,Oregon,"Indian Beach, Ecola State Park, just north of Cannon Beach, Clatsop County ",Surfing (sitting on his board),Wyndham Kapan,M,21,Leg bitten & femur fractured,N,17h30,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.104-106",1988.10.23-Kapan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.23-Kapan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.23-Kapan_Collier.pdf,1988.10.23,1988.10.23,3512,, +1988.10.22,22-Oct-88,1988,Unprovoked,AUSTRALIA,Victoria,Phillip Island,Surfing,John Wonham,M,38,Lacerations to right leg,N,,7' shark,"Miami Herald, 10/26/1988",1988.10.22-Wonham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.22-Wonham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.22-Wonham.pdf,1988.10.22,1988.10.22,3511,, +1988.10.14,14-Oct-88,1988,Unprovoked,USA,Florida,"Boca Raton, Palm Beach County",Surfing,Aaron Shulman,M,15,Lacerations to left thigh,N,,6' shark,"Boca Raton News, 10/15/1988",1988.10.14-Shulman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.14-Shulman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.14-Shulman.pdf,1988.10.14,1988.10.14,3510,, +1988.10.11,11-Oct-88,1988,Unprovoked,USA,Florida,"Fort Pierce, St. Lucie County ",Surfing,John L. Goodson,M,30,Left leg lacerated,N,X,1.2 m to 1.5 m [4' to 5'] shark,"St. Petersburg Times 10/13/1988, p.2B",1988.10.11-Goodson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.11-Goodson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.11-Goodson.pdf,1988.10.11,1988.10.11,3509,, +1988.10.10,10-Oct-88,1988,Unprovoked,USA,Florida,"Playalinda, Brevard County",Surfing,Patrick Turowski,M,23,Hand lacerated,N,18h30,1.2 m to 1.5 m [4' to 5'] shark,"G. Taylor, Orlando Sentinel, 10/12/1988, p.D3",1988.10.10-Turowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.10-Turowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.10-Turowski.pdf,1988.10.10,1988.10.10,3508,, +1988.10.06,06-Oct-88,1988,Unprovoked,AUSTRALIA,South Australia,Moama Beach,Surfing,Murray Taylor,M,15,Lower right leg lacerated,N,Afternoon,,"Herald, 10/7/1988, p.5; Hobart Mercury, 10/8/1988, p.3",1988.10.06-MurrayTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.06-MurrayTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.06-MurrayTaylor.pdf,1988.10.06,1988.10.06,3507,, +1988.10.00,Oct-88,1988,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Wading,Sally Jo Scott,F,23,Leg lacerated,N,,1.2 m [4'] shark,C.L. Call,1988.10.00-SallyJoScott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.00-SallyJoScott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.00-SallyJoScott.pdf,1988.10.00,1988.10.00,3506,, +1988.09.28,28-Sep-88,1988,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Garvin,M,21,Lacerations to foot,N,Afternoon,5' shark,"News-Journal, 9/29/1988",1988.09.28-Garvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.28-Garvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.28-Garvin.pdf,1988.09.28,1988.09.28,3505,, +1988.09.13.b,13-Sep-88,1988,Unprovoked,USA,Florida,"Shell Island Panama City Beach, Bay County",Walking,Dennis & Ann Hadden,F,,Dennis' hand injured; Ann's right forearm bitten,N,15h45,1.8 m [6'] shark,"M. Womack, News Herald; Orlando Sentinel, 9/18/1988, p. B4",1988.09.13.b-Hadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.b-Hadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.b-Hadden.pdf,1988.09.13.b,1988.09.13.b,3504,, +1988.09.13.a,13-Sep-88,1988,Unprovoked,USA,Florida,"Shell Island Panama City Beach, Bay County",Snorkeling,John P. Martin ,M,38,"FATAL, thigh & hand lacerated",Y,15h00,3 m [10'] bull shark,"M. Womack, News Herald",1988.09.13.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.a-Martin.pdf,1988.09.13.a,1988.09.13.a,3503,, +1988.08.22.b,22-Aug-88,1988,Provoked,USA,Louisiana,New Orleans,Diving in Sharkey's Reef restaurants aquarium,Wiley Beevers,M,,Arm bitten by captive shark PROVOKED INCIDENT,N,,"Tiger shark, 1.8 m [6']","New Orleans Times-Picayune, 8/23/1988; Orlando Sentinel. Orlando, Fla.: Aug 24, 1988. p.. A.8; Miami Herald, 8/24/1988",1988.08.22.b-Beevers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.b-Beevers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.b-Beevers.pdf,1988.08.22.b,1988.08.22.b,3502,, +1988.08.22.a,22-Aug-88,1988,Unprovoked,ITALY,Manfredonia ,Ippocampo,,male,M,16,Survived,N,,,"C. Moore, GSAF",1988.08.22.a-Ippocampo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.a-Ippocampo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.a-Ippocampo.pdf,1988.08.22.a,1988.08.22.a,3501,, +1988.08.19,19-Aug-88,1988,Unprovoked,JAPAN,Tokyo Prefecture,Ogasawara Islands,,male,M,,Survived,N,,,K. Nakaya,1988.08.19-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.19-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.19-Japan.pdf,1988.08.19,1988.08.19,3500,, +1988.08.11,11-Aug-88,1988,Unprovoked,USA,California,"Klamath River, Del Norte County",Surfing,Carl Lafazio,M,27,Thigh bitten,N,09h30,2.4 m to 3 m [8' to 10'] white shark,"R. Collier, pp.102-104",1988.08.11-LaFazio_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.11-LaFazio_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.11-LaFazio_Collier.pdf,1988.08.11,1988.08.11,3499,, +1988.07.23,23-Jul-88,1988,Unprovoked,BAHAMAS,,,Free diving & spearfishing ,Kenny Isham,M,,Hand bitten,N,,2 m to 2.5 m shark,"E. Pace, FSAF",1988.07.23-Isham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.23-Isham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.23-Isham.pdf,1988.07.23,1988.07.23,3498,, +1988.07.19,19-Jul-88,1988,Unprovoked,BAHAMAS,,,Spearfishing on scuba,Larry Press,M,28,Cheek bitten,N,,1.5 m [5'] Caribbean reef shark,"E. Pace, FSAF",1988.07.19-Press.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.19-Press.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.19-Press.pdf,1988.07.19,1988.07.19,3497,, +1988.07.17,17-Jul-88,1988,Unprovoked,BAHAMAS,,,Diving,Doug Perrine,M,35,Right palm lacerated,N,,1.5 m [5'] Caribbean reef shark,"E. Pace, FSAF",1988.07.17-Perrine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.17-Perrine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.17-Perrine.pdf,1988.07.17,1988.07.17,3496,, +1988.07.11,11-Jul-88,1988,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Swimming,female,F,15,Punctures & deep scratches to foot & buttock,N,10h30,,"Miami Herald, 7/12/1988, p.1B",1988.07.11-female_Jensen Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.11-female_Jensen Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.11-female_Jensen Beach.pdf,1988.07.11,1988.07.11,3495,, +1988.07.04.b,04-Jul-88,1988,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,Ray Bourgeois,M,37,Punctures to lower left leg & foot,N,Afternoon,,"News-Journal, 7/5/1988",1988.07.04.b-Bourgeois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.b-Bourgeois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.b-Bourgeois.pdf,1988.07.04.b,1988.07.04.b,3494,, +1988.07.04.a,04-Jul-88,1988,Unprovoked,BAHAMAS,,,Snorkeling,Lowell Nickerson,M,,Leg lacerated,N,,1.5 m [5'] shark,"E. Pace, GSAF",1988.07.04.a-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.a-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.a-Nickerson.pdf,1988.07.04.a,1988.07.04.a,3493,, +1988.07.00,Jul-88,1988,Unprovoked,BAHAMAS,,,Spearfishing,Peter Albury,M,,Lacerations to arm,N,,,"E. Pace, GSAF",1988.07.00-Albury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.00-Albury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.00-Albury.pdf,1988.07.00,1988.07.00,3492,, +1988.06.19,16-Jun-88,1988,Unprovoked,SOUTH AFRICA,Western Cape Province,Sculphoek,Spearfishing,Willie van Rensberg,M,36,Left arm lacerated,N,09h45,White shark,"W.v.Rensberg, M. Levine, GSAF",1988.06.19-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.19-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.19-VanRensburg.pdf,1988.06.19,1988.06.19,3491,, +1988.06.16,16-Jun-88,1988,Unprovoked,USA,North Carolina,"Ocracoke, Hyde County",Scuba diving,male,M,42,Survived,N,,Sandtiger shark,"C. Creswell, GSAF",1988.06.16-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.16-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.16-diver.pdf,1988.06.16,1988.06.16,3490,, +1988.06.09,09-Jun-88,1988,Unprovoked,USA,South Carolina,"Sea Pines Beach Club, Hilton Head, Beaufort County",Sittting in water with his child,Mark Dotter,M,37,Left leg bitten,N,16h00,Sand shark?,"Charlotte Observer, 6/11/1988, p.1B",1988.06.09-Dotter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.09-Dotter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.09-Dotter.pdf,1988.06.09,1988.06.09,3489,, +1988.06.05,05-Jun-88,1988,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Jason Jones,M,12,Four lacerations to his ankle,N,12h00,,"Orlando Sentinel, 6/7/1988, p.D2",1988.06.05-JasonJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.05-JasonJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.05-JasonJones.pdf,1988.06.05,1988.06.05,3488,, +1988.06.01,01-Jun-88,1988,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Etienne DeCora,M,25,Cuts to right foot and ankle,N,08h57,1.8 m to 2.4 m [6' to 8'] shark,"Orlando Sentinel, 6/2/1988, p.B2; P. LaMee, Orlando Sentinel, 6/3/1992, p.D2 ",1988.06.01-DeCora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.01-DeCora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.01-DeCora.pdf,1988.06.01,1988.06.01,3487,, +1988.05.27,27-May-88,1988,Unprovoked,SOUTH KOREA,,,Shell diving,Ko Bong-ae (female),F,38,FATAL,Y,,,Y. Choi & K. Nakaya,1988.05.27-Ko Bong-se.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.27-Ko Bong-se.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.27-Ko Bong-se.pdf,1988.05.27,1988.05.27,3486,, +1988.05.10,10-May-88,1988,Unprovoked,USA,Florida,"Paradise Beach Park, Brevard County",Surfing,Philip Barone,M,31,Left foot bitten,N,18h30,,"M. Vosburgh, Orlando Sentinel, 5/12/1988, p.D.6",1988.05.10-Barone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.10-Barone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.10-Barone.pdf,1988.05.10,1988.05.10,3485,, +1988.05.04,04-May-88,1988,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing / treading water,Lee Rhoades,M,29,Left leg & right foot bitten,N,11h45,,"Orlando Sentinel, 5/6/1988, D.2",1988.05.04-Rhoades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.04-Rhoades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.04-Rhoades.pdf,1988.05.04,1988.05.04,3484,, +1988.04.28,28-Apr-88,1988,Unprovoked,REUNION,Saint-Louis,Embouchure de l'tang du Gol,pcheur de bichiques,Jean-Felix Taochyn,M,,FATAL,Y,17h30,,G. Van Grevelynghe,1988.04.28-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.28-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.28-Reunion.pdf,1988.04.28,1988.04.28,3483,, +1988.04.24,24-Apr-88,1988,Unprovoked,USA,California,"North of Morro Rock, San Luis Obispo County",Surfing,Mark Rudy,M,,No Injury,N,,White shark,"J. McCosker & R.N. Lea; R. Collier, p.102",1988.04.24-Rudy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.24-Rudy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.24-Rudy_Collier.pdf,1988.04.24,1988.04.24,3482,, +1988.04.15a,15-Apr-88,1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Swimming,Robert Nicholson,M,24,Lacerations to left foot,N,18h45,,"E. Pace, FSAF",1988.04.15.a-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.a-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.a-Nicholson.pdf,1988.04.15a,1988.04.15a,3481,, +1988.04.15.b,15-Apr-88,1988,Invalid,USA,Hawaii,"Waihe'e, Maui",Onboard 21' powerboat that capsized in rough seas,Avery Goo,M,,"Human remains, believed to be those of Mr. Goo, washed ashore along the Waihee shore several days later",Y,,,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1988.04.15.b-AveryGoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.b-AveryGoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.b-AveryGoo.pdf,1988.04.15.b,1988.04.15.b,3480,, +1988.04.14.b,14-Apr-88,1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Kenny Burns,M,14,Right hand bitten,N,,,"St. Petersburg Times, 2/6/1999",1988.04.14.b-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.b-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.b-KennyBurns.pdf,1988.04.14.b,1988.04.14.b,3479,, +1988.04.14.a,14-Apr-88,1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Windsurfing,Joseph Costa,M,,"6"" laceration to left foot",N,,,"E. Pace, FSAF",1988.04.14.a-Costa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.a-Costa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.a-Costa.pdf,1988.04.14.a,1988.04.14.a,3478,, +1988.04.10,10-Apr-88,1988,Invalid,SOUTH AFRICA,KwaZulu-Natal,La Lucia,,female,F,,"Arm washed ashore. scratch marks on the humerus indicated it had been bitten by a shark, but cause of death could not be determined.",Y,,,"G. Charter, NSB; M. Levine, GSAF",1988.04.10-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.10-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.10-arm.pdf,1988.04.10,1988.04.10,3477,, +1988.03.31,31-Mar-88,1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Standing ,Peggy Schaefer,F,30,Foot bitten,N,,,"Milwaukee Journal, 4/12/1988",1988.03.31-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.31-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.31-Schaefer.pdf,1988.03.31,1988.03.31,3476,, +1988.03.25,25-Mar-88,1988,Unprovoked,USA,Hawaii,"Running Waters Beach, Ninini Point, Kaua'i",Body surfing,Aaron Kawado,M,,Ankle bitten,N,,,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1988.03.25-Kawado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.25-Kawado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.25-Kawado.pdf,1988.03.25,1988.03.25,3475,, +1988.03.16,16-Mar-88,1988,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Surfing,Sastri Naidoo,M,17,"Lower left leg bitten, hand lacerated",N,16h45,1.5 m to 2 m [5' to 6.75'] shark,"S. Naidoo, Dr. M. Raj, Dr. Motala, M. Levine, GSAF; G. Charter, B. Davis, NSB",1988.03.16-Naidoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.16-Naidoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.16-Naidoo.pdf,1988.03.16,1988.03.16,3474,, +1988.03.14,14-Mar-88,1988,Unprovoked,REUNION,Saint-Pierre,Pic du Diable,Surfing,Frdric Mousseau,M,,Laceration to hand,N,18h30 (Sunset),,G. Van Grevelynghe,1988.03.14-Mousseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.14-Mousseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.14-Mousseau.pdf,1988.03.14,1988.03.14,3473,, +1988.02.15, 15-Feb-1988,1988,Boat,SOUTH AFRICA,KwaZulu-Natal,"Brighton Beach, Durban",,"Semi-rigid rescue boat: occupants, Edward Moolman & Chris Bezuidenhiut ",,,"No injury to occupants, pontoon puctured",N,,"Raggedtooth shark, 2 m ","Natal Mercury, 2/16/1988",1988.02.15-BrightonBeach-lifesavers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.15-BrightonBeach-lifesavers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.15-BrightonBeach-lifesavers.pdf,1988.02.15,1988.02.15,3472,, +1988.02.14,14-Feb-88,1988,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Michael Schaeffer,M,20,Ankle bitten,N,17h00,"1 m ""grey-colored"" shark","M. Schaeffer, M. Levine, GSAF",1988.02.14-Schaeffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.14-Schaeffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.14-Schaeffer.pdf,1988.02.14,1988.02.14,3471,, +1988.02.13,13-Feb-88,1988,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mtunzini,Lying atop surfboard,Belinda Van Schalkwyk,F,15,"Leg bitten, surgically amputated",N,07h40,Zambezi shark (tooth fragments recovered),"B. v.Schalkwyk, P. Thevenau, R. Rathgeber, M.D., M. Levine, GSAF; R. Dunning, G. Charter, B. Davis, R.B. Wilson, NSB ",1988.02.13-Belinda_vanSchalkwyck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.13-Belinda_vanSchalkwyck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.13-Belinda_vanSchalkwyck.pdf,1988.02.13,1988.02.13,3470,, +1988.02.12,12-Feb-88,1988,Boat,AUSTRALIA,Western Australia,18 km west of Bunbury,Drift fishing,"5.5 m fibreglass boat, occupants: Steven Piggott and Kelvin & Brendan Martin",,N/A,"No injury to occupants; shark leapt into boat, almost capsizing it and destroyed the inside of the boat",N,,"Mako shark, 3 m [10'], 200-kg [441-lb] ","Sunday Mail (QLD), 2/14/1988, p.2; A. Sharpe, p.135",1988.02.12-Piggott boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.12-Piggott boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.12-Piggott boat.pdf,1988.02.12,1988.02.12,3469,, +1988.02.02,02-Feb-88,1988,Unprovoked,Fiji,Vanua Levu,,Diving,Qalo Moceyawa,M,22,Lacerations to left arm & waist,N,,"Tiger shark, 3 m ","Sun, 2/5/1988, p.15",1988.02.02-Fiji-Moceyawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.02-Fiji-Moceyawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.02-Fiji-Moceyawa.pdf,1988.02.02,1988.02.02,3468,, +1988.01.27,27-Jan-88,1988,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Surfing,Charles Everitt,M,22,Minor injury to leg,N,06h30,Shark involvement not confirmed,"Natal Mercury, 1/30/1988",1988.01.27-Everitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.27-Everitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.27-Everitt.pdf,1988.01.27,1988.01.27,3467,, +1988.01.21,21-Jan-88,1988,Invalid,AUSTRALIA,Torres Strait,,Fell overboard from the Taiwanese fishing trawler Lien Cheng Feu ,Lo-Ying-Chun,M,,His remains were recovered from a shark caught by the trawler Ho Tai No.12 in March 1988,Y,,,"X. Maniguet, p.206",1988.01.21-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.21-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.21-Chun.pdf,1988.01.21,1988.01.21,3466,, +1988.01.14,14-Jan-88,1988,Provoked,USA,Louisiana,,Fishing,Chip,M,,Hand bitten by captured shark PROVOKED INCIDENT,N,,Mako shark,"C. Johansson, GSAF",1988.01.14-Chip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.14-Chip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.14-Chip.pdf,1988.01.14,1988.01.14,3465,, +1988.01.06,06-Jan-88,1988,Provoked,SOUTH AFRICA,Western Cape Province,Struisbaai,Attempting to lasso shark's tail,J.A. McKay,M,33,Foot lacerated by hooked shark PROVOKED INCIDENT,N,11h15,1.5 m copper shark,"M. Levine, GSAF",1988.01.06-McKay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.06-McKay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.06-McKay.pdf,1988.01.06,1988.01.06,3464,, +1988.01.05.R,Reported 05-Jan-1988,1988,Provoked,SOUTH AFRICA,Western Cape Province,Great Brak River,"Returning to shore, collided with shark","5 m inflatable boat, occupants: Kobus Potgieter & 5 friends",,,"No injury to occupants; shark ripped off fibreglass hull, swamping boat PROVOKED INCIDENT",N,,6 m shark,"Natal Mercury, 1/5/1988",1988.01.05-Potgeiter-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.05-Potgeiter-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.05-Potgeiter-boat.pdf,1988.01.05.R,1988.01.05.R,3463,, +1988.00.00.c,1988,1988,Unprovoked,AUSTRALIA,New South Wales,Sydney,Surfing,Ryan Kwanten,M,12,Hand bitten,N,,Wobbegong shark,"Star Pulse, 7/8/2010",1988.00.00.c-Kwanten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.00.00.c-Kwanten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.00.00.c-Kwanten.pdf,1988.00.00.c,1988.00.00.c,3462,, +1987.12.20,20-Dec-87,1987,Sea Disaster,PHILIPPINES,Mindoro,Off Manila,Ferry boat Dona Paz with 4431 passengers exploded & caught fire when she collided with an oil tanker ,,,,25 people survived; 300 shark-mutilated bodies were recovered,Y,,,BBC ,1987.12.20-DonaPaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.20-DonaPaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.20-DonaPaz.pdf,1987.12.20,1987.12.20,3461,, +1987.12.17,17-Dec-87,1987,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Timothy Knipper,M,16,Left calf bitten,N,13h00,1.8 m [6'] blacktip shark,"D. Filkins, Miami Herald, 12/18/1987, page 1PB; St. Petersburg Times, 12/18/1987",1987.12.17-Knipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.17-Knipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.17-Knipper.pdf,1987.12.17,1987.12.17,3460,, +1987.12.13,13-Dec-87,1987,Invalid,AUSTRALIA,New South Wales,Shoalhaven,,female,F,16 to 18,Remains recovered from shark,Y,,"Tiger shark, 4 m, 420-kg, caught 13-Dec-1987","Sunday Mail (QLD), 1/31/1988, p.2",1987.12.13-Shoalhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.13-Shoalhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.13-Shoalhaven.pdf,1987.12.13,1987.12.13,3459,, +1987.11.21,21-Nov-87,1987,Unprovoked,USA,Florida,"North of Jupiter Inlet, Palm Beach County",Surfing,Brian Tyska ,M,15,Leg lacerated,N,,,"St. Petersburg Times, 11/25/1987, p.2B",1987.11.21-Tyska.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.21-Tyska.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.21-Tyska.pdf,1987.11.21,1987.11.21,3458,, +1987.11.00,Nov-87,1987,Invalid,SOUTH AFRICA,KwaZulu-Natal,St. Lucia,, male,M,,Possible drowning / scavenging,N,,,NSB,1987.11.00-StLucia-scavengin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.00-StLucia-scavengin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.00-StLucia-scavengin.pdf,1987.11.00,1987.11.00,3457,, +1987.10.26,26-Oct-87,1987,Unprovoked,USA,California,"Davenport Light, San Mateo County",Surfing,Conrad Brown,M,20,Buttock & leg bitten,N,17h00,2 m [6.75'] shark,"R. Collier, p.101",1987.10.26-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.26-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.26-Brown_Collier.pdf,1987.10.26,1987.10.26,3456,, +1987.10.25,25-Oct-87,1987,Invalid,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Boogie boarding,Darrel Rowe,M,14,Abrasion to forearm,N,16h00,,D. Rowe,1987.10.25-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.25-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.25-Rowe.pdf,1987.10.25,1987.10.25,3455,, +1987.10.11,11-Oct-87,1987,Unprovoked,SOUTH AFRICA,Western Cape Province,"Seal Island, False Bay",Spearfishing,Dawid Smit,M,21,Left thigh & calf lacerated,N,12h15,White shark,"G. Smit, P. Landsberg, M.D., M. Levine, GSAF",1987.10.11-DawidSmit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.11-DawidSmit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.11-DawidSmit.pdf,1987.10.11,1987.10.11,3454,, +1987.10.06,06-Oct-87,1987,Sea Disaster,DOMINICAN REPUBLIC,Between DR and Puerto Rico,Mona Passage,"Vessel caught fire & capsized, survivors in the water",,,,"Of 160 people on board, >100 missing",Y,,40 to 50 sharks attacked survivors in the water,"Orlando Sentinel, 1/7/1987, p. A4; Time Magazinem 19.19.1987",1987.10.06-refugee-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.06-refugee-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.06-refugee-boat.pdf,1987.10.06,1987.10.06,3453,, +1987.09.18,18-Sep-87,1987,Unprovoked,AUSTRALIA,South Australia,"Merino Rocks, Adelaide",Scuba Diving for scallops,Terrance Gibson,M,47,FATAL,Y,,White shark,"A. Sharpe, p.127; J. West, ASAF",1987.09.18-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.18-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.18-Gibson.pdf,1987.09.18,1987.09.18,3452,, +1987.09.13,13-Sep-87,1987,Unprovoked,SOUTH AFRICA,Western Cape Province,Still Bay,Surfing,Peter McCallum,M,24,Torso lacerated,N,11h00,3.5 m [11.5'] white shark,"P. McCallum, M. Levine,GSAF; M.A. Reade, NSB",1987.09.13-McCallum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.13-McCallum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.13-McCallum.pdf,1987.09.13,1987.09.13,3451,, +1987.08.20,20-Aug-87,1987,Unprovoked,USA,Florida,"Satellite Beach, Brevard County",Wading,Gary Kritlow,M,12,Lower left leg lacerated,N,11h30,1.2 m to 1.5 m [4' to 5'] shark,"D. Scruggs, Orlando Sentinel, 8/21 & 22/1987",1987.08.20-Kritlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.20-Kritlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.20-Kritlow.pdf,1987.08.20,1987.08.20,3450,, +1987.08.15,15-Aug-87,1987,Unprovoked,USA,California,"Tunitas Beach, San Mateo County",Surfing (sitting on his board),Craig Rogers,M,40,Fingers & surfboard injured,N,07h30,5.7 m white shark,"R. Collier, pp.99-100 ",1987.08.15-Rogers_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.15-Rogers_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.15-Rogers_Collier.pdf,1987.08.15,1987.08.15,3449,, +1987.07.21,21-Jul-87,1987,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Egor Emery,M,27,Right foot & ankle lacerated,N,09h15,3' to 4' shark,"Orlando Sentinel, 7/22/1987, p.D1; Miami Herald, 7/23/1987",1987.07.21-Emery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.21-Emery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.21-Emery.pdf,1987.07.21,1987.07.21,3448,, +1987.07.12.b,12-Jul-87,1987,Unprovoked,USA,Texas,"Mustang Island, near Port Aransas",Body surfing,Carol Viau,F,32,Left foot bitten,N,18h30,4' shark,"Dallas Morning News, 7//14/1987",1987.07.12.b-CarolViau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.b-CarolViau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.b-CarolViau.pdf,1987.07.12.b,1987.07.12.b,3447,, +1987.07.12.a,12-Jul-87,1987,Unprovoked,USA,Texas,"Mustang Island, near Port Aransas",Wading,Brenda King,F,16,Puncture wounds to right foot,N,14h30,4' shark,"Dallas Morning News, 7//14/1987",1987.07.12.a-BrendaKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.a-BrendaKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.a-BrendaKing.pdf,1987.07.12.a,1987.07.12.a,3446,, +1987.07.11,11-Jul-87,1987,Boat,USA,South Carolina,Winyah Bay,Dropping anchor,"17' fishing boat. Occupants, Bubba DeMaurice, his wife & daughter",,,No injury to occupants. Shark grabbed anchor ,N,,12' shark,Great White Sharks of the Carolinas and Georgia by J. Hairr,1987.07.11-DeMaurice-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.11-DeMaurice-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.11-DeMaurice-boat.pdf,1987.07.11,1987.07.11,3445,, +1987.07.09,09-Jul-87,1987,Unprovoked,BAHAMAS,Exuma Islands,Sampson Cay,Snorkeling,male from pleasure craft Press On Regardless,M,35,Right leg bitten,N,13h30,,"Miami Herald, 7/10/1987",1987.07.09-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.09-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.09-Bahamas.pdf,1987.07.09,1987.07.09,3444,, +1987.07.00,Jul-87,1987,Unprovoked,BAHAMAS,,,Spearfishing,Ken Austin,M,,Puncture marks to torso,N,,2.5 to 3 m shark,"E.Pace, FSAF",1987.07.00-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.00-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.00-Austin.pdf,1987.07.00,1987.07.00,3443,, +1987.06.13,13-Jun-87,1987,Provoked,USA,Florida,"Nest Key, Monroe County",Fishing,Josh Schrutt ,M,,Left hand bitten by shark he was dragging ashore by its head PROVOKED INCIDENT,N,Afternoon,1.5 m [5'] blacktip shark,"Miami Herald, 6/14/1987",1987.06.13-Schrutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.06.13-Schrutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.06.13-Schrutt.pdf,1987.06.13,1987.06.13,3442,, +1987.05.25,25-May-87,1987,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",,Josia McSpadden,M,12,"6"" cut to thigh",N,,1.5 m to 1.8 m [5' to 6'] shark,"Charlotte Observer, 5/28/1987 ",1987.05.25-JosiaMcSpadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.25-JosiaMcSpadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.25-JosiaMcSpadden.pdf,1987.05.25,1987.05.25,3441,, +1987.05.08,08-May-87,1987,Unprovoked,USA,Florida,"St Augustine, St. Johns County",Surfing,Robert Gault,M,,Hand lacerated ,N,,,"Orlando Sentinel, 5/10/1987",1987.05.08-Gault.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.08-Gault.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.08-Gault.pdf,1987.05.08,1987.05.08,3440,, +1987.05.06,06-May-87,1987,Provoked,AUSTRALIA,New South Wales,,Fishing,Keith Appleby,M,34,3 fingers severed by metal trace as he tried to haul in a hooked shark. PROVOKED ACCIDENT,N,,,"Courier Mail, 5/7/1987",1987.05.06-Appleby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.06-Appleby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.06-Appleby.pdf,1987.05.06,1987.05.06,3439,, +1987.04.19,19-Apr-87,1987,Invalid,SOUTH AFRICA,KwaZulu-Natal,Port Shepstone,Fishing,Mr. Perumal,M,,"Slipped off rocks & was treading water when he disappeared, body mutilated by shark/s",Y,,,"G. Charter, R. B. Wilson, G. Cliff, NSB",1987.04.19-Perumal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.19-Perumal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.19-Perumal.pdf,1987.04.19,1987.04.19,3438,, +1987.04.18,18-Apr-87,1987,Unprovoked,USA,Texas,"Mustang Island, near Port Aransas",Swimming,April Dawn Vogelino,F,16,Right arm severed above elbow,N,18h00,,"Orlando,Sentinel, 4/19/ 1988.p.A12; Miami Herald, 4/19/1988",1987.04.18-Vogelino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.18-Vogelino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.18-Vogelino.pdf,1987.04.18,1987.04.18,3437,, +1987.04.15,15-Apr-87,1987,Unprovoked,USA,Hawaii,"Kailua-Kona, Hawai'i",Swimming from shore to anchored sailboat,Daniel Kennedy,M,,"Presumed FATAL Disappeared, his shark-bitten swim trunks were found on the seafloor",Y,,,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1987.04.15-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.15-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.15-Kennedy.pdf,1987.04.15,1987.04.15,3436,, +1987.04.01,01-Apr-87,1987,Unprovoked,VANUATU,Malampa Province,Vao Island,Swimming,male,M,8,FATAL,Y,12h00,4.3 m shark,S. Combs,1987.04.01-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.01-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.01-Vanuatu.pdf,1987.04.01,1987.04.01,3435,, +1987.03.30.b,30-Mar-87,1987,Unprovoked,AUSTRALIA,Western Australia,Fourth Beach / Twilgth Beach,Surfing,Grantley Butcher,M,18,Calf lacerated,N,,"Bronze whaler shark, 2 m to 3 m ","Courier-Mail, 4/2/1987, p.1; T. Peake, GSAF",1987.03.30.b-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.b-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.b-Butcher.pdf,1987.03.30.b,1987.03.30.b,3434,, +1987.03.30.a,30-Mar-87,1987,Provoked,SOUTH AFRICA,Western Cape Province,Muizenberg,,"3 m skiboat Talisman, occupants Dennis Langenhoven, Philip Schoeman, Ross Lindsay, Steven Riley & Peter Schuets",,,"No injury to occupants, boat holed by hooked shark PROVOKED INCIDENT",N,,3 m white shark,"T. Wallett; M. Levine, GSAF",1987.03.30.a-Talisman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.a-Talisman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.a-Talisman.pdf,1987.03.30.a,1987.03.30.a,3433,, +1987.02.28,28-Feb-87,1987,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Windsurfing,Gary Landwirth,M,,"Lacerations to toe, heel & ankle of right foot",N,,Spinner shark,"Sun Sentinel.Fort Lauderdale,3/2/1987,p.4B",1987.02.28-Landwirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.28-Landwirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.28-Landwirth.pdf,1987.02.28,1987.02.28,3432,, +1987.02.19,19-Feb-87,1987,Sea Disaster,SOLOMON ISLANDS,Between Honiara & Isabel Island,,The inter-island ferry Vula sank in heavy weather,2 people,,,FATAL,Y,,,"Courier Mail, 2/26/1987, p.2",1987.02.19-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.19-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.19-SolomonIslands.pdf,1987.02.19,1987.02.19,3431,, +1987.01.28,28-Jan-87,1987,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Eerste River,Spearfishing,Tommy Botha,M,30,Puncture wounds to right hand,N,12h00,>2.5 m [8.25'] white shark,"T. Botha, M. Levine, GSAF",1987.01.28-TommyBotha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.28-TommyBotha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.28-TommyBotha.pdf,1987.01.28,1987.01.28,3430,, +1987.01.06,06-Jan-87,1987,Unprovoked,AUSTRALIA,Queensland,Lizard Island,Swimming,Alessandro Russo,M,37,Right leg lacerated,N,07h00,,"Sydney Morning Herald; Courier-Mail 1/8/1987, p.2",1987.01.06-Russo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.06-Russo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.06-Russo.pdf,1987.01.06,1987.01.06,3429,, +1987.00.00.b,1987,1987,Invalid,MONTENEGRO,Adriatic Sea,"Mogren Beach, Budva",Jumped into the water from a cliff,a student from Belgrade,M,,FATAL,Y,,Doubtful / Unconfirmed attack / Unable to verify in local records,D. Ljusic,1987.00.00.b-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Budva.pdf,1987.00.00.b,1987.00.00.b,3428,, +1987.00.00.a,1987,1987,Boat,ITALY,Tyrrhenian Sea,"Marciana Marina, Isola d'Elba",Boat,Aniello Mattera and Giorgio Allori,M,,No injury,N,,White shark,"A. De Maddalena; Perfetti (1989), M. Zuffa (pers. Comm.)",1987.00.00.a-boat-Mattera-Allori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.a-boat-Mattera-Allori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.a-boat-Mattera-Allori.pdf,1987.00.00.a,1987.00.00.a,3427,, +1986.12.31,31-Dec-86,1986,Unprovoked,SOUTH AFRICA,Western Cape Province,Agulhas Banks,Spearfishing,Pierre deWet,M,,2 punctures in lower leg,N,14h00,"Raggedtooth shark, 2.5 m [8.25'] ","P. deWet, E. Lombard, M. Levine, GSAF",1986.12.31-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.31-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.31-deWet.pdf,1986.12.31,1986.12.31,3426,, +1986.12.22,22-Dec-86,1986,Unprovoked,SOUTH AFRICA,Western Cape Province,SAOU Strand,Body boarding,Richardt Anton Olls,M,21,"FATAL, legs bitten ",Y,17h00,3 m [10'] white shark,"G. Geldenhuys, W. Roos, Dr. Smallberger, Dr. C. Groble, Dr. J.H. B. de Lange, M. Levine, GSAF; R. Wilson, NSB ",1986.12.22-Olls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.22-Olls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.22-Olls.pdf,1986.12.22,1986.12.22,3425,, +1986.12.11,11-Dec-86,1986,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Bob Earnhardt,M,40,Forearm bitten,N,14h00,1.8 m to 2.1 m [6' to 7'] spinner or blacktip shark,"Orlando Sentinel, 12/12/1986, p.A1",1986.12.11-Earnhardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.11-Earnhardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.11-Earnhardt.pdf,1986.12.11,1986.12.11,3424,, +1986.12.06.b,06-Dec-86,1986,Unprovoked,BAHAMAS,Florida Straits,Off Cay Sal Banks,Adrift after ditching plane in the sea,Wyatt Walker,M,37,"No injury, bumped by sharks",N,,,"Orlando Sentinel, 12/9/1986, p.D1",1986.12.06.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.b-Walker.pdf,1986.12.06.b,1986.12.06.b,3423,, +1986.12.06.a,06-Dec-86,1986,Unprovoked,USA,California,"Monastery Beach, Carmel River State Park, Monterey Peninsula, Monterey California",Free diving & spearfishing (submerged),Frank Gallo,M,27,"Punctured lung, lacerations to shoulder, face, jaw, neck & forearm",N,10h00,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, pp.98-99; Atlanta Journal-Constitution, 12/7/1986",1986.12.06.a-Gallo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.a-Gallo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.a-Gallo.pdf,1986.12.06.a,1986.12.06.a,3422,, +1986.12.04,04-Dec-86,1986,Invalid,SOUTH AFRICA,Western Cape Province,Platbank,Spearfishing,Rory OConnor,M,22,"No injury, no attack, shark made threat displays",N,,1.8 m [6'] copper shark,"R. O'Connor, M. Levine, GSAF",1986.12.04-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.04-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.04-O'Connor.pdf,1986.12.04,1986.12.04,3421,, +1986.12.00,Dec-86,1986,Unprovoked,NEW CALEDONIA,,I'le Ouen,Spearfishing,Maurice Lilloux,,,Right leg bitten,N,,Tiger shark,W. Leander,1986.12.00.b-Maurice_Lilloux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.00.b-Maurice_Lilloux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.00.b-Maurice_Lilloux.pdf,1986.12.00,1986.12.00,3420,, +1986.11.30,30-Nov-86,1986,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Brad Bowen,M,17,5' gash in leg,N,10h30,,"Orlando Sentinel, 11/30/1986",1986.11.30-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.30-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.30-Bowen.pdf,1986.11.30,1986.11.30,3419,, +1986.11.19,19-Nov-86,1986,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Keith Helm,M,26,Laceration to dorsum of left foot,N,10h40,,"E. Pace, FSAF",1986.11.19-Helm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.19-Helm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.19-Helm.pdf,1986.11.19,1986.11.19,3418,, +1986.11.04,04-Nov-86,1986,Unprovoked,USA,Florida,"Tiger Shores Beach, Martin County",Surfing,Daniel Lund,M,23,Ankle bitten,N,,,"Miami Herald, 11/5/1986",1986.11.04-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.04-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.04-Lund.pdf,1986.11.04,1986.11.04,3417,, +1986.10.17,17-Oct-86,1986,Provoked,SOUTH AFRICA,KwaZulu-Natal,Umhlanga,NSB Meshing,Kliki Ndlazi,M,,Minor lacerations & puncture wounds to right leg from netted shark taken onboard skiboat PROVOKED INCIDENT,N,,"Raggedtooth shark, 1.96 m, 140-kg ","K. Ndlazi, R. Gardiner, NSB; M. Levine, GSAF",1986.10.17-Ndlazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.17-Ndlazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.17-Ndlazi.pdf,1986.10.17,1986.10.17,3416,, +1986.10.03,03-Oct-86,1986,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Swimming,Luz Helena Florez,F,6,Hip & thigh bitten,N,18h00,"Lemon shark, 1.8 m to 2.4 m [6' to 8'], tooth fragment recovered","E. Pace; C. Call; Orlando Sentinel, 10/6/1986, 10/11/1986 & 4/20, 1988",1986.10.03-Florez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.03-Florez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.03-Florez.pdf,1986.10.03,1986.10.03,3415,, +1986.10.05,05-Oct-86,1986,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,St. Michaels,Racing ski,James Speirs,M,32,"No injury, ski bitten",N,11h00,1.6 m shark,"J. Spiers, M. Levine, GSAF; R. Dugmore, G. Cliff, NSB",1986.10.05-Spiers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.05-Spiers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.05-Spiers.pdf,1986.10.05,1986.10.05,3414,, +1986.10.01,01-Oct-86,1986,Unprovoked,AUSTRALIA,Western Australia,"Direction Island, Cocos Islands",,Crawford,,,No details,UNKNOWN,,,"T. Peake, GSAF",1986.10.01-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.01-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.01-NV-Crawford.pdf,1986.10.01,1986.10.01,3413,, +1986.10.00,Oct-86,1986,Unprovoked,USA,Florida,"Floridana Beach, Brevard County",Surfing,Ron Dubois,M,28,Laceration to right arm,N,,Bull shark,"R.D. Weeks, GSAF; E. Pace, FSAF ",1986.10.00-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.00-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.00-Dubois.pdf,1986.10.00,1986.10.00,3412,, +1986.09.22.R,Reported 22-Sep-1986 ,1986,Invalid,USA,Florida,"Pinellas Point, Tampa Bay",,,,,Human hand recovered from shark's stomach,N,,1.5 m [5'] blacktip shark,"Orlando Sentinel, 9/22/1986",1986.09.22.R-hand-in-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.22.R-hand-in-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.22.R-hand-in-shark.pdf,1986.09.22.R,1986.09.22.R,3411,, +1986.09.00.b,Sep-86,1986,Unprovoked,USA,Florida,"Ormond Beach / Daytona Beach, Volusia County",Surfing,Anonymous,,,Survived,N,,,Orlando Sentinel. 9/20/1986,1986.09.00.b-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.b-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.b-surfer.pdf,1986.09.00.b,1986.09.00.b,3410,, +1986.09.00.a,Sep-86,1986,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Anonymous,,18,Hand bitten,N,,,Orlando Sentinel. 9/20/1986,1986.09.00.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.a-surfer.pdf,1986.09.00.a,1986.09.00.a,3409,, +1986.08.19,19-Aug-86,1986,Unprovoked,USA,North Carolina,"Masonboro Inlet, New Hanover County",Surfing,J. McCorley,,16,Hand bitten,N,,,"F. Schwartz, p.23",1986.08.19-McCorley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.19-McCorley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.19-McCorley.pdf,1986.08.19,1986.08.19,3408,, +1986.08.10,10-Aug-86,1986,Invalid,SOUTH AFRICA,Western Cape Province,Reef on seaward side of Geyser Island,Spearfishing,Phllip DeBruyn,M,35,"No injury, shark made threat display & impaled itself on spear ",N,11h30,4 m [13'] white shark,"P. DeBruyn, M. Levine, GSAF",1986.08.10-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.10-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.10-DeBruyn.pdf,1986.08.10,1986.08.10,3407,, +1986.08.03,03-Aug-86,1986,Unprovoked,AUSTRALIA,New South Wales,"North Head, Sydney Harbour",Scuba diving,Margaret Bowen Jones,F,,Survived,N,,Wobbegong shark,Australian Shark Attack File,1986.08.03-Bowen-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.03-Bowen-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.03-Bowen-Jones.pdf,1986.08.03,1986.08.03,3406,, +1986.08.00,Aug-86,1986,Unprovoked,FRANCE,Gulf of Lyons,Gruissan,,,,,Survived,N,,,MEDSAF,1986.08.00-NV-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.00-NV-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.00-NV-France.pdf,1986.08.00,1986.08.00,3405,, +1986.07.26,26-Jul-86,1986,Boat,AUSTRALIA,Western Australia,3 km west of Rottnest Island,Fishing,"5.4 m boat, occupant: Ivan Anderton",,N/A,"No injury to occupants. Shark bit motor, lifting stern a half-metre out of the water",N,,Tooth fragment of a white shark recovered. Authorities believed shark was 6 m [20'] total length,"A. Sharpe, p.134",1986.07.26-boat-Anderton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.26-boat-Anderton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.26-boat-Anderton.pdf,1986.07.26,1986.07.26,3404,, +1986.07.09,09-Jul-86,1986,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",,Jack Serafino,M,8,Back of left thigh bitten,N,,1.5 m [5'] shark,"Charlotte Observer, 9/9/1986 & 9/11/1986 ",1986.07.09-JackSerafino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.09-JackSerafino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.09-JackSerafino.pdf,1986.07.09,1986.07.09,3403,, +1986.07.00.a,Jul-86,1986,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,LaMercy,Spearfishing,Ludwig Gerricke,M,26,Minor lacerations on left hand,N,17h15,1.2 m [4'] dusky shark,"L. Gerricke, M. Levine, GSAF ",1986.07.00.a-Gerricke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.00.a-Gerricke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.00.a-Gerricke.pdf,1986.07.00.a,1986.07.00.a,3402,, +1986.05.18,18-May-86,1986,Unprovoked,AUSTRALIA,New South Wales,"North Head, Sydney Harbour",Scuba diving,Daniel Neumann,M,,Survived,N,,Wobbegong shark,Australian Shark Attack File,1986.05.18-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.18-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.18-Neumann.pdf,1986.05.18,1986.05.18,3401,, +1986.05.15,15-May-86,1986,Unprovoked,SOUTH KOREA,,,Shell diving,male,M,,FATAL,Y,,,Y. Choi & K. Nakaya,1986.05.15-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.15-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.15-SouthKorea.pdf,1986.05.15,1986.05.15,3400,, +1986.04.20,20-Apr-86,1986,Unprovoked,USA,Hawaii,"Kaliiwi, Kauai","Fishing, fell from rocks & disappeared",Levi Chandler,M,,Pieces of clothing & human flesh recovered by Fire Department divers who encountered a large shark,Y,,,"J. Borg, p.76",1986.04.20-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.20-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.20-Chandler.pdf,1986.04.20,1986.04.20,3399,, +1986.04.00,Apr-86,1986,Unprovoked,SPAIN,Catalonia,Lloret-de-Mar,Diving,,M,,Abrasions,N,,2 m shark,C. Moore,1986.04.00-Lloret-de-Mar-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.00-Lloret-de-Mar-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.00-Lloret-de-Mar-diver.pdf,1986.04.00,1986.04.00,3398,, +1986.03.18,18-Mar-86,1986,Unprovoked,SPAIN,Cdiz,Tarifa ,Windsurfing,J. L Prez-Daz,M,,Foot severed,N,10h55,3.5 m white shark,A. DeMaddalena,1986.03.18-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.18-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.18-Diaz.pdf,1986.03.18,1986.03.18,3397,, +1986.03.15,15-Mar-86,1986,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Treading water,Anton Bouwer,M,26,Foot bitten,N,16h15,>1 m shark,"A. Bouwer, M. Levine, GSAF; E. Kerns, NSB",1986.03.15-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.15-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.15-Bouwer.pdf,1986.03.15,1986.03.15,3396,, +1986.03.05,05-Mar-86,1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"The Fence, King's Beach, Port Elizabeth",Surfing,McDonald van der Merwe,M,23,"No injury, board struck by shark",N,,2 m [6.75'] shark,"Eastern Province Herald, 3/6/1986",1986.03.05-VanDerMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.05-VanDerMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.05-VanDerMerwe.pdf,1986.03.05,1986.03.05,3395,, +1986.02.18,18-Feb-86,1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Surfing,Shaun Carcary,M,21,"No injury, board bitten",N,12h00,>2.4 m [8'] white shark,"S. Carcary, M. Levine, GSAF",1986.02.18-Carcary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.18-Carcary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.18-Carcary.pdf,1986.02.18,1986.02.18,3394,, +1986.02.17,17-Feb-86,1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape Recife,Surfing,John Fick,M,,"No injury, knocked off board",N,18h00,,"J. Fick, M. Levine, GSAF; Eastern Province Herald, 2/18/1986",1986.02.17-Fick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.17-Fick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.17-Fick.pdf,1986.02.17,1986.02.17,3393,, +1986.02.07,07-Feb-86,1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"King's Beach, Port Elizabeth",Swimming,Johan Fourie,M,46,Lower leg lacerated,N,18h30,Raggedtooth shark,"J. Fourie, M. Levine, GSAF; V. Cockroft, Dr. P. Schwartz",1986.02.07-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.07-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.07-Fourie.pdf,1986.02.07,1986.02.07,3392,, +1986.02.06,06-Feb-86,1986,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Michael Taljaard,M,29,2 punctures in upper arm,N,13h30,"Raggedtooth shark, 2 m [6.75'] ","M. Taljaard, M. Levine, GSAF",1986.02.06-Taljaard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.06-Taljaard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.06-Taljaard.pdf,1986.02.06,1986.02.06,3391,, +1986.02.01,01-Feb-86,1986,Unprovoked,AUSTRALIA,Victoria,Jan Juc Beach,Surfing,David Adams,M,29,"No injury, knocked into water & board bitten",N,06j00,"Bronze whaler shark, 3.5 m ","Sun, 2/3/1986, p.4",1986.02.01-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.01-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.01-Adams.pdf,1986.02.01,1986.02.01,3390,, +1986.01.12,12-Jan-86,1986,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Christopher Blissel,M,22,Puncture wounds to both feet,N,08h35,Blacktip shark,"E. Pace, FSAF",1986.01.12-Blissel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.01.12-Blissel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.01.12-Blissel.pdf,1986.01.12,1986.01.12,3389,, +1986.00.00,1986,1986,Unprovoked,USA,California,"Linda Mar Beach, Pedro Point, San Mateo County",Surfing,Max Lagao,M,16,"No injury, foot bumped",N,13h00,1.5 m [5'] shark,R. Collier,1986.00.00-Lagao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.00.00-Lagao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.00.00-Lagao.pdf,1986.00.00,1986.00.00,3388,, +1985.12.22,22-Dec-85,1985,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Garvies Beach,Surfing,Tony Moolman and another surfer,M,,"Both surfers boards were bumped by sharks, Moolman sustained abrasions on his arm and leg",N,,,"M. Levine, GSAF",1985.12.22-GarviesBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.22-GarviesBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.22-GarviesBeach.pdf,1985.12.22,1985.12.22,3387,, +1985.12.10,10-Dec-85,1985,Unprovoked,USA,North Carolina,New Hanover County,,male,M,,Survived,N,,Sandtiger shark,"C. Creswell, GSAF",1985.12.10-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.10-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.10-NV-NorthCarolina.pdf,1985.12.10,1985.12.10,3386,, +1985.11.11,11-Nov-85,1985,Provoked,AUSTRALIA,Queensland,Gladstone,Fishing,Richard Lynch,M,,Laceration to lower left leg by hooked shark PROVOKED INCIDENT,N,Afternoon,1m shark,"Courier Mail, 11/13/1985",1985.11.11-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.11-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.11-Lynch.pdf,1985.11.11,1985.11.11,3385,, +1985.11.05,05-Nov-85,1985,Boat,USA,California,"Southeast Farallon Island, Farallon Islands",Boat,3 m inflatable boat tied to buoy (no occupants),,,2 semi-circular bites on aft starboard tube of boat,N,,5.2 to 5.8 m white shark,"R. Collier, pp.178-179",1985.11.05-Klimley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.05-Klimley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.05-Klimley_Collier.pdf,1985.11.05,1985.11.05,3384,, +1985.11.03,03-Nov-85,1985,Provoked,USA,California,5 miles south of Redondo Beach,Fishing,Brad Koune,M,24,Forearm bitten by hooked shark PROVOKED INCIDENT,N,,,"Los Angles Times, 11/5/1985",1985.11.03-Koune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.03-Koune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.03-Koune.pdf,1985.11.03,1985.11.03,3383,, +1985.10.24,24-Oct-85,1985,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Body boarding,Patrick Gee,M,22,"Left leg severely lacerated, superficial lacerations of right leg, board damaged",N,08h00,2.5 m [8.25'] white shark,"P. Gee, Dr. K. A. Watt, M. Levine, GSAF; G. Cliff, NSB",1985.10.24-Gee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.24-Gee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.24-Gee.pdf,1985.10.24,1985.10.24,3382,, +1985.10.22,22-Oct-85,1985,Unprovoked,USA,California,"Point Conception, Santa Barbara County",Hookah diving for abalone,Gary Johnson,M,46,Minor injury to foot & ankle,N,16h00,2 m to 2.5 m [6.75' to 8.25'] sixgill or sevengill shark,R. Collier,1985.10.22-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.22-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.22-Johnson_Collier.pdf,1985.10.22,1985.10.22,3381,, +1985.10.18,18-Oct-85,1985,Unprovoked,USA,Hawaii,"Little Glass Shacks, Princeville, Kaua'i",Body boarding,Joe Thompson,M,33,"Right hand and part of forearm severed , left hand lacerated, right anterior side of board removed by shark",N,,"Thought to involve a Tiger shark, 3.7 m [12'] ","Syracuse Journal-Herald, 10/21/1985; J. Borg, p.76; G. Ambrose, pp.1-10; L. Taylor (1993), pp.106-107",1985.10.18-Thomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.18-Thomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.18-Thomson.pdf,1985.10.18,1985.10.18,3380,, +1985.10.12,12-Oct-85,1985,Unprovoked,USA,Hawaii,"Barbers Point, O'ahu",Floating on inner tube after diving for lobster,Dominic Dela Cruz,M,24,Left arm lacerated,N,,1.8 m to 2.4 m [6' to 8'] shark,"J. Borg, p.76; L. Taylor (1993), pp.106-107; Orlando Sentinel, 10/14/1985, p.A6",1985.10.12-DelaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.12-DelaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.12-DelaCruz.pdf,1985.10.12,1985.10.12,3379,, +1985.10.05, 05-Oct-1985,1985,Provoked,USA,Alabama,"Gulf Shores, Baldwin County",Fishing,Bruce Doss,M,,Laceration to leg by hooked shark PROVOKED INCIDENT,N,,"6', 100-lb shark","Syracuse Herald, 10/10/1985 ",1985.10.05-Doss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.05-Doss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.05-Doss.pdf,1985.10.05,1985.10.05,3378,, +1985.09.28,28-Sep-85,1985,Unprovoked,USA,California,"Elephant Rock near Tomales Point, Marin County",Free diving & spearfishing (descending),Rolf Ridge,M,,"Hip bumped by shark, no Injury",N,,4 m to 5 m [13' to 16.5'] white shark,"J. McCosker & R.N. Lea; R. Collier, p.97",1985.09.28-Ridge_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.28-Ridge_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.28-Ridge_Collier.pdf,1985.09.28,1985.09.28,3377,, +1985.09.08.b,08-Sep-85,1985,Invalid,SOUTH AFRICA,KwaZulu-Natal,T.O. Strand,Swimming,A.M.,M,21,Probable drowning / scavenging,Y,,,"G. Charter, D. Groger, NSB",1985.09.08.b-A.M.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.b-A.M.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.b-A.M.pdf,1985.09.08.b,1985.09.08.b,3376,, +1985.09.08.a,08-Sep-85,1985,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Scuba diving,Morris M. Vorenberg,M,,Laceration and 4 puncture wounds to left hand,N,15h00,1.8 m silky shark,M. Vorenburg,1985.09.08.a-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.a-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.a-Vorenberg.pdf,1985.09.08.a,1985.09.08.a,3375,, +1985.09.05,05-Sep-85,1985,Invalid,USA,Florida,"Fort Pierce Inlet, St Lucie County",Swimming,Jeff Justice,M,17,Found to be a hoax,N,Afternoon,,"Orlando Sentinel, 9/7/1985 ; Miami Herald, 9/7/1985 ",1985.09.05-Justice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.05-Justice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.05-Justice.pdf,1985.09.05,1985.09.05,3374,, +1985.08.22,22-Aug-85,1985,Unprovoked,USA,South Carolina,"Palmetto Dunes, Hilton Head, Beaufort County",Wading,Joseph Friedlander,M,87,Right calf bitten & less serious injury to left foot,N,,,"Sumter Daily Item, 8/23/1985",1985.08.22-Friedlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.22-Friedlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.22-Friedlander.pdf,1985.08.22,1985.08.22,3373,, +1985.08.20,20-Aug-85,1985,Invalid,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Danny Prendgeast,M,11,"3"" wound on thigh",N,13h00,Shark involvement not confirmed,"Orlando Sentinel, 8/21//1985, p. D.2",1985.08.20-Prendgeast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.20-Prendgeast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.20-Prendgeast.pdf,1985.08.20,1985.08.20,3372,, +1985.08.17,17-Aug-85,1985,Invalid,USA,Florida,"Bayport, Hernando County",Scuba diving,Thomas Robert Sewell,M,67,Body not recovered. 3 days later some of his equipment was found on seabed appeared damaged by a shark ,Y,10h30,Shark involvement prior to death not confirmed,"E. Pace, GSAF; J. McAniff, NUADC; Orlando Sentinel, 12/6/1985; K Duffy, Daytona Beach News Journal, 8/26/2001",1985.08.17-Sewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.17-Sewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.17-Sewell.pdf,1985.08.17,1985.08.17,3371,, +1985.07.25.b,25-Jul-85,1985,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Robin Lyons,F,13,Right calf bitten,N,17h00,Possibly a small hammerhead shark,"M. McKee,Orlando Sentinel, 7/30/1985, p.A1",1985.07.25.b-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.b-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.b-Lyons.pdf,1985.07.25.b,1985.07.25.b,3370,, +1985.07.25.a,25-Jul-85,1985,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Lee,M,15,Hand bitten,N,10h22,,"M. McKee,Orlando Sentinel, 7/30/1985",1985.07.25.a-JasonLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.a-JasonLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.a-JasonLee.pdf,1985.07.25.a,1985.07.25.a,3369,, +1985.07.21,21-Jul-85,1985,Boat,USA,California,"Off Shelter Cover (between Fort Bragg & Eureka), Humboldt County",Bottom fishing for lingcod & had hooked a fish,4.9 m fibreglass boat. Occupant: Jack Siverling,,,"No injury to occupant, shark rammed boat catapulting it out of the water",N,,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, p.172",1985.07.21-Siverling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.21-Siverling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.21-Siverling_Collier.pdf,1985.07.21,1985.07.21,3368,, +1985.07.19,19-Jul-85,1985,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Playing in knee-deep water,Julie Steed,F,10,2/3rd of left calf removed,N,,"Tiger shark, 2.4 m to 2.7 m [8' to 9'] ","Atlanta Journal-Constitution, 7/22&23/1985 ",1985.07.19-Steed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.19-Steed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.19-Steed.pdf,1985.07.19,1985.07.19,3367,, +1985.07.00,Mid Jul-1985 or mid Jul-1986,1985,Unprovoked,ITALY,Sicily,Punta Secca,Snorkeling,Neil Montoya,M,13,Contusion of left foot,N,16h00,"3 m to 3.6 m [10' to 11'9""] white shark","A. De Maddalena; De Maddalena (2001), N. Montoya (pers. comm.)",1985.07.00-Montoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.00-Montoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.00-Montoya.pdf,1985.07.00,1985.07.00,3366,, +1985.05.26,26-May-85,1985,Unprovoked,USA,California,"Long Beach, Los Angeles County","Surfing, but lying prone on his board",Robert Rodriquez,M,,Leg injured,N,,Shark involvement not confirmed,"R. Collier, p.86",1985.05.26-Rodriquez_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.26-Rodriquez_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.26-Rodriquez_Collier.pdf,1985.05.26,1985.05.26,3365,, +1985.05.08,08-May-85,1985,Provoked,SOUTH AFRICA,KwaZulu-Natal,Umdhloti,Spearfishing,Sikketho Denge,M,39,"After diver shot shark attempting to take his catch, shark bit right arm & tore wetsuit PROVOKED INCIDENT",N,,30-kg [66-lb] shark,"M. Levine, GSAF",1985.05.08-Denge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.08-Denge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.08-Denge.pdf,1985.05.08,1985.05.08,3364,, +1985.03.16,16-Mar-85,1985,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,David Zarnowski,M,25,Hand bitten,N,,,"E. Pace, FSAF",1985.03.16-NV-Zarnowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.16-NV-Zarnowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.16-NV-Zarnowski.pdf,1985.03.16,1985.03.16,3363,, +1985.03.03,03-Mar-85,1985,Unprovoked,AUSTRALIA,South Australia,"Wisemans Beach, Peake Bay, Port Lincoln",Free diving for scallops,Shirley Anne Durdin,F,33,FATAL,Y,12h30,6 m [20'] white shark,"A. MacCormick, pp.76-79; H. Edwards, p.155; A. Sharpe, pp.126-127; J. West, ASAF",1985.03.03-Durdin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.03-Durdin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.03-Durdin.pdf,1985.03.03,1985.03.03,3362,, +1985.02.18,18-Feb-85,1985,Unprovoked,USA,California,"San Miguel Island, Santa Barbara County",Scuba Diving for lobster (at surface),Chris Massahos,M,29,Bruised,N,12h45,6 m [20'] white shark,"R. Collier, pp.95-96",1985.02.18-Massahos_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.18-Massahos_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.18-Massahos_Collier.pdf,1985.02.18,1985.02.18,3361,, +1985.02.03,03-Feb-85,1985,Unprovoked,USA,Florida,"15 miles north of Sebastian Inlet, Brevard County",Surfing,Michael Mesiano,M,16,Right foot bitten,N,Afternoon,,"Miami Herald, 2/4/1985, p.6",1985.02.03-Mesiano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.03-Mesiano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.03-Mesiano.pdf,1985.02.03,1985.02.03,3360,, +1985.01.27,27-Jan-85,1985,Unprovoked,SOUTH AFRICA,Western Cape Province,Struisbaai,Swimming,Marius Botha,M,15,"Right knee, calf and ankle lacerated",N,18h30,Raggedtooth shark,"M. Botha, M. Levine, GSAF",1985.01.27-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.27-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.27-Botha.pdf,1985.01.27,1985.01.27,3359,, +1985.01.18,18-Jan-85,1985,Invalid,SOUTH AFRICA,KwaZulu-Natal,Umzimkulu,,Herbert Base,M,,Probable drowning / scavenging,Y,,,"G. Cliff, NSB",1985.01.18-Base.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.18-Base.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.18-Base.pdf,1985.01.18,1985.01.18,3358,, +1985.01.17,17-Jan-85,1985,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umbogintwini,Surfing,Bruce Eldridge,M,18,Thigh & calf bitten,N,18h30,"3.5 m white shark, tooth fragments recovered","B. Eldridge, M. Levine, GSAF; G. Charter & B. Davis, NSB",1985.01.17-Eldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.17-Eldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.17-Eldridge.pdf,1985.01.17,1985.01.17,3357,, +1985.01.16,16-Jan-85,1985,Boat,NEW ZEALAND,South Island,Christchurch,Investigating shark sighting,"small speedboat, occupan: Paul McNally",,,"No injury to occupant, shark bit boat",N,,6 m shark,"Courier-Mail, 1/17/1985",1985.01.16-McNally-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.16-McNally-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.16-McNally-boat.pdf,1985.01.16,1985.01.16,3356,, +1985.01.04,04-Jan-85,1985,Unprovoked,SOUTH AFRICA,Western Cape Province,"Buffels Bay, False Bay",Spearfishing,Donald James,M,34,Minor injury to torso,N,11h30,3.5 m [11.5'] white shark,"D. James, M. Levine, GSAF; G. Cliff, NSB",1985.01.04-DonJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.04-DonJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.04-DonJames.pdf,1985.01.04,1985.01.04,3355,, +1985.01.00.b,Jan-85,1985,Unprovoked,NEW CALEDONIA,South Province,Amedee Island,Spearfishing,Jean Rene Mathelon,,,Legs bitten ,N,,Tiger shark,"W. Leander; Les Nouvelles Caledoniennes, 3/17/2000",1985.01.00.b-Mathelon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.b-Mathelon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.b-Mathelon.pdf,1985.01.00.b,1985.01.00.b,3354,, +1985.01.00.a,Jan-85,1985,Provoked,SOUTH AFRICA,KwaZulu-Natal,Salt Rock,Spearfishing,Barry Allan Coppin,M,20,Upper right arm bitten after he shot the shark PROVOKED INCIDENT,N,11h00,1.5 m [5'] dusky shark,"B. Coppin, M. Levine, GSAF",1985.01.00.a-Coppin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.a-Coppin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.a-Coppin.pdf,1985.01.00.a,1985.01.00.a,3353,, +1985.00.00.f,1985,1985,Unprovoked,VANUATU,Malampa Province,"Port Sandwich Bay, Lamap, Malakula",,American child,M,,FATAL,Y,,,S. Combs,1985.00.00.f-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.f-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.f-Vanuatu.pdf,1985.00.00.f,1985.00.00.f,3352,, +1985.00.00.a,1985,1985,Unprovoked,IRAN,,"Ramin, near Ahvaz",Fishing,male,M,,FATAL,Y,,Bull shark,B. Coad & F. Papahn,1985.00.00.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.a-Fisherman.pdf,1985.00.00.a,1985.00.00.a,3351,, +1984.12.03,03-Dec-84,1984,Boat,ITALY,Tyrrhenian Sea,"Marciana Marina, Isola d'Elba",Boat,,,,No injury,N,,White shark,A. De Maddalena; F. Serena (pers. Comm.),1984.12.03-boat-Elba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.12.03-boat-Elba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.12.03-boat-Elba.pdf,1984.12.03,1984.12.03,3350,, +1984.11.30,30-Nov-84,1984,Unprovoked,AUSTRALIA,Queensland,1 km off Black's Beach,Sailing on catamaran & fell into the water,Nicholas Bos,M,16,FATAL,Y,12h33,"Tiger shark, 4 m ","Courier-Mail, 12/1/1984, p.1; A. Sharpe, p.106",1984.11.30-NicholasBos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.30-NicholasBos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.30-NicholasBos.pdf,1984.11.30,1984.11.30,3349,, +1984.11.11,11-Nov-84,1984,Unprovoked,USA,Florida,"Jupiter Island Beach, Martin County",Surfing,Cooper Stetson,M,13,Left foot bitten,N,,1.2 m [4'] shark,"Miami Herald, 11/18/1984",1984.11.11-Stetson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.11-Stetson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.11-Stetson.pdf,1984.11.11,1984.11.11,3348,, +1984.11.04,04-Nov-84,1984,Provoked,USA,Florida,"Fowey Rock, Key Biscayne",Spearfishing,Andres Ferro,M,29,"Speared shark bit diver's right knee, and lacerated right thigh & buttocks PROVOKED INCIDENT",N,,"""a small shark""","Miami Herald, 11/5/1984",1984.11.04-Ferro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.04-Ferro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.04-Ferro.pdf,1984.11.04,1984.11.04,3346,, +1984.10.21.b,21-Oct-84,1984,Invalid,USA,Florida,"Wabasso Beach, Indian River County",Swimming,Larry Peebles,M,22,"Disappeared, 1 mile from where Sandra Fletcher was bitten. Death was due to drowning",Y,14h00,,"Evening Independent, 10/24/1984, p.14; E. Pace, FSAF",1984.10.21.b-Peebles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.b-Peebles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.b-Peebles.pdf,1984.10.21.b,1984.10.21.b,3345,, +1984.10.21,21-Oct-84,1984,Unprovoked,USA,Florida,"3 miles south of Sebastian Inlet State Park, Indian River County",Surfing or body surfing,Sandra Fletcher,F,23,"9"" laceration to right forearm ",N,13h30,1.5 m [5'] shark,"Miami Herald, 10/24/1984, p.17A",1984.10.21.a-Fletcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.a-Fletcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.a-Fletcher.pdf,1984.10.21,1984.10.21,3344,, +1984.10.17,17-Oct-84,1984,Invalid,USA,Florida,"Boynton Beach, Palm Beach County",Wading,Mary Dunn,F,77,"10"" laceration on leg",N,12h05,Shark involvement not confirmed; officials considered barracua,"Miami Herald, 10/18/1984, ",1984.10.17-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.17-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.17-Dunn.pdf,1984.10.17,1984.10.17,3343,, +1984.10.14.a,14-Oct-84,1984,Unprovoked,USA,Florida,"Bob Graham Beach, Martin County",Surfing,Thomas C. Westberg ,M,15,Left calf bitten,N,15h00,1.2 m [4'] blacktip shark,"Miami Herald, 10/16/1984",1984.10.14.a-Westberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.14.a-Westberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.14.a-Westberg.pdf,1984.10.14.a,1984.10.14.a,3342,, +1984.09.30.b,30-Sep-84,1984,Unprovoked,USA,Oregon,"""Turnaround"", Cape Kiwanda, Tillamook County",Surfing (sitting on his board),Robert Rice,M,25,"Abrasion on right foot, board bitten",N,15h30,3 m to 5 m [10' to 16.5'] white shark,"R. Collier, pp.94-95",1984.09.30.b-Rice_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.b-Rice_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.b-Rice_Collier.pdf,1984.09.30.b,1984.09.30.b,3341,, +1984.09.30.a,30-Sep-84,1984,Unprovoked,USA,California,"Tomales Point, Marin County","Free diving , but surfacing",Paul Parsons,M,,Legs & buttocks bitten,N,10h00,3 m to 4 m [10' to 13'] white shark,"R. Collier, pp.93-94",1984.09.30.a-Parsons_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.a-Parsons_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.a-Parsons_Collier.pdf,1984.09.30.a,1984.09.30.a,3340,, +1984.09.23,23-Sep-84,1984,Unprovoked,USA,Florida,Volusia County,Surfing,William Miller,M,17,Right foot bitten,N,14h00,,"Miami Herald, 9/26/1984, p.2D",1984.09.23-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.23-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.23-Miller.pdf,1984.09.23,1984.09.23,3339,, +1984.09.22.b,22-Sep-84,1984,Unprovoked,USA,Florida,,Swimming,male from Tampa,M,Elderly,Left foot lacerated,N,,,"Miami Herald, 9/26/1984, p.2D",1984.09.22.b-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.b-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.b-ElderlyMale.pdf,1984.09.22.b,1984.09.22.b,3338,, +1984.09.22.a,22-Sep-84,1984,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Anthony Carter,M,16,Foot bitten,N,Morning,Hammerhead shark?+O2356,"Miami Herald, 9/26/1984, p.2D",1984.09.22.a-AnthonyCarter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.a-AnthonyCarter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.a-AnthonyCarter.pdf,1984.09.22.a,1984.09.22.a,3337,, +1984.09.19,19-Sep-84,1984,Unprovoked,USA,Florida,Volusia County,Swimming,,,,No details,UNKNOWN,,,"Miami Herald, 9/26/1984, p.2D",1984.09.19-VolusiaCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.19-VolusiaCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.19-VolusiaCounty.pdf,1984.09.19,1984.09.19,3336,, +1984.09.17,17-Sep-84,1984,Unprovoked,USA,California,"Mission Beach, San Diego County",Wading,Brian Cramer,M,,Arm bitten,N,15h30,small blue shark,"R. Collier, p.93 ",1984.09.17-Cramer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.17-Cramer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.17-Cramer_Collier.pdf,1984.09.17,1984.09.17,3335,, +1984.09.15,15-Sep-84,1984,Unprovoked,USA,California,"Pigeon Point, San Mateo County",Skindiving,Omar Conger,M,28,FATAL,Y,08h30,4.5 m to 5 m white shark,"R. Collier, p. 72",1984.09.15-Conger_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.15-Conger_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.15-Conger_Collier.pdf,1984.09.15,1984.09.15,3334,, +1984.09.11,11-Sep-84,1984,Provoked,MEXICO,Baja California,Guadalupe Island,Spearfishing,Harry Ingram,M,,"No Injury, PROVOKED INCIDENT",N,17h50,4.5 m to 5.5m white shark,R. Collier,1984.09.11-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.11-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.11-Ingram.pdf,1984.09.11,1984.09.11,3333,, +1984.08.24,24-Aug-84,1984,Invalid,USA,Florida,"Off Crystal River, Citrus County",Boat capsized?,T. Washington,F,31,Death was due to drowning; body scavenged by a shark,Y,,Tiger shark,"St. Petersburg Times, 11/20/1984",1984.08.24-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.24-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.24-Washington.pdf,1984.08.24,1984.08.24,3332,, +1984.08.07,07-Aug-84,1984,Unprovoked,INDONESIA,,Bali,"Sea disaster, foundering of the cargo vessle M/V Dorolonda",9 crewmen,M,,FATAL,Y,,,"Courier Mail, 8/15/1984",1984.08.07-Dorolonda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.07-Dorolonda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.07-Dorolonda.pdf,1984.08.07,1984.08.07,3331,, +1984.07.24.b,24-Jul-84,1984,Unprovoked,USA,Texas,South Padre Island,Swimming,girl,F,13,Lacerations on right foot,N,14h30,,"A. MacCormick, pp.8-9",1984.07.24.b-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.b-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.b-girl.pdf,1984.07.24.b,1984.07.24.b,3330,, +1984.07.24.a,24-Jul-84,1984,Unprovoked,USA,Texas,South Padre Island,Swimming,Carmen Gaytan,F,18,Legs severely lacerated,N,12h00,1.2 m [4'] shark,"A. MacCormick, pp.8-9",1984.07.24.a-Gaytan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.a-Gaytan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.a-Gaytan.pdf,1984.07.24.a,1984.07.24.a,3329,, +1984.07.22,22-Jul-84,1984,Invalid,SOUTH AFRICA,Western Cape Province,Cape Point,Spearfishing,Adrian Hayman,M,21,"FATAL, but shark involvement prior to death could not be determined",Y,11h00,,"P. Landsberg, M.D.",1984.07.22-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.22-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.22-Hayman.pdf,1984.07.22,1984.07.22,3328,, +1984.07.01,01-Jul-84,1984,Unprovoked,USA,Florida,,"During a shark fishing tournament, the 18' Boatem was capsized by waves, throwing 3 men into the water ",William McConnell,M,30,Leg abraded,N,18h00,,"New Orleans Times-Picayune, 3 July 1984; A. MacCormick, p.109-110",1984.07.01-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.01-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.01-McConnell.pdf,1984.07.01,1984.07.01,3327,, +1984.07.00.a,Jul-84,1984,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sodwana,Spearfishing,Rory OConnor,M,,"No injury, shark hit swim fin",N,,Raggedtooth shark ,"R O'Connor, M. Levine, GSAF",1984.07.00-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.00-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.00-O'Connor.pdf,1984.07.00.a,1984.07.00.a,3326,, +1984.06.15,15-Jun-84,1984,Unprovoked,SOUTH AFRICA,Western Cape Province,"Muizenberg, False Bay",Surfing,Selwyn Doran,M,27,"No injury, board bitten",N,17h30,2.4 m [8'] white shark,"The Argus, 6/16/1984",1984.06.15-Doran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.15-Doran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.15-Doran.pdf,1984.06.15,1984.06.15,3325,, +1984.06.03.b,03-Jun-84,1984,Unprovoked,USA,Hawaii,"Kane'ohe Bay, O'ahu",Towing her sister on plastic ski board,Susan Buecher,F,13,Foot bitten,N,17h00,1.2 m to 1.5 m [4' to 5'] hammerhead shark,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1984.06.03.b-Buecher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03.b-Buecher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03.b-Buecher.pdf,1984.06.03.b,1984.06.03.b,3324,, +1984.06.03,03-Jun-84,1984,Unprovoked,VANUATU,Malampa Province,"Atchin Island, off Malakula",Swimming,Felix Brem,M,20s,FATAL,Y,,,"Telegraph, 6/8/1984, p.12 ",1984.06.03-Brem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03-Brem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03-Brem.pdf,1984.06.03,1984.06.03,3323,, +1984.05.31,31-May-84,1984,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Anton Bosman,M,28,Swim fin bitten,N,13h30,,"A. Bosman, M. Levine, GSAF",1984.05.31-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.05.31-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.05.31-Bosman.pdf,1984.05.31,1984.05.31,3322,, +1984.03.17,17-Mar-84,1984,Invalid,SOMALIA,,,Murder,11 stoways,M,, Forced at gunpoint to jump overboard. Presumed fatal; shark involvement probable but not confirmed ,Y,,,"Courier Mail, 5/18/1984",1984.03.17-Eleven-stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.17-Eleven-stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.17-Eleven-stowaways.pdf,1984.03.17,1984.03.17,3321,, +1984.03.14,14-Mar-84,1984,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Surfing,Mark Benvick,M,,"No injury, 8 pressure dings in surboard",N,17h30,,"G. Charter, NSB; M. Levine, GSAF",1984.03.14-Benvick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.14-Benvick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.14-Benvick.pdf,1984.03.14,1984.03.14,3320,, +1984.03.10,10-Mar-84,1984,Boat,SOUTH AFRICA,Eastern Cape Province,Swartkops River mouth,Rowing,"rowboat, occupant: Louis Beyers",M,,"No injury to occupant, shark seized oar and disappeared with it.",N,,2.5 m [8.25'] shark,"M. Levine, GSAF",1984.03.10-Beyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.10-Beyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.10-Beyers.pdf,1984.03.10,1984.03.10,3319,, +1984.03.01,01-Mar-84,1984,Unprovoked,AUSTRALIA,Western Australia,Coral Bay,,Greenwood,,,No details,UNKNOWN,,,"T. Peake, GSAF",1984.03.01-NV-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.01-NV-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.01-NV-Greenwood.pdf,1984.03.01,1984.03.01,3318,, +1984.02.18,18-Feb-84,1984,Provoked,SOUTH AFRICA,Eastern Cape Province,"Paradise Beach, Jeffreys Bay",Fishing,Henri deVilliers Melville,M,,Leg lacerated by hooked shark PROVOKED INCIDENT,N,Night,"Raggedtooth shark, 56-kg [123-lb] ","M. Levine, GSAF; Eastern Province Herald, 6/28/1986",1984.02.18-Melville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.18-Melville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.18-Melville.pdf,1984.02.18,1984.02.18,3317,, +1984.02.17,17-Feb-84,1984,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Shark tank at Oceanographic Research Insitute, Durban",Scuba diving,George Buckland,M,33,Punctures in wetsuit & left arm bruised by captive shark PROVOKED INCIDENT,N,09h00, 1.5 m [5'] dusky shark,"G. Buckland, M. Levine, GSAF",1984.02.17-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.17-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.17-Buckland.pdf,1984.02.17,1984.02.17,3316,, +1984.02.12,12-Feb-84,1984,Invalid,SOUTH AFRICA,Eastern Cape Province,St. Georges Strand,,,,,"Human remains recovered, evidence of scavenging by shark/s",Y,,,"G. Charter, NSB",1984.02.12-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.12-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.12-StGeorgesStrand.pdf,1984.02.12,1984.02.12,3315,, +1984.02.11,11-Feb-84,1984,Unprovoked,AUSTRALIA,Queensland,Derwent Island,Spearfishing,Greg Pearce,M,27,Hand bitten,N,,1.5 m white-tipped reef shark,"Courier-Mail, 2/14/1984, p.3",1984.02.11-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.11-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.11-Pearce.pdf,1984.02.11,1984.02.11,3314,, +1984.01.05,05-Jan-84,1984,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Swimming,Robert Tennent,M,14,Foot bitten,N,09h30,"Raggedtooth shark, 1 m ","R. Tennent, M. Levine, Dr. Dempers & K. Reynolds",1984.01.05-Tennent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.05-Tennent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.05-Tennent.pdf,1984.01.05,1984.01.05,3313,, +1984.01.04,04-Jan-84,1984,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umlaas Canal,,female,F,14,Remains recovered 1-4-1984 showed evidence of defense wounds,Y,,,"G. Charter, B. Davis & G. Cliff, NSB",1984.01.04-UmlaasCanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.04-UmlaasCanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.04-UmlaasCanal.pdf,1984.01.04,1984.01.04,3312,, +1984.00.00.b,1984,1984,Provoked,USA,California,San Francisco,Steinhart Aquarium,Don C. Reed,M,,Head mouthed by captive shark PROVOKED INCIDENT,N,,Sevengill shark,D.C. Reed,1984.00.00.b-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.b-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.b-Reed.pdf,1984.00.00.b,1984.00.00.b,3311,, +1984.00.00.a,1984,1984,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Eric Schwarze,M,,Right foot bitten,N,,,"M. Vosburgh, Orlando Sentinel, 5/28/1988 ",1984.00.00.a-Schwarze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.a-Schwarze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.a-Schwarze.pdf,1984.00.00.a,1984.00.00.a,3310,, +1983.12.30,30-Dec-83,1983,Invalid,GREECE,Andikira Fokithes,,Spearfishing,Ioannis Chrysafis,M,36,"Coroner determined the man was killed by a boat propeller, not a tiger shark",Y,02h45,,"Miami Herald, 1/4/1984; M. Bardanis",1983.12.30-Chrysafis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.30-Chrysafis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.30-Chrysafis.pdf,1983.12.30,1983.12.30,3309,, +1983.12.25,25-Dec-83,1983,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",Surfing,Jeff Herrin,M,17,Left foot & thigh bitten,N,15h30,,"Palm Beach Post, 12/26/1983 ",1983.12.25-Herrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.25-Herrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.25-Herrin.pdf,1983.12.25,1983.12.25,3308,, +1983.12.24,24-Dec-83,1983,Unprovoked,AUSTRALIA,South Australia,"Dangerous Reef, South Neptune Island",Scuba diving for abalone,Neil Williams,M,48,Fingers bitten,N,,12' white shark,"T. Peake, GSAF",1983.12.24-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.24-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.24-Williams.pdf,1983.12.24,1983.12.24,3307,, +1983.12.22,22-Dec-83,1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Great Fish River,Swimming,Colin Biggs,M,16,"Left calf, ankle & foot lacerated",N,12h30,,"C. Biggs, M. Levine, J. Mansfield, Dr. T. Counihan & Dr. Clement",1983.12.22-Biggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.22-Biggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.22-Biggs.pdf,1983.12.22,1983.12.22,3306,, +1983.12.21,21-Dec-83,1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Swimming,Jack Heydenrych,M,47,Shin lacerated,N,08h15,"Raggedtooth shark, >1 m ","R. Horn, East London Aquarium; J. Heydenrych, M.Levine, GSAF",1983.12.21-Heydenrych.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.21-Heydenrych.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.21-Heydenrych.pdf,1983.12.21,1983.12.21,3305,, +1983.12.07,07-Dec-83,1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,LaMercy,,male,M,,"Two feet found in shark, postmortem scavenging",N,,"1.74 m, 116-kg Zambesi shark","R.B. Wilson , G. Cliff, B. Davis & G. Charter, NSB",1983.12.07-feet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.07-feet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.07-feet.pdf,1983.12.07,1983.12.07,3304,, +1983.11.21,21-Nov-83,1983,Sea Disaster,PHILIPPINES,Central Philippines,,Ferry boat sank,Arturo Garces,M,,Left foot nipped,N,,.5 m shark,"Montreal Gazette, 11/28/1983",1983.11.21-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.21-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.21-FerryDisaster.pdf,1983.11.21,1983.11.21,3303,, +1983.11.10.R,Reported 10-Nov-1983,1983,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Michael Burns,M,15,Laceration to left foot,N,,Tiger shark,"St. Petersburg Times, 11/10/1983",1983.11.10.R-Michael-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.R-Michael-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.R-Michael-Burns.pdf,1983.11.10.R,1983.11.10.R,3302,, +1983.11.10,10-Nov-83,1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,Tongaat,Swimming,Pradisha Chanderpaul,F,,Probable drowning and scavenging,Y,,,"R. Wilson, G. Cliff, Natal Sharks Board; GSAF",1983.11.10.a-Chanderpaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.a-Chanderpaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.a-Chanderpaul.pdf,1983.11.10,1983.11.10,3301,, +1983.10.17.a,17-Oct-83,1983,Unprovoked,USA,Florida,"Stuart Beach, Martin County",Surfing,Aryon Kalein,M,16,Puncture marks in leg & surfboard dinged,N,,1.5 m [5'] shark,"Miami Herald, 10/21/1983, p.1C",1983.10.17.a-Kalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.17.a-Kalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.17.a-Kalein.pdf,1983.10.17.a,1983.10.17.a,3300,, +1983.10.13,13-Oct-83,1983,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Charles Hundley,M,20,Lacerations to left ankle,N,,4.5' shark,"Daytona Beach Morning Journal, 10/21/1983",1983.10.13-Hundley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.13-Hundley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.13-Hundley.pdf,1983.10.13,1983.10.13,3299,, +1983.09.04,04-Sep-83,1983,Unprovoked,USA,Florida,"Off Lake Worth, Palm Beach County",Standing,Paul Kolodny,M,15,Abrasions to leg,N,,,"E. Pace, FSAF",1983.09.04-Kolodny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.09.04-Kolodny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.09.04-Kolodny.pdf,1983.09.04,1983.09.04,3298,, +1983.08.20.b,20-Aug-83,1983,Unprovoked,USA,Oregon,"Cape Kiwanda,Tillamook County",Surfing,Randy Weldon,M,,"No injury, board bitten",N,10h00,White shark,"R.N. Lea & D. Miller; R. Collier, p.81",1983.08.20.b-RandyWeldon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.b-RandyWeldon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.b-RandyWeldon.pdf,1983.08.20.b,1983.08.20.b,3297,, +1983.08.20.a,20-Aug-83,1983,Unprovoked,SOUTH AFRICA,Western Cape Province,"Seal Island, False Bay",Spearfishing,Attie Louw,M,29,Inner thighs lacerated,N,10h00,5 m [16.5'] white shark,"A. Louw, M. Levine, GSAF; G. Cliff, NSB",1983.08.20.a-Louw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.a-Louw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.a-Louw.pdf,1983.08.20.a,1983.08.20.a,3296,, +1983.08.15,15-Aug-83,1983,Unprovoked,USA,Virginia,"Virginia Beach, Princess Anne County",Swimming,Jill Redenbaugh,F,14,Foot bitten,N,Morning,Sand shark,"Washington Post, 8/16/1983",1983.08.15-Rendenbaugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.15-Rendenbaugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.15-Rendenbaugh.pdf,1983.08.15,1983.08.15,3295,, +1983.08.13.b,13-Aug-83,1983,Provoked,USA,Florida,"Riviera Beach, Palm Beach County",Skindiving,Louis Goodman,M,14,Hand abraded when he grabbed shark's tail PROVOKED INCIDENT,N,,Nurse shark,M. Vorenburg,1983.08.13.b-Goodman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.b-Goodman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.b-Goodman.pdf,1983.08.13.b,1983.08.13.b,3294,, +1983.08.13.a,13-Aug-83,1983,Unprovoked,USA,Florida,"6 miles south of Boca Chica Key, Monroe County ",Diving,Jackie Lynn,F,22,Right leg severely bitten,N,Morning,6' to 8' bull shark,"Miami Herald, 8/14/1983, p.1D ",1983.08.13.a-JackieLynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.a-JackieLynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.a-JackieLynn.pdf,1983.08.13.a,1983.08.13.a,3293,, +1983.08.06,06-Aug-83,1983,Boat,USA,Rhode Island,,Fishing,2 boats,,,No injury to occupants,N,,,"Providence Journal, 8/7/1983",1983.08.06-RI-boats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.06-RI-boats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.06-RI-boats.pdf,1983.08.06,1983.08.06,3292,, +1983.07.26,26-Jul-83,1983,Sea Disaster,AUSTRALIA,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",Swimming from the New Venture ,Linda Ann Norton,F,21,"FATAL, shark seized her by the chest and took her underwater ",Y,04h00,"Tiger shark, 5 m [16.5']","H. Edwards, pp. 103-104; A. MacCormick, pp.110-112",1983.07.26-Norton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.26-Norton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.26-Norton.pdf,1983.07.26,1983.07.26,3291,, +1983.07.25.b,25-Jul-83,1983,Sea Disaster,AUSTRALIA,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",Swimming from the New Venture ,Dennis Patrick Murphy,M,24,"FATAL, shark bit leg, then dragged him underwater ",Y,Night,"Tiger shark, 5 m [16.5']","H. Edwards, pp. 103-104; A. MacCormick, pp.110-112",1983.07.25.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.b-Murphy.pdf,1983.07.25.b,1983.07.25.b,3290,, +1983.07.25.a,25-Jul-83,1983,Sea Disaster,AUSTRALIA,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",14 m prawn trawler New Venture capsized & sank in heavy seas Three people in the water,Ray Boundy,M,28,"Left knee bitten, but survived",N,Night,"Tiger shark, 5 m [16.5']","H. Edwards, pp.103-104; A. MacCormick, pp.110-112 ",1983.07.25.a-Boundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.a-Boundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.a-Boundy.pdf,1983.07.25.a,1983.07.25.a,3289,, +1983.07.15,15-Jul-83,1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Seal Point, Cape St. Francis",Surfing,Ward Walkup,M,,Left arm injured by shark's tail as it swam beneath his board,N,,3 m to 4 m [10' to 13'] shark,"M. Levine, GSAF",1983.07.15-NV-Walkup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.15-NV-Walkup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.15-NV-Walkup.pdf,1983.07.15,1983.07.15,3288,, +1983.07.12.b,12-Jul-83,1983,Unprovoked,USA,Florida,"Caloosahatchee River, Lee County",Windsurfing,Sandy Komito,F,39,Left ankle nipped (3 punctures wounds),N,Afternoon,3.5' hammerhead shark,"Miami Herald, 7/14/1983, p.12A",1983.07.12.b-Komito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.b-Komito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.b-Komito.pdf,1983.07.12.b,1983.07.12.b,3287,, +1983.07.12.a,08-Jul-83,1983,Unprovoked,BAHAMAS,Abaco Islands,Green Turtle Cay,Spearfishing,Eric Gijsendorfer ,M,13,Lacerations to left calf,N,12h00,,"Miami Herald, 7/13/1983, p.2D",1983.07.12.a-Gijsendorfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.a-Gijsendorfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.a-Gijsendorfer.pdf,1983.07.12.a,1983.07.12.a,3286,, +1983.07.05,05-Jul-83,1983,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",Floating on air mattress,Steven Osterman,,17,"No injury, shark bit air mattress, deflating it",N,,,"E.Pace, FSAF",1983.07.05-Osterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.05-Osterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.05-Osterman.pdf,1983.07.05,1983.07.05,3285,, +1983.06.29,29-Jun-83,1983,Unprovoked,USA,Florida,"Off 12th Street, Miami Beach",Swimming,Howard Rosen,M,42,Left foot bitten,N,11h00,,"Miami Herald, 6/30/1983, ",1983.06.29-Rosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.29-Rosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.29-Rosen.pdf,1983.06.29,1983.06.29,3284,, +1983.06.22,22-Jun-83,1983,Unprovoked,BAHAMAS,Abaco Islands,"Off Sandy Point, Great Abaco Island",Spearfishing,Carl James Harth,M,15,FATAL,Y,16h00,,"Chicago Tribune, 8/21/1983, p.B7",1983.06.22-Harth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.22-Harth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.22-Harth.pdf,1983.06.22,1983.06.22,3283,, +1983.06.20,20-Jun-83,1983,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing & dangling foot in water amid baitfish,Barry Skinner,M,21,Left foot lacerated,N,16h30,,"Miami Herald, 6/22/1983, p.2B",1983.06.20-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.20-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.20-Skinner.pdf,1983.06.20,1983.06.20,3282,, +1983.06.15,15-Jun-83,1983,Unprovoked,BAHAMAS,,Carter Cay,,Roger Yost,M,30,Lacerations to hand & foot,N,11h00,6' blacktip shark,"E. Pace, FSAF",1983.06.15-NV-Yost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-NV-Yost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-NV-Yost.pdf,1983.06.15,1983.06.15,3281,, +1983.06.15,15-Jun-83,1983,Invalid,ITALY,Northwest Italy,Riomaggiore (Ligura),Scuba diving,Roberto Piaviali,M,,"No injury, shark ""harassed"" him at depth of 5 m",N,,3 m [10'] white shark,MEDSAF,1983.06.15-Piaviali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-Piaviali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-Piaviali.pdf,1983.06.15,1983.06.15,3280,, +1983.06.00,Jun-83,1983,Unprovoked,BAHAMAS,Berry Islands,Whale Cay,Spearfishing,Carl Starling,M,,Lacerations to thigh & buttocks,N,17h00,Caribbean reef shark,"E. Pace, FSAF & M. Levine, GSAF",1983.06.00-Starling,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.00-Starling,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.00-Starling,1983.06.00,1983.06.00,3279,, +1983.05.31,31-May-83,1983,Unprovoked,USA,Florida,"Intracoastal Waterway, Boca Raton, Palm Beach County",Water-skiing,Andrew Swersky ,M,21,"Left calf, knee & hands lacerated",N,Dusk,6' shark,"E. Pace; Miami Herald, 6/2/1983, p.10A",1983.05.31-Swersky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.31-Swersky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.31-Swersky.pdf,1983.05.31,1983.05.31,3278,, +1983.05.24,24-May-83,1983,Unprovoked,USA,Florida," Riviera Beach, Palm Beach County",Surfing,Dave Coulter,M,15,"Knocked off board by shark, no injury",N,,,"E. Pace, FSAF",1983.05.24-Coulter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.24-Coulter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.24-Coulter.pdf,1983.05.24,1983.05.24,3277,, +1983.05.21,21-May-83,1983,Unprovoked,USA,Florida,"Haulover Inlet, Dade County",Surfing,Jonathan Popper,M,22,Right foot bitten,N,14h00,,"The Palm Beach Post, 3/15/1989; Miami Herald, 5/22/1983 & 3/15/1989",1983.05.21-Popper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.21-Popper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.21-Popper.pdf,1983.05.21,1983.05.21,3276,, +1983.04.19,19-Apr-83,1983,Unprovoked,USA,Florida,,Surfing,Arnold Schwarzwood,M,,No details,UNKNOWN,,,"M. Vorenberg, GSAF",1983.04.19-NV-Schwarzwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.19-NV-Schwarzwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.19-NV-Schwarzwood.pdf,1983.04.19,1983.04.19,3275,, +1983.04.12,12-Apr-83,1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Bonza Bay,Fishing,Peter S. Venter,M,27,Puncture wounds to foot,N,19h30,"Raggedtooth shark, 1.5 m [5'] (tooth fragment recovered)","R. Horn, East London Aquarium; Natal Witness, 4/14/1983",1983.04.12-Venter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.12-Venter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.12-Venter.pdf,1983.04.12,1983.04.12,3274,, +1983.04.02.b,02-Apr-83,1983,Unprovoked,USA,Florida,"Lake Worth Beach, Palm Beach County",Surfing,Mark Steins,M,16,Left foot bitten,N,11h00,,"Miami Herald, 4/3/1983, p.2D",1983.04.02.b-MarkSteins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.b-MarkSteins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.b-MarkSteins.pdf,1983.04.02.b,1983.04.02.b,3273,, +1983.04.02.a,02-Apr-83,1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,Mpande,,white male,M,,Survived,N,,,"Unverified report, NSB",1983.04.02.a-Mapande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.a-Mapande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.a-Mapande.pdf,1983.04.02.a,1983.04.02.a,3272,, +1983.03.30.a,30-Mar-83,1983,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Spearfishing,Warren Johnson,M,17,Right calf lacerated,N,11h15,1.8 m [6'] Zambezi shark,"W. Johnson, M. Levine, GSAF; G. Charter, B. Davis, G. Cliff, NSB; T. Wallett, pp.65-66",1983.03.30.a-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.30.a-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.30.a-Johnson.pdf,1983.03.30.a,1983.03.30.a,3271,, +1983.03.22,22-Mar-83,1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Ian Johnson,M,,"No injury, board bitten",N,12h30,Blacktip or spinner shark,"G. Cliff, NSB",1983.03.22-IanJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.22-IanJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.22-IanJohnson.pdf,1983.03.22,1983.03.22,3270,, +1983.03.10,10-Mar-83,1983,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Surfing,Dave Lowen,M,,"Shark nudged board, no injury",N,,,"M. Vorenberg, GSAF",1983.03.10-Lowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.10-Lowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.10-Lowen.pdf,1983.03.10,1983.03.10,3269,, +1983.03.00,Mar-83,1983,Unprovoked,NEW CALEDONIA,Loyalty Islands,"We, Lifou",,a teenager,,,Calf bitten,N,,"""a small shark""",W. Leander,1983.03.00-teenager-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.00-teenager-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.00-teenager-NewCaledonia.pdf,1983.03.00,1983.03.00,3268,, +1983.02.20,20-Feb-83,1983,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mtunzini,Paddleskiing,Peter Swart,M,16,Puncture wounds to buttocks,N,12h30,3 m [10'] shark,"G. Charter, B. Davis & G. Cliff; Natal Mercury 2/22/1983",1983.02.20-Swart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.02.20-Swart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.02.20-Swart.pdf,1983.02.20,1983.02.20,3267,, +1983.01.24,24-Jan-83,1983,Provoked,USA,South Carolina,60 miles southeast of Beaufort,Fishing,Chandler Wynn,M,43,Leg bitten by captive shark PROVOKED INCIDENT,N,,,"Wilmington MorningStar, 1/25/1983",1983.01.24-Wynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.24-Wynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.24-Wynn.pdf,1983.01.24,1983.01.24,3266,, +1983.01.15,15-Jan-83,1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,,black male,M,,FATAL,Y,,,"G. Cliff & B. Davis, NSB",1983.01.15-Amanzimtoti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.15-Amanzimtoti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.15-Amanzimtoti.pdf,1983.01.15,1983.01.15,3265,, +1983.01.10,10-Jan-83,1983,Unprovoked,SOUTH AFRICA,Western Cape Province,Muizenberg,Windsurfing,Richard Crewe,M,22,Left foot lacerated,N,18h15,,"Mrs. Crewe, B. Lipschitz, M. Levine, GSAF",1983.01.10-Crewe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.10-Crewe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.10-Crewe.pdf,1983.01.10,1983.01.10,3264,, +1983.01.08,08-Jan-83,1983,Unprovoked,SOUTH AFRICA,Western Cape Province,Holbaai,Spearfishing,Philip DeBruyn,M,32,"No injury, rammed by shark",N,13h00,White shark,"P. deBruyn, M. Levine, GSAF",1983.01.08-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.08-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.08-DeBruyn.pdf,1983.01.08,1983.01.08,3263,, +1983.00.00.d,Ca. 1983,1983,Unprovoked,,English Channel,,Swimming,Padma Shri Taranath Narayan Shenoy,M,,Left leg bitten,N,,,"Times of India, 2/5/2012",1983.00.00.d-Shenoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.d-Shenoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.d-Shenoy.pdf,1983.00.00.d,1983.00.00.d,3262,, +1983.00.00.c,1983,1983,Unprovoked,VANUATU,Malampa Province,"Off the beach opposite Atchin Island, Malakula",Ran into the water,Swedish tourist,M,,"FATAL, arm/shoulder severed ",Y,,,S. Combs,1983.00.00.c-SwissTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.c-SwissTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.c-SwissTourist.pdf,1983.00.00.c,1983.00.00.c,3261,, +1983.00.00.b,1983,1983,Provoked,USA,North & South Carolina,,Fishing,Commercial fishermen,M,,Bitten on their feet by landed sharks / lacerations only PROVOKED INCIDENTS,N,,Blue sharks,F. Schwartz,1983.00.00.b-Carolina-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.b-Carolina-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.b-Carolina-Fishermen.pdf,1983.00.00.b,1983.00.00.b,3260,, +1982.11.00,Nov-82,1982,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",In waist-deep water,male,M,,Arm bitten,N,,, F. Schwartz,1982.11.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.11.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.11.00-male.pdf,1982.11.00,1982.11.00,3259,, +1982.10.13,13-Oct-82,1982,Unprovoked,USA,Florida,North Dade- Interama area of Biscayne Bay,Windsurfing,Rob Savanello ,M,26,Left foot lacerated,N,11h00,1.5 m [5'] shark,"P. Hamm, Miami Herald, 10/15/1982",1982.10.13-Savanello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.10.13-Savanello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.10.13-Savanello.pdf,1982.10.13,1982.10.13,3258,, +1982.09.30.b,30-Sep-82,1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Russell Lindsay,M,16,"No injury, pressure ding on surfboard",N,16h00,,"R. Horn, E.L. Aquarium",1982.09.30.b-Lindsay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.b-Lindsay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.b-Lindsay.pdf,1982.09.30.b,1982.09.30.b,3257,, +1982.09.30.a,30-Sep-82,1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Howard Fawkes,M,16,"No Injury, surfboard bitten",N,14h50,"Believed to involve a 2.8 m [9'3""] white shark","M. Levine, GSAF; R. Horn, E.L. Aquarium; T. Wallett, p.46-47",1982.09.30.a-Fawkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.a-Fawkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.a-Fawkes.pdf,1982.09.30.a,1982.09.30.a,3256,, +1982.09.27,27-Sep-82,1982,Unprovoked,USA,Florida,"Patrick Air Force Base, Brevard County",Surfing,John Cibelli,M,20,Laceration to lower left leg,N,13h30,1.5 m [5'] shark,"Miami Herald, 9/28/1982",1982.09.27-Cibelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.27-Cibelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.27-Cibelli.pdf,1982.09.27,1982.09.27,3255,, +1982.09.25,25-Sep-82,1982,Unprovoked,USA,California,"Monastery Beach, Carmel Bay, Monterey County",Diving,Bruce Lang,M,36,Lacerations to hand,N,Morning,White shark,R. Collier,1982.09.25-Lang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.25-Lang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.25-Lang.pdf,1982.09.25,1982.09.25,3254,, +1982.09.19,19-Sep-82,1982,Unprovoked,USA,California,"Bear Harbor, Mendocino County",Free diving for abalone from Zodiac (submerged),Michael J. Herder,M,28,Upper left thigh & buttocks bitten,N,14h30,5 m to 6 m [16.5' to 20'] white shark,"R.N. Lea & D. Miller; Herder, p. 1-3; R. Collier, pp.89-91; A. MacCormick, pp.80-81",1982.09.19-Herder_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.19-Herder_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.19-Herder_Collier.pdf,1982.09.19,1982.09.19,3253,, +1982.09.04,04-Sep-82,1982,Invalid,USA,Florida,"Hollywood Beach, Broward County",,male,M,mid-20s,"Remains recovered from shark, but shark involvement prior to death unknown",Y,,"Tiger shark, 2.7 m [9'5""], 364-lb","Z. Arocha, Miami Herald, 9/5/1982",1982.09.04-Remains-TigerShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.04-Remains-TigerShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.04-Remains-TigerShark.pdf,1982.09.04,1982.09.04,3252,, +1982.08.29.c,29-Aug-82,1982,Unprovoked,JAPAN,Kumamoto Prefecture,Ariake Bay,,Yako Yajima,M,,FATAL,Y,,,K. Nakaya,1982.08.29.c-Yajima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.c-Yajima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.c-Yajima.pdf,1982.08.29.c,1982.08.29.c,3251,, +1982.08.29.b,29-Aug-82,1982,Invalid,USA,California,"Morro Rock, Morro Bay, San Obispo County",Surfing,John Buchanan,M,17,"No Injury, board bitten",N,10h20,Questionable incident; reported as shark attack but thought to involve a pinniped instead ,"R.N. Lea & D. Miller; R. Collier, pp.87-89 ",1982.08.29.b-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.b-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.b-Buchanan.pdf,1982.08.29.b,1982.08.29.b,3250,, +1982.08.29.a,29-Aug-82,1982,Unprovoked,SOUTH AFRICA,Western Cape Province,Langebaan,Swimming,Verenia Keet,F,18,"Left knee, lower leg & foot bitten",N,12h00,,"V. Keet, M. Levine, GSAF",1982.08.29.a-Keet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.a-Keet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.a-Keet.pdf,1982.08.29.a,1982.08.29.a,3249,, +1982.08.00,Late Aug-1982,1982,Unprovoked,TUNISIA,,"Skanes, near Monaster",Windsurfing,"male, a teen",M,,Thigh lacerated,N,,"2.1 m [7'] shark, possibly a spinner shark",MEDSAF,1982.08.00-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.00-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.00-Tunisia.pdf,1982.08.00,1982.08.00,3248,, +1982.07.31,31-Jul-82,1982,Invalid,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Boogie boarding,Riaan van Rensburg,M,20,"No injury, swim fin bitten",N,16h00,,"M. Levine, GSAF",1982.07.31-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.31-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.31-VanRensburg.pdf,1982.07.31,1982.07.31,3247,, +1982.07.24.b,24-Jul-82,1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Paddleskiing,Brian Archie Plumb,M,38,"No injury, ski bitten",N,16h00,"2.4 m [8'] white shark, species identity confirmed by tooth fragment","B. Plumb, M. Levine, GSAF; R. Horn, E.L. Aquarium; T. Wallett, p.46",1982.07.24.b-Plumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.b-Plumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.b-Plumb.pdf,1982.07.24.b,1982.07.24.b,3246,, +1982.07.24.a,24-Jul-82,1982,Unprovoked,USA,California,"Point Buchon, San Luis Obispo County",Paddle Boarding,Casimir Pulaski,M,26,"No Injury, board bitten",N,11h00,4.5 m to 5.5 m [14.7' to 18'] white shark,"R.N. Lea & D. Miller; R. Collier, pp.86-87; G. Ambrose, pp.113-120",1982.07.24.a-Pulaski_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.a-Pulaski_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.a-Pulaski_Collier.pdf,1982.07.24.a,1982.07.24.a,3245,, +1982.07.19,19-Jul-82,1982,Unprovoked,USA,Florida,"Stuart Beach, Martin County ",Swimming,Jonathan Orth,M,17,Left ankle bitten,N,Late afternoon,0.9 m to 1.2 m [3' to 4'] shark,"Miami Herald, 7/21/1982, p.1D",1982.07.19-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.19-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.19-Orth.pdf,1982.07.19,1982.07.19,3244,, +1982.07.11, 11-Jul-1982,1982,Invalid,USA,California,"Malibu, Los Angeles County",Swimming,Gerald Winkle,M,43,Laceration to left thigh,N,,"Reported as a shark attack, the story was a hoax","Chronicle Telegram, 7/12/1982, p.A4; Daily Herald , 7/13/1982",1982.07.11-Winkle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.11-Winkle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.11-Winkle.pdf,1982.07.11,1982.07.11,3243,, +1982.07.01,01-Jul-82,1982,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Janet Babb,F,19,Laceration to left leg,N,14h30,,"Daytona Beach Morning Journal, 7/2/1982",1982.07.01-Babb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.01-Babb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.01-Babb.pdf,1982.07.01,1982.07.01,3242,, +1982.07.00,Jul-82,1982,Unprovoked,NEW CALEDONIA,South Province,"Sarcelle, Isle of Pines",,Rene Bull,,,Left arm bitten,N,,,W. Leander,1982.07.00-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.00-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.00-Bull.pdf,1982.07.00,1982.07.00,3241,, +1982.06.29,29-Jun-82,1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Ntlonyana Bay,Surfing,Alex Macun,M,27,FATAL,Y,09h30,"2.4 m [8'] white shark, species identity confirmed by witnesses & tooth pattern in surfboard","M. Levine, GSAF; R.B. Wilson, B. Davis, NSB; T. Wallett, p.46",1982.06.29-Macun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.29-Macun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.29-Macun.pdf,1982.06.29,1982.06.29,3240,, +1982.06.26.b,26-Jun-82,1982,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Murray Branson,M,20,Left arm bitten,N,16h30,5' shark,"Chillicothe Constitution Tribune, 6/30/1982",1982.06.26.b-Branson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.b-Branson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.b-Branson.pdf,1982.06.26.b,1982.06.26.b,3239,, +1982.06.26.a,26-Jun-82,1982,Unprovoked,BAHAMAS,Andros Islands,North Rat Cay Reef,Spearfishing ,Philip Sweeting,M,19,Arm severed at elbow,N,,"Lemon shark, 2 m [6'9""]","R. Attrill; R.D. Weeks, GSAF",1982.06.26.a-Sweeting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.a-Sweeting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.a-Sweeting.pdf,1982.06.26.a,1982.06.26.a,3238,, +1982.06.25, 25-Jun-1982,1982,Unprovoked,USA,Florida,"Ormond Beach / Daytona Beach, Volusia County",,Tara Dean,F,8,Foot bitten,N,11h00,,"Wellsboro Gazette, 6/30/1982",1982.06.25-TaraDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.25-TaraDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.25-TaraDean.pdf,1982.06.25,1982.06.25,3237,, +1982.06.13,13-Jun-82,1982,Unprovoked,USA,Hawaii,"Ho'okipa Beach, Pa'ia, Maui","Sailboarding, fell into water 100 yards outside the breakwater",Scott Shoemaker,M,,Thigh bitten 3 times,N,,"1.2 m to 1.5 m [4' to 5'] ""reef shark""","J. Borg, p.76; L. Taylor (1993), pp.106-107; Windsurfing Magazine, Sept/Oct 1993",1982.06.13-Shoemaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.13-Shoemaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.13-Shoemaker.pdf,1982.06.13,1982.06.13,3236,, +1982.05.00,May-82,1982,Invalid,USA,South Carolina,"Daws Island, Broad River (near Beaufort)",,"female, possibly victim of a small plane crash in the vicinity",F,Ca. 33,Human remains recovered,Y,,Tiger shark,"Clay Creswell, GSAF",1982.05.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.05.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.05.00-HumanRemains.pdf,1982.05.00,1982.05.00,3235,, +1982.03.10,10-Mar-82,1982,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Matthew McGrath,M,16,Elbow bitten,N,14h00,,"M. Vorenberg, GSAF",1982.03.10-McGrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.10-McGrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.10-McGrath.pdf,1982.03.10,1982.03.10,3234,, +1982.03.07,07-Mar-82,1982,Unprovoked,AUSTRALIA,New South Wales,"Tallow Beach, Byron Bay",Surfing,Allan Ford,M,20,Legs bitten FATAL,Y,12h00,,"A. Sharpe, pp.4, 86-87",1982.03.07-AllenFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.07-AllenFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.07-AllenFord.pdf,1982.03.07,1982.03.07,3233,, +1982.03.00,Mar-82,1982,Unprovoked,NEW CALEDONIA,,,Spearfishing,Gaston Torii,,,Arm bitten,N,,,W. Leander,1982.03.00-Torii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.00-Torii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.00-Torii.pdf,1982.03.00,1982.03.00,3232,, +1982.02.28,28-Feb-82,1982,Unprovoked,AUSTRALIA,Tasmania,South Cape Bay,Spearfishing,Geert Talen,M,32,"FATAL, body not recovered",Y,,5.5 m [18''] white shark,"C. Black, pp. 159-163",1982.02.28-Talen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.28-Talen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.28-Talen.pdf,1982.02.28,1982.02.28,3231,, +1982.02.27,27-Feb-82,1982,Unprovoked,USA,Florida,"Hobe Sound, Palm Beach County",Surfing,Richard Bauer,M,18,Lacerations to left hand and forearm,N,,4' to 5' shark,"Palm Beach Post, 3/2/1982 ",1982.02.27-Bauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.27-Bauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.27-Bauer.pdf,1982.02.27,1982.02.27,3230,, +1982.02.17,17-Feb-82,1982,Provoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Fishing,J. Jordaan,M,,Leg bitten above ankle by hooked shark taken aboard skiboat PROVOKED INCIDENT,N,,,"Mossel Bay Advertiser, 2/19/1982",1982.02.17-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.17-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.17-Jordaan.pdf,1982.02.17,1982.02.17,3229,, +1982.02.14.b,14-Feb-82,1982,Unprovoked,USA,Hawaii,"White Plains Beach, Barbers Point, O'ahu",Wading,Lisa Miller,F,,Left leg bitten,N,,,"J. Borg, p.75; L. Taylor (1993), pp.104-105",1982.02.14.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.b-Miller.pdf,1982.02.14.b,1982.02.14.b,3228,, +1982.02.14.a,14-Feb-82,1982,Unprovoked,USA,Hawaii,"White Plains Beach, Barbers Point, O'ahu",Swimming,female,F,,Right foot bitten,N,,,"J. Borg, p.75; L. Taylor (1993), pp.104-105",1982.02.14.a-WhitePlainsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.a-WhitePlainsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.a-WhitePlainsBeach.pdf,1982.02.14.a,1982.02.14.a,3227,, +1982.02.13,13-Feb-82,1982,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Swimming,Gladys Sackville,F,75,Shark-bitten body found floating 1.5 miles offshore. Bruises suggested she may have been bitten by the shark before drowning,Y,Prior to 10h37,,"M. Vorenberg, GSAF",1982.02.13-Sackville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.13-Sackville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.13-Sackville.pdf,1982.02.13,1982.02.13,3226,, +1982.02.07.a,07-Feb-82,1982,Unprovoked,USA,California,"Stillwater Cove, Sonoma County",Scuba diving (submerged),"Donald ""Harvey"" Smith",M,,Calf & ankle bitten,N,11h00,5 m [16.5'] white shark,"R.N. Lea & D. Miller; R. Collier, p.86",1982.02.07.a-Smith_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.a-Smith_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.a-Smith_Collier.pdf,1982.02.07.a,1982.02.07.a,3225,, +1982.02.07..b,07-Feb-82,1982,Unprovoked,USA,Florida,Elliot Key,Diving,Kim Seibel ,M,29,"FATAL Disappeared while diving, bathing suit & diving gear recovered bore marks of shark's teeth",Y,,,"Miami Herald, 9/5/1982, p.1B",1982.02.07.b-Seibel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.b-Seibel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.b-Seibel.pdf,1982.02.07..b,1982.02.07..b,3224,, +1982.01.29,29-Jan-82,1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mpekeweni,Swimming,Jeffrey Phillips-Page,M,20,Right shin & toe lacerated,N,16h30,Raggedtooth shark,"J. Phillips-Page, M. Levine, GSAF",1982.01.29-Phillips-Page.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.01.29-Phillips-Page.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.01.29-Phillips-Page.pdf,1982.01.29,1982.01.29,3223,, +1982.00.00.c,1982,1982,Boat,ITALY,Tyrrhenian Sea,"Lacona, Isola d'Elba",Boat,Giovanni Vuoso,M,,No details,UNKNOWN,,6 m [20'] white shark,"A. De Maddalena; Perfetti (1989), M. Zuffa (pers. Comm.)",1982.00.00.c-boat-Vuoso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.c-boat-Vuoso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.c-boat-Vuoso.pdf,1982.00.00.c,1982.00.00.c,3222,, +1982.00.00.b,1982,1982,Boat,ITALY,Tyrrhenian Sea,"Biodola, Isola d'Elba",Fishing on a boat,Giuseppe Campodonico,M,,No injury,N,,White shark,"A. De Maddalena; Perfetti (1989), M. Zuffa (pers. Comm.)",1982.00.00.b-Campodonico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.b-Campodonico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.b-Campodonico.pdf,1982.00.00.b,1982.00.00.b,3221,, +1982.00.00.a,1982,1982,Unprovoked,TUNISIA,Biserta,Bechateur,Spearfishing,English holiday-maker,,,No details,UNKNOWN,,,MEDSAF,1982.00.00.a-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.a-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.a-Tunisia.pdf,1982.00.00.a,1982.00.00.a,3220,, +1981.12.19,19-Dec-81,1981,Unprovoked,USA,California,"South Moss Beach, Spanish Bay, Monterey Peninsula",Surfing,Lewis Boren,M,24,"FATAL, torso bitten ",Y,Evening,7 m [23'] white shark,"R.N. Lea & D. Miller; R. Collier, pp.84-85; A. MacCormick, p.220",1981.12.19-Boren_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.19-Boren_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.19-Boren_Collier.pdf,1981.12.19,1981.12.19,3219,, +1981.12.13.b,13-Dec-81,1981,Unprovoked,AUSTRALIA,Queensland,Green Island,,Zola Dale,,,Abdomen lacerated,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1981.12.13.b-NV-ZolaDale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.b-NV-ZolaDale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.b-NV-ZolaDale.pdf,1981.12.13.b,1981.12.13.b,3218,, +1981.12.13.a,13-Dec-81,1981,Unprovoked,USA,Hawaii,"Nimitz Beach, Barbers Point, O'ahu","Spearfishing, but swimming on surface",Melvin T. Toma,M,,Right leg severely bitten,N,,"Tiger shark, 3.7 m [12']","J. Borg, p.75; L. Taylor (1993), pp.104-105",1981.12.13.a-Toma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.a-Toma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.a-Toma.pdf,1981.12.13.a,1981.12.13.a,3217,, +1981.11.30,30-Nov-81,1981,Unprovoked,REUNION,Saint-Philippe,Vicendo,Spearfishing,Lucien Mercier,M,,Survived,N,Late afternoon,,G. Van Grevelynghe,1981.11.30-Mercier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.30-Mercier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.30-Mercier.pdf,1981.11.30,1981.11.30,3216,, +1981.10.19.b,19-Oct-81,1981,Provoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Inspecting teeth of supposedly dead (hooked & shot) shark,Callie Van Aswegan,M,,Hand lacerated PROVOKED INCIDENT,N,,"3.5 m [11.5'], 510-kg [1125-lb] hooked & shot white shark","M. Levine, GSAF",1981.10.19.b-VanAswegan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.b-VanAswegan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.b-VanAswegan.pdf,1981.10.19.b,1981.10.19.b,3215,, +1981.11.09,09-Nov-81,1981,Unprovoked,USA,Hawaii,"La'au Point, Moloka'i",Diving to untangle a crab trap line from boat's propeller,Leo A. Ohai,M,59,Hand bitten,N,,"2.1 m [7'] shark with ""a very flat head that had followed the boat for 3 days","J. Borg, p.75; L. Taylor (1993), pp.104-105",1981.11.09-Ohai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.09-Ohai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.09-Ohai.pdf,1981.11.09,1981.11.09,3214,, +1981.10.19.a,19-Oct-81,1981,Unprovoked,USA,Florida,"Jupiter Island, Brevard County",Swimming,Van Horn Ely,M,19,Hand & forearm bitten,N,11h30,1.8 m to 2.4 m [6' to 8'] shark,"Chronicle Telegram, 10/20/1981 ",1981.10.19.a-VanHornEly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.a-VanHornEly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.a-VanHornEly.pdf,1981.10.19.a,1981.10.19.a,3213,, +1981.10.17,17-Oct-81,1981,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Robert Conklin,M,,No details,UNKNOWN,09h45,,"M. Vorenberg, GSAF",1981.10.17-NV-Conklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.17-NV-Conklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.17-NV-Conklin.pdf,1981.10.17,1981.10.17,3212,, +1981.10.16,16-Oct-81,1981,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Robert Keifling,M,17,Puncture wounds to left foot,N,,,"The Bulletin, 10/19/1981",1981.10.16-Keifling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.16-Keifling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.16-Keifling.pdf,1981.10.16,1981.10.16,3211,, +1981.10.01,01-Oct-81,1981,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Scott Armstrong,M,24,Laceration to right leg,N,,6' shark,"St. Petersburg Times, 10/3/1981",1981.10.01-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.01-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.01-Armstrong.pdf,1981.10.01,1981.10.01,3210,, +1981.09.28,28-Sep-81,1981,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Stan Wing,M,28,5 puncture marks to hip,N,18h00,,"St. Petersburg Times, 10/1/1981",1981.09.28-Wing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.28-Wing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.28-Wing.pdf,1981.09.28,1981.09.28,3209,, +1981.09.27,27-Sep-81,1981,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,James Smodell,,,Lacerations to right hand,N,,,"Sarasota Herald-Tribune, 9/29/1981",1981.09.27-Smodell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.27-Smodell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.27-Smodell.pdf,1981.09.27,1981.09.27,3208,, +1981.09.15,15-Sep-81,1981,Unprovoked,USA,Florida,"Tampa Bay, Manatee County",Swimming,Mark Meeker,M,26,"FATAL, right calf bitten ",Y,P.M.,Said to involve a tiger shark or a hammerhead shark,"S. Pelham, M.D.; NY Times, 9/21/1981, p.18, col.1; E. Pace, FSAF",1981.09.15-Meeker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.15-Meeker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.15-Meeker.pdf,1981.09.15,1981.09.15,3207,, +1981.09.03.b,03-Sep-81,1981,Unprovoked,USA,Florida,"Patrick Air Force Base, Brevard County",Surfing,Richard Corrack,M,25,Lacerations to 2 fingers of left hand,N,12h00,,"St Petersburg Times, 9/5/1981",1981.09.03.b-Corrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.b-Corrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.b-Corrack.pdf,1981.09.03.b,1981.09.03.b,3206,, +1981.09.03.a,03-Sep-81,1981,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Douglas Christie,M,24,Laceration to foot,N,Morning,,"St Petersburg Times, 9/5/1981",1981.09.03.a-Christie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.a-Christie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.a-Christie.pdf,1981.09.03.a,1981.09.03.a,3205,, +1981.08.29,29-Aug-81,1981,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Stephen Drosdick,M,15,Laceration to left ankle,N,,6' shark,"Pacific Stars and Stripes, 8/31/1981 ",1981.08.29-Drosdick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.29-Drosdick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.29-Drosdick.pdf,1981.08.29,1981.08.29,3204,, +1981.08.24.b,24-Aug-81,1981,Provoked,USA,Florida,Gulf Island National Seashore Park,Spearfishing,Ted Best,M,19,"Shot shark, then it bit him. Puncture wounds on leg PROVOKED INCIDENT",N,,"1.8 m [6'] shark, species identity questionable","A. MacCormick, pp.82-83, citing the New Orleans Times-Picayune, 8/25/1981",1981.08.24.b-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.b-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.b-Best.pdf,1981.08.24.b,1981.08.24.b,3203,, +1981.08.24.a,24-Aug-81,1981,Invalid,USA,Hawaii,"Keaukaha, Hilo, Hawai'i",Fishing,Ernest Watson,M,,Disappeared while fishing from shore. Leg found 7 days later wedged in rocks 150 yards offshore,Y,,Shark involvement prior to death remains unconfirmed,"J. Borg, p.75; L. Taylor (1993), pp.104-105",1981.08.24.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.a-Watson.pdf,1981.08.24.a,1981.08.24.a,3202,, +1981.08.10.b,10-Aug-81,1981,Unprovoked,USA,Florida,"Marathon, Monroe County",Diving,Mike Barber,M,,Bite to face,N,,small nurse shark,"E. Pace, FSAF",1981.08.10.b-Barber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.b-Barber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.b-Barber.pdf,1981.08.10.b,1981.08.10.b,3201,, +1981.08.10.a,10-Aug-81,1981,Unprovoked,USA,Florida,"Ormond Beach / Daytona Beach, Volusia County","16' catamaran capsized previous night, occupants stayed with wreckage until morning, then attempted to swim ashore",Christy Wapniarski,F,19,FATAL,Y,Daybreak,,"E. Pace, GSAF; J. McAniff, SAF; A. MacCormick, pp.12 & 13; Orlando Sentinel, 12/6/1985; K Duffy, Daytona Beach News Journal, 8/26/2001",1981.08.10.a-Wapniarski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.a-Wapniarski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.a-Wapniarski.pdf,1981.08.10.a,1981.08.10.a,3200,, +1981.08.07,07-Aug-81,1981,Unprovoked,BAHAMAS,Grand Bahama Island,"Gingerbread Reef, east of Little Isaac Island ",Snorkeling on surface,Robert Marx,M,53,Upper right arm bitten,N,12h00,Mako shark (tooth fragments recovered),"R. Marx, E. Clark; M. Levine, GSAF; Note: Marx says the incident took place in 8/8/1982 or 1983",1981.08.07-Marx.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.07-Marx.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.07-Marx.pdf,1981.08.07,1981.08.07,3199,, +1981.07.20,20-Jul-81,1981,Unprovoked,USA,Florida,"St. Petersburg Beach, Pinellas County",Swimming,Lisa Drenko,F,16,"Foot bitten between arch & big toe, no stitches required",N,,"""sandshark""","E. Pace, GSAF",1981.07.20-NV-Drenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.20-NV-Drenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.20-NV-Drenko.pdf,1981.07.20,1981.07.20,3198,, +1981.07.18,18-Jul-81,1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Barry Van Der Helm,M,32,7 lacerations to right foot,N,10h15,Possibly a 1.8 m [6'] Zambezi shark,"B. V.D. Helm; R. Horn; M. Levine, GSAF",1981.07.18-vanderHelm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.18-vanderHelm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.18-vanderHelm.pdf,1981.07.18,1981.07.18,3197,, +1981.07.07,07-Jul-81,1981,Unprovoked,USA,Florida,Carter Cay,Spearfishing,Ed Cannette,M,,Left foot & ankle lacerated,N,18h10,2.4 m [8'] shark,"E. Pace, GSAF",1981.07.07-NV-Cannette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.07-NV-Cannette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.07-NV-Cannette.pdf,1981.07.07,1981.07.07,3196,, +1981.07.01,01-Jul-81,1981,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Clansthal,Catching sardines,John Wilson,M,,Laceration to calf,N,,"""gray shark""","Chronicle Telegram, 7/1/1981",1981.07.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.01-Wilson.pdf,1981.07.01,1981.07.01,3195,, +1981.06.15.R,Reported 15-Jun-1981,1981,Boat,ENGLAND,,Isle of Wight,Fishing,2 fishermen,M,,Minor injuries from shark that leapt aboard their boat,N,,"13', 400-lb thresher shark","The Times (London), 6/15/1981",1981.06.15.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.15.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.15.R-Isle-of-Wight.pdf,1981.06.15.R,1981.06.15.R,3194,, +1981.06.12,12-Jun-81,1981,Invalid,USA,Hawaii,"Honoli'i Pali, Hilo Bay ('Alae Point), Hawai'i",,Preston D. Soley,M,,"Probable drowning, 1/3 of shark-multilated body recovered",Y,,1.2 m [4'] shark hindered recovery of body,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1981.06.12-Soley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.12-Soley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.12-Soley.pdf,1981.06.12,1981.06.12,3193,, +1981.05.24,24-May-81,1981,Unprovoked,USA,Hawaii,"Ha'ena Beach Park, Kaua'i","Scuba diving, reportedly also spearfishing",Roger B. Garletts,M,,"FATAL, disappeared, dive gear & shredded tooth-marked wetsuit were recovered",Y,,,"J. Borg, p.87; L. Taylor (1993), pp.104-105",1981.05.24-Garletts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.24-Garletts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.24-Garletts.pdf,1981.05.24,1981.05.24,3192,, +1981.05.23,23-May-81,1981,Unprovoked,SOUTH KOREA,Chungnam,Wae-yeon Island,Shell diving,Pak Kyong-sun ,F,27,FATAL,Y,12h30,6 m white shark,Y. Choi & K. Nakaya,1981.05.23-Pak-Kyong-sun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.23-Pak-Kyong-sun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.23-Pak-Kyong-sun.pdf,1981.05.23,1981.05.23,3191,, +1981.05.20,20-May-81,1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Mark Jury,M,27,"Shark & board collided. No injury, but board was dented",N,08h30,Raggedtooth shark,"M. Jury, M. Levine, GSAF",1981.05.20-Jury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.20-Jury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.20-Jury.pdf,1981.05.20,1981.05.20,3190,, +1981.05.19,19-May-81,1981,Unprovoked,USA,Florida,"Sands Cut, Elliot Key",Free diving,Mohammed Rahimnejad,M,32,Massive tissue damage of left arm,N,,,J. McAniff; Miami Herald 5/22/1981,1981.05.19-Rahimnejad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.19-Rahimnejad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.19-Rahimnejad.pdf,1981.05.19,1981.05.19,3189,, +1981.05.16,16-May-81,1981,Unprovoked,USA,Florida,"Jacksonville, Duval County",Diving,Carey Ford,M,,Left arm bitten,N,,Lemon shark,"E. Pace, FSAF",1981.05.16-NV-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.16-NV-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.16-NV-Ford.pdf,1981.05.16,1981.05.16,3188,, +1981.05.10,10-May-81,1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kings Beach,Surfing,John Dunser,M,19,"No Injury, board bitten",N,14h45,"Raggedtooth shark, 2.5 m [8.25'] ","M. Smale, PE Museum",1981.05.10-Dunser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.10-Dunser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.10-Dunser.pdf,1981.05.10,1981.05.10,3187,, +1981.05.07,07-May-81,1981,Provoked,NAMIBIA,Eronogo Region,Walvis Bay,Finning the shark that bit him,Crewman of Taiwanese tuna boat Sin Shih Ki II,M,,Lacerations PROVOKED INCIDENT,N,,,"M. Levine, GSAF; Natal Witness",1981.05.07.R-WalvisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.07.R-WalvisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.07.R-WalvisBay.pdf,1981.05.07,1981.05.07,3186,, +1981.03.08,08-Mar-81,1981,Sea Disaster,BERMUDA,,,Foundering of the Israeli freighter Mezada,,,,Next day 2 bodies recovered from sharks,N,,,"New York Times, 3/13/1981",1981.03.08-Mezada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.08-Mezada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.08-Mezada.pdf,1981.03.08,1981.03.08,3185,, +1981.05.05,05-May-81,1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Ntlonyane Bay,Surfing,Simon Hammerton,M,24,"Left leg bitten, surgically amputated",N,09h00,"Tiger shark, 2.1 m [7']","S. Hammerton, M. Levine, GSAF; W. Pople, G. Charter, NSB",1981.05.05-Hammerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.05-Hammerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.05-Hammerton.pdf,1981.05.05,1981.05.05,3184,, +1981.03.25,25-Mar-81,1981,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Standing / Wading,Christopher J. Auditore,M,19,"Lacerations on calf, ankle & heel",N,15h00,"1.2 m to 1.5 m [4' to 5'] bull, sandbar or dusky shark",M. Vorenberg,1981.03.25-Auditore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.25-Auditore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.25-Auditore.pdf,1981.03.25,1981.03.25,3183,, +1981.03.24,24-Mar-81,1981,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Robert Thomas,M,24,Puncture wounds on right thigh,N,17h30,C. maculpinnis or C. limbatus,M. Vorenberg,1981.03.24-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.24-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.24-Thomas.pdf,1981.03.24,1981.03.24,3182,, +1981.03.04,04-Mar-81,1981,Unprovoked,CHILE,Coquimbo,"Bahia Totoralillo, 80 km north of Coquimbo",Free diving Spearfishing,Carlos Veraga M.,M,,Foot & ankle bitten,N,10h30,White shark,J. McCosker & A.C. Engana,1981.03.04-Vergara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.04-Vergara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.04-Vergara.pdf,1981.03.04,1981.03.04,3181,, +1981.03.00,Mar-81,1981,Unprovoked,BRAZIL,Rio de Janeiro,Cabo Frio,Diving,,,,,UNKNOWN,,White shark,"Globo, ",1981.03.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.00-Brazil.pdf,1981.03.00,1981.03.00,3180,, +1981.02.19,19-Feb-81,1981,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umtentweni,Swimming,Richard Guy,M,30,Foot lacerated,N,17h20,Juvenile dusky or blacktip shark,"R. Guy, M. Levine, GSAF",1981.02.19-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.19-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.19-Guy.pdf,1981.02.19,1981.02.19,3179,, +1981.02.16,16-Feb-81,1981,Unprovoked,AUSTRALIA,Western Australia,"Leighton Beach, north of Freemantle",Exercising his dog in the shallows,Steven Fawcett,M,,Puncture wounds to foot,N,,1 m hammerhead shark,"A. Sharpe, p.134",1981.02.16-Fawcett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.16-Fawcett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.16-Fawcett.pdf,1981.02.16,1981.02.16,3178,, +1981.02.07,07-Feb-81,1981,Unprovoked,AUSTRALIA,Western Australia,"Parker's Point, Rottnest Island",,Filmer,,,No details,UNKNOWN,,,"T. Peake, GSAF",1981.02.07-NV-Filmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.07-NV-Filmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.07-NV-Filmer.pdf,1981.02.07,1981.02.07,3177,, +1981.02.02,02-Feb-81,1981,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Surfing,Michael A. Reist,M,15,Lacerations & punctures in left calf & ankle,N,13h30,1.8 m to 2.4 m [6' to 8'] hammerhead shark,M. Vorenberg,1981.02.02-Reist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.02-Reist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.02-Reist.pdf,1981.02.02,1981.02.02,3176,, +1981.02.00,Feb-81,1981,Unprovoked,BRAZIL,Rio de Janeiro,Cabo Frio,Spearfishing,,,,Left arm lacerated,N,,,O. Gadig,1981.02.00-CaboFrio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.00-CaboFrio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.00-CaboFrio.pdf,1981.02.00,1981.02.00,3175,, +1981.01.30,30-Jan-81,1981,Unprovoked,USA,Florida,20 miles from Mayport,Commercial spearfishing,Carey Ford,M,25,3 small punctures in scalp & ripped nostril,N,,Tiger shark,J. McAniff,1981.01.30-CareyFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.30-CareyFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.30-CareyFord.pdf,1981.01.30,1981.01.30,3174,, +1981.01.01,01-Jan-81,1981,Invalid,SOUTH AFRICA,KwaZulu-Natal,Widenham,Swimming,Moonsamy Dayalan,M,23,Probable drowning & scavenging,Y,,"Tiger shark, 1.5 m [5']k","W.O. Hutt; W. Pople, G. Charter, B. Davis, Natal Sharks Board",1981.01.01-Dayalan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.01-Dayalan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.01-Dayalan.pdf,1981.01.01,1981.01.01,3173,, +1981.00.00.b,1981,1981,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Surf-skiing,Warren Rowe,M,27,"No injury, ski bitten",N,07h00,"Tiger shark, 2.5 m ","Sunday Mail (QLD), 9/6/1987, p.10",1981.00.00.b-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.b-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.b-Rowe.pdf,1981.00.00.b,1981.00.00.b,3172,, +1981.00.00.a,Summer of 1981,1981,Unprovoked,GREECE,Pagasitikos Gulf,,"Free diving / spearfishing, ",an Austrian tourist,M,,Minor injury,N,,,M. Bardanis,1981.00.00.a-Austrian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.a-Austrian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.a-Austrian-diver.pdf,1981.00.00.a,1981.00.00.a,3171,, +1980.12.30,12-30-1980,1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Paddleskiing,Noel Yates,M,25,"No injury, paddleski bitten",N,17h15,3.5 m [11.5'] shark,"N. Yates, M. Levine, GSAF",1980.12.30-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.30-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.30-Yates.pdf,1980.12.30,1980.12.30,3170,, +1980.12.26,26-Dec-80,1980,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,,male,,,Probable drowning & scavenging,Y,,,"Eastern Province Herald, 12/29/1980",1980.12.26-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.26-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.26-scavenging.pdf,1980.12.26,1980.12.26,3169,, +1980.11.24,24-Nov-80,1980,Unprovoked,REUNION,Grand'Anse,Petite-Ile,Spearfishing,Jean-Michel Pothin,M,22,Bitten twice,N,15h00,1.8 m [6'] white shark,G. Van Grevelynghe,1980.11.24-Pothin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.24-Pothin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.24-Pothin.pdf,1980.11.24,1980.11.24,3168,, +1980.11.18,18-Nov-80,1980,Unprovoked,AUSTRALIA,Western Australia,Lancelin,Swimming,"G.R. Bohan, an Able Seaman stationed on HMAS Stirling at Garden Island",M,,"Right shoulder bitten, puncture wounds on chest & lacerations on his back",N,,,"A. Sharpe, pp.133-134",1980.11.18-Bohan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.18-Bohan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.18-Bohan.pdf,1980.11.18,1980.11.18,3167,, +1980.11.17,17-Nov-80,1980,Invalid,SOUTH AFRICA,KwaZulu-Natal,Mnini,Swimming,Baba Sibaya,M,,Probable drowning & scavenging,Y,,,"W.O. Hutt; G. Charter, B. Davis, Natal Sharks Board",1980.11.17-BabaSibaya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.17-BabaSibaya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.17-BabaSibaya.pdf,1980.11.17,1980.11.17,3166,, +1980.11.11.,11-Nov-80,1980,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Ibson Gomes Vieira ,M,16,FATAL,Y,,,"JC Online, 6/25/2012",1980.11.11-Vieira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.11-Vieira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.11-Vieira.pdf,1980.11.11.,1980.11.11.,3165,, +1980.10.27,27-Oct-80,1980,Unprovoked,USA,Oregon,Off Umpqua River,Surfing,Christopher Cowan,M,29,Thigh lacerated,N,15h45,4 m to 5 m [13' to 16.5'] white shark,"R.N. Lea & D. Miller; R. Collier, pp.83-84",1980.10.27-Cowan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.27-Cowan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.27-Cowan_Collier.pdf,1980.10.27,1980.10.27,3164,, +1980.10.17,17-Oct-80,1980,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,Curt Vikan,M,19,No injury,N,09h30,4 m to 5 m [13' to 16.5'] white shark,"R. N. Lea & D. Miller; R. Collier, pp.82-83",1980.10.17-Vikan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.17-Vikan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.17-Vikan_Collier.pdf,1980.10.17,1980.10.17,3163,, +1980.08.22.R,Reported 22-Aug-1980,1980,Unprovoked,MEXICO,,,Diving in tuna net,Gerald Correria,M,22,FATAL,Y,,,"Valley Independent, 8/22/1980, p.16",1980.08.22.R-Correria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.22.R-Correria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.22.R-Correria.pdf,1980.08.22.R,1980.08.22.R,3162,, +1980.08.10,10-Aug-80,1980,Unprovoked,USA,North Carolina,"Ocean Isle, Brunswick County",Wading,Susan Waters,F,10,Bitten behind knee & lower leg,N,,,"Chronicle Telegram, 8/11/1980; F. Schwartz, p.23",1980.08.10-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.10-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.10-Waters.pdf,1980.08.10,1980.08.10,3161,, +1980.08.04,04-Aug-80,1980,Unprovoked,USA,Hawaii,"Puamana, Lahaina, Maui",Resting on body board,Mark Skidgel,M,,Torso bitten,N,,"Tiger shark, 4.3 m [14'] ","J. Borg, p.75; L. Taylor (1993), pp.104-105 - Note: SAF lists this as 8/10/1980",1980.08.04-Skidgel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.04-Skidgel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.04-Skidgel.pdf,1980.08.04,1980.08.04,3160,, +1980.07.26,26-Jul-80,1980,Unprovoked,SPAIN,Canary Islands,"San Juan de la Rambla, Tenerife",Skin diving,Fuentes Gonzalez Escualo ,M,,Thigh injured,N,,Blue shark,C. Moore,1980.07.26-Escualo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.26-Escualo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.26-Escualo.pdf,1980.07.26,1980.07.26,3159,, +1980.07.27,27-Jul-80,1980,Unprovoked,USA,New Jersey,"Ocean City, Cape May County",Body surfing,Jeff Moffat,M,15,Back bitten,N,15h00,,J. Moffat; W. Ruderman,1980.07.27-Moffat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.27-Moffat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.27-Moffat.pdf,1980.07.27,1980.07.27,3158,, +1980.07.23,23-Jul-80,1980,Unprovoked,USA,Delaware,Dewey Beach,Standing,Phyllis Riley,F,22,"No injury, shark bit her bathing suit",N,Afternoon,4' to 8' shark,"Washington Post, 7/23/1980",1980.07.23-PhyllisRidley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.23-PhyllisRidley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.23-PhyllisRidley.pdf,1980.07.23,1980.07.23,3157,, +1980.07.00,Late Jul-1980,1980,Unprovoked,USA,North Carolina,"Emerald Isle Pier (near Morehead City), Carteret County",Surfing,male,M,,"No injury, bumped off board",N,,,"C. Creswell, GSAF, J. Barnes",1980.07.00-NCsurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-NCsurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-NCsurfer.pdf,1980.07.00,1980.07.00,3156,, +1980.07.00,Early Jul-1980,1980,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Tom Durrance,M,,Lower leg bitten,N,,,"Daytona Beach Morning Journal, 7/9/1980",1980.07.00-Durrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-Durrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-Durrance.pdf,1980.07.00,1980.07.00,3155,, +1980.06.26,26-Jun-80,1980,Provoked,USA,California,"Off San Clemente Island, Los Angeles County",Scuba diving,Valerie Taylor,F,44,Laceration to lower leg PROVOKED INCIDENT,N,,Blue shark,"The Australian Women's Weekly, 10/1/1980",1980.06.26-ValTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.06.26-ValTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.06.26-ValTaylor.pdf,1980.06.26,1980.06.26,3154,, +1980.05.15,15-May-80,1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Fullers Bay,Surfing,Eric Stedman,M,22,"No injury, board bitten",N,08h00,1.8 m [6'] shark,"C. Vernon, G. Ross, P.E. Museum; M. Levine, GSAF",1980.05.15-Stedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.05.15-Stedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.05.15-Stedman.pdf,1980.05.15,1980.05.15,3153,, +1980.04.25,25-Apr-80,1980,Provoked,JAMAICA,St. Mary's Parish,"Priestman's River area, East Portland",Spearfishing,Venus Goulbourne,M,,Hand bitten by speared shark PROVOKED INCIDENT ,N,,,"The Gleaner, 7/27/1980",1980.04.25-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.25-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.25-Venus.pdf,1980.04.25,1980.04.25,3152,, +1980.04.22,22-Apr-80,1980,Sea Disaster,PHILIPPINES,Romblon Province,"Maestre de Campo Island, 120 miles south of Manila",Sinking of the ferryboat Don Juan,,,,FATAL x 2,Y,Night,,"Daily Collegian, 4/24/1980",1980.04.22-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.22-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.22-DonJuan.pdf,1980.04.22,1980.04.22,3151,, +1980.04.00,Apr-80,1980,Unprovoked,MEXICO,Sinaloa,Mazatln,Body surfing,Kim Giambalvo,F,13,Right calf bitten,N,Early afternoon,Tiger shark,K. Giambalvo-Sprague; R. Collier,1980.04.00-Giambalvo-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.00-Giambalvo-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.00-Giambalvo-Sprague.pdf,1980.04.00,1980.04.00,3150,, +1980.03.29,29-Mar-80,1980,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umdhloti,Free diving,Ray Booth,M,52,FATAL,Y,,Tiger shark,"W. Pople, G. Charter, B. Davis, Natal Sharks Board",1980.03.29-RayBooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.29-RayBooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.29-RayBooth.pdf,1980.03.29,1980.03.29,3149,, +1980.03.28,28-Mar-80,1980,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming,J.M.,M,,Right leg bitten,N,Afternoon,2 m shark,M. Szpilman,1980.03.28-JM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.28-JM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.28-JM.pdf,1980.03.28,1980.03.28,3148,, +1980.03.15,15-Mar-80,1980,Sea Disaster,PHILIPPINES,,250 miles southwest of Manila,Sinking of the ferryboat Bongbong 1,2 women,F,,FATAL,Y,,,"Valley Independent, 3/17/1980",1980.03.15-Bongbong1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.15-Bongbong1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.15-Bongbong1.pdf,1980.03.15,1980.03.15,3147,, +1980.03.11,11-Mar-80,1980,Provoked,SOUTH AFRICA,Western Cape Province,Velddrif,Fishing,Frederik Mannetjies Oom Binneman,M,61,Leg lacerated by netted shark PROVOKED INCIDENT,N,,1.5 m [5'] hammerhead shark,"F.M. Binneman, P. Logan, M. Levine, GSAF",1980.03.11-Binneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.11-Binneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.11-Binneman.pdf,1980.03.11,1980.03.11,3146,, +1980.01.31,31-Jan-80,1980,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Ballito,Body boarding,Shaun Wright,M,24,"Both hands & heel of left foot lacerated, right foot severed",N,14h45,"2.8 m [9'3""] white shark","M. Levine, GSAF; W. Pople, G. Charter, B. Davis, NSB; T. Wallett, p.60",1980.01.31-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.31-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.31-Wright.pdf,1980.01.31,1980.01.31,3145,, +1980.01.25,25-Jan-80,1980,Unprovoked,KENYA,Lamu Archipelago,South of Lamu Island,Spearfishing,Dennis Richard,M,29,Ankle & foot lacerated,N,,2.2 m shark,J. E. Randall,1980.01.25-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.25-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.25-Richard.pdf,1980.01.25,1980.01.25,3144,, +1980.01.15,15-Jan-80,1980,Provoked,SOUTH AFRICA,KwaZulu-Natal,Ansteys,Spearfishing,Les Winkworth,M,29,"No injury, rammed & catapulted from the water by shark after he shot at it & missed PROVOKED INCIDENT",N,05h00,"2 m [6'9""] Zambesi shark","L. Winkworth, M. Levine, GSAF",1980.01.15-Winkworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.15-Winkworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.15-Winkworth.pdf,1980.01.15,1980.01.15,3143,, +1980.01.13,13-Jan-80,1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Sardinia Bay,Swimming,Peter Clarke,M,,Abrasion,N,,Hammerhead shark,"Eastern Province Herald, 1/17/1980, M. Levine, GSAF",1980.01.13-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.13-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.13-Clarke.pdf,1980.01.13,1980.01.13,3142,, +1980.01.10,10-Jan-80,1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kings Beach,Swimming,Andy Austin,M,25,3 small punctures on arm,N,18h30,"Raggedtooth shark, 2 m [6'9""] ",M. Smale,1980.01.10-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.10-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.10-Austin.pdf,1980.01.10,1980.01.10,3141,, +1980.01.05,05-Jan-80,1980,Unprovoked,CHILE,Los Vilos,"Punta Negra, Pichidangui",Hookah Diving,Jose Larenas-Miranda,M,,FATAL ,Y,11h00,White shark,J. McCosker & A.C. Engana,1980.01.05-Miranda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.05-Miranda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.05-Miranda.pdf,1980.01.05,1980.01.05,3140,, +1980.00.00.d,Summer 1980,1980,Provoked,NORTH ATLANTIC OCEAN,,Onboard swordfish trawler,Gaffing netted shark,Sidney Hallett,M,34,Arm lacerated by gaffed shark PROVOKED INCIDENT,N,,1.8 m [6'] dogfish,"A. Resciniti, pp.105-106",1980.00.00.d-Hallett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.d-Hallett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.d-Hallett.pdf,1980.00.00.d,1980.00.00.d,3139,, +1980.00.00.c,1980s ,1980,Invalid,GREECE,Island of Kos,,Surfing,male,M,,Knee bitten,N,,Said to involve a white shark but shark involvement not confirmed,MEDSAF,1980.00.00.c-NV-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.c-NV-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.c-NV-Greece.pdf,1980.00.00.c,1980.00.00.c,3138,, +1980.00.00.b,1980,1980,Invalid,SOUTH AFRICA,Eastern Cape Province,Bonza Bay,Spearfishing,Sean Mitchley,M,20,No injury; shark made threat display and impaled itself on spear,N,Early afternoon,"2 m [6'9""] shark","P. Sachs, M. Levine, GSAF",1980.00.00.b-Mitchley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.b-Mitchley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.b-Mitchley.pdf,1980.00.00.b,1980.00.00.b,3137,, +1980.00.00.a,1980s ,1980,Unprovoked,TONGA,Ha'api,Ha'ano Island,Spearfishing,A male from Muitoa,M,20s,Chest bitten,N,AM,,Dr. S. Fonea,1980.00.00.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.a-Tonga.pdf,1980.00.00.a,1980.00.00.a,3136,, +1979.12.21,21-Dec-79,1979,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kenton-on-Sea,Swimming,Carl Shemaly,M,18,Shin lacerated,N,16h20,,"M. Bowker; W. Pople, NSB",1979.12.21-Shemaly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.21-Shemaly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.21-Shemaly.pdf,1979.12.21,1979.12.21,3135,, +1979.12.00,05-Dec-79,1979,Invalid,PORTUGAL,Madeira Islands,"Sao Jorge, Madeira Island",Spearfishing,Fernando Branco de Abreu,M,19,FATAL,Y,,White shark?,C. Moore. GSAF,1979.12.00-Madeira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.00-Madeira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.00-Madeira.pdf,1979.12.00,1979.12.00,3134,, +1979.12.01, 01-Dec-1979,1979,Unprovoked,SOUTH CHINA SEA,,,Diving,Peter Lee,M,32,Toothmarks on head & neck,N,,6' shark,"Sydney Morning Herald, 12/6/1979 ",1979.12.01-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.01-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.01-Lee.pdf,1979.12.01,1979.12.01,3133,, +1979.11.27,27-Nov-79,1979,Unprovoked,USA,Oregon,"Haystack Rock, Cannon Beach, Clatsop County",Surfing,Kenny Doudt,M,20,Multiple major Injuries,N,10h20,"White shark, 4 m [13'] ","D. Miller & R. Collier; R. Collier, p. 76-79; J. McCosker & R.N. Lea; K. Doudt",1979.11.27-KennyDoudt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.27-KennyDoudt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.27-KennyDoudt_Collier.pdf,1979.11.27,1979.11.27,3132,, +1979.11.12,12-Nov-79,1979,Provoked,SOUTH AFRICA,Western Cape Province,Macassar,Shark fishing,"skiboat, occupants: Gustav Boettger, Clive Mason, Keith Murrison & Sweis Olivier",,,"No injury to occupants; hooked shark tore out part of transom, bit skeg of motor and snapped the steel trace PROVOKED INCIDENT",N,,"White shark, 5 m ",GSAF,1979.11.12-ski-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.12-ski-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.12-ski-boat.pdf,1979.11.12,1979.11.12,3131,, +1979.10.22,22-Oct-79,1979,Provoked,SOUTH AFRICA,Eastern Cape Province,Algoa Bay,Fishing,Willie Dorfling,M,,Bitten below right knee by hooked shark pulled onboard skiboat PROVOKED INCIDENT,N,,"Raggedtooth shark, 50-kg [110-lb], 2 m [6.75'] gaffed ",GSAF,1979.10.22-Dorfling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.10.22-Dorfling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.10.22-Dorfling.pdf,1979.10.22,1979.10.22,3130,, +1979.09.14,14-Sep-79,1979,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Scuba diving,Michael Oliver,M,18,Leg bitten,N,,"""a small shark""","Canberra Times, 9/15/1979",1979.09.14-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.09.14-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.09.14-Oliver.pdf,1979.09.14,1979.09.14,3129,, +1979.08.28,28-Aug-79,1979,Unprovoked,HONG KONG,,Mirs Bay,Freedom swimming,male,M,21,"Leg severed, FATAL",Y,,,"Sydney Morning Herald, 8/30/1979 ",1979.08.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.28-HongKong.pdf,1979.08.28,1979.08.28,3128,, +1979.08.26,26-Aug-79,1979,Unprovoked,HONG KONG,Ho Ha Wan Marine Park,,,male,M,16,FATAL,Y,,,"J. Wong, GSAF",1979.08.26-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.26-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.26-NV-HongKong.pdf,1979.08.26,1979.08.26,3127,, +1979.08.05,05-Aug-79,1979,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Kayaking,John P. Seiner,M,49,Lacerations to foot,N,,,"Sarasota Herald Tribune, 8/9/1979",1979.08.05-Seiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.05-Seiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.05-Seiner.pdf,1979.08.05,1979.08.05,3126,, +1979.08.03,03-Aug-79,1979,Unprovoked,THAILAND,Southern Thailand,,Murdered by Thai pirates,male,M,,FATAL,Y,,,"The Canberra Times, 8/3/1979",1979.08.03.R-Pirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.03.R-Pirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.03.R-Pirates.pdf,1979.08.03,1979.08.03,3125,, +1979.06.19,19-Jun-79,1979,Sea Disaster,USA,Florida,10 miles off Cape Canaveral,Floating with life preserver after his boat foundered,William Shaw,M,56,Lacerations to leg,N,Morning,,"Troy Record, 6/21/1979",1979.06.19-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.06.19-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.06.19-Shaw.pdf,1979.06.19,1979.06.19,3124,, +1979.05.27,27-May-79,1979,Invalid,USA,Florida,"Fort Walton Beach, Okaloosa County",Scuba diving,Captain Tommy Edward Neel,M,36,"FATAL, but shark involvement prior to death was not determined",Y,,,"Post Standard, 5/29/1979, p.3",1979.05.27-Neel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.27-Neel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.27-Neel.pdf,1979.05.27,1979.05.27,3123,, +1979.05.05,05-May-79,1979,Provoked,SOUTH AFRICA,Western Cape Province,"Hangklip, False Bay",Spearfishing,Piet Boonzaaier,M,25,Shark rammed diver after he shot it in the head PROVOKED INCIDENT,N,14h00,"White shark, 2.5 m [8.25'] ",Dr. P. Landsberg,1979.05.05-Boonzaaier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.05-Boonzaaier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.05-Boonzaaier.pdf,1979.05.05,1979.05.05,3122,, +1979.05.03,03-May-79,1979,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mbibi,Scuba diving,Alan Edly Symons,M,,"FATAL (presumed), pieces of shark-bitten wetsuit washed ashore but no body was recovered",Y,>12h00,,"W. Pople, G. Charter, B. Davis, NSB",1979.05.03-Symons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.03-Symons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.03-Symons.pdf,1979.05.03,1979.05.03,3121,, +1979.05.00.c,May-79,1979,Unprovoked,NEW CALEDONIA,North Province,Ile Yand (between Poum and Blep),Fishing,,,,"Thigh severely injured, survived",N,,,"W. Leander; Les Nouvelles Caledoniennes, 3/17/2000",1979.05.00.c-fisherman-Yande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.c-fisherman-Yande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.c-fisherman-Yande.pdf,1979.05.00.c,1979.05.00.c,3120,, +1979.05.00.b,May-79,1979,Unprovoked,NEW CALEDONIA,North Province,Balade,,Ferdinand Teanyouen,M,,FATAL,Y,,2 m shark,W. Leander,1979.05.00.b-Teanyouen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.b-Teanyouen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.b-Teanyouen.pdf,1979.05.00.b,1979.05.00.b,3119,, +1979.04.08.b,08-Apr-79,1979,Unprovoked,USA,Florida,"Public Beach (Carlin Park), Jupiter, Palm Beach County",Swimming,Mark Beekler,M,24,Right foot & ankle lacerated,N,13h20,,"M. Vorenberg, GSAF",1979.04.08.b-Beekler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.b-Beekler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.b-Beekler.pdf,1979.04.08.b,1979.04.08.b,3118,, +1979.04.08.a,08-Apr-79,1979,Unprovoked,USA,Florida,"Municipal Beach, Boyton Beach, Palm Beach County",Body surfing,Robert Kennedy III,M,8,Right foot bitten,N,10h30,,"M. Vorenberg, GSAF",1979.04.08.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.a-Kennedy.pdf,1979.04.08.a,1979.04.08.a,3117,, +1979.03.24,24-Mar-79,1979,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Donald A. Stewart,M,27,Foot & ankle bitten,N,11h30,Blacktip or spinner shark,"M. Vorenberg, GSAF",1979.03.24-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.24-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.24-Stewart.pdf,1979.03.24,1979.03.24,3116,, +1979.03.11,11-Mar-79,1979,Unprovoked,USA,California,"Ano Nuevo Island, San Mateo, County",Scuba diving (submerged),Calvin Sloan,M,,"No injury, swim fin bitten",N,10h00,"White shark, 4 m to 5 m [13' to 16.5'] ","D. Miller & R. Collier, R. Collier, p.76",1979.03.11-CalvinSloan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.11-CalvinSloan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.11-CalvinSloan_Collier.pdf,1979.03.11,1979.03.11,3115,, +1979.03.01,01-Mar-79,1979,Boat,SOUTH AFRICA,Western Cape Province,Seal Island,,Fishing boat,,,No Injury,N,,,GSAF,1979.03.01-NV-SealIslandboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.01-NV-SealIslandboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.01-NV-SealIslandboat.pdf,1979.03.01,1979.03.01,3114,, +1979.03.00,Mar-79,1979,Unprovoked,NEW CALEDONIA,Grand Terre,"Five Mile Beach, I'le Ouen",Spearfishing,Manuel Teau,M,,"Presumed FATAL, body not recovered",Y,,,W. Leander,1979.03.00-Teau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.00-Teau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.00-Teau.pdf,1979.03.00,1979.03.00,3113,, +1979.02.21,21-Feb-79,1979,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,"Surfing, collided with shark",Charles Kantor,M,19,Punctures on left thigh,N,13h15,1.5 m to 2 m [5' to 6.75'] shark,"C. Kantor, Dr. Macrae, M. Levine, GSAF; G. Charter, NSB",1979.02.21-Kantor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.02.21-Kantor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.02.21-Kantor.pdf,1979.02.21,1979.02.21,3112,, +1979.00.00,1979,1979,Unprovoked,USA,Hawaii,"South Kohala, Hawai'i",Fishing,elderly male,M,,"FATAL, disappeared while fishing from shore, divers recovered his hand",Y,,,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1979.00.00-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.00.00-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.00.00-ElderlyMale.pdf,1979.00.00,1979.00.00,3111,, +1978.12.29,29-Dec-78,1978,Unprovoked,AUSTRALIA,Queensland,Bribie Island,,Wayne Brown,M, ,Survived,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1978.12.29-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.29-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.29-Brown.pdf,1978.12.29,1978.12.29,3110,, +1978.12.12,12-Dec-78,1978,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sodwana,Spearfishing,Phillip 'Flip' Steenkamp,M,23,"FATAL, legs bitten ",Y,16h45,"White shark, 2.3 m [7.5'], tooth fragment recovered","M. Levine, GSAF; W. Pople, G. Charter, NSB; Dr. Marais; T. Wallett, pp.57-58",1978.12.12-Steenkamp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.12-Steenkamp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.12-Steenkamp.pdf,1978.12.12,1978.12.12,3109,, +1978.11.26,26-Nov-78,1978,Unprovoked,USA,Hawaii,"Ewa, O'ahu",Surfing,Wendell Cabunoc,M,,Left arm bitten,N,,2.4 m [8'] shark,"Star-Phoenix, 11/29/1978",1978.11.26-Cabunoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.26-Cabunoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.26-Cabunoc.pdf,1978.11.26,1978.11.26,3108,, +1978.11.23,23-Nov-78,1978,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Surfing,Jorge Alvarez,M,17,Hand lacerated,N,,,"New York Times, 11/26/1978, p.24",1978.11.23-Alvarez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.23-Alvarez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.23-Alvarez.pdf,1978.11.23,1978.11.23,3107,, +1978.10.21,21-Oct-78,1978,Invalid,SOUTH AFRICA,KwaZulu-Natal,"Fishing camp, St. Lucia Estuary",Fishing,Mr. Kuppasamy,M,,Scavenged or FATAL (may have involved foul play),Y,Dusk,"Tiger shark, 3m ","Natal Parks Board, J. Daniel; W. Pople, G. Charter, GSAF",1978.10.21-Kuppasamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.10.21-Kuppasamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.10.21-Kuppasamy.pdf,1978.10.21,1978.10.21,3106,, +1978.09.27,27-Sep-78,1978,Unprovoked,SOUTH AFRICA,Western Cape Province,"Miller's Point, False Bay",Spearfishing,Erik Lombard,M,27,"No injury, shark took his catch, then towed & pushed diver through the water ",N,16h00,"White shark, 3.7 m [12'] ","E. Lombard, M. Levine, GSAF",1978.09.27-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.27-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.27-Lombard.pdf,1978.09.27,1978.09.27,3105,, +1978.09.16,16-Sep-78,1978,Unprovoked,ITALY,Tyrrhenian Sea,Capo d'Anzio,Diving,Fabrizio Marini,M,,No injury,N,11h00,"White shark, 5 m [16.5'] ",A. De Maddalena; Marini (1989),1978.09.16-Marini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.16-Marini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.16-Marini.pdf,1978.09.16,1978.09.16,3104,, +1978.09.02.R,Reported 02-Sep-1978,1978,Unprovoked,AUSTRALIA,Tasmania,"Cape Pillar, Storm Bay",Scuba diving for abalone,Jim Scott,M,34,Several broken ribs,N,,15' shark,"Chronicle Telegram, 9/2/1978 ",1978.09.02.R-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.02.R-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.02.R-Scott.pdf,1978.09.02.R,1978.09.02.R,3103,, +1978.08.05,05-Aug-78,1978,Unprovoked,USA,California,"Pajaro Dunes, Santa Cruz County",Wading,Pat DuNah,M,,Punctures on leg (minor injury),N,12h45,"2 m [6'9""] shark","D. Miller & R. Collier, R. Collier, p.75 ",1978.08.05-DuNah_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.05-DuNah_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.05-DuNah_Collier.pdf,1978.08.05,1978.08.05,3102,, +1978.08.01.R,Reported 01-Aug-1978,1978,Unprovoked,USA,Florida,Florida Straits,Floating on inner tube raft,Ramon Cordoba,M,27,Minor injury to ankle,N,,,"Miami News, 8/1/1978",1978.08.01.R-Cordoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.01.R-Cordoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.01.R-Cordoba.pdf,1978.08.01.R,1978.08.01.R,3101,, +1978.07.27,27-Jul-78,1978,Sea Disaster,USA,South Carolina,,"Explosion destroyed 28' boat, survivors in the water ",Sam Boger,M,39,"No injury, his foot was bumped by a shark biting the body of a passenger that had drowned.",N,,,"NY Times, 7/28/1978, p.6, col.6",1978.07.27-Boger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.27-Boger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.27-Boger.pdf,1978.07.27,1978.07.27,3100,, +1978.07.19,19-Jul-78,1978,Provoked,USA,California,"Newport Beach, Orange County",Fishing,Harry Griffet,M,27,Laceration to leg by hooked shark PROVOKED INCIDENT,N,,,"Fresno Bee, 7/19/1978",1978.07.19-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.19-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.19-Griffet.pdf,1978.07.19,1978.07.19,3099,, +1978.06.21.b,21-Jun-78,1978,Unprovoked,USA,Florida,"South of Neptune Beach, Duval County",Surfing,Fred Dean Hunt,M,20,Foot bitten,N,,,"Bryan Times, 6/23/1978",1978.06.21.b-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.b-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.b-Hunt.pdf,1978.06.21.b,1978.06.21.b,3098,, +1978.06.21.a,21-Jun-78,1978,Unprovoked,USA,Florida,"Neptune Beach, Duval County",Surfing,Mack Shelton,M,17,Foot nipped,N,,,"Bryan Times, 6/23/1978",1978.06.21.a-Shelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.a-Shelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.a-Shelton.pdf,1978.06.21.a,1978.06.21.a,3097,, +1978.06.07,07-Jun-78,1978,Invalid,ITALY,Golfo de Venezia,Acqua alta research platform,,,,,"No injury, shark struck platform",N,,White shark,A. DeMaddalena,1978.06.07-Platform.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.07-Platform.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.07-Platform.pdf,1978.06.07,1978.06.07,3096,, +1978.04.02.b,02-Apr-78,1978,Unprovoked,MARSHALL ISLANDS,Ralik Archipelago,Enewetak Atoll,Diving,Philip Light,M,25,Laceration to left hand,N,,,"Modesto Bee, 4/4/1978",1978.04.02.b-Light.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.b-Light.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.b-Light.pdf,1978.04.02.b,1978.04.02.b,3095,, +1978.04.02.a,02-Apr-78,1978,Unprovoked,MARSHALL ISLANDS,Ralik Archipelago,Enewetak Atoll,Diving,Mike deGruy,M,23,Lacerations to right forearm ,N,,,"Modesto Bee, 4/4/1978",1978.04.02.a-DeGruy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.a-DeGruy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.a-DeGruy.pdf,1978.04.02.a,1978.04.02.a,3094,, +1978.04.00,Apr-1978`,1978,Unprovoked,AUSTRALIA,Tasmania,Beechford,Scuba diving,Colin Wrankmore,M,,Thigh bitten,N,,"Sevengill shark, 2.4 m","C. Black, pp. 157-159",1978.04.00-Wrankmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.00-Wrankmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.00-Wrankmore.pdf,1978.04.00,1978.04.00,3093,, +1978.03.05,05-Mar-78,1978,Boat,SOUTH AFRICA,Eastern Cape Province,"Gulu Deep, East London",,"6 m skiboat, occupants: P.A. Reeder & crew",,,"No injury to occupants; shark rammed boat 4 times, bit engine & cracked the hull",N,,,GSAF,1978.03.05-GuluDeep.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.03.05-GuluDeep.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.03.05-GuluDeep.pdf,1978.03.05,1978.03.05,3092,, +1978.02.28,28-Feb-78,1978,Unprovoked,SOUTH AFRICA,Western Cape Province,"Seal Island, False Bay",Fishing for mackerel,"The June, occupants Bunny Pendelbury and crew of 6",,,"Shark jumped in boat, but no injury to occupants",N,03h00,270 kg shark,"Eastern Province Herald, 3/2/1978",1978.02.28-PendleburyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.28-PendleburyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.28-PendleburyBoat.pdf,1978.02.28,1978.02.28,3091,, +1978.02.19,19-Feb-78,1978,Unprovoked,SOUTH AFRICA,Western Cape Province,"Miller's Point, False Bay",Diving,Nicky Alberts,M,,"No injury, rammed by shark",N,,White shark,"Natal Mercury, 2/21/1978",1978.02.19-NickyAlberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.19-NickyAlberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.19-NickyAlberts.pdf,1978.02.19,1978.02.19,3090,, +1978.01.17,07-Jan-78,1978,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Glenashley,Surfing,Laurence Evans,M,17,"Left leg, ankle & foot bitten",N,12h45,Thought to involve a blacktip shark,"W. Pople, G. Charter, B. Davis, NSB",1978.01.17-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.17-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.17-Evans.pdf,1978.01.17,1978.01.17,3089,, +1978.01.06,06-Jan-78,1978,Invalid,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,,,M,,"Human head recovered from sharks gut, probable drowning / scavenging",Y,,"Tiger shark, 3 m [10']k","W. Pople, NSB",1978.01.06.R-CapeVidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.06.R-CapeVidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.06.R-CapeVidal.pdf,1978.01.06,1978.01.06,3088,, +1978.00.00.b,1978,1978,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Sharon Wolfe Cranston,F,,Foot bitten,N,,,"The Beachside Resident, 9/19/2010",1978.00.00.b-Cranston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.b-Cranston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.b-Cranston.pdf,1978.00.00.b,1978.00.00.b,3087,, +1978.00.00.a,1978,1978,Unprovoked,VANUATU,Malampa Province,"Ranon, Ambryn",Swimming,Vanuatu Weekly Hebdomadaire,F,,FATAL,Y,,,"N. Bird, Tok Blong Pacific, 9/22/2003",1978.00.00.a-Bong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.a-Bong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.a-Bong.pdf,1978.00.00.a,1978.00.00.a,3086,, +1977.12.31,31-Dec-77,1977,Sea Disaster,USA,Hawaii,2 miles off Keahole Airport,"Swimming, after single-engine aircraft went down in the sea",Harold Corbett,M,49,Feet lacerated,N,Night,,"NY Times, 1/3/1978, p.14, col.1",1977.12.31-Corbett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.31-Corbett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.31-Corbett.pdf,1977.12.31,1977.12.31,3085,, +1977.12.19.b,19-Dec-77,1977,Unprovoked,USA,Florida,"Hobe Sound, Palm Beach County",Surfing,Raymond Brockway,M,27,Laceration to right hand,N,,,"Sarasota Herald-Tribune, 12/20/1977",1977.12.19.b-Brockway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.b-Brockway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.b-Brockway.pdf,1977.12.19.b,1977.12.19.b,3084,, +1977.12.19.a,19-Dec-77,1977,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Qolera River,Surfing,Kim Pearce,M,18,"Both legs bitten, 2 days later gangrene necessitated surgical amputation of left leg at mid-thigh",N,10h00,"Tiger shark, 3 m [10']","K. Pearce, M. Levine, GSAF; W. Pople, B. Davis, G. Charter, NSB; T. Wallett, p.42",1977.12.19.a-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.a-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.a-Pearce.pdf,1977.12.19.a,1977.12.19.a,3083,, +1977.12.00,Dec-77,1977,Boat,SOUTH AFRICA,Western Cape Province,"Macassar, False Bay",Fishing for bottom fish,"boat, occupant: Danie Schoeman",,,No injury to occupant: shark bit boat's port chine,N,,3 m [10'] white shark (Tooth recovered from boat),"T. Wallett, p.38",1977.12.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.00-Schoeman.pdf,1977.12.00,1977.12.00,3082,, +1977.11.12,12-Nov-77,1977,Provoked,SOUTH AFRICA,Western Cape Province,Klein River Lagoon,Standing,male,M,,Shark lacerated his hand when he grabbed it by the tail PROVOKED INCIDENT,N,,1.5 to 2 m [5' to 6.75'] shark,"Times of Hermanus, 11/16/1977",1977.11.12-KleinRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.11.12-KleinRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.11.12-KleinRiver.pdf,1977.11.12,1977.11.12,3081,, +1977.10.30,30-Oct-77,1977,Unprovoked,SOUTH AFRICA,Western Cape Province,"Bluegums Rock, Partridge Point",Spearfishing,Andre Hartman,M,25,"No injury, shark bit speargun & pushed diver through the water",N,16h00,"White shark, 5 m [16.5'] ","A. Hartman; M. Levine, GSAF",1977.10.30-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.10.30-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.10.30-Hartman.pdf,1977.10.30,1977.10.30,3080,, +1977.08.31,31-Aug-77,1977,Unprovoked,AUSTRALIA,South Australia,"Cactus Beach, near Ceduna",Surfing,Philip Horley,M,17,"Board rammed & bitten, left thigh lacerated",N,16h00,White shark,"The Age, 9/2/1977",1977.08.31-Horley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.31-Horley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.31-Horley.pdf,1977.08.31,1977.08.31,3079,, +1977.08.23,23-Aug-77,1977,Unprovoked,AUSTRALIA,Queensland,"Buddina Beach, south of Noosa",Floating on an inflatable raft,George Walter,M,25,"FATAL, left arm severed, legs bitten ",Y,,,"The Age, 9/1/1977; A. Sharpe, p.104",1977.08.23-Walter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.23-Walter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.23-Walter.pdf,1977.08.23,1977.08.23,3078,, +1977.08.19,19-Aug-77,1977,Boat,SOUTH AFRICA,Western Cape Province,Off Macassar Beach,Fishing,"6 m skiboat, occupants: Alex Mamacos, Noel Glintenkamp, Tony Mountifield & Dillon Alexandra",M,,"Shark leapt into boat, pinning Mamacos beneath and fracturing his pelvis, then trashed the boat rendering it inoperable",N,13h30,White shark,"T. Wallett, pp.33-34",1977.08.19-Mamacos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.19-Mamacos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.19-Mamacos.pdf,1977.08.19,1977.08.19,3077,, +1977.08.14,14-Aug-77,1977,Unprovoked,USA,California,"McClure Beach, near Tomales Point, Marin County",Free diving for abalone (surfacing),Glenn Friedman,M,20,Leg lacerated,N,11h45,"White shark, 5.5 m to 6 m [18' to 20'] ","D. Miller & R. Collier, R. Collier, pp.73-74; J. McCosker & R.N. Lea ",1977.08.14-Friendman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.14-Friendman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.14-Friendman_Collier.pdf,1977.08.14,1977.08.14,3076,, +1977.08.05,05-Aug-77,1977,Invalid,USA,Florida,"St. Petersburg, Pinellas County",Wading,Michael Muradian,M,17,Lacerations to hip and leg,N,12h00,Shark involvement not confirmed,"St. Petersburg Independent, 8/8/1977",1977.08.05-Muradian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.05-Muradian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.05-Muradian.pdf,1977.08.05,1977.08.05,3075,, +1977.07.02,02-Jul-77,1977,Sea Disaster,USA,California,"Off San Diego, San Diego County",40' fishing boat sank,Steve Posey,M,21,Laceration to right hand,N,Night,,"The Times (San Mateo), 7/5/1977",1977.07.02-Posey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.07.02-Posey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.07.02-Posey.pdf,1977.07.02,1977.07.02,3074,, +1977.06.26,26-Jun-77,1977,Provoked,USA,Florida,"12 miles northeast of Mayport, Duval County",Spearfishing / Scuba diving,Willie White,M,27,"PROVOKED INCIDENT Diver poked shark with spear, then shark bit his right foot",N,Late afternoon,"Bull shark, 8","News Tribune, 6/28/1977 & 7/14/1977 ",1977.06.26-WillieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.26-WillieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.26-WillieWhite.pdf,1977.06.26,1977.06.26,3073,, +1977.06.06,06-Jun-77,1977,Unprovoked,USA,Texas,Padre Island,Collecting fish from net,"Dan Baen, Jr.",M,25,Lacerations to wrist,N,,"Bull shark, 4' to 5' ","Abilene Reporter-News, 6/9/1977",1977.06.06-Baen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.06-Baen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.06-Baen.pdf,1977.06.06,1977.06.06,3072,, +1977.05.26,26-May-77,1977,Boat,SOUTH AFRICA,Western Cape Province,13 km off Knysna ,Fishing for yellowtail,"5 m skiboat Graanjan, occupants: Rudy van Graan, Jan de Waal Lombard",M,,Lombard's thigh was lacerated by shark that leapt into boat ,N,,"Mako shark, 2.3 m, 150-kg ","T. Wallett, pp.32-33",1977.05.26-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.26-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.26-Lombard.pdf,1977.05.26,1977.05.26,3071,, +1977.05.16,16-May-77,1977,Invalid,AUSTRALIA,Queensland,Southport,,Gordon Gibbs,M,,"Missing, believed taken by a shark",N,,,"Courier-Mail, 10/2/1992, p.2",1977.05.16-NV-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.16-NV-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.16-NV-Gibbs.pdf,1977.05.16,1977.05.16,3070,, +1977.04.26,26-Apr-77,1977,Unprovoked,AUSTRALIA,Queensland,Tallebudgera,,Gary Jones,M,,Survived,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1977.04.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.26-Jones.pdf,1977.04.26,1977.04.26,3069,, +1977.04.21,21-Apr-77,1977,Unprovoked,USA,Hawaii,"Ka'anapali, Maui",Swimming,Ruskin Vest,M,,Arm bitten,N,,1.2 m [4'] shark,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1977.04.21-Vest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.21-Vest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.21-Vest.pdf,1977.04.21,1977.04.21,3068,, +1977.03.17,17-Mar-77,1977,Unprovoked,SOUTH AFRICA,Western Cape Province,"Lappiesbaai Beach, Stilbaai",Swimming,Dr. Rolf Johan Lund,M,31,Right foot bitten,N,17h00,,"R.J. Lund, M. Levine, GSAF; T. Wallett, pp.41-42",1977.03.17-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.17-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.17-Lund.pdf,1977.03.17,1977.03.17,3067,, +1977.03.13.c,13-Mar-77,1977,Sea Disaster,AUSTRALIA,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",Verdon Harrison,M,32,"His feet were bitten by sharks, but he was rescued by a charter boat that arrived on the scene just an hour and 15 minutes after the sharks first appeared, too late to save the lives of Hayes and Beaver",N,,,"Sunday Mail (QLD), 10/11/1992, p.109; A. Sharpe, pp.103-104",1977.03.13.c-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.c-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.c-Harrison.pdf,1977.03.13.c,1977.03.13.c,3066,, +1977.03.13.b,13-Mar-77,1977,Sea Disaster,AUSTRALIA,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",Victor Beaver,M,74,FATAL,Y,,,"Sunday Mail (QLD), 10/11/1992, p.109; A. Sharpe, pp.103-104",1977.03.13.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.b-Beaver.pdf,1977.03.13.b,1977.03.13.b,3065,, +1977.03.13.a,13-Mar-77,1977,Sea Disaster,AUSTRALIA,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",John Hayes,M,45,FATAL,Y,,,"Sunday Mail (QLD), 10/11/1992, p.109; A. Sharpe, pp.103-104",1977.03.13.a-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.a-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.a-Hayes.pdf,1977.03.13.a,1977.03.13.a,3064,, +1977.02.26,26-Feb-77,1977,Unprovoked,AUSTRALIA,New South Wales,"Kingscliffe Beach, south of Tweed Heads","Pushed surfmat of a young girl out of the shark's path, drawing shark's attention to his own board",Paul Howard,M,24,"Left hand, arm & leg lacerated, & shark bit chunk out of his surfboard",N,,4 m [13'] shark,"Ruston Daily Leader, 2/28/1977; A. Sharpe, p.86",1977.02.26-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.26-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.26-Howard.pdf,1977.02.26,1977.02.26,3063,, +1977.02.04,04-Feb-77,1977,Invalid,AUSTRALIA,Victoria,Sorrento Back Beach,,male,M,,Shark involvement prior to death was unconfirmed,Y,,,"The Age, 2/8/1977",1977.02.04-Sorrento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.04-Sorrento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.04-Sorrento.pdf,1977.02.04,1977.02.04,3062,, +1977.02.00,Feb-77,1977,Unprovoked,NEW CALEDONIA,,I'le Ouen,,Jean Blanchet,,,Face & thorax bitten,N,,,W. Leander,1977.02.00-Blanchet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.00-Blanchet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.00-Blanchet.pdf,1977.02.00,1977.02.00,3061,, +1977.01.00,Jan-77,1977,Unprovoked,MEXICO,Guerrero,La Playa Hornos (near Acapulco),Swimming,Mexican male,M,,"FATAL, left leg severed, neck cut ",Y,14h30,,"A.Resciniti, p.107",1977.01.00-MexicanMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.01.00-MexicanMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.01.00-MexicanMale.pdf,1977.01.00,1977.01.00,3060,, +1976.12.29,29-Dec-76,1976,Unprovoked,AUSTRALIA,Queensland,Caloundra,,Graham Archall,M,,Survived,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1976.12.29-Archall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.29-Archall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.29-Archall.pdf,1976.12.29,1976.12.29,3059,, +1976.12.18,18-Dec-76,1976,Unprovoked,USA,California,"San Miguel Island, Santa Barbara County",Hookah diving for abalone (submerged),Jay Worrell,M,29,Buttocks & hip bitten,N,09h00,"White shark, 5.5 m [18'] ","D. Miller & R. Collier, R. Collier, pp.72-73; J. McCosker & R.N. Lea",1976.12.18-Worrell_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.18-Worrell_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.18-Worrell_Collier.pdf,1976.12.18,1976.12.18,3058,, +1976.11.27,27-Nov-76,1976,Unprovoked,SOUTH AFRICA,Western Cape Province,Clifton,"Thrashing the water / imitating the shark victim from ""Jaws""",Geoffrey Kirkam Spence,M,19,Torso bitten,N,16h05,"White shark, 3 m [10'] k","G. Spence, M. Levine, P. Snydercombe, P. Schwartz, Rousseau, J. Wallace, R.M. Strover; T. Wallett, pp.42-47",1976.11.27-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.27-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.27-Spence.pdf,1976.11.27,1976.11.27,3057,, +1976.11.26,26-Nov-76,1976,Invalid,AUSTRALIA,Queensland,Southport Bar,,Albert van Ryseen,,,"Missing, believed taken by a shark, but not confirmed",Y,,,"Courier-Mail, 10/2/1992, p.2",1976.11.26-NV-vanRyseen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.26-NV-vanRyseen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.26-NV-vanRyseen.pdf,1976.11.26,1976.11.26,3056,, +1976.11.25,25-Nov-76,1976,Unprovoked,USA,Florida,"Delray Beach, Palm Beach County",Surfing,Al Brenneka,M,19,"Right arm severed 1"" below elbow with extensive tissue loss 3"" above elbow",N,10h55,2.1 m [7'] lemon shark or bull shark,"A. Brenneka; E. Pace; NY Times, 11/26/1976, I, p.18, col.6",1976.11.25-Brenneka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.25-Brenneka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.25-Brenneka.pdf,1976.11.25,1976.11.25,3055,, +1976.11.23,23-Nov-76,1976,Invalid,SOUTH AFRICA,KwaZulu-Natal,Warner Beach,Swimming,Jimmy Jackson,M,17,Laceration to foot,N,,,Natal Mercury,1976.11.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.23-Jackson.pdf,1976.11.23,1976.11.23,3054,, +1976.11.06,Nov-76,1976,Provoked,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for white shark,"boat, occupant: Danie Schoeman",,,"No injury to occupants. Hooked shark bit boat's transom, PROVOKED INCIDENT",N,,"White shark, 4.8 m ","T. Wallett, p.37-38",1976.11.06-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.06-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.06-Schoeman.pdf,1976.11.06,1976.11.06,3053,, +1976.10.27,27-Oct-76,1976,Boat,SOUTH AFRICA,Western Cape Province,Gordons Bay,Boat,"7 m skiboat Alrehmah III, occupants: Adolph Schlechter & 3 friends",,,"No injury to occupants, shark leapt on bow of boat",N,,White shark,"T. Wallett, p.32",1976.10.27-AlremahII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.27-AlremahII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.27-AlremahII.pdf,1976.10.27,1976.10.27,3052,, +1976.10.18,18-Oct-76,1976,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,William Kennedy,M,25,Leg bitten ,N,14h30,"White shark, 3 m to 4 m [10' to 13'] ","D. Miller & R. Collier, R. Collier, pp.70-71; J. McCosker & R.N. Lea",1976.10.18-Kennedy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.18-Kennedy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.18-Kennedy_Collier.pdf,1976.10.18,1976.10.18,3051,, +1976.10.06,06-Oct-76,1976,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape St. Francis,Surfing,Marshall Flanagan,M,20,Left thigh lacerated,N,11h00,"White shark, 3.5 m [11.5'], species identity confirmed by tooth fragment","M. Levine, GSAF; J. Wallace,ORI; T. Wallett, p.40-41",1976.10.06-Flanagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.06-Flanagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.06-Flanagan.pdf,1976.10.06,1976.10.06,3050,, +1976.09.22,22-Sep-76,1976,Sea Disaster,NEW CALEDONIA,,Sarcelle,Shipwreck,a small boat,,,It was believed that survivors were killed by sharks,N,,,W. Leander,1976.09.22-NewCaledoniaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.22-NewCaledoniaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.22-NewCaledoniaBoat.pdf,1976.09.22,1976.09.22,3049,, +1976.09.19,19-Sep-76,1976,Unprovoked,AUSTRALIA,South Australia,"Point Lowly, north of Whyalla","Skindiving,",Darryl Richardson,M,27,"Right leg bitten below the knee, left ankle & foot lacerated",N,,2.7 m [9'] shark,"A. Sharpe, p.125",1976.09.19-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.19-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.19-Richardson.pdf,1976.09.19,1976.09.19,3048,, +1976.09.17,17-Sep-76,1976,Sea Disaster,HONG KONG,South China Sea 200 miles from Hong Kong,,"3,909-ton Panamanian freighter Chieh Lee sank in a typhoon",,M,,"FATAL, right leg bitten",Y,,,"Daily Review, 9/21/1976",1976.09.17-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.17-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.17-sailor.pdf,1976.09.17,1976.09.17,3047,, +1976.09.12.b,12-Sep-76,1976,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming,"Michael Karras, Jr.",M,16,FATAL,Y,,,"Washington Post, 9/24/1976",1976.09.12.b-Michael-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.b-Michael-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.b-Michael-Karras.pdf,1976.09.12.b,1976.09.12.b,3046,, +1976.09.12.a,12-Sep-76,1976,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming,"Ricky Karras, Jr.",M,,FATAL,Y,,,"Washington Post, 9/24/1976",1976.09.12.a-Ricky-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.a-Ricky-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.a-Ricky-Karras.pdf,1976.09.12.a,1976.09.12.a,3045,, +1976.09.06,06-Sep-76,1976,Unprovoked,USA,Florida,"Sebastian, Indian River County",Surfing,Peter Ferrer,M,15,Laceration to left lower leg,N,14h00,"Tiger shark, 6' ",P. Ferrer,1976.09.06-Ferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.06-Ferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.06-Ferrer.pdf,1976.09.06,1976.09.06,3044,, +1976.08.26,26-Aug-76,1976,Unprovoked,USA,North Carolina,"Emerald Isle Pier (near Morehead City), Carteret County","Surfing, fell off surfboard",Randy Hall,M,23,Right ankle & foot lacerated,N,,,"C. Creswell, GSAF; F. Schwartz, p.23",1976.08.26-RandyHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.26-RandyHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.26-RandyHall.pdf,1976.08.26,1976.08.26,3043,, +1976.08.24,24-Aug-76,1976,Unprovoked,USA,Oregon,Winchester Bay,Surfing,Mike Shook,M,19,"No injury, board bitten",N,14h00,"White shark, 4.5 m ","D. Miller & R. Collier; R. Collier, pp.69-70; J. McCosker & R.N. Lea ",1976.08.24-Shook_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.24-Shook_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.24-Shook_Collier.pdf,1976.08.24,1976.08.24,3042,, +1976.07.24,24-Jul-76,1976,Unprovoked,USA,Florida,St. Lucie County,Spearfishing,Charles Cook,M,24,Lacerations to forearms,N,10h30,,"News-Tribune, 7/27/1976",1976.07.24-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.24-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.24-Cook.pdf,1976.07.24,1976.07.24,3041,, +1976.07.21,21-Jul-76,1976,Unprovoked,USA,Louisiana,Scofield - Sandy Point,Playing,Travis Raigan,M,10,Leg bitten,N,,,"Amarillo Globe-Times, 7/22/1976",1976.07.21-Ratigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.21-Ratigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.21-Ratigan.pdf,1976.07.21,1976.07.21,3040,, +1976.07.16,16-Jul-76,1976,Unprovoked,USA,Hawaii,"Maha'ulepu, Koloa, Kaua'i",Scuba diving,Stephen Curtis Powell,M,18,"FATAL, disappeared while diving, lower portion of body recovered",Y,,,"The Argus, 7/19/1976; J. Borg, p.74; L. Taylor (1993), pp.102-103",1976.07.16-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.16-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.16-Powell.pdf,1976.07.16,1976.07.16,3039,, +1976.07.12,12-Jul-76,1976,Unprovoked,USA,Florida,St. Lucie County,Spearfishing,Bill Loughlin,M,23,"""lost part of a finger""",N,,6' to 8' shark,"News-Tribune, 7/27/1976",1976.07.12-Loughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.12-Loughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.12-Loughlin.pdf,1976.07.12,1976.07.12,3038,, +1976.06.23,23-Jun-76,1976,Unprovoked,USA,Florida,"St. Andrews State Park, Bay County",Skindiving,Paul Maurer,M,17,Lacerations to right arm,N,Night,12' to 14' shark,"Albuquerque Journal, 6/25/1976",1976.06.23-Maurer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.23-Maurer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.23-Maurer.pdf,1976.06.23,1976.06.23,3037,, +1976.06.10,10-Jun-76,1976,Unprovoked,USA,Hawaii,"Kama'ole Beach, Park No. 1, Kihei, Maui",Swimming,Donald Gard,M,,Leg & foot bitten,N,,0.9 m to 1.5 m [3' to 5'] shark,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1976.06.10-Gard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.10-Gard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.10-Gard.pdf,1976.06.10,1976.06.10,3036,, +1976.06.02.R,Reported 02-Jun-1976,1976,Provoked,ITALY,Reggio Calabria Province,Bovalino,Fishing,Francisco Pelle,M,46,Shark rammed boat PROVOKED INCIDENT,N,,"Blue shark, 2m ","C. Moore, GSAF",1976.06.02.R-Pelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.02.R-Pelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.02.R-Pelle.pdf,1976.06.02.R,1976.06.02.R,3035,, +1976.06.01,01-Jun-76,1976,Boat,AUSTRALIA,Queensland,Off Stradbroke Island,Sitting in bow of her father's 5 m boat,Debbie McMillan,F,,"Shark jumped in boat, hitting her in the face & knocking her unconscious",N,,1.5 m [5'] shark,"A. Sharpe, p.103",1976.06.01-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.01-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.01-McMillan.pdf,1976.06.01,1976.06.01,3034,, +1976.05.02,02-May-76,1976,Boat,SOUTH AFRICA,Western Cape Province,40 km off Cape Point,Competing in a light tackle game fishing,"6 m skiboat, occupants: Terry McManus, Dan Clark and Blackie Swart",,,"Shark following hooked fish, rammed & holed boat",N,,"Mako shark, 180-kg [397-lb]","The Argus, 5/3/1976",1976.05.02-McManus-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.05.02-McManus-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.05.02-McManus-boat.pdf,1976.05.02,1976.05.02,3033,, +1976.04.28,28-Apr-76,1976,Invalid,USA,Texas,Galveston Island,,Unknown,,,"Possible drowning victim, remains retrieved from shark caught by fishermen on 28-Apr-1976",Y,,400-lb shark,"NY Times 4/30/1976, p.14, col.8",1976.04.28-HumanRemains-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.04.28-HumanRemains-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.04.28-HumanRemains-Galveston.pdf,1976.04.28,1976.04.28,3032,, +1976.03.12.b,12-Mar-76,1976,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Glen Wright,M,21 or 26,Lacerations to left leg,N,14h30,,Winnipeg Free Press. 3/17/1976,1976.03.12.b-GlenWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.b-GlenWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.b-GlenWright.pdf,1976.03.12.b,1976.03.12.b,3031,, +1976.03.12.a,12-Mar-76,1976,Boat,SOUTH AFRICA,Western Cape Province,Robberg Point,Fishing,"boat, occupants: Jacob Kruger & crew",,,"No injury to occupants, shark buckled prop shaft",N,,Whale shark,T. Wallett; GSAF,1976.03.12.a-Kruger-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.a-Kruger-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.a-Kruger-boat.pdf,1976.03.12.a,1976.03.12.a,3030,, +1976.03.09,09-Mar-76,1976,Boat,SOUTH AFRICA,Western Cape Province,"2 km from Macassar, False Bay",,5 m skiboat; Stephanie,,,Shark breached hull of boat,N,,White shark named Spotty,"T. Wallett, p.31",1976.03.09-Stephanie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.09-Stephanie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.09-Stephanie.pdf,1976.03.09,1976.03.09,3029,, +1976.03.02,02-Mar-76,1976,Boat,SOUTH AFRICA,Western Cape Province,"2 km from Macassar, False Bay",,"5 m skiboat Stephanie, occupants: Fanie Schoeman and Brigadier Bronkhorst",,,"Shark leapt into boat, hitting Fanie Schoeman on his back before sliding into the sea",N,,White shark named Spotty,"T. Wallett, pp.30-31",1976.03.02-Stephanie-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.02-Stephanie-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.02-Stephanie-boat.pdf,1976.03.02,1976.03.02,3028,, +1976.02.03,03-Feb-76,1976,Boat,SOUTH AFRICA,Western Cape Province,False Bay,Shark watching,"6 m boat Suki Saki, occupants: E.C. Landells & 2 friends",,,"No injury to occupants, shark rammed bow, driving its head into the hull",N,,2.5 m [8.25'] white shark,"T. Wallett, p.30",1976.02.03-Suki-Saki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.02.03-Suki-Saki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.02.03-Suki-Saki.pdf,1976.02.03,1976.02.03,3027,, +1976.01.13,13-Jan-76,1976,Provoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Shark fishing,"6 m catamaran, occupants: Peter Robertson, Beauchamp Robertson, Gerald Spence & 3 crew",,,"No injury to occupants, After shark was harpooned & shot, it holed the boat PROVOKED INCIDENT",N,,4 m [13'] shark,T. Wallett,1976.01.13-catamaran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.13-catamaran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.13-catamaran.pdf,1976.01.13,1976.01.13,3026,, +1976.01.12,12-Jan-76,1976,Unprovoked,AUSTRALIA,Queensland,Harvey Bay,,Marlene Evler,F,,Survived,N,,,"R. McKenzie, Coast Sun, 9/6/1987, p.11",1976.01.12-Evler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.12-Evler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.12-Evler.pdf,1976.01.12,1976.01.12,3025,, +1976.01.11,11-Jan-76,1976,Provoked,SOUTH AFRICA,Western Cape Province,Kalk Bay,Fishing for snoek & yellowtail,"7 m fishing boat Metoo, occupants: Nicky & Paul Goles & 4 friends",,,"Hooked shark leapt onboard & into fish well, which it smashed PROVOKED INCIDENT",N,07h30,"White shark, 3 m [10'] "," T. Wallett, p.30",1976.01.11-Metoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.11-Metoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.11-Metoo.pdf,1976.01.11,1976.01.11,3024,, +1976.01.08,08-Jan-76,1976,Unprovoked,USA,Florida,"Off Fort Pierce, St Lucie County",Spearfishing / scuba diving,Hank Greenberg,M,25,Puncture wounds to head & neck,N,,6' shark,"Naples Daily News, 1/9/1976",1976.01.08-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.08-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.08-Greenberg.pdf,1976.01.08,1976.01.08,3023,, +1976.01.02,02-Jan-76,1976,Unprovoked,NEW ZEALAND,North Island,"Te Kaha, East coast",Spearfishing,John Grainger Leith,M,,FATAL,Y,13h00,Bronze whaler shark,"R.D. Weeks, GSAF; New Zealand Herald, 3/3/2001",1976.01.02-Leith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.02-Leith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.02-Leith.pdf,1976.01.02,1976.01.02,3022,, +1976.00.00.b,1976,1976,Unprovoked,USA,Hawaii,"Off Lahaina, Maui",Scuba diving,Danson Nakaima,M,,"FATAL, lost consciousness at depth of 180'. Large sharks seen near partial remains of body",Y,,,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1976.00.00.b-Nakaima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.00.00.b-Nakaima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.00.00.b-Nakaima.pdf,1976.00.00.b,1976.00.00.b,3021,, +1975.12.29,29-Dec-75,1975,Boat,AUSTRALIA,South Australia,Glenelg,Attempting to drive shark away from the beach,"rescue boat of the Glenelg Surf Club, captained by G.W. Scarfe",,N/A,"No injury, shark charged & rammed boat several times",N,,2.4 m [8'] shark,"A. Sharpe, p.125",1975.12.29-RescueBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.29-RescueBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.29-RescueBoat.pdf,1975.12.29,1975.12.29,3020,, +1975.12.06,06-Dec-75,1975,Unprovoked,USA,California,Farallon Islands,Scuba diving & spearfishing,Robin Buckley (male),M,27,Leg bitten,N,12h00,White shark,"D. Miller & R. Collier, R. Collier, pp.67-69; J. McCosker & R.N. Lea; NY Times, 12/7/1975, p.30, col.1",1975.12.06-Buckley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.06-Buckley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.06-Buckley_Collier.pdf,1975.12.06,1975.12.06,3019,, +1975.12.02,02-Dec-75,1975,Provoked,AUSTRALIA,New South Wales,"Porpoise Pool, Tweed Heads",Filming & feeding captive sharks,John Strand,M,35,Tooth mark in left elbow PROVOKED INCIDENT,N,,"Grey nurse shark, 10' ","J. Green, p.36",1975.12.02-Strand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.02-Strand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.02-Strand.pdf,1975.12.02,1975.12.02,3018,, +1975.11.19.b,19-Nov-75,1975,Unprovoked,AUSTRALIA,New South Wales,"Queenscliff, Sydney",Standing,Peter Cole,M,20,Laceration to posterior thigh,N,,5' shark,"The Age, 11/20/1975",1975.11.19.b-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.b-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.b-Cole.pdf,1975.11.19.b,1975.11.19.b,3017,, +1975.11.19.a,19-Nov-75,1975,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Standing,Michael van den Berg,M,33,Left foot lacerated,N,10h00,Juvenile dusky shark,"G. Charter, B. Davis, NSB",1975.11.19.a-VanDenBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.a-VanDenBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.a-VanDenBerg.pdf,1975.11.19.a,1975.11.19.a,3016,, +1975.11.07,07-Nov-75,1975,Unprovoked,AUSTRALIA,Queensland,Lookout Point,,John Haig,M,,Puncture wounds in hand,N,,,"R. McKenzie, Sunday Mail, 3/27/1994, p.107",1975.11.07-Haig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.07-Haig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.07-Haig.pdf,1975.11.07,1975.11.07,3015,, +1975.11.02,02-Nov-75,1975,Unprovoked,USA,Florida,"Crescent Beach, St. Johns County",Surfing,Scott Lee Hurst,M,18,Foot bitten,N,,6' shark,"NY Times, 11/6/1975, p.8",1975.11.02-Hurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.02-Hurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.02-Hurst.pdf,1975.11.02,1975.11.02,3014,, +1975.10.21,21-Oct-75,1975,Invalid,USA,New Jersey,"Sandy Hook, Monmouth County",Surf fishing,,M,,"""Tooth marks"" in left leg",N,11h30,Shark involvement unconfirmed,"J. Stone; Asbury Park Press, 10/22/1975",1975.10.21-SandyHook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.21-SandyHook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.21-SandyHook.pdf,1975.10.21,1975.10.21,3013,, +1975.10.12,12-Oct-75,1975,Unprovoked,AUSTRALIA,New South Wales,"Lennox Head, Ballina",Surfing,Barry Neale,M,20,"Cracked jaw & broken tooth, shark took chunk out of surfboard",N,,Bronze whaler,"J. Green, p.36",1975.10.12-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.12-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.12-Neale.pdf,1975.10.12,1975.10.12,3012,, +1975.10.04,04-Oct-75,1975,Invalid,USA,California,"Seal Beach, Orange County",Surfing,,,,,UNKNOWN,,,Unconfirmed Report,1975.10.04-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.04-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.04-NV-California.pdf,1975.10.04,1975.10.04,3011,, +1975.09.00,Sep-75,1975,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Paddleskiing,Tony Meehan,M,21,Right foot & ankle lacerated,N,,1.2 m [4'] shark,"G. Charter, NSB",1975.09.00-Meehan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.09.00-Meehan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.09.00-Meehan.pdf,1975.09.00,1975.09.00,3010,, +1975.08.17,17-Aug-75,1975,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape St. Francis,Surfing,David Robertson,M,19,Left leg & surfboard bitten,N,13h30,"White shark, 2.4 m [8']","D. Robertson, M. Levine, GSAF; J. Wallace, ORI; T. Wallett, p.40",1975.08.17-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.17-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.17-Robertson.pdf,1975.08.17,1975.08.17,3009,, +1975.08.12,12-Aug-75,1975,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Floating on a small orange raft ,Henry Peterson,M,20,"Calf bitten, leg surgically amputated below the knee Note: by late August, 3 more bathers had been bitten by sharks at Daytona Beach",N,12h00,1.5 m [5'] shark,"NY Times, 8/17/1975, p.27",1975.08.12-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.12-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.12-Peterson.pdf,1975.08.12,1975.08.12,3008,, +1975.08.09,09-Aug-75,1975,Unprovoked,USA,California,"Usal Creek, Bear Harbor, Mendocino County",Free diving for abalone,Gilbert Brown,M,44,"Shoulder, arm & hand lacerated",N,13h30,White shark,"D. Miller & R. Collier, R. Collier, pp.65-67; J. McCosker & R.N. Lea",1975.08.09-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.09-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.09-Brown_Collier.pdf,1975.08.09,1975.08.09,3007,, +1975.08.04,04-Aug-75,1975,Unprovoked,HONG KONG,Mirs Bay ,,Freedom swimming,male,M,24,"Leg bitten, surgically amputated",N,,,"Corpus Christi Times, 8/4/1975",1975.08.04-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.04-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.04-HongKong.pdf,1975.08.04,1975.08.04,3006,, +1975.07.30.b,30-Jul-75,1975,Sea Disaster,USA,Oregon,,Sea disaster,Grace Conger ,F,62,"FATAL, arms & legs bitten",Y,,,"Times, 8/1/1975, Yuma Daily Sun, 8/1/1975 ",1975.07.30.b-Conger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.b-Conger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.b-Conger.pdf,1975.07.30.b,1975.07.30.b,3005,, +1975.07.30.a,30-Jul-75,1975,Unprovoked,AUSTRALIA,Tasmania,"Fluted Cape, Bruny Island",Scuba diving for abalone,Robert Slack,M,37,FATAL,Y,Afternoon,White shark,"Times, 8/1/1975, Yuma Daily Sun, 8/1/1975; C. Black pp. 153-157 ",1975.07.30.a-Slack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.a-Slack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.a-Slack.pdf,1975.07.30.a,1975.07.30.a,3004,, +1975.07.26.b,26-Jul-1975.b,1975,Unprovoked,USA,Florida,"Off Hutchinson Island, St Lucie County",Free diving,Charles Cook,M,24,Forearms lacerated,N,,,"News-Tribune, 7/28/1975",1975.07.26.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.b-Cook.pdf,1975.07.26.b,1975.07.26.b,3003,, +1975.07.26.a,26-Jul-75,1975,Unprovoked,AUSTRALIA,Queensland,Maroochydore,Surfing,Gary Grace,M,21,Buttocks & leg bitten,N,,12' shark,"Bucks County Courier Times, 7/28/1975; Sunday Mail (QLD), 1//7/1996,p.4; J. Green, p.36",1975.07.26.a-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.a-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.a-Grace.pdf,1975.07.26.a,1975.07.26.a,3002,, +1975.07.23,23-Jul-75,1975,Unprovoked,USA,California,"Perch Rock, Point Conception, Santa Barbara County",Scuba diving for abalone (at surface),Robert Revstock,M,23,Legs bitten,N,14h30,"White shark, 5.8 m [19'] ","D. Miller & R. Collier; R. Collier, pp.64-65; G. Ambrose, pp.103 & 112 ",1975.07.23-Rebstock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.23-Rebstock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.23-Rebstock_Collier.pdf,1975.07.23,1975.07.23,3001,, +1975.07.19,19-Jul-75,1975,Unprovoked,USA,California,"Point Conception, Santa Barbara County",Hookah diving for abalone,Gary Johnson,M,34,"No injury, swim fin torn",N,13h30,"White shark, 5m to 6m",R. Collier,1975.07.19-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.19-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.19-Johnson.pdf,1975.07.19,1975.07.19,3000,, +1975.07.15,15-Jul-75,1975,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Beverly White,F,14,Arm lacerated,N,Mid-morning,1.2 m [4'] shark,"E. Ritter, GSAF",1975.07.15-BeverlyWhite-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.15-BeverlyWhite-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.15-BeverlyWhite-X.pdf,1975.07.15,1975.07.15,2999,, +1975.07.05,05-Jul-75,1975,Provoked,AUSTRALIA,Western Australia,"15 km north of Lancelin, north of Perth",Spearfishing,Dennis Thompson,M,29,Speared shark bit his arm between elbow and shoulder PROVOKED INCIDENT,N,,2.4 m [8'] whaler shark,"Washington Post, 7/7/1975",1975.07.05-DennisThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.05-DennisThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.05-DennisThompson.pdf,1975.07.05,1975.07.05,2998,, +1975.07.04,04-Jul-75,1975,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Robert Clark,M,16,"Foot bitten, tendons damaged",N,,,"NY Times, 7/6/1975, p.5",1975.07.04-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.04-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.04-Clark.pdf,1975.07.04,1975.07.04,2997,, +1975.06.23.b,23-Jun-75,1975,Unprovoked,USA,South Carolina,"Windy Hill, near Myrtle Beach, Horry County",Swimming ,Jim Krents,M,18,Lacerations to right foot,N,16h30,4' shark,"Morning Herald (Uniontown, PA), 7/2/1975",1975.06.23.b-Krents.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.b-Krents.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.b-Krents.pdf,1975.06.23.b,1975.06.23.b,2996,, +1975.06.23.a,23-Jun-75,1975,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Standing,Donna Hutson,F,15,Hand & wrist bitten,N,14h30,,"Morning Herald (Uniontown, PA), 6/26/1975",1975.06.23.a-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.a-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.a-Hutson.pdf,1975.06.23.a,1975.06.23.a,2995,, +1975.06.15,15-Jun-75,1975,Unprovoked,USA,Alabama,5 miles off the coast,Swimming near his boat,William Wayne Daniels,M,27,Left leg bitten,N,,,"The News, 6/16/1975",1975.06.15-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.15-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.15-Daniels.pdf,1975.06.15,1975.06.15,2994,, +1975.06.02.R,Reported 02-Jun-1975,1975,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Jeffrey Hanrahan,M,20,"No injury, board bumped",N,,,"Sarasota Herald Tribune, 6/2/1975",1975.06.02.R-Hanrahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.02.R-Hanrahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.02.R-Hanrahan.pdf,1975.06.02.R,1975.06.02.R,2993,, +1975.06.00.c,Jun-75,1975,Provoked,USA,Florida," New Smyrna Beach, Volusia County",,,M,,Slightly injured when he stepped on a shark PROVOKED INCIDENT,N,,,undated press clipping - see 1975.06.00.b,1975.06.00.c-stepped-on-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.00.c-stepped-on-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.00.c-stepped-on-shark.pdf,1975.06.00.c,1975.06.00.c,2992,, +1975.05.25,25-May-75,1975,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Edward Bassett,M,17,Right foot bitten,N,10h00,,"Sumter Daily Item, 7/9/1975",1975.05.25-Bassett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.25-Bassett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.25-Bassett.pdf,1975.05.25,1975.05.25,2991,, +1975.05.20,20-May-75,1975,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Bathing,Cindy Jones,F,10,Leg bitten,N,,,"Pacifc Stars and Stripes, 6/3/1975",1975.05.20-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.20-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.20-Jones.pdf,1975.05.20,1975.05.20,2990,, +1975.04.25,25-Apr-75,1975,Invalid,ITALY,Genoa Province,Cervara,Scuba diving,Walter Sansoni,M,37,"The press reported this as a shark attack, but the diver was the agressor",N,,2 m shark,"C. Moore, GSAF",1975.04.25-Sansoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.25-Sansoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.25-Sansoni.pdf,1975.04.25,1975.04.25,2989,, +1975.04.18,18-Apr-75,1975,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,,Indian male,M,,Probable drowning / scavenging,Y,,,"B. Davis, NSB",1975.04.18-IndianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.18-IndianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.18-IndianMale.pdf,1975.04.18,1975.04.18,2988,, +1975.04.05,05-Apr-75,1975,Unprovoked,SOUTH AFRICA,Western Cape Province,Millers Point,Spearfishing Competition,Kevin Thompson,M,,"No injury, rammed by shark",N,Afternoon,"White shark, 600-kg [1323-lb]","Cape Times, 4/7/1975",1975.04.05-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.05-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.05-Thompson.pdf,1975.04.05,1975.04.05,2987,, +1975.03.29,29-Mar-75,1975,Invalid,SOUTH AFRICA,KwaZulu-Natal,Tongaat,Swimming,Indian male,M,,Probable drowning / scavenging,Y,,White shark,"B. Davis, Natal Sharks Board",1975.03.29-Tongaat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.29-Tongaat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.29-Tongaat.pdf,1975.03.29,1975.03.29,2986,, +1975.03.18,18-Mar-75,1975,Unprovoked,AUSTRALIA,Queensland,Mornington Island,,female,F,,Hand bitten,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1975.03.18-MorningtonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.18-MorningtonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.18-MorningtonIsland.pdf,1975.03.18,1975.03.18,2985,, +1975.03.16,16-Mar-75,1975,Unprovoked,USA,Florida,"Clearwater Beach, Pinellas County",Floating in inner tube,William Hodges,M,14,Left leg & foot bitten,N,,10' shark,"News Tribune, 5/17/1975",1975.03.16-Hodges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.16-Hodges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.16-Hodges.pdf,1975.03.16,1975.03.16,2984,, +1975.03.13,13-Mar-75,1975,Provoked,AUSTRALIA,Queensland,Southport Aquarium,Diving & force-feeding the shark,William Hookway,,18,Laceration to thigh by captive shark PROVOKED INCIDENT,N,,"Bronze whaler shark, 6'","The Age, 3/14/1975",1975.03.13-Hookway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.13-Hookway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.13-Hookway.pdf,1975.03.13,1975.03.13,2983,, +1975.03.09,09-Mar-75,1975,Provoked,SOUTH AFRICA,Western Cape Province,"Boggomsbaai, Mossel Bay",Attempting to drag hooked shark ashore by its tail,Frans Swanepoel,M,,Left leg bitten PROVOKED INCIDENT,N,,1.5 m [5'] shark,"M. Levine, GSAF",1975.03.09-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.09-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.09-Swanepoel.pdf,1975.03.09,1975.03.09,2982,, +1975.03.00,Mar-75,1975,Sea Disaster,BANGLADESH,Ganges-Brahmaputra delta,,Ferry capsized,,,,"FATAL, of 190 passengers & crew thrown into the water, 50 people were said to have been killed by sharks",Y,,,"M. McDiarmid, p.67",1975.03.00-Bangladesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.00-Bangladesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.00-Bangladesh.pdf,1975.03.00,1975.03.00,2981,, +1975.02.23,23-Feb-75,1975,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Surfing,Bretton Russell Jones,M,16,Foot severed,N,10h55,1.5 m [5'] shark,"S. Jooste; B.R. Jones, M. Levine, GSAF; T. Wallett, pp.22-24",1975.02.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.23-Jones.pdf,1975.02.23,1975.02.23,2980,, +1975.02.14.R,Reported 14-Feb-1975,1975,Boat,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,,"hobiecat, occupants: Judy Lambert & a friend",,,Shark bit rudder & hull,N,,"Mako shark, 3 m [10'] ",GSAF,1975.02.14-Hobiecat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.14-Hobiecat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.14-Hobiecat.pdf,1975.02.14.R,1975.02.14.R,2979,, +1975.02.10,10-Feb-75,1975,Unprovoked,AUSTRALIA,South Australia,(Point Sinclair) Penong,Swimming underwater from crayfish cage to a fishing bait,Wade Shipard,M,12,Right leg severed FATAL,Y,18h00,"White shark, 3 m [10'] "," A. Sharpe, pp.124-125; Sydney Morning Herald, 2/3/2001 ed.",1975.02.10-Shipard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.10-Shipard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.10-Shipard.pdf,1975.02.10,1975.02.10,2978,, +1975.02.09,09-Feb-75,1975,Unprovoked,AUSTRALIA,Victoria,Anglesea,Crayfishing,John Lear,M,45,Puncture wounds to right shoulder,N,,"Carpet shark, 10' ","The Age, 2/11/1975",1975.02.09-Lear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.09-Lear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.09-Lear.pdf,1975.02.09,1975.02.09,2977,, +1975.02.07,07-Feb-75,1975,Unprovoked,AUSTRALIA,Queensland,Currumbin Rock,,M. Worman,M,,Survived,N,,,"J. Green, p. 36",1975.02.07-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.07-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.07-Worman.pdf,1975.02.07,1975.02.07,2976,, +1975.02.01,01-Feb-75,1975,Provoked,SOUTH AFRICA,Western Cape Province,"Beespens, False Bay",Fishing,Gerhard Visser,M,12,Foot bitten by shark he was gaffing PROVOKED INCIDENT,N,,"Copper shark, 50-kg [110-b] ","The Argus, 2/3/1975",1975.02.01-Visser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.01-Visser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.01-Visser.pdf,1975.02.01,1975.02.01,2975,, +1975.01.19,19-Jan-75,1975,Unprovoked,AUSTRALIA,South Australia,Coffin Bay,Surfing,David Barrowman,M,17,"FATAL, body not recovered",Y,,,"J. West; Adelaide Advertiser, 1/20/1975; P. Kemp, GSAF",1975.01.19-Barrowman.pdf,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.01.19-Barrowman.pdf,1975.01.19,1975.01.19,2974,, +1975.00.00.b,1975,1975,Unprovoked,BERMUDA,,,Spearfishing,Geeteh Toussaint,M,25,Laceration to right ankle,N,,8' blue shark,"E. Pace, FSAF",1975.00.00.b-Toussaint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.b-Toussaint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.b-Toussaint.pdf,1975.00.00.b,1975.00.00.b,2973,, +1975.00.00.a,1975,1975,Unprovoked,REUNION,,,,a soldier,M,,FATAL,Y,,,Reunion Marine Observatory,1975.00.00.a-NV-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.a-NV-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.a-NV-Reunion.pdf,1975.00.00.a,1975.00.00.a,2972,, +1974.12.10,12-Dec-74,1974,Unprovoked,AUSTRALIA,Western Australia,Geographe Bay,,G. Allen,,32,Survived,N,,,"J. Green, p.36",1974.12.10-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.12.10-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.12.10-Allen.pdf,1974.12.10,1974.12.10,2971,, +1974.11.01,01-Nov-74,1974,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Standing,Dwayne W. Ortwine,M,24,Laceration to foot,N,Afternoon,,"Daytona Beach Morning Journal, 11/2/1974",1974.11.01-Ortwine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.11.01-Ortwine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.11.01-Ortwine.pdf,1974.11.01,1974.11.01,2970,, +1974.09.28,28-Sep-74,1974,Unprovoked,USA,California,"North of Point Sur, Monterey County",Surfing,Kirk Johnston,M,17,"Thigh, lower back and surfboard bitten",N,07h30,"White shark, 5.5 m to 6 m [18' to 20'] ","D. Miller & R. Collier, R. Collier, pp.59-62, J. McCosker & R. N. Lea",1974.09.28-Johnston_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.28-Johnston_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.28-Johnston_Collier.pdf,1974.09.28,1974.09.28,2969,, +1974.09.14,14-Sep-74,1974,Unprovoked,USA,California,"North Farallon Island, Farallon Islands",Hookah diving for abalone,Jon Holcomb,M,29,Major injuries,N,13h45,"White shark, 4 m to 5 m ","D. Miller & R. Collier, R. Collier, pp.57-59; J. McCosker & R.N. Lea",1974.09.14-Holcomb_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.14-Holcomb_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.14-Holcomb_Collier.pdf,1974.09.14,1974.09.14,2968,, +1974.09.07,07-Sep-74,1974,Unprovoked,ISRAEL,Red Sea,"North Beach, Eilat",Swimming,Beatrice Aharonowich,F,20,"Bitten 12 times: multiple lacerations on hands, arms, shoulder breast thigh, both legs, left forearm surgically amputated ",N,17h00,"Shortfin mako shark, 2.3 m [7.5'] ","The Times (London), 9/9/1974, p. 7; J. Randall & M. F. Levy (1976)",1974.09.07-Aharonowich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.07-Aharonowich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.07-Aharonowich.pdf,1974.09.07,1974.09.07,2967,, +1974.09.02.b,02-Sep-74,1974,Unprovoked,USA,California,"Franklin Point, San Mateo County",Scuba diving (but on surface),Jack Greenlaw,M,41,Minor injuries to hand,N,17h30,"White shark, 5 m to 6 m [16.5 to 20'] ","D. Miller & R. Collier, R. Collier, pp. 56-57; J. McCosker & R.N. Lea",1974.09.02.b-Greenlaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.b-Greenlaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.b-Greenlaw.pdf,1974.09.02.b,1974.09.02.b,2966,, +1974.09.02.a,02-Sep-74,1974,Unprovoked,USA,California,"Franklin Point, San Mateo County",Scuba diving (but on surface),Dale Webster,M,48,Minor bite on foot & swimfin,N,17h30,"White shark, 5 m to 6 m [16.5 to 20'] ","D. Miller & R. Collier, R. Collier, pp. 56-57; J. McCosker & R.N. Lea",1974.09.02.a.-DaleWebster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.a.-DaleWebster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.a.-DaleWebster.pdf,1974.09.02.a,1974.09.02.a,2965,, +1974.09.01,01-Sep-74,1974,Sea Disaster,AUSTRALIA,Queensland,"Junpinpin, off Stradbroke Island",3.3 m fishing boat sank. Treveluwe & Peter Hodgson (wearing lifejackets) were drifting in the current,Adrian Treveluwe,M,30,"Missing, believed taken by a shark",N,,,"J. Green, p.36; A. Sharpe, pp.102-103",1974.09.01-Treveuwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.01-Treveuwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.01-Treveuwe.pdf,1974.09.01,1974.09.01,2964,, +1974.09.00,Sep-74,1974,Unprovoked,USA,Oregon,Myers Creek,Surfing,Curt Brown,M,24,No injury,N,Morning,"White shark, 4.5 m ",R. Collier,1974.09.00-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.00-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.00-Brown_Collier.pdf,1974.09.00,1974.09.00,2963,, +1974.08.23,23-Aug-74,1974,Unprovoked,HONG KONG,Mirs Bay ,,Freedom Swimming,male,M,22,Survived,N,,,"Washington Post, 8/24/1974,p.D6",1974.08.23-FreedomSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.23-FreedomSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.23-FreedomSwimmer.pdf,1974.08.23,1974.08.23,2962,, +1974.08.16.c,16-Aug-74,1974,Unprovoked,HONG KONG,Mirs Bay ,,Freedom swimming,male,M,,FATAL,Y,,,"A. MacCormick, p.157",1974.08.16.c-Freedom swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.c-Freedom swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.c-Freedom swimmer.pdf,1974.08.16.c,1974.08.16.c,2961,, +1974.08.16.b,16-Aug-74,1974,Unprovoked,HONG KONG,Mirs Bay ,,Freedom swimming,Ho-Sin-Ming (male),M,19,Arm broken & severely lacerated,N,,,"A. MacCormick, p.157",1974.08.16.b-Ming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.b-Ming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.b-Ming.pdf,1974.08.16.b,1974.08.16.b,2960,, +1974.08.16.a,16-Aug-74,1974,Unprovoked,HONG KONG,Mirs Bay ,,Freedom swimming,Yee Wing Ping (male),M,18,Left foot bitten,N,,,"A. MacCormick, p.157",1974.08.16.a-Ping.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.a-Ping.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.a-Ping.pdf,1974.08.16.a,1974.08.16.a,2959,, +1974.08.10,10-Aug-74,1974,Unprovoked,CROATIA, Split-Dalmatia County," Lokva Rogoznica, Omis",,Rolf Schneider,M,21,Foot severed FATAL,Y,15h00,"White shark, 5 m [16.5'] ",A. De Maddalena; R. Rocconi,1974.08.10-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.10-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.10-Schneider.pdf,1974.08.10,1974.08.10,2958,, +1974.08.05,05-Aug-74,1974,Unprovoked,USA,California,"San Gregorio Beach, San Mateo County",Surfing,Robert Sanders,M,,Minor injuries to hand,N,,"White shark, 5 m ",R.Collier,1974.08.05-Sanders_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.05-Sanders_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.05-Sanders_Collier.pdf,1974.08.05,1974.08.05,2957,, +1974.07.26,26-Jul-74,1974,Unprovoked,USA,California,"Albion Cove, Albion, Mendocino County",Free diving for abalone (submerged),Robert Kehl,M,36,Minor bite on heel & swim fin bitten,N,,"White shark, 5.5 m [18'] ","D. Miller & R. Collier, R. Collier, pp.54-56; J. McCosker & R.N. Lea",1974.07.26-Kehl_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.26-Kehl_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.26-Kehl_Collier.pdf,1974.07.26,1974.07.26,2956,, +1974.07.20,20-Jul-74,1974,Unprovoked,USA,Georgia,"Back River, Savannah Beach, Chatham County",Swimming,John Carter,M,17,FATAL,Y,,small sharks',"Rome News Tribune, 7/31/1974",1974.07.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.20-Carter.pdf,1974.07.20,1974.07.20,2955,, +1974.07.02,02-Jul-74,1974,Sea Disaster,USA,Florida ,Gulf of Mexico,Adrift after the sinking of the motor yacht Princess Dianne,Billy Horne,M,10,Arm bitten FATAL,Y,,3.7 m [12'] sharks,"Wilmington Star, 7/3/1974, p.3A",1974.07.02-BillyHorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.02-BillyHorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.02-BillyHorne.pdf,1974.07.02,1974.07.02,2954,, +1974.06.20,20-Jun-74,1974,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Olive Heaton,F,61,Lacerations to hip and leg,N,08h55,,"Daytona Beach Morning Journal, 6/21/1974",1974.06.20-Heaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.06.20-Heaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.06.20-Heaton.pdf,1974.06.20,1974.06.20,2953,, +1974.05.26,26-May-74,1974,Unprovoked,USA,California,"Tomales Point, Marin County",Free diving (but on surface),Leroy Hancock,M,45,Leg bitten,N,11h30,"White shark, 5 m [16.5']","D. Miller & R. Collier, R. Collier, p.53; J. McCosker & R.N. Lea",1974.05.26-Hancock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.05.26-Hancock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.05.26-Hancock_Collier.pdf,1974.05.26,1974.05.26,2952,, +1974.04.25.R,Reported 25-Apr-1974,1974,Sea Disaster,BRAZIL,,,Fishing boat swamped in a storm,5 men,M,,FATAL,Y,,,"Fresno Bee Republican, 4/25/1974",1974.04.25.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.25.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.25.R-Brazil.pdf,1974.04.25.R,1974.04.25.R,2951,, +1974.04.20,20-Apr-74,1974,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Andre Hartman,M,22,Left knee lacerated,N,Late afternoon,"Raggedtooth shark, 1.5 m [5'] ","A. Hartman, M. Levine, GSAF; Cape Argus, 4/26/1974",1974.04.20-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.20-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.20-Hartman.pdf,1974.04.20,1974.04.20,2950,, +1974.04.14,14-Apr-74,1974,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Glengariff,Standing,Simon Parkin,M,19,Lower right leg lacerated,N,15h30,,"S. Parkin, M. Levine, GSAF; T. Wallett, p.40",1974.04.14-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.14-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.14-Parkin.pdf,1974.04.14,1974.04.14,2949,, +1974.04.12,12-Apr-74,1974,Unprovoked,USA,Florida,"Haulover Beach, Miami-Dade County",Swimming,Stacie Alexander,F,11,Foot bitten,N,,,"Chicago Tribune, 4/13/1974",1974.04.12-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.12-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.12-Alexander.pdf,1974.04.12,1974.04.12,2948,, +1974.04.04,04-Apr-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Surfing,Anthony Kenneth Baker,M,17,Right foot lacerated,N,16h30,Juvenile dusky shark,"A. Baker, M. Levine, GSAF; G. Charter & B. Davis, NSB; T. Wallett, p.21",1974.04.04-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.04-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.04-Baker.pdf,1974.04.04,1974.04.04,2947,, +1974.03.21,21-Mar-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Surfing,James Arthur Gurr,M,21,"No injury, surfboard bitten",N,16h30 or 18h00,1.8 m [6'] shark,"J. Gurr, M. Levine, GSAF; G. Charter, NSB; T. Wallett, p.20",1974.03.21-Gurr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.21-Gurr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.21-Gurr.pdf,1974.03.21,1974.03.21,2946,, +1974.03.00,Mar-74,1974,Boat,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for kob,"skiboat, occupant: Danie Schoeman",,,"No injury to occupant, shark holed boat",N,,White shark,"T. Wallett, p.37",1974.03.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.00-Schoeman.pdf,1974.03.00,1974.03.00,2945,, +1974.02.13.b,13-Feb-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Swimming,Damon Kendrick,M,14,"Right calf removed, leg surgically amputated below the knee",N,19h00,,"D. Kendrick, S. Jooste, G. Charter, B. Davis, M. Levine, GSAF; T. Wallett, pp.18-19 ",1974.02.13.b-Kendrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.b-Kendrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.b-Kendrick.pdf,1974.02.13.b,1974.02.13.b,2944,, +1974.02.13.a,13-Feb-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Swimming,Joe Kool,M,19,Right shin lacerated,N,19h00,,"J. Kool, S. Jooste; M. Levine, GSAF",1974.02.13.a-Kool.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.a-Kool.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.a-Kool.pdf,1974.02.13.a,1974.02.13.a,2943,, +1974.02.00.b,Feb-74,1974,Boat,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for red fish,"skiboat, occupant: Danie Schoeman",,,"No injury to occupant, but a shark chasing a hooked fish holed his boat above the waterline",N,,5 m white shark,"T. Wallett, p.37",1974.02.00.b-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.b-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.b-Schoeman.pdf,1974.02.00.b,1974.02.00.b,2942,, +1974.02.00.a,Early Feb-1974,1974,Boat,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for kob,"skiboat, occupants: Danie & Fanie Schoeman",,,"No injury, shark leapt into boat & bit one of the boat's seats",N,Night,White shark,"T. Wallett, pp.35-37",1974.02.00.a-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.a-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.a-Schoeman.pdf,1974.02.00.a,1974.02.00.a,2941,, +1974.01.13,13-Jan-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,Sitting,James Viljoen,M,42,2 minor lacerations in foot,N,,"Raggedtooth shark, 1 m ","Daily News (Durban), 1/29/1974; GSAF",1974.01.13-Viljoen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.13-Viljoen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.13-Viljoen.pdf,1974.01.13,1974.01.13,2940,, +1974.01.09,09-Jan-74,1974,Unprovoked,AUSTRALIA,South Australia,Streaky Bay,Diving for abalone,Terry Manuel,M,26,"FATAL, right leg severed ",Y,,White shark,"H. Hall; A. Sharpe, p.124;",1974.01.09-Manuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.09-Manuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.09-Manuel.pdf,1974.01.09,1974.01.09,2939,, +1974.01.07.c,07-Jan-74,1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Swimming,Cornelius Les Pyper,M,33,Knee & calf lacerated,N,14h10,2 m to 2.5 m [6.75' to 8.25'] shark,"L. Pyper, J. Bass, G. Charter; B. Davis, M. Levine, GSAF; T. Wallett, pp.17-18. ",1974.01.07.c-Pyper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.c-Pyper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.c-Pyper.pdf,1974.01.07.c,1974.01.07.c,2938,, +1974.01.07.b,07-Jan-74,1974,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Oaulkurt-Pape,M,,FATAL,Y,,,"Johannesburg Star, 1/8/1974",1974.01.07.b-Oaulkurt-Pape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.b-Oaulkurt-Pape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.b-Oaulkurt-Pape.pdf,1974.01.07.b,1974.01.07.b,2937,, +1974.01.07.a,07-Jan-74,1974,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,male,M,32,FATAL,Y,,,"P. Logan, GSAF",1974.01.07.a-Xai-Xai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.a-Xai-Xai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.a-Xai-Xai.pdf,1974.01.07.a,1974.01.07.a,2936,, +1974.00.00.b,Summer 1974,1974,Unprovoked,AUSTRALIA,Western Australia,Emu Channel,Spearfishing,Glen Tunbridge,M,,8 to 10 puncture marks around knee,N,,"Bronze whaler shark, 4' ",G. Tunbridge,1974.00.00.b-Tunbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.b-Tunbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.b-Tunbridge.pdf,1974.00.00.b,1974.00.00.b,2935,, +1974.00.00.a,1974,1974,Unprovoked,CROATIA,Primorje-Gorski Kotar County ,Preluka Harbour,,2 Czech tourists,,,FATAL,Y,,,A. DeMaddalena,1974.00.00.a-2Tourists.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.a-2Tourists.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.a-2Tourists.pdf,1974.00.00.a,1974.00.00.a,2934,, +1973.12.25,25-Dec-73,1973,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Spearfishing,Christiaan Weissig,M,41,"Right leg severed at knee, abrasion on left ankle",N,11h20,,"J. Bass; M Levine, GSAF",1973.12.25-Weissig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.25-Weissig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.25-Weissig.pdf,1973.12.25,1973.12.25,2933,, +1973.12.21.b,21-Dec-73,1973,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming ,Hans Reiner,M,20,FATAL,Y,12h00,,Natal Witness Newspaper,1973.12.21-Reiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.21-Reiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.21-Reiner.pdf,1973.12.21.b,1973.12.21.b,2932,, +1973.12.19.R,Reported 18-Dec-1973,1973,Unprovoked,PHILIPPINES,Luzon,,Swimming,Ron Arney,M,19,FATAL,Y,,,"Washington Post, 12/19/1973",1973.12.19.R-Arney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.19.R-Arney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.19.R-Arney.pdf,1973.12.19.R,1973.12.19.R,2931,, +1973.12.18,18-Dec-73,1973,Unprovoked,USA,Hawaii,"Kalama Beach, Kihei, Maui",Swimming,Gary W. Floyd,M,,Leg bitten,N,,,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1973.12.18-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.18-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.18-Floyd.pdf,1973.12.18,1973.12.18,2930,, +1973.12.00,Dec-73,1973,Unprovoked,MEXICO,Guerrero,Acapulco Bay,Swimming alongside yacht Mexico Fiesta,American male,M,20s,FATAL,Y,Late afternoon,,"A.Resciniti, pp.107-108",1973.12.00-MexicanFiesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.00-MexicanFiesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.00-MexicanFiesta.pdf,1973.12.00,1973.12.00,2929,, +1973.11.25,25-Nov-73,1973,Unprovoked,AUSTRALIA,Western Australia,Swan River,,Copley,,,Survived,N,,,"J. Green, p.36",1973.11.25-Copley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.25-Copley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.25-Copley.pdf,1973.11.25,1973.11.25,2928,, +1973.11.24,24-Nov-73,1973,Unprovoked,USA,Florida,"Ormond By The Sea, Volusia County",Surfing,Chip Trout,M,13,Foot bitten,N,Afternoon,,"Daytona Beach Sunday News-Journal, 11/25/1973",1973.11.24-Trout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.24-Trout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.24-Trout.pdf,1973.11.24,1973.11.24,2927,, +1973.11.03,03-Nov-73,1973,Unprovoked,AUSTRALIA,Queensland,Gin Arm Creek,,a Solomon Islander,,,Knee lacerated,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1973.11.03-SolomonIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.03-SolomonIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.03-SolomonIslander.pdf,1973.11.03,1973.11.03,2926,, +1973.09.29,29-Sep-73,1973,Sea Disaster,SOUTH AFRICA,KwaZulu-Natal,Mission Rocks,Being pulled to shore from wreck of 25-ton fishing vessel Alan S,male,,,"FATAL, thigh bitten ",Y,,,"Natal Mercury, 10/5/1973",1973.09.29-AlanS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.29-AlanS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.29-AlanS.pdf,1973.09.29,1973.09.29,2925,, +1973.09.14,14-Sep-73,1973,Unprovoked,BAHAMAS,Grand Bahama Island,"Memory Rock, 18 miles from NW end of the Island","Free diving, Spearfishing",Kevin G. Schlusemeyer,M,11,Left hand & forearm lacerated,N,14h30,7' to 8' bull shark,"M.Vorenberg, GSAF",1973.09.14-Schlusemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.14-Schlusemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.14-Schlusemeyer.pdf,1973.09.14,1973.09.14,2924,, +1973.09.10.R,Reported 10-Sep-1973,1973,Unprovoked,HONG KONG,Mirs Bay ,,Freedom Swimming,Tsang Kai-shing,M,20,FATAL,Y,,,"Charleston Daily Mail, 9/10/1973",1973.09.10.R-Tsang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.10.R-Tsang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.10.R-Tsang.pdf,1973.09.10.R,1973.09.10.R,2923,, +1973.09.09,09-Sep-73,1973,Unprovoked,MEXICO,Baja California,Guadalupe Island,"Free diving, Spearfishing",Al Schneppershoff,M,37,"FATAL, leg bitten ",Y,16h45,White shark,"Washington Post, 9/12/1973; J. McCosker & R.N. Lea",1973.09.09-Schneppershoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.09-Schneppershoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.09-Schneppershoff.pdf,1973.09.09,1973.09.09,2922,, +1973.09.00,Sep-73,1973,Unprovoked,EGYPT,Red Sea,Southern end of the Sinai Peninsula,,Soldier,M,,Massive wound on right thigh with femur exposed,N,,Tiger shark,R. Davis,1973.09.00-NV-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.00-NV-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.00-NV-RedSea.pdf,1973.09.00,1973.09.00,2921,, +1973.08.27,27-Aug-73,1973,Unprovoked,AUSTRALIA,Queensland,Palm Cove Beach,,G. Cole,,21,,UNKNOWN,,,"J. Green, p.36",1973.08.27-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.27-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.27-Cole.pdf,1973.08.27,1973.08.27,2920,, +1973.08.25,25-Aug-73,1973,Unprovoked,AUSTRALIA,Queensland,"Point Lookout, Stradbroke Island",Surfing,Bruce Lawlor (or Lawler),M,16,Right foot severed,N,,12' shark,"L.A. Times, 8/16/1973, p.B4; R. McKenzie, Sunday Mail, 9/6/1987, p.11; J. Green, p.36",1973.08.25-Lawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.25-Lawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.25-Lawler.pdf,1973.08.25,1973.08.25,2919,, +1973.08.16,16-Aug-73,1973,Unprovoked,USA,Virginia,False Cape,Crabbing (spearing crabs),Chris DeFord,M,17,Elbow bitten,N,,1.5 m to 1.8 m [5' to 6'] blacktip shark,"A. MacCormick, p.11, cites New Orleans Times-Picayune, 8/17/1983 ",1973.08.16-DeFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.16-DeFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.16-DeFord.pdf,1973.08.16,1973.08.16,2918,, +1973.06.13,13-Jun-73,1973,Unprovoked,HONG KONG,,,Freedom Swimming,2 youths,M,,"One man was killed by a shark, the other was injured",N,,,"The Age, 6/15/1973",1973.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.06.13-HongKong.pdf,1973.06.13,1973.06.13,2917,, +1973.04.04,04-Apr-73,1973,Unprovoked,MEXICO,Guerrero,"Revolcadero Beach, Acapulco",Wading,John P.R. Nicholls,M,45,"FATAL, multiple bites ",Y,18h00,,"A.Resciniti, p.108",1973.04.04-Nicolls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.04.04-Nicolls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.04.04-Nicolls.pdf,1973.04.04,1973.04.04,2916,, +1973.03.26,26-Mar-73,1973,Unprovoked,AUSTRALIA,Queensland,Palm Island,,Stuart Baddock,M,,Survived,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1973.03.26-Baddock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.26-Baddock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.26-Baddock.pdf,1973.03.26,1973.03.26,2915,, +1973.03.05,05-Mar-73,1973,Unprovoked,MOZAMBIQUE,Gaza,"Chongeone, Xai Xai",Spearfishing,William C. Lamb,M,28,FATAL,Y,Morning,,"M. Levine, GSAF",1973.03.05-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.05-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.05-Lamb.pdf,1973.03.05,1973.03.05,2914,, +1973.03.00,Mar-73,1973,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Spearfishing,Kevin Cole,M,26,Hip bruised,N,Morning,"2 m shark, possibly a dusky or blacktip shark","D. Davies; K. Cole, M. Levine, GSAF",1973.03.00-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.00-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.00-Cole.pdf,1973.03.00,1973.03.00,2913,, +1973.02.27,27-Feb-73,1973,Unprovoked,MEXICO,Guerrero,"Revolcadero Beach, Acapulco",Swimming,Dr. Leo Ephraim Fischer,,57,"FATAL, multiple bites ",Y,,,"Reno Gazette, 4/8/1973; A.Resciniti, pp.108-109",1973.02.27-Ephraim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.02.27-Ephraim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.02.27-Ephraim.pdf,1973.02.27,1973.02.27,2912,, +1973.01.21,21-Jan-73,1973,Provoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Fishing from paddleski,C. Thackwray,M,,Hooked & gaffed shark bit his right elbow PROVOKED INCIDENT,N,,1 m shark,"M. Levine, GSAF",1973.01.21-Thackwray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.21-Thackwray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.21-Thackwray.pdf,1973.01.21,1973.01.21,2911,, +1973.01.09,09-Jan-73,1973,Unprovoked,USA,Hawaii,"Ho'okipa Beach, Pa'ia, Maui",Surfing,Robert Sterling,M,,Leg bitten,N,,1.2 m to 1.8 m [4' to 6'] shark observed in area,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1973.01.09-Sterling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.09-Sterling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.09-Sterling.pdf,1973.01.09,1973.01.09,2910,, +1973.00.00.c,1973,1973,Unprovoked,PALAU,Aulong Island,Aulong Channel,Scuba diving (submerged),Mitchell Warner,M,,"No injury, shark grabbed scuba tank and descended to 110' before releasing him ",N,,Tiger shark,M.P. Warner,1973.00.00.c-Warner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.c-Warner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.c-Warner.pdf,1973.00.00.c,1973.00.00.c,2909,, +1973.00.00.b,1973,1973,Unprovoked,PALAU,Western Caroline Islands,,Scuba diving & U/W photography,Bill Curtsinger,M,,Hand & right shoulder lacerated,N,,Grey reef shark," National Geographic, January 1995, p.56-57",1973.00.00.b-Curstinger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.b-Curstinger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.b-Curstinger.pdf,1973.00.00.b,1973.00.00.b,2908,, +1973.00.00.a,1973,1973,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Queensberry Bay,Surfing,Gordon Harmer,M,13,"No injury, surboard flung into air & dented",N,08h00,,G. Harmer,1973.00.00.a-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.a-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.a-Harmer.pdf,1973.00.00.a,1973.00.00.a,2907,, +1972.12.31,31-Dec-72,1972,Unprovoked,SOUTH AFRICA,Western Cape Province,Millers Point,Treading water,Charles Lubbe,M,29,Lower left leg & foot bitten,N,14h00,,"J. Bass & A. Heydorn; Cape Argus, 1/2/1973",1972.12.31-Lubbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.31-Lubbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.31-Lubbe.pdf,1972.12.31,1972.12.31,2906,, +1972.12.26,26-Dec-72,1972,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Helmut Pfosse,M,25,"Hip, leg, arm, hand & shoulder bitten",N,15h00,2 m to 3 m shark,GSAF,1972.12.26-Pfosse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.26-Pfosse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.26-Pfosse.pdf,1972.12.26,1972.12.26,2905,, +1972.12.25,25-Dec-72,1972,Unprovoked,MEXICO,Guerrero,"Revolcadero Beach, Acapulco",Body surfing,Gerald Soukoff,M,17,"FATAL, hand severed, right leg and torso bitten ",Y,Afternoon,,"The Gleaner, 1/3/1973; A. Resciniti, p.109",1972.12.25-Sockoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.25-Sockoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.25-Sockoff.pdf,1972.12.25,1972.12.25,2904,, +1972.12.24,24-Dec-72,1972,Unprovoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Swimming,Johan Brink,M,,"No injury, swim fin bitten",N,09h00,"White shark, > 3 m [10']","J. Bass, ORI; M. Levine, GSAF",1972.12.24-Brink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.24-Brink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.24-Brink.pdf,1972.12.24,1972.12.24,2903,, +1972.12.22,21-Dec-72,1972,Unprovoked,AUSTRALIA,Queensland,Currumbin Rock,,Mark Worman,M,,Hand bitten,N,,,"Canberra Times, 12/23/1972",1972.12.22-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.22-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.22-Worman.pdf,1972.12.22,1972.12.22,2902,, +1972.12.08,08-Dec-72,1972,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",,R. Bartlett,,24,PROVOKED INCIDENT,N,,,"J. Green, p.36",1972.12.08-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.08-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.08-Bartlett.pdf,1972.12.08,1972.12.08,2901,, +1972.12.01,01-Dec-72,1972,Unprovoked,REUNION,Saint-Philippe,Basse Valle,Spearfishing,,,,FATAL,Y,,,G. Van Grevelynghe,1972.12.01-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.01-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.01-Reunion.pdf,1972.12.01,1972.12.01,2900,, +1972.10.22,21-Oct-72,1972,Unprovoked,AUSTRALIA,Queensland,"Stevens Reef, 70 miles from Mackay",Spearfishing,Norman Hargreaves,M,24,Right arm bitten,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1972.10.22-Hargreaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.22-Hargreaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.22-Hargreaves.pdf,1972.10.22,1972.10.22,2899,, +1972.10.21,21-Oct-72,1972,Unprovoked,AUSTRALIA,New South Wales,Tabourie Beach,Surfing,Terry Cooper,M,19,Lacerations to thigh & buttocks,N,,"Bronze whaler shark, 10' ","The Age, 10/23/1972",1972.10.21-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.21-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.21-Cooper.pdf,1972.10.21,1972.10.21,2898,, +1972.10.14.b,14-Oct-72,1972,Unprovoked,USA,US Virgin Islands,"St. Croix, Cane Bay",Scuba diving,Rodney Temple,M,,"FATAL, body not recovered",Y,,Oceanic whitetip shark x 2,"H.D. Baldridge, pp.177 & 185",1972.10.14.b-Temple.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.b-Temple.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.b-Temple.pdf,1972.10.14.b,1972.10.14.b,2897,, +1972.10.14.a,14-Oct-72,1972,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kenneth Hiles,M,17,Survived,N,,,"Daytona Beach Morning Journal, 10/18/1972",1972.10.14.a-Hiles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.a-Hiles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.a-Hiles.pdf,1972.10.14.a,1972.10.14.a,2896,, +1972.10.10.R,Reported 10-Oct-1972,1972,Unprovoked,NEW ZEALAND,North Island,Wanganui,Swimming,Barry Kumara,M,17,"No injury, leg of jeans torn off",N,,,"European Stars and Stripes, 10/10/1973 ",1972.10.10.R-Kumara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.10.R-Kumara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.10.R-Kumara.pdf,1972.10.10.R,1972.10.10.R,2895,, +1972.09.09,09-Sep-72,1972,Unprovoked,USA,California,"Point Sur, Monterey County",Surfing,Hans Kretschmer,M,,Legs & board bitten,N,10h00,"White shark, 6 m [20'] ","D. Miller & R. Collier, R. Collier, pp. 52-53; J. McCosker & R.N. Lea",1972.09.09-Kretschmer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.09-Kretschmer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.09-Kretschmer_Collier.pdf,1972.09.09,1972.09.09,2894,, +1972.09.04,04-Sep-72,1972,Invalid,MOZAMBIQUE,Maputo Province,Inhaca Island,Swimming,Yvonne Vladislavick,F,20,Feet injured,N,,,"Daily News, 9/6/1972",1972.09.04-Vladislavick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.04-Vladislavick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.04-Vladislavick.pdf,1972.09.04,1972.09.04,2893,, +1972.08.29,29-Aug-72,1972,Unprovoked,USA,Florida,"Crescent Beach, St. Johns County",Surfing,Mark Van Leer,M,15,Left calf bitten,N,Evening,,"Ocala Star Banner, 8/30/1972",1972.08.29-VanLeer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.29-VanLeer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.29-VanLeer.pdf,1972.08.29,1972.08.29,2892,, +1972.08.17,17-Aug-72,1972,Unprovoked,USA,Hawaii,"Waimanu, Honoka'a, Hawai'i",Spearfishing,Eric Fotherby,M,,Forearm bitten,N,,2.4 m [8'] shark,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1972.08.17-Fotherby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.17-Fotherby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.17-Fotherby.pdf,1972.08.17,1972.08.17,2891,, +1972.08.08,08-Aug-72,1972,Unprovoked,AUSTRALIA,Tasmania,Tasman Island,Diving for abalone,Gordon Johnson,M,45,Left foot bitten,N,,"White shark, 10'","The Age, 8/10/1972; J. Green, p.36; C. Black, pp 151-153",1972.08.08-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.08-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.08-Johnson.pdf,1972.08.08,1972.08.08,2890,, +1972.07.05,05-Jul-72,1972,Invalid,USA,California,"Laguna Beach, Orange County",Diving,,,,Sharks reportedly bit legs & fins ,N,,2 sharks,Unconfirmed Report,1972.07.05-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.07.05-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.07.05-NV-California.pdf,1972.07.05,1972.07.05,2889,, +1972.06.26.b,Reported 26-Jun-1972,1972,Unprovoked,AUSTRALIA,Queensland,Pancake Creek,,Kenneth Murchison,M,,FATAL,Y,,,"Canberra Times, 6/26/1972",1972.06.26.b-Murchison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.b-Murchison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.b-Murchison.pdf,1972.06.26.b,1972.06.26.b,2888,, +1972.06.26.a,Reported 26-Jun-1972,1972,Unprovoked,AUSTRALIA,Queensland,Pancake Creek,,Ronald Kelly,M,,FATAL,Y,,,"Canberra Times, 6/26/1972",1972.06.26.a-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.a-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.a-Kelly.pdf,1972.06.26.a,1972.06.26.a,2887,, +1972.06.10,10-Jun-72,1972,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Richard Salick,M,22,Buttocks bitten,N,11h30,4.5' shark,P. Salick,1972.06.10-Salick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.10-Salick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.10-Salick.pdf,1972.06.10,1972.06.10,2886,, +1972.05.28,28-May-72,1972,Unprovoked,USA,California,"Bird Rock, near Tomales Point, Marin County",Free diving for abalone,Helmut Himmrich,M,32,Bitten on legs & buttock,N,13h30,"White shark, 4.4 m to 5 m [14.5' to 16.5'] ","D. Miller & R. Collier, R. Collier, pp.48-50; Evening Tribune (San Diego) 7/17/1972; H.D. Baldridge, p.78; J. McCosker & R.N. Lea ",1972.05.28-Himmrich_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.28-Himmrich_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.28-Himmrich_Collier.pdf,1972.05.28,1972.05.28,2885,, +1972.05.06,06-May-72,1972,Unprovoked,FRENCH POLYNESIA,Tuamotus,Ah Atoll,Spearfishing,B.T.,M,27,Thigh bitten,N,,1.5 m grey reef shark,"M. Fouques, et.al, pp. 318-319",1972.05.06-BT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.06-BT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.06-BT.pdf,1972.05.06,1972.05.06,2884,, +1972.04.16,16-Apr-72,1972,Unprovoked,WESTERN SAMOA,Upolu Island,Nuulua,Swimming,"Alan Banner, Peace Corps volunteer",M,25,FATAL,Y,,Thought to involve a tiger shark,J. Gregory,1972.04.16-Banner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.16-Banner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.16-Banner.pdf,1972.04.16,1972.04.16,2883,, +1972.04.01.b,01-Apr-72,1972,Unprovoked,AUSTRALIA,Queensland,Wellington Point,,Sonja Kuelsen,F,,Left leg bitten,N,,,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1972.04.01.b-Kuelsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.b-Kuelsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.b-Kuelsen.pdf,1972.04.01.b,1972.04.01.b,2882,, +1972.04.01.a,01-Apr-72,1972,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Richard George Wilson,M,19,FATAL,Y,17h00,,Note: The Johannesburg Star initially recorded his name as Richard Wilson Gordon,1972.04.01.a-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.a-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.a-Wilson.pdf,1972.04.01.a,1972.04.01.a,2881,, +1972.03.21,21-Mar-72,1972,Provoked,PACIFIC OCEAN ,,,Fishing,John Fairfax,M,33,Arm bitten by hooked shark PROVOKED INCIDENT,N,,,NY Times 4/2/1972,1972.03.21-Fairfax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.21-Fairfax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.21-Fairfax.pdf,1972.03.21,1972.03.21,2880,, +1972.03.16,16-Mar-72,1972,Unprovoked,USA,Hawaii,"Waihe'e, Wailuku, Maui",Spearfishing,"Adam Gomes, Jr.",M,,Leg bitten,N,,,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1972.03.16-Gomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.16-Gomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.16-Gomes.pdf,1972.03.16,1972.03.16,2879,, +1972.02.20,20-Feb-72,1972,Unprovoked,AUSTRALIA,Victoria,"Wilson's Promontory, Waratah Bay",Surfing,Stuart Rogers,M,18,Laceration above knee,N,11h00,7' shark,"Sydney Morning Herald, 2/21/1972 ",1972.02.20-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.20-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.20-Rogers.pdf,1972.02.20,1972.02.20,2878,, +1972.02.12,12-Feb-72,1972,Unprovoked,AUSTRALIA,Tasmania,Elliot's Cove,,D. Trayling,,,Survived,N,,,"C. Black, GSAF; J. Green, p.36",1972.02.12-Trayling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.12-Trayling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.12-Trayling.pdf,1972.02.12,1972.02.12,2877,, +1972.01.01.c,01-Jan-72,1972,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Georges Strand,Swimming,Jacob Nkomo,M,20,"FATAL, coroner's Verdict: ""Death presumably through shark attack & drowning""",Y,,,"M. Levine, GSAF",1972.01.01.c-Nkomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.c-Nkomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.c-Nkomo.pdf,1972.01.01.c,1972.01.01.c,2876,, +1972.01.01.b,01-Jan-71,1972,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Kosi Bay,Sitting in shallows,Janie Pelser,F,30,Foot bitten,N,20h00,Zambesi shark,"J. Bass & G. Hughes; J. Pelser, M. Levine, GSAF",1972.01.01.b-Pelser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.b-Pelser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.b-Pelser.pdf,1972.01.01.b,1972.01.01.b,2875,, +1972.01.01.a,01-Jan-71,1972,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Standing,Robert Richard,M,24,"Leg severed at knee, hand severed, arms, torso & buttock severely lacerated",N,16h20,"White shark, 2.5 m [8.25'] ","J. Bass; M. Levine, GSAF",1972.01.01.a-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.a-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.a-Richard.pdf,1972.01.01.a,1972.01.01.a,2874,, +1972.00.00.b,1972,1972,Unprovoked,FRANCE,Antibes,,Swimming,,,,Shoulder injured,N,,White shark,C. Moore,1972.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.b-Antibes.pdf,1972.00.00.b,1972.00.00.b,2873,, +1972.00.00.a,1972,1972,Unprovoked,MARSHALL ISLANDS,Illeginni Atoll,,"Free diving, collecting shells",Alan Titchenal,M,,Right hand & torso lacerated,N,,1.8 m [6'] grey reef shark,"G. Ambrose, pp.78-86",1972.00.00.a-Titchenal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.a-Titchenal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.a-Titchenal.pdf,1972.00.00.a,1972.00.00.a,2872,, +1971.12.23,23-Dec-71,1971,Unprovoked,AUSTRALIA,New South Wales,Smokey Cape,,G. Byron,,22,Survived,N,,,"J. Green, p.36",1971.12.23-Byron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.23-Byron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.23-Byron.pdf,1971.12.23,1971.12.23,2871,, +1971.12.16,16-Dec-71,1971,Unprovoked,SOUTH AFRICA,Western Cape Province,"Fish Hoek, False Bay",Swimming,Cheryl Teague,F,16,Right forearm bitten,N,14h45,"White shark, 3 m [10']rk","C. Teague, M. Levine, GSAF; A. Heydorn, ORI; T. Wallett, p.40",1971.12.16-Teague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.16-Teague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.16-Teague.pdf,1971.12.16,1971.12.16,2870,, +1971.12.05,05-Dec-71,1971,Unprovoked,AUSTRALIA,Queensland,Gladstone,,Gregory Carroll,M,20,FATAL,Y,,,"The Age, 12/9/1971",1971.12.05-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.05-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.05-Carroll.pdf,1971.12.05,1971.12.05,2869,, +1971.11.27,Reported 25-Nov-1971,1971,Unprovoked,HONG KONG,Mirs Bay ,,Freedom Swimming,Chan Sze-king,M,20,"Left leg severely bitten, surgically amputated",N,Just before dawn,,"The Advocate, 11/25/1971; Post Crescent, 11/28/1971",1971.11.27-Tracy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.27-Tracy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.27-Tracy.pdf,1971.11.27,1971.11.27,2868,, +1971.11.25.R,27-Oct-71,1971,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",,K. Tracy,,20,PROVOKED INCIDENT,N,,,"J. Green, p.36",1971.11.25.R-Chan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.25.R-Chan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.25.R-Chan.pdf,1971.11.25.R,1971.11.25.R,2867,, +1971.10.23,23-Oct-71,1971,Unprovoked,USA,Florida,"Ft. Pierce, St Lucie County",Surfing,"Walter E. Milford, Jr.",M,18,"Right shoulder, arm & hand bitten",N,Afternoon,5' to 6' shark,"News Tribune, 10/25/1971 ",1971.10.23-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.23-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.23-Milford.pdf,1971.10.23,1971.10.23,2866,, +1971.10.14,14-Oct-71,1971,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Werner Bayer,M,25,Wrist & hand lacerated,N,Evening,1.5 m to 2 m shark,J. Bass,1971.10.14-Bayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.14-Bayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.14-Bayer.pdf,1971.10.14,1971.10.14,2865,, +1971.10.02,02-Oct-71,1971,Unprovoked,USA,California,"Sea Ranch, Sonoma County",Scuba diving,Calvin Ward,M,30,Bitten on legs,N, 14h00,"White shark, 5 m to 6 m [16.5' to 20'] ","D. Miller & R. Collier; R. Collier, p. 48",1971.10.02-Ward_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.02-Ward_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.02-Ward_Collier.pdf,1971.10.02,1971.10.02,2864,, +1971.09.25,25-Sep-71,1971,Unprovoked,USA,North Carolina,"Emerald Isle, Carteret County",Surfing,J. Horner,,17,Left foot injured,N,,,"F. Schwartz, p.23",1971.09.25-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.25-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.25-Horner.pdf,1971.09.25,1971.09.25,2863,, +1971.09.07,07-Sep-71,1971,Unprovoked,CROATIA,Istria County,Ika,Swimming,Stanislav Klepa,M,34,FATAL,Y,10h30,White shark,"R. Rocconi & C. Moore, GSAF",1971.09.07-Klepa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.07-Klepa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.07-Klepa.pdf,1971.09.07,1971.09.07,2862,, +1971.09.05,05-Sep-71,1971,Unprovoked,AUSTRALIA,South Australia,Adelaide,Fishing,Leslie Oswald Harris,M,51," FATAL. Shark bite was minor injury, but he suffered a heart attack afterwards and died 6 hours later",Y,,,"J. West, Adelaide Advertiser, 9/7/1971, p.10; P. Kemp, GSAF",1971.09.05-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.05-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.05-Harris.pdf,1971.09.05,1971.09.05,2861,, +1971.08.21,21-Aug-71,1971,Provoked,AUSTRALIA,New South Wales,"Manly Marineland, Sydney",Scuba diving & feeding fish,Jim Allman,M,26,Eight puncture wounds to right leg by captive shark PROVOKED INCIDENT,N,13h15,"Grey nurse shark, 11'","Sydney Morning Herald, 8/22/1971",1971.08.21-Allman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.08.21-Allman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.08.21-Allman.pdf,1971.08.21,1971.08.21,2860,, +1971.07.26,26-Jul-71,1971,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Michael Prather,M,8,Laceration to left ankle,N,Afternoon,,"Miami News, 7/27/1971",1971.07.26-Prather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.26-Prather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.26-Prather.pdf,1971.07.26,1971.07.26,2859,, +1971.07.19,19-Jul-71,1971,Unprovoked,USA,California,"Point Purisima, Santa Barbara County",Hookah diving (submerged),Kenneth Gray,M,,"Major injuries to head, buttocks & back",N,,"White shark, 5.5 m to 6 m [18' to 20'] ","D. Miller & R. Collier, R. Collier, pp.51-52; J. McCosker & R.N. Lea",1971.07.19-Gray_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.19-Gray_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.19-Gray_Collier.pdf,1971.07.19,1971.07.19,2858,, +1971.06.30,30-Jun-71,1971,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surfing,Gideon Scheltema,M,21,Leg & surfboard bitten,N,15h35,"White shark, 3 m [10'], species identity confirmed by witnesses & tooth pattern in leg & board ","G. Scheltema, M. Levine, GSAF; J. Bass, ORI",1971.06.30-Scheltema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.30-Scheltema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.30-Scheltema.pdf,1971.06.30,1971.06.30,2857,, +1971.06.01,01-Jun-71,1971,Unprovoked,BRITISH ISLES,South Devon,Beesands,Scuba diving,Jimmy Johnson,M,32,"No injury, said to have been attacked by shark but drove it away with a lobster hook",N,,3.6 m porbeagle shark,J. Steel (1989),1971.06.01-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.01-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.01-Johnson.pdf,1971.06.01,1971.06.01,2856,, +1971.04.16R,Reported 16-Apr-1971,1971,Unprovoked,KENYA,Coast Province,Watamu,Swimming,a German tourist,M,16,Right foot bitten,N,,"2 m [6'9""] shark",M. v. Schoor,1971.04.16-Watamu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.16-Watamu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.16-Watamu.pdf,1971.04.16R,1971.04.16R,2855,, +1971.04.11,11-Apr-71,1971,Unprovoked,SOUTH AFRICA,Western Cape Province,Buffels Bay,Swimming,Theo Klein,M,>50,"FATAL, multiple bites ",Y,11h30,White shark according to tooth pattern and witnesses,"J. Wallace, ORI; M. Levine, GSAF; T. Wallett, pp.39-40",1971.04.11-TheoKlein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.11-TheoKlein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.11-TheoKlein.pdf,1971.04.11,1971.04.11,2854,, +1971.04.06,06-Apr-71,1971,Unprovoked,MEXICO,Guerrero,"Copacabana Beach, Acapulco",Surfing,Jimmy Rowe,M,19,"FATAL, left thigh bitten ",Y,11h00,,"A.Resciniti, p.109",1971.04.06-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.06-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.06-Rowe.pdf,1971.04.06,1971.04.06,2853,, +1971.04.05.b,05-Apr-71,1971,Unprovoked,VENEZUELA,,,,Alberto Mayora ,M,14,"FATAL, body not recovered",Y,,,H.D. Baldridge (1994) SAF Case #1646,1971.04.05.b-NV-A-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.b-NV-A-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.b-NV-A-Mayora.pdf,1971.04.05.b,1971.04.05.b,2852,, +1971.04.05.a,05-Apr-71,1971,Unprovoked,VENEZUELA,,,,Tarcisio Mayora,M,66,"FATAL, body not recovered",Y,,,H.D. Baldridge (1994) SAF Case #1646,1971.04.05.a-NV-T-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.a-NV-T-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.a-NV-T-Mayora.pdf,1971.04.05.a,1971.04.05.a,2851,, +1971.04.00,Late Apr-1971,1971,Sea Disaster,MOZAMBIQUE,Between Beira & Maputo,,Wreck of the 1689-ton Portuguese coaster Angoche,"Sailed with 23 crew, half survived the explosion",,,"FATAL, it was thought the surviving crew were taken by sharks",Y,,,"M. Levine, GSAF",1971.04.00-Angoche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.00-Angoche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.00-Angoche.pdf,1971.04.00,1971.04.00,2850,, +1971.03.30,30-Mar-71,1971,Unprovoked,NEW ZEALAND,South Island,Dunedin,Surfing,Barry Watkins,M,16,Lacerations to left leg ,N,10h20,"White shark, 4.6 m [15'] ","B. Watkins, R. D. Weeks, GSAF ",1971.03.30-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.03.30-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.03.30-Watkins.pdf,1971.03.30,1971.03.30,2849,, +1971.01.02,02-Jan-71,1971,Unprovoked,AUSTRALIA,Tasmania,,Swimming,Ralph Painter,M,,Torso lacerated,N,16h30,,"C. Black, GSAF; H.D. Baldridge (1994) SAF Case #1650",1971.01.02-Painter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.01.02-Painter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.01.02-Painter.pdf,1971.01.02,1971.01.02,2848,, +1971.00.00.c,1971,1971,Unprovoked,AUSTRALIA,South Australia,Southport,Surfing,Tim Franklin,M,15,Severe lacerations to thigh,N,,White shark,The Advertiser (undated),1971.00.00.c-Franklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.c-Franklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.c-Franklin.pdf,1971.00.00.c,1971.00.00.c,2847,, +1971.00.00.b,1971,1971,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,Mr. Nagib,M,,Survived,N,,,B. Coad,1971.00.00.b-Nagib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.b-Nagib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.b-Nagib.pdf,1971.00.00.b,1971.00.00.b,2846,, +1971.00.00.a,1971,1971,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,Mr. Kalantar,M,,Survived,N,,,B. Coad,1971.00.00.a-Kalantar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.a-Kalantar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.a-Kalantar.pdf,1971.00.00.a,1971.00.00.a,2845,, +1970.12.17,17-Dec-70,1970,Unprovoked,MOZAMBIQUE,Inhambe Province,"Inhasoka, Inhambe Bay",Fishing for prawns,Castigo Litura,M,18,"FATAL, arm severed ",Y,15h00,,"GSAF; H.D. Baldridge, p.22",1970.12.17-Litura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.17-Litura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.17-Litura.pdf,1970.12.17,1970.12.17,2844,, +1970.12.13,13-Dec-70,1970,Unprovoked,MOZAMBIQUE,Inhambe Province,"Inhambe Bay Estuary, 10 to 12 miles inland from the sea",Fishing for prawns,black male,M,18 to 22,"FATAL, decapitated and arm severed",Y,,,"GSAF; H.D. Baldridge, p.22",1970.12.13-BlackMale-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.13-BlackMale-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.13-BlackMale-Mozambique.pdf,1970.12.13,1970.12.13,2843,, +1970.12.07,07-Dec-70,1970,Unprovoked,MICRONESIA,Namonuito Atoll,Pisarach (Pisaras),Fishing,Santiago Kapriel,M,,Laceration to thigh,N,23h00,1.8 m shark,R.S. Jones,1970.12.07-Kapriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.07-Kapriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.07-Kapriel.pdf,1970.12.07,1970.12.07,2842,, +1970.12.03,03-Dec-70,1970,Sea Disaster,USA,Hawaii,Kauai,Shipwreck,Dikios Leopold,M,41,Right thigh lacerated,N,,,"The Argus, 12/7/1970, p.2",1970.12.03-Leopold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.03-Leopold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.03-Leopold.pdf,1970.12.03,1970.12.03,2841,, +1970.11.00,Nov-70,1970,Unprovoked,,,,,Heinz Plotsky,M,,Extensive injuries,N,,," H.D. Baldridge (1994), SAF Case #1645",1970.11.00-NV-Plotsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.11.00-NV-Plotsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.11.00-NV-Plotsky.pdf,1970.11.00,1970.11.00,2840,, +1970.10.24,24-Oct-70,1970,Unprovoked,USA,Hawaii,"Brennecke Beach, Po'ipu, Kaua'i",Body surfing,James C. Mattan,M,,Shoulder & arm bitten,N,,,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1970.10.24-Mattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.24-Mattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.24-Mattan.pdf,1970.10.24,1970.10.24,2839,, +1970.10.00,Oct-70,1970,Unprovoked,USA,Florida,"Matanzas Inlet, St Johns County",Surfing,Robbie Baker,M,,Bitten on right leg above the ankle,N,,,"H. Wessel, Orlando Sentinel, 8/1/2001 ",1970.10.00-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.00-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.00-Baker.pdf,1970.10.00,1970.10.00,2838,, +1970.09.28,28-Sep-70,1970,Unprovoked,MICRONESIA,Eastern Caroline Islands,Truk Lagoon,Diving,Mike Uramai,M,43,Lacerations & punctures to right arm & shoulder ,N,10h00,1.8 to 2 m C. albimarginatus,R.S. Jones,1970.09.28-Urumai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.28-Urumai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.28-Urumai.pdf,1970.09.28,1970.09.28,2837,, +1970.09.13,13-Sep-70,1970,Provoked,PALAU,Western Caroline Islands (North Pacific Ocean),Outside barrier reef,Spearfishing,Aismerael Samsel,M,20,"Another diver shot shark, shark bit his left foream PROVOKED INCIDENT",N,,1 m shark,"K.R.H. Read; H.D. Baldridge, p.192",1970.09.13-Samsel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.13-Samsel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.13-Samsel.pdf,1970.09.13,1970.09.13,2836,, +1970.09.05,05-Sep-70,1970,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Floating on a raft,Reggie Hodgson,M,18,Laceration to left foot,N,11h30,,"St. Petersburg Times, 9/7/1970, p.12B",1970.09.05-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.05-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.05-Hodgson.pdf,1970.09.05,1970.09.05,2835,, +1970.09.02,02-Sep-70,1970,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",,David Cook,M,20,PROVOKED INCIDENT,N,,,"J. Green, p.36",1970.09.02-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.02-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.02-Cook.pdf,1970.09.02,1970.09.02,2834,, +1970.09.00.c,Sep-70,1970,Unprovoked,USA,South Carolina,,Swimming,Gary Kirakas,M,,Foot lacerated,N,,"""Dog shark""","H.D. Baldridge (1994), SAF Case #1630",1970.09.00.c-Kirakas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.c-Kirakas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.c-Kirakas.pdf,1970.09.00.c,1970.09.00.c,2833,, +1970.09.00.a,Sep-70,1970,Unprovoked,USA,Florida,Pinellas County,Scuba diving,male,M,,Calf / knee injured?,N,,,SAF Case #1485,1970.09.00.a-NV-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.a-NV-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.a-NV-male.pdf,1970.09.00.a,1970.09.00.a,2832,, +1970.08.02,02-Aug-70,1970,Invalid,,Caribbean Sea,Between St. Kitts & Nevis,Sea Disaster Sinking of ferryboat Christina,,,,"Sharks scavenged on bodies, but no record of them injuring survivors ",Y,Afternoon,,"Rome News Tribune, 8/3/1970",1970.08.02-Christina-ferryboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.08.02-Christina-ferryboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.08.02-Christina-ferryboat.pdf,1970.08.02,1970.08.02,2831,, +1970.07.05,05-Jul-70,1970,Unprovoked,,,,,male,M,,Finger or toe severed,N,Night,Mako shark,"H.D. Baldridge (1994), SAF Case #1628",1970.07.05-NV-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.07.05-NV-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.07.05-NV-male.pdf,1970.07.05,1970.07.05,2830,, +1970.06.22,22-Jun-70,1970,Provoked,USA,Florida,"Dania, Broward County",Fishing,William Faulkner,M,13,Bitten on calf by hooked shark PROVOKED INCIDENT,N,,7.5' shark,Bridgeport Post 6/22/1970,1970.06.22-Faulkner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.22-Faulkner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.22-Faulkner.pdf,1970.06.22,1970.06.22,2829,, +1970.06.15,15-Jun-70,1970,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Shark tank, Oceanographic Research Institute, Durban",Scuba Diving,Anand Govindsamy,M,25,2 cm laceration on knee PROVOKED INCIDENT,N,16h00,"Raggedtooth shark, 2 m [6'9""], 5-year-old, captive female ","D. Davies; A.J. Bass, ORI",1970.06.15-Govindsamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.15-Govindsamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.15-Govindsamy.pdf,1970.06.15,1970.06.15,2828,, +1970.06.13.b,13-Jun-70,1970,Unprovoked,GRENADA,St. Andrew Parish,Grenville,Wading,Lincoln Alpheus,M,16,"FATAL, multiple injuries to both legs ",Y,14h00,,"E. Pace, FSAF",1970.06.13.b-LincolnJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.b-LincolnJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.b-LincolnJohn.pdf,1970.06.13.b,1970.06.13.b,2827,, +1970.06.13.a,13-Jun-70,1970,Unprovoked,GRENADA,St. Andrew Parish,Grenville,Wading,John Alpheus,M,18,"FATAL, body not recovered",Y,14h00,,"E. Pace, FSAF",1970.06.13.a-AlpheusJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.a-AlpheusJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.a-AlpheusJohn.pdf,1970.06.13.a,1970.06.13.a,2826,, +1970.06.00,Jun-70,1970,Sea Disaster,PHILIPPINES,200 nm southeast of Manila,,Motor launch Baby Princesa capsized with 22 people on board,,,,"2 people survived, 6 drowned & the others were killed by sharks",Y,,,"The Daily Intelligencer, 6/12/1970, p.2; The Times (London), September 24, 1970",1970.06.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.00-Philippines.pdf,1970.06.00,1970.06.00,2825,, +1970.04.04,04-Apr-70,1970,Unprovoked,GRENADA,St. Andrew Parish,Grenville,Swimming,Rudolf Daily,M,14,"FATAL, body not recovered",Y,16h00,,"E. Pace, FSAF",1970.04.04-Daily.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.04-Daily.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.04-Daily.pdf,1970.04.04,1970.04.04,2824,, +1970.04.00.b,Apr-70,1970,Provoked,,,,Freediving,Lionel Jarvis,M,,Arm abraded & lacerated. Recorded as PROVOKED INCIDENT,N,,Wobbegong shark ,"H.D. Baldridge (1994), SAF Case #1616",1970.04.00.b-NV-Jarvis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.b-NV-Jarvis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.b-NV-Jarvis.pdf,1970.04.00.b,1970.04.00.b,2823,, +1970.04.00.a,Apr-70,1970,Unprovoked,SOLOMON ISLANDS,,,Swimming,David Vota,M,,No details,UNKNOWN,,Wobbegong shark,H.D. Baldridge (1994) SAF Case #1655,1970.04.00.a-NV-Vota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.a-NV-Vota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.a-NV-Vota.pdf,1970.04.00.a,1970.04.00.a,2822,, +1970.03.31,31-Mar-70,1970,Invalid,USA,Hawaii,"Waimea Bay, O'ahu",Body surfing,Ernie Reathaford,M,,"Swept out to sea, body not recovered",Y,,5.5 m [18'] shark seen in the vicinity,"J. Borg, p.74",1970.03.31-Reathaford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.31-Reathaford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.31-Reathaford.pdf,1970.03.31,1970.03.31,2821,, +1970.03.23,23-Mar-70,1970,Unprovoked,USA,Florida,Manatee County,Wading,Robert Fetterman,M,19,Foot & calf lacerated,N,Late afternoon,,H.D. Baldridge (1994) SAF Case #1620,1970.03.23-Fetterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.23-Fetterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.23-Fetterman.pdf,1970.03.23,1970.03.23,2820,, +1970.02.05,05-Feb-70,1970,Unprovoked,,,,Wading,Sally Anne Irvine,F,8,Lacerations to lower leg,N,,Carpet shark,H.D. Baldridge (1994) SAF Case #1626,1970.02.05-NV-Irvine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.02.05-NV-Irvine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.02.05-NV-Irvine.pdf,1970.02.05,1970.02.05,2819,, +1970.01.23.d,23-Jan-70,1970,Unprovoked,MOZAMBIQUE,Limpopo River,3.2 km inland,Swimming,Zulu Soto,M,14,"Hands severed, forearm severely lacerated",N,,,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.d-Soto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.d-Soto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.d-Soto.pdf,1970.01.23.d,1970.01.23.d,2818,, +1970.01.23.c,23-Jan-70,1970,Unprovoked,MOZAMBIQUE,Limpopo River,"Gijana, 150 km inland",Swimming,Betual Tivane,M,16,Leg severed at knee,N,,Zambesi shark,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.c-Tivane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.c-Tivane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.c-Tivane.pdf,1970.01.23.c,1970.01.23.c,2817,, +1970.01.23.b,23-Jan-70,1970,Unprovoked,MOZAMBIQUE,Limpopo River,"Gijana, 150 km inland",Swimming,Mabua Mogadura,M,12,"Arm severed, thigh bitten",N,,Zambesi shark,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.b-Mogadura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.b-Mogadura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.b-Mogadura.pdf,1970.01.23.b,1970.01.23.b,2816,, +1970.01.23.a,23-Jan-70,1970,Unprovoked,MOZAMBIQUE,Limpopo River,"Gijana, 150 km inland",Swimming,Elissane Mobunda,M,10,Leg severed at knee,N,,Zambesi shark,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.a-Mobunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.a-Mobunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.a-Mobunda.pdf,1970.01.23.a,1970.01.23.a,2815,, +1970.01.16, 16-Jan-1970,1970,Sea Disaster,EGYPT,Red Sea,A few miles south of Port Suez,Air disaster,pilot of Israeli skyhawk,M,,FATAL,Y,,,"The Progress, 1/17/1970",1970.01.16-IsraeliPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.16-IsraeliPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.16-IsraeliPilot.pdf,1970.01.16,1970.01.16,2814,, +1970.01.10,10-Jan-70,1970,Unprovoked,MEXICO,Guerrero,Acapulco,Swimming,Jack Kardell,M,22,Leg bitten,N,,,"A. Resciniti, p.110",1970.01.10-Kardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.10-Kardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.10-Kardell.pdf,1970.01.10,1970.01.10,2813,, +1970.01.09.R,Reported 09-Jan-1970,1970,Unprovoked,ENGLAND,Devon,Teignmouth,Attempted to return injured shark to the sea,a fisherman,M,,Leg bitten,N,,8' blue shark,"Reading Eagle, 1/9/1970",1970.01.09.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.09.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.09.R-England.pdf,1970.01.09.R,1970.01.09.R,2812,, +1970.01.00, Jan-1970,1970,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,,Freediving,Mosley,M,15,Lacerations to back,N,,,"Brainerd Daily Dispatch, 1/13/1970",1970.01.00-NV-Mosley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.00-NV-Mosley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.00-NV-Mosley.pdf,1970.01.00,1970.01.00,2811,, +1970.00.00.h,1970s,1970,Unprovoked,SRI LANKA,Western Province,Colombo Harbor,Spearfishing / freediving,Hiran Wickremartne,M,,Swim fins badly torn by the shark's teeth,N,,,R. I. DeSilva,1970.00.00.h-Wickremaratne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.h-Wickremaratne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.h-Wickremaratne.pdf,1970.00.00.h,1970.00.00.h,2810,, +1970.00.00.g,Late 1970s,1970,Unprovoked,SPAIN,Canary Islands,"Icod de los Vinos, Tenerife",Spearfishing,,M,,Minor injury,N,,Blue shark,C. Moore,1970.00.00.g-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.g-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.g-Tenerife.pdf,1970.00.00.g,1970.00.00.g,2809,, +1970.00.00.f,Ca. 1970,1970,Boat,ITALY,Sardinia,Golfo di Oristano,Fishing on a boat,male,M,,No injury,N,,White shark,A. De Maddalena; M. Cottiglia (pers. Comm.),1970.00.00.f-Sardinia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.f-Sardinia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.f-Sardinia.pdf,1970.00.00.f,1970.00.00.f,2808,, +1970.00.00.e,1970,1970,Unprovoked,CROATIA,Zadar County,Novigrad,Spearfishing,Mr. Jurincic,M,,No details,UNKNOWN,,White shark,A. De Maddalena; A. Mojetta (pers. Comm.),1970.00.00.e-Jurincic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.e-Jurincic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.e-Jurincic.pdf,1970.00.00.e,1970.00.00.e,2807,, +1970.00.00.d,1970s,1970,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,Washing cooking pans,female,F,28,Left hand severed,N,Afternoon,,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.d-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.d-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.d-Shatt-al-Arab.pdf,1970.00.00.d,1970.00.00.d,2806,, +1970.00.00.c,1970s,1970,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River near Abu al Khasib,Washing clothes on stairs,female,F,25,Left foot severed,N,,,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.c-Abu-a-Khasib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.c-Abu-a-Khasib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.c-Abu-a-Khasib.pdf,1970.00.00.c,1970.00.00.c,2805,, +1970.00.00.b,1970s,1970,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,Swimming,male,M,35,"FATAL, left leg severed",Y,12h00,,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.b-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.b-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.b-Shatt-al-Arab.pdf,1970.00.00.b,1970.00.00.b,2804,, +1970.00.00.a,1970s,1970,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,"Fishing, trying to catch the end of his fishing line",male,M,35,Left hand bitten,N,Afternoon,,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.a-Shatt-al-Arab.pdf,1970.00.00.a,1970.00.00.a,2803,, +1969.11.30,30-Nov-69,1969,Unprovoked,AUSTRALIA,Western Australia,"Swan River, 13 miles upstream",Swimming,Graham Cartwright,M,15,Left thigh lacerated,N,Afternoon,,"Sydney Morning Herald, 12/1/1969 ",1969.11.30-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.30-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.30-Cartwright.pdf,1969.11.30,1969.11.30,2802,, +1969.11.11,11-Nov-69,1969,Unprovoked,USA,Hawaii,"Barbers Point, O'ahu",Scuba diving for lobsters,D.R. McGinnis,M,,"Abrasions on upper leg, laceration on ankle, scuba tank bitten",N,,>2.4 m [8'] shark,"H.D. Baldridge, p.185; J. Borg, p.74; L. Taylor (1993), pp.102-103",1969.11.11-McGinnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.11-McGinnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.11-McGinnis.pdf,1969.11.11,1969.11.11,2801,, +1969.11.05,05-Nov-69,1969,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",,A. Robson,M,27,PROVOKED INCIDENT,N,,,"J. Green, p.36",1969.11.05-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.05-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.05-Robson.pdf,1969.11.05,1969.11.05,2800,, +1969.10.14,14-Oct-69,1969,Unprovoked,USA,Hawaii,Hawaii,Diving,Richard Hegeman,M,,No injury,N,Morning,Oceanic whitetip shark,H.D. Baldridge (1994) SAF Case #1579,1969.10.14-NV-Hegeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.10.14-NV-Hegeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.10.14-NV-Hegeman.pdf,1969.10.14,1969.10.14,2799,, +1969.09.06,06-Sep-69,1969,Unprovoked,USA,California,"Bird Rock, Tomales Point, near Marin County / Sonoma County border",Free diving for abalone,Donald Joslin,M,53,Leg & ankle severely bitten,N,11h20,"White shark, 4.3 m 4.9 m [14' to 16'] ","D. Miller & R. Collier; R. Collier, pp.42-44; H.D. Baldridge, p.78;",1969.09.06-DonaldJoslin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.09.06-DonaldJoslin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.09.06-DonaldJoslin_Collier.pdf,1969.09.06,1969.09.06,2798,, +1969.08.29,29-Aug-69,1969,Unprovoked,USA,Florida,"North Beach, St. Lucie County",Floating on his back,D.C. Barnes,M,,Laceration to right leg,N,Afternoon,,"News Tribune, 8/30/1969",1969.08.29-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.29-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.29-Barnes.pdf,1969.08.29,1969.08.29,2797,, +1969.08.22,22-Aug-69,1969,Provoked,USA,Massachusetts,40 miles south of Nantucket,Fishing,Robert Eleniefsky,M,28,Leg bitten by netted shark PROVOKED INCIDENT,N,,,"Portsmouth Herald, 8/23/1969",1969.08.22-Eleniefsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.22-Eleniefsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.22-Eleniefsky.pdf,1969.08.22,1969.08.22,2796,, +1969.08.02,02-Aug-69,1969,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,John. Wilson,M,15,Lacerations to lower leg,N,Morning,,"St. Petersburg Times, 8/3/1969; H.D. Baldridge (1994) SAF Case #1570",1969.08.02-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.02-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.02-Wilson.pdf,1969.08.02,1969.08.02,2795,, +1969.08.01,02-Aug-69,1969,Unprovoked,USA,Florida,"St. Petersburg, Pinnellas County",Body surfing,Robert Wamser,M,13,Lacerations to right lower leg & left arm and hand,N,16h30,4' shark,"NYTimes, 8/3/1969",1969.08.01-Wamser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.01-Wamser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.01-Wamser.pdf,1969.08.01,1969.08.01,2794,, +1969.08.00,Aug-69,1969,Unprovoked,,,,,Rodney Hughes,M,25,Am lacerated,N,,,H.D. Baldridge (1994) SAF Case #1602,1969.08.00-NV-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.00-NV-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.00-NV-Hughes.pdf,1969.08.00,1969.08.00,2793,, +1969.07.27,27-Jul-69,1969,Provoked,ENGLAND,,,,Eric Brown,M,,Arm lacerated. Recorded as PROVOKED INCIDENT,N,,,H.D. Baldridge (1994) SAF Case #1611,1969.07.27-NV-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.27-NV-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.27-NV-Brown.pdf,1969.07.27,1969.07.27,2792,, +1969.07.22,22-Jul-69,1969,Provoked,USA,Florida,Florida Keys,,Walter Griffin,M,13,Scrape on head. Recorded as PROVOKED INCIDENT,N,16h00,Nurse shark,H.D. Baldridge (1994) SAF Case #1603,1969.07.22-NV-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.22-NV-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.22-NV-Griffin.pdf,1969.07.22,1969.07.22,2791,, +1969.07.20,20-Jul-69,1969,Unprovoked,USA,California,"Pigeon Point, San Mateo County",Freediving for abalone (at surface),Robert Colby,M,,"Foot bitten, minor injury",N,13h00,"White shark, 5 m [16.5'] ","D. Miller & R. Collier; R. Collier, p. 42",1969.07.20-Colby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.20-Colby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.20-Colby_Collier.pdf,1969.07.20,1969.07.20,2790,, +1969.06.27,27-Jun-69,1969,Unprovoked,USA,Florida,Florida Keys,Wading,Steven Benham,M,22,No details,UNKNOWN,1600,,H.D.Baldridge (1994) SAF Case #1652,1969.06.27-NV-Benham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.27-NV-Benham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.27-NV-Benham.pdf,1969.06.27,1969.06.27,2789,, +1969.06.12,12-Jun-69,1969,Unprovoked,JAMAICA,Clarendon,Off Rocky Point,Diving,Dennis Washington,M,27,Multiple lacerations,N,Morning,,"The Gleaner, 6/20/1969",1969.06.12-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.12-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.12-Washington.pdf,1969.06.12,1969.06.12,2788,, +1969.06.00,Jun-69,1969,Unprovoked,USA,Florida,Sarasota County,Wading,"John Holmes, Jr.",M,8,No injury,N,20h00,,H.D.Baldridge (1994) SAF Case #1609,1969.06.00-NV-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.00-NV-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.00-NV-Holmes.pdf,1969.06.00,1969.06.00,2787,, +1969.05.25,25-May-69,1969,Provoked,USA,Texas,Packery Channel,Surf-fishing,Walter Barnett,M,,Foot lacerated when he stepped on the shark PROVOKED INCIDENT,N,19h00,2' to 3' shark,"Corpus Christi Times, 5/26/1969; H.D.Baldridge (1994) SAF Case #1629",1969.05.25-Barnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.25-Barnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.25-Barnett.pdf,1969.05.25,1969.05.25,2786,, +1969.05.24,24-May-69,1969,Provoked,USA,Florida,Sarasota County,Diving,Brian Martel,M,23,Laceration to buttocks Recorded as PROVOKED INCIDENT,N,11h00,Nurse shark,H.D.Baldridge (1994) SAF Case #1596,1969.05.24-NV-Martel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.24-NV-Martel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.24-NV-Martel.pdf,1969.05.24,1969.05.24,2785,, +1969.05.22,22-May-69,1969,Unprovoked,DOMINICAN REPUBLIC,,,Surfing,"Douglas Kuchn, Jr.",M,18,,UNKNOWN,16h00,,H.D.Baldridge (1994) SAF Case #1607,1969.05.22-NV-Kuchn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.22-NV-Kuchn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.22-NV-Kuchn.pdf,1969.05.22,1969.05.22,2784,, +1969.05.14,14-May-69,1969,Unprovoked,AUSTRALIA,Queensland,Broomfield Reef,,J. Gillies,,,Survived,N,,,"J. Green, p.36",1969.05.14-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.14-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.14-Gillies.pdf,1969.05.14,1969.05.14,2783,, +1969.04.22,22-Apr-69,1969,Invalid,AUSTRALIA,New South Wales,"Kingscliffe Beach, south of Tweed Heads",Netting pilchards,David Anderson,M,,No injury,N,,"Considered a ""Doubtful"" incident","J. Green, p.36",1969.04.22-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.22-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.22-Anderson.pdf,1969.04.22,1969.04.22,2782,, +1969.04.19,19-Aug-69,1969,Provoked,USA,Florida,"Marathon, Monroe County",Fishing,Jack Horner,M,adult,Laceration to foot from dead shark PROVOKED INCIDENT,N,,"Lemon shark, 9' ","Tri-City Herald, 4/21/1969",1969.04.19-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.19-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.19-Horner.pdf,1969.04.19,1969.04.19,2781,, +1969.03.25,25-Mar-69,1969,Provoked,AUSTRALIA,New South Wales,Newcastle,,William Hill,M,65,Foot lacerated. Recorded as PROVOKED INCIDENT,N,,Mako shark,H.D.Baldridge (1994) SAF Case #1612,1969.03.25-NV-WilliamHill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.25-NV-WilliamHill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.25-NV-WilliamHill.pdf,1969.03.25,1969.03.25,2780,, +1969.03.09,09-Mar-69,1969,Unprovoked,USA,Hawaii,"Makaha, O'ahu",Surfing,Licius Lee,M,16,Leg & surfboard bitten,N,17h30,"White shark, identified by tooth fragments in surfboard","J. Borg, p.73; L. Taylor (1993), pp.102-103",1969.03.09-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.09-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.09-Lee.pdf,1969.03.09,1969.03.09,2779,, +1969.02.17.R,Reported 17-Feb-1969,1969,Provoked,AUSTRALIA,Tasmania,Taroona,Fishing,George Pacey,M,49,Lacerations to hand from hooked shark PROVOKED INCIDENT,N,Daytime,7-gill shark,"C. Black, GSAF",1969.02.17.R-Pacey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.17.R-Pacey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.17.R-Pacey.pdf,1969.02.17.R,1969.02.17.R,2778,, +1969.02.00,Feb-69,1969,Invalid,AUSTRALIA,Queensland,Cooktown,Hard hat diving,Elin Anderson,M,52,No details,UNKNOWN,,Unconfirmed incident,H.D.Baldridge (1994) SAF Case #1591,1969.02.00-NV-ElinAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.00-NV-ElinAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.00-NV-ElinAnderson.pdf,1969.02.00,1969.02.00,2777,, +1969.01.27,27-Jan-69,1969,Unprovoked,AUSTRALIA,New South Wales,Beecroft Head,Freediving,Kevin Deacon,M,21,Abrasions and lacerations to lower right leg,N,07h30,,H.D.Baldridge (1994) SAF Case #1560,1969.01.27-Deacon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.27-Deacon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.27-Deacon.pdf,1969.01.27,1969.01.27,2776,, +1969.01.00,Jan-69,1969,Unprovoked,AUSTRALIA,Victoria,Port MacDonnel,,W.D. Simpson,M,,Minor injury ,N,,Carpet shark,"H.D.Baldridge (1994), SAF Case #1594",1969.01.00-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.00-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.00-Simpson.pdf,1969.01.00,1969.01.00,2775,, +1969.00.00,Winter 1969,1969,Provoked,BAHAMAS,Eleuthera,,Sight-seeing,"14' boat, occupant: Jonathan Leodorn",,,"No injury to occupants, shark grabbed prop, Leodorn hit shark with oar, shark bit oar in half PROVOKED INCIDENT",N,,10' shark,"M. Vorenberg, p.154",1969.00.00-Leodorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.00.00-Leodorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.00.00-Leodorn.pdf,1969.00.00,1969.00.00,2774,, +1968.12.29,29-Dec-68,1968,Invalid,SOUTH AFRICA,KwaZulu-Natal,Port St. John's,Freediving,John Domoney,M,,No injury,N,,,H.D.Baldridge (1994) SAF Case #1588. Note: Unable to verify in local records,1968.12.29-NV-Domoney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.29-NV-Domoney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.29-NV-Domoney.pdf,1968.12.29,1968.12.29,2773,, +1968.12.26,26-Dec-68,1968,Provoked,AUSTRALIA,New South Wales,"Marineland Aquarium, Manley, Sydney",Feeding mullet to sharks,Peter Jones,M,27,Laceration to finger by a captive shark PROVOKED INCIDENT,N,Morning,"Grey nurse shark, 10' ","The Age, 12/27/1968",1968.12.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.26-Jones.pdf,1968.12.26,1968.12.26,2772,, +1968.12.25,25-Dec-68,1968,Unprovoked,NEW ZEALAND,South Island,"St. Clair Beach, Dunedin",Surfing,Gary Barton,M,17,"Hit in face by shark, arm abraded, surfboard bitten",N,17h45,White shark,"R. D. Weeks, GSAF; Otago Daily Times, 12/26/1968",1968.12.25-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.25-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.25-Barton.pdf,1968.12.25,1968.12.25,2771,, +1968.12.09,09-Dec-68,1968,Unprovoked,AUSTRALIA,South Australia,Thistle Island,,Dick OBrien,M,,Survived,N,,White shark,"T. Peake, GSAF",1968.12.09-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.09-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.09-O'Brien.pdf,1968.12.09,1968.12.09,2770,, +1968.12.02,02-Dec-68,1968,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Bluff, Durban",Spearfishing,Chris Van Niekerk,M,28,"No injury, left elbow & torso bumped by sharks",N,,"2 scalloped hammerhead sharks, 1.5 m & 1.8 m [5' & 6']","A. Heydorn, ORI",1968.12.02-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.02-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.02-VanNiekerk.pdf,1968.12.02,1968.12.02,2769,, +1968.12.00,Dec-68,1968,Invalid,SOUTH AFRICA,KwaZulu-Natal,,,Jasper Gwynn,M,30,No injury,N,,,H.D. Baldridge (1994) SAF Case #1587; Unable to authenticate,1968.12.00-NV-Gwynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.00-NV-Gwynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.00-NV-Gwynn.pdf,1968.12.00,1968.12.00,2768,, +1968.11.06,06-Nov-68,1968,Boat,SOUTH AFRICA,KwaZulu-Natal,Ramsgate,Fishing,"fishing boat, occupants: Simon Hlope & 4 other men",M,22,"Shark leapt into boat, landed on Hlope's back, then bit his left forearm",N,,"90-kg ""blackfin"" shark","M. Levine, GSAF",1968.11.06-Hlope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.06-Hlope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.06-Hlope.pdf,1968.11.06,1968.11.06,2767,, +1968.11.02,02-Nov-68,1968,Provoked,AUSTRALIA,Western Australia,,,Roy Rosser,M,16,Abrasion on shoulder Recorded as PROVOKED INCIDENT,N,15h00,,H.D. Baldridge (1994) SAF Case #1533,1968.11.02-NV-Rosser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.02-NV-Rosser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.02-NV-Rosser.pdf,1968.11.02,1968.11.02,2766,, +1968.10.29,29-Oct-68,1968,Provoked,BAHAMAS,,,,John DeBry,M,,Calf injured Recorded as PROVOKED INCIDENT,N,22h00,,H.D. Baldridge (1994) SAF Case #1565,1968.10.29-NV-DeBry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.29-NV-DeBry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.29-NV-DeBry.pdf,1968.10.29,1968.10.29,2765,, +1968.10.13,13-Oct-68,1968,Unprovoked,USA,Florida,"Egmont Key, Hillsborough County",Spearfishing using Scuba,Jim C. Johnson,M,,Swim fin bitten,N,,3 m [10'] bull shark,"H.D. Baldridge, p.185",1968.10.13-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.13-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.13-Johnson.pdf,1968.10.13,1968.10.13,2764,, +1968.10.10,10-Oct-68,1968,Sea Disaster,PHILIPPINES,Moro Gulf,,Sinking of the ferryboat Dumaguete ,a passenger,,,Survived,N,,,"Fresno Bee Republican, 10/12/1968",1968.10.10-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.10-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.10-FerryDisaster.pdf,1968.10.10,1968.10.10,2763,, +1968.09.22,22-Sep-68,1968,Invalid,USA,Florida,"Riviera Beach, Palm Beach County",Surfing,,,,,UNKNOWN,12h48,Shark involvement not confirmed, M. Vorenberg,1968.09.22-NV-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.22-NV-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.22-NV-RivieraBeach.pdf,1968.09.22,1968.09.22,2762,, +1968.09.15,15-Sep-68,1968,Unprovoked,NEW ZEALAND,South Island,Otago Harbor,Spearfishing,Graham Hitt,M,24,"FATAL, left leg bitten, femoral artery severed ",Y,10h15,"White shark, 4.3 m [14'], (tooth fragment recovered)","R.D. Weeks, GSAF; Otago Daily Times, 9/16/1968; H.D. Baldridge, pp.18-19",1968.09.15-Hitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.15-Hitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.15-Hitt.pdf,1968.09.15,1968.09.15,2761,, +1968.08.24,24-Aug-68,1968,Unprovoked,USA,Florida,Half mile north of Juno Beach Pier,Playing with a frisbee in the shallows,Colleen Chamberlin & Scott Chamberlin,,9 & 12,"Shark bumped Colleen, the nudged Scott, then bit Frisbee & swam away with it",N,16h00,a small hammerhead shark,"M. Vorenberg, GSAF",1968.08.24-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.24-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.24-Chamberlin.pdf,1968.08.24,1968.08.24,2760,, +1968.08.21,21-Aug-68,1968,Unprovoked,USA,Florida,Okaloosa County,Standing,Peter S. Ball,M,15,Leg & arm bitten,N,17h00,,"Brownsville Herald, 8/14/1968; H.D.Baldridge, SAF Case #1553",1968.08.21-PeterBall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.21-PeterBall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.21-PeterBall.pdf,1968.08.21,1968.08.21,2759,, +1968.08.13,13-Aug-68,1968,Unprovoked,FRENCH POLYNESIA,Society Islands,Tahiti,Swimming,Blake Tenville,M,12,Finger severed,N,,,"H.D.Baldridge, SAF Case #1531",1968.08.13-Tennville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.13-Tennville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.13-Tennville.pdf,1968.08.13,1968.08.13,2758,, +1968.08.11,11-Aug-68,1968,Unprovoked,MALAYSIA,Johor,Pulau Aur,Leaving the water,Inche Bin Saini,,41,Hand lacerated,N,08h00,,"H.D.Baldridge, SAF Case #1541",1968.08.11-NV-InceBinSaini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.11-NV-InceBinSaini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.11-NV-InceBinSaini.pdf,1968.08.11,1968.08.11,2757,, +1968.08.08,08-Aug-68,1968,Unprovoked,COLUMBIA,Magdalena Department,"Makuaka Cao, Taganga",Dynamite fishing,Abel Mattos Antoniou Vasquez,M,18,Lacerations to head,N,10h30,2 m shark,"SoHo.com, 11/19/2-11",1968.08.08-Vasquez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.08-Vasquez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.08-Vasquez.pdf,1968.08.08,1968.08.08,2756,, +1968.07.27,27-Jul-68,1968,Unprovoked,USA,California,"Bodega Rock, Sonoma County",Free diving,Frank Logan,M,25,Major injury to torso,N,11h00,"White shark, 4 m [13'] ","D. Miller & R. Collier; R. Collier, pp.41-42; H.D. Baldridge, p.76, 138, 191, 194, 206",1968.07.27-FrankLogan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.27-FrankLogan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.27-FrankLogan_Collier.pdf,1968.07.27,1968.07.27,2755,, +1968.07.23,23-Jul-68,1968,Unprovoked,USA,Florida,Florida Keys,Wading,H. Meacham,M,33,Abrasions on lower leg,N,13h30,,"H.D.Baldridge, SAF Case #1542",1968.07.23-NV-Meacham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.23-NV-Meacham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.23-NV-Meacham.pdf,1968.07.23,1968.07.23,2754,, +1968.07.16,16-Jul-68,1968,Unprovoked,USA,South Carolina,"Stono Inlet, near Charleston, Charleston County",Spearfishing using Scuba,Paul Hughes,M,33,Swimfin & knee bitten,N,Afternoon,4m [13'] shark,"H.D.Baldridge, p.284",1968.07.16-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.16-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.16-Hughes.pdf,1968.07.16,1968.07.16,2753,, +1968.07.10,10-Jul-68,1968,Unprovoked,BAHAMAS,Great Exuma Island,Children's Bay Cay near Rollerville,Small boat with 2 men onboard hit a submerged coral formation. Men began swimming to shore,male,M,,"FATAL, taken by shark ",Y,,,"Reported by F.S.T. Baker to M. Vorenberg, pp.154-155",1968.07.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.10-Bahamas.pdf,1968.07.10,1968.07.10,2752,, +1968.07.00,Jul-68,1968,Invalid,MEXICO,Baja California,,,Robert Slatzer,M,43,No injury,N,Afternoon,Not authenticated,"H.D.Baldridge, SAF Case #1613",1968.07.00-NV-Slatzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.00-NV-Slatzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.00-NV-Slatzer.pdf,1968.07.00,1968.07.00,2751,, +1968.06.25,25-Jun-68,1968,Unprovoked,BAHAMAS,Eleuthera,Spanish Wells ,Spearfishing,Roy Pinder,M,17,"Bumped shoulder, bit head",N,,1.5 m to 2 m [5' to 6.75'] Caribbean reef shark ,"H.D. Baldridge, p.260; Clark, p.87",1968.06.25-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.25-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.25-Pinder.pdf,1968.06.25,1968.06.25,2750,, +1968.06.09,09-Jun-68,1968,Unprovoked,USA,Florida,"Mullet Key, Pinellas County",Clamming,Peter Nash,M,17,Lacerations to lower right leg & andkle,N,09h30,,"Evening Indeipendent, 6/10/1968, p.3",1968.06.09-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.09-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.09-Nash.pdf,1968.06.09,1968.06.09,2749,, +1968.06.00,Jun-68,1968,Unprovoked,ENGLAND,,,,Roy Cloke,M,,Arm severely lacerated,N,,Blue shark,"H.D. Baldridge (1994), SAF Case #1515",1968.06.00-NV-Cloke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.00-NV-Cloke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.00-NV-Cloke.pdf,1968.06.00,1968.06.00,2748,, +1968.05.18,18-May-68,1968,Invalid,TANZANIA,Mafia Island,,Schooner sank during a storm,,,,"6 people rescued, 3 shark-scavenged bodies recovered, 14 people lost ",Y,,Shark involvement not confirmed,R. Wharton,1968.05.18-MafiaIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.18-MafiaIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.18-MafiaIsland.pdf,1968.05.18,1968.05.18,2747,, +1968.05.00,May-68,1968,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,,Standing,Tamuk Gilaba,M,17,Lower leg severely lacerated,N,,,H.D. Baldridge (1994) SAF Case #1520,1968.05.00-NV-Gilaba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.00-NV-Gilaba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.00-NV-Gilaba.pdf,1968.05.00,1968.05.00,2746,, +1968.04.29,29-Apr-68,1968,Invalid,USA,Florida,"Fort Lauderdale, Broward County",Wading,Frank Carrell,M,63,Foot severely injured,N,14h00,Shark involvement not confirmed,"News Journal, 5/1/1968",1968.04.29-Carrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.29-Carrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.29-Carrell.pdf,1968.04.29,1968.04.29,2745,, +1968.04.20,20-Apr-68,1968,Unprovoked,USA,Florida,"Palm Beach Shores, Riviera Beach, Singer Island, Palm Beach County",,Steven Samples,M,10,"Buttock, both legs & arm bitten",N,12h30,2.7 m [9'] silky shark,"M. Vorenberg, GSAF; R. Skocik, pp.168-169; H.D. Baldridge, p.203; Note: A. Resciniti, p.35, also refers to an earlier attack on a snorkeler. The shark bit the boy's calf and both swim fins.",1968.04.20-Samples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.20-Samples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.20-Samples.pdf,1968.04.20,1968.04.20,2744,, +1968.04.15,15-Apr-68,1968,Unprovoked,AUSTRALIA,New South Wales,South Coast,"Diving. Shark swallowed his hand, so he threw his other around the shark and went shark-back riding for 30 yards until the shark opened its jaws",Rodney Castle,M,21,Hand lacerated,N,,"Bronze whaler shark, 1.8 m [6'] ","Sydney Morning Herald, 4/28/1968 ",1968.04.15-Castle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.15-Castle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.15-Castle.pdf,1968.04.15,1968.04.15,2743,, +1968.04.11.R,Reported 11-Apr-1968,1968,Unprovoked,PAPUA NEW GUINEA,Gulf Province,Orokolo Bay,Swimming,Hukolapa Laiokeke,M,7,FATAL Laceration to chest,Y,,,"The Age, 4/11/1968, p.4",1968.04.11.R-Laiokeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.11.R-Laiokeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.11.R-Laiokeke.pdf,1968.04.11.R,1968.04.11.R,2742,, +1968.04.07,07-Apr-68,1968,Provoked,AUSTRALIA,New South Wales,Stockton Bight,,Ray Weaver,M,47,Foot lacerated Recorded as PROVOKED INCIDENT,N,Early morning,"""Blue whaler"" (Galeolamna)","J. Green, p.36; H. D. Baldridge (1994) SAF Case #1528",1968.04.07-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.07-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.07-Weaver.pdf,1968.04.07,1968.04.07,2741,, +1968.03.25,25-Mar-68,1968,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Wading & pushing dinghy toward the shallows,Almon Mtiyane,M,35,Left thigh lacerated,N,Afternoon,1.5 m to 1.8m [5' to 6'] shark,"J. Bass, H.A. Jones, A. Heydorn & D. Illing",1968.03.25-Mtiyane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.25-Mtiyane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.25-Mtiyane.pdf,1968.03.25,1968.03.25,2740,, +1968.03.10,10-Mar-68,1968,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Surfing,Jan Icyda,M,20,Foot lacerated,N,Afternoon,,H.D. Baldridge (1994) SAF Case #1548,1968.03.10-Icyda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.10-Icyda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.10-Icyda.pdf,1968.03.10,1968.03.10,2739,, +1968.03.00,Mar-68,1968,Invalid,USA,Florida,Florida Keys,Treading water,Jared Voorhees,M,28,No injury,N,Night,,H.D. Baldridge (1994) SAF Case #1530,1968.03.00-NV-Voorhees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.00-NV-Voorhees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.00-NV-Voorhees.pdf,1968.03.00,1968.03.00,2738,, +1968.02.26,26-Feb-68,1968,Unprovoked,USA,Florida,Palm Beach County,Surfing,Fred Hennessee,M,17,Foot lacerated,N,13h30,Bull shark,"H.D. Baldridge, #1549",1968.02.26-Hennessee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.26-Hennessee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.26-Hennessee.pdf,1968.02.26,1968.02.26,2737,, +1968.02.20,20-Feb-68,1968,Unprovoked,AUSTRALIA,Western Australia,Swan River,Swimming,Ingrid Germanis,F,14,Thigh lacerated,N,Late afternoon,,"J. Green, p.36",1968.02.20-Germanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.20-Germanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.20-Germanis.pdf,1968.02.20,1968.02.20,2736,, +1968.02.18,18-Feb-68,1968,Provoked,NEW ZEALAND,North Island,"Pilot Bay, Mt Maunganui ",Picking up shark by the tail,Lynne Campbell,F,,Wrist bitten PROVOKED INCIDENT,N,,3' shark,"R.D. Weeks, GSAF; Otago Daily Times, 2/20/1968; H.D. Baldridge (1994) SAF Case #1525",1968.02.18-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.18-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.18-Campbell.pdf,1968.02.18,1968.02.18,2735,, +1968.02.04,04-Feb-68,1968,Unprovoked,AUSTRALIA,South Australia,Cape Jervis,Spearfishing,Howard Forster,M,26,"No injury, speargun bitten",N,18h30,"Bronze whaler shark, 3 m [10'] ","H.D. Baldridge, p.199",1968.02.04-Forster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.04-Forster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.04-Forster.pdf,1968.02.04,1968.02.04,2734,, +1968.02.02,02-Feb-68,1968,Unprovoked,AUSTRALIA,New South Wales,Brunswick Heads,,R. Vidler,,,Survived,N,,,"J. Green, p.36",1968.02.02-Vidler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.02-Vidler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.02-Vidler.pdf,1968.02.02,1968.02.02,2733,, +1968.02.00,Feb-68,1968,Unprovoked,MOZAMBIQUE,,,Diving,Sergio Peres,,24,No injury,N,,,H.D. Baldridge (1994) SAF Case #1522,1968.02.00-NV-Peres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.00-NV-Peres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.00-NV-Peres.pdf,1968.02.00,1968.02.00,2732,, +1968.01.17,17-Jan-68,1968,Unprovoked,PAPUA NEW GUINEA,Morobe Province,Finschafen,Swimming,Awin Ieromia,,13,FATAL,Y,17h30,,H.D. Baldridge (1994) SAF Cases #1519 & #1584,1968.01.17-NV-Ieromia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.01.17-NV-Ieromia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.01.17-NV-Ieromia.pdf,1968.01.17,1968.01.17,2731,, +1968.00.00.c,1968,1968,Unprovoked,COSTA RICA,Limn Province,Parismina,Swimming after his canoe capsized,male,M,,FATAL,Y,,,"Kokomo Tribune, 5/11/1969",1968.00.00.c-Parisima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.c-Parisima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.c-Parisima.pdf,1968.00.00.c,1968.00.00.c,2730,, +1968.00.00.b,1968,1968,Invalid,USA,Florida,"Key West, Monroe County",Diving,,,,Recovered,N,13h00,"Nurse shark, 1 m ",Unverified,1968.00.00.b-NV-KeyWestDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.b-NV-KeyWestDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.b-NV-KeyWestDiver.pdf,1968.00.00.b,1968.00.00.b,2729,, +1968.00.00.a,1968,1968,Invalid,USA,Florida,"Jensen Beach, Martin County",Surfing,,,,,UNKNOWN,17h00,,Unverified,1968.00.00.a-NV-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.a-NV-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.a-NV-JensenBeach.pdf,1968.00.00.a,1968.00.00.a,2728,, +1967.12.30,30-Dec-67,1967,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surfing,Brian Pearson,M,22,Right ankle & foot bitten,N,14h00,1.5 m to 1.8 m [5' to 6'] shark,"B. Pearson, M. Levine, GSAF",1967.12.30-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.30-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.30-Pearson.pdf,1967.12.30,1967.12.30,2727,, +1967.12.21.R,Reported 21-Dec-1967,1967,Invalid,PAPUA NEW GUINEA,Central Province,Port Moresby,Spearfishing,Bob Valentine,M,32,No injury,N,,Mako shark,H.D. Baldridge (1994) ,1967.12.21.R-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.21.R-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.21.R-Valentine.pdf,1967.12.21.R,1967.12.21.R,2726,, +1967.12.18,18-Dec-67,1967,Unprovoked,FIJI,,,,Tera Tetapana,M,27,Arm lacerated,N,09h00,,H.D.Baldridge (1994) SAF Case #1532,1967.12.18-NV-Tetapana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.18-NV-Tetapana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.18-NV-Tetapana.pdf,1967.12.18,1967.12.18,2725,, +1967.12.17,17-Dec-67,1967,Unprovoked,AUSTRALIA,Victoria,"Cheviot Beach, Portsea, Port Phillip Bay",Swimming,Prime Minister Harold Holt,M,59,"FATAL, presumed taken by a shark, body not recovered",Y,A.M.,,"H. Edwards, p.137-138",1967.12.17-PrimeMinister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.17-PrimeMinister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.17-PrimeMinister.pdf,1967.12.17,1967.12.17,2724,, +1967.12.14,14-Dec-67,1967,Provoked,USA,,,,Joe Stinson,M,,"Head, shoulder, arm lacerated. Recorded as PROVOKED INCIDENT",N,,,H.D.Baldridge (1994) SAF Case #1566,1967.12.14-NV-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.14-NV-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.14-NV-Stinson.pdf,1967.12.14,1967.12.14,2723,, +1967.11.30.b,30-Nov-67,1967,Provoked,AUSTRALIA,New South Wales,Wollongong,Freediving,Jeff Short,M,15,Recorded as PROVOKED INCIDENT,N,,Grey nurse shark,H.D. Baldridge (1994) SAF Case #1516,1967.11.30.b- NV-JeffShort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.b- NV-JeffShort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.b- NV-JeffShort.pdf,1967.11.30.b,1967.11.30.b,2722,, +1967.11.30.a,30-Nov-67,1967,Unprovoked,AUSTRALIA,Queensland,Surfer's Paradise,,Jan Ligrov,M,18,Arm lacerated,N,,Grey nurse shark,(1994) SAF Case #1524,1967.11.30.a-Ligrov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.a-Ligrov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.a-Ligrov.pdf,1967.11.30.a,1967.11.30.a,2721,, +1967.11.15,15-Nov-67,1967,Provoked,FIJI,,,Freediving,Stephen Wiltshire,M,21,Hand lacerated by speared shark PROVOKED INCIDENT,N,Morning,,H.D.Baldridge (1994) SAF Case #1537,1967.11.15-NV-Wiltshire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.15-NV-Wiltshire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.15-NV-Wiltshire.pdf,1967.11.15,1967.11.15,2720,, +1967.11.04,04-Nov-67,1967,Sea Disaster,PHILIPPINES,Rombion Province,Off Sibuyan Island,Sinking of the M/V Mindoro during a typhoon,,,,Passengers taken by sharks,Y,,,"Canberra Times, 11/9/1967",1967.11.04-Mindoro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.04-Mindoro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.04-Mindoro.pdf,1967.11.04,1967.11.04,2719,, +1967.11.00,Nov-67,1967,Invalid,SOUTH AFRICA,KwaZulu-Natal,Brighton Beach,,female,F,,"Bones and brightly colored bangles recovered 3.35 m, 145.5-kg tiger sharks gut ",Y,,,"A. Heydorn, ORI",1967.11.00-BrightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.00-BrightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.00-BrightonBeach.pdf,1967.11.00,1967.11.00,2718,, +1967.10.26.R,Reported 26-Oct-1967,1967,Unprovoked,MEXICO,Veracruz,Veracruz,Swimming,"""a youth""",,,FATAL,Y,,,"Chicago Tribune, 10/27/1967",1967.10.26.R-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.26.R-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.26.R-Veracruz.pdf,1967.10.26.R,1967.10.26.R,2717,, +1967.10.17,17-Oct-67,1967,Unprovoked,USA,Florida,"McArthur Beach, Singer Island, Palm Beach Shores",Standing on sandbar,Peter J. White,M,19,Left foot bitten,N,16h30,small blacktip shark,"M. Vorenberg, GSAF",1967.10.17-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.17-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.17-White.pdf,1967.10.17,1967.10.17,2716,, +1967.10.00,Oct-67,1967,Unprovoked,TONGA,,,Swimming,Toetuu Hopoi,M,17,Arm & leg bitten,N,,,H.D.Baldridge (1994) SAF Case #1480,1967.10.00-NV-Hopoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.00-NV-Hopoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.00-NV-Hopoi.pdf,1967.10.00,1967.10.00,2715,, +1967.09.20,20-Sep-67,1967,Invalid,USA,Hawaii,"Kailua Bay, O'ahu",Boat capsized between O'ahu & Molokai,male,M,,Remains found in a 3.4 m (11') tiger shark. Probable drowning & scavenging,Y,,,"J. Borg, p.73; L. Taylor (1993), pp.102-103",1967.09.20-male-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.20-male-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.20-male-Oahu.pdf,1967.09.20,1967.09.20,2714,, +1967.09.13,13-Sep-67,1967,Provoked,ITALY,Brindisi Province,Brindisi,Scuba diving,Romeo Guarini,M,21,"Diver shot the shark, then it injured his arm and broke his leg with its tail. PROVOKED INCIDENT",,,2 m shark,C. Moore. GSAF,1967.09.13-Guarini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.13-Guarini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.13-Guarini.pdf,1967.09.13,1967.09.13,2713,, +1967.09.07.b,07-Sep-67,1967,Provoked,PAPUA NEW GUINEA,New Ireland Province,,Diving,Parang,,,"No details, listed as PROVOKED INCIDENT",UNKNOWN,,,"H.D.Baldridge, SAF Case #1546",1967.09.07.b-NV-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.b-NV-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.b-NV-Parang.pdf,1967.09.07.b,1967.09.07.b,2712,, +1967.09.07.a,07-Sep-67,1967,Unprovoked,USA,Florida,"Key West, Monroe County",Spearfishing,,,,Survived,N,14h30,,,1967.09.07.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.a-NV-KeyWest.pdf,1967.09.07.a,1967.09.07.a,2711,, +1967.09.06,06-Sep-67,1967,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,Lambom Island,Spearfishing,Parang,M,,FATAL,Y,,,"The Age, 9/7/1967 ",1967.09.06-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.06-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.06-Parang.pdf,1967.09.06,1967.09.06,2710,, +1967.09.01,01-Sep-67,1967,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Lamassa Island, 16 miles from Lambon Island",Spearfishing,Tony Kamage,M,23,FATAL,Y,,3.7 m [12'] shark,"F. Dennis, pp.23-24",1967.09.01-Kamage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.01-Kamage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.01-Kamage.pdf,1967.09.01,1967.09.01,2709,, +1967.08.27,27-Aug-67,1967,Provoked,USA,California,Ventura,Pulling shark from the water,Jim Beatty,M,24,Nipped on shoulder by captive shark PROVOKED INCIDENT,N,14h30,5' blue shark,"Ventura County Ad-Visor, 8/31/1967",1967.08.27-Beatty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.27-Beatty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.27-Beatty.pdf,1967.08.27,1967.08.27,2708,, +1967.08.26,26-Aug-67,1967,Unprovoked,JAPAN,Kagawa Prefecture,Sakaide,,Masanori Ishikawa,M,19,FATAL,Y,14h30,,K. Nakaya,1967.08.26-Ishikawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.26-Ishikawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.26-Ishikawa.pdf,1967.08.26,1967.08.26,2707,, +1967.08.25,25-Aug-67,1967,Unprovoked,ITALY,Liguria," Marinella Sarzana, La Spezia ",Spearfishing on Scuba,Gian Paolo Porta Casucci,M,,Minor injuries to face & forearm,N,,,"C. Moore, GSAF",1967.08.25-Casucci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.25-Casucci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.25-Casucci.pdf,1967.08.25,1967.08.25,2706,, +1967.08.19,19-Aug-67,1967,Unprovoked,AUSTRALIA,Western Australia,Jurien Bay,"Spearfishing, dived to pick up a float line",Robert Bartle,M,23,"FATAL, ""bitten in two""",Y,11h00,White shark,"H. Edwards, pp.35-42; H.D. Baldridge, p.28; A. Sharpe, pp.132-133; A. MacCormick, p.86; J. West, ASAF",1967.08.19-Bartle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.19-Bartle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.19-Bartle.pdf,1967.08.19,1967.08.19,2705,, +1967.08.15,15-Aug-67,1967,Unprovoked,BERMUDA,Hamilton,Hamilton,Floating,Sue Ferguson,F,19,Right foot abraded & lacerated,N,16h00,,"Gettysburg Times, 8/15/1967",1967.08.15-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.15-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.15-Ferguson.pdf,1967.08.15,1967.08.15,2704,, +1967.08.14.R,Reported 14-Aug-1967,1967,Unprovoked,COLUMBIA,,,,Thomas Walsh,M,,3 fingers were bitten by a shark,N,,,"New York Times, 8/14/1967",1967.08.14.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.14.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.14.R-Walsh.pdf,1967.08.14.R,1967.08.14.R,2703,, +1967.08.10,10-Aug-67,1967,Invalid,AUSTRALIA,New South Wales,Jervis Bay,Anti-sabotage night dive exercise alongside destroyer (Scuba diving),"J.T. Hales and Kenneth J. Hislop, Australian Navy frogmen",M,? & 19,"Disappeared, no trace of men or equipment, shark attack considered",Y,Night,,"H.D. Baldridge, p.184",1967.08.10-Hales-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.10-Hales-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.10-Hales-Hislop.pdf,1967.08.10,1967.08.10,2702,, +1967.08.07,07-Aug-67,1967,Unprovoked,USA,Florida,Near Key West,Spearfishing,Donald Ritter,M,15,Shark grasped thigh,N,14h30,"Nurse shark, 106 cm, 28-lb, male ","H.D. Baldridge, p.193; Clark, p.86",1967.08.07-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.07-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.07-Ritter.pdf,1967.08.07,1967.08.07,2701,, +1967.08.00.b,Aug-67,1967,Unprovoked,BAHAMAS,Out Islands,Andros Island,Photographing sharks underwater using Scuba,Richard Winer,M,41,"No injury, shark struck camera",N,Early afternoon,1.5 m to 1.8 m [5' to 6'] sandbar shark,"H.D. Baldridge, p.185",1967.08.00.b-Winer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.b-Winer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.b-Winer.pdf,1967.08.00.b,1967.08.00.b,2700,, +1967.08.00.a,Aug-67,1967,Unprovoked,SENEGAL,Cap Vert Peninsula,Hann,Beach seine netting,B.D.,M,,Ankle bitten,N,04h00,1.8 m shark,S. Trape,1967.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.a-Senegal.pdf,1967.08.00.a,1967.08.00.a,2699,, +1967.07.29,29-Jul-67,1967,Unprovoked,USA,Florida,Florida Keys,Snorkeling,Joseph McGonigal,M,20,Foot lacerated,N,Afternoon,,"H.D.Baldridge, SAF Case #1538",1967.07.29-NV-McGonigal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.29-NV-McGonigal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.29-NV-McGonigal.pdf,1967.07.29,1967.07.29,2698,, +1967.07.05,05-Jul-67,1967,Unprovoked,TURKEY,Mugla Province,Kucukada Island,Spearfishing,Gungor Guven,M,36,FATAL,Y,13h40,,"C. Moore, GSAF",1967.07.05-Guven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.05-Guven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.05-Guven.pdf,1967/07.05,1967.07.05,2697,, +1967.07.00,Jul-67,1967,Invalid,USA,South Carolina,,Surfing,Tim Dowdy,M,18,Incident not confirmed,N,16h30,,H.D. Baldridge (1994) SAF Case #1637,1967.07.00-NV-Dowdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.00-NV-Dowdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.00-NV-Dowdy.pdf,1967.07.00,1967.07.00,2696,, +1967.06.13,13-Jun-67,1967,Provoked,USA,Florida,"Key West, Monroe County",Spearfishing,Andres Puma (or Pruna),M,26,"After shark was speared & hit on head, it bit the divers foot PROVOKED INCIDENT",N,17h30,"Nurse shark, 1 m ","H.D. Baldridge, p.192; M. McDiarmid, p.70",1967.06.13-Pruna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.13-Pruna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.13-Pruna.pdf,1967.06.13,1967.06.13,2695,, +1967.06.00,Jun-67,1967,Provoked,ITALY,Sicily,Stretto di Messina,Fishing boat,,M,,"No injury to occupants, harpooned shark sank boat PROVOKED INCIDENT",N,,"White shark, 4 to 5 m [13' to 16.5'] ",A. De Maddalena; Giudici & Fino (1989),1967.06.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.00-Messina.pdf,1967.06.00,1967.06.00,2694,, +1967.05.13,13 or 30-May-1967,1967,Provoked,AUSTRALIA,South Australia,Outer Harbor,,Rodney Baim,M,30,Thigh abraded & lacerated Recorded as PROVOKED INCIDENT,N,Morning,Bronze whaler shark,"J. Green, p.36; H. D. Baldridge (1994) SAF Case #1464",1967.05.13-NV-Baim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.13-NV-Baim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.13-NV-Baim.pdf,1967.05.13,1967.05.13,2693,, +1967.05.09,09-May-67,1967,Provoked,AUSTRALIA,,Aquarium,Feeding a shark,Rod Stanley,M,22,Recorded as PROVOKED INCIDENT,N,Afternoon,Grey nurse shark,H.D.Baldridge (1994) SAF Case #1536,1967.05.09-NV-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.09-NV-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.09-NV-Stanley.pdf,1967.05.09,1967.05.09,2692,, +1967.04.00,Apr-67,1967,Provoked,UNITED KINGDOM,Gibraltar,,Fishing,Bernard Venables,M,60,Tooth knocked out by hooked shark PROVOKED INCIDENT,N,,,C. Moore,1967.04.00-Venables-Gibraltar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.04.00-Venables-Gibraltar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.04.00-Venables-Gibraltar.pdf,1967.04.00,1967.04.00,2691,, +1967.03.20,20-Mar-67,1967,Provoked,NEW ZEALAND,North Island,Leigh,Freediving,Peter Clark,M,21,Abrasions to lower leg Recorded as PROVOKED INCIDENT,N,Afternoon,,H.D. Baldridge (1994) SAF Case #1521,1967.03.20-NV-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.20-NV-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.20-NV-Clark.pdf,1967.03.20,1967.03.20,2690,, +1967.03.19,19-Mar-67,1967,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Paradise Reef,Spearfishing,Len Jones,M,32,"Punctures in right buttock & thigh, abrasion on right forearm",N,06h50,"White shark, 3 m [10'] ","L. Jones, M. Levine, GSAF;. D'Aubrey, ORI",1967.03.19-LenJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.19-LenJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.19-LenJones.pdf,1967.03.19,1967.03.19,2689,, +1967.03.12,12-Mar-67,1967,Provoked,AUSTRALIA,Victoria,Geelong,Spearfishing,Brian Marendaz,M,36,Speared shark lacerated his arm PROVOKED INCIDENT,N,15h00,Grey nurse shark,"H.D. Baldridge, SAF Case #1466",1967.03.12-NV-Marendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.12-NV-Marendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.12-NV-Marendez.pdf,1967.03.12,1967.03.12,2688,, +1967.03.10,10-Mar-67,1967,Invalid,AUSTRALIA,New South Wales,"Dover Heights, Sydney",Vehicle plunged over cliff into the water,passenger in an automobile,,,"Fatal or scavenging by ""a pack of sharks""",Y,,,Evening Express (Cardiff),1967.03.10-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.10-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.10-passenger.pdf,1967.03.10,1967.03.10,2687,, +1967.03.09,09-Mar-67,1967,Unprovoked,NEW ZEALAND,South Island,St. Kilda Beach,Lifesaving drill,William Black,M,21,"FATAL, seen taken by a shark ",Y,19h45,Thought to involve a white shark,"R.D. Weeks, GSAF; J. Garrick; West Australian (Perth), 3/10/1967",1967.03.09-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.09-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.09-Black.pdf,1967.03.09,1967.03.09,2686,, +1967.03.01,01-Mar-67,1967,Unprovoked,PAPUA NEW GUINEA,New Britain,"Barawon Beach, near Rabaul",,black male,M,14,Leg bitten,N,,3.7 m [12'] shark,"F. Dennis, p.23; H.D. Baldridge (1994) SAF Case #1534",1967.03.01-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.01-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.01-boy.pdf,1967.03.01,1967.03.01,2685,, +1967.02.06,06-Feb-67,1967,Sea Disaster,MEXICO,Veracruz,Cabo Rojo,The shrimper Loless Maurine capsized in heavy seas & the men were swimming ashore ,Carlos Humberto Mendez & Esteban Robles,M,,FATAL,Y,14h00,,"Brownsville Herald, 1/28/1968",1967.02.06-Mendez-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.02.06-Mendez-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.02.06-Mendez-Robles.pdf,1967.02.06,1967.02.06,2684,, +1967.01.27,27-Jan-67,1967,Boat,SOUTH AFRICA,Western Cape Province,Melkbosstrand,Fishing for rock lobster,"Lobster boat, occupants: Mr. P. Valentine & Mr. J. van Schalkwyk ",,,"Holed & sank boat, 1 man flung into water but ignored by the shark",N,,White shark or thresher shark,GSAF,1967.01.27-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.27-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.27-boat.pdf,1967.01.27,1967.01.27,2683,, +1967.01.22,22-Jan-67,1967,Provoked,SOUTH AFRICA,Western Cape Province,Whittle Rock False Bay,Spearfishing Competition,Ian Gericke,M,,"No injury, shark bit support boat, removing pieces of wood after Gerricke shot it PROVOKED INCIDENT",N,,2.1 m [7'] sandtiger shark,"H.D. Baldridge, p.128",1967.01.22-Gericke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.22-Gericke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.22-Gericke.pdf,1967.01.22,1967.01.22,2682,, +1967.01.21,21-Jan-67,1967,Unprovoked,MOZAMBIQUE,Bay of Maputo,Xefina Island,Swimming in the channel,Alberto Caravallo Santos,M,31,Right leg severely lacerated,N,,,"M. Levine, GSAF",1967.01.21-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.21-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.21-Santos.pdf,1967.01.21,1967.01.21,2681,, +1967.01.06,06-Jan-67,1967,Provoked,AUSTRALIA,Victoria,Goolwa,Splashing,Gregory Loane,M,15,Foot bitten when he kicked shark PROVOKED INCIDENT,N,,"""sand shark""",H.D.Baldridge (1994) SAF Case #1465,1967.01.06-NV-Loane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.06-NV-Loane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.06-NV-Loane.pdf,1967.01.06,1967.01.06,2680,, +1966.12.31,31-Dec-66,1966,Unprovoked,AUSTRALIA,Tasmania,"Piccaninny Point, 10 miles from Bicheno",Fishing,Alf Bosworth,M,30,"6"" laceration to left forearm ",N,,2.1 m [7'] shark,"J. Green, p.35; Sun (Sydney), 1/3/1967",1966.12.31-Bosworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.31-Bosworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.31-Bosworth.pdf,1966.12.31,1966.12.31,2679,, +1966.12.27.b,27-Dec-66,1966,Provoked,AUSTRALIA,New South Wales,South West Rocks,Spearfishing,Robert Lusted,M,29,The shark bit the diver's leg after he shot it PROVOKED INCIDENT,N,,"Grey nurse shark, 1.5 m [5'] ","Sun (Sydney), 12/29/1966; J. Green, p.36; H.D. Baldridge, p.166 ",1966.12.27.b-Lusted.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.b-Lusted.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.b-Lusted.pdf,1966.12.27.b,1966.12.27.b,2678,, +1966.12.27.a,27-Dec-66,1966,Unprovoked,AUSTRALIA,New South Wales,Trial Bay,Spearfishing,Lyle Fielding,M,19,Right hand lacerated,N,,"Grey nurse shark, 1.5 m [5']","Sun (Sydney), 12/29/1966; J. Green, p.36",1966.12.27.a-Fielding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.a-Fielding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.a-Fielding.pdf,1966.12.27.a,1966.12.27.a,2677,, +1966.12.26,26-Dec-66,1966,Unprovoked,SINGAPORE,,Singapore,Wading,Hussain Ali,M,39,Thigh bitten,N,Afternoon,,"H.D. Baldridge, SAF Case #1458",1966.12.26-NV-Hussain-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-NV-Hussain-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-NV-Hussain-Ali.pdf,1966.12.26,1966.12.26,2676,, +1966.12.26,26-Dec-66,1966,Unprovoked,AUSTRALIA,New South Wales,Coogee,Spearfishing,David Jensen,M,29,Right leg bitten,N,,1.8 m [6'] shark,"Sun (Sydney), 12/29/1966; H.D. Baldridge, p.137",1966.12.26-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-Jensen.pdf,1966.12.26,1966.12.26,2675,, +1966.11.14,14-Nov-66,1966,Unprovoked,THAILAND,,,,Vinit Tantikarn,,28,No details,UNKNOWN,,,H.D. Baldridge (1994) SAF Case #1509,1966.11.14-NV-Tantikam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.14-NV-Tantikam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.14-NV-Tantikam.pdf,1966.11.14,1966.11.14,2674,, +1966.11.00,Early Nov-1966,1966,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,,A father bathing his smallest daughter when the shark bumped her out of his arms and carried her into deep water,Theresa Maineri,F,9 months,FATAL,Y,,3.7 m [12'] shark,"A. McNaught; Times-Courier (Lae, PNG), 12/10/1966; F. Dennis, p.23",1966.11.00-Maineri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.00-Maineri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.00-Maineri.pdf,1966.11.00,1966.11.00,2673,, +1966.10.30,30-Oct-66,1966,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Lamassa Island, 16 miles from Lambom Island",Swimming,Ridel Pogias (female),F,13,FATAL,Y,Morning,3.7 m [12'] shark,"A. McNaught; Times-Courier (Lae, PNG), 12/10/1966; F. Dennis, p.23",1966.10.30-Pogias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.30-Pogias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.30-Pogias.pdf,1966.10.30,1966.10.30,2672,, +1966.10.29,19-Oct-66,1966,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Mission Beach, Lambon Island, near Duke of York Islands",Bathing,Dakel (female),F,8,FATAL,Y,09h00,3.7 m [12'] shark,"A. McNaught; Times-Courier (Lae, PNG), 12/10/1966; F. Dennis, p.23",1966.10.29-Dakel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.29-Dakel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.29-Dakel.pdf,1966.10.29,1966.10.29,2671,, +1966.09.27,27-Sep-66,1966,Unprovoked,AUSTRALIA,Queensland,"Broomfield Island, 11 miles from Heron Island on the Great Barrier Reef","Free diving, carrying speargun",Barry Dawson,M,32,Shoulder lacerated,N,16h45,"Bronze whaler shark, 2.1 m [7'], a tooth was embedded in the speargun ","B. Dawson, J.Green, pp.50-52; The Cairns Post, 9/28/1966 (Note: the press erroneously reported the diver's name as Davidson.)",1966.09.27-Dawson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.27-Dawson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.27-Dawson.pdf,1966.09.27,1966.09.27,2670,, +1966.09.19,19-Sep-66,1966,Provoked,USA,Hawaii,50 miles NE of Honolulu,Fishing,Akiyoshi Morita,M,20,Left elbow or hand bitten PROVOKED INCIDENT,N,,,"Japan Times, 9/23/1966; Mainichi News, 9/25/1966 edtion",1966.09.19-Morita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.19-Morita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.19-Morita.pdf,1966.09.19,1966.09.19,2669,, +1966.09.18,18-Sep-66,1966,Invalid,AUSTRALIA,Western Australia,"Little Beach Reef, Bremer Bay",Spearfishing,John Marsh,M,," The 2.9 m [9.5'] shark never made contact with him. No attack, no injury.",N,,,"The West Australian (Perth), 9/14/1966; D. H.Baldridge, p.136; SAF Case #1424",1966.09.18-Marsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.18-Marsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.18-Marsh.pdf,1966.09.18,1966.09.18,2668,, +1966.09.13,13-Sep-66,1966,Provoked,AUSTRALIA,Western Australia,Albany,Spearfishing,Terry Adams,M,,Involved a speared shark but no other details PROVOKED INCIDENT,UNKNOWN,Late afternoon,,"H.D.Baldridge, SAF Case #1425",1966.09.13-NV-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.13-NV-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.13-NV-Adams.pdf,1966.09.13,1966.09.13,2667,, +1966.09.10,10-Sep-66,1966,Unprovoked,AUSTRALIA,Western Australia,Roe Reef off Rottnest Island,Spearfishing,Frank Paxman,M,43,No injury,N,12h00,"Mako shark, 1.9 m [6.5'] ","The West Australian (Perth), 9/14/1966; H.D.Baldridge, p.136",1966.09.10-Paxman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.10-Paxman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.10-Paxman.pdf,1966.09.10,1966.09.10,2666,, +1966.09.08.b,08-Sep-66,1966,Provoked,USA,Florida,"Florida Keys, Monroe County",Hunting crayfish ,David Redmond,M,14,Abdomen abraded when he seized shark PROVOKED INCIDENT,N,,"Nurse shark, 2.5' ","San Antonio Express, 9/9/1966",1966.09.08-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.08-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.08-Redmond.pdf,1966.09.08.b,1966.09.08.b,2665,, +1966.09.00,Sep-66,1966,Invalid,BAHAMAS,Bimini Islands,Tongue of the Ocean,Diving / UW photography,Jerry Greenberg,M,,"2.4 to 3 m [8' to 10'] oceanic whitetip shark buzzed him. No attack, no injury",N,,, ISAF Case #1421,1966.09.00-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.00-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.00-Greenberg.pdf,1966.09.00,1966.09.00,2664,, +1966.08.28,28-Aug-66,1966,Boat,AUSTRALIA,Northern Territory,Darwin Harbour,,"catamaran, occupant: Neil Fowler",M,,"No injury to occupant. Shark struck vessel, jamming centreboard",N,,,"Adelaide Advertiser, 9/1/1966; SAF Case #1426",1966.08.28-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.28-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.28-Fowler.pdf,1966.08.28,1966.08.28,2663,, +1966.08.27.b,27-Aug-66,1966,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Netting sharks,"trawler Jacoba, occupant Jan van der Bent",M,,"No attack, no injury to occupant: a 400-lb grey shark k bit nets in the water ",N,,,ISAF Case #1439,1966.08.27-Jacoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27-Jacoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27-Jacoba.pdf,1966.08.27.b,1966.08.27.b,2662,, +1966.08.27.a,27-Aug-66,1966,Unprovoked,BAHAMAS,Bimini Islands,,Snorkeling,Patricia Hodge,F,18,"Survived, no details",N,17h00,,"P. Gilbert & H.D. Baldridge, SAF Case #1433",1966.08.27.a-NV-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27.a-NV-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27.a-NV-Hodge.pdf,1966.08.27.a,1966.08.27.a,2661,, +1966.08.21.b,23-Aug-66,1966,Unprovoked,NEW BRITAIN,Duke of York Islands,"Butliwan Village, 15 miles north of Rabaul",Swimming,Memilana Bokset (female - rescuer),F,13,FATAL,Y,Midday,A pack of 6 sharks,"Age (Melbourne), Hudderfield Daily Examiner (Yorkshire), Evening Press (Dublin), 8/23/196;; Irish News (Belfast), 8/24/1966; A. MacCormick, p.161",1966.08.21.b-Bokset.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.b-Bokset.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.b-Bokset.pdf,1966.08.21.b,1966.08.21.b,2660,, +1966.08.21.a,23-Aug-66,1966,Unprovoked,NEW BRITAIN,Duke of York Islands,"Butliwan Village, 15 miles north of Rabaul",Diving into water,Loding Etwat (female),F,9,FATAL,Y,Midday,A pack of 6 sharks,"Age (Melbourne), Hudderfield Daily Examiner (Yorkshire), Evening Press (Dublin), 8/23/1966; Irish News (Belfast), 8/24/1966; A. MacCormick, p.161",1966.08.21.a-Etwat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.a-Etwat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.a-Etwat.pdf,1966.08.21.a,1966.08.21.a,2659,, +1966.08.16,16-Aug-66,1966,Unprovoked,CROATIA,Primorje-Gorski Kotar County ,Bakar,Swimming,Josef Treliac,M,33,FATAL,Y,,White shark,"R. Rocconi; A. De Maddalena & C. Moore, GSAF",1966.08.16-Treliac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.16-Treliac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.16-Treliac.pdf,1966.08.16,1966.08.16,2658,, +1966.08.14,14-Aug-66,1966,Unprovoked,TAIWAN,,Ye Leow,Lobster diving using Scuba,Jack W. Caldwell,M,,"No injury, but shark struck his calf",N,17h30,1.5 m to 2.1 m [5' to 7'] shark,"H.D.Baldridge, p.184",1966.08.14-Caldwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.14-Caldwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.14-Caldwell.pdf,1966.08.14,1966.08.14,2657,, +1966.08.13,13-Aug-66,1966,Unprovoked,ITALY,Taranto province,"Pulsano, near Taranto",Attacked shark with fists,Cosimo Piccinni,M,21,Arm lacerated,N,,"""small shark""","Evening Standard (London) 8/13/1966; Sunday Express (London), 8/14/1966",1966.08.13-CosimoPiccinni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.13-CosimoPiccinni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.13-CosimoPiccinni.pdf,1966.08.13,1966.08.13,2656,, +1966.08.00.b,Mid Aug-1966,1966,Invalid,USA,Delaware,Fenwick Island,Spearfishing on Scuba,Charles T. Henderson,M,26,"No attack, no injury, shark took speared fish & approached diver closely ",N,17h00,,H.D. Baldridge (1994) SAF Case #1440,1966.08.00.b-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.b-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.b-Henderson.pdf,1966.08.00.b,1966.08.00.b,2655,, +1966.08.00.a,Aug-66,1966,Unprovoked,USA,Florida,"Municipal Bathing area, Riviera Beach, Palm Beach County",Wading,Shawn Carpenter,M,8,"No injury, mother lifted him from the water",N,15h00,Spinner or blacktip sharks,M. Vorenberg,1966.08.00.a-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.a-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.a-Carpenter.pdf,1966.08.00.a,1966.08.00.a,2654,, +1966.07.31,31-Jul-66,1966,Unprovoked,USA,Texas,"South Jetty, Galveston",Diving for sand dollars,Robert W. Russell,M,16,Dorsum of right foot grazed,N,,Lemon shark or sandtiger shark,"M. Vorenberg, H.D. Baldridge, p.191",1966.07.31-Russell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.31-Russell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.31-Russell.pdf,1966.07.31,1966.07.31,2653,, +1966.07.19,19-Jul-66,1966,Provoked,USA,South Carolina,"Folly Beach, Charleston County",Killing a shark,Marvin Estridge,M,34,"Arm bitten, PROVOKED INCIDENT",N,18h40,4' shark,"News & Courier, 7/20/1966",1966.07.19-Estridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.19-Estridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.19-Estridge.pdf,1966.07.19,1966.07.19,2652,, +1966.07.17.b,17-Jul-66,1966,Unprovoked,USA,Texas,"Point Comfort, Calhoun County",Fishing,Tommy Barilek,M,14,Lacerations to right foot,N,15h00,,"Victoria Advocate, 7/20/1966, p.8",1966.07.17.b-Barilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.b-Barilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.b-Barilek.pdf,1966.07.17.b,1966.07.17.b,2651,, +1966.07.17.a,17-Jul-66,1966,Unprovoked,TAIWAN,Northern Taiwan,Tamsui Beach,Swimming,Yang Ching-Hui,M,20,"FATAL, left leg severed",Y,,,"South China Morning Post (Hong Kong), 7/19/1966 ",1966.07.17.a-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.a-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.a-Yang.pdf,1966.07.17.a,1966.07.17.a,2650,, +1966.07.14,14-Jul-66,1966,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province",Manus Island,Swimming,Sasa,F,25,FATAL,Y,,,H.D.Baldridge (1994) SAF Case #1415,1966.07.14-NV-Sasa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.14-NV-Sasa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.14-NV-Sasa.pdf,1966.07.14,1966.07.14,2649,, +1966.07.03,03-Jul-66,1966,Invalid,USA,Florida,"Key Biscayne, Miami, Dade County",Free diving,John Brothers,M,46,No injury. A 1.1 m [3.5'] blacktip shark shark made a threat display & bit gig,N,07h00,,"H.D. Baldridge, p.210",1966.07.03-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.03-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.03-Brothers.pdf,1966.07.03,1966.07.03,2648,, +1966.07.02,02-Jul-66,1966,Boat,CARIBBEAN SEA,,Between USA & Cuba,,"rowboat, occupants: refugees fleeing Cuba",,,"No injury to occupants, sharks bit chunks from boat",N,,,P. Gilbert; SAF Case #1436,1966.07.02-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.02-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.02-CubanRefugees.pdf,1966.07.02,1966.07.02,2647,, +1966.06.22,22-Jun-66,1966,Provoked,USA,New Jersey,"Reeds Bay, Brigantine, Atlantic County",Clamming,Harry Hiksdal,M,15,3 lacerations on right leg by speared fish PROVOKED INCIDENT,N,16h00,"Local authorities speculated that the water was too cold for sharks, but a 2.1 m [7'], 200-lb pregnant sandbar shark was caught next day",Press clippings,1966.06.22-Hiksdal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.22-Hiksdal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.22-Hiksdal.pdf,1966.06.22,1966.06.22,2646,, +1966.06.11,11-Jun-66,1966,Provoked,USA,Florida,"Ft. Lauderdale, Broward County",Fishing,Burton Chamberlin,M,18,Hand & forearm bitten by hooked shark PROVOKED INCIDENT,N,09h00,1.2 m [4'] hammerhead shark,T. Bailey,1966.06.11-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.11-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.11-Chamberlin.pdf,1966.06.11,1966.06.11,2645,, +1966.06.04,04-Jun-66,1966,Unprovoked,USA,Texas,Bolivar Peninsula,Swimming,David N. Holmgreen,M,18,Punctures on thigh & buttock,N,17h00,a small shark,D. Holmgreen,1966.06.04-Holmgreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.04-Holmgreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.04-Holmgreen.pdf,1966.06.04,1966.06.04,2644,, +1966.06.02,02-Jun-66,1966,Provoked,FRENCH POLYNESIA,Society Islands,Tahiti,Fishing,Faarei Tuhei,M,,Arm lacerated by netted shark PROVOKED INCIDENT,N,Afternoon,,"H.D. Baldridge (1994), SAF Case #1434",1966.06.02-Tuhei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.02-Tuhei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.02-Tuhei.pdf,1966.06.02,1966.06.02,2643,, +1966.05.20.c,20-May-66,1966,Sea Disaster,AUSTRALIA,New South Wales,Jervis Bay,Sinking of the dredge World Atlas,Kor Van Helden,M,40,FATAL,Y,Night,," J. Green, p.35",1966.05.20.c-VanHelden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.c-VanHelden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.c-VanHelden.pdf,1966.05.20.c,1966.05.20.c,2642,, +1966.05.20.b,20-May-66,1966,Unprovoked,AUSTRALIA,New South Wales, Bellingen,Fishing,Colin Oxenbridge,M,,Foot bitten,N,01h00,1.8 m [6'] shark,"Bellingen Courier-Sun; J. Green, p.35",1966.05.20.b-Oxenbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.b-Oxenbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.b-Oxenbridge.pdf,1966.05.20.b,1966.05.20.b,2641,, +1966.05.20.a,20-May-66,1966,Sea Disaster,AUSTRALIA,,7 miles offshore on east coast of Australia,Shipwreck,"Daniel Mangel, seaman",M,38,"FATAL, other human remains bitten by sharks, 13 people missing",Y,Dark,Believed white shark and other smaller species of sharks involved.,Barker & Ritson,1966.05.20.a-Mangel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.a-Mangel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.a-Mangel.pdf,1966.05.20.a,1966.05.20.a,2640,, +1966.05.16.b,16-May-66,1966,Invalid,USA,Florida,"Fernandina Beach, Nassau County",Spearfishing / Scuba diving,Steven Oschosky,M,24,"White shark, 3.7 m [12'] made threat display. No injury, no attack",N,14h00,,"H.D. Baldridge,p.184; SAF Case #1412",1966.05.16.b-Oschoskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.b-Oschoskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.b-Oschoskey.pdf,1966.05.16.b,1966.05.16.b,2639,, +1966.05.16.a,16-May-66,1966,Sea Disaster,PHILIPPINES,,Off Cebu,The passenger ship Pioneer Cebu capsized & sank in Typhoon Irma,male,M,,130 perished; 136 survived including a man whose foot was severed by a shark,Y,,,"Maryborough Chronicle (Queensland), Lancashire Evening Post 6/20/1966 ",1966.05.16.a-PioneerCebu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.a-PioneerCebu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.a-PioneerCebu.pdf,1966.05.16.a,1966.05.16.a,2638,, +1966.04.08,08-Apr-66,1966,Unprovoked,USA,Puerto Rico,,Swimming,John Seaver,M,25,Foot lacerated,N,16h30,,H.D. Baldridge (1994) SAF Case #1483,1966.04.08-NV-Seaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.08-NV-Seaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.08-NV-Seaver.pdf,1966.04.08,1966.04.08,2637,, +1966.04.00,Apr-66,1966,Sea Disaster,AUSTRALIA,New South Wales,"Botany Bay, Sydney",Overturned skiff,"Occupants: Jack Munro, Quinton Graham & Donald Shadler",M,,Survived,N,,,SAF Case #1413,1966.04.00-NV-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.00-NV-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.00-NV-skiff.pdf,1966.04.00,1966.04.00,2636,, +1966.03.20,20-Mar-66,1966,Provoked,AUSTRALIA,New South Wales,Maroubra,Fishing (big game),"35' cruiser, Maluka II, occupants: Mr & Mrs E. Potts",,,"No injury to occupants, hooked shark rammed boat, PROVOKED INCIDENT",N,,"Alleged to involve a White shark, 7.6 m [25'] ",P. W. Gilbert; SAF Case #1435,1966.03.20-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.20-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.20-Maroubra.pdf,1966.03.20,1966.03.20,2635,, +1966.03.12,14-Mar-66,1966,Sea Disaster,SUDAN,Red Sea,,"The World Liberty and the tanker Mosli collided. The Halcyon Breeze sent a lifeboat to the rescue, but it was smashed, throwing 6 men in the water.",,M,,FATAL,Y,,,"G. Burns; Befast News-Letter, 3/30/1966",1966.03.12-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.12-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.12-RedSea.pdf,1966.03.12,1966.03.12,2634,, +1966.02.27,27-Feb-66,1966,Unprovoked,AUSTRALIA,New South Wales,Coledale Beach,Treading water,Raymond Short,M,13,"Left leg & lower right leg bitten, taken ashore with shark still grasping his leg",N,14h00,"White shark, 2.5 m [8.25'], an immature female, previously injured","T. B. Gorman & D.J. Dunatan, NSW State Fisheries Laboratories; H.D. Baldridge, p.58; A. Sharpe, pp.77-79; A. MacCormick, p.162",1966.02.27-Short.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.02.27-Short.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.02.27-Short.pdf,1966.02.27,1966.02.27,2633,, +1966.01.29,29-Jan-66,1966,Provoked,SOUTH AFRICA,Western Cape Province,Strandfontein Beach,Helping men land a shark,John Campbell,M,33,Left leg lacerated by hooked shark PROVOKED INCIDENT,N,Afternoon,Copper shark,"Daily News, 2/31/1966; J. Penrith & J. D'Aubrey",1966.01.29-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.29-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.29-Campbell.pdf,1966.01.29,1966.01.29,2632,, +1966.01.25,25-Jan-66,1966,Sea Disaster,INDONESIA,North Sumatra,Near Belawan,wreck of the State Oil Company ship Permina,,,,Sharks said to have killed some of the 80 people lost,Y,,,Sydney Daily Telegraph,1966.01.25-Permina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.25-Permina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.25-Permina.pdf,1966.01.25,1966.01.25,2631,, +1966.01.22,22-Jan-66,1966,Unprovoked,USA,California,"Pebble Beach, Cypress Point, Monterey County",Free diving / spearfishing (resting on the surface),Donald Barthman,M,29,"Hand, arm & thigh bitten",N,10h00 / 11h00,"White shark, 3 m [10'] ","D. Miller & R. Collier; R. Collier, pp.40-41; H.D. Baldridge, p.76",1966.01.22-Barthman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.22-Barthman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.22-Barthman_Collier.pdf,1966.01.22,1966.01.22,2630,, +1966.01.15,15-Jan-66,1966,Unprovoked,AUSTRALIA,New South Wales,Bellambi,Spearfishing,Cornelius Meyer,M,30,Buttocks bitten,N,,"Wobbegong shark, 5' ","The Age, 1/17/1966, p.1",1966.01.15-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.15-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.15-Meyer.pdf,1966.01.15,1966.01.15,2629,, +1966.01.14,14-Jan-66,1966,Sea Disaster,COLUMBIA,,Off Cartagena,Colombian (Avianca) DC-4 airliner plunged into the sea 5 minutes after takeoff,,,,"10 survived, 51 perished. ",Y,,Shark involvement not confirmed,"Virgin Islands Daily News, 1/17/1966; SAF Case #1399",1966.01.14-AviancaCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.14-AviancaCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.14-AviancaCrash.pdf,1966.01.14,1966.01.14,2628,, +1966.01.11,11-Jan-66,1966,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Riet River,Standing,Robin Michael Long,M,16,Right calf lacerated,N,09h00,1.5 m to 1.8 m [5' to 6'] Zambesi shark,"J.L.B. Smith, J. Wallace, M. Levine, GSAF",1966.01.11-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.11-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.11-Long.pdf,1966.01.11,1966.01.11,2627,, +1966.01.10,10-Jan-66,1966,Unprovoked,AUSTRALIA,Western Australia,Woodman Point,Jumped into the water,Marko Kovacich,M,43,"Lower leg nipped, arm bruised when he landed in boat",N,,76 cm [2.5'] carpet shark,"West Australian (Perth), 1/20/1966 ",1966.01.10-Kovacich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.10-Kovacich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.10-Kovacich.pdf,1966.01.10,1966.01.10,2626,, +1966.01.09,09-Jan-66,1966,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umkomaas,Body surfing,Dennis Vorster,M,15,Lower legs bitten,N,14h00,"1.8 m to 2 m [6' to 6'9""] shark","J. DAubrey, M. Levine, GSAF",1966.01.09-Vorster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.09-Vorster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.09-Vorster.pdf,1966.01.09,1966.01.09,2625,, +1966.01.08,08-Jan-66,1966,Unprovoked,NEW ZEALAND,North Island,"Oakura Beach, Taranaki",Body surfing ,Rae Marion Keightley (female),F,15,"FATAL, left leg bitten thigh to calf ",Y,15h30,,"R.D. Weeks, GSAF; Dr. G. E. Walker",1966.01.08-Knightley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.08-Knightley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.08-Knightley.pdf,1966.01.08,1966.01.08,2624,, +1966.01.05,05-Jan-66,1966,Unprovoked,USA,Florida,"Hollywood, Broward County",Swimming,George A. C. Scherer,M,35,Thigh gashed,N,16h00,Hammerhead shark,J. Ulsh,1966.01.05-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.05-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.05-Scherer.pdf,1966.01.05,1966.01.05,2623,, +1966.00.00,Summer of 1996,1966,Invalid,USA,California,"Huntington Beach, Orange County",Walking,Jane Derry,F,15,Minor lacerations & abrasions to lower leg. ,N,"""After lunch""",Shark involvement not confirmed,R. Collier,1966.00.00-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.00.00-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.00.00-Derry.pdf,1966.00.00,1966.00.00,2622,, +1965.12.28,28-Dec-65,1965,Unprovoked,AUSTRALIA,Western Australia,"Bathurst Reef, Rottnest Island","Spearfishing, but standing in knee-deep water",male,M,40,Thigh & swim fin bitten,N,,1.8 m [6'] carpet shark,"Orange Daily (NSW), 12/29/1965; T. Peake, GSAF",1965.12.28-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.28-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.28-male.pdf,1965.12.28,1965.12.28,2621,, +1965.12.19,19-Dec-65,1965,Unprovoked,JOHNSTON ISLAND,,,Freediving,David Fellows,M,,No injury,N,14h00,Grey reef shark,"H.D. Baldridge (1994), SAF Case #1617",1965.12.19-Fellows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.19-Fellows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.19-Fellows.pdf,1965.12.19,1965.12.19,2620,, +1965.12.10,10-Dec-65,1965,Boat,AUSTRALIA,South Australia,Cape Jervis,Fishing,19' clinker-built craft. Occupants: Ray Peckham & Mr. L.C. Wells,,,No injury to occupants. Shark gouged planks of boat,N,10h30,15' shark,"Adelaide Advertiser, 12/11/1965, SAF Case 1345",1965.12.10-Jervisboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.10-Jervisboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.10-Jervisboat.pdf,1965.12.10,1965.12.10,2619,, +1965.11.21.b,21-Nov-65,1965,Provoked,AUSTRALIA,Queensland,Near Brisbane,Fishing from 34' boat when pulled overboard by hooked shark,Gordon Hobrook,M,43,FATAL PROVOKED INCIDENT,Y,,4.6 m [15'] shark,"Evening Press (Dublin, Ireland) 11/22/1965 ",1965.11.21.b-Holbrook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.b-Holbrook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.b-Holbrook.pdf,1965.11.21.b,1965.11.21.b,2618,, +1965.11.21.a,21-Nov-65,1965,Unprovoked,PACIFIC OCEAN ,"250 miles southwest of O'ahu, Hawaii",Japanese fishing boat Taihei Maru No.10,"Hauling dead shark aboard, when another shark leapt out of the water & bit him",Takashi Kameya,M,44,"Left forearm bitten, surgically amputated",N,23h30,,"P. Resos & J. Souza, Pararescue, 76th Air Rescue Squadron, Hickam AFB, Hawaii",1965.11.21.a-Kameya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.a-Kameya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.a-Kameya.pdf,1965.11.21.a,1965.11.21.a,2617,, +1965.11.03.b,03-Nov-65,1965,Invalid,PANAMA,Caribbean Sea,Golfo de los Mosquitos,Argentine Air Force C-54,68 people missing (crew & passengers) ,,,2 life preservers had been bitten by sharks,Y,07h32,Shark involvement not confirmed,Tropic Survival School; RCC; SAF Case #1394,1965.11.03.b-ArgentineAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.b-ArgentineAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.b-ArgentineAircraft.pdf,1965.11.03.b,1965.11.03.b,2616,, +1965.11.03.a,03-Nov-65,1965,Unprovoked,AUSTRALIA,Queensland,Oak Beach,Surfing,Roy McGuffie,M,24,Puncture wounds to right thigh,N,16h30,"Grey nurse shark, 2.4 m [8'] ","Telegraph (Sydney), Mirror (Sydney), Post (Cairns), 11/4/1965; J. Green, p.35",1965.11.03.a-McGuffie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.a-McGuffie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.a-McGuffie.pdf,1965.11.03.a,1965.11.03.a,2615,, +1965.10.21,21-Oct-65,1965,Unprovoked,,,Florida Strait,The boat Caribou II sank,Mario Castellanos,M,39,Survived,N,,,"Lodi News Sentinel, 10/30/1965",1965.10.21-Castellanos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.21-Castellanos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.21-Castellanos.pdf,1965.10.21,1965.10.21,2614,, +1965.10.16.b,16-Oct-65,1965,Unprovoked,BAHAMAS,New Providence Island,Nassau,Sunbathing on beach when he saw child being attacked by the shark,"Bruce Johnson, rescuer",M,32,Right arm & right leg bitten,N,,"1.8 m [6'], 180-lb shark","St. Paul Dispatch, 10/27/1965",1965.10.16.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.b-Johnson.pdf,1965.10.16.b,1965.10.16.b,2613,, +1965.10.16.a,16-Oct-65,1965,Unprovoked,BAHAMAS,New Providence Island,Nassau,Playing in the water,young girl,F,,FATAL,Y,,"1.8 m [6'], 180-lb shark","St. Paul Dispatch, 10/27/1965",1965.10.16.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.a-girl.pdf,1965.10.16.a,1965.10.16.a,2612,, +1965.10.10,10-Oct-65,1965,Unprovoked,NEW BRITAIN,West coast,"Outside the reef off Moputu Village, near Talasea","Spearfishing, shot a turtle",Kaleva,M,15,FATAL,Y,,2 sharks involved,Morning Herald (Sydney) 10/17/1965,1965.10.10-Kaleva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.10-Kaleva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.10-Kaleva.pdf,1965.10.10,1965.10.10,2611,, +1965.10.00,Oct-65,1965,Unprovoked,PAPUA NEW GUINEA,New Britain,,Wading,John Guge,M,27,Toe severed,N,,,H.D. Baldridge (1994) SAF Case #1475,1965.10.00-NV-Guge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.00-NV-Guge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.00-NV-Guge.pdf,1965.10.00,1965.10.00,2610,, +1965.09.21,21-Sep-65,1965,Provoked,PAPUA NEW GUINEA,Madang Province,Sek Harbor,Spearing fish,"Dabek Orou, male",M,,"Minor injury, speared shark lacerated his kneecap & leg PROVOKED INCIDENT",N,,"""small shark""","South Pacific Post, 9/22/2965; SAF Case #1386",1965.09.21-Orou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.21-Orou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.21-Orou.pdf,1965.09.21,1965.09.21,2609,, +1965.09.12,12-Sep-65,1965,Provoked,PAPUA NEW GUINEA,East Sepik,Moem Village near Wewak,Fishing (rod & line),Ilu,M,,Leg & hand bitten by shark that had been speared by another fisherman PROVOKED INCIDENT,N,14h00,0.9 m [3'] shark,"The Times (London), ",1965.09.12-Ilu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.12-Ilu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.12-Ilu.pdf,1965.09.12,1965.09.12,2608,, +1965.09.08,08-Sep-65,1965,Unprovoked,MEXICO,Veracruz,Playa Villa del Mar,,Miguel Salas Gonzalez,M,23,Leg & arm bitten,N,18h00,300-kg [662-lb] shark,F. Piskur; press clipping dated 9/9/1965,1965.09.08-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.08-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.08-Gonzalez.pdf,1965.09.08,1965.09.08,2607,, +1965.08.30,30-Aug-65,1965,Invalid,PHILIPPINES,,"Grounded off Scarborough Shoals, 150 miles northwest of Manila in the South China Sea","Arsinoe, a French tanker",French seaman,M,,"One man was lost, but he may have drowned",Y,,Shark involvement not confirmed,"Manila Daily Bulletin, 9/3/1965; SAF Case #1388",1965.08.30-Arsinoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.30-Arsinoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.30-Arsinoe.pdf,1965.08.30,1965.08.30,2606,, +1965.08.26,26-Aug-65,1965,Unprovoked,USA,New Jersey,"Steel Pier, Atlantic City, Atlantic County",Swimming,"James Bloodworth, Jr.",M,15,Right thigh lacerated,N,17h30,,J. Bloodworth; Philadelphia Inquirer 8/27/1965,1965.08.26-Bloodworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.26-Bloodworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.26-Bloodworth.pdf,1965.08.26,1965.08.26,2605,, +1965.07.30,30-Jul-64,1965,Provoked,BAHAMAS,Bimini Islands,Lerner Marine Lab,Attempting to anesthetize shark,Karl Kuchnow,M,,Chest bitten PROVOKED INCIDENT,N,,"Lemon shark, 0.5 m","H.D. Baldridge, p. 93",1965.07.30-Kuchnow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.30-Kuchnow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.30-Kuchnow.pdf,1965.07.30,1965.07.30,2604,, +1965.07.26,26-Jul-65,1965,Unprovoked,MEXICO,Veracruz,Mocambo,Bathing,Hector Serfio Trillio Jimenez,M,25,"FATAL, both legs severed ",Y,17h00,,"Latin American Times (New York), 8/3/1965 ",1965.07.26-Jimenez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.26-Jimenez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.26-Jimenez.pdf,1965.07.26,1965.07.26,2603,, +1965.07.02.R,Reported 02-Jul-1965,1965,Boat,BERMUDA,Hamilton,,,"12' boat Sio Ag, occupant: John Riding",,,"No injury to occupant, shark bit boat",N,,,"Daily Express, 7/2/1965; SAF Case #1375",1965.07.02.R-Riding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.02.R-Riding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.02.R-Riding.pdf,1965.07.02.R,1965.07.02.R,2602,, +1965.06.19,19-Jun-65,1965,Invalid,USA,Florida,"In front of Key Biscayne Beach Club, Key Biscayne",Wading,Eugene Rihl III,M,6,Parallel lacerations on right calf. Thought to be a barracuda bite ,N,,,"Miami Herald, 6/20/1965; SAF Case #1372",1965.06.19-Rihl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.19-Rihl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.19-Rihl.pdf,1965.06.19,1965.06.19,2601,, +1965.06.18,18-Jun-65,1965,Invalid,USA,Florida,150 miles southeast of Cape Kennedy,"Diving, retrieving film package from Titan 3C rocket","Sgt James Lacasse & Sgt David Milsten, USAF divers",M,,"No injury, chased by 4.6 m [15'] oceanic whitetip sharks",N,,,"Evening Standard (London) 6/9/1965; Sunday Express (London), 6/20/1965 ",1965.06.18-TitanRocket.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.18-TitanRocket.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.18-TitanRocket.pdf,1965.06.18,1965.06.18,2600,, +1965.06.09,09-Jun-65,1965,Unprovoked,MEXICO,Veracruz,Mocambo,Swimming,"Father Miguel de Jesus Chavez, a Catholic priest",M,38,"Right forearm severed, right leg bitten and surgically amputated",N,14h00,,J. Carranza (This is apparently a different case than 1965.05.00.a),1965.06.09-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.09-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.09-Chavez.pdf,1965.06.09,1965.06.09,2599,, +1965.06.00.b,Jun-65,1965,Unprovoked,PAPUA NEW GUINEA,Near Bougainville (North Solomons),Huhunoti Island,Spearfishing,"Mr. Belle Yang, a school teacher",M,,Minor injury,N,,,Age (Melbourne) 6/7/1965 ,1965.06.00-NV-Naruchima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-NV-Naruchima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-NV-Naruchima.pdf,1965.06.00.b,1965.06.00.b,2598,, +1965.06.00,Jun-65,1965,Unprovoked,SOUTH PACIFIC OCEAN,,,Treading water,Kikio Naruchima,M,,"FATAL, body not recovered",Y,Morning, ,H.D.Baldridge (1994) SAF Case #1510,1965.06.00-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-Yang.pdf,1965.06.00,1965.06.00,2597,, +1965.05.29,29-May-65,1965,Unprovoked,MEXICO,Veracruz,Playa Mocambo,Swimming,Ignacio Milln,M,,"FATAL, left leg & right arm severed ",Y,12h00,,The News (Mexico City) 6/1/1965 ,1965.05.29-Millan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.29-Millan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.29-Millan.pdf,1965.05.29,1965.05.29,2596,, +1965.05.28,28-May-65,1965,Unprovoked,MEXICO,Veracruz,Playa Mocambo,Swimming,Fidel Garcia Montero,M,,"FATAL, left arm & right leg severed ",Y,,,The News (Mexico City) 6/1/1965,1965.05.28-Montero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.28-Montero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.28-Montero.pdf,1965.05.28,1965.05.28,2595,, +1965.05.00.c,May-Jun-1965,1965,Unprovoked,EGYPT,,,Standing,male,M,,Leg bitten,N,,,Falconer-Barker,1965.05.00.c-Falconer-Barker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.c-Falconer-Barker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.c-Falconer-Barker.pdf,1965.05.00.c,1965.05.00.c,2594,, +1965.05.00.b,May-65,1965,Unprovoked,JAMAICA,,,Diving,Ken Bernard,M,,Minor injury,N,,,H.D.Baldridge (1994) SAF Case #1498,1965.05.00.b-NV-Bernard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.b-NV-Bernard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.b-NV-Bernard.pdf,1965.05.00.b,1965.05.00.b,2593,, +1965.05.00.a,May-65,1965,Unprovoked,MEXICO,Veracruz,Mocambo,Swimming,"Father Jose de Jesus Gomez, a priest",M,35,"Right arm severed, right leg bitten, not known if he survived",N,,,The News (Mexico City) 6/12/1965,1965.05.00.a-Gomez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.a-Gomez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.a-Gomez.pdf,1965.05.00.a,1965.05.00.a,2592,, +1965.04.29,29-Apr-65,1965,Unprovoked,USA,Florida,"Hobe Sound, Martin County",,Morris M. Vorenberg,M,49,"Thighs abraded, puncture wounds in dorsal surface of left hand",N,15h00,Bull shark,M. Vorenberg,1965.04.29-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.29-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.29-Vorenberg.pdf,1965.04.29,1965.04.29,2591,, +1965.04.25,25-Apr-65,1965,Invalid,USA,California,"Pacifica, San Mateo County",Surfing,Michael Sammut,M,19,Drowned & his body was not recovered. Sharks seen in area later that day but no shark involvement in surfer's death,Y,16h00,,"H.D. Baldridge, SAF Case #1370; R. Collier, p.xxxvi.",1965.04.25-Sammut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.25-Sammut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.25-Sammut.pdf,1965.04.25,1965.04.25,2590,, +1965.04.10,10-Apr-65,1965,Unprovoked,USA,Florida,American Shoals off Key West,Spearfishing,Dr. J. D. Morgan,M,28,Left hand severely lacerated,N,11h00,"White shark, 10' to 12' ","J. D. Morgan, M.D. ",1965.04.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.10-Morgan.pdf,1965.04.10,1965.04.10,2589,, +1965.04.04.b,04-Apr-65,1965,Unprovoked,PALAU,Western Caroline Islands,Koror,Walking on reef,Barry Nakamura,M,8,Right leg bitten,N,15h30,"Tiger shark, tooth fragment recovered",P.T. Wilson,1965.04.04.b-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.b-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.b-Nakamura.pdf,1965.04.04.b,1965.04.04.b,2588,, +1965.04.04.a,04-Apr-65,1965,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Paddling on surfboard,William F. Lachmund,M,17,Left hand punctured & lacerated,N,07h15,Blacktip or spinner shark,"M. Vorenberg; R. Greer, M.D.",1965.04.04.a-Lachmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.a-Lachmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.a-Lachmund.pdf,1965.04.04.a,1965.04.04.a,2587,, +1965.03.23,23-Mar-65,1965,Invalid,USA,Puerto Rico,60 miles offshore north of San Juan,Aircraft exploded,15 Royal Canadian Airforce crew & 1 passenger,M,,"All 16 onboard perished, recovery efforts hampered by sharks",N,11h30,,Dr. S.D. Caller; SAF Case #1360,1965.03.23-CanadianAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.23-CanadianAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.23-CanadianAircraft.pdf,1965.03.23,1965.03.23,2586,, +1965.03.14,14-Mar-65,1965,Unprovoked,USA,Florida,"Pompano Beach, Palm Beach County",Free diving,Rick MacNeilly,M,16,Survived,N,13h30,Mako shark,R. MacNeilly,1965.03.14-MacNeilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.14-MacNeilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.14-MacNeilly.pdf,1965.03.14,1965.03.14,2585,, +1965.02.14,14-Feb-65,1965,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amatikulu,Treading water,Geoffrey Walter Black,M,25,"Abdomen, buttock, thigh, arm & hand bitten",N,15h00 or 15h45,"1.8 m [6'], 136-kg [300-lb] shark ","G.W. Black, M. Levine, GSAF; T. McHugh, A. Heydorn. J. D'Aubrey & P.H. Jacques; T. Wallett, pp.51-52",1965.02.14-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.14-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.14-Black.pdf,1965.02.14,1965.02.14,2584,, +1965.02.04,04-Feb-65,1965,Unprovoked,USA,Massachusetts,"Granite Pier, Rockport",Scuba diving,Ronald R. Powell,M,18,Punctures on left thigh,N,14h30,1.2 m [4'] shark,"R. Powell; Boston Traveler 2/11/1965; H.D. Baldridge, p.184",1965.02.04-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.04-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.04-Powell.pdf,1965.02.04,1965.02.04,2583,, +1965.01.25,25-Jan-65,1965,Invalid,USA,California,"Newport Beach, Orange County",Motor boat Rebel Belle lost,Jack A. Zittel,M,21,"Puncture marks on chest may have been post mortem, 4 other bodies in area were undamaged",Y,,,H.L. Johnson; SAF Case #1353,1965.01.25-RebelBelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.25-RebelBelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.25-RebelBelle.pdf,1965.01.25,1965.01.25,2582,, +1965.01.23,23-Jan-65,1965,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Paddling rescue ski,Ronald Bowers,M,22,"No injury, ski bitten",N,13h00,"White shark, 3.7 m [12'] ","D. Davies, J. D'Aubrey & H. Haicker, ORI; M. Levine, GSAF",1965.01.23-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.23-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.23-Bowers.pdf,1965.01.23,1965.01.23,2581,, +1965.01.16,16-Jan-65,1965,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Body surfing,A.W.F. Patterson,M,20,Right thigh punctured,N,16h40,,"D. Davies & J. D'Aubrey, GSAF",1965.01.16-AWFPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.16-AWFPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.16-AWFPatterson.pdf,1965.01.16,1965.01.16,2580,, +1965.01.10,10-Jan-65,1965,Unprovoked,AUSTRALIA,Victoria,"East of Station Pier, Port Melbourne",Swimming,Arthur Wootton,M,,Thigh gashed,N,,1.5 m [5'] shark,The Australian 1/11/1965,1965.01.10-Wootton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.10-Wootton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.10-Wootton.pdf,1965.01.10,1965.01.10,2579,, +1965.01.09,09-Jan-65,1965,Unprovoked,NEW GUINEA,Central Province,Off Gaire Village,Free diving,"Lohia Raho, a male",M,30,FATAL,Y,,4.9 m [16'] whaler,"South Pacific Post (Port Moresby), 1/11/1965",1965.01.09-Raho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.09-Raho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.09-Raho.pdf,1965.01.09,1965.01.09,2578,, +1965.00.00.g,Summer 1965,1965,Unprovoked,USA,Texas,"Port Lavaca, Calhoun County",Dangling feet in the water,Thomas Darilek,M,13,Foot bitten,N,,,"Victoria Advocate, 7/11/2011",1965.00.00.g-Darilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.g-Darilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.g-Darilek.pdf,1965.00.00.g,1965.00.00.g,2577,, +1965.00.00.f,1965,1965,Provoked,USA,California,"Dana Point, San Clemente, Orange County",Surfing,Barry Berg,M,Teen,Puncture wounds to foot when he stepped on a shark PROVOKED INCIDENT,N,,,"Orange County Register, 1/28/2998",1965.00.00.f-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.f-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.f-Berg.pdf,1965.00.00.f,1965.00.00.f,2576,, +1965.00.00.e,Early 1965,1965,Provoked,USA,Florida,"Between Palm & Salerno Inlets, Martin County",Collecting marine specimens,Frank ---,M,,"No injury, shark tore his wetsuit after he grabbed it by the tail PROVOKED INCIDENT",N,,"Nurse shark, 0.94 m to 1.2 m [3' to 4'] ",M. Vorenberg,1965.00.00.e-Frank-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.e-Frank-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.e-Frank-RivieraBeach.pdf,1965.00.00.e,1965.00.00.e,2575,, +1965.00.00.d,May-Jun-1965,1965,Unprovoked,RED SEA,East of the Gulf of Aqaba,,Standing in waist-deep water,male,M,,Leg bitten three times,N,,Small shark with white-tipped dorsal fin,Captain T. Falcon-Barker,1965.00.00.d-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.d-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.d-male.pdf,1965.00.00.d,1965.00.00.d,2574,, +1965.00.00.c,May-Jun-1965,1965,Unprovoked,EGYPT,,South of Hurghada,"Spearfishing, but standing in the water",male,M,25 to 35,Ankle and thigh bitten; shark made three strikes,N,,"1.5 m to 2.1 m [5' to 7'] shark, possibly a mako shark",Captain T. Falcon-Barker,1965.00.00.c-spearfishing-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.c-spearfishing-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.c-spearfishing-male.pdf,1965.00.00.c,1965.00.00.c,2573,, +1965.00.00.b,1965,1965,Unprovoked,VANUATU,Malampa Province,Island of Paam'a,,3 males,M,,FATAL. Said to have been killed by sorcerers that turned themselves into sharks. The alleged sorcerers were taken into custody by authorities but released due to lack of evidence. ,Y,,,"M. Levine, GSAF",1965.00.00.b-Pamaa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.b-Pamaa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.b-Pamaa.pdf,1965.00.00.b,1965.00.00.b,2572,, +1965.00.00.a,Ca. 1965,1965,Invalid,SOUTH AFRICA,Eastern Cape Province,Pollock Beach,Bather,,,,No details,UNKNOWN,,,"M. Levine, GSAF, Possible confusion in press with Huskisson incident",1965.00.00.a-NV-PollockBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.a-NV-PollockBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.a-NV-PollockBeach.pdf,1965.00.00.a,1965.00.00.a,2571,, +1964.12.25,25-Dec-64,1964,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Swimming,W. A. Strijdom,M,19,"Hand, ankle & calf lacerated",N,17h00,Raggedtooth shark ,"Dr. Macrae; J. D'Aubrey, M. Levine, GSAF",1964.12.25-Strijdom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.25-Strijdom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.25-Strijdom.pdf,1964.12.25,1964.12.25,2570,, +1964.12.10.b,10-Dec-64,1964,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),Buka Island,,male,M,,Thigh severely lacerated,N,,,H.D.Baldridge (1994) SAF Case #1558,1964.12.10.b-NV-Buja.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.b-NV-Buja.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.b-NV-Buja.pdf,1964.12.10.b,1964.12.10.b,2569,, +1964.12.10.a,10-Dec-64,1964,Boat,AUSTRALIA,New South Wales,Port Jervis,Fishing,"19' boat, occupants: Ray Peckham, L.C. Wells",,,"No injury to occupants, shark rammed boat, bit planks & sheared off copper rivet at stern of boat",N,10h30,4.6 m [15'] shark,"Adelaide Advertiser, 12/11/1965",1964.12.10.a-NV-Boat-Peckham-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.a-NV-Boat-Peckham-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.a-NV-Boat-Peckham-Wells.pdf,1964.12.10.a,1964.12.10.a,2568,, +1964.12.09,09-Dec-64,1964,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Off Sing Village, Buka Island","Canoe swamped, swimming back to canoe","Soso, a male",M,28,Survived,N,Late afternoon,2.1 m [7'] shark,"South Pacific Post (Port Moresby), 12/16/1964",1964.12.09-Soso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.09-Soso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.09-Soso.pdf,1964.12.09,1964.12.09,2567,, +1964.12.06,06-Dec-64,1964,Unprovoked,KENYA,Coast Province,"Kilindini Harbor, Mombasa",Fishing with hand line tied to wrist & was pulled into the water,Musa Mohammed,M,10,FATAL,Y,,,"Star, 12/7/1964",1964.12.06-Mohammed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.06-Mohammed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.06-Mohammed.pdf,1964.12.06,1964.12.06,2566,, +1964.11.29,29-Nov-64,1964,Unprovoked,AUSTRALIA,Victoria ,Lady Julia Percy Island,Free diving with seals,Henri Bource,M,25,Left leg severed,N,14h30,"White shark, 2.4 m [8'] ","A. Sharpe, pp.115-116; H. Edwards, pp.67-71; J. Green, p.35; A. MacCormick, pp.88-91; J. West, ASAF",1964.11.29-Bource.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.29-Bource.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.29-Bource.pdf,1964.11.29,1964.11.29,2565,, +1964.11.18,18-Nov-64,1964,Unprovoked,AUSTRALIA,Queensland,"Fingal Beach, near Tweed Heads",Swimming out to rescue swimmers in difficulty,Glenthorne Prior,M,29,FATAL,Y,13h30,,"Daily Mirror (Sydney), 11/19/1964",1964.11.18-Prior.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.18-Prior.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.18-Prior.pdf,1964.11.18,1964.11.18,2564,, +1964.11.13,13-Nov-64,1964,Provoked,AUSTRALIA,New South Wales,"North Solitary Island, 8 miles from Wolli","Filming underwater, carrying powerhead",Jon Harding,M,25,"Shark made threat display, then diver hit it with powerhead PROVOKED INCIDENT",N,,"White shark, 2.7 m [9'1""], 750-lb ","H.D. Baldridge, p.57",1964.11.13-Harding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.13-Harding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.13-Harding.pdf,1964.11.13,1964.11.13,2563,, +1964.11.05,05-Nov-64,1964,Boat,USA,Puerto Rico,,Longline fishing,"18 hp Boston Whaler boat, occupant: G. W. Bane, Jr.",,,"No injury to occupant, shark bit propeller of outboard motor",N,18h00,Mako shark,"G. W. Bane, Jr.",1964.11.05-NV-BostonWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.05-NV-BostonWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.05-NV-BostonWhaler.pdf,1964.11.05,1964.11.05,2562,, +1964.10.31,31-Oct-64,1964,Provoked,SOUTH AFRICA,KwaZulu-Natal,Umkomaas,Surf fishing,Robin Clausen,M,,Right leg bitten while attempting to gaff hooked shark PROVOKED INCIDENT,N,,,"M. Levine, GSAF",1964.10.31-Clausen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.31-Clausen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.31-Clausen.pdf,1964.10.31,1964.10.31,2561,, +1964.10.25,25-Oct-64,1964,Invalid,USA,Florida,"Near US Air Force Base at Elgin, Okaloosa County",Boat Miss Becky sank 12 miles from shore,"James C. Beason & Calvin E. Smith, Jr. spent 16 hours in life raft",,,"No injury to occupants, drove sharks away with paddles",N,Night,,"Miami News, 10/26/1964; SAF Case #1338",1964.10.25-MissBecky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.25-MissBecky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.25-MissBecky.pdf,1964.10.25,1964.10.25,2560,, +1964.10.04,04-Oct-64,1964,Unprovoked,AUSTRALIA,Western Australia,"Avalon Beach, near Mandurah, 50 miles south of Perth","Surfing, but swimming to his board",Murray Henderson,M,19,Abrasions & 11 teethmarks on right lower leg,N,09h30,"Grey nurse shark, 1.8 m [6']",The Australian 10/5/1964,1964.10.04-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.04-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.04-Henderson.pdf,1964.10.04,1964.10.04,2559,, +1964.09.27,27-Sep-64,1964,Invalid,,,,Spearfishing,Giancarlo Griffon,M,24,"Disappeared, probable drowning but sharks in area led to speculation that he was taken by a shark",,11h00,,C. Moore. GSAF,1964.09.27-Griffon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.27-Griffon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.27-Griffon.pdf,1964.09.27,1964.09.27,2558,, +1964.09.20,20-Sep-64,1964,Unprovoked,TAIWAN,Northern Taiwan,"Tamsui Beach, Taipai",Swimming,Ko Tien-fu,M,32,FATAL,Y,14h00,,"China Post (Taipai, Taiwan) 9/22/1964",1964.09.20-Tien-fu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.20-Tien-fu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.20-Tien-fu.pdf,1964.09.20,1964.09.20,2557,, +1964.09.07,07-Sep-64,1964,Unprovoked,TAIWAN,Northern Taiwan,Tamsui Beach,Swimming,LO Chiu-yang,M,20,Right thigh & elbow bitten,N,13h30,1.8 m [6'] shark,"China Post (Taipei, Taiwan) 9/22/1964; J. Wong",1964.09.07-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.07-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.07-Yang.pdf,1964.09.07,1964.09.07,2556,, +1964.08.26,26-Aug-64,1964,Unprovoked,USA,Florida,"Hollywood Beach, Broward County",Swimming,Marc Tayman,M,14,Bruised & abraded ankle,N,14h30,,M. Tayman,1964.08.26-Tayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.26-Tayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.26-Tayman.pdf,1964.08.26,1964.08.26,2555,, +1964.08.23,23-Aug-64,1964,Unprovoked,MEXICO,Guerrero,Acapulco,Floating on his back in an inner tube,Thad T. Moore,M,19,Right thigh bitten,N,14h00,1.8 to 2.4 m [6' to 8'] shark,T.T. Moore,1964.08.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.23-Moore.pdf,1964.08.23,1964.08.23,2554,, +1964.08.22,22-Aug-64,1964,Invalid,USA,Florida,5 miles south of Palm Beach,Spearfishing / free diving,Kenny Ruszenas,M,18,3 m to 3.7 m [10' to 12'] great hammerhead shark shark only made a threat display. No injury,N,11h30,,M. Vorenberg,1964.08.22-Ruszenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.22-Ruszenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.22-Ruszenas.pdf,1964.08.22,1964.08.22,2553,, +1964.08.21,21-Aug-64,1964,Unprovoked,USA,Florida,"Panama City, Bay County",Swimming,Ron Kopenski,M,,"No injury, bumped repeatedly",N,11h30,3' shark,W.H. Tobert,1964.08.21-Kopenski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.21-Kopenski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.21-Kopenski.pdf,1964.08.21,1964.08.21,2552,, +1964.08.08,08-Aug-64,1964,Unprovoked,USA,Florida,"2 miles off Jupiter, Palm Beach County",Spearfishing using scuba,James R. Webb,M,28,"No injury, shark hit scuba tank",N,12h00,Hammerhead shark,"H.D. Baldridge, p.183",1964.08.08-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.08-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.08-Webb.pdf,1964.08.08,1964.08.08,2551,, +1964.08.03,03-Aug-64,1964,Unprovoked,JAPAN,Okayama Prefecture,Saidaiji,Swimming,Yoshio Ukita,M,12,"Leg bitten, surgically amputated",N,,,K. Nakaya,1964.08.03-Ukita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.03-Ukita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.03-Ukita.pdf,1964.08.03,1964.08.03,2550,, +1964.08.00,Aug-64,1964,Unprovoked,PANAMA,San Blas,Off Achutuppu Island near Ailigandi,Free diving / Spearfishingat edge of reef,male,M,21,Foot lacerated,N,,Less than 1.2 m [4'],H. Loftin,1964.08.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.00-Achtupu.pdf,1964.08.00,1964.08.00,2549,, +1964.07.27,27-Jul-64,1964,Provoked,USA,Puerto Rico,,,Manuel Alvelo,M,22,Arm lacerated by speared shark PROVOKED INCIDENT,N,11h00,Nurse shark,H.D.Baldridge (1994) SAF Case #1547,1964.07.27-NV-Alvelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.27-NV-Alvelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.27-NV-Alvelo.pdf,1964.07.27,1964.07.27,2548,, +1964.07.16,16-Jul-64,1964,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Island Rock,Searching for remains of Dr. Marais,Len Jones,M,30,"No injury, shark charged & impaled itself on spear",N,,Zambesi shark,"L. Jones, M. Levine,GSAF",1964.07.16-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.16-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.16-Jones.pdf,1964.07.16,1964.07.16,2547,, +1964.07.15,15-Jul-64,1964,Invalid,USA,Connecticut,"3 days out of Old Saybrook, Connecticut, 37.04'N, 67.57'W, Southern fringe of Gulf Stream","Yacht Gooney Bird foundered, 4 survivors on raft",,,,"No injury, no attack; sharks ate their food tied to a line over the side of the raft",N,,,SAF Case #1313,1964.07.15-GooneyBird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.15-GooneyBird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.15-GooneyBird.pdf,1964.07.15,1964.07.15,2546,, +1964.07.08.b,08-Jul-64,1964,Invalid,SOUTH AFRICA,KwaZulu-Natal,Island Rock,Spearfishing ,Dr. J. J. Marais,M,52,"Remains recovered, probable drowning and scavenging",Y,,,"M. Levine, L. Jones, GSAF",1964.07.08.b-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08.b-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08.b-Marais.pdf,1964.07.08.b,1964.07.08.b,2545,, +1964.07.08.a,08-Jul-64,1964,Provoked,USA,Florida,"Palm Beach, Palm Beach County",Tagging sharks,18' boat of Morris Vorenberg,M,,"No injury to occupant, hooked shark rammed & bit boat PROVOKED INCIDENT",N,,white shark,M. Vorenberg,1964.07.08.a-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08.a-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08.a-Vorenberg.pdf,1964.07.08.a,1964.07.08.a,2544,, +1964.07.00.b,Jul-64,1964,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,A reef off New Hanover (Northern end),Standing / fishing,"Kambagil, male",M,,"FATAL, leg severed ",Y,,,"Times Courier (Lae, PNG) 7/29/1964 ",1964.07.00.b-Kambagil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.b-Kambagil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.b-Kambagil.pdf,1964.07.00.b,1964.07.00.b,2543,, +1964.07.00.a,Jul-64,1964,Boat,PAPUA NEW GUINEA,New Ireland Province,Southern end,canoeing,occupant: child,,,"No injury to occupant, canoe struck several times by shark ",N,,,"Times Courier (Lae, PNG) 7/29/1964",1964.07.00.a-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.a-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.a-child.pdf,1964.07.00.a,1964.07.00.a,2542,, +1964.06.29.a,29-Jun-64,1964,Sea Disaster,BERMUDA,Hamilton,2 miles south of Castle Island Harbour entrance to Hamilton,Conducting a promotional film project for the Gemini space program (a practice astronaut recovery),2 USAF 4-engine planes (an HC-54 & a HC-97) each with 12 onboard collided in mid-air at low altitude and plunged into the Atlantic Ocean,,,"7 rescued, 7 bodies recovered, 10 missing. Many sharks in crash area.",Y,,,"Washington Post, 6/30/1964; SAF Case #1295",1964.06.29-Air-Collision.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.29-Air-Collision.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.29-Air-Collision.pdf,1964.06.29.a,1964.06.29.a,2541,, +1964.06.28,28-Jun-64,1964,Invalid,USA,New York,Long Island,Attempting to swim across the Atlantic Ocean,Britt Sullivan,F,29,"Disappeared, probable drowning but sharks in area led to speculation that she was taken by a shark",Y,Night,,"Oakland Tribune, 6/29/1964",1964.06.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.28-Sullivan.pdf,1964.06.28,1964.06.28,2540,, +1964.06.24,24-Jun-64,1964,Boat,USA,California,"Long Beach, Los Angeles County",Fishing,"boat, occupant: Harvey Birch",,,"No injury to occupants, shark crashed through windshield of boat",N,,2.1 m [7'] shark,"Valley News (Gardena), 6/28/1964 ",1964.06.24-BirchBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.24-BirchBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.24-BirchBoat.pdf,1964.06.24,1964.06.24,2539,, +1964.06.17,17-Jun-64,1964,Boat,PAPUA NEW GUINEA,New Britain,Near Rabaul,Fishing,"canoe, occupant: Herman Taman",M,,"No injury to occupant, shark lifted canoe's outrigger",N,,2.4 m [8'] shark,SAF Case #1300,1964.06.17-TamanCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.17-TamanCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.17-TamanCanoe.pdf,1964.06.17,1964.06.17,2538,, +1964.06.23,23-Jun-64,1964,Unprovoked,FIJI,Lau Group,"Tovu, Totoya Island",Spearfishing,Isireli Mara,M,23,Buttocks bitten,N,,,"Fiji Times, 6/26/1963 ",1964.06.23-IsireliMara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.23-IsireliMara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.23-IsireliMara.pdf,1964.06.23,1964.06.23,2537,, +1964.06.02,02-Jun-64,1964,Invalid,SOUTH AFRICA,KwaZulu-Natal,Port Edward,Swimming,Dawood Pili,M,40,"Skeletonized, except for head & feet. Possibly a drowning / scavenging",Y,>17h00,,D. Davies,1964.06.02-Pili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.02-Pili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.02-Pili.pdf,1964.06.02,1964.06.02,2536,, +1964.05.30,30-May-64,1964,Unprovoked,PANAMA,Caribbean Coast,,Standing,W.W. Fitzsimmons,M,47,No injury,N,,Lemon shark ,"H.D. Baldridge, SAF Case #1496",1964.05.30-NV-Fitzsimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.30-NV-Fitzsimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.30-NV-Fitzsimmons.pdf,1964.05.30,1964.05.30,2535,, +1964.05.08,08-May-64,1964,Unprovoked,FIJI,Vita Levu,Naviti,Spearfishing,Sailasa Ratubalavu,M,35,"FATAL, buttocks, lower abdomen & genitalia removed ",Y,11h30,Tiger shark,"H.D. Baldridge, p.196; Clark, p.87",1964.05.08-Ratubalavu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.08-Ratubalavu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.08-Ratubalavu.pdf,1964.05.08,1964.05.08,2534,, +1964.05.00,May-64,1964,Unprovoked,PANAMA,San Blas Islands,"Achutupu, a small island ner Ailigandi",Skin diving,male,M,13,"FATAL, torso / abdomen severely bitten ",Y,,1.8 m [6'] shark,H. Loftin,1964.05.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.00-Achtupu.pdf,1964.05.00,1964.05.00,2533,, +1964.04.07,07-Apr-64,1964,Unprovoked,PAPUA NEW GUINEA,Madang Province,Inshore side of reef near Madang,Fishing,Simon Kilaleg,M,,FATAL,Y,,,"Daily News (Perth), 4/8/1964",1964.04.07-Kialeg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.04.07-Kialeg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.04.07-Kialeg.pdf,1964.04.07,1964.04.07,2532,, +1964.03.28.b,28-Mar-64,1964,Unprovoked,AUSTRALIA,South Australia,Surfers Paradise Beach near Victor Harbour,Surfing,Allan Spry,M,19,Left thigh lacerated,N,,1.8 m [6'] shark,"Advertiser (Adelaide) and Telegraph (Sydney), 3/30/1964 ",1964.03.28.b-Spry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.b-Spry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.b-Spry.pdf,1964.03.28.b,1964.03.28.b,2531,, +1964.03.28.a,28-Mar-64,1964,Sea Disaster,PAPUA NEW GUINEA,Central Province,30 miles from Port Moresby,"Canoe capsized with 10 occupants, 8 survived, Hamilton swam off to seek help",Donald Hamilton,M,32,Presumed FATAL,Y,Midnight,,"Daily Mirror (Sydney), 3/311964; SAF Case 1333",1964.03.28.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.a-Hamilton.pdf,1964.03.28.a,1964.03.28.a,2530,, +1964.03.05,05-Mar-64,1964,Unprovoked,USA,Florida,"Fort Lauderdale, Broward County",Skin diving ,James R. Duryea,M,38,"Minor injury, abdomen abraded when he collided with the shark",N,16h00,1.7 m [5.5'] shark,"Sun Sentinel, 3/6/1964 ",1964.03.05-Duryea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.05-Duryea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.05-Duryea.pdf,1964.03.05,1964.03.05,2529,, +1964.03.00,Mar-64,1964,Unprovoked,SENEGAL,Cap Vert Peninsula,"Bel Air, Dakar",Free diving for shell,O.D.,M,,Thigh & hand bitten,N,,3 m shark,,1964.03.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.00-Senegal.pdf,1964.03.00,1964.03.00,2528,, +1964.02.17.R,Reported 17-Feb-1964,1964,Provoked,FIJI,,Savuli Reef,Fishing,"boat, occupant: R. Southey of Lautoka",,,Hooked shark bit boat PROVOKED INCIDENT,N,,"Tiger shark, 3.5 m, 250-lb female","Fiji Times, 2/17/1964",1964.02.17.R-Fiji-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.17.R-Fiji-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.17.R-Fiji-boat.pdf,1964.02.17.R,1964.02.17.R,2527,, +1964.02.14.b,14-Feb-64,1964,Unprovoked,NEW CALEDONIA,,,Diving for trochus shell,Bernard Taye,M,15,"FATAL, foot & part of other leg severed ",Y,,,"Sydney Daily Telegraph, 2/15/1964 ",1964.02.14.b-Taye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.b-Taye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.b-Taye.pdf,1964.02.14.b,1964.02.14.b,2526,, +1964.02.14.a,14-Feb-64,1964,Unprovoked,FIJI,Vanua Levu,"Nailou Village, Tunuloa Natewa Bay",Spearfishing,Ivo Berabi,M,17,"FATAL, thigh and abdomen bitten ",Y,10h30,,Fiji Times; L. Schultz,1964.02.14.a-Berabi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.a-Berabi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.a-Berabi.pdf,1964.02.14.a,1964.02.14.a,2525,, +1964.02.11,11-Feb-64,1964,Unprovoked,NEW ZEALAND,North Island,"Palliser Bay, Whatarangi (east of Wellington)",preparing to go skin diving,male,M,,Hand lacerated,N,12h00,,"R.D.Weeks, GSAF; Otago Daily Times, 2/13/1964, p.5",1964.02.11-male-Palliser Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.11-male-Palliser Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.11-male-Palliser Bay.pdf,1964.02.11,1964.02.11,2524,, +1964.02.10,10-Feb-64,1964,Unprovoked,NEW ZEALAND,North Island,"West of Pukerua Bay, Wellington",Spearfishing,Dr. Ken R. Markham,M,26,"No injury to diver, shark bit speargun",N,18h30,"White shark, 3 m [10'] ","R.D. Weeks, GSAF; Otago Daily Times, 2/11/1964, p1; Wellington Evening Post, 2/17/1960",1964.02.10-Markham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.10-Markham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.10-Markham.pdf,1964.02.10,1964.02.10,2523,, +1964.02.08,08-Feb-54,1964,Unprovoked,SOUTH AFRICA,Western Cape Province,Muizenberg,Body boarding,Alan Saffery,M,25,Right ankle lacerated,N,08h45,"White shark, 1.5 m [5'] k","D. Davies; M. Levine, GSAF",1964.02.08-Saffery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.08-Saffery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.08-Saffery.pdf,1964.02.08,1964.02.08,2522,, +1964.02.05.b,05-Feb-64,1964,Unprovoked,NEW ZEALAND,North Island,"Hokio Beach, near Levin",Lying in 2 feet of water,male,M,,Right leg & shoulder lacerated,N,,"""sand shark""","R.D. Weeks, GSAF",1964.02.05.b-Hokio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.b-Hokio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.b-Hokio.pdf,1964.02.05.b,1964.02.05.b,2521,, +1964.02.05.a,05-Feb-64,1964,Unprovoked,NEW ZEALAND,South Island,"St. Clair Beach, Dunedin",Swimming,Leslie Francis Jordan,M,19,"FATAL, both legs bitten & right leg severed at knee ",Y,06h45,"White shark, 3 m to 3.7 m [10' to 12'] ","R.D. Weeks, GSAF; Otago Daily Times, 2/6/1964 & 2/7/1964",1964.02.05.a-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.a-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.a-Jordan.pdf,1964.02.05.a,1964.02.05.a,2520,, +1964.02.02,02-Feb-64,1964,Invalid,AUSTRALIA,Queensland,Brisbane,Swimming,Neil Buckley,M,23,Body not recovered / May have drowned prior to shark involvement,Y,09h30,,H.D.Baldridge (1994) SAF Case #1336,1964.02.02-NV-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.02-NV-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.02-NV-Buckley.pdf,1964.02.02,1964.02.02,2519,, +1964.02.01,01-Feb-64,1964,Boat,NEW ZEALAND,South Island,"Ngatuka Bay, near Picton",Rowing,"dinghy, occupants: T. Shipston, T. Whitta, L Cox, T. Jones, R. Genet & W. Pearce",,,"No injury to occupants , shark nudged oars",N,12h00,1.8 m [6'] shark,"New Zealand Herald, 2/2/1964; SAF Case #1335",1964.02.01-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.01-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.01-Dinghy.pdf,1964.02.01,1964.02.01,2518,, +1964.02.00.b,Feb-64,1964,Unprovoked,USA,Florida,Palm Beach County,Floating,Noel Feustel,M,12,No injury,N,,Hammerhead shark,"H.D.Baldridge, SAF Case #1487",1964.02.00.b-NV-Feustel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.b-NV-Feustel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.b-NV-Feustel.pdf,1964.02.00.b,1964.02.00.b,2517,, +1964.02.00.a,Feb-64,1964,Unprovoked,COSTA RICA,Puntarenas Province,Puntarenas,Swimming,male,M,,"FATAL, right arm & left thigh bitten ",Y,,,"E. Vargas, M.D.",1964.02.00.a-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.a-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.a-CostaRica.pdf,1964.02.00.a,1964.02.00.a,2516,, +1964.01.27,27-Jan-64,1964,Unprovoked,FIJI,,70 miles from Suva,Spearfishing,Dr. George Lapin,,,FATAL,Y,,,"Long Beach Independent, 1/281964 ",1964.01.27-Lapin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.27-Lapin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.27-Lapin.pdf,1964.01.27,1964.01.27,2515,, +1964.01.23,23-Jan-64,1964,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Body surfing,John Carlson,M,39,Heel & ankle bitten,N,16h00,,"D. Davies, Daily Dispatch (East London), 1/24/1964 M. Levine, GSAF",1964.01.23-Carlson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.23-Carlson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.23-Carlson.pdf,1964.01.23,1964.01.23,2514,, +1964.01.22,22-Jan-64,1964,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Standing,Gerald Holder,M,17,Heel bitten,N,11h00,,"D. Davies; Daily Dispatch (East London), 1/23/1964, M. Levine, GSAF",1964.01.22-Holder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.22-Holder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.22-Holder.pdf,1964.01.22,1964.01.22,2513,, +1964.01.21,21-Jan-64,1964,Boat,SOUTH AFRICA,Western Cape Province,20 m from shore at Strand,Shark watching,"Motor boat, occupants: Quintus Du Toit, J.H. van Heerden & J.P. Marais",,,"No injury to occupants, shark holed boat",N,11h00,"White shark, 3.6 m [11'9""] ",GSAF,1964.01.21-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.21-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.21-boat.pdf,1964.01.21,1964.01.21,2512,, +1964.01.18,18-Jan-64,1964,Unprovoked,AUSTRALIA,Western Australia,Hamelin Bay,Freediving,Frank Hastie,M,,Arm lacerated,N,,Wobbegong,"G.P. Whitley, citing Sydney Morning Herald, 1/21/1964",1964.01.18-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.18-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.18-Hastie.pdf,1964.01.18,1964.01.18,2511,, +1964.01.11,11-Jan-64,1964,Unprovoked,USA,California,Southeast Farallon Island,Spearfishing / Scuba diving (at surface),Jack Rochette,M,21,Leg & thigh bitten,N,12h00,White shark (tooth fragment recovered),"R. Collier, p.261-264; D. Miller & R. Collier; R. Collier, pp.26-40",1964.01.11-Rochette_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.11-Rochette_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.11-Rochette_Collier.pdf,1964.01.11,1964.01.11,2510,, +1964.01.06.R,Reported 06-Jan-1964,1964,Unprovoked,PAPUA NEW GUINEA,New Britain,,Fishing,male,M,,FATAL,Y,,Tiger shark,"Oldham Evening Chronicle, 1/6/1964",1964.01.06.R-NewBritain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.06.R-NewBritain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.06.R-NewBritain.pdf,1964.01.06.R,1964.01.06.R,2509,, +1964.01.04,04-Jan-64,1964,Unprovoked,FIJI,"Lomaloma, Lau",Tuvuca Isalnd,Swimming,Tale Meve (female),F,20,Deep lacerations to her right thigh,N,15h00,,SAF Case #1250,1964.01.04-Meve.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.04-Meve.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.04-Meve.pdf,1964.01.04,1964.01.04,2508,, +1964.01.01.b,01-Jan-64,1964,Unprovoked,AUSTRALIA,Western Australia,Metro coast,,Edwards,,,,UNKNOWN,,,"T. Peake, GSAF",1964.01.01.b-NV-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-NV-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-NV-Edwards.pdf,1964.01.01.b,1964.01.01.b,2507,, +1964.01.01.a,01-Jan-64,1964,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Diving for sinkers,Jakobus Christiaan Steyn,M,,Lacerations and puncture wounds in right arm ,N,19h00 / 20h00,2.1 m to 2.4 m [7' to 8'] shark,"The Argus, 1/3/1964",1964.01.01.b-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-Edwards.pdf,1964.01.01.a,1964.01.01.a,2506,, +1964.01.00,Jan-64,1964,Invalid,NEW ZEALAND,North Island,White Island,Snorkeling,J.H. Seddon,M,,No injury,N,07h30,White shark,"H.D.Baldridge (1994) SAF Case #1484, Note: Unable to verify in local records.",1964.01.00-NV-Sneddon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.00-NV-Sneddon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.00-NV-Sneddon.pdf,1964.01.00,1964.01.00,2505,, +1963.12.29,29-Dec-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Catfish Rock, between Salt Rock & Shakas Rock",Standing,Barbara Elsa Strauss,F,20,"Right hand & foot severed, thigh & buttock lacerated",N,14h00,"Zambesi shark, 1.8 m [6'] ","B. Strauss, D. Davies, 121-122; Daily Dispatch, 4/24/1964; M. Levine, GSAF",1963.12.29-Strauss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.29-Strauss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.29-Strauss.pdf,1963.12.29,1963.12.29,2504,, +1963.12.26.b,26-Dec-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umhlanga Rocks,Swimming ,Ronnie De Wet,M,24,"Lower leg bitten & foot severed, leg surgically amputated below knee",N,15h00,1.8 m [6'] shark,"D. Davies, pp.120-121; M. Levine, GSAF",1963.12.26.b-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.b-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.b-deWet.pdf,1963.12.26.b,1963.12.26.b,2503,, +1963.12.26.a,26-Dec-63,1963,Unprovoked,AUSTRALIA,Queensland,"Figtree Ledge, Hervey Bay",Sitting on gunwale of boat,Mr. N. Warry,M,,"No injury, shark's tail struck his armpit",N,Dawn,"4.3 m [14'], 1000-lb shark","Maryborough Chronicle (Qld), 12/28/1963",1963.12.26.a-Warry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.a-Warry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.a-Warry.pdf,1963.12.26.a,1963.12.26.a,2502,, +1963.12.25,25-Dec-63,1963,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie River Mouth,Swimming,Chester Wienand,M,18,"FATAL, shoulders, arms, abdomen & foot bitten ",Y,15h45,,"G.V. Wienand, M. Levine, GSAF",1963.12.25-Wienand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.25-Wienand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.25-Wienand.pdf,1963.12.25,1963.12.25,2501,, +1963.12.22.b,22-Dec-63,1963,Invalid,ATLANTIC OCEAN,Between Southampton & Canary Islands,,"Greek steamship Lakonia caught fire, 98 of her 646 passengers, and 30 of her crew of 376 perished",woman,F,,"One woman reported to have suffered fish bites, but cause of her death was exposure & drowning""",N,,Shark involvement unconfirmed,Bath Coronor report NLSC 20/64; SAF Case #1324,1963.12.22.b-Lakonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.b-Lakonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.b-Lakonia.pdf,1963.12.22.b,1963.12.22.b,2500,, +1963.12.22.a,22-Dec-63,1963,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Next to West Street groyne, Durban",Helping friend land hooked shark,Desmond Woodhams,M,13,Foot lacerated PROVOKED INCIDENT,N,18h30,"Dusky shark, 1 m ","M. Levine, GSAF",1963.12.22.a-Woodhams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.a-Woodhams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.a-Woodhams.pdf,1963.12.22.a,1963.12.22.a,2499,, +1963.12.21,21-Dec-63,1963,Provoked,AUSTRALIA,New South Wales,"Woolgoolga, Coffs Harbour",Fishing,Leslie Cook,M,,7 puncture wounds in right forearm from hooked shark PROVOKED INCIDENT,N,,"Wobbegong shark, 3' ","Daily Examiner (Grafton, NSW), 12/23/1963; J. Green, p.30",1963.12.21-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.21-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.21-Cook.pdf,1963.12.21,1963.12.21,2498,, +1963.12.20.b,20-Dec-63,1963,Unprovoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Spearfishing,Cornelius G. Coetzee,M,,Foot lacerated,N,12h00,"White shark, 1.7 m [5.5']","D. Davies; M. Levine, GSAF",1963.12.20.b-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.b-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.b-Coetzee.pdf,1963.12.20.b,1963.12.20.b,2497,, +1963.12.20.a,20-Dec-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umvoti,Splashing in surf,Matangusa Mzize,M,15,"FATAL, arm severed, leg bitten",Y,12h40,300- to 400-lb Zambesi shark,"G.D. Campbell; D. Davies, pp.119-120",1963.12.20.a-Mzize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.a-Mzize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.a-Mzize.pdf,1963.12.20.a,1963.12.20.a,2496,, +1963.12.08,08-Dec-63,1963,Unprovoked,AUSTRALIA,South Australia,55 miles south of Adelaide,Spearfishing,Rodney Fox,M,23,Torso & hand lacerated,N,12h45,White shark,"H. Edwards, pp.65-66: H.D. Baldridge, pp.18-19; J. West;",1963.12.08-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.08-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.08-Fox.pdf,1963.12.08,1963.12.08,2495,, +1963.12.04.R,04-Dec-63,1963,Unprovoked,NEW BRITAIN,"South Coast, East New Britain",Pomio,Spearfishing,Patape,M,22,"FATAL, leg severely bitten",Y,,Tiger shark,"Times Courier (Lae, PNG), 12/4/1963; Oldham Evening Chronicle 1/6/1964",1963.12.04.R-Patape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.04.R-Patape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.04.R-Patape.pdf,1963.12.04.R,1963.12.04.R,2494,, +1963.11.30.b,30-Nov-63,1963,Unprovoked,NEW ZEALAND,South Island,"Charteris Bay, Lyttleton Harbour",Treading water while alongside capsized yacht,Charlie Dudley,M,20,Hand & lower leg severely injured,N,13h00,Possibly a broadnose 7-gill shark,"C. Dudley, R.D. Weeks, GSAF; H.D. Baldridge, SAF Case #1467; Otago Daily Times, 12/2/1963, p.7",1963.11.30.b-Dudley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.b-Dudley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.b-Dudley.pdf,1963.11.30.b,1963.11.30.b,2493,, +1963.11.30.a,30-Nov-63,1963,Provoked,PAPUA NEW GUINEA,Gulf Province,"Kukipi, 150 miles west of Port Moresby in the Lakekamu River area",Fishing / standing in waist deep water,"Siara Ikui, female",F,18,Left arm lacerated PROVOKED INCIDENT,N,14h00,Tiger shark,"M. Malin; The Sun (Melbourne), 12/2/1963",1963.11.30.a-Siara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.a-Siara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.a-Siara.pdf,1963.11.30.a,1963.11.30.a,2492,, +1963.11.28,28-Nov-63,1963,Unprovoked,FIJI, Lau Province,"Dravuwalu, Totoya Island",Fishing,"Mereseini Wati, female",F,21,Elbow bitten,N,11h00,>1.2 m [4'] tiger shark,Capt. S. B. Brown,1963.11.28-Wati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.28-Wati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.28-Wati.pdf,1963.11.28,1963.11.28,2491,, +1963.11.25,25-Nov-63,1963,Unprovoked,FIJI,Vita Levu,Rewa River,Spearing fish,Sumia Qio,M,25,Ankle & foot bitten,N,14h00,,GSAF,1963.11.25-Sumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.25-Sumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.25-Sumia.pdf,1963.11.25,1963.11.25,2490,, +1963.11.16.R,Reported 16-Nov-1963,1963,Unprovoked,ITALY,Sicily,Off Mondello Lighthouse,Spearfishing,Dr. Salito,M,28,No injury,N,,,"C. Moore, GSAF",1963.11.16.R-Salito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.16.R-Salito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.16.R-Salito.pdf,1963.11.16.R,1963.11.16.R,2489,, +1963.11.14,14-Nov-63,1963,Provoked,AUSTRALIA,Queensland,Mermaid Beach,Catching sharks under government contract,"boat Nora, occupant Bruce Harris",M,,"No injury to occupant, netted shark rammed & bit boat PROVOKED INCIDENT",N,,"White shark, 15'2"" ","Miner (WA) & Warwick Daily News (Qld), 11/15/1963 ",1963.11.14-Nora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.14-Nora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.14-Nora.pdf,1963.11.14,1963.11.14,2488,, +1963.11.12,12-Nov-63,1963,Provoked,USA,Florida,"8 miles south of Elliot Key, Miami-Dade County",Testing anti-shark cage,"D. R. Nelson, J. Greenberg & S.H. Gruber",M,,No injury PROVOKED INCIDENT,N,11h40,"Silky shark, 1.9 m [6.5']",D.R. Nelson,1963.11.12-DonNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.12-DonNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.12-DonNelson.pdf,1963.11.12,1963.11.12,2487,, +1963.11.05.R,Reported 05-Nov-1963,1963,Unprovoked,PAPUA NEW GUINEA,New Britain,,Wading,Tule,M,,Thigh lacerated ,N,,6' shark,H.D. Baldridge (1994) SAF Case #1478,1963.11.05.R-Tule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.05.R-Tule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.05.R-Tule.pdf,1963.11.05.R,1963.11.05.R,2486,, +1963.11.04,04-Nov-63,1963,Unprovoked,PALAU,Western Caroline Islands,Koror,Fishing,Saburo Dooley,M,35,Left calf lacerated,N,03h00,Dooley believed his Injury was caused by stingray (Dasyatidae family),"R. Yalap, M.D.; H.D. Baldridge, p..104 ",1963.11.04-Dooley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.04-Dooley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.04-Dooley.pdf,1963.11.04,1963.11.04,2485,, +1963.10.16,16-Oct-63,1963,Unprovoked,USA,Florida,"Biltmore Beach, near Panama City","Surf fishing, wading ",William Cheatham,M,28,"Right thigh & foot bruised, right calf lacerated",N,17h30,500-lb shark,"H.D. Baldridge, p.109",1963.10.16-Cheatham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.16-Cheatham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.16-Cheatham.pdf,1963.10.16,1963.10.16,2484,, +1963.10.15,15-Oct-63,1963,Provoked,NORTH PACIFIC OCEAN,,,Fishing for sharks,"Eichi Nakata, of the the crew of the trawler Kayo Maru",M,20,"Right hand lacerated, PROVOKED INCIDENT",N,,,"J.L. Holland; The Honolulu Advertiser, 10/19/1963; SAF Cse #1209",1963.10.15-Nakata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.15-Nakata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.15-Nakata.pdf,1963.10.15,1963.10.15,2483,, +1963.09.29,29-Sep-63,1963,Unprovoked,CHILE,,"El Panul, 12km south of Coquimbo",Spearfishing / free diving,Crisolog Urizar,M,,FATAL,Y,11h00,"White shark, 4 m [13'] rk",J. McCosker & A.C. Engana,1963.09.29-Urizar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.29-Urizar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.29-Urizar.pdf,1963.09.29,1963.09.29,2482,, +1963.09.26,26-Sep-63,1963,Invalid,USA,Florida,100 miles offshore,"Commercial fishing vessel, Ev-nn, struck object & sank. Ken Crosby and Jame & Ann Dumas adrift on makeshift raft.","After 2 days, Ann Dumas, 7,5 months pregnant, died of exposure & exhaution& her body was lashed to raft.",,25,Sharks tried to overturn raft and took Mrs. Dumas' body; scavenging by shark/s,Y,,numerous dusky sharks & a 3 m to 4.6 m [10' to 15'] to tiger shark,"Washington Post, 9/27/1963; SAF Case #1221",1963.09.26-Dumas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.26-Dumas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.26-Dumas.pdf,1963.09.26,1963.09.26,2481,, +1963.09.22,22-Sep-63,1963,Unprovoked,SOLOMON ISLANDS,Ysabel Island,Susukana Plantation,Spearing fish,Dovi,M,30,"FATAL, right thigh, calf & foot bitten ",Y,13h00,5.5 m [18'] shark,"M.L. Aylett, Fisheries Officer; H.D. Baldridge, p.148 ",1963.09.22-Dovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.22-Dovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.22-Dovi.pdf,1963.09.22,1963.09.22,2480,, +1963.09.13,13-Sep-63,1963,Provoked,AUSTRALIA,New South Wales,Wanda Beach,Surfing,Peter Barron,M,18,"A ""dead"" shark grabbed by the tail bit his right torso PROVOKED INCIDENT",N,09h30,1.5 m [5'] shark,"P. Barron; Goulburn Evening Post; J. Green, p.35",1963.09.13-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.13-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.13-Barron.pdf,1963.09.13,1963.09.13,2479,, +1963.09.10,10-Sep-63,1963,Provoked,USA,Florida,"Snapper Point Jetty, Miami, Dade County","Spearfishing, pulled sharks tail",Robert Olsen,M,16,Minor injury to left forearm PROVOKED INCIDENT,N,13h30,"Nurse shark, 1.2 m [4'] ","H.D. Baldridge, p.166; SAF Case #1284",1963.09.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.10-Olsen.pdf,1963.09.10,1963.09.10,2478,, +1963.08.00,Aug-63,1963,Unprovoked,DOMINICAN REPUBLIC,Santo Domingo,Rio Haina Port,"Swimming, when caught in heavy seas",2 males,M,23 & 26,"FATAL. Eyewitness said, ""One was thrown in the air like a basketball, and while in the air another shark took a bite out of his belly."" ",Y,,8 sharks,"A. Gigante, Jr; H.D. Baldridge; M. McDiarmid, p.72",1963.08.00-2males.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.08.00-2males.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.08.00-2males.pdf,1963.08.00,1963.08.00,2477,, +1963.07.28,28-Jul-63,1963,Unprovoked,FEDERATED STATES OF MICRONESIA,Eastern Caroline Islands,"Koop Reef, Truk (Chuuk)",Spearfishing,Akira,M,26,Upper left arm bitten,N,08h00,Tiger shark,"K. Aniol, Medical Officer",1963.07.28-Akira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.28-Akira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.28-Akira.pdf,1963.07.28,1963.07.28,2476,, +1963.07.15,15-Jul-63,1963,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Bathing,Robert Driscoll,M,14,"Left forearm bitten, surgically amputated?",N,Late afternoon,,"Orlando Sentinel, 7/16/1963",1963.07.15-Driscoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.15-Driscoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.15-Driscoll.pdf,1963.07.15,1963.07.15,2475,, +1963.07.11,11-Jul-63,1963,Provoked,USA,Mississippi,Horn Island,"Fishing, on charter boat Silver Dollar","James Ronald Mason, deckhand",M,24,"Cuts on right hand, PROVOKED INCIDENT",N,,1.2 m [4'] shark,"Gulfport Herald, 7/12/1963; SAF Case #1218",1963.07.11-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.11-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.11-Mason.pdf,1963.07.11,1963.07.11,2474,, +1963.07.10.R,Reported 10-Jul-1963,1963,Sea Disaster,JAMAICA,,,63' fishing boat Sno' Bay foundered,40 people were onboard,,,No survivors & a body sighted could not be recovered because of sharks,Y,,,"The Blade (Toledo, OH), 7/10/1963",1963.07.10.R-Sno'Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.10.R-Sno'Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.10.R-Sno'Boy.pdf,1963.07.10.R,1963.07.10.R,2473,, +1963.07.00,Jul-63,1963,Unprovoked,PANAMA,San Blas coast,"4 miles from Tuwala, near Mulatuppu","Seining for bait, standing in chest-deep water",an Indian male,M,,"FATAL, foot nearly severed ",Y,,,H. Loftin,1963.07.00-Tuwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.00-Tuwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.00-Tuwala.pdf,1963.07.00,1963.07.00,2472,, +1963.06.01.b,01-Jun-63,1963,Unprovoked,GREECE,Thessaly,near Trikerion Island,Swimming,Helga Pogl,F,42,FATAL,Y,16h30,"White shark, 3 m ",A. De Maddalena,1963.06.01.b-Pogl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.b-Pogl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.b-Pogl.pdf,1963.06.01.b,1963.06.01.b,2471,, +1963.06.01.a,01-Jun-63,1963,Provoked,PAPUA NEW GUINEA,Central Province,Near Fisherman's Island,Fishing,Au Kila (male),M,30,"Hooked shark bit his nose, arm and leg PROVOKED INCIDENT",N,Morning,1.8 m [6'] shark,"Pacific Post (Port Moresby), 6/4/1963",1963.06.01.a-Au_Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.a-Au_Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.a-Au_Kila.pdf,1963.06.01.a,1963.06.01.a,2470,, +1963.05.18,18-May-63,1963,Invalid,USA,California,San Mateo County,Swimming,Gregory Moffatt,M,,3 lacerations below right knee,N,,Shark involvement not confirmed,"San Mateo Times, 5/22/1963",1963.05.18-Moffatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.18-Moffatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.18-Moffatt.pdf,1963.05.18,1963.05.18,2469,, +1963.05.14,14-May-63,1963,Sea Disaster,PHILIPPINES,Luzon Island,100 miles southeast of Manila,"Boat, with 42 passengers onboard, capsized in rough seas",Most were women & children,,,"Of the 42 people on board, 5 died of exposure, others drowned or were taken by sharks, and survivors were rescued after spending 3 days in the water.",Y,,,"Advertiser (Adelaide), 5/21/1963 ",1963.05.14-PhilippineBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.14-PhilippineBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.14-PhilippineBoat.pdf,1963.05.14,1963.05.14,2468,, +1963.04.22,22-Apr-63,1963,Provoked,AUSTRALIA,New South Wales,Clarence Head,Fishing,Jack Sonter,M,,Foot lacerated by netted shark PROVOKED INCIDENT,N,,Grey nurse shark,H.D. Baldridge (1994) SAF Case #1472,1963.04.22-NV-Sonter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.22-NV-Sonter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.22-NV-Sonter.pdf,1963.04.22,1963.04.22,2467,, +1963.04.20,20-Apr-63,1963,Unprovoked,USA,US Virgin Islands,"St. Thomas, Magens Bay",Swimming,Naval Lt. (jg) John Gibson,M,25,"FATAL, hand severed, shoulder, hip, foot, thigh bitten & femoral artery severed ",Y,13h50,"Hand found in gut of 2.9 m to 3.3 m [9'7"" to 10'11""] Galapagos shark, C. galapagensis","G.W. Kirby, Jr.; NY Times, 1/22/1963",1963.04.20-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.20-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.20-Gibson.pdf,1963.04.20,1963.04.20,2466,, +1963.04.17,17-Apr-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Swimming,Errol Fourie,M,15,Buttock bitten,N,12h45,,"D. Davies, p.118-119; M. Levine, GSAF",1963.04.17-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.17-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.17-Fourie.pdf,1963.04.17,1963.04.17,2465,, +1963.04.13,13-Apr-63,1963,Unprovoked,AUSTRALIA,Western Australia,Yallingup,"Surfing on ""chest board"" (boogie board?)",Brian Audas,M,25,Arm bitten,N,,1.8 m to 2.4 m [6' to 8'] shark,"G.P. Whitley; NSW newspapers of 4/14&15/1963; H.D. Baldridge, p. 142",1963.04.13-Audas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.13-Audas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.13-Audas.pdf,1963.04.13,1963.04.13,2464,, +1963.04.12,12-Apr-63,1963,Unprovoked,USA,Hawaii,"Awili, South Kona, Hawai'i",Surfing ,Aiona Aka,M,15,Left foot & leg bitten,N,14h00,3.7 to 4.5 m [12' to 15'] shark seen in vicinity,"L. Taylor (1993), pp.102-103",1963.04.12-Aka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.12-Aka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.12-Aka.pdf,1963.04.12,1963.04.12,2463,, +1963.04.08,08-Apr-63,1963,Invalid,USA,Hawaii,"Hapuna Beach, Hawai'i",Washed into sea while picking opihi,Roy C. Kametani,M,,"May have drowned prior to shark involvement, partial remains recovered",Y,,,"J. Borg, p.73; L. Taylor (1993), pp.102-103",1963.04.08-Kametani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.08-Kametani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.08-Kametani.pdf,1963.04.08,1963.04.08,2462,, +1963.03.30,30-Mar-63,1963,Sea Disaster,SOLOMON ISLANDS,Bougainville (North Solomons),,The 500-ton coastal trader Polurrian foundered ,"Daniel Viva, missionary",M,,FATAL,Y,Night,,"Sydney Morning Herald, 4/6/1963",1963.03.30-Viva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.03.30-Viva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.03.30-Viva.pdf,1963.03.30,1963.03.30,2461,, +1963.02.27,27-Feb-63,1963,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,Namatanai,Swimming,Joseph To Toba,M,,Right shoulder bitten,N,11h00,,"Times-Courier (Lae), 3/6/1963",1963.02.27-Totoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.27-Totoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.27-Totoba.pdf,1963.02.27,1963.02.27,2460,, +1963.02.24,24-Feb-63,1963,Unprovoked,AUSTRALIA,New South Wales,Wombarra Beach near Austinmeer,Spearfishing,Charles Dunn,M,18,Left leg lacerated,N,Afternoon,"Bronze whaler shark, 3 m [10'] ","R. Funnell in Australian Skindiver Magazine, June/July 1963, p.8; J. Green, p.35",1963.02.24-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.24-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.24-Dunn.pdf,1963.02.24,1963.02.24,2459,, +1963.02.08,08-Feb-63,1963,Unprovoked,FIJI,Lomaiviti Island Group,"Taibaisa Passage, Gau Island",Spearfishing,Jone Waiteatei,M,28,Left arm bitten,N,10h00,"White shark, 2.1 m [7'] ","S. Brown, P. Helfrich",1963.02.08-Waiteatei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.08-Waiteatei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.08-Waiteatei.pdf,1963.02.08,1963.02.08,2458,, +1963.02.06,06-Feb-63,1963,Unprovoked,MAURITIUS,Rodrigues,,,Iren Rose,M,24,Laceration to right forearm,N,,,"L'Express, 5/2/2007",1963.02.06-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.06-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.06-Rose.pdf,1963.02.06,1963.02.06,2457,, +1963.02.04,04-Feb-63,1963,Invalid,USA,Florida,Off Key West,"S.S. Marine Sulphur Queen, laden with molten sulphur was bound from Beaumont, Texas for Norfolk, VA, when she disappeared with 39 on board",2 males,M,,Shark involvement unconfirmed. Two shark-bitten lifejackets were recovered leading to speculation that sharks took at least 2 of the 39 missing crewmen,Y,,,"NY Journal of Commerce, 3/29/1963;Wikipedia ",1963.02.04-MarineSulphurQueen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.04-MarineSulphurQueen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.04-MarineSulphurQueen.pdf,1963.02.04,1963.02.04,2456,, +1963.01.30,30-Jan-63,1963,Unprovoked,FIJI,,,Freediving,Savenaca Kuruvakarua,M,41,Hand & arm severely lacerated,N,,,"H.D. Baldridge, SAF Case #1477",1963.01.30-NV-Kuruvakaruai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.30-NV-Kuruvakaruai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.30-NV-Kuruvakaruai.pdf,1963.01.30,1963.01.30,2455,, +1963.01.28,28-Jan-63,1963,Unprovoked,AUSTRALIA,New South Wales,"Sugarloaf Bay, Middle Harbour, Sydney",Wading,Marcia Hathaway,F,32,"FATAL, right femoral artery severed, thigh, calf, buttock & left hand bitten ",Y,13h30,"Tooth fragments of whaler shark were recovered, a bull shark, according to Edwards","Dr. P.R. Coyne; A. Sharpe, pp.7-12; A. MacCormick, pp.15-18; H. Edwards, pp.102 & 108",1963.01.28-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.28-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.28-Hathaway.pdf,1963.01.28,1963.01.28,2454,, +1963.01.26,26-Jan-63,1963,Invalid,AUSTRALIA,New South Wales,Evans Head,Swimming,Shaun Wilmot,M,25,"9' shark in area when he disappeared, body not recovered",Y,16h30,,"Sydney Morning Herald, 1/29/1963 ",1963.01.26-Wilmot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.26-Wilmot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.26-Wilmot.pdf,1963.01.26,1963.01.26,2453,, +1963.01.22,22-Jan-63,1963,Boat,SOUTH AFRICA,Western Cape Province,False Bay,Fishing ,boat,,,"No injury to occupant, shark leapt inside boat",N,,193-lb shark,"Scarborough Evening News (Yorks, England), 1/22/1963 ",1963.01.22.R-FalseBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.22.R-FalseBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.22.R-FalseBayBoat.pdf,1963.01.22,1963.01.22,2452,, +1963.01.14,14-Jan-63,1963,Provoked,NEW ZEALAND,North Island,"Petone Beach, Wellington",Fishing,Ian Alexander,,14,Minor lacerations to hand and arm after he seized the shark's tail PROVOKED INCIDENT,N,Afternoon,"Grey nurse shark, 1.8 m [6'] ","R.D. Weeks, GSAF; Otago Daily Times, 1/15/1963, p.1",1963.01.14-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.14-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.14-Alexander.pdf,1963.01.14,1963.01.14,2451,, +1963.01.12,12-Jan-63,1963,Provoked,SOUTH AFRICA,Eastern Cape Province,Humewood,Fishing,,M,,Foot bitten by shark hooked & taken on boat PROVOKED INCIDENT,N,,<1.5 m shark,GSAF,1963.01.12-Mankowitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.12-Mankowitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.12-Mankowitz.pdf,1963.01.12,1963.01.12,2450,, +1963.01.11,11-Jan-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Peace Cottage, Umdhloti","Free diving, hunting crayfish",Barry E. Blackmore,M,27,Lacerations & punctures on left forearm,N,12h15,1 m shark,"D. Davies, D'Aubrey; B. Blackmore; M. Levine, GSAF",1963.01.11-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.11-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.11-Blackmore.pdf,1963.01.11,1963.01.11,2449,, +1963.01.06,06-Jan-63,1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Selection Reef, Umdhloti",Spearfishing,Clive Passmore,M,24,Lacerations to right arm,N,16h00,"Zambesi shark, 2 m [6'9""] ","D. Davies, p.117-118; C. Passmore, M. Levine, GSAF",1963.01.06-Passmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.06-Passmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.06-Passmore.pdf,1963.01.06,1963.01.06,2448,, +1963.01.04,04-Jan-63,1963,Provoked,AUSTRALIA,South Australia,Off Franklin Island between Streaky Bay & Ceduna,Shark fishing,"boat, occupants: Alf Dean, Jack Hood & Otto Bells",,,No injury to occupants; hooked shark slammed into side of boat PROVOKED INCIDENT,N,,"White shark, 16', 2,312-lb ",SAF Case #1184,1963.01.04-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.04-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.04-AlfDean.pdf,1963.01.04,1963.01.04,2447,, +1963.01.00,Jan-63,1963,Boat,MOZAMBIQUE,,"Limpopo River, 547 km from the sea",,"Canoe, occupant: Jopie Averes",,,"No injury to occupant. Shark tore chunk from canoe, then bumped 2 other canoes",N,,Zambesi shark,"D. Davies, p.185; GSAF",1963.01.00-JopieAveres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.00-JopieAveres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.00-JopieAveres.pdf,1963.01.00,1963.01.00,2446,, +1963.00.00.b,Early 1963,1963,Unprovoked,FIJI,Vita Levu,Korolevu (South coast between Nadi & Suva),,,,,No details,UNKNOWN,,,"S. Brown, P. Helfrich",1963.00.00.b-NV-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.b-NV-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.b-NV-Fiji.pdf,1963.00.00.b,1963.00.00.b,2445,, +1963.00.00.a,1963,1963,Unprovoked,SEYCHELLES,,,Fishing for turtles,male,M,,Fatal,Y,,,V.C. Harvey-Grain,1963.00.00.a-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.a-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.a-Seychelles.pdf,1963.00.00.a,1963.00.00.a,2444,, +1962.12.30,30-Dec-62,1962,Provoked,SOUTH AFRICA,KwaZulu-Natal,Shark tank at Oceanographic Research Institute,Scuba diving,"A. B. ""Lofty"" Roets",M,,Captive shark bit air hose & minor lacerations on diver's cheek PROVOKED INCIDENT,N,10h30,"Dusky shark, 1 m ",D. Davies,1962.12.30-Roets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.30-Roets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.30-Roets.pdf,1962.12.30,1962.12.30,2443,, +1962.12.09,09-Dec-62,1962,Unprovoked,AUSTRALIA,South Australia,Carrickalinga Head,Spearfishing,Geoffrey Martin Corner,M,16,"FATAL, right leg bitten thigh to calf ",Y,14h30,"White shark, 4.3 m [14'] (or bronze whaler)","H. Edwards, p.63; H.D. Baldridge, p.197; A. MacCormick, pp.91-93; A. Sharpe, p.124; J. West",1962.12.09-Corner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.09-Corner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.09-Corner.pdf,1962.12.09,1962.12.09,2442,, +1962.12.00,Dec-62,1962,Boat,SOUTH AFRICA,Western Cape Province,Swartklip,Fishing,"boat Swift, occupants: Dolly Samuels & 8 other men",,,"No injury to occupants, shark jumped onboard, knocking 2 anglers onto the deck",N,,"2 m [6'9""], 87.5-kg [193-lb] shark",T. Wallet; GSAF,1962.12.00-Swift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.00-Swift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.00-Swift.pdf,1962.12.00,1962.12.00,2441,, +1962.11.29,29-Nov-62,1962,Unprovoked,AUSTRALIA,New South Wales,Sydney,"Spearfishing, Scuba diving",B. May,M,26,"No injury, shark bit spear & dragged diver 90'",N,,3 m [10'] shark,"H.D. Baldridge, p.183; SAF #1130",1962.11.29-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.29-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.29-May.pdf,1962.11.29,1962.11.29,2440,, +1962.11.25,25-Nov-62,1962,Invalid,AUSTRALIA,Queensland,Townsville,,Hugh Meikel,M,,"Skeletonized, except for head & feet. Possible drowning / scavenging",Y,,,"H.D. Baldridge, p.162; SAF Case #1124",1962.11.25-Meikel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.25-Meikel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.25-Meikel.pdf,1962.11.25,1962.11.25,2439,, +1962.11.11,11-Nov-62,1962,Unprovoked,USA,California,Farallon Islands,Spearfishing / Scuba diving (at surface),Leroy French,M,24,"Arm, hand, buttock, leg and thigh bitten",N,12h45 / 13h45,"White shark, 4.3 m to 4.9m [14' to 16']","D. Miller & R. Collier; R. Collier, pp.35-36; H.D. Baldridge, pp.73 & 78 ",1962.11.11-LeroyFrench_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.11-LeroyFrench_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.11-LeroyFrench_Collier.pdf,1962.11.11,1962.11.11,2438,, +1962.11.10,10-Nov-62,1962,Boat,AUSTRALIA,New South Wales,Off Kisma,Fishing,"wooden boat, occupants: Jack Bullman & Keith Campbell",,,No injury to occupants. Shark rammed boat as they were pulling in a flathead,N,,3 m [10'] blue whaler,"Sydney Sunday Mirror, 11/11/1962 ",1962.11.10-Bullman-Campbell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.10-Bullman-Campbell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.10-Bullman-Campbell-boat.pdf,1962.11.10,1962.11.10,2437,, +1962.11.00,Nov-62,1962,Sea Disaster,MID ATLANTIC OCEAN,,Off Bermuda,Abandoning burning ship Captain George in raging seas,"Martin Fisher, radio operator",M,,"No injury, shark bit his boot",N,06h00,,Press clippings,1962.11.00-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.00-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.00-Fisher.pdf,1962.11.00,1962.11.00,2436,, +1962.10.28,28-Oct-62,1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Paradise Reef,Spearfishing,Noel Holliday,M,30,Arm lacerated (minor injury),N,15h00,,"D. Davies; M. Levine, GSAF",1962.10.28-Holliday.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.28-Holliday.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.28-Holliday.pdf,1962.10.28,1962.10.28,2435,, +1962.10.25,25-Oct-62,1962,Unprovoked,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Wading,"Nicolas Jimenez Nunez, a Catholic priest",M,32,"FATAL, both legs bitten ",Y,08h30,2.7 m [9'] shark,C.G. Robles,1962.10.25-Nunez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.25-Nunez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.25-Nunez.pdf,1962.10.25,1962.10.25,2434,, +1962.10.15,15-Oct-62,1962,Unprovoked,ADMIRALTY ISLANDS,Manus Island,Sisi (west coast of island),,Pasingan,M,26,Facial lacerations,N,,,SAF Case #1116,1962.10.15-Pasigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.15-Pasigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.15-Pasigan.pdf,1962.10.15,1962.10.15,2433,, +1962.10.14,14-Oct-62,1962,Boat,AUSTRALIA,South Australia,Port Phillip Bay,Adrift after wave swamped engine,"speedboat, occupant: Michael Wilson",M,,"No injury to occupant, shark ""nibbled"" at boat",N,,Grey nurse shark,"Strand (London), 10/15/1962",1962.10.14-Wilson-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.14-Wilson-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.14-Wilson-boat.pdf,1962.10.14,1962.10.14,2432,, +1962.10.06,06-Oct-62,1962,Invalid,USA,California,2 miles off Santa Catalina Island,"Overcome by CO fumes, fell overboard from 36' fishing cruiser & prop slashed arm",Marian Leaf,F,43,Drowned due to CO2 poisoning - Post Mortem Scavaging,N,,Blue shark bites present ,"Long Beach Independent, 10/9/1962; H.D. Baldridge, p147; SAF Case #1080",1962.10.06-Leaf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.06-Leaf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.06-Leaf.pdf,1962.10.06,1962.10.06,2431,, +1962.10.00,Oct-62,1962,Unprovoked,PANAMA,Pinas Bay,,Sitting in shallows,"infant, male ",M,1,"FATAL, body not recovered",Y,,,J. Hardie; D. de Sylva,1962.10.00-babyboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.00-babyboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.00-babyboy.pdf,1962.10.00,1962.10.00,2430,, +1962.09.30,30-Sep-62,1962,Unprovoked,BRITISH WEST INDIES,Grand Turk Island,Long Cay,Spearfishing,Wesley Vickrey,M,24,Left thigh & hand & speargun bitten,N,14h30," Blacktip shark, C. maculipinnis. 1.9 m to 2.1 m [6.5' to 7'] ","H.D. Baldridge, p.197",1962.09.30-Vickrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.30-Vickrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.30-Vickrey.pdf,1962.09.30,1962.09.30,2429,, +1962.09.22,22-Sep-62,1962,Unprovoked,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,Nestor Valenzuela,M,20,"Left arm severely bitten, surgically amputated",N,15h00,,C.G. Robles,1962.09.22-Valenzuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.22-Valenzuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.22-Valenzuela.pdf,1962.09.22,1962.09.22,2428,, +1962.09.13,13-Sep-62,1962,Unprovoked,SOUTH ATLANTIC OCEAN,Off coast of West Africa,Off the passenger liner Stirling Castle,"When a deckhand jumped overboard, McIver dived after him with a rescue line.",John MacIver,M,29,"FATAL, he died within minutes of being hauled back onboard the Stirling Castle",Y,,,"Daily Express (London), et. al, 9/22/1962 ",1962.09.13-MacIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.13-MacIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.13-MacIver.pdf,1962.09.13,1962.09.13,2427,, +1962.09.02,02-Sep-62,1962,Unprovoked,ITALY,Tyrrhenian Sea,"Circeo, Secca del Quadro",Spearfishing with Scuba gear,Maurizio Sarra,M,28,"FATAL, multiple injuries to both legs ",Y,10h20,White shark,"A. De Maddalena & C. Moore, GSAF; Carletti (1973), Gianturco (1978), Marini (1989), Gilioli (1989), Giudici & Fino (1989); E. Tortonese; H.D. Baldridge, p.183. Note: A.Resciniti, p.104 lists date as 22-Sep-1962",1962.09.02-Sarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.02-Sarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.02-Sarra.pdf,1962.09.02,1962.09.02,2426,, +1962.08.31.R,Reported 31-Aug-1962,1962,Provoked,ISRAEL,Sharon,2 km north of Apollonia,Fishing,fisherman,M,,"Details unknown, possibly a PROVOKED INCIDENT",UNKNOWN,,2.5 m [8.25'] shark,"C. Moore, GSAF",1962.08.31.R-Israel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.31.R-Israel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.31.R-Israel.pdf,1962.08.31.R,1962.08.31.R,2425,, +"1962,08.30.b",30-Aug-62,1962,Boat,TURKEY,Antalya Province,Ucagiz,,Occupant: Hasan Olta,M,,No injury ,N,,,"C.Moore, GSAF",1962.08.30.b-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.b-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.b-pdf,1962.08.30.b,"1962,08.30.b",2424,, +1962.08.30.a,30-Aug-62,1962,Provoked,PAPUA NEW GUINEA,Northern District,Kufulu Point,Fishing,Enigo Setiro,M,49,Posterior lower left leg lacerated by netted shark PROVOKED INCIDENT,N,Midday,"""A long thin brown-colored shark""",SAF Case #1192,1962.08.30.a-Setiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.a-Setiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.a-Setiro.pdf,1962.08.30.a,1962.08.30.a,2423,, +1962.08.29,29-Aug-62,1962,Provoked,USA,California,"Solana Beach, San Diego County",Diving for abalone,Knox Harris,M,39,"Struck shark with abalone bar to scare it away from abalone, but shark bit his shoulder PROVOKED INCIDENT",N,08h30,"Horn shar,k Heterodontus francisci, 1.2 m [4'] ","SAF Case #1059; D. Miller & R. Collier; R. Collier, p. xxv; H.D. Baldridge, p.164 ",1962.08.29-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.29-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.29-Harris.pdf,1962.08.29,1962.08.29,2422,, +1962.08.26,26-Aug-62,1962,Boat,USA,Florida,6 miles north of Palm Beach,,"21' boat sank. Occupants: Max Butcher, George Hardy & Peter Thorne",,,"No injury to occupants, sharks tore Max Butcher's life jacket & pants",N,,,"New York Post, 8/27/1962; SAF Case #1061",1962.08.26 - Thorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.26 - Thorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.26 - Thorne.pdf,1962.08.26,1962.08.26,2421,, +1962.08.23,23-Aug-62,1962,Boat,SOUTH AFRICA,Western Cape Province,Robbesteen,Fishing,"4 m dinghy, occupants: Cecil Holmes, Chris Augustyn & Allen Varley ",,,"No injury to occupants, shark hit boat, lifting it from the water, bit & dented propeller",N,12h00,4.3 m [14'] shark,GSAF,1962.08.23-HolmesBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.23-HolmesBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.23-HolmesBoat.pdf,1962.08.23,1962.08.23,2420,, +1962.08.19,19-Aug-62,1962,Unprovoked,USA,Texas,"Off Andy Bowie Park, Padre Island, near Port Isabel",Surf fishing in waist-deep water,Hans Fix,M,40,"FATAL, lower right leg bitten",Y,15h30,Unknown,"J. A. Hockaday, M.D.",1962.08.19-Fix.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.19-Fix.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.19-Fix.pdf,1962.08.19,1962.08.19,2419,, +1962.08.12,12-Aug-62,1962,Unprovoked,USA,New Jersey,"Manasquan, Ocean County",Standing,Michael Roman,M,24,Left thigh & hand bitten,N,14h00 - 15h00,1.8 m [6'] shark," L. Schultz & M. Malin, p.514, et.al.",1962.08.12 - Roman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.12 - Roman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.12 - Roman.pdf,1962.08.12,1962.08.12,2418,, +1962.08.01,01-Aug-62,1962,Unprovoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Pekinberui Village, Tabar Island",Spearfishing,"Tarara, a male",M,(adult),"FATAL, right thigh severely bitten, right ankle lacerated ",Y,17h00,,P.M. Moodie,1962.08.01-Tarara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.01-Tarara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.01-Tarara.pdf,1962.08.01,1962.08.01,2417,, +1962.08.00.b,Late Aug-1962,1962,Unprovoked,ITALY,Tyrrhenian Sea,"Circeo, Secca del Faro",Diving,Dante Matacchione,M,,No injury,N,,White shark,"A. De Maddalena; Carletti (1973), Giudici & Fino (1989)",1962.08.00.b-Mattacchione.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.b-Mattacchione.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.b-Mattacchione.pdf,1962.08.00.b,1962.08.00.b,2416,, +1962.08.00.a,Aug-62,1962,Unprovoked,SENEGAL,Cap Vert Peninsula,,Beach seine netting,M.G.,M,23,Ankle bitten,N,,3.5 m shark,S. Trape,1962.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.a-Senegal.pdf,1962.08.00.a,1962.08.00.a,2415,, +1962.07.28,28-Jul-62,1962,Unprovoked,USA,South Carolina,"Off Hilton Head, Beaufort County ",Standing,Robert Stein,M,21,Lacerations on left foot & hand,N,,1.8 m to 2.4 m [6' to 8'] shark,R. Stein,1962.07.28-Stein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.28-Stein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.28-Stein.pdf,1962.07.28,1962.07.28,2414,, +1962.07.20,20-Jul-62,1962,Provoked,MADAGASCAR,,"Onboard tuna boat, M.V. Toscui Maru",Finning the shark,Takemoto Masnori,M,20,Right calf lacerated by boated shark PROVOKED INCIDENT,N,Morning,"2 m [6'9""] shark",J. D'Aubrey,1962.07.20-Masnori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.20-Masnori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.20-Masnori.pdf,1962.07.20,1962.07.20,2413,, +1962.07.19,19-Jul-62,1962,Provoked,USA,California,30 miles south of San Clemente Island,Fishing for albacore,Esteban L. Cervantes,M,19,"2 lacerations on left hand by hooked shark, PROVOKED INCIDENT",N,16h30,Blue shark,"R. Zarkas; San Diego Union, 7/30/1962 ",1962.07.19-Cervantes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.19-Cervantes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.19-Cervantes.pdf,1962.07.19,1962.07.19,2412,, +1962.07.10,10-Jul-62,1962,Unprovoked,USA,Georgia,"St. Simons Island or Jeykll Island, Glynn County",Playing in surf with his child (9),Leonard Harrison Hancock,M,41,"Cuts on fingers, hand & wrist",N,17h00,,L.H. Hancock,1962.07.10-Hancock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.10-Hancock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.10-Hancock.pdf,1962.07.10,1962.07.10,2411,, +1962.07.07,07-Jul-62,1962,Unprovoked,USA,Georgia,"Jekyll Island, Glynn County",Dived from inner-tube,Gary Duncan,M,13,Laceration on hand,N,14h10,,"J. M. Hicks, M.D.; Washington Star, 7/14/1962",1962.07.07-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.07-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.07-Duncan.pdf,1962.07.07,1962.07.07,2410,, +1962.07.03.R,Reported 03-Jul-1962,1962,Invalid,GREECE,Cyclades,Near Mykonos Island,,Boat with tourists onboard,,,No injury,N,,5.5 m [18'] shark,"C. Moore, GSAF",1962.07.03.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.03.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.03.R-Greece.pdf,1962.07.03.R,1962.07.03.R,2409,, +1962.06.25,25-Jun-62,1962,Invalid,USA,Florida,"Fernandina Beach, Nassau County",U.S. Airforce crewman reported missing after bailing out of jet,male,M,,FATAL,Y,,Shark involvement not confirmed,SAF Case #1106,1962.06.25-NV-AirForce-bailout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.25-NV-AirForce-bailout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.25-NV-AirForce-bailout.pdf,1962.06.25,1962.06.25,2408,, +1962.06.21,21-Jun-62,1962,Boat,SOUTH AFRICA,Western Cape Province,"Millers Point, False Bay","On a ""shark hunt""","2.4 m rowboat, occupants: Edgar Brown, Jerry Welz & Cornelius Stakenburg",,,"No injury to occupants, shark charged boat, then 2 more sharks hit boat, oar grabbed, boat finally drifted ashore at 02h00",N,21h00,2.7 m to 3 m [9' to 10'] sharks,"M. Levine, GSAF",1962.06.21-MillersPointBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.21-MillersPointBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.21-MillersPointBoat.pdf,1962.06.21,1962.06.21,2407,, +1962.06.17,17-Jun-62,1962,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Rolled off raft,Barry Bryan Reed,M,11,"8"" laceration on left calf",N,11h50,1.8 m [6'] shark,"D. Reed; Hobart Gazette, 6/28/ 1962 s",1962.06.17-BarryReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.17-BarryReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.17-BarryReed.pdf,1962.06.17,1962.06.17,2406,, +1962.06.11.b,11-Jun-62,1962,Unprovoked,USA,California,San Francisco Bay,Escaping from Alacatraz,Clarence Anglin,M,31,2 toes bitten off ,N,night,,"San Francisco Chronicle, 5/3/1986",1962.06.11.c-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.c-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.c-Anglin.pdf,1962.06.11.b,1962.06.11.b,2405,, +1962.06.11.b,11-Jun-62,1962,Unprovoked,USA,California,San Francisco Bay,Escaping from Alacatraz,John William Anglin ,M,32,"FATAL, but shark involvement uncomfirmed. Death may have been due to drowning.",Y,Night,,"San Francisco Chronicle, 5/3/1986",1962.06.11.b-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.b-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.b-Anglin.pdf,1962.06.11.b,1962.06.11.b,2404,, +1962.06.11.a,11-Jun-62,1962,Unprovoked,USA,California,San Francisco Bay,Escaping from Alacatraz,Frank Lee Morris,M,35,"FATAL, but shark involvement uncomfirmed. Death may have been due to drowning.",Y,Night,,"San Francisco Chronicle, 5/3/1986",1962.06.11.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.a-Morris.pdf,1962.06.11.a,1962.06.11.a,2403,, +1962.06.10.b,10-Jun-62,1962,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Mouth of Suareng River, a mile from Taludig",Washing,"boy from Aitape, West Sepik",M,,"FATAL, chest & leg bitten ",Y,Midday,Possibly a bronze whaler shark,"L. Malcolmson, Fisheries Officer",1962.06.10.b-boy-Aitape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.b-boy-Aitape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.b-boy-Aitape.pdf,1962.06.10.b,1962.06.10.b,2402,, +1962.06.10.a,10-Jun-62,1962,Unprovoked,USA,South Carolina,"Hilton Head, Beaufort County",Standing,Frank Glenn,M,13,Thigh bitten,N,16h00,,"F. Glenn; Dr. H.C. Yeatman; D. E. Gatch, M.D. ",1962.06.10.a-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.a-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.a-Glenn.pdf,1962.06.10.a,1962.06.10.a,2401,, +1962.06.07,07-Jun-62,1962,Boat,AUSTRALIA,Western Australia,Emu Point,Fishing,"10' rowboat, occupant: John Stephensen",,,"No injury to occupant, shark grabbed anchor rope, pulling bow of boat downward & then bit bow of boat",N,07h00,,"West Australian (Perth), 6/8/1962 ",1962.06.07-StephensenBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.07-StephensenBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.07-StephensenBoat.pdf,1962.06.07,1962.06.07,2400,, +1962.06.04,04-Jun-62,1962,Provoked,USA,California,"12' tank at Steinhart Aquarium, San Francisco","Scuba diving, attempting to catch a captive shark","Norval J. ""Tom"" Green",M,55,Right forearm bitten PROVOKED INCIDENT,N,13h30," Sevengill shark, 1.2 m [4'] ","San Francisco Chronicle, 6/5/1962; H.D. Baldridge, p.183",1962.06.04-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.04-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.04-Green.pdf,1962.06.04,1962.06.04,2399,, +1962.06.03,03-Jun-62,1962,Unprovoked,USA,Florida,"Riviera Beach, near Palm Beach Inlet, Palm Beach County",Free diving,Paul Dammann,M,31,Left foot bitten,N,12h00,,"M. Vorenberg; Palm Beach Post, 6/4/1962 ",1962.06.03-Dammann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.03-Dammann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.03-Dammann.pdf,1962.06.03,1962.06.03,2398,, +1962.05.29,29-May-62,1962,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",,boy,M,17,Bitten on leg or ankle,N,,,M. Vorenberg,1962.05.29-Jupiter-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.29-Jupiter-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.29-Jupiter-boy.pdf,1962.05.29,1962.05.29,2397,, +1962.05.12,12-May-62,1962,Sea Disaster,USA,California,"8 miles off Newport Beach, Orange County",25-foot cabin cruiser Happy Jack sank in heavy seas,,,,Bodies of 5 of the 6 men on board were bitten by by sharks. Sharks may have contributed to the death of some of them.,Y,03h45 - 04h00,,"Enquirer & News (Battle Creek, MI), 5/14/1962; L. Schultz & M. Malin, p.562",1962.05.12-HappyJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.12-HappyJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.12-HappyJack.pdf,1962.05.12,1962.05.12,2396,, +1962.05.00.R,May-62,1962,Boat,FIJI,Viti Levu,Near Suva,Fishing,17' fishing boat; occupants 2 men,,,"No injury, sharks rammed boat and bit outboard motor",N,,,"Yorkshire Evening News, 5/5/1962",1962.05.00-Suva-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.00-Suva-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.00-Suva-Fiji.pdf,1962.05.00.R,1962.05.00.R,2395,, +1962.04.20,20-Apr-62,1962,Provoked,AUSTRALIA,Queensland,Nobbys Beach,Fishing,"surf boat, occupants: Ray Sturdy and 4 other fishermen",,,"No injury to occupants, hooked shark cracked hull PROVOKED INCIDENT",N,,"Bronze whaler shark, 3.7 m [12'] ","Sydney Daily Telegraph, 4/21/1962 ",1962.04.20-Sturdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.20-Sturdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.20-Sturdy.pdf,1962.04.20,1962.04.20,2394,, +1962.04.09,09-Apr-62,1962,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Brian Lawrence Martin,M,16,"Leg bitten, surgically amputated at knee",N,10h30,,"M. Levine, GSAF;P.H. Jacques, M.D.; D. Davies, pp.126-127",1962.04.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.09-Martin.pdf,1962.04.09,1962.04.09,2393,, +1962.04.07,07-Apr-62,1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umhlali,Wading,John Blane,M,13,Left ankle & foot bitten,N,11h30,"Zambesi shark, 1.2 m [4'] ","D. Davies, p.117; D. Blane, M. Levine, GSAF ",1962.04.07-Blane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.07-Blane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.07-Blane.pdf,1962.04.07,1962.04.07,2392,, +1962.04.05,05-Apr-62,1962,Provoked,SOUTH AFRICA,Eastern Cape Province,East London,Fishing,"4.8 m skiboat, occupants: C. Cockroft & 3 men",,,Hooked shark bit boat PROVOKED INCIDENT,N,,4.9 m [16']shark,T. Wallett,1962.04.05-Cockroft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.05-Cockroft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.05-Cockroft.pdf,1962.04.05,1962.04.05,2391,, +1962.03.25.b,25-Mar-62,1962,Provoked,NEW ZEALAND,"Off the Coromandel Peninsula, North Island",Alderman Islands,,W.T. Luxton,M,,Left foot bitten by hooked shark PROVOKED INCIDENT,N,,1.8 m [6'] shark ,"Christchurch Star, 3/26/1962",1962.03.25.b-Luxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.b-Luxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.b-Luxton.pdf,1962.03.25.b,1962.03.25.b,2390,, +1962.03.25.a,25-Mar-62,1962,Boat,AUSTRALIA,New South Wales,Norah Head,Fishing & spearfishing,boat of Dennis Kemp & 4 other occupants,,,No injury to occupants. Shark holed boat & they swam 200 yards to shore,N,,"Bronze whaler shark, 4.6 m [15'] ",Sunday Mirror (Sydney),1962.03.25.a-KempBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.a-KempBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.a-KempBoat.pdf,1962.03.25.a,1962.03.25.a,2389,, +1962.03.24,24-Mar-62,1962,Unprovoked,PAPUA NEW GUINEA,Madang,Matukar village ,Swimming,"Kes, a native boy",M,10,"FATAL, calf bitten, other leg severed below knee",Y,Late afternoon,Possibly a bronze whaler shark,"South Pacific Post (Port Moresby) 3/4/1962; L. Malcolmson, Fisheries Officer ",1962.03.24-Kes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.24-Kes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.24-Kes.pdf,1962.03.24,1962.03.24,2388,, +1962.02.23,23-Feb-62,1962,Unprovoked,PAPUA NEW GUINEA,Central Province,Fishermans Island near Port Moresby,Swimming along a row of nets,Hitola Hekure,M,,Torso lacerated,N,,1.2 m [4'] shark,"South Pacific Post, 2/27/1962; V.M. Coppleson (1962), p.248",1962.02.23-Hekure.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.23-Hekure.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.23-Hekure.pdf,1962.02.23,1962.02.23,2387,, +1962.02.18,18-Feb-62,1962,Provoked,NEW ZEALAND,Southland,Long Beach,Swimming,Fred Mason,M,15,"Mistook shark's tail for kelp & grabbed it, legs abraded by shark's fins PROVOKED INCIDENT",N,,1.8 m [6'] shark,"SAF Case #1118; Southland Daily News 2/20/1962, ",1962.02.18-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.18-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.18-Mason.pdf,1962.02.18,1962.02.18,2386,, +1962.02.15,15-Feb-62,1962,Unprovoked,AUSTRALIA,Queensland,Between Smiths Rock & Moreton Island,Fishing for snappers & cleaning mullet. Put mullet over side of boat to wash it,John Hansen,M,,Middle finger of right hand lacerated,N,A.M.,3.7 m [12'] shark,"Brisbane Courier Mail, 2/16/1962",1962.02.15-Hansen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.15-Hansen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.15-Hansen.pdf,1962.02.15,1962.02.15,2385,, +1962.02.07,07-Feb-62,1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Swimming,Clifford Hoogvorst,M,22,"FATAL, calf bitten twice",Y,09h00,,"M. Levine, J. D'Aubrey, GSAF; D. Davies, pp.114-116",1962.02.07-Hoogvorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.07-Hoogvorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.07-Hoogvorst.pdf,1962.02.07,1962.02.07,2384,, +1962.02.05,05-Feb-62,1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Treading water,Reece Nielsen,M,13,"FATAL, tissue removed from thigh, femoral artery severed ",Y,16h20,"White shark, 3 m ","M. Nielsen, M. Levine, GSAF; D. Davies, p.115",1962.02.05-Nielsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.05-Nielsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.05-Nielsen.pdf,1962.02.05,1962.02.05,2383,, +1962.02.04,04-Feb-62,1962,Unprovoked,AUSTRALIA,Queensland,Greenmount Beach,Swimming,Lance Maloney,M,35,Shin bitten,N,14h30,60 cm shark ,"Courier Mail (Brisbane), 2/5/1962",1962.02.04-Maloney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.04-Maloney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.04-Maloney.pdf,1962.02.04,1962.02.04,2382,, +1962.02.02,02-Feb-62,1962,Boat,NEW ZEALAND,North Island,South of New Plymouth,Fishing,"17' fishing launch, occupants: A. Burkitt & C. Brooke",,,,UNKNOWN,,,SAF Case #1125,1962.02.02-NV-Burkitt-Brooke-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.02-NV-Burkitt-Brooke-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.02-NV-Burkitt-Brooke-launch.pdf,1962.02.02,1962.02.02,2381,, +1962.02.00,Feb-62,1962,Unprovoked,SOLOMON ISLANDS,Guadalcanal Province,"North Coast, Guadalcanal Island",Swimming outside fishing net,"Mr. Loloi, a constable",M,,"FATAL, shoulder & thigh bitten ",Y,,,"Auckland Herald, 2/26/1962",1962.02.00-Loloi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.00-Loloi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.00-Loloi.pdf,1962.02.00,1962.02.00,2380,, +1962.01.27,27-Jan-62,1962,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Splashing ,Norman McEwan,M,18,"Left hand injured: gash on back of hand, toothmarks on palm",N,16h00,1.5 m [5'] shark,"R. Weeks, GSAF; V.M. Coppleson (1962), p.247; H. D. Baldridge, p.16",1962.01.27-McEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.27-McEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.27-McEwan.pdf,1962.01.27,1962.01.27,2379,, +1962.01.26,26-Jan-62,1962,Unprovoked,MOZAMBIQUE,Gaza,Praia Sepulveda,,Domingos Zefanias Cumbe,M,16,,UNKNOWN,,,D. Davies,1962.01.26-Cumbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.26-Cumbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.26-Cumbe.pdf,1962.01.26,1962.01.26,2378,, +1962.01.21,21-Jan-62,1962,Provoked,AUSTRALIA,New South Wales,Cronulla,Spearfishing,Robert Smith,M,19,Suffered from shock & immersion after being dragged underwater by speared shark PROVOKED INCIDENT,N,,"Bronze whaler shark, 3m [10'] ","Daily Mirror (Sydney) & Sydney Morning Herald, 1/22/1962 ",1962.01.21-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.21-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.21-Smith.pdf,1962.01.21,1962.01.21,2377,, +1962.01.18,18-Jan-62,1962,Invalid,SOUTH AFRICA,KwaZulu-Natal,Margate,"Fishing, slipped on rocks & fell into sea",Jacobus Vermaak,M,40,Possible drowning / post mortem scavenging,Y,13h10,Zambesi shark,"D. Davies, p.114; A. Cowan, M. Levine, GSAF",1962.01.18-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.18-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.18-Vermaak.pdf,1962.01.18,1962.01.18,2376,, +1962.01.16,16-Jan-62,1962,Provoked,NEW ZEALAND,South Island,"Pigeon Bay, Canterbury",Fishing,Mr. Reynish & Mr. Meikle,,,"No injury to occupants, hooked shark attacked boat PROVOKED INCIDENT",N,,"Said to involve a 4.9 m [16'] ""red shark""","The Sun (Australia), 1/17/1962",1962.01.16-RedShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.16-RedShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.16-RedShark.pdf,1962.01.16,1962.01.16,2375,, +1962.01.15,15-Jan-62,1962,Unprovoked,NEW ZEALAND,North Island,"Slipper Island, Coromandel Peninsula",Spearfishing,John Till,M,44,Shark struck him on shoulder injuring skin under suit,N,12h00,,"V.M. Coppleson (1962), p.254; H.D. Baldridge, p.1432",1962.01.15-Till.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.15-Till.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.15-Till.pdf,1962.01.15,1962.01.15,2374,, +1962.01.14.c,14-Jan-62,1962,Unprovoked,USA,California,Farallon Islands,Spearfishing / Scuba diving (at surface),"Floyd Pair, Jr.",M,29,Buttock bitten & major leg wound,N,10h30,"White shark, 4 m [13'] ","D. Miller & R. Collier; R. Collier, pp.34-35; H.D. Baldridge, p.74; Clark, pp.98-99",1962.01.14.c-Pair_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.c-Pair_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.c-Pair_Collier.pdf,1962.01.14.c,1962.01.14.c,2373,, +1962.01.14.b,14-Jan-62,1962,Provoked,AUSTRALIA,New South Wales,"Long Reef, North Manly",Spearfishing,boat of Wally Gibbons,,,Speared shark bit gunwale of boat as it was being hauled onboard PROVOKED INCIDENT,N,," Grey nurse shark, 3 m [10'] ","Sydney Daily Telegraph, 1/15/1962 ",1962.01.14.b-Gibbons-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.b-Gibbons-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.b-Gibbons-boat.pdf,1962.01.14.b,1962.01.14.b,2372,, +1962.01.14.a,14-Jan-62,1962,Unprovoked,AUSTRALIA,New South Wales,"Lennox Head, Ballina",Surfing,Gary Raymond Hiscocks,M,19,Dorsum of foot lacerated & toe severed,N,13h30,"2.1 m [7'] shark, a shark's serrated tooth recovered from toe","The Star (Johannesburg), Daily Telegraph (Sydney), Sydney Morning Herald, The Examiner (Launceston) 1/15/1962; V.M. Coppleson (1962), p.246; R.D. Weeks, GSAF",1962.01.14.a-Hiscocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.a-Hiscocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.a-Hiscocks.pdf,1962.01.14.a,1962.01.14.a,2371,, +1962.01.11.c,11-Jan-62,1962,Boat,AUSTRALIA,South Australia,Marino,Fishing,12' boat of Alf Laundy,,,"No injury to occupant, shark bit propeller & lifted boat several feet",N,,Said to involve a Grey nurse shark 3.7 m [12'] ,"Adelaide News, 1/12/1962",1962.01.11.c-Laundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.c-Laundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.c-Laundy.pdf,1962.01.11.c,1962.01.11.c,2370,, +1962.01.11.b,11-Jan-62,1962,Unprovoked,PAPUA NEW GUINEA,"10S, 142E",Jukuataia Village,Spearfishing,Yagirua Agiramon,M,24,Left leg & buttocks bitten,N,12h00,White shark,SAF Case #1193,1962.01.11.b-Agiramon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.b-Agiramon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.b-Agiramon.pdf,1962.01.11.b,1962.01.11.b,2369,, +1962.01.11.a,11-Jan-62,1962,Unprovoked,NEW ZEALAND,South Island,"Fairdown Beach, 5 miles north of Westport",Surf fishing,Mrs. Beryl Grant,F,54,Right foot lacerated ,N,18h00,"36"" shark","R. D. Weeks, GSAF; Dr. C. Foote; The Evening Post, 1/12/1962 ",1962.01.11.a-BerylGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.a-BerylGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.a-BerylGrant.pdf,1962.01.11.a,1962.01.11.a,2368,, +1962.01.10,10-Jan-62,1962,Boat,AUSTRALIA,South Australia,Ceduna,Fishing for sharks,25-foot cutter,,,No injury to fisherman Alf Dean & other occupants; shark bit stern of boat,N,,White shark,"Adelaide News, 1/10/1962",1962.01.10.R-AlfDean-cutter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.10.R-AlfDean-cutter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.10.R-AlfDean-cutter.pdf,1962.01.10,1962.01.10,2367,, +1962.01.08,08-Jan-62,1962,Invalid,AUSTRALIA,New South Wales,Lake Illawarra,Swimming,William McLeod,M,25,"Remains recovered from shark, but shark involvement prior to death unconfirmed",Y,,10' whale,"Canberra Times, 1/11/1962",1962.01.08-McLeod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.08-McLeod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.08-McLeod.pdf,1962.01.08,1962.01.08,2366,, +1962.01.07.b,07-Jan-62,1962,Provoked,AUSTRALIA,Queensland,Dicky Beach,Rowing,Lifesavers' surf patrol boat,,,"No injury to occupants, shark bit 3"" piece from oar after they accidentally struck the shark PROVOKED INCIDENT",N,,,"Sydney Daily Telegraph, 1/8/1962 ",1962.01.07.b-DickyBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.b-DickyBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.b-DickyBeach.pdf,1962.01.07.b,1962.01.07.b,2365,, +1962.01.07.a,07-Jan-62,1962,Unprovoked,AUSTRALIA,New South Wales,Sydney,Surfing,Tony Frost,,,"No injury, shark bumped board flipping him into the water",N,,,08/01/1962,1962.01.07.a-Frost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.a-Frost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.a-Frost.pdf,1962.01.07.a,1962.01.07.a,2364,, +1962.01.06,06-Jan-62,1962,Boat,SOUTH AFRICA,Western Cape Province,6 km off Groot Brak River,Fishing,"4.8 m boat Peggy, occupants: John Oktober, L.A. van Zyl and 4 others",,,Shark rammed boat 5 times & holed it,N,,,T. Wallett,1962.01.06-FishingboatPeggy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.06-FishingboatPeggy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.06-FishingboatPeggy.pdf,1962.01.06,1962.01.06,2363,, +1962.01.02,02-Jan-62,1962,Provoked,AUSTRALIA,New South Wales,"Seaspray, near Sale",Fishing,surf patrol boat,,,"No injury to occupants, hooked shark dragged boat 2 miles PROVOKED INCIDENT",N,,2.7 m [9'] shark,"Sydney Daily Telegraph, 1/3/1962 ",1962.01.02-NV-Surf-Patrol-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.02-NV-Surf-Patrol-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.02-NV-Surf-Patrol-boat.pdf,1962.01.02,1962.01.02,2362,, +1962.01.01,01-Jan-62,1962,Unprovoked,MARSHALL ISLANDS,Kwajalein Atoll,Roi-namur Island,Fishing with hand net in 2' of water,Stanley Caberto,M,57,"2.5"" laceration on right hand",N,13h00,1.8 m [6'] shark,"L. R. Fletcher, M.D.",1962.01.01-Caberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.01-Caberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.01-Caberto.pdf,1962.01.01,1962.01.01,2361,, +1962.00.00.c,1962,1962,Unprovoked,SPAIN,Catalonia,Aigua Blava,Dangling feet in the water,female,F,,Feet severed,N,,,"C. Moore, GSAF",1962.00.00.c-AiguaBlava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.c-AiguaBlava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.c-AiguaBlava.pdf,1962.00.00.c,1962.00.00.c,2360,, +1962.00.00.b,Jan-Jun-1962,1962,Unprovoked,INDONESIA,East Flores,Waewerang,,9 fishermen & pregnant woman,,,FATAL,Y,,,"Djakarta Daily Mail, 7/20/1962",1962.00.00.b-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.b-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.b-Indonesia.pdf,1962.00.00.b,1962.00.00.b,2359,, +1962.00.00.a,Ca. 1962,1962,Unprovoked,AUSTRALIA,South Australia,Dangerous Reef,Diving,Dan Argyll,M,,Right leg bitten,N,,,"F. Dennis, p.76",1962.00.00.a-Argyll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.a-Argyll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.a-Argyll.pdf,1962.00.00.a,1962.00.00.a,2358,, +1961.12.28.c,28-Dec-61,1961,Unprovoked,AUSTRALIA,Queensland,"Lambert's Beach, Mackay",Standing,Margaret Hobbs,F,18,"FATAL, right arm severed at shoulder, left hand severed, right thigh bitten & surgically amputated. Died day after the attack",Y,16h15,3 m [10'] shark,"V.M. Coppleson (1962), p.246; A. MacCormick, pp.19-21; A. Sharpe, p.101 ",1961.12.28.c-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.c-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.c-Hobbs.pdf,1961.12.28.c,1961.12.28.c,2357,, +1961.12.28.b,28-Dec-61,1961,Unprovoked,AUSTRALIA,Queensland,"Lamberts Beach, Mackay",Standing,Martyn Steffens,M,24,"Hand bitten, surgically amputated",N,16h15,3 m [10'] shark,"V.M. Coppleson (1962), p.246; A. MacCormick, pp.19-21; A. Sharpe, p.101",1961.12.28.b-Steffens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.b-Steffens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.b-Steffens.pdf,1961.12.28.b,1961.12.28.b,2356,, +1961.12.28.a,28-Dec-61,1961,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umhlanga Rocks,Treading water,Glynn Wessels,M,18,Lower right leg & ankle bitten,N,16h50,Zambesi shark,"D. Davies, pp.113-114; D. Davies & J. D'Aubrey; T. McDonnell, M. Levine, GSAF",1961.12.28.a-Wessels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.a-Wessels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.a-Wessels.pdf,1961.12.28.a,1961.12.28.a,2355,, +1961.12.27,27-Dec-61,1961,Provoked,AUSTRALIA,Western Australia,"North of main swimming area in Waterman's Bay Beach, Perth",Spearfishing,John Parker ,M,23,"No injury, Parker shot the shark when it came close to his nephew, Bill Bradbury (14), then the shark bent his speargun PROVOKED INCIDENT",N,07h00,"Grey nurse shark, 2.4 m [8'] ","The West Australia, 12/28/1961 ",1961.12.27-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.27-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.27-Parker.pdf,1961.12.27,1961.12.27,2354,, +1961.12.19,19-Dec-61,1961,Boat,AUSTRALIA,South Australia,Cowell,"Fishing, hauling in a 5-lb snapper",20' boat of Frank Stocker,,,No injury to occupant; shark leapt into boat,N,,2.7 m [9'] shark,"Adelaide Advertiser, 12/20/1961",1961.12.19-NV-boat-Stocker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.19-NV-boat-Stocker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.19-NV-boat-Stocker.pdf,1961.12.19,1961.12.19,2353,, +1961.12.18.b,18-Dec-61,1961,Unprovoked,MOZAMBIQUE,Gaza,Praia Sepulveda,Bathing,Gaspar Rodrigues Correia,M,20,His left leg was severely bitten,N,16h00,,Dr. C. d. Nacimento,1961.12.18.b-Correia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.b-Correia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.b-Correia.pdf,1961.12.18.b,1961.12.18.b,2352,, +1961.12.18.a,18-Dec-61,1961,Unprovoked,AUSTRALIA,Queensland,Noosa Heads,"Surfing, pushing board ashore",John Grayson Andrews,M,22,"FATAL, right wrist and hand bitten, left leg severed above knee ",Y,06h15,Next morning a 3 m [10'] shark was caught that had Andrews' leg in its gut,"Natal Daily News, 12/19/1961; Sydney Morning Herald, 12/20/1961; V.M. Coppleson (1962), p.246; H.D. Baldridge, p.172; A. Sharpe, pp.100-101",1961.12.18.a-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.a-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.a-Andrews.pdf,1961.12.18.a,1961.12.18.a,2351,, +1961.12.13,13-Dec-61,1961,Unprovoked,AUSTRALIA,Torres Strait,"Horn Island, near Thursday Island",Swimming with other crew near wharf,"George Jimmy Stevens, aborgine from the lugger Rebecca",M,17,Right thigh and leg lacerated,N,14h00,1.8 m [6'] shark,"Brisbane Courier Mail, 12/14/1961; V.M. Coppleson (1962), p.246",1961.12.13-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.13-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.13-Stevens.pdf,1961.12.13,1961.12.13,2350,, +1961.11.14,14-Nov-61,1961,Invalid,MEXICO,Guerrrero,Northwest of Acapulco,,,,,"Bodies of hurricane victims bitten by shoals of sharks, post mortem scavenging",Y,,,"Sydney Daily Telegraph, 11/19/1961; SAF Case #1018",1961.11.14-Hurricane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.11.14-Hurricane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.11.14-Hurricane.pdf,1961.11.14,1961.11.14,2349,, +1961.10.27,17-Oct-61,1961,Unprovoked,PHILIPPINES,Western Luzon Island,Manila Bay,Gathering shells,fisherman,M,,Right leg severed,N,,,"Newcastle Morning Herald, 10/28/1961 ",1961.10.27-FilipinoFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.27-FilipinoFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.27-FilipinoFisherman.pdf,1961.10.27,1961.10.27,2348,, +1961.10.09,09-Oct-61,1961,Invalid,USA,Florida,"Ocean Ridge, Boca Raton, Palm Beach County",Swimming,Alfred Haen,M,45,"Skeletonized, but shark involvement may have occurred after death.",Y,,,"H.D. Baldridge, p.162",1961.10.09-Haen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.09-Haen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.09-Haen.pdf,1961.10.09,1961.10.09,2347,, +1961.10.00.b,Oct-61,1961,Boat,VANUATU,Shefa Province, Lelepa Island,Paddling outrigger canoe,male from Lelepa Island,M,,"No injury to occupant, canoe bitten & overturned by shark",N,,Two shark's teeth recovered from canoe,"Pacific Islands Monthly, October 1961 ",1961.10.00.b-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.b-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.b-Vanuatu.pdf,1961.10.00.b,1961.10.00.b,2346,, +1961.10.00.a,Oct-61,1961,Unprovoked,USA,Florida,"Boca Raton, Palm Beach County",,Jacob Horn,M,45,"FATAL. His body washed ashore, presumed shark attack",Y,,,"V.M. Coppleson (1962), p.249",1961.10.00.a-Horn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.a-Horn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.a-Horn.pdf,1961.10.00.a,1961.10.00.a,2345,, +1961.09.26,26-Sep-61,1961,Provoked,USA,Florida,"Florida Keys, Monroe County",,Paul Walter,M,16,Foot & lower leg abraded and lacerated when he kicked the shark PROVOKED INCIDENT,N,16h30,,H.D.Baldridge (1994) SAF Case #923,1961.09.26-NV-PaulWalter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.26-NV-PaulWalter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.26-NV-PaulWalter.pdf,1961.09.26,1961.09.26,2344,, +1961.09.24.b,24-Sep-61,1961,Unprovoked,CROATIA,Primorje-Gorski Kotar County ,"Opatija, northwestern coast of Rijeka Bay",Swimming,Sabit Plana,M,19,"FATAL, hand severed & legs bitten ",Y,Early afternoon,White shark,"The Mid-Ocean News, 9/28/1961; H.D. Baldridge, p.15; A. De Maddalena & C. Moore, GSAF;; Anon. (1961), Giudici & Fino (1989), Fergusson (1996)",1961.09.24.b-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.b-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.b-Plana.pdf,1961.09.24.b,1961.09.24.b,2343,, +1961.09.24.a,24-Sep-61,1961,Provoked,TANZANIA,,Near entrance to Dar-es-Salaam Harbour,Fishing,Yusef Mohamed,M,42,PROVOKED INCIDENT Right hand severed by hooked shark,N,07h00,,Mombasa Times 9/25/1961,1961.09.24.a-YusefMohamed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.a-YusefMohamed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.a-YusefMohamed.pdf,1961.09.24.a,1961.09.24.a,2342,, +1961.09.23,23-Sep-61,1961,Unprovoked,MID ATLANTIC OCEAN,165 miles from Bermuda,,"Survived US Naval aircraft crash, climbing onboard rescue vessel when he fell back into sea ",Patrick Imhof,M,22,Right shoulder blade & back lacerated,N,06h00,"Oceanic whitetip shar,; identified by Dr. W.C. Schoeder on photograph & Dr. L.P. L. Schultz on sketch by observer","E.L.de Wilton; V.M. Coppleson (1962), p.246; H.D. Baldridge, p.102",1961.09.23-Imhof.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.23-Imhof.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.23-Imhof.pdf,1961.09.23,1961.09.23,2341,, +1961.09.07,07-Sep-61,1961,Unprovoked,PERSIAN GULF,25 km off the coast of Iran & 483km from mouth of Persian Gulf,Khark Island,"Free diving, surveying a pipeline & examing cathodes under jetty",I. Padden,M,,"3"" cut on sole of foot",N,10h30,1.5 m to 1.8 m [5' to 6'] shark,"Underseas, Ltd (London)",1961.09.07-Padden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.07-Padden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.07-Padden.pdf,1961.09.07,1961.09.07,2340,, +1961.09.02.R,Reported 06-Sep-1961,1961,Provoked,ITALY,Venice Province, Chioggia,Fishing,Pollione Perrini & Fioravante Perini ,M,33 & 37,Left foot & right hand bitten by netted shark PROVOKED INCIDENT,N,,1 m shark,"C. Moore, GSAF",1961.09.06.R-Chioggia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06.R-Chioggia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06.R-Chioggia.pdf,"1961.09,06.R",1961.09.02.R,2339,, +1961.09.06,06-Sep-61,1961,Invalid,AUSTRALIA,Western Australia,Broome,Attaching a line at sea,a sailor from the Fukuichi Maru,,,Shark involvement prior to death priunconfirmed,Y,,,"Canberra Times, 9/8/1962",1961.09.06-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06-Sailor.pdf,1961.09.06,1961.09.06,2338,, +1961.08.20,20-Aug-61,1961,Unprovoked,USA,California,"Portuguese Beach at mouth of Salmon Creek, Sonoma County",Swimming,David Vogensen,M,16,"Foot, leg & groin lacerated",N,09h30 / 15h30,"White shark, 4 m [13'] ","L.A. Times, 8/21/1961; D. Miller & R. Collier; R. Collier, p.33; V.M. Coppleson (1962), p.249; H.D. Baldridge, p.72",1961.08.20-Vogensen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.20-Vogensen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.20-Vogensen_Collier.pdf,1961.08.20,1961.08.20,2337,, +1961.08.16,16-Aug-61,1961,Unprovoked,USA,South Carolina,"Pawleys Island, Georgetown County",Wading,William Lee Bailey,M,19,"Right arm bitten. Left leg bitten, surgically amputated ",N,08h00,White shark,C.O. Adams,1961.08.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.16-Bailey.pdf,1961.08.16,1961.08.16,2336,, +1961.08.04,04-Aug-61,1961,Unprovoked,BERMUDA,,6 miles from shore,Spearfishing,Robert Sato,M,22,Right hand lacerated,N,11h00,"Blacktip shark, 1.8 m to 2.1 m [6' to 7'] ","R. McAllister; H.D. Baldridge, p.134",1961.08.04-Sato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.04-Sato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.04-Sato.pdf,1961.08.04,1961.08.04,2335,, +1961.08.02,02-Aug-61,1961,Unprovoked,USA,Hawaii,"Pearl Harbor Channel, O'ahu","Net fishing, picking catch from the net",Kazuhiho Kato,M,38,Hand bitten,N,17h30,2.4 m [8'] shark,"K. Kato; V.M. Coppleson (1962), p.246",1961.08.02-Kato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.02-Kato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.02-Kato.pdf,1961.08.02,1961.08.02,2334,, +1961.08.01,01-Aug-61,1961,Provoked,PAPUA NEW GUINEA,Sandaun Province,Vanimo on Musu side of Wutong anchorage,"Fishing, two large sharks passed. He speared one and it bit him",male,M,,Thigh lacerated PROVOKED INCIDENT,N,,,"A.M. Rapson, p.147",1961.08.01-Vanimo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.01-Vanimo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.01-Vanimo.pdf,1961.08.01,1961.08.01,2333,, +1961.07.29,29-Jul-61,1961,Provoked,USA,New York,Whitewood Point on Lloyd Neck in Oyster Bay,Spearfishing,Bruno Junker,M,57,Puncture wound on right shin & fingers lacerated by speared shark PROVOKED INCIDENT,N,14h30,"43"" shark",B. Junker,1961.07.29-Junker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.29-Junker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.29-Junker.pdf,1961.07.29,1961.07.29,2332,, +1961.07.16,16-Jul-61,1971,Unprovoked,TURKEY,Anatolia,"?nciralti Beach, ?zmir ",Swimming,?brahim Karagz,M,16,Left leg injured,N,,,"C. Moore, GSAF",1961.07.16-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.16-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.16-Turkey.pdf,1961.07.16,1961.07.16,2331,, +1961.07.07.b,07-Jul-61,1961,Provoked,AUSTRALIA,Queensland,Cape Moreton,Shark fishing,"35' motor launch, occupants: Bill Fulham & T. Fanning",,,"No injury to occupant, hooked shark bit boat's rudder PROVOKED INCIDENT",N,,"White shark, 5.2 m [17'], 2500-lb ","Brisbane Courier-Mail, 7/10/1961; SAF Case #894",1961.07.07.b-boat-Fulham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.07.b-boat-Fulham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.07.b-boat-Fulham.pdf,1961.07.07.b,1961.07.07.b,2330,, +1961.07.00.b,Jul-61,1961,Unprovoked,ITALY,Adriatic Sea,Riccione,Spearfishing,Manfred Gregor,M,21,Foot bitten,N,14h00,"White shark, 4.5 m ","M. Gregor; H.D. Baldridge, p.135; A. De Maddalena; Ellis (1973), Fergusson (1996), Mojetta et al. (1997)",1961.07.00.b-Gregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.b-Gregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.b-Gregor.pdf,1961.07.00.b,1961.07.00.b,2329,, +1961.07.00.a,Jul-61,1961,Provoked,PANAMA,,"Jarque, just south of Pi?as Bay",Fishing (trolling) from canoe,boy,M,10,"FATAL, hooked shark pulled him into the water PROVOKED INCIDENT",Y,,,"J. Hardie, D. DeSylva",1961.07.00.a-youngboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.a-youngboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.a-youngboy.pdf,1961.07.00.a,1961.07.00.a,2328,, +1961.06.24,24-Jun-61,1961,Unprovoked,USA,Florida,"500 yards from Fowey Rock Light, 9 miles east of Key Biscayne, Miami",Scuba diving & spearfishing ,William J. Dandridge,M,23,"FATAL, arm severed & left side of torso removed ",Y,09h30,,"D. McGee, J. Quillian, W. M. Stephens; V.M. Coppleson (1962), p.249; H.D. Baldridge, p.183",1961.06.24-Dandridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.24-Dandridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.24-Dandridge.pdf,1961.06.24,1961.06.24,2327,, +1961.06.18,18-Jun-61,1961,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Standing,Bill Hawkins,M,25,Lacerations to left leg,N,Afternoon,,"News Tribune, 6/20/1961",1961.06.18-Hawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.18-Hawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.18-Hawkins.pdf,1961.06.18,1961.06.18,2326,, +1961.06.06.R,Reported 06-Jun-1961,1961,Boat,USA,Florida,"Ponte Vedra Beach, St. Johns County",Spearfishing on Scuba,W. Davidson,M,,"No injury to diver or occupants of the boat, shark butted boat ",N,,Hammerhead shark,"Florida Times-Union, 6/6/1961 ",1961.06.06.R-W.E.-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.06.R-W.E.-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.06.R-W.E.-Davidson.pdf,1961.06.06.R,1961.06.06.R,2325,, +1961.06.02,02-Jun-61,1961,Unprovoked,NEW BRITAIN,East New Britain Province,Rabaul,Spearfishing,male,M,,Minor injuries to arm,N,,,"A.M. Rapson, p.150",1961.06.02-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.02-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.02-Rabaul.pdf,1961.06.02,1961.06.02,2324,, +1961.06.01,01-Jun-61,1961,Provoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Rossun, Manus","Fishing, speared shark upset canoe & man fell in water",Marik-Pokas,M,19,"Left thigh severely bitten, but he regained the canoe, then shark bit canoe PROVOKED INCIDENT",N,,2.7 m [9']shark,"J. McDonough; A. M. Rapson, p.147; Papua and New Guinea Agricultural Journal;",1961.06.01-Marik-Pokas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.01-Marik-Pokas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.01-Marik-Pokas.pdf,1961.06.01,1961.06.01,2323,, +1961.05.21,21-May-61,1961,Unprovoked,USA,California,"Tomales Point, Marin County",Free diving for abalone,Rodney Orr,M,20,"No injury, wetsuit bitten",N,08h00 / 09h30,White shark,"D. Miller & R. Collier; R. Collier, pp.32-33 ",1961.05.21-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.21-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.21-Orr_Collier.pdf,1961.05.21,1961.05.21,2322,, +1961.05.17,17-May-61,1961,Unprovoked,NEW BRITAIN,East New Britain Province,Kokopo,Collecting dynamited fish,male,M,,Thumb & 2 fingers severed,N,,,"A.M. Rapson, p. 150]",1961.05.17-Kokopo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.17-Kokopo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.17-Kokopo.pdf,1961.05.17,1961.05.17,2321,, +1961.05.15,15-May-61,1961,Unprovoked,USA,Florida,"Laguna Beach, Bay County",Walking in chest-deep water,G.L. Morris,M,52,Middle finger of left hand & right forearm lacerated,N,11h30,"Hammerhead shark, 500-llb ","G.L. Morris; Post Herald (Birmingham, Alabama) 5/18/1961; V.M. Coppleson (1962), p.249",1961.05.15-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.15-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.15-Morris.pdf,1961.05.15,1961.05.15,2320,, +1961.05.07,07-May-61,1961,Provoked,AUSTRALIA,Western Australia,"Quinns Rocks, south of Yanchep",Spearfishing,Graeme Arbuckle,M,,"No injury, speared shark hit speargun PROVOKED INCIDENT",N,,,"The West Australian (Perth), 5/8/1961 ",1961.05.07-Arbuckle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.07-Arbuckle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.07-Arbuckle.pdf,1961.05.07,1961.05.07,2319,, +1961.04.30,30-Apr-61,1961,Invalid,USA,Florida,Palm Beach County,Splashing ,Earl Brewster,M,10,Abdomen abraded,N,15h00,Shark involvement not confirmed,H.D.Baldridge (1994) SAF Case #942,1961.04.30-NV-Brewster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.30-NV-Brewster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.30-NV-Brewster.pdf,1961.04.30,1961.04.30,2318,, +1961.04.25,25-Apr-61,1961,Provoked,AUSTRALIA,New South Wales,"Trial Bay, north of Kempsey",Spearfishing,John Davy & John Pierpoint,M,,Speared shark bit Davy's ankle & Pierpont's right leg PROVOKED INCIDENT,N,12h00,"Wobbegong shark, 1.4 m [4'6""] ","Kempsey Macleay Argus (N.S.W.), 4/27/1961",1961.04.25-Davy-Pierpoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.25-Davy-Pierpoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.25-Davy-Pierpoint.pdf,1961.04.25,1961.04.25,2317,, +1961.04.21,21-Apr-61,1961,Unprovoked,MOZAMBIQUE,Gaza,"Sepulveda Beach, Xai Xai",Swimming,Brian Dewar,M,37,"Multiple injuries to both hands, left leg & foot",N,10h00,Zambesi shark,"D. Davies, pp.125-126; M. Levine,GSAF; Star, 4/23/1961",1961.04.21-Dewar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.21-Dewar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.21-Dewar.pdf,1961.04.21,1961.04.21,2316,, +1961.04.17,17-Apr-61,1961,Provoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth Oceanarium,Diving,Kelvin Harvey,M,,Shark bit swimfin after diver kicked shark PROVOKED INCIDENT,N,,"2 m ""yellow belly"" captive shark. Shark destroyed by aquarium staff next day","G. Ross, M. Levine, GSAF",1961.04.17-Harvey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.17-Harvey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.17-Harvey.pdf,1961.04.17,1961.04.17,2315,, +1961.04.16.b,16-Apr-61,1961,Unprovoked,USA,Florida,"Fowey Rock Light, Miami",Spearfishing,Rolf Ericson,M,22,Thigh bitten,N,,"Tiger shark, 3 m [10']","W. M. Stephens; H.D. Baldridge, p.166; Clark, p.102 ",1961.04.16.b-Ericson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.b-Ericson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.b-Ericson.pdf,1961.04.16.b,1961.04.16.b,2314,, +1961.04.16.a,16-Apr-61,1961,Provoked,AUSTRALIA,New South Wales,Otford,Spearfishing,Douglas John Spooner,M,21,Speared shark bit his foot PROVOKED INCIDENT,N,,"Wobbegong shark, O. barbatus, 1.8 m [6'], identified by G.P. Whitley","Sydney Morning Herald, 4/17/1961; G. P. Whitley; Perth Daily News, 4/19/1961; V.M. Coppleson (1962), p.252; H.D. Baldridge, p.165",1961.04.16.a-Spooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.a-Spooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.a-Spooner.pdf,1961.04.16.a,1961.04.16.a,2313,, +1961.04.14,14-Apr-61,1961,Unprovoked,AUSTRALIA,New South Wales,10 miles off Nambucca Heads onboard trawler,"Checking fish traps, fell into the water",Keith Davis,M,40,Tiny cuts & bruises on neck ,N,Night," ""gummy"" shark (Rhizoprionodon or Loxodon) 1.2 m [4']","G. P. Whiltley citing Sydney Morning Herald, 4/15/1961 & 4/17/1961",1961.04.14-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.14-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.14-Davis.pdf,1961.04.14,1961.04.14,2312,, +1961.04.09,09-Apr-61,1961,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,"Swimming, using bundles of sticks as raft",Francisco Zimila,M,38,"FATAL, extensive abdominal wounds, died 4 days later ",Y,11h00,Zambesi shark,"D. Davies, p.125; Star, 4/14/1961",1961.04.09-Zimila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.09-Zimila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.09-Zimila.pdf,1961.04.09,1961.04.09,2311,, +1961.04.08,08-Apr-61,1961,Sea Disaster,PERSIAN GULF,United Arab Emirates,Dubai,Cargo ship Dara sank after collision with another ship during a severe storm,,,,Some of the survivors said to have been bitten by sharks,Y,,,"V.M. Coppleson (1962), p.260",1961.04.08-DaraDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.08-DaraDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.08-DaraDisaster.pdf,1961.04.08,1961.04.08,2310,, +1961.04.03,03-Apr-61,1961,Unprovoked,AUSTRALIA,Victoria,Flinders Island,Spearfishing,Joe Prosch,M,24,"No injury, right sleeve of wetsuit ripped, weight on belt gashed",N,,"Grey nurse shark, 2,7 m [9'], 200-lb ","Sydney Morning Herald, 4/4/1961 ; Launceston Examiner; H.D. Baldridge, pp.133-134",1961.04.03-Prosch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.03-Prosch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.03-Prosch.pdf,1961.04.03,1961.04.03,2309,, +1961.04.00,Apr-61,1961,Provoked,AUSTRALIA,Western Australia,Rottnest Island,Spearfishing,Gerry Greaves,M,,Speared shark bit his arm & seat of pants of diving suit PROVOKED INCIDENT,N,,"Wobbegong shark, 1.4 m [4.6'] ","Perth Daily News, 4/19/1961",1961.04.00-Greaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.00-Greaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.00-Greaves.pdf,1961.04.00,1961.04.00,2308,, +1961.03.30,30-Mar-61,1961,Unprovoked,AUSTRALIA,South Australia,Glenelg Breakwater,Spearfishing,Clyde Buttery,M,24,"Shark took his entire catch, lacerated his knee and tore his wet suit as it brushed past him",N,,"Bronze whaler shark, 2.4 m [8'] Identified by Clyde Buttery","G.P. Whitley citing Sydney Morning Herald, 4/1/1961; V.M. Coppleson (1962), p.252 ",1961.03.30-Buttery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.30-Buttery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.30-Buttery.pdf,1961.03.30,1961.03.30,2307,, +1961.03.18,18-Mar-61,1961,Unprovoked,AUSTRALIA,Victoria,Lady Beach at Warrnambool,Swimming,Kenneth Smith,M,24,"Abdomen & arm bitten. Shark, holding him by the arm, leapt 4' to 5' above the surface",N,Late afternoon,3 m [10'] shark,"Sun Herald (Sydney) 3/19/1961; Sydney Morning Herald, 3/20/1961; V.M. Coppleson (1962), p.246",1961.03.18-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.18-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.18-Smith.pdf,1961.03.18,1961.03.18,2306,, +1961.03.14,14-Mar-61,1961,Provoked,AUSTRALIA,Western Australia,Shark Bay,Fishing from dinghy,Kath. ONeill,F,,Hooked shark hauled on board bit her foot PROVOKED INCIDENT,N,,,"Sydney Daily Telegraph, no date; L. Schultz & M. Malin, p.548",1961.03.14-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.14-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.14-O'Neill.pdf,1961.03.14,1961.03.14,2305,, +1961.03.12,12-Mar-61,1961,Unprovoked,AUSTRALIA,South Australia,Aldinga Beach,Spearfishing,Brian Rodgers,M,21,Left leg bitten & left forearm lacerated,N,14h30,"White shark, 3.7 m [12'] ","V.M. Coppleson (1962), pp.182 & 252; H. Edwards, pp.61-63; H.D. Baldridge, p.56; J. West, ASAF",1961.03.12-Rodger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.12-Rodger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.12-Rodger.pdf,1961.03.12,1961.03.12,2304,, +1961.03.09,09-Mar-61,1961,Unprovoked,NORTH PACIFIC OCEAN,Wake Island (EnenKio),"Leeward side of island, directly in back of Mid-Pac barrel storage area",Free diving,James K. Stewart,M,33,Right elbow bitten,N,15h30,"Grey reef shark, 1.8 m [6'] grey reef shark, identified by Dr. L.P. L. Schultz based on photographs; identified as C. melanopterus by Stewart","J.K. Stewart; Albert Tester; V.M. Coppleson (1962), p.254; H.D. Baldridge, p.207",1961.03.09-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.09-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.09-Stewart.pdf,1961.03.09,1961.03.09,2303,, +1961.03.07,07-Mar-61,1961,Provoked,SOUTH AFRICA,KwaZulu-Natal,St. Lucia,Fishing,Johannes J. Rickert,M,44,Landed shark in boat bit his left leg PROVOKED INCIDENT,N,,"Zambesi shark, 4'9""","GSAF; D. Davies, pp.112-113",1961.03.07-Rickert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.07-Rickert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.07-Rickert.pdf,1961.03.07,1961.03.07,2302,, +1961.03.00,Mar-61,1961,Unprovoked,FIJI,"19S, 178?E","Wotua Beach, 70 miles from Suva",Floating on back,Albert Bailey,M,,Right forearm bitten,N,11h00,,A. Bailey,1961.03.00-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.00-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.00-Bailey.pdf,1961.03.00,1961.03.00,2301,, +1961.02.17.b,17-Feb-61,1961,Provoked,USA,Pennsylvania,"Fairmount Park Aquarium, Philadelphia",Cleaning a tank,Charles Peterson,M,30,Thumb lacerated by captive shark PROVOKED INCIDENT,N,,,"The Bee, 2/18/1961",1961.02.17.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.b-Peterson.pdf,1961.02.17.b,1961.02.17.b,2300,, +1961.02.17.a,17-Feb-61,1961,Unprovoked,AUSTRALIA,Victoria,Mount Martha Beach,Standing,Mrs. Reg Fox,F,,"Ankle bitten by small gummy shark, minor injury",N,18h00,"2' ""banjo shark""","Morning Peninsular Post (Victoria, Australia), 2/22/1961; V.M. Coppleson (1962), p.246",1961.02.17.a-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.a-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.a-Fox.pdf,1961.02.17.a,1961.02.17.a,2299,, +1961.02.16,16-Feb-61,1961,Unprovoked,JAMAICA,,,,British sailor from the F-107,M,,FATAL,Y,,,"E. C. Raney; V.M. Coppleson (1962), p.247 ",1961.02.16-BritishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.16-BritishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.16-BritishSailor.pdf,1961.02.16,1961.02.16,2298,, +1961.02.12,12-Feb-61,1961,Unprovoked,SOUTH AFRICA,Western Cape Province,Sea Point,"Spearfishing, shark grabbed his white t-shirt and towed him ",Carl Derrick Benzoin,M,27,Torso bruised & abraded ,N,Late afternoon,1.5 m [5'] shark,"C.D. Benzoin, M. Levine, GSAF; J. D'Aubrey, ORI",1961.02.12-Benzoin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.12-Benzoin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.12-Benzoin.pdf,1961.02.12,1961.02.12,2297,, +1961.02.01.b,01-Feb-61,1961,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Swimming,Geoffrey Zimmerman,M,14,"FATAL, multiple injuries to both legs, feet & left arm ",Y,14h50,"2.1 m [7'], 90-kg shark","D. Davies & J. D'Aubrey; D. Davies, pp.122-124; M. Levine, GSAF",1961.02.01.b-Zimmerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.b-Zimmerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.b-Zimmerman.pdf,1961.02.01.b,1961.02.01.b,2296,, +1961.02.01.a,01-Feb-61,1961,Unprovoked,AUSTRALIA,Western Australia,Carnac Island,Collecting crayfish,Len McWhinney,M,,No injury,N,,"Grey nurse shark, 2.7 m [9'] ","H.D. Baldridge, p.134",1961.02.01.a-McWhinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.a-McWhinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.a-McWhinney.pdf,1961.02.01.a,1961.02.01.a,2295,, +1961.02.00,Feb-61,1961,Invalid,USA,California,"Topanga Canyon Beach, Santa Monica Bay",,Steven Friedman,M,,Considered a doubtful incident,N,,Shovel-nosed guitarfish,"R. Collier, G.. Helfman",1961.02.00-Friedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.00-Friedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.00-Friedman.pdf,1961.02.00,1961.02.00,2294,, +1961.01.25,25-Jan-61,1961,Boat,SOUTH AFRICA,Western Cape Province,Frikkies Bay,Fishing for kob,"dinghy, occupants: Willem & Jan Groenwald",,,"No injury to occupants, shark took a gaffed fish they were bringing aboard & hit their boat",N,,4.6 m [15'] shark,"Cape Times, 1/27/1961; SAF Case #945",1961.01.25-Groenwald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.25-Groenwald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.25-Groenwald-boat.pdf,1961.01.25,1961.01.25,2293,, +1961.01.22,22-Jan-61,1961,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Swimming,Michael Murphy,M,15,Left thigh bitten ,N,14h20,White shark,"M. Murphy, M. Levine, GSAF; A.C. Copley; G. D. Campbell; D. Davies, pp.111-112",1961.01.22-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.22-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.22-Murphy.pdf,1961.01.22,1961.01.22,2292,, +1961.01.15,15-Jan-61,1961,Provoked,AUSTRALIA,New South Wales,Cook Island,Collecting aquarium specimens,Robert Webb,M,27,Right calf bitten by lassoed shark on deck of surf ski PROVOKED INCIDENT,N,Morning,"Wobbegong shark, 1.5 m [5'] ","Mackay Daily Mercury (Queensland), 1/16/196; H.D. Baldridge, p.134",1961.01.15-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.15-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.15-Webb.pdf,1961.01.15,1961.01.15,2291,, +1961.01.06.c,06-Jan-61,1961,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Standing,Michael Land,M,13,"Right foot, leg and hand bitten",N,19h35,"White shark, based on bite pattern","GSAF; D. Davies & J. D'Aubrey; D. Davies, pp.109-111",1961.01.06.c-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.c-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.c-Land.pdf,1961.01.06.c,1961.01.06.c,2290,, +1961.01.06.b,06-Jan-61,1961,Sea Disaster,ATLANTIC OCEAN,9.35N 79.35W,"East of La Grande Island, North of Panama Canal",Pacific Seafarer of US Navy,,,,"3 were lost, 3 survived",Y,,,"C.R. Wolf, M.D.",1961.01.06.b-PacificSeafarer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.b-PacificSeafarer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.b-PacificSeafarer.pdf,1961.01.06.b,1961.01.06.b,2289,, +1961.01.06.a,06-Jan-61,1961,Provoked,AUSTRALIA,Northern Territory,"Stokes Hill Wharf, Darwin",Fishing,Arthur Hopkins,M,,Finger bitten by hooked shark PROVOKED INCIDENT,N,,"Hammerhead shark, 1.8 m [6'] ","Darwin Northern Territory News, 1/10/1961",1961.01.06.a-Hopkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.a-Hopkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.a-Hopkins.pdf,1961.01.06.a,1961.01.06.a,2288,, +1961.01.05,05-Jan-61,1961,Unprovoked,MOZAMBIQUE,Limpopo River,190 km to 240 km from the sea,Swimming,African child (male),M,,Leg bitten ,N,16h00,Six Zambesi sharks seen to 1.5 m [5'] in length,"D. Davies, p.124-125",1961.01.05-AfricanChild.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.05-AfricanChild.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.05-AfricanChild.pdf,1961.01.05,1961.01.05,2287,, +1961.01.03.b,03-Jan-61,1961,Unprovoked,SOUTH AFRICA,Western Cape Province,Strandfontein,Standing,Peter Hendricks,M,25 or 28,"Lower left leg bitten, abrasions on back of right leg",N,15h30,,"Cape Times, 1/4/1961, M. Levine, GSAF",1961.01.03.b-Hendricks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.b-Hendricks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.b-Hendricks.pdf,1961.01.03.b,1961.01.03.b,2286,, +1961.01.03.a,03-Jan-61,1961,Invalid,SOUTH AFRICA,KwaZulu-Natal,Palm Beach,,,,,Human remains (patella & remnants of black swim suit) found in shark,Y,,"Raggedtooth shark, 147-kg [324-lb] ","D. Davies; M. Levine, GSAF",1961.01.03.a-Remains-in-raggie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.a-Remains-in-raggie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.a-Remains-in-raggie.pdf,1961.01.03.a,1961.01.03.a,2285,, +1961.01.02.R,Reported 02-Jan-1961,1961,Boat,AUSTRALIA,Tasmania,Off Tasman Island,Ocean racing,yacht Southerly Buster,,,"No injury to occupants, shark struck boat",N,,,C. Black. GSAF,1961.01.02.R-SoutherlyBuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.02.R-SoutherlyBuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.02.R-SoutherlyBuster.pdf,1961.01.02.R,1961.01.02.R,2284,, +1961.00.00.e,1961,1961,Boat,AUSTRALIA,New South Wales,South coast,Fishing for mackerel,boat,,,"No injury to occupant, shark took hooked fish then bit stern of boat",N,,,"Brisbane Courier Mail, 12/30/1961 ",1961.00.00.e-Mackerel-fishing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.e-Mackerel-fishing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.e-Mackerel-fishing.pdf,1961.00.00.e,1961.00.00.e,2283,, +1961.01.01,01-Jan-61,1961,Unprovoked,COLUMBIA,Roncador Bank,"Roncador Bank, 135 nm north of San Andres ",Taking boat from California to Florida when it ran aground & he was swimming back to boat,Joe Chaney ,M,,Leg bitten,N,,1.8 m [6'] shark,V.M. Coppleson (1962) p.246,1961.01.01-Chaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.01-Chaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.01-Chaney.pdf,1961.01.01,1961.01.01,2282,, +1961.00.00.d,1961,1961,Unprovoked,NEW CALEDONIA,,,Spearfishing,,,,Arm injured,N,,,SAF Case #1109,1961.00.00.d-NV-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.d-NV-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.d-NV-NewCaledonia.pdf,1961.00.00.d,1961.00.00.d,2281,, +1961.00.00.b,1961,1961,Unprovoked,SENEGAL,Cap Vert Peninsula,Thiaroye Guedi,Free diving for molluscs,A.N.,M,20,FATAL,Y,,> 3 m shark,S.Trape,1961.00.00.b-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.b-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.b-Senegal.pdf,1961.00.00.b,1961.00.00.b,2280,, +1961.00.00.a,1961,1961,Sea Disaster,USA,Hawaii,Maui,Light aircraft ditched at sea,5 people swimming for shore (pilot & 4 passengers),,,3 of the 4 passengers killed by sharks,Y,,,"F. Dennis, p.20",1961.00.00.a-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.a-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.a-aircraft.pdf,1961.00.00.a,1961.00.00.a,2279,, +1960.12.27.b,27-Dec-60,1960,Unprovoked,USA,Hawaii,"Maile Point, O'ahu",Swept out to sea while net fishing,Harold Riley,M,,"FATAL Shark seen attacking Riley, body recovered off Nanakuli",Y,,,"L. Taylor (1993), pp.100-101",1960.12.27.b-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.b-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.b-Riley.pdf,1960.12.27.b,1960.12.27.b,2278,, +1960.12.27.a.,27-Dec-60,1960,Unprovoked,AUSTRALIA,New South Wales,"Bondi Beach, Sydney",,Mrs. Despo Snow-Christensen ,F,27,"Shark brushed past, minor injuries if any", N,,3 m [10'] shark,"Baltimore Sun, 12/28/1960; Sydney Morning Herald 12/28/1960; V.M. Coppleson (1962), p.246; J. Green, p.35",1960.12.27.a -Despo Snow-Christensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.a -Despo Snow-Christensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.a -Despo Snow-Christensen.pdf,1960.12.27.a.,1960.12.27.a.,2277,, +1960.12.24,24-Dec-60,1960,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Swimming,"Serame ""Petrus"" Sithole",M,25,"FATAL, legs severed ",Y,16h30,"White shark, 3 m [10'], tooth fragment from wounds identified as that of a white shark","D. Davies & J. D'Aubrey; D. Davies, pp. 108-109; T. Wallett; M. Levine, GSAF",1960.12.24-Sithole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.24-Sithole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.24-Sithole.pdf,1960.12.24,1960.12.24,2276,, +1960.12.20,20-Dec-60,1960,Unprovoked,AUSTRALIA,Queensland,"Colleges Crossing, 54 miles above mouth of the Brisbane River","Fishing, when line became snagged on rock & he dived into water to free it ",Lester McDougall,M,33,Left thigh lacerated, N,09h00,"Grey nurse shark, 1m ","Sydney Morning Herald, 12/21/1960; V.M. Coppleson (1962), p.246 ",1960.12.20-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.20-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.20-McDougall.pdf,1960.12.20,1960.12.20,2275,, +1960.12.01,01-Dec-60,1960,Unprovoked,AUSTRALIA,Queensland,"Colledge's Crossing, Brisbane River",Fishing,male,M,,Bitten & survived,N,,"Bull shark, 1m ","Sunday Mail, 3/27/1994, p.107",1960.12.01-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.01-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.01-BrisbaneRiver.pdf,1960.12.01,1960.12.01,2274,, +1960.11.27,27-Nov-60,1960,Unprovoked,AUSTRALIA,Queensland,"Blacks Beach, 9 miles north of Mackay",Swimming,Harry Bicknell,M,41,Right shoulder lacerated, N,14h45,3' shark,"Daily Mercury (Mackay), 11/28/1960 ",1960.11.27-Bicknell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.27-Bicknell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.27-Bicknell.pdf,1960.11.27,1960.11.27,2273,, +1960.11.22,22-Nov-60,1960,Invalid,USA,Florida,"Hutchinson Island Beach, Martin County","Fell overboard, prop slashed arm",Sarah Peggy Sargent,F,51,"FATAL, probable drowning & post mortem scavenging",Y,,,"News-Tribune (Fort Pierce, FL], 11/27/1960; SAF Case #803",1960.11.22-Sargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.22-Sargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.22-Sargent.pdf,1960.11.22,1960.11.22,2272,, +1960.11.11,11-Nov-60,1960,Provoked,AUSTRALIA,Queensland,"Scotts Point, Redcliffe Peninsula",Chasing shark out of bathing area while riding on a surf-ski,Ken OConnell,M,17,"Shark knocked him off surf-ski, he inhaled water & had to be resuscitated PROVOKED INCIDENT", N,15h00,,"Courier-Mail (Queensland), 11/12/1960; L. Schultz & M. Malin, p.547 ",1960.11.11-O'Connell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.11-O'Connell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.11-O'Connell.pdf,1960.11.11,1960.11.11,2271,, +1960.11.06,06-Nov-60,1960,Unprovoked,AUSTRALIA,Western Australia,Hamelin Bay,"Spearfishing, speared fish retreated to cave where shark grabbed his arm",Don Morrissey,M,24,Scratches on right upper arm, N,,"Wobbegong shark, 1.8 m [6'] ","The West Australian (Perth), 11/7/1960; V.M. Coppleson (1962), p.252 ",1960.11.06-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.06-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.06-Morrissey.pdf,1960.11.06,1960.11.06,2270,, +1960.11.00.d,Nov-60,1960,Boat,SOUTH AFRICA,Western Cape Province,"5 km from Gordons Bay, False Bay",Hand lining for shad,"7.5 m boat, occupants: 8 men",,,"No injury to occupants, shark bit 45 cm hole in hull",N,,White shark (tooth fragments recovered from hull of boat),"D. Davies; T. Wallett, p.27-30",1960.11.00.d-GordonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.d-GordonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.d-GordonsBay.pdf,1960.11.00.d,1960.11.00.d,2269,, +1960.11.00.c,Nov-60,1960,Provoked,NEW GUINEA,Western District,Toro Passage,,Fisheries trainee,M,,Left wrist bitten by netted shark placed in bottom of dinghy PROVOKED INCIDENT, N,,"1.4 m [4'6""] blacktip shark","A.M. Rapson, p.147",1960.11.00.c-ToroPassage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.c-ToroPassage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.c-ToroPassage.pdf,1960.11.00.c,1960.11.00.c,2268,, +1960.11.00.b,Nov-60,1960,Unprovoked,PAPUA NEW GUINEA,Central Province,Abau Subdistrict,Fishing,male,M,,"FATAL, severely bitten genitals & thighs ",Y,,,"A. Bleakley; A.M. Rapson, p.150 ",1960.11.00.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.b-Fisherman.pdf,1960.11.00.b,1960.11.00.b,2267,, +1960.10.25,25-Oct-60,1960,Sea Disaster,USA,California,"Off Point Mugu, Ventura County",Ejected from F3H-2 aircraft ,"Lt Cmdr. Lawrence Ernest Scheer USN, pilot",M,36,"No injury, shark hit his foot & circled",N,14h00,,"US Naval Aviation Safety Center; L. Schultz & M. Malin, p.562",1960.10.25-Scheer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.25-Scheer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.25-Scheer.pdf,1960.10.25,1960.10.25,2266,, +1960.10.24,24-Oct-60,1960,Boat,SOUTH AFRICA,Western Cape Province,"Jacobs Bay Reef, Saldanha Bay",Fishing for rock lobsters,"boat, occupants: 2 fishermen",,,"No injury to occupants, shark rammed & bit boat",N,,"White shark, 3.7 m to 4.6 m [12' to 15'] "," D. Davies, p.185; Natal Daily News, 10/25/1960; Natal Witness, 10/26/1960",1960.10.24-JacobsBayfishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.24-JacobsBayfishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.24-JacobsBayfishermen.pdf,1960.10.24,1960.10.24,2265,, +1960.10.02,01-Oct-60,1960,Invalid,AUSTRALIA,New South Wales,North Head,Fishing,B. Hooper ,M,24,"Swept off rocks & presumed to have drowned, shark seen in area", N,,Shark involvement not confirmed,"Letter from L. Schultz to G. P. Whitley, dated 2/24/1961",1960.10.02-NV-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.02-NV-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.02-NV-Hooper.pdf,1960.10.02,1960.10.02,2264,, +1960.10.00.e,Oct-60,1960,Unprovoked,PAPUA NEW GUINEA,New Britain,"East Nakanai, Talasea",Collecting shells,,M,26,Injuries to leg & foot, N,,,"A.M. Rapson, p.149",1960.10.00.e-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.e-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.e-Talasea.pdf,1960.10.00.e,1960.10.00.e,2263,, +1960.10.00.d,Oct-60,1960,Sea Disaster,RED SEA / INDIAN OCEAN,Enroute from Suez to Aden (Yemen),,Cargo ship El Gamil entroute Suez to Yemen (Aden) when her cargo shifted and she sank. 19 Egyption sailors jumped into the water and swam for several hours before being bitten by sharks,,M,,"Sharks attacked sailors in the water, several survivors picked up",Y,,,"V.M. Coppleson (1962), p.260",1960.10.00.d-El-Gamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.d-El-Gamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.d-El-Gamil.pdf,1960.10.00.d,1960.10.00.d,2262,, +1960.10.00.c,Oct-60,1960,Invalid,USA,Florida,Haulover Inlet,Diving,John Taylor Wilson,M,,"Apparently went missing while diving. Helicopter searching for him spotted school of sharks attacking a ""white object"" 15' below the surface",Y,,,"Miami Herald, 10/18/1960",1960.10.00.c-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.c-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.c-Wilson.pdf,1960.10.00.c,1960.10.00.c,2261,, +1960.10.00.b,Oct-60,1960,Boat,SOUTH AFRICA,Western Cape Province,False Bay,Fishing,boat,,,"Shark rammed boat, breaching its hull",N,,"White shark, 18 mm tooth fragment recovered from the hull",T. Wallett,1960.10.00.b-Gordon'sBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.b-Gordon'sBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.b-Gordon'sBayBoat.pdf,1960.10.00.b,1960.10.00.b,2260,, +1960.10.00.a,Oct-60,1960,Invalid,JOHNSTON ISLAND,,,"Free diving / photography, kneeling on sand",Raymond F. McAllister,M,37,"No injury, shark made threat display",N,12h00 to 14h00,,R. McAllister; SAF Case #958,1960.10.00.a-McAllister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.a-McAllister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.a-McAllister.pdf,1960.10.00.a,1960.10.00.a,2259,, +1960.09.24,24-Sep-60,1960,Provoked,USA,South Carolina,"Atlantic Beach, Horry County",Fishing inside net,Theldon Gore,M,,"Multiple superficial lacerations of leg, arm & hand PROVOKED INCIDENT",N,,"2.4 m [8'], 600-lb shark","News (Lancaster, SC), 10/3/1960; H.D. Baldridge, p.142",1960.09.24-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.24-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.24-Gore.pdf,1960.09.24,1960.09.24,2258,, +1960.09.22,22-Sep-60,1960,Sea Disaster,PACIFIC OCEAN,180 miles southeast of Okinawa,,R5D aircraft went down with 29 on board,male,M,,One body sighted but not recovered due to shark activity,N,,,"US Naval Aviation Safety Center; L. Schultz & M. Malin, p.562",1960.09.22-R5Daircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.22-R5Daircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.22-R5Daircraft.pdf,1960.09.22,1960.09.22,2257,, +1960.09.18,18-Sep-60,1960,Boat,AUSTRALIA,Western Australia,Frenchman Bay,,12' dinghy,,,"No injury to occupants, toothmarks on bottom & side of dinghy",N,,3.7 m [12'] shark,P.W. Gilbert,1960.09.18-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.18-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.18-Dinghy.pdf,1960.09.18,1960.09.18,2256,, +1960.09.02,02-Sep-60,1960,Invalid,MARSHALL ISLANDS,Eniwetok Atoll,Lagoon along Sand Island,Free diving / Spearfishing,E.S. Hobson ,M,,"No injury, shark made a threat display",N,12h00,"Grey reef shark, Identified as C. menisorrah, by E.S. Hobson, F. Mautin & E.S. Reese (1961)",E.S. Hobson; SAF Case #955,1960.09.02-E.S.Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.02-E.S.Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.02-E.S.Hobson.pdf,1960.09.02,1960.09.02,2255,, +1960.09.01,01-Sep-60,1960,Invalid,MARSHALL ISLANDS,Eniwetok Atoll,Parry Island,Free diving / Spearfishing,F. Mautin,M,,"No injury, shark made a threat display",N,12h00,"Grey reef shark, Identified by E.S. Hobson, F. Mautin & E.S. Reese (1961)",E.S. Hobson; SAF Case #954,1960.09.01-Mautin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.01-Mautin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.01-Mautin.pdf,1960.09.01,1960.09.01,2254,, +1960.08.30,30-Aug-60,1960,Unprovoked,USA,New Jersey,"Ocean City, Cape May County",Swimming 3 miles offshore,Richard Chung,M,25,Right leg severely lacerated,N,17h15,,"R. Chung; Dr. Godfrey; V.M. Coppleson (1962), p.249; R. Skocik, p.172",1960.08.30-Chung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.30-Chung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.30-Chung.pdf,1960.08.30,1960.08.30,2253,, +1960.08.29,29-Aug-60,1960,Sea Disaster,SENEGAL,Cap-Vert Peninsula,off Dakar,Air disaster: crash of Air France Super Constellation ,,,,All 63 on board perished when the aircraft hit the water. Sharks hampered retrieval of bodies,Y,,,"The Daily Telegram (Colombus, 8/30/1960, p.3",1960.08.29-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.29-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.29-Senegal.pdf,1960.08.29,1960.08.29,2252,, +1960.08.25,25-Aug-60,1960,Invalid,USA,Texas,30 miles east of Corpus Christi,Aircraft crashed into sea,Naval aviator,M,,"Partial human remains spotted by helicopter, shark involvement, if any, may have been post-mortum",Y,,3 hammerhead sharks nearby,"US Naval Aviation Safety Center; L. Schultz & M. Malin, p.558; SAF Case #1013",1960.08.25-NavalAviator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.25-NavalAviator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.25-NavalAviator.pdf,1960.08.25,1960.08.25,2251,, +1960.08.24,24-Aug-60,1960,Unprovoked,USA,Connecticut,"Off Eames Monument, Bridgeport, Fairfield County",Free diving,Clyde Trudeau,M,38,Superficial laceration of left arm,N,13h35,,M. McMahon,1960.08.24-Trudeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.24-Trudeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.24-Trudeau.pdf,1960.08.24,1960.08.24,2250,, +1960.08.22.R.,Reported 22-Aug-1960,1960,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,,Free-diving,"""a native""",M,,Lost left arm,N,,,"The Age, 8/22/1960",1960.08.22.R-Milne-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.R-Milne-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.R-Milne-PNG.pdf,1960.08.22.R.,1960.08.22.R.,2249,, +1960.08.22,22-Aug-60,1960,Unprovoked,USA,New Jersey,"Seaside Park, Ocean County",,Thomas McDonald,M,14,Knee ripped to bone,N,,,"T. Helm, p.250; R. Skocik, p.172",1960.08.22.a-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.a-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.a-McDonald.pdf,1960.08.22,1960.08.22,2248,, +1960.08.21,21-Aug-60,1960,Unprovoked,USA,New Jersey,"Sea Girt, Monmouth County",Standing in knee-deep water,John Brodeur,M,24,"Lower right leg bitten, surgically amputated 10 days later",N,16h00,,"C. G. Samaha, M.D., J. Filoramo; H. Axelrod; R. Skocik, p.172;",1960.08.21-Brodeur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.21-Brodeur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.21-Brodeur.pdf,1960.08.21,1960.08.21,2247,, +1960.08.14,14-Aug-60,1960,Invalid,MOZAMBIQUE,Delagoa Bay,Bella Vista,boat with 46 people on board capsized,,,,1 survivor,N,,Shark involvement not confirmed,"L. Schultz & M. Malin, p.563; SAF Case #760",1960.08.14-NV-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.14-NV-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.14-NV-Mozambique.pdf,1960.08.14,1960.08.14,2246,, +1960.08.10,10-Aug-60,1960,Provoked,USA,Florida,Key Largo Sound,Holding shark on leader & dangling it above the water,Richard Henn,M,15,Right hand bitten by hooked shark PROVOKED INCIDENT,N,20h00,"Lemon shark, 1164 mm, immature male, identified by V.G. Springer",D. Mayo; V. Springer,1960.08.10-Henn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.10-Henn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.10-Henn.pdf,1960.08.10,1960.08.10,2245,, +1960.08.04.b,04-Aug-60,1960,Provoked,ENGLAND,In the English Channel ,Off the south Devon coast,Helping angler land a shark,William Capel,M,25,Arm lacerated elbow to wrist PROVOKED INCIDENT,N,,80-lb hooked shark,"Newcastle Morning Herald (NSW, Australia), 8/6/1960; Japan Times, 8/6/1960; H.D. Baldridge, p.15",1960.08.04.b-Capel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.b-Capel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.b-Capel.pdf,1960.08.04.b,1960.08.04.b,2244,, +1960.08.04.a,04-Aug-60,1960,Unprovoked,USA,Delaware,"Mispillion Light, Delaware Bay","Fishing, Struck by another shark when removing shark from line",Russell Saylor,M,46,Hand lacerated,N,,2.4 m [8'] shark,"Index (Dover, Delaware), 8/12/1960; V.M. Coppleson (1962), p.249;",1960.08.04.a-Saylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.a-Saylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.a-Saylor.pdf,1960.08.04.a,1960.08.04.a,2243,, +1960.08.00,Aug-60,1960,Unprovoked,USA,South Carolina,Parris Island,Swimming from camp,Young Marine recruit,M,,FATAL,Y,,,"V.M. Coppleson (1962), p.249",1960.08.00-marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.00-marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.00-marine.pdf,1960.08.00,1960.08.00,2242,, +1960.07.27,27-Jul-60,1960,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,"Taupota, Samarai ",Spearfishing,John Klaso,M,25,"Arm severed, torso severely lacerated",N,P.M.,,"L.C. Yelland; I.S. Reid; A.M. Rapson, p.150",1960.07.27-Klaso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.27-Klaso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.27-Klaso.pdf,1960.07.27,1960.07.27,2241,, +1960.07.05,05-Jul-60,1960,Unprovoked,USA,Mississippi,Mississippi City,Pulling raft out to ride to shore,"Henry Hanson, Jr.",M,17,Leg bitten,N,,,"V.M. Coppleson (1962), p.249",1960.07.05-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.05-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.05-Hanson.pdf,1960.07.05,1960.07.05,2240,, +1960.07.03,03-Jul-60,1960,Provoked,USA,Virginia,Hog Island,"Fishing, tossing netted shark onboard",Elsworth Smith,M,41,Right arm bitten PROVOKED INCIDENT,N,12h00,"""sand shark""","Times (Salisbury, Maryland), 7/7/1960 ",1960.07.03-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.03-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.03-Smith.pdf,1960.07.03,1960.07.03,2239,, +1960.07.02.a,02-Jul-60,1960,Unprovoked,PAPUA NEW GUINEA,Madang,"Bimat, Bogia",Fishing,an Aid Post orderly,M,,Right buttock slashed,N,,,"A.M. Rapson, p.150",1960.07.02-Orderly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.02-Orderly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.02-Orderly.pdf,1960.07.02.a,1960.07.02.a,2238,, +1960.06.29,29-Jun-60,1960,Provoked,USA,South Carolina,"Little River Beach, Horry County",Surf fishing,Monte Gray,M,,"Lacerations to calf, wrist & thumb by hooked shark. PROVOKED INCIDENT",N,14h00,7' shark,"C. Creswell, GSAF; Florence Morning News 6/30/1960",1960.06.29-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.29-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.29-Gray.pdf,1960.06.29,1960.06.29,2237,, +1960.06.27.b,27-Jun-60,1960,Provoked,NEW ZEALAND,Cook Strait,Tory Channel,Shark fishing,boat (a whale chaser),,,Harpooned shark bit boat PROVOKED INCIDENT,N,,"White shark, 15'2"" ","The Age, 6/28/1960; SAF Case #772",1960.06.27-b-Harpooned-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27-b-Harpooned-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27-b-Harpooned-shark.pdf,1960.06.27.b,1960.06.27.b,2236,, +1960.06.27.a,27-Jun-60,1960,Provoked,NORTH SEA,"Unknown, treated at Wick, SCOTLAND","On board East German fishing trawler, I Mai",Fishing,Hans Yoachim Schapper,M,18,Right arm bitten by shark taken onboard in net PROVOKED INCIDENT,N,,"""A small shark""","Edinburg Evening News, 7/6/1960; Dundee Evening Telegraph, 7/6/1960; H.D. Baldridge, p.14; Clark, p.209",1960.06.27.a-Schapper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27.a-Schapper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27.a-Schapper.pdf,1960.06.27.a,1960.06.27.a,2235,, +1960.06.24,24-Jun-60,1960,Unprovoked,USA,Florida,"2 miles east of Dania Beach, Broward County",Scuba diving,William F. Fey,M,39,"No injury, shark harrassed diver & attempted to bite his swimfins",N,11h00,"Mako shark, 1.8 m to 2.1 m [6' to 7'] with hook & wire leader caught in mouth",W.F. Fey,1960.06.24-Fey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.24-Fey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.24-Fey.pdf,1960.06.24,1960.06.24,2234,, +1960.06.07,07-Jun-60,1960,Invalid,USA,California,"10 miles off Santa Barbara, Santa Barbara County","Testing classified underwater electronic gear for Raytheon Corporation, vessel torn apart by explosion","Paul Timothy Lovette, Dr. Neal Beardsley, James C. Russell, Harold H. Mackie, Dale Howard & Diego J. Terres on 42' Navy craft, Marie",M,"37, 67, 35, 27, ? & 27","Legs & arms bitten, coroner unable to determine if injuries occurred before death.",N,,,"L.A. Times, 6/10/1960; L. Schultz & M. Malin, p.560; SAF Case #724",1960.06.07-Raytheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.07-Raytheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.07-Raytheon.pdf,1960.06.07,1960.06.07,2233,, +1960.06.05,05-Jun-60,1960,Unprovoked,PHILIPPINES,Corregidor Island,,"Diving for shells, saw shark circling wife near the surface, intercepted shark & it pulled him beneath the water",Leonardo Mendoza,M,58,"FATAL, body not recovered",Y,Morning,,"Manila Daily Bulletin 6/6/1960; V.M. Coppleson (1962), p.254 ",1960.06.05-Mendoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.05-Mendoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.05-Mendoza.pdf,1960.06.05,1960.06.05,2232,, +1960.06.04,04-Jun-60,1960,Unprovoked,USA,Georgia,"North picnic area, Jekyll Island, Glynn County",Swimming,"John William Jones, an Ensign in US Navy",M,24,Lower left leg & foot bitten,N,15h45,,"W. L. Jones, M.D.; SAF Cases # 897 & 1476",1960.06.04-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.04-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.04-Jones.pdf,1960.06.04,1960.06.04,2231,, +1960.05.29,29-May-60,1960,Unprovoked,PANAMA,San Blas Islands,Off Diable Island,"Spearfishing, free diving, possibly ascended into path of cruising shark",Eddie Dawkins,M,27,Face lacerated,N,08h30,,"E. Dawkins, M.D.",1960.05.29-Dawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.29-Dawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.29-Dawkins.pdf,1960.05.29,1960.05.29,2230,, +1960.05.24,24-May-60,1960,Unprovoked,BERMUDA,Paget,Elbow Beach / Coral Beach,Free diving but treading water at surface,Louis Goiran,M,25,Foot bitten,N,15h00,"Dusky shark, 2.7 m [9'] dusky shark C. obscurus identified by S. Springer on tooth recovered","L.Goiran; S. Waterman; Royal Gazette (Hamilton, Bermuda), 5/25/1960; V.M. Coppleson (1962), p.246; Randall in Sharks & Survival, p.354",1960.05.24-Goiran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.24-Goiran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.24-Goiran.pdf,1960.05.24,1960.05.24,2229,, +1960.05.19,19-May-60,1960,Unprovoked,USA,California,"Aptos, Santa Cruz County",Swimming ,Suzanne Marie Theriot,F,16,"Left leg bitten, surgically amputated below the knee",N,13h00,"White shark, 4 m to 5 m [13' to 16.5'] ","D. Miller & R. Collier; R. Collier, pp.31-32; V.M. Coppleson (1962), p.249; H.D. Baldridge, p.71 ",1960.05.19-Theriot_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.19-Theriot_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.19-Theriot_Collier.pdf,1960.05.19,1960.05.19,2228,, +1960.05.16,16-May-60,1960,Provoked,USA,Florida,"Lignum Vitae Channel, Florida Keys, Monroe County",,"16' skiff, occupant: W.A. Starck, II",,,"No injury, harpooned shark bit hull, leaving tooth fragments. PROVOKED INCIDENT",N,,"Lemon shark, 1.8 m [6'] male, N. breviostris, identified by W.A. Stark II, later the same day a 6'8"" pregnant female lemon shark bit the bow of the boat","Randall in Sharks and Survival, p.351 Note: Stark's boat also rammed by shark a lemon shark several years earlier",1960.05.16-Starck-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.16-Starck-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.16-Starck-boat.pdf,1960.05.16,1960.05.16,2227,, +1960.05.01,01-May-60,1960,Unprovoked,PAPUA NEW GUINEA,Madang,Taludig,,Anonymous,,,FATAL,Y,,,"A.M. Rapson, p.150",1960.05.01-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.01-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.01-Taludig.pdf,1960.05.01,1960.05.01,2226,, +1960.04.30,30-Apr-60,1960,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Treading water,Mike Hely,M,16,Multiple major injuries,N,15h35,"White shark, 2.1 m [7'] based on tooth pattern","M. Hely, E. Kerns, M. Levine, GSAF; G.D. Campbell; D. Davies, pp.102-108; Tim Wallett",1960.04.30-Hely.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.30-Hely.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.30-Hely.pdf,1960.04.30,1960.04.30,2225,, +1960.04.24,24-Apr-60,1960,Unprovoked,USA,California,"Tomales Point, Marin County",Skindiving for abalone (but at surface),Frank I. Gilbert,M,48,Foot & swim fin bitten ,N,14h00,"White shark, 4.9 m [16'] ","F.I. Gilbert; Follett, p. 192-198; D. Miller & R. Collier; R. Collier, pp.30-31; V.M. Coppleson (1962), p.255; H.D. Baldridge, p.71",1960.04.24-Gilbert_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.24-Gilbert_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.24-Gilbert_Collier.pdf,1960.04.24,1960.04.24,2224,, +1960.04.22,22-Apr-60,1960,Provoked,AUSTRALIA,Western Australia,Rottnest Island,"Fishing, hauling in a set line",Ted Nelson onboard fishing boat Wayfarer,M,,4 fingers of left hand were lacerated by shark he had shot in the head PROVOKED INCIDENT,N,,"Bronze whaler shark, 3 m [10'], 200-lb","L. Schultz & M. Malin, p.546",1960.04.22-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.22-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.22-Nelson.pdf,1960.04.22,1960.04.22,2223,, +1960.04.20.R,Reported 20-Apr-1960,1960,Provoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Fishing,P. Wagener,M,,Gaffed shark bit his ankle PROVOKED INCIDENT,N,,"Raggedtooth shark, 100-lb ","Eastern Province Herald, 4/20/1960",1960.04.20.R-Wagener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.20.R-Wagener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.20.R-Wagener.pdf,1960.04.20.R,1960.04.20.R,2222,, +1960.04.14,14-Apr-60,1960,Invalid,BERMUDA,"33N, 68W",Royal Canadian Navy CS2F-1 aircraft ditched in the sea 180 nautical miles WNW of Bermuda at 01h30,Floating on a raft,"Crew of aircraft: McGreevy, Beakley, Rosenthal, Ryan & Hodge",M,"21, 34,24 & 35","No injury, shark bumped raft",N,09h00 - 09h30,Five 1.8 m [6'] sharks,"G.S. Beakley, RCN; L. Schultz & M. Malin, p.557; SAF Case #886",1960.04.14-Beakley-recheck text-March.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.14-Beakley-recheck text-March.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.14-Beakley-recheck text-March.pdf,1960.04.14,1960.04.14,2221,, +1960.04.12,12-Apr-60,1960,Unprovoked,AUSTRALIA,New South Wales,"Horseshoe Bay, near Kempsey",Surfing,Ivan Chandler,M,17,Right arm & side bruised,N,Late afternoon,"White shark, 3.7 m [12'] ","Macleay Argus (NSW), 4/14/1960; V.M. Coppleson (1962), p.245",1960.04.12-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.12-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.12-Chandler.pdf,1960.04.12,1960.04.12,2220,, +1960.04.10,10-Apr-60,1960,Provoked,AUSTRALIA,Western Australia,Off Rottnest Island,"Spearfishing, shot a sandtiger shark. Cord to spear tangled round his legs & a wave washed him onto a reef.",Mick Coleman,M,,"Bruises & minor injuries from reef, not the shark PROVOKED INCIDENT",N,,"Sandtiger shark, 2.1 m [7'] ","V.M. Coppleson (1962), p.252",1960.04.10-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.10-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.10-Coleman.pdf,1960.04.10,1960.04.10,2219,, +1960.04.03.b,03-Apr-60,1960,Unprovoked,AUSTRALIA,Victoria,"Canadian Bay near Mount Eliza, 30 miles from Melbourne",Spearfishing,William Black,M,,Minor cuts & bruises on face & neck,N,,1.5 m [5'] shark,"Sydney Morning Herald, 4/4/1960; H.D. Baldridge,p.133",1960.04.03.b-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.b-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.b-Black.pdf,1960.04.03.b,1960.04.03.b,2218,, +1960.04.03.a,03-Apr-60,1960,Unprovoked,AUSTRALIA,New South Wales,Off Broughton Island near Port Stephens,"Speared a grouper, saw shark but it came for him instead of the fish so he fired spear into sharks mouth. Then shark took grouper but unable to swallow because of the spear in its mouth.",Kenneth Morris,M,,Minor injuries to hand,N,12h00,"Bronze whaler shark, 3.7 m [12'] identified by G.P. Whitley based on description","G. P. Whitley; V.M. Coppleson (1962), p.252",1960.04.03.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.a-Morris.pdf,1960.04.03.a,1960.04.03.a,2217,, +1960.04.01,01-Apr-60,1960,Provoked,AUSTRALIA,South Australia,Hog Bay,Shark fishing,"launch, occupant Clive Whitrow, Dick Kuhne & Jim Pergola",,,Hooked shark bit stern PROVOKED INCIDENT,N,,White shark,"The News (Adelaide), 4/1/1960",1960.04.01-WhitrowLaunch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.01-WhitrowLaunch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.01-WhitrowLaunch.pdf,1960.04.01,1960.04.01,2216,, +1960.04.00.c,Apr-60,1960,Unprovoked,FIJI,Vanua Levu,Off the Bua coast,Fishing in shoulder-deep water,Fijian woman,F,,"FATAL, legs bitten ",Y,,,"Wellington Evening Post, 4/29/1960",1960.04.00.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.c-woman.pdf,1960.04.00.c,1960.04.00.c,2215,, +1960.04.00.b,Apr-60,1960,Provoked,PHILIPPINES,Luzon Island,Bataan,"Fishing, hooked shark towed boat out to sea, storm swamped boat",Nicaso Balanoba & Julian Dona,M,,"FATAL, due to drowning PROVOKED INCIDENT",Y,,,"P. Gilbert (1961); H.D. Baldridge, p.152",1960.04.00.b-Balanoba-Dona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.b-Balanoba-Dona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.b-Balanoba-Dona.pdf,1960.04.00.b,1960.04.00.b,2214,, +1960.04.00.a,Apr-60,1960,Boat,SOUTH AFRICA,Western Cape Province,Saldanha Bay,Fishing,5 m skiboat,,,Shark rammed boat & bit transom,N,,White shark (tooth fragments recovered),"T. Wallett, p.27",1960.04.00.a-SaldanhaSkiboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.a-SaldanhaSkiboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.a-SaldanhaSkiboat.pdf,1960.04.00.a,1960.04.00.a,2213,, +1960.03.31,31-Mar-60,1960,Unprovoked,USA,Florida,"Off Boca Raton Hotel & Club, Boca Raton, Palm Beach County",Treading water,Robert B. Winkler,M,42,"Ankle bitten, hand injured while striking shark",N,12h00,"1.2 m [4'], possibly larger shark","V.M. Coppleson (1962), p.249, erroneously lists the date as 3/31/1961; H.D. Baldridge, p.142",1960.03.31-Winkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.31-Winkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.31-Winkler.pdf,1960.03.31,1960.03.31,2212,, +1960.03.28,28-Mar-60,1960,Unprovoked,GUAM,,,"Spearfishing, carrying fish on belt",Enrique Matao,M,44,Thigh bitten,N,12h00,1.2 m [4'] shark,"V.M. Coppleson (1962), p.254; H.D. Baldridge, p.142",1960.03.28-Metao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.28-Metao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.28-Metao.pdf,1960.03.28,1960.03.28,2211,, +1960.02.29,29-Feb-60,1960,Unprovoked,AUSTRALIA,Tasmania,Ralph Bay,"Wading, fishing for flounder",Malcolm Robertson & Tom Hasler,M,30 & 32,"No injury, Robertson knocked over & Hasler brushed by a shark",N,Night,Two 2.1 m [7'] sharks,Hobart Mercury 3/3/1960,1960.02.29-Robertson-Hasler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.29-Robertson-Hasler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.29-Robertson-Hasler.pdf,1960.02.29,1960.02.29,2210,, +1960.02.27.b,27-Feb-60,1960,Unprovoked,NEW ZEALAND,North Island,"Mangawhai, near Wellsford",Spearfishing,Laurie Ross ,M,22,"No injury, leg bumped by shark's tail",N,,"Bronze whaler shark,4 m [13'] ","R.D. Weeks, GSAF; Auckland Star, 2/29/1960; V.M. Coppleson (1962), pp.253-254",1960.02.27.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.b-Ross.pdf,1960.02.27.b,1960.02.27.b,2209,, +1960.02.27.a,27-Feb-60,1960,Invalid,USA,Hawaii,"Between Keawakapu & Makena, Maui",Spearfishing,John Benjamin,M,36,Left forearm lacerated,N,08h00,"According to Benjamin, the injury was inflicted by a barracuda, not a shark","Honolulu Star Bulletin, 3/1 /1960; V.M. Coppleson (1962), p.246; J. Borg, p.73; L. Taylor (1993), pp.100-101; SAF Case #662",1960.02.27.a-Benjamin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.a-Benjamin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.a-Benjamin.pdf,1960.02.27.a,1960.02.27.a,2208,, +1960.02.24,24-Feb-60,1960,Provoked,SENEGAL,Casamance,Ziguinchor,Fishing,Souleymane S.,M,,Calf bitten by shark caught in net PROVOKED INCIDENT,N,,,J. Cadenat; Dr. T. Farah,1960.02.24-Souleyman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.24-Souleyman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.24-Souleyman.pdf,1960.02.24,1960.02.24,2207,, +1960.02.19,19-Feb-60,1960,Unprovoked,PAPUA NEW GUINEA,Central Province,"Tupuselei Village, about 40 miles east of Port Moresby",Spearfishing,Doas Hehuni,M,26,"FATAL, legs bitten ",Y,,"Tiger shark, 3.4 m [11'] captured","A.M. Rapson, p.150; V.M. Coppleson (1962), p.254",1960.02.19-Tupuselei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.19-Tupuselei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.19-Tupuselei.pdf,1960.02.19,1960.02.19,2206,, +1960.02.10.,10-Feb-60,1960,Provoked,AUSTRALIA,New South Wales,Near Bondi Beach,Shark fishing,"12' open motor boat, occupants Jack Platt & Peter Keyes",,,No injury to occupants. Hooked shark rammed boat PROVOKED INCIDENT,N,,"Tiger shark, 14' ","Sydney Daily Telegraph, 2/11/1960",1960.02.10-Bondi-Tiger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.10-Bondi-Tiger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.10-Bondi-Tiger.pdf,1960.02.10.,1960.02.10.,2205,, +1960.02.07,07-Feb-60,1960,Provoked,AUSTRALIA,New South Wales,Wattamolla National Park,Spearfishing,John Gilles & Harry Dowswell,M,20,"No injury, speared shark towed Gilles 200 yards & tore hole in diving suit, and hit Dowswell's back with its tail PROVOKED INCIDENT",N,,"Grey nurse shark, 2.9 m [9'6""] ",Unidentified press clipping;. SAF Case #203,1960.02.07-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.07-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.07-Gillies.pdf,1960.02.07,1960.02.07,2204,, +1960.02.03,03-Feb-60,1960,Invalid,USA,Hawaii,Maui,S2F-1 airplane crashed immediately after carrier take-off,Crew of Anti-submarine Squadron 23,,,"Of crew of 4, only 1 person survived (broken legs but no shark bites). Within 20 minutes of his rescue large sharks were in area. No remains of other 3 crew recovered, and shark involvement in their deaths is questionable. ",Y,02h00,,"L. Schultz & M. Malin, p.562; SAF Case #870 ",1960.02.03-S2F-1-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.03-S2F-1-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.03-S2F-1-aircraft.pdf,1960.02.03,1960.02.03,2203,, +1960.01.30,30-Jan-60,1960,Unprovoked,PAPUA NEW GUINEA,Madang (WO),"Off Taludig Village, at mouth of the Murnass River",,"Upad, a boy",M,,"Lower left leg bitten, surgically amputated",N,,"3.5 m [11'6""] shark captured","A.M. Rapson, p.150; V.M. Coppleson (1962), p.248 ",1960.01.30-Upad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.30-Upad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.30-Upad.pdf,1960.01.30,1960.01.30,2202,, +1960.01.26,26-Jan-60,1960,Sea Disaster,,"Between Timor & Darwin, Australia",,Portuguese Airliner with 9 people aboard went down. ,,,,"As searchers approached wreckage, sharks circled one canoe & seized oar from another.",N,,,"V.M. Coppleson (1962), p.260",1960.01.26-Portuguese airliner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.26-Portuguese airliner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.26-Portuguese airliner.pdf,1960.01.26,1960.01.26,2201,, +1960.01.21,21-Jan-60,1960,Boat,AUSTRALIA,South Australia,Millicent,,"13' dinghy, occupant S. Smith, Leenee Dee & Marie Farmer",,,"No injury to occupants, shark lifted boat",N,,Blue pointer,Hobart Mercury 1/22/1960,1960.01.21 - Smith dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.21 - Smith dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.21 - Smith dinghy.pdf,1960.01.21,1960.01.21,2200,, +1960.01.16,16-Jan-60,1960,Unprovoked,AUSTRALIA,New South Wales,"Just below Roseville Bridge, opposite Killarney picnic reserve, Middle Harbor, Sydney",Free diving,Kenneth William Murray,M,13,"FATAL, right leg severed above knee, surgically amputated but died 9 days later ",Y,15h30,Bull shark,"T.W. Brown, pp.1 -6; H.D. Baldridge, p.196; A. Sharpe, pp76-77; H. Edwards, pp.100 & 108",1960.01.16-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.16-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.16-Murray.pdf,1960.01.16,1960.01.16,2199,, +1960.01.13,13-Jan-60,1960,Provoked,AUSTRALIA,Western Australia,Geraldton,"Fishing, lifting shark out of craypot",Ron Christmas,M,,Upper leg bitten PROVOKED INCIDENT,N,P.M.,Wobbegong shark,"Western Australian Perth Daily News, 1/4/1960",1960.01.13-Christmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.13-Christmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.13-Christmas.pdf,1960.01.13,1960.01.13,2198,, +1960.01.07,07-Jan-60,1960,Boat,AUSTRALIA,Tasmania,Eaglehawk Neck,Setting crayfish pots,"16' boat, occupant: W. Lonergan",,,"No injury to occupant, shark rammed boat",N,09h00,4.9 m [16'] shark,"G.P. Whitley citing Mercury (Hobart), 1/8/1960",1960.01.07-Lonergan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.07-Lonergan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.07-Lonergan.pdf,1960.01.07,1960.01.07,2197,, +1960.01.01,01-Jan-60,1960,Provoked,SOUTH AFRICA,Western Cape Province,Muizenberg,"Standing, watching seine netters",Mrs. Burman,F,,Left leg bitten by shark that escaped net PROVOKED INCIDENT,N,,,GSAF,1960.01.01-Burman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.01-Burman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.01-Burman.pdf,1960.01.01,1960.01.01,2196,, +1960.00.00.j,1960,1960,Unprovoked,NICARAGUA ,Pacific coast,San Jan del Sur,Bathing,boy,M,,Survived,N,Morning,3.7 m to 4.6 m [12' to 15'] shark,J. McAlpine,1960.00.00.j-Nicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.j-Nicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.j-Nicaragua.pdf,1960.00.00.j,1960.00.00.j,2195,, +1960.00.00.i,1960,1960,Unprovoked,GRENADA,St. Georges ,Black Point Bay,Spearfishing,Julian Bain,M,9,Toe bitten,N,,,"E. Pace, FSAF",1960.00.00.i-Bain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.i-Bain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.i-Bain.pdf,1960.00.00.i,1960.00.00.i,2194,, +1960.00.00.h,Early summer 1960,1960,Invalid,CARIBBEAN SEA,,"Between Key West, Florida & Guantanamo Bay, Cuba",Aircraft crashed into sea,"male, airline pilot",M,,"Questionable. Recovered flight gear was ""completely shredded by sharks"" but pilot may have died when plane hit the water,",N,,,U.S. Naval Aviation Safety Center,1960.00.00.h-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.h-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.h-aircraft.pdf,1960.00.00.h,1960.00.00.h,2193,, +1960.00.00.g,Late 1960s,1960,Unprovoked,SRI LANKA,Eastern Province,Pigeon Island,Spearfishing,Trevor Ferdinands,M,,No injury,N,,Blacktail reef shark,R I. DeSilva,1960.00.00.g-Ferdinands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.g-Ferdinands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.g-Ferdinands.pdf,1960.00.00.g,1960.00.00.g,2192,, +1960.00.00.f,1960s,1960,Unprovoked,SRI LANKA,Eastern Province,"Manayaweli Cove, Trincomalee",Collecting ornamental fish,Rodney Jonklass,M,,"No injury, beat off shark with his collecting net",N,,Blacktip reef shark,R I. DeSilva,1960.00.00.f-Jonklaas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.f-Jonklaas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.f-Jonklaas.pdf,1960.00.00.f,1960.00.00.f,2191,, +1960.00.00.e,1960-1961,1960,Unprovoked,FIJI,Northwest of Viti Levu,"Covull Reef, near Lautoka",Spearfishing,Lindsay Phillips,M,,"Right arm abraded, circular piece of tissue removed from left calf",N,,,"V.M Coppleson (1962), p.253",1960.00.00.e-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.e-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.e-Phillips.pdf,1960.00.00.e,1960.00.00.e,2190,, +1960.00.00.d,1960,1960,Unprovoked,PAPUA NEW GUINEA,Madang,,"Spear fishing, removing fish from spear",Sek,M,16,"FATAL, foot severed, hip bitten",Y,,,A.M. Rapson,1960.00.00.d-Sek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.d-Sek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.d-Sek.pdf,1960.00.00.d,1960.00.00.d,2189,, +1960.00.00.c,1960,1960,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"West Nakanai, Talasea",Fishing,male,M,20,Slight lacerations to leg,N,,,"A.M. Rapson, p.150",1960.00.00.c-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.c-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.c-Talasea.pdf,1960.00.00.c,1960.00.00.c,2188,, +1960.00.00.b,Ca. 1960,1960,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Miss Fillardo,F,5,FATAL,Y,,,"M. Levine, GSAF",1960.00.00.b-Fillardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.b-Fillardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.b-Fillardo.pdf,1960.00.00.b,1960.00.00.b,2187,, +1960.00.00.a,Ca. 1960,1960,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Wading,Joyce Greig,F,,"Heel lacerated, hand lacerated & abraded",N,11h00,2.1 m [7'] shark,"T. Greig, M. Levine, GSAF",1960.00.00.a-Greig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.a-Greig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.a-Greig.pdf,1960.00.00.a,1960.00.00.a,2186,, +1959.12.29,29-Dec-59,1959,Boat,AUSTRALIA,Queensland,Scotts Point Beach ,Paddling,"12' ski, occupants: Bill Dyer & Cliff Burgess ",,,No injury to occupants,N,Afternoon,3.7 m [12'] tiger shark,"Herald, (Redcliffe), 12/31/1959",1959.12.29-Burgess-Dyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.29-Burgess-Dyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.29-Burgess-Dyer.pdf,1959.12.29,1959.12.29,2185,, +1959.12.28,28-Dec-59,1959,Boat,AUSTRALIA,New South Wales,"Leichardt, Sydney",Fishing,"plywood dinghy, occupants: Jack Deegan & Trevor Millett",,50 & 30,No injury to occupants,N,Late night,2.4 m [8'] shark,"Daily Mirror (Sydney), 12/29/1959",1959.12.28-NV-Deegan-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.28-NV-Deegan-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.28-NV-Deegan-dinghy.pdf,1959.12.28,1959.12.28,2184,, +1959.12.26,26-Dec-59,1959,Unprovoked,PAPUA NEW GUINEA,Rigo subdistrict,Kaparoka,Swimming underneath house on pilings,Manama Mari,,13,"FATAL, right leg severed",Y,,,"A. M. Rapson, p.150; P. Gilbert, L. Schultz & S. Springer (1960); Note: A. Resciniti, p.26, lists date as 26-Nov-1959",1959.12.26-Mari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.26-Mari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.26-Mari.pdf,1959.12.26,1959.12.26,2183,, +1959.12.19.b,19-Dec-59,1959,Unprovoked,AUSTRALIA,Queensland,"Off Wynnum in Moreton Bay, near Brisbane",Dived from dinghy to retrieve oar in heavy seas,Stanley Arthur Mullen,M,29,FATAL,Y,06h00,,"P. Gilbert, L. Schultz & S. Springer (1960); V.M. Coppleson (1962), p.245; T. Peake, GSAF",1959.12.19.b-Mullens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.b-Mullens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.b-Mullens.pdf,1959.12.19.b,1959.12.19.b,2182,, +1959.12.19.a,19-Dec-59,1959,Sea Disaster,PHILIPPINES,Masbate,Balud,ship M.V. Rizal sank during typhoon,"Mamerto Daanong, Tomas Inog & others",M,,"65 people survived, 27 perished. Several people were bitten & one man lost his leg to a shark.",Y,12h15,,"V.M. Coppleson (1962), p.259 ",1959.12.19.a - MV-Rizal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.a - MV-Rizal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.a - MV-Rizal.pdf,1959.12.19.a,1959.12.19.a,2181,, +1959.12.11,11-Dec-59,1959,Provoked,AUSTRALIA,Victoria,"Altona, Melbourne","Spearfishing, Smith & Walker touched shark with tip of their guns",Barry Smith & Harold Walker,M,17 & 35,"Smith hit by tail of shark, Walker sustained cuts on his wrist PROVOKED INCIDENT",N,,2.7 m [9'] shark,"V.M. Coppleson (1962), p.252;",1959.12.11-Smith-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.11-Smith-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.11-Smith-Walker.pdf,1959.12.11,1959.12.11,2180,, +1959.12.07,07-Dec-59,1959,Invalid,AUSTRALIA,South Australia,Laura Bay,Spearfishing,3 males,M,,"No injury, shark made threat display, one diver shot shark in jaw, then they killed shark with knives ",N,,,"V.M. Coppleson (1962), p.252",1959.12.07-LauraBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.07-LauraBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.07-LauraBay.pdf,1959.12.07,1959.12.07,2179,, +1959.12.03,03-Dec-59,1959,Boat,NEW ZEALAND,North Island,Moko Hinau ,Fishing for snapper,"dinghy, occupant: Don Ashton",M,,"No injury to occupant, shark sank dinghy",N,14h00,"Mako shark, 4.3 m [14']",Captain C. Morris,1959.12.03-boat-Ashton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.03-boat-Ashton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.03-boat-Ashton.pdf,1959.12.03,1959.12.03,2178,, +1959.12.00,Dec-59,1959,Sea Disaster,MALDIVE ISLANDS,400 miles southeast of Sri Lanka,,17 Maldivians adrift in open boat for 31 days,child,F,3,FATAL,Y,,,"Dundee Evening Telegraph, 12/12/1959; P. Gilbert; V.M. Coppleson (1962), pp.247 & 259",1959.12.00.a-b-Maldivians.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.00.a-b-Maldivians.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.00.a-b-Maldivians.pdf,1959.12.00,1959.12.00,2177,, +1959.11.29,29-Nov-59,1959,Unprovoked,AUSTRALIA,Victoria,"Fairhaven Beach, Lorne",Body surfing,Christopher Holland,M,19,"Thighs bitten, right hand lacerated",N,14h45,3.5 m [11.5'] shark,"Evening Star (Washington, D.C.), 11/30/1959; Sydney Morning Herald, 12/2/1959; A. Sharpe, p.114;P. Gilbert, L. Schultz & S. Springer (1960)",1959.11.29-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.29-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.29-Holland.pdf,1959.11.29,1959.11.29,2176,, +1959.11.28,28-Nov-59,1959,Unprovoked,AUSTRALIA,Queensland,"North Burleigh, near Brisbane",Standing in chest-deep water,David Beaver,M,17,Right foot lacerated,N,07h30,"""a small shark""","Sunday Mail (Brisbane), 11/29/1959",1959.11.28-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.28-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.28-Beaver.pdf,1959.11.28,1959.11.28,2175,, +1959.11.22,22-Nov-59,1959,Unprovoked,AUSTRALIA,Queensland,"Surfer's Paradise, Northcliffe",Trailing the field in a surf race,Jeffrey Francis Sasche (or Sachse),M,19,"Lower left leg bittten, hand abraded",N,11h00,3 m to 4.3 m [10' to 14'] shark,"Daily Mirror (Sydney) 11/23/1959; G.P. Whitley; P. Gilbert, L. Schultz & S. Springer (1960); J. Green, p.35",1959.11.22-Sachse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.22-Sachse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.22-Sachse.pdf,1959.11.22,1959.11.22,2174,, +1959.11.16,16-Nov-59,1959,Invalid,USA,Louisiana,120 miles southeast of New Orleans,National Airlines DC7B enroute from Miami to Los Angeles with 42 or 46 people on board went down in heavy fog,All on board perished in the crash,,,Body recovery efforts were hampered by large sharks but sharks did not cause the deaths. ,Y,01h32,3.7 to 4.6 m [12' to 15'] sharks,"Washington Post, 11/17/1959; SAF Case #591",1959.11.16-AircraftDC7B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.16-AircraftDC7B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.16-AircraftDC7B.pdf,1959.11.16,1959.11.16,2173,, +1959.11.15,15-Nov-59,1959,Boat,SOUTH AFRICA,Western Cape Province,"Swartklip, False Bay",Fishing for tunny,"boat Sea Hawk, occupants: R. Roberts & 4 others",,,R. Roberts' leg was bruised when shark leapt into boat,N,,"Thresher shark, 3.7 m [12'] ","East London Dispatch, 11/16/1959",1959.11.15-SeaHawk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.15-SeaHawk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.15-SeaHawk.pdf,1959.11.15,1959.11.15,2172,, +1959.11.12.R,Reported 12-Nov-1959,1959,Provoked,AUSTRALIA,South Australia,Near Port Vincent,Shark fishing,24' yacht owened by C.L. Whitrow,,,"No injury to occupant, hull bitten PROVOKED INCIDENT",N,,6 m [20'] shark,"Advertiser (Adelaide), 11/12/1959",1959.11.12.R-Whitrow-yacht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.12.R-Whitrow-yacht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.12.R-Whitrow-yacht.pdf,1959.11.12.R,1959.11.12.R,2171,, +1959.11.10,10-Nov-59,1959,Unprovoked,USA,California,"Near Paradise Cove, Malibu, Los Angeles County",Swimming at surface through school of feeding 2.5' to 5 sharks,Duffie Fryling,M,21,Forearm bitten,N,10h30 or 13h30,"Blue shark, 1.5 m [5'] ","D. Miller & R. Collier; R. Collier, pp.26-27; P. Gilbert, L. Schultz & S. Springer (1960); V.M. Coppleson (1962), p.249",1959.11.10-Fryling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.10-Fryling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.10-Fryling_Collier.pdf,1959.11.10,1959.11.10,2170,, +1959.11.09,09-Nov-59,1959,Provoked,AUSTRALIA,Western Australia, Perth,"Spearfishing, shot shark, hauled it onto boat",Ian Marks,M,,"No injury. Diver shot shark, then shark tore legs of his rubber suit, water poured in & swept out to sea by strong rip current PROVOKED INCIDENT",N,,"Carpet shark, 1.5 m [5']","Perth Daily News, 4/19/1961; V.M. Coppleson (1962), p.251",1959.11.09-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.09-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.09-Marks.pdf,1959.11.09,1959.11.09,2169,, +1959.11.01,01-Nov-59,1959,Provoked,PAPUA NEW GUINEA,New Britain,"Rapindik Beach, Rabaul",Fishing,male,M,,Both hands bitten while helping companion land speared shark PROVOKED INCIDENT,N,,,"A. M. Rapson, p.147",1959.11.01-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.01-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.01-Rabaul.pdf,1959.11.01,1959.11.01,2168,, +1959.10.07,07-Oct-59,1959,Unprovoked,MOZAMBIQUE,Maputo Province,"Xefina Island, Bay of Maputo",Swimming,a Portuguese soldier,M,X,"FATAL, died in Lourenco Marques Hospital",Y,,,"M. Levine, GSAF; The Star (Johannesburg), 10/7/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.10.07-PortugueseSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.07-PortugueseSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.07-PortugueseSoldier.pdf,1959.10.07,1959.10.07,2167,, +1959.10.05,05-Oct-59,1959,Unprovoked,PAPUA NEW GUINEA,Madang,Taludig,,Anonymous,,,Thigh bitten,N,,,"A.M. Rapson, p.150; V.M. Coppleson (1962), p.248",1959.10.05-PapuaNewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.05-PapuaNewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.05-PapuaNewGuinea.pdf,1959.10.05,1959.10.05,2166,, +1959.10.04,04-Oct-59,1959,Unprovoked,USA,California,"Bodega Rock, Sonoma County",Diving for abalone,James Hay,M,30,"Ankle twisted, swim fin bitten",N,15h15,"White shark, 5 m [16.5'], identified by Dr. W. I. Follett on tooth marks","San Francisco Chronicle, 10/7/1959n; D. Miller & R. Collier; R. Collier, pp.25-26; P. Gilbert, L. Schultz & S. Springer (1960); H.D. Baldridge, p.70",1959.10.04-JamesHay_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.04-JamesHay_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.04-JamesHay_Collier.pdf,1959.10.04,1959.10.04,2165,, +1959.10.02,02-Oct-59,1959,Unprovoked,FIJI,Lomaiviti Province,"Levuka, Ovalau Island",Dived overboard to retrieve dinghy,"male, Fijian cook of vessel Andi Tui Lomaloma",M,,"FATAL, body not recovered",Y,,4.3 m [14'] shark,"V.M. Coppleson; P. Gilbert, L. Schultz & S. Springer (1960)",1959.10.02-FijianCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.02-FijianCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.02-FijianCook.pdf,1959.10.02,1959.10.02,2164,, +1959.10.00,Oct-59,1959,Unprovoked,FIJI,Kadavu,Great Astrolabe Reef,Spearfishing,Etuate Waqa,M,36,forearm abraded,N,12h00,"Tiger shark, 1.8 m [6']",S.B. Brown,1959.10.00-Etuate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.00-Etuate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.00-Etuate.pdf,1959.10.00,1959.10.00,2163,, +1959.09.30,30-Sep-59,1959,Unprovoked,PHILIPPINES,Leyte Island,Luang Dulag,Swimming ,Francisco Daguinot,M,28,"No details, survived",N,,,"Manila Times, 10/2/1959",1959.09.30-Daguinot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.30-Daguinot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.30-Daguinot.pdf,1959.09.30,1959.09.30,2162,, +1959.09.27,27-Sep-59,1959,Invalid,BERMUDA,Hamilton,Astwood's Cove,,Dorothy Barbara Rawlinson,F,29,"Murdered, body scavenged by sharks",Y,,,,1959.09.27-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.27-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.27-Rawlinson.pdf,1959.09.27,1959.09.27,2161,, +1959.09.26.b,26-Sep-59,1959,Sea Disaster,USA,Florida,"Off Port Everglades, Broward County","Adrift, hanging onto cushion, after his 17' skiff ran out of gas & capsized 3 miles from shore",Robert Walker,M,30,"During the night both hands and feet were bitten, rescued next day after spending 17 hours in the sea.",N,17h00,"A hammerhead shark, then 8 to 10 other sharks were said to be involved","St Petersberg Times, 9/27/1959; NY Herald Tribune, 9/28/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.09.26.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.b-Walker.pdf,1959.09.26.b,1959.09.26.b,2160,, +1959.09.26.a,26-Sep-59,1959,Boat,USA,South Carolina,"Albergotti Creek, near Air Station boat docks, Beaufort",Gigging for flounder,"12' boat. Occupants: Capt. E.J. Wines, Maj. W. Waller & Larry Waller",,,,UNKNOWN,Midnight,"Said to involve white shark, but species identify questionable","Gazette (Beaufort, SC), 10.1/1959; SAF Case #577",1959.09.26.a-Wines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.a-Wines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.a-Wines.pdf,1959.09.26.a,1959.09.26.a,2159,, +1959.09.11,Between 10 and 12-Sep-1959,1959,Boat,USA,California,"Between False Klamath & mouth of Klamath River, Del Norte County",Pulling hooked salmon to boat,12 m fishing boat. Occupant: Henry Tervo,,,"No injury to occupant, shark struck stern of boat",N,15h30,"White shark, 3.5 m [11.5'], identified by W. I. Follett on tooth fragments","R. Collier, p.172",1959.09.11-Tervo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.11-Tervo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.11-Tervo.pdf,1959.09.11,1959.09.11,2158,, +1959.09.10.R,Reported 10-Sep-1959,1959,Unprovoked,INDIA,Orissa,Machhagan,,,,,"5 fatalities, 30 injured",Y,,6' shark,"Times of India, 9/10/1959",1959.09.10.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.10.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.10.R-India.pdf,1959.09.10.R,1959.09.10.R,2157,, +1959.09.02,02-Sep-59,1959,Invalid,USA,New York,"Oak Beach, Fire Inlet",On inflatable raft,male,M,,No injury,N,,"""sand shark"" Listed as questionable incident",H.D. Baldridge (1994) SAF Case #506,1959.09.02-NV-InflatableRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.02-NV-InflatableRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.02-NV-InflatableRaft.pdf,1959.09.02,1959.09.02,2156,, +1959.09.00,Sep-59,1959,Unprovoked,MEXICO,Guerrrero,Acapulco,,French woman,F,"""middle-age""","FATAL, leg severed, other leg lacerated ",Y,,,"A. R. Satz; P. Gilbert, L. Schultz & S. Springer (1960)",1959.09.00-French-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.00-French-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.00-French-woman.pdf,1959.09.00,1959.09.00,2155,, +1959.08.31.R,Reported 31-Aug-1959,1959,Boat,AZORES,,Sao Miguel,Fishing,40' bonito boat,,,No injury to occupants; shark bit rudder,N,,"White shark, based on 2 teeth retrieved from rudder",A. Cordeiro,1959.08.31.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.31.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.31.R-Azores.pdf,1959.08.31.R,1959.08.31.R,2154,, +1959.08.30,30-Aug-59,1959,Invalid,AUSTRALIA,Tasmania,,Swimming,Ron Cox,M,,No injury,N,,Sandtiger shark,C. Black; H.D. Baldridge (1994) ISAF Case #654,1959.08.30-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.30-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.30-Cox.pdf,1959.08.30,1959.08.30,2153,, +1959.08.25,25-Aug-59,1959,Invalid,JAPAN,Hokkaido Prefecture,"Okushiri Island, Hiyama Subprefecture",,Masami Fukushi,M,14,Survived (no injury?),N,,Porbeagle,"K. Nakaya (1993); H.D. Baldrige. Note: Recorded as ""Doubtful"" by Schultz and Malin",1959.08.25-Fukushi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.25-Fukushi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.25-Fukushi.pdf,1959.08.25,1959.08.25,2152,, +1959.08.20,20-Aug-59,1959,Invalid,PHILIPPINES,North Palawan,Cabuli Island,The 240-ton motor vessel Pilar II with 100 people on board capsized in high winds & rough seas,boy,M,10,"Navy personnel reported that his body was ""mutilated by sharks"" but it is probable that death resulted from drowning",Y,04h00,,"Manila Daily, 8/26/1959; V.M. Coppleson (1962), p.259; F. Dennis, p.20; SAF Case #655",1959.08.20-PilarII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.20-PilarII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.20-PilarII.pdf,1959.08.20,1959.08.20,2151,, +1959.08.15.b,15-Aug-59,1959,Invalid,USA,Florida,"Panama City, Bay County",Diving,Gary Seymour,M,21,No injury,N,,2 sharks,"H. D. Baldridge (1994), SAF Case #440 listed incident as ""Questionable""",1959.08.15.b-Seymour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.b-Seymour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.b-Seymour.pdf,1959.08.15.b,1959.08.15.b,2150,, +1959.08.15.a,15-Aug-59,1959,Unprovoked,USA,Florida,"Panama City, Bay County",Spearfishing on Scuba,Lt. James C. Neal,M,26,"FATAL, disappeared, dive gear & clothing found with teethmarks, presumed taken by a shark ",Y,,3.7 m [12'] shark,"Washington Post, 8/17/1959; P. Gilbert, L. Schultz & S. Springer (1960); H.D. Baldridge, p.183",1959.08.15.a-Neal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.a-Neal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.a-Neal.pdf,1959.08.15.a,1959.08.15.a,2149,, +1959.08.14.b,14-Aug-59,1959,Provoked,USA,South Carolina,Charleston,Fishing,Arthur Wright,M,,Laceration to forearm by boated shark PROVOKED INCIDENT,N,,5.5' shark,"Washington Post, 8/16/1959",1959.08.14.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.b-Wright.pdf,1959.08.14.b,1959.08.14.b,2148,, +1959.08.14.a,14-Aug-59,1959,Sea Disaster,PHILIPPINES,Queaon,Between Unisan & Angadanan Islands,Fishing boat capsized ,15 shipwrecked passengers and crew were in the water,,,"10 of the 15 people perished, bodies of some who drowned were scavenged by sharks",Y,Afternoon,,"Manila Chronicle, 8/18/1959; V.M. Coppleson (1962), p.259; F. Dennis, p.20; SAF Case #590",1959.08.14.a-Fishingboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.a-Fishingboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.a-Fishingboat.pdf,1959.08.14.a,1959.08.14.a,2147,, +1959.08.13,13-Aug-59,1959,Provoked,USA,California,"LaJolla, San Diego County","Spearfishing with Joe Turner (24). Shark attracted to speared halibut on belt of one diver, tried to bite Ides speargun & he shot it in the mouth",Don Ide,M,32,"No injury, PROVOKED INCIDENT",N,,"Hammerhead shark, 9' ","Independent, 8/14/1959, p. 2; V.M. Coppleson (1962), p.147",1959.08.13-Ide-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.13-Ide-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.13-Ide-Turner.pdf,1959.08.13,1959.08.13,2146,, +1959.08.12,12-Aug-59,1959,Provoked,CROATIA,Istria,Pula,Fishing,Narcisco Tomaz,M,,Laceration to arm PROVOKED INCIDENT,N,,20 kg shark,"C. Moore, GSAF",1959.08.12-Tomaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.12-Tomaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.12-Tomaz.pdf,1959.08.12,1959.08.12,2145,, +1959.08.11,11-Aug-59,1959,Unprovoked,JAPAN,Wakayama Prefecture,"Isonoura Beach, Wakayama City ",Swimming,Akira Tuchiya,M,13 or 18,"FATAL, left thigh bitten",Y,14h30,"Blue shark, 3 m [10']","H. Kariya &T. Abe; P. Gilbert, L. Schultz & S. Springer (1960); K. Nakaya",1959.08.11-Tsuchiya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.11-Tsuchiya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.11-Tsuchiya.pdf,1959.08.11,1959.08.11,2144,, +1959.08.10,10-Aug-59,1959,Unprovoked,USA,Georgia,"Savannah Beach, Savannah, Chatham County",Standing,Elizabeth Fields,F,15,"4"" cut on left foot ",N,18h00,, McCutcheon; News (Savannah) 8/18/1959 ,1959.08.10-Fields.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.10-Fields.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.10-Fields.pdf,1959.08.10,1959.08.10,2143,, +1959.08.05,05-Aug-59,1959,Invalid,USA,California,"Hermosa Beach, Los Angeles County",Wading,Charles H. Hill,M,,"No injury, no attack, the shark merely circled him.",N,,10' shark,"Independent, 8/6/1959, p.8; H.D. Baldridge (1994) SAF Case #437, Subsequently investigated by R. Collier & D. Miller who were unable to verify its authenticity",1959.08.05-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.05-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.05-Hill.pdf,1959.08.05,1959.08.05,2142,, +1959.08.02,21764,1959,Invalid,ITALY,Tuscany,"Cala del Corvo, Isola del Giglio",Scuba diving,Karl Pollerer & Eric Eisesenid,M,34 & 19,Probable drowing. Shark involvement unconfirmed,Y,,,"C. Moore, GSAF",1959.08.02-Giglio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.02-Giglio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.02-Giglio.pdf,1959.08.02,1959.08.02,2141,, +1959.07.30,30-Jul-59,1959,Provoked,USA,California,"In kelp beds off La Jolla, San Diego County",Pulling anchor,"4.3 m skiff: occupants: James L. Randles, Jr. & James Myers",,,"No injury to occupants, shark charged boat after being shot twice with pistol and speared PROVOKED INCIDENT",N,16h00,"White shark, 3 m to 5 m [10' to 15'] ","LA Times, 7/31/1959 ",1959.07.30-Randles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.30-Randles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.30-Randles_Collier.pdf,1959.07.30,1959.07.30,2140,, +1959.07.28,28-Jul-59,1959,Unprovoked,USA,California,"Alligator Head, La Jolla, San Diego County",Spearfishing (but on surface),Verne S. Fleet,M,25,"14 punctures on right thigh, swim trunks torn",N,19h30,"Hammerhead shark, 1.8 m [6'] S. zygena identified by C. Limbaugh on description","D. Miller & R. Collier; R. Collier, pp.24-25; Garrick & L. Schultz, p.19 in Sharks & Survival; P. Gilbert, L. Schultz & S. Springer (1960)",1959.07.28-Fleet_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.28-Fleet_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.28-Fleet_Collier.pdf,1959.07.28,1959.07.28,2139,, +1959.07.25.b,25-Jul-59,1959,Unprovoked,JAPAN,Okayama Prefecture,Ushimado,,Hideo Ishida,M,22,"FATAL, right thigh bitten ",Y,13h00,Blue shark?,"M. Hosina; K. Nakaya; L. Schultz & M. Malin, p.539",1959.07.25.b-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.b-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.b-Ishida.pdf,1959.07.25.b,1959.07.25.b,2138,, +1959.07.25.a,25-Jul-59,1959,Boat,USA,California,"Mission Beach, San Diego County",,"boat, occupant Robert Agnew",,21,No injury to occupant,N,,"Hammerhead shark, 2.4 m [8'] ","San Diego Union, 7/26/1959",1959.07.25.a-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.a-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.a-Agnew.pdf,1959.07.25.a,1959.07.25.a,2137,, +1959.07.23.b,23-Jul-59,1959,Boat,USA,California,"Off La Jolla Cove, San Diego County",Fishing,15-foot boat: occupant Woodrow Smith,,,"No injury to occupant, shark rammed boat",N,,"Hammerhead shark, 3 m [10'] ","Herald Express (L.A.), 7/25/1959",1959.07.23.b-WoodrowSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.b-WoodrowSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.b-WoodrowSmith.pdf,1959.07.23.b,1959.07.23.b,2136,, +1959.07.23.a,23-Jul-59,1959,Provoked,USA,California,"Venice Beach, Los Angeles County",Dragging stranded shark ashore,Rudy Gietel,M,,"Gietel grabbed the shark's tail, the shark lacerated his right ankle PROVOKED INCIDENT",N,,"Blue shark, 1.8 m [6'] ","Herald Express (L.A.), 7/25/1959 ",1959.07.23.a-Geitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.a-Geitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.a-Geitel.pdf,1959.07.23.a,1959.07.23.a,2135,, +1959.07.03.a & b,03-Jul-59,1959,Sea Disaster,CARIBBEAN SEA,PANAMA,"Off Cristobal, 200 miles northeast of the entrance to the Panama Canal",Columbian petrol barge Rio Atrato burned and sank,Teresea Britton (on raft) & a man (on floating debris),,27,"FATAL X 2, 8 others missing. Survivors fought off sharks & sharks seen biting 2 of the dead. The 39 survivors were rescued by the German freighter Essen",Y,,,"Cambridge Daily News, 7/4/1959; V. M. Coppleson (1962), p. 259",1959.07.03-Rio-Atranto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.03-Rio-Atranto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.03-Rio-Atranto.pdf,1959.07.03.a & b,1959.07.03.a & b,2134,, +1959.07.02,02-Jul-59,1959,Provoked,USA,Florida,"Delray Beach, Palm Beach County",Free diving,King Scherer,M,13,Arm bitten when he grabbed sharks tail PROVOKED INCIDENT,N,,"Nurse shark, 60 cm [24""], identified by Dr. L.P. L. Schultz on photograph","Miami Herald, 7/3/1959; Garrick & L. Schultz, p.56 in Sharks & Survival; Miami Herald, 3 July 1959 ",1959.07.02-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.02-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.02-Scherer.pdf,1959.07.02,1959.07.02,2133,, +1959.07.00.b,Late Jul-1959,1959,Boat,NORTH ATLANTIC OCEAN,In the Gulf Stream ,Between Bimini & Miami,,"17' boat, occupant: Richard Wade",,,"No injury to occupant, shark bit propeller as Wade was refueling",N,,"Oceanic whitetip shark,1.8 m [6'] ","J. Randall in Sharks & Survival, p.356",1959.07.00.b-boat-R-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.b-boat-R-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.b-boat-R-Wade.pdf,1959.07.00.b,1959.07.00.b,2132,, +1959.07.00.a,Jul-59,1959,Unprovoked,MEXICO,Quintana Roo,Chinchorro Banks,Wading,Lobster fishermen x 2,M,,"FATAL, legs bitten ",Y,A.M.,,C.G. Robles,1959.07.00.a-Lobster-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.a-Lobster-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.a-Lobster-fishermen.pdf,1959.07.00.a,1959.07.00.a,2131,, +1959.06.26.R,Reported 26-Jun-1959,1959,Unprovoked,TURKEY,Mersin Province,Off Mezitli,,Yitzhak Steinberg,M,,Leg injured,N,,,"C. Moore, GSAF",1959.06.26.R-Steinberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.26.R-Steinberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.26.R-Steinberg.pdf,1959.06.26.R,1959.06.26.R,2130,, +1959.06.14.b,14-Jun-59,1959,Unprovoked,MEXICO,Guyamas,San Pedro Nolasco Island,Swimming ashore from capsized boat,Francisco R. Topete,M,,FATAL,Y,,,"Miami Herald, 6/15/1959",1959.06.14.b-Topete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.b-Topete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.b-Topete.pdf,1959.06.14.b,1959.06.14.b,2129,, +1959.06.14.a,14-Jun-59,1959,Unprovoked,USA,California,"La Jolla, San Diego County",Free diving for abalone,Robert Pamperin,M,33,"FATAL, body not recovered",Y,17h10,"Reported to involve a White shark, 6 m to 7m [20' to 23'] ","D. Miller & R. Collier; R. Collier, pp. 21-24 ",1959.06.14.a-Pamperin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.a-Pamperin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.a-Pamperin_Collier.pdf,1959.06.14.a,1959.06.14.a,2128,, +1959.06.13,13-Jun-59,1959,Invalid,USA,California,"Dillon Beach, Marin County",Swimming ,T. McNeill,,,"Disappeared after diving in deep hole, body not recovered, presumed taken by a shark ",Y,,,"D. Miller & R. Collier, R. Collier, p. xxv",1959.06.13-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.13-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.13-McNeill.pdf,1959.06.13,1959.06.13,2127,, +1959.05.30,30-May-59,1959,Provoked,SOUTH AFRICA,Eastern Cape Province,"Bird Island, Algoa Bay",Spearfishing,Tony Dicks,M,23,"No injury, diver shot shark & it bit his speargun PROVOKED INCIDENT",N,,"White shark, 2.7 m [9'], 280-lb ","C. Middleton; M. Levine, GSAF",1959.05.30-TonyDicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.30-TonyDicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.30-TonyDicks.pdf,1959.05.30,1959.05.30,2126,, +1959.05.16,16-May-59,1959,Unprovoked,USA,Florida,"Indian Rocks Beach, Clearwater, Pinellas County",,June Goldback,F,37,Minor injuries,N,,1.2 m [4'] shark,"V.M. Coppleson (1962), p.249; Miami News, 5/18/1959 ",1959.05.16-Goldback.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.16-Goldback.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.16-Goldback.pdf,1959.05.16,1959.05.16,2125,, +1959.05.07,07-May-59,1959,Unprovoked,USA,California,"Baker Beach, San Francisco County",Treading water,"Albert Kogler, Jr.",M,18,"FATAL, left arm bitten, right arm partly severed, deep lacerations of left shoulder & chest ",Y,17h30,"White shark, 3 m [10']; identifed by Dr. W.I. Follett on tooth marks","P. Gilbert, L. Schultz & S. Springer (1960); D. Miller & R. Collier, Follett, p. 18-22; R. Collier, pp.18-21",1959.05.07-Kogler_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.07-Kogler_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.07-Kogler_Collier.pdf,1959.05.07,1959.05.07,2124,, +1959.05.03,03-May-59,1959,Unprovoked,USA,Florida,"Panama City, Bay County",Spearfishing,Ernest Grover,M,19,Lacerated hip & hands,N,10h00,"Tiger shark, 3.7 m [12']","Miami Herald, 5/5/1959; T. Helm, pp. 93 & 243",1959.05.03-Grover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.03-Grover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.03-Grover.pdf,1959.05.03,1959.05.03,2123,, +1959.05.00,May-59,1959,Unprovoked,MID ATLANTIC OCEAN,Between England & South Africa,,Jumped overboard to rescue a man,Charles Green,M,,Leg bitten,N,,,"Golden City Post (South Africa), 6/7/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.05.00-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.00-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.00-Green.pdf,1959.05.00,1959.05.00,2122,, +1959.04.27,27-Apr-59,1959,Invalid,AUSTRALIA,New South Wales,Maroubra Bay,Spearfishing,Peter Holland,M,22,Thigh lacerated,N,,,"V.M. Coppleson (1962), p.251; J. Green, p.35",1959.04.27-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.27-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.27-Holland.pdf,1959.04.27,1959.04.27,2121,, +1959.04.11,11-Apr-59,1959,Unprovoked,AUSTRALIA,Torres Strait,"Coconut Island , 100 miles east of Thursday Island",Diving for pearl shell,"Jimmy Pearson, a Torres Strait Islander",M,43,Left hand lacerated when he tried to ward off shark,N,,"Tiger shark, 1.8 m [6'] ","G.P. Whitley ref. Sydney Morning Herald, 4/13/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.04.11-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.11-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.11-Pearson.pdf,1959.04.11,1959.04.11,2120,, +1959.04.09.b,09-Apr-59,1959,Unprovoked,USA,Hawaii,"Hilo, off Kaua'i",Fishing,male,M,,Survived,N,,,"V.M. Coppleson (1962), p.246",1959.04.09.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.b-Fisherman.pdf,1959.04.09.b,1959.04.09.b,2119,, +1959.04.09..a,09-Apr-59,1959,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth ,Fishing,male,M,,2 toes bitten off ,N,,,,1959.04.09.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.a-Fisherman.pdf,1959.04.09..a,1959.04.09..a,2118,, +1959.04.05,05-Apr-59,1959,Unprovoked,AUSTRALIA,New South Wales,Thirroul,Spearfishing,Jeff McAuley,M,,Swim fin bitten,N,,,"P. Gilbert, L. Schultz & S. Springer (1960)",1959.04.05-McAuley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.05-McAuley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.05-McAuley.pdf,1959.04.05,1959.04.05,2117,, +1959.03.29,29-Mar-59,1959,Unprovoked,USA,Florida,"Vaca Cut Channel & bridge under Marathon, Monroe County",Swimming,James McKee,M,13,"Bumped, then knee bitten",N,14h30,,"Florida Keys Keynoter, 4/2/1959; Dr. H. S. Denniger; Note: V.M. Coppleson (1962) lists date of May 1959, p249",1959.03.29-McKee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.29-McKee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.29-McKee.pdf,1959.03.29,1959.03.29,2116,, +1959.03.08,08-Mar-59,1959,Unprovoked,PHILIPPINES,Mindanao,"Mouth of Langoyan River, Davao City",Lifeboat capsized,"Leopoldo Sanchez, a messboy from the ship MV Maripaz",M,20,"FATAL, body not recovered",Y,,,"Manila Chronicle, 3/10/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.03.08-Sanchez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.08-Sanchez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.08-Sanchez.pdf,1959.03.08,1959.03.08,2115,, +1959.03.00,Mar-59,1959,Boat,USA,Florida,Miami,"On boat, preparing to dive",R.P. Straughan,M,,Boat followed shark; shark holed boat,N,,Tiger shark 4.3 m [14'] ,"R.P.L. Straughan; R.F. Hutton; T. Helm, p.241;",1959.03.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.00-Straughan.pdf,1959.03.00,1959.03.00,2114,, +1959.02.28,28-Feb-59,1959,Boat,AUSTRALIA,Victoria,Port Phillip Bay,Fishing for snapper,14' open boat: occupants Richard Crew & Bob Thatcher,M,,"No injury to occupants. Shark leapt into boat, momentarily pinning Crew against the side",N,,"Mako shark, 2.4 m [8'], <300-lb, identified by Dr. L.P. L. Schultz on photograph","West Australian, 3/1/1959; L. Schultz & M. Malin, p.552",1959.02.28-boat-Crew-Thatcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.28-boat-Crew-Thatcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.28-boat-Crew-Thatcher.pdf,1959.02.28,1959.02.28,2113,, +1959.02.27,27-Feb-59,1959,Unprovoked,VENEZUELA,Nueva Esparta,Margarita Island,Fell into water while attempting to boat a swordfish,Roland Gerbeau,M,,Left arm bitten,N,,,"P. Gilbert, L. Schultz & S. Springer (1960)",1959.02.27-Gerbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.27-Gerbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.27-Gerbeau.pdf,1959.02.27,1959.02.27,2112,, +1959.02.06,16-Feb-59,1959,Provoked,PAPUA NEW GUINEA, Kikori River mouth,"Ururumba, mouth of Kikori River 7.45S, 144.40E",Fishing,male,M,,Arm bitten by shark that he thought was dead PROVOKED INCIDENT,N,,3.7 m [12'] shark,"T. Ingledew, Medical Assistant; A. M Rapson, p.147",1959.02.06-Ururumba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.06-Ururumba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.06-Ururumba.pdf,1959.02.06,1959.02.06,2111,, +1959.02.02,02-Feb-1959 Reported,1959,Unprovoked,SOLOMON ISLANDS,Guadalcanal Province,"Trenchs Beach, Guadalcanal Island",Bathing with sister,Donald Battye or David James Battye,M,15,"FATAL, body not recovered",Y,17h00,,"Note: V.M. Coppleson (1962), p.248, lists date as 12./6/1958; P. Gilbert, L. Schultz & S. Springer list date of 2/2/1959 and both sources list the same location; New Zealand Herald, 2/2/1959 ",1959.02.02-Battye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.02-Battye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.02-Battye.pdf,1959.02.02,1959.02.02,2110,, +1959.02.01,01-Feb-59,1959,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Port Shepstone,Treading water,Raymond Vermaak,M,14,Leg severed below knee,N,14h45,1.8 to 2.1 m [6' to 7'] shark,"R. Vermaak, M. Levine, GSAF ",1959.02.01-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.01-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.01-Vermaak.pdf,1959.02.01,1959.02.01,2109,, +1959.01.31,31-Jan-59,1959,Unprovoked,AUSTRALIA,Western Australia,South Perth,Working prawn net,George E. Rudd,M,20,Sharks tail grazed his shin,N,Night,"Grey nurse shark, 1.8 m [6']","West Australian (Perth), * Sunday Times, 2/1/1959s; P. Gilbert, L. Schultz & S. Springer (1960)",1959.01.31-Rudd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.31-Rudd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.31-Rudd.pdf,1959.01.31,1959.01.31,2108,, +1959.01.27,27-Jan-59,1959,Unprovoked,ECUADOR,Galapagos Islands,Crewing on the tuna clipper Mary Barbara,Washed overboard into school of fish,Theodore C. Swienty,M,57,Right leg & left foot lacerated,N,,Bitten by several 1.8 m [6'] sharks,"NY World -Telegram & Sun, 1/28/1959; Note: V.M. Coppleson (1962), p.246, records the date as 3/5/1959",1959.01.27-Swienty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.27-Swienty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.27-Swienty.pdf,1959.01.27,1959.01.27,2107,, +1959.01.25,25-Jan-59,1959,Unprovoked,AUSTRALIA,Tasmania,"Whale Bay, King Island, Bass Strait",Swimming with motor tube,John Grave,M,16,Thigh bitten,N,,,"C. Black, GSAF; Launceston Examiner (Tasmania) 1/26/1959; P. Gilbert, L. Schultz & S. Springer (1960); J. Green, p.35",1959.01.25-Grave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.25-Grave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.25-Grave.pdf,1959.01.25,1959.01.25,2106,, +1959.01.17.b,17-Jan-59,1959,Unprovoked,AUSTRALIA,Tasmania,Safety Cove,In deep water about 100 yards from his ship,"Brian Derry, a Naval Rating",M,22,FATAL,Y,16h30,Said to involve 2 sharks: 5.2 m & 6 m [17' & 20'] ,"Odessa American, 1/19/1959; G.P. Whitley, ref Daily Telegraph & West Australian, 1/19/1959; P. Gilbert, L. Schultz & S. Springer (1960); C. Black, pp. 148-151",1959.01.17.b-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.b-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.b-Derry.pdf,1959.01.17.b,1959.01.17.b,2105,, +1959.01.17.a,17-Jan-59,1959,Unprovoked,AUSTRALIA,Queensland,Alexandra Headland near Mooloolaba,"Surfing, but treading water",Peter John Neil,M,17,Right foot & toe bitten,N,09h30,1.8 m [6'] shark,"Sun Herald (Sydney) 1/18/1959; P. Gilbert, L. Schultz & S. Springer(1960); J. Green, p.35",1959.01.17.a-Neil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.a-Neil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.a-Neil.pdf,1959.01.17.a,1959.01.17.a,2104,, +1959.01.15,15-Jan-59,1959,Unprovoked,SOUTH AFRICA,Western Cape Province,Melkbaai,Swimming,Fanie Schreuder,M,18,Thigh & both wrists lacerated,N,16h15,"White shark, 1.8 m to 2.1 m [6' to 7'] according to Shreuder and a witness","Cape Times, 1/16/1959 et al, M. Levine, GSAF ",1959.01.15-Schreuder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.15-Schreuder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.15-Schreuder.pdf,1959.01.15,1959.01.15,2103,, +1959.01.12,12-Jan-59,1959,Unprovoked,NEW GUINEA,Milne Bay Province,"Uga, Banaira, Milne Bay",Dragging banana seeds through the shallows,male,M,,Left calf & right thigh bitten,N,,1.4 m [4.5'] shark,"A.M. Rapson, p.149; L. Schultz & M. Malin, p.544",1959.01.12-Uga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.12-Uga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.12-Uga.pdf,1959.01.12,1959.01.12,2102,, +1959.01.02,02-Jan-59,1959,Unprovoked,MOZAMBIQUE,Maputo Province,Off Inhaca Island,Swimming ashore from fishing boat swamped and sunk by a squall,Eric Suttie & Peter Murray,M,33 & 26,"Suttie's lower abdomen was bitten, Murray disappeared (presumed drowned)",Y,08h00,,"M. Levine, GSAF; Cape Argus 1/3/1959; Natal Mercury, 1/5/1959",1959.01.02-Suttie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.02-Suttie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.02-Suttie.pdf,1959.01.02,1959.01.02,2101,, +1959.01.00,Jan-59,1959,Unprovoked,AUSTRALIA,Tasmania,Badger Head,Spearfishing / free diving,male,M,,Abrasion,N,,1.5 m [5'] shark,"Malcolm G. Hooper; L. Schultz & M. Malin, p.527",1959.01.00-BadgerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.00-BadgerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.00-BadgerHead.pdf,1959.01.00,1959.01.00,2100,, +1959.00.00.g,Summer of 1959,1959,Unprovoked,SOUTH KOREA,South Chungcheong Province,"3617'N, 12631'E",Swimming,male,M,,FATAL,Y,,White shark?,Y. Choi & K. Nakaya,1959.00.00.g-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.g-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.g-SouthKorea.pdf,1959.00.00.g,1959.00.00.g,2099,, +1959.00.00.f,Jul- to Sep-1959,1959,Unprovoked,INDIA,Orissa,Mouth of Devi River at Machgaon,,,,,"5 people killed by sharks, 30 others injured",Y,,1.5 m to 1.8 m [5' to 6'] sharks,"Reported byTimes of India, 11 September 1959; V.M. Coppleson (1952), p.247; Webster, p.67",1959.00.00.f-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.f-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.f-India.pdf,1959.00.00.f,1959.00.00.f,2098,, +1959.00.00.e,1959,1959,Provoked,ATLANTIC OCEAN,,,Paddling & sailing from Buenos Aires to Miami,Mirco Tapavica,M,,Hooked shark bit his arm PROVOKED INCIDENT,N,,"Tiger shark, 12' ?","New York Times, 1/29/1960",1959.00.00.e-Tapavica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.e-Tapavica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.e-Tapavica.pdf,1959.00.00.e,1959.00.00.e,2097,, +1959.00.00.d,1959,1959,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Poi, Kombe Talasea",Spear fishing,male,M,,Minor injuries,N,,,"A.M. Rapson, p.150; L. Schultz & M. Malin, p.544",1959.00.00.d-Poi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.d-Poi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.d-Poi.pdf,1959.00.00.d,1959.00.00.d,2096,, +1959.00.00.c,1959,1959,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Kalapiai, Kombe",Fishing,male,M,,Minor injuries,N,,,"A.M. Rapson, p.150",1959.00.00.c-Kalapiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.c-Kalapiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.c-Kalapiai.pdf,1959.00.00.c,1959.00.00.c,2095,, +1959.00.00.b,1959,1959,Unprovoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Enuk Island, Kavieng",,Pasinganlas,M,,"FATAL, abdomen & leg bitten ",Y,,,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p.150; L. Schultz & M. Malin, p.544",1959.00.00.b-Pasinganlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.b-Pasinganlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.b-Pasinganlas.pdf,1959.00.00.b,1959.00.00.b,2094,, +1959.00.00.a,1959,1959,Provoked,PAPUA NEW GUINEA,Morobe Province,,Fishing,male,M,,Penis bitten while trying to drag speared shark to beach PROVOKED INCIDENT,N,,,"A.D. Campbell; A.M. Rapson, p.147",1959.00.00.a-Morobe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.a-Morobe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.a-Morobe.pdf,1959.00.00.a,1959.00.00.a,2093,, +1958.12.28,28-Dec-58,1958,Boat,TURKEY,Ahirkapi coast,Constantinople,Fishing,Fishing boat. Occupants: Yunus Potur & Ali Durmaz,,,Boat damaged,,,White shark,"C. Moore, GSAF",1958.12.28-Constantinople.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.28-Constantinople.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.28-Constantinople.pdf,1958.12.28,1958.12.28,2092,, +1958.12.27,27-Dec-58,1958,Unprovoked,PAPUA NEW GUINEA,Madang Province,Taludig,,Anonymous,,,Hip bitten,N,,,"A.M. Rapson, p.149; V.M. Coppleson (1962), p.248",1958.12.27-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.27-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.27-Taludig.pdf,1958.12.27,1958.12.27,2091,, +1958.12.23,23-Dec-58,1958,Unprovoked,SOUTH AFRICA,Western Cape Province,"Melkbaai, False Bay",Swimming,Barry Geldenhuys,M,14,FATAL,Y,,,"1/16/1959, Cape Argus; G. Wilson; M. Levine, GSAF",1958.12.23-Geldenhuys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.23-Geldenhuys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.23-Geldenhuys.pdf,1958.12.23,1958.12.23,2090,, +1958.12.13,13-Dec-58,1958,Unprovoked,USA,Hawaii,"Near Twin Islands off Lanikai, O'ahu (east coast)",Surfing on air mattress,William S. Weaver,M,15,"FATAL, leg severed ",Y,13h00,"Tiger shark, 4.6 m to 7.6 m [15' to 25'] ",A. L. Tester,1958.12.13-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.13-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.13-Weaver.pdf,1958.12.13,1958.12.13,2089,, +1958.12.12,12-Dec-58,1958,Unprovoked,AMERICAN SAMOA,Tutuila Island,Van Camp wharf,Cleaning hull of ship ,Sailor of tuna vessel No.12 Taiyo Marei,M,22,"FATAL, left thigh & hip bitten ",Y,11h00,Tiger shark,M. Hosina,1958.12.12-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.12-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.12-Samoa.pdf,1958.12.12,1958.12.12,2088,, +1958.11.23,23-Nov-58,1958,Unprovoked,AUSTRALIA,Queensland,Surfer's Paradise,Swimming,Peter Gerard Spronk,M,21,FATAL,Y,15h15,12' shark,"V.M. Coppleson (1962), p.245; A. Sharpe, p.100; J. Green, p.35",1958.11.23-Spronk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.23-Spronk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.23-Spronk.pdf,1958.11.23,1958.11.23,2087,, +1958.11.14,14-Nov-58,1958,Invalid,SOUTH AFRICA,Western Cape Province,False Bay,Fishing,male,M,,"No injury, shark leapt at him",N,,Questionable incident,Clipping dated 11/15/1958,1958.11.14-FalseBayFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.14-FalseBayFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.14-FalseBayFisherman.pdf,1958.11.14,1958.11.14,2086,, +1958.11.07.R,Reported 07-Nov-1958,1958,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","M'Buke, south of Manus Island",Spearfishing,native boy,M,,"FATAL, left arm & leg severed ",Y,,,"A.M. Rapson, p.149; V.M. Coppleson (1962), p.254",1958.11.07.R-MbukeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.07.R-MbukeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.07.R-MbukeIsland.pdf,1958.11.07.R,1958.11.07.R,2085,, +1958.11.05,05-Nov-58,1958,Boat,USA,California,"Pacific Beach, San Diego County",Fishing,"4.3 m skiff, occupant: Bob Shay",,,"No injury to occupant, shark chasing barracuda tied to the stern rammed skiff & slashed the motor",N,,White shark,C. Limbaugh,1958.11.05-boat-Shay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.05-boat-Shay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.05-boat-Shay.pdf,1958.11.05,1958.11.05,2084,, +1958.10.12,12-Oct-58,1958,Unprovoked,USA,California,"Coronado Strand, San Diego County",Swimming near jetty,John Allman,M,15,"Left arm, hips & leg lacerated",N,,,"Los Angeles Times, 10/13/1958; D. Miller & R. Collier, R. Collier, p. 17-18",1958.10.12-Allman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.12-Allman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.12-Allman_Collier.pdf,1958.10.12,1958.10.12,2083,, +1958.10.05,05-Oct-58,1958,Unprovoked,USA,Florida,"Baker's Haulover, Miami Beach",,Lytton Evans,M,60,No injury,N,,,R.F. Hutton citing Miami Herald Newspaper Library,1958.10.05-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.05-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.05-Evans.pdf,1958.10.05,1958.10.05,2082,, +1958.10.00.b,Oct-58,1958,Provoked,MEXICO,Guerrrero,Acapulco,Slapped shark on tail as it swam by,male,M,,Shark turned & severed his leg PROVOKED INCIDENT,N,,,"Washington Evening Star, 6/17/1959; V.M. Coppleson (1962), p.253",1958.10.00.b-Acapulco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.b-Acapulco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.b-Acapulco.pdf,1958.10.00.b,1958.10.00.b,2081,, +1958.10.00.a,Oct-58,1958,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"East Nakanai, Talasea",Collecting shells,male,M,26,Leg & foot injured,N,,,"A.M. Rapson, p.149",1958.10.00.a-EastNakanai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.a-EastNakanai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.a-EastNakanai.pdf,1958.10.00.a,1958.10.00.a,2080,, +1958.09.13,13-Sep-58,1958,Unprovoked,ANDAMAN / NICOBAR ISLANDAS,,,"""Climbing up to ship after repairing the stern in water""",Sailor of tuna vessel Daisan-Tenyo-Maru,M,32,"FATAL, leg bitten ",Y,14h00,Blue shark,M. Hosina,1958.09.13-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.13-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.13-sailor.pdf,1958.09.13,1958.09.13,2079,, +1958.09.06,06-Sep-58,1958,Unprovoked,BAHAMAS,Cat Cay,off yacht Serenade,Fishing,James Douglas Munn,M,42,Right forearm lacerated,N,Morning,200-lb shark,"Miami Herald, 9/6/1958 ",1958.09.06-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.06-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.06-Munn.pdf,1958.09.06,1958.09.06,2078,, +1958.09.01,01-Sep-58,1958,Provoked,USA,New York,Staten Island,Spearfishing,John Leszczak,M,20,Bitten by harpooned shark PROVOKED INCIDENT,N,,,"Baltimore Evening Sun, 9/2/1958 ",1958.09.01-Leszczak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.01-Leszczak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.01-Leszczak.pdf,1958.09.01,1958.09.01,2077,, +1958.08.31,31-Aug-58,1958,Boat,MEXICO,Baja California,Ensenada,Boat stopped to repair electric pump,16' cabin cruiser with 35 hp outboard motor,,,Shark tried to bite prop twice,N,07h15,"Hammerhead shark, 5.2 m [17'] ","G.A. Llano, pp.176-177",1958.08.31-NV-Ensenada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.31-NV-Ensenada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.31.a-NV-Ensenada.pdf,1958.08.31,1958.08.31,2076,, +1958.08.01,01-Aug-58,1958,Unprovoked,CROATIA,Primorje-Gorski Kotar County,Mo?eni?ka Draga,Swimming,Hilda Keller,F,,Leg injured,N,18h00,3 m shark,"C. Moore, GSAF",1958.08.01-Keller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.01-Keller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.01-Keller.pdf,1958.08.01,1958.08.01,2075,, +1958.07.31.R, Reported 31-Jul-1958,1958,Unprovoked,MEXICO,Guerrero,"Caleta Beach, Acapulco",Swimming,Suzanne Dreufus,F,,FATAL,Y,,,"Miami Herald, 8/2/1958 reported this was the second fatality at this resort this month",1958.07.31-Dreufus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.31-Dreufus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.31-Dreufus.pdf,1958.07.31.R,1958.07.31.R,2074,, +1958.07.27.b,27-Jul-58,1958,Unprovoked,USA,Florida,"9 miles north of Turtle Beach, Siesta Key, Sarasota County","Swimming, ducking for shells in water 0.9 m deep",Robert Lawton (brother & rescuer),M,12,3 lacerations on leg,N,16h10,"Tiger shark, 1.5 m to 1.8 m [5' to 6'] ","E. Clark; M. Vorenberg; R. Skocik, pp.173-174; V.M. Coppleson, p.255; H. D. Baldridge, pp. 25, 62, 73 & 164",1958.07.27.b-RobertLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.b-RobertLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.b-RobertLawton.pdf,1958.07.27.b,1958.07.27.b,2073,, +1958.07.27.a,27-Jul-58,1958,Unprovoked,USA,Florida,"Longboat Key, Sarasota, Sarasota County","Swimming, ducking for shells in water 0.9 m deep",Douglas Lawton,M,8,"Left hand and leg bitten, leg surgically amputated below hip",N,16h10,"Tiger shark, 1.5 m to 1.8 m [5' to 6'] ","E. Clark (1960); M. Vorenberg; R. Skocik, pp.173-174; H.D. Baldridge, pp. 25, 62, 73 & 164",1958.07.27.a-DouglasLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.a-DouglasLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.a-DouglasLawton.pdf,1958.07.27.a,1958.07.27.a,2072,, +1958.07.10,10-Jul-58,1958,Unprovoked,USA,Florida,"Key West, Monroe County",,Angel B. Escartin,M,35,FATAL Autopsy report: bitten by shark while still alive,Y,,,"R. F. Hutton; T. Helm, p.239",1958.07.10-Escartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.10-Escartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.10-Escartin.pdf,1958.07.10,1958.07.10,2071,, +1958.07.08, 08-Jul-1958,1958,Unprovoked,KENYA,Coast Province,Port Kilindeni / Mombasa Harbor,Swimming,"Tahei Nakatani, a Japanese seaman from the fishing vessel Seiju Maru",M,21,"FATAL, leg severed ",Y,P.M.,,"Natal Mercury, 7/9/1958",1958.07.08-Nakatani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.08-Nakatani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.08-Nakatani.pdf,1958.07.08,1958.07.08,2070,, +1958.07.04.b,04-Jul-58,1958,Sea Disaster,PACIFIC OCEAN,Between Hawaii & Wake Island,600 miles northwest of Honolulu,U.S. Airforce C124 enroute from Hickham Air Base to Japan went down. The 3 survivors fashioned raft from mailbags & were rescued 3 days after the crash.,"Roy A. Robinson, Sr.",M,,FATAL,Y,10h45,Sharks averaged 1.8 m [6'] in length,"Evening Star (Washington D.C.), 7/7/1958, p. A10; G.A. Llano in Sharks and Survival, pp.382-383; V.M. Coppleson (1962), p.259",1958.07.04.b-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.b-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.b-Robinson.pdf,1958.07.04.b,1958.07.04.b,2069,, +1958.07.04.a,04-Jul-58,1958,Sea Disaster,PACIFIC OCEAN,Between Hawaii & Wake Island,600 miles northwest of Honolulu,U.S. Airforce C124 enroute from Hickham Air Base to Japan went down. The 3 survivors fashioned raft from mailbags & were rescued 3 days after the crash.," Captain Jonathan Brown, pilot ",M,31,Left shoulder bitten ,N,10h25,Sharks averaged 1.8 m [6'] in length,"Evening Star (Washington D.C.), 7/7/1958, p. A10; G.A. Llano in Sharks and Survival, pp.382-383; V.M. Coppleson (1962), p.259",1958.07.04.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.a-Brown.pdf,1958.07.04.a,1958.07.04.a,2068,, +1958.07.02,02-Jul-58,1958,Provoked,USA,Florida,"Siesta Key, Sarasota County",Free diving,John Hamlin,M,20,"He grabbed shark, it bit his leg below the knee PROVOKED INCIDENT",N,14h30,"Nurse shark, 1.5 m [5'] identified by Dr. E. Clark on description of shark","E. Clark; H. D. Baldridge, p.26",1958.07.02-Hamlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.02-Hamlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.02-Hamlin.pdf,1958.07.02,1958.07.02,2067,, +1958.07.01,01-Jul-58,1958,Unprovoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Maritzoan, east coast of Namatanai",Swimming, Toapindak (male),M,38,"FATAL, left arm severed ",Y,,,"Dept of Public Health, Namatani; A. M. Rapson, p. 149 ",1958.07.01-Toapindak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.01-Toapindak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.01-Toapindak.pdf,1958.07.01,1958.07.01,2066,, +1958.07.00.b,Jul-58,1958,Unprovoked,BAHAMAS,Abaco Islands,North of Walkers Cay,"Spearfishing, had fish on his spear",Stanton Waterman,M,36,"No injury, shark went for diver's leg & missed, diver hit shark on head with speargun & shark bit speargun ",N,12h00,"Tiger shark, <2 m TL","S. Waterman, GSAF",1958.07.00.b-Waterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.b-Waterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.b - Waterman.pdf,1958.07.00.b,1958.07.00.b,2065,, +1958.07.00.a,Jul-58,1958,Unprovoked,USA,Florida,"Sarasota, Sarasota County",,2 males admitted to Memorial Hospital emergency room this month,M,,Both were bitten on feet by sharks,N,,,"R. F. Hutton; T. Helm, p.239",1958.07.00.a-NV-Sarasota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.a-NV-Sarasota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.a-NV-Sarasota.pdf,1958.07.00.a,1958.07.00.a,2064,, +1958.06.26,26-Jun-58,1958,Provoked,USA,Florida,"Sanibel Island, Lee County",Wading,Eric Napier Cockerill,M,59,Right foot bitten when he walked into shark's head PROVOKED INCIDENT,N,17h30,"Nurse shark, 2.1 m [7'] identified by Dr. E. Clark on color & tooth impressions","E. Clark; Dr. Greenwood; R.F. Hutton; Randall in Sharks & Survival, p.357; T. Helm, p.237",1958.06.26-Cockerill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.26-Cockerill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.26-Cockerill.pdf,1958.06.26,1958.06.26,2063,, +1958.06.24,24-Jun-58,1958,Unprovoked,USA,Florida,"Turtle Beach, Siesta Key, Sarasota County",Walking,Frank A. Mahala,M,17,Lower left leg & foot bitten,N,17h10,Tiger shark?,"E. Clark; R. Skocik, pp.172-173; H.D. Baldridge, p.26",1958.06.24-Mahala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.24-Mahala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.24-Mahala.pdf,1958.06.24,1958.06.24,2062,, +1958.06.17,17-Jun-58,1958,Provoked,USA,Florida,Key Biscayne,"Swimming, towing the shark",B. Irving,M,,Thigh bitten PROVOKED INCIDENT,N,,"Nurse shark, 1.1 m [3.5'] ","Randall in Sharks & Survival, pp.357",1958.06.17-Irving.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.17-Irving.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.17-Irving.pdf,1958.06.17,1958.06.17,2061,, +1958.06.15,15-Jun-58,1958,Invalid,AUSTRALIA,Queensland,Green Island,Swimming,Alva Colquhoun & Ilsa Konrads,F,,"Injuries caused by coral, not the shark",N,,5' shark,"Natal Mercury, 6/18/1958",1958.06.15-Swimmers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.15-Swimmers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.15-Swimmers.pdf,1958.06.15,1958.06.15,2060,, +1958.06.02.R,Reported 02-Jun-1958,1958,Invalid,SOUTH AFRICA,KwaZulu-Natal,King Reef off Park Rynie,Spearfishing,Gene Franken & Maurice McGregor,M,,Injuries not caused by sharks,N,,,"Daily News, 6/2/1958",1958.06.02-McGregor-Franken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.02-McGregor-Franken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.02-McGregor-Franken.pdf,1958.06.02.R,1958.06.02.R,2059,, +1958.04.30,30-Apr-58,1958,Provoked,USA,Florida,1 mile off Miami Beach,Free diving,Johnny Bower,M,29,"Grabbed sharks tail, shark bit his thigh PROVOKED INCIDENT",N,,"Nurse shark, 1.5 m [5'] ","Miami Herald, May 1, 1958",1958.04.30-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.30-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.30-Bowers.pdf,1958.04.30,1958.04.30,2058,, +1958.04.19,19-Apr-58,1958,Unprovoked,TAIWAN,Taipei Hsien,Off Cape of Pi-tou,Diving,Nan-Tien Chang,M,29,Right cheek bitten,N,17h00,"Mako shark, 100-kg [221-lb] ",W.H. Yu,1958.04.19-Chang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.19-Chang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.19-Chang.pdf,1958.04.19,1958.04.19,2057,, +1958.04.05,05-Apr-58,1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Uvongo,Paddling in knee-deep water,Fay Jones Bester,F,28,FATAL,Y,11h10,3 m [10'] shark,"G.S. Perry, M. Levine, GSAF ",1958.04.05-Bester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.05-Bester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.05-Bester.pdf,1958.04.05,1958.04.05,2056,, +1958.04.03,03-Apr-58,1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Port Edward,Swimming with goggles,Nicholaas Badenhorst ,M,29,"FATAL, arm severed above elbow, abdomen & leg bitten ",Y,13h30,3 m [10'] shark,"M. Levine, GSAF ",1958.04.03-Badenhorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.03-Badenhorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.03-Badenhorst.pdf,1958.04.03,1958.04.03,2055,, +1958.04.00,Apr-58,1958,Unprovoked,PAPUA NEW GUINEA,Morobe Province,"Nasigilatu (Near Malasanga, Finschhafen, in the Huon Gulf)","Fishing, holding fish in his left hand",male,M,,Left forearm amputated,N,,,"A.D. Campbell; A.M. Rapson, p.149",1958.04.00-Nasigilatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.00-Nasigilatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.00-Nasigilatu.pdf,1958.04.00,1958.04.00,2054,, +1958.02.19,19-Feb-58,1958,Invalid,AUSTRALIA,New South Wales,,Spearfishing,Kevin Blair,M,21,"Disappeared while diving, speargun recovered, 2 large sharks in vicinity.",Y,Late afternoon,,"Durban Daily News, 2/20/1958",1958.02.19-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.19-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.19-Blair.pdf,1958.02.19,1958.02.19,2053,, +1958.02.01,01-Feb-58,1958,Provoked,USA,US Virgin Islands,Water Island,Spearfishing on Scuba,"U.S. Navy U.D.T. Diver trainee, Ronald Gerringer",M,18,Chest bitten by speared shark PROVOKED INCIDENT,N,,"Nurse shark, 1.5 m [5'] ","J, Randall, p.358 and L. Schultz & M. Malin, p.545 in Sharks & Survival",1958.02.01-Gerringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.01-Gerringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.01-Gerringer.pdf,1958.02.01,1958.02.01,2052,, +1958.01.27,27-Jan-58,1958,Unprovoked,AUSTRALIA,New South Wales,5 miles south of Sussex Inlet at mouth of Berara Lake,Spearfishing / swimming on surface,Ronald Kerwand,M,17,Right leg lacerated,N,,,"V.M. Coppleson (1962), p.251 ",1958.01.27-Kerwand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.27-Kerwand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.27-Kerwand.pdf,1958.01.27,1958.01.27,2051,, +1958.01.19,19-Jan-58,1958,Unprovoked,AUSTRALIA,New South Wales,Brunswick Heads,Body surfing,Brian Henderson,M,14,"Laceration to left ankle, heel and little toe",N,16h30,6' shark,"V.M. Coppleson (1962), p.245",1958.01.19-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.19-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.19-Henderson.pdf,1958.01.19,1958.01.19,2050,, +1958.01.09.R,Reported 09-Jan-1958,1958,Invalid,JAPAN,Ibaraki Prefecture,Mito,,male,M,50,Torso recovered from shark,Y,,8; 206-lb shark,"Natal Mercury, 1/9/1958",1958.01.09.R-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09.R-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09.R-Japan.pdf,1958.01.09.R,1958.01.09.R,2049,, +1958.01.09,09-Jan-58,1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scotburgh,Swimming,Derek Garth Prinsloo,M,,FATAL,Y,07h30,White shark,"M. Levine, GSAF",1958.01.09-Prinsloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09-Prinsloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09-Prinsloo.pdf,1958.01.09,1958.01.09,2048,, +1958.00.00.j,1958-1959,1958,Provoked,TONGA,Vava'u,Hunga Island,Spearfishing,male,M,,Calf avulsed by shark he was holding by the tail PROVOKED INCIDENT,N,,<1 m shark,Dr. S. Fonea,1958.00.00.j-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.j-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.j-Tonga.pdf,1958.00.00.j,1958.00.00.j,2047,, +1958.00.00.i,1958,1958,Provoked,SAMOA,South Pacific Ocean,North of Northeast Samoa,Placed hand in disemboweled sharks jaws,Takai Otiai,,,Hand lacerated PROVOKED INCIDENT,N,,,"V.M. Coppleson (1962), p.248",1958.00.00.i-Otiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.i-Otiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.i-Otiai.pdf,1958.00.00.i,1958.00.00.i,2046,, +1958.00.00.h,1958,1958,Provoked,PANAMA,Canal Zone,,Skindiving,boy,M,,"Boy seized shark by its tail, shark bit boys forearm PROVOKED INCIDENT",N,,"18"" to 24"" shark","Dr. F. X. Schloeder; H.D. Baldridge, p.165",1958.00.00.h-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.h-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.h-Panama.pdf,1958.00.00.h,1958.00.00.h,2045,, +1958.00.00.f,1958,1958,Unprovoked,PAPUA NEW GUINEA,Louisiade Archipelago,"Brooker Island , Calvados Chain",,Anonymous,,,FATAL,Y,,,"A.M. Rapson, p.149",1958.00.00.f-BrookerIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.f-BrookerIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.f-BrookerIsland.pdf,1958.00.00.f,1958.00.00.f,2044,, +1958.00.00.e,1958,1958,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Bulu, Talasea",Spearfishing,male,M,,"FATAL, back & buttocks bitten ",Y,,,"A.M. Rapson, p. 149",1958.00.00.e-Bulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.e-Bulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.e-Bulu.pdf,1958.00.00.e,1958.00.00.e,2043,, +1958.00.00.d,1958,1958,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Kombe, Talasea",Spearfishing,male,M,,"FATAL, severe abdominal injuries ",Y,,Several sharks involved,"A.M. Rapson, p.149",1958.00.00.d-Kombe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.d-Kombe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.d-Kombe.pdf,1958.00.00.d,1958.00.00.d,2042,, +1958.00.00.c,1958,1958,Unprovoked,PAPUA NEW GUINEA,Morobe Province,"Korem, Finschhafen ","Fishing, holding fish",male x 3,M,,Hand holding the fish was bitten in all 3 cases,N,,,"A.D. Campbell; A. M. Rapson, p.149",1958.00.00.c-Korem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.c-Korem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.c-Korem.pdf,1958.00.00.c,1958.00.00.c,2041,, +1958.00.00.b,1958,1958,Boat,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Fishing (trolling),ski-boat,,,No injury to occupants; shark bit propeller,N,,White shark,"T. Wallett, p.27",1958.00.00.b-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.b-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.b-PlettenburgBay.pdf,1958.00.00.b,1958.00.00.b,2040,, +1958.00.00.a,Circa 1958,1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,MaKakatana River,"Fishing, walking in river to cast",young Zulu male,M,,"FATAL, right leg severed above knee ",Y,,,"J. Daniel, M. Levine. GSAF ",1958.00.00.a-KakatanaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.a-KakatanaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.a-KakatanaRiver.pdf,1958.00.00.a,1958.00.00.a,2039,, +1957.12.31,31-Dec-57,1957,Unprovoked,AUSTRALIA,South Australia,"Port Hughes, 100 miles from Adelaide in Spencer Gulf",Spearfishing,Jack Evans,M,,No injury. Shark grabbed fish attached to his belt & towed him seaward. ,N,,,"V.M. Coppleson (1962), p.251",1957.12.31-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.31-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.31-Evans.pdf,1957.12.31,1957.12.31,2038,, +1957.12.30,30-Dec-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Standing,Julia Painting,F,14,"Left arm severed, torso bitten, thigh lacerated, many abrasions",N,12h40,1.8 m [6'] shark,"J. Painting, Dr. Feinberg, M. Levine, GSAF",1957.12.30-Painting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.30-Painting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.30-Painting.pdf,1957.12.30,1957.12.30,2037,, +1957.12.26,26-Dec-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Splash Rock, Port Edward",Skindiving,Donald Webster,M,20,Lacerations on head & neck,N,10h30,,"Natal Mercury, 12/27/1957; M. Levine, GSAF",1957.12.26-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.26-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.26-Webster.pdf,1957.12.26,1957.12.26,2036,, +1957.12.23,23-Dec-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Floating,Vernon James Berry,M,23,"FATAL, right arm broken & stripped of flesh, left hand severed above wrist, lower abdomen, buttocks & thigh bitten ",Y,16h23,>3 m [10'] shark,"P. Lynch, N. Doveton, G. Wolfe, M.Levine, GSAF ",1957.12.23-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.23-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.23-Berry.pdf,1957.12.23,1957.12.23,2035,, +1957.12.20,20-Dec-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Uvongo,Standing,Allan Green,M,15,"FATAL, multiple, severe injuries ",Y,16h00,,"P. Lynch, G. Wolfe, A. Cowan, M.Levine, GSAF ",1957.12.20-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.20-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.20-Green.pdf,1957.12.20,1957.12.20,2034,, +1957.12.18,18-Dec-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Karridene,Body surfing,Robert Wherley,M,16,"Left leg severed at knee, part of left thigh removed",N,17h00,," M. Levine, GSAF ",1957.12.18-Wherley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.18-Wherley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.18-Wherley.pdf,1957.12.18,1957.12.18,2033,, +1957.11.08,08-Nov-57,1957,Sea Disaster,PACIFIC OCEAN,"1,000 miles east of Hawaii",,Air/Sea Disaster Pan-American Airlines Stratocruiser with 44 people onboard crashed into the sea,,,,Navy personnel recovered 19 shark-scavenged bodies,N,,,"Guam Daily News, November 19, 1957; V.M. Coppleson (1962), p.259; SAF Case #1075",1957.11.08-Stratocruiser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.08-Stratocruiser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.08-Stratocruiser.pdf,1957.11.08,1957.11.08,2032,, +1957.11.04.R,Reported 04-Nov-1957,1957,Boat,AUSTRALIA,New South Wales,Off Scotts,Fishing,"16-foot launch, occupants: George Casey, Jack Byrnes, Julian Reynolds & Denny Laverty",,,"No injury, shark's teeth embedded in boat",N,,,"The Age, 11/04/1957",1957.11.04.R-Fishing-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.04.R-Fishing-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.04.R-Fishing-launch.pdf,1957.11.04.R,1957.11.04.R,2031,, +1957.10.24,24-Oct-57,1957,Unprovoked,SOLOMON ISLANDS,Honiara,Honiara,,"Matthew Keia, a Lord Howe native",M,22,FATAL,Y,17h30,,"V.M. Coppleson (1962), p.248 ",1957.10.24-Keia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.24-Keia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.24-Keia.pdf,1957.10.24,1957.10.24,2030,, +1957.10.23,23-Oct-57,1957,Unprovoked,SOLOMON ISLANDS,Honiara,Honiara,,Melanesian woman,F,28,FATAL,Y,17h30,,"V.M. Coppleson (1962), p.248",1957.10.23-Melanesian-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.23-Melanesian-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.23-Melanesian-woman.pdf,1957.10.23,1957.10.23,2029,, +1957.09.02,02-Sep-57,1957,Unprovoked,MARSHALL ISLANDS,Eniwetok Atoll,Parry Island,,Walter L. Huges,M,,Survived,N,,Identified as carcharinid shark (based on its behavior) by Dr. D.P. L. Schultz; mako shark according to Huges,"V.M. Coppleson (1962), p.248",1957.09.02-Huges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.09.02-Huges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.09.02-Huges.pdf,1957.09.02,1957.09.02,2028,, +1957.08.00,Aug-57,1957,Provoked,USA,Florida,"Miami Seaquarium, Virginia Key, Miami, Miami-Dade County",Attempting to net shark in shark channel,Philip Case & William B. Gray,M,,Legs bitten PROVOKED INCIDENT,N,,"2.7 m [9'] bull shark, identified by Capt. W. Gray","St. Petersburg Times (Sunday Magazine), 3/1/1959; R. F. Hutton; J. Randall, p.352 in Sharks & Survival; T. Helm, p.238",1957.08.00-Case-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.08.00-Case-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.08.00-Case-Gray.pdf,1957.08.00,1957.08.00,2027,, +1957.07.24,24-Jul-57,1957,Provoked,USA,California,"La Jolla, San Diego County",Spearfishing on Scuba,Earl .A. Murray,M,,Diver jabbed shark with spear and it make a threat display. No injury PROVOKED INCIDENT,N,,"Said to involve a 1 m white shark, but thought that it was more likely a blue shark","SAF Case #1497; R. Collier, p. xxv; H.D. Baldridge, p.185",1957.07.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.24-Murray.pdf,1957.07.24,1957.07.24,2026,, +1957.07.15,15-Jul-57,1957,Unprovoked,USA,North Carolina,"Salter Path, Atlantic Beach, Carteret County",Swimming,Rupert Wade,M,57,"FATAL, knee bitten ",Y,15h15,White shark,"V.M. Coppleson, p.155; F. Walker; F. Schwartz, p.23",1957.07.15-Rupert-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.15-Rupert-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.15-Rupert-Wade.pdf,1957.07.15,1957.07.15,2025,, +1957.07.09,09-Jul-57,1957,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Diving for trochus,Conwell Kris,M,36,Right hand and arm bitten,N,,9' shark,"The Age, 7/11/1957",1957.07.09-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.09-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.09-Kris.pdf,1957.07.09,1957.07.09,2024,, +1957.06.21,21-Jun-57,1957,Invalid,CUBA,Yucatan Channel,,M.V. Tropical sank. Sole survivor rode oil drums for 8 days without food or water.,,,,"No injury, no attack, sharks in vicinity when the sea was calm",N,,,"Daily Telegram, 7/1/1957, p.4; V.M. Coppleson (1962), p.259",1957.06.21-Tropical.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.06.21-Tropical.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.06.21-Tropical.pdf,1957.06.21,1957.06.21,2023,, +1957.05.11,11-May-57,1957,Unprovoked,AUSTRALIA,New South Wales,"Tea Gardens, north of Newcastle",Competing in spearfishing championship & towing dead fish,Leonard Higgins,M,28,Thigh bitten & few lacerations on abdomen & buttock,N,12h00,4.6 m [15'] shark,"V.M. Coppleson (1958), p.175",1957.05.11-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.11-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.11-Higgins.pdf,1957.05.11,1957.05.11,2022,, +1957.05.07,Reported 07-May-1957,1957,Unprovoked,SOLOMON ISLANDS,,,Fishing,Elison Sevo,M,,Legs nipped & he bit shark's snout,N,,,"Miami Daily News, 5/7/1957",1957.05.07.R-Sevo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.07.R-Sevo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.07.R-Sevo.pdf,1957.05.07,1957.05.07,2021,, +1957.05.00,May-57,1957,Unprovoked,USA,Florida,"8 miles off St. Marks, Wakulla County",3 men & 2 boys picked up wearing life jackets and with inner tube,male,M,,Leg lacerated,N,,,"V.M. Coppleson (1962), p.259",1957.05.00-St-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.00-St-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.00-St-Marks.pdf,1957.05.00,1957.05.00,2020,, +1957.04.28,28-Apr-57,1957,Unprovoked,USA,California,"Atascadero Beach, Morro Bay, San Luis Obispo County",Swimming,Peter Savino,M,25,"FATAL, seen with arm in mouth of shark. Body not recovered. ",Y,13h30,White shark,"D. Miller & R. Collier, R. Collier, pp.16-17; V.M. Coppleson (1958), p.255",1957.04.28-Savino_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.28-Savino_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.28-Savino_Collier.pdf,1957.04.28,1957.04.28,2019,, +1957.04.23,23-Apr-57,1957,Unprovoked,AUSTRALIA,New South Wales,"Merewether Beach, Newcastle",Surfing,Paul Wilson ,M,15,Minor injuries,N,,Wobbegong shark?,"V.M. Coppleson (1958), pp.79 & 236",1957.04.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.23-Wilson.pdf,1957.04.23,1957.04.23,2018,, +1957.04.22,22-Apr-57,1957,Provoked,USA,Florida,"Ormond Beach, Volusia County",Standing,Michael Carpenter,M,17,Ankle injured by shark trapped in pool as it tried to get out PROVOKED INCIDENT ,N,11h00,4 m [13'] shark,"R. F. Hutton; V.M. Coppleson (1958), pp.155 & 255",1957.04.22-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.22-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.22-Carpenter.pdf,1957.04.22,1957.04.22,2017,, +1957.04.13,13-Apr-57,1957,Unprovoked,AUSTRALIA,Torres Strait,"Thursday Island Harbour, Queensland",Swimming between anchored pearling luggers,Tuisafua Nomoa,M,22,"Left arm bitten, surgically amputated",N,14h00,Shark seen feeding on turtle scraps thrown overboard prior to incident.,"J.W. Robinson; V.M. Coppleson (1958), p.245; J. Green, p.34",1957.04.13-Nomoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.13-Nomoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.13-Nomoa.pdf,1957.04.13,1957.04.13,2016,, +1957.04.07.b,07-Apr-57,1957,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),Kieta,Diving from canoe,Omni (rescuer),M,17,Injured while Sonieva was transferred to another canoe,N,,,"V.M. Coppleson (1958), pp.248 & 266",1957.04.07.b-Omni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.b-Omni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.b-Omni.pdf,1957.04.07.b,1957.04.07.b,2015,, +1957.04.07.a,07-Apr-57,1957,Unprovoked,SOLOMON ISLANDS,Bougainville (North Solomons),Kieta,Diving from canoe,Matthew Sonieva,M,15,Leg severed,N,,,"V.M. Coppleson (1958), pp. 248 & 266; A.M. Rapson, p.149",1957.04.07.a-Sonieva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.a-Sonieva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.a-Sonieva.pdf,1957.04.07.a,1957.04.07.a,2014,, +1957.02.24,24-Feb-57,1957,Unprovoked,FIJI,Viti Levu,Suva Harbor,Spearfishing,Sami Bale,M,,Right arm & forearm injured,N,,,"NOTE: V.M. Coppleson (1962), p.253, records the date as 2/24/1957; L. Schultz & M. Malin, p.537, records the name as ""Bale, a Fijian"" and the date as 2/24/1956 ",1957.02.24-Bale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.24-Bale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.24-Bale.pdf,1957.02.24,1957.02.24,2013,, +1957.02.05,05-Feb-57,1957,Unprovoked,USA,Florida,"South Beach, Fort Pierce, St Lucie County",Floating,David Carson,M,,Foot bitten,N,15h30,1.2 m [4'] shark,"R.F. Hutton; V.M. Coppleson (1958), p.255",1957.02.05-Carson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.05-Carson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.05-Carson.pdf,1957.02.05,1957.02.05,2012,, +1957.02.02,02-Feb-57,1957,Unprovoked,AUSTRALIA,Western Australia,Cape Levque,,"Japanese male, one of crew of pearl culture survey ship",M,,Man landed at Cape Levque lighthouse in critical condition after being bitten by a shark. Not known if he survived.,UNKNOWN,,,"V.M. Coppleson (1958), p.264",1957.02.02-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.02-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.02-JapaneseDiver.pdf,1957.02.02,1957.02.02,2011,, +1957.02.00,Feb-57,1957,Unprovoked,USA,Florida,Florida Keys,Skindiving for specimens,R.P.L. Straughan,M,,Minor injuries,N,,Said to involve a large mako shark,"T. Helm, p.235",1957.02.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.00-Straughan.pdf,1957.02.00,1957.02.00,2010,, +1957.01.05,05-Jan-57,1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umgeni River Mouth,Wading,Sydney Victor Williams,M,12,FATAL,Y,,,"Col. C. Maritz, M. Levine, GSAF",1957.01.05-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.01.05-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.01.05-Williams.pdf,1957.01.05,1957.01.05,2009,, +1957.00.00.k,1957,1957,Invalid,SRI LANKA,Western Province,Colombo Harbor,Fishing,F. L. Fernando,M,,"FATAL, but shark involvement not confirmed",Y,,,R. I. DeSilva,1957.00.00.k-Fernando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.k-Fernando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.k-Fernando.pdf,1957.00.00.k,1957.00.00.k,2008,, +1957.00.00.j,1957,1957,Unprovoked,USA,Florida,"Fort Pierce, St. Lucie County",Bathing,R. Nauth,,,Injured by shark,N,,1.5 m [5'] shark,R.F. Hutton,1957.00.00.j-NV-Nauth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.j-NV-Nauth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.j-NV-Nauth.pdf,1957.00.00.j,1957.00.00.j,2007,, +1957.00.00.i,1957,1957,Invalid,CUBA,Havana Province,Cojimar,,an infant,,2 to 3 months,"FATAL, but was it an accident or infanticide?",Y,,3.7 m [12'] shark,"F. Poli, p.23-24",1957.00.00.i-baby,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.i-baby,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.i-baby,1957.00.00.i,1957.00.00.i,2006,, +1957.00.00.h,1957,1957,Boat,CUBA,Havana Province,Cojimar,Fishing,"boat, occupant: Portuondo",,,"No injury to occupant, shark stuck boat",N,,3.7 m [12'] shark ,"F. Poli, pp.21-24",1957.00.00.h-boat-Portuondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.h-boat-Portuondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.h-boat-Portuondo.pdf,1957.00.00.h,1957.00.00.h,2005,, +1957.00.00.g,1957,1957,Unprovoked,CUBA,Havana Province,Havana,Fishing for sharks,William Bolster,M,18,"FATAL, became entangled in fishing line and pulled below the surface ",Y,,,"F. Poli, p.9",1957.00.00.g-Bolster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.g-Bolster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.g-Bolster.pdf,1957.00.00.g,1957.00.00.g,2004,, +1957.00.00.f,1957,1957,Unprovoked,USA,Florida,"Miami, Miami-Dade County",Helmet diving in Miami Seaquarium,Jim Kline,M,,"Shark struck helmet, no injury",N,,Bull shark,"R. Carras, H.D. Baldridge, p.181",1957.00.00.f-Kline.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.f-Kline.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.f-Kline.pdf,1957.00.00.f,1957.00.00.f,2003,, +1957.00.00.e,1957,1957,Unprovoked,FIJI,Kadavu,Great Astrolabe Reef,Fishing,Semesa Vasu,M,30,Right foot lacerated,N,,,S.B. Brown,1957.00.00.e-Vasu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.e-Vasu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.e-Vasu.pdf,1957.00.00.e,1957.00.00.e,2002,, +1957.00.00.d,1957,1957,Unprovoked,IRAN,Karun River,"near Band Misan in Shustar, 420 km from the sea",,Mr. Paniry,M,,Survived,N,,Bull shark,B. Coad,1957.00.00.d-Paniry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.d-Paniry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.d-Paniry.pdf,1957.00.00.d,1957.00.00.d,2001,, +1957.00.00.b,1957,1957,Unprovoked,PAPUA NEW GUINEA,"Abau Subdistrict,Central Province",Mailu area ,Fishing,"male, from Laluoro",M,,"FATAL, multiple injuries ",Y,,,"A. Bleakley; A.M. Rapson, p.149",1957.00.00.b-Mailu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.b-Mailu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.b-Mailu.pdf,1957.00.00.b,1957.00.00.b,2000,, +1957.00.00.c,1957,1957,Unprovoked,IRAN,Karun River,Hesamabad,,Mr. Falah,M,,Survived,N,,Bull shark,B. Coad & F. Papahn,1957.00.00.c-Falah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.c-Falah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.c-Falah.pdf,1957.00.00.c,1957.00.00.c,1999,, +1957.00.00.a,1957,1957,Unprovoked,PAPUA NEW GUINEA,"New Britain, Bismarck Archipelago",Duke of York Island,Dynamiting fish,male,M,,FATAL,Y,,,"A. M. Rapson, p. 149",1957.00.00.a-Duke-of-York.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.a-Duke-of-York.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.a-Duke-of-York.pdf,1957.00.00.a,1957.00.00.a,1998,, +1956.12.26,26-Dec-56,1956,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,Samarai Island (south end),Spearfishing,Patterson (John) Nikuniko,M,19,"FATAL, left leg severed at hip, left torso removed ",Y,13h00,2.4 m [8'] tiger shark caught 40 hours later with shorts of the boy in its gut,"Beavis, Kwato Mission; District Commissioner, Samarai; South Pacific Post, 10/29/1956; A.M. Rapson, p.149",1956.12.26-Nikuniko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.26-Nikuniko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.26-Nikuniko.pdf,1956.12.26,1956.12.26,1997,, +1956.12.24,24-Dec-56,1956,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,Samarai Island,Spearfishing,Titus Tiso,M,16,"FATAL, left arm, shoulder & chest bitten ",Y,12h00,,"Beavis, Kwato Mission; A. M. Rapson, p. 149; V.M. Coppleson (1958), p.264",1956.12.24-Tiso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.24-Tiso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.24-Tiso.pdf,1956.12.24,1956.12.24,1996,, +1956.12.15.R,Reported 15-Dec-1956,1956,Unprovoked,GABON,Estuaire Province,Owendo,Swimming,P. Allen,M,,FATAL,Y,,,"Alton Evening Telegraph, 12/15/1956, p.4",1956.12.15.R-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.15.R-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.15.R-Allen.pdf,1956.12.15.R,1956.12.15.R,1995,, +1956.12.09,09-Dec-56,1956,Provoked,NEW ZEALAND,North Island,North Auckland,Fishing,Richard McKenzie,M,70,Bitten in cockpit of boat by shark caught 30 minutes earlier PROVOKED INCIDENT,N,,"Mako shark, 125-lb "," The Argus, 12/10/1956; V.M. Coppleson (1958)",1956.12.09-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.09-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.09-McKenzie.pdf,1956.12.09,1956.12.09,1994,, +1956.10.27,27-Oct-56,1956,Unprovoked,SOUTH AFRICA,Western Cape Province,"Glencairn, False Bay",Free diving for sinkers,Graham Smith,M,29,Right heel lacerated & swim fin removed by shark,N,,"White shark, according to witnesses","M. Levine, GSAF",1956.10.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.27-Smith.pdf,1956.10.27,1956.10.27,1993,, +1956.10.20,20-Oct-56,1956,Unprovoked,PAPUA NEW GUINEA,Central Province,Kapakapa ,"Spearfishing, holding 5' speared fish",Bogana Sabati,M,,"Left forearm & hand bitten, surgically amputated ",N,,3.7 m [12'] shark,"South Pacific Post, 1/024/1956; A.M. Rapson, p. 149",1956.10.20-Sabati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.20-Sabati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.20-Sabati.pdf,1956.10.20,1956.10.20,1992,, +1956.10.07,07-Oct-56,1956,Unprovoked,SENEGAL,"Near Dakar, Cap Vert Peninsula",Isle de Gore,"Skindiving, fish at belt",k,M,19,Right thigh bitten,N,18h15,Lemon shark,"M. Cadenet; Y. Gilbert-Desvallons; V.M. Coppleson (1962), p.538 ",1956.10.07-Peron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.07-Peron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.07-Peron.pdf,1956.10.07,1956.10.07,1991,, +1956.10.00,Oct-56,1956,Unprovoked,PAPUA NEW GUINEA,,Port Moresby,Fishing,,M,,FATAL,Y,,,"The Age, 12/7/1956",1956.10.00-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.00-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.00-PortMoresby.pdf,1956.10.00,1956.10.00,1990,, +1956.09.23,23-Sep-56,1956,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surf fishing,"Joel Healy, Jr.",M,27,Posterior left ankle bitten,N,,a sand shark,"Daytona Beach Morning Journal, 9/26/1956",1956.09.23-Healy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.23-Healy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.23-Healy.pdf,1956.09.23,1956.09.23,1989,, +1956.09.13,13-Sep-56,1956,Unprovoked,,Near the Andaman & Nicobar Islands,,Climbing back on ship,male,M,,FATAL,Y,P.M.,Blue shark,M. Hosina,1956.09.13-TunaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.13-TunaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.13-TunaBoat.pdf,1956.09.13,1956.09.13,1988,, +1956.09.00.b,Sep-56,1956,Unprovoked,MAYOTTE,Mozambique Channel,,Fishing,2 males,M,,FATAL,Y,,Tiger shark,P. Fourmanoir,1956.09.00.b-Mayotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.b-Mayotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.b-Mayotte.pdf,1956.09.00.b,1956.09.00.b,1987,, +1956.09.00.a,Sep-56,1956,Unprovoked,ITALY,Tyrrenian Sea,1.5 miles south of San Felice Circeo ,Scuba diving,Goffredo Lombardo,M,,Survived,N,,"White shark, 13'10"", 1320-lb female ","G. Bini, A. De Maddalena & C. Moore, GSAF",1956.09.00.a-Lombardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.a-Lombardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.a-Lombardo.pdf,1956.09.00.a,1956.09.00.a,1986,, +1956.08.25,25-Aug-56,1956,Unprovoked,PAPUA NEW GUINEA,Central Province,"Paga Point or Fishermans Island, Port Moresby",Fishing ,"Kara Benagi, from Hula",M,34,"FATAL, tissue removed from abdomen & thigh ",Y,,4.3 m [14'] shark,"V.M. Coppleson (1958), pp.49-51 & 264; A.M. Rapson, p. 149",1956.08.25-Benagi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.25-Benagi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.25-Benagi.pdf,1956.08.25,1956.08.25,1985,, +1956.08.20,20-Aug-56,1956,Unprovoked,PAPUA NEW GUINEA,Central Province,"Paga Point, Port Moresby ",Fishing,native,M,,"Leg bitten, but survived",N,,,"V.M. Coppleson (1958), pp.49 & 264; A.M. Rapson, p.149",1956.08.20-native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.20-native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.20-native.pdf,1956.08.20,1956.08.20,1984,, +1956.08.15.R,Reported 15-Aug-1956,1956,Unprovoked,USA,Puerto Rico,North coast,Skin diving,Jose Luis Nufize Lago,M,13,FATAL,Y,,,"Virgin Island Daily News, 8/15/1956, p.1",1956.08.15.R-Lago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.R-Lago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.R-Lago.pdf,1956.08.15.R,1956.08.15.R,1983,, +1956.08.15.b,15-Aug-56,1956,Provoked,AUSTRALIA,Queensland,Near Southport,Diving,Lyle Davis,M,,Laceration to arm when his dive buddy grabbed the shark PROVOKED INCIDENT,N,,"Wobbegong shark, 4' ","Central Queensland Herald, 8/16/1956",1956.08.15.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.b-Davis.pdf,1956.08.15.b,1956.08.15.b,1982,, +1956.08.15.a,15-Aug-56,1956,Unprovoked,USA,California,"Pismo Beach, San Luis Obispo County",Swimming near pier,Douglas Clarke,M,10,"Lacerated thigh, hand & shoulder",N,16h30,"White shark, 2.7 m [9'] ","D. Miller & R. Collier, V.M. Coppleson (1958), p.255; R. Collier, p. 15",1956.08.15.a-DouglasClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.a-DouglasClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.a-DouglasClarke.pdf,1956.08.15.a,1956.08.15.a,1981,, +1956.08.01,01-Aug-56,1956,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Chain Rocks, Amanzimtoti",Free diving for crayfish,Maximilliaan Roual Van Dam,M,23,"No injury, right swim fin bitten",N,Afternoon,,"Umtali Post, 8/8/1956, M. Levine, GSAF",1956.08.01-VanDam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.01-VanDam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.01-VanDam.pdf,1956.08.01,1956.08.01,1980,, +1956.08.00.e,Aug-56,1956,Provoked,UNITED KINGDOM,Cornwall,The Lizard,Attempting to kill a shark with explosives,Richard Kirby,M,,"FATAL, PROVOKED INCIDENT",Y,,,ThisisCornwall.co.uk ,1956.08.00.e-Kirby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.e-Kirby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.e-Kirby.pdf,1956.08.00.e,1956.08.00.e,1979,, +1956.08.00.d,Aug-56,1956,Provoked,UNITED KINGDOM,Cornwall,The Lizard,Attempting to kill a shark with explosives,Leslie Nye,M,,"FATAL, PROVOKED INCIDENT",Y,,,ThisisCornwall.co.uk ,1956.08.00.d-Nye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.d-Nye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.d-Nye.pdf,1956.08.00.d,1956.08.00.d,1978,, +1956.08.00.c,Aug-56,1956,Boat,MALTA,Congreve Channel,between Filfla Island and Wied iz-Zurrieq,Fishing,boat: occupants: Nazzareno Zammit & Emmanuel,,,"No injury to occupants, but Emmanuel ""later died of shock in hospital""",N,,Porbeagle or white shark,A. Buttigieg,1956.08.00.c-Zammit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.c-Zammit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.c-Zammit.pdf,1956.08.00.c,1956.08.00.c,1977,, +1956.08.00.b,Aug-56,1956,Unprovoked,PAPUA NEW GUINEA,Central Province,Yule Island,Fishing,Tsira Native,M,,"Leg severed, but survived",N,,,"V.M. Coppleson (1958), pp.49-51 & 264; A.M. Rapson, p. 149",1956.08.00.b-TsiraNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.b-TsiraNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.b-TsiraNative.pdf,1956.08.00.b,1956.08.00.b,1976,, +1956.08.00.a,Aug-56,1956,Unprovoked,PAPUA NEW GUINEA,Central Province,"Fisherman's Island, near Port Moresby",Fishing,native boy,M,,Leg & foot lacerated,N,,2.3 m [7'] shark,"V.M. Coppleson (1958), pp.49-51; A. M. Rapson, p. 149",1956.08.00.a-NativeBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.a-NativeBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.a-NativeBoy.pdf,1956.08.00.a,1956.08.00.a,1975,, +1956.07.28,28-Jul-56,1956,Provoked,USA,Puerto Rico,Aquadilla,Floating in inner tube,Jose Alengo,M,13,FATAL. His brother speared a shark which then attacked Jose & severed his leg at knee. PROVOKED INCIDENT ,Y,10h30,,"V.M. Coppleson (1958), p.265",1956.07.28-Alengo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.28-Alengo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.28-Alengo.pdf,1956.07.28,1956.07.28,1974,, +1956.07.26,26-Jul-56,1956,Provoked,USA,California,"Van Ness Municipal Pier, San Francisco",Fishing,Bansie Koide,M,38,Finger bitten by hooked shark PROVOKED INCIDENT,N,,8-lb shark,"San Mateo Times, 7/27/1956, p.18",1956.07.26-BansieKoide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.26-BansieKoide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.26-BansieKoide.pdf,1956.07.26,1956.07.26,1973,, +1956.07.20,20-Jul-56,1956,Unprovoked,MALTA,St. Thomas Bay,Marsascala,Swimming,Jack Smedley,M,40,FATAL,Y,,White shark,"V.M. Coppleson (1958), p.261; A. Xuereb; A. Buttigieg & C. Moore, GSAF",1956.07.20-Smedley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.20-Smedley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.20-Smedley.pdf,1956.07.20,1956.07.20,1972,, +1956.07.17,17-Jul-56,1956,Unprovoked,USA,Florida,"Miami Beach, Miami-Dade County",Wading,Eleanor Nelson,F,38,Lacerations to legs,N,18h00,,"Miami Daily News, 7/19/1956",1956.07.17-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.17-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.17-Nelson.pdf,1956.07.17,1956.07.17,1971,, +1956.07.12,12-Jul-56,1956,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Eric Rawls,M,7,Arm & leg injured,N,15h00j,,"News & Courier, 7/14/1956; V.M. Coppleson (1958), pp. 153 & 255",1956.07.12-Rawls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.12-Rawls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.12-Rawls.pdf,1956.07.12,1956.07.12,1970,, +1956.06.28,28-Jun-56,1956,Unprovoked,AUSTRALIA,Torres Strait,"Fishman's Island (near Port Moresby, PNG) ","Line fishing from Lakotoi, saw shoal of fish, dived overboard, had speared second fish & surfaced for air",Kila,M,,"6"" gashes in foot & leg ",N,,2.3 m [7'] shark,"A. M. Rapson, p.149; V.M. Coppleson (1962), p.254",1956.06.28-Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.28-Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.28-Kila.pdf,1956.06.28,1956.06.28,1969,, +1956.06.22, 22-Jun-1956,1956,Boating,PORTUGAL,Madeira,Off Funchal,Longling fishing,Manuel Pereira,M,23,"FATAL. Shark sank fishing boat, causing death by drowning",Y,,,"C. Moore, GSAF",1956.06.22-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.22-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.22-Pereira.pdf,1956.06.22,1956.06.22,1968,, +1956.06.20,20-Jun-56,1956,Sea Disaster,MID ATLANTIC OCEAN,,Venezuelan aircraft lost,Air/Sea Disaster,,,,FATAL x 6,Y,,,"New York Times, 6/21/1956; L. Schultz & M. Malin, p.558",1956.06.20-VenezuelanAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.20-VenezuelanAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.20-VenezuelanAircraft.pdf,1956.06.20,1956.06.20,1967,, +1956.05.26.R,Reported 26-May-1956,1956,Boating,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Fishing,multiple boats including B.J. C. Brunt,,,"No injury, sharks bit propellers, etc",N,,White shark,"Natal Mercuy, 5/26/1956",1956.05.26.R-Brunt-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.26.R-Brunt-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.26.R-Brunt-boat.pdf,1956.05.26.R,1956.05.26.R,1966,, +1956.05.07,07-May-56,1956,Unprovoked,CUBA,,,"Free diving, working on U/W scenes for motion picture",Russ Shearman,M,30,FATAL,Y,,,"V.M. Coppleson (1958), p.258; V.M. Coppleson (1962), p.253",1956.05.07-Shearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.07-Shearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.07-Shearman.pdf,1956.05.07,1956.05.07,1965,, +1956.05.00,May-56,1956,Unprovoked,AUSTRALIA,Torres Strait,,Diving,,,,"""Badly bitten by shark""",N,,," V.M. Coppleson (1958), p.245",1956.05.00-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.00-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.00-diver.pdf,1956.05.00,1956.05.00,1964,, +1956.03.25,25-Mar-56,1956,Boating,ITALY,Ligurian Sea,"Genova, S. Nazaro, Punta Vagno",Boating,,,,No details,UNKNOWN,,Said to involve a 7 m [23'] white shark,A. De Maddalena; Mojetta et al. (1997),1956.03.25-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.25-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.25-Italy.pdf,1956.03.25,1956.03.25,1963,, +1956.03.11,11-Mar-56,1956,Unprovoked,AUSTRALIA,New South Wales,"Cronulla, near Sydney",Bathing,Ian Nolan,M,13,"Right thigh gashed, swim fin torn",N,,," V.M. Coppleson (1958), p.112",1956.03.11-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.11-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.11-Nolan.pdf,1956.03.11,1956.03.11,1962,, +1956.03.04,04-Mar-56,1956,Unprovoked,AUSTRALIA,Victoria,"Portsea Beach, near entrance to Port Phillip Bay","Swimming, attacked at surf carnival",John Patrick Wishart,M,26,FATAL,Y,16h45,3.7 m [12'] shark & may have been another shark nearby,"V.M. Coppleson (1958), pp.110-111 & 241; J. Green, p.34; A. Sharpe, pp.112-113",1956.03.04-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.04-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.04-Wishart.pdf,1956.03.04,1956.03.04,1961,, +1956.03.00.b,Mar-56,1956,Unprovoked,AUSTRALIA,Western Australia,Fremantle,Attempting to set underwater endurance record,Theo Brown,M,21,"No injury to diver, but shark bit hole in his wetsuit",N,,,"J. Green, p.34, Spokesman-Review, 3/19/1956",1956.03.00.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.00.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.00.b-Brown.pdf,1956.03.00.b,1956.03.00.b,1960,, +1956.02.26,26-Feb-56,1956,Unprovoked,AUSTRALIA,Queensland,Pioneer River near Mackay,Diving into water,Barry Keith Antonini,M,15,"FATAL, large amount of tissue removed from leg, artery severed ",Y,11h00,1.8 m [6'] shark,"B. Thompson; L. Schultz & M. Malin, p.521",1956.02.26-Antonini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.26-Antonini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.26-Antonini.pdf,1956.02.26,1956.02.26,1959,, +1956.02.10.R,Reported 10-Feb-1956,1956,Unprovoked,AUSTRALIA,Victoria,Cowes,Swimming,Brian Hamilton,M,8,Punctures to calves,N,,,"The Argus, 2/10/1956",1956.02.10.R-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.10.R-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.10.R-Hamilton.pdf,1956.02.10.R,1956.02.10.R,1958,, +1956.01.16.R,Reported 16-Jan-1956,1956,Unprovoked,AUSTRALIA,Torres Strait,Palm Island,Diving for trochus,Stephen Conedo,M,18,Lacerations to thighs,N,,,"The Age, 1/15/1956; V.M. Coppleson (1958), p.245;",1956.01.16.R-Conedo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16.R-Conedo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16.R-Conedo.pdf,1956.01.16.R,1956.01.16.R,1957,, +1956.01.16,16-Jan-56,1956,Unprovoked,COSTA RICA,,San Juan River,Swimming,Lester Burton,M,33,"FATAL, leg severed ",Y,,,"Washington Post, 1/18/1956; Note: Webster, p.55, has date of 1/18/1956 and location as Sapoa River in Nicaragua.",1956.01.16-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16-Burton.pdf,1956.01.16,1956.01.16,1956,, +1956.01.05,05-Jan-56,1956,Unprovoked,AUSTRALIA,New South Wales,North Bondi,Surf skiing,Ken Howell,M,25,"No injury, shark bumped his 17' ski",N,,5' to 6' shark,"Sydney Morning Herald, 1/16/1956",1956.01.05-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.05-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.05-Howell.pdf,1956.01.05,1956.01.05,1955,, +1956.00.00.h,1956,1956,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Singour, 60 miles south of Madang",Diving,native boy,M,,Lower leg & foot lacerated,N,,,H.D. Baldridge,1956.00.00.h-NV native-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.h-NV native-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.h-NV native-boy.pdf,1956.00.00.h,1956.00.00.h,1954,, +1956.00.00.g,1956,1956,Sea Disaster,,Between Comores & Madagascar,Geyser Bank,Shipwreck,"Captain Eric Hunt, the cook & a French passenger",M,,FATAL,Y,,,dinofish.com,1956.00.00.g-Capt-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.g-Capt-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.g-Capt-Hunt.pdf,1956.00.00.g,1956.00.00.g,1953,, +1956.00.00.f,1956,1956,Unprovoked,GREECE,Corfu Island,Krkira,Swimming off yacht,Margoulis,F,15,FATAL,Y,,White shark,MEDSAF,1956.00.00.f-Margoulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.f-Margoulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.f-Margoulis.pdf,1956.00.00.f,1956.00.00.f,1952,, +1956.00.00.e,1956,1956,Provoked,USA,Virginia,"Virginia Beach, Princess Anne County",Removing shark from net ,Josh Vaughan,M,,Punctures on shin & calf PROVOKED INCIDENT,N,,40-lb sand shark,"Virginian Pilot (Norfolk, VA), 9/5/1960",1956.00.00.e-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.e-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.e-Vaughn.pdf,1956.00.00.e,1956.00.00.e,1951,, +1956.00.00.d,1956,1956,Unprovoked,USA,Virginia,"Virginia Beach, Princess Anne County",Swimming,girl,F,14,No details,UNKNOWN,,,"A. MacCormick, p.11, citing the New Orleans Times-Picayune, 8/17/1983",1956.00.00.d-girl-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.d-girl-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.d-girl-VirginiaBeach.pdf,1956.00.00.d,1956.00.00.d,1950,, +1956.00.00.c,1956,1956,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,"Kimuta, Renard Island",,Anonymous,,,"Non-fatal, treated at Misima Hospital",N,,,"A.M. Rapson, p. 149",1956.00.00.c-Kimuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.c-Kimuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.c-Kimuta.pdf,1956.00.00.c,1956.00.00.c,1949,, +1956.00.00.b,1956,1956,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province",Hus Island ,,male,M,,Right calf bitten,N,,,"A.M. Rapson, p.149;",1956.00.00.b-Hus-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.b-Hus-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.b-Hus-Island.pdf,1956.00.00.b,1956.00.00.b,1948,, +1956.00.00.a,1956,1956,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,Enuk Island ,,Lamoman,M,,"FATAL, head & neck bitten ",Y,,,"J. McLachlan, Medical Officer, Kavieng; A. M. Rapson, p.149",1956.00.00.a-Enuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.a-Enuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.a-Enuk.pdf,1956.00.00.a,1956.00.00.a,1947,, +1955.12.31,Reported 31-Dec-1955,1955,Boating,AUSTRALIA,Tasmania,,Ocean racing,yacht Even,,,"No injury to occupants, shark gouged hull",N,,,"C. Black, GSAF",1955.12.31.R-Even.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.31.R-Even.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.31.R-Even.pdf,1955.12.31,1955.12.31,1946,, +1955.12.11,11-Dec-55,1955,Boating,USA,Florida, mile offshore & 9 miles north of Fort Pierce,Fishing for pompano,"boat, occupants: P.D. Neilly & Charlton Anderson",,,"No injury to occupants, shark released from net holed boat",N,,,"R.F. Hutton, 3/30/1959, citing Miami Herald; T. Helm, p.234",1955.12.11-boat Neilly_Charlton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.11-boat Neilly_Charlton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.11-boat Neilly_Charlton.pdf,1955.12.11,1955.12.11,1945,, +1955.11.16,16-Nov-55,1955,Unprovoked,PAPUA NEW GUINEA,Central Province,"Kalautu Village, Baibara at the mouth of Oibada River",Swimming,Niu Bodu,M,8,Right thigh bitten,N,18h00,Wobbegong shark,"J. G. Davis; A.M. Rapson, pp.143 & 148 ",1955.11.16-NiuBodu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.16-NiuBodu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.16-NiuBodu.pdf,1955.11.16,1955.11.16,1944,, +1955.11.00,Nov-55,1955,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Low Island, Manus",Spearfishing,male,M,,Right arm severely bitten,N,,,"Rapson, p.149",1955.11.00-LowIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.00-LowIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.00-LowIsland.pdf,1955.11.00,1955.11.00,1943,, +1955.10.16,16-Oct-55,1955,Provoked,AUSTRALIA,Queensland,"Tully, North Queensland",Spearfishing & lassoed shark,Noel Cross,M,28,Lassoed shark bit his hand PROVOKED INCIDENT,N,,6' shark,"Sydney Morning Herald, 10/17/1955;V.M. Coppleson (1958), p.185; Cross, p.34",1955.10.16-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.10.16-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.10.16-Cross.pdf,1955.10.16,1955.10.16,1942,, +1955.09.23.b,23-Sep-55,1955,Sea Disaster,NORTH PACIFIC OCEAN,1000 miles west of Hawaii,Between Wake & Johnston Islands,"""Flying Tiger"" transport plane went down with 5 men onboard",R.C. Olsen,M,,FATAL,Y,,Survivors said 2 species of sharks were involved: oceanic whitetip sharks and another species,"Letter from Captain Raoul G. Rehrer in letter to G.A. Llano in Sharks and Survival, pp.381-382; V.M. Coppleson (1962), p.257",1955.09.23.b-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.b-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.b-Olsen.pdf,1955.09.23.b,1955.09.23.b,1941,, +1955.09.23.a,23-Sep-55,1955,Sea Disaster,NORTH PACIFIC OCEAN,1000 miles west of Hawaii,Between Wake & Johnston Islands,"""Flying Tiger"" transport plane went down with 5 men onboard",Robert C. Hightower,M,,Bitten several times before being rescued after 43 hours in the sea by the freighter Stell Advocate,N,,"Survivors said 2 species of sharks were involved: oceanic whitetip sharks and another species,","Letter from Captain R. G. Rehrer in letter to G.A. Llano in Sharks and Survival, pp.381-382; V.M. Coppleson (1962), p.257",1955.09.23.a-Hightower.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.a-Hightower.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.a-Hightower.pdf,1955.09.23.a,1955.09.23.a,1940,, +1955.09.20,20-Sep-55,1955,Unprovoked,USA,Hawaii,East Moloka'i,Hunting turtle,Philip C. Diez,M,,Arm bitten,N,09h00,,"J. Borg, p.73; L. Taylor (1993), pp.100-101; Note: Date listed as Mar-1956 by V.M. Coppleson (1958), p.260 and 1956 by A. Resciniti, p.53",1955.09.20-Diez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.20-Diez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.20-Diez.pdf,1955.09.20,1955.09.20,1939,, +1955.09.04,04-Sep-55,1955,Unprovoked,USA,California,"Venice Beach, Los Angeles County",Swimming near breakwater,Eric Vaughters,M,16,Dorsum of right foot lacerated,N,,,"R. Collier, p.14-15; L.A. Times, 9/5/1955; V.M. Coppleson (1958), p.254; D. Miller & R. Collier;",1955.09.04-Vaughters_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.04-Vaughters_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.04-Vaughters_Collier.pdf,1955.09.04,1955.09.04,1938,, +1955.09.03,03-Sep-55,1955,Unprovoked,USA,California,"Venice Beach, Los Angeles County",,male,M,,Minor injury,N,,,"LA Times, 9/5/1955 editon ",1955.09.03-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.03-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.03-VeniceBeach.pdf,1955.09.03,1955.09.03,1937,, +1955.08.30.b,30-Aug-55,1955,Unprovoked,JAPAN,Izo Islands,"Mikura-jima Island, 150 miles south of Tokyo",Fishing,Otamatsu H. Yoshii,M,,FATAL,Y,,,"K. Nakaya, L.A. Times, 8/31/1955; V.M. Coppleson (1962), p.247",1955.08.30.b-Yoshi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.b-Yoshi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.b-Yoshi.pdf,1955.08.30.b,1955.08.30.b,1936,, +1955.08.30.a,30-Aug-55,1955,Provoked,USA,California,"Zuma Beach, Santa Monica, Los Angeles County",Surfing,Dale Strand,M,25,"Surfer grabbed shark, which turned & bit him and 2 lifeguards PROVOKED INCIDENT",N,,5' thresher or blue shark. The shark was killed following the incident,"SAF Case #244; D. Miller & R. Collier, V.M. Coppleson (1958), p.255",1955.08.30.a-DaleStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.a-DaleStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.a-DaleStrand.pdf,1955.08.30.a,1955.08.30.a,1935,, +1955.08.26,26-Aug-55,1955,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Opatija,Swimming,Carla Podzum,F,32,FATAL,Y,,White shark,R. Rocconi,1955.08.26-Podzum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.26-Podzum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.26-Podzum.pdf,1955.08.26,1955.08.26,1934,, +1955.08.08,08-Aug-55,1955,Unprovoked,AMERICAN SAMOA,Tutuila Island,Pago Pago Bay,Swimming,Sailor from tuna vessel,M,28,"FATAL, abdomen bitten ",Y,A.M.,Blue shark,M. Hosina,1955.08.08-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.08-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.08-Samoa.pdf,1955.08.08,1955.08.08,1933,, +1955.08.04.R,Reported 04-Aug-1955,1955,Provoked,USA,South Carolina,Windy Hill Beach,Fishing,fisherman,M,,Finger bitten by hooked shark PROVOKED INCIDENT,N,,"""a small shark""","Kingsport Times, 8/4/1955",1955.08.04.R-SC-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.04.R-SC-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.04.R-SC-fisherman.pdf,1955.08.04.R,1955.08.04.R,1932,, +1955.08.00.c,Aug-55,1955,Unprovoked,NORTH ATLANTIC OCEAN ,Open sea,,Treading water,Wolfgang Emrich,M,15,No injury,N,Early afternoon,,"H.D.Baldridge (1994), SAF Case #1489",1955.08.00.c-NV-Emrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.c-NV-Emrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.c-NV-Emrich.pdf,1955.08.00.c,1955.08.00.c,1931,, +1955.08.00.a,Aug-55,1955,Boating,AUSTRALIA,South Australia,Port Augusta,Fishing,"launch, occupant: Clarrie Whelan",,,Whelan's head was injured when he fell to the deck as shark rammed boat,N,,Tooth fragments recovered from hull,"V.M. Coppleson (1958), pp.184-185",1955.08.00.a-Whelan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.a-Whelan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.a-Whelan.pdf,1955.08.00.a,1955.08.00.a,1930,, +1955.07.25,25-Jul-55,1955,Unprovoked,JAPAN,Okayama Prefecture,Usimado-no-Seto,,Hideo Ishida,M,22,FATAL,Y,13h00,Blue shark,M. Hosina,1955.07.25-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.25-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.25-Ishida.pdf,1955.07.25,1955.07.25,1929,, +1955.07.23,23-Jun-55,1955,Unprovoked,USA,Rhode Island,Occupasstuxet (Patuxent) Cove,Wading,William Cashman,M,13,Bites on legs & thighs,N,,0.7 m [2.5'] sand shark,"The Lowell Sun, 7/24/1955",1955.07.23-Cashman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.23-Cashman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.23-Cashman.pdf,1955.07.23,1955.07.23,1928,, +1955.07.15,15-Jul-55,1955,Unprovoked,MONTENEGRO,Adriatic Sea,Budva,Swimming,Romasevic,M,,FATAL,Y,,"White shark, 6.5 m ","R. Rocconi; A. De Maddalena; Radovanovic (1965), Soldo & Jardas (2000)",1955.07.15-Romasevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.15-Romasevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.15-Romasevic.pdf,1955.07.15,1955.07.15,1927,, +1955.07.07,07-Jul-55,1955,Unprovoked,YEMEN,Aden,Telegraph Bay,Swimming,Mrs. W. F. Dixon,F,,"FATAL, back lacerated, arm & leg severed ",Y,,2.4 m [8'] shark,"Evening Sun (Baltimore), 9/27/1955; V.M. Coppleson (1958), p.265; H.D. Baldridge, p.125; M. McDiarmid, p.65 ",1955.07.07-Dixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.07-Dixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.07-Dixon.pdf,1955.07.07,1955.07.07,1926,, +1955.05.08,08-May-55,1955,Provoked,USA,California,"Malibu, Los Angeles County",Spearfishing,Robert C. Yeargin,M,28,Diver hit shark & right forearm slightly injured PROVOKED INCIDENT,N,,2 m [6.75'] shark,"D. Miller & R. Collier, V.M. Coppleson (1958), p.254; ",1955.05.08-Yeargin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.08-Yeargin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.08-Yeargin.pdf,1955.05.08,1955.05.08,1925,, +1955.05.00,May-55,1955,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Lou Island, south of Manus Island",Spearfishing,Sindlin,M,,"Right forearm severely lacerated, left arm & hand lacerated",N,Midday.,,"V.M. Coppleson (1958), pp.144-146 ",1955.05.00-Sindilin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.00-Sindilin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.00-Sindilin.pdf,1955.05.00,1955.05.00,1924,, +1955.04.13.R,Reported 13-Apr-1955,1955,Unprovoked,PAPUA NEW GUINEA,Central Province,"Hadrians (Haidana?) Island, near Port Moresby",Spearfishing or fishing,Kairua Gairi,M,,Left shoulder bitten,N,,6' shark,"South Pacific Post, 4/13/1955; V.M. Coppleson (1962), p.254",1955.04.13.R-Gairu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.13.R-Gairu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.13.R-Gairu.pdf,1955.04.13.R,1955.04.13.R,1923,, +1955.04.12,12-Apr-55,1955,Unprovoked,PAPUA NEW GUINEA,,Abau,Spearfishing,Kula,M,,No injury. Shark took string of fish then struck canoe,N,,6' shark,"South Pacific Post, 4/20/1955",1955.04.12-Kula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.12-Kula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.12-Kula.pdf,1955.04.12,1955.04.12,1922,, +1955.04.00,Apr-55,1955,Unprovoked,USA,Hawaii,"Hilo, Hawai'i","Fishing from boat, Kaimamla",Kanematsu Oshiro,M,,Hand bitten,N,,,"Tribune-Herald (Hilo, Hawaii), 4/14/1963; J. Borg, p.73; L. Taylor, p.100-101 ; NOTE: Oshiro later sued owner of the boat for $15,000 in damages",1955.04.00-Oshiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.00-Oshiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.00-Oshiro.pdf,1955.04.00,1955.04.00,1921,, +1955.03.09,09-Mar-55,1955,Unprovoked,AUSTRALIA,New South Wales,Wamberal,Body surfing,Noel Langford,M,22,FATAL,Y,18h00,,"V.M. Coppleson (1958), pp.84-85 & 236; A. Sharpe, pp.82-83",1955.03.09-Langford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.09-Langford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.09-Langford.pdf,1955.03.09,1955.03.09,1920,, +1955.03.00.b,Mar-55,1955,Unprovoked,PAPUA NEW GUINEA,"New Ireland, Bismarck Archipelago","Kabiman, West coast",Swimming with speared fish,"Lidua, a male",M,,Left leg bitten,N,,"""small brown-colored shark""","Namatanai Dept. of Public Health; A. M. Rapson, p.148",1955.03.00.b-Liuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.b-Liuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.b-Liuda.pdf,1955.03.00.b,1955.03.00.b,1919,, +1955.03.00.a,Mar-55,1955,Provoked,AUSTRALIA,Western Australia,Woodmans Point,"Competing in U/W endurance record, standing beside drum in 10' of water",Theo Watts Brown,M,25,Leg of wetsuit torn after spear fired at shark PROVOKED INCIDENT,N,11h55,,"H.D. Baldridge, p.104",1955.03.00.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.a-Brown.pdf,1955.03.00.a,1955.03.00.a,1918,, +1955.02.10,10-Feb-55,1955,Unprovoked,USA,California,"Trinidad Bay, Humboldt County",Scuba diving,John Adams,M,,"No injury, shark bumped diver's face",N,,"Leopard shark, 3' Triakis semifasciata, identified by J.W. DeWitt (1955)","J. DeWitt (1955); V.M. Coppleson (1962), p.255; D. Miller & R. Collier",1955.02.10-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.10-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.10-Adams.pdf,1955.02.10,1955.02.10,1917,, +1955.02.06,06-Feb-55,1955,Unprovoked,USA,California,"Pacific Grove, Monterey County",Spearfishing,James F. Jacobs,M,19,"Swimfin & 2 wool socks removed by shark, suit torn",N,12h00,"White shark, 5 m to 6 m [16.5' to 20] ","R. Collier, pp. 13-14; D. Miller & R. Collier; California Fish & Game; V.M. Coppleson (1958), pp. 156 & 254; H.D. Baldridge, p.68",1955.02.06-JamesJacobs_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.06-JamesJacobs_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.06-JamesJacobs_Collier.pdf,1955.02.06,1955.02.06,1916,, +1955.02.05,05-Feb-55,1955,Unprovoked,AUSTRALIA,New South Wales,"Sugarloaf Bay, Middle Harbor, Sydney",Swimming,Bruno Aloysius Rautenberg,M,25,"FATAL, legs bitten ",Y,14h35,3.6 m white shark (or bronze whaler),"V.M. Coppleson (1958), pp.71, 175 & 236; A. Sharpe, pp.74-75",1955.02.05-Rautenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.05-Rautenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.05-Rautenberg.pdf,1955.02.05,1955.02.05,1915,, +1955.02.04,04-Feb-55,1955,Unprovoked,INDIA,Tamil Nadu,"Vanagiri, Madras (Chennai), Bay of Bengal",Fishing,Nedugattan,M,25,Leg bitten,N,,,"V.M. Coppleson (1958), p.261",1955.02.04-Nedugattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.04-Nedugattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.04-Nedugattan.pdf,1955.02.04,1955.02.04,1914,, +1955.02.01.,01-Feb-55,1955,Boating,AUSTRALIA,New South Wales,Parramatta River,Rowing,"racing scull, occupants: Bill Andrews on bow oar, Dick Brown on #2 oar ",,,"No injury to occupants; shark grabbed oar, vaulted over scull",N,,,"V.M. Coppleson (1958), p.187",1955.02.01-Racing-scull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.01-Racing-scull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.01-Racing-scull.pdf,1955.02.01.,1955.02.01.,1913,, +1955.02.00,Feb-55,1955,Boating,AUSTRALIA,New South Wales,Coffs Harbor,Rowing toward snapper grounds,10' row boat occupants; Douglas Richards & George Irwin,,,"No injury to occupants, 6 sharks charged boat",N,,4 m [13'] shark x 6,"V.M. Coppleson (1958), p.186",1955.02.00-Richards-Irwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.00-Richards-Irwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.00-Richards-Irwin.pdf,1955.02.00,1955.02.00,1912,, +1955.01.17,17-Jan-55,1955,Unprovoked,AUSTRALIA,New South Wales,"Wyargine Point, Edwards Beach, Balmoral Beach, Sydney",Hunting lobsters in 2.4 m of water,John Willis,M,13,"FATAL, anterior left leg & right calf bitten, no tissue lost ",Y,14h30,"Bronze whaler shark,3.7 m [12'] ","V.M. Coppleson (1958), pp.71, 174-175 & 236; A. Sharpe, p.74",1955.01.17-Willis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.17-Willis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.17-Willis.pdf,1955.01.17,1955.01.17,1911,, +1955.01.15,15-Jan-55,1955,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,A ford known as Brodies Coffin in St. Lucia Bay,Crossing the bay at the ford,Zulu male,M,,"FATAL, leg bitten ",Y,Afternoon,,"Natal Daily News, 1/17/1955; M. Levine, GSAF",1955.01.15-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.15-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.15-ZuluMale.pdf,1955.01.15,1955.01.15,1910,, +1955.00.00.f,1955,1955,Unprovoked,USA,Florida,"Vero Beach, Indian River County",,2 incidents north of Vero Beach,,,No details,UNKNOWN,,,"R.F. Hutton; V.M. Coppleson (1958) (ref.R. North in Scientific American, 1957",1955.00.00.f-NV-VeroBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.f-NV-VeroBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.f-NV-VeroBeach.pdf,1955.00.00.f,1955.00.00.f,1909,, +1955.00.00.d,1955,1955,Provoked,CUBA,Havana Province,Cojimar,Fishing,Romilio,M,,Forearm slashed wrist to elbow by hooked shark he was trying to club to death PROVOKED INCIDENT,N,,"""a little shark""","F. Poli, p.13",1955.00.00.d-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.d-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.d-Cuba.pdf,1955.00.00.d,1955.00.00.d,1908,, +1955.00.00.e,1955,1955,Unprovoked,MADAGASCAR,18S / 50E,,Standing in knee-deep water,boy,M,16,FATAL,Y,15h00,,Mrs. Lyse Mooney,1955.00.00.e-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.e-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.e-Madagascar.pdf,1955.00.00.e,1955.00.00.e,1907,, +1955.00.00.c,1955,1955,Invalid,USA,Illinois,Chicago (Lake Michigan),Swimming,George Lawson,M,,Right leg bitten,N,,Bull shark,"F. Dennis, p.52",1955.00.00.c-Chicago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.c-Chicago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.c-Chicago.pdf,1955.00.00.c,1955.00.00.c,1906,, +1955.00.00.b,Ca. 1955 ,1955,Unprovoked,COLUMBIA,Isles del Rosario,Southwest of Cartegena,Spearfishing,Gabriel Echiavarria,M,12,Swim fin & foot bitten,N,,1.5 m [5'] shark,"H. Echavarria; H.D. Baldridge, p.135; M. McDiarmid, p.64",1955.00.00.b-Echavarria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.b-Echavarria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.b-Echavarria.pdf,1955.00.00.b,1955.00.00.b,1905,, +1955.00.00.a,1955,1955,Unprovoked,PAPUA NEW GUINEA,New Ireland,Lavongai,,Pakau,M,,Back bitten,N,,,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p.148",1955.00.00.a-Pakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.a-Pakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.a-Pakau.pdf,1955.00.00.a,1955.00.00.a,1904,, +1954.12.29,29-Dec-54,1954,Unprovoked,AMERICAN SAMOA,Tutuila Island,Near tuna cannery in Pago Pago Harbor,Dived overboard & was swimming near stern of trawler,"Kosuo Mizokawa, Captain of a Japanese trawler",M,27,FATAL,Y,,,"Townsville Daily Bulletin, 1/6/1955",1954.12.29-Mizokawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.29-Mizokawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.29-Mizokawa.pdf,1954.12.29,1954.12.29,1903,, +1954.12.11,11-Dec-54,1954,Unprovoked,AUSTRALIA,Victoria,Point Lonsdale,Swimming,Lawrence David Burns,M,23,FATAL,Y,11h00,,"Sydney Morning Herald, 12/13/1954",1954.12.11-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.11-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.11-Burns.pdf,1954.12.11,1954.12.11,1902,, +1954.12.09,09-Dec-54,1954,Unprovoked,PAPUA NEW GUINEA,Central Province,"Kila Beach, Port Moresby",Swimming near canoe,Leva Kailovo,M,,"FATAL, abdomen & thigh bitten",Y,13h20,,"C.H. Hodgson; A. M. Rapson, p.148",1954.12.09-Kailovo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.09-Kailovo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.09-Kailovo.pdf,1954.12.09,1954.12.09,1901,, +1954.12.04,04-Dec-54,1954,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Rocket Hut Beach, Durban",Swimming,Graham Scott,M,16,Shallow lacerations on torso,N,11h00,,"D. Gibb, M. Levine, GSAF ",1954.12.04-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.04-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.04-Scott.pdf,1954.12.04,1954.12.04,1900,, +1954.11.20,20-Nov-54,1954,Unprovoked,USA,Wake Island,Wilkes Islet Lagoon (Pacific Ocean north of the Marshall Islands),Spearfishing,James L. Oetzel,M,,Shoulder bitten,N,15h00,"Blacktip reef shark, 1.5 m [5'] ","J. L. Oetzel, NOTE: H.D. Baldridge, p.143 lists date as March 20, 1954 ",1954.11.20-Oetzel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.11.20-Oetzel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.11.20-Oetzel.pdf,1954.11.20,1954.11.20,1899,, +1954.10.07,07-Oct-54,1954,Sea Disaster,USA,Virginia,150 miles off Cape Henry,"American freighter Mormackite, bound from Buenos Aires for Baltimore, capsized & sank in heavy seas",second cook,M,,Rescue aircraft saw bodies in the water being bitten by sharks. One survivor saw a shark take off a mans leg & another reported that the second cook was killed by a shark,Y,,,"Long Beach Independent, 10/11/1954, p.9; V.M. Coppleson (1958), p.197; V.M. Coppleson (1962), pp. 213 & .259",1954.10.07-Mormackite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.07-Mormackite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.07-Mormackite.pdf,1954.10.07,1954.10.07,1898,, +1954.10.06,06-Oct-54,1954,Provoked,UNITED KINGDOM,Isle of Man,Off Fleetwood,Fishing (trawling),John Butcher,M,62,Arm broken by tail of netted shark PROVOKED INCIDENT,N,,20' shark,"C.Moore, GDSF; Times of London, 10/7/1954",1954.10.06-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.06-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.06-Butcher.pdf,1954.10.06,1954.10.06,1897,, +1954.10.02.b,02-Oct-54,1954,Boating,CROATIA,Zadar County,"Lika-Senj, Pag Island",Boating,,,,No details,UNKNOWN,,"White shark, 5.5 m [18']","A. De Maddalena; Anon. (1954), Soldo & Jardas (2000)",1954.10.02.b-boat-Pag-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.b-boat-Pag-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.b-boat-Pag-Croatia.pdf,1954.10.02.b,1954.10.02.b,1896,, +1954.10.02.a,02-Oct-54,1954,Invalid,JAPAN,Nagasaki Prefecture,Oomura Bay,,Boy clad in shirt & white linen pants,M,13,Body found in gut of shark,Y,,"White shark, 2000-lb","K. Nakaya; San Diego Union, 105/1954 ",1954.10.02.a-boyJapan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.a-boyJapan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.a-boyJapan.pdf,1954.10.02.a,1954.10.02.a,1895,, +1954.09.21,21-Sep-54,1954,Unprovoked,USA,California,"La Jolla, San Diego County",Swimming,Clyde Leeper,M,35,Minor bruises & abrasions on leg,N,,1.5 m [5'] shark,"D. Miller & R. Collier, V.M. Coppleson (1958), p.254; T. Helm, p.232",1954.09.21-Leeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.21-Leeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.21-Leeper.pdf,1954.09.21,1954.09.21,1894,, +1954.09.15,15-Sep-54,1954,Unprovoked,HONG KONG,,Junk Bay,Swimming,"James Cook, a seaman from HMS Comus",M,20,"FATAL, leg severely bitten",Y,,,"V.M. Coppleson (1958), p.260; A. MacCormick, p.121 citing Times of London 9/17/1954; [SAF Cases #299 & #298",1954.09.15-JamesCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.15-JamesCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.15-JamesCook.pdf,1954.09.15,1954.09.15,1893,, +1954.09.04,04-Sep-54,1954,Unprovoked,AUSTRALIA,Torres Strait,"Darnley Island, Torres Strait","Spearfishing, hunting crayfish",Kapua Gutchen,M,35,"FATAL, after being bitten by shark, he was picked up by 85' trochus vessel Toorah that wrecked. His wounds reopened & he died ",Y,,9' shark,"The Mercury, 9/14/1954",1954.09.04-Kapua-Gutchen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.04-Kapua-Gutchen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.04-Kapua-Gutchen.pdf,1954.09.04,1954.09.04,1892,, +1954.08.19,19955,1954,Unprovoked,ITALY,Liguaria,Finale Ligure,Spearfishing,Aldo Campi,M,27,Abdomen injured,N,,,"C. Moore, GSAF",1954.08.19-Campi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.19-Campi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.19-Campi.pdf,1954.08.19,1954.08.19,1891,, +1954.08.12.b,12-Aug-54,1954,Provoked,CUBA,Guantanamo Province,Boqueron,Spearfishing,Dr. D.H. Teas,M,,Knee bitten by shark that his dive buddy had shot PROVOKED INCIDENT,N,,"Nurse shark, 58"", 34-lb ","H.D. Baldridge, p.166",1954.08.12.b-Teas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.b-Teas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.b-Teas.pdf,1954.08.12.b,1954.08.12.b,1890,, +1954.08.12.a,12-Aug-54,1954,Provoked,CUBA,Guantanamo Province,Boqueron,Spearfishing,Dr. H. Warmke,M,,Right thigh & left calf injured by speared shark PROVOKED INCIDENT,N,,"Nurse shark, 58"", 34-lb ","H.D. Baldridge, p.166",1954.08.12.a-Warmke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.a-Warmke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.a-Warmke.pdf,1954.08.12.a,1954.08.12.a,1889,, +1954.07.30,30-Jul-54,1954,Unprovoked,ECUADOR,Galapagos Islands,,"Tuna fishing, standing on stern platform that was submerged by waves",Carl Dible,M,34,4 lacerations on dorsum of right foot ,N,,,"F. X. Schloeder, M.D.; V.M. Coppleson (1962), p.246",1954.07.30-Dibble.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.30-Dibble.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.30-Dibble.pdf,1954.07.30,1954.07.30,1888,, +1954.07.28,28-Jul-54,1954,Unprovoked,SINGAPORE,,Singapore Harbor,Closed circuit diving (submerged). Diving to recover jettisoned packets of opium for police,"C.B. Larkin, a Royal Navy diver",M,28,"FATAL, abdomen, buttock, right thigh & hands bitten ",Y,,,"New York Times, 7/29/1954; V.M. Coppleson (1958), p.266; H.D. Baldridge, p.183; ",1954.07.28-BritishDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.28-BritishDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.28-BritishDiver.pdf,1954.07.28,1954.07.28,1887,, +1954.07.27,27-Jul-54,1954,Boating,ITALY,Venice Province,Off Chioggia,Fishing trawler Flavio Gioia ,10 crew,M,,No injury to occupants. Shark tore nets & trawl and struck boat repeatedly,,Night,5m shark,"C. Moore, GSAF",1954.07.27-Trawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.27-Trawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.27-Trawler.pdf,1954.07.27,1954.07.27,1886,, +1954.07.15,15-Jul-54,1954,Unprovoked,THE BALKANS,Slovenia,Between Punta Grossa & Koper,Swimming,a Hungarian refugee,M,,FATAL,Y,21h00,,"R. Rocconi & C. Moore, GSAF V.M. Coppleson, p.261; H. D. Baldridge, p.15",1954.07.15-refugee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.15-refugee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.15-refugee.pdf,1954.07.15,1954.07.15,1885,, +1954.07.04.R,Reported 04-Jul-1954,1954,Unprovoked,USA,Florida,Florida Keys,,a marine biology student from the University of Miami,,,Small wound on upper thigh,N,,"Nurse shark, 2.5' ","Daytona Beach Sunday News- Journal, 7/4/1954",1954.07.04.R-UniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.04.R-UniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.04.R-UniversityStudent.pdf,1954.07.04.R,1954.07.04.R,1884,, +1954.07.03,03-Jul-54,1954,Unprovoked,BERMUDA,South shore ,Elbow Beach,Swimming,"Sub-Lieut. Edwin Michael Marks, of H.M.S. Sheffield",M,22,"Left thigh bitten, chest lacerated & defense wounds on foot, fingers and hands",N,,"2.4 m [8'] shark, possibly a dusky shark","E.M. Marks; V.M. Coppleson (1958), pp.155 & 257; Randall, p.353 in Sharks & Survival",1954.07.03-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.03-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.03-Marks.pdf,1954.07.03,1954.07.03,1883,, +1954.07.02.R,Reported 02-Jul-1954,1954,Unprovoked,GREECE,,Kalamata,Swimming,2 males,M,,FATAL,Y,,,"C. Moore, GSAF",1954.07.02.R-Kalamata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.02.R-Kalamata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.02.R-Kalamata.pdf,1954.07.02.R,1954.07.02.R,1882,, +1954.07.01.R,Reported 01-Jul-1954,1954,Invalid,CROATIA,,Pula,,male,,,Human remains found in shark,,,,"C. Moore, GSAF",1954.07.01.R-Pula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.01.R-Pula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.01.R-Pula.pdf,1954.07.01.R,1954.07.01.R,1881,, +1954.06.29,29-Jun-54,1954,Provoked,USA,California,"Santa Monica, Los Angeles County",Grabbed shark & threw it on deck,"Frank Donahue, a movie stuntman",M,35,Right elbow & forearm lacerated PROVOKED INCIDENT,N,,,"L.A. Times, 6/30/1954; H.D. Baldridge, p.257",1954.06.29-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.29-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.29-Donahue.pdf,1954.06.29,1954.06.29,1880,, +1954.06.27,27-Jun-54,1954,Unprovoked,AUSTRALIA,Queensland,Fitzroy Island,Pearl diving from lugger Whyalla,Morslem Aken,M,30,"Shark bit right arm & shoulder, then Aken says, he ""knocked out"" the shark",N,16h30,2.4 m [8'] shark,"Morning Bulletin (Rockhampton), 6/30/1954 ",1954.06.27-Aken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.27-Aken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.27-Aken.pdf,1954.06.27,1954.06.27,1879,, +1954.06.00,Jun-54,1954,Unprovoked,HONG KONG,,,Bathing alongside ship,Naval Rating,M,,"FATAL, thigh bitten ",Y,,,"V.M. Coppleson (1958), p.260",1954.06.00-NavalRating.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.00-NavalRating.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.00-NavalRating.pdf,1954.06.00,1954.06.00,1878,, +1954.05.26.R,Reported 26-May-1954,1954,Unprovoked,PAPUA NEW GUINEA,East Sepik,Wewak,"Fishing / cleaning fish, dived into water to retrieve a lost fish","male, a native constable",M,,"FATAL, decapitated ",Y,,,"South Pacific Post, 5/26/1954",1954.05.26.R-Constable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.26.R-Constable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.26.R-Constable.pdf,1954.05.26.R,1954.05.26.R,1877,, +1954.05.00,May-54,1954,Unprovoked,PAPUA NEW GUINEA,Madang Province,Near Madang Town,,child,,,Foot severed,N,,,"V.M. Coppleson (1962), p.248",1954.05.00-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.00-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.00-child.pdf,1954.05.00,1954.05.00,1876,, +1954.04.08,08-Apr-54,1954,Invalid,USA,Hawaii,"Wailupe, O'ahu",Fishing from shore,Gordon S. Chun,M,,"Body recovered, mutilated by shark/s",Y,,,"The Honolulu Advertiser, 4/8/1954; Honoulu Star Bulletin 4/8/1954; J. Borg, p.73; L. Taylor (1993), pp.100-101",1954.04.08-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.08-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.08-Chun.pdf,1954.04.08,1954.04.08,1875,, +1954.04.00,Apr-54,1954,Provoked,SUDAN?,Red Sea,Southern part ,Spearfishing,Jean Foucher-Createau,M,,"Speared small shark, shark bit his thigh and/or buttock PROVOKED INCIDENT",N,,,"V.M. Coppleson (1962), p.254; H.D. Baldridge, p.165",1954.04.00-Foucher-Creteau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.00-Foucher-Creteau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.00-Foucher-Creteau.pdf,1954.04.00,1954.04.00,1874,, +1954.02.27,27-Feb-54,1954,Unprovoked,AUSTRALIA,New South Wales,"The Entrance, near Gosford",Swimming,Reg Fabrizius,M,23,"FATAL, right thigh bitten ",Y,17h15,,"V.M. Coppleson (1958), pp.84 & 236",1954.02.27-Fabrizius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.02.27-Fabrizius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.02.27-Fabrizius.pdf,1954.02.27,1954.02.27,1873,, +1954.01.30,30-Jan-54,1954,Unprovoked,AUSTRALIA,New South Wales,Avoca Beach,Swimming,Bruce Bourke,M,,Abrasions to arm,N,,,"Sun-Herald, 1/31/1954",1954.01.30-Bourke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.30-Bourke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.30-Bourke.pdf,1954.01.30,1954.01.30,1872,, +1954.01.22.b,22-Jan-54,1954,Unprovoked,AUSTRALIA,Torres Strait,Naghir Island,Spearfishing,Annie Mills,M,30,Severe laceration to arm,N,,,"Cairns Post, 1/25/1954",1954.01.22.b-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.b-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.b-Mills.pdf,1954.01.22.b,1954.01.22.b,1871,, +1954.01.22.a,22-Jan-54,1954,Unprovoked,ARGENTINA,Buenos Aires Province,"Miramar Beach, 46 km south of Mar de Plata, Buenos Aires ",Floating,Alfredo Aubone,M,18,"Arm & left calf bitten, right leg lacerated",N,13h05,White shark tooth fragment recovered from ankle & identified by Dr. W. I. Follett,"V.M. Coppleson (1958), p.257; Garrick & L. Schultz in Sharks & Survival, p.13; M. McDiarmid, p.64",1954.01.22.a-Aubone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.a-Aubone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.a-Aubone.pdf,1954.01.22.a,1954.01.22.a,1870,, +1954.01.15,15-Jan-54,1954,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Singour, 60 miles south of Madang",Crouching in the water,Ramlen,M,26,Back & thighs lacerated,N,Late afternoon,14' shark,"Cairns Post, 1/21/1954",1954.01.15-Ramlen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.15-Ramlen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.15-Ramlen.pdf,1954.01.15,1954.01.15,1869,, +1954.00.00.e,1954,1954,Unprovoked,IRAN,Karun River,"Hesamabad area of Shushtar, 420 km from the sea",,Mr. Kasem Jasem,M,,FATAL,Y,,Bull shark suspected due to freshwater habitat,B. Coad,1954.00.00.e-KasemJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.e-KasemJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.e-KasemJasem.pdf,1954.00.00.e,1954.00.00.e,1868,, +1954.00.00.d,1954,1954,Unprovoked,MARTINIQUE,,,,Bernard Vieux,M,,"Chest bruised, after shark clamped its jaws on his chest ",N,,"Nurse shark, 1.8 m [6'] ","J. Randall in Sharks & Survival, pp.358-359",1954.00.00.d-Vieux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.d-Vieux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.d-Vieux.pdf,1954.00.00.d,1954.00.00.d,1867,, +1954.00.00.c,1954,1954,Unprovoked,MEXICO,Baja California,,Free diving,Rosario Bianci,M,,FATAL,Y,,,"V.M. Coppleson, p.262; V.M. Coppleson (1962), p.253",1954.00.00.c-Bianci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.c-Bianci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.c-Bianci.pdf,1954.00.00.c,1954.00.00.c,1866,, +1954.00.00.b,1954,1954,Unprovoked,USA,Hawaii,Moloka'i,Fishing,Severino,M,,Bitten on foot,N,,a small shark',"J. Borg, p.73; L. Taylor (1993), pp.100-101",1954.00.00.b-Severino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.b-Severino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.b-Severino.pdf,1954.00.00.b,1954.00.00.b,1865,, +1954.00.00.a,1954,1954,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Volupai, Talasea",Swimming,boy,M,12,Leg & abdomen lacerated,N,,," A. M. Rapson, p.148",1954.00.00.a-Volupai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.a-Volupai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.a-Volupai.pdf,1954.00.00.a,1954.00.00.a,1864,, +1954.00.00 g,1954 (same day as 1954.00.00.f),1954,Unprovoked,IRAN,Karun River,A village a short distance from Hesamabad,,girl,F,,FATAL,Y,,Bull shark suspected due to freshwater habitat,B. Coad,1954.00.00.g-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.g-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.g-girl.pdf,1954.00.00 g,1954.00.00 g,1863,, +1954.00.00 f,1954 (same day as 1954.00.00.f),1954,Unprovoked,IRAN,Karun River,"Hesamabad area of Shushtar, 420 km from the sea",,Mr. Abbas Jasem (Mr. Kasem Jasem's son),M,,Survived,N,,Bull shark suspected due to freshwater habitat,B. Coad,1954.00.00.f-AbbasJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.f-AbbasJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.f-AbbasJasem.pdf,1954.00.00 f,1954.00.00 f,1862,, +1953.12.30,30-Dec-53,1953,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. Johns",Swimming,Mrs. G. Rautenbach,F,,Left calf lacerated,N,Morning,Said to involve a >4 m [13'] shark,"Natal Mercury, 12/31/1953",1953.12.30-Rautenbach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.30-Rautenbach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.30-Rautenbach.pdf,1953.12.30,1953.12.30,1861,, +1953.12.22,22-Dec-53,1953,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,Swimming,Glen Stoddart,M,23,Lacerations to arm,N,,,H. Monson,1953.12.22-Stoddart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.22-Stoddart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.22-Stoddart.pdf,1953.12.22,1953.12.22,1860,, +1953.12.13,13-Dec-53,1953,Unprovoked,AUSTRALIA,Queensland,Palm Beach,Swimming or wading out to warn bathers that a shark had been seen,"Neil Tapp, cadet lifesaver",M,16,Bruised shoulder chest & foot,N,12h00,,"V.M. Coppleson (1958), pp.95 & 240",1953.12.13-Tapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.13-Tapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.13-Tapp.pdf,1953.12.13,1953.12.13,1859,, +1953.12.00,Dec-53,1953,Unprovoked,AUSTRALIA,New South Wales,Maroubra Beach,Surf skiing,Jack Haynes,M,,"No Injury, shark charged surfski",N,,3.7 [12'] shark," V.M. Coppleson (1958), p.42",1953.12.00-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.00-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.00-Haynes.pdf,1953.12.00,1953.12.00,1858,, +1953.10.00,Oct-53,1953,Provoked,AUSTRALIA,New South Wales,"Boat Harbour, north of Cronulla",,Len Kosky,M,,"Hit by tail of speared shark, fell & hit head on rock & out cold for 30 minutes PROVOKED INCIDENT",N,,,"V.M. Coppleson (1958), p.172",1953.10.00-Kosky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.10.00-Kosky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.10.00-Kosky.pdf,1953.10.00,1953.10.00,1857,, +1953.09.27,27-Sep-53,1953,Unprovoked,PHILIPPINES,Luzon Island,Bohol,,Bartolome Mangubat,M,23,FATAL,Y,,,"Palm Beach Post, 9/28/1953",1953.09.27-Mangutbal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.27-Mangutbal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.27-Mangutbal.pdf,1953.09.27,1953.09.27,1856,, +1953.09.20.R,Reported 20-Sep-1953,1953,Unprovoked,USA,California,"Santa Catalina Island, Los Angeles County",Scuba diving,Al Diamond,M,,No injury,N,,,"Oakland Tribune, 9/20/1953",1953.09.20.R-Diamond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.20.R-Diamond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.20.R-Diamond.pdf,1953.09.20.R,1953.09.20.R,1855,, +1953.09.18,18-Sep-53,1953,Sea Disaster,USA,Georgia,200 miles east of Savannah,Aircaft exploded,Sgt. Larry Charles Graybill,M,,Hand bitten,N,,,New York Times ,1953.09.18-Graybill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.18-Graybill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.18-Graybill.pdf,1953.09.18,1953.09.18,1854,, +1953.09.03.R,Reported 03-Sep-1953,1953,Unprovoked,USA,New York,Rockaway Beach,Surf fishing,"Alan Stevenson, Jr.",M,15,Laceration to right lower leg,N,,80-lb sand shark,"The Dispatch, 9/3/1953",1953.09.03.R-Stevenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.03.R-Stevenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.03.R-Stevenson.pdf,1953.09.03.R,1953.09.03.R,1853,, +1953.09.02,02-Sep-53,1953,Unprovoked,USA,Hawaii,"Waiau, Pearl Harbor, O'ahu",Crabbing,Daniel Gonsalves,M,,Leg & foot bitten,N,,"Hammerhead shark, 1.5 m [5'] ","Honolulu Star Bulletin, 9/2/1953; G.H. Balazs; J. Borg, p.73; L. Taylor (1993), pp.100-101",1953.09.02-Gonsalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.02-Gonsalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.02-Gonsalves.pdf,1953.09.02,1953.09.02,1852,, +1953.08.00,Aug-53,1953,Invalid,MEXICO,Guerrero,Acapulco,Free diving,Arthur R. Satz,M,19,No injury,N,17h30,"""Tintorero""",H.D. Baldridge (1994) SAF Case #679,1953.08.00-NV-Satz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.08.00-NV-Satz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.08.00-NV-Satz.pdf,1953.08.00,1953.08.00,1851,, +1953.07.31,31-Jul-53,1953,Unprovoked,MEXICO,Colima,Manzanillo,Wading,Ema Aquilera Prada,F,18,FATAL,Y,,,"V.M. Coppleson (1958), p.262; J.M. Alatorre",1953.07.31-Prada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.31-Prada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.31-Prada.pdf,1953.07.31,1953.07.31,1850,, +1953.07.26,26-Jul-53,1953,Unprovoked,USA,Hawaii,"Maile Beach, O'ahu",Spearfishing,Harold Souza,M,15,"FATAL, thigh bitten",Y,09h15,3 m [10'] shark seen in vicinity,"V.M. Coppleson (1958), p.260; L. Taylor (1993), pp.100-101",1953.07.26-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.26-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.26-Souza.pdf,1953.07.26,1953.07.26,1849,, +1953.07.16,16-Jul-53,1953,Provoked,USA,California,"Santa Catalina Island, Los Angeles County",Fishing from market fishboat Sea Spray,Captain Forest M. Richel,M,,Arm bitten by hooked shark PROVOKED INCIDENT,N,,,"L.A. Times, 7/17/1953 ",1953.07.16-Richel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.16-Richel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.16-Richel.pdf,1953.07.16,1953.07.16,1848,, +1953.07.15,15-Jul-53,1953,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Standing,Mrs. D. F. Gunn,F,26,Lower left leg severely bitten,N,,,"R.F. Hutton; T. Helm, p. 231 ",1953.07.15-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.15-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.15-Gunn.pdf,1953.07.15,1953.07.15,1847,, +1953.07.11,11-Jul-53,1953,Sea Disaster,PACIFIC OCEAN,330 to 350 miles east of Wake Island,,Royal Hawaiian skymaster DC-6B aircraft went down with 58 passenger & crew,,,,Recuers fought sharks for the bodies,N,,,"Guam Daily News, 7/16/195; V.M. Coppleson, p.21",1953.07.11-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.11-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.11-WakeIsland.pdf,1953.07.11,1953.07.11,1846,, +1953.07.09,09-Jul-53,1953,Boating,CANADA,Nova Scotia,"Fourchu, Cape Breton Island",Fishing for lobsters,"12' to 14' dory, occupants: John D. Burns & John MacLeod",M,,Burns drowned as result of attack on boat,N,,"White shark, 3.7 m [12'], 500 to 500-kg [1,200 lb], identified by W. C. Shroeder based on tooth fragment ebedded in gunwale","R. Collier, pp.169-170;Bigelow & Schroeder; Day & Fisher, pp. 295-296",1953.07.09-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.09-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.09-Burns.pdf,1953.07.09,1953.07.09,1845,, +1953.07.04,04-Jul-53,1953,Unprovoked,USA,Hawaii,Kaula Rock near Niihau ,Accidentally dragged overboard from the sampan Holokahana into school of yellowfin tuna,"David Crick, fisherman ",M,,"Shark made 3 passes at him, lacerating his calf, shin and ankle ",N,08h00,,"Honolulu Advertiser, July 5, 1953 edtion; V.M. Coppleson (1958), p.260; J. Borg, p. 2; L. Taylor (1993), pp.100-101",1953.07.04-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.04-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.04-Crick.pdf,1953.07.04,1953.07.04,1844,, +1953.07.00,01-Jul-53,1953,Unprovoked,PANAMA,Gulf of Panama,60 miles offshore ,Retrieving bait box that had fallen overboard,Jose Gonzales,M,19,Hand severely bitten,N,,,"V.M. Coppleson (1958), p.263; LA. Times, 6/9/1954; Gorgas Hospital Record #667474",1953.07.00-Gonzalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.00-Gonzalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.00-Gonzalves.pdf,1953.07.00,1953.07.00,1843,, +1953.06.00,Jun-53,1953,Provoked,AUSTRALIA,Queensland,,Landing hooked shark in boat,Thomas H. Durbridge,M,,Right forearm & hand bitten PROVOKED INCIDENT,N,,"2 m [6'9""] shark ","V.M. Coppleson (1958), p.179",1953.06.00-Durbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.06.00-Durbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.06.00-Durbridge.pdf,1953.06.00,1953.06.00,1842,, +1953.04.07,07-Apr-53,1953,Boating,AUSTRALIA,New South Wales,1.5 miles off shore,,16' launch,,,"No injury to occupant. As engine started, shark hit boat, breaking one of boats ribs in 3 places & stoving in 2 planks",N,,," V.M. Coppleson (1958), p.183",1953.04.07-16-ft-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.07-16-ft-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.07-16-ft-launch.pdf,1953.04.07,1953.04.07,1841,, +1953.04.04,04-Apr-53,1953,Unprovoked,USA,Texas,South Padre Island,Swimming,Susan Smith,F,19,Lacerations to right foot,N,Afternoon,,"Valley Morning Star, 4/5/1953",1953.04.04-SueSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.04-SueSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.04-SueSmith.pdf,1953.04.04,1953.04.04,1840,, +1953.04.00.b,Apr-53,1953,Unprovoked,IRAN,Karun River,"near Ahvaz, 275 km from the sea",,Mr. Kaaby,M,,Arm severed,N,,"1.5 m [5'] shark, probable bull shark",B. Coad,1953.04.00.b-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.b-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.b-Kaaby.pdf,1953.04.00.b,1953.04.00.b,1839,, +1953.04.00.a,Apr-53,1953,Unprovoked,IRAN,Karun River,"near Ahvaz, 275 km from the sea",Swimming in midriver near sewage outlet & 400 m from a slaughterhouse,Mr. Nasser Seemrookh,M,,Right forearm severed at the elbow,N,,"1.5 m [5'] shark, probable bull shark",B. Coad,1953.04.00.a-Seemrookh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.a-Seemrookh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.a-Seemrookh.pdf,1953.04.00.a,1953.04.00.a,1838,, +1953.03.22,Mar-53,1953,Unprovoked,AUSTRALIA,New South Wales,"Long Reef, Collaroy",Spearfishing,Helmut Scheidl,M,23,Arm lacerated,N,,,"V.M. Coppleson (1958), pp.166-167",1953.03.22-Scheidl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.22-Scheidl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.22-Scheidl.pdf,1953.03.22,1953.03.22,1837,, +1953.03.19.R,Reported 19-Mar-1953,1953,Unprovoked,AUSTRALIA,South Australia,"Schnapper Rock, Kirton Point",Spearfishing,Michael Leech,M,,Abrasion,N,,8' shark,"The Advertiser, 3/19/1953",1953.03.19.R-Leech.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.19.R-Leech.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.19.R-Leech.pdf,1953.03.19.R,1953.03.19.R,1836,, +1953.03.00.c,Mar-53,1953,Sea Disaster,INDIAN OCEAN,,Between Straits of Malacca and Sri Lanka,Adrift on a 4' raft for 32 days,"Ensio Tiira & Fred Ericsson, deserters from the French Foreign Legion",,,Sharks attacked raft & consumed the body of Ericsson after he died,Y,,,E. Tiira,1953.03.00.b-Tiira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.b-Tiira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.b-Tiira.pdf,1953.03.00.c,1953.03.00.c,1835,, +1953.03.00.a,Mar-53,1953,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,"Off Rossel Island, Louisiade Archipelago",Went over side of boat at trochus ground,Captain of cutter Hetabu,M,,"FATAL, arm & leg severed & shark smashed at his body with its tail ",Y,,Tiger shark,"A.M. Rapson, p.148; V.M. Coppleson (1962), p.254",1953.03.00.a-Hetabu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.a-Hetabu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.a-Hetabu.pdf,1953.03.00.a,1953.03.00.a,1834,, +1953.02.18,18-Feb-53,1953,Provoked,USA,Hawaii,"Barbers Point, O'ahu",Bitten while cutting shark from net,James S. Takeuchi,M,,Hand bitten PROVOKED INCIDENT ,N,,,"V.M. Coppleson (1958), p.260; G.H. Balazs; J. Borg, p.72; L. Taylor (1993), pp.100-101",1953.02.18-Takeuchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.18-Takeuchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.18-Takeuchi.pdf,1953.02.18,1953.02.18,1833,, +1953.02.15,15-Feb-53,1953,Unprovoked,AUSTRALIA,New South Wales,Cave at Shell Harbour,Spearfishing,Rex Gallagher,M,25,"Shark tore off face mask, divers face, nose & chin lacerated",N,18h00,Wobbegong shark,"Spearfishing News, April 1953, p.5; J. Oetzel in Skin Diver Magazine, March 1965, p.17; V.M. Coppleson (1958), p.33",1953.02.15-Gallagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.15-Gallagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.15-Gallagher.pdf,1953.02.15,1953.02.15,1832,, +1953.02.00,Feb-53,1953,Unprovoked,AUSTRALIA,,,Spearfishing,Ron Ware,M,,Foot bitten,N,,Wobbegong shark,J. Oetzel,1953.02.00-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.00-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.00-Ware.pdf,1953.02.00,1953.02.00,1831,, +1953.01.20,20-Jan-53,1953,Provoked,AUSTRALIA,South Australia,Largs Bay,Fishing,Ernest Lamerton,M,61,Finger bitten by hooked shark PROVOKED INCIDENT,N,,,"The Advertiser, 1/23/1953",1953.01.20-Lamerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.20-Lamerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.20-Lamerton.pdf,1953.01.20,1953.01.20,1830,, +1953.01.08,08-Jan-53,1953,Boating,AUSTRALIA,Tasmania,Wynyard,Fishing,14-foot boat Sintra,,MAKE LINE GREEN,"No injury to occupant, shark charged boat",N,Afternoon,10' to 12' shark,"C. Black, GSAF",1953.01.08-Wynyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.08-Wynyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.08-Wynyard.pdf,1953.01.08,1953.01.08,1829,, +1953.00.00.c,1953,1953,Unprovoked,AUSTRALIA,,,Spearfishing,Alan Agnew,M,,Kneecap bitten,N,,Wobbegong shark,"J. Oetzel; H. D. Baldridge, p.165",1953.00.00.c-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.c-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.c-Agnew.pdf,1953.00.00.c,1953.00.00.c,1828,, +1953.00.00.b,1953,1953,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Kahuli, Buka Island",Washing,male,M,,"FATAL, torso bitten",Y,,,"A. Bleakley; A. M. Rapson, p.148",1953.00.00.b-Kahuli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.b-Kahuli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.b-Kahuli.pdf,1953.00.00.b,1953.00.00.b,1827,, +1953.00.00.a,1953,1953,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Standing,girl,F,,Leg lacerated thigh to ankle,N,,," V.M. Coppleson (1958), p.254; R. F. Hutton",1953.00.00.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.a-girl.pdf,1953.00.00.a,1953.00.00.a,1826,, +1952.12.24,24-Dec-52,1952,Unprovoked,AUSTRALIA,Victoria,"Portsea Beach, near Melbourne",Lying prone on surfboard,Bernard Bade,M,,"No injury, board bumped by shark",N,,,"V.M. Coppleson (1962), frontspiece",1952.12.24-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.24-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.24-Bade.pdf,1952.12.24,1952.12.24,1825,, +1952.12.21,21-Dec-52,1952,Unprovoked,AUSTRALIA,South Australia,Cape Douglas,"Fishing, setting nets",John Holmes,M,25,Bitten on thigh and buttocks,N,"""After dark""",2.4 m [8'] shark,"V.M. Coppleson (1958), p.178; V.M. Coppleson (1962), p.245",1952.12.21-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.21-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.21-Holmes.pdf,1952.12.21,1952.12.21,1824,, +1952.12.14,14-Dec-62,1952,Invalid,GUATEMALA,,,Air Disaster,Soledad Castellanos - or - Norma Figeroa,F,,It is probable that all onboard (2 men & 2 women) died when the plane crashed into the sea & her body was scavenged by a shark,Y,,,"The Frederick Post (Maryland), 12/17/1952, p.1",1952.12.14-Guatemala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.14-Guatemala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.14-Guatemala.pdf,1952.12.14,1952.12.14,1823,, +1952.08.04,04-Aug-52,1952,Provoked,ITALY,Genoa Province,Riva Trigoso,Fishing,Franco Podesta,M,17,Bitten by hooked shark PROVOKED INCIDENT,N,,200-lb shark," C. Moore, GSAF",1952.08.04-Podesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.04-Podesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.04-Podesta.pdf,1952.08.04,1952.08.04,1822,, +1952.08.03,03-Aug-52,1952,Unprovoked,USA,Hawaii,"Between Ala Moana Channel & Kewalo Basin, O'ahu",Swimming,Shigeichi Kawamura,M,,"FATAL, disappeared while swimming, shark bite found on right side of body",Y,,,"Honolulu Advertiser, 12/4/1952; G.H. Balazs & A.K.H. Kam; J. Borg, p.72; L. Taylor (1993), pp.100-101;",1952.08.03-Kawamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.03-Kawamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.03-Kawamura.pdf,1952.08.03,1952.08.03,1821,, +1952.12.07,07-Dec-52,1952,Unprovoked,USA,California,"Pacific Grove, Monterey Bay, Monterey County",Body surfing & treading water,Barry Wilson,M,17,"FATAL, leg lacerated ",Y,14h00,"White shark,4.6 m [15'] ","R. L. Bolin, D. Miller & R. Collier, R. Skocik, p.174;V.M. Coppleson (1958), pp.156 & 254; R. Collier, pp.10-13",1952.12.07-Wilson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.07-Wilson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.07-Wilson_Collier.pdf,1952.12.07,1952.12.07,1820,, +1952.12.03,03-Dec-52,1952,Unprovoked,USA,Hawaii,"Maile Beach, O'ahu",Swimming from fishing boat setting nets,Gerbacio Solano (or Salamo),M,40,"FATAL, left arm severed below the elbow ",Y,,>6.7 m [22'] shark," Honolulu Advertiser, 12/4/1952; V.M. Coppleson (1958), p.260; J. Borg, p.74; Webster, p.31; L. Taylor (1993), pp.100-101",1952.12.03-Solano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.03-Solano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.03-Solano.pdf,1952.12.03,1952.12.03,1819,, +1952.10.12,12-Oct-52,1952,Unprovoked,PAPUA NEW GUINEA,"Abau Sub District, Central Province",Lalaura Village,Fishing,male,M,,Right thigh bitten ,N,,,"A. Bleakley; A.M. Rapson, p.148",1952.10.12-Lalaura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.10.12-Lalaura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.10.12-Lalaura.pdf,1952.10.12,1952.10.12,1818,, +1952.08.06,06-Aug-52,1952,Invalid,SOUTH AFRICA,Eastern Cape Province,Nelsons Rock,,Mr. Ristow,M,18,"Possibly drowned, remains found days later in sharks gut",Y,,"Zambesi shark, 113-kg [249-lb] female ","Daily Dispatch; M. Levine, GSAF",1952.08.06-Ristow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.06-Ristow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.06-Ristow.pdf,1952.08.06,1952.08.06,1817,, +1952.08.05,05-Aug-52,1952,Provoked,ITALY,Teramo,Giulianova,Fishing,Vittorio Speca,,19,Multiple injuries PROVOKED INCIDENT,Y,02h00,2m shark,"C. Moore, GSAF",1952.08.05-Speca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.05-Speca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.05-Speca.pdf,1952.08.04,1952.08.05,1816,, +1952.07.27.d,27-Jul-52,1952,Boating,USA,Florida,"Panacea, Wakulla County",Fishing for trout ,a skill. Occupants George Lunsford & 2 companions,,,No injury to occupants. Shark chasing fish leapt into skiff & flopped out,N,,"Hammerhead shark, 5' ","Evening Sun (Baltimore), 7/28/1952",1952.07.27.d-Lunsford-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.d-Lunsford-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.d-Lunsford-boat.pdf,1952.07.27.d,1952.07.27.d,1815,, +1952.07.27.c,27-Jul-52,1952,Provoked,USA,South Carolina,Seabrook Beach,Fishing, Ben Tillman Homes,M,43,Finger bitten by hooked shark PROVOKED INCIDENT,N,,a small shark',"News and Courier, 7/28/1952",1952.07.27.c-TillmanHomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.c-TillmanHomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.c-TillmanHomes.pdf,1952.07.27.c,1952.07.27.c,1814,, +1952.07.27.b,27-Jul-52,1952,Provoked,USA,South Carolina,Seabrook Beach,Fishing,Truman Jones ,M,34,Thumb bitten by hooked shark PROVOKED INCIDENT,N,,a small shark',"News and Courier, 7/28/1952",1952.07.27.b-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.b-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.b-Jones.pdf,1952.07.27.b,1952.07.27.b,1813,, +1952.07.27.a,27-Jul-52,1952,Sea Disaster,USA,California,"Off Santa Monica, Los Angeles County",Boat exploded,"Wes Wiggins and 7 others on the boat, Sparetime",M,,FATAL & some of the survivors were bitten by sharks ,Y,,,R. Collier,1952.07.27.a-Sparetime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.a-Sparetime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.a-Sparetime.pdf,1952.07.27.a,1952.07.27.a,1812,, +1952.07.13,13-Jul-52,1952,Provoked,USA,California,"San Diego, San Diego County",Fishing,"Gerald Howard, on board sportsfishing boat Teresa A",M,34,Part of hand removed by shark he had caught PROVOKED INCIDENT,N,,,"L.A. Times, 7/14/1952 ",1952.07.13-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf,1952.07.13,1952.07.13,1811,,Teramo +1952.07.05,05-Jul-52,1952,Unprovoked,USA,Puerto Rico,"Mona Island, 40 miles west of the mainland ","Spearfishing, carrying fish on spear",Juan Suarez Morales,M,,Leg lacerated & bone fractured ,N,11h00,"Tiger shark, 1.5 m [5'] ","V.M. Coppleson (1958), p.265; J. Randall in Sharks and Survival, p.346",1952.07.05-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.05-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.05-Morales.pdf,1952.07.05,1952.07.05,1810,, +1952.05.27,27-May-52,1952,Unprovoked,USA,California,"Imperial Beach, San Diego County",Swimming on surface,"Arthur E. Taylor, a navy diver & member+G1053 of a 24-man demolition team",M,,Foot & swimfin bitten,N,10h00 or 14h00,"White shark, 2 m to 4 m [6'9"" to 13'] ","R. Collier, pp.8-9",1952.05.27-Taylor_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.27-Taylor_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.27-Taylor_Collier.pdf,1952.05.27,1952.05.27,1809,, +1952.05.07.R,Reported 07-May-1952,1952,Unprovoked,AUSTRALIA,Western Australia,Boyup Brook,"Fishing, standing in water washing fish",Mr. M. King,M,,Lacerations to 2 fingers & knuckles abraded,N,,"Carpet shark, 5' ","T. Peake, GSAF; West Australian, 5/7/1952",1952.05.07.R-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.07.R-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.07.R-King.pdf,1952.05.07.R,1952.05.07.R,1808,, +1952.05.00,May-52,1952,Unprovoked,INDIA,,Off Trivandrum (west coast),"Fishing, standing in water next to purse net",Ranji Lal,M,,Lower leg lacerated,N,,"""A 2' (0.6 m) brown shark""","F. Dennis, p.10",1952.05.00-Lal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.00-Lal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.00-Lal.pdf,1952.05.00,1952.05.00,1807,, +1952.04.06,06-Apr-52,1952,Boating,AUSTRALIA,South Australia,Streaky Bay,Fishing for white sharks,25' cutter,,,No injury to fisherman Alf Dean & other occupants;,N,Morning,"White shark, 15'3"", 2,333-lb ","Recorder (Port Pirie), 4/7/1952",1952.04.06-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.06-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.06-AlfDean.pdf,1952.04.06,1952.04.06,1806,, +1952.04.00,Apr-52,1952,Provoked,SUDAN,Red Sea State,"Suakin Harbor, Suakin Island",Spearfishing,Hans Hass,M,,Right forearm lacerated by speared shark PROVOKED INCIDENT,N,P.M.,"a ""small slim brown shark""","H. Hass in We Come From the Sea, pp.42-46",1952.04.00-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.00-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.00-Hass.pdf,1952.04.00,1952.04.00,1805,, +1952.03.30,30-Mar-52,1952,Unprovoked,NETHERLANDS ANTILLES,Curacao,,Went to aid of child being menaced by the shark,A.J. Eggink,M,,"Buttock bitten, tissue removed",N,,"Bull shark, 2.7 m [9'] was captured & dragged on the sand where tissue taken from Eggink was found in its gut. Species identification was made by S. Springer based on 4 photographs of the shark. ","J. Randall, p.352 in Sharks & Survival; H.D. Baldridge, p.172",1952.03.30-Eggink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.03.30-Eggink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.03.30-Eggink.pdf,1952.03.30,1952.03.30,1804,, +1952.01.23,23-Jan-52,1952,Provoked,MAURITIUS,Port Louis Province,Port Louis,"Spearfishing, speared a small shark",Bernard Montessier,M,,Right foot lacerated by a larger shark. Lost several toes PROVOKED INCIDENT,N,,,"V.M. Coppleson (1958), p.262; V.M. Coppleson (1962), p.253",1952.01.23-Moitessier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.23-Moitessier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.23-Moitessier.pdf,1952.01.23,1952.01.23,1803,, +1952.01.07,07-Jan-52,1952,Unprovoked,AUSTRALIA,New South Wales,Evans Head,Surfing,Charles Thomas,M,,Bitten on left calf and ankle,N,,8' shark,"Canberra Times, 1/8/1952",1952.01.07-CharlesThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.07-CharlesThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.07-CharlesThomas.pdf,1952.01.07,1952.01.07,1802,, +1952.00.00.e,1952-1954,1952,Unprovoked,LIBERIA,Montserrado,"West Breakwater, Monrovia / Freeport","Diving, recovering fish killed by dynamite",male,M,,FATAL,Y,,,G.C. Miller,1952.00.00.e-Liberia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.e-Liberia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.e-Liberia.pdf,1952.00.00.e,1952.00.00.e,1801,, +1952.00.00.d,1952,1952,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province",Manus Island,Spearfishing,male,M,,"Arm bitten, surgically amputated",N,,,"Cairns Post, 11/27/1952",1952.00.00.d-ManusIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.d-ManusIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.d-ManusIsland.pdf,1952.00.00.d,1952.00.00.d,1800,, +1952.00.00.c,1952,1952,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Momote, Manus Island",Spearfishing,male,M,,"FATAL, ""No remains""",Y,,"""Attacked by a number of sharks""","A. Bleakley; A. M. Rapson, p.148; H.D. Baldridge, p. 129",1952.00.00.c-Momote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.c-Momote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.c-Momote.pdf,1952.00.00.c,1952.00.00.c,1799,, +1952.00.00.b,1952,1952,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Samo Plantation, east coast ",Spearfishing,"Kiaploki, a male",M,27,"FATAL, lower abdomen removed ",Y,,,"A. Bleakley; Namatanai Dept. of Public Health; A. M. Rapson, p.148",1952.00.00.b-Kiaploki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.b-Kiaploki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.b-Kiaploki.pdf,1952.00.00.b,1952.00.00.b,1798,, +1952.00.00.a,1952,1952,Unprovoked,USA,Florida,Near Key West,Swimming,"male, a Pan American pilot wearing a flourescent bathing suit",M,,"FATAL, groin bitten ",Y,,,"V.M. Coppleson (1958), p.254; R. F. Hutton; T. Helm, p.230;",1952.00.00.a-PanAmPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.a-PanAmPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.a-PanAmPilot.pdf,1952.00.00.a,1952.00.00.a,1797,, +1951.12.21,21-Dec-51,1951,Unprovoked,MOZAMBIQUE,Bay of Maputu,Catembe ,Swimming,Carlos do Amaral,M,15,"FATAL, right leg, thighs & hands bitten ",Y,,,GSAF,1951.12.21-DoAmaral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.21-DoAmaral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.21-DoAmaral.pdf,1951.12.21,1951.12.21,1796,, +1951.12.16,16-Dec-51,1951,Provoked,AUSTRALIA,New South Wales,North Bondi,Spearfishing,Lindsay Munn,M,18,Speared shark lacerated left leg above ankle PROVOKED INCIDENT,N,,"Wobbegong shark, 1.8 m [6'] ","V.M. Coppleson (1958), pp. 171-172",1951.12.16-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.16-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.16-Munn.pdf,1951.12.16,1951.12.16,1795,, +1951.12.06,06-Dec-51,1951,Unprovoked,AUSTRALIA,New South Wales,"Merewether Beach, Newcastle",Treading water,"Frank Olkulich, the local surf-ski champion",M,21,FATAL,Y,16h00,2.4 m [8'] shark,"V.M. Coppleson (1958), pp.79; A. Sharpe, p.85",1951.12.06-Okulich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.06-Okulich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.06-Okulich.pdf,1951.12.06,1951.12.06,1794,, +1951.11.29,29-Nov-51,1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Swimming,Harold Tait,M,23,Thigh bruised & abraded,N,13h00,"White shark, 1.8 m [6'] ","G. Plowman, M. Levine, GSAF ",1951.11.29-Tait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.29-Tait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.29-Tait.pdf,1951.11.29,1951.11.29,1793,, +1951.11.28.b,28-Nov-51,1951,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Fishing,George Lewis,M,81,Lacerations to left hand,N,,,"Daily Gleaner, 11/29/1951, p. 1",1951.11.28.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.b-Lewis.pdf,1951.11.28.b,1951.11.28.b,1792,, +1951.11.28.a,28-Nov-51,1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Treading water,George Plowman,M,24,"Leg severed below knee, defense wounds on hand",N,17h15,"White shark, 2.4 m [8'] ","G. Plowman, M. Levine, GSAF",1951.11.28.a-Plowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.a-Plowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.a-Plowman.pdf,1951.11.28.a,1951.11.28.a,1791,, +1951.11.23.R,Reported 23-Nov-1951,1951,Unprovoked,PHILIPPINES,,,Shipwrecked; adrift on raft for 2 days & 2 nights,3 fishermen,M,,"FATAL, two men survived, one succumbed to shark bite & exhaustion",Y,,,"Fresno Bee Republican, 11/23/1951",1951.11.22-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.22-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.22-Philippines.pdf,1951.11.23.R,1951.11.23.R,1790,, +1951.10.22,22-Oct-51,1951,Unprovoked,AUSTRALIA,Queensland,"Ocean baths, Kissing Point Beach ",Swimming,Arthur James Kenealey,M,42,"FATAL, leg severed, shark dragged him through hole in protective net",Y,19h10,,"V.M. Coppleson (1958), pp.90-91; A. Sharpe, pp.98-99; A. MacCormick, p.169",1951.10.22-Kenealy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.22-Kenealy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.22-Kenealy.pdf,1951.10.22,1951.10.22,1789,, +1951.10.05,05-Oct-51,1951,Invalid,NORTH ATLANTIC OCEAN,South Carolina,400 miles off the le,cargo ship Southern Isle sank at 04h00,,,,Sharks fed on bodies of the drowned,N,,,"J. Waters, U.S. Coast Guard; San Mateo Times, 10/5/1951",1951.10.05-SouthernIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.05-SouthernIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.05-SouthernIsle.pdf,1951.10.05,1951.10.05,1788,, +1951.09.29,29-Sep-51,1951,Unprovoked,ITALY,Salerno,Amalfi,Swimming,Anna Wurn,F,21,FATAL,Y,,,"C. Moore, GSAF; Courier-Mail, 11/3/1951",1951.09.29-Wurn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.29-Wurn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.29-Wurn.pdf,1951.09.29,1951.09.29,1787,, +1951.09.03.R,Reported 03-Sep-1951,1951,Unprovoked,ITALY,Salerno Province,Salerno,Fishing for squid,Luca Caputo,M,,3 fingers severed when he used his hand as bait,N,Night,,"C. Moore, GSAF",1951.09.03.R-Caputo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.03.R-Caputo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.03.R-Caputo.pdf,1951.09.03.R,1951.09.03.R,1786,, +1951.09.02-R,Reported 02-Sep-1951,1951,Unprovoked,AUSTRALIA,Queensland,Fitzroy River near Rockhampton,"Body found on deserted luxury yacht, 38 Christine",Dr. E. Al Joske,M,56,"FATAL, abdominal wounds & right leg severed at the hip ",Y,,,"J. Green, p.34; V.M. Coppleson (1958), pp. 91-92. Note: A. Sharpe, p.99-100, lists date as 9-4-1955 and the Christine as a 45' ketch",1951.09.02-Joske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.02-Joske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.02-Joske.pdf,1951.09.02-R,1951.09.02-R,1785,, +1951.08.17.b,17-Aug-51,1951,Unprovoked,GREECE,Corfu Island,Off Royal Residence,Swimming,George Athanasenas,M,18,Injured but survived,N,,White shark,A. De Maddalena,1951.08.17.b-Athanasenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.b-Athanasenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.b-Athanasenas.pdf,1951.08.17.b,1951.08.17.b,1784,, +1951.08.17.a,17-Aug-51,1951,Unprovoked,GREECE,Corfu Island,Off Royal Residence,Swimming,Vanda Pierri,F,16,"FATAL, body not recovered Another man was also injured by the shark at same time (see below)",Y,,White shark,A De Maddalena,1951.08.17.a-Perri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.a-Perri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.a-Perri.pdf,1951.08.17.a,1951.08.17.a,1783,, +1951.08.16.R,Reported 16-Aug-1951,1951,Unprovoked,ITALY,Taranto,Torre Colimena,Diving (Hookah),male,M,,No injury,N,,,"C. Moore, GSAF",1951.08.16.R-TorreColimena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.16.R-TorreColimena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.16.R-TorreColimena.pdf,1951.08.16.R,1951.08.16.R,1782,, +1951.08.00,Between 01-Aug-1951 & 08-Aug-1951,1951,Unprovoked,COLUMBIA,Caribbean Sea,Cartegena,Bathing,"4 people killed in the past week, others injured",,,FATAL,Y,,,"New York Times, 8/9/1951; V.M. Coppleson (1958), pp.125 & 258",1951.08.00-Cartagena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.00-Cartagena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.00-Cartagena.pdf,1951.08.00,1951.08.00,1781,, +1951.07.19.R,Reported 19-Jul-1951,1951,Unprovoked,USA,California,"Long Beach, Los Angeles County",,Archie Nottingham,M,13,Severe laceration to foot,N,,,"Long Beach Independent, 7/19/1951, p.4A",1951.07.19.R-Nottingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.19.R-Nottingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.19.R-Nottingham.pdf,1951.07.19.R,1951.07.19.R,1780,, +1951.07.11,11-Jul-51,1951,Unprovoked,PACIFIC OCEAN,,In Los Angeles Honolulu yacht race,Fell overboard,"Edward Sierks, skipper",M,40,"""Molested by shark that nibbled his bare feet"", rescued 30 hours later.",N,Afternoon,2.1 m [7'] shark,"Daily Review, 7/13/1951",1951.07.11-Sierks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.11-Sierks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.11-Sierks.pdf,1951.07.11,1951.07.11,1779,, +1951.06.25,25-Jun-51,1951,Unprovoked,USA,Hawaii,"Kapehu Beach, Laupahoehoe, Hawai'i",Swept out to sea while fishing,Alejandro Nodura,M,,"FATAL, victim seen in shark's mouth",Y,,,"G.H. Balazs & A.K.H. Kam; J. Borg, p.72; L. Taylor (1993), pp.100-101",1951.06.25-Nodura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.25-Nodura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.25-Nodura.pdf,1951.06.25,1951.06.25,1778,, +1951.06.00,Jun-51,1951,Unprovoked,FRENCH POLYNESIA,Tuamotus,"Outer edge of Hikueru, one of the Central Tuamotu atolls",Spearfishing,Don M. Clark,M,39,Right thumb bitten,N,11h00,,D.M. Clark,1951.06.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.00-Clark.pdf,1951.06.00,1951.06.00,1777,, +1951.05.22,22-May-51,1951,Unprovoked,MEXICO,,,Free diving,Brian Lanse,M,16,Lower leg severely injured,N,15h00,,"H.D.Baldridge (1994), SAF Case #1482",1951.05.22-NV-Lanse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.22-NV-Lanse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.22-NV-Lanse.pdf,1951.05.22,1951.05.22,1776,, +1951.05.09.R,Reported 09-May-1951,1951,Provoked,ITALY,Naples Province,"Torre del Greco, Naples",,,,,3 men knocked to ground by harpooned shark PROVOKED INCIDENT,N,,,"C. Moore, GSAF",1951.05.09.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.09.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.09.R-Naples.pdf,1951.05.09.R,1951.05.09.R,1775,, +1951.03.26,26-Mar-51,1951,Provoked,AUSTRALIA,New South Wales,Avalon,Fell off surf ski,Ken Davidson,M,23,Minor laceration to chest when he grabbed the shark by its tail PROVOKED INCIDENT,N,Afternoon,"Wobbegong shark, 4'","Canberra Times, 1/27/1951",1951.03.26-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.26-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.26-Davidson.pdf,1951.03.26,1951.03.26,1774,, +1951.03.24,24-Mar-51,1951,Unprovoked,AUSTRALIA,New South Wales,Sydney,"Fishing, casting in the surf",male,M,"""young""",Severe lacerations of chest & thigh,N,,5.5 m [18'] shark,"LA Times, 3/25/1951 ",1951.03.24-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.24-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.24-Fisherman.pdf,1951.03.24,1951.03.24,1773,, +1951.03.15,15-Mar-51,1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Body surfing,Heinrich Stapelberg,M,19,Left foot lacerated,N,12h00,,"M. Levine, GSAF",1951.03.15-Stapelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.15-Stapelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.15-Stapelberg.pdf,1951.03.15,1951.03.15,1772,, +1951.02.19,19-Feb-51,1951,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. Johns,Body surfing,Keith Huskisson,M,31,"Leg bitten, defense wounds on hands",N,12h15,136-kg [300-lb] shark,"K. Huskisson, M. Levine, GSAF",1951.02.19-Huskisson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.19-Huskisson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.19-Huskisson.pdf,1951.02.19,1951.02.19,1771,, +1951.02.03,03-Feb-51,1951,Unprovoked,AUSTRALIA,New South Wales,"Windang, near the entrance to Lake Illawarra",Spearfishing (but treading water on the surface),Albert Pride,M,20,Shark's fin caused abrasion on his chest,N,,,"G.P. Whitley (1951), p.194 cites Sunday Sun (Sydney) 2/4/1951; J. Green, p.34; V.M. Coppleson (1958), pp.167-168",1951.02.03-Pride.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.03-Pride.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.03-Pride.pdf,1951.02.03,1951.02.03,1770,, +1951.02.01,01-Feb-51,1951,Unprovoked,AUSTRALIA,New South Wales,Bondi Beach,Swimming,Harry Sheen,M,14,Leg bitten,N,,1.2 m [4'] shark,"G.P. Whitley (1951), p.194 cites Daily Mirror (Sydney); J. Green, p.34",1951.02.01-Sheen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.01-Sheen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.01-Sheen.pdf,1951.02.01,1951.02.01,1769,, +1951.01.21,21-Jan-51,1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Native Beach, Durban",Swimming,Hendrie Nkwazi,M,19,"FATAL, right thigh bitten, leg severed at knee",Y,16h25,,"D. Davies; M. Levine, GSAF ",1951.01.21-Nkwazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.21-Nkwazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.21-Nkwazi.pdf,1951.01.21,1951.01.21,1768,, +1951.01.03,03-Jan-51,1951,Invalid,AUSTRALIA,New South Wales,Hawkesbury River,,male,M,,Body found after a week in the water apparently bitten by shark/s,Y,,,"G.P. Whitley (1951), p.194, cites Sun (Sydney), 2/4/1951; SAF Case #617",1951.01.03-HawkesburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.03-HawkesburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.03-HawkesburyRiver.pdf,1951.01.03,1951.01.03,1767,, +1951.00.00,1951,1951,Unprovoked,NEW GUINEA,Madang Province,Manam Island,,,,,FATAL,Y,,,"A. Bleakley; A. M. Rapson, p.148",1951.00.00-ManamIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.00.00-ManamIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.00.00-ManamIsland.pdf,1951.00.00,1951.00.00,1766,, +1950.12.31,31-Dec-50,1950,Unprovoked,AUSTRALIA,Queensland,Kirra,Paddling a surfboat,Brian Love,M,19,"No injury, shark bit oar",N,,"Nurse shark, 10' ","Examiner, 1/1/1951",1950.12.31-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.31-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.31-oar.pdf,1950.12.31,1950.12.31,1765,, +1950.12.19.R,Reported 19-Dec-1950,1950,Unprovoked,AUSTRALIA,New South Wales,Jervis Bay,Swimming,2 swimmers,,,Legs nipped,N,,"Wobbegong shark, 6'","Canberra Times, 12/19/1950",1950.12.19.R-JervisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.19.R-JervisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.19.R-JervisBay.pdf,1950.12.19.R,1950.12.19.R,1764,, +1950.12.16,16-Dec-50,1950,Unprovoked,AUSTRALIA,Queensland,"Palm Beach North, 5 miles north of Burleigh Heads, Brisbane",Treading water,"Desmond Quinlan, lifesaver",M,20,"FATAL, lower abdomen severely bitten & his left leg was severed",Y,16h15,,"R. A Smith; G.P. Whitley (1951), p.194, cites Sunday Herald (Sydney), 12/17/1950; V.M. Coppleson (1958), pp.94 & 239]",1950.12.16-Quinlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.16-Quinlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.16-Quinlan.pdf,1950.12.16,1950.12.16,1763,, +1950.11.29,29-Nov-50,1950,Provoked,AUSTRALIA,Northern Territory,Goulburn Island,Diving ,Irrwala,M,17,"Minor injury to hand and groin from shark ""caught on his fishing spear"" PROVOKED INCIDENT",N,,2' shark,"Northern Standard, 12/1/1950",1950.11.29-Irrwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.29-Irrwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.29-Irrwala.pdf,1950.11.29,1950.11.29,1762,, +1950.11.25,25-Nov-50,1950,Unprovoked,AUSTRALIA,Queensland,"Burleigh Heads, Brisbane",Body surfing,Leo Vincent Ryan,M,21,Part of buttocks & fingers severed,N,17h15,"White shark, 3m, seen in area and hooked 3 days later","G.P.Whitley (1951), p. 194, cites Sunday Herald (Sydney), 11/26/1950; V.M. Coppleson (1958), pp. 93-94 & 239",1950.11.25-LeoVincentRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.25-LeoVincentRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.25-LeoVincentRyan.pdf,1950.11.25,1950.11.25,1761,, +1950.11.12,12-Nov-50,1950,Boating,AUSTRALIA,Queensland,Yeppoon,Paddling a canoe,A canoe; occupants Harry Goodson & Douglas Barnes,M,18,"No injury to occupants, shark holed canoet",N,,10' shark,"Sydney Morning Herald, 11/13/1950",1950.11.12-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.12-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.12-canoe.pdf,1950.11.12,1950.11.12,1760,, +1950.10.08,28-Oct-50,1950,Unprovoked,USA,California,"Imperial Beach, San Diego County",Body surfing / treading water,Robert B. Campbell,M,31,Right leg lacerated,N,12h00,White shark,"R. Collier, p 6-8, R. B. Campbell; New York Times, 10/10/1960; Coppleson (1958), p.254; D. Miller & R. Collier",1950.10.08-Campbell-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.08-Campbell-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.08-Campbell-Collier.pdf,1950.10.08,1950.10.08,1759,, +1950.10.04,04-Oct-50,1950,Unprovoked,AUSTRALIA,Queensland,"Peterson's Beach, Sarina",Fishing,Valentine Sichter,M,25,Lacerations to right thumb and knee,N,Night,4' shark,"Courier-Mail, 10/6/1950",1950.10.04-Sichter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.04-Sichter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.04-Sichter.pdf,1950.10.04,1950.10.04,1758,, +1950.08.06,06-Aug-50,1950,Provoked,EL SALVADOR, La Libertad,50 miles off Port La Libertad,Jerked overboard while pole fishing for tuna,Robert L. Bottini,M,27,Left thigh bitten by hooked shark PROVOKED INCIDENT,N,08h30,"1,100-lb shark","Evening Sun (Baltimore), 8/11/1950; Long Beach Press-Telegram, 8/17/1950",1950.08.06-Bottini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.06-Bottini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.06-Bottini.pdf,1950.08.06,1950.08.06,1757,, +1950.08.00,Aug-50,1950,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,,Tissue stripped knee to foot,N,2 hrs before sunset,,G.F. Mead,1950.08.00-PearlDiver-Arabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.00-PearlDiver-Arabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.00-PearlDiver-Arabia.pdf,1950.08.00,1950.08.00,1756,, +1950.07.27.R,Reported 27-Jul-1950,1950,Boating,AUSTRALIA,South Australia,Streaky Bay,Fishing,40' fishing cutter,,,No injury to occupants,N,,17' white shark,"The Mercury, 7/27/1950",1950.07.27.R-Horsell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.27.R-Horsell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.27.R-Horsell-boat.pdf,1950.07.27.R,1950.07.27.R,1755,, +1950.07.21,21-Jul-50,1950,Unprovoked,JAPAN,Sago Prefecture,Ariakeno Bay,Swimming,male,M,19,FATAL,Y,P.M.,,M. Hosina; K. Nakaya,1950.07.21-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.21-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.21-Japan.pdf,1950.07.21,1950.07.21,1754,, +1950.07.19,1950.07.19,1950,Provoked,ITALY,Savona,Albenga,Fishing,male,,,Harpooned shark bit his forehead PROVOKED INCIDENT,N,,,"C. Moore, GSAF",1950.07.19-Albenga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.19-Albenga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.19-Albenga.pdf,1950.07.19,1950.07.19,1753,, +1950.07.14,15-Jul-50,1950,Unprovoked,CUBA,Caribbean Sea,,Swept off deck of S.S.Frontenac enroute from West Indies to US,"Johan Loekstad, a Norwegian seaman",M,30,Found at 21h30 by searchlight. Had been constantly harassed by sharks & had numerous lacerations,N,18h15 to 21h30,,"L.A. Times, 8/20/1950; Evening Star (Washington, DC), 8/24/1950; V.M. Coppleson (1962), p.259",1950.07.14-Loekstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.14-Loekstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.14-Loekstad.pdf,1950.07.14,1950.07.14,1752,, +1950.07.10,10-Jul-50,1950,Unprovoked,USA,Texas,Near Port Arthur,Swimming,Mark Majors III,M,11,Laceration to leg,N,,Hammerhead shark,"Amarillo Daily News, 7/12/1950",1950.07.10-Majors.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.10-Majors.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.10-Majors.pdf,1950.07.10,1950.07.10,1751,, +1950.07.09,09-Jul-50,1950,Invalid,USA,Texas,Galveston Bay,,,M,,Human remains found in shark,Y,,,"Kingston Daily Freeman, 7/14/1950",1950.07.09-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.09-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.09-Galveston.pdf,1950.07.09,1950.07.09,1750,, +1950.07.00,Jul-50,1950,Unprovoked,USA,Florida,"Rock Harbor, Key Largo, Monroe County","Goggle-diving for seaweeds, but standing in water",Warren Rathgen,M,21,Shallow lacerations on back of right thigh,N,,0.7 m [2.5'] shark,"C. Phillips & W.H. Brady; R.F. Hutton; V.M. Coppleson (1958), p.252 ",1950.07.00-Rathjen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.00-Rathjen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.00-Rathjen.pdf,1950.07.00,1950.07.00,1749,, +1950.06.25,25-Jun-50,1950,Unprovoked,USA,New York,"Beach 103rd Street, Rockaway ",Swimming ,Joseph Salengo,M,16,"Gashes & lacerations on legs, foot lacerated.",N,,"""sand shark"""," New York Times, 6/25/1950, p.1. col.2 & p.38",1950.06.25-Salango.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.25-Salango.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.25-Salango.pdf,1950.06.25,1950.06.25,1748,, +1950.06.06,06-Jun-50,1950,Sea Disaster,USA,Florida,275 miles northeast of Miami,Survived crash of two-engine C-46 transport plane carrying 62 migrant workers from Puerto Rico to USA ,Pedro Guzman,M,25,"FATAL, bitten five times. Other survivors fought off sharks for 10 hours. One survivor's arm severed by a shark.",Y,09h00,,"NY Times, 7/7/1950; V.M. Coppleson (1962), p.258; T. Helm, p.89; [SAF Case #949 & SAF Case #969]",1950.06.06-Guzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.06-Guzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.06-Guzman.pdf,1950.06.06,1950.06.06,1747,, +1950.05.24,24-May-50,1950,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Port Edward,Treading water,Dr. Leonard Read Tibbet,M,27,Left foot bitten,N,10h30,,"L.R. Tibbet, M. Levine, GSAF",1950.05.24-Tibbit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.24-Tibbit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.24-Tibbit.pdf,1950.05.24,1950.05.24,1746,, +1950.05.01,01-May-50,1950,Boating,ITALY,Tyrrhenian Sea,"Sprizze, Isola d'Elba",Fishing on a boat,Remo Adriani,M,,No injury,N,,"unknown, possibly a white shark",A. De Maddalena; F. Serena (pers. Comm.),1950.05.01-Adriani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.01-Adriani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.01-Adriani.pdf,1950.05.01,1950.05.01,1745,, +1950.04.09.b,09-Apr-50,1950,Sea Disaster,AUSTRALIA,Queensland,Cooper's Point,"Sea Disaster, sinking of the fishing launch Mavis",John McDonald,M,50,FATAL,Y,,,"Cairns Post, 7/8/1950",1950.04.09-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09-McDonald.pdf,1950.04.09.b,1950.04.09.b,1744,, +1950.04.09.a,09-Apr-50,1950,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Off Port Elizabeth breakwater,"Fishing, sitting in stern of small boat, feet dangling in the water",male,M,,"Shark bit foot, removing 2 toes",N,,2.13 m shark,Port Elizabeth Museum Archives,1950.04.09.R-2Toes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09.R-2Toes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09.R-2Toes.pdf,1950.04.09.a,1950.04.09.a,1743,, +1950.03.26,26-Mar-50,1950,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Off bank of Ntshala River, Morgan Bay",Wading,Mr. N. Wright,M,,"Ankle & foot lacerated, defense wounds on hand",N,Midday,1.5 m to 1.8 m [5' to 6'] spear-eye shark ,"M. Levine, GSAF",1950.03.26-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.26-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.26-Wright.pdf,1950.03.26,1950.03.26,1742,, +1950.03.08,08-Mar-50,1950,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Lifesaving drill,Brian Von Berg,M,20,FATAL,Y,18h50,,"N.Cook; M. Levine, GSAF",1950.03.08-VonBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.08-VonBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.08-VonBerg.pdf,1950.03.08,1950.03.08,1741,, +1950.03.01,01-Mar-50,1950,Invalid,AUSTRALIA,Western Australia,"City Beach, Perth",Suicide,Peter Szott,M,,"His body, with bullet wound in head & right hand missing, washed shore - an apparent suicide",Y,,"Szot's right hand found in a 4.5' [14.5'] tiger shark caught 3/9/1950 at Safety Bay, south of Freemantle","G.P. Whitley (1951), p.186, citng the Sydney Morning Herald, 3/11/1950; D. Baldridge, p.171; SAF Cases #584 & #615",1950.03.01-Szott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.01-Szott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.01-Szott.pdf,1950.03.01,1950.03.01,1740,, +1950.02.18.R,Reported 18-Feb-1950,1950,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe, Perth",Spearfishing,male,M,,Minor injury to leg,N,,small carpet shark,"Mirror, 2/18/1950",1950.02.18.R-Perth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.18.R-Perth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.18.R-Perth.pdf,1950.02.18.R,1950.02.18.R,1739,, +1950.02.11,11-Feb-50,1950,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Body surfing,Clive Dumayne,M,14,"FATAL, body not recovered ",Y,14h30,"White shark, 3.7 m [12'] according to witnesses","M. Dumayne, M. Levine, GSAF",1950.02.11-Dumayne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.11-Dumayne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.11-Dumayne.pdf,1950.02.11,1950.02.11,1738,, +1950.01.16,16-Jan-50,1950,Invalid,USA,Hawaii,"Kahakuloa, Maui","Fishing, one of three fishermen swept into the sea by a large wave ",Gilbert S. Hotta,M,,"His remains were recovered from a huge shark caught 3 days later. The remains of another fisherman, Harold Fujimoto, were recovered, but the body of the third fisherman, Hideo Tamura, was never found",Y,Night,,"J. Borg, p.72; L. Taylor (1993), pp.98-99",1950.01.16-Hotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.16-Hotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.16-Hotta.pdf,1950.01.16,1950.01.16,1737,, +1950.01.12.R,Reported 12-Jan-1950,1950,Unprovoked,AUSTRALIA,Victoria,South Werribee Beach,Swimming,D. Martin,M,,3 lacerations to heel,N,,,"Werribee Shire Banner, 1/12/1950",1950.01.12.R-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.12.R-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.12.R-Martin.pdf,1950.01.12.R,1950.01.12.R,1736,, +1950.00.00.m,1950,1950,Boating,AUSTRALIA,Tasmania,Triabunna,Sitting on side of dinghy mending a net,Neil Drake,M,,"No injury to occupant, shark bit side of dinghy",N,,"White shark, 3.6 m, 420 kg male","C. Black, GSAF",1950.00.00.m-Drake-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.m-Drake-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.m-Drake-dinghy.pdf,1950.00.00.m,1950.00.00.m,1735,, +1950.00.00.l,1950,1950,Unprovoked,SRI LANKA,Eastern Province,Heda Oya Estuary,Shark fishing,Aboobaker,M,,Buttock removed,N,,Possibly a lemon shark,"R.I. DeSilva, GSAF",1950.00.00.l-Abbobaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.l-Abbobaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.l-Abbobaker.pdf,1950.00.00.l,1950.00.00.l,1734,, +1950.00.00.k,1950,1950,Unprovoked,SRI LANKA,Southern Province,Dodnduwa,Spearfishing,Langston Pereira,M,,"No injury, but shark damaged one of his swim fins",N,,Whtietip reef shark,"R.I. DeSilva, GSAF",1950.00.00.k-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.k-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.k-Pereira.pdf,1950.00.00.k,1950.00.00.k,1733,, +1950.00.00.j,1950 - 1951,1950,Unprovoked,LIBERIA,Montserrado,Monrovia,Defecating in water beneath the docks,a dock worker,M,,FATAL,Y,,,G. C. Miller,1950.00.00.j-Liberian-dock-worker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.j-Liberian-dock-worker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.j-Liberian-dock-worker.pdf,1950.00.00.j,1950.00.00.j,1732,, +1950.00.00.i,Summer 1950,1950,Unprovoked,INDONESIA,Jakarta Harbour,On rock near Yacht Club,Bending over,child,M,7 or 8,FATAL,Y,1500,"Tiger shark, 3.7 m to 4.3 m [12' to 14']",J. Daigle,1950.00.00.i-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.i-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.i-child.pdf,1950.00.00.i,1950.00.00.i,1731,, +1950.00.00.h,1950,1950,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Standing,George Carter,M,,Arm bitten,N,,,"Florida Times-Union (Jacksonville), 6/6/1961",1950.00.00.h-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.h-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.h-Carter.pdf,1950.00.00.h,1950.00.00.h,1730,, +1950.00.00.g,1950s,1950,Invalid,USA,Hawaii,"Waikiki, O'ahu",Spearfishing,David Lloyd,M,,"No injury from shark, scraped chest climbing out on reef",N,,"Alleged to involve a white shark ""with little yellow eyes""","J. Borg, p.73; L. Taylor (1993), pp.100-101; Skin Diver Magazine, March 1956; SAF Case #1042",1950.00.00.g-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.g-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.g-Lloyd.pdf,1950.00.00.g,1950.00.00.g,1729,, +1950.00.00.f,1950,1950,Unprovoked,PANAMA,Canal Zone,300 yards west of mouth of the Chagres River,Bathing ,"male, a US soldier",M,,Foot & hand severed,N,13h00,2.7 m [9'] shark with black-tipped pectoral fins,G.B. Fairchild,1950.00.00.f-US-solier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.f-US-solier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.f-US-solier.pdf,1950.00.00.f,1950.00.00.f,1728,, +1950.00.00.e,Summer 1950,1950,Unprovoked,GREECE,,"Piraeus, Athens",Swimming,,,,FATAL,Y,,,"V.M. Coppleson (1958), p.259; L. Schultz & M. Malin, p.529",1950.00.00.e-Piraeus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.e-Piraeus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.e-Piraeus.pdf,1950.00.00.e,1950.00.00.e,1727,, +1950.00.00.d,1950,1950,Unprovoked,SINGAPORE,Singapore Harbor,,Diving for coins,"Abdullah, a Malay diver",M,,FATAL,Y,,,"V.M. Coppleson (1958), p.148",1950.00.00.d-Abdullah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.d-Abdullah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.d-Abdullah.pdf,1950.00.00.d,1950.00.00.d,1726,, +1950.00.00.c,1950,1950,Unprovoked,NEW CALEDONIA,North Province,"Voh, near meatworks","Spearfishing, but walking carrying fish on end of speargun",male,M,,"Shark jumped from sea, taking fish & his right arm",N,,,"V.M. Coppleson (1958), p.262; V.M. Coppleson (1962), p.253",1950.00.00.c-NewCaledonia-Voh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.c-NewCaledonia-Voh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.c-NewCaledonia-Voh.pdf,1950.00.00.c,1950.00.00.c,1725,, +1950.00.00.b,Ca. 1950,1950,Unprovoked,NEW CALEDONIA,North Province,Mangalia Reef above Touho ,"Helmet diving, collecting trochus shell",male,M,,"Arm bitten, surgically amputated",N,,," V.M. Coppleson (1958), pp.98 & 262",1950.00.00.b-NewCaledonia-Touho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.b-NewCaledonia-Touho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.b-NewCaledonia-Touho.pdf,1950.00.00.b,1950.00.00.b,1724,, +1950.00.00.a,Ca. 1950,1950,Unprovoked,FIJI,,Near Lautoka,,Fijian,M,,Survived,N,,,"V.M. Coppleson (1962), p.246",1950.00.00.a-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.a-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.a-Fiji.pdf,1950.00.00.a,1950.00.00.a,1723,, +1949.12.00.b,Dec-49,1949,Sea Disaster,,Caribbean Sea,Between Cuba & Costa Rica,"Sea Disaster, sinking of the motorship Wingate","Albert Battles, James Dean & 4 crew",M,,Fatal or drowning or scavenging,Y,,Shark involvement not confirmed,"Canberra Times, 1/6/1950",1949.12.00.b-Wingate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.b-Wingate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.b-Wingate.pdf,1949.12.00.b,1949.12.00.b,1722,, +1949.12.00.a,Dec-49,1949,Unprovoked,AUSTRALIA,Victoria,Seaholme,Lying on the bottom of a 16' dinghy,Doug Miller,M,35,"No injury, Shark landed on top of him, knocked him back down 3 times",N,,"Grey nurse shark, 2.6 m [8.5'] ","V.M. Coppleson (1958), pp. 181-182",1949.12.00.a-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.a-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.a-Miller.pdf,1949.12.00.a,1949.12.00.a,1721,, +1949.11.20,20-Nov-49,1949,Unprovoked,AUSTRALIA,New South Wales,"Kurnell, Botany Bay ",Free diving or wading back to shore,William Edward Brown,M,36,Left arm bitten ,N,Afternoon,6' shark,"Sydney Morning Herald, 11/20/1949",1949.11.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.20-Brown.pdf,1949.11.20,1949.11.20,1720,, +1949.11.12,12-Nov-49,1949,Invalid,AUSTRALIA,Victoria,Port Phillip Bay,No details,John W. Smith,M,,Fatal or drowning or scavenging,Y,,,"G.P. Whitley (1951), p.194, cites Sunday Herald (Sydney), 11/13/1949; SAF Case #613",1949.11.12-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.12-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.12-Smith.pdf,1949.11.12,1949.11.12,1719,, +1949.08.28.b,28-Aug-49,1949,Unprovoked,AUSTRALIA,Queensland,Yorkeys Knob Beach near Cairns,Swimming,Brian Ware (rescuer),M,21,Abdomen & chest abraded,N,13h20,,"V.M. Coppleson (1958), p.89",1949.08.28.b-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.b-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.b-Ware.pdf,1949.08.28.b,1949.08.28.b,1718,, +1949.08.28.a,28-Aug-49,1949,Unprovoked,AUSTRALIA,Queensland,Yorkeys Knob Beach near Cairns,Swimming,James Howard,M,34,"FATAL, right leg, thigh & fingers lacerated ",Y,13h20,,"G.P. Whitley (1951), p.194, cites Daily Telegraph (Sydney), 8/29/1949; V.M. Coppleson (1958), pp.88 & 239",1949.08.28.a-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.a-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.a-Howard.pdf,1949.08.28.a,1949.08.28.a,1717,, +1949.08.17,17-Aug-49,1949,Invalid,ITALY,Tuscany,Elba Island,Swimming,Domenico Murolo,M,17,No injury,N,,2 m shark,"C. Moore, GSAF",1949.08.17-Murolo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.17-Murolo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.17-Murolo.pdf,1949.08.17,1949.08.17,1716,, +1949.08.16,16-Aug-49,1949,Unprovoked,AUSTRALIA,Tasmania,Flinders Island,Swimming near shore,Robert Kay,M,18,Hip lacerated,N,16h00,,"G.P. Whitley (1952), p.194;, citing Daily Telegraph (Sydney), 8/18/1949; V.M. Coppleson (1958), p.240; C. Black, p. 148",1949.08.16-Kay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.16-Kay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.16-Kay.pdf,1949.08.16,1949.08.16,1715,, +1949.08.10.R,Reported 10-Aug-1949,1949,Unprovoked,ITALY,Calabria,Cosenza,Swimming,Giovanni Picarelli,M,21,Right hand severed,N,,,"C. Moore, GSAF",1949.08.10.R-Picarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.10.R-Picarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.10.R-Picarelli.pdf,1949.08.10.R,1949.08.10.R,1714,, +1949.07.29,07-Jul-49,1949,Unprovoked,IRAN,Shatt-el-Arab River,,Swimming,"R. Palmer, ships apprentice",M,18,Right leg lacerated,N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1949.07.29-Palmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.29-Palmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.29-Palmer.pdf,1949.07.29,1949.07.29,1713,, +1949.07.28,28-Jul-49,1949,Unprovoked,IRAN,Shatt-al-Arab River,Bashamir,Swimming,Ali,M,18,"FATAL, thigh lacerated, femur exposed ",Y,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1949.07.28-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.28-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.28-Ali.pdf,1949.07.28,1949.07.28,1712,, +1949.07.25,25-Jul-49,1949,Unprovoked,USA,South Carolina,"Oketee River, Jasper County",Floating on his back,Ted Roach,M,16,"Abdomen abraded, thigh lacerated",N,15h00,,"V.M. Coppleson (1958), p.153",1949.07.25-Roach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.25-Roach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.25-Roach.pdf,1949.07.25,1949.07.25,1711,, +1949.07.16,16-Jul-49,1949,Provoked,USA,California,"10 miles off Redondo Beach, Los Angeles County",Fishing,Raymond T. Gold,M,16,Right hand bitten by hooked shark being pulled onboard PROVOKED INCIDENT,N,,"Bonita sharkk, 200-lb","L.A. Times, 7/17/1949 ",1949.07.16-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.16-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.16-Gold.pdf,1949.07.16,1949.07.16,1710,, +1949.06.13,13-Jun-49,1949,Sea Disaster,CHINA,,Between Tientsin & Hong Kong,"A 75-ton Japanese fishing ship was sunk by Chinese Nationalist gunboat, shipwrecked men were clinging to debris",Japanese fishermen,M,,"FATAL, at time of sinking several men were thrown in water & killed by sharks, survivors were rescued 3 days later by the Panamanian ship Christobel",Y,,,"V.M. Coppleson (1958), pp.257-258",1949.06.13-Japanese-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.06.13-Japanese-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.06.13-Japanese-fishermen.pdf,1949.06.13,1949.06.13,1709,, +1949.05.16,16-May-49,1949,Unprovoked,AUSTRALIA,Western Australia,Broome,Bathing,Mary Passaris,F,22,"Left arm severed above elbow, recovered 5 days afterwards from sharks gut",N,,"Whaler shark, 2.7 m [9'], 350- to 450-lb identified by G.P. Whitley","V.M. Coppleson (1958), pp.107 & 241; G.P. Whitley (1951), pp.186-188; A. Sharpe, pp.131-132",1949.05.16-Passaris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.16-Passaris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.16-Passaris.pdf,1949.05.16,1949.05.16,1708,, +1949.05.13,13-May-49,1949,Provoked,AUSTRALIA,New South Wales,Nelson's Bay,"Examining netted shark, that had been shot",Albert Hampton,M,26,Lacerations to right hand PROVOKED INCIDENT,N,,,"V.M. Coppleson (1958), p.176; R. Skocik, p.179",1949.05.13-Hampton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.13-Hampton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.13-Hampton.pdf,1949.05.13,1949.05.13,1707,, +1949.04.18,18-Apr-49,1949,Provoked,AUSTRALIA,Queensland,"Nerang River, Southpot",Fishing,"""Lockie"" Smith",M,,Toe bitten by netted shark PROVOKED INCIDENT,N,,3' shark,"Courier-Mail, 4/19/1949",1949.04.18-Lockie-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.18-Lockie-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.18-Lockie-Smith.pdf,1949.04.18,1949.04.18,1706,, +1949.04.17,17-Apr-49,1949,Unprovoked,AUSTRALIA,Queensland,"Ellis Beach, 20 miles from Cairns",Bathing in water 0.9 m deep,Richard Joseph Maguire,M,13,"FATAL, left leg severed",Y,13h30,"3.3 m [10'9""] shark","G.P. Whitley (1951), p.194; V.M. Coppleson (1958), p.239; A. Sharpe, pp.38 & 97",1949.04.17-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.17-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.17-Maguire.pdf,1949.04.17,1949.04.17,1705,, +1949.04.13,13-Apr-49,1949,Unprovoked,MEXICO,Tamaulipas,"Miramar Beach, Tampico",Bathing,male,M,,"U.S. destroyer John W. Weeks, 6 miles offshore, demonstrating guns & bombs for Mexican officials was thought to have driven the shark into the shallows where it bit the bather before other bathers drove it away with sticks & clubs.",N,,,"New York Herald Tribune, 4/15/1949",1949.04.13-Miramar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.13-Miramar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.13-Miramar.pdf,1949.04.13,1949.04.13,1704,, +1949.03.00,Mar-1949 or Apr-1949,1949,Boating,AUSTRALIA,South Australia,18 miles south of Port Augusta,,boat,,,,UNKNOWN,,,"G.P. Whitley (1951), p.194; SAF Case #612",1949.03.00-boat-PortAugusta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.03.00-boat-PortAugusta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.03.00-boat-PortAugusta.pdf,1949.03.00,1949.03.00,1703,, +1949.01.23,23-Jan-49,1949,Unprovoked,AUSTRALIA,New South Wales,"Bar Beach, Newcastle ",Lifesaving exhibition,Ray Land,M,20,FATAL,Y,15h00,"White shark, 3.6 m [11'9""] ","G.P. Whitley (1951); V.M. Coppleson (1958), pp. 77 & 78; A. Sharpe, pp.84-85",1949.01.23-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.23-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.23-Land.pdf,1949.01.23,1949.01.23,1702,, +1949.01.14,14-Jan-49,1949,Invalid,AUSTRALIA,New South Wales,Off North Bondi,Surfing,Vince Wilson,M,32,"No injury, chased by 3 sharks",N,Afternoon,,"Sydney Morning Herald, 1/14/1949 +",1949.01.14-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.14-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.14-Wilson.pdf,1949.01.14,1949.01.14,1701,, +1949.01.13,13-Jan-49,1949,Unprovoked,AUSTRALIA,New South Wales,"Mona Vale, near Sydney",Surf skiing,Don Dixon,M,,"No injury, shark bumped ski",N,,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), pp.41-42; Sharp, p.32",1949.01.13-DonDixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.13-DonDixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.13-DonDixon.pdf,1949.01.13,1949.01.13,1700,, +1949.01.05,05-Jan-49,1949,Invalid,AUSTRALIA,Western Australia,"Leighton Beach, North Fremantle",,,,,Human hand recovered,UNKNOWN,,"Tiger shark, 2.4 m [8']","G.P. Whitley (1951), p.186 citing Daily Telegraph (Sydney), 1/6/1949; SAF Case #583",1949.01.05-hand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.05-hand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.05-hand.pdf,1949.01.05,1949.01.05,1699,, +1949.00.00.g,1949-1950,1949,Boating,ITALY,Tyrrhenian Sea,San Vincenzo,"Fishing, on a boat",male,M,,No injury to occupant,N,,White shark,A. De Maddalena; V. Biagi (pers. Comm.),1949.00.00.g-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.g-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.g-boat.pdf,1949.00.00.g,1949.00.00.g,1698,, +1949.00.00.f,1949,1949,Unprovoked,NEW GUINEA,Calvados Archipelago,"Sabara Island, Calvados Chain 11.4S, 153E",,Anonymous,,,FATAL,Y,,,"A. Bleakley; A. M. Rapson, p.148",1949.00.00.f-SabaraIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.f-SabaraIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.f-SabaraIsland.pdf,1949.00.00.f,1949.00.00.f,1697,, +1949.00.00.e,1949,1949,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Kulengei, southeast of Kalili, Kavieng",,Jalem,M,,"Leg bitten, surgically amputated",N,,,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p. 148",1949.00.00.e-Jalem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.e-Jalem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.e-Jalem.pdf,1949.00.00.e,1949.00.00.e,1696,, +1949.00.00.d,1949,1949,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Enang , Kavieng",,Olai,M,,Hand & shoulder bitten,N,,,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p.148",1949.00.00.d-Olai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.d-Olai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.d-Olai.pdf,1949.00.00.d,1949.00.00.d,1695,, +1949.00.00.c,1949,1949,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Orava (Aravo) Islet , near Kieta. ",Spearfishing,male,M,18,"FATAL, ""Nearly bitten in two through loin"".",Y,,,"A. Bleakley; A. M. Rapson, p.148",1949.00.00.c-Orava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.c-Orava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.c-Orava.pdf,1949.00.00.c,1949.00.00.c,1694,, +1949.00.00.b,1949,1949,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Sohano Island, Buka Passage",Swimming close to wharf,male,M,,Hand severed,N,,,"A. Bleakley; A. M. Rapson, p.148",1949.00.00.b-Sohano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.b-Sohano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.b-Sohano.pdf,1949.00.00.b,1949.00.00.b,1693,, +1949.00.00.a,1949,1949,Unprovoked,NEW GUINEA,"Abau Sub District, Central Province",Kerpuna ,Swimming ,2 males,M,,"FATAL. One man's abdomen removed, the other received severe multiple injuries.",Y,,," A. Bleakley; A.M. Rapson, p.148",1949.00.00.a-Kerpuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.a-Kerpuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.a-Kerpuna.pdf,1949.00.00.a,1949.00.00.a,1692,, +1948.12.27,27-Dec-48,1948,Unprovoked,AUSTRALIA,Western Australia,Lancelin Island,Swimming,Arthur Strahan,M,17,"FATAL, disappeared while swimming ",Y,,His hand was found in a 2.4 m [8'] tiger shark caught 1/5/1949,"V.M. Coppleson (1958), pp.22-23",1948.12.27-Strahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.27-Strahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.27-Strahan.pdf,1948.12.27,1948.12.27,1691,, +1948.12.26,26-Dec-48,1948,Unprovoked,AUSTRALIA,Queensland,"Kings Beach, Caloundra","Treading water, waiting for a wave",Eric Keys,M,28,"FATAL, left hand severed, left leg arm bitten, tissue removed hip to knee ",Y,11h30,,"Gilbert P. Whitley (1951), p.193; V.M. Coppleson (1958), p.239. NOTE: Whitley records location as Coolangatta",1948.12.26-Keys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.26-Keys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.26-Keys.pdf,1948.12.26,1948.12.26,1690,, +1948.12.14.b,14-Dec-48,1948,Unprovoked,IRAN,Shat-Al-Arab River,Abadan,,Abdul Imam (male),M,19,Left thumb severed,N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp",1948.12.14.b-AbdulImam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.b-AbdulImam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.b-AbdulImam.pdf,1948.12.14.b,1948.12.14.b,1689,, +1948.12.14.a,14-Dec-48,1948,Unprovoked,CUBA,Guantanamo Province,10 miles off Cape Maisi,"2 messboys (Jeppsen) & Tony Latona (13) were playing on the afterdeck of the Danish ship Grete Maersk. Jeppsen fell overboard, Latona threw a lifebelt then jumped in to help him. Ship didnt notice they were missing",Bret Jeppsen,M,14,"2 hours later shark bit Jeppsens feet, arm, knee & finally killed him. Tony, clothing torn but alive, washed ashore on Cuban coast",N,,,"Washington Post, 12/23/1948, p.`",1948.12.14.a-Jeppeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.a-Jeppeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.a-Jeppeson.pdf,1948.12.14.a,1948.12.14.a,1688,, +1948.12.10,10-Dec-48,1948,Unprovoked,AUSTRALIA,Queensland,Rib Reef off Townsville,Fishing,Hans Vegsund,M,,Hand injured,N,,,"Townsville Daily Bulletin, 12/14/1948",1948.12.10-Vegsund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.10-Vegsund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.10-Vegsund.pdf,1948.12.10,1948.12.10,1687,, +1948.12.05,05-Dec-48,1948,Sea Disaster,NORTH PACIFIC OCEAN,Between Kwajalein Atoll & Johnston Island,500 nautical miles southwest of Johnston Island,Air/Sea Disaster involving C-54 Air Force Transport No. 2686 with 37 on board,,M,,"32 survived, 5 perished; sharks fed on the dead but did not bite the survivors",Y,Dark,,"L. Schultz & M. Malin, p.562; SAF Case #819",1948.12.05-Aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.05-Aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.05-Aircraft.pdf,1948.12.05,1948.12.05,1686,, +1948.11.18, 18-Nov-1948,1948,Unprovoked,AUSTRALIA,Torres Strait,"Saibai Island, 80 miles north of Cape York",Pearl diving,Metuela Mau,M,41,Leg bitten,N,,,"The Argus, 11/20/1948",1948.11.18-MetuelaMau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.11.18-MetuelaMau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.11.18-MetuelaMau.pdf,1948.11.18,1948.11.18,1685,, +1948.09.22,22-Sep-48,1948,Unprovoked,GREECE,Attica,Keratsini ,Swimming,Dimitris Parassakis ,M,17,FATAL,Y,16h00,Said to be 6.4 m [21'] shark,"C. Moore, GSAF",1948.09.22-Parasakis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.22-Parasakis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.22-Parasakis.pdf,1948.09.22,1948.09.22,1684,, +1948.09.19.b,19-Sep-48,1948,Unprovoked,USA,Hawaii,"Off Makapauu Point, O'ahu",Swimming,Noah Kalama,M,,Leg bitten,N,,,"J. Borg, p.72; L. Taylor (1993), pp.98-99",1948.09.19.b-Kalama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.b-Kalama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.b-Kalama.pdf,1948.09.19.b,1948.09.19.b,1683,, +1948.09.19.a,19-Sep-48,1948,Unprovoked,USA,Hawaii,"Off Makapauu Point, O'ahu",Fishing,male,M,,Survived,N,,,"V.M. Coppleson (1958); Honolulu Advertiser, 8/9/1953; Hawaiian Tribune-Herald, 4/14/1963",1948.09.19.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.a-Hawaii.pdf,1948.09.19.a,1948.09.19.a,1682,, +1948.09.17.R,Reported 17-Sep-1848,1848,Unprovoked,TURKEY,Adana Province,Yumurtalik,Swimming,Ali Kaymaz,M,,FATAL,Y,,,"C. Moore, GSAF",1948.09.17.R-Kaymaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.17.R-Kaymaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.17.R-Kaymaz.pdf,1948.09.17.R,1948.09.17.R,1681,, +1948.09.15,15-Sep-48,1948,Sea Disaster,MID ATLANTIC OCEAN,,Bound from New York to London in ballast,Leicester abandoned in a hurricane,2 males,M,,"FATAL, 2 men killed by sharks, 20 survived",Y,,,"Glasgow Herald, 9/20/1948",1948.09.15-Leicester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.15-Leicester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.15-Leicester.pdf,1948.09.15,1948.09.15,1680,, +1948.09.02,02-Sep-48,1948,Unprovoked,IRAN,Bandar Mashur sea inlet,,Bathing or washing,Roghai,F,60,"FATAL, left arm & left buttock severed ",Y,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1948.09.02-Roghai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.02-Roghai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.02-Roghai.pdf,1948.09.02,1948.09.02,1679,, +1948.08.19,19-Aug-48,1948,Unprovoked,IRAN,Shatt-al-Arab River,,,Abdul Hussain,M,13,"FATAL, right arm severely bitten & surgically amputated, died 12 to 14 hours later ",Y,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp",1948.08.19-Hussain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.19-Hussain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.19-Hussain.pdf,1948.08.19,1948.08.19,1678,, +1948.08.03,03-Aug-48,1948,Unprovoked,IRAN,Shatt-al-Arab River,Bashamir,Swimming,Ismail,M,15,"Quadriceps lacerated, femur exposed",N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1948.08.03-Ismail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.03-Ismail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.03-Ismail.pdf,1948.08.03,1948.08.03,1677,, +1948.08.00,Aug-48,1948,Provoked,BAHAMAS,Bimini Islands,Lerner Marine Laboratory,Spearing a shark,"Francisco Edmund Blanc, a scientist from National Museum in Paris",M,41,Shark that he speared bit his calf PROVOKED INCIDENT,N,,"Lemon shark, 4'","E. Clark; P. Gilbert; V.M. Coppleson (1962), p.252",1948.08.00-Blanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.00-Blanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.00-Blanc.pdf,1948.08.00,1948.08.00,1676,, +1948.07.01,01-Jul-48,1948,Unprovoked,USA,US Virgin Islands,"St. John, Genti Bay",Swimming,Clide Osborne,M,46,FATAL,Y,,,"Virgin Island Daily News, 7/6/1948, p.1",1948.07.01-Osborne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.07.01-Osborne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.07.01-Osborne.pdf,1948.07.01,1948.07.01,1675,, +1948.06.06.R,Reported 06-Jun-1948,1948,Unprovoked,NORTHERN MARIANA ISLANDS,Saipan,,Swimming,Pfc. Donald Tasking,M,,Heel bitten,N,,,"Wisconsin State Journal, 6/6/1948",1948.06.06.R-Tasking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.06.06.R-Tasking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.06.06.R-Tasking.pdf,1948.06.06.R,1948.06.06.R,1674,, +1948.05.10,10-May-48,1948,Provoked,IRAN,Shatt-al-Arab River,,"Fishing, shark caught in his net",Ali,M,38,"8"" x 4"" left antecubital fossa of muscle & skin removed PROVOKED INCIDENT",N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84; ",1948.05.10-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.05.10-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.05.10-Ali.pdf,1948.05.10,1948.05.10,1673,, +1948.04.10,10-Apr-48,1948,Provoked,SOUTH AFRICA,Western Cape Province,Gansbaai,"Bringing hooked, harpooned shark onboard boat","boat, occupants, P. Groenwald and others",M,,Groenwald's arm lacerated by the shark PROVOKED INCIDENT,N,,,"M. Levine, GSAF",1948.04.10-Groenwald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.04.10-Groenwald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.04.10-Groenwald.pdf,1948.04.10,1948.04.10,1672,, +1948.03.13.R,"Reported 13-Mar-1948 ""Bitten last weekend",1948,Unprovoked,KENYA,Coast Province,Mombasa,,"R.S. Draper, a young British soldier",M,,FATAL,Y,,,"Star, 3/13/1948 & 2/20/1948",1948.03.13-Draper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.13-Draper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.13-Draper.pdf,1948.03.13.R,1948.03.13.R,1671,, +1948.03.11,11-Mar-48,1948,Invalid,SENEGAL,Cap Vert Peninsula,Between Joal & Sangomar near Dakar,,,,,Fragment of human foot recovered from shark's gut,Y,,"Tiger shark, 300-kg [662-lb] ",Y. Gilbert-Desvallons SAF Case #887,1948.03.11-Africa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.11-Africa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.11-Africa.pdf,1948.03.11,1948.03.11,1670,, +1948.03.00,Mar-48,1948,Provoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Punam Passage, Rataman census div, Namatanai",Spearfishing,Reiman,M,30,Leg bitten by shark that he had speared PROVOKED INCIDENT,N,,"""grey shark""","A. M. Rapson, p.147; D. Baldridge, pp.128 & 261 ",1948.03.00-Reiman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.00-Reiman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.00-Reiman.pdf,1948.03.00,1948.03.00,1669,, +1948.02.13,13-Feb-48,1948,Sea Disaster,USA,Texas,"Gulf of Mexico between Brownsville & Carmen, Mexico","C47 aircraft carrying 5,000 lbs of ice ditched in the sea","Pilot, Neil Womack",M,,"FATAL. Womack was injured when plane went down, 3 days later he fell off liferaft & was taken by a shark ",Y,,,"Pittsburgh Press, 2/21/1948/ V.M. Coppleson (1962), p.258",1948.02.13-Womack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.13-Womack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.13-Womack.pdf,1948.02.13,1948.02.13,1668,, +1948.02.12,12-Feb-48,1948,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Swimming,Ronald Johnson,M,16,"FATAL, right thigh & leg bitten ",Y,,3.7 m [12'] shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958); A. Sharpe, p.83",1948.02.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.12-Johnson.pdf,1948.02.12,1948.02.12,1667,, +1948.01.25,25-Jan-48,1948,Unprovoked,AUSTRALIA,New South Wales,"Mona Vale, near Sydney",Surf skiing,David Button,M,,"No injury, ski bitten",N,,6' shark,"Cairns Post, 1/27/1948",1948.01.25-Button.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.01.25-Button.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.01.25-Button.pdf,1948.01.25,1948.01.25,1666,, +1948.00.00.d,Summer 1948,1948,Provoked,USA,Florida,Biscayne Bay,Underwater photography,Charles L. Morgan,M,48,Grabbed shark by the tail & it bit him PROVOKED INCIDENT,N,Afternoon,Nurse shark,C.L. Morgan,1948.00.00.d-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.d-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.d-Morgan.pdf,1948.00.00.d,1948.00.00.d,1665,, +1948.00.00.c,1948,1948,Unprovoked,NEW GUINEA,Morobe Province,Finschafen ,"Fishing, holding fish in right hand",male,M,,Right hand bitten,N,,,"A.D. Campbell; A. Bleakley; A. M. Rapson, p.148",1948.00.00.c-Finschafen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.c-Finschafen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.c-Finschafen.pdf,1948.00.00.c,1948.00.00.c,1664,, +1948.00.00.b,1948,1948,Provoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Tung Island, off the west coast of Buka Island",Spearfishing,male,M,,Bitten on face while taking shark off spear PROVOKED INCIDENT,N,,,"A.M. Rapson, p.147",1948.00.00.b-TungIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.b-TungIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.b-TungIsland.pdf,1948.00.00.b,1948.00.00.b,1663,, +1948.00.00.a,1948,1948,Boating,SOUTH AFRICA,Western Cape Province,False Bay,Fishing,boat Marie ,,,"No injury to occupants, boat holed by shark",N,,,"T. Wallett, p.27",1948.00.00.a-Marie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.a-Marie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.a-Marie.pdf,1948.00.00.a,1948.00.00.a,1662,, +1947.12.21,21-Dec-47,1947,Unprovoked,AUSTRALIA,New South Wales,"Watson Taylor's Lake, 25 miles south of Port Macquarie",Fishing,Don Ireland,M,9,Leg gashed,N,P.M.,Grey nurse shark,"Canberra Times, 12/22/1947",1947.12.21-Ireland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.21-Ireland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.21-Ireland.pdf,1947.12.21,1947.12.21,1661,, +1947.12.15.R,Reported 15-Dec-1947,1947,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,,,,,"Human remains found in shark, possibly one of the crew of the wrecked fishing boat John Bull",Y,,"Tiger shark, 277-kg","Cape Times, 12/15/1947; M. Levine, GSAF",1947.12.15.R-JohnBull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.15.R-JohnBull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.15.R-JohnBull.pdf,1947.12.15.R,1947.12.15.R,1660,, +1947.12.00,Dec-47,1947,Unprovoked,SENEGAL,,"Tiaroye, near Dakar, Cap Vert Peninsula",Fishing / diving,male,M,,"FATAL, right thigh bitten ",Y,11h00,Tiger shark,Dejou & d'Alucida (1948),1947.12.00-Dakar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.00-Dakar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.00-Dakar.pdf,1947.12.00,1947.12.00,1659,, +1947.11.23,23-Nov-47,1947,Boating,AUSTRALIA,South Australia,3 miles out to sea off Glenelg,Fishing,10' dinghy,,,"No injury to occupants, shark made 20 to 30 rushes at dinghy",N,,5.5 m [18'] shark,"V.M. Coppleson (1958), p.185",1947.11.23-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.23-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.23-dinghy.pdf,1947.11.23,1947.11.23,1658,, +1947.11.14.b,14-Nov-47,1947,Unprovoked,AUSTRALIA,New South Wales,"Knobby's Beach, Newcastle",Fishing from surf ski,Peter Curruthers,M,17,"No injury, ski bumped",N,Dusk,,"G.P. Whitley; Barrier Miner, 11/17/1947",1947.11.14.b-Curruthers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.b-Curruthers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.b-Curruthers.pdf,1947.11.14.b,1947.11.14.b,1657,, +1947.11.14.a,14-Nov-47,1947,Unprovoked,AUSTRALIA,New South Wales,"Knobby's Beach, Newcastle",Fishing from surf ski,John Martini,M,16,"No injury, ski bumped",N,Dusk,,"G.P. Whitley; Barrier Miner, 11/17/1947",1947.11.14.a-Martini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.a-Martini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.a-Martini.pdf,1947.11.14.a,1947.11.14.a,1656,, +1947.11.08.b,08-Nov-47,1947,Unprovoked,AUSTRALIA,New South Wales,"Maria River, Port Macquarie, 12 miles from river mouth",Swimming,Edwin Elford,M,12,"FATAL, leg severed at knee ",Y,16h00,,"G.P. Whitley (1951), p.193;V.M. Coppleson (1958), p.86; A. Sharpe, p.86",1947.11.08.b-EdwinElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.b-EdwinElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.b-EdwinElford.pdf,1947.11.08.b,1947.11.08.b,1655,, +1947.11.08.a,08-Nov-47,1947,Unprovoked,AUSTRALIA,New South Wales,"Maria River, Port Macquarie, 12 miles from river mouth",Swimming,Rupert Elford,M,13,Thighs & knee lacerated,N,16h00,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.86; A. Sharpe, p. 86",1947.11.08.a-RupertElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.a-RupertElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.a-RupertElford.pdf,1947.11.08.a,1947.11.08.a,1654,, +1947.11.00,Nov-47,1947,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,,D. Smith,,78,FATAL,Y,,,"J. Green, p.34",1947.11.00-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.00-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.00-Smith.pdf,1947.11.00,1947.11.00,1653,, +1947.10.28,28-Oct-47,1947,Unprovoked,AUSTRALIA,Northern Territory,"Mornington Island, Gulf of Carpentaria",Fishing in waist-deep water,"Dan, an aboriginal",M,,Kneecap removed,N,,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.240",1947.10.28-Dan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.28-Dan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.28-Dan.pdf,1947.10.28,1947.10.28,1652,, +1947.10.10,10-Oct-47,1947,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming ,Father Serafin de Oliveira,M,25,FATAL,Y,,,"JC Online, 6/25/2012",1947.10.10-Serafim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.10-Serafim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.10-Serafim.pdf,1947.10.10,1947.10.10,1651,, +1947.08.04,04-Aug-47,1947,Unprovoked,USA,Florida,In a canal 10 miles north of St Augustine,Swimming,"Ralph Reginald Rives, Jr.",M,20,"FATAL, calf bitten, leg surgically amputated ",Y,A.M.,Possibly C. leucas,R. F. Hutton; Coppleson (1958),1947.08.04-Rives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.08.04-Rives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.08.04-Rives.pdf,1947.08.04,1947.08.04,1650,, +1947.07.27.R,Reported 27-Jul-1947,1947,Provoked,USA,California,"Santa Monica, Los Angeles County",Fishing,Philip Dorn,M,46,PROVOKED INCIDENT,N,,a small shark,"Joplin Globe, 7/27/1947",1947.07.27.R-PhilipDorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.27.R-PhilipDorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.27.R-PhilipDorn.pdf,1947.07.27.R,1947.07.27.R,1649,, +1947.07.24.R,Reported 24-Jul-1947,1947,Unprovoked,AUSTRALIA,Northern Territory,Darwin Harbour,Diving,A.S. Festing,M,,Suit ripped,N,,"Most likely, a small shark","Canberra Times, 7/25/1947",1947.07.24.R-Festing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.24.R-Festing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.24.R-Festing.pdf,1947.07.24.R,1947.07.24.R,1648,, +1947.07.15,15-Jul-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Keith Daldorf,M,20,Right thigh lacerated,N,Morning,,"M. Levine, GSAF",1947.07.15-Dalldorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.15-Dalldorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.15-Dalldorf.pdf,1947.07.15,1947.07.15,1647,, +1947.07.00,Jul-47,1947,Invalid,GREECE,Carpathian Sea,Dodecanese Islands,Jumped overboard ,Nickolas Doulis,M,,Shark involvement unconfirmed,N,,,"C. Moore, GSAF",1947.07.07-Doulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.07-Doulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.07-Doulis.pdf,1947.07.00,1947.07.00,1646,, +1947.06.27,27-Jun-47,1947,Unprovoked,USA,Hawaii,"Off Waianae, O'ahu",Fishing,Valentin Limatoc,M,35,"Left forearm, arm & leg lacerated",N,10h30,,"EWA Hospital; G.H. Balazs & A.K.H. Kam; J. Borg, p. 72; L. Taylor (1993), pp.98-99",1947.06.27-Limatoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.27-Limatoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.27-Limatoc.pdf,1947.06.27,1947.06.27,1645,, +1947.06.16,16-Jun-47,1947,Boating,AUSTRALIA,New South Wales,Coogee,Fishing,12-foot dinghy Occupants: R. Hunt & a friend.,,,"No injury to occupants, shark bumped & lifted dinghy",N,,"Tiger shark, 14' ","Geraldton Guardian and Express, 6/317/1947",1947.06.16-fishermen-Coogee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.16-fishermen-Coogee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.16-fishermen-Coogee.pdf,1947.06.16,1947.06.16,1644,, +1947.05.13.R,Reported 13-May-1947,1947,Unprovoked,KENYA,Coast Province,"Kilindini Harbor, Mombasa",Swimming,merchant seaman,M,,Knee grazed,N,,,"Sunday Tribune, 5/13/1947",1947.05.13.R-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.05.13.R-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.05.13.R-Kenya.pdf,1947.05.13.R,1947.05.13.R,1643,, +1947.04.20,20-Apr-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,"Aubrey ""Bill"" Nielsen",M,21,Ankle & shin lacerated,N,12h00,"1.5 m, 45-kg shark","A. Nielsen, M. Levine, G. Charter, GSAF ",1947.04.20-Neilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.20-Neilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.20-Neilson.pdf,1947.04.20,1947.04.20,1642,, +1947.04.11,11-Apr-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Rocket Hut Beach, Durban",Body surfing,Robert Douglas,M,14,"Thigh severely lacerated, shin & calf lacerated",N,17h30,,"R. Douglas, T. Livesley, M. Levine, GSAF ",1947.04.11-Douglas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.11-Douglas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.11-Douglas.pdf,1947.04.11,1947.04.11,1641,, +1947.04.06,06-Apr-47,1947,Unprovoked,AUSTRALIA,New South Wales,Palm Beach,Surfing,Max Watt,M,17,"No injury, board scraped by shark",N,,,"Courier-Mail, 4/7/1947",1947.04.06-Watt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.06-Watt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.06-Watt.pdf,1947.04.06,1947.04.06,1640,, +1947.04.00,Apr-47,1947,Provoked,PACIFIC OCEAN,,Off Central American coast at 8N.79W,"Moving shark from tuna vessel when boat rolled, placing both man & shark in chest-deep water",Charles Kaufmann,M,29,"Right arm punctured, finger lacerated PROVOKED INCIDENT",N,11h00,,C. Kaufmann; S. Springer ,1947.04.00-Kaufmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.00-Kaufmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.00-Kaufmann.pdf,1947.04.00,1947.04.00,1639,, +1947.03.12,12-Mar-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Wading,Adam Johannes Kriel,M,18,"Hip abraded, right calf severely lacerated",N,16h10,,"A. Kriel, M. Levine, GSAF ",1947.03.12-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.12-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.12-Kriel.pdf,1947.03.12,1947.03.12,1638,, +1947.03.09,09-Mar-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,"Gabriel Botha, a lifesaver",M,22,Lacerations on buttock & right foot ,N,12h00,"Blacktip shark, 2 m [6.75'] ","G. Botha, M. Levine, GSAF; T. Wallett, p.67",1947.03.09-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.09-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.09-Botha.pdf,1947.03.09,1947.03.09,1637,, +1947.02.23,23-Feb-47,1947,Boating,AUSTRALIA,Queensland,Palm Beach,Fishing,,,,"No injury, shark holed boat",N,,,"Canberra Times, 2/24/1947",1947.02.23-boat-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.23-boat-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.23-boat-PalmBeach.pdf,1947.02.23,1947.02.23,1636,, +1947.02.06.R,Reported 06-Feb-1947,1947,Provoked,BAHAMAS,New Providence Island,Cable Beach,Attempting to ride a shark,Bill Whitman,M,,Arm bitten PROVOKED INCIDENT,N,,5' shark,"Miami Daily News, 2/6/1947",1947.02.06.R-Whitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.06.R-Whitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.06.R-Whitman.pdf,1947.02.06.R,1947.02.06.R,1635,, +1947.02.00,Feb-47,1947,Unprovoked,BRAZIL,Rio de Janeiro,Copacabana,Bathing,,,,FATAL,Y,,,"Globo, 5/7/1997",1947.02.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.00-Brazil.pdf,1947.02.00,1947.02.00,1634,, +1947.01.14,14-Jan-47,1947,Boating,AUSTRALIA,New South Wales,"Berry's Bay, Sydney Harbour",Rowing,"rowboat, occupants: Bob Scott & John Blackwell ",,17 & 16,"No injury, shark lifted the boat 0.5 m out of the water",N,,"4.5 m [14'9""] shark","A. Sharpe, p.73",1947.01.14-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.14-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.14-rowboat.pdf,1947.01.14,1947.01.14,1633,, +1947.01.05,05-Jan-47,1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Peter C. Knoop,M,18,Flexed left leg lacerated,N,15h50,>1.6 m shark,"P. Knoop, M. Levine, GSAF",1947.01.05-Knoop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.05-Knoop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.05-Knoop.pdf,1947.01.05,1947.01.05,1632,, +1946.12.28,28-Dec-46,1946,Unprovoked,AUSTRALIA,South Australia,Glenelg,Swimming near jetty with 2' piece of wood,Leo Streng,M,23,"Forearm & fingers lacerated, teethmarks on wood",N,,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), pp.110 & 240 ",1946.12.28-Streng.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.28-Streng.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.28-Streng.pdf,1946.12.28,1946.12.28,1631,, +1946.12.24.R,Reported 24-Dec-1946,1946,Boating,AUSTRALIA,Queensland,"Auckland Creek, Gladstone",,Moored fishing launch of Harry Lone,,,Shark jumped into cockpit,N,,7' shark,"V.M. Coppleson (1958), p.181",1946.12.24.R-Lone-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.24.R-Lone-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.24.R-Lone-launch.pdf,1946.12.24.R,1946.12.24.R,1630,, +1946.11.20,20-Nov-46,1946,Unprovoked,AUSTRALIA,Torres Strait,40 miles off Thursday Island,Pearl diving from lugger,"Esrona Johnson, Torres Strait islander",M,30,"FATAL, right arm severed",Y,,,"G.P. Whitley (1951), p. 193;V.M. Coppleson (1958), p.245",1946.11.20-EsronaJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.11.20-EsronaJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.11.20-EsronaJohnson.pdf,1946.11.20,1946.11.20,1629,, +1946.10.26.R,Reported 26-Oct-1946,1946,Unprovoked,MARSHALL ISLANDS,Kwajalein,,Fishing,American,,,FATAL,Y,,,"Washington Post, 10/27/1946",1946.10.26.R-Kwajalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.26.R-Kwajalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.26.R-Kwajalein.pdf,1946.10.26.R,1946.10.26.R,1628,, +1946.10.14,14-Oct-46,1946,Unprovoked,AUSTRALIA,New South Wales,"Marks Point, Swan Bay, Lake Macquarie",Swimming,Douglas Blackmore,M,15,Left leg lacerated,N,,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.112",1946.10.14-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.14-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.14-Blackmore.pdf,1946.10.14,1946.10.14,1627,, +1946.08.24,24-Aug-46,1946,Unprovoked,ISRAEL,Gaza,Jura Village,Fishing,Kamel Mustapha Ayesh,M,15,Laceration to back,N,,,C. Moorem GSAF,1946.08.24-KMAyesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.24-KMAyesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.24-KMAyesh.pdf,1946.08.24,1946.08.24,1626,, +1946.08.18,18-Aug-46,1946,Unprovoked,AUSTRALIA,Queensland,"Ellis Beach, 20 miles from Cairns",Swimming after a tennis ball,Phillip South Collin,M,30,"FATAL, body not recovered",Y,15h20,4.3 m [14'] shark,"G.P. Whitley (1951), p.193;V.M. Coppleson (1958), pp.87-88 & 239; A. Sharpe, p.97",1946.08.18-Collin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.18-Collin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.18-Collin.pdf,1946.08.18,1946.08.18,1625,, +1946.07.18.b,18-Jul-46,1946,Unprovoked,IRAN,Khuzestan Province,"Dorquain, on the Karun River","Fishing, probably with a net","Khodadad, (male)",M,12,Radius & ulna bared,N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84 ",1946.07.18.b-Khodadad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.b-Khodadad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.b-Khodadad.pdf,1946.07.18.b,1946.07.18.b,1624,, +1946.07.18.a,18-Jul-46,1946,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River, 275 km from the sea",Swimming ,Mehdi,M,12,"Left Achilles tendon severed, calf muscles severely lacerated",N,,Possibly C. leucas,"A. Anderson, M.D. / Lt. Col. R.S. Hunt , p.84",1946.07.18.a-Mehdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.a-Mehdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.a-Mehdi.pdf,1946.07.18.a,1946.07.18.a,1623,, +1946.06.28,28-Jun-46,1946,Unprovoked,INDIA,,Chennai,Bathing,Murugesan,M,14,"""Serious injuries""",N,,,"Indian Express, 6/30/1946",1946.06.28-Murugesan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.06.28-Murugesan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.06.28-Murugesan.pdf,1946.06.28,1946.06.28,1622,, +1946.05.09,09-May-46,1946,Unprovoked,TANZANIA,Dar-es-Salaam ,Dar-es-Salaam harbor,Swimming ,"W. Svendson, ships officer",M,,Leg bitten,N,,,"Star, 5/20/1946",1946.05.09-Svendson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.05.09-Svendson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.05.09-Svendson.pdf,1946.05.09,1946.05.09,1621,, +1946.04.19,19-Apr-46,1946,Unprovoked,AUSTRALIA,Queensland,"Trinity Beach, Cairns",Swimming,Robert McAuliffe,M,17,FATAL,Y,13h30,,"J. Croucher; G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.87 ",1946.04.19-McAuliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.19-McAuliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.19-McAuliffe.pdf,1946.04.19,1946.04.19,1620,, +1946.04.00,Apr-46,1946,Boating,AUSTRALIA,South Australia,Port Newby,Fishing,"boat, occupants: C. Nardelli & son",,,"No injury to occupants. Shark charged boat, tore off rudder & tossed it air, then swam off with it",N,,6 m [20'] shark,"V.M. Coppleson (1958), p.184",1946.04.00-boat-Nardelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.00-boat-Nardelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.00-boat-Nardelli.pdf,1946.04.00,1946.04.00,1619,, +1946.03.20,20-Mar-46,1946,Boating,AUSTRALIA,South Australia,Grange,Fishing,"14' catamaran, occupant: M. Leverenz",M,28,"No injury; shark rammed boat, catapulting Leverenz in the sea & damaging boat",N,19h00,,"Sydney Morning Herald, 3/22/1946",1946.03.20-Leverenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.03.20-Leverenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.03.20-Leverenz.pdf,1946.03.20,1946.03.20,1618,, +1946.02.16,16-Feb-46,1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Treading water,Ernest Tomson,M,21,Right arm severely lacerated,N,16h00,,"M. Levine, GSAF ",1946.02.16-Tomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.16-Tomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.16-Tomson.pdf,1946.02.16,1946.02.16,1617,, +1946.02.10.b,10-Feb-46,1946,Unprovoked,AUSTRALIA,Western Australia,"City Beach, Perth",Standing,"Ronald D. Sunderland, from the Royal Australian Navy, on leave from HMAS Leeuwin",M,18,"Leg bitten, surgically amputated",N,12h15,"White shark, 4.2 m [13'9""] ","West Australian, 2/11/1946, p.6; G.P. Whitley (1951), p.193; V.M. Coppleson (1958), pp.111 & 245; A. Sharpe, pp.130-131; H. Edwards, p.133-134",1946.02.10.b-Sunderland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.b-Sunderland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.b-Sunderland.pdf,1946.02.10.b,1946.02.10.b,1616,, +1946.02.10.a,10-Feb-46,1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Swimming ,"Janardhan Rughoober Varma, a lifesaver",M,18,Flexed right knee bitten,N,09h15,,"J.R. Varma, M. Levine, GSAF ",1946.02.10.a-Varma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.a-Varma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.a-Varma.pdf,1946.02.10.a,1946.02.10.a,1615,, +1946.01.24.b,24-Jan-46,1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Treading water,Brian Gibson ,M,15,Knee & calf lacerated,N,17h15,,"B. Gibson, M. Levine, GSAF",1946.01.24.b-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.b-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.b-Gibson.pdf,1946.01.24.b,1946.01.24.b,1614,, +1946.01.24.a,24-Jan-46,1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Swimming,"Manduray, a lifesaver",M,,Foot severely lacerated,N,Afternoon,,"J. R. Varma; M. Levine, GSAF",1946.01.24.a-Manduray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.a-Manduray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.a-Manduray.pdf,1946.01.24.a,1946.01.24.a,1613,, +1946.01.17,17-Jan-46,1946,Unprovoked,AUSTRALIA,Queensland,Townsville,,Donald Vaughan,M,12,Ankle bitten,N,,small shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.239",1946.01.17-Vaughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.17-Vaughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.17-Vaughan.pdf,1946.01.17,1946.01.17,1612,, +1946.01.07,07-Jan-46,1946,Unprovoked,SOUTH AFRICA,Western Cape Province,False Bay,Jumping in swells,Michael Anthony Hoffman,M,18,Foot bitten,N,12h00,1.5 m [5'] shark,"M. Hoffman, M. Levine, GSAF",1946.01.07-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.07-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.07-Hoffman.pdf,1946.01.07,1946.01.07,1611,, +1946.01.05,05-Jan-46,1946,Unprovoked,AUSTRALIA,New South Wales,"Oatley Bay near Como, Georges River",Swimming,Valma Tegel,F,14,"FATAL, left leg severed, right leg injured ",Y,,,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.69; A. Sharpe, pp.91-92",1946.01.05-Tegel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.05-Tegel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.05-Tegel.pdf,1946.01.05,1946.01.05,1610,, +1946.01.01,01-Jan-46,1946,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Pollock Beach, Port Elizabeth",Body surfing,Noel Buxton Redfern,M,24,Calf lacerated,N,A.M.,,"N. Redfern, M. Levine, GSAF",1946.01.01-Redfern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.01-Redfern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.01-Redfern.pdf,1946.01.01,1946.01.01,1609,, +1946.00.00.c,1946,1946,Boating,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,,4 boats,,,"No injury to occupants, shark struck boats+K1581",N,,,"T. Wallett, p.27",1946.00.00.c-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.c-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.c-PlettenburgBay.pdf,1946.00.00.c,1946.00.00.c,1608,, +1946.00.00.b,1946,1946,Boating,SOUTH AFRICA,Western Cape Province,Table Bay,,boat,,,"Shark holed and sank boat, occupants rescued",N,,,"T. Wallett, p.27",1946.00.00.b-Table Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.b-Table Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.b-Table Bay.pdf,1946.00.00.b,1946.00.00.b,1607,, +1946.00.00.a,1946,1946,Unprovoked,PERSIAN GULF,"""Head of the Gulf""",,Bitten after dhow shipwrecked,Arab woman,F,,"Abdomen bitten, but she survived. Most of the 40 others that survived the wreck, were taken by sharks",N,,,"E. Davies; V.M. Coppleson, p.133",1946.00.00.a-Arabwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.a-Arabwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.a-Arabwoman.pdf,1946.00.00.a,1946.00.00.a,1606,, +1945.09.23,23-Sep-45,1945,Unprovoked,HONG KONG,,Tweed Beach,Bathing,Sargeant H.W. Jackson,M,,FATAL,Y,"""shortly before dusk""",,"Argus, 9/25/1946, p.20; V.M. Coppleson (1962), p.247",1945.09.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.23-Jackson.pdf,1945.09.23,1945.09.23,1605,, +1945.09.19,19-Sep-45,1945,Sea Disaster,OKINAWA,,,American minesweeper USS YMS-472 foundered in a typhoon - swimming to shore,Lowell J. Bemis,M,20,Laceration to arm,N,,,"Mid-Pacific Stars & Stripes, 10/22/1945",1945.09.19-Bemis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.19-Bemis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.19-Bemis.pdf,1945.09.19,1945.09.19,1604,, +1945.09.16,16-Sep-45,1945,Sea Disaster,JAPAN,Ryukyu,,American minesweeper USS YMS-350 lost in a typhoon - swimming to shore,sailor,M,,FATAL,Y,,,"Daily Courier, 10/26/1945",1945.09.16-sailor-USS-YMS-350.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.16-sailor-USS-YMS-350.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.16-sailor-USS-YMS-350.pdf,1945.09.16,1945.09.16,1603,, +1945.09.06,06-Sep-45,1945,Unprovoked,IRAN,Shatt-al-Arab River,Bashamir,Swimming,Hamid,M,13,"Right forearm injured, mid-humeral amputation",N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84",1945.09.06-Hamid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.06-Hamid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.06-Hamid.pdf,1945.09.06,1945.09.06,1602,, +1945.08.19,19-Aug-45,1945,Unprovoked,IRAN / IRAQ,Shatt-al-Arab River,Vicinity of Abadan,,Abdol Karmi,M,,Lower left leg amputated,N,,,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84",1945.08.19-Karmi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.19-Karmi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.19-Karmi.pdf,1945.08.19,1945.08.19,1601,, +1945.08.06,06-Aug-45,1945,Unprovoked,USA, North Carolina,Ocracoke,,Kuenzler,,,FATAL,Y,,,"F. Schwartz, p.23",1945.08.06-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.06-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.06-Kuenzler.pdf,1945.08.06,1945.08.06,1600,, +1945.07.30,30-Jul-45,1945,Sea Disaster,PHILIPPINES,In transit between Tinian and Leyte,200 miles Leyte,American cruiser Indianapolis torpedoed & sunk by the Japanese submarine I-58,,,,"About 300 crew perished during the sinking, the remainder abandoned ship. Many who survived the loss of the ship were taken by sharks. In all, only 316 of her crew of 1,196 survived.",Y,,,"All the Drowned Sailors, by R. B. Lech ; M. Levine, GSAF",1945.07.30-USS Indianapolis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.30-USS Indianapolis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.30 - USS Indianapolis.pdf,1945.07.30,1945.07.30,1599,, +1945.07.00,Jul-45,1945,Sea Disaster,JAVA,Northern Java,Off Cheribon,"90 European civilians, many women & children, were placed on the deck of a Japanese submarine that submerged when it was well offshore",Swimming,,,Sharks attacked the swimmers. The sole survivor lost his arm & foot & died of his injuries shortly after being picked up by Javanese fishermen. The incident became known as the Cheribon Atrocity,Y,Dusk,,G. Duncan,1945.07.00-CheribonAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.00-CheribonAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.00-CheribonAtrocity.pdf,1945.07.00,1945.07.00,1598,, +1945.06.15,15-Jun-45,1945,Unprovoked,AUSTRALIA,Queensland,"Trinity Beach, Cairns",Swimming,E. J. McHugh,M,,FATAL,Y,16h00,,"Cairns Post, 6/19/1945",1945.06.15-McHugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.06.15-McHugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.06.15-McHugh.pdf,1945.06.15,1945.06.15,1597,, +1945.05.08,08-May-45,1945,Unprovoked,USA,North Carolina,"Ocracoke Inlet, Carteret County",Swimming,Navy seaman,M,,"FATAL, large gash to thigh",Y,,,D. Batterson (Former Navy Hospital Corpsman),1945.05.08-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.05.08-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.05.08-Kuenzler.pdf,1945.05.08,1945.05.08,1596,, +1945.03.06,06-Mar-45,1945,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Walking,David Drummond,M,37,"Right leg bitten knee to foot, surgically amputated",N,16h30,Thought to involve a Zambesi shark,"D. Drummond, M. Levine, GSAF",1945.03.06-Drummond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.03.06-Drummond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.03.06-Drummond.pdf,1945.03.06,1945.03.06,1595,, +1945.02.05,05-Feb-45,1945,Unprovoked,ISRAEL,Tel Aviv,,Swimming,British constable,M,,"Survived. R.A.F. pilot, seeing commotion in the water, dived his plane to investigate and scared off shark",N,,,"NY Times, 2/6/1945, p.3; V.M. Coppleson (1958); C. Moore, GSAF",1945.02.05-Constable-TelAviv.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.02.05-Constable-TelAviv.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.02.05-Constable-TelAviv.pdf,1945.02.05,1945.02.05,1594,, +1945.00.00.d,1945,1945,Unprovoked,JAMAICA,,,Diving,Albert Stewart,M,,Hand severed,N,,,"The Gleaner, 4/29/1946",1945.00.00.d-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.d-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.d-Stewart.pdf,1945.00.00.d,1945.00.00.d,1593,, +1945.00.00.c,1945,1945,Unprovoked,CUBA,Havana Province,Cojimar,"Playing on rock, slipped & fell into the water",boy,M,,FATAL,Y,,,"F. Poli, pp.18-19",1945.00.00.c-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.c-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.c-Cuba.pdf,1945.00.00.c,1945.00.00.c,1592,, +1945.00.00.b,1945,1945,Unprovoked,PANAMA,Colon Province,"Mouth of Rio Dudio, 50 miles west of the city of Colon",Bathing with her mother,Maria Asista,F,8 or 10,Foot bitten,N,,,A. Wetmore,1945.00.00.b-Asista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.b-Asista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.b-Asista.pdf,1945.00.00.b,1945.00.00.b,1591,, +1945.00.00.a,1945,1945,Unprovoked,IRAQ,Basrah,Shatt-al Arab River,Swimming,male,M,15,Left foot bitten,N,12h00,Bull shark,B.W. Coad & L.A.J. Al-Hassan,1945.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.a-Shatt-al-Arab.pdf,1945.00.00.a,1945.00.00.a,1590,, +1944.12.18,Between 18 & 22-Dec 1944,1944,Sea Disaster,PHILIPPINES,300 miles east of Luzon,USS Hull DD-350 was one of 3 destroyers that capsized in Typhoon Cobra,Swimming near life raft,Nicholas Nagurney,M,19,Arm bitten,N,,9' shark,"TIME, 1/22/1945",1944.12.18-Nagurney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.18-Nagurney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.18-Nagurney.pdf,1944.12.18,1944.12.18,1589,, +1944.12.02,02-Dec-44,1944,Provoked,USA,Florida,3 miles north of the inlet at Palm Beach,Fishing for mackerel,"28' sea skiff, occupants: Alan Moree and another fisherman",,,"No injury to occupants. After being prodded with an oar, shark struck bow and sank boat PROVOKED INCIDENT",N,,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","New York Times, 12/3/1944, III, p.2, col.7",1944.12.02-skiff-Moree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.02-skiff-Moree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.02-skiff-Moree.pdf,1944.12.02,1944.12.02,1588,, +1944.11.08,08-Nov-44,1944,Sea Disaster,SIERRA LEONE,Western Area,Freetown,,Keith Meaden,M,18,FATAL,Y,,,Royal Navy Casualties,1944.11.08-Meaden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.08-Meaden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.08-Meaden.pdf,1944.11.08,1944.11.08,1587,, +1944.11.01,01-Nov-44,1944,Invalid,AUSTRALIA,Queensland,Maroochydore Beach,Swimming,American sailor,M,,Probable drowning & scavenging,Y,,,"The Canberra Times, 11/7/1944",1944.11.01-AmericanSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.01-AmericanSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.01-AmericanSailor.pdf,1944.11.01,1944.11.01,1586,, +1944.10.26.b,26-Oct-44,1944,Sea Disaster,PHILIPPINES,,,"USS Gambier Bay CVE-73 shelled & sunk at 09h57 on 10/24/1944, by Japanes fleet enroute to attack the Allied landing force at Leyte.",A. man floating next to Charles G. Heinl ,M,,When survivors werer rescued on 10/27/1944 by PC 623 there were many sharks in the area,Y,,,USS Gambier Bay archives,1944.10.26.b-Heinl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.b-Heinl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.b-Heinl.pdf,1944.10.26.b,1944.10.26.b,1585,, +1944.10.26.a,26-Oct-44,1944,Sea Disaster, PHILIPPINES,Bernardino Strait near Gulf of Leyte,,USS Hoel DD 533 sunk on 10/24/1944 in the Battle off Samar. 2 crewmen were swimmng alongside a floater net &,2 men,M,,"FATAL, both were killed by sharks",Y,,,"Glenn Hatch Parkin, gunner ",1944.10.26.a-2men-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.a-2men-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.a-2men-incomplete.pdf,1944.10.26.a,1944.10.26.a,1584,, +1944.10.25.b,25-Oct-44,1944,Sea Disaster,PHILIPPINES,Off Samar Island in the Gulf of Leyte,,USS Johnston DD 557 sunk on 10/24/1944 in the Battle off Samara. Crewmen were swimming beside a raft.,"William Clinton Carter, Jr. & 2 other men",M,,"Clinton was bitten on his back, 2 others did not survive",Y,,,"Abiline Reporter News, 12/29/1944",1944.10.25.b-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.b-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.b-Carter.pdf,1944.10.25.b,1944.10.25.b,1583,, +1944.10.25.a,25-Oct-44,1944,Unprovoked,PHILIPPINES,,Off Cape Engano,Parachuted into Pacific,US Naval ensign,M,,"Shark grazed leg, leaving toothmarks",N,,,"G.A. Llano in Airmen Against the Sea, p.66",1944.10.25.a-Ensign.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.a-Ensign.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.a-Ensign.pdf,1944.10.25.a,1944.10.25.a,1582,, +1944.10.24,24-Oct-44,1944,Sea Disaster,,,225 miles east of Hong Kong,Japanese POW ship Arisan Maru with 1800 American prisoners of war on board bound for slave labor camps was torpedoed by an American submarine,,M,,Most of the men drowned & some were taken by sharks. Only only nine men survived,Y,>17h30,,internet (multiple),1944.10.24-ArisanMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.24-ArisanMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.24-ArisanMaru.pdf,1944.10.24,1944.10.24,1581,, +1944.10.23.R,Reported 23-Oct-1944,1944,Boating,AUSTRALIA,Queensland,Tewantin,Fishing,dinghy,,,No injury to occupants; shark bit dinghy leaving tooth fragments in its woodwork,N,,,"G.P. Whitley (1951), p.193",1944.10.23.R-Tewantin-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.23.R-Tewantin-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.23.R-Tewantin-dinghy.pdf,1944.10.23.R,1944.10.23.R,1580,, +1944.09.03,03-Sep-44,1944,Unprovoked,USA,Maryland,North Beach,Swimming,Philip Stanton,M,13,Laceration to right lower leg,N,,,"Washington Post, 9/4/1944",1944.09.03-PhilipStanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.03-PhilipStanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.03-PhilipStanton.pdf,1944.09.03,1944.09.03,1579,, +1944.09.00,Sep-44,1944,Unprovoked,CARIBBEAN SEA,,,Fell overboard from US Navy PC boat,a sailor,M,,FATAL,Y,,,"E. Buleman, NMRI",1944.09.00-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.00-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.00-sailor.pdf,1944.09.00,1944.09.00,1578,, +1944.08.20,20-Aug-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Swimming ,Dennis Nissen,M,19,"FATAL, body not recovered",Y,14h00,,"T. Blake, M. Levine, GSAF",1944.08.20-Nissen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.08.20-Nissen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.08.20-Nissen.pdf,1944.08.20,1944.08.20,1577,, +1944.07.22,22-Jul-144,1944,Unprovoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Swimming,Albert Schmidt,M,17,"FATAL, body not recovered",Y,16h30,"White shark, according to witnesses","M. Levine, GSAF",1944.07.22-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.07.22-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.07.22-Schmidt.pdf,1944.07.22,1944.07.22,1576,, +1944.06.23,23-Jun-44,1944,Invalid,NORTH PACIFIC OCEAN,,Aircraft went down on 6/12/1944. He survived on raft for 11 days and was 150 miles off Guam when rescued,,Lt. Cmdr. Price,M,,"When picked up by the USS Boyd DD 44 on 6/23/1944 his raft was ""surrounded by sharks""",N,,,USS Boyd archive,1944.06.23-Boyd-Rescue-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.06.23-Boyd-Rescue-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.06.23-Boyd-Rescue-incomplete.pdf,1944.06.23,1944.06.23,1575,, +1944.05.31,31-May-44,1944,Unprovoked,USA,Florida,"Atlantic Beach, Mayport, Duval County",Bathing,Mary Ann Shands,F,15,Left calf bitten,N,,1.8 m [6'] blacktip shark or spinner shark,"H.W. Bigelow & C.W. Schroeder (1948) pp.70 & 368; V.M. Coppleson (1958) ; Randall, p.353 in Sharks & Survival; T. Helm, p.227",1944.05.31-Shands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.31-Shands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.31-Shands.pdf,1944.05.31,1944.05.31,1574,, +1944.05.24.R,Reported 24-May-1944,1944,Unprovoked,SAMOA,,,,a male from the Second Seabee Battalion,,,Minor injury when shark tore off his boot,N,,5' shark,"St. Petersburg Times, 5/24/1943",1944.05.24.R-Seabee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.24.R-Seabee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.24.R-Seabee.pdf,1944.05.24.R,1944.05.24.R,1573,, +1944.05.04,04-May-44,1944,Unprovoked,PANAMA,Caribbean Sea,,Washed overboard by swell,"US Naval seaman, one of a crew on a Panama Sea Frontier Naval Patrol craft manned by Coast Guard",M,,"FATAL. His back was bitten as he was being towed to ship by rescuer, Lieut (j.g.) Stanley Kurta, then the shark pulled him below the surface. ",Y,,"White shark, 2.4 m [8'] ","Star & Herald (Panama), 5/17/1944; V.M. Coppleson (1958), p.6; V.M. Coppleson (1962), p.258;",1944.05.04.a-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.04.a-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.04.a-seaman.pdf,1944.05.04,1944.05.04,1572,, +1944.04.00,Apr-44,1944,Unprovoked,NICARAGUA,Lake Nicaragua (fresh water),,,multiple bathers,,,Some killed & others severely injured,Y,,Bull sharks to 1.5 m [5'] in length,V.M. Coppleson (1958),1944.04.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.04.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.04.00-LakeNicaragua.pdf,1944.04.00,1944.04.00,1571,, +1944.03.26.b,26-Mar-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Gabriel Botha,M,18,Left thigh bitten,N,17h30,,"G. Botha, M. Levine, GSAF",1944.03.26.b-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.b-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.b-Botha.pdf,1944.03.26.b,1944.03.26.b,1570,, +1944.03.26.a,26-Mar-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Standing,Geoffrey Best,M,23,"FATAL, left thigh & calf bitten ",Y,10h00,,"G. Botha, M. Levine, GSAF ",1944.03.26.a-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.a-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.a-Best.pdf,1944.03.26.a,1944.03.26.a,1569,, +1944.03.14,14-Mar-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Richard D. Field,M,16,Ankle severely lacerated,N,17h30,,"R.D. Field, M. Levine, GSAF ",1944.03.14-Field.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.14-Field.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.14-Field.pdf,1944.03.14,1944.03.14,1568,, +1944.02.27,27-Feb-44,1944,Unprovoked,SOUTH AFRICA,Western Cape Province,False Bay,Treading water,Corporal N.S. LeBlanc,M,,Foot & ankle lacerated,N,>14h30,2.1 m [7'] shark,"L. Green; M. Levine, GSAF",1944.02.27-LeBlanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.27-LeBlanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.27-LeBlanc.pdf,1944.02.27,1944.02.27,1567,, +1944.02.18,18-Feb-44,1944,Unprovoked,INDIA,,"Triplicane Beach, Chennai",Bathing,male,M,12,FATAL,Y,,,"Indian Express, 2/19/1944",1944.02.18-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.18-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.18-Madras.pdf,1944.02.18,1944.02.18,1566,, +1944.01.20,20-Jan-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Body surfing,Anthony Bunn,M,22,"FATAL, right thigh lacerated, femoral artery severed ",Y,13h15,,"M. Levine, GSAF",1944.01.20-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.20-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.20-Bunn.pdf,1944.01.20,1944.01.20,1565,, +1944.01.16,16-Jan-44,1944,Boating,AUSTRALIA,Western Australia,"Cottesloe, Perth",Fishing,"14' dinghy, 2 occupants",M,,"No injury, shark took day's catch & struck boat",N,,14' shark,"Canberra Times, 1/17/1944",1944.01.16-dinghy-Cottesloe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.16-dinghy-Cottesloe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.16-dinghy-Cottesloe.pdf,1944.01.16,1944.01.16,1564,, +1944.01.14,14-Jan-44,1944,Unprovoked,AUSTRALIA,New South Wales,"First Beach, Forster",Surfing,Peter Weir,M,14,"Both legs bitten, one surgically amputated",N,17h00,,"G.P. Whitley (1951), p.193, cites Daily Mirror (Sydney) 1/18/1944; V.M. Coppleson (1958), p.84",1944.01.14-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.14-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.14-Weir.pdf,1944.01.14,1944.01.14,1563,, +1944.01.04,04-Jan-44,1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Ronald Joel Selby,M,26,"FATAL, leg bitten knee to ankle & posterior tibial artery severed; died of toxemia 2 days later ",Y,17h50,,"M. Selby, M. Levine, GSAF ",1944.01.04-Selby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.04-Selby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.04-Selby.pdf,1944.01.04,1944.01.04,1562,, +1944.00.00.c,Some time between Apr & Nov-1944,1944,Sea Disaster,SOUTH PACIFIC OCEAN,,,Adrift on raft,"Unknown, he was Nabetari's companion",M,,FATAL Arm severed,Y,,,"TIME, 7/29/1946",1944.00.00.c-Nebatari'sCompanion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.c-Nebatari'sCompanion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.c-Nebatari'sCompanion.pdf,1944.00.00.c,1944.00.00.c,1561,, +1944.00.00.b,1944,1944,Sea Disaster,ITALY,Adriatic Sea,,B-24 aircraft crashed into the sea,"male, a member of the crew",M,,FATAL,Y,,,GSAF,1944.00.00.b-B-24 crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.b-B-24 crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.b-B-24 crew.pdf,1944.00.00.b,1944.00.00.b,1560,, +1944.00.00.a,1944,1944,Unprovoked,NEW GUINEA,Pacific Ocean,,Fell overboard from USS Ward,sailor,M,,FATAL,Y,,,GSAF,1944.00.00.a-Ward crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.a-Ward crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.a-Ward crew.pdf,1944.00.00.a,1944.00.00.a,1559,, +1943.12.12,12-Dec-43,1943,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amazimtoti ",Treading water,James Crawford Matthews,M,17,"FATAL, abdomen, buttock & thigh lacerated ",Y,11h30,,"R. Kahn, M. Levine, GSAF; Natal Mercury 1/21/1944",1943.12.12-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.12-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.12-Matthews.pdf,1943.12.12,1943.12.12,1558,, +1943.12.04,04-Dec-43,1943,Sea Disaster,USA,South Carolina,Off Charleston,The Cuban freighter Libertad was torpedoed and sunk by the German submarine U-129,Julio C. de Cabarrocas ,M,,"Of the 18 crew who survived the sinking, 10 were taken by sharks. Cabarrocas was bitten but survived",Y,,,"Troy Record, 12/13/1943; J. Rohwer, p.175",1943.12.04-Libertad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.04-Libertad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.04-Libertad.pdf,1943.12.04,1943.12.04,1557,, +1943.11.21,21-Nov-43,1943,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Swimming with board,Richard Richardson,M,,Right foot lacerated,N,,,"M. Levine, GSAF",1943.11.21-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.21-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.21-Richardson.pdf,1943.11.21,1943.11.21,1556,, +1943.11.11,11-Nov-43,1943,Sea Disaster,PACIFIC OCEAN,Near the Fiji Islands,2208'S : 17806'W,The 6711-ton American freighter & troop transport Cape San Juan was torpedoed by the Japanese submarine I-21,males,M,,"Of the 1,429 people on board, only 448 survived. Sharks were attacking survivors as they were being rescued",Y,,,"M. McDiarmid, p.67",1943.11.11-CapeSanJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.11-CapeSanJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.11-CapeSanJuan.pdf,1943.11.11,1943.11.11,1555,, +1943.10.26,26-Oct-43,1943,Invalid,USA,Florida,Victim was on said to be on tanker that collided off Florida coast on 10-20-1943,,"Clyde Kelly Ormand, Jr.",M,,"Hand, forearm, leg and pelvis recovered from sharks gut",N,,"Remains found in 4.25 m [14'] shark caught at Bakers Haulover, Miami Beach on 26-Oct-1943","R.F. Hutton (1959); D. Baldridge, p.171; T. Helm, p.226; SAF Case #624",1943.10.26-Ormond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.10.26-Ormond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.10.26-Ormond.pdf,1943.10.26,1943.10.26,1554,, +1943.09.23,23-Sep-43,1943,Unprovoked,PANAMA,Gulf of Panama,"North shore of Rey Island, Las Perlas archipelago",Dived overboard to check propeller of US Navy motor torpedo boat,sailor,M,20,"FATAL, left leg & shoulder bitten ",Y,14h35,"White shark, 2 m [6'9""] (Tooth fragment recovered from victim's shoulder & identified by J.T. Nicholls)",Captain B. H. Kean,1943.09.23-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.09.23-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.09.23-sailor.pdf,1943.09.23,1943.09.23,1553,, +1943.08.00,Aug-43,1943,Sea Disaster,ITALY,40 miles south of Naples ,Tyrrhenian Sea,Flying Fortress bomber aircraft went down after daytime raid on Naples. He was swimming on the surface,"Lieutenant Robert D. Kurz (U.S.), co-pilot",M,,"Bitten on arms, hands & feet while awaiting rescue",N,,,New York Times 8/9/1943,1943.08.00-Kurz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.08.00-Kurz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.08.00-Kurz.pdf,1943.08.00,1943.08.00,1552,, +1943.07.18,18-Jul-43,1943,Sea Disaster,USA,Florida,"40 miles off Islamorada, near Cay Sal",Treading water after survivng crash of the US Navy airship K-74 that was hit by the German submarine U-134,Petty Officer Isadore Stessel,M,,FATAL,Y,,,Wikipedia,1943.07.18-Stessel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.18-Stessel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.18-Stessel.pdf,1943.07.18,1943.07.18,1551,, +1943.07.00.b,Jul-43,1943,Boating,PORTUGAL,,Sines,Fishing for mackerel,rowboats attacked by sharks,,,No injury to occupants,N,,,Letter dated 8/31/1959 from A. Cordeiro,1943.07.00.b-Portugal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.b-Portugal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.b-Portugal.pdf,1943.07.00.b,1943.07.00.b,1550,, +1943.07.00.a,Jul-43,1943,Invalid,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,"Manuel Zamora, a lawyer",M,68,"No injury, a shark made a threat display",N,Between 11h00 & 12h00,,C.G. Robles; SAF Case #1327 ,1943.07.00.a-Zamora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.a-Zamora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.a-Zamora.pdf,1943.07.00.a,1943.07.00.a,1549,, +1943.06.16,16-Jun-43,1943,Boating,AUSTRALIA,Tasmania,Triabunna,Fishing for cod,"a dinghy, occupant Neil Parker",M,18,"No injury to occupant, shark grabbed rudder and dragged the dinghy stern-first",N,,"White shark, 3.9 m, 550 kg, male","C. Black, GSAF",1943.06.16-dinghy-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.06.16-dinghy-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.06.16-dinghy-Parker.pdf,1943.06.16,1943.06.16,1548,, +1943.05.27,27-May-43,1943,Invalid,PACIFIC OCEAN,,,B-24 crashed during a search mission. Survivors in raft for 47 days ,Louis Zamperini & Russell Phillips ,M,,Survived,N,,,G.A. Llano,1943.05.27-Zamperini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.27-Zamperini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.27-Zamperini.pdf,1943.05.27,1943.05.27,1547,, +1943.05.17.b,17-May-43,1943,Sea Disaster,CENTRAL PACIFIC,,68 miles east of Wallis Island,"S2N Navy scout plane went down, E.H. Almond & Lieut A.G. Reading in water","Arthur George Reading, Naval aviator",M,26,"Jaw dislocated & contusions from many blows on legs & body by shark fins, rescued after 14 hours",N,,,"W.L. Jones; V.M. Coppleson (1962), p.217; G.A. Llano in Airmen Against the Sea, p.67",1943.05.17.b-Reading.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.b-Reading.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.b-Reading.pdf,1943.05.17.b,1943.05.17.b,1546,, +1943.05.17.a,17-May-43,1943,Sea Disaster,CENTRAL PACIFIC,,68 miles east of Wallis Island,"S2N Navy scout plane went down, E.H. Almond & Lieut A.G. Reading in water","E.H. Almond, US Navy radioman",M,,"FATAL, right leg & left thigh bitten ",Y,,,"V.M. Coppleson (1962), p.217; G.A. Llano in Airmen Against the Sea, p.67",1943.05.17.a-Almond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.a-Almond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.a-Almond.pdf,1943.05.17.a,1943.05.17.a,1545,, +1943.05.14,14-May-43,1943,Sea Disaster,AUSTRALIA,Queensland,Off Brisbane,Hospital Ship Centaur torpedoed & sunk by the Japanese submarine I-177,unknown,M,F,FATAL,Y,After 04h00,,"The Age, 5/19/1953",1943.05.14-Centaur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.14-Centaur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.14-Centaur.pdf,1943.05.14,1943.05.14,1544,, +1943.05.01.R,Reported 01-May-1943,1943,Sea Disaster,INDIAN OCEAN,,,ship torpedoed 400 miles off the African coas. Man was clinging to hatch cover,Clarence Master,M,,"Leg, foot & arm bitten",N,,Blue shark,"St. Petersburg Times, 5/1/1943",1943.05.01.R-Clarence-Master.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.01.R-Clarence-Master.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.01.R-Clarence-Master.pdf,1943.05.01.R,1943.05.01.R,1543,, +1943.04.05,05-Apr-43,1943,Invalid,USA,Hawaii,"3 miles from shore off McGregor Point, Maui","Small boat swamped, 4 people swimming to shore but he fell behind the other 3 and vanished",Leonard Gant,M,,On 29-Apr-1943 his remains (right forearm & swim trunks) were found in sharks gut,Y,,4.9 m [16'] shark,"Honolulu Advertiser, 8/9/1953; V.M. Coppleson (1958); J. Borg, p. 71; SAF Case #292",1943.04.05-Gant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.04.05-Gant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.04.05-Gant.pdf,1943.04.05,1943.04.05,1542,, +1943.03.21,21-Mar-43,1943,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Eric Ridley,M,31,"FATAL, thigh lacerated, both calves bitten ",Y,16h10,,"M. Levine, GSAF",1943.03.21-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.21-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.21-Ridley.pdf,1943.03.21,1943.03.21,1541,, +1943.03.14,14-Mar-43,1943,Sea Disaster,SIERRA LEONE,,,"The 21,516-ton troopship Empress of Canada torpedoed and sunk by the Italian submarine Leonardo da Vinci",,,,"Of the 1346 on board, 392 perished including 90 women & 44 crew. 1 person known to have been fatally injured by a shark.",Y,,,Greatships.net,1943.03.14-Empress-of-Canada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.14-Empress-of-Canada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.14-Empress-of-Canada.pdf,1943.03.14,1943.03.14,1540,, +1943.03.02.b,02-Mar-43,1943,Sea Disaster,BRAZIL,,Near the Abrolhos Archipelago ,The 3540-ton Alfonso Penna was torpedoed & sunk by the Italian submarine Barbarigo,,,,"33 crew & 92 passengers were lost, it was thought that some were killed by sharks FATAL",Y,19h00,,"New York Times, 3/20/1943; Axis submarine losses in WWII",1943.03.02.b-AlfonsoPenna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.b-AlfonsoPenna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.b-AlfonsoPenna.pdf,1943.03.02.b,1943.03.02.b,1539,, +1943.03.02.a,02-Mar-1943 to 07-Mar-1943,1943,Sea Disaster,PAPUA NEW GUINEA,Morobe Province, Huon Gulf,"Known as The Battle of the Bismarck Sea : 8 Japanese destroyers guarding a convoy of 8 transports were attacked by 129 Allied fighters, 207 bombers & 3 squadrons of the Royal Australian Air Force. ",,,,"An estimated 3,000 to 7,000 Japanese troops perished, some were taken by sharks",Y,,,"G. Duncan, et al",1943.03.02.a-HuonGulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.a-HuonGulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.a-HuonGulf.pdf,1943.03.02.a,1943.03.02.a,1538,, +1943.01.26,26-Jan-43,1943,Sea Disaster,PACIFIC OCEAN,Northwest of Papua New Guinea,,The USS Wahoo torpedoes & sank the Japanese troop transport Buyo Maru,Japanese seamen,M,,FATAL,Y,,,Naval Historical Center,1943.01.26-BuyoMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.01.26-BuyoMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.01.26-BuyoMaru.pdf,1943.01.26,1943.01.26,1537,, +1943.00.00.f,Summer 1943,1943,Unprovoked,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,a U.S. citizen,,,FATAL,Y,,,C.G. Robles,1943.00.00.f-NV-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.f-NV-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.f-NV-Veracruz.pdf,1943.00.00.f,1943.00.00.f,1536,, +1943.00.00.e,1943,1943,Unprovoked,SOLOMON ISLANDS,,Guadalcanal,Swimming,"U.S. soldier in 161st Infantry Regiment, 25th Infantry Division",M,,Arm severed,N,,,J. Lawton Collins,1943.00.00.e-Soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.e-Soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.e-Soldier.pdf,1943.00.00.e,1943.00.00.e,1535,, +1943.00.00.d,1943,1943,Unprovoked,IRAQ,,River Tigris,Swimming,Syed Khaleeulla ,M,22,"Right arm severed, left foot bitten",N,,,"Times of India, 8/19/2001",1943.00.00.d-Khaleeula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.d-Khaleeula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.d-Khaleeula.pdf,1943.00.00.d,1943.00.00.d,1534,, +1943.00.00.c,Fall 1943,1943,Unprovoked,USA,Hawaii,"Midway Island, Northwestern Hawaiian Islands",Spearfishing, 2 males,M,,Calf nipped in each case,N,,"""small sharks""",W. M. Chapman,1943.00.00.c - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.c - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.c - Midway.pdf,1943.00.00.c,1943.00.00.c,1533,, +1943.00.00.b,Fall 1943,1943,Unprovoked,USA,Hawaii,"Midway Island, Northwestern Hawaiian Islands",Spearfishing, 2 males,M,,Calf nipped in each case,N,,"""small sharks""",W. M. Chapman,1943.00.00.b - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.b - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.b - Midway.pdf,1943.00.00.b,1943.00.00.b,1532,, +1943.00.00.a,1943,1943,Unprovoked,USA,Hawaii,"Midway, Northwestern Hawaiian Islands",,male,M,,"Unprovoked, but circumstances unknown",UNKNOWN,,,"G.H. Balazs & A.K.H. Kam; J. Borg, p.72; L. Taylor (1993), pp.98-99",1943.00.00.a-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.a-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.a-Midway.pdf,1943.00.00.a,1943.00.00.a,1531,, +1942.12.26,26-Dec-42,1942,Unprovoked,AUSTRALIA,New South Wales,"Bantry Bay, near Ironstone Point, Middle Harbor, Sydney",Dog paddling or standing,Denise Rosemary Burch,F,15,"FATAL, legs bitten ",Y,10h50,Bull shark,"G.P. Whitley (1951), p. 193; V.M. Coppleson (1958), p.70; A. Sharpe, pp.72-73; A. MacCormick, pp.34-35",1942.12.26-Burch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.12.26-Burch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.12.26-Burch.pdf,1942.12.26,1942.12.26,1530,, +1942.11.28,28-Nov-42,1942,Sea Disaster,SOUTH AFRICA,KwaZulu-Natal,50 km off St. Lucia,U-177 torpedoed & sank the troopship Nova Scotia,Sammy Levine & his pet parrot,M,,"192 survived, but 750 perished. Many were taken by sharks, including Levine",Y,09h30,"1.8 m to 2.4 m [6' to 8'] sharks, most were oceanic whitetip sharks","L. de Lease; M. Levine, GSAF",1942.11.28-NovaScotia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.28-NovaScotia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.28-NovaScotia.pdf,1942.11.28,1942.11.28,1529,, +1942.11.25,25-Nov-42,1942,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umkomaas,Swimming,E.W. Bilton,M,38,"Calf bitten, leg surgically amputated",N,,,"M. Levine,GSAF ",1942.11.25-Bilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.25-Bilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.25-Bilton.pdf,1942.11.25,1942.11.25,1528,, +1942.11.16,16-Nov-42,1942,Sea Disaster,SOLOMON ISLANDS,,Battle of Guadalcanal,Thrown from destroyer when shell hit,,M,19,Hip bitten,N,,,"Lima News, 7/13/1944",1942.11.16-Guadalcanal-HospitalShip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.16-Guadalcanal-HospitalShip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.16-Guadalcanal-HospitalShip.pdf,1942.11.16,1942.11.16,1527,, +1942.11.21,21-Nov-42,1942,Sea Disaster,INDIAN OCEAN,,Bound from Cape Town for St. Helena,"On 6-Nov-1942, the German submarine U-68 sank the City of Cairo 5 days from Cape Town, survivors took to lifeboats & rafts. On the 15th day, a fireman jumped over the stern & was taken by sharks",male,M,,FATAL,Y,,,"Coppleson (1962), pp.207 & 258 ",1942.11.21-City-of-Cairo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.21-City-of-Cairo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.21-City-of-Cairo.pdf,1942.11.21,1942.11.21,1526,, +1942.11.13.c,13-Nov-42,1942,Sea Disaster,SOLOMON ISLANDS,,Off Guadalcanal,"Anti-Aircraft cruiser USS Atlanta (CL,-05) travelling in convoy after the Battle of Midway, encountered a Japanese flotilla (Battle of Guadalcanal) &, heavily damaged by gunfire, she was lost off Lunga Point. Victim was swimming when bitten.","Sam Hicks, a gunner",M,,"Injured by sharks, but managed to swim ashore 6.5 hours later",N,,,Memoirs of Sam Hicks,1942.11.13.c-Hicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.c-Hicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.c-Hicks.pdf,1942.11.13.c,1942.11.13.c,1525,, +1942.11.13.b,13-Nov-42,1942,Sea Disaster,SOLOMON ISLANDS / VANUATU,,"North of Guadalcanal, Solomon Islands while enroute to Vanuatu",Explosion & sinking of the USS Juneau after being torpedoed by the submarine I-85,"Because of a mistaken belief that there were no survivors and several other successive errors, of the 100 to 150 men who survived the sinking, only 11 were rescued. Four of the Sullivan brothers died in the initial blast. ",M,,"Over a period of a week men in the water died of wounds, thirst & sharks. George Sullivan, the last of the Sullivan brothers, survived for 5 days & then was killed by 3 sharks.",Y,11h01 -time of ship sinking,,US Navy Military History,1942.11.13.b-Juneau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.b-Juneau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.b-Juneau.pdf,1942.11.13.b,1942.11.13.b,1524,, +1942.11.13.a,12-Nov-42,1942,Sea Disaster,SOLOMON ISLANDS,,Off Savo Island,,Japanese seaman,M,,FATAL,Y,,,"C. Cromie, Chicago Tribune, 12/5/1942",1942.11.13.a-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.a-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.a-Guadalcanal.pdf,1942.11.13.a,1942.11.13.a,1523,, +1942.11.01,01-Nov-42,1942,Unprovoked,SOUTH AFRICA,Western Cape Province,Clifton,Swimming ,Willem Johannes Bergh,M,18,"FATAL, body not recovered",Y,12h30,"White shark, 4.5 m to 6 m [14'9"" to 20'] according to witnesses","Natal Daily News, 11/28/1942, M. Levine, GSAF; T. Wallett, p.42 ",1942.11.01-Bergh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.01-Bergh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.01-Bergh.pdf,1942.11.01,1942.11.01,1522,, +1942.11.00.b,Nov-42,1942,Provoked,PACIFIC OCEAN,Between Hawaii and U.S.A.,,In rubber dinghy with Captain Eddie Rickenbacker for 21 days. ,male,M,,One man drove a knife through rubberized canvas trying to stab a shark & it injured him with its tail PROVOKED INCIDENT,N,,,"V.M. Coppleson (1962), p.257",1942.11.00.b-Rickenbacker-raftmate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.b-Rickenbacker-raftmate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.b-Rickenbacker-raftmate.pdf,1942.11.00.b,1942.11.00.b,1521,, +1942.11.00.a,Nov-42,1942,Sea Disaster,,Off South American coast,,"Dutch merchant ship Zaandam torpedoed by the U-174 amidships, sank & dozens of survivors took to rafts & boats. One man, Izzi, who drifted 83 days on a raft related that sharks attacked many men in the water when the ship went down",,M,,FATAL,Y,,,"M. Murphy; V.M. Coppleson (1962), pp.207-208",1942.11.00.a-Izzi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.a-Izzi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.a-Izzi.pdf,1942.11.00.a,1942.11.00.a,1520,, +1942.10.12,12-Oct-42,1942,Sea Disaster,SOLOMON ISLANDS,Makora-Ulawa Province,Cape Esperance (near Savo Islands),"His ship, the US destroyer Duncan DD 485, had been sunk by crossfire from Japanese warships. He was wearing a kapok lifejacket & using 2 aluminum powder tins for floatation ",Lieutenant Commander Herbert Richard Kabat,M,25,"Foot, hand, elbow & calf lacerated & abraded, thigh gashed",N,,,"W. L. Jones, M.D.; Saturday Evening Post; V.M. Coppleson (1958), p.199",1942.10.12-Kabat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.10.12-Kabat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.10.12-Kabat.pdf,1942.10.12,1942.10.12,1519,, +1942.09.30,30-Sep-42,1942,Sea Disaster,ATLANTIC OCEAN,04.05N-13.23W,,The 6015-ton British ship Empire Avocet was torpedoed by the German submarine U-125. ,,,,Survivors on life rafts were harassed by sharks,N,,,"V.M. Coppleson (1962), p.208",1942.09.30-EmpireAvocet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.30-EmpireAvocet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.30-EmpireAvocet.pdf,1942.09.30,1942.09.30,1518,, +1942.09.12.b,12-Sep-42,1942,Sea Disaster,ATLANTIC OCEAN,,360 miles north of Ascension Island,"The Pacquebot Laconia, enroute to Liverpool with 600 Italian prisoners onboard, was torpedoed by the German submarine U-156 and only 2 rafts were launched before the ship went down. Unable to board an overcrowded raft, he was swimming.",Michael Setti,M,,"Calf lacerated. He was rescued by German submarine, which sunk. Rescued by Italian submarine, which sunk. Managed to reach Dakar",N,,,"V.M. Coppleson (1962), p.258; Rohwer, pp.122 & 352",1942.09.12.b-Laconia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.b-Laconia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.b-Laconia.pdf,1942.09.12.b,1942.09.12.b,1517,, +1942.09.12.a,12-Sep-42,1942,Unprovoked,AUSTRALIA,Queensland,"Trinity Beach, 17 km northwast of Cairns",Treading water,"Athol Wearne, Royal Australian Air Force. officer",M,24,"Right foot severed & calf removed, leg surgically amputated below the knee",N,16h30,"Tiger shark, 2.4 m to 3 m [8' to 10'] ","A Wearne, J. Green, pp.44-50; G.P. Whitley (1951), p. 193, cites Sydney Morning Herald, 8/11/1943; V.M. Coppleson (1958), pp.87 & 238",1942.09.12.a-Wearne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.a-Wearne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.a-Wearne.pdf,1942.09.12.a,1942.09.12.a,1516,, +1942.09.11,11-Sep-1942 to 16-Sep-1942,1942,Sea Disaster,SOUTHWEST PACIFIC OCEAN,,Southwestern Pacific Base,Adrift on life raft,US Army fliers,M,,"FATAL, 2 of the 9 airmen killed by sharks",Y,,Tiger shark & others,SAF Case #741,1942.09.11-NV-AdriftonRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.11-NV-AdriftonRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.11-NV-AdriftonRaft.pdf,1942.09.11,1942.09.11,1515,, +1942.08.08,08-Aug-42,1942,Sea Disaster,SOLOMON ISLANDS,,,Japanese aircraft shot down. He was one of two survivors rescued by the U.S. destroyer Mugford,Tamaki Amano,M,,Lacerations to left arm,N,,,"Appleton Post-Crescent, 4/18/1964",1942.08.08-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.08.08-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.08.08-Amano.pdf,1942.08.08,1942.08.08,1514,, +1942.07.12,12-Jul-42,1942,Sea Disaster,ATLANTIC OCEAN,,,The SS Potlach was torpedoed & sunk by the U-153 on 27-Jun-1942. ,John Martin Miller,M,32,FATAL Arm bitten,Y,,,"Kingsport Times, 8/6/1942, et al",1942.07.12-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.12-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.12-Miller.pdf,1942.07.12,1942.07.12,1513,, +1942.07.06,06-Jul-42,1942,Provoked,ITALY,Liguria,Savona,Sculling,Gino Bardolini,M,20,"After he hit the shark with an oar, the shark bit the oar and overturned the boat PROVOKED INCIDENT",N,,Porbeagle shark,"C. Moore, GSAF",1942.07.06-Bardolini,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.06-Bardolini,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.06-Bardolini,1942.07.06,1942.07.06,1512,, +1942.06.11.R,Reported 11-Jun-1942,1942,Sea Disaster,BAY OF BENGAL,,,A 210-ton brig was sunk by a Japanese submarine. Some of the survivors were machine-gunned & some were taken by sharks,2 males,M,,FATAL,Y,,,"Canberra Times, 6/11/1942",1942.06.11.R-Bay-of-Bengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.11.R-Bay-of-Bengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.11.R-Bay-of-Bengal.pdf,1942.06.11.R,1942.06.11.R,1511,, +1942.06.08.R,Reported 08-Jun-1942,1942,Invalid,BRAZIL,,,boat capsized during filming,Jacare,M,,"Remains recovered from shark, but cause of death was probably drowning",Y,,440-lb shark,"Time Magazine, 6/8/1942",1942.06.08.R-Jacare-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.08.R-Jacare-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.08.R-Jacare-Brazil.pdf,1942.06.08.R,1942.06.08.R,1510,, +1942.06.04,04-Jun-42,1942,Unprovoked,USA,Midway Atoll,,"Plane crashed in water, men in life raft",a pilot,M,,Survived,N,,,"Evening Standard, 7/16/1942",1942.06.04-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.04-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.04-Midway.pdf,1942.06.04,1942.06.04,1509,, +1942.06.00,Jun-42,1942,Unprovoked,,300 miles east of St. Thomas (Virgin Islands),,On life raft tethered to lifeboat. A seaman put hand over side to rinse a cup,male,M,,Forearm lacerated,N,,,"V.M. Coppleson (1962), p.258",1942.06.00-on-life-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.00-on-life-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.00-on-life-raft.pdf,1942.06.00,1942.06.00,1508,, +1942.05.09,09-May-42,1942,Unprovoked,AUSTRALIA,Queensland,"Great Barrier Reef, off Cairns",Diving from lugger,Abraham Johnson,M,,"Hands, arms & knee lacerated",N,,,"V.M. Coppleson (1958), p.245",1942.05.09-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.05.09-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.05.09-Johnson.pdf,1942.05.09,1942.05.09,1507,, +1942.04.05,05-Apr-42,1942,Invalid,INDIAN OCEAN,West of Ceylon (Sri Lanka),300 nm from shore,H.M.S. Cornwall & H.M.S.Dorsetshire sunk by Japanese dive bombers. Officers & men in the water formed a circle with 60 of their dead in the center for 36 hours,,,,Sharks were numerous & took corpses but made no attempts to harm the survivors.,Y,,,"V.M. Coppleson (1962), p.218",1942.04.05-Dorsetshire-Cornwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.04.05-Dorsetshire-Cornwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.04.05-Dorsetshire-Cornwall.pdf,1942.04.05,1942.04.05,1506,, +1942.03.08,08-Mar-42,1942,Sea Disaster,CUBA,Guantanamo Province,30 nm southeast of Guantanamo Bay,Esso Bolivar was torpedoed & shelled by the German submarine U-126,A wounded member of Naval guncrew being towed by Charles Anderson toward a lifeboat & injured crew being towed by watertender Arthur Lauman,M,,"Of her crew of 50, eight perished, including the two injured men",Y,Ship aban-doned at 03h10,,"Baltimore Evening Sun, 4/13/1942",1942.03.08-EssoBolivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.08-EssoBolivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.08-EssoBolivar.pdf,1942.03.08,1942.03.08,1505,, +1942.03.04,04-Mar-42,1942,Invalid,AUSTRALIA,New South Wales,Georges River,,Ronald J. Bishop,M,18,"Cause of death was drowning, shark bites were post mortem",Y,,,"G.P. Whitley (1951), p. 192, cites Sun (Sydney), 3/27/1942; J. Green, p.34",1942.03.04-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.04-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.04-Bishop.pdf,1942.03.04,1942.03.04,1504,, +1942.01.18,18-Jan-42,1942,Boating,AUSTRALIA,New South Wales,Fairy Bower,,paddle of surf-ski,,,Paddle of surf ski bitten by shark,N,,,"G.P. Whitley (1951), p. 192 ",1942.01.18-Surf-ski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.18-Surf-ski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.18-Surf-ski.pdf,1942.01.18,1942.01.18,1503,, +1942.01.04,04-Jan-42,1942,Unprovoked,AUSTRALIA,New South Wales,"Egg Rock, Middle Harbor, Sydney",Swimming,Zita Steadman,F,28,"FATAL, bitten in two ",Y,15h00,"Bull shark, 4 m [13'] ","V.M. Coppleson (1958), p.70; A. Sharpe, p.72; A. MacCormick, pp.34-35",1942.01.04-Steadman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.04-Steadman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.04-Steadman.pdf,1942.01.04,1942.01.04,1502,, +1942.01.00,Jan-42,1942,Provoked,AUSTRALIA,New South Wales,"Fairy Bower, near North Steyne",Surf-skiing,male,M,,Attempted to frighten shark by smacking water with paddle. Shark bit paddle. No injury to surf-skier PROVOKED INCIDENT,N,,3 m [10'] shark,"V.M. Coppleson (1958), p.41",1942.01.00-Surfski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.00-Surfski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.00-Surfski.pdf,1942.01.00,1942.01.00,1501,, +1942.00.00.k,1942,1942,Sea Disaster,INDONESIA,East Java,Surabaya,Captured Allied soldiers were squeezed into 3' bamboo pig baskets & fed to waiting sharks,200 soldiers,M,,"General Imamura, Commander in Chief of Japanese forces in Java was sentenced to 10 years imprisonment by Australian Military Court for his role in the ""Pig Basket Atrocities""",Y,,,G. Duncan,1942.00.00.k-PigBasketAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.k-PigBasketAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.k-PigBasketAtrocity.pdf,1942.00.00.k,1942.00.00.k,1500,, +1942.00.00.j,Winter 1942,1942,Boating,AUSTRALIA,Tasmania,Off Big Friar Island,Fishing for perch,Storm King; occupants - George Bridge & 2 sons,M,,"No injury to occupants, rudder damaged by shark",N,,,"C. Black, GSAF",1942.00.00.j-StormBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.j-StormBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.j-StormBay.pdf,1942.00.00.j,1942.00.00.j,1499,, +1942.00.00.i,Summer 1942,1942,Unprovoked,PHILIPPINES,Camiguin Island,2 kilometres off Sagay,"Sailing from Gingood, Misamis Oriental to Sagay (normally a 2-day voyage) capsized with 6 on board, three men were taken by sharks when they attempted to swim to shore.",Andong & 2 others,M,,FATAL,Y,,,V. Obedencio,1942.00.00.i-Adong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.i-Adong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.i-Adong.pdf,1942.00.00.i,1942.00.00.i,1498,, +1942.00.00.h,1942,1942,Boating,SOUTH AFRICA,Western Cape Province,Simons Bay,,boat,,,"No injury to occupants, boat rammed by shark",N,,,"T. Wallett, p.27",1942.00.00.h-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.h-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.h-boat.pdf,1942.00.00.h,1942.00.00.h,1497,, +1942.00.00.g,1942,1942,Boating,SOUTH AFRICA,Western Cape Province,Simon's Bay,,boat,,,No injury,N,,Said to involve a 6.5 m [21.5'] shark,"T. Wallett, p.27",1942.00.00.g-SimonsTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.g-SimonsTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.g-SimonsTown.pdf,1942.00.00.g,1942.00.00.g,1496,, +1942.00.00.f,1942,1942,Unprovoked,BAHAMAS,Cay Sal Bank,Anchored off the largest island in the group,Swimming along side N.E.L. vessel Saluda,Herbert J. Mann,M,48,"Minor injury, ankle scratched by shark's teeth",N,Late afternoon,1.2 m to 1.5 m [4' to 5'] shark,H.J. Mann,1942.00.00.f-Mann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.f-Mann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.f-Mann.pdf,1942.00.00.f,1942.00.00.f,1495,, +1942.00.00.e,1942,1942,Sea Disaster,,,,Jumped overboard from torpedoed Panamanian freighter,male,M,,FATAL,Y,,,"V.M. Coppleson (1962), p.258",1942.00.00.e-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.e-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.e-seaman.pdf,1942.00.00.e,1942.00.00.e,1494,, +1942.00.00.d,1942,1942,Sea Disaster,MID-PACIFC OCEAN,(Southwestern Pacific),,"Plane forced down, 3 men on rubber life raft. Put hand over side to feel drift of boat ",Gene Aldrich,M,,"Fingers badly lacerated, wounds became septic",N,,,"V.M. Coppleson (1962), p.258",1942.00.00.d-Aldrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.d-Aldrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.d-Aldrich.pdf,1942.00.00.d,1942.00.00.d,1493,, +1942.00.00.c,1942,1942,Sea Disaster,SOUTHWEST PACIFIC OCEAN,,,Ditched plane in the sea & were adrift on a rubber life raft. ,American aviators,M,,"No injury to occupants, They fought off sharks & killed one with an automatic. Rescued 34 days later",N,,"Said to be leopard sharks, more probably tiger sharks","V.M. Coppleson (1962), p.258",1942.00.00.c-AmericanAviators.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.c-AmericanAviators.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.c-AmericanAviators.pdf,1942.00.00.c,1942.00.00.c,1492,, +1942.00.00.b,1942,1942,Boating,,,,"Days before the surrender of Singapore, the 3 men escaped to Sumatra where they acquired a 17' dinghy. After 125 days at sea they drifted back to Sumatra","Bombardier J. Hall, Private Green of the Sherwood Foresters & Captain C. O. Jennings, R.E. Anti-tank Regiment",M,,"No injury to occupants. Sharks continually followed the dinghy, and one smashed its rudder ",N,,,"V.M. Coppleson (1962), p.206",1942.00.00.b-Hall-Green-Jennings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.b-Hall-Green-Jennings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.b-Hall-Green-Jennings.pdf,1942.00.00.b,1942.00.00.b,1491,, +1942.00.00.a,1942,1942,Unprovoked,PANAMA,Panama City,Bella Vista Beach,Swimming,male,M,,"FATAL, body not recovered",Y,,,V.M. Coppleson (1958),1942.00.00.a-BellaVista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.a-BellaVista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.a-BellaVista.pdf,1942.00.00.a,1942.00.00.a,1490,, +1941.12.07,07-Dec-41,1941,Sea Disaster,SOUTH ATLANTIC OCEAN,,,Torpedoed & burning British light cruiser with a crew of 450 men,,,,"Only 170 survived, many of the crew were said to have been taken by sharks",Y,,"Reportedly: oceanic whitetip sharks, blue sharks, tiger sharks & bull sharks","F. Dennis, pp. 19-20; A. Resciniti, p.90",1941.12.07-SouthAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.07-SouthAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.07-SouthAtlantic.pdf,1941.12.07,1941.12.07,1489,, +1941.12.03,03-Dec-41,1941,Unprovoked,AUSTRALIA,Western Australia,Carnarvon,Swimming,Ron Graham,M,10,Right ankle bitten,N,Night,,"The West Australian, 12/11/1941",1941.12.03-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.03-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.03-Graham.pdf,1941.12.03,1941.12.03,1488,, +1941.11.27.b,27-Nov-41,1941,Sea Disaster,SOUTH ATLANTIC OCEAN,Off Libya,,HMAS Parramatta torpedoed & sunk by the U-559,Bill Nash,M,23,Right hand severed,N,,Tiger shark,"Canberra Times, 12/3/1941",1941.11.27.b-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.b-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.b-Nash.pdf,1941.11.27.b,1941.11.27.b,1487,, +1941.11.27.a,27-Nov-41,1941,Sea Disaster,SOUTH ATLANTIC OCEAN,Off Libya,,HMAS Parramatta torpedoed & sunk by the U-559,Gordon Annison,M,,Lacerations to chest,N,,Tiger shark,"Canberra Times, 12/3/1941",1941.11.27.a-Annison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.a-Annison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.a-Annison.pdf,1941.11.27.a,1941.11.27.a,1486,, +1941.11.24,25-Nov-41,1941,Sea Disaster,SOUTH ATLANTIC OCEAN,"North of Pernambuco, Brazil",,British cruiser Dunedin torpedoed & sunk by the U-124,,,,"418 perished, only 67 survived, some of the men were taken by sharks",Y,,,GSAF,1941.11.24-Dunedin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.24-Dunedin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.24-Dunedin.pdf,1941.11.24,1941.11.24,1485,, +1941.11.19,19-Nov-41,1941,Sea Disaster,AUSTRALIA,Western Australia,Shark Bay,German raider Kormoran was sunk in an engagement with HMAS Sydney,male from the Kormoran,M,,Leg bitten,N,,,"Canberra Times, 12/4/1941",1941.11.19-Kormoran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.19-Kormoran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.19-Kormoran.pdf,1941.11.19,1941.11.19,1484,, +1941.09.25,25-Sep-41,1941,Unprovoked,CARIBBEAN SEA,,125 nm north of Aruba,SS Ethel Skakel foundered in Central America Hurricane of 1941,Scotty,M,,Leg lacerated FATAL,Y,Night,,Washington Post. 10/2/1941,1941.09.25-Scotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.09.25-Scotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.09.25-Scotty.pdf,1941.09.25,1941.09.25,1483,, +1941.08.21.R,Reported 21-Aug-1941,1941,Provoked,USA,New York,Montauk,Fishing,Captain Jack Kelly,,,Laceration to left forearm from hooked shark PROVOKED INCIDENT,N,,,"New York Times, 8/21/1941",1941.08.21.R-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.21.R-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.21.R-Kelly.pdf,1941.08.21.R,1941.08.21.R,1482,, +1941.08.05,05-Aug-41,1941,Invalid,AUSTRALIA,New South Wales,Parramata River,Swimming,Ronald Dickerson,M,,Shark involvement prior to death unconfirmed,Y,,,"Canberra Times, 8/6/1941",1941.08.05-Dickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.05-Dickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.05-Dickerson.pdf,1941.08.05,1941.08.05,1481,, +1941.08.01,01-Aug-41,1941,Unprovoked,USA,South Carolina,Sullivan's Island at entrance to Charleston Harbor,Swimming at edge of channel,"Howard E. Sweatmon, a soldier",M,20,Chest lacerated,N,,,"V.M. Coppleson (1958), p.153; T. Helm, p.226; NY Times, 8/3/1941, p.28",1941.08.01-Sweatmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.01-Sweatmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.01-Sweatmon.pdf,1941.08.01,1941.08.01,1480,, +1941.07.22,22-Jul-41,1941,Boating,USA,New Jersey,"Brielle, Monmouth County (Offshore)",Fishing for tuna,"Fishing boat Bingo III , occupants: Michael Perkins, George Hornack & Capt. Lonergan ",,,"No injury to occupants, shark leapt into boat & bit cabin door",N,12h00,Mako shark,"N.Y Times, 7/23/1941; SAF Case #951",1941.07.23-boatBingo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.23-boatBingo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.23-boatBingo.pdf,1941.07.22,1941.07.22,1479,, +1941.07.01,01-Jul-41,1941,Provoked,USA,Hawaii,"Nankuli, O'ahu",Fishing,Hisao Shimoto,M,,Arm bitten while removing shark from fishing line PROVOKED INCIDENT,N,,100-lb shark,"G.H. Balazs & A.K.H. Kam; J. Borg, p.71; L. Taylor (1993), pp.98-99",1941.07.01-Shimoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.01-Shimoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.01-Shimoto.pdf,1941.07.01,1941.07.01,1478,, +1941.06.15,15-Jun-41,1941,Provoked,USA,New York,15 miles south of Jones Inlet,Fishing from 32' boat,Paul Ruhle,M,43,Left hand bitten as he tried to put rope around shark's tail PROVOKED INCIDENT,N,14h00,2.1 m [7'] shark,"New York Times, 6/16/1941; V.M. Coppleson (1958)",1941.06.15-Ruhle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.15-Ruhle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.15-Ruhle.pdf,1941.06.15,1941.06.15,1477,, +1941.06.00,Jun-41,1941,Sea Disaster,PACIFIC OCEAN,Off coast of Ecuador,Between Esmeraldas & Salinas,"Ditched aircraft, 3 men in the water. Swam for 31 hours",Colonel B. & Sub-Lieutenant D.,M,,"1 man survived & was rescued, sharks took the corpses of the two men that perished",Y,17h30,,"G.A. Llano in Airmen Against the Sea, pp.67-68; V.M. Coppleson (1962), p.257; A. Sharpe, pp.43-44; SAF Case #740",1941.06.00-Ecuador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.00-Ecuador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.00-Ecuador.pdf,1941.06.00,1941.06.00,1476,, +1941.03.24,24-Mar-41,1941,Sea Disaster,SOUTH ATLANTIC OCEAN,,750 miles off the African coast,The troopship Britannia was sunk by the German raider Thor,male,M,,Dr. A.R. Hernandez of ship Cabo Hornos treated passenger whose leg was severed by a shark,N,,,"NY Times, 4/4/1941 +",1941.03.24-Britannia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.24-Britannia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.24-Britannia.pdf,1941.03.24,1941.03.24,1475,, +1941.03.09,09-Mar-41,1941,Provoked,USA,California,"Santa Monica, Los Angeles County",Fishing,Frank Martinez,M,53,Right hand bitten by boated shark PROVOKED INCIDENT,N,Night,Mako shark (aka bonito shark) 1.2 m [4'] ,Press clipping dated 3/11/1941,1941.03.09-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.09-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.09-Martinez.pdf,1941.03.09,1941.03.09,1474,, +1941.02.13.,13-Feb-41,1941,Provoked,AUSTRALIA,New South Wales,Wollongong,Fishing,Robert See,M,34,Hand lacerated by hooked shark PROVOKED INCIDENT,N,,,"Canberra Times, 2/18/1941, p.4",1941.02.13-See.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.13-See.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.13-See.pdf,1941.02.13.,1941.02.13.,1473,, +1941.02.01,01-Feb-41,1941,Provoked,JAMAICA,Trelawney Province,Bogue (near Falmouth),Seine netting,Albert Buchanan,M,,"Left knee, calf & heel bitten by shark trapped in the net PROVOKED INCIDENT",N,07h30,,"Daily Gleaner, 2/3/1941, p. 1",1941.02.01-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.01-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.01-Buchanan.pdf,1941.02.01,1941.02.01,1472,, +1941.01.29,29-Jan-41,1941,Unprovoked,SOUTH ATLANTIC OCEAN,In Convoy OB 274,Off Sierra Leone,Rescuing seaman after ship sunk by German raider,David Hay,M,19,Clothing torn by sharks,N,19h55,,"The London Gazette, 7/8/1941",1941.01.29-Hay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.29-Hay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.29-Hay.pdf,1941.01.29,1941.01.29,1471,, +1941.01.00,Jan-41,1941,Sea Disaster,ATLANTIC OCEAN,,,Adrift on raft after their ship was sunk by an Axis raider ,a Scotsman & an Indian servant,M,,FATAL,Y,,,Lethbridge Herald. 11/17/1941,1941.01.00-Scotsman-Indian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.00-Scotsman-Indian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.00-Scotsman-Indian.pdf,1941.01.00,1941.01.00,1470,, +1941.00.00.h,1941,1941,Unprovoked,SOLOMON ISLANDS,New Georgia,Munda,Floating,male,M,,Buttock bitten,N,,,"Chapman, p.182",1941.00.00.h-Munda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.h-Munda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.h-Munda.pdf,1941.00.00.h,1941.00.00.h,1469,, +1941.00.00.f,1941,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Standing,a old fisherman,M,,FATAL,Y,Early morning,,"Lt. Col. R. S. Hunt, pp.80-81",1941.00.00.f-old-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.f-old-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.f-old-fisherman.pdf,1941.00.00.f,1941.00.00.f,1468,, +1941.00.00.e,1941,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,a local dignitary,M,,FATAL,Y,,,"Lt. Col. R. S. Hunt, pp.81-82",1941.00.00.e-local-dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.e-local-dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.e-local-dignitary.pdf,1941.00.00.e,1941.00.00.e,1467,, +1941.00.00.d,1941,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,a Gurkha soldier,M,,"Survived, but suffered a forequarter amputation",N,,,"Lt. Col. R. S. Hunt, p.80",1941.00.00.d-Gurkha-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.d-Gurkha-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.d-Gurkha-soldier.pdf,1941.00.00.d,1941.00.00.d,1466,, +1941.00.00.c,1941,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Slipped off rocks and fell into the water,boy,M,6,"FATAL, both arms bitten ",Y,,,"Lt.Col. R.S. Hunt, p.80",1941.00.00.c-small-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.c-small-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.c-small-boy.pdf,1941.00.00.c,1941.00.00.c,1465,, +1941.00.00.b,1941,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Standing,I.S.A.C. Ambulance driver,M,,FATAL,Y,,,"Lt.Col. R.S. Hunt, p.80",1941.00.00.b-IASCambulance-driver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.b-IASCambulance-driver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.b-IASCambulance-driver.pdf,1941.00.00.b,1941.00.00.b,1464,, +1941.00.00.a,1941,1941,Unprovoked,PAPUA NEW GUINEA,,"Gaire Village, between Rigo & Port Moresby",,Renagi Loi,M,14,"Foot severely bitten, surgically amputated",N,,,"V.M. Coppleson (1962), p.248",1941.00.00.a-RenagiLoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.a-RenagiLoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.a-RenagiLoi.pdf,1941.00.00.a,1941.00.00.a,1463,, +1940.12.28,28-Dec-40,1940,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Standing on sandbank,Clarence Hammond,M,23,"FATAL, injuries to lower back ",Y,09h00,,"J. Green, p.33; V.M. Coppleson (1958), p.235; G.P. Whitley (1951), p. 192",1940.12.28-Hammond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.28-Hammond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.28-Hammond.pdf,1940.12.28,1940.12.28,1462,, +1940.12.20,20-Dec-40,1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, South Coast",Swimming,Desmond Chandley,M,17,"FATAL, multiple injuries to legs & buttocks ",Y,10h00,,"R. Kahn, M. Levine, GSAF",1940.12.20-Chandley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.20-Chandley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.20-Chandley.pdf,1940.12.20,1940.12.20,1461,, +1940.12.19.R,Reported 19-Dec-1940,1940,Unprovoked,AUSTRALIA,Queensland,Double Island Beach,Fishing,Jack Ryan,M,,Minor injury to leg,N,,,"Soda Springs Sun, 12/19/1940",1940.12.19.R-JackRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.19.R-JackRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.19.R-JackRyan.pdf,1940.12.19.R,1940.12.19.R,1460,, +1940.12.10,10-Dec-40,1940,Provoked,AUSTRALIA,Northern Territory,Darwin,Collecting fish in military trap when bitten by captured shark that had been shot by soldiers with Garten,Private. Michael Garten,M,,Leg severely lacerated PROVOKED INCIDENT,N,,,"V.M. Coppleson; G.P. Whitley (1951), p. 192",1940.12.10-Garten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.10-Garten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.10-Garten.pdf,1940.12.10,1940.12.10,1459,, +1940.09.00,Sep-40,1940,Unprovoked,PANAMA,Panama Bay (Pacific Ocean),Otoque Island,Bathing,Roberto Menacho,M,18,FATAL,Y,,5.5 m [18'] shark,"V.M. Coppleson (1958), p.263",1940.09.00-Menacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.09.00-Menacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.09.00-Menacho.pdf,1940.09.00,1940.09.00,1458,, +1940.07.13.b,13-Jul-40,1940,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Standing,William Tanner,M,,Ankle bitten,N,,,"V.M. Coppleson (1958), p.253",1940.07.13.b-Tanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.b-Tanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.b-Tanner.pdf,1940.07.13.b,1940.07.13.b,1457,, +1940.07.13.a,13-Jul-40,1940,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Standing ,Harvey H. Haley (rescuer),M,,Struck by shark immediately before it bit Tanner (see below),N,,,"V.M. Coppleson (1958), p.253 ",1940.07.13.a-Haley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.a-Haley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.a-Haley.pdf,1940.07.13.a,1940.07.13.a,1456,, +1940.06.30,30-Jun-40,1940,Unprovoked,USA,North Carolina,"Holden Beach, Brunswick County",Fishing,William T. Dye,M,,Thigh lacerated,N,,3 m [10'] shark,"C. Creswell, GSAF; F. Schwartz, p.23",1940.06.30-Dye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.06.30-Dye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.06.30-Dye.pdf,1940.06.30,1940.06.30,1455,, +1940.03.31,31-Mar-40,1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Danger Pool, Winkelspruit, South Coast",Treading water,Joe Lees,M,25,"FATAL, right thigh & calf bitten ",Y,11h00,"White shark, species identity confirmed by tooth pattern","G. Cawston; H. Robson, M. Levine, GSAF",1940.03.31-Lees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.31-Lees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.31-Lees.pdf,1940.03.31,1940.03.31,1454,, +1940.03.20,20-Mar-40,1940,Unprovoked,AUSTRALIA,New South Wales,Gerringong,Free diving for lobster,Smiles Walker,M,,Minor injuries to foot,N,,Wobbegong shark,"Sydney Morning Herald, 3/21/1940; V.M. Coppleson (1962), p.251",1940.03.20-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.20-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.20-Walker.pdf,1940.03.20,1940.03.20,1453,, +1940.02.22,22-Feb-40,1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, South Coast",Swimming,Leslie Plummer Lund,M,17,"FATAL, left thigh & knee bitten ",Y,16h30,"White shark, 160-kg [353-lb], identity confirmed by tooth pattern","H. Robson, M. Levine, GSAF ",1940.02.22 - Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.22 - Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.22 - Lund.pdf,1940.02.22,1940.02.22,1452,, +1940.02.20,20-Feb-40,1940,Boating,AUSTRALIA,New South Wales,Sydney Harbour,Canoeing,"""a youth""",,,"No injury. Shark grazed canoe, snapped at a piece of mast being trailed in the water & followed it into 2' of water",N,15h30,,"G.P. Whitley, p.265",1940.02.20-canoe-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.20-canoe-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.20-canoe-Sydney.pdf,1940.02.20,1940.02.20,1451,, +1940.02.04,04-Feb-40,1940,Unprovoked,AUSTRALIA,New South Wales,"North Brighton, Botany Bay",Wading,John William Eke,M,55,"FATAL, injuries to both arms ",Y,14h00,,"V.M. Coppleson (1958), p.69; A. Sharpe, p.66",1940.02.04-Eke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.04-Eke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.04-Eke.pdf,1940.02.04,1940.02.04,1450,, +1940.01.29,29-Jan-40,1940,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Dived into the water,male,M,17,Shoulder nipped,N,,"""a small shark""","Morning Bulletin, 1/30/1929",1940.01.29-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.29-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.29-BrisbaneRiver.pdf,1940.01.29,1940.01.29,1449,, +1940.01.23,23-Jan-40,1940,Unprovoked,AUSTRALIA,New South Wales,"North Brighton, Botany Bay",Swimming,Maxwell Farrin,M,13,"FATAL, left leg severed ",Y,10h40,3 m [10'] shark,"V.M. Coppleson (1958), p.69; A. Sharpe, pp.65-66",1940.01.23-Farrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.23-Farrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.23-Farrin.pdf,1940.01.23,1940.01.23,1448,, +1940.01.15,15-Jan-40,1940,Unprovoked,AUSTRALIA,Queensland,"Surfers Paradise, near Southport",Swimming,Douglas Bright,M,22,Chest lacerated,N,Afternoon,,"V.M. Coppleson (1958), pp. 93 & 238",1940.01.15-Bright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.15-Bright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.15-Bright.pdf,1940.01.15,1940.01.15,1447,, +1940.01.07,07-Jan-40,1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Warner Beach, South Coast",Swimming ,Frederick Aubrey Hooper,M,18,"FATAL, leg & thigh bitten ",Y,16h00,2.4 m [8'] shark,"R. Guy, T. Jucker & M. Levine, GSAF ",1940.01.07-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.07-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.07-Hooper.pdf,1940.01.07,1940.01.07,1446,, +1940.01.01,01-Jan-40,1940,Unprovoked,AUSTRALIA,Queensland,"Malagil, Barrier Reef",Diving for trochus,native diver,M,,Thigh lacerated,N,,,"J. Green, p.33; V.M. Coppleson (1958), p.245",1940.01.01-native-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.01-native-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.01-native-diver.pdf,1940.01.01,1940.01.01,1445,, +1940.00.00.f,Ca. 1940,1940,Boating,SLOVENIA,Adriatic Sea,Koper,Boating,,,,"No inury to occupants, shark struck boat",N,, White shark,A. De Maddalena; M. Zuffa (pers. Comm.),1940.00.00.f-boat-Slovenia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.f-boat-Slovenia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.f-boat-Slovenia.pdf,1940.00.00.f,1940.00.00.f,1444,, +1940.00.00.e,1940,1940,Unprovoked,NEW GUINEA,Bwagaoia,"Bagalina, North coast Misima Island",,small girl,F,,FATAL,Y,,,"A. Bleakley; A. M. Rapson, p.148",1940.00.00.e-small-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.e-small-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.e-small-girl.pdf,1940.00.00.e,1940.00.00.e,1443,, +1940.00.00.d,1940,1940,Unprovoked,PAPUA NEW GUINEA,Western Papuan Gulf,Kerema ,male,a native,,,Hand bitten,N,,,"Papuan Villager, 11/1940",1940.00.00.d-Kerema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.d-Kerema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.d-Kerema.pdf,1940.00.00.d,1940.00.00.d,1442,, +1940.00.00.c,1940,1940,Invalid,SOUTH AFRICA,Eastern Cape Province,Kidd's Beach,Swimming,,,,No details,UNKNOWN,,,"D. Davies, p. 102",1940.00.00.c-KiddsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.c-KiddsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.c-KiddsBeach.pdf,1940.00.00.c,1940.00.00.c,1441,, +1940.00.00.b,1940,1940,Invalid,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,,Indian female,F,,FATAL,Y,,,"V.M. Coppleson (1958), p.247; SAF Case #161. Unable to authenticate this incident in local records or press reports.",1940.00.00.b-IndianFemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.b-IndianFemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.b-IndianFemale.pdf,1940.00.00.b,1940.00.00.b,1440,, +1940.00.00.a,1940,1940,Invalid,SOUTH AFRICA,Eastern Cape Province,"Kowie River Mouth, Port Alfred",Standing in water with child in her arms,female,F,,Leg bitten,N,,,"E. Skaife, V. M. Coppleson (1958), p.247; M. Levine, GSAF",1940.00.00.a-Woman-Kowie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.a-Woman-Kowie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.a-Woman-Kowie.pdf,1940.00.00.a,1940.00.00.a,1439,, +1939.12.28,28-Dec-39,1939,Invalid,AUSTRALIA,New South Wales,"Cabramatta Creek, Georges River ",Swimming,Percy Carroll,M,40,Abrasion above knee ,N,,6' shark,"V.M. Coppleson (1958), pp.44 & 234; SAF Case #39",1939.12.28-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.28-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.28-Carroll.pdf,1939.12.28,1939.12.28,1438,, +1939.12.14,14-Dec-39,1939,Unprovoked,AUSTRALIA,Queensland,"Rubbish Dump Creek, Mackay",Swimming ,Frank Gurran,M,20,"FATAL, left foot & right leg bitten, later surgically amputated ",Y,12h15,2.6 m [8.5'] shark landed 2 hours later,"Sydney Morning Herald, 12/15/1939; V.M. Coppleson (1958), p.238 ",1939.12.14-Gurran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.14-Gurran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.14-Gurran.pdf,1939.12.14,1939.12.14,1437,, +1939.11.23,23-Nov-39,1939,Boating,AUSTRALIA,New South Wales,Wollongong,,boat of Thomas Baker,,,No injury,N,,"Blue pointer, 16'","Northern Miner, 11/25/1939",1939.11.23-Wollongong-3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.23-Wollongong-3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.23-Wollongong-3.pdf,1939.11.23,1939.11.23,1436,, +1939.11.11,11-Nov-39,1939,Provoked,AUSTRALIA,New South Wales,Maroubra,,boat,,,Boat bitten by gaffed shark PROVOKED INCIDENT,N,,whaler shark,"G.P. Whitley, p.264",1939.11.11-boat-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.11-boat-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.11-boat-Maroubra.pdf,1939.11.11,1939.11.11,1435,, +1939.11.09,09-Nov-39,1939,Boating,AUSTRALIA,New South Wales,Wollongong,,another boat,,,No details,UNKNOWN,,,"G.P. Whitley, p.264",1939.11.09-boat-2-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.09-boat-2-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.09-boat-2-Wollongong.pdf,1939.11.09,1939.11.09,1434,, +1939.11.06,06-Nov-39,1939,Boating,AUSTRALIA,New South Wales,Wollongong,,boat,,,No details,UNKNOWN,,,"G.P. Whitley, p.264",1939.11.06-boat-1-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.06-boat-1-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.06-boat-1-Wollongong.pdf,1939.11.06,1939.11.06,1433,, +1939.11.02.R,Reported 02-Nov-1939,1939,Unprovoked,SAMOA,,,Fishing,a Samoan boy,M,,FATAL,Y,,,"Canberra Times, 11/2/1939",1939.11.02.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.02.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.02.R-Samoa.pdf,1939.11.02.R,1939.11.02.R,1432,, +1939.10.25.R,Reported 25-Oct-1939,1939,Unprovoked,AUSTRALIA,Queensland,Near Restoration Rock off Portland Roads ,"Free diving for trochus shell, swimming to dinghy",Small Cobbe,M,27,"Both thighs were lacerated, recovered at Thursday Island hospital",N,,"Tiger shark, 4.3 m [14'], 3 tooth fragments retrieved from his wounds","G.P. Whitley, p. 20; V.M. Coppleson (1958), p. 99",1939.10.25.R-Cobbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.25.R-Cobbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.25.R-Cobbe.pdf,1939.10.25.R,1939.10.25.R,1431,, +1939.10.04,04-Oct-39,1939,Unprovoked,USA,Hawaii,"Kane'ohe Bay, Mokapu, O'ahu",Spearfishing & had just speared a ulua,James Akina,M,,Hand bitten,N,,1.5 m [5'] shark,"G.H. Balazs & A.K.H. Kam; J. Borg, p.71; V.M. Coppleson (1962), p.253",1939.10.04-Akina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.04-Akina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.04-Akina.pdf,1939.10.04,1939.10.04,1430,, +1939.09.27.R,Reported 27-Sep-1939,1939,Unprovoked,AUSTRALIA,Torres Strait ,Near Mabuiag Island,Pearl diving,Sammy Mira,M,,"Leg severely bitten, surgically amputated",N,,Tiger shark,"Cairns Post, 9/27/1939",1939.09.27-Mira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.09.27-Mira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.09.27-Mira.pdf,1939.09.27.R,1939.09.27.R,1429,, +1939.08.01,01-Aug-39,1939,Provoked,USA,California,"Off San Pedro, Los Angeles County",Fishing,John Ray,M,33,Harpooned shark bit his arm PROVOKED INCIDENT,N,,,"L.A. Times, 8/11/1939",1939.08.01-Ray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.08.01-Ray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.08.01-Ray.pdf,1939.08.01,1939.08.01,1428,, +1939.07.18,18-Jul-39,1939,Sea Disaster,PACIFIC OCEAN,,,Japanese freighter Bokuyo Maru burned & sank,child,,3,Thought to have been taken by a shark,Y,,,"Syracuse Herald, 7/30/1939",1939.07.18-Child-B-Maru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.18-Child-B-Maru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.18-Child-B-Maru.pdf,1939.07.18,1939.07.18,1427,, +1939.07.16,16-Jul-39,1939,Provoked,BAHAMAS,Andros Islands,Blue Hole,"Dress diving, filming shark & pulling it through the water for a motion picture scene",E.F. MacEwan,M,38,Minor injury to shoulder & back PROVOKED INCIDENT,N,12h00,"Nurse shark, 2.1 m [7']","Evening Sun (Baltimore), 7/31/1939; E.R.F. Johnson",1939.07.16-MacEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.16-MacEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.16-MacEwan.pdf,1939.07.16,1939.07.16,1426,, +1939.07.14,14-Jul-39,1939,Provoked,USA,Texas,"West Bay, 19 miles from Galveston",Seine netting,John Bolling,M,,Leg bitten by snared shark PROVOKED INCIDENT,N,Morning,18' shark,"Galveston Daily News, 7/20/1939, p.4",1939.07.14-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.14-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.14-Bolling.pdf,1939.07.14,1939.07.14,1425,, +1939.05.03,03-May-39,1939,Unprovoked,USA,Virginia,"At sea, several hundred miles south east of Cape Henry, Virginia",Washed off freighter Huncliff by a freak wave,John Heagan,M,,"FATAL, attacked by shark, body not recovered ",Y,,,"L.A. Times, 5/7/1939; NY Times, 5/8/1939, p.18, col.1; V.M. Coppleson , p.253",1939.05.03-Heagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.05.03-Heagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.05.03-Heagan.pdf,1939.05.03,1939.05.03,1424,, +1939.04.12.R,12-Apr-39,1939,Unprovoked,PAPUA NEW GUINEA,Morobe Province,Bulolol,Dived for a coin,child,M,9,FATAL,Y,,,"Cairns Post, 4/12/1939",1939.04.12.R-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.04.12.R-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.04.12.R-Child.pdf,1939.04.12.R,1939.04.12.R,1423,, +1939.03.24,24-Mar-39,1939,Unprovoked,PAPUA NEW GUINEA,Central Province,Port Moresby,Dived for a coin,Raho-Heni,M,,"FATAL, leg severed just below hip ",Y,,"""a large shark""","The Papuan Villager, March 1939; G.P. Whitley, p.21",1939.03.24-Raho-Heni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.03.24-Raho-Heni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.03.24-Raho-Heni.pdf,1939.03.24,1939.03.24,1422,, +1939.02.26,26-Feb-39,1939,Provoked,NEW ZEALAND,North Island,Matakana River Mouth,Fishing,T. S. Ramsbottom,M,,Lacerations to left hand from hooked shark PROVOKED INCIDENT,N,,7' shark,"Auckland Star, 2/28/1939",1939.02.26-Ramsbottom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.02.26-Ramsbottom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.02.26-Ramsbottom.pdf,1939.02.26,1939.02.26,1421,, +1939.01.12,12-Jan-39,1939,Unprovoked,AUSTRALIA,New South Wales,Clarence River,Scooping prawns,Earl Yager & Riley McLachlan,M,Both 11,No injury,N,,7' shark,"G.P. Whitley, p.264",1939.01.12.R-ClarenceRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.01.12.R-ClarenceRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.01.12.R-ClarenceRiver.pdf,1939.01.12,1939.01.12,1420,, +1939.00.00.e,Woirld War II,1939,Sea Disaster,SRI LANKA,,,She was on a ship that was torpedoes & was in the water awaiting rescue,A W.R.E.N.,F,,Leg severely bitten,N,,,"V.M. Coppleson (1962), p.258",1939.00.00.e-WREN.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.e-WREN.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.e-WREN.pdf,1939.00.00.e,1939.00.00.e,1419,, +1939.00.00.d,Ca. 1939,1939,Boating,BAHAMAS,Andros Islands,Middle Bight,Fishing,"12' skiff, occupant: E.R.F. Johnson",,,"No injury to occupant, shark rammed bow of boat",N,,Tiger shark,E.R.F. Johnson,1939.00.00.d-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.d-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.d-skiff.pdf,1939.00.00.d,1939.00.00.d,1418,, +1939.00.00.c,1939,1939,Unprovoked,VENEZUELA,Carabobo,"El Falito, near Puerto Cabello",Bathing,male,M,,FATAL.,Y,,,H.E. Iverson,1939.00.00.c-Haberdasher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.c-Haberdasher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.c-Haberdasher.pdf,1939.00.00.c,1939.00.00.c,1417,, +1939.00.00.b,1939,1939,Unprovoked,CURACAO,Ascension Bay,,Diving,Hans Hass,M,,"No injury, left hip bumped by shark",N,,Tiger shark,"H. Hass in Diving To Adventure, p.169",1939.00.00.b-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.b-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.b-Hass.pdf,1939.00.00.b,1939.00.00.b,1416,, +1939.00.00.a,1939,1939,Unprovoked,PAPUA NEW GUINEA,"Abau Sub District, Central Province",Aroma Passage,Swimming to anchored boat,a male from Garvakala,M,,"Fatal, lower abdomen bitten",Y,,,"A. Bleakley; A. M. Rapson, p.148",1939.00.00.a-Garvakala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.a-Garvakala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.a-Garvakala.pdf,1939.00.00.a,1939.00.00.a,1415,, +1938.12.27,27-Dec-38,1938,Unprovoked,AUSTRALIA,New South Wales,"North Beach, Belligen River",Swimming,Daniel Graham,M,19,"FATAL, thought to have been taken by a shark ",Y,,,"G.P. Whitley, p.264",1938.12.27-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.12.27-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.12.27-Graham.pdf,1938.12.27,1938.12.27,1414,, +1938.10.05,05-Oct-38,1938,Provoked,AUSTRALIA,Queensland,Between Wynnum & St. Helena Island,Fishing,Jack Lopez,M,18,Laceration to left foot & ankle by netted shark PROVOKED INCIDENT,N,Afternoon,"Tiger shark, 6'","Cairns Post, 10/6/1938",1938.10.05-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.10.05-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.10.05-Lopez.pdf,1938.10.05,1938.10.05,1413,, +1938.08.29,29-Aug-38,1938,Unprovoked,CHINA,North China,"Outer harbor, Hong Kong",Swimming alongside warship Tsingt-ao,"Ulrick Baker or William M. Baker, a sailor from H.M.S. Folkestone",M,,"FATAL, leg severed ",Y,,,"New York Times (William Baker), 8/30/1938; [SAF Case #934]; V.M. Coppleson (1958), p.257; A. MacCormick, p.134",1938.08.29-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.29-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.29-Baker.pdf,1938.08.29,1938.08.29,1412,, +1938.08.18,18-Aug-38,1938,Provoked,USA,California,"Near Encino, Los Angeles County",Fishing,Warren William,M,,Lacerations to hand by hooked shark PROVOKED INCIDENT,N,,,"Washington Post. 8/19/1938, p.24",1938.08.18-WarrenWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.18-WarrenWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.18-WarrenWilliams.pdf,1938.08.18,1938.08.18,1411,, +1938.07.18,18-Jul-38,1938,Unprovoked,USA,South Carolina,Charleston,Swimming,Maynard Tanner,M,,Foot & ankle lacerated,N,,,"Kingsport Times, 7/18/1938",1938.07.18-MaynardTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.18-MaynardTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.18-MaynardTanner.pdf,1938.07.18,1938.07.18,1410,, +1938.07.17.R,Reported 17-Jul-1938,1938,Provoked,TURKEY,,,Fishing,Ahmed,M,,Injured by harpooned shark PROVOKED INCIDENT,N,,,"C. Moore, GSAF",1938.07.17.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17.R-Turkey.pdf,1938.07.17.R,1938.07.17.R,1409,, +1938.07.17,17-Jul-38,1938,Provoked,USA,California,"Dana Point, Orange County","Fishing, removing gaff from shark's mouth","Harry Griffet, passenger on fishing boat Flyer",M,27,Leg bitten by gaffed shark PROVOKED INCIDENT,N,,,"L.A. Times, 7/18/1938 ",1938.07.17-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17-Griffet.pdf,1938.07.17,1938.07.17,1408,, +1938.07.12,12-Jul-38,1938,Unprovoked,AUSTRALIA,Torres Strait,Off Bathurst Island,"Hardhat diving from Japanese pearling lugger, Reiyo Maru",Okada,M,25,"FATAL, dragged out of diving helmet ",Y,,,"G.P. Whitley, p.264; V.M. Coppleson (1958), p.244; Sydney Morning Herald, 7/12/1938",1938.07.12-Okada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.12-Okada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.12-Okada.pdf,1938.07.12,1938.07.12,1407,, +1938.06.17,17-Jun-38,1938,Unprovoked,NICARAGUA,Lower San Juan River,,"The schooner Elizabeth, bound from Bluefields, Nicaragua to the river port of San Carlos foundered",Elena Hodgson & Isaac Ollis,,,"FATAL x 2, all other passengers & crew reached shore after a long swim",Y,,Thought to involve bull sharks,"NY Times; L. Schultz & M. Malin, p.558",1938.06.17-Hodgson_Ollis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.17-Hodgson_Ollis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.17-Hodgson_Ollis.pdf,1938.06.17,1938.06.17,1406,, +1938.06.08,08-Jun-38,1938,Unprovoked,AUSTRALIA,New South Wales,Manly,Hardhat diving,Charles Edwards,M,,"No injury, the shark knocked him off his feet",N,,6' shark,"The Canberra Times, 6/10/1938",1938.06.08-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.08-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.08-Edwards.pdf,1938.06.08,1938.06.08,1405,, +1938.05.26,26-May-38,1938,Unprovoked,COSTA RICA,Nicoya Peninsula,,Fishing,Laureano Villareal,M,,"FATAL, pulled overboard by tuna, & bitten by shark ",Y,,,"V.M. Coppleson (1958), p.259 ",1938.05.26.R-Villareal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.26.R-Villareal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.26.R-Villareal.pdf,1938.05.26,1938.05.26,1404,, +1938.05.15,15-May-38,1938,Unprovoked,IRAQ,Basrah City,"Ashar Canal, where people wash clothes & kitchen pans","Swimming, naked",male,M,9 or 10,"Arm severed, but survived. Note: Some weeks later he was swimming at the same spot when a shark severed his right foot.",N,Afternoon,Bull shark,B.W. Coad & L.A.J. Al-Hassan,1938.05.15-Basrah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.15-Basrah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.15-Basrah.pdf,1938.05.15,1938.05.15,1403,, +1938.05.02.R,Reported 02-May-1938,1938,Unprovoked,INDIA,West Bengal,Hooghley River near Budge-Budge,Bathing,,,,"2 survived, 1 FATAL",Y,,,"The Times (London), 5/2/1938, p.15",1938.05.02.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.02.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.02.R-India.pdf,1938.05.02.R,1938.05.02.R,1402,, +1938.03.21.R,Reported 21-Mar-1938,1938,Unprovoked,FIJI,Viti Levu,Singatoka River,Wading,male,M,,unknown,N,,,"Time Magazine, 3/21/1938",1938.03.21.R-FijianMethodist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.21.R-FijianMethodist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.21.R-FijianMethodist.pdf,1938.03.21.R,1938.03.21.R,1401,, +1938.03.08,08-Mar-38,1938,Unprovoked,AUSTRALIA,Northern Territory,Liverpool River,Canoe capsized by shark,aboriginal male,M,,"Leg severed, but survived",N,,,"V.M. Coppleson (1958) (in text); Sydney Morning Herald, 3/16/1938",1938.03.08-Liverpool-River.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.08-Liverpool-River.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.08-Liverpool-River.pdf,1938.03.08,1938.03.08,1400,, +1938.01.21,21-Jan-38,1938,Provoked,AUSTRALIA,New South Wales,Tweed Heads,Fishing,Robert Corowa,M,,Thumb bitten by landed shark PROVOKED INCIDENT,N,," Tiger shark, 3'","Courier-Mail, 1/22/1938; Sydney Morning Herald 1/26/1938; Whitley, p.264",1938.01.21-Corowa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.21-Corowa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.21-Corowa.pdf,1938.01.21,1938.01.21,1399,, +1938.01.18,18-Jan-38,1938,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Vetchs Pier, Durban","Watching seine netters with friends, one of whom picked up a netted shark",George Parkin,M,13,Leg bitten PROVOKED INCIDENT,N,,,"M. Levine, GSAF",1938.01.18-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.18-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.18-Parkin.pdf,1938.01.18,1938.01.18,1398,, +1938.01.14,14-Jan-38,1938,Unprovoked,AUSTRALIA,New South Wales,"Lady Martins Beach, Sydney Harbor",Diving off jetty,Alan Murray,M,24,Superficial lacerations on feet & toes,N,Afternoon,Questionable incident,"The Canberra Times, 1/15/1938",1938.01.14-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.14-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.14-Murray.pdf,1938.01.14,1938.01.14,1397,, +1938.01.02,02-Jan-38,1938,Unprovoked,AUSTRALIA,New South Wales,Cronulla,Surf skiing,Ernest. S. Baker,M,,"No injury, ski bumped & he was thrown in the water. Ski had indentations",N,,,"Sydney Morning Herald, 1/3/1938; J. Green, p.33; V.M. Coppleson (1958), p.42 NOTE: Coppleson gives date as January 1937",1938.01.02-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.02-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.02-Baker.pdf,1938.01.02,1938.01.02,1396,, +1938.00.00.e.R,Reported 1938,1938,Unprovoked,EGYPT,,Mersa Matruh,Sponge diving,males,M,,FATAL,Y,,,"C. Moore, GSAF",1938.00.00.e.R-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.e.R-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.e.R-Egypt.pdf,1938.00.00.e.R,1938.00.00.e.R,1395,, +1938.00.00.d,1938,1938,Unprovoked,TRINIDAD & TOBAGO,Trinidad,"Manzanilla Bay, St. Andrew County",Body surfing,Donald Fraser Huggins,M,50,Left hand and arm bitten,N,,"""grey-colored shark""","E. Pace, FSAF",1938.00.00.d-Huggins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.d-Huggins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.d-Huggins.pdf,1938.00.00.d,1938.00.00.d,1394,, +1938.00.00.c,1938,1938,Provoked,USA,North Carolina,On one of the sounds near Wilmington,Fishing,"rowboat, occupant: Joe Whitted, Christopher Quevedo & 2 Willard Brothers",M,,"No injury, boat towed by harpooned shark, PROVOKED INCIDENT",N,,,"C. Creswell, GSAF; J. Hair, p.27",1938.00.00.c-Willards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.c-Willards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.c-Willards.pdf,1938.00.00.c,1938.00.00.c,1393,, +1938.00.00.b,1938,1938,Unprovoked,AUSTRALIA,Torres Strait,,Diving,Sammy,M,17,Leg severed above knee,N,,,"V.M. Coppleson (1958), p.245",1938.00.00.b-Sammy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.b-Sammy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.b-Sammy.pdf,1938.00.00.b,1938.00.00.b,1392,, +1938.00.00.a,1938,1938,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Bilanhlolo River Mouth, Ramsgate",Swimming,black male,M,,"""Mauled""",N,,,H. Greenwood,1938.00.00.a-blackmale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.a-blackmale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.a-blackmale.pdf,1938.00.00.a,1938.00.00.a,1391,, +1937.11.13,13-Nov-37,1937,Sea Disaster,USA,North Carolina,Off Cape Hatteraa,"Tzenny Chandris, a Greek freighter laden with scrap iron, foundered in heavy weather",3 crewmen,M,,FATAL ,Y,,,"Stevens Point Journal, 11/15/1937; TIME, 11/22/1937; Life Magazine, 11/29/1937",1937.11.13-Tzenny-Chandris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.13-Tzenny-Chandris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.13-Tzenny-Chandris.pdf,1937.11.13,1937.11.13,1390,, +1937.11.11,11-Nov-37,1937,Unprovoked,AUSTRALIA,Torres Strait ,Ota Reef,Diving for trochus,Nelan Kris,M,17,FATAL,Y,,12' shark,"J. Green, p.33; V.M. Coppleson (1958), p.244",1937.11.11-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.11-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.11-Kris.pdf,1937.11.11,1937.11.11,1389,, +1937.11.06.R,Reported 06-Nov-1937,1937,Sea Disaster,SOLOMON ISLANDS,,,"Two canoes with 14 aboard blown to sea in a storm. While adrift for 3 week, one person fell overboard and was killed by a shark",,M,,FATAL,Y,,,"The Argus, 11/6/1937",1937.11.06.R-Solomon-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.06.R-Solomon-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.06.R-Solomon-Islands.pdf,1937.11.06.R,1937.11.06.R,1388,, +1937.10.27.b,27-Oct-37,1937,Unprovoked,AUSTRALIA,Queensland ,"Kirra Beach, Coolangatta",Swimming ,Jack Brinkley,M,25,FATAL,Y,17h30,Tiger shark,"J. Green; V.M. Coppleson, pp.51, 81-84 & 234; A. Sharpe, pp.94-9 6; H. Edwards, pp.114-115",1937.10.27.b-Brinkley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.b-Brinkley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.b-Brinkley.pdf,1937.10.27.b,1937.10.27.b,1387,, +1937.10.27.a,27-Oct-37,1937,Unprovoked,AUSTRALIA,Queensland,"Kirra Beach, Coolangatta",Swimming ,Norman Girvan,M,18,FATAL,Y,17h30,"Tiger shark, 3.6 m [11'9""], 850-kg [1874-lb] female, contained Girvan's remains ","V.M. Coppleson, pp.51, 81-84 & 234; A. Sharpe, pp.94-96; H. Edwards, pp.114-115 ",1937.10.27.a-Girvanpub.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.a-Girvanpub.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.a-Girvanpub.pdf,1937.10.27.a,1937.10.27.a,1386,, +1937.10.24.c,24-Oct-37,1937,Unprovoked,AUSTRALIA,New South Wales,Byron Bay ,Swimming near jetty,Thomas McDonald,M,16,Tooth imprints on torso,N,,2.4 m [8'] shark,"The Age, 10/25/1937; V.M. Coppleson (1958), p.234",1937.10.24.b-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.b-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.b-McDonald.pdf,1937.10.24.c,1937.10.24.c,1385,, +1937.10.24.a,24-Oct-37,1937,Unprovoked,AUSTRALIA,New South Wales,Byron Bay ,Surf skiing,Glen Denning,M,,"No injury, repulsed shark",N,,2.6 m [8.5'] shark,"The Age, 10/25/1937; V.M. Coppleson (1958), p.234",1937.10.24.a-Denning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.a-Denning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.a-Denning.pdf,1937.10.24.a,1937.10.24.a,1384,, +1937.09.26.R,Reported 26-Sep-t937,1937,Provoked,CROATIA, Split-Dalmatia County,Bisk,Fishing,2 males,M,,Injured by shark they were trying to catch PROVOKED INCIDENT,N,,,"C. Moore, GSAF",1937.09.16.R-Omis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.16.R-Omis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.16.R-Omis.pdf,1937.09.26.R,1937.09.26.R,1383,, +1937.09.12,12-Sep-37,1937,Boating,SCOTLAND,Argyllshire,Arran,Pleasure boating,Clyde steamer Glen Sannox,,,"No injury to occupants, two 5-foot observation windows shattered",N,,Basking shark,Daily Mail (undated clipping); A Buttigieg ,1937.09.12-GlenSannox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.12-GlenSannox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.12-GlenSannox.pdf,1937.09.12,1937.09.12,1382,, +1937.09.11,11-Sep-37,1937,Boating,SCOTLAND,Arran,Fallen Rocks,Fishing,"boat: Lady Charlotte, occupants: C. McSporran & his crew",,,"No injury to occupants, propeller shaft damaged",N,,Basking shark,"Times (London), 9/13/1937; C. Creswell, GSAF",1937.09.11-LadyCharlotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.11-LadyCharlotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.11-LadyCharlotte.pdf,1937.09.11,1937.09.11,1381,, +1937.09.01,01-Sep-37,1937,Unprovoked,SCOTLAND,Argyll,"Carradale Bay, Kintyre Peninsula",Rowing,"Captain Angus Brown, his son & brother",M,,3 people drowned when the boat was capsized by the shark,N,,Basking shark,"Times (London), 9/2/1937; Fairfax, pp. 66-67",1937.09.01-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.01-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.01-Scotland.pdf,1937.09.01,1937.09.01,1380,, +1937.08.31,31-Aug-37,1937,Unprovoked,AUSTRALIA,Torres Strait,"Mabuiag Island, between New Guinea & Australia","Diving from the lugger San, operated by the Protector of the Aborigines",Iona Asai,M,38,"Head, neck & shoulder bitten (In 1918, he was also bitten by a shark off Cairns)",N,11h00,"Tiger shark, 9' to 10' ","The Maitland Daily Mercury, 8/31/1937",1937.08.31-IonaAsai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.31-IonaAsai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.31-IonaAsai.pdf,1937.08.31,1937.08.31,1379,, +1937.08.16,16-Aug-37,1937,Invalid,TURKEY,,Istanbul,Swimming,male,M,,"No injury, no attack",N,,,C. Moore,1937.08.16-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.16-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.16-Istanbul.pdf,1937.08.16,1937.08.16,1378,, +1937.08.02,02-Aug-37,1937,Unprovoked,PANAMA,Colon Province,Limon Bay,Swimming,Jorge Fernandez,M,21,FATAL,Y,,,"The Gleaner, 8/12/1937",1937.08.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.02-Fernandez.pdf,1937.08.02,1937.08.02,1377,, +1937.07.16.R,Reported 16-Jul-1937,1937,Unprovoked,AUSTRALIA,Northern Territory,Elcho Island,Pearl diving,A Japanese hard hat diver,M,,FATAL,Y,,,"Mansfield News-Journal, 7/16/1937, p.11",1937.07.16.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.16.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.16.R-JapaneseDiver.pdf,1937.07.16.R,1937.07.16.R,1376,, +1937.07.06,07-Jul-37,1937,Invalid,ITALY,Liguria,Borgeo Verezzi,,row boat: 2 occupants,,,No injury,N,,,C. Moore,1937.07.06-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.06-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.06-Italy.pdf,1937.07.06,1937.07.06,1375,, +1937.06.28.R,Reported 28-Jun-1937,1937,Unprovoked,GREECE,,Salonika?,,A. Arvanitakis ,,,FATAL,Y,,,C. Moore,1937.06.28.R-Salonika.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.28.R-Salonika.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.28.R-Salonika.pdf,1937.06.28.R,1937.06.28.R,1374,, +1937.06.15.b,15-Jun-37,1937,Provoked,AUSTRALIA,New South Wales,"Wallamba River, near entrance to Wallis Lake","Fishing from launch, fell into net with shark",David Emmerton,M,,Bitten by netted shark PROVOKED INCIDENT,N,,"Whaler shark, 4 m [13'] ","Sydney Morning Herald, 6/19/1937; V.M. Coppleson (1958) (in text); SAF Cases #549 & 550",1937.06.15.b-Emmerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.b-Emmerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.b-Emmerton.pdf,1937.06.15.b,1937.06.15.b,1373,, +1937.06.15, 15-Jun-1937,1937,Unprovoked,USA,Texas,Galveston,Swimming,"Hal A. Thompson, Jr.",M,14,FATAL,Y,Night,,"Amarillo Globe, 6/16/1937 ",1937.06.15.a-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.a-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.a-Thompson.pdf,1937.06.15,1937.06.15,1372,, +1937.05.30,30-May-37,1937,Provoked,USA,Texas,Galveston,Fishing,William Siskalo,M,,Leg nipped by hooked shark PROVOKED INCIDENT,N,,4' shark,"Galveston Daily News, 6/1/1937",1937.05.30-Siskalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.30-Siskalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.30-Siskalo.pdf,1937.05.30,1937.05.30,1371,, +1937.05.15,15-May-37,1937,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville","Refused permission to cross on the ferry, he was swimming across the river",William Tennant,M,33,"FATAL, left arm severed at elbow, right arm bitten, right leg severed at knee ",Y,Night,2 days later a 600-lb shark was caught 100 yards from the site,"V.M. Coppleson (1958), pp.90 & 238",1937.05.15-Tennant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.15-Tennant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.15-Tennant.pdf,1937.05.15,1937.05.15,1370,, +1937.03.26,26-Mar-37,1937,Invalid,AUSTRALIA,New South Wales,South Cronulla,Bathing,Austin Shaw,M,16,His body was recovered 2 days later but shark involvement prior to death was not confirmed,N,,,"Canberra Times, 3/29/1937, p.1",1937.03.26-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.26-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.26-Shaw.pdf,1937.03.26,1937.03.26,1369,, +1937.03.09,09-Mar-37,1937,Invalid,AUSTRALIA,Victoria,Port Melbourne,Swimming,Chief Petty Officer A. E. King,M,43,Shark involvement prior to death was not confirmed,Y,,,"Canberra Times, 3/10/1937;Sydney Morning Herald, 3/10/1937; Whitley, p.264",1937.03.09-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.09-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.09-King.pdf,1937.03.09,1937.03.09,1368,, +1937.02.13,13-Feb-37,1937,Unprovoked,AUSTRALIA,New South Wales,"Bar Beach, Newcastle",Swimming,John Welsh,M,32,"FATAL, buttocks, ankle & right elbow bitten ",Y,15h20,White shark,"V.M. Coppleson (1958), pp.77 & 234; A. Sharpe, p.84; J.West, ASAF",1937.02.13-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.13-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.13-Welsh.pdf,1937.02.13,1937.02.13,1367,, +1937.02.11,11-Feb-37,1937,Unprovoked,AUSTRALIA,New South Wales,Kempsey,Swimming ashore after launch capsized,Mr. Redman,,,Foot bitten,N,,,"Canberra Times, 2/12/1937",1937.02.11-Redman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.11-Redman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.11-Redman.pdf,1937.02.11,1937.02.11,1366,, +1937.02.04,04-Feb-37,1937,Boating,AUSTRALIA,New South Wales, Botany Bay ,Fishing,"a launch, occupants- Albert Cree & John Blacksall",,,"No injury to occupants, launch holed",N,03h00,,"Canberra Times, 2/5/1937",1937.02.04-BotanyBay-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.04-BotanyBay-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.04-BotanyBay-launch.pdf,1937.02.04,1937.02.04,1365,, +1937.02.03,03-Feb-37,1937,Provoked,AUSTRALIA,Queensland,Moreton Island,Fishing,Edgar Woodley,M,20,Left shoulder bitten by netted shark PROVOKED INCIDENT,N,,"3' ""blue nosed"" shark","G.P. Whitley, p.264",1937.02.03-Woodley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.03-Woodley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.03-Woodley.pdf,1937.02.03,1937.02.03,1364,, +1937.02.02,1937,1937,Invalid,AUSTRALIA,South Australia,Port Germein,12 of the Penang's crew were returning to the ship when their 12' dinghy capsized,"male, one of the crew of the Penang",M,,Shark involvement prior to death was not confirmed,Y,Night,"15' shark seen with the man's body in its mouth, but shark involvement prior to death was not confirmed","West Australian, 2/8/1937; G.P. Whitley",1937.02.02-Penang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.02-Penang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.02-Penang.pdf,1937.02.02,1937.02.02,1363,, +1937.01.27,27-Jan-37,1937,Provoked,AUSTRALIA,New South Wales,"Lake Conjola, near Milton",Holding shark's tail ,Raymond Hemsworth,M,18,Bitten on forearm PROVOKED INCIDENT,N,,"Grey nurse shark, 8'","Northern Standard, 1/29/1937",1937.01.27-Hemsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.01.27-Hemsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.01.27-Hemsworth.pdf,1937.01.27,1937.01.27,1362,, +1937.00.00,1937,1937,Unprovoked,AUSTRALIA,Torres Strait,,,"O'Leary, a Torres Strait islander",M,,Survived,N,,,"Rpt. Dept. Harb. Mar. (Qld), 1937, p.13; G.P. Whitley, p.264",1937.00.00-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.00.00-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.00.00-O'Leary.pdf,1937.00.00,1937.00.00,1361,, +1936.12.30,30-Dec-36,1936,Unprovoked,USA,Hawaii,"Honokohau, Maui","Diving, attempting to retrieve body of drowning victim wedged between rocks",John Kekuhi,M,,Thigh lacerated,N,,6 m [20'] shark,"J. Borg, p.71; L. Taylor (1993), pp.98-99",1936.12.30-Kekuhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.30-Kekuhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.30-Kekuhi.pdf,1936.12.30,1936.12.30,1360,, +1936.12.19,19-Dec-36,1936,Boating,AUSTRALIA,Queensland,Brisbane River,Sculling,"Racing scull, occupant: C.E. Slaughter, Queensland sculling champion",,,"No injury to occupant. Shark damaged scull, tooth fragments recovered",N,,3 m [10'] shark,"G.P. Whitley, p.264; V.M. Coppleson (1958), p. 187",1936.12.19-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.19-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.19-Slaughter.pdf,1936.12.19,1936.12.19,1359,, +1936.12.15,15-Dec-36,1936,Provoked,AUSTRALIA,New South Wales,Newcastle Harbor,Fishing for the shark that killed George Lundberg,"skiff, occupants: J. & A. Ayerst",,,Hooked shark bit rudder PROVOKED INCIDENT,N,,,"V.M. Coppleson (1958), pp.182-183",1936.12.15-boat-Ayerst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.15-boat-Ayerst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.15-boat-Ayerst.pdf,1936.12.15,1936.12.15,1358,, +1936.12.12,12-Dec-36,1936,Unprovoked,AUSTRALIA,New South Wales,"Throsby Creek, Newcastle",Swimming,George Lundberg,M,15,"FATAL, leg severed at knee",Y,11h30,,"V.M. Coppleson (1958), p.234",1936.12.12-Lundberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.12-Lundberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.12-Lundberg.pdf,1936.12.12,1936.12.12,1357,, +1936.12.01,01-Dec-36,1936,Boating,AUSTRALIA,Victoria,Mordialloc,Fishing,"Charles Swan, a returned soldier",M,50,"FATAL, his 2.4 m dinghy was found with 2' x 3' hole in its side & tooth fragments embedded in the planking",Y,,Thought to involve a 12' white shark,"The Age, 12/4/1936",1936.12.01-Swan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.01-Swan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.01-Swan.pdf,1936.12.01,1936.12.01,1356,, +1936.11.27,27-Nov-36,1936,Provoked,AUSTRALIA,Torres Strait,Near Thursday Island,Spearfishing ,Frank McDonnell,M,,Speared shark bit his hand PROVOKED INCIDENT,N,,0.9 m [3'] shark,"Whitley, p.264; V.M. Coppleson (1958), p.244",1936.11.27-McDonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.11.27-McDonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.11.27-McDonnell.pdf,1936.11.27,1936.11.27,1355,, +1936.09.04,04-Sep-36,1936,Unprovoked,USA,Hawaii,"Lahaina, Maui",Swimming,young male,M,,Leg lacerated,N,,,"J. Borg, p.71; L. Taylor (1993), pp.96-97",1936.09.04-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.09.04-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.09.04-Maui.pdf,1936.09.04,1936.09.04,1354,, +1936.08.24,24-Aug-36,1936,Unprovoked,AUSTRALIA,Torres Strait,Near Mabuiag Island,"Trochus diving, but floating on surface","Tala Lui, a Torres Strait islander",M,,Flexed right leg bitten,N,,Large tiger shark seen in the vicinity the following morning,"G.P. Whitley, p.264; V.M. Coppleson (1958), p.244",1936.08.24-TalaLui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.24-TalaLui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.24-TalaLui.pdf,1936.08.24,1936.08.24,1353,, +1936.08.11,11-Aug-36,1936,Provoked,CANADA,Newfoundland,Georges Bank,Fishing for cod,"a dory of the schooner Raymonde, occupants: Albion Muise, Peter Dousette & Jack Shannon",,,"No injury to occupants, hooked shark leapt onboard boat PROVOKED INCIDENT",N,,"Shovelnose shark, 6 m [20'] ","NY Times, 8/13/1936, p.25, col.6",1936.08.11-schoonerRaymonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.11-schoonerRaymonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.11-schoonerRaymonde.pdf,1936.08.11,1936.08.11,1352,, +1936.08.04,Reported 04-Aug-1936,1936,Unprovoked,AUSTRALIA,Torres Strait,Bathurst Island,Pearl diving,Japanese diver,M,,Torso bitten ,N,,,"Nortnern Standard, 8/4/1936",1936.08.04.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.04.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.04.R-PearlDiver.pdf,1936.08.04,1936.08.04,1351,, +1936.08.00,Aug-36,1936,Boating,USA,North Carolina,"Pamlico Sound off Frisco, Dare County",Fishing,"rowboat, occupants: James Mitchell-Hedges & Raymond McHenry",M,13,Shark rammed boat; no injury to occupants,N,,,"C. Creswell, GSAF",1936.08.00-PamlicoSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.00-PamlicoSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.00-PamlicoSound.pdf,1936.08.00,1936.08.00,1350,, +1936.07.25,25-Jul-36,1936,Unprovoked,USA,Massachusetts,"Hollywood Beach, just above Mattapoisett Harbor, Buzzards Bay",Swimming crawl stroke,"Joseph Troy, Jr",M,16,"FATAL, finger severed, thigh bitten He died during the surgical amputation of his leg ",Y,15h30,White shark (identified by Dr. Hugh Smith) ,"B. R. Tilden, M.D.; NY Times, 7/26/1936, p.2; E.W. Gudger (1950); V.M. Coppleson (1958), pp. 150 & 253; H.D. Baldridge, p. 35",1936.07.25-Troy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.25-Troy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.25-Troy.pdf,1936.07.25,1936.07.25,1349,, +1936.07.12,12-Jul-36,1936,Boating,USA,New Jersey,"Long Branch, Monmouth County (offshore)",Fishing for bluefish,"22' boat, occupants: Saul White & Charles Dillione",,,"No injury to occupants, shark leapt onboard boat",N,15h00,"Blue shark, 8' [2.4 m], 500-lb ","NY Times, 6/13/1936 ",1936.07.12-SaulWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.12-SaulWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.12-SaulWhite.pdf,1936.07.12,1936.07.12,1348,, +1936.07.07,07-Jul-36,1936,Unprovoked,AUSTRALIA,Torres Strait,Off Nepean Island,Diving,aboriginal male,M,,Survived? Admitted to Thursday Island Hospital,N,,,"V.M. Coppleson (1958), p.244",1936.07.07-aboriginal-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.07-aboriginal-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.07-aboriginal-diver.pdf,1936.07.07,1936.07.07,1347,, +1936.07.00,Jul-36,1936,Boating,SOUTH AFRICA,Western Cape Province,Cape Point,"Fishing, catching snoek, Thyrsites atun",10m boat Lucky Jim,,,"Shark leapt onboard & into fishwell, tossing a crew member, Pepino, in the sea",N,,,"T. Wallett, p.25",1936.07.00-LuckyJim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.00-LuckyJim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.00-LuckyJim.pdf,1936.07.00,1936.07.00,1346,, +1936.06.26,26-Jun-36,1936,Unprovoked,AUSTRALIA,Torres Strait,Nepean Island,"Diving for trochus , but swimming on surface","Willie, an aboriginal",M,16,FATAL,Y,,"Tiger shark, 2.4 m [8']","Sydney Morning Herald, 7/7/1936; V.M. Coppleson (1958), p.244",1936.06.26-Willie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.26-Willie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.26-Willie.pdf,1936.06.26,1936.06.26,1345,, +1936.06.06,06-Jun-36,1936,Unprovoked,USA,Florida,"Boca Ciega Bay, Pinellas County",Swimming,,M,,FATAL,Y,,,"Evening Independent, 6/8/1936",1936.06.06-BocaCiegaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.06-BocaCiegaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.06-BocaCiegaBay.pdf,1936.06.06,1936.06.06,1344,, +1936.04.22,22-Apr-36,1936,Unprovoked,AUSTRALIA,Queensland,Arlington Reef near Cairns,Diving for trochus,Guisne Oscoto (Japanese),M,16,"Arm & back bitten, heel lacerated",N,10h00,"Tiger shark, 4.6 m [15'] ","Sydney Morning Herald, 4/23/1936",1936.04.22-Oscoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.22-Oscoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.22-Oscoto.pdf,1936.04.22,1936.04.22,1343,, +1936.04.08,08-Ap-1936,1936,Unprovoked,AUSTRALIA,Queensland,Arlington Reef near Cairns,Diving,Ohta,,,Arm severed,N,,,"The Argus, 4/9/1936",1936.04.08-Ohta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.08-Ohta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.08-Ohta.pdf,1936.04.08,1936.04.08,1342,, +1936.03.30,30-Mar-36,1936,Provoked,USA,Florida,"Miami, Miami-Date County",Fishing,Bill Samsoe,M,,No injury. His hand entangled in line of hooked shark. He was pulled overboard & towed 150' PROVOKED INCIDENT ,N,,650-lb shark,"NY Times, 4/1/1936, p.27, col.1",1936.03.30-Samsoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.30-Samsoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.30-Samsoe.pdf,1936.03.30,1936.03.30,1341,, +1936.03.22,12-Mar-36,1936,Unprovoked,AUSTRALIA,Torres Strait,"Near Shelburne Bay, Queenland",Among 31 survivors of crew from the sampan Fukulya Maru (which reached Thursday Island in rowing boat) was a man whose arm had been bitten off by shark. The sampan wrecked west of McArthur island ,Japanese sailor,M,,Survived,N,,,"Coppleson (1958), p.244; The Argus, 4/9/1936",1936.03.22-Japanese-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.22-Japanese-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.22-Japanese-sailor.pdf,1936.03.22,1936.03.22,1340,, +1936.03.19,19-Mar-36,1936,Unprovoked,AUSTRALIA,Queensland,"Near Forbes Island, Barrier Reef",Diving for trochus,"Norman, an aboriginal",M,,Right forearm lacerated,N,,,"G.P. Whitley, p.263; V.M. Coppleson (1958), p.244",1936.03.19-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.19-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.19-Norman.pdf,1936.03.19,1936.03.19,1339,, +1936.03.04.,04-Mar-36,1936,Boating,AUSTRALIA,Northern Territory,Between Cape Hotham & Darwin (50 miles from Darwin),Rowing ,"dinghy, occupants: aborigine & lighthouse keeper",,,"No injury to occupants, shark almost wrenched oar from aborigine",N,,,"G.P. Whitley, p.263; V.M. Coppleson (1958), p.186",1936.03.04-CapeHotham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.04-CapeHotham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.04-CapeHotham.pdf,1936.03.04.,1936.03.04.,1338,, +1936.02.23,23-Feb-36,1936,Provoked,AUSTRALIA,New South Wales,"Angourie, near Yamba",Touching the mouth of a supposedly dead shark,Eva Cameron,F,young,Finger bitten PROVOKED INCIDENT,N,,,"Coppleson (1958), p. 176; G.P. Whitley, p.263",1936.02.23-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.23-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.23-Cameron.pdf,1936.02.23,1936.02.23,1337,, +1936.02.20..R,Reported 20-Feb-1936,1936,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Sculling,C.E. Slaughter,M,,"No injury, scull sank",N,,10' shark,"Nevada State Journal, 5/2/1936",1936.02.20.R-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.20.R-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.20.R-Slaughter.pdf,1936.02.20..R,1936.02.20..R,1336,, +1936.02.04,04-Feb-36,1936,Unprovoked,AUSTRALIA,New South Wales,"South Steyne, Manly",Swimming,David Paton,M,14,"FATAL, taken by shark, body not recovered. Twenty months later, in October 1937, meshing (setting anti-shark gill nets) began at metropolitan beaches",Y,15h00,White shark,"V.M. Coppleson (1958), pp.67 & 234; A. Sharpe, p.68; A. MacCormick, p.169; J. West, ASAF",1936.02.04-Paton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.04-Paton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.04-Paton.pdf,1936.02.04,1936.02.04,1335,, +1936.01.22,22-Jan-36,1936,Unprovoked,AUSTRALIA,South Australia,"West Beach, near Adelaide","Swimming. Passer-by, Len Bedford, heard him shriek , saw shark leap from the water & swimmer disappeared",Ray Bennett,M,13,FATAL ,Y,18h00,White shark,"Sydney Morning Herald, 1/23/1936; V.M. Coppleson (1958), pp.107 & 240; A. Sharpe, p.120; J. West, ASAF",1936.01.22-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.22-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.22-Bennett.pdf,1936.01.22,1936.01.22,1334,, +1936.01.05,05-Jan-36,1936,Invalid,AUSTRALIA,Queensland,"Main Beach, Southport",Surfing,Kevin Canavan,M,17,Disappeared & his torn clothing washed ashore,N,,Shark involvement prior to death was not confirmed,"Canberra Times, 1/7/1936; V.M. Coppleson, p.92-93",1936.01.05-Canavan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.05-Canavan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.05-Canavan.pdf,1936.01.05,1936.01.05,1333,, +1936.01.00,Jan-36,1936,Provoked,AUSTRALIA,New South Wales,North Bondi,Paddleskiing,Ken Howell,M,,"He tried to hit shark with paddle, shark bumped ski PROVOKED INCIDENT",N,,2.3 m [7'] shark,"V.M. Coppleson (1958), p.41",1936.01.00-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.00-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.00-Howell.pdf,1936.01.00,1936.01.00,1332,, +1936.00.00,1936,1936,Unprovoked,AUSTRALIA,Victoria ,"Port Phillip Bay, Port Melbourne",Swimming ,male,M,,FATAL ,Y,,,"J. Green, p.33; V.M. Coppleson (1958), p.241",1936.00.00-PortMelbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.00.00-PortMelbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.00.00-PortMelbourne.pdf,1936.00.00,1936.00.00,1331,, +1935.12.23,23-Dec-35,1935,Provoked,AUSTRALIA,Victoria,150 yards from the pier at Lorne,Cruising,16' motor launch owned by A. & E. Norton,,,"Harpooned shark stove in bow (20"" x 10"" hole), boat sank PROVOKED INCIDENT",N,,4.3 m [14'] shark,"V.M. Coppleson (1958), p.183",1935.12.23-NortonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.12.23-NortonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.12.23-NortonBoat.pdf,1935.12.23,1935.12.23,1330,, +1935.11.13,13-Nov-35,1935,Unprovoked,AUSTRALIA,Torres Strait,Barrier Reef near Innisfail,Diving?,"James Messot, a Thursday Islander",M,20,Back & arm gashed but survived,N,,,"NY Times, 11/16/1935; Sun (Sydney) 1/13/1936 (pictures of healed wounds); V.M. Coppleson (1958), p.244",1935.11.13-Messot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.11.13-Messot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.11.13-Messot.pdf,1935.11.13,1935.11.13,1329,, +1935.09.21,21-Sep-35,1935,Unprovoked,USA,North Carolina,"Browns Inlet on New River, Onslow Beach",Swimming,Jere W. Fountain,M,38,"FATAL, thigh bitten ",Y,20h30,," F. Schwartz, p.23; C. Creswell, GSAF",1935.09.21-Fountain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.21-Fountain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.21-Fountain.pdf,1935.09.21,1935.09.21,1328,, +1935.09.04.R,Reported 04-Sep-1935,1935,Unprovoked,PAPUA NEW GUINEA,Central Province,Hula,Swimming,Mailia Ola,M,,FATAL,Y,,,"Cairns Post, 9/24/1935",1935.09.04.R-Hula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.04.R-Hula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.04.R-Hula.pdf,1935.09.04.R,1935.09.04.R,1327,, +1935.08.26,26-Aug-35,1935,Unprovoked,AUSTRALIA,Queensland,"At Flat Top, near Mackay","Fell overboard, hanging onto lifebuoy",Patrick Quinn,M,38,"FATAL. His body was not recovered, but about 3 weeks later 2 sharks were caught with human remains, thought to be those of Quinn",Y,Night,3.7 m [12'] shark,"V.M. Coppleson (1958), p.22; G. P. Whitley",1935.08.26-Quinn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.26-Quinn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.26-Quinn.pdf,1935.08.26,1935.08.26,1326,, +1935.08.24,24-Aug-35,1935,Invalid,UNITED KINGDOM,Isle of Wight,Atherfield,Fishing,Percy Wadham,M,,"The hooked shark didn't cut his finger, he was injured by his line",N,,possibly a porbeagle shark,C. Moore; Isle of Wight Press,1935.08.24-Atherfield.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.24-Atherfield.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.24-Atherfield,1935.08.24,1935.08.24,1325,, +1935.08.13,13-Aug-35,1935,Unprovoked,AUSTRALIA,Torres Strait,"Near Warrior Reefs, Queensland",Diving for beche-de-mer from lugger,"Barani, a Papuan",M,,"FATAL, right buttock & thigh bitten ",Y,,,"J. Green, p.33; V.M. Coppleson (1958), p.243",1935.08.13 -Barani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.13 -Barani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.13 -Barani.pdf,1935.08.13,1935.08.13,1324,, +1935.07.27.b,27-Jul-35,1935,Invalid,USA,California,Santa Barbara Channel,fishing boat exploded & sank,Barney Wilkes,M,23,"Although listed as an uprovoked fatal attack by SAF, shark bite on his ankle was post-mortem following death by drowning",Y,,,"N.Y. Herald Tribune, 7/28/1935; D. Miller & R. Collier",1935.07.27-b-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27-b-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27-b-Wilkes.pdf,1935.07.27.b,1935.07.27.b,1323,, +1935.07.27.a,27-Jul-35,1935,Invalid,USA,California,Santa Barbara Channel,fishing boat exploded & sank,Dr. Alfred L. Wilkes ,M,53,"Although listed as an uprovoked fatal attack by SAF, he was killed by the explosion. The shark bites were post-mortem ",Y,,,"N.Y. Herald Tribune, 7/28/1935; D. Miller & R. Collier",1935.07.27.a-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27.a-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27.a-Wilkes.pdf,1935.07.27.a,1935.07.27.a,1322,, +1935.07.05,05-Jul-35,1935,Unprovoked,PANAMA,,off Culebra,"Fishing with dynamite, afterwards in water retrieving catch",Valentin Alonso,M,14,"FATAL, leg severed ",Y,,,"New York Times, 7/6/1935",1935.07.05-Alonso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.05-Alonso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.05-Alonso.pdf,1935.07.05,1935.07.05,1321,, +1935.07.01,01-Jul-35,1935,Unprovoked,CROATIA,Adriatic Sea,"Susak / Fiume (Rijeka, Istria)",Swimming,Mira Kudlich,F,22,FATAL,Y,15h00,,"C. Moore, GSAF",1935.07.01-Kudlich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.01-Kudlich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.01-Kudlich.pdf,1935.07.01,1935.07.01,1320,, +1935.06.18,18-Jun-35,1935,Unprovoked,USA,New Jersey,50 miles offshore,"Fishing for bluefish, shark leapt into dory",Captain Manuel Chalor of fishing trawler Nautilus,M,31,Arm lacerated by a shark that leapt onto boat ,N,,4.6 m [15'] shark,"NY Times, 6/19/1935, p.21 ",1935.06.18-Chalor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.18-Chalor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.18-Chalor.pdf,1935.06.18,1935.06.18,1319,, +1935.06.05.R,Reported 05-Jun-1935,1935,Unprovoked,SOLOMON ISLANDS,Makira-Uluwa Province,Makira Island,Fishing,a native,M,,FATAL,Y,,,"Sydney Mail, 6/5/1935",1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,1935.06.05.R,1935.06.05.R,1318,, +1935.06.00.b,Jun-35,1935,Boating,AUSTRALIA,South Australia,Off Port Broughton,,"A dinghy, occupant J.W. Wall",,,Shark bumped dinghy twice,N,,,"Australian Woman's Weekly, 8/27/1938",1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,1935.06.00.b,1935.06.00.b,1317,, +1935.06.00.a,Jun-35,1935,Unprovoked,PAPUA NEW GUINEA,Northern (Oro) Province,"Dobu Passage, D'Entrecasteaux Islands (between Normanby & Fergusson Islands)",,,,,"Samoan missionary, Filemani, caught an 8'6"" shark after it had killed 1 man & 2 boys in space of few weeks",N,,,"D.K. Webster, p.67",1935.06.00.a-Filemani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.00.a-Filemani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.00.a-Filemani.pdf,1935.06.00.a,1935.06.00.a,1316,, +1935.05.19,19-May-35,1935,Provoked,SOUTH AFRICA,KwaZulu-Natal,"North Pier, Durban",Put foot inside a landed & supposedly dead shark,"male, a spectator",M,,"Foot bitten, required 1 week hospitalization PROVOKED INCIDENT",N,,"White shark, 246-kg ","M. Levine, GSAF",1935.05.19-spectator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.19-spectator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.19-spectator.pdf,1935.05.19,1935.05.19,1315,, +1935.05.12,12-May-35,1935,Unprovoked,AUSTRALIA,Torres Strait,On edge of reef near Warrior Island,Pearl diving,"Andrew, a Torres Strait Islander",M,,3 gashes on hand & wrist,N,,1.8 m [6'] shark,"V.M. Coppleson (1958), pp.103 & 243",1935.05.12-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.12-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.12-Andrew.pdf,1935.05.12,1935.05.12,1314,, +1935.04.25,25-Apr-35,1935,Invalid,AUSTRALIA,New South Wales,Coogee,"Disappeared 11 days earlier, probable homicide victim","James Smith, murder victim",M,40,Captive shark regurgitated his arm in the Coogee Aquarium,N,,Tiger shark,"A. Sharpe, pp.28-32",1935.04.25-SharkArmCase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.25-SharkArmCase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.25-SharkArmCase.pdf,1935.04.25,1935.04.25,1313,, +1935.04.12.R,Reported 12-Apr-1935,1935,Unprovoked,,,,Diving,Pearl Purdy Scott,F,,Laceration to left leg,N,,,"Port Arthur News, 4/12/1935",1935.04.12.R-PearlPurdyScott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.12.R-PearlPurdyScott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.12.R-PearlPurdyScott.pdf,1935.04.12.R,1935.04.12.R,1312,, +1935.04.08.R,Reported 08-Apr-1935,1935,Unprovoked,USA,California,"Hermosa Beach, Los Angeles County",,A. R. Davis,M,,Laceration to hand ,N,,,"Los Angeles Times, 4/8/1935 ",1935.04.08.R-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.08.R-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.08.R-Davis.pdf,1935.04.08.R,1935.04.08.R,1311,, +1935.03.30,30-Mar-35,1935,Unprovoked,AUSTRALIA,Queensland,Barrier Reef off Mackay,Diving from dinghy for trochus shell,"Samuel, a Thursday islander",M,,Buttocks injured by fin or a bump ,N,Afternoon,,"G.P. Whitley citing the Sydney Morning Herald, 4/1/1935; 1951), G.P. Whitley (1951), page 192, Fide G.D. Wall, Mackay, 1946; J. Green, p.33; V.M. Coppleson (1958), pp.101 & 243",1935.03.30-Samuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.30-Samuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.30-Samuel.pdf,1935.03.30,1935.03.30,1310,, +1935.03.25.R,Reported 25-Mar-1935,1935,Provoked,SOUTH AFRICA,KwaZulu-Natal,"North Pier, Durban",Put foot inside mouth of supposedly dead shark,male,M,,Injury to foot PROVOKED INCIDENT,N,,,"Natal Coast Angler, 3/25/1935",1935.03.25.R-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.25.R-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.25.R-Durban.pdf,1935.03.25.R,1935.03.25.R,1309,, +1935.03.20,20-Mar-35,1935,Unprovoked,AUSTRALIA,Torres Strait,Three Mile Reef off Lizard Island 50 miles north of Cooktown,"Pearl diving, but standing in the water","Kosam, a Torres Strait Islander",M,,Left thigh abraded & 3 fingers lacerated,N,,Tiger shark 3 m [10'] ,"Sydney Morning Herald, 3/20/1935; V.M. Coppleson (1958), pp.102 & 243",1935.03.20-Kosam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.20-Kosam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.20-Kosam.pdf,1935.03.20,1935.03.20,1308,, +1935.03.13,13-Mar-35,1935,Provoked,AUSTRALIA,Queensland,Pimpana River,Hauling in net with shark in it,William Charles Beitz,M,38,Calf & shin bitten PROVOKED INCIDENT,N,,"""Blue nose shark""",G.P. Whitley,1935.03.13-Beitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.13-Beitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.13-Beitz.pdf,1935.03.13,1935.03.13,1307,, +1935.03.11,11-Mar-35,1935,Unprovoked,AUSTRALIA,New South Wales,Newcastle,Surfing,Eric McMichael,M,,Abrasions to shins,N,,,"Sydney Morning Herald, 3/11/1935",1935.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.11-McMichael.pdf,1935.03.11,1935.03.11,1306,, +1935.03.09,09-Mar-35,1935,Unprovoked,AUSTRALIA,New South Wales,Maroubra Beach,Swimming,Ernest MacDonald,M,27,"FATAL, left thigh, buttock, left forearm bitten, finger removed ",Y,12h30,"White shark, 4 m [13'] ","V.M. Coppleson (1958), pp.65, 233 & 234; A. Sharpe, pp. 64-65, G.P. Whitley, p.14; J. West, ASAF",1935.03.09-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.09-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.09-MacDonald.pdf,1935.03.09,1935.03.09,1305,, +1935.03.02,02-Mar-35,1935,Unprovoked,AUSTRALIA,New South Wales,North Narrabeen Beach,Standing,Herbert McFarlane,M,22,"FATAL, thigh bitten ",Y,17h30,"White shark, 3.5 m to 4 m [11.5' to 13'] ","Amarillo Globe, 6/21/1935, p.3; V.M. Coppleson (1958), pp.66-67 & 233; John West",1935.03.02-McFarlane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.02-McFarlane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.02-McFarlane.pdf,1935.03.02,1935.03.02,1304,, +1935.02.14,14-Feb-35,1935,Unprovoked,AUSTRALIA,New South Wales,Austinmer,Surfing (pneumatic surfboard),Darcy Lorenz,M,20,"Thigh lacerated, abrasions",N,17h30,,"V.M. Coppleson (1958), pp.45 & 233",1935.02.14-Lorenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.02.14-Lorenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.02.14-Lorenz.pdf,1935.02.14,1935.02.14,1303,, +1935.01.24.b,24-Jan-35,1935,Unprovoked,AUSTRALIA,New South Wales,"Off Ben Buckler, near Sydney",Fishing,William Johnson,M,,"No injury, sleeve ripped",N,,"Tiger shark, 12' ","G.P. Whitley, p.263",1935.01.24.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.b-Johnson.pdf,1935.01.24.b,1935.01.24.b,1302,, +1935.01.24.a,24-Jan-35,1935,Boating,AUSTRALIA,Queensland,"Ross River, Townsville",Fishing for sharks,flat-bottomed boat,,,No injury to occupants,N,,2 sharks,"G.P. Whitley, p.263",1935.01.24.a-Flat-bottomed-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.a-Flat-bottomed-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.a-Flat-bottomed-boat.pdf,1935.01.24.a,1935.01.24.a,1301,, +1935.01.21.R,Reported 21-Jan-1935,1935,Invalid,ISRAEL,Herzliyah,Sidny Ali,,,,,human remains washed ahore,F,,,"C. Moore, GSAF",1935.01.21.R-SidnyAli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.21.R-SidnyAli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.21.R-SidnyAli.pdf,1935.01.21.R,1935.01.21.R,1300,, +1935.01.17,17-Jan-35,1935,Invalid,AUSTRALIA,Queensland,"Seaforth River, near MacKay",,small boy,M,5,No injury; onlookers saw shark heading for him and lifted him ashore,N,,10' shark,"G.P. Whitley, p.263",1935.01.17-Seaforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.17-Seaforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.17-Seaforth.pdf,1935.01.17,1935.01.17,1299,, +1934.12.31.b,31-Dec-34,1934,Unprovoked,AUSTRALIA,New South Wales,Georges River at Kentucky,Splashing,Beryl Morrin,F,13,Hands severed,N,20h15,"Tiger shark, 1.5 m [5'] ","V.M. Coppleson (1958), pp.67 & 233; A. Sharpe, pp.90-91",1934.12.31.b-Morrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.b-Morrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.b-Morrin.pdf,1934.12.31.b,1934.12.31.b,1298,, +1934.12.31.a,31-Dec-34,1934,Unprovoked,AUSTRALIA,New South Wales," St. Georges River at Moorebank, near Milperra Bridge",Swimming (lead swimmer in race),Richard George Soden,M,19,"FATAL, left leg bitten ",Y,16h30,,"V.M. Coppleson (1958), pp.67 & 233; A. Sharpe, pp.89-90]",1934.12.31.a-Soden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.a-Soden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.a-Soden.pdf,1934.12.31.a,1934.12.31.a,1297,, +1934.12.23.b,23-Dec-34,1934,Unprovoked,AUSTRALIA,New South Wales,Woy Woy on the Brisbane Waters,Taken as he dived into the water,Roy Inman,M,14,FATAL,Y,13h00,,"V.M. Coppleson (1958), pp.85-86 & 233; A. MacCormick, p.172",1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,1934.12.23.b,1934.12.23.b,1296,, +1934.12.23.a,23-Oct-34,1934,Unprovoked,AUSTRALIA,New South Wales,Woy Woy on the Brisbane Waters,Swimming & splashing,Joyce Inman (Roys sister),M,12,Leg injured,N,13h00,,"J. Green, pp.10 & 33 corrects earlier accounts that gave the location as Queensland; V.M. Coppleson (1958), pp.85-86 & 233; A. MacCormick, p.172",1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,1934.12.23.a,1934.12.23.a,1295,, +1934.10.09,09-Oct-34,1934,Unprovoked,AUSTRALIA,Northern Territory,"Redcliff, Cobourg Peninsula",Bathing,aboriginal woman,F,38,FATAL,Y,,,"The Age, 10/27/1934;; V.M. Coppleson (1958), p.240",1934.10.09-Coburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.09-Coburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.09-Coburg.pdf,1934.10.09,1934.10.09,1294,, +1934.10.08,08-Oct-34,1934,Provoked,BERMUDA,Hamilton,Hamilton Parish,Fishing,McCallan,M,,Arm bitten by hooked shark PROVOKED INCIDENT,N,Night,,"The Gleaner, 10/16/1934",1934.10.08-McCallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.08-McCallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.08-McCallan.pdf,1934.10.08,1934.10.08,1293,, +1934.10.02,22-Oct-34,1934,Unprovoked,AUSTRALIA,Torres Strait,Warrior Reefs,Freediving for trochus shell (submerged),"David Younger, Torres Strait Islander",M,,"FATAL, forearm lacerated & surgically amputated, but died of gas gangrene 13 days afterwards ",Y,,," V.M. Coppleson (1958), pp.102-103",1934.10.02-Younger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.02-Younger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.02-Younger.pdf,1934.10.02,1934.10.02,1292,, +1934.09.08,08-Sep-34,1934,Provoked,BERMUDA,Hamilton,Nine miles off Frasconi Flats,Fishing,"Captain Earnest Gibbons, skipper of the cruiser Cupid",M,,Right foot bitten by shark caught & taken onboard by Mrs. Tucker North PROVOKED INCIDENT,N,,1.5 m [5'] shark,"NY Times, 9/10/193, p.10",1934.09.08-Gibbons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.09.08-Gibbons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.09.08-Gibbons.pdf,1934.09.08,1934.09.08,1291,, +1934.08.27,27-Aug-34,1934,Boating,ITALY,Sicily,Catania,Fishing on a boat,,M,,No injury to occupants,N,,"White shark, 4 m [13'] ",A. De Maddalena; Giudici & Fino (1989),1934.08.27-Catania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.27-Catania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.27-Catania.pdf,1934.08.27,1934.08.27,1290,, +1934.08.26.R,Reported 26-Aug-1934,1934,Invalid,ITALY / CROATIA,,Kralievica,Swimming,Zorca Prinz,F,,"Reported to be FATAL, but found to be a false report; there was no attack",N,,"White shark, 6 m [20']","C. Moore R. Roccini, GSAF; D. Baldridge, pp.15-16; A. De Maddalena; I. Fergusson (1996), L. Lipej (pers. Comm.)",1934.08.26.R-Prinz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26.R-Prinz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26.R-Prinz.pdf,1934.08.26.R,1934.08.26.R,1289,, +1934.08.26,26-Aug-34,1934,Unprovoked,AUSTRALIA,Queensland,Off Eva Island 20 miles from Cardwell,Dived into sea from launch & bitten immediately,Robert Steele,M,,"FATAL, body was not recovered",Y,,,"G.P. Whitley citing Sydney Morning Herald 8/27/1934; Sunday Mail (Brisbane) 11/18/1934; G.P. Whitley, p.262; J. Green, p.33;V.M. Coppleson (1958), p.238",1934.08.26-Steeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26-Steeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26-Steeke.pdf,1934.08.26,1934.08.26,1288,, +1934.08.21,21-Aug-34,1934,Unprovoked,CROATIA,Adriatic Sea,"Susak (Rijeka, Istria)",Swimming,Agnes Novak,F,18,FATAL,Y,,White shark,"NY Times, 7/10/1934, p.15; V.M. Coppleson (1958), p. 266; R. Rocconi; D. Baldridge, p.15; A. De Maddalena; Giudici & Fino (1989), De Maddalena (2000)",1934.08.21-Novak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.21-Novak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.21-Novak.pdf,1934.08.21,1934.08.21,1287,, +1934.08.05,05-Aug-34,1934,Unprovoked,USA,Georgia,"Thunderbolt, Chatham County",Swimming,"William Aimar, Jr.",M,11,Lacerations to right leg,N,,,"Cullman Democrat, 8.9/1934",1934.08.05-Aimar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.05-Aimar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.05-Aimar.pdf,1934.08.05,1934.08.05,1286,, +1934.07.11,11-Jul-34,1934,Boating,AUSTRALIA,New South Wales,Cronulla,Fishing,"18' boat, occupants William & Leslie Newton",N,,"No injury to occupants Sharks continually followed the dinghy, and one smashed its rudder ",N,,"Blue pointer, 11' ","G.P. Whitley, ref: Daily Telegraph, 7/11/1934 & Sydney Morning Herald 7/12/1934",1934.07.11-Newton-boat-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.07.11-Newton-boat-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.07.11-Newton-boat-Australia.pdf,1934.07.11,1934.07.11,1285,, +1934.06.21, 21-Jun-1934,1934,Provoked,AUSTRALIA,New South Wales,Off Mooloolabah,Fishing,Thomas Henry Durbridge,M,,Hand bitten while landing shark PROVOKED INCIDENT,N,Night,"A 6.5' ""blue-nosed shark""","Sydney Morning Herald, 6/23 & 6/25/1934 ",1934.06.21-Durnbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.21-Durnbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.21-Durnbridge.pdf,1934.06.21,1934.06.21,1284,, +1934.06.20,20-Jun-34,1934,Unprovoked,USA,Florida,"Melbourne, Brevard County",Standing,"Richard Clark Best, Jr.",M,8,FATAL,Y,,,"New York Herald Tribune, 6/21/1934 ",1934.06.20-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.20-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.20-Best.pdf,1934.06.20,1934.06.20,1283,, +1934.04.15,15-Apr-34,1934,Unprovoked,AUSTRALIA,Queensland,"Elephant Rock, Currumbin near Southport",Body surfing,Frank Ilett,M,34,Leg lacerated & punctured,N,09h30,,"V.M. Coppleson (1958), pp.92 & 238. Note: L. Schultz lists date as 1/15/1934 ",1934.04.15-Ilett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.15-Ilett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.15-Ilett.pdf,1934.04.15,1934.04.15,1282,, +1934.04.01.c,01-Apr-34,1934,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Grannys Pool, Winkelspruit",Swimming,Zulu male,M,,FATAL,Y,15h30,,"N. Doveton; M. Levine, GSAF",1934.04.01.c-young-black-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.c-young-black-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.c-young-black-male.pdf,1934.04.01.c,1934.04.01.c,1281,, +1934.04.01.b,01-Apr-34,1934,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Danger Pool, Winkelspruit",Swimming ,Alan Donald McArthur,M,12,Right thigh lacerated,N,12h00,,"A.D. McArthur, M. Levine, GSAF",1934.04.01.b-McArthur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.b-McArthur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.b-McArthur.pdf,1934.04.01.b,1934.04.01.b,1280,, +1934.04.01.a,01-Apr-34,1934,Unprovoked,AUSTRALIA,New South Wales,North Steyne,Swimming in waist-deep water ,Leon Ritson Hermes,M,15,"FATAL, right leg lacerated",Y,12h30,4.3 m [14'] shark seen in vicinity,"V.M. Coppleson (1958), p. 233 ",1934.04.01.a-Hermes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.a-Hermes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.a-Hermes.pdf,1934.04.01.a,1934.04.01.a,1279,, +1934.03.12,12-Mar-34,1934,Unprovoked,AUSTRALIA,New South Wales,"Dee Why, north of Queenscliff ",Swimming in hip-deep water,Frank Athol Riley,M,17,"FATAL, leg & buttocks removed ",Y,15h00,4 m [13'] shark seen in vicinity,"V.M. Coppleson (1958), pp.66 & 232; A. Sharpe, p.67",1934.03.12-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.12-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.12-Riley.pdf,1934.03.12,1934.03.12,1278,, +1934.03.00,Mar-34,1934,Provoked,AUSTRALIA,New South Wales,Cronulla,Fishing ,"18' launch, occupants: 2 fishermen",,,"No injury to occupants, hooked shark, snapped at rudder & then attacked boat PROVOKED INCIDENT",N,,"Mako shark, 3.7 m [12'] identified by tooth fragments by G.P. Whitley","V.M. Coppleson (1958), p.182; G.P. Whitley ",1934.03.00-Cronulla-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.00-Cronulla-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.00-Cronulla-boat.pdf,1934.03.00,1934.03.00,1277,, +1934.02.24,24-Feb-34,1934,Unprovoked,AUSTRALIA,Torres Strait,Adolphus Channel,Splashing in water ,"Rixon, an aboriginal",M,,"Lacerated knee & foot, deep puncture wounds",N,12h00,3.4 m [11'] tiger shark & a 5' shark,"V.M. Coppleson (1958), p.243",1934.02.24-Rixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.24-Rixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.24-Rixon.pdf,1934.02.24,1934.02.24,1276,, +1934.02.22,22-Feb-34,1934,Unprovoked,CHILE,Elqui Province,Coquimbo,Fell into the water,a soldier,M,,FATAL,Y,,,"Los Angeles Times, 2/23/1934, p.20",1934.02.22-Soldier-Chile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.22-Soldier-Chile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.22-Soldier-Chile.pdf,1934.02.22,1934.02.22,1275,, +1934.01.08.R,Reported 08-Feb-1934,1934,Boating,TURKEY,Istanbul,"Haydarpasa jetty, Istanbul",Fishing,2 males,M,,No injury,N,,,"C. Moore, GSAF",1924.02.08.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08.R-Turkey.pdf,1934.02.08.R,1934.02.08.R,1274,, +1934.01.27,27-Jan-34,1934,Unprovoked,AUSTRALIA,New South Wales,"Lambeth Street Wharf, Georges River, East Hills (20 miles from river mouth)",Swimming outside the safety enclosure attempting to retrieve a tennis ball drifting toward midstream ,Wallace John McCutcheon,M,15,"Bumped, chest bitten & badly injured",N,,,"V.M. Coppleson (1958), pp.67 & 232; A. Sharpe, p.89; J. Borg, p.89",1934.01.27-McCutcheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.27-McCutcheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.27-McCutcheon.pdf,1934.01.27,1934.01.27,1273,, +1934.01.07,07-Jan-34,1934,Unprovoked,AUSTRALIA,New South Wales,Queenscliff,Swimming on sandbar adjacent to channel,Colin Grant ,M,22,Severely lacerated right leg. Later surgically amputated & survived despite gas gangrene,N,15h30,4.3 m [14'] shark seen in area previous week,"V.M. Coppleson (1958), pp.65-66 & 232; A. Sharpe, pp.66-67 ",1934.01.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.07-Grant.pdf,1934.01.07,1934.01.07,1272,, +1933.11.20,20-Nov-33,1933,Unprovoked,AUSTRALIA,Torres Strait,Near Boydong Cay,Free diving for trochus ,"Bili, a Papuan",M,,"FATAL, right buttock & thigh bitten ",Y,,"Tiger shark, 3.4 m [11'] ","Cairns Post, 11/29/1933",1933.11.20-Bill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.20-Bill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.20-Bill.pdf,1933.11.20,1933.11.20,1271,, +1933.11.18,18-Nov-33,1933,Unprovoked,AUSTRALIA,Queensland,Near Barrow Point,Pearl diving,"Alfred Aniba, a Torres Strait Islander",M,17,"Hand badly injured, right arm surgically amputated above wrist",N,,Tiger shark,"V.M. Coppleson (1958), p.243",1933.11.18-AlfredAniba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.18-AlfredAniba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.18-AlfredAniba.pdf,1933.11.18,1933.11.18,1270,, +1933.10.25.R,Reported 25-Oct-1933,1933,Unprovoked,AUSTRALIA,Queensland,Off Bloomfield River,Diving,male,M,,Hand severed,N,,,"Courier-Mail, 10/25/1933",1933.10.25.R-BloomfieldRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.10.25.R-BloomfieldRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.10.25.R-BloomfieldRiver.pdf,1933.10.25.R,1933.10.25.R,1269,, +1933.09.27.R,Reported 27-Sep-1933,1933,Boating,ISRAEL,,Nabi Rubin,Fishing,2 males,M,,"One man bitten on thigh, another on arm",N,,3 sharks,"C. Moore, GSAF",1933.09.27.R-NabiRubin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.09.27.R-NabiRubin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.09.27.R-NabiRubin.pdf,1933.09.27.R,1933.09.27.R,1268,, +1933.08.28.b,28-Aug-33,1933,Provoked,USA,California,"Hermosa Beach, Los Angeles County","Fishing, caught a 15' shark & took it onboard",Nathaniel Myrick,M,,Severely lacerated arm PROVOKED INCIDENT,N,,"Blue shark, 4.5 m [14'9""]","D. Baldridge, p.90",1933.08.28.b-Myrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.b-Myrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.b-Myrick.pdf,1933.08.28.b,1933.08.28.b,1267,, +1933.08.28.a,28-Aug-33,1933,Unprovoked,USA,South Carolina,"Pawleys Island, north of Charleston",Bathing,Kenneth Layton,M,,Right heel & ankle bitten,N,,,"E.M. Burton; V.M. Coppleson (1958), pp.153 & 253",1933.08.28.a-Layton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.a-Layton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.a-Layton.pdf,1933.08.28.a,1933.08.28.a,1266,, +1933.08.26.R,Reported 26-Aug-1933,1933,Unprovoked,USA,Connecticut,Mystic River,Swimming,Helen Clarke,F,,Foot bitten,N,,,"Hartford Courant, 8/26/1933",1933.08.26.R-HelenClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.26.R-HelenClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.26.R-HelenClarke.pdf,1933.08.26.R,1933.08.26.R,1265,, +1933.07.07.R,Reported 07-Jul-1933,1933,Unprovoked,USA,California,"San Diego, San Diego County",,Tom Schaliniski,M,50,Survived,N,,Tiger shark,"Woodland Daily Democrat, 7/7/1933",1933.07.07-Shalininski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.07-Shalininski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.07-Shalininski.pdf,1933.07.07.R,1933.07.07.R,1264,, +1933.07.03,03-Jul-33,1933,Unprovoked,AUSTRALIA,Western Australia,Broome,Pearl diving,,M,,"No injury, shark tore diving suit",N,,,"Canberra Times, 7/6/1933",1933.07.03-Pearl-diver-Broome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.03-Pearl-diver-Broome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.03-Pearl-diver-Broome.pdf,1933.07.03,1933.07.03,1263,, +1933.06.21,21-Jun-33,1933,Unprovoked,USA,South Carolina,North end of Morris Island at mouth of Charleston Harbor,Sitting in 3' of water,Dayton Hastie,M,15,Right knee & left leg bitten,N,,Thought to involve a 2.4 m [8'] lemon shark; two 2.4 m lemon sharks caught within 100 yds of the site a week prior to & a week after this incident,"E. M. Burton (1935); V.M. Coppleson (1958), pp.152-153 & 252; Randall in Sharks and Survival, p.350; Note: A. Resciniti lists date as 21-Jul-1933",1933.06.21-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.21-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.21-Hastie.pdf,1933.06.21,1933.06.21,1262,, +1933.06.16,16-Jun-33,1933,Unprovoked,USA,South Carolina,"Folly Island, near Charleston",Standing,Emma G. Megginson,F,,Left calf bitten,N,,,E. M. Burton; Note: A. Resciniti lists date as 16-Jul-1933,1933.06.16-Megginson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.16-Megginson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.16-Megginson.pdf,1933.06.16,1933.06.16,1261,, +1933.06.13,13-Jun-33,1933,Invalid,AUSTRALIA,Northern Territory,Darwin,Fishing,Ah Cup,M,,"No injury, ""shark chased him ashore""",N,,,"V.M. Coppleson (1962), p.245",1933.06.13-Chinese-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.13-Chinese-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.13-Chinese-fisherman.pdf,1933.06.13,1933.06.13,1260,, +1933.05.24,24-May-33,1933,Sea Disaster,BARBADOS,St Michael Parish,Off Pelican Island,Yacht of Michael Howell capsized,9 people in the water,,,"5 survived & 4 perished, but shark involvement not confirmed",Y,,,"New York Times 5/26/1933; L. Schultz & M. Malin, p.558; SAF Case #931",1933.05.24-yacht-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.24-yacht-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.24-yacht-Barbados.pdf,1933.05.24,1933.05.24,1259,, +1933.05.23,23-May-33,1933,Provoked,AUSTRALIA,Queensland,Off Stradbroke Island,Fishing,Mr. E.B. Port,M,,Laceration to lower leg by netted shark PROVOKED INCIDENT,N,,7' to 8' shark,"Brisbane Courier, 5/24/1933",1933.05.23-Port.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.23-Port.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.23-Port.pdf,1933.05.23,1933.05.23,1258,, +1933.06.08.R,Reported 08-Jun-1933,1933,Unprovoked,AUSTRALIA,Queensland,Currumbin,Treading water,Walter Mitchell,M,,Lacerations to legs from fins of shark,N,,,"Townsville Daily Bulletin, 6/9/1933 ",1933.06.08-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.08-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.08-Mitchell.pdf,1933.06.08.R,1933.06.08.R,1257,, +1933.05.03,03-May-33,1933,Sea Disaster,CUBA,Havana Province,"Off Jaimanitas Yacht Club, Havana",Swimming to shore from capsized sailboat,Majin Alvarez Piedra,M,,FATAL,Y,,,"NY Times, May 4, 1933",1933.05.03-sailor_cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.03-sailor_cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.03-sailor_cuba.pdf,1933.05.03,1933.05.03,1256,, +1933.04.10,10-Apr-33,1933,Unprovoked,USA,Florida,"Miami Beach, Miami-Dade County",Swimming,Thomas N. Martin,M,24,FATAL,Y,,Possibly a bull shark or tiger shark,"New York Herald Tribune, 4/12/1933",1933.04.10-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.04.10-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.04.10-Martin.pdf,1933.04.10,1933.04.10,1255,, +1933.02.26,26-Feb-33,1933,Unprovoked,AUSTRALIA,New South Wales,Sydney,Standing on his hands,W. McCann,M,,Abrasions to legs,N,,10' shark,"Townsville Daily Bulletin, 2/27/1933",1933.02.26-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.26-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.26-McCann.pdf,1933.02.26,1933.02.26,1254,, +1933.02.15.R,Reported 15-Feb-1933,1933,Unprovoked,AUSTRALIA,Torres Strait,"Barrow Point, 100 miles north of Cooktown, Queensland",Diving for trochus from dinghy when seized by shark 6' below the surface,"Tumia, a Torres Strait Islander",M,,"Injuries to arm, shoulder & chest, took 2 days to reach hospital",N,,4.4 m [14'] shark,"La Crosse Tribune And Leader-Press, 5/15/1933; V.M. Coppleson.Q12. (1933); V.M. Coppleson, p.242",1933.02.15.R-Tumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.15.R-Tumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.15.R-Tumia.pdf,1933.02.15.R,1933.02.15.R,1253,, +1933.02.14,14-Feb-33,1933,Boating,AUSTRALIA,South Australia,Adelaide,,boat,,,No injury to occupants. Shark leapt into boat during sailing races,N,,,"G.P. Whitley citing Sydney Morning Herald, 2/16/1933",1933.02.14-Shark-leaps-in-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.14-Shark-leaps-in-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.14-Shark-leaps-in-boat.pdf,1933.02.14,1933.02.14,1252,, +1933.02.12,12-Feb-33,1933,Provoked,AUSTRALIA,South Australia,"Port River, Adelaide",Fishing,Donald Jukes,M,,Forearm injured by hooked shark PROVOKED INCIDENT,N,,Blue shark,"The Advertiser, 2/13/1933",1933.02.12-Jukes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.12-Jukes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.12-Jukes.pdf,1933.02.12,1933.02.12,1251,, +1933.01.04,04-Jan-33,1933,Unprovoked,AUSTRALIA,Queensland,"Strand Beach, Kissing Point, Townsville",Swimming,Stanley Victor Locksley,M,38,Severe abdominal wounds FATAL (Note: 14 days earlier a dog was bitten in two by a large shark),Y,17h30,,"V. M. Coppleson.Q11. (1933); V.M. Coppleson (1958), pp.90 & 238",1933.01.04-Locksley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.01.04-Locksley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.01.04-Locksley.pdf,1933.01.04,1933.01.04,1250,, +1932.12.11.R,Reported 11-Dec-1932,1932,Unprovoked,AUSTRALIA,Northern Territory,Arnhem Land,,,M,,Leg bitten,N,,,"Sunday Times (Perth), 12/11/1932 ",1932.12.11-ArnhemLand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.11-ArnhemLand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.11-ArnhemLand.pdf,1932.12.11.R,1932.12.11.R,1249,, +1932.12.09.R,Reported 09-Dec-1932,1932,Provoked,NEW ZEALAND,North Island,Mahurangi River Mouth,Fishing ,Mr. L. E. Brasting,M,,Laceration to hand PROVOKED INCIDENT,N,,,"New Zealand Herald, 12/9/1932",1932.12.09-Brasting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.09-Brasting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.09-Brasting.pdf,1932.12.09.R,1932.12.09.R,1248,, +1932.11.09,08-Nov-32,1932,Sea Disaster,CUBA,,,Hurricane & Tidal Wave,,,,,UNKNOWN,,,"Barrier Miner, 11/14/1932",1932.11.09-Hurricane-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.11.09-Hurricane-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.11.09-Hurricane-Cuba.pdf,1932.11.09,1932.11.09,1247,, +1932.10.31,31-Oct-32,1932,Unprovoked,AUSTRALIA,New South Wales,"Redhead Beach, Newcastle",Swimming,Reginald Ogilvie,M,24,"Torso bitten with pneumothorax, slight lacerations on left hand",N,11h00,Thought to involve a mako or grey nurse shark,"V.M. Coppleson.N19. (1933); V.M. Coppleson (1958), pp.80 & 232",1932.10.31-Ogilvie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.31-Ogilvie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.31-Ogilvie.pdf,1932.10.31,1932.10.31,1246,, +1932.10.11,11-Oct-32,1932,Unprovoked,CAPE VERDE,Barlavento Islands,So Vicente ,Swimming,Michele Ruck,M,27,FATAL,Y,,,"C. Moore, GSAF",1932.10.11-Ruck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.11-Ruck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.11-Ruck.pdf,1932.10.11,1932.10.11,1245,, +1932.09.26.R,Reported 26-Sep-1932,1932,Unprovoked,FIJI,Viti Levu Island,Navua,Catching a turtle,male,M,,Left arm severely bitten,N,,,"Queensland Times, 9/26/1932",1932.09.26.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.09.26.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.09.26.R-Fiji.pdf,1932.09.26.R,1932.09.26.R,1244,, +1932.08.30.b,30-Aug-32,1932,Provoked,AUSTRALIA,New South Wales,Bondi,,male,M,,Hand bitten by landed shark PROVOKED INCIDENT,N,,,G.P. Whitley,1932.08.30.b-male-Bondi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.b-male-Bondi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.b-male-Bondi.pdf,1932.08.30.b,1932.08.30.b,1243,, +1932.08.30.a,30-Aug-32,1932,Provoked,AUSTRALIA,New South Wales,Newcastle,,D. Bennett,M,,Bitten by landed shark PROVOKED INCIDENT,N,,,"G.P. Whitley; J. Green, p.32",1932.08.30.a-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.a-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.a-Bennett.pdf,1932.08.30.a,1932.08.30.a,1242,, +1932.08.10,10-Aug-32,1932,Provoked,USA,New Jersey,"Offshore, between Mantoloking & Point Pleasant, Ocean County",Fishing,John Olsen,M,,Hooked shark gashed right leg PROVOKED INCIDENT,N,,16' 800-lb shark,"Lime Springs Herald, 9/22/1932; R. Heyer",1932.08.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.10-Olsen.pdf,1932.08.10,1932.08.10,1241,, +1932.08.09,09-Aug-32,1932,Unprovoked,AUSTRALIA,Torres Strait,,Pearl diving,"Jack Giblett or Gilbert, Torres Strait Islander",M,,Bitten on buttock & leg,N,,,"J. Green, p.32; V.M. Coppleson (1958), p.242",1932.08.09-JackGiblett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.09-JackGiblett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.09-JackGiblett.pdf,1932.08.09,1932.08.09,1240,, +1932.08.06,06-Aug-32,1932,Provoked,BAHAMAS,New Providence Island,Nassau,On expedition filming a feature movie & standing on tripod,George Vanderbilt,M,18,"No injury, hooked shark rammed tripod PROVOKED INCIDENT",N,,,"New York Times, 8/7/1932 ",1932.08.06-Vanderbilt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.06-Vanderbilt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.06-Vanderbilt.pdf,1932.08.06,1932.08.06,1239,, +1932.07.14.R,Reported 14-Jul-1932,1932,Invalid,USA,Texas,Galveston,,male,M,17,Body recovered from shark but death due to shark bite was not confirmed,Y,,9' shark,IGFA,1932.07.14.R-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.14.R-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.14.R-Galveston.pdf,1932.07.14.R,1932.07.14.R,1238,, +1932.07.02,02-Jul-32,1932,Boating,CANADA,Bay of Fundy,16 km west of Digby Gut,"Fishing, hauling in fishing gear"," 7.6 m motorized boat, occupants: fisherman & his son",M,,"No injury to occupants, shark bumped boat repeatedly",N,,Teeth in hull identified as those from a white shark 4.6 m [15'] in length,Piers (1933),1932.07.02-Bay-of-Fundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.02-Bay-of-Fundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.02-Bay-of-Fundy.pdf,1932.07.02,1932.07.02,1237,, +1932.06.28,28-Jun-32,1932,Provoked,USA,New Jersey,"10 miles offshore from Sea Isle City, Cape May County",Fishing,Antonio Fonzzo,M,32,Knee bitten by boated shark PROVOKED INCIDENT,N,,"250-lb ""dog shark""","NY Times, 6/29/1932 ",1932.06.28-Fonzzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.28-Fonzzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.28-Fonzzo.pdf,1932.06.28,1932.06.28,1236,, +1932.06.26,26-Jun-32,1932,Provoked,USA,New Jersey,"Off Ocean City, Cape May County",Fishing,Giacomo Giavanco,M,,Ankle broken when 500-lb boated shark lashed him with its tail PROVOKED INCIDENT,N,,,"NY Times, 6/29/1932 ",1932.06.26-Giacomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.26-Giacomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.26-Giacomo.pdf,1932.06.26,1932.06.26,1235,, +1932.06.20,20-Jun-32,1932,Unprovoked,FIJI,Yasawa Islands,Nabukeru ,Free diving with goggles,Asena (female),F,,FATAL,Y,,,"V.M. Coppleson (1958), p.259",1932.06.20-Asena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.20-Asena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.20-Asena.pdf,1932.06.20,1932.06.20,1234,, +1932.05.12,12-May-32,1932,Unprovoked,AUSTRALIA,Torres Strait,Near Warrior Reefs,Pearl diving,"Henry Solomon, Cape York native",M,,FATAL,Y,,,"V.M. Coppleson (1958), p242",1932.05.12-HenrySolomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.12-HenrySolomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.12-HenrySolomon.pdf,1932.05.12,1932.05.12,1233,, +1932.05.00,May-32,1932,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Pearl diving,"Nishi, Japanese diver",M,,Severe injury to forearm near elbow,N,,,"J. Green, p.32; V.M. Coppleson (1958), p.242",1932.05.00-Nishi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.00-Nishi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.00-Nishi.pdf,1932.05.00,1932.05.00,1232,, +1932.04.16.b,16-Apr-32,1932,Unprovoked,PHILIPPINES,Manila,Fort Mills,Standing,male (civilian),M,,"FATAL, torso bitten ",Y,,,J.F. Corby,1932.04.16.b-civilian-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.b-civilian-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.b-civilian-male.pdf,1932.04.16.b,1932.04.16.b,1231,, +1932.04.16.a,16-Apr-32,1932,Unprovoked,PHILIPPINES,Manila,Fort Mills,Standing,female,F,,"FATAL, torso bitten ",Y,,,J. F. Corby,1932.04.16.a-Philippine-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.a-Philippine-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.a-Philippine-female.pdf,1932.04.16.a,1932.04.16.a,1230,, +1932.02.16,16-Feb-32,1932,Unprovoked,USA,Hawaii,"1 mile off Mala Wharf, Lahaina, Maui",Swimming,"William France, a sailor from U.S. Navy vessel Saratoga",M,,Two 6-inch lacerations,N,,,"San Antonio Light (San Antonio, Texas), 2/17/1932; J. Borg, p.71",1932.02.16-WilliamFrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.16-WilliamFrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.16-WilliamFrance.pdf,1932.02.16,1932.02.16,1229,, +1932.02.13,13-Feb-32,1932,Unprovoked,AUSTRALIA,Queensland,Calliope River,Fishing with dynamite,Eric Francis Beck,M,,Foot bitten,N,,,"Morning Bulletin, 6/5/1932",1932.02.13-Beck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.13-Beck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.13-Beck.pdf,1932.02.13,1932.02.13,1228,, +1932.02.08,08-Feb-32,1932,Unprovoked,PHILIPPINES,Manila,Fort Mills,Working near fish traps,Filipino soldier,M,,"FATAL, died next day at 03h00",Y,,,J.F. Corby,1932.02.08-PhilippineSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.08-PhilippineSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.08-PhilippineSoldier.pdf,1932.02.08,1932.02.08,1227,, +1932.01.27,27-Jan-32,1932,Unprovoked,AUSTRALIA,Queensland,Ipswich,Swimming,Charles Adams,M,,Thigh bitten,N,Afternoon,A small shark,"Brisbane Courier, 1/28/1932",1932.01.27-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.27-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.27-Adams.pdf,1932.01.27,1932.01.27,1226,, +1932.01.11,11-Jan-32,1932,Boating,AUSTRALIA,Victoria,Frankston,Fishing,boat,,,No details,UNKNOWN,,Grey nurse shark,G.P. Whitley citing Herald (Melbourne) 1/12/1932 ,1932.01.11-boatFrankston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.11-boatFrankston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.11-boatFrankston.pdf,1932.01.11,1932.01.11,1225,, +1932.01.06,06-Jan-32,1932,Provoked,MEXICO,Baja California,Descano Point,Fishing,Efrain Ybarra & Francisco Durazzo,M,36 & 23,Hooked shark capsized rowboat & the 2 men were drowned PROVOKED INCIDENT,Y,,,"NY Herald Tribune, 1/8/1933 ",1932.01.06-BajaFishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.06-BajaFishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.06-BajaFishermen.pdf,1932.01.06,1932.01.06,1224,, +1932.00.00,1932,1932,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Kowie River Mouth, Port Alfred",Collecting fish by lamplight in gully,Manning Samuels,M,23,"Right shin, calf and sole of foot lacerated",N,After dusk,"Raggedtooth shark, 1.2 m to 1.5 m [4' to 5'] ","R. Samuels, K. Reynolds & M. Levine, GSAF ",1932.00.00-Samuels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.00.00-Samuels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.00.00-Samuels.pdf,1932.00.00,1932.00.00,1223,, +1931.11.26,26-Nov-31,1931,Unprovoked,AUSTRALIA,Torres Strait,Barrier Reef near Innisfail,Diving for trochus from lugger,"Albert Mainlander, an aboriginal",M,45,Left foot acerated,N,,4 m [13'] shark,"The Argus, 11/28/1931; /V.M. Coppleson.Q10. (1933) ",1931.11.26-Mainlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.11.26-Mainlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.11.26-Mainlander.pdf,1931.11.26,1931.11.26,1222,, +1931.09.27,27-Sep-31,1931,Unprovoked,JAMAICA,,"East Beach, Kingsston",Diving off wharf,Wilbert Gibbs,M,Teen,FATAL,Y,12h00,,"The Gleaner, 9/29/1931",1931.09.27-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.27-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.27-Gibbs.pdf,1931.09.27,1931.09.27,1221,, +1931.09.21.b,21-Sep-31,1931,Unprovoked,USA,Florida,"Municipal Beach, West Palm Beach, Palm Beach County",Swimming,Sam Barrows,M,,Minor injury,N,,,"L. Schultz & M. Malin, p.534",1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,1931.09.21.b,1931.09.21.b,1220,, +1931.09.21.a,21-Sep-31,1931,Unprovoked,USA,Florida,"Municipal Beach, West Palm Beach, Palm Beach County",Swimming ,Gertrude Holiday,F,20,Right thigh & calf lacerated,N,,"Hammerhead shark, 2.4 m [8'], according to lifeguard Sam Barrows","E.W. Gudger (1937); V.M. Coppleson (1958), p.252; R. Skocik, pp.174-175",1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,1931.09.21.a,1931.09.21.a,1219,, +1931.09.02,02-Sep-31,1931,Invalid,USA,Hawaii,"Kahala, O'ahu",Fishing,George Gaspar,M,,"Swept out to sea by strong currents, his remains found in shark caught off Barbers Point",Y,,5.5 m [18'] shark,"G.H. Balazs & A.K.H. Kam; J. Borg, p.71; L. Taylor (1993), pp.96-97",1931.09.02-Gaspar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.02-Gaspar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.02-Gaspar.pdf,1931.09.02,1931.09.02,1218,, +1931.08.31,31-Aug-31,1931,Unprovoked,CUBA,Havana Province,"Vedado Baths, Miramar, Havana",Swimming,Manuel Romero,M,18,FATAL (Wire netting installed at local beaches after this incident.),Y,FATAL (Wire netting installed at local beaches after this incident.),,"NYTimes, 9/2/1931",1931.08.31-Romero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.31-Romero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.31-Romero.pdf,1931.08.31,1931.08.31,1217,, +1931.08.30,30-Aug-31,1931,Invalid,USA,Hawaii,,,Sadao Nakatus,M,,"""Mysteriously disappeared"" His body was found in a shark caught at Barber's Point on 01-Sep-1931",Y,,"18', 750-lb shark","Middlesboro Daily News, 9//2/1931",1931.08.30-Nakatus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.30-Nakatus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.30-Nakatus.pdf,1931.08.30,1931.08.30,1216,, +1931.08.27,27-Aug-31,1931,Boating,USA,New Jersey,"1 mile ESE of Navesink, Monmouth County",Fishing for bluefish,"boat, occupants: Nels Jacobson & Franklin Harriman Covert",,,No injury to occupants. Shark chasing fish struck boat,N,,,Press clipping dated 8/28/1931 ,1931.08.27-NaveskinShrewsbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.27-NaveskinShrewsbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.27-NaveskinShrewsbury.pdf,1931.08.27,1931.08.27,1215,, +1931.08.25,25-Aug-31,1931,Unprovoked,CUBA,Havana Province,"Miramar subdivision, Havana",Swimming a quarter mile offshore,Pablo Medina,M,23,"FATAL, right leg bitten ",Y,,,"New York Times, 8/27/1931, p.7; V.M. Coppleson (1962), p.246",1931.08.25-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.25-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.25-Medina.pdf,1931.08.25,1931.08.25,1214,, +1931.08.23,23-Aug-31,1931,Unprovoked,CUBA,Havana Province,"Miramar, Havana",Swimming ,Laureano Rodriguez,M,,"FATAL, ""rescuers saw shark trying to drag him under by the leg"" ",Y,,,"New York Times, 8/27/1931, p.7; V.M. Coppleson (1958), p.258",1931.08.23-Rodriguez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.23-Rodriguez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.23-Rodriguez.pdf,1931.08.23,1931.08.23,1213,, +1931.08.18,18-Aug-31,1931,Unprovoked,USA,Texas,Off Brownsville,Swimming,P. Kincaid Zifflewwiggett,M,,Minor injury,N,,,"Brownsville Herald, 8/19/1931",1931.08.18-Zifflewwiggett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.18-Zifflewwiggett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.18-Zifflewwiggett.pdf,1931.08.18,1931.08.18,1212,, +1931.08.06.R,Reported 06-Aug-1931,1931,Unprovoked,USA,New Jersey,"Sandy Hook (ocean side), Monmouth County",Swimming,"soldier, a private",M,,Survived,N,,,"New York Times, 8/6/1931",1931.08.06.R-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.06.R-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.06.R-soldier.pdf,1931.08.06.R,1931.08.06.R,1211,, +1931.08.01,01-Aug-31,1931,Unprovoked,AUSTRALIA,Queensland,Port Douglas,Fell overboard?,Llewellyn Roberts,M,,FATAL,Y,,,"Townsville Daily Bulletin, 8/4/1931",1931.08.01-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.01-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.01-Roberts.pdf,1931.08.01,1931.08.01,1210,, +1931.07.28.R,Reported 28-Jul-1931,1931,Unprovoked,FIJI,Viti Levu Island,Tamavua River,Swimming,Narnak,M,,Multiple injuries ,N,,small sharks,"Sydney Morning Herald, 8/12/1931",1931.07.28.R-Narnak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.28.R-Narnak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.28.R-Narnak.pdf,1931.07.28.R,1931.07.28.R,1209,, +1931.07.15,15-Jul-31,1931,Unprovoked,USA,New Jersey,"Sea Girt, Monmouth County",Swimming,soldier in NJ National Guard,M,,Nipped on leg,N,,,"Daily Courier, 7/21/1931",1931.07.15-SeaGirt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.15-SeaGirt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.15-SeaGirt.pdf,1931.07.15,1931.07.15,1208,, +1931.06.14,14-Jun-31,1931,Unprovoked,USA,Hawaii,"Pearl Harbor, O'ahu","Fishing, had just speared a ulua",male,M,,Survived,N,,,"V.M. Coppleson, p.260",1931.06.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.14-male.pdf,1931.06.14,1931.06.14,1207,, +1931.06.13,13-Jun-31,1931,Provoked,USA,Hawaii,"Pearl Harbor, O'ahu",Gaffing & attempting to bring onboard a harpooned shark,Lieutenant Williamson,M,,Tip of finger amputated PROVOKED INCIDENT,N,,"Tiger shark, 3 m [10']","G.H. Balazs; J. Borg, p.70; L. Taylor (1993), pp.96-97",1931.06.13-Williamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.13-Williamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.13-Williamson.pdf,1931.06.13,1931.06.13,1206,, +1931.06.04.R,Reported 04-Jun-1931,1931,Unprovoked,USA,Florida,"Key West, Monroe County ",Crabbing,"Frank Johnson, Jr.",M,,Lacerations to fingers,N,,6' shark,"Key West Citizen, 6/4/1931",1931.06.04.R-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.04.R-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.04.R-Johnson.pdf,1931.06.04.R,1931.06.04.R,1205,, +1931.05.02,02-May-31,1931,Boating,AUSTRALIA,New South Wales,Kempsey,,"pilot boat, occupants; Captain McAlister & crew",,,No injury to occupants; oar & rudder bitten,N,,"""a school of sharks""","Sydney Morning Herald, 6/5/1931; Whitley, p.262",1931.05.02-pilot-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.05.02-pilot-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.05.02-pilot-boat.pdf,1931.05.02,1931.05.02,1204,, +1931.04.27.R,Reported 27-Apr-1931,1931,Unprovoked,,French Southern Territories,le Saint-Paul,"Fishing, boat capsized",Quillezic,M,,FATAL,Y,,,"Los Angeles Times, 4/27/1931",1931.04.27.R-Quillezic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.04.27.R-Quillezic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.04.27.R-Quillezic.pdf,1931.04.27.R,1931.04.27.R,1203,, +1931.03.22,22-Mar-31,1931,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Fishing with a cast net,Arthur Tomida,M,19,"FATAL, left thigh severely bitten ",Y,,,"V. M. Coppleson.Q9. (1933); V.M. Coppleson (1958), pp.90 & 238",1931.03.22-Tomida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.22-Tomida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.22-Tomida.pdf,1931.03.22,1931.03.22,1202,, +1931.03.15,16-Mar-31,1931,Boating,TURKEY,,"Bakurky, Istanbul",Fishing,"Fishing boat. occupants: Laz Hseyin, Ali Osman & Tursun +",,,"No injury to occupants, shark crushed boat",N,,,"C. Moore, GSAF",1931.03.15-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.15-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.15-Turkey.pdf,1931.03.15,1931.03.15,1201,, +1931.03.06,06-Mar-31,1931,Provoked,AUSTRALIA,South Australia,Encounter Bay,"Fishing, hauling in net, shark in net",A. Ewen,M,,"Finger lacerated, PROVOKED INCIDENT",N,,"1.8 m [6'] ""cocktail shark","Whitley, p.262; V.M. Coppleson (1933)",1931.03.06-Ewen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.06-Ewen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.06-Ewen.pdf,1931.03.06,1931.03.06,1200,, +1931.02.10,10-Feb-31,1931,Invalid,AUSTRALIA,New South Wales,Maroubra Beach,Swimming ,Samuel Rosenthal,M,39,Death may have been due to drowning,Y,04h00,,"Examiner, 2/11/1931",1931.02.10-Rosenthal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.02.10-Rosenthal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.02.10-Rosenthal.pdf,1931.02.10,1931.02.10,1199,, +1931.01.24,24-Jan-31,1931,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,,native,M,,Recovered,N,,,"G.P. Whitley, p.262",1931.01.24-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.24-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.24-ThursdayIsland.pdf,1931.01.24,1931.01.24,1198,, +1931.01.14,14-Jan-31,1931,Unprovoked,AUSTRALIA,Torres Strait,,Pearl diving,"Albertus, a Malay",M,,"Thigh, kneecap & lower leg badly lacerated",N,,,"V.M. Coppleson (1958), p.242",1931.01.14-Albertus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.14-Albertus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.14-Albertus.pdf,1931.01.14,1931.01.14,1197,, +1931.01.07,07-Jan-31,1931,Unprovoked,AUSTRALIA,Queensland,"Yeppoon, near Ross Creek",Swimming,Stanley Roser,M,18,Severe bump & few superficial wounds ,N,16h00,1.5 m [5'] shark,"Canberra Times, 1/9/1931; V.M. Coppleson.Q8. (1933); V.M. Coppleson (1958), pp.91 & 237",1931.01.07-Roser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.07-Roser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.07-Roser.pdf,1931.01.07,1931.01.07,1196,, +1931.00.00.b,1931,1931,Unprovoked,TONGA,Niua ,Niuafo'ou Island ,"Swimming, carrying tin can with mail to steamer",male,M,,"FATAL, thereafter canoes were used to carry the mail",Y,,,"Clearfield Progress, 5/27/1931",1931.00.00.b-Tin-can-mail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.b-Tin-can-mail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.b-Tin-can-mail.pdf,1931.00.00.b,1931.00.00.b,1195,, +1931.00.00.a,1931,1931,Unprovoked,PAPUA NEW GUINEA,,,,"""3 shark attacks in 3 days""",,,No details,UNKNOWN,,,"V.M. Coppleson, p.49",1931.00.00.a-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.a-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.a-NewGuinea.pdf,1931.00.00.a,1931.00.00.a,1194,, +1930.12.25,25-Dec-30,1930,Unprovoked,AUSTRALIA,New South Wales,"Homebush Bay, Parramatta River, Sydney",Swimming,James Knight,M,49,"Bumped by shark, legs abraded",N,14h30,,"V.M. Coppleson (1933); V.M. Coppleson (1958), pp.44 & 232; A. Sharpe, p.17",1930.12.25-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.25-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.25-Knight.pdf,1930.12.25,1930.12.25,1193,, +1930.12.13,13-Dec-30,1930,Unprovoked,AUSTRALIA,New South Wales,"Sailor Bay, Middle Harbour, Sydney",Fell overboard,Frank Kenny,M,,FATAL,Y,,,"Northern Standard (Dawin), 12/18/1930",1930.12.13-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.13-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.13-Kenny.pdf,1930.12.13,1930.12.13,1192,, +1930.12.02,02-Dec-30,1930,Boating,AUSTRALIA,Victoria,Rosebud,Fishing,12' dinghy,,,No injury to occupants; shark seized gunwale & tried to overturn boat,N,,7 shark's teeth found embedded in the woodwork of the boat,"G.P. Whitley, p.262",1930.12.02-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.02-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.02-dinghy.pdf,1930.12.02,1930.12.02,1191,, +1930.12.00,Dec-30,1930,Unprovoked,AUSTRALIA,New South Wales,Parramata River,,male,M,,FATAL,Y,,,"H.D.Baldridge (1994), SAF Case #506",1930.12.00-ParamattaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.00-ParamattaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.00-ParamattaRiver.pdf,1930.12.00,1930.12.00,1190,, +1930.11.30,30-Nov-30,1930,Unprovoked,AUSTRALIA,Queensland,"St. Helena Island, Moreton Bay",Thrown into water from fishing dinghy,Moses Smith,M,,Laceration to leg,N,,,"Sydney Morning Herald, 12/1/1930 ",1930.11.30-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.11.30-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.11.30-Smith.pdf,1930.11.30,1930.11.30,1189,, +1930.09.26.R,Reported 26-Sep-1930,1930,Unprovoked,HONDURAS,Black River,,Swimming,Indian guide,M,,FATAL,Y,,,"NY Times, 9/26/1930",1930.09.26.R-IndianGuide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.26.R-IndianGuide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.26.R-IndianGuide.pdf,1930.09.26.R,1930.09.26.R,1188,, +1930.09.12.R,1930,1930,Boating,AZORES,,,,,,,"No inury to occupants, shark struck boat",N,,,"C. Moore, GSAF",1930.09.12.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.12.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.12.R-Azores.pdf,1930.09.12.R,1930.09.12.R,1187,, +1930.08.31,31-Aug-30,1930,Unprovoked,AUSTRALIA,Western Australia,Geraldton,Fishing,William Burton,M,17,Minor injury,N,15h30,,"Geraldton Guardian, 9/2/1930 ",1930.08.31-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.31-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.31-Burton.pdf,1930.08.31,1930.08.31,1186,, +1930.08.16,16-Aug-30,1930,Unprovoked,SPAIN,Canary Islands,"El Escabonal, Tenerife ",Swimming,Cecil Bethencourt,M,38,Leg bitten,N,,,C. Moore,1930.08.16-El-Escabonal-CanaryIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.16-El-Escabonal-CanaryIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.16-El-Escabonal-CanaryIslands.pdf,1930.08.16,1930.08.16,1185,, +1930.08.06,06-Aug-30,1930,Unprovoked,USA,Florida,"Palm Beach Inlet, Palm Beach County",Swimming,Captain W. Kemp,M,,Lacerations to foot & ankle,N,06h00,,"Palm Beach Post, 8/7/1930",1930.08.06-Kemp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.06-Kemp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.06-Kemp.pdf,1930.08.06,1930.08.06,1184,, +1930.07.19,19-Jul-30,1930,Unprovoked,CUBA,Havana Province,"LaPlaya Beach / Vedado, Havana",Swimming,Emilio Grenet ,M,29,"Right arm & leg bitten, arm & leg surgically amputated ",N,Evening,,"NY Times, 7/21/1930, p.7 & 8/27/1931; V.M. Coppleson (1958), p.258",1930.07.19-Grenet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.19-Grenet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.19-Grenet.pdf,1930.07.19,1930.07.19,1183,, +1930.07.11,11-Jul-30,1930,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Swimming,William Harns,M,21,Arm lacerated from shoulder to wrist,N,,Tiger shark,"NY Times, 7/13/1930, Section II, p.1, col.7; R.F. Hutton; V.M. Coppleson (1958), p.252",1930.07.11-Harns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.11-Harns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.11-Harns.pdf,1930.07.11,1930.07.11,1182,, +1930.06.04,04-Jun-30,1930,Unprovoked,AUSTRALIA,Torres Strait,Near Mabuiag Island,,"Ibigan, a Torres Strait islander",M,,FATAL,Y,,,"V.M. Coppleson (1958), p.242",1930.06.04-Ibigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.06.04-Ibigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.06.04-Ibigan.pdf,1930.06.04,1930.06.04,1181,, +1930.05.27,27-May-30,1930,Unprovoked,USA,Texas,High Island,Swimming / floating,A.B. Wattigney,M,,Lacerations to arm,N,18h00,,"Port Arthur News, 5/28/1930",1930.05.27-Wattigney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.27-Wattigney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.27-Wattigney.pdf,1930.05.27,1930.05.27,1180,, +1930.05.11.R,Reported 11-May-1930,1930,Boating,TURKEY,,Ye?ilky,Fishing,small boat. Occupants: 2 Englishmen,M,,No injury but shark damaged boat,N,,,"C. Moore, GSAF",1930.05.11.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11.R-Turkey.pdf,1930.05.11.R,1930.05.11.R,1179,, +1930.05.11,11-May-30,1930,Invalid,COSTA RICA,Limn Province,Off Porto Limon,Air disaster,,,,Shark involvement prior to death was not confirmed,Y,,,"Evening Independent, 5/12/1930",1930.05.11-Rovirosa-Sidar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11-Rovirosa-Sidar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11-Rovirosa-Sidar.pdf,1930.05.11,1930.05.11,1178,, +1930.04.08,08-Apr-30,1930,Invalid,SOUTH AFRICA,Eastern Cape Province,Bashee River,,male,M,17,Remains of drowning victim recovered from shark,Y,,"250-lb female ""blue fin"" shark",Dr. J.A. Du Toit,1930.04.08-BasheeRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.04.08-BasheeRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.04.08-BasheeRiver.pdf,1930.04.08,1930.04.08,1177,, +1930.03.07.R,Reported 07-Mar-1930,1930,Unprovoked,USA,Florida,70 miles off Tarpon Springs,Sponge diving,Speros Gigis,M,,No injury to diver but shark left 3 toothmarks in his helmet,N,,,"Evening Independent, 3/7/1930 ",1930.03.07.R-Giglis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.03.07.R-Giglis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.03.07.R-Giglis.pdf,1930.03.07.R,1930.03.07.R,1176,, +1930.02.20,20-Feb-30,1930,Unprovoked,AUSTRALIA,Torres Strait,,Pearl diving,Jerry,M,19,Arm & chest injured,N,,,"V.M. Coppleson (1958), p.242 ",1930.02.20-Jerry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.20-Jerry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.20-Jerry.pdf,1930.02.20,1930.02.20,1175,, +1930.02.15,15-Feb-30,1930,Unprovoked,AUSTRALIA,Victoria,"Middle Brighton, Port Phillip",Diving off pier & treading water,Norman Clark,M,18,FATAL,Y,16h30,White shark 4.9 m [16'] ,"V.M. Coppleson.V2.(1933); V.M. Coppleson (1958), pp.110 & 241; A. MacCormick, p.175; J. West, ASAF",1930.02.15-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.15-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.15-Clarke.pdf,1930.02.15,1930.02.15,1174,, +1930.02.03.R,Reported 03-Feb-1930,1930,Provoked,AUSTRALIA,Western Australia,Onslow,Removing shark from a trap,Mr. M. Donovan,M,,Laceration to thigh from trapped shark PROVOKED INCIDENT,N,,,"Geraldton Guardian and Express, 2/3/1930",1930.02.03.R-Donovan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.03.R-Donovan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.03.R-Donovan.pdf,1930.02.03.R,1930.02.03.R,1173,, +1930.01.22,22-Jan-30,1930,Boating,MEXICO,Veracruz,Panuco River Mouth,Fishing schooner Jose Luis foundered,,,,remains of one of the crew found in shark,Y,,,"Reno Evening Gazette, 2/14/1930",1930.01.22-FishingSchooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.22-FishingSchooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.22-FishingSchooner.pdf,1930.01.22,1930.01.22,1172,, +1930.01.16,16-Jan-30,1930,Unprovoked,SOUTH AFRICA,Western Cape Province,"Melkbaai, False Bay",Swimming,Servy LeRoux,M,23,Torso & arm bitten,N,17h30,"White shark, 4.5 m [14'9""], identity confirmed by witness & tooth pattern","A. LeRoux, M. Levine, GSAF; L. Green; G.Wilson",1930.01.16-le-Roux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.16-le-Roux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.16-le-Roux.pdf,1930.01.16,1930.01.16,1171,, +1930.01.00,Jan-30,1930,Sea Disaster,MAURITIUS,,Two miles from shore in Tamarind Bay,Swimming to shore after a squall capsized their motorized shark fishing boat,"males, shark fishermen",M,,Five men were said to have been killed by sharks ,Y,,,"NY Times, 1/14/1930, p.8, col.3; V.M. Coppleson (1958), p.261",1930.01.00-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.00-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.00-Mauritius.pdf,1930.01.00,1930.01.00,1170,, +1930.00.00.c,1930,1930,Unprovoked,OKINAWA,,,,Hyoyu Kadena,M,17,Survived,N,,,Wonderokinawa.com,1930.00.00.c-Kadena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.c-Kadena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.c-Kadena.pdf,1930.00.00.c,1930.00.00.c,1169,, +1930.00.00.a,1930,1930,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"North End Beach, Port Elizabeth",Swimming,Mr. Meyer,M,,FATAL,Y,,,H. Monsen,1930.00.00.a-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.a-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.a-Meyer.pdf,1930.00.00.a,1930.00.00.a,1168,, +1929.12.26,26-Dec-29,1929,Unprovoked,AUSTRALIA,New South Wales,"White Bay, near Bald Rock Jetty, Sydney Harbor ",Diving by wharf,William Oakley,M,16,"FATAL, left arm severed above elbow, lacerations on chest, right thumb severed, left thigh lacerated to bone, abrasions ",Y,,Tiger shark,"V.M. Coppleson.N3.(1933); V.M. Coppleson (1958), p.232; G.A. Llano, pp. 170-171",1929.12.26-Oakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.26-Oakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.26-Oakley.pdf,1929.12.26,1929.12.26,1167,, +1929.12.21,21-Dec-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Diving,male,M,,Recovered at Thursday Island Hospital,N,,,L. Schultz & M. Malin ref. SAF Case #510,1929.12.21-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.21-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.21-ThursdayIsland.pdf,1929.12.21,1929.12.21,1166,, +1929.12.16,16-Dec-29,1929,Unprovoked,AUSTRALIA,New South Wales,Collaroy,Bathing or body surfing ,Nancy Thom,F,17,Superficial lacerations on right leg,N,,"""a small shark""","V.M. Coppleson.N10. (1933); V.M. Coppleson (1958), pp.112 & 232. Note: In 1933 Coppleson gives the date of 16-Jan-1929 but revised it to 16-Dec-1929 in later works",1929.12.16-Thom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.16-Thom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.16-Thom.pdf,1929.12.16,1929.12.16,1165,, +1929.12.13,13-Dec-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Pearl diving,"Nago, a Japanese diver",M,,Injuries to chest & arm,N,,,"J. Green, p.32; V.M. Coppleson (1958), p.242",1929.12.13-Nago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.13-Nago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.13-Nago.pdf,1929.12.13,1929.12.13,1164,, +1929.12.03.R,Reported 03-Dec-1929,1929,Unprovoked,AUSTRALIA,Queensland,Townsville,,male,M,50s,FATAL,Y,,,"Brisbane Courier, 12/3/1929",1929.12.03.R-Unidentified.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.03.R-Unidentified.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.03.R-Unidentified.pdf,1929.12.03.R,1929.12.03.R,1163,, +1929.11.29,29-Nov-29,1929,Sea Disaster,KIRIBATI,Phoenix Islands,Nikumaroro Island,"Sea Disaster, wreck of the SS Norwich City",,,,"11 of her crew perished, most, possibly all, deaths were due to drowning",Y,,,"Hartford Courant, 2/15/1930",1929.11.29-NorwichCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.29-NorwichCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.29-NorwichCity.pdf,1929.11.29,1929.11.29,1162,, +1929.11.21,21-Nov-29,1929,Unprovoked,CUBA,Cienfuegos Province,Cienfuegos,Fishing,Gamatano Yugoago,M,,"Shark attacked his boat, threatening to capsize it. He jumped overboard & shark bit his arm. He knifed & killed shark. Later his arm was surgically amputated",N,,,"New York Times, 11/28/1929",1929.11.21-Yugoago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.21-Yugoago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.21-Yugoago.pdf,1929.11.21,1929.11.21,1161,, +1929.10.20,20-Oct-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Near Badu Island,Pearl diving,Lifu,M,,Heel injured,N,,,"V.M. Coppleson (1958), p.242",1929.10.20-Lifu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.20-Lifu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.20-Lifu.pdf,1929.10.20,1929.10.20,1160,, +1929.10.02,02-Oct-29,1929,Unprovoked,SPAIN,Valencia,Nasareth Beach,Fishing ,Vicente Bonet,M,,Arm injured when sharks rammed his boat,N,,,C. Moore,1929.10.02-Bonet-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.02-Bonet-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.02-Bonet-Valencia.pdf,1929.10.02,1929.10.02,1159,, +1929.09.01,01-Sep-29,1929,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Fell from wharf into water & attacked immediately,Edward William Hobbs,M,42,"FATAL, severe injuries to both legs ",Y,,,"V.M. Coppleson.Q7. (1933); V.M. Coppleson (1958), pp.90 & 237; A. Sharpe, p.96",1929.09.01-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.09.01-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.09.01-Hobbs.pdf,1929.09.01,1929.09.01,1158,, +1929.08.05,05-Aug-29,1929,Unprovoked,USA,South Carolina,Fort Moultrie,Bathing,"Robert W. McGhee, Private 1st Class, 8th Infantry",M,,Left foot & ankle bitten,N,,,"Clay Creswell, GSAF",1929.08.05-McGhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.08.05-McGhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.08.05-McGhee.pdf,1929.08.05,1929.08.05,1157,, +1929.07.29,29-Jul-29,1929,Unprovoked,MEXICO,Tamaulipas,Tampico,Swimming,Crew member of Casanova,M,,Right leg severed below knee,N,,,"V.M. Coppleson (1958), p.262",1929.07.29-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.29-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.29-Casanova.pdf,1929.07.29,1929.07.29,1156,, +1929.07.17.R,Reported 17-Jul-1929,1929,Invalid,CAPE VERDE,Santiago Island,Tarrafal,,female,F,,Body of woman recovered from shark,Y,,15' shark,"C. Moore; Heraldo de Madrid, 7/17/1929",1929.07.17.R-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.17.R-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.17.R-CapeVerde.pdf,1929.07.17.R,1929.07.17.R,1155,, +1929.06.23,23-Jun-29,1929,Provoked,USA,Florida,"Fort Pierce, St Lucie County",Fishing,F.P. Jones,M,,Leg bitten by hooked shark PROVOKED INCIDENT,N,,9-foot shark,"Miami News, 6/25/1929",1929.06.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.06.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.06.23-Jones.pdf,1929.06.23,1929.06.23,1154,, +1929.05.31,31-May-29,1929,Unprovoked,AUSTRALIA,Torres Strait,,Pearl diving,Johnny Moira,M,,"Injuries to both legs, buttocks, back, lower abdomen & chest",N,,,"V.M. Coppleson (1958), p.242",1929.05.31-Moira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.05.31-Moira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.05.31-Moira.pdf,1929.05.31,1929.05.31,1153,, +1929.04.26.R,Reported 26-Apr-1929,1929,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving for trepang,Ali Ah Mat,M,,Thigh bitten,N,,,"Northern Standard (Dawin), 4/26/1929",1929.04.26.R-AliAhMat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.26.R-AliAhMat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.26.R-AliAhMat.pdf,1929.04.26.R,1929.04.26.R,1152,, +1929.04.17.R,Reported 17-Apr-1929,1929,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving for trochus,Nistritani Taked,M,,Lacerations to right wrist,N,,,"Brisbane Courier, 4/19/1929",1929.04.17.R-Taked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.17.R-Taked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.17.R-Taked.pdf,1929.04.17.R,1929.04.17.R,1151,, +1929.04.11,11-Apr-29,1929,Provoked,AUSTRALIA,Queensland,"Bribie Passage, Caloundra",Standing in knee-deep water,David Alexander Manners,M,19,Right calf severely bitten by shark caught in the net PROVOKED INCIDENT,N,13h45,"Grey nurse shark, 4' ","Brisbane Courier, 4/12/1929; Coppleson (1933)",1929.04.11-Manners.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.11-Manners.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.11-Manners.pdf,1929.04.11,1929.04.11,1150,, +1929.04.09,09-Apr-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Badu Island,,diver,M,,FATAL,Y,,,"G.P. Whitley, citng R.S.M.A.C.",1929.04.09-BaduIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.09-BaduIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.09-BaduIsland.pdf,1929.04.09,1929.04.09,1149,, +1929.04.04,04-Apr-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Badu Island,Swimming between boats,"Ned Luffman, a Torres Strait Islander",M,,FATAL,Y,,,"V.M. Coppleson (1958), p.242 ",1929.04.04-Luffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.04-Luffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.04-Luffman.pdf,1929.04.04,1929.04.04,1148,, +1929.03.16,16-Mar-29,1929,Unprovoked,USA,Florida,"Sea Spray, Palm Beach",Swimming,Leroy Chadbourne,M,26,Right sole & toes lacerated,N,12h00,,"New York Herald Tribune, 3/17/1929 edtion; H. Monsen, L. Green",1929.03.16-Chadbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.16-Chadbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.16-Chadbourne.pdf,1929.03.16,1929.03.16,1147,, +1929.03.12,12-Mar-29,1929,Unprovoked,AUSTRALIA,Torres Strait,Near Dauan Island,Bathing,"schoolboy, a Torres Strait Islander",M,,FATAL,Y,,,"G.P. Whitley; J. Green, p.32; V.M. Coppleson (1958), p.242",1929.03.12-schoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.12-schoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.12-schoolboy.pdf,1929.03.12,1929.03.12,1146,, +1929.03.04.b,04-Mar-29,1929,Unprovoked,AUSTRALIA,South Australia,Ardrossan,Launching rowboat through the surf,L. Aldridge,M,9,Foot bitten,N,,"""a dog shark""","Barrier Miner, 3/5/1929",1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,1929.03.04.b,1929.03.04.b,1145,, +1929.03.04.a,04-Mar-29,1929,Unprovoked,AUSTRALIA,South Australia,Ardrossan,Launching rowboat through the surf,Dick Roads ,M,12,Legs bitten,N,,"""a dog shark""","Barrier Miner, 3/5/1929",1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,1929.03.04.a,1929.03.04.a,1144,, +1929.02.18,18-Feb-29,1929,Unprovoked,AUSTRALIA,New South Wales,Maroubra Bay,Body surfing,Allan Butcher,M,20,"FATAL, both thighs lacerated, right foot, fingers and knee abraded, died of sepsis",Y,15h30,,"V.M. Coppleson.N12. (1933); V.M. Coppleson (1958), pp.64 & 231; A. Sharpe, pp.63-64",1929.02.18-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.18-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.18-Butcher.pdf,1929.02.18,1929.02.18,1143,, +1929.02.09,09-Feb-29,1929,Boating,AUSTRALIA,Western Australia,Glenelg,Canoeing,canoe. Occupants: Doreen Tyrell & Frederick Bates,,,"No injury, shark pushed canoe from jetty to a point 100 m away",N,,"Blue pointer, 12'","The Mail, 2/9/1929; G.P. Whitley; SAF Case #505",1929.02.09-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.09-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.09-canoe.pdf,1929.02.09,1929.02.09,1142,, +1929.02.08,08-Feb-29,1929,Unprovoked,AUSTRALIA,New South Wales,Bondi,Swimming,John Gibson,M,39,"FATAL, right thigh bitten, femoral artery severed",Y,16h00,,"V. M. Coppleson.N11. (1933); J. Green, p.32; A. Sharpe, p.62",1929.02.08-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.08-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.08-Gibson.pdf,1929.02.08,1929.02.08,1141,, +1929.01.27,27-Jan-29,1929,Unprovoked,AUSTRALIA,Queensland,"Alma Bay, Magnetic Island, Townsville",Swimming,Harry Weatherall,M, ,"FATAL, right buttock lacerated, left arm severed above elbow, right forearm severed by shark, both arms surgically amputated",Y,17h30,,"V.M. Coppleson.Q.6. (1933); V.M. Coppleson (1958), pp. 90 & 237; G.A. Llano, pp.169-170",1929.01.27-Weatherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.27-Weatherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.27-Weatherall.pdf,1929.01.27,1929.01.27,1140,, +1929.01.14,14-Jan-29,1929,Unprovoked,NEW ZEALAND,North Island,"Miranda Head, Hauriki Gulf",Bathing,2 women,F,,"One was bitten on the leg, the other on the arm",N,,,"Argus, 1/15/1929",1929.01.14-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.14-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.14-NewZealand.pdf,1929.01.14,1929.01.14,1139,, +1929.01.12,12-Jan-29,1929,Unprovoked,AUSTRALIA,New South Wales,Bondi,Body surfing,Colin James Stewart,M,14,"FATAL, right thigh & hip bitten",Y,18h10,12' shark,"V.M. Coppleson.N9. (1933); V.M. Coppleson (1958), pp.64 & 231 ; A. Sharpe, p.59-62",1929.01.12-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.12-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.12-Stewart.pdf,1929.01.12,1929.01.12,1138,, +1929.01.06.R,06-Jan-29,1929,Boating,TURKEY,,San Stefano,Fishing boat,male x 2,M,,FATAL,Y,,,"C. Moore, GSAF",1929.01.06.R-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.06.R-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.06.R-Istanbul.pdf,1929.01.06.R,1929.01.06.R,1137,, +1929.01.05,05-Jan-29,1929,Unprovoked,FIJI,Viti Levu Island,Suva Harbor,Diving for coins thrown from ship S.S. Moeraki,male,M,,"FATAL, hand severed, both legs & arms bitten & nearly severed ",Y,,,"V.M. Coppleson (1962), p.253, possibly GSAF 1925.00.00",1929.01.05-FijianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.05-FijianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.05-FijianBoy.pdf,1929.01.05,1929.01.05,1136,, +1929.00.00.e.R,Reported 1929,1929,Invalid,AUSTRALIA,New South Wales,Sydney Harbor,Swimming,Eric Johanssen,M,,"Later found to be fixtion, never happened",N,,,"J. Lowell, Cradle of the Deep",1929.00.00.e.R-Johanssen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.e.R-Johanssen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.e.R-Johanssen.pdf,1929.00.00.e.R,1929.00.00.e.R,1135,, +1929.00.00.d,Ca. 1929,1929,Provoked,AUSTRALIA,South Australia,Ardrossan,"Wading, netting fish",Ted Bowman,M,,Bitten below the knee,N,,"""a dog shark""","Barrier Miner, 3/5/1929",1929.00.00.d-Bowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.d-Bowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.d-Bowman.pdf,1929.00.00.d,1929.00.00.d,1134,, +1929.00.00.c,1929,1929,Provoked,USA,Florida,Indian River area,Fishing,Buck Jones,M,,Thigh lacerated by hooked shark PROVOKED INCIDENT,N,,9' shark,"News Tribune, 6/28/1964",1929.00.00.c-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.c-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.c-Jones.pdf,1929.00.00.c,1929.00.00.c,1133,, +1929.00.00.b,1929,1929,Unprovoked,AUSTRALIA,New South Wales,"Garden Island, Sydney",,William Luckie,M,,Hand lacerated,N,,,"G.P. Whitley, p.261",1929.00.00.b-Luckie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.b-Luckie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.b-Luckie.pdf,1929.00.00.b,1929.00.00.b,1132,, +1929.00.00.a,1929,1929,Unprovoked,USA,Florida,"Cape Canaveral, Brevard County",Hardhat diving ,Carl Holm,M,27,"Put hand through hatch, shark nearly bit off thumb",N,,,"R. McAllister; D. Baldridge, p.180 ",1929.00.00.a-Holm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.a-Holm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.a-Holm.pdf,1929.00.00.a,1929.00.00.a,1131,, +1928.12.21,21-Dec-28,1928,Unprovoked,AUSTRALIA,,,Pearl diving,Rueben,M,,Injuries to arm ,N,,,"V.M. Coppleson (1958), p.242",1928.12.21-Rueben.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.12.21-Rueben.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.12.21-Rueben.pdf,1928.12.21,1928.12.21,1130,, +1928.11.18,18-Nov-28,1928,Provoked,USA,New Jersey,"Seabright, Monmouth County",Fishing,"boat, occupants: Captains Charles Anderson, Emit Lindberg & Oscar Benson",M,,"Fishermen were cut & bruised by netted, harpooned and gaffed sharks PROVOKED INCIDENT",N,,"""Blue nose sharks""",NY Herald Tribune,1928.11.18-SeaBright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.18-SeaBright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.18-SeaBright.pdf,1928.11.18,1928.11.18,1129,, +1928.11.15.R,Reported 15-Nov-1928,1928,Boating,INDIA,,,,"dhow, occupant Eugene Wright",M,24,"No injury to occupants, shark bit keel",N,,,"Sun Herald, 11/15/1938",1928.11.15.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.15.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.15.R-Wright.pdf,1928.11.15.R,1928.11.15.R,1128,, +1928.11.12,12-Nov-28,1928,Sea Disaster,USA,Virginia,"200 miles off Hampton Roads, Virginia, USA","Sea Disaster, sinking of the SS Vestris",Earl DeVore,M,,FATAL,Y,,,"Havre Daily News Promoter, 11/20/1928; TIME Magazine, 11/28/1928",1928.11.12-Vestris-DeVore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.12-Vestris-DeVore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.12-Vestris-DeVore.pdf,1928.11.12,1928.11.12,1127,, +1928.11.04,04-Nov-28,1928,Unprovoked,PANAMA,Gulf of Panama,Taboga Island Bay,Swimming,Abraham Moreno,M,17,"FATAL, multiple injuries including evisceration, 3 fractures of right arm, 5 fingers & leg severed below knee",Y,10h00,Morenos leg & part of his swim suit found in 9' shark caught two hours after the attack. Identified as carcharhinid shark by L. Schultz & C. Limbaugh on photograph,"J.W. Phalen is original source. NOTE: V.M. Coppleson (1958), p.263, records the date as 11/4/1929, as does L. Schultz & M. Malin, p.535",1928.11.04-Moreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.04-Moreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.04-Moreno.pdf,1928.11.04,1928.11.04,1126,, +1928.09.00,Sep-28,1928,Unprovoked,USA,Texas,Corpus Christi,Fishing,W.R. Loesberg,M,,Knee bitten,N,,,"Galveston Daily News, 12/7/1929",1928.09.00-Loesberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.09.00-Loesberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.09.00-Loesberg.pdf,1928.09.00,1928.09.00,1125,, +1928.08.24.R,Reported 24-Aug-1928,1928,Invalid,USA,New Jersey,Off shore,,male,M,,Thumb & coat sleeve recovered from shark's gut,UNKNOWN,,7' shark,"Decatur Evening Herald, 8/24/1928 ",1928.08.24.R-Thumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.08.24.R-Thumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.08.24.R-Thumb.pdf,1928.08.24.R,1928.08.24.R,1124,, +1928.07.11,11-Jul-28,1928,Unprovoked,AUSTRALIA,,,Pearl diving,"Willie Poid, a Torres Strait islander",M,,Injuries to chest,N,,,"V.M. Coppleson (1958), p.242",1928.07.11-Poid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.11-Poid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.11-Poid.pdf,1928.07.11,1928.07.11,1123,, +1928.07.00,Late Jul-1928,1928,Provoked,ITALY,Tuscany,Viareggio,Boating,Mr. Bagolinii,M,,"No injury, shark approached the boat, he hit it with and oar and fell into the sea PROVOKED INCIDENT",N,,"Species unknown, possibly a white shark",A. De Maddalena; Gianturco (1978),1928.07.00-Bagolini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.00-Bagolini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.00-Bagolini.pdf,1928.07.00,1928.07.00,1122,, +1928.06.24.R,Reported 24-Jun-1928,1928,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Jim Stevens,M,,Bitten on leg,N,,,"Ludington Daily News, 6/24/1928",1928.06.24.R-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.06.24.R-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.06.24.R-Stevens.pdf,1928.06.24.R,1928.06.24.R,1121,, +1928.05.17,27-May-28,1928,Invalid,INDIA,,,,A.F.C. Smiot,M,,No details,UNKNOWN,13h00,Shark involvement not confirmed,"H.D. Baldridge (1994) SAF Case #1595, questioned authenticity of this incident",1928.05.17-Smiot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.05.17-Smiot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.05.17-Smiot.pdf,1928.05.17,1928.05.17,1120,, +1928.04.14.R,Reported 14-Apr-1928,1928,Unprovoked,AUSTRALIA,Queensland,"Barrow Point, 100 miles north of Cooktown, Queensland",Fishing,a Murray Islander,M,,Severe lacerations to arm,N,,Tiger shark,"The Western Champion, 4/14/1928",1928.04.14.R-BarrowPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.R-BarrowPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.R-BarrowPoint.pdf,1928.04.14.R,1928.04.14.R,1119,, +1928.04.14,14-Apr-28,1928,Unprovoked,AUSTRALIA,New South Wales,Bondi,Treading water,Maxwell Steele,M,19,Tissue of left leg stripped from knee to ankle ,N,16h00,,"V. M. Coppleson.N8. (1933); V.M. Coppleson (1958), pp.64 &231; A. Sharpe, p.59",1928.04.14.a-Steele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.a-Steele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.a-Steele.pdf,1928.04.14,1928.04.14,1118,, +1928.04.09,09-Apr-28,1928,Unprovoked,JAMAICA,,"Coal wharf, Port Royal",Diving,Lewis,M,,FATAL,Y,Evening,,"Kingston Gleaner, 4/11/1928",1928.04.09-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.09-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.09-Jamaica.pdf,1928.04.09,1928.04.09,1117,, +1928.04.06,06-Apr-28,1928,Unprovoked,AUSTRALIA,Queensland,Graceville,Bathing,Noel Arthy,M,15,Lacerations to right leg ,N,Morning,4' shark,"Brisbane Courier, 5/8/1928",1928.04.06-Arthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.06-Arthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.06-Arthy.pdf,1928.04.06,1928.04.06,1116,, +1928.04.04,04-Apr-28,1928,Unprovoked,AUSTRALIA,New South Wales,"Cooks Hill, Newcastle",Standing in waist-deep water,Edward Arthur Lane,M,28,"FATAL, right hand severed, large lacerations on thigh",Y,18h00,,"V.M. Coppleson.N18. (1933); V.M. Coppleson (1958), pp.76 & 231; A. Sharpe, pp.83-84; G.A. Llano, pp.166-167",1928.04.04-Lane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.04-Lane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.04-Lane.pdf,1928.04.04,1928.04.04,1115,, +1928.03.28.R,Reported 28-Mar-1928,1928,Unprovoked,AUSTRALIA,Queensland,,,Bob,M,,Hip bitten,N,,,"Townsville Daily Bulletin, 3/28/1928",1928.03.28.R-Bob.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.03.28.R-Bob.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.03.28.R-Bob.pdf,1928.03.28.R,1928.03.28.R,1114,, +1928.02.20,20-Feb-28,1928,Unprovoked,AUSTRALIA,Torres Strait,"Near Barrow Point, Queensland",Pearl diving,"Wanewa, a Torres Strait Islander",M,,FATAL,Y,,,"Townsville Daily Bulletin, 2/28/1928",1928.02.20-Wanewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.20-Wanewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.20-Wanewa.pdf,1928.02.20,1928.02.20,1113,, +1928.02.00.b,Feb-28,1928,Unprovoked,COSTA RICA,Near Puntarenas,,Swimming,Lily Artavia,F,,Right leg severely lacerated. Surgically amputated,N,,,"Gleaner (Jamaica), 3/7/1928",1928.02.00.b-Artavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.b-Artavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.b-Artavia.pdf,1928.02.00.b,1928.02.00.b,1112,, +1928.02.00.a,Feb-28,1928,Unprovoked,COSTA RICA,Near Puntarenas,,Swimming,Armando Chavez,M,,Right leg & hand severely lacerated,N,,,"Gleaner (Jamaica), 3/7/1928",1928.02.00.a-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.a-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.a-Chavez.pdf,1928.02.00.a,1928.02.00.a,1111,, +1928.01.27,27-Jan-28,1928,Unprovoked,AUSTRALIA,Torres Strait,Deliverance Island,Retrieving meat from a cage in the water,Harry Envoldt,M,78,FATAL,Y,,,"Portland Guardian, 12/10/1934",1928.01.27-Envoldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.27-Envoldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.27-Envoldt.pdf,1928.01.27,1928.01.27,1110,, +1928.01.21.b,21-Jan-28,1928,Invalid,USA,Florida,,Swimming,Unknown,,,Body not recovered ,Y,Night,Shark involvement not confirmed,H.D. Baldridge (1994) SAF Case #838,1928.01.21.b-Florida-Swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.b-Florida-Swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.b-Florida-Swimmer.pdf,1928.01.21.b,1928.01.21.b,1109,, +1928.01.21.a,Some time between 08-Jan-1928 & 21-Jan-1928,1928,Invalid,USA,Florida,Off Florida coast,Jumped overboard and swimming,Two stowaways on German steamer Vela,M,,"FATAL, presumed taken by shark/s",Y,Night,Shark involvement not confirmed,"NY Times, 1/22/1928; V.M. Coppleson (1962), p.257",1928.01.21.a-Stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.a-Stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.a-Stowaways.pdf,1928.01.21.a,1928.01.21.a,1108,, +1928.01.02,02-Jan-28,1928,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Salt Vlei, Port Alfred",,Mrs. Hoskin,F,,Leg lacerated,N,,,"M. Levine, GSAF; Natal Mercury, 1/4/1928",1928.01.02-Hoskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.02-Hoskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.02-Hoskin.pdf,1928.01.02,1928.01.02,1107,, +1928.01.00,Jan-28,1928,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River mouth,Body surfing,Patrick Desmond Lynch,M,18,Foot bitten,N,11h00,1.2 m [4'] shark,"P.D. Lynch, M. Levine, GSAF",1928.01.00-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.00-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.00-Lynch.pdf,1928.01.00,1928.01.00,1106,, +1928.00.00,1928,1928,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Tugela River Mouth,Standing,N'gena Zakali,M,25,"Tissue of right thigh removed to the bone, both thumbs & some fingers severed ",N,11h00,,"T. O. Niven, M. Levine, GSAF",1928.00.00-N'genaZakali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.00.00-N'genaZakali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.00.00-N'genaZakali.pdf,1928.00.00,1928.00.00,1105,, +1927.12.28,28-Dec-27,1927,Unprovoked,SOUTH AFRICA,Western Cape Province,Little Brak River,Swimming,Ockert Stephanus Heyns,M,17,"FATAL, leg bitten ",Y,11h00,"White shark, 4.4 m [14.5'] . ",M. Levine & C. Fourie,1927.12.28-Heyns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.12.28-Heyns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.12.28-Heyns.pdf,1927.12.28,1927.12.28,1104,, +1927.11.03,03-Nov-27,1927,Sea Disaster,AUSTRALIA,New South Wales,"Bradleys Head, Sydney ",The steamer Tahiti collided with the ferry Greycliffe,,,,40 people perished,Y,,,"Oakland Tribune, 8/16/1930",1927.11.0-Tahiti-diaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.11.0-Tahiti-diaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.11.0-Tahiti-diaster.pdf,1927.11.03,1927.11.03,1103,, +1927.10.25,25-Oct-27,1927,Sea Disaster,BRAZIL,Porto Seguro,90 miles off Albrohos Island,Italian liner Principessa Mafalda sank,,,,"Of 1256 on board, 295 perished, some were taken by sharks",Y,12h00,,"L. Schultz & M. Malin, p.557; SAF Case #833",1927.10.25-Mafalda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.25-Mafalda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.25-Mafalda.pdf,1927.10.25,1927.10.25,1102,, +1927.10.12,12-Oct-27,1927,Unprovoked,AUSTRALIA,New South Wales,"Kiah Creek, Eden",Riding horseback across the creek,Norman Severs & horse,M,,No injury to man or horse,N,,,"Advertiser, 10/14/1927; V.M. Coppleson (1933); G.P. Whitley",1927.10-12-Severs-horse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10-12-Severs-horse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10-12-Severs-horse.pdf,1927.10.12,1927.10.12,1101,, +1927.10.00,Oct-27,1927,Unprovoked,FIJI,,a river,"Standing, collecting bananas",Josiah,M,,Leg bitten. He survived,N,,,"The Methodist, 3/13/1937",1927.10.00-Josiah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.00-Josiah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.00-Josiah.pdf,1927.10.00,1927.10.00,1100,, +1927.07.03,03-Jul-27,1927,Boating,AUSTRALIA,New South Wales,Bellambi Reef,,"14' boat, occupants: 2 men",,,"No injury to occupants, boat was bumped & lifted 2' out of the water by the shark",N,,,"G.P. Whitley; V.M. Coppleson (1933); Note: V.M. Coppleson (1958), p.185, also describes the same incident, listing a date of July 1937 ",1927.07.03-Bellambi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.07.03-Bellambi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.07.03-Bellambi.pdf,1927.07.03,1927.07.03,1099,, +1927.05.29,29-May-27,1927,Sea Disaster,PHILIPPINES,Luzon Island,Bondoc Peninsula,Sea disaster,Inter island ferry Negros foundered during a typhoon,,," 55 perished, some were taken by sharks",Y,,,"The Times (London), 6/2/1927 ",1927.05.29-Negros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.29-Negros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.29-Negros.pdf,1927.05.29,1927.05.29,1098,, +1927.05.09.R,Reported 09-May 1927,1927,Unprovoked,AUSTRALIA,Queensland,Off Cairns,Walking,"Quassa, a Torres Strait Islander",M,,FATAL,Y,,,"Brisbane Courier, 5/10/1927; V.M. Coppleson (1958), p.242",1927.05.09.R-Quassa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.09.R-Quassa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.09.R-Quassa.pdf,1927.05.09.R,1927.05.09.R,1097,, +1927.04.10,20-Apr-27,1927,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Diving,"Napoleon Doola, a Murray Islander)",M,,Extensive injuries to left leg,N,,,"J. Green, p.32; Bartlett, p. 160; V.M. Coppleson (1958), p.242",1927.04.10-NapoleonDoola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.10-NapoleonDoola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.10-NapoleonDoola.pdf,1927.04.10,1927.04.10,1096,, +1927.04.08,08-Apr-27,1927,Unprovoked,AUSTRALIA,Queensland,Near Thursday Island,Pearl diving,Eseromi,M,,Leg injured,N,,,"J. Green, p.32; V.M. Coppleson (1958), p.241",1927.04.08-Eseromi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.08-Eseromi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.08-Eseromi.pdf,1927.04.08,1927.04.08,1095,, +1927.03.01,11-Mar-27,1927,Unprovoked,AUSTRALIA,New South Wales,Mereweather Beach,Body surfing / treading water,Edward Pritchard,M,17,"Right buttock & thigh bitten, thumb removed",N,15h00,Grey nurse shark?,"V.M. Coppleson.N17. (1933); V.M. Coppleson (1958), p.76 & 231; G.A. Llano, p.165",1927.03.01-Pritchard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.03.01-Pritchard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.03.01-Pritchard.pdf,1927.03.01,1927.03.01,1094,, +1927.02.14,14-Feb-27,1927,Provoked,NICARAGUA,Salinas Bay,"A shark was caught, its head severed from body and hung from the anchor davit onboard the U.S.S. Borie",Feeling the sharks teeth,a sailor,M,,"Sharkss jaws snapped shut, lacerating his right hand PROVOKED INCIDENT",N,,,"G.A. Llano, p.178",1927.02.14-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.14-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.14-sailor.pdf,1927.02.14,1927.02.14,1093,, +1927.02.09,09-Feb-27,1927,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Attempting to rescue drowning man,Bernard Gill,M,,"No injury, but trouser leg shredded by shark",N,,,"Northern Territory Times & Gazette, 2/11/1927",1927.02.09-Gill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.09-Gill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.09-Gill.pdf,1927.02.09,1927.02.09,1092,, +1927.02.00,Feb-27,1927,Provoked,NEW ZEALAND,South Island,"Menzies Bay, Banks Peninsula, ",Fishing,male,M,70,Severely bitten by shark caught 30 minutes earlier PROVOKED INCIDENT,N,,Mako shark,"R.D. Weeks, GSAF; V.M. Coppleson (1958), p.263; SAF #328",1927.02.00-MenziesBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.00-MenziesBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.00-MenziesBay.pdf,1927.02.00,1927.02.00,1091,, +1927.01.20,20-Jan-27,1927,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kidds Beach,Body surfing,Andrew I. Brown,M,,Both thighs lacerated,N,11h45,"Raggedtooth shark, 1.5 m [5'] ","M. Levine, GSAF",1927.01.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.20-Brown.pdf,1927.01.20,1927.01.20,1090,, +1927.01.08.R,Reported 08-Jan-1927,1927,Unprovoked,USA,California,"Catalina Channel, Los Angeles County",Swimming,Price Taylor,M,,Lost hand,N,,,"The Afro-American, 1/8/1927",1927.01.08.R-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.08.R-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.08.R-Taylor.pdf,1927.01.08.R,1927.01.08.R,1089,, +1927.01.03,03-Jan-27,1927,Unprovoked,AUSTRALIA,New South Wales,"Greys Point, Port Hacking",Swimming,Mervwyn Allum,M,15,"FATAL, leg bitten from thigh to ankle",Y,11h30,3.7 m [12'] shark,"V.M. Coppleson.N.21.(1933); V.M. Coppleson (1958), p.230; NYTimes, 1/5/1927",1927.01.03-Allum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.03-Allum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.03-Allum.pdf,1927.01.03,1927.01.03,1088,, +1927.00.00.b,1927,1927,Unprovoked,AUSTRALIA,New South Wales,15 miles up the Cataract River,Swimming,Anonymous ,M,10,"FATAL, shoulder bitten ",Y,,,"W.E., pp. 192-193",1927.00.00.b-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.b-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.b-Australia.pdf,1927.00.00.b,1927.00.00.b,1087,, +1927.00.00.a,1927,1927,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Pearl diving,Dick Lahou,M,,Shoulder bitten,N,,,"V.M. Coppleson (1958), p.241",1927.00.00.a-Lahou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.a-Lahou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.a-Lahou.pdf,1927.00.00.a,1927.00.00.a,1086,, +1926.12.02.R,Reported 02-Dec-1926,1926,Unprovoked,AUSTRALIA,Torres Strait,Palm Island,Diving for trochus,Norman Skeen,M,,FATAL,Y,,,"Brisbane Courier, 12/3/1926",1926.12.02-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.12.02-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.12.02-Norman.pdf,1926.12.02.R,1926.12.02.R,1085,, +1926.11.17,17-Nov-26,1926,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Diving,Noma,M,,Arm injured,N,,,"J. Green, p.32; V.M. Coppleson (1958), p.241",1926.11.17-Noma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.11.17-Noma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.11.17-Noma.pdf,1926.11.17,1926.11.17,1084,, +1926.10.29.R,Reported 29-Oct-1926,1926,Unprovoked,PAPUA NEW GUINEA,Central Province,Roku Point,Jumped into the water,male,M,,"FATAL, abdomen bitten",Y,,,"Cairns Post, 10/29/1926",1926.10.29.R-RokuPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.29.R-RokuPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.29.R-RokuPoint.pdf,1926.10.29.R,1926.10.29.R,1083,, +1926.10.23.b,23-Oct-26,1926,Unprovoked,AUSTRALIA,New South Wales,Clarence River,Bathing,Herbert Webster,M,17,"3"" laceration to leg",N,Afternoon,"Grey nurse shark, 4'","Barrier Miner, 10/25/1926",1926.10.23.b-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.b-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.b-Webster.pdf,1926.10.23.b,1926.10.23.b,1082,, +1926.10.23.a,23-Oct-26,1926,Sea Disaster,BERMUDA,,18 miles southwest of Bermuda ,British patrol boat 1250-ton HMS Valerian foundered in a hurricane,,,,"Of 104 people in the water, only 20 survived. 84 people were lost, many to sharks. Sharks 2 pulled crew off life rafts",N,01h30,,"New York Herald Tribune, 10/29/1926",1926.10.23.a - HMS Valerian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.a - HMS Valerian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.a - HMS Valerian.pdf,1926.10.23.a,1926.10.23.a,1081,, +1926.09.06.R,Reported 06-Sep-1926,1926,Unprovoked,PAPUA NEW GUINEA,,Near Port Moresby,Jumped out of canoe,a native,M,,FATAL,Y,,,"Barrier Miner, 9/6/1926",1926.09.06.R-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.09.06.R-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.09.06.R-PortMoresby.pdf,1926.09.06.R,1926.09.06.R,1080,, +1926.08.24,24-Aug-26,1926,Unprovoked,USA,New Jersey,"Seaside, Ocean County",Swimming,Charles A. Burke,M,18,FATAL,Y,,,"Washington Post 8/25/1926; L. Schultz & M. Malin, p.531",1926.08.24-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.08.24-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.08.24-Burke.pdf,1926.08.24,1926.08.24,1079,, +1926.07.23,23-Jul-26,1926,Unprovoked,ITALY,Golfo di Genova in the Ligurian Sea,Varazze,Swimming,Augusto Casellato,M,20,"FATAL, body was not recovered",Y,11h00,Said to involve 6 to 7 m [20' to 23'] white shark,"NY Herald Tribune, 7/25/1926; A. De Maddalena; Anon. (1926a), Anon. (1926b); C. Moore, GSAF",1926.07.23-Casellato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.23-Casellato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.23-Casellato.pdf,1926.07.23,1926.07.23,1078,, +1926.07.12,12-Jul-26,1926,Boating,USA,New Jersey,20 miles off Seabright,Fishing,"boat, occupants: Andrew Peterson & Peter Jergerson",M,,No injury to occupants,N,,"""whiptail shark"" (thresher shark?)","Evening Sun, undated clipping",1926.07.12-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.12-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.12-boat.pdf,1926.07.12,1926.07.12,1077,, +1926.07.08,08-Jul-26,1926,Unprovoked,USA,California,"San Francisco Bay (or San Leandro Bay), near cannery, Alameda County",Swimming with dog near canning factory,Norman Piexotto,M,15,Leg & hand lacerated and dog bitten,N, ,1.5 m [5'] white shark or sevengill shark,"D. Miller & R. Collier, R. Collier, p. __; V.M. Coppleson (1958), pp. 156 & 252; [SAF Case #215]",1926.07.08-Peixotto_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.08-Peixotto_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.08-Peixotto_Collier.pdf,1926.07.08,1926.07.08,1076,, +1926.07.03,03-Jul-26,1926,Invalid,SPAIN,Sants-Montjic,"Casa Antunez Beach, Barcelona",Bathing,Sebastian Llopis Puges,M,,No injury,N,,2m shark,"C. Moore, GSAF",1926.07.03-Puges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.03-Puges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.03-Puges.pdf,1926.07.03,1926.07.03,1075,, +1926.05.18,18-May-26,1926,Unprovoked,USA,Hawaii,"Hale'iwa, O'ahu",Swimming,William J. Goins,M,,"FATAL, gave sudden shriek & disappeared, body found in shark caught off Kahuka",Y,,"White shark, 3.8 m [12.5'] ","G.H. Balazs & A.K.H. Kam; J. Borg, p.70; L. Taylor (1993), pp.96-97",1926.05.18-Goins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.05.18-Goins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.05.18-Goins.pdf,1926.05.18,1926.05.18,1074,, +1926.04.22,22-Apr-26,1926,Unprovoked,SOUTH ATLANTIC OCEAN,South of the Equator ,Steamship bound from Cape Town to Philadelphia,Fell overboard from SS Ripley Castle,Thomas (or Tony) Madison,M,26,When taken back on board 2 hours later both legs were bleeding from shark bites,N,Night,,"New York Times, 4/28/1926 ",1926.04.22-Madison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.22-Madison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.22-Madison.pdf,1926.04.22,1926.04.22,1073,, +1926.04.07,07-Apr-26,1926,Unprovoked,USA,Hawaii,"Hilo Bay Yacht Club, Hilo, Hawai'i",Swimming,Mrs. Leonard Carlsmith,F,,Right leg bitten thigh to heel,N,17h30,"According to Carlsmith, the shark's mouth was 3' wide","New York Tribune, 8/9/1953; V.M. Coppleson (1958), p.260; G.H. Balazs & A.K.H. Kam; J. Borg, p.70",1926.04.07-Carlsmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.07-Carlsmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.07-Carlsmith.pdf,1926.04.07,1926.04.07,1072,, +1926.03.17,17-Mar-26,1926,Unprovoked,AUSTRALIA,South Australia,"West Beach, Brighton",Swimming ,Primrose Whyte,F,,FATAL,Y,15h45,"White shark, 3.7 m [12'] ","V.M. Coppleson.S1.(1933); V.M. Coppleson (1958), pp.107 & 240; A. Sharpe, pp.119-120",1926.03.17-Whyte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.03.17-Whyte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.03.17-Whyte.pdf,1926.03.17,1926.03.17,1071,, +1926.01.26,26-Jan-26,1926,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Hamburg,Swimming,Mr. Bennett,M,,Thigh lacerated,N,,"""a blue shark""","M. Levine, GSAF",1926.01.26-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.26-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.26-Bennett.pdf,1926.01.26,1926.01.26,1070,, +1926.01.00,Jan-26,1926,Unprovoked,AUSTRALIA,Victoria,,,male,M,,Leg lacerated,N,,,"V.M. Coppleson (1958), p.110",1926.01.00-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.00-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.00-Victoria.pdf,1926.01.00,1926.01.00,1069,, +1926.00.00.d,Summer of 1926,1926,Unprovoked,MONACO,Bay of Monaco,,,boy,M,,FATAL,Y,,,Excerpt from news article dated 10/23/1926,1926.00.00.d-Monaco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.d-Monaco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.d-Monaco.pdf,1926.00.00.d,1926.00.00.d,1068,, +1926.00.00.c,1926,1926,Provoked,NEW ZEALAND,Cook Islands,Rarotonga,Shark hoisted on board liner Tahiti,Bosun of the ship,M,,"Struck on head by sharks tail, knocked unconscious & deep gash in head PROVOKED INCIDENT",N,,,"V.M. Coppleson (1958), pp.176-177",1926.00.00.c-bosun-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.c-bosun-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.c-bosun-Tahiti.pdf,1926.00.00.c,1926.00.00.c,1067,, +1926.00.00.b,1926,1926,Unprovoked,SINGAPORE,,Sea View Beach,Dived onto shark from floating stage,woman,F,,"FATAL, femoral artery severed ",Y,,,"V.M. Coppleson (1958), pp.148 & 265 (Note: ""A few days earlier, a Chinese fisherman had been bitten a few hundred yards from this spot."")",1926.00.00.b-womanSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.b-womanSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.b-womanSingapore.pdf,1926.00.00.b,1926.00.00.b,1066,, +1926.00.00.a,1926,1926,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Swimming to mail boat,Mr. Daniels,M,,No details,UNKNOWN,,,"M. Joss; M. Levine, GSAF",1926.00.00.a-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.a-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.a-Daniels.pdf,1926.00.00.a,1926.00.00.a,1065,, +1925.11.22,22-Nov-25,1925,Unprovoked,AUSTRALIA,Western Australia,Cottesloe Beach,Floating on his back,Simeon (Samuel) Ettelton,M,55,"FATAL, thigh & torso bitten, then shark charged rescue boat ",Y,15h15,"Tiger shark, 4 m [13'] female","V.M. Coppleson.W2, (1933); V.M. Coppleson (1958), pp.111 & 241; West Australia, 1/5/1967; A. Sharpe, pp.129-130; H. Edwards, pp.131-133",1925.11.22-Ettelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.22-Ettelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.22-Ettelton.pdf,1925.11.22,1925.11.22,1064,, +1925.11.00.b,Nov-25,1925,Unprovoked,USA,Puerto Rico,"Condado Beach, San Juan",,Lawyers secretary,,,Laceration across abdomen,N,,,"V.M. Coppleson (1958), pp.48 & 265",1925.11.00.b-secretary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.b-secretary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.b-secretary.pdf,1925.11.00.b,1925.11.00.b,1063,, +1925.11.00.a,Nov-25,1925,Unprovoked,USA,Puerto Rico,"Condado Beach, San Juan",,American lawyer,M,,Both calves lacerated,N,,,"V.M. Coppleson (1958), pp.48 & 265",1925.11.00.a-Lawyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.a-Lawyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.a-Lawyer.pdf,1925.11.00.a,1925.11.00.a,1062,, +1925.09.04,04-Sep-25,1925,Provoked,SPAIN,Valencia ,Valencia,Fishing,Pascual Gurran,M,,Right hand bitten by hooked shark PROVOKED INCIDENT,N,,,Chris Moore,1925.09.04-Gurren-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.04-Gurren-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.04-Gurren-Valencia.pdf,1925.09.04,1925.09.04,1061,, +1925.09.03,03-Sep-25,1925,Unprovoked,ENGLAND,Isle of Wight,Off Shanklin,Fishing,Mr. S. Page ,M,,No injury but shark lifted boat out of the water,N,08h00,,C. Moore,1925.09.03-Page-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.03-Page-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.03-Page-Isle-of-Wight.pdf,1925.09.03,1925.09.03,1060,, +1925.08.02,02-Aug-25,1925,Unprovoked,USA,South Carolina,"Folly Island, near Charleston",Swimming,Mrs. Walter H. Kahrs,F,,"Multiple lacerations on both thighs, right buttock and hip",N,,,E. M. Burton,1925.08.02-MrsKahrs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.08.02-MrsKahrs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.08.02-MrsKahrs.pdf,1925.08.02,1925.08.02,1059,, +1925.06.15,15-Jun-25,1925,Invalid,AUSTRALIA,Western Australia,"Princess Royal Harbor, near King Georges Sound",,,,,Human arm found in shark,UNKNOWN,,,"Geraldton Guardian, 6/18/1925 ",1925.06.15 Princess Royal Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.06.15 Princess Royal Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.06.15 Princess Royal Harbor.pdf,1925.06.15,1925.06.15,1058,, +1925.05.00,May-25,1925,Unprovoked,USA,Puerto Rico,"Condado Beach, San Juan",,American University student,M,,"Right arm nearly severed at shoulder, left wrist lacerated",N,,,"V.M. Coppleson (1958), pp.48 & 265",1925.05.00-AmericanUniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.05.00-AmericanUniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.05.00-AmericanUniversityStudent.pdf,1925.05.00,1925.05.00,1057,, +1925.03.27,07-Mar-1925 or 27-Mar-1925,1925,Unprovoked,AUSTRALIA,New South Wales,Coogee,Bathing in waist-deep water,Jack Dagworthy,M,16,"Left thigh bitten, leg surgically amputated ",N,17h00,Said to be a small shark,"V.M. Coppleson.N7.(1933); V.M. Coppleson (1958), pp.63 & 230; A. Sharpe, pp.58-59; G.A. Llano, pp.160-164",1925.03.27-Dagworthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.27-Dagworthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.27-Dagworthy.pdf,1925.03.27,1925.03.27,1056,, +1925.03.12,12-Mar-25,1925,Unprovoked,AUSTRALIA,New South Wales,Newcastle Beach,Swimming,Jack Canning,M,16,"FATAL, right forearm severed, lacerations from buttocks to heel L",Y,15h15,,"V.M. Coppleson.N16.(1933) V.M. Coppleson (1958), pp.76 & 230",1925.03.12-Canning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.12-Canning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.12-Canning.pdf,1925.03.12,1925.03.12,1055,, +1925.03.10,10-Mar-25,1925,Unprovoked,PAPUA NEW GUINEA,Central Province,Hula,Swimming,a Papuan,M,A.M.,FATAL,Y,,,"The Queenslander, 4/4/1925",1925.03.10-Papuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.10-Papuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.10-Papuan.pdf,1925.03.10,1925.03.10,1054,, +1925.01.27.R,Reported 27-Jan-1925,1925,Unprovoked,USA,Florida,"Miami Beach, Miami-Dade County",Swimming,Frank Chorie,M,,Lacerations to arm,N,,,"Evening Independent, 1/27/1925",1925.01.27.R-Chorie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.27.R-Chorie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.27.R-Chorie.pdf,1925.01.27.R,1925.01.27.R,1053,, +1925.01.08,08-Jan-25,1925,Unprovoked,CANADA,Vancouver,Second Narrows in Burrard Inlet,"Diving, repairing water main at depth of 90'", male,M,,"Injuries, if any, unknown, but afterwards diver stunned shark with iron bar",N,,2.1 m [7'] shark,"ABCS; Manitoba Free-Press, 1/13/1925",1925.01.08-Vancouver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.08-Vancouver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.08-Vancouver.pdf,1925.01.08,1925.01.08,1052,, +1925.00.00,1925,1925,Unprovoked,FIJI,Viti Levu Island,"Suva Harbor, Suva",Diving for coins tossed from passenger ship,Fijian boy,M,,"Both arms bitten, surgically amputated",N,,,"V.M. Coppleson (1958), p.258",1925.00.00-Fijian boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.00.00-Fijian boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.00.00-Fijian boy.pdf,1925.00.00,1925.00.00,1051,, +1924.11.25,25-Nov-24,1924,Unprovoked,MEXICO,Tamaulipas,Tampico,The Ward liner Esperanza stranded during a gale & she leapt overboard to rescue her dog which had been swept overboard.,Ofelia Rivas,F,,FATAL,Y,,1.8 m shark,"Indianapolis Star, 12/15/1924",1924.11.25-Rivas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.25-Rivas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.25-Rivas.pdf,1924.11.25,1924.11.25,1050,, +1924.11.24,24-Nov-24,1924,Unprovoked,PANAMA,"2 to 3 miles off Taboguilla Island, Pacific Ocean",Pacific Anchorage off the Panama Canal,"Inebriated, woke from sleep and fell off deck into the water ",male,M,35,Knee bitten,N,After midnight,,Gorgas Hospital Records,1924.11.24-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.24-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.24-Panama.pdf,1924.11.24,1924.11.24,1049,, +1924.11.21,21-Nov-24,1924,Unprovoked,USA,Puerto Rico,Santurce,Bathing,Professor Winslow,M,35,"FATAL, hand severed, both legs & arms bitten & nearly severed ",Y,Late afternon,,"R. W. Kramer; V.M. Coppleson (1958), pp.48 & 264",1924.11.21-Winslow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.21-Winslow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.21-Winslow.pdf,1924.11.21,1924.11.21,1048,, +1924.10.31.R,Reported 31-Oct-1924,1924,Provoked,FRENCH POLYNESIA,Tuamotus,Rangiroa,Pearl diving,Huri-Huri,M,,Abrasions PROVOKED ATTACK,N,,,F. O'Brien in Atolls of the Sea,1924.10.31-Huri-Huri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.31-Huri-Huri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.31-Huri-Huri.pdf,1924.10.31.R,1924.10.31.R,1047,, +1924.10.18,18-Oct-24,1924,Unprovoked,AUSTRALIA,Victoria,Port Melbourne,Bathing,Fred White,M,,Leg bitten,N,,10' shark,"Coppleson.V1. (1933); Melbourne Herald, 1/7/1925",1924.10.18-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.18-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.18-White.pdf,1924.10.18,1924.10.18,1046,, +1924.07.31,31-Jul-24,1924,Unprovoked,USA,South Carolina,"Folly Island, near Charleston",Standing,Lewis Kornahrens,M,,Left knee & leg bitten. (Tooth fragment recovered from kneecap),N,,"Mako shark, 1.9 m [6.5']. Tooth fragment recovered & identified by J.T. Nichols.","E. M. Burton; E.W. Gudger (1935); V.M. Coppleson (1958), pp.152 & 252; J. Randall, p.350 in Sharks & Survival",1924.07.31-Kornahrens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.31-Kornahrens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.31-Kornahrens.pdf,1924.07.31,1924.07.31,1045,, +1924.07.14,14-Jul-24,1924,Provoked,ENGLAND,Dorset,Weymouth,Fishing for mackerel,2 fishermen,M,,Arms broken by hooked shark PROVOKED INCIDENT,N,,12' shark,"C. Moore; The Times, 7/14/1924",1924.07.14-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.14-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.14-Weymouth.pdf,1924.07.14,1924.07.14,1044,, +1924.07.04,04-Jul-24,1924,Boating,USA,California,"Newport Beach, Orange County",Fishing,"18' boat, occupants Richard Gunther & Donald Cavanaugh",M,? & 14,"No injury, shark tore hole in the side of the boat",N,,,"The Daily Pilot, 3/6/2010, citing The Times 7/5/1924)",1924.07.04-boat-NewportBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.04-boat-NewportBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.04-boat-NewportBeach.pdf,1924.07.04,1924.07.04,1043,, +1924.06.18,18-Jun-24,1924,Provoked,USA,Florida,"Bayboro, Pinellas County",Removing shark from a net,Robert Martin,M,,Netted shark made a5-inch incision above the knee PROVOKED INCIDENT,N,Evening,,"Evening Independent, 6/19/1924",1924.06.18-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.06.18-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.06.18-Martin.pdf,1924.06.18,1924.06.18,1042,, +1924.04.25,25-Apr-24,1924,Unprovoked,AUSTRALIA,New South Wales,Kiama,"Fishing, fell in water & swimming strongly to shore",Ernest Conroy,M,20,"FATAL, partial remains recovered ",Y,Afternoon,,"V.M. Coppleson (1933); G.P. Whitley, p.266",1924.04.25-Conroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.25-Conroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.25-Conroy.pdf,1924.04.25,1924.04.25,1041,, +1924.04.22,22-Apr-24,1924,Unprovoked,PANAMA,150 miles offshore,,"Floating, after falling or jumping off the Standard Oil tanker Frederick W. Weller",Claremont L. Staden,M,21,"Reported to have had ""2 fights with sharks"" before being rescued by the British freighter Dorsetafter 23 hours in the water",N,,,"NY Times, 5/4/1924, p.14, col.3",1924.04.22-Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.22-Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.22-Staden.pdf,1924.04.22,1924.04.22,1040,, +1924.04.20,20-Apr-24,1924,Invalid,AUSTRALIA,Western Australia,Fremantle,Swimming ,Noel Knight,M,,Abrasions,N,,,"V.M. Coppleson (1933); G.P. Whitley (1951), p.185, both considered it a ""doubtful attack""",1924.04.20-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.20-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.20-Knight.pdf,1924.04.20,1924.04.20,1039,, +1924.03.28.R,Reported 28-Mar-1924,1924,Unprovoked,SOLOMON ISLANDS,Central Province,Savo Island,Swimming,male,M,,"Left arm severed, leg bitten",N,,,"Cairns Post, 3/28/1924",1924.03.28.R-Savo-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.28.R-Savo-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.28.R-Savo-Island.pdf,1924.03.28.R,1924.03.28.R,1038,, +1924.03.24,24-Mar-24,1924,Boating,SPAIN,Galica,Sisargas Islands,Fishing,Boat owned by Ricardo Laneiro,,,"No injury to occupants, shark bit boat",N,,3.5 m shark,"C. Moore, GSAF",1924.03.24.Sisargas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.24.Sisargas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.24.Sisargas.pdf,1924.03.24,1924.03.24,1037,, +1924.02.13,13-Feb-24,1924,Unprovoked,AUSTRALIA,New South Wales,Bronte,Bathing in 5' of water,Nita Derritt,F,30,"Legs severely bitten, surgically amputated",N,19h00,,"V.M. Coppleson.N6. (1933); V.M. Coppleson (1958), pp.63 & 230; A. Sharpe, pp.57-58",1924.02.13-Derritt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.13-Derritt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.13-Derritt.pdf,1924.02.13,1924.02.13,1036,, +1924.02.08,08-Feb-24,1924,Invalid,AUSTRALIA,Queensland,Currumbin,Bathing,Frederick Dullroy,M,,Probable drowning & scavenging,UNKNOWN,16h00,,11/02/1924,1924.02.08-Dullroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08-Dullroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08-Dullroy.pdf,1924.02.08,1924.02.08,1035,, +1924.01.29,29-Jan-24,1924,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Swimming,Johannes Karl Schultz,M,22,FATAL,Y,15h15,,"M. Levine, GSAF",1924.01.29-Schultz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.29-Schultz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.29-Schultz.pdf,1924.01.29,1924.01.29,1034,, +1924.01.25,25-Jan-24,1924,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"St. Georges Strand, Port Elizabeth",Swimming,male,M,,Foot lacerated,N,Afternoon,,"Eastern Province Herald, 1/28/1924, M. Levine, GSAF",1924.01.25-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.25-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.25-StGeorgesStrand.pdf,1924.01.25,1924.01.25,1033,, +1924.01.19,09-Jan-24,1924,Unprovoked,AUSTRALIA,New South Wales,"Near Asbestos Works, Camellia, Parramatta River",Had just dived into water & was swimming,Charles Brown,M,16,"FATAL, right thigh severely bitten, left arm lacerated ",Y,16h00,3 m [10'] shark,"V.M. Coppleson.N.2. (1933); V.M. Coppleson (1958), pp.69 & 230",1924.01.19-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.19-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.19-Brown.pdf,1924.01.19,1924.01.19,1032,, +1923.12.12,12-Dec-23,1923,Unprovoked,AUSTRALIA,New South Wales,"Murwillumbah, Tweed River",Swimming,Leo Wohill,M,,Lacerations to leg,N,,,"Barrier Miner, 12/12/1923",1923.12.12-Wohill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.12-Wohill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.12-Wohill.pdf,1923.12.12,1923.12.12,1031,, +1923.12.02,02-Dec-23,1923,Unprovoked,AUSTRALIA,New South Wales,"Urunga, Belliger Heads","Fishing, standing in waist-deep water",James Elton,M,,"FATAL, disappeared, thought to have been taken by a shark ",Y,,,"Sydney Morning Herald, 12/5/1923 ",1923.12.02 - Elton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.02 - Elton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.02 - Elton.pdf,1923.12.02,1923.12.02,1030,, +1923.11.23,23-Nov-23,1923,Unprovoked,AUSTRALIA,Western Australia,"Condon, 88 km NE of Port Hedland",Dry shelling,"Selim and Dea Opre, Koepang Islanders",M,,"FATAL, disappeared, partial remains of Selim was found, there was no trace of Dea Opre",Y,,,"Western Mail, 11/29/1923; V.M. Coppleson (1933); G.P. Whitley (1940), p.260; G.P. Whitley (1951), p 185; A. Sharpe, p.129",1923.11.23-KoepangIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.23-KoepangIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.23-KoepangIslanders.pdf,1923.11.23,1923.11.23,1029,, +1923.11.02,02-Nov-23,1923,Invalid,AUSTRALIA,New South Wales,Bellinger Head,Fishing,male,M,,FATAL,Y,,Shark involvement suspected but not confirmed,"V.M. Coppleson, p.452; G.P. Whitley",1923.11.02-BellingerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.02-BellingerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.02-BellingerHead.pdf,1923.11.02,1923.11.02,1028,, +1923.10.20,20-Oct-23,1923,Invalid,AUSTRALIA,New South Wales,"Botany Bay, Sydney",Sailing,male,M,,"He failed to return, his body was recovered 11/9/1922; chest & abdomen had been bitten by shark/s",Y,,,V.M. Coppleson (1933);,1923.10.20-BotanyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.20-BotanyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.20-BotanyBay.pdf,1923.10.20,1923.10.20,1027,, +1923.10.17,17-Oct-23,1923,Boating,AUSTRALIA,New South Wales," Black Head, south of Taree",Fishing,15' boat,,,"No injury to occupants, shark bit boat",N,,"""a very large shark""",V.M. Coppleson (1933); SAF Case #494,1923.10.17-boat-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.17-boat-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.17-boat-Taree.pdf,1923.10.17,1923.10.17,1026,, +1923.10.16,16-Oct-23,1923,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Pearl diving,"Amano, a Japanese diver",M,,"Arm severed, but survived",N,,,"V.M. Coppleson (1958), p.241; J. Green, p.32",1923.10.16-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.16-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.16-Amano.pdf,1923.10.16,1923.10.16,1025,, +1923.08.08,08-Aug-23,1923,Unprovoked,GUYANA,Demerara County,Off the Demerara River ,Fishing,Charles Blair,M,,Puncture wounds to left leg,N,01h00,,"Gleaner (Jamaica), 9/6/1923",1923.08.08-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.08.08-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.08.08-Blair.pdf,1923.08.08,1923.08.08,1024,, +1923.07.02.R,Reported 02-Jul-1923,1923,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving for pearl,aboriginal male,M,,non-fatal,N,,,"Brisbane Courer, 7/2/1923",1923.07.02-Mildred-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.07.02-Mildred-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.07.02-Mildred-Diver.pdf,1923.07.02.R,1923.07.02.R,1023,, +1923.06.16,16-Jun-23,1923,Boating,AUSTRALIA,New South Wales,Bellambi Reef,"After rowing skiff was holed by shark, he was attempting to swim ashore",J. Rigby,M,,"FATAL, taken by shark. Two other men drowned, only 1 man survived",Y,,,"V.M. Coppleson (1933); G. P. Whitley; V.M. Coppleson (1958), p.185",1923.06.16-Rigby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.16-Rigby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.16-Rigby.pdf,1923.06.16,1923.06.16,1022,, +1923.06.06,06-Jun-23,1923,Boating,MEXICO,Vera Cruz,Outside Vera Cruz Harbor,Dismantling cable buoys of the cable ship All America,"boat, occupants; Carl Sjoistrom & 2 other crew",,,"No injury to occupants, shark rammed boat",N,,,"NY Herald Tribune, undated clipping",1923.06.06-AllAmerica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.06-AllAmerica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.06-AllAmerica.pdf,1923.06.06,1923.06.06,1021,, +1923.05.23.R,Reported 23-May-1923,1923,Unprovoked,AUSTRALIA,Western Australia,"Southgates, near Geraldton",Wading,Percy Evensen,M,,Minor puncture wounds to foot,N,,,"The West Australian, 5/23/1923",1923.05.23.R-Evensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.23.R-Evensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.23.R-Evensen.pdf,1923.05.23.R,1923.05.23.R,1020,, +1923.05.22,22-May-23,1923,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving?,Keizo Masoyo,M,,FATAL,Y,Midday,,"Northern Miner, 5/27/1923",1923.05.22-Masoyo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.22-Masoyo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.22-Masoyo.pdf,1923.05.22,1923.05.22,1019,, +1923.03.18,18-Mar-23,1923,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Diving,Jellannie Solomon,M,,Lacerations to right thigh and knee,N,,,"Northern Miner, 3/19/1923",1923.03.18-Solomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.03.18-Solomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.03.18-Solomon.pdf,1923.03.18,1923.03.18,1018,, +1923.02.00,Feb-23,1923,Unprovoked,USA,Puerto Rico,San Juan,Swimming ,Puerto Rican,M,25,"Right calf, right side of abdomen & left wrist & hand bitten",N,,,"V.M. Coppleson (1958), pp.48 & 265",1923.02.00.a-PuertoRican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.02.00.a-PuertoRican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.02.00.a-PuertoRican.pdf,1923.02.00,1923.02.00,1017,, +1923.01.27.b,27-Jan-23,1923,Invalid,AUSTRALIA,Western Australia,Bunbury,,John Hayes,M,,Death may have been due to drowning,UNKNOWN,,Shark involvement prior to death was not confirmed,"The Register, 2/3/1923",1923.01.27.b-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.b-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.b-Hayes.pdf,1923.01.27.b,1923.01.27.b,1016,, +1923.01.27.a,27-Jan-23,1923,Unprovoked,AUSTRALIA,Western Australia,"In Swan River at Freshwater Bay, Claremont, 5 miles from river mouth",Swimming,Charles Topsail Robertson,M,13,"FATAL, back of thigh bitten ",Y,,,"V.M. Coppleson.W1.(1933) V.M. Coppleson (1958), pp.111 & 241; A. Sharpe, p.129",1923.01.27.a-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.a-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.a-Robertson.pdf,1923.01.27.a,1923.01.27.a,1015,, +1923.01.13,14-Jan-23,1923,Invalid,CUBA,Caribbean Sea,20 miles from Havana,seaplane Columbus ditched in the sea,"Edwin F. Atkins, Jr.",M,,"Although this incident is listed elsewhere as a shark attack, the account of the disaster suggests the 4 who perished probably drowned. Five people survived",Y,,"Atkins' remains were recovered from a dusky shark, C. obscurus, by Capt. W. F. Young, shark fisherman","W.E., pp.152-156; L. Schultz & M. Malin, p.557",1923.01.13-seaplaneColumbus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.13-seaplaneColumbus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.13-seaplaneColumbus.pdf,1923.01.13,1923.01.13,1014,, +1923.00.00.c,1923,1923,Boating,USA,New Jersey,"Sea Bright, Monmouth County",Fishing,"boat, occupant: Richard Rodney",M,,No injury to occupant Shark struck boat,N,,,"NY Herald Tribune, 8/27/1931; L. Schultz & M. Malin, p.555",1923.00.00.c - NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.c - NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.c - NJ fisherman.pdf,1923.00.00.c,1923.00.00.c,1013,, +1923.00.00.b,1923-1924,1923,Unprovoked,PHILIPPINES, Manila Bay,Fort Drum,,male,M,,"FATAL, abdomen severely bitten. Airplane summoned from Corregidor & injured man was lashed to wing, but he died ",Y,,,"Pinchot in To the South Seas, citing M. Craig who reports 6 incidents in 1923-24 including this one",1923.00.00.b-FortDrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.b-FortDrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.b-FortDrum.pdf,1923.00.00.b,1923.00.00.b,1012,, +1923.00.00.a,1923,1923,Provoked,USA,New Jersey,Ocean City (offshore),Hoisting shark aboard fishing boat,male,M,,Shark's tail broke his leg. PROVOKED INCIDENT,N,,,"Ref in New York Herald Tribune, 8/23/1960; V.M. Coppleson (1962), p.155",1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,1923.00.00.a,1923.00.00.a,1011,, +1923.00.00.a,1923,1922,Provoked,USA,New Jersey,Ocean City (offshore),Hoisting shark aboard fishing boat,male,M,,Shark's tail broke his leg. PROVOKED INCIDENT,N,,,"Ref in New York Herald Tribune, 8/23/1960; V.M. Coppleson (1962), p.155",1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,1923.00.00.a,1923.00.00.a,1010,, +1922.12.14,14-Dec-22,1922,Unprovoked,USA,Puerto Rico,San Juan,Bathing,Katherine W. Bourne,F,,"FATAL, hip & thigh bitten with tissue removed, including bone ",Y,,,"L.A. Times, 12/17/1922; V.M. Coppleson (1958), pp.48 & 265",1922.12.14-KatherineBourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.14-KatherineBourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.14-KatherineBourne.pdf,1922.12.14,1922.12.14,1009,, +1922.12.05,05-Dec-22,1922,Unprovoked,AUSTRALIA,Queensland,Pialba Beach near Maryborough,Bathing in 3' to 4' of water,Alfred Gassman,M,19,"FATAL, severe injuries to torso ",Y,09h15,"2.7 m [9'] ""blue"" shark","Coppleson.Q4.(1933); V.M. Coppleson (1958), pp.92 & 237 ",1922.12.05-Gassman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.05-Gassman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.05-Gassman.pdf,1922.12.05,1922.12.05,1008,, +1922.09.29,29-Sep-22,1922,Unprovoked,BARBADOS,Lucy,Pie Corner,Fishing,Master Hurley,M,16,FATAL,Y,,,"Kingston Gleaner, 10/17/1922",1922.09.29-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.29-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.29-Barbados.pdf,1922.09.29,1922.09.29,1007,, +1922.10.29,29-Oct-22,1922,Invalid,AUSTRALIA,New South Wales,"Botany Bay, Sydney",Sailing,H.R.W.,M,,"FATAL, but shark involvement prior to death unconfirmed",UNKNOWN,,,"R.D. Weeks, GSAF",1922.10.29-HRW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.10.29-HRW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.10.29-HRW.pdf,1922.10.29,1922.10.29,1006,, +1922.09.28,28-Sep-22,1922,Unprovoked,USA,Hawaii,"Keawanui, Kamalo, Moloka'i","Freediving, inspecting Kaunakakai wharf construction after blasting & dredging ","male, Territorial Surveyor",M,,Survived,N,,,"Honolulu Advertiser, 8/19/1953; Tribune Herald (Hilo), 4/14/1963; V.M. Coppleson (1958), p.259; L. Taylor (1993), pp.96-97",1922.09.28-TerritorialSurveyor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.28-TerritorialSurveyor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.28-TerritorialSurveyor.pdf,1922.09.28,1922.09.28,1005,, +1922.09.26.R,Reported 26-Sep-1922,1922,Unprovoked,ENGLAND,East Yorkshire,Hornsea,Swimming ,Mr.P. H. Lee,M,,FATAL,Y,,,"Western Argus, 9/26/1922",1922.09.26.R-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.26.R-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.26.R-Lee.pdf,1922.09.26.R,1922.09.26.R,1004,, +1922.09.21.R,Reported 21-Sep-1922,1922,Boating,USA,Massachusetts,Nahant,Fishing,"boat, occupants: Mr. Goslin & 4 passengers",,,"No injury to occupants, shark splintered stern",N,,"""A pack of 6 sharks""","L. Schultz & M. Malin, p.554",1922.09.21-GoslinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.21-GoslinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.21-GoslinBoat.pdf,1922.09.21.R,1922.09.21.R,1003,, +1922.07.19,19-Jul-22,1922,Unprovoked,USA,Florida,"Pablo Beach, Jacksonville, Duval County",,Francis L'Engle,M,,Leg bitten,N,,,"Palm Beach Post, 7/19/1932",1922.07.19-L'Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.07.19-L'Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.07.19-L'Engle.pdf,1922.07.19,1922.07.19,1002,, +1922.06.17,17-Jun-22,1922,Unprovoked,USA,Florida,"Municipal Pier, St. Petersburg, Tampa bay",Floating,Dorothy MacLatchie,F,18,"FATAL, thigh bitten",Y,,1.8 m [6'] shark,"V.M. Coppleson, (1958) pp.155 & 252",1922.06.17-MacLatchie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.06.17-MacLatchie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.06.17-MacLatchie.pdf,1922.06.17,1922.06.17,1001,, +1922.05.24,24-May-22,1922,Unprovoked,JAMAICA,Westmoreland Parish,Savanna-la-Mar,Swimming,Sausse Leon,M,19,"FATAL, arm severed, thigh severely bitten ",Y,10h00,6' shark,"Daily Gleaner, 5/25/1922; H.E. Lloyd, NY Times, 6/22/1922",1922.05.24-Leon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.24-Leon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.24-Leon.pdf,1922.05.24,1922.05.24,1000,, +1922.05.06,06-May-22,1922,Unprovoked,SOUTH AFRICA,Western Cape Province,"Simons Town, False Bay",Swimming,Edward G. Pells,M,18,Abdomen & thigh bitten,N,A.M.,"White shark, 12', identity confirmed by tooth fragment, witness and photograph of captured shark ","M. Levine, GSAF; E.Wilson",1922.05.06-Pells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.06-Pells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.06-Pells.pdf,1922.05.06,1922.05.06,999,, +1922.04.26,26-Apr-22,1922,Unprovoked,AUSTRALIA,New South Wales,Hawkesbury River,Swimming,William A. Munro,M,,FATAL,Y,,,"Argus, 4/29/1922",1922.04.26-Munro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.04.26-Munro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.04.26-Munro.pdf,1922.04.26,1922.04.26,998,, +1922.03.20,20-Mar-22,1922,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Fishing,,M,,Survived,N,,,"Daily Gleaner, 3/21/1922, p.8",1922.03.20-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.20-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.20-Jamaica.pdf,1922.03.20,1922.03.20,997,, +1922.03.13,13-Mar-22,1922,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Standing,Adeline Lopez,F,14,"FATAL, right leg severed at thigh ",Y,,2.7 m [9'] shark later captured by Mitchell-Hedges,"Daily Gleaner, 3/21/1922, p.8; H. E. Lloyd, N.Y. Times, 6/22/1922; F.A. Mitchell-Hedges (1928), pp.95-100",1922.03.13-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.13-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.13-Lopez.pdf,1922.03.13,1922.03.13,996,, +1922.03.02,02-Mar-22,1922,Unprovoked,AUSTRALIA,New South Wales,Coogee,Bathing in knee-deep water,Mervyn Gannon,M,21,"FATAL, right hand severed, lacerations on left thigh & left hand, died in hospital of gas gangrene",Y,11h00,"White shark, 2.4 m [8'] ","V.M. Coppleson.N5. (1933); V.M. Coppleson (1958), pp.63 & 230; A. Sharpe, pp.56-57; G.A. Llano, pp.160-161",1922.03.02-Gannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.02-Gannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.02-Gannon.pdf,1922.03.02,1922.03.02,995,, +1922.02.22.R,Reported 02-Feb-1922,1922,Invalid,AUSTRALIA,New South Wales,"Bilgola Beach, Sydney",Swimming,Norman Whiteley,M,,"Disappeared whiile swimming alone, body parts recovered, but shark involvement prior to death unconfirmed",Y,,,"Cairns Post, 2/33/1922",1922.02.22.R-Whiteley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.22.R-Whiteley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.22.R-Whiteley.pdf,1922.02.22.R,1922.02.22.R,994,, +1922.02.04,04-Feb-22,1922,Unprovoked,AUSTRALIA,New South Wales,Coogee ,Swimming,Milton Coughlan,M,18,"FATAL, both arms & shoulder bitten",Y,15h30,White shark,"V.M. Coppleson.N.4. (1933); V.M. Coppleson (1958), pp.62 & 230; A. Sharpe, pp.53-55",1922.02.04-Coughlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.04-Coughlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.04-Coughlan.pdf,1922.02.04,1922.02.04,993,, +1922.01.28.R,Reported 28-Jan-1922,1922,Unprovoked,IRAQ,,Shatt-al Arab River,Bathing,Haroun-al-Raschid,M,,FATAL,Y,,,"The Queenslander, 1/28/1922",1922.01.28.R-Haroun-al-Raschid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.28.R-Haroun-al-Raschid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.28.R-Haroun-al-Raschid.pdf,1922.01.28.R,1922.01.28.R,992,, +1922.01.15,15-Jan-22,1922,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Swimming ,Robert Milroy,M,54,FATAL,Y,17h30,,"V.M. Coppleson.Q5. (1933); V.M. Coppleson (1958), pp. 90 & 229",1922.01.15-Milroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.15-Milroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.15-Milroy.pdf,1922.01.15,1922.01.15,991,, +1922.01.13,13-Jan-22,1922,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Standing,Alwyn Bevan,M,,Small laceration on left thigh & swim costume torn,N,18h00,Grey nurse shark?,"V.M. Coppleson.N15. (1933); V.M. Coppleson (1958), p.229",1922.01.13-Bevan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.13-Bevan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.13-Bevan.pdf,1922.01.13,1922.01.13,990,, +1922.01.04,04-Jan-22,1922,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Surfing,John Manning Rowe,M,26,"FATAL, disappeared, then his shark-bitten remains washed ashore ",Y,Evening,,"The Argus, 1/9/1922; V.M. Coppleson (1933), N15",1922.01.04-JManningRowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.04-JManningRowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.04-JManningRowe.pdf,1922.01.04,1922.01.04,989,, +1921.12.11,11-Dec-21,1921,Unprovoked,AUSTRALIA,Queensland,Fitzroy River at Rockhampton,Swimming,Robert Murphy,M,20,Survived,N,,,"The Queenslander, 12/17/ 1921",1921.12.11-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.12.11-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.12.11-Murphy.pdf,1921.12.11,1921.12.11,988,, +1921.11.27.b,27-Nov-21,1921,Unprovoked,AUSTRALIA,Queensland,"Gays Corner, Bulimba Reach of Brisbane River",Fell from his father's back into the water,George Jack,M,8,"FATAL, disappeared, body not recovered",Y,Morning,,"V.M. Coppleson (1958), pp.92 & 237",1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,1921.11.27.b,1921.11.27.b,987,, +1921.11.27.a,27-Nov-21,1921,Unprovoked,AUSTRALIA,Queensland,"Gays Corner, Bulimba Reach of Brisbane River","Wading to dinghy, carrying his son",Herbert Jack,M,40,"Right hip, buttock, elbow, arm & wrist bitten",N,Morning,,"V.M. Coppleson.Q3. (1933); V.M. Coppleson (1958), pp.92 & 237",1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,1921.11.27.a,1921.11.27.a,986,, +1921.11.15.R,Reported 15-Nov-1921,1921,Unprovoked,FIJI,Viti Levu Island,Rewa River,Swimming,Esau & his young daughter,,,FATAL,Y,,,"Richmond River Express, 12/2/1921",1921.11.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.15.R-Fiji.pdf,1921.11.15.R,1921.11.15.R,985,, +1921.10.12,12-Oct-21,1921,Unprovoked,AUSTRALIA,Queensland,Off Hinchinbrook Island,Diving for beche-de-mer ,aboriginal diver,M,,Lacerations to right arm & chest,N,,,"Brisbane Courier, 10/15/1921",1921.10.12-Hinchinbrook-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.12-Hinchinbrook-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.12-Hinchinbrook-Island.pdf,1921.10.12,1921.10.12,984,, +1921.10.04,04-Oct-21,1921,Unprovoked,AUSTRALIA,Queensland,Barrier Reef,Diving for beche-de-mer,Yoichi Schamok,M,22,"Left thigh bitten, FATAL",Y,Afternoon,,"Cairns Post, 10/17/1921",1921.10.04-Schamok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.04-Schamok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.04-Schamok.pdf,1921.10.04,1921.10.04,983,, +1921.09.00,Sep-21,1921,Provoked,ENGLAND,Dorset,Weymouth,Fishing,Roberts,M,,Leg bitten by shark he was attempting to capture PROVOKED INCIDENT,N,,"Blue shark, 4' ","Argus, 10/8/1921",1921.09.00-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.09.00-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.09.00-Roberts.pdf,1921.09.00,1921.09.00,982,, +1921.08.29.R,Reported 29-Aug-1929,1921,Unprovoked,AUSTRALIA,Torres Strait,,,Oku Hayadi,M,,Lacerations to arm,N,,,"The Register, 8/29/1921",1921.08.29.R-Hayadi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.29.R-Hayadi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.29.R-Hayadi.pdf,1921.08.29.R,1921.08.29.R,981,, +1921.08.28,28-Aug-21,1921,Unprovoked,PHILIPPINES,Luzon Island,"Fort Frank, Manila Bay",Swimming,"Marcellus T. Abernathy, a US soldier in the 9th Coast Artillery",M,21,"FATAL, abdomen severely lacerated, taken by seaplane to hospital in Corrigedor but died ",Y,15h00,,"New York Times, 9/1/1921",1921.08.28-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.28-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.28-Abernathy.pdf,1921.08.28,1921.08.28,980,, +1921.01.11.R,Reported 11-Jan-1921,1921,Invalid,PHILIPPINES,"Cavite Province, Luzon",,,,,,Buttons & shoes found in shark caught in fish trap,UNKNOWN,,,"Reno Evening Gazette, 1/11/1921",1921.01.11.R-Cavite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.01.11.R-Cavite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.01.11.R-Cavite.pdf,1921.01.11.R,1921.01.11.R,979,, +1920.11.29,29-Nov-20,1920,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Wading,Reginald Gibbs,M,,Lacerations to leg & hand,N,,4' to 5' shark,"Geraldton Guardian, 12/4/1920 ",1920.11.29-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.29-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.29-Gibbs.pdf,1920.11.29,1920.11.29,978,, +1921.08.22,22-Aug-21,1921,Unprovoked,HAITI,Cape Haitien,Marine Dock,Dived into a school of baitfish,"E.C.P, a U.S. Marine",M,,"FATAL, large wound on thigh",Y,15h30,Comrades saw shark's tail appear about 5' away,"V.M. Coppleson (1958), p.259; Baker & Rose, pp.881-3",1921.08.22-ECP.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.22-ECP.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.22-ECP.pdf,1921.08.22,1921.08.22,977,, +1920.11.22,22-Nov-20,1920,Unprovoked,AUSTRALIA,Western Australia,Cottesloe Beach,Standing,T.F. Davies,M,,"Minor injuries to leg, hand & fingers",N,,"15* to 24"" dog shark","Daily News, 11/24/1920",1920.11.22-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.22-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.22-Davies.pdf,1920.11.22,1920.11.22,976,, +1920.11.04,04-Nov-20,1920,Sea Disaster,PHILIPPINES,Leyte,,The coastwise steamer San Basilio capsized in a typhoon,male,,,FATAL,Y,,,"Oakland Tribune, 11/11/1920",1920.11.04-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.04-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.04-Philippines.pdf,1920.11.04,1920.11.04,975,, +1920.07.14,14-Jul-20,1920,Invalid,USA,New York,"Woodcliff Channel, Freeport, Long Island",Swimming ,Thomas McCann,M,30,Thought to have been taken by a shark. Body was not recovered,Y,,,"V.M. Coppleson (1958), p.151 ",1920.07.14-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.14-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.14-McCann.pdf,1920.07.14,1920.07.14,974,, +1920.07.05.R,Reported 06-Jul-1920,1920,Unprovoked,AUSTRALIA,Torres Strait,200 miles from MacKay,Diving for trochus shell,Japanese diver,M,,Severe lacerations to right shoulder & arm,N,,,"Brisbane Courier, 7/6/1920",1920.07.05.R-Japanese-DIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.05.R-Japanese-DIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.05.R-Japanese-DIver.pdf,1920.07.05.R,1920.07.05.R,973,, +1920.06.29,29-Jun-20,1920,Unprovoked,USA,Florida,"Englewood Beach, Charlotte County",Swimming ,Hayward Green,M,13,Knee & thigh bitten,N,18h30,,E. Clark,1920.06.29-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.29-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.29-Green.pdf,1920.06.29,1920.06.29,972,, +1920.06.27,27-Jun-20,1920,Provoked,CANADA,Halifax,"Slaunwhite's Ledge, Hubbard Cove",Harpooned shark,occupants: John Chandler & Walter Winters,,,"No injury to occupants, but shark struck boat with such force that Chandler was flung overboard. PROVOKED INCIDENT",N,,15',H. Piers (1933),1920.06.27-Hubbard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.27-Hubbard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.27-Hubbard.pdf,1920.06.27,1920.06.27,971,, +1920.03.08,08-Mar-20,1920,Unprovoked,AUSTRALIA,Queensland,"Between Bay Rock & Magnetic Island, Cleveland Bay","Boat capsized, swimming to shore",Alfred Burgess,M,20,"Tossed in air by shark, sustained abrasions",N,,,"H. Miller (1920); V.M. Coppleson Q.2.(1933); V.M. Coppleson (1958), pp.43, 44, 237; A. Sharpe, p.24",1920.03.08-Burgess.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.03.08-Burgess.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.03.08-Burgess.pdf,1920.03.08,1920.03.08,970,, +1920.01.24.R.b,Reported 24-Jan-1920,1920,Unprovoked,AUSTRALIA,Torres Strait,,Diving,male,M,,Lacerations to foot,N,,,"The Argus, 1/24/1920",1920.01.24.R.b-TorresStrait-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.b-TorresStrait-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.b-TorresStrait-diver.pdf,1920.01.24.R.b,1920.01.24.R.b,969,, +1920.02.03,03-Feb-20,1920,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Zwartkops River,Floating face down,Thea Toft,F,18,Abdomen bitten,N,17h30,,"T. Toft, M. Levine, GSAF",1920.02.03-Toft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.02.03-Toft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.02.03-Toft.pdf,1920.02.03,1920.02.03,968,, +1920.01.24.R.a,Reported 24-Jan-1920,1920,Unprovoked,AUSTRALIA,Torres Strait,Arlington Reef,Free diving,Japanese diver,M,,FATAL,Y,,,"The Argus, 1/24/1920",1920.01.24.R.a-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.a-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.a-JapaneseDiver.pdf,1920.01.24.R.a,1920.01.24.R.a,967,, +1920.01.15,15-Jan-20,1920,Unprovoked,AUSTRALIA,New South Wales,"Throsby Creek, Newcastle",Swimming ,David Miller,M,12,Leg bitten. FATAL,Y,10h00,,"V.M. Coppleson.N14. (1933); V.M. Coppleson (1958), p.229",1920.01.15-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.15-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.15-Miller.pdf,1920.01.15,1920.01.15,966,, +1920.00.00.b,1920s,1920,Unprovoked,JAMAICA,Westmoreland Parish,Savanna-la-Mar,Jumped overboard,sailor,M,,FATAL,Y,,,"Daily Gleaner, 4/14/1969",1920.00.00.c-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.c-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.c-Jamaica.pdf,1920.00.00.b,1920.00.00.b,965,, +1920.00.00.b,1920,1920,Unprovoked,NEW ZEALAND,North Island,"Stanley Bay, Auckland Harbor",,female,F,,"""Recovered""",N,,,"V.M. Coppleson (1958), p.262",1920.00.00.b-StanleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.b-StanleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.b-StanleyBay.pdf,1920.00.00.b,1920.00.00.b,964,, +1920.00.00.a,1920,1920,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Tugela River,Splashing,Zulu male,M,12,Thigh & buttocks bitten. Not known if he survived.,N,,,J.L.B. Smith,1920.00.00.a-TugelaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.a-TugelaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.a-TugelaRiver.pdf,1920.00.00.a,1920.00.00.a,963,, +1919.12.30.R,Reported 30-Dec-1919,1919,Unprovoked,AUSTRALIA,Queensland,Brible Island,Swimming,John Brothy,M,29,Lacerations to left leg,N,,,"Brisbane Courier, 12/30/1919",1919.12.30.R-Brothy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.30.R-Brothy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.30.R-Brothy.pdf,1919.12.30.R,1919.12.30.R,962,, +1919.12.07,07-Dec-19,1919,Unprovoked,AUSTRALIA,New South Wales,"Pelican Island, Macleay River",Swimming,James Ridley,M,47,"FATAL, left leg & calf bitten, leg surgically amputated ",Y,05h30,,"Sydney Morning Herald, 12/9/1919; V.M. Coppleson.N.20.(1933",1919.12.07-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.07-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.07-Ridley.pdf,1919.12.07,1919.12.07,961,, +1919.11.18,18-Nov-19,1919,Unprovoked,AUSTRALIA,Northern Territory,Darwin,Sitting in a boat,a sailor,M,,Lacerations to buttocks,N,,,G.P. Whitley; V.M. Coppleson (1933) ,1919.11.18-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.11.18-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.11.18-sailor.pdf,1919.11.18,1919.11.18,960,, +1919.09.12,12-Sep-19,1919,Unprovoked,COSTA RICA,Turtle Bogue,Where Colorado River enters the sea,Small vessel with 13 men on board capsized crossing the bar and 6 men drowned. The 7 survivors were swimming to shore,6 males,M,,"FATAL, 6 men were taken by sharks as they neared the beach, 1 survived",Y,,,"Pinchot, p.85-86",1919.09.12-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.09.12-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.09.12-CostaRica.pdf,1919.09.12,1919.09.12,959,, +1919.08.10,10-Aug-19,1919,Unprovoked,USA,Florida,"Gadsden Point, Tampa Bay",Swimming,George (or Edward) Eaton,M,,Laceration to left thigh,N,Afternoon,,"Miami Metropolis, 8/14/1919",1919.08.10-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.08.10-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.08.10-Eaton.pdf,1919.08.10,1919.08.10,958,, +1919.05.29,29-May-19,1919,Unprovoked,USA,South Carolina,"James Island Sound, Charleston","""Swimming vigorously""",W.E. Davis,M,,Left foot bitten & abraded,N,12h00,,E. M. Burton,1919.05.29-WE-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.05.29-WE-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.05.29-WE-Davis.pdf,1919.05.29,1919.05.29,957,, +1919.04.06,06-Apr-19,1919,Unprovoked,USA,Florida,"Florida Keys 25N,82W",Knocked into the water,"fisherman, a companion of J. Rose & W. Koegler",M,,FATAL,Y,,"3.7 m [12'], 1200-lb shark. Shark caught & its jaw exhibited at the Carnegie Museum","Gazette (Pittsburgh), no date",1919.04.06-Rose-Koegler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.04.06-Rose-Koegler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.04.06-Rose-Koegler.pdf,1919.04.06,1919.04.06,956,, +1919.03.16,16-Mar-19,1919,Invalid,AUSTRALIA,New South Wales,Sydney Harbor,Cutter capsized,5 cadets from the Naval training ship Tingara,M,,Shark involvement not confirmed,UNKNOWN,Late afternon,,"The Mercury, 3/18/1919",1919.03.16-Cadets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.03.16-Cadets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.03.16-Cadets.pdf,1919.03.16,1919.03.16,955,, +1919.01.17,17-Jan-19,1919,Unprovoked,AUSTRALIA,New South Wales,Newcastle Beach,Swimming,Douglas Arkell,M,,"Multiple injuries, left leg surgically amputated at knee",N,17h15,3.7 m to 4.3 m [12' to 14'] shark,"V.M. Coppleson.N13. (1933); V.M. Coppleson (1958), p.76 & 229",1919.01.17-Arkell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.17-Arkell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.17-Arkell.pdf,1919.01.17,1919.01.17,954,, +1919.01.15,15-Jan-19,1919,Unprovoked,NEW ZEALAND,South Island,"Tahuna Beach, Nelson",Swimming,female,F,,Leg bitten,N,Afternoon,,"Marlborough Express, 1/16/1919",1919.01.15-Tahuna-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.15-Tahuna-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.15-Tahuna-Beach.pdf,1919.01.15,1919.01.15,953,, +1919.01.09,09-Jan-19,1919,Unprovoked,AUSTRALIA,New South Wales,"Sirius Cove, Sydney Harbor",Wading,Richard Simpson,M,13,"FATAL, right thigh bitten ",Y,07h30,12' shark,"T. Peake, GSAF; V.M. Coppleson.N1.(1933); V.M. Coppleson (1958), pp.70 & 229; A. Sharpe, p.71",1919.01.09-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.09-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.09-Simpson.pdf,1919.01.09,1919.01.09,952,, +1919.01.05,05-Jan-19,1919,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Wading (shrimping),Jack Hoey,M,38,"FATAL, thigh bitten, leg amputated ",Y,10h00,,"V.M. Coppleson.Q1.(1933); V.M. Coppleson (1958), pp.90 & 237",1919.01.05-Hoey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.05-Hoey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.05-Hoey.pdf,1919.01.05,1919.01.05,951,, +1900.00.00.R,Reported to have taken place in 1919,1919,Boating,ITALY,,Savona,Fishing,,M,,No injury,N,,13' shark,"C. Moore, GSAF",1919.00.00.R-Savona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00.R-Savona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00.R-Savona.pdf,1919.00.00.R,1900.00.00.R,950,, +1919.00.00,1919,1919,Unprovoked,USA,Florida,"Near Panama City, Bay County",Swimming,adult female (Mrs. Avery?),F,,Leg severed,N,,,"R. F. Hutton; T. Helm, p.219; V.M. Coppleson (1962), p.249",1919.00.00-MrsAvery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00-MrsAvery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00-MrsAvery.pdf,1919.00.00,1919.00.00,949,, +1918.11.00.b,Nov-18,1918,Unprovoked,USA,Hawaii,Papaikou plantation ,Fishing,Tadaichi Mayamura,M,,FATAL,Y,,,"Ogden Examiner, 12/15/1918",1918.11.00.b-Mayamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.b-Mayamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.b-Mayamura.pdf,1918.11.00.b,1918.11.00.b,948,, +1918.11.00.a,Nov-18,1918,Sea Disaster,SAN DOMINGO,60 miles north of San Domingo in the West Indies,Muchoir Banks,Steamer Una wrecked with 75 laborers onboard. Survivors took to rafts & lifeboats.,males,M,,"FATAL, ""men snatched from rafts by sharks"" ",Y,,"Tiger sharks, 2.4 m to 4.9 m [8' to 16'] ","V.M. Coppleson (1958), p.194; V.M. Coppleson (1962), p.210",1918.11.00.a-Una.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.a-Una.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.a-Una.pdf,1918.11.00.a,1918.11.00.a,947,, +1918.09.19,19-Sep-18,1918,Unprovoked,AUSTRALIA,Queensland,Townsville,Bathing,Joseph Bartlett,M,22,FATAL,Y,,,"Cairns Post, 9/24/1918",1918.09.19-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.09.19-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.09.19-Bartlett.pdf,1918.09.19,1918.09.19,946,, +1918.03.22,22-Mar-18,1918,Unprovoked,AUSTRALIA,New South Wales,Newcastle,Surfing,Arthur Cook,M,,"Severe laceration to arm, necessitating surgical amputation at the elbow",N,18h00,12' shark,"The Advertiser, 3/25/1918",1918.03.22-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.03.22-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.03.22-Cook.pdf,1918.03.22,1918.03.22,945,, +1918.00.00,1918,1918,Unprovoked,AUSTRALIA,Queensland,Near Cairns,Diving,Iona Asai,M,,Survived,N,,,"A. Sharpe, p.109",1918.00.00-Asai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.00.00-Asai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.00.00-Asai.pdf,1918.00.00,1918.00.00,944,, +1917.12.15,15-Dec-17,1917,Unprovoked,AUSTRALIA,Western Australia,Port Hedland,Swimming,F.W. Dean,M,,Lacerations to left leg,N,05h00,,"West Australian, 12/17/1917",1917.12.15-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.12.15-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.12.15-Dean.pdf,1917.12.15,1917.12.15,943,, +1917.11.00,Nov-17,1917,Unprovoked,MOZAMBIQUE,Maputo Province,Off Inhaca Island,Wreck of the tug Magellan,a South African sailor,M,,FATAL,Y,Night,,C.J. McGuinness,1917.11.00-Magellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.11.00-Magellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.11.00-Magellan.pdf,1917.11.00,1917.11.00,942,, +1917.09.21,21-Sep-17,1917,Unprovoked,USA,New Jersey,"Sea Bright, Monmouth County","Swimming, towing an empty barrel","Daniel Thompson, lifeguard",M,,Left knee lacerated,N,,,"V.M. Coppleson (1958), p.251 ",1917.09.21-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.21-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.21-Thompson.pdf,1917.09.21,1917.09.21,941,, +1917.09.09,09-Sep-17,1917,Provoked,USA,Hawaii,"Nanakuli, Oahu",Stuffing a shark into an automobile,Carl Nakuina,M,,Arm severely lacerated by shark that had been hooked and shot PROVOKED INCIDENT,N,,12' shark,"Ogden Standard, 9/11/1917",1917.09.09-Nakuina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.09-Nakuina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.09-Nakuina.pdf,1917.09.09,1917.09.09,940,, +1917.09.00,Sep-17,1917,Unprovoked,PANAMA,Colon,,Swimming to shore from the Medic,male,M,,FATAL,Y,,,"Morwell Advertiser & Gazette, 1/18/1918",1917.09.00-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.00-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.00-Panama.pdf,1917.09.00,1917.09.00,939,, +1917.07.18,18-Jul-17,1917,Unprovoked,USA,Florida,Florida Keys ,Diving,William Sinker,M,,FATAL,Y,Afternoon,,"Washington Post, 7/20/1917",1917.07.18-WmSinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.18-WmSinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.18-WmSinker.pdf,1917.07.18,1917.07.18,938,, +1917.07.15,15-Jul-17,1917,Sea Disaster,IRELAND,Off Ireland,82 miles from Fastnet,Ship Mariston torpedoed & sunk,,M,,"FATAL, only 1 survivor",Y,Morning,,"Western Mail, 11/9/1917",1917.07.15-Mariston-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.15-Mariston-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.15-Mariston-ship.pdf,1917.07.15,1917.07.15,937,, +1917.06.03,03-Jun-17,1917,Unprovoked,USA,South Carolina,Calibogue Sound,Swimming beside launch,"Walter J. Pierpont, Jr.",M,,Right arm bitten,N,P.M.,,"C. Creswell, GSAF; V.M. Coppleson (1958), pp.153, 154 & 251; NY Times 6/4/1917, p.9 ",1917.06.03-Pierpont.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.06.03-Pierpont.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.06.03-Pierpont.pdf,1917.06.03,1917.06.03,936,, +1917.05.31,31-May-17,1917,Unprovoked,PHILIPPINES,Luzon Island,Canacao Bay,Swimming,"E.E., water tender of the U.S.S. Dale",M,,"FATAL, abdominal cavity removed ",Y,17h45,,"P.F. Prioleau; W.E., p.195; V.M. Coppleson (1958), p.264",1917.05.31-EE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.31-EE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.31-EE.pdf,1917.05.31,1917.05.31,935,, +1917.05.05,Reported 05-May-1917,1917,Unprovoked,KUWAIT,,,Diving for pearls,a young Arab,M,,Torso bitten,N,,,"Denton Journal, 5/5/1917",1917.05.05-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.05-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.05-Arab.pdf,1917.05.05,1917.05.05,934,, +1917.00.00,1917,1917,Unprovoked,LIBYA,Mediterranean Sea,Tripoli,Diving for sponges,male,M,,"Bitten by shark, but repelled it with his 'skandalopetra' ",N,,,F. Warn (see Bitter Sea in bibliography),1917.00.00-SpongeDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.00.00-SpongeDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.00.00-SpongeDiver.pdf,1917.00.00,1917.00.00,933,, +1916.12.30,30-Dec-16,1916,Unprovoked,AUSTRALIA,Queensland,"Yeppoon, near Ross Creek",Bathing,John Ford,M,25,Right calf bitten,N,A.M.,,"Morning Bulletin, 1/1/1917",1916.12.30-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.30-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.30-Ford.pdf,1916.12.30,1916.12.30,932,, +1916.12.08.b,08-Dec-16,1916,Unprovoked,AUSTRALIA,New South Wales,"Seven Shillings Beach, Middle Harbor, Sydney (Estuary)",Taking wife to beach & about 1 m from the shore,Walter C. German,M,41,"FATAL, right arm severed, chest punctured ",Y,09h00,,"G.P. Whitley, ref. Dr. Cleland, 1924; V.M. Coppleson (1962), p.79; A. Sharpe, p.71",1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,1916.12.08.b,1916.12.08.b,931,, +1916.12.08.a,08-Dec-16,1916,Unprovoked,AUSTRALIA,New South Wales,"Seven Shillings Beach, Middle Harbor, Sydney (Estuary)",Swimming 10 m from shore,Mrs Walter German,F,,Leg nipped by shark,N,08h58,,"A. Sharpe, p.71",1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,1916.12.08.a,1916.12.08.a,930,, +1916.11.15,15-Nov-16,1916,Provoked,PANAMA,,Panama Canal,,Clarence Ware,M,,"""Severely bitten""",N,,,"Hartford Courant, 11/16/1916",1916.11.15-ClarenceWare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.15-ClarenceWare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.15-ClarenceWare.pdf,1916.11.15,1916.11.15,929,, +1916.11.10,10-Nov-16,1916,Unprovoked,AUSTRALIA,Queensland,Townsville,Swimming,Walter Gregson,M,,FATAL,Y,06h00,,"Cairns Post, 11/11/1916",1916.11.10-Gregson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.10-Gregson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.10-Gregson.pdf,1916.11.10,1916.11.10,928,, +1916.11.09,09-Nov-16,1916,Unprovoked,AUSTRALIA,Queensland,"Kissing Point Camp, Townsville",Bathing,Robert Alexander Poultney,M,27,FATAL,Y,Evening,,"Brisbane Courier, 11/10/1916",1916.11.09-Poultney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.09-Poultney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.09-Poultney.pdf,1916.11.09,1916.11.09,927,, +1916.10.11,11-Oct-16,1916,Provoked,USA,Florida,"Sewells Point, near Palm Beach","Fishing, attempted to take a netted shark",J.L. Hanscomb,M,,"FATAL, leg severely bitten, surgically amputated PROVOKED INCIDENT",Y,,,"V.M. Coppleson (1958), p.251; R.F. Hutton; NY Times, 10/12/1916, p.8 ",1916.10.11-Hanscom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.10.11-Hanscom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.10.11-Hanscom.pdf,1916.10.11,1916.10.11,926,, +1916.08.24, 24-Aug-1916,1916,Unprovoked,USA,Louisiana,Grand Lake,Netting shrimp,William Lerey,M,,Lower left leg severely bitten & became septic. Not known if he survived,N,,,"The News, 8/15/1916",1916.08.24-Lerey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.08.24-Lerey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.08.24-Lerey.pdf,1916.08.24,1916.08.24,925,, +1916.07.26,26-Jul-16,1916,Unprovoked,USA,North Carolina,"Atlantic, near New Bern, Craven County",Fishing,William Nelson,M,,Arm severely lacerated,N,,,"C. Creswell, GSAF",1916.07.26-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.26-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.26-Nelson.pdf,1916.07.26,1916.07.26,924,, +1916.07.13.b,13-Jul-16,1916,Invalid,USA,New York,"Sheepshead Bay, Brooklyn",Swimming,Gertude Hoffman,F,,"No attack, no injury",N,10h00,,"New York Times, 7/14/1916",1916.07.13.b-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.b-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.b-Hoffman.pdf,1916.07.13.b,1916.07.13.b,923,, +1916.07.13,13-Jul-16,1916,Unprovoked,USA,New York,"Sheepshead Bay, Brooklyn",Swimming,Thomas Richards,M,,Ankle bruised,N,,,"NY Tribune, 7/14/1916",1916.07.13.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.a-Richards.pdf,1916.07.13,1916.07.13,922,, +1916.07.12.c,12-Jul-16,1916,Unprovoked,USA,New Jersey,"In Matawan Creek, off NJ Clay Company brickyards at Cliffwood, Monmouth County, 9.5 miles from the sea, Monmouth County",Swimming,John Dunn,M,12,"Lower left leg bitten, surgically amputated",N,,Said to involve a 2.7 m [9'] shark,"R. Fernicola, GSAF",1916.07.12.c-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.c-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.c-Dunn.pdf,1916.07.12.c,1916.07.12.c,921,, +1916.07.12.b,12-Jul-16,1916,Unprovoked,USA,New Jersey,"Matawan Creek, 10 miles from the sea, Monmouth County",Swimming (recovering remains of Stilwell) ,Stanley Fisher,M,24,"FATAL, thigh bitten ",Y,,3 m [10'] shark,"R. Fernicola, GSAF",1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,1916.07.12.b,1916.07.12.b,920,, +1916.07.12.a,12-Jul-16,1916,Unprovoked,USA,New Jersey,"Matawan Creek, 10 miles from the sea, Monmouth County",Swimming,Lester Stillwell,M,10,"FATAL, legs & torso bitten ",Y,A.M.,,"R. Fernicola, GSAF ",1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,1916.07.12.a,1916.07.12.a,919,, +1916.07.11,11-Jul-16,1916,Sea Disaster,BAHAMAS,,50 miles off Bahamas,S.S. Ramos foundered in a hurricane. Captain & 14 crew in water-logged lifeboats. ,Mr. Wichman,M,,"FATAL. When the survivors were rescued next day they were clubbing sharks with oars. ""Sharks were so thick that it was difficult to row""",Y,,,"NY Times, 7/18/1916",1916.07.11-Wichman-Ramos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.11-Wichman-Ramos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.11-Wichman-Ramos.pdf,1916.07.11,1916.07.11,918,, +1916.07.08,08-Jul-16,1916,Unprovoked,SPAIN,Gran Canaria,Las Palmas,Diving,male,M,,Survived,N,,,C. Moore,1916.07.08-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.08-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.08-GrandCanary.pdf,1916.07.08,1916.07.08,917,, +1916.07.07,07-Jul-16,1916,Unprovoked,PHILIPPINES,Luzon Island,"Olongapo Harbor, Subic Bay",Bathing,a sailor from the U.S.S. Galveston,M,,Right foot severed,N,,,"The Sun, 12/16/1917",1916.07.07-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.07-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.07-Sailor.pdf,1916.07.07,1916.07.07,916,, +1916.07.06,06-Jul-16,1916,Unprovoked,USA,New Jersey,"Spring Lake, Monmouth County",Swimming,Charles Bruder,M,,FATAL,Y,Afternoon,Thought to involve a 2.6 m [8.5'] white shark,"R. Fernicola, GSAF",1916.07.06-Bruder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.06-Bruder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.06-Bruder.pdf,1916.07.06,1916.07.06,915,, +1916.07.01,01-Jul-16,1916,Unprovoked,USA,New Jersey,"Beach Haven, Ocean County",Swimming,Charles E. Vansant,M,24,"FATAL, left leg bitten",Y,17h00,Thought to involve a 2.6 m [8.5'] white shark,"R. Fernicola, GSAF",1916.07.01-Vansant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.01-Vansant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.01-Vansant.pdf,1916.07.01,1916.07.01,914,, +1916.06.30,30-Jun-16,1916,Unprovoked,USA,New Jersey,"Atlantic City, Atlantic County",Swimming,boy,M,10 or 12,Heel bitten,N,,,C. Phinizy,1916.06.30-AtlanticCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.30-AtlanticCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.30-AtlanticCity.pdf,1916.06.30,1916.06.30,913,, +1916.06.24.R,Reported 24-Jun-1916,1916,Unprovoked,ATLANTIC OCEAN,,,Jumped overboard from Norwegian steamship Venator,Victor Matheson,M,,Presumed FATAL,Y,,,"Washington Post, 6/24/1916, p.6",1916.06.24.R-Matheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.24.R-Matheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.24.R-Matheson.pdf,1916.06.24.R,1916.06.24.R,912,, +1916.06.23,23-Jun-16,1916,Provoked,USA,Florida,,,Adolph Crouse,M,26,Leg bitten by shark hooked shark PROVOKED INCIDENT,N,,,"New York Times, 6/29/1916",1916.06.23-Crouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.23-Crouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.23-Crouse.pdf,1916.06.23,1916.06.23,911,, +1916.04.25.R,Reported 25-Apr-1916,1916,Unprovoked,AUSTRALIA,New South Wales,Manley Beach,Swimming,Thomas Harrington,M,,FATAL,Y,,,"Modesto Evening News, 4/25/1916",1916.04.25.R-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.25.R-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.25.R-Harrington.pdf,1916.04.25.R,1916.04.25.R,910,, +1916.04.03,03-Apr-16,1916,Unprovoked,AUSTRALIA,Victoria,Carrum,Clinging to overturned rowing boat,Monte Robinson & Andrew McNeill,M,17,FATAL,Y,,,"Argus, 3/5/1917",1916.04.03-Robinson-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.03-Robinson-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.03-Robinson-McNeill.pdf,1916.04.03,1916.04.03,909,, +1916.03.19,19-Mar-16,1916,Unprovoked,AUSTRALIA,New South Wales,Curl Curl,Bathing,Alexander Robinson,M,,Minor lacerations to heel,N,15h30,,"Argus, 4/21/1916",1916.03.19-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.03.19-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.03.19-Robinson.pdf,1916.03.19,1916.03.19,908,, +1915.12.09.R,Reported 09-Dec-1915,1915,Unprovoked,AUSTRALIA,Torres Strait, Thursday Island,Diving,A Japanese diver,M,,"Arm severed, lacerations to thigh",N,,,"Big Piney Examiner, 12/9/1915",1915.12.09.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.12.09.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.12.09.R-JapaneseDiver.pdf,1915.12.09.R,1915.12.09.R,907,, +1915.11.10,10-Nov-15,1915,Unprovoked,AUSTRALIA,Queensland,"Cabbage Tree Creek, Sandgate",Bathing,James Gleeson,M,10,Severe bite to arm,N,,,"Argus, 11/11/1915",1915.11.10-Gleeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.10-Gleeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.10-Gleeson.pdf,1915.11.10,1915.11.10,906,, +1915.11.08,08-Nov-14,1915,Unprovoked,AUSTRALIA,New South Wales,Manly,Bathing,Albert Rebecchi,M,,Severe lacerations to feet & ankles,N,,,"Sydney Morning Herald, 11/9/1915; V.M. Coppleson (1962), p.245 ",1915.11.08-Rebecchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.08-Rebecchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.08-Rebecchi.pdf,1915.11.08,1915.11.08,905,, +1915.08.03,03-Aug-15,1915,Unprovoked,USA,Florida,"St. Augustine, St Johns County",,M.F. Turnipseed,M,,Laceration to left leg,N,,,,1915.08.03-Turnipseed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.08.03-Turnipseed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.08.03-Turnipseed.pdf,1915.08.03,1915.08.03,904,, +1915.07.06.a.R,Reported 06-Jul-1915,1915,Unprovoked,MEXICO,Tamaulipas,Tampico,Fishing,Captain Thaxton,M,,FATAL,Y,,,"Oakland Tribune, 7/6/1915",1915.07.06.b.R-Thaxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.b.R-Thaxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.b.R-Thaxton.pdf,1915.07.06.a.R,1915.07.06.a.R,903,, +1915.07.06.a.R,Reported 06-Jul-1915,1915,Unprovoked,MEXICO,,Santa Maria Bar,Wading,J.W. McDonald,M,,FATAL,Y,,,"Oakland Tribune, 7/6/1915",1915.07.06.a.R-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.a.R-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.a.R-McDonald.pdf,1915.07.06.a.R,1915.07.06.a.R,902,, +1915.05.15.R,Reported 15-May-1915,1915,Invalid,EGYPT,,Alexandria,Fell overboard,male,M,,Shark involvement not confirmed,Y,,,"C. Moore, GSAF",1915.05.15.R-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.05.15.R-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.05.15.R-Alexandria.pdf,1915.05.15.R,1915.05.15.R,901,, +1915.03.29,29-Mar-15,1915,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Skin diving for trepang but at surface next to the boat,Hana,M,,"Shoulder bitten. Hana, one of the rescuers, fended shark off with an oar, then shark bit oar in two",N,,3 m [10'] shark,"N. Bartlett, pp.234",1915.03.29-Hana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.03.29-Hana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.03.29-Hana.pdf,1915.03.29,1915.03.29,900,, +1915.02.06,06-Feb-15,1915,Unprovoked,AUSTRALIA,Queensland,Wynnum-Manley,Swimming,H. Stanton,M,,Foot bitten,N,,,"Brisbane Courier, 2/8/1915",1915.02.06-Stanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.02.06-Stanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.02.06-Stanton.pdf,1915.02.06,1915.02.06,899,, +1915.01.13,13-Jan-15,1915,Invalid,NEW ZEALAND,North Island,Otaki,Fishing,Henry Hodge & his son,M,,Death may have been due to drowning,Y,,,"The Mercury, 1/14/1915",1915.01.13-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.13-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.13-Hodge.pdf,1915.01.13,1915.01.13,898,, +1915.01.01,01-Jan-15,1915,Unprovoked,AUSTRALIA,New South Wales,"Sirius Cove, Sydney Harbor",Bathing,Warren Tooze,M,17,FATAL,Y,,,"G.P. Whitley, citing Argus (Melbourne) 1/5/1915; V.M. Coppleson (1958), p.70",1915.01.01-Tooze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.01-Tooze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.01-Tooze.pdf,1915.01.01,1915.01.01,897,, +1915.00.00,Ca. 1915,1915,Invalid,USA,Florida,"Soldier Key, Miami-Dade County",,Remains of male found in shark,M,,"Fatal, drowning or scavenging",UNKNOWN,,"Reported to involve a 3.7 m [12'] shark, possibly a white shark","Fishing Gazette 1915, Vol. 32, No. 10, p.296",1915.00.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.00.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.00.00-HumanRemains.pdf,1915.00.00,1915.00.00,896,, +1914.12.04.R,Reported 04-Dec-1914,1914,Unprovoked,AUSTRALIA,Queensland,Magnetic Island,Swimming,A. Steinstecke,M,,Lacerations to right thigh and knee,N,,,"Northern Miner, 12/4/1914",1914.12.04.R-Steinstecke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.12.04.R-Steinstecke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.12.04.R-Steinstecke.pdf,1914.12.04.R,1914.12.04.R,895,, +1914.10.17,17-Oct-14,1914,Sea Disaster,SAMOA,Apolima Strait,Opposite Apelima & Manona,Copra vessel with 19 on board was wrecked in a squall,female,F,,Thigh bitten,N,,,"Evening Post, 12/2/1914",1914.10.17-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.10.17-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.10.17-Samoa.pdf,1914.10.17,1914.10.17,894,, +1914.09.26.R,Reported 26-Sep-1914,1914,Unprovoked,JAMAICA,Kingston Parish,Port Royal,Fell overboard,"""a native boy""",M,,FATAL,Y,,"A 20' shark known as ""Old Tom""","Stevens Point Daily Journal, 9/26/1914, p.2 ",1914.09.26.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.26.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.26.R-Jamaica.pdf,1914.09.26.R,1914.09.26.R,893,, +1914.09.09,09-Sep-14,1914,Unprovoked,USA,Louisiana,Lake Pontchartrain,Swimming,Peter Kontspoulas,M,17,FATAL,Y,,,"Washington Post, 9/10/1914, p.6",1914.09.09-PeterKontspoulas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.09-PeterKontspoulas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.09-PeterKontspoulas.pdf,1914.09.09,1914.09.09,892,, +1914.07.15.R,Reported 15-Jul-1914,1914,Unprovoked,CROATIA,Zadar County,Biograd na moru,Washing clothes,female,F,,"No injury, shark grabbed clothes",N,,1.5 m [5'] shark,"C. Moore, GSAF",1914.07.15.R.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.15.R.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.15.R.pdf,1914.07.15.R,1914.07.15.R,891,, +1914.07.09.R,Reported 09-Jul-1914,1914,Provoked,USA,Louisiana,New Orleans,Fishing,Lopez,M,,PROVOKED INCIDENT Legs severed by shark entangled in his net,N,,,"Lima Daily News, 7/9/1914",1914.07.09.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.09.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.09.R-Lopez.pdf,1914.07.09.R,1914.07.09.R,890,, +1914.07.07,07-Jul-14,1914,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Rijeka,,male,M,,"No injury, shark nudged raft and circled for 2 hrs.",N,,6 m shark,"C. Moore, GSAF",1914.07.07.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.07.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.07.pdf,1914.07.07,1914.07.07,889,, +1914.06.12,13-Jun-14,1914,Boating,MONTENEGRO,Adriatic Sea,Between St. Stjepan and Budva,Fishing boat,Occupants: Ivan Angjus & Stevo Kentera,M,,"No injury, shark bit paddle and stern of boat",N,07h00,,"C. Moore, GSAF",1914.06.13-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.13-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.13-Budva.pdf,1914.06.12,1914.06.12,888,, +1914.06.10,10-Jun-14,1914,Unprovoked,AUSTRALIA,Victoria,Sandringham,Bathing,Mr. Croxford,M,43,FATAL,Y,Afternoon,,"Evening Post, 6/11/1914",1914.06.10-Croxford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.10-Croxford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.10-Croxford.pdf,1914.06.10,1914.06.10,887,, +1914.05.31,31-May-14,1914,Sea Disaster,NEW CALEDONIA,South Province,Noumea,Swimming ashore from swamped 13-ft boat,Mr. Child & a Kanaka,M,,FATAL x 2,Y,,,"The Mercury, 6/23/1914",1914.05.31-Child-Kanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.31-Child-Kanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.31-Child-Kanaka.pdf,1914.05.31,1914.05.31,886,, +1914.05.14,14-May-14,1914,Provoked,USA,Florida,"Boca Ciega Bay, Pinellas County",Fishing,Mrs. A.L. Cummings,F,,PROVOKED INCIDENT Lacerations to right hand by hooked shark,N,Afternoon,3' shark,"Evening Independent, 5/14/1914, p.1",1914.05.14-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.14-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.14-Cummings.pdf,1914.05.14,1914.05.14,885,, +1914.03.14.R,Reported 14-Mar-1914,1914,Invalid,USA,Florida,"St. Augustine, St Johns County",Swimming,John B. Mooney,M,,His remains were recovered from a shark 3 years after his disappearance - Probable drowning / scavenging,Y,,,"Washington Post, 3/14/1914, p.E9",1914.03.14.R-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.14.R-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.14.R-Mooney.pdf,1914.03.14.R,1914.03.14.R,884,, +1914.03.03,03-Mar-14,1914,Unprovoked,USA,Hawaii,"Honomu, Hawai'i",Washed into sea while picking opihi & attacked by 2 large sharks ,Okomoto,M,,FATAL,Y,,,C.H. Townsend,1914.03.03-Okomoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.03-Okomoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.03-Okomoto.pdf,1914.03.03,1914.03.03,883,, +1914.02.09.R,Reported 09-Feb-1914,1914,Unprovoked,AUSTRALIA,South Australia,Marion Bay,Wading,Mr. Hasell,M,,Lacerations to foot,N,,said to involve a tiger shark,"The Advertiser, 2/10/1914",1914.02.09.R-Hasell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.09.R-Hasell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.09.R-Hasell.pdf,1914.02.09.R,1914.02.09.R,882,, +1914.02.03, 03-Feb-1914,1914,Unprovoked,AUSTRALIA,New South Wales,Paramatta River,Canoeing,John Dabbs,M,,Lacerations to arms,N,,,"Oakland Tribune, 3/241914, p.22",1914.02.03-Dabbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.03-Dabbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.03-Dabbs.pdf,1914.02.03,1914.02.03,881,, +1914.01.17.R,Reported 17-Jan-1914,1914,Unprovoked,AUSTRALIA,Queensland,Brisbane,Wading,Mrs. Schmidt,F,,Laceration to leg,N,,,"The Queenslandert , 1/17/1914",1914.01.17.R-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.01.17.R-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.01.17.R-Schmidt.pdf,1914.01.17.R,1914.01.17.R,880,, +1914.00.00,1914,1914,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,,Indian female,F,,No details,UNKNOWN,,,"L. Green, South African Beachcomber, p.97",1914.00.00-IndianWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.00.00-IndianWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.00.00-IndianWoman.pdf,1914.00.00,1914.00.00,879,, +1913.12.30.R,Reported 30-Dec-1913,1913,Provoked,USA,Florida,"Palm Beach, Palm Beach County",Fishing for mackerel,"motor boat, occupants: Mr. & Mrs. Sidney M. Colgate and their three children, Bayard, Caroline and Margaret ",,,No injury to occupants but hull splintered by harpooned shark PROVOKED INCIDENT,N,,13' shark,"New Smyrna Daily News, 1/2/1914, p.12",1913.12.30.R-Colgate Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.30.R-Colgate Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.30.R-Colgate Boat.pdf,1913.12.30.R,1913.12.30.R,878,, +1913.11.27,27-Nov-13,1913,Unprovoked,NIGERIA,Lagos ,Lagos,Boat swamped,Gerald Arthur Edwin Denny,M,,FATAL,Y,,,"The Times (London), 7/21/1914, p.7; Lima Daily News, 1/10/1914",1913.11.27-Denny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.27-Denny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.27-Denny.pdf,1913.11.27,1913.11.27,877,, +1913.11.21,21-Nov-13,1913,Unprovoked,AUSTRALIA,Queensland,"Sandgate Jetty, Brisbane",Swimming,Henry Boucher,M,12,Calf severely bitten; leg surgically amputated,N,,,"Sydney Morning Herald, 11/24/1913 ",1913.11.21-Boucher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.21-Boucher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.21-Boucher.pdf,1913.11.21,1913.11.21,876,, +1913.09.21,21-Sep-13,1913,Unprovoked,USA,Florida,"West Palm Beach, Palm Beach County",,male,M,,Major injuries but survived,N,,Said to involve a 2.4 m [8'] hammerhead shark,"V.M. Coppleson (1958), p.251; T. Helm, p.212",1913.09.21-WestPalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.21-WestPalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.21-WestPalmBeach.pdf,1913.09.21,1913.09.21,875,, +1913.09.03,03-Sep-13,1913,Provoked,CROATIA,Istria County,Pula,,Fishing,M,,Badly bitten by a shark dragged onboard PROVOKED INCIDENT,N,,2 m shark,"C.Moore, GSAF",1913.09.03-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.03-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.03-Croatia.pdf,1913.09.03,1913.09.03,874,, +1913.08.27.R,Reported 27-Aug-1913,1913,Invalid,USA,New Jersey,"Lavalette, Ocean County",,,M,,Man's leg recovered from 800-lb shark,UNKNOWN,,,"Trenton Evening Times, 8/27/1913",1913.08.27.R-Lavalette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-Lavalette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-Lavalette.pdf,1913.08.27.R,1913.08.27.R,873,, +1913.08.27.R,Reported 27-Aug-1913,1913,Invalid,USA,New Jersey,"Spring Lake, Monmouth County",,,F,,Female foot recovered from shark,UNKNOWN,,,"Washington Post, 8/27/1913",1913.08.27.R-FemaleFoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-FemaleFoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-FemaleFoot.pdf,1913.08.27.R,1913.08.27.R,872,, +1913.08.26.R,26-Aug-13,1913,Invalid,ITALY,Trieste,,,,,,Human casualties,Y,,,"C. Moore, GSAF",1913.08.26.R-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.26.R-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.26.R-Trieste.pdf,1913.08.26.R,1913.08.26.R,871,, +1913.07.12,12-Jul-13,1913,Unprovoked,USA,South Carolina,Charleston,,soldier,M,,FATAL,Y,,,"C. Creswell, GSAF",1913.07.12-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.07.12-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.07.12-soldier.pdf,1913.07.12,1913.07.12,870,, +1913.05.21,21-May-13,1913,Provoked,USA,Florida,"John's Pass, Pinellas County",Fishing,George Roberts,M,,"Forefinger of right hand bitten by a ""dead"" shark PROVOKED INCIDENT",N,,,"Evening Independent, 5/22/1913",1913.05.21-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.21-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.21-Roberts.pdf,1913.05.21,1913.05.21,869,, +1913.05.02,02-May-13,1913,Provoked,AUSTRALIA,New South Wales,,Hauling in net,Richard Moss,M,,Lacerations to thigh by netted shark PROVOKED INCIDENT,N,,,"Northern Star, 5/7/1913",1913.05.02-Moss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.02-Moss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.02-Moss.pdf,1913.05.02,1913.05.02,868,, +1913.03.27,27-Mar-13,1913,Unprovoked,SAMOA,Upolu Island,Apia Harbor,,German sailor,M,,Leg severed,N,,,"Coppleson (1962), p.247",1913.03.27-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.03.27-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.03.27-Samoa.pdf,1913.03.27,1913.03.27,867,, +1913.01.00,Jan-13,1913,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Diving,"Treacle, a Torres Strait islander",M,,"Head, neck & left shoulder bitten",N,,Tiger shark ,"N. Bartlett, pp.232-233; V.M. Coppleson (1958), p.7 ",1913.01.00-Treacle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.01.00-Treacle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.01.00-Treacle.pdf,1913.01.00,1913.01.00,866,, +1913.00.00.d,1913,1913,Unprovoked,REUNION,Saint-Denis,Barachoise bridge,Swimming after his hat,male,M,,FATAL,Y,,,H. Cornu,1913.00.00.d-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.d-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.d-ReunionIsland.pdf,1913.00.00.d,1913.00.00.d,865,, +1913.00.00.c,1913,1913,Unprovoked,REUNION,5aint-Denis,Barachois,Swimming,male,M,,FATAL,Y,,,H. Cornu,1913.00.00.c-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.c-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.c-ReunionIsland.pdf,1913.00.00.c,1913.00.00.c,864,, +1913.00.00.a,1913,1913,Unprovoked,AUSTRALIA,Victoria,Brighton,,"male, a ""youth""",M,,Arm severed,N,,,"V.M. Coppleson (1958), p.110 [ Note: Coppleson had no concrete evidence about this incident; he heard only ""vague reports"".",1913.00.00.a-youth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.a-youth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.a-youth.pdf,1913.00.00.a,1913.00.00.a,863,, +1912.08.30,30-Aug-12,1912,Unprovoked,USA,Georgia,"Tybee Island, Chatham County",Swimming,Edward Coffee,M,12,FATAL,Y,,,"Atlanta Constitution, 8/31/1912, p.5",1912.08.30-Coffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.08.30-Coffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.08.30-Coffee.pdf,1912.08.30,1912.08.30,862,, +1912.07.23,23-Jul-12,1912,Unprovoked,USA,South Carolina,Sullivan's Island,Swimming,Corporal Kirkpatrick,M,,Toes severed,N,Afternoon,8' shark,"Atlanta Constitution, 7/25/1912",1912.07.23-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.23-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.23-Kirkpatrick.pdf,1912.07.23,1912.07.23,861,, +1912.07.06.R,Reported 06-Jul-1912,1912,Unprovoked,SOLOMON ISLANDS,Central Province,Savo,Bathing,male,M,,FATAL,Y,,,"Sydney Morning Herald, 7/6/1912",1912.07.06.R-Savo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.06.R-Savo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.06.R-Savo.pdf,1912.07.06.R,1912.07.06.R,860,, +1912.05.04,04-May-12,1912,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,,arm recovered from hooked shark,M,,,UNKNOWN,,,"M. Levine, GSAF",1912.05.04-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.05.04-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.05.04-arm.pdf,1912.05.04,1912.05.04,859,, +1912.03.18,18-Mar-12,1912,Unprovoked,NEW ZEALAND,North Island,Takapuna,Swimming,male,M,,"""Slight laceration to leg""",N,,,"Evening Post, 3/20/1912",1912.03.18-Takapuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.03.18-Takapuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.03.18-Takapuna.pdf,1912.03.18,1912.03.18,858,, +1912.02.22,22-Feb-12,1912,Provoked,AUSTRALIA,Western Australia,Bunbury,Hard hat diving,Mr. Swanson,M,,"No injury, shark nipped diving suit after he prodded the shark PROVOKED INCIDENT ",N,,,"Western Argus, 2/27/1912",1912.02.22-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.22-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.22-Swanson.pdf,1912.02.22,1912.02.22,857,, +1912.02.19,19-Feb-12,1912,Unprovoked,AUSTRALIA,New South Wales,Coogee,Swimming,Fred Wort,M,18,Left calf & heel bitten,N,16h00,,"Argus (Melbourne) 2/20/1912, p.6; G.P. Whitley, p.260",1912.02.19-Wort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.19-Wort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.19-Wort.pdf,1912.02.19,1912.02.19,856,, +1912.02.03,03-Feb-12,1912,Unprovoked,NEW CALEDONIA,South Province,Noumea,Swimming,Raoul Gillies,M,,Left shoulder & both legs bitten,N,,,"Northern Star, 3/16/1912",1912.02.03-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.03-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.03-Gillies.pdf,1912.02.03,1912.02.03,855,, +1912.01.26,26-Jan-12,1912,Unprovoked,AUSTRALIA,New South Wales,"Fig Tree Bridge, Lane Cove River, near Sydney ",Swimming,James Edward Morgan,M,21,FATAL,Y,15h00,"2.8 m [9'3""] whaler shark captured 3 days later with his remains in its gut","Argus (Melbourne) 1/27, 28, 29, 30/1912; G.P. Whitley, p.260; V.M. Coppleson (1962), p.245; A. Sharpe, p.88",1912.01.26-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.26-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.26-Morgan.pdf,1912.01.26,1912.01.26,854,, +1912.01.13.R,Reported 13-Jan-1912,1912,Unprovoked,FIJI,Viti Levu group,Beqa,Washed overboard,,M,7,FATAL,Y,,,"Clarence & Richmond Examiner, 1/13/1912",1912.01.13.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.13.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.13.R-Fiji.pdf,1912.01.13.R,1912.01.13.R,853,, +1912.01.06,06-Jan-12,1912,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,,male,M,,Thigh & lower abdomen severely bitten,N,,"C. macrurus captured 48 hours after attack with tissue removed from man in its gut; species identified by G.P. Whitley, reported as C. obscurus by R. Steel"," V.M. Coppleson (1933), page 450, citing J. Burton Cleland Australasian Medical Gazette, September 14, 1912, page 270",1912.01.06-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.06-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.06-Sydney.pdf,1912.01.06,1912.01.06,852,, +1912.01.01,01-Jan-12,1912,Unprovoked,AUSTRALIA,Queensland,Ross Creek,Bathing,Samuel Tristing,M,,FATAL,Y,Morning,,"Argus, 1/2/1912",1912.01.01-Tristing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.01-Tristing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.01-Tristing.pdf,1912.01.01,1912.01.01,851,, +1912.00.00,1912,1912,Unprovoked,SPAIN,Balearics,Isla Cabrera,Fell into the water,the governor of Cabrera,M,,FATAL,Y,,White shark,C. Moore,1912.00.00-Isla-Cabrera-Balearics.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.00.00-Isla-Cabrera-Balearics.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.00.00-Isla-Cabrera-Balearics.pdf,1912.00.00,1912.00.00,850,, +1911.11.08,08-Nov-11,1911,Invalid,USA,Florida,"Pensacola Bay, Escambia County",,Jules Antoine,M,,"Cause of death undetermined. 3.6 m [11'9""] shark seen carrying body. Next day, shark was killed & Antoine's entire body was found in its gut.",Y,,,"The Sun, 7/13/1913; H.D. Baldridge, p.170",1911.11.08-Antonine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.11.08-Antonine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.11.08-Antonine.pdf,1911.11.08,1911.11.08,849,, +1911.10.26,26-Oct-11,1911,Unprovoked,USA,South Carolina,Off Charleston,Fell overboard from steamship Rio Grande,George Spencer,M,,FATAL,Y,,,"Fresno Bee, 10/31/1911",1911.10.26-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.26-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.26-Spencer.pdf,1911.10.26,1911.10.26,848,, +1911.10.25,25-Oct-11,1911,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving,Toby,M,23,Calves bitten,N,Evening,,"Cairns Post, 11/2/1911",1911.10.25-Toby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.25-Toby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.25-Toby.pdf,1911.10.25,1911.10.25,847,, +1911.09.23,23-Sep-11,1911,Unprovoked,USA,Texas,Galveston Ship Channel,Jumped overboard to rescue companion,"John Blomquist, a dredgerman",M,,FATAL,Y,Early morning,,"The Sun, 7/13/1913; V.M. Coppleson (1962), p.249",1911.09.23-Blomquist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.23-Blomquist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.23-Blomquist.pdf,1911.09.23,1911.09.23,846,, +1911.09.20,20-Sep-11,1911,Unprovoked,USA,Florida,"Pensacola Bay, Escambia County",Fell overboard & swimming,"Thomas Ashe, a ships pilot",M,,FATAL,Y,,,"The Sun, 7/13/1913; Washington Post, 9/21/1911; V.M. Coppleson (1962) p.249",1911.09.20-Ashe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.20-Ashe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.20-Ashe.pdf,1911.09.20,1911.09.20,845,, +1911.09.17,17-Sep-11,1911,Unprovoked,USA,Florida,"Pablo Beach, Jacksonville, Duval County",Bathing,Harold C. Rood,M,,Left arm & thigh bitten,N,,,"Sun, 7/13/1913; V.M. Coppleson (1962), p.249",1911.09.17-HCRood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.17-HCRood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.17-HCRood.pdf,1911.09.17,1911.09.17,844,, +1911.07.31.R,Reported 31-Jul-1911,1911,Unprovoked,SPAIN,Mlaga ,Ceuta,Bathing,a soldier,M,,FATAL,Y,,,C. Moore,1911.07.31.R-Ceuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.31.R-Ceuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.31.R-Ceuta.pdf,1911.07.31.T,1911.07.31.R,843,, +1911.07.16.R,Reported 16-Jul-1911,1911,Provoked,USA,Delaware,Delaware Lightship,Fishing,Martin Berg,M,,"Hooked shark bit his leg, knee to ankle PROVOKED INCIDENT",N,,,"Washington Post, 7/16/1911",1911.07.16.R-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.16.R-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.16.R-Berg.pdf,1911.07.16.R,1911.07.16.R,842,, +1911.05.09,09-May-11,1911,Unprovoked,SOUTH AFRICA,Western Cape Province,Victoria Bay,Bathing,James May,M,64,"FATAL, partial remains recovered",Y,"""Early evening""",,"Cape Mercantile Advertiser, 5/16/1911; M. Levine, GSAF",1911.05.09-JamesMay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.09-JamesMay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.09-JamesMay.pdf,1911.05.09,1911.05.09,841,, +1911.05.01.R,Reported 01-May-1911,1911,Provoked,USA,Texas,"Rockport, Aransas County",Fishing,Mateo Zapeda,M,,Bitten on left leg by hooked shark PROVOKED INCIDENT,N,,5' shark,"Daily Advocate, 5/1/1911",1911.05.01.R-Zepada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01.R-Zepada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01.R-Zepada.pdf,1911.05.01.R,1911.05.01.R,840,, +1911.05.01,01-May-11,1911,Unprovoked,SOUTH AFRICA,Western Cape Province,Victoria Bay,Swimming,James Jantjes,M,,FATAL,Y,,,"Cape Mercantile Advertiser, 5/2/1911, M. Levine, GSAF",1911.05.01-Jantjies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01-Jantjies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01-Jantjies.pdf,1911.05.01,1911.05.01,839,, +1911.04.08.R,Reported 08-Apr-1911,1911,Boating,NEW ZEALAND,Chatham Islands,,Fishing,2 fishermen,,,"No injury to occupants, shark bit boat",N,,,"Grey River Argus, 4/8/1911",1911.04.08.R-ChathamIslandBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.04.08.R-ChathamIslandBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.04.08.R-ChathamIslandBoat.pdf,1911.04.08.R,1911.04.08.R,838,, +1911.03.29.R,Reported 29-Mar-1911,1911,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Swimming,male,M,,FATAL,Y,,,"Northern Star, 3/29/1911",1911.03.29.R-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.03.29.R-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.03.29.R-ThursdayIsland.pdf,1911.03.29.R,1911.03.29.R,837,, +1911.01.04,04-Jan-11,1911,Sea Disaster,AUSTRALIA,Western Australia,Off Legendre Island,3-masted steel barque Glenbank foundered during a cyclone,Anti Ketola,M,22,Minor injuries,N,,,"Washington Post, 1/26/1913",1911.01.04-Katola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.01.04-Katola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.01.04-Katola.pdf,1911.01.04,1911.01.04,836,, +1911.00.00.b,1911,1911,Unprovoked,USA,Texas,"Texas City, Galveston",Swimming,a sailor,M,,Minor injury to feet,N,,,D.G. McComb,1911.00.00.b-TexasCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.b-TexasCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.b-TexasCity.pdf,1911.00.00.b,1911.00.00.b,835,, +1911.00.00.a,Ca. 1911,1911,Unprovoked,NEW ZEALAND,North Island,"Manukau Harbor, 6 miles south of Auckland",Fishing,male,M,50,FATAL,Y,,,H.C. Chapman,1911.00.00.a-Manukau Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.a-Manukau Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.a-Manukau Harbor.pdf,1911.00.00.a,1911.00.00.a,834,, +1910.12.25.R,Reported 25-Dec-1910,1910,Invalid,CROATIA, Primorje-Gorski Kotar County,Rijeka,,male,M,,FATAL?,Y,,,C. Moore,1910.12.15.R-Rijeka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.15.R-Rijeka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.15.R-Rijeka.pdf,1910.12.25.R,1910.12.25.R,833,, +1910.12.23.R,Reported 23-Dec-1910,1910,Sea Disaster,AUSTRALIA,Western Australia,Fremantle,Shipwrecked pearling schooner,Theodore Andersons captain & rest of crew taken by sharks,M,,FATAL,Y,,,"Iowa City Citizen, 12/23/1910",1910.12.23.R-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.23.R-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.23.R-Anderson.pdf,1910.12.23.R,1910.12.23.R,832,, +1910.11.28,28-Nov-10,1910,Provoked,NORTH ATLANTIC OCEAN,Georges Bank,,Fishing,Tham Key,M,,Right hand severely bitten by netted shark PROVOKED INCIDENT,N,,Angel shark,"NY Times, 11/30/1910",1910.11.28-Key.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.28-Key.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.28-Key.pdf,1910.11.28,1910.11.28,831,, +1910.11.24,24-Nov-10,1910,Unprovoked,AUSTRALIA,Queensland,Mackay,Bathing,Cecil Smith,M,,Foot bitten,N,,Said to involve 9' blue shark,"The Advertiser, 11/25/1910",1910.11.24-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.24-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.24-Smith.pdf,1910.11.24,1910.11.24,830,, +1910.06.25.R,Reported 25-Jun-1910,1910,Unprovoked,MEXICO,,LaBarra,Swimming,H. Gebler,M,,Leg bitten,N,,,"Indiana Evening Gazette, 9/25/1910",1910.06.25.R-Gebler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.25.R-Gebler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.25.R-Gebler.pdf,1910.06.25.R,1910.06.25.R,829,, +1910.06.08.R,Reported 08-Jun-1910,1910,Sea Disaster,MOZAMBIQUE,Zambesi River,Portuguese territory,"Steamer Durao struck rock & filled, boats capsized, passengers & crew tried to swim to shore",,,,"FATAL, 3 passengers & 14 crew taken by sharks, captain, 1 passenger & 2 crew survived",Y,,,D. Davies,1910.06.08.R-Durao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.08.R-Durao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.08.R-Durao.pdf,1910.06.08.R,1910.06.08.R,828,, +1910.05.16.R,Reported 16-May-1910,1910,Invalid,USA,Alabama,"Off Fort Gaines, Dauphin Island, Mobile County","Unknown, their unoccupied yawlboat was recovered","William Olsen, William Peterson, Albert Thomas & R. Zekoski",M,,Presumed drowned & bodies taken by sharks,N,,,"Atlanta Constitution, 5/17/1910, p.5",1910.05.16.R-yawlboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.05.16.R-yawlboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.05.16.R-yawlboat.pdf,1910.05.16.R,1910.05.16.R,827,, +1910.03.31,31-Mar-10,1910,Unprovoked,PANAMA,Coln Province,Cristobal,Fell overboard from USS cruiser Tacoma,"Samuel Barnes, a Marine",M,,FATAL,Y,,,"The Ogden Standard, 4/13/1910",1910.03.31-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.31-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.31-Barnes.pdf,1910.03.31,1910.03.31,826,, +1910.03.08,08-Mar-10,1910,Unprovoked,NEW ZEALAND,North Island,"Waikanae Beach, Gisborne",Swimming,H. McGregor,M,,Lacerations to foot,N,Evening,6' shark,"Poverty Bay Herald, 3/9/1910",1910.03.08-McGregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.08-McGregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.08-McGregor.pdf,1910.03.08,1910.03.08,825,, +1910.03.00,Mar-10,1910,Invalid,USA,Hawaii,"Pearl Harbor, O'ahu","Hard hat diving, laying some charge of powder",Martin Lund,M,,No injury,N,,,"The Sun, 4/3/1910; Authenticity questioned by G.H. Balazs in J. Borg, p.70",1910.03.00-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.00-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.00-Lund.pdf,1910.03.00,1910.03.00,824,, +1910.02.16, 16-Feb-1910,1910,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Surf bathing,George Cridland,M,,"Shoulder, back & leg bitten",N,Night,5.5' to 6' shark,"Western Mail, 2/26/1910",1910.02.16-Cridland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.02.16-Cridland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.02.16-Cridland.pdf,1910.02.16,1910.02.16,823,, +1910.01.26,26-Jan-10,1910,Unprovoked,AUSTRALIA,New South Wales,Newcastle Harbor,,Alfred Victor Clulow,M,,FATAL,Y,,,"V.M. Coppleson (1962), p.245",1910.01.26-Clulow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.01.26-Clulow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.01.26-Clulow.pdf,1910.01.26,1910.01.26,822,, +1910.00.00.b,1910,1910,Invalid,USA,Hawaii,"Hilo, Hawai'i","Fishing, thrown into water by heavy sea, clinging to rocks at the water line",male,M,,"Body bitten by shark/s, but death may have been due to drowning",Y,,,"C.H. Townsend; Authenticity questioned by G.H. Balazs in J. Borg, p.70",1910.00.00.b-Hilo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.b-Hilo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.b-Hilo.pdf,1910.00.00.b,1910.00.00.b,821,, +1910.00.00.a,1910,1910,Unprovoked,PHILIPPINES,Luzon Island,"Polinao Point, Manila",Swimming,Lieut. James H. Stewart,M,,"Calf removed, not known if he survived ",UNKNOWN,,6 m [20'] shark,"V.M. Coppleson (1958), p.264",1910.00.00.a-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.a-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.a-Stewart.pdf,1910.00.00.a,1910.00.00.a,820,, +1909.12.26.R,Reported 26-Nov-1909,1909,Unprovoked,USA,Florida,"16 miles north of Fort Pierce Inlet, Indian River County ",,Herman Hovelsrud ,M,,Severe lacerations to arm,N,,,"Washington Post, 12/26/1909",1909.12.26.R-Hovelsrud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.26.R-Hovelsrud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.26.R-Hovelsrud.pdf,1909.12.26.R,1909.12.26.R,819,, +1909.12.15.R,Reported 15-Dec-1909,1909,Unprovoked,AUSTRALIA,New South Wales,20 miles off Sydney,Fell overboard,Mr. Witt,M,,FATAL,Y,,,"Star, 12/15/1909",1909.12.15.R-Witt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.15.R-Witt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.15.R-Witt.pdf,1909.12.15.R,1909.12.15.R,818,, +1909.12.05,05-Dec-09,1909,Provoked,AUSTRALIA,New South Wales,Bondi,Fishing,male,M,,3 fingers bitten by hooked shark PROVOKED INCIDENT,N,,7' shark,"The Advertiser, 12/9/1909",1909.12.05-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.05-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.05-Fisherman.pdf,1909.12.05,1909.12.05,817,, +1909.11.14,14-Nov-1909 to 19-Nov-1909,1909,Sea Disaster,INDONESIA,30 nm from Singapore,Rhio Strait,The 2379-ton French steamer La Seyne collied with British steamer Onda & sank in minutes. Passengers jumped overboard expecting to be picked up by Ondas boats,,,,"FATAL, 101 people perished, including commander, Joseph Couailhac. Iit was reported that a shoal of sharks circled passengers in the water and dragged scores of people to their deaths Of the 61 survivors, many were injured by sharks",Y,,,"The Sun, 7/13/1913 ",1909.11.14-LaSeyne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.11.14-LaSeyne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.11.14-LaSeyne.pdf,1909.11.14,1909.11.14,816,, +1909.09.04.R,Reported 04-Sep-1909,1909,Provoked,USA,Delaware,"Lewes, Sussex County",Seine netting,Walter Beach,M,,Abrasion to leg from netted shark PROVOKED INCIDENT,N,,5' shark,"Gettysburg Times, 9/4/1909",1909.09.04.R-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.09.04.R-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.09.04.R-Beach.pdf,1909.09.04.R,1909.09.04.R,815,, +1909.08.13,13-Aug-09,1909,Unprovoked,USA,Florida,"Pensacola Bay, Escambia County",Fell overboard from fishing schooner Halycon,William Craug,M,,FATAL,Y,,,"Laurel Ledger, 8/19/1909",1909.08.13-Craug.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.08.13-Craug.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.08.13-Craug.pdf,1909.08.13,1909.08.13,814,, +1909.07.24,24-Jul-09,1909,Unprovoked,USA,New York,Rockaway,Fell overboard while fishing for sharks,Albert Tyler,M,,Right leg bitten,N,Afternoon,,"NY Times, 7/25/1909",1909.07.24-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.24-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.24-Tyler.pdf,1909.07.24,1909.07.24,813,, +1909.07.15,15-Jul-09,1909,Unprovoked,USA,Florida,"Panama City, Bay County",Swimming,Henry Munson,M,16,Hip & thigh lacerated,N,,,"News Herald, 7/29/2001",1909.07.15-Munson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.15-Munson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.15-Munson.pdf,1909.07.15,1909.07.15,812,, +1909.06.26.a.R,Reported 26-Jun-1909,1909,Unprovoked,MEXICO,Guerrero,Zacatula,Bathing,Rosa Lopez,F,,FATAL,Y,,,"Adams County News, 6/26/1909",1909.06.26.a.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.a.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.a.R-Lopez.pdf,1909.06.26.a.R,1909.06.26.a.R,811,, +1909.06.26.b.R,26-Jun-09,1909,Unprovoked,SOUTH AFRICA,Western Cape Province,Cape Town,,,M,,Remains of soldier in uniform. Probable drowning & scavenging,Y,,18-foot shark,"Adams County News, 6/26/1909",1909.06.26.b.R-CapeTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.b.R-CapeTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.b.R-CapeTown.pdf,1909.06.26.b.R,1909.06.26.b.R,810,, +1909.06.18,18-Jun-09,1909,Sea Disaster,AUSTRALIA,Queensland,"Middleton Reef, 300 nm from Brisbane","1446-ton Norwegian barque Errol, bound from Peru to Newcastle with 22 on board wrecked. Survivors shelterd on the wreck of the Annasona. Subsequently the Master, his wife & 4 children perished along with several crew. Survivors (5) were rescued 7/12/1909",Master of the Errol,M,,"FATAL, only his legs, still in sea-boots, were recovered ",Y,,,"Australian Zoologist, viii., 1937, p.207",1909.06.18-Errol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.18-Errol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.18-Errol.pdf,1909.06.18,1909.06.18,809,, +1909.04.27.R,Reported 27-Apr-1909,1909,Provoked,SPAIN,Andalucia,"Puente Mayorga, San Roque, Cdiz",Fishing,male,M,,Shark knocked him down after he grabbed it by the tail. No injury. PROVOKED INCIDENT,N,,,"C. Moore, GSAF",1909.04.27.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.27.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.27.R-Cadiz.pdf,1909.04.27.R,1909.04.27.R,808,, +1909.04.10,10-Apr-09,1909,Invalid,USA,Hawaii,"Pa'uwela, Maui",Reported swept away by waves while gathering opihi,Mrs. Ah Kim Chong,F,19, Search party saw a large shark devour what appeared to be part of her body,Y,,,"J. Borg, pp.69-70; L. Taylor (1993), pp.94-95",1909.04.10-Chong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.10-Chong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.10-Chong.pdf,1909.04.10,1909.04.10,807,, +1909.04.09.R,Reported 09-Apr-1909,1909,Unprovoked,TUNISIA,Sfax,,Diving (Helmet) for sponges,Johannis Zambeltos,M,,FATAL,Y,,,"C. Moore, GSAF; Petit Paisien, 4/15/1909 ",1909.04.09.R-Zambeltos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.09.R-Zambeltos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.09.R-Zambeltos.pdf,1909.04.09.R,1909.04.09.R,806,, +1909.03.06,06-Mar-09,1909,Sea Disaster,SOUTH AFRICA,South Atlantic Ocean,Possession Island,Wreck of the 1308-ton Norwegian ship Auckland,The Captains wife,F,,FATAL,Y,,,"L. Green, GSAF",1909.03.06-Auckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.03.06-Auckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.03.06-Auckland.pdf,1909.03.06,1909.03.06,805,, +1909.01.17,17-Jan-09,1909,Invalid,,,Near the equator,Jumped overboard ,Thomas Butler,M,36,FATAL,Y,,,"Star, 3/18/1909",1909.01.17-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.17-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.17-Butler.pdf,1909.01.17,1909.01.17,804,, +1909.01.00,Jan-09,1909,Invalid,ITALY,Sicily,"Off Capo San Croce, near Augusta (Catania)","On December 28, 1908, an earthquake, followed by tsunamis, destroyed coastal towns in Silcily and southern Italy, killing more than 100,000 people",,,," 3 unidentified bodies recovered (male, female & young girl) from gut of female 4.5 m [14'9""] white shark caught in fishing net. They may have drowned in tidal wave following earthquake ",Y,,,MEDSAF,1909.01.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.00-Messina.pdf,1909.01.00,1909.01.00,803,, +1909.00.00,1909,1909,Unprovoked,AUSTRALIA,New South Wales,Woy Woy,,anonymous,,,Survived,N ,,,"G.P. Whitley, citing Lone Hand, 12/1/1910, p.134",1909.00.00-WoyWoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.00.00-WoyWoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.00.00-WoyWoy.pdf,1909.00.00,1909.00.00,802,, +1908.12.31,31-Dec-08,1908,Unprovoked,SOUTH AFRICA,Western Cape Province,Stilbaai,Swimming,The son of Rabbi East,M,16,FATAL,Y,,,"Fairbridge Index, Cape Archives, M. Levine, GSAF",1908.12.31-East.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.31-East.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.31-East.pdf,1908.12.31,1908.12.31,801,, +1908.12.16.R,Reported 16-Dec-1908,1908,Unprovoked,MEXICO,Quintana Roo,,Swimming ashore from capsized boat,Colonel Harry J. Earle,M,,"FATAL, ""bitten in two""",Y,,,"Lowell Sun, 12/16/1908; V.M. Coppleson (1962), p.247; H.D. Baldridge, p.161",1908.12.16-Earle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.16-Earle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.16-Earle.pdf,1908.12.16.R,1908.12.16.R,800,, +1908.09.21, 21-Sep-1908,1908,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Fell from the jetty,Kong Choong Ting,M,,FATAL,Y,,Remains recovered from 3 sharks,"Northern Territory Times & Gazette, 9/25/1908",1908.09.21-KongChoongTing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.21-KongChoongTing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.21-KongChoongTing.pdf,1908.09.21,1908.09.21,799,, +1908.09.05,05-Sep-08,1908,Unprovoked,USA,California,"Redondo, Los Angeles County",On fishing boat & trailing hand in the water,Ralph Nelson,M,,Lacerations to fingers,N,,,"Los Angeles Times, 9/6/1908, p.I6",1908.09.05-RalphNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.05-RalphNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.05-RalphNelson.pdf,1908.09.05,1908.09.05,798,, +1908.08.28.R,Reported 28-Aug-1908,1908,Unprovoked,SPAIN,Galicia,Cape Finisterre,Fell overboard from P&O steamship Arabia,William Newbury,M,,FATAL,Y,,,"Poverty Bay Herald, 10/14/1908",1908.08.28.R-Newbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.08.28.R-Newbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.08.28.R-Newbury.pdf,1908.08.28.R,1908.08.28.R,797,, +1908.07.18.R,Reported 18-Jul-1908,1908,Invalid,SPAIN,Canary Islands,"Tazacorte, La Palma",,,,,Human remains recovered but shark involvement prior to death unconfirmed ,Y,,,"C. Moore, GSAF",1908.07.18.R-LasPalmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.18.R-LasPalmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.18.R-LasPalmas.pdf,1908.07.18.R,1908.07.18.R,796,, +1908.07.08.R,Reported 08-Jul-1908,1908,Unprovoked,CROATIA,Adriatic Sea,Medola,Boating,Milena Scambelli,F,,"FATAL, lost a leg",Y,,"Species unknown, possible white shark","A. De Maddalena; M. Zuffa (pers. Comm.), Anon. (1908); C. Moore, GSAF",1908.07.08.R-Milena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.08.R-Milena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.08.R-Milena.pdf,1908.07.08.R,1908.07.08.R,795,, +1908.06.18,18-Jun-08,1908,Unprovoked,EGYPT,Gulf of Suez,Off Ras Gharib,The 168-ton Belmore foundered in heavy seas,Seaman Gray,M,,FATAL,Y,,,"Bay of Plenty Times, 6/26/2008",1908.06.18-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.18-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.18-Gray.pdf,1908.06.18,1908.06.18,794,, +1908.06.08,08-Jun-08,1908,Sea Disaster,USA,Georgia,,The British steamer Caribbee foundered,Walter Howe,M,,FATAL,Y,,,"New York Times, 6/15/1908",1908.06.08-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.08-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.08-Howe.pdf,1908.06.08,1908.06.08,793,, +1908.06.02.R,Reported 02-Jun-1908,1908,Sea Disaster,PAPUA NEW GUINEA,New Britain,Matupi,.,,.,,"Remains of 3 humans recovered from shark, but shark involvement prior to death unconfirmed",Y,,Allegedly a 33-foot shark,"Taranaki Herald, 6/2/1908",1908.06.02.R-Matupi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.02.R-Matupi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.02.R-Matupi.pdf,1908.06.02.R,1908.06.02.R,792,, +1908.05.13,13-May-08,1908,Sea Disaster,INDONESIA,Java,Jakarta Harbor,native boats sunk in storm,,,F,FATAL,Y,,,"The Advertiser, 6/26/1908",1908.05.13-Jakarta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.13-Jakarta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.13-Jakarta.pdf,1908.05.13,1908.05.13,791,, +1908.05.10,10-May-08,1908,Invalid,USA,Florida," Marathon, Monroe County",,John C. Williams,M,,"FATAL, but shark involvement prior to death was not confirmed",Y,,,"Weekly Miami Metropolis, 5/11/1908",1908.05.10-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.10-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.10-Williams.pdf,1908.05.10,1908.05.10,790,, +1908.01.08,08-Jan-08,1908,Unprovoked,USA,Hawaii,"Mana, Kaua'i",Gathering fish stunned by dynamite,"male, a Japanese fisherman",M,,"FATAL, ""pulled below the surface' ",Y,,,"C.H. Townsend, Bull. N.Y. Zoological Society, 11-12/1931",1908.01.08-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.01.08-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.01.08-JapaneseFisherman.pdf,1908.01.08,1908.01.08,789,, +1907.12.21,21-Dec-07,1907,Unprovoked,AUSTRALIA,New South Wales,"Middle Harbour, Sugarloaf Bay, Sydney (Estuary)",Bathing,Henry Jones,M,,FATAL,Y,,Bull shark,"R.D. Weeks, GSAF; Otago Daily Times, 12/24/1907",1907.12.21-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.12.21-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.12.21-Jones.pdf,1907.12.21,1907.12.21,788,, +1907.10.18.R,Reported 18-Oct-1907,1907,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Bathing,male from the lugger Teazer,M,,FATAL,Y,,,"The Queenslander, 10/26/1907",1907.10.18.R-male-Teazer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.18.R-male-Teazer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.18.R-male-Teazer.pdf,1907.10.18.R,1907.10.18.R,787,, +1907.10.16.R,Reported 16-Oct-1907,1907,Unprovoked,CHINA,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M,,"3 of thel 5 were injured, one of whom lost both hands",N,,Shark involvement probable,"Dawson Daily News, 11/20/1907",1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,1907.10.16.R,1907.10.16.R,786,, +1907.10.16.R,Reported 16-Oct-1907,1907,Unprovoked,CHINA,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M,, 2 of the 5 fishermen were so seriously injured they died of their wounds,Y,,Shark involvement probable,"Dawson Daily News, 11/20/1907",1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,1907.10.16.R,1907.10.16.R,785,, +1907.10.14,14-Oct-07,1907,Unprovoked,AUSTRALIA,New South Wales,"Merewether Beach, near Newcastle",Bathing,Edward. Nolan,M,,Lacerations to left arm from shoulder to wrist,N,11h00,,"Evening Post, 10/14/1907",1907.10.14-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.14-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.14-Nolan.pdf,1907.10.14,1907.10.14,784,, +1907.10.12,12-Oct-07,1907,Invalid,HAITI,Tiburon Peninsula,Aux Cayes (now Les Cayes),Reached out to disentangle rope & fell overboard,"William Thomas, a seaman from the Hamburg-American liner Alleghany",M,,"No attack, no injury",N,,,"H.D. Baldridge, SAF Case #412",1907.10.12-alleghany-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.12-alleghany-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.12-alleghany-sailor.pdf,1907.10.12,1907.10.12,783,, +1907.10.08,08-Oct-07,1907,Unprovoked,USA,Hawaii," Kalepolepo, Kihei, Maui","Diving, retrieving fish caught in net ","male, a Japanese fisherman",M,,"Arm severed at elbow, surgically amputated at shoulder ",N,09h00,,"C. Townsend; Pacific Commerical Advertiser, 10/13/1907; J. Borg, p.69; L. Taylor (1993), pp.94-95; Honolulu Advertiser, 8/9/1953",1907.10.08-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.08-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.08-fisherman.pdf,1907.10.08,1907.10.08,782,, +1907.09.18.R,Reported 19-Sep-1907,1907,Invalid,ENGLAND,English Channel,,Swimming,J. Wolffe,M,," ""Struck across loins"" but no injury. According to witnesses, incident involved a bottlenose dolphin.",N,,,"C. Moore, GSAF",1907.09.18.R-Wolffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.18.R-Wolffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.18.R-Wolffe.pdf,1907.09.18.R,1907.09.18.R,781,, +1907.09.11,11-Sep-07,1907,Unprovoked,CROATIA," Split-Dalmatia Count,","Sucurja, Hvar Island,",Swimming,female,F,,FATAL,Y,,,"C. Moore, GSAF",1907.09.11-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.11-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.11-Croatia.pdf,1907.09.11,1907.09.11,780,, +1907.08.12.b..R,Reported 12-Aug-1907,1907,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Krk Island,Swimming,a school teacher,F,,FATAL,Y,,,"Ogden Standard, 8/13/1907",1907.08.12.b.R-SchoolTeacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.b.R-SchoolTeacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.b.R-SchoolTeacher.pdf,1907.08.12.b..R,1907.08.12.b..R,779,, +1907.08.12.a..R,Reported 12-Aug-1907,1907,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Krk Island,Swimming,Josef Slivovic,M,,FATAL,Y,,,"Ogden Standard, 8/13/1907",1907.08.12.a.R-Silvovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.a.R-Silvovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.a.R-Silvovic.pdf,1907.08.12.a..R,1907.08.12.a..R,778,, +1907.08.08.R,Reported 08-Aug-1907,1907,Unprovoked,USA,New Jersey,Lower Delaware Bay,Wading,George Kell,M,,Abrasion to chest,N,,,"New Oxford Item, 8/8/1907",1907.08.08.R-Kell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.08.R-Kell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.08.R-Kell.pdf,1907.08.08.R,1907.08.08.R,777,, +1907.07.14.R,Reported 14-Jul-1907,1907,Unprovoked,CROATIA," Split-Dalmatia Count,","Su?uraj, Hvar Island",Swimming,female,F,,FATAL,Y,,,"C. Moore, S. Navajas, R. Rocconi, GSAF",1907.07.14-R-Adriatic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.14-R-Adriatic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.14-R-Adriatic.pdf,1907.07.14.R,1907.07.14.R,776,, +1907.07.04.R,Reported 04-Jul-1907,1907,Invalid,AUSTRALIA,Queensland,Karra Garra,.,Dick Atkins,M,,"Disappeared, but shark involvement unconfirmed",Y,,,"Queensland Figaro, 7/4/1907",1907.07.04-R-Atkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.04-R-Atkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.04-R-Atkins.pdf,1907.07.04.R,1907.07.04.R,775,, +1907.07.00,Jul-07,1907,Unprovoked,USA,South Carolina,Small creek near Coles Island,Floating in creek,C.B. Hernandez,M,,Slight injuries to left knee & calf ,N,,1.5 m [5'] shark,E. M. Burton,1907.07.00-CB-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.00-CB-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.00-CB-Hernandez.pdf,1907.07.00,1907.07.00,774,, +1907.04.20,20-Apr-07,1907,Unprovoked,MEXICO,Oaxaca,Salina Cruz,Bathing,Laurence Funda,M,," 3 fingers & thigh lacerated, foot crushed",N,,,"Los Angles Times, 8/7/1907, p.II11",1907.04.20-Funda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.04.20-Funda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.04.20-Funda.pdf,1907.04.20,1907.04.20,773,, +1907.03.26,26-Mar-07,1907,Unprovoked,USA,Florida,"Garden Key, Charlotte County","Fishing, tarpon being chased by shark leapt across his skiff, breaking it in half & Larkin became tangled in the net",Belton Larkin,M,,"FATAL, shark bit his side, nearly cutting him in two ",Y,,,"The Sun, 7/13/1913 reprinted article from Punta Gorda Herald of 3/31/1907. NOTE: V.M. Coppleson (1962), p.246 lists the location as Punta Gorda, British Honduras",1907.03.26-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.26-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.26-Larkin.pdf,1907.03.26,1907.03.26,772,, +1907.03.07,07-Mar-07,1907,Unprovoked,MALTA,Harare Province,Marsaskala,Fishing,2 fishermen,M,,"FATAL, Fell overboard and were killed by shark",Y,,"White shark, 6 m ","A. De Maddalena, citing Mojetta, et.al",1907.03.07-fishemen-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.07-fishemen-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.07-fishemen-Malta.pdf,1907.03.07,1907.03.07,771,, +1907.02.09,09-Feb-07,1907,Unprovoked,PHILIPPINES,Luzon Island,Manila Bay,"Row boat (from the gunboat Elcano) was sinking, put finger in hole",J.J. Dunlap,M,,Finger severed,N,,,"Souix Vally News, 4/4/1907; V.M. Coppleson (1958), p.264",1907.02.09-J.J.Dunlap.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.09-J.J.Dunlap.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.09-J.J.Dunlap.pdf,1907.02.09,1907.02.09,770,, +1907.02.05,05-Feb-07,1907,Unprovoked,NEW ZEALAND,South Island,Port Moeraki,Standing,Mr. W. H. Hutcheson,M,55,"FATAL, leg severely bitten ",Y,,,"R.D. Weeks, GSAF; Otago Daily Times, 1/13/1962",1907.02.05-Hutcheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.05-Hutcheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.05-Hutcheson.pdf,1907.02.05,1907.02.05,769,, +1907.02.03,03-Feb-07,1907,Unprovoked,AUSTRALIA,Queensland,Ross Creek,Bathing,William Williams,M,18,FATAL,Y,Morning,,"The Queenslander, 2/9/1907",1907.02.03-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.03-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.03-Williams.pdf,1907.02.03,1907.02.03,768,, +1907.00.00.b,1907,1907,Unprovoked,VIETNAM,Khnh Ha Province,Nha Trang,Fishing,A fisherman,M,20,"Leg severely bitten, surgically amputated",N,,,G. Vassal,1907.00.00.b-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.b-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.b-Vietnam.pdf,1907.00.00.b,1907.00.00.b,767,, +1907.00.00.a,1907,1907,Unprovoked,USA,Hawaii,"Pepe'ekeo, Honomu, Hawai'i","Net fishing, fell into the water",Japanese fisherman,M,,FATAL,Y,,,"C. H. Townsend; G. H. Balazs & A. H. Kam; J. Borg, p.69; L. Taylor (1993), pp.94-95",1907.00.00.a-Pepeekeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.a-Pepeekeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.a-Pepeekeo.pdf,1907.00.00.a,1907.00.00.a,766,, +1906.11.16,16-Nov-06,1906,Unprovoked,JAMAICA,Westmoreland Parish,Cabaritta River mouth,Fishing,Zacey Allen,M,,Leg bitten,N,,,"The Gleaner (Jamaica), 11/20/1906",1906.11.16-ZaceyAllen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.11.16-ZaceyAllen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.11.16-ZaceyAllen.pdf,1906.11.16,1906.11.16,765,, +1906.10.10.d.R,Reported 10-Oct-1906,1906,Unprovoked,USA,Hawaii,,,"an ""old native""",M,,Buttock bitten,N,,,"Washington Post, 10/10/1906",1906.10.10.d.R-OldNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.d.R-OldNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.d.R-OldNative.pdf,1906.10.10.d.R,1906.10.10.d.R,764,, +1906.10.10.c.R,Reported 10-Oct-1906,1906,Unprovoked,USA,Hawaii,,Swimming,skipper of a coasting schooner,M,,FATAL,Y,,,"Washington Post, 10/10/1906",1906.10.10.c.R-skipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.c.R-skipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.c.R-skipper.pdf,1906.10.10.c.R,1906.10.10.c.R,763,, +1906.10.10.b.R,Reported 10-Oct-1906,1906,Unprovoked,USA,Hawaii,,Diving,a native,M,,Arm severed,N,,,"Washington Post, 10/10/1906",1906.10.10.b.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.b.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.b.R-Hawaii.pdf,1906.10.10.b.R,1906.10.10.b.R,762,, +1906.10.10.a.R,Reported 10-Oct-1906,1906,Unprovoked,USA,Hawaii,,Swimming,a sailor,M,,FATAL,Y,,,"Washington Post, 10/10/1906",1906.10.10.a.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.a.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.a.R-Hawaii.pdf,1906.10.10.a.R,1906.10.10.a.R,761,, +1906.09.27.R.b,Reported 27-Sep-1906,1906,Unprovoked,INDONESIA,Java,Lorok Bay,Swimming,William Munich,M,,Thumb & index finger of left hand severed,N,,,"Atlanta Constitution, 9/27/1906",1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,1906.09.27.R.b,1906.09.27.R.b,760,, +1906.09.27.R.a,Reported 27-Sep-1906,1906,Unprovoked,INDONESIA,Java,Lorok Bay,Swimming,a Swedish sailor,M,,FATAL,Y,,,"Atlanta Constitution, 9/27/1906",1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,1906.09.27.R.a,1906.09.27.R.a,759,, +1906.09.05.R,Reported 05-Sep-1906,1906,Unprovoked,AUSTRALIA,Torres Strait,Mabiuag,Swimming,Smith,M,,FATAL,Y,,,"Wanganui Herald, 9/12/1906",1906.09.05.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.05.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.05.R-Smith.pdf,1906.09.05.R,1906.09.05.R,758,, +1906.09.00,Sep-06,1906,Provoked,USA,California,"Avalon, Los Angeles County",Fishing,Percy Neale,M,,PROVOKED INCIDENT No injury; shirt torn by gaffed shark,N,,"Shortfin mako shark, 175-lb ","L.A.Times, 10/1/1906",1906.09.00-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.00-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.00-Neale.pdf,1906.09.00,1906.09.00,757,, +1906.08.20,20-Aug-06,1906,Unprovoked,YEMEN ,Aden,,Diving around anchored liner,boy,M,,Leg severed. Injury originally thought due to boat's propeller,N,,,S. Samuels,1906.08.20-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.20-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.20-boy.pdf,1906.08.20,1906.08.20,756,, +1906.08.04,04-Aug-06,1906,Unprovoked,USA,Maryland,"Tangier Sound, Somerset County",Fell overboard,William McFlood,M,,FATAL,Y,,Remains recovered 5 days later,"Washington Post, 8/11/1906",1906.08.04-McFlood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.04-McFlood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.04-McFlood.pdf,1906.08.04,1906.08.04,755,, +1906.07.05.R,Reported 05-Jul-1906,1906,Unprovoked,USA,Mississippi,"Bay St. Louis, Hancock County",Swimming,a St. Stanislaus College student,M,,FATAL,Y,,Fishermen recovered partial remains from shark a week later,"The Courier, 7/5/1906",1906.07.05.R-St.Stanislaus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.05.R-St.Stanislaus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.05.R-St.Stanislaus.pdf,1906.07.05.R,1906.07.05.R,754,, +1906.07.00,Jul-06,1906,Invalid,MOZAMBIQUE,Maputo Province,Lourenco Marques,,Captain Sanna,M,,Sanna drowned; his hand (identified by ring on finger) found in a shark at the market,Y,,,"L.M. Guardian, 7/23/1906; M. Levine, GSAF",1906.07.00-CaptainSanna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.00-CaptainSanna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.00-CaptainSanna.pdf,1906.07.00,1906.07.00,753,, +1906.04.27.R,Reported 27-Apr-1906,1906,Unprovoked,INDONESIA,Maluku Province,Aru Islands,Hard hat diving,,M,,FATAL,Y,,,"The Advertiser, 5/16/1906",1906.04.27.R-Aru-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.27.R-Aru-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.27.R-Aru-Islands.pdf,1906.04.27.R,1906.04.27.R,752,, +1906.04.16,16-Apr-06,1906,Provoked,AUSTRALIA,Victoria,Western Port Bay,Shooting sharks ,Leo Clarke,M,,Finger severed by shark he had shot & stabbed PROVOKED INCIDENT,N,,13' shark,"The Argus, 4/18/1906",1906.04.16-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.16-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.16-Clarke.pdf,1906.04.16,1906.04.16,751,, +1906.04.14,14-Apr-06,1906,Unprovoked,AUSTRALIA,Queensland,Lizard Island,Diving for beche-de-mer ,Charley ,M,17,FATAL,Y,,,"Morning Post, 4/20/1906",1906.04.14-Charley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.14-Charley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.14-Charley.pdf,1906.04.14,1906.04.14,750,, +1906.04.10.R.a & b,Reported 10-April 1906,1906,Sea Disaster,INDONESIA,,40 miles from Tahane Island,The schooner Tahitienne foundered in a hurricane,Captain Baxter & Dick Chares,M,,FATAL x 2,Y,,,"Atlanta Constitution, 5/13/1906, et al.",1906.04.10.R.a-b-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.10.R.a-b-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.10.R.a-b-Baxter.pdf,1906.04.10.R.a & b,1906.04.10.R.a & b,749,, +1906.04.02.R,Reported 02-April 1906,1906,Invalid,AUSTRALIA,New South Wales,Moodie Beach,.,Herbert Mills,M,18,Cause of death may have been downing,Y,,,".Morning Bulletin, 4/3/1906",1906.04.02.R-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.02.R-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.02.R-Mills.pdf,1906.04.02.R,1906.04.02.R,748,, +1906.02.14.R,Reported 14-Feb-1906,1906,Invalid,NEW ZEALAND,North Island,Mototapu Island,Swimming,Herbert Thomas,M,,"FATAL, but shark involvement prior to death was not determined",Y,,,"Otago Witness, 2/14/11906",1906.02.14.R-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.02.14.R-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.02.14.R-Thomas.pdf,1906.02.14.R,1906.02.14.R,747,, +1906.01.28,28-Jan-06,1906,Unprovoked,AUSTRALIA,New South Wales,Georges River,Bathing,William Joseph Dobson.,M,31 or 33,FATAL,Y,14h10,,"J. Green, p.31",1906.01.28-Dobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.28-Dobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.28-Dobson.pdf,1906.01.28,1906.01.28,746,, +1906.01.20,20-Jan-06,1906,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Washing horses,Ramdayal,M,30,"FATAL, hips & thigh bitten ",Y,12h00,1.8 m to 2.7 m [6' to 9'] shark,"Natal Mercury Pictorial, 1/31/1906; M. Levine, GSAF",1906.01.20-Ramdayal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.20-Ramdayal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.20-Ramdayal.pdf,1906.01.20,1906.01.20,745,, +1905.12.31,31-Dec-05,1905,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",Floating or standing,"Eric Suppeman, cabin boy on the Norwegian ship Blanca",M,,"FATAL, left torso, buttocks, thigh & foot bitten ",Y,Morning,2.4 m [8'] shark,"Natal Mercury 1/1/1906; Natal Mercury Pictorial, 1/10/1906; M. Levine, GSAF",1905.12.31-Suppeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.31-Suppeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.31-Suppeman.pdf,1905.12.31,1905.12.31,744,, +1905.12.29,29-Dec-05,1905,Invalid,AUSTRALIA,Western Australia,Geraldton,Bathing,Hugh Carroll,M,,"""Bad wound in the leg"" - 7-ft shark caught in the bath same day",N,,Shark involvement not confirmed,"The Advertiser, 12/30/1905",1905.12.29-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.29-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.29-Carroll.pdf,1905.12.29,1905.12.29,743,, +1905.11.17.R,Reported 17-Nov-1905,1905,Invalid,MEDITERRANEAN SEA?,,,A man's head found in a shark caught by British steamer Syria,,M,,Probable scavenging,Y,,,"Altoona Mirror, 11/17/1905",1905.11.17.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.11.17.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.11.17.R-Syria.pdf,1905.11.17.R,1905.11.17.R,742,, +1905.09.29,29-Sep-05,1905,Unprovoked,AUSTRALIA,New South Wales,"Waverly, Sydney",Swimming,Jame Crotty,M,,FATAL. Shark involvement suspected but not confirmed,Y,,,"The Argus, 9/30/1905",1905.09.29-Crotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.09.29-Crotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.09.29-Crotty.pdf,1905.09.29,1905.09.29,741,, +1905.08.00.b,Late Aug-1905,1905,Unprovoked,USA,New Jersey,"Atlantic City, Atlantic County",Swimming from naptha launch after a day of fishing,George Wright,M,,3 toes of right foot were severed,N,,,The Sun (undated article),1905.08.00.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.b-Wright.pdf,1905.08.00.b,1905.08.00.b,740,, +1905.08.00.a,Aug-05,1905,Unprovoked,PHILIPPINES,Luzon Island,Manila Bay,Bathing,Frank Abernathy,M,21,Leg bitten,N,,,"Obrien County Bell, 8/31/1905",1905.08.00.a-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.a-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.a-Abernathy.pdf,1905.08.00.a,1905.08.00.a,739,, +1905.07.29,29-Jul-05,1905,Unprovoked,USA,North Carolina,"Davis Shore, east of Beaufor, Carteret Countyt",Wading,Sutton Davis,M,16,Body not recovered FATAL,Y,Afternoon,,"C. Creswell, GSAF; F. Schwartz, p.23",1905.07.29-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.29-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.29-Davis.pdf,1905.07.29,1905.07.29,738,, +1905.07.25.R,Reported 25-Jul-1905,1905,Invalid,ITALY,,Naples,,boy,M,8,"Body recovered from shark, probable drowning and scavenging",Y,,,"C. Moore, GSAF",1905.07.25.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.25.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.25.R-Naples.pdf,1905.07.25.R,1905.07.25.R,737,, +1905.07.00,Jul-05,1905,Unprovoked,USA,North Carolina,"Ocracoke, Hyde County",Fishing,Coast Guard personnel,M,,FATAL,Y,,,"F. Schwartz, p.23 & pers.com to C. Creswell, GSAF",1905.07.00,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.00,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.00,1905.07.00,1905.07.00,736,, +1905.05.22,22-May-05,1905,Unprovoked,USA,Florida,"Pablo Beach, Jacksonville, Duval County",Swimming,Dunham Coxetter,M,,Lacerations to back & right leg,N,,,"Atlanta Constitution, 5/23/1905",1905.05.22.R-Coxetter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.05.22.R-Coxetter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.05.22.R-Coxetter.pdf,1905.05.22,1905.05.22,735,, +1905.04.06,06-Apr-05,1905,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",Swimming,James Anderson,M,26,"FATAL, thigh bitten, femoral artery severed ",Y,16h30,,"Natal Mercury, 4/7/1905; H.Gill & M. Levine, GSAF",1905.04.06-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.04.06-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.04.06-Anderson.pdf,1905.04.06,1905.04.06,734,, +1905.03.26,26-Mar-05,1905,Unprovoked,AUSTRALIA,New South Wales,Lismore,Bathing,Richard Owen,M,40,Righ thigh severely bitten,N,Morning,5' shark,"Adelaide Advertiser, 3/31/1905",1905.03.26-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.26-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.26-Owen.pdf,1905.03.26,1905.03.26,733,, +1905.03.25,25-Mar-05,1905,Invalid,AUSTRALIA,Tasmania,Bridport,Bathing,Charles Taylor,,,FATAL,Y,,,"C. Black, GSAF; Adelaide Advertiser, 3/27/1905",1905.03.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.25-Taylor.pdf,1905.03.25,1905.03.25,732,, +1905.02.10,10-Feb-05,1905,Invalid,AUSTRALIA,Victoria,Elwood,Bathing,Charles Blake,M,23,Thought to have been taken by a shark,Y,,,"Adelaide Advertiser, 2/13/1905",1905.02.10-Blake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.02.10-Blake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.02.10-Blake.pdf,1905.02.10,1905.02.10,731,, +1905.01.01,01-Jan-05,1905,Invalid,AUSTRALIA,Victoria,Elwood,Bathing,Alfred Boldner,M,39,Reported to have been killed by a shark but 2 years later he was found very much alive,Y,,,"Adelaide Advertiser, 1/3/1905",1905.01.01-Boldner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.01.01-Boldner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.01.01-Boldner.pdf,1905.01.01,1905.01.01,730,, +1905.00.00,1905,1905,Boating,USA,North Carolina,"Cape Lookout, Carteret County",Harpooning turtles,"skiff, occupants: Russel J. Coles and others",,,"No injury, shark bumped skifft",N,,20' shark,"Clay Creswell, GSAF",1905.00.00.b-CoastGuard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.00.00.b-CoastGuard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.00.00.b-CoastGuard.pdf,1905.00.00,1905.00.00,729,, +1904.11.02,02-Nov-04,1904,Unprovoked,PHILIPPINES,Luzon Island,"Inner Harbor, Olongapo",Bathing alongside US Naval ship,"sailor, a boatswain's mate from the Piscataqua",M,,Foot bitten,N,,,"The Sun, undated article; V.M. Coppleson (1958), p.264",1904.11.02-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.11.02-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.11.02-sailor.pdf,1904.11.02,1904.11.02,728,, +1904.10.11.R,Reported 11-Oct-1904,1904,Unprovoked,INDIAN OCEAN,Between Noumea & Sydney,,Fell overboard,Axel Slettsten,M,,FATAL,Y,,,"The Argus, 10/11/1904",1904.10.11.R-Slettsten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.10.11.R-Slettsten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.10.11.R-Slettsten.pdf,1904.10.11.R,1904.10.11.R,727,, +1904.09.00,Sep-04,1904,Unprovoked,CUBA,Havana Province,Havana Harbor,Lost his footing & fell overboard,Sailor from ship Mobile,M,,"FATAL, left leg severed below knee, right leg severed above knee by a second shark",Y,,,Washington Post 7/19/1905,1904.09.00-Mobile-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.09.00-Mobile-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.09.00-Mobile-sailor.pdf,1904.09.00,1904.09.00,726,, +1904.08.00,Aug-04,1904,Unprovoked,CUBA,Villa Clara Province,Caibarien Harbor,"Ship's boat capsized in squall, captain & 2 sailors clinging onto hull",2 sailors,M,,"FATAL, shark pulled them off hull of boat ",Y,,,Washington Post 7/19/1905,1904.08.00-boat-of-German-bark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.08.00-boat-of-German-bark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.08.00-boat-of-German-bark.pdf,1904.08.00,1904.08.00,725,, +1904.07.28,28-Jul-04,1904,Unprovoked,USA,New Jersey,"Shrewsbury River, Monmouth County",Sailing,"boat, 2 occupants",M,,No injury,N,,,"New York Herald Tribune, 7/29/1904",1904.07.28-ShrewsburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.28-ShrewsburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.28-ShrewsburyRiver.pdf,1904.07.28,1904.07.28,724,, +1904.07.27,27-Jul-04,1904,Unprovoked,USA,Texas,,Swimming,Chester Kennedy,M,,"FATAL, body not recovered",Y,,,"New York Times, 7/28/1904",1904.07.27-ChesterKennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.27-ChesterKennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.27-ChesterKennedy.pdf,1904.07.27,1904.07.27,723,, +1904.07.01.R,Reported 01-Jul-1904,1904,Unprovoked,ITALY,Ancona Province,Ancona,Swimming,,M,,FATAL x 4. Afterwards metal mesh nets were installed,Y,,,"C. Moore, GSAF, Translations by S. Navajas",1904.07.01-Ancona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.01-Ancona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.01-Ancona.pdf,1904.07.01.R,1904.07.01.R,722,, +1904.02.07,07-Feb-04,1904,Unprovoked,AUSTRALIA,Queensland,Brisbane,Swimming after his hat,George Grant,M,,FATAL,Y,,,"Grey River Argus, 2/26/1904",1904.02.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.07-Grant.pdf,1904.02.07,1904.02.07,721,, +1904.02.04,04-Feb-04,1904,Unprovoked,NEW ZEALAND,North Island,Waitara,Swimming,Ngawai Rakau,M,30,FATAL,Y,,,"Star, 2/4/1904",1904.02.04-Rakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.04-Rakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.04-Rakau.pdf,1904.02.04,1904.02.04,720,, +1904.01.23,23-Jan-04,1904,Unprovoked,NEW CALEDONIA,South Province,Noumea,Bathing,Charley Smith,M,,FATAL,Y,,,"The Advertiser, 2/4/1904",1904.01.23-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.01.23-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.01.23-Smith.pdf,1904.01.23,1904.01.23,719,, +1904.00.00.c,1904,1904,Invalid,USA,,,Diving on a wreck,Egan,M,,Leg bitten,N,,,"New York Times, 6/21/1914",1904.00.00.c-Egan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.c-Egan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.c-Egan.pdf,1904.00.00.c,1904.00.00.c,718,, +1904.00.00.b,1904,1904,Unprovoked,PHILIPPINES,Quezon,Tayabas,Bathing,Lt. Edward Hearn,M,,Left arm bitten,N,,,"N.Y. Sun, 3/19/1911 ",1904.00.00.b-Hearn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.b-Hearn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.b-Hearn.pdf,1904.00.00.b,1904.00.00.b,717,, +1904.00.00.a,1904,1904,Unprovoked,USA,Hawaii,"Off Diamond Head, Honolulu, O'ahu",Swimming,male,M,,"FATAL, disappeared, then shark caught with head and body of man, from waist down minus leg, in its gut",Y,,,"The Sun (no date); D. Baldridge, p.171; G.H. Balazs, J. Borg, p.69; L. Taylor (1993), pp. 94-95",1904.00.00.a-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.a-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.a-Honolulu.pdf,1904.00.00.a,1904.00.00.a,716,, +1903.10.04,04-Oct-03,1903,Unprovoked,CUBA,Havana Province,Havana Harbor,Fell overboard,a sailor,M,,FATAL,Y,,,"NY Times, 10/18/1903",1903.10.04-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.10.04-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.10.04-Sailor.pdf,1903.10.04,1903.10.04,715,, +1903.09.16.R,Reported 16-Sep-1903,1903,Unprovoked,USA,New Jersey,"Atlantic City, Atlantic County",Fishing,Rev. John McMillan,M,,Lacerations to right arm & shoulder,N,,9' shark,"Indiana Messenger, 9/16/1903",1903.09.16.R-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.09.16.R-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.09.16.R-McMillan.pdf,1903.09.16.R,1903.09.16.R,714,, +1903.07.00,Jul-03,1903,Unprovoked,FALKLAND ISLANDS,,,"Swimming, after falling overboard",Juan de la Cruz Silva Martinez,M,28,"Right leg bitten, surgically amputated",N,,,"Atlanta Constitution, 1/10/1904",1903.07.00-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.07.00-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.07.00-Martinez.pdf,1903.07.00,1903.07.00,713,, +1903.06.21,21-Jun-03,1903,Unprovoked,AUSTRALIA,New South Wales,Georges River,Swimming,William Price,M,,FATAL,Y,,,"The Advertiser, 6/22/1903",1903.06.21-Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.06.21-Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.06.21-Price.pdf,1903.06.21,1903.06.21,712,, +1903.05.04,04-May-03,1903,Unprovoked,MEXICO,Veracruz,Coatzacoalcos,Bathing,3 men,M,,FATAL x 3,Y,,,"Chicago Tribune, 5/5/1903",1903.05.04-Mexicox3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.05.04-Mexicox3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.05.04-Mexicox3.pdf,1903.05.04,1903.05.04,711,, +1903.03.20.R,Reported 20-Mar-1903,1903,Unprovoked,AUSTRALIA,New South Wales,Sydney,Suicide,R. Raymond,M,,Jumped off cliff,Y,,,"Northern Territory Times, 3/20/1903",1903.03.20.R-Raymond-Suicide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.20.R-Raymond-Suicide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.20.R-Raymond-Suicide.pdf,1903.03.20.R,1903.03.20.R,710,, +1903.03.12,12-Mar-03,1903,Unprovoked,AUSTRALIA,Queensland,Logan River,Swimming,William Bartlett,M,,FATAL,Y,,,"Sydney Morning Herald, 3/16/1903",1903.03.12-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.12-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.12-Bartlett.pdf,1903.03.12,1903.03.12,709,, +1903.01.10, 10-Jan-1903,1903,Unprovoked,AUSTRALIA,New South Wales,"Lane Cove River, Sydney Harbor (Estuary)",,Sydney James,M,,FATAL,Y,,Bull shark,"Northern Territory Times & Gazette, 1/12/1903",1903.01.10-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.01.10-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.01.10-James.pdf,1903.01.10,1903.01.10,708,, +1903.00.00.b,Summer of 1903,1903,Unprovoked,CRETE,,,Sponge diving,2 males,M,,FATAL,Y,,,M. Bardanis,1903.00.00.b-Crete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.b-Crete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.b-Crete.pdf,1903.00.00.b,1903.00.00.b,707,, +1903.00.00.a,Ca. 1903,1903,Unprovoked,USA,Hawaii,"Koko Head, south side of O'ahu Island",Fishing,Phil Kitchin,M,,"FATAL, remains (foot) recovered from shark 2 days later",Y,,,"Captain W. Young, 51-52",1903.00.00.a-PhilKitchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.a-PhilKitchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.a-PhilKitchin.pdf,1903.00.00.a,1903.00.00.a,706,, +1902.12.22.R,Reported 22-Dec-1902,1902,Unprovoked,NICARAGUA,Rio San Juan,Greytown,Swimming,Frederick Wiseman,M,30,FATAL,Y,18h00,,"Racine Daily Journal, 12/22/1902",1902.12.22.R-Wiseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.12.22.R-Wiseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.12.22.R-Wiseman.pdf,1902.12.22.R,1902.12.22.R,705,, +1902.11.10,10-Nov-02,1902,Unprovoked,AUSTRALIA,New South Wales,"Middle Harbour, Sydney ",Swimming,Howard Dent,M,17,FATAL,Y,Afternoon,,"The Advertiser, 11/11/1902",1902.11.10-Dent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.10-Dent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.10-Dent.pdf,1902.11.10,1902.11.10,704,, +1902.11.01.R,Reported 01-Nov-1902,1902,Unprovoked,USA,Texas,"Near Port Lavaca, Calhoun County",Fishing,male,M,,Severe laceration to hand,N,,,"Victoria Weekly, 1/11/ 1902",1902.11.01.R-PortLavaca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.01.R-PortLavaca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.01.R-PortLavaca.pdf,1902.11.01.R,1902.11.01.R,703,, +1902.08.28.R,Reported 29-Aug-1902,1902,Unprovoked,ITALY,Calabria,Nicotera,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1902.08.28.R-Nicotera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.28.R-Nicotera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.28.R-Nicotera.pdf,1902.08.28.R,1902.08.28.R,702,, +1902.08.24.R,Reported 24-Aug-1902,1902,Boating,CROATIA,Istria County,Porec,Fishing,Row boat; occupants - 2 young men,M,,"No injury to occupants, shark grabbed anchor rope & towed boat",N,,,"C. Moore, GSAF",1902.08.24.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.24.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.24.R-Croatia.pdf,1902.08.24.R,1902.08.24.R,701,, +1902.08.08,08-Aug-02,1902,Unprovoked,USA,Hawaii,"Kalihi, O'ahu",Catching crabs,Hawaiian boy,M,,"FATAL, both arms severed ",Y,,,"G. H. Balazs & A. H. Kam; V.M. Coppleson (1958), p.250; J. Borg, p.69; L. Taylor (1993), pp. 94-95",1902.08.08-HawaiianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.08-HawaiianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.08-HawaiianBoy.pdf,1902.08.08,1902.08.08,700,, +1902.07.15,15-Jul-02,1902,Provoked,ITALY,Liguria,"Galliera dock, Genoa",Fishing,male,M,,Face & arms injured by hooked shark PROVOKED INCIDENT ,N,,,"C. Moore, GSAF",1902.07.15-Genoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.15-Genoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.15-Genoa.pdf,1902.07.15,1902.07.15,699,, +1902.07.06,06-Jul-02,1902,Provoked,USA,New Jersey,"Atlantic City, Atlantic County",Swimming,Harry M. Speerman,M,,Shark bit his left arm after he grabbed its tail PROVOKED INCIDENT,N,,,"New York Times, 7/7/1902",1902.07.06-Speerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.06-Speerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.06-Speerman.pdf,1902.07.06,1902.07.06,698,, +1902.06.02,02-Jun-02,1902,Unprovoked,PHILIPPINES,Zamboanga del Sur Province,"Near mouth of River Cumalarang, 5 miles from Port Isabela, Basilan Island",,Apy,M,,"""Nose hanging by a threat, prints of shark's teeth over entire right cheek""",N,,,"V.M. Coppleson, p.264",1902.06.08-Apy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.08-Apy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.08-Apy.pdf,1902.06.02,1902.06.02,697,, +1902.06.00,Jun-02,1902,Unprovoked,EGYPT,Mediterranean Sea,"Tzortzou Reef, Marsa Matruh",Sponge diving,Giorgos,M,,Bitten on hand and thigh,N,,,M. Bardanis,1902.06.00-Giorgos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.00-Giorgos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.00-Giorgos.pdf,1902.06.00,1902.06.00,696,, +1902.04.00,Apr-02,1902,Invalid,SOUTH AFRICA,Eastern Cape Province,Algoa Bay,Swimming,Neil Sorenson,M,,Probable drowning & scavenging,Y,,,"M. Levine, GSAF",1902.04.19-Sorenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.04.19-Sorenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.04.19-Sorenson.pdf,1902.04.00,1902.04.00,695,, +1902.02.22.R,.Reported 22-Feb-1902,1902,Provoked,NEW ZEALAND,North Island,Poverty Bay,Standing on ship deck,male,M,,"No injury, hooked shark bit tousers. PROVOKED INCIDENT",N,,,The Colonist 2/22/1902,1902.02.22.R-PovertyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.02.22.R-PovertyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.02.22.R-PovertyBay.pdf,1902.02.22.R,1902.02.22.R,694,, +1902.01.25.R,Reported 25-Jan-1902,1902,Unprovoked,AUSTRALIA,New South Wales,Kerosene Bay,Dangling feet in the water,John Ogier,M,,FATAL,Y,,,"The Advertiser, 1/25/1902",1902.01.22-Ogier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.22-Ogier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.22-Ogier.pdf,1902.01.25.R,1902.01.25.R,693,, +1902.01.19.R,Reported 19-Jan-1902,1902,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,,a soldier from the Natal Garrison,M,,Possible drowning & scavenging. Remains were recovered from a 15' shark's gut,Y,,,"M. Levine, GSAF",1902.01.19R-soldier-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19R-soldier-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19R-soldier-Durban.pdf,1902.01.19.R,1902.01.19.R,692,, +1902.01.19,19-Jan-02,1902,Unprovoked,AUSTRALIA,Queensland,Brisbane,Swimming,Charles Jones,M,16,Legs bitten,N,12h00,,"Brisbane Courier, 1/20/1902",1902.01.19-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19-Jones.pdf,1902.01.19,1902.01.19,691,, +1901.12.01,01-Dec-01,1901,Unprovoked,AUSTRALIA,Queensland,Brisbane,Bathing,William Quince,M,10,Lacerations to torso & thigh,N,,,"The Argus, 12/2/1901",1901.12.01-Quince.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.12.01-Quince.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.12.01-Quince.pdf,1901.12.01,1901.12.01,690,, +1901.10.00,Mid Oct-1901,1901,Unprovoked,PHILIPPINES,Zamboanga del Sur Province, Port Isabela de Basilan,Taking catch from a fish weir in which the shark was snared,"Dahkus, a Molussa Moro",M,,Right thigh bitten ,N,,,"J.A. Guthrie, M.D.; Newark Advocate, 5/24/1902; V.M. Coppleson (1958), p.264",1901.10.00-Dahkus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.10.00-Dahkus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.10.00-Dahkus.pdf,1901.10.00,1901.10.00,689,, +1901.09.23.R,Reported 23-Sep-1901,1901,Unprovoked,CYPRUS,Southern Cyprus,Larnaca,Swimming,male,M,Teen,"FATAL, bitten on arms, chest & legs",Y,,2 m shark,"Bardanis citing Embros, 9/23/1901",1901.09.23.R-Cyprus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.09.23.R-Cyprus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.09.23.R-Cyprus.pdf,1901.09.23.R,1901.09.23.R,688,, +1901.07.30,30-Jul-01,1901,Unprovoked,SOUTH AFRICA,Western Cape Province,Windmill Beach,Swimming,"John Hendrick Adrian Chandler, a prisoner of war",M,29,"Right leg bitten & foot severed, right arm bitten, bones fractured & nearly severed FATAL",Y,14h15,White shark,"M. Levine, GSAF",1901.07.30-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.30-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.30-Chandler.pdf,1901.07.30,1901.07.30,687,, +1901.07.17,17-Jul-01,1901,Invalid,ITALY,Syracuse,Capo Santa Croce,Swimming,Antonio Tornatori,M,20,"Disappeared, but shark involvement unconfirmed",,,,C. Moore,1901.07.17-Antonio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.17-Antonio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.17-Antonio.pdf,1901.07.17,1901.07.17,686,, +1901.06.29.R,Reported 29-Jun-1901,1901,Invalid,YEMEN ,Aden,,Diving around anchored liner,boy,M,,,UNKNOWN,,,"The Graphic, 6/29/1901",1901.06.29.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf,1901.06.29.R,1901.06.29.R,685,, +1901.06.24,24-Jun-01,1901,Unprovoked,PHILIPPINES,Western Viscayas,"Island of Panay, Iliolo",Swimming,"S. McKie, apprentice 1st class on the U.S. Naval ship Annapolis",M,,"Left thigh stripped of flesh 4"" above the knee ",N,15h00,,"J.A. Guthrie; Sun, 7/13/1913; V.M. Coppleson, p.264 also states ""Native taken near same spot 3 months previously.""",1901.06.24-McK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.24-McK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.24-McK.pdf,1901.06.24,1901.06.24,684,, +1901.01.30,30-Jan-01,1901,Unprovoked,AUSTRALIA,Queensland,Brisbane,Bathing,John Thompson,M,,"Thigh bitten, FATAL",Y,,,"Otago Witness, 2/6/1901",1901.01.30-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.01.30-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.01.30-Thompson.pdf,1901.01.30,1901.01.30,683,, +1901.00.00,Summer 1901,1901,Unprovoked,USA,Florida,Indian River Inlet / Fort Pierce Inlet,Bathing,Michael O'Brien,M,,Abdomen bitten,N,,,"W.H. Gregg; L. Schultz & M. Malin, p.533",1901.00.00-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.00.00-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.00.00-O'Brien.pdf,1901.00.00,1901.00.00,682,, +1900.12.27,27-Dec-00,1900,Unprovoked,AUSTRALIA,New South Wales,"Middle Harbour, Sydney ",Bathing,Thomas Houstan,M,,FATAL,Y,,,"Taranaki Herald, 12/28/1900",1900.12.27-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.12.27-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.12.27-Houston.pdf,1900.12.27,1900.12.27,681,, +1900.11.14,14-Nov-00,1900,Unprovoked,SOUTH AFRICA,Western Cape Province,Three Anchor Bay,Swimming,William Strathorn,M,30,"FATAL, legs severed",Y,,,"P. Logan; M. Levine, GSAF",1900.11.14-Strathorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.11.14-Strathorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.11.14-Strathorn.pdf,1900.11.14,1900.11.14,680,, +1900.10.27,27-Oct-00,1900,Invalid,SOUTH AFRICA,Western Cape Province,"Woodstock Beach, Cape Town",Swimming,Amos Layzell,M,,Probable drowning & scavenging,Y,,,"P. Logan; M. Levine, GSAF",1900.10.27-Layzell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.10.27-Layzell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.10.27-Layzell.pdf,1900.10.27,1900.10.27,679,, +1900.09.15,15-Sep-00,1900,Unprovoked,AUSTRALIA,Queensland,Townsville,Swimming,John Hennessy,M,,Laceration to right leg,N,,,"Sydney Morning Herald, 9/17/1900",1900.09.15-Hennessy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.15-Hennessy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.15-Hennessy.pdf,1900.09.15,1900.09.15,678,, +1900.09.13,13-Sep-00,1900,Unprovoked,USA,Rhode Island,Coddington Cove,Diving,George Brown,M,,No injury,UNKNOWN,, ,"NY Times, 9/14/1900",1900.09.13-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.13-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.13-Brown.pdf,1900.09.13,1900.09.13,677,, +1900.09.05,05-Sep-00,1900,Unprovoked,USA,Hawaii,"Waikiki Beach, Oahu",Floating,Joe Hartman,M,,"Bathing suit torn & ""imprints of the shark's teeth on his body""",N,Afternoon,,"Honolulu Republican, 9/6/1900",1900.09.05-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.05-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.05-Hartman.pdf,1900.09.05,1900.09.05,676,, +1900.08.21,21-Aug-00,1900,Unprovoked,USA,North Carolina,"Southport, Brunswick County",Bathing,Burris,M,,Left hand lacerated,N,Afternoon,,"C. Creswell, GSAF",1900.08.21-Burriss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.08.21-Burriss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.08.21-Burriss.pdf,1900.08.21,1900.08.21,675,, +1900.07.31,31-Jul-00,1900,Unprovoked,CROATIA, Primorje-Gorski Kotar County,"Volosko, Opatija",Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1900.07.31-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.31-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.31-Croatia.pdf,1900.07.31,1900.07.31,674,, +1900.07.14,14-Jul-00,1900,Invalid,USA,Hawaii,"Makapu'u Point, O'ahu",Hunting seashells,Emil Uhlbrecht & unidentified person,M,,"Believed drowned. Uhlbrechts foot, and the pelvis & femur of another person recovered in gut of tiger shark shark caught on 17-Aug-1900",Y,,,"Los Angeles Times, 7/28/1900",1900.07.14-Uhlbrecht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.14-Uhlbrecht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.14-Uhlbrecht.pdf,1900.07.14,1900.07.14,673,, +1900.07.00,Late Jul-1900,1900,Provoked,USA,Connecticut,"Bridgeport, Fairfield County", ,"skiff with Dr. William T. Healey, Dr. Henry Callahan on board",,,"No injury to occupants. They shot shark, then it capsized their skiff. PROVOKED INCIDENT",N,,,"Times, 8/1/1900",1900.07.00-Bridgeport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.00-Bridgeport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.00-Bridgeport.pdf,1900.07.00,1900.07.00,672,, +1900.01.28, 28-Jan-1900,1900,Unprovoked,AUSTRALIA,New South Wales,"Lane Cove River, Sydney Harbor (Estuary)","Standing, gathering oysters",Charles Duck,M,,Right posterior thigh bitten,N,12h00,,"Poverty Bay Herald, 2/12/1900",1900.01.28-Duck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.01.28-Duck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.01.28-Duck.pdf,1900.01.28,1900.01.28,671,, +1900.00.00.b,Early 1900s,1900,Unprovoked,USA,Hawaii,"Inter-Island Dry Dock at Kakaako Street, Honolulu, O'ahu",,Emil A. Berndt,M,,Severe abrasion when shark swam between his legs,N,,,"G. H. Balazs; J. Borg, p.69; L. Taylor (1993), pp.94-95",1900.00.00.b-Berndt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.b-Berndt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.b-Berndt.pdf,1900.00.00.b,1900.00.00.b,670,, +1900.00.00.a,Ca. 1900,1900,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,Swimming,Mr. Gruner,M,,Leg severed,N,Early morning,,H. Monsen ,1900.00.00.a-Gruner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.a-Gruner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.a-Gruner.pdf,1900.00.00.a,1900.00.00.a,669,, +1899.12.18,18-Dec-1899,1899,Unprovoked,AUSTRALIA,Queensland,Tingalpa Creek,Fell into the water,J. Richardson,M,,bite to lower leg,N,Afternoon,,"Brisbane Courier, 12/21/1899",1899.12.18-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.12.18-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.12.18-Richardson.pdf,1899.12.18,1899.12.18,668,, +1899.11.20,20-Nov-1899,1899,Sea Disaster,PHILIPPINES,Mindoro Occidental,Off Lubang Island,Sea Disaster,wreck of the steamship Hubeh,,,FATAL,Y,,,"The Mercury, 1/191900",1899.11.20-Hupeh-wreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.11.20-Hupeh-wreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.11.20-Hupeh-wreck.pdf,1899.11.20,1899.11.20,667,, +1899.10.12.b,Reported 12-Oct-1899,1899,Unprovoked,LIBYA,Mediterranean Sea,Off Bengasi,Diving,John Cataris,M,,Lacerations to head,N,,,"Iowa Daily Press, 10/12/1899",1899.10.12.b.R-Cataris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.b.R-Cataris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.b.R-Cataris.pdf,1899.10.12.b,1899.10.12.b,666,, +1899.10.12.a,Reported 12-Oct-1899,1899,Unprovoked,LIBYA,Mediterranean Sea,Off Bengasi,Sponge diving,Skoumbourdi,M,,FATAL,Y,,,"Iowa Daily Press, 10/12/1899",1899.10.12.a.R-Skoumbourdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.a.R-Skoumbourdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.a.R-Skoumbourdi.pdf,1899.10.12.a,1899.10.12.a,665,, +1899.09.11.R,Reported 11-Sep-1899,1899,Unprovoked,MEXICO,Tamaulipas,Tampico,Swimming,Paul Guyot,M,,FATAL,Y,,,"Bryan Morning Eagle, 9/12/1899",1899.09.11.R-Guyot,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.09.11.R-Guyot,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.09.11.R-Guyot,1899.09.11.R,1899.09.11.R,664,, +1899.08.23.R,Reported 23-Aug-1899,1899,Provoked,USA,California,"Monterey Bay, Monterey County",Hunting sharks,males,M,,"FATAL, Drowned or crushed when harpooned shark smashed their boat PROVOKED INCIDENT",Y,,Basking shark,"Mexia Evening Ledger, 8/23/1899",1899.08.23.R-BaskingShark-Monterey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.23.R-BaskingShark-Monterey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.23.R-BaskingShark-Monterey.pdf,1899.08.23.R,1899.08.23.R,663,, +1899.08.15,15-Aug-1899,1899,Unprovoked,USA,Florida,"Trout River, Panama Park",Swimming,Delano Wood,M,15,FATAL,Y,,3 m [10'] shark,"Washington Post, 8/16/1899, p.1",1899.08.15-DelanoWood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.15-DelanoWood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.15-DelanoWood.pdf,1899.08.15,1899.08.15,662,, +1899.08.08.c,08-Aug-1899,1899,Unprovoked,EGYPT ,Mediterranean Sea,Port Said,Floating on his back,Arab boy,M,9,Back muscles torn away,N,11h30,,W. B. Orme,1899.08.08.c-ArabBoy-9.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.c-ArabBoy-9.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.c-ArabBoy-9.pdf,1899.08.08.c,1899.08.08.c,661,, +1899.08.08.b,08-Aug-1899,1899,Unprovoked,EGYPT ,Mediterranean Sea,Port Said,Bathing,Arab boy,M,19,"Forearm, wrist & hand bitten",N,09h30,,W. B. Orme,1899.08.08.b-ArabBoy-19.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.b-ArabBoy-19.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.b-ArabBoy-19.pdf,1899.08.08.b,1899.08.08.b,660,, +1899.08.08.a,08-Aug-1899,1899,Unprovoked,EGYPT,Mediterranean Sea,Port Said,Bathing,Arab boy,M,13,Left leg bitten,N,08h30,,W. B. Orme,1899.08.08.a-ArabBoy-13.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.a-ArabBoy-13.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.a-ArabBoy-13.pdf,1899.08.08.a,1899.08.08.a,659,, +1899.07.08.R,Reported 08-Jul-1899,1899,Unprovoked,BAHAMAS,,,Fell overboard ,Captain Masson,M,,FATAL,Y,,,"Mataura Ensign, 7/8/1899",1899.07.08.R-Masson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.07.08.R-Masson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.07.08.R-Masson.pdf,1899.07.08.R,1899.07.08.R,658,, +1899.06.07,07-Jun-1899,1899,Provoked,ITALY,Calabria,Bagnara Calabra,Fishing,Enrico & Noce,M,,Multiple injuries from boated shark PROVOKED INCIDENT,N,,70 kg shark,C. Moore. GSAF,1899.06.07-Bagnara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.07-Bagnara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.07-Bagnara.pdf,1899.06.07,1899.06.07,657,, +1899.06.02, 02-Jun-1899,1899,Invalid,NEW ZEALAND,North Island,East Cape,Attempting to land a boat from the Hinemoa,N. Buchanan,M,,FATAL,Y,,Shark involvement not confirmed,"Brisbane Courier, 6/7/1899",1899.06.02-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.02-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.02-Buchanan.pdf,1899.06.02,1899.06.02,656,, +1899.05.28,28-May-1899,1899,Invalid,PHILIPPINES,Negros ,Escalante,Swimming,Captain Tilly,M,,FATAL,Y,,Shark involvement not confirmed,"New York Times, 5/30/1899",1899.05.28-CaptTilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.28-CaptTilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.28-CaptTilly.pdf,1899.05.28,1899.05.28,655,, +1899.05.04.R,Reported 04-May-1899,1899,Unprovoked,ITALY,Imperia Province,Bordighera,Bathing,The valet of the Earl of Strathmore and Kinghorne,M,,FATAL,Y,,,"Washington Post, 5/5/1899",1899.05.04.R-Valet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.04.R-Valet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.04.R-Valet.pdf,1899.05.04.R,1899.05.04.R,654,, +1899.01.28,28-Jan-1899,1899,Invalid,AUSTRALIA,New South Wales,Newcastle,Bathing,Rose Sutcliffe,F,13,Drowning may hav preceded attack,Y,,,"Kalgoorlie Western Argus, 2/2/1899",1899.01.28-Sutcliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.01.28-Sutcliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.01.28-Sutcliffe.pdf,1899.01.28,1899.01.28,653,, +1899.00.00.c,1899 During the Seige of Ladysmith,1899,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Dangling feet in the water,a petty officer,M,,Foot severed ,N,,,"Indiana Evening Gazette, 11/22/1904",1899.00.00.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.c-Durban.pdf,1899.00.00.c,1899.00.00.c,652,, +1899.00.00.b,1899,1899,Boating,USA,Florida,St. John's River,Rowing,"boat, occupants: 2 Jacksonville pilots",M,,No injury to occupants. shark bit oar,N,,,"W. H. Gregg, p. 22",1899.00.00.b-2pilots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.b-2pilots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.b-2pilots.pdf,1899.00.00.b,1899.00.00.b,651,, +1899.00.00.a,Ca. 1899,1899,Unprovoked,USA,Florida,Near a small wreck in a channel at Indian Key,Hunting crayfish,male,M,,Leg bitten,N,,1.5 m [5'] shark,"W.H. Gregg, p.19",1899.00.00.a-IndianKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.a-IndianKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.a-IndianKey.pdf,1899.00.00.a,1899.00.00.a,650,, +1898.12.28.R,Reported 28-Dec-1898,1898,Unprovoked,AUSTRALIA,Queensland,The Narrows,Fell oveboard,James Waters,M,,FATAL,Y,,,"Brisbane Courier, 12/28/1898",1898.12.28.R-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.12.28.R-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.12.28.R-Waters.pdf,1898.12.28.R,1898.12.28.R,649,, +1898.10.28,28-Oct-1898,1898,Unprovoked,USA,Hawaii,Off Kohala,Jumped overboard,Ah Hoi,M,,FATAL,Y,,,"Hawaiian Gazette, 11/1/1898",1898.10.28-AhHol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.10.28-AhHol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.10.28-AhHol.pdf,1898.10.28,1898.10.28,648,, +1898.09.19.b.R,Reported 19-Sep-1898,1898,Unprovoked,,,,Diving,Halletts,M,,Lacerations to hand from shark trapped inside diving bell. ,N,,,"Lincoln Evening News & Daily Call, 9/19/1898",1898.09.19.b.R-Halletts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.b.R-Halletts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.b.R-Halletts.pdf,1898.09.19.b.R,1898.09.19.b.R,647,, +1898.09.19.a.R,Reported 19-Sep-1898,1898,Unprovoked,,,,Diving,male,M,,Lacerations to fingers,N,,,"Lincoln Evening News & Daily Call, 9/19/1898",1898.09.19.a.R.Sully.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.a.R.Sully.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.a.R.Sully.pdf,1898.09.19.a.R,1898.09.19.a.R,646,, +1898.08.22,22-Aug-1898,1898,Unprovoked,USA,New York,"Prince's Bay, Staten Island",Swimming,Charles E. Boone,M,,Laceration to thigh,N,Afternoon,,"Lima News, 9/27/1898",1898.08.22-Boone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.08.22-Boone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.08.22-Boone.pdf,1898.08.22,1898.08.22,645,, +1898.07.26.R,Reported 26-Jul-1898,1898,Invalid,AUSTRALIA,New South Wales,Sydney,Swimming after their boat capsized,Martin Gunner,,M,"Reported fatal, but this is a questionable incident",Y,,,"Brisbane Courier, 7/26/1898",1898.07.26.R-Gunner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.26.R-Gunner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.26.R-Gunner.pdf,1898.07.26.R,1898.07.26.R,644,, +1898.07.15,15-Jul-1898,1898,Unprovoked,YEMEN ,Aden,Outer Harbor,Swimming at side of small boat,Somali boatman,M,24,"FATAL, severe injuries to both arms & legs, 3 limbs surgically amputed & died after 3 days ",Y,Afternoon,,Captain J. L.T. Jones,1898.07.15-SomaliBoatman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.15-SomaliBoatman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.15-SomaliBoatman.pdf,1898.07.15,1898.07.15,643,, +1898.07.14,14-Jul-1898,1898,Unprovoked,YEMEN ,Aden,Sapper Bay,Standing,Davies,M,22,FATAL,Y,,,"Inangahua Times, 10/26/1898",1878.07.14-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.07.14-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.07.14-Davies.pdf,1898.07.14,1898.07.14,642,, +1898.07.00, Jul-1898,1898,Unprovoked,CUBA,Santiago de Cuba Province,Santiago de Cuba,Swimming,male,M,,FATAL,Y,,,"V.M. Coppleson (1958), p.258 ",1898.07.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.00-Cuba.pdf,1898.07.00,1898.07.00,641,, +1898.06.22,22-Jun-1898,1898,Unprovoked,NEW CALEDONIA,South Province,Noumea,boat from City of Naples capsized,14 sailors,M,,FATAL,Y,,,"New York Times, 6/23/1898",1898.06.22-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.06.22-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.06.22-NewCaledonia.pdf,1898.06.22,1898.06.22,640,, +1898.04.13,13-Apr-1898,1898,Sea Disaster,FIJI,Muala,,The cutter Francis Adams foundered,male,M,,Lacerations to thigh,N,,,"Launceston Examiner, 8/26/1898",1898.04.13-FrancisAdams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.04.13-FrancisAdams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.04.13-FrancisAdams.pdf,1898.04.13,1898.04.13,639,, +1898.00.00.R,Reported 1898,1898,Invalid,CRETE,,,Sponge divers,male,M,,Unknown,UNKNOWN,,,"C. Moore, GSAF",1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,1898.00.00.R,1898.00.00.R,638,, +1898.00.00.f,1898,1898,Unprovoked,USA,South Carolina,Ramshorn Creek,Fishing (Seining),Archibald Rutledge,M,15,Lacerations to left hand,N,,White shark,"Field & Stream, 1933",1898.00.00.f-Rutledge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.f-Rutledge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.f-Rutledge.pdf,1898.00.00.f,1898.00.00.f,637,, +1898.00.00.e,1898 (soon after the close of the Spanish-American War),1898,Unprovoked,CUBA,Santiago de Cuba Province,Off Santiago de Cuba,13 men in the water after sailboat capsized & sank,seamen,M,,"FATAL, 7 survived but 6 were taken by sharks",Y,,,"J. E. Kirby, letter to Captain Dinning, dated 10/14/1927",1898.00.00.e-13-men.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.e-13-men.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.e-13-men.pdf,1898.00.00.e,1898.00.00.e,636,, +1898.00.00.d,1898,1898,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Trailing hand in the water,Gonzales,F,,"Hand lacerated, 2 fingers severed",N,,,"Indiana Evening Gazette, 11/22/1904",1898.00.00.d-Gonzales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.d-Gonzales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.d-Gonzales.pdf,1898.00.00.d,1898.00.00.d,635,, +1898.00.00.c,1898,1898,Unprovoked,CUBA,Camaguey Province,Nuevitas Harbor,Attempting to escape by swimming to shore,"5 American soldiers, prisoners ",M,,"FATAL, 4 were killed by sharks, 1 survived",Y,,,"J. E. Kirby, letter to Captain Dinning, dated 10/14/1927",1898.00.00.c-AmericanPOWs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.c-AmericanPOWs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.c-AmericanPOWs.pdf,1898.00.00.c,1898.00.00.c,634,, +1898.00.00.b,1898-1899,1898,Unprovoked,USA,Florida,"a creek near Jacksonville, Duval County",,boy,M,,Lacerations,N,,,W. H. Gregg,1898.00.00.b-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.b-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.b-Florida.pdf,1898.00.00.b,1898.00.00.b,633,, +1898.00.00.a,Summer of 1898,1898,Unprovoked,YEMEN ,Aden,Harbor,Diving for coins,male,M,,FATAL,Y,,,"Daily Kennebec Journal, 3/27/1911",1898.00.00.a-AdenDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.a-AdenDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.a-AdenDiver.pdf,1898.00.00.a,1898.00.00.a,632,, +1898.00.00 g,1898,1898,Sea Disaster,USA,Hawaii,,Loss of the schooner Nomad,male,M,,FATAL,Y,,,"H.W. McCurdy, History of the Pacific Northwest, p. 51",1898.00.00.g-Nomad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.g-Nomad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.g-Nomad.pdf,1898.00.00 g,1898.00.00 g,631,, +1897.12.04.R,Reported 04-Dec-1897,1897,Provoked,USA,East coast,,Angling,a sailor,M,,Hooked shark bit his leg PROVOKED INCIDENT,N,,,"Trenton Evening Times, 12/4/1897",1897.12.04.R-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.12.04.R-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.12.04.R-Sailor.pdf,1897.12.04.R,1897.12.04.R,630,, +1897.10.15,15-Oct-1897,1897,Invalid,MEXICO,Vera Cruz,Vera Cruz Harbor,Diving,Alexander Cameron,M,,Minor injuries,N,,Questionable,"NY Times, 11/11/1897",1897.10.15-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.15-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.15-Cameron.pdf,1897.10.15,1897.10.15,629,, +1897.10.05.R,Reported 05-Oct-1897,1897,Unprovoked,MARSHALL ISLANDS,Ratak ,Ailuk Island,Fishing,5 children,,,FATAL,Y,,3 sharks,"North Otago Times, 1258/1897",1897.10.05.R-Ailuk-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.05.R-Ailuk-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.05.R-Ailuk-Island.pdf,1897.10.05.R,1897.10.05.R,628,, +1897.09.17,17-Sep-1897,1897,Provoked,USA,Rhode Island,Point Judith,Fishing,"""Hoke"" Smith",M,,Lacerations to hand by netted shark PROVOKED INCIDENT,N,Late Afternoon,"13'10"" shark","New York Times, 9/18/1897",1897.09.17-HokeSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.17-HokeSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.17-HokeSmith.pdf,1897.09.17,1897.09.17,627,, +1897.09.06,06-Sep-1897,1897,Unprovoked,USA,South Carolina,"Elliott Cut, Charleston County",Standing,Allan Fripp,M,,Lacerations to lower leg,N,,,"Hartford Courant, 8/7/1897",1897.09.06-Fripp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.06-Fripp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.06-Fripp.pdf,1897.09.06,1897.09.06,626,, +1897.07.21,21-Jul-1897,1897,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",Wading after stray fish from seine netters catch,a young Indian boy,M,,FATAL,Y,Morning,,"Natal Mercury, 7/24/1897; M. Levine, GSAF",1897.07.21-Indianboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.07.21-Indianboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.07.21-Indianboy.pdf,1897.07.21,1897.07.21,625,, +1897.06.09,09-Jun-1897,1897,Invalid,YEMEN ,Socotra Islands,Socotra,Wreck of the steamship Sultan of Bombay,Moslem pilgrims,,,Sharks scavenged on the dead,Y,,,"Star, 7/10/1897; Kalgoorlie Western Argus, 7/15/1897",1897.06.09-Sultan-of-Bombay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.06.09-Sultan-of-Bombay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.06.09-Sultan-of-Bombay.pdf,1897.06.09,1897.06.09,624,, +1897.03.15.b.R,Reported 15-Mar-1897,1897,Unprovoked,,Mediterranean Sea,,Swimming,male,M,,FATAL,Y,,,"Daily Northwestern, 5/15/1897",1897.03.15.b.R-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.b.R-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.b.R-Mediterranean.pdf,1897.03.15.b.R,1897.03.15.b.R,623,, +1897.03.15.a.R,Reported 15-Mar-1897,1897,Unprovoked,USA,Massachusetts,30 miles south of Lynn,Fishing,male,M,,FATAL,Y,,,"Daily Northwestern, 5/15/1897",1897.03.15.a.R-Lynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.a.R-Lynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.a.R-Lynn.pdf,1897.03.15.a.R,1897.03.15.a.R,622,, +1897.00.00.b,1897,1897,Unprovoked,NEW ZEALAND,,,,Maori male,M,,Lacerations to left arm,N,,,"Deseret News, 6/28/1946",1987.00.00.b-Maori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Maori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Maori.pdf,1897.00.00.b,1897.00.00.b,621,, +1897.00.00.a,1897,1897,Unprovoked,EGYPT,Mediterranean Sea,Port Said,,Anonymous,,,No details,UNKNOWN,,,"Mentioned in paper by W.B. Orme; G.A. Llano, p.127",1897.00.00.a-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.00.00.a-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.00.00.a-Egypt.pdf,1897.00.00.a,1897.00.00.a,620,, +1896.12.23,23-Decp1896,1896,Boating,AUSTRALIA,Victoria,Hobson's Bay,Fishing,10' skiff. Occupants F. Whitehead & L. Honeybone,M,,No injury to occupants. Shark bit boat several times,N,05h00,12' to 14' shark,"South Australian Register, 12/25/1896",1896.12.23-skiff-HobsonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.23-skiff-HobsonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.23-skiff-HobsonsBay.pdf,1896.12.23,1896.12.23,619,, +1896.12.20,20-Dec-1896,1896,Unprovoked,NEW ZEALAND,North Island,"Marine Parade, Napier, Hawke Bay",Bathing,Bright Cooper,M,26,"FATAL, left arm severed at elbow, right arm at wrist ",Y,,,"A.W. Parrott, p. 68; V.M. Coppleson (1958), p.258",1896.12.20-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.20-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.20-Cooper.pdf,1896.12.20,1896.12.20,618,, +1896.12.17.R,Reported 17-Dec-1896,1896,Unprovoked,NEW ZEALAND,South Island,Hoiktika,,E. Reynolds,M,,FATAL,Y,,,"The Star, 12/17/1896",1896.12.17.R-Reynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.17.R-Reynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.17.R-Reynolds.pdf,1896.12.17.R,1896.12.17.R,617,, +1896.11.29,29-Nov-1896,1896,Unprovoked,AUSTRALIA,Western Australia,Albany,Swimming,Davies,M,,FATAL,Y,,,"West Australian, 12/3/1896",1896.11.29-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.29-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.29-Davies.pdf,1896.11.29,1896.11.29,616,, +1896.11.01,01-Nov-1896,1896,Unprovoked,AUSTRALIA,Western Australia,Esperance,Boat swamped,Louis,M,,FATAL,Y,,,"West Australian, 11/2/1896",1896.11.01-Louis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.01-Louis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.01-Louis.pdf,1896.11.01,1896.11.01,615,, +1896.09.11.R,Reported 11-Sep-1896,1896,Unprovoked,SRI LANKA,,,Diving,,M,,Leg severed,N,,,"New Oxford Item, 9/11/1896",1896.09.11.R-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.09.11.R-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.09.11.R-SriLanka.pdf,1896.09.11.R,1896.09.11.R,614,, +1896.07.25,25-Jul-1896,1896,Unprovoked,USA,Hawaii,"Kahului, Maui",Fishing,Nahalehau,M,35,FATAL,Y,10h30,,"Hawaiian Gazette, 8/4/1896",1896.07.25-Nahalehau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.07.25-Nahalehau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.07.25-Nahalehau.pdf,1896.07.25,1896.07.25,613,, +1896.06.21.R,Reported 21-Jun-1896,1896,Unprovoked,USA,South Carolina,Charleston,Bathing,Mr. Walsh ,M,,Lacerations to foot and calf,N,,,"New York Times, 6/21/1896",1896.06.21.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.06.21.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.06.21.R-Walsh.pdf,1896.06.21.R,1896.06.21.R,612,, +1896.01.11, 11-Jan-1896,1896,Unprovoked,AUSTRALIA,New South Wales,"Johnstone's Bay, Sydney",Bathing,William Ready,M,11,FATAL,Y,Afternoon,,"Brisbane Courier, 1/13/1896",1896.01.11-Ready.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.01.11-Ready.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.01.11-Ready.pdf,1896.01.11,1896.01.11,611,, +1896.00.00.b,1896,1896,Unprovoked,USA,Florida,,"Swimming ashore from a ""filibuster""",male,M,,FATAL,Y,,,W.H. Gregg,1896.00.00.b-filibuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.b-filibuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.b-filibuster.pdf,1896.00.00.b,1896.00.00.b,610,, +1896.00.00.a,1896,1896,Unprovoked,HAITI,Off Cape Haitien,,Wading,Syrian,M,15,Leg severed below knee,N,,,"C. R. Baker & C.M. Rose; V.M. Coppleson (1958), p.259 ",1896.00.00.a-Syrian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.a-Syrian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.a-Syrian.pdf,1896.00.00.a,1896.00.00.a,609,, +1895.12.09,09-Dec-1895,1895,Unprovoked,AUSTRALIA,New South Wales,"West Balmain, Sydney",Bathing,Thomas John Terrill,M,14,FATAL,Y,,,"Brisbane Courier, 12/9/1895",1895.12.09-Terrill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.12.09-Terrill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.12.09-Terrill.pdf,1895.12.09,1895.12.09,608,, +1895.11.21.R,Reported 21-Nov-1895,1895,Unprovoked,BARBADOS,St Michael Parish,Bridgetown,Diving for coins,Rouee Youma,M,,Leg bitten,N,,,"NY Times, 11/21/1895",1895.11.21.R-Youma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.21.R-Youma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.21.R-Youma.pdf,1895.11.21.R,1895.11.21.R,607,, +1895.11.16,16-Nov-1895,1895,Unprovoked,AUSTRALIA,New South Wales,Jervis Bay ,Fishing,Edward Bailey,M,,FATAL,Y,,,"West Australian, 11/19/1895",1895.11.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.16-Bailey.pdf,1895.11.16,1895.11.16,606,, +1895.09.18,18-Sep-1895,1895,Sea Disaster,CUBA,Havana Province,Havana Harbor,Shipwreck,male,M,,Probable drowning & scavenging,Y,Night,,"NY Times, 9/21/1895",1895.09.18-HavanaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.18-HavanaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.18-HavanaShipwreck.pdf,1895.09.18,1895.09.18,605,, +1895.09.14.R,Reported 14-Sep-1895,1895,Unprovoked,YEMEN ,Aden,,Diving for coins,a native boy ,M,,FATAL,Y,,,"Queenslander, 9/14/8/1895",1895.09.14.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.14.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.14.R-Aden.pdf,1895.09.14.R,1895.09.14.R,604,, +1895.09.00,Sep-1895,1895,Provoked,USA,North Carolina,"Near the mouth of the Cape Fear River, Brunswick County",Fishing,"open boat, occupants: Robert Ruark, Hoyle Dosher & Elmer Adkins",,,"No injury, hooked shark rammed boat & Ruark fell on its back PROVOKED INCIDENT",N,,5' shark,"C. Creswell, GSAF",1895.09.00-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.00-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.00-boat.pdf,1895.09.00,1895.09.00,603,, +1895.08.11,11-Aug-1895,1895,Unprovoked,USA,Rhode Island,Noyes Beach,Swimming,Charles Beattie,M,26,FATAL,Y,05h00,,Boston Globe,1895.08.11-Beattie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.11-Beattie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.11-Beattie.pdf,1895.08.11,1895.08.11,602,, +1895.08.02,2-Aug-1895,1895,Unprovoked,USA,New Jersey,Raritan Bay,Fishing,Elias Turner,M,,Arm bitten,N,,,"Boston Globe, 8/3/1895, p.5",1895.08.02-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.02-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.02-Turner.pdf,1895.08.02,1895.08.02,601,, +1895.07.16.R,Reported 16-Jul-1895,1895,Unprovoked,JAPAN,,,Hunting seals,William Lloyd,M,,FATAL,Y,,,"Morning News, 7/16/1895",1895.07.16.R-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.07.16.R-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.07.16.R-Lloyd.pdf,1895.07.16.R,1895.07.16.R,600,, +1895.06.13.R,Reported 13-Jun-1895,1895,Unprovoked,,,,Diving,Marsh,M,,Right hand severed,N,,,"Lima Times, 6/13/1895",1895.06.13.R-EnglishDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.13.R-EnglishDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.13.R-EnglishDiver.pdf,1895.06.13.R,1895.06.13.R,599,, +1895.06.03.R,Reported 03-Jun-1895,1895,Unprovoked,AUSTRALIA,Western Australia,Barrow Passage,Pearl diving,a Japanese diver,M,,FATAL,Y,,,"The West Australian, 6/3/1895",1895.06.03.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.03.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.03.R-JapaneseDiver.pdf,1895.06.03.R,1895.06.03.R,598,, +1895.05.21,21-May-1895,1895,Sea Disaster,BAHAMAS,Bimini Islands,Off Gun Cay,Sea Disaster : Wreck of the Carrie E. Long,Tip Stanley,M,,Heel bitten,N,,,"Meriden Daily Republican, 6/12/1895",1895.05.21-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.21-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.21-Stanley.pdf,1895.05.21,1895.05.21,597,, +1895.05.03,03-May-1895,1895,Unprovoked,NEW ZEALAND,South Island,Preservation Inlet,"""Boat accident""",James Cromarty,M,,FATAL Thigh bitten,Y,,,"Otago Witness, 5/16/1895",1895.05.03-Cromarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.03-Cromarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.03-Cromarty.pdf,1895.05.03,1895.05.03,596,, +1895.04.29,29-Apr-1895,1895,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mzimvubu River,"""Crossing the river""",Sombutize,M,28,"FATAL, right arm lacerated ",Y,12h00,,"M. Levine, GSAF",1895.04.29-Sombutize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.29-Sombutize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.29-Sombutize.pdf,1895.04.29,1895.04.29,595,, +1895.04.23,23-Apr-1895,1895,Unprovoked,NEW ZEALAND,South Island,Oamaru,Swimming,Percy Mitchell,M,,Lacerations to foot,N,Early morning,,"Star, 4/25/1895, p.",1895.04.23-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.23-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.23-Mitchell.pdf,1895.04.23,1895.04.23,594,, +1895.03.29.R,Reported 29-Mar-1895,1895,Unprovoked,INDONESIA,Moluccas,South Aroo Island,Swimming,Pindo Island pirates,M,,FATAL,Y,,,"Fitzroy City Press, 3/29/1895",1895.03.29.R-Pindo-Islanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.29.R-Pindo-Islanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.29.R-Pindo-Islanders.pdf,1895.03.29.R,1895.03.29.R,593,, +1895.03.15,15-Mar-1895,1895,Unprovoked,AUSTRALIA,Queensland,Burnett River,Swimming,Nicol Pringle,M,13,Lower leg & foot bitten,N,,,"The Telegraph, 3/20/1895",1895.03.15-Pringle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.15-Pringle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.15-Pringle.pdf,1895.03.15,1895.03.15,592,, +1895.02.27,27-Feb-1895,1895,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,Swimming,James Edward Clifton Donald,M,14,FATAL,Y,,,I. Donald ,1895.02.27-Donald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.27-Donald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.27-Donald.pdf,1895.02.27,1895.02.27,591,, +1895.02.23.R,Reported 23-Feb-1895,1895,Unprovoked,PANAMA,Bocas del Toro,,"Swimming, after sailboat capsized",John Minard,M,,FATAL,Y,,,"Fort Wayne Sentinel, 2/23/1895",1895.02.23.R-Minard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.23.R-Minard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.23.R-Minard.pdf,1895.02.23.R,1895.02.23.R,590,, +1895.00.00.b,1895,1895,Boating,AUSTRALIA,Western Australia,"Dampier's Creek, Broome",,oar of Knut Dahl's boat,,,No injury to occupants of boat,N,,,"G.P. Whitley (1951), p.192",1895.00.00-Dahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.00.00-Dahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.00.00-Dahl.pdf,1895.00.00.b,1895.00.00.b,589,, +1894.12.11,11-Dec-1894,1894,Provoked,USA,Florida,"North Beach, St. Augustine",Fishing,Chatiles F. Brynes,M,,Left leg bitten PROVOKED INCIDENT,N,,12' shark,"Atlanta Constitution, 12/12/1894",1894.12.11-Brynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.12.11-Brynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.12.11-Brynes.pdf,1894.12.11,1894.12.11,588,, +1894.11.28,28-Nov-1894,1894,Unprovoked,AUSTRALIA,New South Wales,Newcastle ,Bathing,Horace Hewison,M,19,"""Lost his arm""",N,Morning,10' to 12' shark,"Brisbane Courier, 1/7/1895, p.5",1894.11.28-Hewison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.11.28-Hewison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.11.28-Hewison.pdf,1894.11.28,1894.11.28,587,, +1894.10.06.R,Reported 06-Oct-1894,1894,Unprovoked,USA,Alabama,Mobile Bay,Swimming,a deserter from the ship Evarest,M,,FATAL,Y,,,"Middletown Daily Argus, 10/6/1894",1894.10.06.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.10.06.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.10.06.R-deserter.pdf,1894.10.06.R,1894.10.06.R,586,, +1894.09.12.R,Reported 12-Sep-1894,1894,Unprovoked,USA,Virginia,Norfolk,Bathing,Michael Daly,M,,Lacerations to leg,N,,,"Washington Post, 9/13/1894",1894.09.12.R-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.12.R-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.12.R-Daly.pdf,1894.09.12.R,1894.09.12.R,585,, +1894.09.06.R,Reported 06-Sep-1894,1894,Unprovoked,FIJI,Vita Levu,Rewa River,Dangling feet in the water,Fijian girl,F,,Foot severed,N,,,"The Colonist, 9/6/1894",1894.09.06.R-FijianGirl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.06.R-FijianGirl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.06.R-FijianGirl.pdf,1894.09.06.R,1894.09.06.R,584,, +1894.09.01.R,Reported 01-Sep-1894,1894,Provoked,USA,Texas,Rockport,Fishing,William Muller,M,,Laceration to calf PROVOKED INCIDENT,N,,,"Lima Times Democrat, 9/1/1894",1894.09.01.R-Muller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.01.R-Muller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.01.R-Muller.pdf,1894.09.01.R,1894.09.01.R,583,, +1894.08.21,21-Aug-1894,1894,Unprovoked,USA,New York,"Woolsey's Point, East River",Swimming,Catherine Beach,F,,No injury,UNKNOWN,,"Shovelnose shark, 5'","NY Times, 8/22/1894 ",1894.08.21-CatherineBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.21-CatherineBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.21-CatherineBeach.pdf,1894.08.21,1894.08.21,582,, +1894.08.01,01-Aug-1894,1894,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming / floating on his back,Milton Shane,M,,Lacerations to thigh,N,,,"Jacksonville Times-Union, 8/2/1894",1894.08.01-MiltonShane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.01-MiltonShane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.01-MiltonShane.pdf,1894.08.01,1894.08.01,581,, +1894.07.15.R,Reportd 15-Jul-1894,1894,Unprovoked,FRANCE,Provence,"la Badine, Hyres ",Fishing,"la Badine, Hyres, ",M,,No injury,Y,,1.8 m shark,"C. Moore, GSAF",1894.07.15.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.07.15.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.07.15.R-France.pdf,1894.07.15.R,1894.07.15.R,580,, +1894.06.29,29-Jun-1894,1894,Unprovoked,USA,Florida,Anastasia Island,Bathing,Erskine H. Reynolds,M,,"""Painfully injured"" but no details",UNKNOWN,,,"Atlanta Constitution, 7/1/1894; Washington Post 7/1/1894, p.17",1894.06.29-ErskineReynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.29-ErskineReynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.29-ErskineReynolds.pdf,1894.06.29,1894.06.29,579,, +1894.06.25,25-Jun-1894,1894,Unprovoked,SOUTH AFRICA,Western Cape Province,Simons Town,Swimming after harpooned whale capsized boat,"Swedish male, crewman from the Harry Mundahl",M,,FATAL,Y,,,"Cape Argus, 7/2/1894 ",1894.06.25-SwedishWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.25-SwedishWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.25-SwedishWhaler.pdf,1894.06.25,1894.06.25,578,, +1894.06.15.b.R,Reported 15-Jun-1894,1894,Unprovoked,USA,North Carolina,"New Bern, Craven County",bathing ,soldier ,M,,Right leg bitten,N,,,"Warren Ledger, 6/15/1894",1894.06.15.b.R-Newbern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.b.R-Newbern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.b.R-Newbern.pdf,1894.06.15.b.R,1894.06.15.b.R,577,, +1894.06.15.a.R,Reported 15-Jun-1894,1894,Unprovoked,MEXICO,Bay of Campeche,,Fell from yardarm of British ship Rover,sailor,M,,"FATAL, torso bitten ",Y,,20' shark,"Warren Ledger, 6/15/1894",1894.06.15.a-R-Rover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.a-R-Rover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.a-R-Rover.pdf,1894.06.15.a.R,1894.06.15.a.R,576,, +1894.04.28.b.R,Reported 28-Apr-1894,1894,Unprovoked,BURMA,Rangoon,Amherst,Bathing, Grace Darling,F,,FATAL,Y,,,"Bruce Herald, 8/24/1894",1894.04.28.b.R-GraceDarling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.b.R-GraceDarling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.b.R-GraceDarling.pdf,1894.04.28.b.R,1894.04.28.b.R,575,, +1894.04.28.a.R,Reported 28-Apr-1894,1894,Unprovoked,BURMA,Rangoon,Amherst,Bathing,Lucy Stone ,F,,FATAL ,Y,,,"Bruce Herald, 8/24/1894",1894.04.28.a.R-LucyStone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.a.R-LucyStone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.a.R-LucyStone.pdf,1894.04.28.a.R,1894.04.28.a.R,574,, +1893.10.20.R,Reported 20-Oct-1893,1893,Unprovoked,INDIA,Bay of Bengal,Madras Harbor,Murder,A young pearl trader,M,,FATAL,Y,,,"Middletown Daily Argus, 10/20/1893",1893.10.20.R-PearlTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.20.R-PearlTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.20.R-PearlTrader.pdf,1893.10.20.R,1893.10.20.R,573,, +1893.10.16,16-Oct-1893,1893,Invalid,CROATIA, Primorje-Gorski Kotar County,"Off Volusca, Opatija",small boat,4 passengers frightened by shark,,,No injury; no attack,N,,,C. Moore,1893.10.16-Opatija.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.16-Opatija.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.16-Opatija.pdf,1893.10.16,1893.10.16,572,, +1893.07.03,03-Jul-1893,1893,Unprovoked,PHILIPPINES,,Off Manila,Abandoning burning steamship Don Juan,,M,,FATAL,Y,,,"New Zealand Tablet, 12/1/1893",1893.07.03-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.07.03-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.07.03-DonJuan.pdf,1893.07.03,1893.07.03,570,, +1893.06.22,22-Jun-1893,1893,Unprovoked,LEBANON,,Off Tripoli,HMS Victoria collided with the HMS Camperdown,crew,M,,FATAL,Y,,,"The Sydney Morning Herald, 6/29/1893",1893.06.22-HMSVictoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22-HMSVictoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22-HMSVictoria.pdf,1893.06.22,1893.06.22,569,, +1893.06.22.R,Reported 22-Jun-1893,1893,Unprovoked,NIGERIA,Bayelsa State,Mouth of the Nun River,A barque wrecked,mate & crew,M,,FATAL,Y,,,"Otago Witness, 6/22/1893",1893.06.22.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22.R-Nigeria.pdf,1893.06.22.R,1893.06.22.R,569,, +1893.05.23.R,Reported 23-May-1893,1893,Unprovoked,FIJI,,Between Kadavu & Beqa,Canoe swamped,a girl,F,,FATAL,Y,,,"Brisbane Courier, 5/23/1893",1893.05.23.R-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.23.R-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.23.R-FijianCanoe.pdf,1893.05.23.R,1893.05.23.R,568,, +1893.05.17,17-May-1893,1893,Unprovoked,CUBA,Havana Province,Havana Harbor,His balloon crashed in the harbor,"Ramon Margulies, aeronaut",M,,FATAL,Y,16h00,,"Portsmouth Herald, 3/6/1899",1893.05.17-Margulies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.17-Margulies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.17-Margulies.pdf,1893.05.17,1893.05.17,567,, +1893.04.15,Reported 15-Apr-1893,1893,Unprovoked,SOUTH ATLANTIC OCEAN,,,Swimming after falling overboard from the sealing ship Vesper,Charles Barclay,M,,"One leg severed by the shark, the other surgically amputated",N,,,"The News, 4/15/1893",1893.04.15.R-Barclay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.15.R-Barclay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.15.R-Barclay.pdf,1893.04.15,1893.04.15,566,, +1893.04.14,14-Apr-1893,1893,Unprovoked,AUSTRALIA,Queensland,Torres Strait,"Boat capsized, swimming ashore",Kangaroo,M,,Leg bitten,N,,,"Brisbane Courier, 6/2/1893",1893.04.14-Kangaroo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.14-Kangaroo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.14-Kangaroo.pdf,1893.04.14,1893.04.14,565,, +1893.04.04,04-Apr-1893,1893,Invalid,AUSTRALIA,Tasmania,"Chimney Point, Georges Bay","Boat capsized, swimming ashore",Joseph Meredith,M,,"Fatal, probable drowning",Y,16h30,,"C. Black, GSAF; V.M. Coppleson (1958), p.105",1893.04.04-Meredith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.04-Meredith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.04-Meredith.pdf,1893.04.04,1893.04.04,564,, +1893.01.30.R,Reported 30-Jan-1893,1893,Unprovoked,NEW ZEALAND,South Island?,Downs River,Bathing,Donald McKenzie,M,,FATAL,Y,,,"Taranaki Herald, 1/30/1893",1893.01.30.R-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.30.R-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.30.R-McKenzie.pdf,1893.01.30.R,1893.01.30.R,563,, +1893.01.18.R,Reported 18-Jan-1893,1893,Unprovoked,FRENCH POLYNESIA,,One week out of Ppete,Murdered,sailor,M,,FATAL.Tossed overboard to sharks by Rodrigue brothers who were later executed in Manila,Y,,,"West Australian, 1/18/1893",1893.01.18.R-RodrigueBrothersVictims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.18.R-RodrigueBrothersVictims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.18.R-RodrigueBrothersVictims.pdf,1893.01.18.R,1893.01.18.R,562,, +1893.00.00,1893,1893,Unprovoked,EGYPT,Mediterranean Sea,Port Said,,No details,,,No details,UNKNOWN,,,"Briefly mentioned in paper by W.B. Orme; G.A. Llano, p.127",1893.00.00-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.00.00-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.00.00-PortSaid.pdf,1893.00.00,1893.00.00,561,, +1892.12.15,15-Dec-1892,1892,Unprovoked,ATLANTIC OCEAN,,,Fell overboard,Samuel Coolidge,M,15,FATAL,Y,,,"Washington Post, 1/9/1893",1892.12.15-SamuelCoolidge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.12.15-SamuelCoolidge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.12.15-SamuelCoolidge.pdf,1892.12.15,1892.12.15,560,, +1892.11.09.R,Reported 09-Nov-1892,1892,Unprovoked,AUSTRALIA,Norfolk Island,,Fishing,a boat steerer,M,,Laceration to arm,N,,,"Timaru Herald, 11/8/1892",1892.11.09.R-NorfolkIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.09.R-NorfolkIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.09.R-NorfolkIsland.pdf,1892.11.09.R,1892.11.09.R,559,, +1892.11.06,06-Nov-1892,1892,Unprovoked,AUSTRALIA,Queensland,"Wellington Point, Brisbane",Swimming,Mrs. Coe,F,,Abrasions to left leg,N,,,"Brisbane Courier, 11/9/1892",1892.11.06-Coe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.06-Coe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.06-Coe.pdf,1892.11.06,1892.11.06,558,, +1892.09.16.R,Reported 16-Sep-1892,1892,Unprovoked,USA,Texas,Velasco,,Baker,M,,Hand bitten,N,,,"Galveston Daily News, 9/16/1892 ",1892.09.16.R-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.09.16.R-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.09.16.R-Baker.pdf,1892.09.16.R,1892.09.16.R,557,, +1892.06.24,24-Jun-1892,1892,Invalid,FRANCE,Brittany,Brest,Fishing boat,,,,"No injury, no attack",,,,"C.Moore, GSAF",1892.06.24-Brest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.24-Brest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.24-Brest.pdf,1892.06.24,1892.06.24,556,, +1892.06.20.R,Reported 20-Jun-1892,1892,Unprovoked,CUBA,Havana Province,Havana Harbor,Riding a horse,a mestizo,M,,FATAL,Y,,,"Daily Citizen, 6/20/1892",1892.06.20.R-Rider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.20.R-Rider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.20.R-Rider.pdf,1892.06.20.R,1892.06.20.R,555,, +1892.05.19.R,Reported 19-May-1892,1892,Unprovoked,NEW ZEALAND,North Island,Rockhampton,Bathing,Abraham Yates,M,,Minor injury to leg,N,,,"Wanganui Chronicle, 5/19/1892",1892.05.19.R-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.05.19.R-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.05.19.R-Yates.pdf,1892.05.19.R,1892.05.19.R,554,, +1892.04.21.R,Reported 21-Apr-1892,1892,Unprovoked,BAHAMAS,Out Islands,,Fell overboard from sponge vessel,male,M,,"FATAL, leg severed",Y,,16' shark,"The Gleaner (Jamaica), 4/21/1892",1892.04.21.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.04.21.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.04.21.R-Bahamas.pdf,1892.04.21.R,1892.04.21.R,553,, +1892.03.25.R,Reported 25-Mar-1893,1892,Unprovoked,PACIFIC OCEAN,,, a canoe was pursuing a schooner that had forcibily abducted 5 young girls,,M,,6 or 8 of the would-be rescuers were shot & the rest were killed by sharks,Y,,,"West Australian, 3/25/1892",1892.03.25.R-Canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.25.R-Canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.25.R-Canoe.pdf,1892.03.25.R,1892.03.25.R,552,, +1892.03.02,02-Mar-1892,1892,Provoked,AUSTRALIA,New South Wales,Lake Macquarie,Fishing,Christopher Wang,M,21,Lacerations to calf by netted shark PROVOKED INCIDENT,N,Night,12' shark,"The Argus, 3/4/1892",1892.03.02-Wang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.02-Wang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.02-Wang.pdf,1892.03.02,1892.03.02,551,, +1892.00.00,1892,1892,Provoked,AUSTRALIA,Torres Strait,Badu Island,Dress diving,Mr. A. Rotaman,M,,FATAL Bitten in two by shark that he molested with a knife. Buried at Batu Island. PROVOKED INCIDENT,Y,,,"G.P. Whitley, p.259",1892.00.00-Rotaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.00.00-Rotaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.00.00-Rotaman.pdf,1892.00.00,1892.00.00,550,, +1891.12.31.R,Reported 31-Dec-1891,1891,Unprovoked,AUSTRALIA,New South Wales,,Swimming,Mr. Christesen,M,,Foot severed,N,,,"Maitland Mercury & Hunter River General Advertiser, 12/31/1891 ",1891.12.31.R-Christesen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.31.R-Christesen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.31.R-Christesen.pdf,1891.12.31.R,1891.12.31.R,549,, +1891.12.22.R,Reported 22-Dec-1891,1891,Unprovoked,NEW ZEALAND,North Island,"Manukau Harbor, 6 miles south of Auckland","Swimming, after boat swamped",Henry Jacobson,M,,Hand bitten,N,,,"The Advertiser, 1/1/1892",1891.12.22.R-Jacobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.22.R-Jacobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.22.R-Jacobson.pdf,1891.12.22.R,1891.12.22.R,548,, +1891.09.14.R,Reported 14-Sep-1891,1891,Sea Disaster,KIRIBATI,Line Islands,Flint Island,"Sea Disaster, canoes capsized in storm",,,,"FATAL Of 38 people in the water, 8 were killed by sharks & 1 man's leg was severed",Y,,,"Newark Daily Advocate, 9/14/1891; Bismark Daily Tribune, 9/15/1891",1891.09.14.R-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.09.14.R-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.09.14.R-Kiribati.pdf,1891.09.14.R,1891.09.14.R,547,, +1891.08.30.R,Reported 30-Aug-1891,1891,Unprovoked,CANADA,Nova Scotia,Halifax,Knocked overboard,John Roult,M,,FATAL,Y,,,"Washington Post, 8/31/1891",1891.08.30.R-Roult.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.30.R-Roult.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.30.R-Roult.pdf,1891.08.30.R,1891.08.30.R,546,, +1891.08.29,29-Aug-1891,1891,Provoked,USA,New Jersey,"Off Longport, Atlantic County",Shooting sharks ,one of the crew of the schooner Mary C. Brown,M,,"Survived, PROVOKED INCIDENT",N,,,"The Daily Argus News, 9/3/1891 ",1891.08.29-Mary-Brown-crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.29-Mary-Brown-crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.29-Mary-Brown-crew.pdf,1891.08.29,1891.08.29,545,, +1891.06.11,11-Jun-1891,1891,Invalid,USA,Virginia,Hampton Roads,Fishing for sharks when he became entangled in net & fell overboard,John Howard,M,,"Fatal, but death may have been due to drowning",Y, ,,"Washington Post, 6/12/1891, p.1",1891.06.11-JohnHoward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.06.11-JohnHoward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.06.11-JohnHoward.pdf,1891.06.11,1891.06.11,544,, +1891.03.10,10-Mar-1891,1891,Unprovoked,PARAGUAY,,,Fleeing across a river,,,,FATAL,Y,Night,,"West Australian, 11/2/1891",1891.03.10-Paraguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.03.10-Paraguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.03.10-Paraguay.pdf,1891.03.10,1891.03.10,543,, +1891.01.08.R,Reported 08-Jan-1891,1891,Unprovoked,JAMAICA,Kingston Parish,Port Royal Harbour,boat capsized,3 sailors,M,,FATAL,Y,Night,,"Tuapeka Times, 1/21/1891",1891.01.08.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.01.08.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.01.08.R-Jamaica.pdf,1891.01.08.R,1891.01.08.R,542,, +1890.12.30,30-Dec-1890,1890,Invalid,AUSTRALIA,Queensland,Moreton Bay,Swimming to shore after boat capsized by a squall,C. Gregory,,,"Fatal, but death may have been due to drowning",Y,,,"The Argus, 21/2/1891",1890.12.30-Gregory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.30-Gregory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.30-Gregory.pdf,1890.12.30,1890.12.30,541,, +1890.12.27.R,Reported 27-Dec-1890,1890,Unprovoked,BRITISH NEW GUINEA,Woodlark Islands,Off Panamota,Thrown overboard,Tetebara,M,18,Arm bitten,N,,,"Queenslander, 12/27/1890",1890.12.27.R-Tetebara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.27.R-Tetebara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.27.R-Tetebara.pdf,1890.12.27.R,1890.12.27.R,540,, +1890.10.25.R,Reported 25-Oct-1890,1890,Unprovoked,ATLANTIC OCEAN,,,Thrown overboard,Captain Lavarello ,M,,FATAL,Y,,,"Taranaki Herald, 10/25/1890",1890.10.25.R-Lavarello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.10.25.R-Lavarello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.10.25.R-Lavarello.pdf,1890.10.25.R,1890.10.25.R,539,, +1890.08.17.R,Reported 17-Aug-1890,1890,Provoked,USA,New Jersey,"Off Normandie-by-the-Sea, Monmouth County",Fishing for bluefish,a charter fishing boat with James Whiteside and his party,,,No injury to occupants. Hooked shark damaged boat PROVOKED INCIDENT,N,,"5'7"" shark","NY Times, 8/17/1890",1890.08.17.R-NJ-PartyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.17.R-NJ-PartyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.17.R-NJ-PartyBoat.pdf,1890.08.17.R,1890.08.17.R,538,, +1890.08.09,9-Aug-1890,1890,Unprovoked,USA,Connecticut,"Bridgeport, Fairfield County",Treading for clams,Raymond Odell,M,,Severe lacerations to left arm.,N,,,"NY Times, 8/12/1890",1890.08.09-Odell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.09-Odell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.09-Odell.pdf,1890.08.09,1890.08.09,537,, +1890.08.08, 08-Aug-1890,1890,Unprovoked,SAMOA,Upolu Island,Apia Harbour,Bathing,Hermann Schwebke,M,,Both legs severed,N,,,"Argus, 9/9/1890",1890.08.08-Schwebke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.08-Schwebke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.08-Schwebke.pdf,1890.08.08,1890.08.08,536,, +1890.06.26,06-26-1890,1890,Unprovoked,CROATIA,,Fiume,Swimming,Mayonni,M,,Legs severed ,N,,,"C. Moore, GSAF",1890.06.26-Mayonni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.26-Mayonni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.26-Mayonni.pdf,1890.06.26,1890.06.26,535,, +1890.06.14.R,Reported 14-Jun-1890,1890,Unprovoked,PERSIAN GULF,,,Fell overboard,a Frenchman,M,,Severe lacerations to foot,N,,,"Bush Advocate, 6/14/1890",1890.06.14.R-Frenchman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.14.R-Frenchman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.14.R-Frenchman.pdf,1890.06.14.R,1890.06.14.R,534,, +1890.06.02.R,Reported 02-Jun-1890,1890,Unprovoked,EGYPT,,Port Said,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1890.06.02.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.02.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.02.R-PortSaid.pdf,1890.06.02.R,1890.06.02.R,533,, +1890.05.14,14-May-1890,1890,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,,Joseph Lundy,M,,"Forensic evidence indicated death resulted from drowning, his body was subsequently scavenged by a shark",#VALUE!,,,"M. Levine, GSAF",1890.05.14-Lundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.05.14-Lundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.05.14-Lundy.pdf,1890.05.14,1890.05.14,532,, +1890.02.25,25-Feb-1890,1890,Boating,MALTA,Munxar Reef,Marsascala,"Fishing boat with 4 men on board was rammed & capsized by a shark, throwing all occupants into the water",Salvatore & Agostino Bugeja,M,,"FATAL, 2 men were lost, presumed taken by the shark",Y,,,A. Buttigieg,1890.02.25-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.02.25-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.02.25-Malta.pdf,1890.02.25,1890.02.25,531,, +1890.00.00.e,1890,1890,Unprovoked,AUSTRALIA,Tasmania,Derwent River (empties into the sea at Hobart),Wading,Frederick Sampson Johnson,M,,Knee bitten,N,,"Sevengill shark, 14', was caught in the vicinity","V.M. Coppleson (1958), p.105; C. Black pp. 147-148",1890.00.00.e-FrederickSampsonJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.e-FrederickSampsonJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.e-FrederickSampsonJohnson.pdf,1890.00.00.e,1890.00.00.e,530,, +1890.00.00.d,1890,1890,Unprovoked,INDIA,Tamil Nadu,Tuticorin,Diving,a pearl diver,M,,No details,UNKNOWN,,,"Sydney Morning Herald, 10/1/1890",1890.00.00.d-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.d-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.d-Tuticorin.pdf,1890.00.00.d,1890.00.00.d,529,, +1890.00.00.c,1890,1890,Unprovoked,INDIA,Tamil Nadu,Tuticorin,Diving,a pearl diver,M,,No details,UNKNOWN,,,"Steubenville Herald, 11/12/1896",1890.00.00.c-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.c-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.c-Tuticorin.pdf,1890.00.00.c,1890.00.00.c,528,, +1890.00.00.b,1890,1890,Unprovoked,NEW ZEALAND,North Island,"Lampton Harbour, Wellington",Swimming,soldier ,M,,FATAL,Y,,,"A. W. Parrott, p.68",1890.00.00.b-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.b-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.b-soldier.pdf,1890.00.00.b,1890.00.00.b,527,, +1890.00.00.a,Ca. 1890,1890,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,Bathing,Zulu boy,M,,"FATAL, leg bitten, foot partly severed ",Y,15h30,,"J. Daniel, M. Levine, GSAF",1890.00.00.a-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.a-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.a-ZuluMale.pdf,1890.00.00.a,1890.00.00.a,526,, +1889.11.29.R,Reported 29-Nov-1889,1889,Invalid,GREECE,Northern Peloponnese,Patras,,,,,"Human remains found in 4m, 900 kg shark",,,,"C. Moore, GSAF",1889.11.29.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.29.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.29.R-Greece.pdf,1889.11.29.R,1889.11.29.R,525,, +1889.11.22,22-Nov-1889,1889,Unprovoked,AUSTRALIA,Queensland,Bowen,Fell into the water,E.J. Sharpe,M,,FATAL,Y,,,"Brisbane Courier, 11/26/1889",1889.11.22-Sharpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.22-Sharpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.22-Sharpe.pdf,1889.11.22,1889.11.22,524,, +1889.11.16,16-Nov-1889,1889,Invalid,USA,Hawaii,Honolulu,Parachuted from balloon,Joe Lawrence,M,,Speculated that he was taken by a shark but most likely drowned,Y,,,"NY Times, 11/24/1889 ",1889.11.16-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.16-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.16-Honolulu.pdf,1889.11.16,1889.11.16,523,, +1889.10.03.R,Reported 03-Oct-1889,1889,Unprovoked,INDIA,Tamil Nadu,Madras,Swimming,"B, a young English officer",M,,FATAL,Y,,,"Decatur Daily Republican, 10/3/1889",1889.10.03.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.10.03.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.10.03.R-Madras.pdf,1889.10.03.R,1889.10.03.R,522,, +1889.07.21,21-Jul-1889,1889,Unprovoked,USA,Florida,"Fernandina, Nassau County",Swimming,Eddie Roe,M,,"FATAL, calf bitten",Y,,,"NY Times, 7/22/1889",1889.07.21-Roe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.21-Roe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.21-Roe.pdf,1889.07.21,1889.07.21,521,, +1889.07.19, 19-Jul-1889,1889,Unprovoked,USA,Texas,West Bay near Galveston ,Fishing,John Bolling,M,,Leg bitten,N,07h30,18' shark,"Galveston Daily News, 7/21/1889",1889.07.19-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.19-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.19-Bolling.pdf,1889.07.19,1889.07.19,520,, +1889.07.08,08-Jul-1889,1889,Unprovoked,AUSTRALIA,Victoria,Port Phillip,Fell into the water,male,M,,FATAL ,Y,,,"Brisbane Courier, 7/9/1889",1889.07.08-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.08-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.08-PortPhillip.pdf,1889.07.08,1889.07.08,519,, +1889.01.31.R,Reported 31-Jan-1889,1889,Provoked,USA,Florida,Hillsborough Bay,Fishing,"rowboat, ",,,No injury to occupants. Gaffed shark capsized boat PROVOKED INCIDENT,N,,,"Timaru Herald, 1/31/1889",1889.01.31.R-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.31.R-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.31.R-Florida.pdf,1889.01.31.R,1889.01.31.R,518,, +1889.01.00,Jan-1889,1889,Unprovoked,SIERRA LEONE,Western Area,Freetown,Cleaning the side of a ship,English sailor,M,,FATAL,Y,,,"NY Times, 1/20/1889",1889.01.00-EnglishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.00-EnglishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.00-EnglishSailor.pdf,1889.01.00,1889.01.00,517,, +1888.12.25.R,Reported 25-Dec-1888,1888,Unprovoked,INDIAN OCEAN,Between Perth & Colombo,,Swimming,E. Burnside,M,,Foot severed,N,,,"West Australian, 12/25/1888",1888.12.25.R-Burnside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.25.R-Burnside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.25.R-Burnside.pdf,1888.12.25.R,1888.12.25.R,516,, +1888.12.09,09-Dec-1888,1888,Unprovoked,AUSTRALIA,New South Wales,"Iron Cove Bridge, Sydney (Estuary)",Swimming,Stephen Carter,M,11,FATAL,Y,13h00,,"G.P. Whitley (1951), p.192, citing Sydney Morning Herald, 12/10/ 1888 ",1888.12.09-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.09-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.09-Carter.pdf,1888.12.09,1888.12.09,515,, +1888.12.00,Dec-1888,1888,Unprovoked,AUSTRALIA,New South Wales,"Hawkesbury Bridge, Sydney",Working on the bridge when he fell into the river,Mr. Ryland,M,,FATAL,Y,,,"G.P. Whitley (1951), p.192, citing Sydney Morning Herald, 12/10/1888",1888.12.00-Ryland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.00-Ryland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.00-Ryland.pdf,1888.12.00,1888.12.00,514,, +1888.10.23.R,Reported 23-Oct-1888,1888,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Rijeka,,,,,Human remains found in shark,Y,,5 mm 3500 kg female shark,"C. Moore, GSAF",1888.10.23.R-Croatia. Pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.10.23.R-Croatia. Pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.10.23.R-Croatia. Pdf,1888.10.23.R,1888.10.23.R,513,, +1888.08.14,14-Aug-1888,1888,Sea Disaster,CANADA,Nova Scotia,Off Sable Island,The steamships Thingvalla and Geiser collided,1 man,M,,FATAL,Y,Before daybreak,,"Aurora Daiy Express, 8/18/1888",1888.08.14-Geiser-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.14-Geiser-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.14-Geiser-passenger.pdf,1888.08.14,1888.08.14,512,, +1888.08.01.R,Reported 01-Aug-1888,1888,Boating,USA,New York,,Sailing,catboat. Occupants: Captain Tuppe & 2 young ladiesr,,,No injury to occupants. Shark beat away with oar,N,,,"The Ledger, 8/3/1888",1888.08.01-catboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.01-catboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.01-catboat.pdf,1888.08.01.R,1888.08.01.R,511,, +1888.07.20.R,Reported 20-Jul-1888,1888,Invalid,JAMAICA,,,Probabable drowning,,M,,Human remains recovered from a 10' to 12' shark caught in a turtle net,Y,,,"Otago Witness, 7/20/1888",1888.07.20.R-Jamaica-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.20.R-Jamaica-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.20.R-Jamaica-scavenging.pdf,1888.07.20.R,1888.07.20.R,510,, +1888.07.13.R,Reported 13-Jul-1888,1888,Sea Disaster,INDIA,Gujarat,Cutch Coast,The Dwarka foundered,6 crew,M,,"FATAL, only 1 of her crew of 7 survived",Y,,,"Otago Witness, 7/13/1888",1888.07.13.R-Dwarka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.13.R-Dwarka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.13.R-Dwarka.pdf,1888.07.13.R,1888.07.13.R,509,, +1888.07.04,04-Jul-1888,1888,Invalid,CROATIA,Lukovo,,,,,,Human remains & clothing found in 7' shark,Y,,,"C. Moore, GSAF",1888.07.04-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.04-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.04-Croatia.pdf,1888.07.04,1888.07.04,508,, +1888.06.24,24-Jun-1888,1888,Boating,AUSTRALIA,Victoria,Port Melbourne,Fishing,2 men,,,"No injury to occupants, shark holed boat",N,Evening,,"Taranaki Herald, 7/9/1888",1888.06.24-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.24-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.24-fishermen.pdf,1888.06.24,1888.06.24,507,, +1888.06.18.R,Reported 18-Jun-1888,1888,Invalid,AUSTRALIA,Victoria,"Point Cook, Port Phillip Bay",The cutter yacht Cutty Sark sank,"Claude Hadley, William Grundy, Albert Faulkner & Frederick Faulkner",M,,Probable drowning & scavenging,Y,,,"New York Times, 6/18/1888",1888.06.18-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.18-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.18-PortPhillip.pdf,1888.06.18.R,1888.06.18.R,506,, +1888.02.17,17-Feb-1888,1888,Unprovoked,NEW ZEALAND,South Island,Oamaru,Floating on his back,David Grant,M,,"Arm severely lacerated, surgically amputated",N,06h00,"Unknown, but the shark was caught and put on exhibition","R.D. Weeks, GSAF; K.C. McDonald; Evening Post (Wellington), 8/21/1937",1888.02.17-DavidGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.17-DavidGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.17-DavidGrant.pdf,1888.02.17,1888.02.17,505,, +1888.02.00,Feb-1888,1888,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mzimvubu River mouth,Crossing the river mouth,male,M,,FATAL,Y,,,"Cape Mercantile Advertiser, 2/15/1888, M. Levine, GSAF",1888.02.00-Mzimvubu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.00-Mzimvubu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.00-Mzimvubu.pdf,1888.02.00,1888.02.00,504,, +1888.01.22,22-Jan-1888,1888,Boating,AUSTRALIA,New South Wales,Sydney Harbor,Rowing,Burke,M,,"Shark bit boat, but no injury to occupant who swam ashore",N,,,"Star, 1/23/1888",1888.01.22-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.01.22-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.01.22-Burke.pdf,1888.01.22,1888.01.22,503,, +1888.00.00,1888,1888,Unprovoked,LIBYA,Mediterranean Sea,Off Tripoli,Sponge diving,T riantafyllos,M,,Lacerations to thorax and hands,N,,,M. Bardanis,1888.00.00-Triantafyllos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.00.00-Triantafyllos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.00.00-Triantafyllos.pdf,1888.00.00,1888.00.00,502,, +1887.12.22.R,Reported 22-Dec-1887,1887,Unprovoked,HONDURAS,Corts,Off Puerto Cortez (Caribbean coast),Fell oveboard from steamer Wanderer,Carl Luhudahl,M,33,FATAL,Y,,,"Union County Journal, 12/22/1887",1887.12.22.R-Luhudahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.22.R-Luhudahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.22.R-Luhudahl.pdf,1887.12.22.R,1887.12.22.R,501,, +1887.12.04,04-Dec-1887,1887,Unprovoked,AUSTRALIA,New South Wales,"Ryde, Sydney (Estuary)",,Thomas Cochrane (William Charles Corkhill0,M,,FATAL,Y,11h30,12' to 14' shark,"G.P. Whitley (1951), p.192",1887.12.04-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.04-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.04-Cochrane.pdf,1887.12.04,1887.12.04,500,, +1887.10.18,18-Oct-1887,1887,Unprovoked,USA,Florida,"Between Lake Worth & Biscayne Bay, near Hillsboro","Crossing inlet in a boat, seen fighting sharks with his oar, sharks smashed boat","James F. Hamilton, a mail carrier",M,,FATAL,Y,,,"Evening Telegram, 11/5/1887",1887.10.18-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.18-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.18-Hamilton.pdf,1887.10.18,1887.10.18,499,, +1887.10.00,October 1887,1887,Sea Disaster,BAHAMAS,,,"Sea disaster, wreck of the Alfred Watts",Burgess & 2 seamen,M,,FATAL,Y,,,"New York Times, 12/23/1887 ",1887.10.00-Shipwreck-Alfred-Watts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.00-Shipwreck-Alfred-Watts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.00-Shipwreck-Alfred-Watts.pdf,1887.10.00,1887.10.00,498,, +1887.09.22,22-Sep-1887,1887,Unprovoked,ITALY,,Trieste,Swimming,Joseph Weissmantel,M,,Leg injured,N,,,"C. Moore, GSAF",1887.09.22-Weissmantel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.22-Weissmantel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.22-Weissmantel.pdf,1887.09.22,1887.09.22,497,, +1887.09.06,11-Sep-1887,1887,Invalid,CROATIA, Primorje-Gorski Kotar County,Kraljevica,,,,,Shoes & human remains found in a shark,Y,,,"C. Moore, GSAF",1887.09.06-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.06-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.06-Croatia.pdf,1887.09.06,1887.09.06,496,, +1887.03.12,12-Mar-1887,1887,Boating,AUSTRALIA,South Australia,Black Point,Rowing a dinghy,Mr. Boucaut & Mr. Harris,,,No injury to occupants,N,,13' shark,"New York Times, 5/16/1887",1887.03.12-dinghy-Black-Point.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.03.12-dinghy-Black-Point.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.03.12-dinghy-Black-Point.pdf,1887.03.12,1887.03.12,495,, +1887.02.08.R,Reported 08-Feb-1887,1887,Unprovoked,NEW ZEALAND,North Island,Kaipara,Swimming,a seaman from the Johann Brodersen,M,,FATAL,Y,,,"Bruce Herald, 2/8/1887",1887.02.08-Kaipara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-Kaipara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-Kaipara.pdf,1887.02.08.R,1887.02.08.R,494,, +1887.02.08,08-Feb-1887,1887,Provoked,SOUTH AFRICA,Western Cape Province,Blaauwberg,,boat,,,"Harpooned shark, bit boat, causing it to ship water. Boat reached shore in sinking condition PROVOKED INCIDENT",N,,4.7 m [15.5'] shark,GSAF,1887.02.08-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-boat.pdf,1887.02.08,1887.02.08,493,, +1887.01.20,20-Jan-1887,1887,Sea Disaster,BRAZIL,Alagoas,Macei,The passenger ship Kapuna was run down the ore carrier Ada Melmore,Whittle,M,,FATAL,Y,03h00,,"Brisbane Courier, 4/14/1887",1887.01.20-Whittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.20-Whittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.20-Whittle.pdf,1887.01.20,1887.01.20,492,, +1887.01.12,12-Jan-1887,1887,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Mzimvubu River, 9.6 km from the sea",Swimming,Zangile,M,13,"FATAL, flesh removed hip to knee, calf & heel bitten ",Y,12h00,,"Cape Mercantile Advertiser, 1/25/1887, M. Levine, GSAF",1887.01.12-Zangile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.12-Zangile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.12-Zangile.pdf,1887.01.12,1887.01.12,491,, +1887.00.00,1887,1887,Sea Disaster,OCEAN,"Somewhere between Philadelphia and Hiogo, Japan",,British ship Macedon was thrown on her beam ends by a sudden squall,a ship's steward,M,,Foot severed,N,,,"Galveston Daily News, 2/11/1888",1887.00.00-Macedom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.00.00-Macedom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.00.00-Macedom.pdf,1887.00.00,1887.00.00,490,, +1886.08.00.c,Mid-Aug-1886,1886,Boating,USA, New Jersey,"Shrewsbury River, Highlands, Monmouth County",,"boat, occupants: 4 men",M,,"Shark attacked boat, shark killed & towed to shore",N,,Shark was said to have a very rough -thick skin,"R. Heyer, citing the Red Bank Register, 9/1/1886",1886.08.00.c-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.c-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.c-boat.pdf,1886.08.00.c,1886.08.00.c,489,, +1886.08.00.b,Mid-Aug-1886,1886,Provoked,USA,New Jersey,"Sandy Hook Bay, Highlands, Monmouth County","Netting menhaden, sharks caught in net",Boat of Captain Forman White,,,"No injury, sharks ripped net & bit boat PROVOKED INCIDENT",N,,,"R. Heyer, citing the Red Bank Register, 9/1/1886",1886.08.00.b-FormanWhite-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.b-FormanWhite-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.b-FormanWhite-boat.pdf,1886.08.00.b,1886.08.00.b,488,, +1886.08.00.a,Aug-1886,1886,Boating,USA,New Jersey,"Shrewsbury River, Highlands, Monmouth County",Clamming,John Parker & Edward Matthews,M,,"No injury. They were chased by three sharks, one of which rammed their boat",N,,3 m [10'] sharks,"R. Heyer citing the Red Bank Register, 9/1/1886",1886.08.00.a-Parker-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.a-Parker-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.a-Parker-Matthews.pdf,1886.08.00.a,1886.08.00.a,487,, +1886.06.17,17-Jun-1886,1886,Unprovoked,AUSTRALIA,Queensland,Off Bribie Heads,Swimming after being washed overboard,Lacoon,M,18,FATAL,Y,,,"Brisbane Courier, 6/21/1886",1886.06.17-Lacoon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.17-Lacoon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.17-Lacoon.pdf,1886.06.17,1886.06.17,486,, +1886.06.02,02-Jun-1886,1886,Invalid,USA,Hawaii,"Hamakua Homakua, Hawai'i","Fishing from shore, washed into the sea",2 women,F,,"The body of one woman had been bitten by a shark but it is not known if she was alive at the time, the other woman disappeared",Y,,,"G. H. Balazs & A. H. Kam; V.M. Coppleson (1958), p.259, J. Borg, p.68; L. Taylor (1993), pp.94-95",1886.06.02-Hamakua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.02-Hamakua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.02-Hamakua.pdf,1886.06.02,1886.06.02,485,, +1886.05.06,06-May-1886,1886,Unprovoked,NEW CALEDONIA,South Province,Noumea,Bathing,male,M,,FATAL,Y,12h00,,"Timaru Herald, 6/8/1886",1886.05.06-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.05.06-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.05.06-Noumea.pdf,1886.05.06,1886.05.06,484,, +1886.04.26,26-Apr-1886,1886,Unprovoked,AUSTRALIA,Queensland,Rothesay Bay,Oystering,male,M,,Wrist bitten,N,,,"The Capricornian, 5/1/1886",1886.04.26-RothesayBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.26-RothesayBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.26-RothesayBay.pdf,1886.04.26,1886.04.26,483,, +1886.04.11,11-Apr-1886,1886,Invalid,NEW ZEALAND,South Island,Near the mouth of the Clarence River,Sea disaster : Wreck of the Taiaroa,male,M,,Probable drowning & scavenging,Y,,,"Auckland Star, 4/24/1886",1886.04.11-TaiaroaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.11-TaiaroaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.11-TaiaroaShipwreck.pdf,1886.04.11,1886.04.11,482,, +1886.03.06.R,Reported 06-Mar-1886,1886,Invalid,NEW ZEALAND,South Island,Dunedin ,Bathing ,Rodwell,M,,Left leg severed. Probably confusion with GSAF 1886.01.28,N,,,"Feilding Star, 3/6/1886, p.2",1886.03.06-Rodwell-NZ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.06-Rodwell-NZ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.06-Rodwell-NZ.pdf,1886.03.06.R,1886.03.06.R,481,, +1886.03.00,Mar-1886,1886,Invalid,AUSTRALIA,New South Wales,"Dobroyd Head, Watson Bay, Sydney",He drowned when boat capsized,James Barefoot,M,,His body was found in a tiger shark; next day other human remains found in sharks at Berry's Bay ,Y,,,"Evening Post, 4/7/1886; G.P. Whitley (1951), p.192",1886.03.00-Barefoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.00-Barefoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.00-Barefoot.pdf,1886.03.00,1886.03.00,480,, +1886.02.13.R,13-Feb-1886,1886,Boating,AUSTRALIA,Victoria,Mordialloc,Fishing,20' boat; occupants: John Wright & a friend,M,,"No injury to occupants, shark shook boat ""stem to stern""",N,,,"Evening Post, 2/13/1886",1886.02.13.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.02.13.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.02.13.R-Wright.pdf,1886.02.13.R,1886.02.13.R,479,, +1886.01.28,28-Jan-1886,1886,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"South Jetty, Port Elizabeth",Diving off jetty,Mr. Rodwell,M,,"Chest & buttocks bitten, left leg severed at knee",N,07h00,,"Eastern Province Herald, 1/28/1886; M. Levine, GSAF ",1886.01.28-Rodwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.28-Rodwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.28-Rodwell.pdf,1886.01.28,1886.01.28,478,, +1886.01.26,26-Jan-1886,1886,Unprovoked,AUSTRALIA,Queensland,,Diving alongsidethe steamship Ranelagh ,John Byrne,M,,Foot bitten,N,,,"Brisbane Courier, 1/27/1886",1886.01.26-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.26-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.26-Byrne.pdf,1886.01.26,1886.01.26,477,, +1886.01.01,01-Jan-1886,1886,Unprovoked,SOUTH AFRICA,Western Cape Province,Groot River,Swimming,Dr. James Woolby,M,,"FATAL. He threw up his hands, shrieked and disappeared. Partial remains washed ashore the next day",Y,,,"P. Logan; M. Levine, GSAF",1886.01.01-Woolby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.01-Woolby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.01-Woolby.pdf,1886.01.01,1886.01.01,476,, +1886.00.00,1886,1886,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,Sailing,male,M,,Leg severed,N,Afternoon,,"I. M. Sigismund, M.D.",1886.00.00-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.00.00-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.00.00-Sydney.pdf,1886.00.00,1886.00.00,475,, +1885.11.26.R,Reported 26-Nov-1885,1885,Boating,AUSTRALIA,Queensland,Brisbane ,,"boat, occupant John Bishop",,,"No injury to occupant, shark bit off section of the boat's rudder",N,,15' shark,"Brisbane Courier, 11/26/1885",1885.11.26.R-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.R-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.R-Bishop.pdf,1885.11.26.R,1885.11.26.R,474,, +1885.11.26,26-Nov-1885,1885,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Bathing,A.Y. Glyde,M,,Laceration to calf,N,Evening,,"The West Australia, 12/2/1885",1885.11.26.a-Glyde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.a-Glyde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.a-Glyde.pdf,1885.11.26,1885.11.26,473,, +1885.08.17,17-Aug-1885,1885,Unprovoked,ATLANTIC OCEAN,,,Fell or jumped overboard from the liner Rhynland,J.R. Loesch,M,,FATAL,Y,,,"New York Times, 8/27/1885",1885.08.17-Loesch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.08.17-Loesch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.08.17-Loesch.pdf,1885.08.17,1885.08.17,472,, +1885.07.26.c,26-Jul-1885,1885,Sea Disaster,USA,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor,M,,Left arm severed,N,,,"Hawaiian Gazette, 8124/1885",1885.07.26-b-Schooner-crew-1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26-b-Schooner-crew-1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26-b-Schooner-crew-1.pdf,1885.07.26.c,1885.07.26.c,471,, +1885.07.26.b,26-Jul-1885,1885,Sea Disaster,USA,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor ,M,,Laceration to torso,N,,,"Hawaiian Gazette, 8124/1885",1885.07.26.c-Schooner-crew-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.c-Schooner-crew-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.c-Schooner-crew-2.pdf,1885.07.26.b,1885.07.26.b,470,, +1885.07.26.a,26-Jul-1885,1885,Sea Disaster,USA,Hawaii,Kau District,Wreck of the schooner Pohoiki ,Captain Mark Robinson,M,,FATAL,Y,,,"Hawaiian Gazette, 8/24/1885",1885.07.26.a-CaptainRobinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.a-CaptainRobinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.a-CaptainRobinson.pdf,1885.07.26.a,1885.07.26.a,469,, +1885.04.16.R,Reported 16-Apr-1885,1885,Unprovoked,,,,Swimming,2 males,M,,FATAL,Y,,," Gleaner (Jamaica), 4/16/1885",1885.04.16.R-GermanShip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.16.R-GermanShip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.16.R-GermanShip.pdf,1885.04.16.R,1885.04.16.R,468,, +1885.04.09,09-Apr-1885,1885,Unprovoked,NEW ZEALAND,North Island,Auckland,Bathing,Pahi,M,,Lacerations to lower leg,N,,,"Grey River Argus,4/18/185",1885.04.09-Pahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.09-Pahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.09-Pahi.pdf,1885.04.09,1885.04.09,467,, +1885.03.28,28-Mar-1885,1885,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Kokstad District,Fishing,"boat, occupant: Mr. Anderson",M,,"No injury to occupant, rammed oar in shark's mouth and it bit the oar ",N,,3 m [10'] shark,"South African Illustrated News, 3/28/1885",1885.03.28-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.03.28-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.03.28-oar.pdf,1885.03.28,1885.03.28,466,, +1884.12.13,13-Dec-1884,1884,Sea Disaster,AUSTRALIA,South Australia,Port Phillip,yachting accident,Willaim Browne,M,,"Cause of death most likely drowning, remains recovered in shark",Y,,14' shark,"The Argus, 12/29/1884",1884.12.13-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.13-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.13-Browne.pdf,1884.12.13,1884.12.13,465,, +1884.12.08.R,Reported 08-Dec-1884,1884,Provoked,FRANCE,Cte d'Azur ,Between Nice & Villefranche,,child,F,,FATAL Leg severed by harpooned shark PROVOKED INCIDENT,Y,02h00,10' shark,"North Otago Times, 12/8/1884",1884.12.08.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.08.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.08.R-France.pdf,1884.12.08.R,1884.12.08.R,464,, +1884.08.28.R.,Reported 28-Aug-1884,1884,Unprovoked,USA,New Jersey,"Bayonne, Hudson County",Boating,Edward Monroe,M,,Hand bitten,N,,,"Atlanta Contitution, 8/28/1884",1884.08.28.R-EdwardMonroe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.28.R-EdwardMonroe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.28.R-EdwardMonroe.pdf,1884.08.28.R.,1884.08.28.R.,463,, +1884.08.18,18-Aug-1884,1884,Invalid,USA,New York,Jamaica Bay,Clamming,Stephen Rylor,M,,Unclear if he sustained any injury from the shark,N,,7' shark,"New York Times, 8/20/1884",1884.08.18-Rylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.18-Rylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.18-Rylor.pdf,1884.08.18,1884.08.18,462,, +1884.01.16,16-Jan-1884,1884,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"South Jetty, Port Elizabeth",Swimming,Mr. Meyer,M,,FATAL,Y,,,"Port Elizabeth Herald, 1/23/1884, M. Levine, GSAF",1884.01.16-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.16-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.16-Meyer.pdf,1884.01.16,1884.01.16,461,, +1884.01.14,14-Jan-1884,1884,Unprovoked,AUSTRALIA,South Australia,"Port Pirie, Spencer Gulf, 230 km north of Adelaide",Fell overboard,Miss Warren,F,,FATAL,Y,,Said to involve 2 sharks,"G.P. Whitley (1951), p. 192, citing the Register (S.A.), 12/9/1925; V.M. Coppleson (1958), p.107; A. Sharpe, p.119",1884.01.14-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.14-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.14-Warren.pdf,1884.01.14,1884.01.14,460,, +1883.12.19,19-Dec-1883,1883,Unprovoked,AUSTRALIA,New South Wales,Parramatta River,Swimming,Cuthbert Vere Lysaght,M,21,FATAL,Y,12h00,,"West Australian, 12/22/1883",1883.12.19-Lysaght.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.19-Lysaght.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.19-Lysaght.pdf,1883.12.19,1883.12.19,459,, +1883.09.14.R,Reported 14-Sep-1883 (probably happened Ca. 1843/1844),1883,Unprovoked,AUSTRALIA,Tasmania,Between Port Arthur Penal Colony & Forestier Peninsula,Swimming / escaping imprisonment ,Owen,M,,FATAL,Y,,,"C. Black, GSAF; Bruce Herald, 9/14/1993",1883.09.14.R-Owen-the-Bushranger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.09.14.R-Owen-the-Bushranger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.09.14.R-Owen-the-Bushranger.pdf,1883.09.14.R,1883.09.14.R,458,, +1883.07.05,05-Jul-1883,1883,Provoked,GEORGIA,,"Savannah River, Chatham County",Fishing for sharks,male,M,,Leg injured by hooked shark PROVOKED INCIDENT,N,,7' shark,"Savannah Times, 7/13/1883",1883.07.05-Savannah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.07.05-Savannah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.07.05-Savannah.pdf,1883.07.05,1883.07.05,457,, +1883.02.26.R,Reported 26-Feb-1883,1883,Unprovoked,AUSTRALIA,Northern Territory,the pearling beds,Diving,male,M,,Arm severed,N,,,"The Queenslander, 3/3/1883",1883.02.26.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.26.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.26.R-PearlDiver.pdf,1883.02.26.R,1883.02.26.R,456,, +1883.02.25.R,Reported 25-Feb-1883,1883,Unprovoked,AUSTRALIA,Northern Territory,the pearling beds,Diving,male,M,,FATAL,Y,,,"The Queenslander, 3/3/1883",1883.02.25.R-Pearl-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.25.R-Pearl-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.25.R-Pearl-Diver.pdf,1883.02.25.R,1883.02.25.R,455,, +1883.01.21,21-Jan-1883,1883,Unprovoked,AUSTRALIA,New South Wales,"Iron Cove, Sydney",Bathing,John Eaton,M,37,FATAL,Y,05h30,,"Maitland Mercury, 1/23/1883",1883.01.21-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.01.21-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.01.21-Eaton.pdf,1883.01.21,1883.01.21,454,, +1883.00.00.d,1883,1883,Unprovoked,PACIFIC OCEAN,,,Fishing,"male, a cook",M,,"FATAL, remains recovered from 2 sharks",Y,,14' shark,"Freeborn County Standard, 11/14/1883",1883.00.00.d-cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.d-cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.d-cook.pdf,1883.00.00.d,1883.00.00.d,453,, +1883.00.00.c,Summer of 1883,1883,Unprovoked,USA,Florida,"Fort Pickens, Escambia County",Fell overboard,the Captains boy,M,,FATAL,Y,,,"St Joseph Herald, 7/12/1884",1883.00.00.c-CaptainsBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.c-CaptainsBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.c-CaptainsBoy.pdf,1883.00.00.c,1883.00.00.c,452,, +1883.00.00.b,1883,1883,Invalid,USA,South Carolina,"Bulls Bay, near Charleston",,adult male,M,,"Body found with arm severed by shark, but shark involvement prior to death was uncomfirmed",Y,,,"W.H. Gregg, p.21; SAF Case #910",1883.00.00.b-BullsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.b-BullsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.b-BullsBay.pdf,1883.00.00.b,1883.00.00.b,451,, +1883.00.00.a,1883,1883,Unprovoked,USA,South Carolina,,,an aeronaut,M,,FATAL,Y,,a school of sharks,"W.H. Greg, p.22",1883.00.00.a-aeronaut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.a-aeronaut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.a-aeronaut.pdf,1883.00.00.a,1883.00.00.a,450,, +1882.12.03,03-Dec-1882,1882,Provoked,NEW ZEALAND,South Island,New Brighton,Restraining a beached shark,Mr. Hill,M,,Hand severely nipped PROVOKED INCIDENT ,N,,4' to 5' shark,"The Star, 12/4/1882",1882.12.03-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.12.03-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.12.03-Hill.pdf,1882.12.03,1882.12.03,449,, +1882.11.12.b,12-Nov-1882,1882,Unprovoked,NEW ZEALAND,North Island,"Tararu, Thames",Bathing,Arthur Evans,M,,Sole of foot bitten,N,Morning,,"Colonist, 11/22/1882",1882.11.12.b-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.b-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.b-Evans.pdf,1882.11.12.b,1882.11.12.b,448,, +1882.11.12.a,12-Nov-1882,1882,Unprovoked,NEW ZEALAND,North Island,"Tararu, Thames",Bathing,William Connerly,M,,Lacerations to thigh,N,Morning,,"Colonist, 11/22/1882",1882.11.12.a-Connerly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.a-Connerly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.a-Connerly.pdf,1882.11.12.a,1882.11.12.a,447,, +1882.09.00,Sep-1882,1882,Unprovoked,JAPAN,,,Clinging to shipwrecked junk,Japanese fisherman,M,,Lacerations to elbows & knees,N,,,"Launceston Examiner, 6/21/1883 ",1882.09.00-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.09.00-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.09.00-JapaneseFisherman.pdf,1882.09.00,1882.09.00,446,, +1882.05.14,14-May-1882,1882,Unprovoked,AUSTRALIA,New South Wales,Millers Point,Fell overboard,John Clare,M,,Laceration to calf,N,Afternoon,,"Launceston Examiner, 5/20/1882 ",1882.05.14-Clare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.14-Clare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.14-Clare.pdf,1882.05.14,1882.05.14,445,, +1882.05.12.R,Reported 12-May-1882,1882,Unprovoked,AUSTRALIA,,,Pearl diving,a Malay diver,M,,FATAL Torso bitten,Y,,,"West Australian, 5/12/1882",1882.05.12.R-MalayDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.12.R-MalayDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.12.R-MalayDiver.pdf,1882.05.12.R,1882.05.12.R,444,, +1882.04.15,15-Apr-1882,1882,Unprovoked,AUSTRALIA,New South Wales,Lake Macquarie,Fishing,,M,,FATAL,Y,,,"The Mercury, 4/25/1882",1882.04.15-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.04.15-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.04.15-fisherman.pdf,1882.04.15,1882.04.15,443,, +1882.02.07.R,Reported 07-Feb-1882,1882,Unprovoked,AUSTRALIA,,,Pearl diving,a native diver,M,,FATAL Thigh bitten,Y,,,"West Australian, 3/28/1882",1882.02.07.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.02.07.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.02.07.R-PearlDiver.pdf,1882.02.07.R,1882.02.07.R,442,, +1882.01.23.R,Reported 23-Jan-1882,1882,Unprovoked,AUSTRALIA,New South Wales,"Darling Harbor, Sydney",Bathing,George Sinclair,M,,FATAL,Y,,,"Brisbane Courier, 1/24/1882",1882.01.23.R-Sinclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.23.R-Sinclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.23.R-Sinclair.pdf,1882.01.23.R,1882.01.23.R,441,, +1882.00.00.b,1882,1882,Unprovoked,USA,Florida,"In the bay near the naval yard at Pensacola, Escambia County","During ""an exhibition"" he was tied in sack & thrown overboard ",John T. Clark,M,,"No injury, sack rammed by shark & shark harassed him when he surfaced",N,,,"The Sun; Iowa City Citizen, 9/15/1910",1882.00.00.b-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.b-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.b-Clark.pdf,1882.00.00.b,1882.00.00.b,440,, +1882.00.00.a,1882,1882,Unprovoked,AUSTRALIA,Queensland,Maryborough,,male,M,,Survived,N,,,"V.M. Coppleson (1958), p.453; G.P. Whitley (1940), p.453; J. Green, p.31",1882.00.00.a-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.a-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.a-Maryborough.pdf,1882.00.00.a,1882.00.00.a,439,, +1881.11.13,13-Nov-1881,1881,Invalid,AUSTRALIA,New South Wales,"Johnstone's Bay, Sydney",Swimming,John Sullivan,M,,Shark involvement suspected but not confirmed,N,Evening,,"Maitland Mercury & Hunter River General Advertiser, 11/15/1881",1881.11.13-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.11.13-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.11.13-Sullivan.pdf,1881.11.13,1881.11.13,438,, +1881.10.16,16-Oct-1881,1881,Invalid,USA,Florida,"Pensacola Bay, Escambia County",Bathing,Anthony McDonald,M,18,Shark involvement prior to death unconfirmed,Y,,,"Pensacola Gazette, 10/18/1881; Fort Wayne Daily Gazette,11/2/1881 ",1881.10.16-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.10.16-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.10.16-McDonald.pdf,1881.10.16,1881.10.16,437,, +1881.09.05,05-Sep-1881,1881,Unprovoked,USA,North Carolina,"Elizabeth City, Pasquotank County ",Bathing,Frank G. Hines,M,,"FATAL, possible post-mortem bites",Y,A.M.,,"C. Creswell, GSAF",1881.09.05-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.09.05-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.09.05-Hines.pdf,1881.09.05,1881.09.05,436,, +1881.08.16.R,Reported 16-Aug-1881,1881,Unprovoked,,Western Banks,,"Floating, holding onto an oar after dory capsized",George Sedgwick,M,20,FATAL,Y,,,"Lewiston Evening Journal, 8/16/1881",1881.08.16.R-Sedgwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.16.R-Sedgwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.16.R-Sedgwick.pdf,1881.08.16.R,1881.08.16.R,435,, +1881.08.12,12-Aug-1881,1881,Unprovoked,USA,Rhode Island,Providence,Swimming,Jerry Lowney,M,,"No injury, overalls ripped by shark",N,,,Providence Journal 8/15/1881,1881.08.12-Lowney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.12-Lowney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.12-Lowney.pdf,1881.08.12,1881.08.12,434,, +1881.06.25,25-Jut-1881,1881,Unprovoked,,,Santa Cruz,Bathing,Father Hudson,M,,Survived,N,,,"Grey River Argus,10/3/1881, p.2",1881.06.25-FatherHudson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.25-FatherHudson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.25-FatherHudson.pdf,1881.06.25,1881.06.25,433,, +1881.06.13,13-Jun-1881,1881,Unprovoked,USA,Alabama,Mobile Bay,Fell overboard,William Smith,M,23,FATAL,Y,,,"Mobile Register, 7/14/1881; NY Times, 7/17/1881",1881.06.13-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.13-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.13-Smith.pdf,1881.06.13,1881.06.13,432,, +1881.00.00.b,1881,1881,Unprovoked,INDIA,,"At Panihattu, Barrackpore, Dackhineshwar, Barahonagore, Kashipur & Chitpur down to Baug Bazar ghats",,,,,"""More than 20 persons severely bitten by sharks this year. Almost all were fatal""",Y,,,"A.C. Kastagir, Asst. Surgeon in the Indian Medical Gazette, 4/1/1881, pp.105-106; G.A. Llano, p.142, V.M. Coppelson (1958), p.261 ",1881.00.00.b-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.b-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.b-India.pdf,1881.00.00.b,1881.00.00.b,431,, +1881.00.00.a,Ca. 1881,1881,Boating,ITALY,Sicily,Stretto di Messina,Fishing on a boat,male,M,,Non-Fatal,N,,White sharks,A. De Maddalena; Doderlein (1881),1881.00.00.a-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.a-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.a-Italy.pdf,1881.00.00.a,1881.00.00.a,430,, +1880.11.25,25-Nov-1880,1880,Unprovoked,AUSTRALIA,Queensland,"Petrie Bight, Brisbane River",Swimming,Alexey Drury,M,12,"Feet bitten, surgically amputated FATAL",Y,Afternoon,Bull shark,"Bucks County Gazette, 2/10/1881, Sunday Mail (QLD), 3/27/1994, p.107",1880.11.25-AlexeyDrury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.11.25-AlexeyDrury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.11.25-AlexeyDrury.pdf,1880.11.25,1880.11.25,429,, +1880.10.10,10-Oct-1880,1880,Sea Disaster,AUSTRALIA,New South Wales,Bermagui,Traveling by boat,The Lamont Young party,M,,"Disappeared, thought to have murdered or drowned or taken by a sharks after entrails washed ashore",Y,,,"Sydney Morning Herald, 10/26/1880",1880.10.10-Lamont-Young-Party.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.10.10-Lamont-Young-Party.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.10.10-Lamont-Young-Party.pdf,1880.10.10,1880.10.10,428,, +1880.08.08,08-Aug-1880,1880,Unprovoked,MOZAMBIQUE,,,Swimming to retrieve a flannel,Farejallah,M,,Legs severed FATAL,Y,11h45,,"Newfoundlander (NZ), 11/5/1880",1880.08.08-Farejallah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.08.08-Farejallah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.08.08-Farejallah.pdf,1880.08.08,1880.08.08,427,, +1880.07.25,25-Jul-1880,1880,Boating,USA,New York,The Narrows,Sailing,Captain Aleck Robertson,M,,"Shark bit stern, no injury to occupant",N,15h00,10' shark,"The Sun, 7/26/1880",1880.07.25-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.07.25-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.07.25-Robertson.pdf,1880.07.25,1880.07.25,426,, +1880.05.15,15-May-1880,1880,Unprovoked,INDIA,West Bengal,Ganges River,,"Sutto Cumar Mukerjea, a.k.a. Haboo",M,20,"Left hand severed, arm & right calf injured",N,11h00,,"A.C. Kastagir, surgeon; G.A. Llano, p.142, V.M. Coppelson (1958), p.261 ",1880.05.15-Haboo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.15-Haboo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.15-Haboo.pdf,1880.05.15,1880.05.15,425,, +1880.05.14,14-May-1880,1880,Unprovoked,INDIA,West Bengal,Hoogly River,Bathing in river,a widow,F,60,"Hands, forearm & left thigh lacerated, radial artery severed",N,,,"V.M. Coppleson (1958), p.261, G.A. Llano, pp.139-142]",1880.05.14-Widow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.14-Widow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.14-Widow.pdf,1880.05.14,1880.05.14,424,, +1880.05.07.R,Reported 07-May-1880,1880,Invalid,MEXICO,Guerro,Acapulco,,A.H.C.,M,,"Human remains recovered from a 15' shark, probable scavenging",Y,,,"Dover Weekly Argus, 5/7/1880",1880.05.07.R-AHC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.07.R-AHC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.07.R-AHC.pdf,1880.05.07.R,1880.05.07.R,423,, +1880.05.02.b,02-May-1880,1880,Unprovoked,INDIA,West Bengal,(Calcutta?),Bathing in river,Sasti,M,,"FATAL, left forearm & hand bitten, brachial artery severed, died of secondary hemorrhage 11 days later ",Y,12h00,,"V.M. Coppleson (1958), p.260, G.A. Llano, pp. 138-139]",1880.05.02.b-Sasti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.b-Sasti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.b-Sasti.pdf,1880.05.02.b,1880.05.02.b,422,, +1880.05.02.a,02-May-1880,1880,Unprovoked,INDIA,West Bengal,"Panihati, 4 miles south of Barrackpore on the Hoogly River",Bathing,"N., a native boy",M,11,"FATAL, right leg severed at mid-thigh, femur severed ",Y,10h00,,"V.M. Coppleson (1958), p.260, G.A. Llano, pp.137-138 ",1880.05.02.a-N.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.a-N.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.a-N.pdf,1880.05.02.a,1880.05.02.a,421,, +1880.01.22,22-Jan-1880,1880,Boating,AUSTRALIA,New South Wales,"Chowder Bay, Sydney",Fishing,"boat, Occupants: William Smith & Thomas Martin",,,"No injury to occupants, shark rammed boat",N,13h00,12' shark,"G.P. Whitley (1951), p.192, citing Sydney Morning Herald 1/24/1880 ",1880.01.22-ChowderBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.22-ChowderBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.22-ChowderBayBoat.pdf,1880.01.22,1880.01.22,420,, +1880.01.03,03-Jan-1880,1880,Unprovoked,AUSTRALIA,New South Wales,Cooranbong,Bathing,Teresa Bonnell,F,13,Lacerations to leg,N,,,"Morning Bulletin, 1/28/1880",1880.01.03-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.03-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.03-Bonnell.pdf,1880.01.03,1880.01.03,419,, +1880.00.00.e,1880?,1880,Invalid,SYRIA,,,Diving for sponges,male,M,,FATAL but shark involvement in death unconfirmed,Y,,,"C. Moore, GSAF",1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,1880.00.00.e,1880.00.00.e,418,, +1880.00.00.d,Ca. 1880,1880,Invalid,USA,Florida,"Hutchinson Island, Martin County",,"""Old Cuba""",M,,"Drowned, body scavenged by shark",Y,,,History of Martin County by J. Hutchinson,1880.00.00.d-OldCuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.d-OldCuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.d-OldCuba.pdf,1880.00.00.d,1880.00.00.d,417,, +1880.00.00.c,Ca. 1880,1880,Unprovoked,SOLOMON ISLANDS,Guadalcanal Province,Guadalcanal,,boy,M,,"Arm & leg severed, survived ",N,,,"C.M. Woodford, page 35",1880.00.00.c-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.c-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.c-Guadalcanal.pdf,1880.00.00.c,1880.00.00.c,416,, +1880.00.00.a,1880,1880,Unprovoked,NEW ZEALAND,South Island,Campbells Point,,male,M,,Recovered,N,,,"Coppleson (1958), p.262 ",1880.00.00.a-CampbellsPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.a-CampbellsPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.a-CampbellsPoint.pdf,1880.00.00.a,1880.00.00.a,415,, +1879.12.24,24-Dec-1879,1879,Unprovoked,INDIA,Andaman Islands,Port Blair,Swimming,Kenney,M,23,FATAL,Y,,3 sharks,"Elyria Republican, 3/18/1880",1879.12.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.12.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.12.24-Kenney.pdf,1879.12.24,1879.12.24,414,, +1879.11.10,10-Nov-1879,1879,Unprovoked,AUSTRALIA,New South Wales,Clarence Heads,Swimming,Goddard,M,,Thigh bitten,N,,,"Maitland Mercury & Hunter River General Advertiser, 11/18/1879",1879.11.10-Goddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.11.10-Goddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.11.10-Goddard.pdf,1879.11.10,1879.11.10,413,, +1879.09.22, 22-Sep-1879,1879,Provoked,SPAIN,Valencia,Castellon de la Plana,Fishing,,,,"No injuries to occupants, Hooked shark bit boat PROVOKED INCIDENT",N,,2.5 m shark,C. Moore,1879.09.22-Castellon-de-la-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.09.22-Castellon-de-la-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.09.22-Castellon-de-la-Plana.pdf,1879.09.22,1879.09.22,412,, +1879.08.30.R,Reported 30-Aug-1879,1879,Sea Disaster,FIJI,Lau Group,Totoya ,,male + 20,M,,"Severely bitten on heel, 20 others taken by sharks",N,,,"Wagga Wagga Advertiser, 8/30/1879",1879.08.30.R-Totoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.08.30.R-Totoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.08.30.R-Totoya.pdf,1879.08.30.R,1879.08.30.R,411,, +1879.07.03,3-Jul-1879,1879,Unprovoked,USA,California,"Los Angeles, Los Angeles County",Bathing,John Fry,M,,No details,N,,,"Reno Evening Gazette, 7/11/1879",1879.07.03-JohnFry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.07.03-JohnFry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.07.03-JohnFry.pdf,1879.07.03,1879.07.03,410,, +1879.03.19,19-Mar-1879,1879,Unprovoked,NEW ZEALAND,North Island,Napier,Standing,Michal O'Neill,M,19,FATAL,Y,,,"Star, 3/20/1879",1879.03.19-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.19-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.19-O'Neill.pdf,1879.03.19,1879.03.19,409,, +1879.03.10,10-Mar-1879,1879,Invalid,AUSTRALIA,New South Wales,Near Sydney ,The steamship Bonnie Dundee lost in collision,Cabin boy of the Bonnie Dundee,M,,Partial remains found in shark,Y,,,"Star, 3/22/1879",1879.03.10-Bonnie-Dundee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.10-Bonnie-Dundee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.10-Bonnie-Dundee.pdf,1879.03.10,1879.03.10,408,,change filename +1879.00.00,1879,1879,Unprovoked,USA,Mississippi,River mouth,Floating with life buoy after pilot launch capsized,Gus Ericsson,M,,FATAL,Y,,Tiger shark,"Indiana County Gazette, 10/3/1900",1879.00.00-Ericsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.00.00-Ericsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.00.00-Ericsson.pdf,1879.00.00,1879.00.00,407,, +1878.11.17,17-Nov-1878,1878,Unprovoked,AUSTRALIA,New South Wales,"Lane Cove River, Sydney Harbor ",Bathing,Mr. Meares,M,,Laceration to leg,N,, a small shark,"The Mercury, 11/22/1878",1878.11.17-Meares.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.11.17-Meares.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.11.17-Meares.pdf,1878.11.17,1878.11.17,406,, +1878.10.24.R,Reported 24-Oct-1878,1878,Unprovoked,INDONESIA,East Java,Probolinggo,Swimming,Owen,M,,FATAL,Y,,15' shark,"Hartford Weekly Times, 10/24/1878",1878.10.24.R-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.24.R-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.24.R-Owen.pdf,1878.10.24.R,1878.10.24.R,405,, +1878.10.13,13-Oct-1878,1878,Unprovoked,,,,Jumped overboard after murdering 2 shipmates,Sherrington,M,,FATAL,Y,,,"The Maitland Mercury & Hunter River General Advertiser, 1/28/1879",1878.10.13-Sherrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.13-Sherrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.13-Sherrington.pdf,1878.10.13,1878.10.13,404,, +1878.09.14.R,Reported 14-Sep-1878,1878,Provoked,USA,Connecticut,"Branford, New Haven County",Fishing,Captain Pattison,M,,Leg bitten by netted shark PROVOKED INCIDENT,N,,,"St. Joseph Herald, 9/14/1878",1878.09.14.R-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.14.R-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.14.R-Pattison.pdf,1878.09.14.R,1878.09.14.R,403,, +1878.09.02.b,02-Sep-1878,1878,Sea Disaster,SOUTH ATLANTIC OCEAN,Off the coast of West Africa,,Boat with 5 men capsized while returning to the Amerique,Antonio du Val,M,, Du Val's leg was bitten but he survived,N,,,"Brisbane Courier, 11/19/1878",1878.09.02.b-Amerique-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.b-Amerique-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.b-Amerique-boy.pdf,1878.09.02.b,1878.09.02.b,402,, +1878.09.02.a,02-Sep-1878,1878,Sea Disaster,SOUTH ATLANTIC OCEAN,Off the coast of West Africa,,Boat with 5 men capsized while returning to the Amerique,,M,,"FATAL, 2 of the crew were killed by sharks",Y,,,"Brisbane Courier, 11/19/1878",1878.09.02.a-Amerique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.a-Amerique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.a-Amerique.pdf,1878.09.02.a,1878.09.02.a,401,, +1878.08.09,09-Aug-1878,1878,Unprovoked,USA,New York,East River,Swimming,Cole,M,,FATAL?,Y,Afternoon,8' shark,"Daily Kennebec Journal, 8/10/1878",1878.08.09-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.09-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.09-Cole.pdf,1878.08.09,1878.08.09,400,, +1878.08.08,08-Aug-1878,1878,Unprovoked,USA,New York,Brooklyn,Swimming,George Gates,M,14,FATAL,Y,Afternoon,,"NY Times, 8/9 & 8/16/1878",1878.08.08-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.08-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.08-Gates.pdf,1878.08.08,1878.08.08,399,, +1878.06.10,10-Jun-78,1878,Unprovoked,PHILIPPINES,Misamis Oriental,Cagayan de Oro,,Dolores Margarita Corrales y Roa,F,,FATAL,Y,,,"A.J. Montalvan II, Philippine Daily Inquirer, 12/24/2011",1878.06.10-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.06.10-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.06.10-Philippines.pdf,1878.06.10,1878.06.10,398,, +1878.03.30.R,Reported 30-March-1878,1878,Unprovoked,NEW GUINEA,,,,,M,,"""Fearfully injured""",N,,,"Hawkes Bay Herald, 4/16/1878",1878.03.30.R-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.03.30.R-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.03.30.R-NewGuinea.pdf,1878.03.30.R,1878.03.30.R,397,, +1878.02.13,13-Feb-1878,1878,Sea Disaster,SOUTH AFRICA,Western Cape Province,Olifantbos Point,Wreck of the Union Steamship Company 982-ton iron steamer Kafir,An Arab who had been with Stanley when he met Livingstone,M,,"FATAL, shark removed large part of his hip",Y,,,"M. Levine, GSAF; Times of Natal, 3/15/1878 ",1878.02.13-Kafir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.13-Kafir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.13-Kafir.pdf,1878.02.13,1878.02.13,396,, +1878.00.00,1878,1878,Unprovoked,AUSTRALIA,New South Wales,"Balmain, Sydney (Estuary)",Bathing in 2 feet of water,boy,M,11,"FATAL, leg severed ",Y,,,"G.P. Whitley, ref Dr. Cleland, Med. Journal Australia, 10/4/1924; J. Green, p.31",1878.00.00-Balmain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.00.00-Balmain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.00.00-Balmain.pdf,1878.00.00,1878.00.00,395,, +1877.12.15.R,Reported 15-Dec-1877,1877,Sea Disaster,FIJI,,,,a male & a female,,,FATAL,Y,,,"Australian Town & Country Journal, 12/15/1877",1877.12.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15.R-Fiji.pdf,1877.12.15.R,1877.12.15.R,394,, +1877.12.15,15-Dec-1877,1877,Unprovoked,AUSTRALIA,New South Wales,"Peacock Point, Balmain, Sydney",Bathing,Albert Thomas Burless,M,11,Leg severely bitten & later surgically amputated,N,,,"Sydney Mail, 2/16/1878; G.P. Whitley, (1951) p. 192, ref. F.A. McNeil ms. 1940; J. Green, p.31",1877.12.15-Burless.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15-Burless.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15-Burless.pdf,1877.12.15,1877.12.15,393,, +1877.12.12,12-Dec-1877,1877,Unprovoked,AUSTRALIA,New South Wales,Near Sydney,Washed overboard from the barque Mary Eady,2 males,M,,FATAL,Y,,,"Brisbane Courier, 12/15/1877",1877.12.12-MaryEady.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.12-MaryEady.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.12-MaryEady.pdf,1877.12.12,1877.12.12,392,, +1877.09.15,15-Sep-1877,1877,Unprovoked,AUSTRALIA,New South Wales,Port Jackson,Fishing,Mr. Coulthard,M,,"No injury, pulled overboard by a shark that grabbed his coat",N,Afternoon,13' shark,"The Mercury (Hobart), 9/22/1877",1877.09.15-Coulthard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.09.15-Coulthard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.09.15-Coulthard.pdf,1877.09.15,1877.09.15,391,, +1877.08.28.R,Reported 28-Aug-1877,1877,Invalid,INDIAN OCEAN,,,,female,M,,Partial human remains found in 13' shark,Y,,,"Western Australian Times, 8/28/1877",1877.08.28.R-IndianOcean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.08.28.R-IndianOcean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.08.28.R-IndianOcean.pdf,1877.08.28.R,1877.08.28.R,390,, +1877.04.07, 07-Apr-1877,1877,Provoked,AUSTRALIA,Tasmania,Smelting Works Bay near Hobart,,John Smart,M,,Fingers injured by landed shark PROVOKED INCIDENT,N,,7-gill shark,"C. Black, GSAF; G.P. Whitley, p.259",1877.04.07-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.07-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.07-Smart.pdf,1877.04.07,1877.04.07,389,, +1877.04.04.,04-Apr-1877,1877,Unprovoked,AUSTRALIA,Victoria,Portarlington,Bathing,Mitchell,M,,Thigh & foot bitten,N,Morning,,"Brisbane Courier, 4/11/1877",1877.04.04-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.04-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.04-Mitchell.pdf,1877.04.04.,1877.04.04.,388,, +1877.03.16,16-Mar-1877,1877,Unprovoked,ITALY,Strait of Messina,Off Calabria,Paddling,Captain Paul Boyton,M,,3 ribs broken by shark's tail,N,,,"J. Stanton, et. Al",1877.03.16-Boyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.16-Boyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.16-Boyton.pdf,1877.03.16,1877.03.16,387,, +1877.03.11, 11-Mar-1877,1877,Unprovoked,FIJI,Viti Levu Island,"Na Koro Vatu, Rewa River",,boy,M,15,"Thigh severely bitten, femur exposed ",N,,,"Timaru Herald, 5/18/1877",1877.03.11-RewaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.11-RewaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.11-RewaRiver.pdf,1877.03.11,1877.03.11,386,, +1877.02.17.R,Reported 17-Feb-1877,1877,Unprovoked,AUSTRALIA,Victoria,Off Melbourne,Fishing ,Gesoun Gentel,M,,Severe bite to hand,N,,,"Otago Witness, 2/17/1877",1877.02.17.R-Gentel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.02.17.R-Gentel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.02.17.R-Gentel.pdf,1877.02.17.R,1877.02.17.R,385,, +1877.01.28, 28-Jan-1877,1877,Unprovoked,AUSTRALIA,Victoria,Emerald Hill,Bathing,William Marks,M,,FATAL,Y,,,"The Mercury, 2/19/1877",1877.01.28-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.28-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.28-Marks.pdf,1877.01.28,1877.01.28,384,, +1877.01.24.R,Reported 24-Jan-1877,1877,Unprovoked,AUSTRALIA,Victoria,Boarding School Bay,Swimming,female,F,,Ankle injured,N,,6' shark,"The Argus, 1/24/1877",1877.01.24.R-BoardingSchoolBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.24.R-BoardingSchoolBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.24.R-BoardingSchoolBay.pdf,1877.01.24.R,1877.01.24.R,383,, +1877.01.04,04-Jan-1877,1877,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Body found floating next to his ship,"Anno Toosegir, a Malagasy crewman from the 130-ton brig Sea Nymph",M,,"Although his body was bitten by a shark/s, bruises on his neck & face suggested foul play & a shipmate taken into custody but no charges made",Y,,,"M. Levine, GSAF; Natal Colonist, 1/9/1877",1877.01.04-Toosegeir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.04-Toosegeir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.04-Toosegeir.pdf,1877.01.04,1877.01.04,382,, +1877.00.00,Before 1878,1877,Unprovoked,INDIA,Hoogly River,Near Calcutta,,Indian,,,"Thigh severely bitten, femur exposed & grooved",N,,,"J. Fayrer, M.D. cited in F. Day, The Fishes of India, p.715 ",1877.00.00-Calcutta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.00.00-Calcutta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.00.00-Calcutta.pdf,1877.00.00,1877.00.00,381,, +1876.09.07.R,Reported 07-Sep-1876,1876,Unprovoked,GREECE,Cyclades archipelago,Between the islands of Tenos and Andros ,Diving for sponges,male,M,,FATAL,Y,,,"C. Moore, GSAF",1876.09.07.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.09.07.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.09.07.R-Greece.pdf,1876.09.07.R,1876.09.07.R,380,, +1876.06.04.R,Reported 04-Jun-1876,1876,Unprovoked,USA,Georgia,Cumberland Island,Bathing,Arthur E.. Boardman,M,,Leg bitten,N,,,"The Constitution, 6/24/1876",1876.06.04.R-Boardman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.06.04.R-Boardman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.06.04.R-Boardman.pdf,1876.06.04.R,1876.06.04.R,379,, +1876.05.14,14-May-1876,1876,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbour,Swimming,Frederick Brown,M,,FATAL,Y,,,"Sydney Mail, 6/3/1876",1876.05.14-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.05.14-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.05.14-Brown.pdf,1876.05.14,1876.05.14,378,, +1876.02.06,06-Feb-1876,1876,Unprovoked,AUSTRALIA,Victoria,Albert Park in Port Phillip Bay,Bathing,Patrick Rooney,M,,"FATAL, rescued by man on horseback, but died on the beach ",Y,,,"V.M. Coppleson (1958), p.110; A. Sharpe, p.111; Herald (Melbourne), 12/30/1929 & 5/16/1933 ",1876.02.06-Rooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.02.06-Rooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.02.06-Rooney.pdf,1876.02.06,1876.02.06,377,, +1876.00.00.d,1876,1876,Unprovoked,LEBANON,Mount Lebanon,Batroun,Sponge diving,male,M,,FATAL,Y,,,"Drug Cir. & Chem. Gazette, 1876",1876.00.00.d-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.d-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.d-Lebanon.pdf,1876.00.00.d,1876.00.00.d,376,, +1876.00.00.c,1876,1876,Unprovoked,ENGLAND,"Between Hastings & Fairlight, Sussex",,,male,M,,Leg abraded,N,,Blue or porbeagle shark,MEDSAF,1876.00.00.c-MEDSAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.c-MEDSAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.c-MEDSAF.pdf,1876.00.00.c,1876.00.00.c,375,, +1876.00.00.b,1876,1876,Unprovoked,AUSTRALIA,Western Australia,Between De Grey River and Port Walcott,Pearl diving,"male, aboriginal diver",M,,"""Severely bitten"" but survived",N,,,"G.P. Whitley (1951) pp.185 & 192, citing P.Walcott",1876.00.00.b-pearl-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.b-pearl-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.b-pearl-diver.pdf,1876.00.00.b,1876.00.00.b,374,, +1876.00.00.a,1876,1876,Unprovoked,AUSTRALIA,New South Wales,Sydney,,boy,M,,"FATAL, ""his side was bitten""",Y,,,"G.P. Whitley (1951), p.192",1876.00.00.a-boy-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.a-boy-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.a-boy-Sydney.pdf,1876.00.00.a,1876.00.00.a,373,, +1875.11.27.R,Reported 27-Nov-1875,1875,Unprovoked,AUSTRALIA,New South Wales,Clarence Heads,Fishing,Aboriginal male,M,,Foot severed at ankle,N,,,"Brisbane Courier, 11/27/1875",1875.11.27.R-AboriginalFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.11.27.R-AboriginalFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.11.27.R-AboriginalFisherman.pdf,1875.11.27.R,1875.11.27.R,372,, +1875.08.10,10-Aug-1875,1875,Invalid,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",,,,,"Press reported that a 3 m shark was caught with human remains in its gut, but remains were those of a porpoise according to medical examiner",Y,,," Natal Colonist, 8/13/1875; M. Levine, GSAF",1875.08.10-porpoise.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.08.10-porpoise.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.08.10-porpoise.pdf,1875.08.10,1875.08.10,371,, +1875.03.03,03-Mar-1875,1875,Unprovoked,NEW ZEALAND,North Island,Tauranga,Bathing,male,M,3,FATAL,Y,,,"Thames Star, 3/3/1875",1875.03.03-Maori_boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.03.03-Maori_boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.03.03-Maori_boy.pdf,1875.03.03,1875.03.03,370,, +1875.01.20.R,Reported 20-Jan-1875,1875,Invalid,AUSTRALIA,Queensland,Mary River,Bathing,male,M,,"Forehead bitten, but shark involvement questionable",N,,,"Nelson Evening Mail, 1/20/1875",1875.01.20.R-MaryRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.01.20.R-MaryRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.01.20.R-MaryRiver.pdf,1875.01.20.R,1875.01.20.R,369,, +1874.11.21,21-Nov-1874,1874,Unprovoked,AUSTRALIA,Queensland,Maryborough,Bathing,"""a lad""",M,,Thigh bitten,N,,10' shark,"Maryborough Chronicle, 11/24/1874",1874.11.21-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.21-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.21-Maryborough.pdf,1874.11.21,1874.11.21,368,, +1875.00.00,Ca. mid-1870s,1875,Unprovoked,AUSTRALIA,Western Australia,Sharks Bay,Sitting on gunwale of boat,Andrew Farmer,M,,FATAL,Y,,,"Western Mail (Perth), 6/27/1919",1875.00.00-Farmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.00.00-Farmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.00.00-Farmer.pdf,1875.00.00,1875.00.00,367,, +1874.11.14.R,14-Nov-1874,1874,Boating,CROATIA,Zadar County,"Lika-Senj, Pag Island",Fishing,2 occupants,,,"Shark damaged boat, but no injury to occupants",N,,,"C. Moore, GSAF",1874.11.14.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.14.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.14.R-Croatia.pdf,1874.11.14.R,1874.11.14.R,366,, +1874.07.23,23-Jul-1874,1874,Boating,FRANCE,,,Fishing,,,,Shark and boat collided. No injury to occupants,N,,,"C. Moore, GSAF",1874.07.23-Planier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.23-Planier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.23-Planier.pdf,1874.07.23,1874.07.23,365,, +1874.07.15.R,Reported 15-Jul-1874,1874,Unprovoked,USA,Hawaii,Waikiki,Fishing,a native fisherman,M,,Thumb & thigh lacerated,N,,,"Empire, 7/15/1874",1874.07.15.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.R-Hawaii.pdf,1874.07.15.R,1874.07.15.R,364,, +1874.07.15,15-Jul-1874,1874,Unprovoked,USA,New York,Coney Island,Bathing,Mr. Keatly,M,,Lacerations to groin,N,Afternoon,"68"" shark","NY Times, 7/17/1874",1874.07.15.a-Keatly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.a-Keatly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.a-Keatly.pdf,1874.07.15,1874.07.15,363,, +1874.06.15.b.R,Reported 15-Jun-1874,1874,Unprovoked,KIRIBATI,Gilbert Islands,Beru,Escaping from blackbirding vessel,,M,,FATAL,Y,,,"Daily Southern Cross, 6/15/1874",1874.06.15.b.R-Blackbirder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.b.R-Blackbirder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.b.R-Blackbirder.pdf,1874.06.15.b.R,1874.06.15.b.R,362,, +1874.06.15.a.R,Reported 15-Jun-1874,1874,Unprovoked,,,,Salvaging a shipwreck,,M,,Heel bitten,N,,,"Daily Southern Cross, 6/15/1874",1874.06.15.a.R-Achilles-tendon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.a.R-Achilles-tendon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.a.R-Achilles-tendon.pdf,1874.06.15.a.R,1874.06.15.a.R,361,, +1874.04.20.R,Reported 20-Apr-1874,1874,Boating,CANADA,Newfoundland,St. Pierre Bank ,Fishing,A dory: occupants : 2 men,M,,Shark bit & tipped the dory,N,,White shark,Jones (1879); Piers (1933),1874.04.20.R-Dory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.04.20.R-Dory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.04.20.R-Dory.pdf,1874.04.20.R,1874.04.20.R,360,, +1874.01.09,09-Jan- 1874,1874,Unprovoked,AUSTRALIA,New South Wales,"Darling Harbor, Sydney",Bathing,Thomas Thompson,M,,Thigh severely bitten,N,,,"Sydney Morning Herald, 1/1/1874; V.M. Coppleson (1962)",1874.01.09-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.01.09-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.01.09-Thompson.pdf,1874.01.09,1874.01.09,359,, +1874.00.00,1874,1874,Boating,TUVALU,,Between Nanumea & Nanumaga Atolls,Fleet of canoes caught by a squall and charged by sharks.,,,,"2 people out of +70 survived, one of whom was bitten by sharks",Y,Night,,"Otago Witness, 10/28/1897",1874.00.00-Tuvalu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.00.00-Tuvalu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.00.00-Tuvalu.pdf,1874.00.00,1874.00.00,358,, +1873.07.28,28-Jul-1873,1873,Provoked,USA,Maryland,Chester River,Fishing (Seining),James Green,M,,Leg severely bitten by netted shark. Lower leg surgically amputated PROVOKED INCIDENT,N,,,"NY Times, 7/30/1873",1873.07.28-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.07.28-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.07.28-Green.pdf,1873.07.28,1873.07.28,357,, +1873.06.09.R,Reported 09-Jun-1873,1873,Invalid,AUSTRALIA,New South Wales,Newcastle ,Bathing,Joseph Henry,M,,Shark involvement prior to death was not confirmed,Y,,,"The Mercury, 6/9/1873",1873.06.09.R-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.06.09.R-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.06.09.R-Henry.pdf,1873.06.09.R,1873.06.09.R,356,, +1873.01.09.R,Reported 09-Jan-1873,1873,Unprovoked,AUSTRALIA,Queensland,White Cliffs,Bathing,young aboriginal male,M,,Survived,N,,Hammerhead shark,"Brisbane Courier, 1/9/1873",1873.01.09.R-Aboriginal-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.01.09.R-Aboriginal-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.01.09.R-Aboriginal-male.pdf,1873.01.09.R,1873.01.09.R,355,, +1873.00.00,Nov- or Dec-1873,1873,Unprovoked,CUBA,Havana Province,Havana Harbor,Swimming / escaping imprisonment ,Franz Mayer,M,27,"Legs severed bitten, later surgically amputated",N,,,"NY Times, 8/9/1931",1873.00.00-Mayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.00.00-Mayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.00.00-Mayer.pdf,1873.00.00,1873.00.00,354,, +1872.11.30.R,Reported 30-Nov-1872,1872,Unprovoked,INDIAN OCEAN?,,,Swimming to avoid capture,Malay pirates,M,,FATAL,Y,,,"The Mercury, 11/230/1872",1872.11.30.R-MalayPirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.30.R-MalayPirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.30.R-MalayPirates.pdf,1872.11.30.R,1872.11.30.R,353,, +1872.11.24,24-Nov-1872,1872,Invalid,AZORES,,,,Abel Fosdyk (who claimed to be sole survivor from the Mary Celeste),M,,"No injury, but according to Fosdyk, captain & crew were killed by sharks",N,,,Strand Magazine ,1872.11.24-MaryCeleste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.24-MaryCeleste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.24-MaryCeleste.pdf,1872.11.24,1872.11.24,352,, +1872.08.07.R,Reported 07-Aug-1872,1872,Invalid,CROATIA,,Fiume,Fishing,male,M,,No injury,,,,"C. Moore, GSAF",1872.08.07.R-Fiume.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.08.07.R-Fiume.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.08.07.R-Fiume.pdf,1872.08.07.R,1872.08.07.R,351,, +1872.04.03.R,Reported 03-Apr-1872,1872,Unprovoked,USA,Hawaii,Kawahae,Canoeing,Kaholo,M,,"Thigh bitten, shark teeth embedded in canoe",N,,,"Honolulu Gazette, 4/3/1872",1872.04.03.R-Kaholo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.04.03.R-Kaholo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.04.03.R-Kaholo.pdf,1872.04.03.R,1872.04.03.R,350,, +1872.02.26,26-Feb-1872,1872,Sea Disaster,AUSTRALIA,Queensland,Bramble Reef,Wreck of the 150-ton brig Maria,,,,"FATAL, some were taken by sharks",Y,,,coralsea-wrecks.com,1872.02.26-MariaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.02.26-MariaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.02.26-MariaShipwreck.pdf,1872.02.26,1872.02.26,349,, +1872.01.28,28-Jan-1872,1872,Invalid,Fiji,Lomaiviti Provine,"Levuka Point, Ovalau Island",boat capsized,Mr. Manning,M,,Probable drowning,Y,dusk,,"Empire, 2/20/1872",1872.01.28-Manning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.01.28-Manning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.01.28-Manning.pdf,1872.01.28,1872.01.28,348,, +1872.00.00,Circa 1872,1872,Sea Disaster,SOUTH ATLANTIC OCEAN,Off the coast of South America,,Adrift on a raft ,an Italian fisherman,M,,Leg bitten,N,Midnight,,"San Francisco Bulletin, 11/1/1872",1872.00.00-Italian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.00.00-Italian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.00.00-Italian.pdf,1872.00.00,1872.00.00,347,, +1871.12.11.R,Reported 11-Dec-1871,1871,Invalid,AUSTRALIA,New South Wales,Hawkesbury River,,male,M,,Human remains recovered from 11' shark,N,,,"Border Watch, 1/10/1872",1871.12.11.R-Remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.12.11.R-Remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.12.11.R-Remains.pdf,1871.12.11.R,1871.12.11.R,346,, +1871.08.29.R,Reported 29-Aug-1871,1871,Unprovoked,USA,Hawaii,,Fishing,male,M,,Limbs severed,N,,,"The British Colonist, 8/29/1871",1871.08.29.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.29.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.29.R-Hawaii.pdf,1871.08.29.R,1871.08.29.R,345,, +1871.08.00,Aug-1871,1871,Provoked,USA,New York,Long Island,Shark fishing,,M,,Hand injured PROVOKED INCIDENT,N,,,"New York Times, 8/26/1871",1871.08.00-SharkFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.00-SharkFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.00-SharkFisherman.pdf,1871.08.00,1871.08.00,344,, +1871.05.22.R,Reported 22-May-1871,1871,Unprovoked,SRI LANKA,Eastern Province,Trincomalee,Bathing,An officer from H.M. Forte,M,,Severe laceration to thigh,N,,,"The Argus, 5/22/1871",1871.05.22.R-Trincomalee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.22.R-Trincomalee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.22.R-Trincomalee.pdf,1871.05.22.R,1871.05.22.R,343,, +1871.03.24,24-Mar-1871,1871,Unprovoked,INDIA,"22N, 88E",Hoogly River at Multah,Bathing,Deno,M,30,"FATAL, left thigh & buttock bitten, died of pneumonia 7 weeks later ",Y,,,"J. Fayrer, M.D., pp.257-260 ",1871.03.24-Deno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.03.24-Deno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.03.24-Deno.pdf,1871.03.24,1871.03.24,342,, +1871.00.00.c,1871,1871,Unprovoked,AUSTRALIA,New South Wales,Manning River,,male,M,,"FATAL, ""caught by legs"" ",Y,,,"G.P. Whitley, ref E.S. Hill, Sydney Mail, 5/6/1871 ",1871.00.00.c-ManningRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.c-ManningRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.c-ManningRiver.pdf,1871.00.00.c,1871.00.00.c,341,, +1871.00.00.b,Before 1871,1871,Unprovoked,AUSTRALIA,Queensland,Brisbane River,,male,M,,Survived,N,,,"G.P. Whitley, ref. E.S. Hill",1871.00.00.b-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.b-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.b-BrisbaneRiver.pdf,1871.00.00.b,1871.00.00.b,340,, +1871.00.00.a,Before 1871,1871,Unprovoked,AUSTRALIA,New South Wales,Jervis Bay & Long Reef,Fishing,"2 males, aborigines",M,,Feet grabbed,N,Night,Wobbegongs,"G.P. Whitley (1940), p.79",1871.00.00.a-aborigines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.a-aborigines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.a-aborigines.pdf,1871.00.00.a,1871.00.00.a,339,, +1870.07.27,27-Jul-1870,1870,Unprovoked,USA,North Carolina,"Smithville (now Southport), Brunswick County",Bathing,Giles Gordon,M,,Foot bitten & toe severed,N,,,"C. Creswell, GSAF, F. Schwartz, p.23",1870.07.27-Gordon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.07.27-Gordon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.07.27-Gordon.pdf,1870.07.27,1870.07.27,338,, +1870.06.19,19-Jun-1870,1870,Unprovoked,INDIA,"22N, 88E","Calcutta, Hoogly River at one of the ghats",Bathing,"male, a Hindu shopkeeper",M,40,"Left arm bitten, developed gangrene, surgically amputated",N,,,"J. Fayrer, M.D.",1870.06.19-HinduShopkeeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.19-HinduShopkeeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.19-HinduShopkeeper.pdf,1870.06.19,1870.06.19,337,, +1870.06.01,01-Jun-1870,1870,Unprovoked,INDIA,West Bengal,"Hoogly River, Calcutta",Bathing / standing,"B., ""an Ooryah coolie""",M,40,"Right foot & leg bitten, surgically amputated",N,,,"J. Fayrer, M.D.",1870.06.01-Ooryah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.01-Ooryah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.01-Ooryah.pdf,1870.06.01,1870.06.01,336,, +1870.05.26.R,Reported 26-May-1870,1870,Unprovoked,AUSTRALIA,Queensland,Moreton Island,Fishing,Master Lacy,M,13,bite to lower leg,N,,,"Brisbane Courier, 5/26/1870",1870.05.26.R-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.26.R-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.26.R-Lacy.pdf,1870.05.26.R,1870.05.26.R,335,, +1870.05.18,18-May-1870,1870,Unprovoked,INDIA,"22N, 88E","Hatkolah, Ghat,",Bathing,"H.E.S., a Hindu trader",M,39,4 irregular lacerated wounds on right arm,N,,,"J. Fayrer, M.D.",1870.05.18-HinduTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.18-HinduTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.18-HinduTrader.pdf,1870.05.18,1870.05.18,334,, +1870.05.11,11-May-1870,1870,Unprovoked,INDIA,"22N, 88E",Near Sobah Bazar,Bathing,"male, a Hindu confectioner",M,40,3 lacerated irregular wounds on anterior left thigh,N,,,"J. Fayrer, M.D.",1870.05.11-HinduConfectioner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.11-HinduConfectioner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.11-HinduConfectioner.pdf,1870.05.11,1870.05.11,333,, +1870.01.09,09-Jan-1870,1870,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Bathing,John Saunders,M,17,Right thigh bitten,N,,,"Brisbane Courier, 1/15/1870",1870.01.09-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.01.09-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.01.09-Saunders.pdf,1870.01.09,1870.01.09,332,, +1870.00.00,Early 1870s,1870,Invalid,AUSTRALIA,Tasmania,Derwent River,Canoeing,Sub Lieut. Bowyer of H.M.S. Chile,M,,Shark bit canoe in half & bit man. Note: There is an earlier story of FATAL shark attack in same river,N,,,"C. Black, p.12; V.M. Coppleson (1958) pp. 104-105",1870.00.00-Bowyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.00.00-Bowyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.00.00-Bowyer.pdf,1870.00.00,1870.00.00,331,, +1869.04.15.R,Reported 15-Apr-1869,1869,Unprovoked,AUSTRALIA,South Australia,Cape Elizabeth,Net fishing,Joseph Simms,M,,Foot bitten,N,,"Tiger shark, 7'","The Mercury, 4/151869",1869.04.15.R-Simms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.15.R-Simms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.15.R-Simms.pdf,1869.04.15.R,1869.04.15.R,330,, +1869.04.10,10-Apr-1869,1869,Invalid,,,,Fell overboard,Christian Frederick,M,,"FATAL, but shark involvement prior to death was not determined",Y,,,"Nelson Examiner & New Zealand Chronicle, 4/24/1869",1869.04.10-Frederick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.10-Frederick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.10-Frederick.pdf,1869.04.10,1869.04.10,329,, +1868.09.01,01-Sep-1868,1868,Unprovoked,ITALY,Adriatic Sea,Trieste,,male,M,,FATAL,Y,,White shark,"A. De Maddalena; Radovanovi (1965), Soldo & Jardas (2000)",1868.09.01-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.09.01-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.09.01-Trieste.pdf,1868.09.01,1868.09.01,328,, +1868.05.13,13-May-1868,1868,Unprovoked,INDIA,Hoogly River,Ghat,Standing,male,M,35,"FATAL, upper left thigh, groin & buttocks severely bitten, leg surgically amputated at the hip ",Y,Before 10h30,Identified as C. gangeticus by Dr. J. Fayrer,"J. Fayrer, M.D.",1868.05.13-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.05.13-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.05.13-Hindoo.pdf,1868.05.13,1868.05.13,327,, +1868.01.17,17-Jan-1868,1868,Sea Disaster,VIETNAM,,Cohong,A junk foundered,,M,,FATAL,Y,,,"Argus, 5/26/1868",1868.01.17-Vietnamese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.17-Vietnamese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.17-Vietnamese.pdf,1868.01.17,1868.01.17,326,, +1868.01.04.R,Reported 04-Jan-1868,1868,Sea Disaster,AUSTRALIA,South Australia,Belfast (now Port Fairy),Fishing,"boat, occupants: John Griffiths & Thomas Johnson",,,"No injury to occupants, shark's teeth embedded in keel",N,,,"Nelson Examiner & New Zealand Chronicle, 4/3/1868",1868.01.04.R-PortFairy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.04.R-PortFairy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.04.R-PortFairy.pdf,1868.01.04.R,1868.01.04.R,325,, +1868.00.00.b,"Reported 24-Oct-1888, but took place around 1868",1868,Unprovoked,AUSTRALIA,Torres Strait,South Aroo Island,Swimming,15 Pindo Islanders,M,,FATAL,Y,,,"The New Era, 10/24/1888",1868.00.00.b-PindoIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.b-PindoIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.b-PindoIslanders.pdf,1868.00.00.b,1868.00.00.b,324,, +1868.00.00.a,1868 (?),1868,Unprovoked,NEW ZEALAND,North Island,"Brickfield Bay, Auckland Harbour",Bathing close inshore,Cook,M,,Thigh bitten,N,,"""Shark caught later""","V.M. Coppleson (1958) (May refer to Thomas Cooke, see- 22-Dec-1862)",1868.00.00.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.a-Cook.pdf,1868.00.00.a,1868.00.00.a,323,, +1867.08.22.R,Reported 22-Aug-1867,1867,Unprovoked,EGYPT,,Port Said,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1867.08.22.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.22.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.22.R-PortSaid.pdf,1867.08.22.R,1867.08.22.R,322,, +1867.08.00,Aug-1867,1867,Unprovoked,MEXICO,Veracruz ,Vera Cruz Harbor,boat from the Austrian ship Elizabeth,14 crewmen,M,,FATAL,Y,,,"Washington Star, 12/12/1891",1867.08.00-ElizabethCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.00-ElizabethCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.00-ElizabethCrew.pdf,1867.08.00,1867.08.00,321,, +1867.06.26,26-Jun-1867,1867,Sea Disaster,CUBA,Villa Clara Province,Remedios,boat from ship Josephine capsized in squall,2 crew clinging to floating barrels,M,,FATAL,Y,,,"Cork Examiner, 8/17/1867; Whaleman's Shipping List, 9/24;1867",1867.06.26-JosephineCrewmen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.06.26-JosephineCrewmen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.06.26-JosephineCrewmen.pdf,1867.06.26,1867.06.26,320,, +1867.00.00,1867,1867,Unprovoked,CUBA,Matanzas Province (north coast),Matanzas,Painting a ship,male,M,,"FATAL, pulled off float by shark, body not recovered ",Y,,,"Washington Star, 12/12/1891",1867.00.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.00.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.00.00-Cuba.pdf,1867.00.00,1867.00.00,319,, +1866.04.24.R,Reported 24-Apr-1866,1866,Invalid,AUSTRALIA,Western Australia,Off De Grey river,Fell overboard,Mr. Groves,M,,Thought to have been taken by a shark. Body was not recovered,Y,,,"The Argus, 4/24/1866",1866.04.24.R-Groves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.04.24.R-Groves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.04.24.R-Groves.pdf,1866.04.24.R,1866.04.24.R,318,, +1865.09.02,02-Sep-1865,1865,Unprovoked,USA,New York,"Greenport Sound, Long Island",Swimming alongside the schooner Catherine Wilcox,Peter Johnson,M,17,Multiple lacerations,N,09h00,,"P. Bailey; J. Gaudin, GSAF",1865.09.02-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.09.02-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.09.02-Johnson.pdf,1865.09.02,1865.09.02,317,, +1865.07.18.R,Reported 18-Jul-1865,1865,Unprovoked,USA,Texas,Brazos,Bathing,Col. Bryant,M,,FATAL,Y,,,"Daily Index, 7/18/1865",1865.07.18.R-Col-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.07.18.R-Col-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.07.18.R-Col-Bryant.pdf,1865.07.18.R,1865.07.18.R,316,, +1865.03.01.R,Reported 01-Mar-1865,1865,Boating,SOUTH AFRICA,Western Cape Province,St. Helena Bay,Fishing,boat: 4 occupants,M,,"FATAL: Boat capsized, sharks took fishermen",Y,,,"South African Advertiser, 3/1/1865",1865.03.01.R-St-HelenaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.03.01.R-St-HelenaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.03.01.R-St-HelenaBay.pdf,1865.03.01.R,1865.03.01.R,315,, +1865.00.00,1865,1865,Boating,AUSTRALIA,South Australia,Semaphore,Boarding a ship,"R.H. Barrett, pilot holding steering oar of whaleboat",,,"No injury to pilot, oar bitten",N,,,"V.M. Coppleson (1958), p.186",1865.00.00-Barrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.00.00-Barrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.00.00-Barrett.pdf,1865.00.00,1865.00.00,314,, +1864.09.18.R,Reported 18-Sep-1864,1864,Provoked,FRANCE,Alpes Maritime,Antibes,Dragging a shark,fisherman,M,,Knee bitten PROVOKED INCIDENT,N,,1.5 m shark,"C. Moore, GSAF",1864.09.18.R-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.18.R-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.18.R-Antibes.pdf,1864.09.18.R,1864.09.18.R,313,, +1864.09.00,Sep-1864,1864,Unprovoked,SCOTLAND,Edinburgh,Granton,,Mr. Ballard,M,,Leg bitten 3 times,N,,3' shark,C. Moore citing R. Peirce,1864.09.00-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.00-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.00-Ballard.pdf,1864.09.00,1864.09.00,312,, +1864.08.12,12-Aug-1864,1864,Unprovoked,USA,New York,Mahattan,Swimming,Henry Brice,M,13,Left thigh severely bitten,N,,,"NY Times, 8/13/1864",1864.08.12-Brice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.12-Brice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.12-Brice.pdf,1864.08.12,1864.08.12,311,, +1864.07.25,25-Jul-1864,1864,Unprovoked,SPAIN,Eastern Catalona,Badalona,Bathing,male,M,,FATAL,Y,Evening,,"C. Moore, GSAF",1864.07.25-Badalona-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.07.25-Badalona-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.07.25-Badalona-Spain.pdf,1864.07.25,1864.07.25,310,, +1864.01.27.R,Reported 27-Jan-1864,1864,Unprovoked,PANAMA,Coln Province,Aspinwall (Coln),Coming ashore on a hawser,a sailor from ther RM steam packet Solent,M,,FATAL,Y,,,"Chicago Tribune, 1/27/1864",1864.01.27.R-SailorSolent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.27.R-SailorSolent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.27.R-SailorSolent.pdf,1864.01.27.R,1864.01.27.R,309,, +1864.01.16.R,Reported 16-Jan-1864,1864,Unprovoked,NEW ZEALAND,Foveaux Strait,Stewart Island,Boat swamped,male,M,,FATAL,Y,,,"Otago Witness, 1/16/1864",1864.01.16.R-StewartsIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.16.R-StewartsIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.16.R-StewartsIsland.pdf,1864.01.16.R,1864.01.16.R,308,, +1864.01.02,02-Jan-1864,1864,Unprovoked,NEW ZEALAND,North Island,"Brickfield Bay, Auckland Harbour",Standing / Bathing,Mr. Kelsall,M,,Minor injury to hip,N,,,"Wellington Independent, 1/21/1864",1864.01.01-Kelsall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.01-Kelsall.pdf,,1864.01.02,1864.01.02,307,, +1864.00.00,1864,1864,Invalid,AUSTRALIA,South Australia,"Corio Bay, Port Phillip",Swimming,"Mr. Warren, Jr.",M,,"Presumed Fatal, but shark involvement not confirmed",Y,,,"The Argus, 11/24/1868",1864.00.00-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.00.00-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.00.00-Warren.pdf,1864.00.00,1864.00.00,306,, +1863.12.14,14-Dec-1863,1863,Unprovoked,GUINEA,Conakry Region,Ile de Loss,"Bathing near whaling ship (bark A. R. Tucker of New Bedford, Massachusetts)",Charles H. Petty,M,18,"FATAL ""Most of leg torn away . . . Buried on Island of DeLoss on the west coast of Africa""",Y,Evening,,"P. Purrington, Whaling Museum & Old Dartmouth Historical Society; V.M. Coppleson (1958), p.321 ",1863.12.14-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.12.14-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.12.14-Petty.pdf,1863.12.14,1863.12.14,305,, +1863.09.13.R,Reported 13-Sep-1863,1863,Unprovoked,USA,South Carolina,"Stono Inlet, near Charleston, Charleston County",Bathing,male,M,,Thrown into the air & bruised,N,,,"NY Times, 9/13/1863",1863.09.13.R-StonoInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.09.13.R-StonoInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.09.13.R-StonoInlet.pdf,1863.09.13.R,1863.09.13.R,304,, +1863.04.00,Apr-1863,1863,Unprovoked,AUSTRALIA,Queensland,Caloundra Heads,Launching a boat,Mr. Barnsfield,M,,FATAL,Y,,2 sharks,"Brisbane Courier, 6/12/1889, p.9",1863.04.00-Barnsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.04.00-Barnsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.04.00-Barnsfield.pdf,1863.04.00,1863.04.00,303,, +1863.03.05,05-Mar-1863,1863,Unprovoked,AUSTRALIA,Victoria,Brighton,Floating on back,William Thorn,M,,Lacerations to right torso & ankle,N,20h00,,"Argus, 3/10/1863",1863.03.05-Thorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.03.05-Thorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.03.05-Thorn.pdf,1863.03.05,1863.03.05,302,, +1863.02.05,05-Feb-1863,1863,Invalid,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban","Swimming, caught in strong backwash & disappeared",Mr. J. Canham,M,26,Shark caught 9 days later contained human remains thought to be those of Canham,Y,,3.2 m [10.5'] shark,"M. Levine, GSAF; Times of Natal, 2/16/1863",1863.02.05-Canham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.02.05-Canham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.02.05-Canham.pdf,1863.02.05,1863.02.05,301,, +1863.01.10,10-Jan-1863,1863,Unprovoked,AUSTRALIA,New South Wales,"""Bellynahinch"" on the Manning River",Bathing,James Brown,M,17,FATAL,Y,Evening,,"G.P. Whitley, p.259",1863.01.10-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.01.10-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.01.10-Brown.pdf,1863.01.10,1863.01.10,300,, +1863.00.00.R,Reported 1863,1863,Unprovoked,GREECE,Corfu,,Swimming,male,M,,FATAL,Y,,,C. Moore,1863.00.00.R-Corfu,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R-Corfu,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R-Corfu,1863.00.00.R,1863.00.00.R,299,, +1862.12.22,22-Dec-1862,1862,Unprovoked,NEW ZEALAND,North Island,"Soldier's Point, Brick Bay, Auckland",Swimming,Thomas Cooke,M,28,Right thigh and left foot severely bitten,N,06h00 -- 07h00,,"V.M. Coppleson (1962), p.247",1862.12.22-Cooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.22-Cooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.22-Cooke.pdf,1862.12.22,1862.12.22,298,, +1862.12.19.R,Reported 19-Dec-1862,1862,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Trying to catch a wounded bird,male,M,,FATAL,Y,,,"Courier, 12/19/1862",1862.12.19.R-Boy-Brisbane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.19.R-Boy-Brisbane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.19.R-Boy-Brisbane.pdf,1862.12.19.R,1862.12.19.R,297,, +1862.12.04,04-Dec-1862,1862,Invalid,NEW ZEALAND,South Island,Lyttleton?,,,,,,UNKNOWN,,,"Bendigo Advertiser, 1/3/1863",1862.12.04-Lyttleton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf,1862.12.04,1862.12.04,296,, +1862.08.15.R,Reported 15-Aug-1862,1862,Unprovoked,SPAIN,,A Spanish port,Bathing,The widowed Marchioness of Lendinez,F,,Survived,N,,,C. Moore,1862.08.15.R-Lendinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.15.R-Lendinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.15.R-Lendinez.pdf,1862.08.15.R,1862.08.15.R,295,, +1862.08.02.R,Reported 02-Aug-1862,1862,Invalid,SPAIN,Malaga,Fuengirola,,male,M,,Possible drowning and scavenging,,,,C. Moore,1862.08.02.R-Fuengirola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.02.R-Fuengirola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.02.R-Fuengirola.pdf,1862.08.02.R,1862.08.02.R,294,, +1862.07.25,25-Jul-1862,1862,Unprovoked,SPAIN,Malaga,San Andres Beach,Swimming,Joaquin Rosales Martinez,M,18,FATAL,Y,,,C. Moore,1862.07.25-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.25-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.25-Martinez.pdf,1862.07.25,1862.07.25,293,, +1862.07.14,14-Jul-1862,1862,Unprovoked,SPAIN,Cdiz,Off Algeciras,,male,M,18,FATAL,Y,,16' shark,C. Moore,1862.07.14-Algeciras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.14-Algeciras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.14-Algeciras.pdf,1862.07.14,1862.07.14,292,, +1862.07.13,13-Jul-1862,1862,Unprovoked,SPAIN,Cdiz,Off Algeciras,Swimming alongside the SS Kearsarge,Tibbetts,M,,FATAL,Y,18h30,16' shark,C. Moore; W.H. Bedlam,1862.07.13-Tibbetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.13-Tibbetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.13-Tibbetts.pdf,1862.07.13,1862.07.13,291,, +1862.06.03,03-Jun-1862,1862,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban Harbor,,male,M,,"""Very severe wounds""",N,,,"Cape Argus, 6/10/1862; M. Levine, GSAF",1862.06.03-male_Durban_Harbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.06.03-male_Durban_Harbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.06.03-male_Durban_Harbour.pdf,1862.06.03,1862.06.03,290,, +1862.05.05,05-May-1862,1862,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Bathing,Mr. Cummings,M,,Lacerations,N,,,"M. Levine, GSAF",1862.05.05-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.05.05-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.05.05-Cummings.pdf,1862.05.05,1862.05.05,289,, +1862.00.00.b,Circa 1862,1862,Unprovoked,USA,Hawaii,Puna,,A chiefess,F,,Ankle bitten,N,,,Captain W. Young,1862.00.00.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.b-Hawaii.pdf,1862.00.00.b,1862.00.00.b,288,, +1862.00.00.a,1862,1862,Unprovoked,JAPAN,Bonin Islands,,Boat of a Hawaiian brig was stove in by whale,boat crew,M,,FATAL,Y,,,"Otago Witness, 10/28/1897",1862.00.00.a-BoninIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.a-BoninIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.a-BoninIslands.pdf,1862.00.00.a,1862.00.00.a,287,, +1861.11.10,10-Nov-1861,1861,Unprovoked,SINGAPORE,,,Bathing alongside the American ship Thomas W. Sears,crew,M,,FATAL,Y,10h30,,"The Argus, 11/15/1861",1861.11.10-Singapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.11.10-Singapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.11.10-Singapore.pdf,1861.11.10,1861.11.10,286,, +1861.09.25.R,Reported 25-Sep-1861,1861,Unprovoked,CUBA,,60 miles off Trinidad de Cuba,Deserting the bark Nazarene,Caughlin (A.K.A. James Dilano),M,,Lacerations,N,,,"New York Times, 10/5/1861",1861.09.25.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.09.25.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.09.25.R-deserter.pdf,1861.09.25.R,1861.09.25.R,285,, +1861.03.00,Mar-1861,1861,Unprovoked,NEW ZEALAND,North Island,"Wynyard Wharf, Auckland Harbor",Bathing,a soldier,M,,"""Severely bitten but recovered""",N,,,P. Tichener,1861.03.00-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.03.00-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.03.00-soldier.pdf,1861.03.00,1861.03.00,284,, +1861.02.12.R,Reported 12-Feb-1861,1861,Unprovoked,EQUATORIAL GUINEA / CAMEROON,Fernando Po Island,,Swimming,William Looney,M,,FATAL,Y,,,"Daily Southern Cross, 2/12/1861",1861.02.12.R-Looney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.02.12.R-Looney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.02.12.R-Looney.pdf,1861.02.12.R,1861.02.12.R,283,, +1861.01.15.R,Reported 15-Jan-1861,1861,Unprovoked,AUSTRALIA,Queensland,Cleveland,Bathing,Dr. Lucas,M,,Lacerations to fingers,N,,,"Moreton Bay Courier, 1/15/1861",1861.01.15.R-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.01.15.R-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.01.15.R-Lucas.pdf,1861.01.15.R,1861.01.15.R,282,, +1860.12.26,26-Dec-1860,1860,Unprovoked,AUSTRALIA,New South Wales,"The Domain, Sydney",Bathing,,M,,Lacerations to leg,N,,,"The Argus, 12/31/1860",1860.12.26-TheDomain-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.12.26-TheDomain-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.12.26-TheDomain-Sydney.pdf,1860.12.26,1860.12.26,281,, +1860.08.01,01-Aug-1860,1860,Unprovoked,USA,New York,Brooklyn,Swimming,Jerry Duke,M,,Toe severed,N,Evening,,"New York Times, 8/3/1860; Brooklyn News, 8/3/1860, p.8",1860.08.01-JerryDuke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.08.01-JerryDuke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.08.01-JerryDuke.pdf,1860.08.01,1860.08.01,280,, +1860.04.00.b,Apr-1860,1860,Unprovoked,NEW ZEALAND,North Island,"Princes Wharf, Auckland Harbor",Swimming,H. Cook,M,,"Leg bitten, surgically amputated",N,,,P.Tichener,1860.04.00.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.b-Cook.pdf,1860.04.00.b,1860.04.00.b,279,, +1860.04.00.a,Apr-1860,1860,Unprovoked,NEW ZEALAND,North Island,"St. George's Bay, Auckland Harbor",Bathing,H. Bradley,M,,FATAL Foot & leg bitten,Y,,"4' ""ground shark""",P. Tichener,1860.04.00.a-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.a-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.a-Bradley.pdf,1860.04.00.a,1860.04.00.a,278,, +1860.03.27,27-Mar-1860,1860,Sea Disaster,COOK ISLANDS,Mangaia Island,,43-ton schooner Irene capsized & sank,a Cook's Islander,M,,Probable drowning ,Y,,,"Brisbane Courier, 8/1/1866",1860.03.27-Clark'sIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.27-Clark'sIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.27-Clark'sIslander.pdf,1860.03.27,1860.03.27,277,, +1860.03.11,11-Mar-1860,1860,Unprovoked,BAHAMAS,New Providence Island,Nassau,"In boat being towed by ship, Karnak",a pilot,M,,FATAL,Y,,Remains recovered from shark caught days later,"New York Times, 3/26/1860",1860.03.11-KarnakPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.11-KarnakPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.11-KarnakPilot.pdf,1860.03.11,1860.03.11,276,, +1859.03.16,16-Mar-1859,1859,Unprovoked,USA,Hawaii,Off Kawaihae,Fell overboard,J.G. Luther,M,21,FATAL,,,,"Pacific Commercial Advertiser, 3/24/1850",1859.03.16-Luther.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1859.03.16-Luther.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1859.03.16-Luther.pdf,1859.03.16,1859.03.16,275,, +1858.08.31,31-Aug-1858,1858,Invalid,USA,New York ,"Staten Island, Richmond County",Swimming,male,M,,Thought to have been taken by a shark/s. Body not recovered,Y,,,"Weekly Hawk Eye And Telegraph, 9/7/1858",1858.08.31-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.31-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.31-StatenIsland.pdf,1858.08.31,1858.08.31,274,, +1858.08.29,29-Aug-1858,1858,Invalid,USA,New York ,"Staten Island, Richmond County",Swimming,3 males,M,,Thought to have been taken by a shark/s. Bodies not recovered,Y,,,"Weekly Hawk Eye And Telegraph, 9/7/1858",1858.08.29-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.29-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.29-StatenIsland.pdf,1858.08.29,1858.08.29,273,, +1858.03.14,14-Mar-1858,1858,Unprovoked,AUSTRALIA,Victoria,Hobson Bay,Bathing,Adolphe Bollander,M,22,FATAL,Y,15h00,,"Moreton Bay Courier, 3/31/1858",1858.03.14-Bollander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.03.14-Bollander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.03.14-Bollander.pdf,1858.03.14,1858.03.14,272,, +1858.01.09.R,Reported 09-Jan-1858,1858,Unprovoked,TONGA,Vava'u,,Jumped overboard while intoxicated,crewman from the Shepherdess,M,,FATAL,Y,,,"Sydney Morning Herald, 1/9/1858",1858.01.09.R-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.09.R-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.09.R-Tonga.pdf,1858.01.09.R,1858.01.09.R,271,, +1856.11.30,30-Nov-1856,1856,Unprovoked,,,,,Cornelius Conhlren,M,22,FATAL,Y,,,"Hartford Daily Courant, 1/29/1857",1856.11.30-Conhlren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.30-Conhlren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.30-Conhlren.pdf,1856.11.30,1856.11.30,270,, +1856.11.25.R,Reported 25-Nov-1856,1856,Unprovoked,FIJI,,,Swimming,a seaman,M,,FATAL,Y,,,"The Argus, 11/25/1856",1856.11.25.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.25.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.25.R-Fiji.pdf,1856.11.25.R,1856.11.25.R,269,, +1856.06.21.R,Reported 21-Jun-1856,1856,Unprovoked,ENGLAND,Isle of Wight,Colwell Bay,Swimming,male,M,,Survived,Y,,,"C. Moore, GSAF",1856.06.21.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.06.21.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.06.21.R-Isle-of-Wight.pdf,1856.06.21.R,1856.06.21.R,268,, +1856.02.06,06-Feb-1856,1856,Unprovoked,AUSTRALIA,Victoria,Point Henry,Swimming,a seaman from the John and Lucy,M,17,Severe bite to thigh. Not known if he survived,UNKNOWN,,,"The Argus, 2/8/1856",1856.02.06-Point-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.02.06-Point-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.02.06-Point-Henry.pdf,1856.02.06,1856.02.06,267,, +1855.11.11,11-Nov-1855,1855,Unprovoked,AUSTRALIA,Victoria,Melbourne,Swimming,a seaman from the whaling brig Curlew,M,,FATAL,Y,,,"Maitland Mercury, 11/14/1855",1855.11.11-Curlew-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.11.11-Curlew-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.11.11-Curlew-seaman.pdf,1855.11.11,1855.11.11,266,, +1855.09.30,30-Sep-1855,1855,Sea Disaster,USA,North Carolina,Cape Hatteras,ship William Penn grounded & broke apart,sailor,M,,Foot bitten,N,,,"NY Times, 10/12/1855",1855.09.30-WilliamPenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.09.30-WilliamPenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.09.30-WilliamPenn.pdf,1855.09.30,1855.09.30,265,, +1855.07.28,28-Jul-1855,1855,Unprovoked,,,,Bathing,"a young boy, one of the crew of the Post Boy",M,,FATAL,Y,,,"Maitland Mercury, 8/25/1855",1855.07.28-PostBoy-sailors.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.07.28-PostBoy-sailors.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.07.28-PostBoy-sailors.pdf,1855.07.28,1855.07.28,264,, +1855.04.09.R,Reported 09-Apr-1855,1855,Unprovoked,AUSTRALIA,South Australia,Port Wakefield,Fell overboard from the Malacca,child,F,2,FATAL,Y,,,"The Argus, 4/9/1855",1855.04.09.R-Malacca-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.04.09.R-Malacca-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.04.09.R-Malacca-child.pdf,1855.04.09.R,1855.04.09.R,263,, +1855.03.28,28-Mar-1855,1855,Unprovoked,AUSTRALIA,South Australia,Port Wakefield,Fell overboard from the Sobella,Master Coleman,M,,FATAL,Y,,,"The Register, 4/20/1926",1855.03.28-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.03.28-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.03.28-Coleman.pdf,1855.03.28,1855.03.28,262,, +1855.02.12.R,Reported 12-Feb-1855,1855,Unprovoked,SOLOMON ISLANDS,Makira-Ulawa Province,Makira Island (Formerly San Cristobal),Swimming ,male,M,,FATAL,Y,,,"The Hobarton Mercury, 2/12/1855",1855.02.12.R-Native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.02.12.R-Native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.02.12.R-Native.pdf,1855.02.12.R,1855.02.12.R,261,, +1855.00.00,Circa 1855,1855,Invalid,AUSTRALIA,New South Wales,Sydney Harbor,Swimming ,C.T. Clark,M,,"No injury & although reported as an attack, it was simply an encounter",N,,,"Brighton Southern Cross, 2/13/1915",1855.00.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.00.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.00.00-Clark.pdf,1855.00.00,1855.00.00,260,, +1854.04.08.R,Reported 08-Apr-1854,1854,Unprovoked,GREECE,Corfu ,,Swimming,Hanson,M,,Leg severed at knee,N,,234-lb shark,"South Australian Register, 5/8/1854",1854.04.08.R-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1854.04.08.R-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1854.04.08.R-Hanson.pdf,1854.04.08.R,1854.04.08.R,259,, +1853.11.08,08-Nov-1853,1853,Unprovoked,AUSTRALIA,New South Wales,,Swimming,John Peters,M,,Leg bitten,N,,,"Maitland Mercury, 11/19/1853",1853.11.08-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.11.08-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.11.08-Peters.pdf,1853.11.08,1853.11.08,258,, +1853.09.28,28-Sept-1853,1853,Unprovoked,USA,North Carolina,"Morehead, Carteret County",Commercial Salvage Diving,Alfetto,M,,No injury. Copper breastplate & harness bitten,N,,White shark,"C. Creswell, GSAF; Washington Post, 10/7/1883, p.2",1853.09.28-Alfetto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.09.28-Alfetto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.09.28-Alfetto.pdf,1853.09.28,1853.09.28,257,, +1853.07.13.R,Reported 13-Jul-1853,1853,Unprovoked,USA,South Carolina,"Charleston Harbor, Charleston County",Swimming,male,M,,FATAL,Y,,Tiger shark (pregnant),Democratic Banner 8/5/1853,1853.07.13.R-Charleston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.07.13.R-Charleston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.07.13.R-Charleston.pdf,1853.07.13.R,1853.07.13.R,256,, +1853.00.00.d,1853,1853,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,Fell into the water,"James Hexton, pilot",M,,FATAL,Y,,,"Brisbane Courier, 1/28/1909",1853.00.00.d-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.d-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.d-Hexton.pdf,1853.00.00.d,1853.00.00.d,255,, +1853.00.00.c,Sep or Oct-1853,1853,Unprovoked,USA,North Carolina,"Morehead, Carteret County",Hard hat diving,Mark Dare,M,,"No injury, copper breastplate punctured",N,,White shark,"Fort Wayne Gazette, 1/24/1897",1853.00.00.c-MarkDare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.c-MarkDare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.c-MarkDare.pdf,1853.00.00.c,1853.00.00.c,254,, +1853.00.00.b,1853,1853,Invalid,USA,South Carolina,Off the Battery,He was fighting a shark when his boat capsized & he disappeared,a young man,M,, His gold watch was later found in a shark but death may have been due to drowning,Y,,,"W. H. Gregg, p.21 ",1853.00.00.b-battery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.b-battery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.b-battery.pdf,1853.00.00.b,1853.00.00.b,253,, +1853.00.00.a,1853 or 1854,1853,Unprovoked,USA,Florida,"Near Fernandina Bar, Nassau County ",Knocked overboard,Captain George Jacob Hanscheldt,M,,FATAL,Y,,,"W. H. Gregg, p.22 ",1853.00.00.a-Hanscheldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.a-Hanscheldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.a-Hanscheldt.pdf,1853.00.00.a,1853.00.00.a,252,, +1852.12.19,19-Dec-1852,1852,Invalid,AUSTRALIA,New South Wales,"Clark's Island, Sydney Harbor",Swimming,Edward Graham,M,,Shark involvement prior to death was not confirmed,Y,,,"Maitland Mercury & Hunter River General Advertiser, 12/25/1952",1852.12.19-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.12.19-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.12.19-Graham.pdf,1852.12.19,1852.12.19,251,, +1852.10.23.R,Reported 23-Oct-1852,1852,Provoked,PACIFIC OCEAN,Between Australia & USA,,Fishing,William Stannard,M,,Foot bitten by hooked shark PROVOKED INCIDENT,N,,,"Maitland Mercury, 10/23/1852",1852.10.23.R-Stannard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.23.R-Stannard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.23.R-Stannard.pdf,1852.10.23.R,1852.10.23.R,250,, +1852.10.09.R,Reported 09-Oct-1852,1852,Unprovoked,AUSTRALIA,New South Wales,Coalcliff,Fell overboard,James Rogers,M,,FATAL,Y,,,"Maitland Mercury, 10/09/1852",1852.10.09.R-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.09.R-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.09.R-Rogers.pdf,1852.10.09.R,1852.10.09.R,249,, +1852.08.07,07-Aug-1852,1852,Unprovoked,TONGA,Tongatapu,,Fell overboard,Charles Weymouth,M,,FATAL,Y,,,"Courier, 1/3/1853",1852.08.07-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.07-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.07-Weymouth.pdf,1852.08.07,1852.08.07,248,, +1852.08.00,Aug-1852,1852,Unprovoked,USA,Virginia,Norfolk,Swimming,a deserter from the U.S. Pennsylvania,M,,FATAL,Y,,,"Dixon Telegraph, 8/14/1852",1852.08.00-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.00-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.00-Sailor.pdf,1852.08.00,1852.08.00,247,, +1852.07.28,28-Jul-52,1852,Invalid,ATLANTIC OCEAN,,,,Karen Bredesen Strte ,F,1,Death preceded shark involvement,,,,Norway Heritage,1852.07.28-Karen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.07.28-Karen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.07.28-Karen.pdf,1852.07.28,1852.07.28,246,, +1852.05.24,24-May-1852,1852,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban Bay,Swimming from capsized boat,Mr. Messum's servant,M,,FATAL,Y,,,"M. Levine, GSAF; Natal Times, 6/4/1852",1852.05.24-Messum-servant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.05.24-Messum-servant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.05.24-Messum-servant.pdf,1852.05.24,1852.05.24,245,, +1852.02.26,26-Feb-1852,1852,Sea Disaster,SOUTH AFRICA,Western Cape Province,Danger Point,Wreck of the steamship Birkenhead,,M,,"FATAL. All of the women & children on board survived, but many of the 445 men that perished were taken by sharks",Y,01h50,White sharks,"D. Davies, pp.182-184; M. Levine, GSAF",1852.02.26-Birkenhead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.02.26-Birkenhead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.02.26-Birkenhead.pdf,1852.02.26,1852.02.26,244,, +1852.01.22,"""Anniversary Day"" 22-Jan-1850 or 1852",1852,Unprovoked,NEW ZEALAND,North Island,Wellington Harbor,Swimming,"Johnny Balmer, a soldier from the 65th Regiment",M,,"FATAL, posterior thigh bared to femur, kneecap lacerated ",Y,,Said to involved a 6 m to 7.3 m [20' to 24'] shark,"Ref: H. Blake, Sixty Years in New Zealand, pp. 112-116 V. M. Coppleson (1962], page 247 ",1852.01.22-Balmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.01.22-Balmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.01.22-Balmer.pdf,1852.01.22,1852.01.22,243,, +1852.00.00,1852,1852,Unprovoked,USA,South Carolina,"Mount Pleasant, Charleston County","Vessel capsized, wading ashore carrying an oar",Charles Chambers,M,,"FATAL, body was not recovered",Y,,,"W. H. Gregg, p. 21",1852.00.00-Chambers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.00.00-Chambers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.00.00-Chambers.pdf,1852.00.00,1852.00.00,242,, +1851.06.19.R,Reported 19-Jun-1851,1851,Unprovoked,MEXICO,Oaxaca,,Bathing,John Gray & another member of the Tehuantepec surveying party,M,,FATAL,Y,,,"Burlington Hawk-Eye, 6/19/1851",1851.06.19.R-JohnGray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.06.19.R-JohnGray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.06.19.R-JohnGray.pdf,1851.06.19.R,1851.06.19.R,241,, +1851.03.08.R,Mar-1851,1851,Unprovoked,USA,Hawaii,Honolulu Harbor,Swimming,James Kinney,M,,FATAL,Y,,,"The Friend (Honolulu), 3/8/1851",1851.03.08.R-Kinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.03.08.R-Kinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.03.08.R-Kinney.pdf,1851.03.08.R,1851.03.08.R,240,, +1851.00.00,1851,1851,Unprovoked,USA,California,"San Francisco Bay (or San Leandro Bay), near cannery, Alameda County",Hard hat diving,William Cortigan,M,,3 toes severed,N,,18' shark,"The Perry Chief, 10/16/1875",1851.00.00-Cortigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.00.00-Cortigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.00.00-Cortigan.pdf,1851.00.00,1851.00.00,239,, +1850.00.00,1850,1850,Unprovoked,NICARAGUA,Lake Nicaragua (fresh water),"Granada, Granada Department",Bathing,,M,,FATAL,Y,,,"E. Squier, 1852, vol. 1",1850.00.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1850.00.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1850.00.00-LakeNicaragua.pdf,1850.00.00,1850.00.00,238,, +1849.12.09,09-Dec-1849,1849,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,,male,M,,FATAL,Y,,,"T.H. Huxley's Diary, 1935, pp.285-286; G.P. Whitley, p.259",1849.12.09-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.09-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.09-SydneyHarbour.pdf,1849.12.09,1849.12.09,237,, +1849.12.01,01-Dec-1849,1849,Unprovoked,AUSTRALIA,New South Wales,"Woolloomooloo, Sydney Harbor (Estuary)",Bathing,a sailor from the steamship Eagle,M,,FATAL,Y,Afternoon,,"Moreton Bay Courier, 12/15/1849",1849.12.01-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.01-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.01-Sailor.pdf,1849.12.01,1849.12.01,236,, +1849.09.19,19-Sep-1849,1849,Unprovoked,AUSTRALIA,Victoria,Warrnambool,Swimming,a sailor from the schooner Brother,M,,FATAL,Y,,,"Maitland Mercury & Hunter River General Advertiser, 10/10/1849",1849.09.19-Brother-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.09.19-Brother-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.09.19-Brother-seaman.pdf,1849.09.19,1849.09.19,235,, +1849.06.08.b,08-Jun-1849,1849,Unprovoked,USA,Florida,"Pensacola, Escambia County",Attempting to rescue woman seized by shark,Mr. Mansfield,M,,FATAL,Y,,,"Adams Sentinel, 8/6/1849",1849.06.08.b-Mansfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.b-Mansfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.b-Mansfield.pdf,1849.06.08.b,1849.06.08.b,234,, +1849.06.08.a,08-Jun-1849,1849,Unprovoked,USA,Florida,"Pensacola, Escambia County",Bathing,Mrs. Cracton,F,,FATAL,Y,,,"Adams Sentinel, 8/6/1849",1849.06.08.a-Cracton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.a-Cracton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.a-Cracton.pdf,1849.06.08.a,1849.06.08.a,233,, +1849.01.27,27-Jan-1849,1849,Invalid,AUSTRALIA,New South Wales,Sydney,boat capsized,William Henry Elliott,M,,Torso bitten but may have been postmorem,Y,,,"Maitland Mercury, 2/3/1849",1849.01.27-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.01.27-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.01.27-Elliot.pdf,1849.01.27,1849.01.27,232,, +1848.08.31,31-Aug-1848,1848,Unprovoked,USA,Maryland,Patapsco River,Swimming,male,M,15,Left leg severely bitten,N,,,"Adams Sentinel, 9/4/1848",1848.08.31-PatapscoRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.08.31-PatapscoRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.08.31-PatapscoRiver.pdf,1848.08.31,1848.08.31,231,, +1848.07.00,Jul-1848,1848,Unprovoked,ENGLAND,Norfolk,Hunstanton,Standing,male,M,,Shark struck him with its tail,N,,,"C. Moore, citing R. Peirce",1848.07.00-Hunstanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.07.00-Hunstanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.07.00-Hunstanton.pdf,1848.07.00,1848.07.00,230,, +1847.11.30,30-Nov-1847,1847,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Swimming,James Stewart,M,,Thigh & calf bitten,N,,,"Moreton Bay Courier, 12.4/1847",1847.11.30-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.11.30-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.11.30-Stewart.pdf,1847.11.30,1847.11.30,229,, +1847.07.19,19-Jul-1847,1847,Unprovoked,GREECE,Corfu,Off the harbor wall at Mandrakina,Swimming,"William Mills, a British solider, 36th Regiment",M,19,FATAL,Y,,,I. Fergusson; A. Buttigieg; M. Bardanis,1847.07.19-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.19-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.19-Mills.pdf,1847.07.19,1847.07.19,228,, +1847.03.11,11-Mar-1847,1847,Sea Disaster,AUSTRALIA,Queensland,Moreton Bay,Wreck of the Sovereign,Spicer,M,,Foot severed,N,,,,1847.03.11-Spicer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.03.11-Spicer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.03.11-Spicer.pdf,1847.03.11,1847.03.11,227,, +1847.00.00.c,Reported in 1847,1847,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,,a native,,,Foot severed at ankle joint,N,,,Narrative of the Voyage of HMS Rattlesnake 1846-1850,1847.00.00.c-HMS-Rattlesnake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.c-HMS-Rattlesnake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.c-HMS-Rattlesnake.pdf,1847.00.00.c,1847.00.00.c,226,, +1847.00.00.b,1847,1847,Invalid,USA,South Carolina,"Charleston Harbor, Charleston County",Swimming,a young sailor,M,,"Disappeared, thought to have been taken by a shark",Y,,,"W.H. Gregg, pp. 21-22",1847.00.00.b-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.b-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.b-sailor.pdf,1847.00.00.b,1847.00.00.b,225,, +1847.00.00.a,Ca. 1847,1847,Unprovoked,USA,South Carolina,,Boating,adult,M,,Hand severed,N,,,"W.H. Greg, p.21",1847.00.00.a-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.a-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.a-SouthCarolina.pdf,1847.00.00.a,1847.00.00.a,224,, +1846.12.08,08-Dec-1846,1846,Sea Disaster,MEXICO,Veracruz,Vera Cruz,Wreck of the USS Somers,,M,,"FATAL, some were taken by sharks",Y,,,"Report of the loss of the Somers, J.H.W.",1846.12.08-Somers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.12.08-Somers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.12.08-Somers.pdf,1846.12.08,1846.12.08,223,, +1845.12.26,26-Dec-1845,1845,Unprovoked,AUSTRALIA,New South Wales,Newcastle ,Fishing,John Williams,M,,FATAL,Y,,,The Maitland Mercury & Hunter River General Advertiser 11/18/1893,1845.12.26-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.12.26-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.12.26-Williams.pdf,1845.12.26,1845.12.26,222,, +1845.09.16.R,Reported 16-Sep-1845,1845,Unprovoked,ENGLAND,,,,a school teacher,M,,Leg severed,N,,,C. Moore,1845.09.16.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.16.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.16.R-England.pdf,1845.09.16.R,1845.09.16.R,221,, +1845.09.10.R,Reported 10-Sep-1845,1845,Unprovoked,USA,Florida,"Pensacola Bay, Escambia County",Seine netting,Nickerson,M,,FATAL,Y,,,"Tioga Eagle, 9/10/1845",1845.09.10.R-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.10.R-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.10.R-Nickerson.pdf,1845.09.10.R,1845.09.10.R,220,, +1845.00.00.R,Reported 1845,1845,Unprovoked,SIERRA LEONE,,,,"""The Queen's Chaplain""",M,,FATAL,Y,,,Journal of an African Cruiser,1845.00.00.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.00.00.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.00.00.R-SierraLeone.pdf,1845.00.00.R,1845.00.00.R,219,, +1844.07.20.,20-Jul-1844,1844,Unprovoked,NAMIBIA,,,Boat capsized,a seaman from HMS Isis,M,,FATAL,Y,,,"Colonial Times, 5/24/1845",1844.07.20-Isis-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.20-Isis-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.20-Isis-seaman.pdf,1844.07.20.,1844.07.20.,218,, +1844.07.16.R,1844.07.16.R,1844,Unprovoked,ALGERIA,,Cape Matifou,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1844.07.16.R-Algeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.16.R-Algeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.16.R-Algeria.pdf,1844.07.16.R,1844.07.16.R,217,, +1844.05.24,24-May-1844,1844,Unprovoked,Coast of AFRICA,Island of St. Thomas,,Fell overboard,"Martin, coxswain of the USS Saratoga",M,,"FATAL, taken immediately by a shark ",Y,,,"Tioga Eagle, 7/31/1844 ",1844.05.24-Saratoga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.05.24-Saratoga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.05.24-Saratoga.pdf,1844.05.24,1844.05.24,216,, +1844.00.00,1844,1844,Unprovoked,MADAGASCAR,,,"Portuguese seaman fell overboard. Boat lowered to pick up with 1st mate & 4 crew, but done hurriedly & all were thrown into the water. As a second boat was lowered, a shark went after the 1st mate but he was rescued. Then the shark went after Mr. Andrews ",Mr. Andrews,M,,FATAL,Y,,,GSAF,1844.00.00-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.00.00-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.00.00-Andrews.pdf,1844.00.00,1844.00.00,215,, +1842.07.06,06-Jul-1842,1842,Provoked,USA,New Jersey,"Absecon, Atlantic County",Harassing a shark,male,,,Lacerations to leg PROVOKED INCIDENT,n,,,"New York Evening Post, 7/11/1842",1842.07.06-Absecon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.06-Absecon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.06-Absecon.pdf,1842.07.06,1842.07.06,214,, +1842.00.00.b,1842,1842,Unprovoked,INDIA,Tamil Nadu, Chennai (formerly Madras),Washed off catamaran in the surf,male,M,7 or 8,FATAL,Y,,,"Tioga Eagle, 10/26/1842",1842.00.00.b-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.b-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.b-Hindoo.pdf,1842.00.00.b,1842.00.00.b,213,, +1842.00.00.a,1842,1842,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,"Unknown, but it was said to be the ""First known attack in Sydney Harbour""",male,M,,Recovered,N,,,"V.M. Coppleson (1933), p.450",1842.00.00.a-1st-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.a-1st-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.a-1st-SydneyHarbour.pdf,1842.00.00.a,1842.00.00.a,212,, +1841.03.27,27-Mar-1841,1841,Unprovoked,AUSTRALIA,New South Wales,"Cockatoo Island, Sydney",Bathing,Andrew Goggin,M,,FATAL,Y,14h00,,"Sydney Gazette, 4/27/1841",1841.03.27-Goggin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1841.03.27-Goggin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1841.03.27-Goggin.pdf,1841.03.27,1841.03.27,211,, +1840.12.00,Dec-1840,1840,Unprovoked,AUSTRALIA,New South Wales,"Off Domain, Sydney Harbor",Swimming,male,M,,FATAL,Y,,,"G.P. Whitley, p.259; L. Schultz & M. Malin, p.523",1840.12.00 - Domain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.12.00 - Domain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.12.00 - Domain.pdf,1840.12.00,1840.12.00,210,, +1840.09.18.R,Reported 18-Sep-1840,1840,Unprovoked,FIJI,Viti Levu Island,Rewa ,,male,M,,Arms & legs severed,N,,,"Hobart Town Courier, 9/18/1840",1840.09.18.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.09.18.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.09.18.R-Fiji.pdf,1840.09.18.R,1840.09.18.R,209,, +1840.02.00,Feb-1840,1840,Boat,AUSTRALIA,Tasmania,George Town Cove,Sailing,A dinghy,,,"No injury to occupant, shark seized stern post",N,,,"C. Black, GSAF",1840.02.00-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.02.00-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.02.00-dinghy.pdf,1840.02.00,1840.02.00,208,, +1840.00.00.a,Ca. 1840,1840,Unprovoked,USA,South Carolina,"Charleston Harbor, Charleston County",Accidentally thrown overboard & treading water while awaiting rescue,crew member of a pilot boat,M,,"FATAL, body was not recovered",Y,,Said to be a 7.6 m [25'] shark,"C. Creswell, GSAF",1840.00.00.a-pilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.00.00.a-pilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.00.00.a-pilot.pdf,1840.00.00.a,1840.00.00.a,207,, +1839.11.17,17-Nov-1839,1839,Invalid,AUSTRALIA,New South Wales,,,Mr.Johnson (male),M,,"""Drowned, 2 days later his head was bitten off by a shark""",Y,,,"H.D. Baldridge, p.146",1839.11.17-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.11.17-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.11.17-Johnson.pdf,1839.11.17,1839.11.17,206,, +1839.04.14,14-Apr-1839,1839,Unprovoked,CUBA,Matanzas Province (north coast),Matanzas,Sitting on gunwale of boat,sailor,M,,FATAL,Y,,"""a large shark""","Daily Courant, 5/31/1839",1839.04.14-Matanzas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.04.14-Matanzas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.04.14-Matanzas.pdf,1839.04.14,1839.04.14,205,, +1839.00.00.b,1839/1840,1839,Unprovoked,AUSTRALIA,South Australia,"Horn Point, Lady's Bay",Attempting to rescue crew after whale upset their boat,Captain Wishart of the whaler Wallaby,M,,FATAL,Y,,,"G. Dunderdale, The Book of the Bush",1839.00.00.b-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.b-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.b-Wishart.pdf,1839.00.00.b,1839.00.00.b,204,, +1839.00.00.a,Ca. 1839,1839,Unprovoked,FIJI,Viti Levu Island,Rewa ,,"Joeli Bulu, missionary",M,29,Survived,N,,,J. Garrett; T. Kanailagi,1839.00.00.a-Pulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.a-Pulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.a-Pulu.pdf,1839.00.00.a,1839.00.00.a,203,, +1837.09.03,09-Sep-1837,1837,Unprovoked,USA,South Carolina,"Magwoods Wharf, Charleston Harbor, Charleston County",Bathing,a young boy from the Plymouth,M,,Right foot bittten,N,,,"C. Creswell, GSAF; J. Hair, pp.65-66",1837.09.03-Plymouth-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.09.03-Plymouth-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.09.03-Plymouth-boy.pdf,1837.09.03,1837.09.03,202,, +1837.01.17,17-Jan-1837,1837,Unprovoked,AUSTRALIA,New South Wales,Macleay River,Washing his feet,Alfred Australia Howe,M,12,"FATAL Injured by shark, died of tetanus",Y,Evening,,"Gazette (Sydney) 1/31/1837; Proc. Royal Aust. Hist. Scty, I, Part 2, 1924; G.P. Whitley, p.14; Sharpe, p. 87",1837.01.17-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.01.17-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.01.17-Howe.pdf,1837.01.17,1837.01.17,201,, +1837.00.00.a,Ca. 1837,1837,Invalid,USA,South Carolina,Southern Wharf,,"adult male, a sailor",M,,Shark caught contained human remains,,,Said to be a 7.6 m [25'] shark,W. H. Gregg,1837.00.00.a-remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.00.00.a-remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.00.00.a-remains.pdf,1837.00.00.a,1837.00.00.a,200,, +1836.07.26.R,1836.07.26.R,1836,Invalid,SPAIN,,,,,,,"Shark caught, contained human remains",,,,"C. Moore, GSAF",1836.07.26.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.07.26.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.07.26.R-Spain.pdf,1836.07.26.R,1836.07.26.R,199,, +1836.00.00.a,1836.00.,1836,Unprovoked,AUSTRALIA,South Australia,,,,,,"No details, it was the year the first settlers came ashore in Holdfast Bay, Port Pirie",UNKNOWN,,,"A. Sharpe, p.119",1836.00.00.a-HoldfastBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.00.00.a-HoldfastBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.00.00.a-HoldfastBay.pdf,1836.00.00.a,1836.00.00.a,198,, +1835.02.21.R,Reported 21-Feb-1835,1835,Unprovoked,VANUATU,Sanma Province,"Bay of Yago, Espiritu Santo Island",Bathing,John McKeig,M,,FATAL,Y,,,"Sydney Gazette, 2/21/1835",1835.02.21.R-McKeig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.02.21.R-McKeig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.02.21.R-McKeig.pdf,1835.02.21.R,1835.02.21.R,197,, +1835.01.06,06-Jan-1835,1835,Unprovoked,TASMAN SEA,3539 : 1658',Alongside the whaler Marianne,Hooking into a whale,male,M,,"""Savagely bitten"" but apparently survived",N,,,"G.P. Whitley, p. 259",1835.01.06-Whaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.01.06-Whaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.01.06-Whaler.pdf,1835.01.06,1835.01.06,196,, +1834.07.15.R,Reported 15-Jul-1834,1834,Unprovoked,FRENCH POLYNESIA,Society Islands,Tahiti,Swimming,Kaugatava Orurutm,F,,FATAL,Y,,Reported to involve a hammerhead shark,"Republican Banner, 7/15/1834",1834.07.15.R-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1834.07.15.R-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1834.07.15.R-Tahiti.pdf,1834.07.15.R,1834.07.15.R,195,, +1832.06.04,04-Jun-1832,1832,Unprovoked,AUSTRALIA,New South Wales,"South Head, Sydney",Fishing,Aboriginal female,F,,Leg severed,N,,,"Sydney Herald, 6/11/1832",1832.06.04-AboriginalWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.06.04-AboriginalWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.06.04-AboriginalWoman.pdf,1832.06.04,1832.06.04,194,, +1832.01.23.R,Reported 23-Jan-1832,1832,Unprovoked,AUSTRALIA,New South Wales,Sydney,Bathing,male,M,,Laceration to leg,N,,,"Sydney Herald, 1/23/1832",1832.01.23.R-Wilshire-slaughter-house.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.01.23.R-Wilshire-slaughter-house.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.01.23.R-Wilshire-slaughter-house.pdf,1832.01.23.R,1832.01.23.R,193,, +1831.01.22.R,Reported 22- Jan-1831,1831,Invalid,AUSTRALIA,Tasmania,Hobart,"Boat capsized, clinging to line",Robert Dudlow,M,,"Drowned, no shark involvement",Y,,,"C. Black, GSAF; Sydney Gazette, 1/22/1831",1831.01.22.R-Dudlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1831.01.22.R-Dudlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1831.01.22.R-Dudlow.pdf,1831.01.22.R,1831.01.22.R,192,, +1830.07.26,26-Jul-1830,1830,Unprovoked,USA,Massachusetts,"Swampscott, Essex County","Fishing from dory, shark upset boat & he fell into the water",Joseph Blaney,M,52,FATAL,Y,,,"Huron Sun, 8/3/1830",1830.07.26-JosephBlaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.26-JosephBlaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.26-JosephBlaney.pdf,1830.07.26,1830.07.26,191,, +1830.07.02.R,Reported 02-Jul-1830,1830,Unprovoked,INDIA,Tamil Nadu,Madras,Washing a dog,male,M,,FATAL,Y,Evening,,"Madras Courier, 7/2/1830",1830.07.02.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.02.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.02.R-Madras.pdf,1830.07.02.R,1830.07.02.R,190,, +1830.04.30,30-Apr-1830,1830,Unprovoked,INDIA,Tamil Nadu,St. Thom,Bathing,Ensign Bromwick,M,,FATAL,Y,17h00-18h00,,"Madras Gazette, 5/1/1830",1830.04.30-Bromwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.04.30-Bromwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.04.30-Bromwick.pdf,1830.04.30,1830.04.30,189,, +1829.07.03.R,Reported 03-Jul-1829,1829,Unprovoked,SIERRA LEONE,Western Area,,,Thomas Cargill,M,,Both hands severed,N,,,"Hagerstown Mail, 7/3/1829",1829.07.03.R-Cargill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.07.03.R-Cargill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.07.03.R-Cargill.pdf,1829.07.03.R,1829.07.03.R,188,, +1829.00.00,1829,1829,Sea Disaster,CARIBBEAN SEA,,Between St. Bart's and Saba,Wreck of the schooner Driver,Ned & Pawn,M,,FATAL x 2,Y,,,"The Times, 12/14/1829",1829.00.00-Ned-Pawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.00.00-Ned-Pawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.00.00-Ned-Pawn.pdf,1829.00.00,1829.00.00,187,, +1828.09.28,28-Sep-1828,1828,Unprovoked,SIERRA LEONE,Western Area,"River Sierra Leone, 35 miles upriver from Freetown","British ship, Britannia, was loading lumber. He was bathing","Thomas Corrigle, an apprentice from the ship",M,17,"Left arm severed 2.5"" from elbow, groin, abdomen, right forearm & hand lacerated, flesh removed from thigh, baring femur. Both arms surgically amputated: left arm above elbow, right arm above wrist. Survived",N,,,Account by J. Boyle,1828.09.28-Corrigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.09.28-Corrigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.09.28-Corrigle.pdf,1828.09.28,1828.09.28,186,, +1828.00.00,1828,1828,Unprovoked,USA,Hawaii,"Uo, Lahaina, Maui",Surfing,Male,M,,FATAL,Y,,,"J. Borg, p.68; L. Taylor (1993), pp.94-95",1828.00.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.00.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.00.00-male.pdf,1828.00.00,1828.00.00,185,, +1827.06.00.b,Jun-1827,1827,Unprovoked,SIERRA LEONE,Western Area ,Tombo Island in the Sierra Leone River,Swimming,"A boy, one of the crew of the ship Thomas Gelston",M,,The boy's foot was bitten,N,,,Edinburgh Advertiser. 9/12/1828,1827.06.00.b-boy-crew-Gelston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.b-boy-crew-Gelston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.b-boy-crew-Gelston.pdf,1827.06.00.b,1827.06.00.b,184,, +1827.06.00.a,Jun-1827,1827,Unprovoked,SIERRA LEONE,Western Area ,Tombo Island in the Sierra Leone River,Swimming,"William Davis, of the ship Thomas Gelston",M,,Davis' leg was severed,N,,,Edinburgh Advertiser. 9/12/1828,1827.06.00.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.a-Davis.pdf,1827.06.00.a,1827.06.00.a,183,, +1827.01.11.R,Reported 11-Jan-1827,1827,Unprovoked,JAMAICA,,,Jumped overboard,Thomas Laurington,M,,FATAL,Y,19h00-20h00,,"Sydney Gazette, 1/11/1827",1827.01.11.R-Laurington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.01.11.R-Laurington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.01.11.R-Laurington.pdf,1827.01.11.R,1827.01.11.R,182,, +1827.00.00,1827,1827,Unprovoked,EGYPT,,Alexandria,,Two men,M,,Remains of the men were recovered from a +17-foot shark,Y,,,"C. Moore, GSAF",1827.00.00-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.00.00-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.00.00-Alexandria.pdf,1827.00.00,1827.00.00,181,, +1826.12.00,Dec-1826,1826,Unprovoked,BRAZIL,Paraiba,Paraiba,,a seaman from the ship Beverly,M,,Leg severed,N,,,Book of the Ocean,1826.12.00-seaman-Beverly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.12.00-seaman-Beverly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.12.00-seaman-Beverly.pdf,1826.12.00,1826.12.00,180,, +1826.11.00,Ca. Nov-1826,1826,Unprovoked,GHANA,Cape Coast,,Bathing,a seaman from HM Redwing,M,,FATAL,Y,,,"Sydney Gazette and New South Wales Advertiser, 7/25/1827 ",1826.11.00-seaman-Redwing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.11.00-seaman-Redwing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.11.00-seaman-Redwing.pdf,1826.11.00,1826.11.00,179,, +1826.08.28,28-Aug-1826,1826,Sea Disaster,CUBA,,,HBM Magpie foundered in a squall,Lieutenant Edward Smith,M,,FATAL ,Y,,,Edinburgh Advertiser. 10/20/1826,1826.08.28-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.28-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.28-Smith.pdf,1826.08.28,1826.08.28,178,, +1825.00.00.b,1820s,1825,Unprovoked,AUSTRALIA,Tasmania,"Sweet Water Point, Pitt Water",Swimming,"""Amphibious Jack"" male",M,,FATAL,Y,,,"C. Black, GSAF, G.T. Lloyd, pp.79-81; C. Black pp. 142-147",1825.00.00.b-AmphibiousJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.b-AmphibiousJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.b-AmphibiousJack.pdf,1825.00.00.b,1825.00.00.b,177,, +1825.00.00,Ca . 1825,1825,Invalid,AUSTRALIA,Western Australia,South Bruny Island,,Nelson,M,,"Arms severed, but he survived",N,,,"C. Black, GSAF",1825.00.00.a-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.a-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.a-Nelson.pdf,1825.00.00,1825.00.00,176,, +1822.04.15,15-Apr-1822,1822,Unprovoked,NIGERIA,Rivers State,Bonny River,,slaves,,,FATAL,Y,,,"Times of London, 8/5/1822, p. 2",1822.04.15-Slaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1822.04.15-Slaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1822.04.15-Slaver.pdf,1822.04.15,1822.04.15,175,, +1819.07.08.R,Reported 08-Jul-1819,1819,Invalid,SPAIN,,Cadiz,,male,M,,No injury / No attack,N,,,"C. Moore, GSAF",1819.07.08.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1819.07.08.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1819.07.08-Cadiz.pdf,1819.07.08.R,1819.07.08.R,174,, +1818.05.22.R,Reported 22-May-1818,1818,Invalid,NORWAY,,Hery,,male,M,,Probable drowning ,,,,"C. Moore, GSAF",1818.05.22.R-Norway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1818.05.22.R-Norway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1818.05.22.R-Norway.pdf,1818.05.22.R,1818.05.22.R,173,, +1817.06.24,24-Jun-1817,1817,Unprovoked,USA,South Carolina,"Charleston Harbor, Charleston County",Swimming,Jemmy,M,,FATAL,Y,,,"The Times, 6/25/1817",1817.06.24-Jemmy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.24-Jemmy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.24-Jemmy.pdf,1817.06.24,1817.06.24,172,, +1817.06.15,15-Jun-1817,1817,Unprovoked,INDIA,Maharashtra,Bombay (now Mumbai),Swimming,Charles Anderson,M,,FATAL,Y,Evening,,Edinburgh Advertiser. 2/3/1818,1817.06.15-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.15-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.15-Anderson.pdf,1817.06.15,1817.06.15,171,, +1817.05.11,11-May-1817,1817,Unprovoked,SRI LANKA,Western Province,Colombo,Swimming,William May,M,22,FATAL,Y,Evening,,Edinburgh Advertiser. 11/4/1817; R. DeSilva,1817.05.11-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.05.11-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.05.11-May.pdf,1817.05.11,1817.05.11,170,, +1817.02.22,22-Feb-1817,1817,Unprovoked,SRI LANKA,,Gulf of Mannar,Conch diver,male,M,,Abdomen bitten,N,13h00,,J. Kennedy,1817.02.22-Mannar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.02.22-Mannar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.02.22-Mannar.pdf,1817.02.22,1817.02.22,169,, +1816.09.03.R,Reported 03-Sept-1816,1816,Unprovoked,USA,Rhode Island,Bristol Harbor,Swimming,male,,,FATAL,Y,,,"Connecticut Courant, 9/3/1816",1816.09.03.R-Rhode-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1816.09.03.R-Rhode-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1816.09.03.R-Rhode-Island.pdf,1816.09.03.R,1816.09.03.R,168,, +1812.07.00,May 1812,1812,Unprovoked,ENGLAND,Devon,Mill Bay,Swimming,soldier from the Lancashire militia,M,,Both legs injured,N,,Thought to involve a porbeagle or mako shark,"C. Moore, GSAF",1812.07.00-Mill-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1812.07.00-Mill-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1812.07.00-Mill-Bay.pdf,1812.07.00,1812.07.00,167,, +1811.03.01,01-Mar-1811,1811,Unprovoked,,,,Fell overboard,John Walker,M,,FATAL,Y,,,Journal of Captain Marryat,1811.03.01-John-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1811.03.01-John-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1811.03.01-John-Walker.pdf,1811.03.01,1811.03.01,166,, +1807.01.12,12-Jan-1807,1807,Unprovoked,AUSTRALIA,New South Wales,"Cockle Bay, Sydney Harbour",,male,M,,Survived,N,,,"J. Green, p.31",1807.01.12-Cockle-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1807.01.12-Cockle-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1807.01.12-Cockle-Bay.pdf,1807.01.12,1807.01.12,165,, +1805.09.00,Sep-1805,1805,Invalid,USA,New York,"Sag Harbor, Suffolk County",,,M,, human remains (male) found in sharks gut,Y,,,S.L. Mitchill (1814),1805.09.00-NY.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1805.09.00-NY.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1805.09.00-NY.pdf,1805.09.00,1805.09.00,164,, +1804.02.26.R,Reported 26-Feb-1804,1804,Boat,AUSTRALIA,New South Wales,"Georges Head, off Port Jackson",,boat,,,No injury to occupants,N,,," Sydney Gazette, 2/26/1804 ",1804.02.26-boat-GeorgesHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1804.02.26-boat-GeorgesHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1804.02.26-boat-GeorgesHead.pdf,1804.02.26.R,1804.02.26.R,163,, +1803.03.00,Mar-1803,1803,Unprovoked,AUSTRALIA,Western Australia,"Hamelin Harbour, at Faure Island",,M. Lefevre & a sailor (rescuer),M,,Shark knocked him down & tore clothing of the rescuer,N,,,"F. Peron ref in G.P. Whitley (Fishes of Australia), p.13 ",1803.03.00-Lefevre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1803.03.00-Lefevre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1803.03.00-Lefevre.pdf,1803.03.00,1803.03.00,162,, +1800.00.00,1800,1800,Unprovoked,SEYCHELLES,St. Anne,,a corsair's boat was overturned,,F,,"FATAL, all onboard were killed by sharks",Y,,,V. C. Harvey-Brain,1800.00.00-Corsair-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1800.00.00-Corsair-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1800.00.00-Corsair-boat.pdf,1800.00.00,1800.00.00,161,, +1791.00.00,1791,1791,Unprovoked,AUSTRALIA,New South Wales,Port Jackson,,"female, an Australian aboriginal",F,,"FATAL, ""bitten in two""",Y,,,"G.P. Whitley; D. Baldridge, p.162",1791.00.00-aboriginal woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1791.00.00-aboriginal woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1791.00.00-aboriginal woman.pdf,1791.00.00,1791.00.00,160,, +1788.05.10,10-May-1788,1788,Boat,AUSTRALIA,New South Wales,Sydney Harbor,Fishing,boat,,,"No injury to occupants, shark bit oar and rudder",N,,,"G.P. Whitley citing J. Cobley, Sydney Cove, p. 138",1788.05.10-Sydney,http://sharkattackfile.net/spreadsheets/pdf_directory/1788.05.10-Sydney,http://sharkattackfile.net/spreadsheets/pdf_directory/1788.05.10-Sydney,1788.05.10,1788.05.10,159,, +1787.07.05,05-Jul-1787,1787,Unprovoked,St Helena,,Landing Place,Swimming,Private Isaac Hicksled,M,,FATAL,Y,,,"H.R. Janisch (1885), Extracts from the St. Helena Archives",1787.07.05-Hicksled.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1787.07.05-Hicksled.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1787.07.05-Hicksled.pdf,1787.07.05,1787.07.05,158,, +1785.09.26.R,Reported 26-Sep-1785,1785,Unprovoked,ENGLAND,Sussex,Brighton,,,M,,Human remains recovered from shark,Y,,Tiger shark?,"C. Moore, GSAF",1785.09.26.R-Brighton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1785.09.26.R-Brighton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1785.09.26.R-Brighton.pdf,1785.09.26.R,1785.09.26.R,157,, +1779.00.00,1779,1779,Unprovoked,USA,Hawaii,"Maliu, Hawai'i",Surfing,Nu'u-anu-pa'a hu,M,young,"FATAL, buttock lacerated ",Y,,,"G.H. Balazs; J. Borg, p.68; L. Taylor (1993), pp.94-95",1779.00.00-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1779.00.00-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1779.00.00-Hawaii.pdf,1779.00.00,1779.00.00,156,, +1776.00.00.R,Reported 1776,1776,Unprovoked,GUINEA,,,Murder,African slave,M,,FATAL,Y,,,T. Pennant,1776.00.00.R-Slave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00.R-Slave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00.R-Slave.pdf,1776.00.00.R,1776.00.00.R,155,, +1776.00.00.b,1776,1776,Boat,GREENLAND,,,,Occupants of skin boats,,,FATAL,Y,,White sharks,T. Pennant,1776.00.00-Greenland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00-Greenland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00-Greenland.pdf,1776.00.00.b,1776.00.00.b,154,, +1771.07.12.R,Reported 12-Jul-1771,1771,Unprovoked,USA,,Damiscotte,Fishing,male,M,,FATAL,Y,,,"C. Moore, GSAF",1771.07.12.R-Damiscotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1771.07.12.R-Damiscotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1771.07.12.R-Damiscotte.pdf,1771.07.12.R,1771.07.12.R,153,, +1767.00.00,1767,1767,Invalid,FRANCE,Cte d'Azur ,St. Tropez,Bathing,Samuel Matthews,M,,Lacerations to arm & leg,N,,Description of shark does not ring true,,1767.00.00-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1767.00.00-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1767.00.00-Matthews.pdf,1767.00.00,1767.00.00,152,, +1764.00.00,1764,1764,Unprovoked,SPAIN,,Guadalquivir River,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1764.00.00-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1764.00.00-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1764.00.00-Spain.pdf,1764.00.00,1764.00.00,151,, +1758.00.00,1758,1758,Unprovoked,MEDITERRANEAN SEA,,,"Fell overboard from a frigate & was swallowed by a shark. The captain fired a gun at the shark, and ""the creature cast the man out of his throat.""",sailor,M,,"""He was taken up alive and but little injured."" ",N,,"""The fish was harpooned, dried, and presented to the sailor, who went round Europe exhibiting it It was said to be 20 feet long.",A.M. Hodgkin,1758.00.00-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1758.00.00-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1758.00.00-Mediterranean.pdf,1758.00.00,1758.00.00,150,, +1749.00.00,1749,1749,Unprovoked,CUBA,Havana Province,Havana Harbor,Swimming,Brook Watson,M,14,"Right leg severed at knee. In 1796 he became Lord Mayor of London. In 1778 he commissioned American artist, John Singleton Copley, to paint the incident: Watson and the Shark",N,,,GSAF,1749.00.00-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1749.00.00-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1749.00.00-Watson.pdf,1749.00.00,1749.00.00,149,, +1755.00.00,1755,1755,Unprovoked,SWEDEN,Skagerrak arm of the North Sea,Bohusln,,Fishermen,M,,,UNKNOWN,,,"C. Moore, GSAF",1755.00.00-Sweden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1755.00.00-Sweden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1755.00.00-Sweden.pdf,1755.00.00,1755.00.00,148,, +1748.00.00,1748,1748,Unprovoked,PANAMA,Las Perlas archipelago,Taboga & Isla del Rey,Pearl diving,African slaves,M,,FATAL,Y,,,"J. Castro, et al",1748.00.00.R-LasPerlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1748.00.00.R-LasPerlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1748.00.00.R-LasPerlas.pdf,1748.00.00,1748.00.00,147,, +1742.12.17,17-Dec-1742,1742,Unprovoked,,,Carlisle Bay,Swimming,2 impressed seamen,M,,FATAL,Y,,,"C. Moore, GSAF",1742.12.17-AdviceSeamen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1742.12.17-AdviceSeamen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1742.12.17-AdviceSeamen.pdf,1742.12.17,1742.12.17,146,, +1738.04.06.R,Reported 06-Apr-1738,1738,Unprovoked,ITALY,Sicily,Strait of Messina,Swimming,male,M,,FATAL,Y,,,"C. Moore, GSAF",1738.04.06.R-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1738.04.06.R-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1738.04.06.R-Messina.pdf,1738.04.06.R,1738.04.06.R,145,, +1733.00.00,1733,1733,Invalid,ICELAND,Bardestrand,Talkknefiord,,,,,"Partial hominid remains recovered from shark, probable drowning and scavenging",,,,E. Olafsen,1733.00.00-Iceland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1733.00.00-Iceland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1733.00.00-Iceland.pdf,1733.00.00,1733.00.00,144,, +1721.06.00,June 1721,1721,Unprovoked,ITALY,Sardinia,"Ponte della Maddelena,",Swimming,male,M,,"FATAL, partial remains recovered from sharks gut",Y,,"White shark, 1600-lb female ",F. Ricciardi; A. De Maddalena. ,1721.06.00-Maddalena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1721.06.00-Maddalena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1721.06.00-Maddalena.pdf,1721.06.00,1721.06.00,143,, +1703.03.26,26-Mar-1703,1703,Unprovoked,BARBADOS,Southwest coast,Carlisle Bay,Swimming,"Samuel Jennings, a deserter from the British frigate Milford",M,19,"Hand and foot severely bitten, surgically amputated",N,Night,,"W.R.Cutter, Vol.1, p.252",1703.03.26-Jennings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1703.03.26-Jennings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1703.03.26-Jennings.pdf,1703.03.26,1703.03.26,142,, +1700.00.00.c,1700s,1700,Unprovoked,FRANCE,,Nice,,child,M,,FATAL,Y,,,"A. De Maddalena, citing Cazeils (1998)",1700.00.00.c-Nice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.c-Nice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.c-Nice.pdf,1700.00.00.c,1700.00.00.c,141,, +1700.00.00.b,1700s,1700,Unprovoked,FRANCE,Cte d'Azur ,Antibes,Bathing,seaman,M,,Leg severed,N,,White shark,"A. De Maddalena, citing Cazeils (1998)",1700.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.b-Antibes.pdf,1700.00.00.b,1700.00.00.b,140,, +1700.00.00.a,1700s,1700,Unprovoked,BARBADOS,,,Bathing,seaman from the York,M,,FATAL,Y,,,"Tioga Eagle, 10.26/ 1842",1700.00.00.a-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.a-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.a-Barbados.pdf,1700.00.00.a,1700.00.00.a,139,, +1642.00.00.b,Late 1600s Reported 1728,1642,Invalid,GUINEA,,,Went overboard,crew member of the Nieuwstadt,M,,FATAL,Y,,,"History of the Pyrates, by D. Defoe, Vol. 2, p.28",1642.00.00.b-Nieuwstadt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00.b-Nieuwstadt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00.b-Nieuwstadt.pdf,1642.00.00.b,1642.00.00.b,138,, +1638.00.00.R,Reported 1638,1638,Unprovoked,,,,,sailors,M,,,UNKNOWN,,,Sir Thomas Herbert,1638.00.00.R-Herbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1638.00.00.R-Herbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1638.00.00.R-Herbert,1638.00.00.R,1638.00.00.R,137,, +1637.00.00.R,Reported 1637,1637,Unprovoked,INDIA,West Bengal,Hooghly River mouth,Wading,Hindu pilgrims,,,,UNKNOWN,,,"H. Edwards, p.31, citing Sebastian Manrique",1637.00.00.R-Manrique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1637.00.00.R-Manrique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1637.00.00-Manrique.pdf,1637.00.00.R,1637.00.00.R,136,, +1617.00.00.R,Reported 1617,1617,Unprovoked,INDIA,West Bengal,Ganges Delta,,Indian people,,,,UNKNOWN,,,"H. Edwards, p.31, citing Samuel Purchas",1617.00.00-Purchas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1617.00.00-Purchas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1617.00.00-Purchas.pdf,1617.00.00.R,1617.00.00.R,135,, +1642.00.00,1642,1642,Unprovoked,USA,New York ,Between Manhattan and The Bronx,Swimming ,Antony Van Corlear,M,,FATAL,Y,,,"Knickerbocker's History of New York, by Washington Irving",1642.00.00-Corlear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00-Corlear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00-Corlear.pdf,1642.00.00,1642.00.00,134,, +1595.00.00,1595,1595,Unprovoked,INDIA,Kerala,River Cochin,Ship lay at anchor & man was working on its rudder,male,M,,"Leg severed mid-thigh, hand severed, arm above elbow and part of buttocks. Not known if he survived",UNKNOWN,,,The Voyage of John Huyghen van Linschoten,1595.00.00-Cochin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1595.00.00-Cochin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1595.00.00-Cochin.pdf,1595.00.00,1595.00.00,133,, +1580.01.10.R,Letter dated 10-Jan-1580,1580,Unprovoked,Between PORTUGAL & INDIA,,,Man fell overboard from ship. Those on board threw a rope to him with a wooden block & were pulling him to the ship,male,M,,"FATAL. ""Shark tore him to pieces.",Y,,,"G.P. Whitley, p. 10",1580.01.10.R-Portugal-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1580.01.10.R-Portugal-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1580.01.10.R-Portugal-India.pdf,1580.01.10.R,1580.01.10.R,132,, +1555.00.00,1555,1555,Unprovoked,,,,Swimming,male,M,,,UNKNOWN,,,Olaus Magnus,1555.00.00 - Olaus Magnus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1555.00.00 - Olaus Magnus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1555.00.00 - Olaus Magnus.pdf,1555.00.00,1555.00.00,131,, +1554.00.00,Ca. 1554,1554,Unprovoked,FRANCE,Nice & Marseilles,,,males (wearing armor),M,,,UNKNOWN,,Possibly white sharks,G. Rondelet ,1554.00.00-Rondelet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1554.00.00-Rondelet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1554.00.00-Rondelet.pdf,1554.00.00,1554.00.00,130,, +1543.00.00,Ca. 1543,1543,Unprovoked,VENEZUELA,Magarita or Cubagua Islands,,Pearl diving,Indian slave,M,,FATAL,Y,,,J. Castro,1543.00.00.R-LasCasas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1543.00.00.R-LasCasas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1543.00.00.R-LasCasas.pdf,1543.00.00,1543.00.00,129,, +0500.00.00,Circa 500 A.D.,500,Unprovoked,MEXICO,,,,male,,,Foot severed,N,,,J. Castro,500AD-Mexico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/500AD-Mexico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/500AD-Mexico.pdf,0500.00.00,0500.00.00,128,, +0077.00.00,77 A.D.,77,Unprovoked,,Ionian Sea,,Sponge diving,males,M,,FATAL,Y,,,Perils mentioned by Pliny the Elder (23 A.D. to 76 A.D.),77AD-Pliny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/77AD-Pliny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/77AD-Pliny.pdf,0077.00.00,0077.00.00,127,, +0005.00.00,Ca. 5 A.D.,5,Unprovoked,AUSTRALIA,New South Wales,Bondi,,male,M,,Aboriginal rock carving depicts man being attacked by a shark,N,,,Waverly Library,0005.00.00-AustralianAboriginal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/0005.00.00-AustralianAboriginal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/0005.00.00-AustralianAboriginal.pdf,0005.00.00,0005.00.00,126,, +0.0214,Ca. 214 B.C.,0,Unprovoked,,Ionian Sea,,Ascending from a dive,"Tharsys, a sponge diver",M,,"FATAL, shark/s bit him in two",Y,,,"Reported by Greek poet, Leonidas of Tarentum (228 B.C to 174 B.C.); V.M. Coppleson (1958), pp.4 &5",214BC-Tharsys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/214BC-Tharsys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/214BC-Tharsys.pdf,0.0214,0.0214,125,, +0.0336,Ca. 336.B.C..,0,Unprovoked,GREECE,Piraeus,In the haven of Cantharus,Washing his pig in preparation for a religious ceremony,A candidate for initiation,M,,"FATAL, shark ""bit off all lower parts of him up to the belly""",Y,,,Plutarch (45 - 125 A.D.) in Life of Phoecion (Phoecion 28),336-BC-Carnathus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/336-BC-Carnathus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/336-BC-Carnathus.pdf,0.0336,0.0336,124,, +0.0493,493 B.C.,0,Sea Disaster,GREECE,Off Thessaly,,Shipwrecked Persian Fleet,,M,,Herodotus tells of sharks attacking men in the water,N,,,Herodotus (485 - 425 B.C.),493BC-PersianFleet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/493BC-PersianFleet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/493BC-PersianFleet.pdf,0.0493,0.0493,123,, +0.0725,Ca. 725 B.C.,0,Sea Disaster,ITALY,Tyrrhenian Sea,"Vase found during excavations at Lacco Ameno, Ischia",,,,,"Vase depicts shipwrecked sailors, one of whom is being attacked by a shark",N,,,V.M. Coppleson (1958),725BC-vase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/725BC-vase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/725BC-vase.pdf,0.0725,0.0725,122,, +ND-0153,1990 or 1991,0,Unprovoked,KENYA,Mombasa,Kilindini,Diving,Conway Plough & Dr. Jonathan Higgs,M,,Conway's leg was bitten Higgs injury was FATAL,N,,,A.J. Venter,ND-0153-Plough-Higgs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0153-Plough-Higgs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0153-Plough-Higgs.pdf,ND-0153,ND-0153,121,, +ND-0152,Before 2016,0,Unprovoked,KENYA,Mombasa,Kilindini,Diving,Hamisi Njenga,M,,FATAL,Y,,,eadestination,ND-0152-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0152-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0152-Kenya.pdf,ND-0152,ND-0152,120,, +ND-0151,Before Oct-2009,0,Unprovoked,PANAMA,Bocas del Toro Province,Red Frog Beach,Swimming/,male,M,20,FATAL,Y,,,C. Mendieta & A. Duarte,ND-0151-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0151-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0151-Panama.pdf,ND-0151,ND-0151,119,, +ND-0150,Before 1934,0,Unprovoked,URUGUAY,Rocha,"Isla Chica, La Paloma",Swimming,,,,Foot bitten,N,,,"Di Candia, 2004",ND-0150-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0150-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0150-Uruguay.pdf,ND-0150,ND-0150,118,, +ND-0149,Before 1934,0,Unprovoked,URUGUAY,Rocha ,"Playa del Barco, La Pedrera",Swimming,Maciello,M,,FATAL,Y,,,"Di Candia, 2004",ND-0149-Maciello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0149-Maciello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0149-Maciello.pdf,ND-0149,ND-0149,117,, +ND-0148,2009?,0,Unprovoked,USA,South Carolina,Charleston,Swimming,Rick Donnis,M,,Minor injury,N,,,WBTV-News3,ND-0148-Donnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0148-Donnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0148-Donnis.pdf,ND-0148,ND-0148,116,, +ND-1940,Before 1930,0,Unprovoked,PAPUA NEW GUINEA,Morobe Province,Simbang,Swimming to canoe,male,M,,FATAL,Y,,,"The Advertiser (Adelaide), 6/2/1933",ND-0140-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0140-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0140-NewGuinea.pdf,ND-1940,ND-1940,115,, +ND-0139,1880-1899,0,Unprovoked,AUSTRALIA,Queensland,Boonooroo,,Lassie,F,15,Foot severed,N,,,"Courier Mail, 6/30/1951",ND-0139-Lassie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0139-Lassie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0139-Lassie.pdf,ND-0139,ND-0139,114,, +ND-0138,Before 1909,0,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,Fell into the water,Lieutenant Hexton,M,,FATAL,Y,,,"Brisbane Courier, 1/28/1909",ND-0138-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0138-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0138-Hexton.pdf,ND-0138,ND-0138,113,, +ND-0136,Before 2012,0,Unprovoked,USA,Hawaii,Oahu,Diving,Ken O'Keefe,M,,Minor laceration to hand,N,," Galapagos shark, 6'",K. O'keefe,ND-0136-Keefe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0136-Keefe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0136-Keefe.pdf,ND-0136,ND-0136,112,, +ND-0135,Before 1916,0,Unprovoked,BERMUDA,,,,male,M,,FATAL,Y,,,"New York Times, 7/22/1916",ND-0135-Bermuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0135-Bermuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0135-Bermuda.pdf,ND-0135,ND-0135,111,, +ND-0134,Between 1951-1963,0,Unprovoked,GREECE,,,Swimming,Martha Hatagouei,F,,FATAL,Y,,,"C. Moore, GSAF",ND-0134-Greece-Hatagouei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0134-Greece-Hatagouei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0134-Greece-Hatagouei.pdf,ND-0134,ND-0134,110,, +ND-0133,Before 1908,0,Unprovoked,USA,California,"Monterey, Montery County",Fishing for basking sharks,males,M,,FATAL PROVOKED INCIDENTS,Y,,Basking shark,C.F. Holder,ND-0133-BaskingShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0133-BaskingShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0133-BaskingShark.pdf,ND-0133,ND-0133,109,, +ND-0132,Before 1900,0,Provoked,INDIA,,,,male,M,,Cut to arm while roping shark PROVOKED INCIDENT,N,,,Naval Journal (undated),ND-0132-India-fight-with-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0132-India-fight-with-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0132-India-fight-with-shark.pdf,ND-0132,ND-0132,108,, +ND-0130,Before 1876,0,Unprovoked,LEBANON,,,Collecting fish ,Kahlifeh,M,,Posterior thigh bitten,N,,,"C. Moore, GSAF",ND-0130-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0130-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0130-Lebanon.pdf,ND-0130,ND-0130,107,, +ND-0129,Before 2012,0,Unprovoked,SPAIN,Canary Islands,Tenerife,Skin diving,,,,Injury required 16 stitches,N,,,"C. Moore, GSAF",ND-0129-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0129-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0129-Tenerife.pdf,ND-0129,ND-0129,106,, +ND-0127,Before 2011,0,Unprovoked,SUDAN,Red Sea State,,Snorkeling,female,F,,Leg severely bitten,N,,,"E. Ritter, GSAF",ND-0127-Sudan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0127-Sudan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0127-Sudan.pdf,ND-0127,ND-0127,105,, +ND-0124,Before 2011,0,Provoked,,,,,Phillip Peters,M,,Bitten by captive sharks PROVOKED INCIDENTS,N,,,"Watertown Daily Times, 7/8/2011",ND-0124-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0124-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0124-Peters.pdf,ND-0124,ND-0124,104,, +ND-0123,Before 2009,0,Unprovoked,USA,Florida,,Shark tagging,Danniell Washington,F,21,Severe abrasion to forearm from captive shark PROVOKED INICIDENT,N,18h00,"Blacktip shark, 5'",Daniell Washington,ND-0123-Daniell-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0123-Daniell-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0123-Daniell-Washington.pdf,ND-0123,ND-0123,103,, +ND-0122,Beforer 1994,0,Unprovoked,USA,Florida,"Lost Tree Village, Palm Beach County",Surfing,C.M,M,,Legs bitten,N,,,M. Vorenberg,ND-0122-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0122-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0122-CM.pdf,ND-0122,ND-0122,102,, +ND-0119,Before 1963,0,Unprovoked,DJIBOUTI,Gulf of Tadjoura,,A dhow capsized,Passenger & crew,,,FATAL,Y,,,A. C. Doyle,ND-0119-Gulf-of-Tadjoura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0119-Gulf-of-Tadjoura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0119-Gulf-of-Tadjoura.pdf,ND-0119,ND-0119,101,, +ND-0118,1896-1913,0,Unprovoked,LIBYA,Cyrenaica,Kirinaiki,Sponge diving,a diver from Kalymnos,M,,FATAL,Y,,,M. Bardanis,ND-0118-Stathis-partner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0118-Stathis-partner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0118-Stathis-partner.pdf,ND-0118,ND-0118,100,, +ND-0116,Before 1936,0,Unprovoked,AUSTRALIA,,,Net-fishing,August Eichmann,M,,Calf bitten,N,,,"Courier-Mail, 1/11/1936",ND-0116-Eichmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0116-Eichmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0116-Eichmann.pdf,ND-0116,ND-0116,99,, +ND-0115,Before 08-Jun-1912,0,Unprovoked,NEW ZEALAND,North Island,"Point Halsey, Wellington",,Kai-tawaro,M,,FATAL,Y,,,"Evening Post, 6/8/1912",ND-0115-Wellington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0115-Wellington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0115-Wellington.pdf,ND-0115,ND-0115,98,, +nd-0114,Before 2012,0,Unprovoked,,,In a river feeding into the Bay of Bengal,Netting shrimp,Sametra Mestri,F,,Hand severed,N,,,National Georgraphic Television,ND-0114-BayOfBengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0114-BayOfBengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0114-BayOfBengal.pdf,nd-0114,nd-0114,97,, +ND-0113,Before 1911,0,Unprovoked,VIETNAM,,,Bathing,male,M,,Foot bitten,N,,,"Daily Kennebec Journal, 3/27/ 1911",ND-0113-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0113-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0113-Vietnam.pdf,ND-0113,ND-0113,96,, +ND-0111,Before 1901,0,Unprovoked,SRI LANKA,Northern Province,Mannar,Fishing?,male,M,,Foot bitten,N,,,Gould & Pyle,ND-0111-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0111-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0111-SriLanka.pdf,ND-0111,ND-0111,95,, +ND.0110,"No date, late 1960s",0,Unprovoked,VENEZUELA,Los Roques Islands,,Spearfishing ,4 French divers,M,,"FATAL (x3), one survived with minor injuries",Y,,said to involve 2.5 m hammerhead sharks,http://waterco.com.br/ataque_tubarao.htm,ND-0110-FrenchDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0110-FrenchDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0110-FrenchDivers.pdf,ND.0110,ND.0110,94,, +ND-0109,Before 2006,0,Unprovoked,USA,Florida,"Tampa Bay, Hillsborough County",Wade-fishing,Ed Snyder,M,,"No injury, shark rammed his back",N,,,Fishingworld.com,ND-0109-Ed-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0109-Ed-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0109-Ed-Snyder.pdf,ND-0109,ND-0109,93,, +ND-0108,Before 2003,0,Unprovoked,GREECE,Dodecanese Islands,Near Symi Island,Free diving for sponges,male,M,,FATAL,Y,,,M. Kalafatas,ND-0108-SpongeDiver-Symi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0108-SpongeDiver-Symi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0108-SpongeDiver-Symi.pdf,ND-0108,ND-0108,92,, +ND-0107,Before 2004,0,Boat,MOZAMBIQUE,Inhambane Province,Off Inhambane,Fishing,"4.8-metre skiboat, Occupants: Rod Salm & 4 friends",,,"No injury to occupants, shark bumped boat",N,,Whale shark,South African Shark Attack File,ND-0107-Inhambane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0107-Inhambane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0107-Inhambane.pdf,ND-0107,ND-0107,91,, +ND-0106,Before 1962,0,Unprovoked,SOUTH AFRICA,Western Cape Province,"Murray Bay, Robben Island",Swimming,"male, a mental patient",M,,"FATAL, body not recovered",Y,,,"L.Green, A Decent Fellow doesn't Work, p.225",ND-0106-MentalPatient.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0106-MentalPatient.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0106-MentalPatient.pdf,ND-0106,ND-0106,90,, +ND.0104,1950s,0,Unprovoked,AUSTRALIA,Torres Strait,,Helmet diving,male,M,,"No injury, helmet bitten",N,,Tiger shark,"A. Seekee & R. Callinan, Courier-Mail, 7/7/1995, p.7",ND-0104-HelmetDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0104-HelmetDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0104-HelmetDiver.pdf,ND.0104,ND.0104,89,, +ND.0102,"No date, Before 1963",0,Unprovoked,BAHREIN,,,Pearl diving,male,M,,FATAL,Y,,Tiger shark,A.C. Doyle,ND-0102-Bahrein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0102-Bahrein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0102-Bahrein.pdf,ND.0102,ND.0102,88,, +ND.0100,2003?,0,Unprovoked,BAHAMAS,Andros Islands,Great Guana Cay,Spearfishing ,C.D. Dollar,M,,Swim fin bitten,N,,1.8 m [6'] shark,"R.D. Weeks, GSAF",ND-0100-CDDollar.pdf,Q93http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0100-CDDollar.pdf,Q93http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0100-CDDollar.pdf,ND.0100,ND.0100,87,, +ND.0097,No date,0,Unprovoked,USA,Florida,"Key West, Monroe County",Kitesurfing,Paul Menta,M,,Hand bitten,N,,,Internet,ND-0097-PaulMenta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0097-PaulMenta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0097-PaulMenta.pdf,ND.0097,ND.0097,86,, +ND.0096,No date,0,Unprovoked,REUNION,Grand'Anse,Petite-le,yachtsman in a zodiac,,M,,Survived,N,,,G. Van Grevelynghe,ND-0096-Zodiac-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0096-Zodiac-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0096-Zodiac-Reunion.pdf,ND.0096,ND.0096,85,, +ND.0095,Before Feb-1998,0,Unprovoked,SOLOMON ISLANDS,Malaita Province,Waibana Passage,Diving,Albert Raiti,,,Lacerations to hands and knee,N,,,"Islands Magazine, 2/1998, p.76",ND-0095-AlbertRaiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0095-AlbertRaiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0095-AlbertRaiti.pdf,ND.0095,ND.0095,84,, +ND.0094,"No date, Before May-1996",0,Unprovoked,KOREA,South Korea,Cheju Island,Diving,"female, a Hae Nyeo",F,,"FATAL, injured while diving, then shark bit her ",Y,,,"K. Amsler, Divernet.com",ND-0094-HaeNyeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0094-HaeNyeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0094-HaeNyeo.pdf,ND.0094,ND.0094,83,, +ND.0093,"No date, Before Mar-1995",0,Unprovoked,FRENCH POLYNESIA,Tuamotus,Rangiroa,Fishing,male,M,,"Speared a shark, fell overboard and another shark severed his arm ",N,,,J. Windh,ND-0093-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0093-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0093-Rangiroa.pdf,ND.0093,ND.0093,82,, +ND.0091,Before 1996,0,Unprovoked,SUDAN,Red Sea State,Sha'ab Rumi,Diving,Erik Bjurstrom,M,,"No injury, BC ripped",N,,Silvertip shark,"E. Bjurstrom,",ND-0091-Bjurstrom-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0091-Bjurstrom-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0091-Bjurstrom-RedSea.pdf,ND.0091,ND.0091,81,, +ND.0090,"No date, Before Aug-1989",0,Unprovoked,VANUATU,Malampa Province,Malakula,,female,F,,FATAL,Y,,,S. Combs,ND-0090-Vanuatu-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0090-Vanuatu-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0090-Vanuatu-female.pdf,ND.0090,ND.0090,80,, +ND.0089,"No date, Before Aug-1987",0,Provoked,VANUATU,Malampa Province,"Hokai, Malakula",Attempting to drive shark from area,a chief,M,,Speared shark broke outrigger of canoe throwing man into the water & shark bit his buttock PROVOKED INCIDENT,N,,A large hammerhead shark,S. Combs,ND-0089-VanuatuChief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0089-VanuatuChief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0089-VanuatuChief.pdf,ND.0089,ND.0089,79,, +ND.0088,"No date, Before 1987",0,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,Mr. Jabar-Kaaby,M,,Foot severed,N,,Bull shark,B. Coad & F. Papahn,ND-0088-Jabar-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0088-Jabar-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0088-Jabar-Kaaby.pdf,ND.0088,ND.0088,78,, +ND.0087,"No date, Before 1975",0,Provoked,USA,Florida,"Riviera Beach, Palm Beach County",Skin diving. Grabbed shark's tail; shark turned & grabbed diver's ankle & began towing him to deep water,Carl Bruster,M,19,"Ankle punctured & lacerated, hands abraded PROVOKED INCIDENT",N,,"Nurse shark, 2.1 m [7'] ","R. Skocik, p.176",ND-0087-Carl-Bruster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0087-Carl-Bruster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0087-Carl-Bruster.pdf,ND.0087,ND.0087,77,, +ND.0086,"No date, Before 1975",0,Invalid,PAPUA NEW GUINEA,Milne Bay Province," D'Entrecasteaux islands, 20 miles off the coast",Scuba diving,Dan Hogan,M,,Said to be fatal but incident highly questionable,Y,,"Tiger shark, 4.6 m to 6 m [15' to 20'] ","F. Dennis, pp.15-16",ND-0086-DanHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0086-DanHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0086-DanHogan.pdf,ND.0086,ND.0086,76,, +ND.0085,"No date, Before 1969",0,Unprovoked,RED SEA?,,,Free diving,Jill Reed,F,,"Shoulder scratched, swim fin bitten",N,Morning,,"Captain T. Falcon-Barker, pp. 91-93",ND-0085-JillReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0085-JillReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0085-JillReed.pdf,ND.0085,ND.0085,75,, +ND.0084,"No date, Before 3-Jan-1967",0,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Keiskamma River mouth,Crossing river on a raft,Sinsa,M,,"FATAL, leg severed",Y,,,"Whitaker, The Sun, 1/3/1967",ND-0084-Sinsa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0084-Sinsa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0084-Sinsa.pdf,ND.0084,ND.0084,74,, +ND.0083,"No date, Before 1963",0,Unprovoked,USA,California,"LaJolla, San Diego County","Free diving, collecting sand dollars",Charles Fleming,M,,Calf bitten,N,,"Shovelnose guitarfish, adult male ","C. Limbaugh in Sharks & Survival, pp.77-78",ND-0083-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0083-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0083-Fleming.pdf,ND.0083,ND.0083,73,, +ND.0082,"No date, Before 8-May-1965",0,Unprovoked,GREECE,Island of Volos,Eastern shore,Swimming,woman,F,,FATAL,Y,,,"Sydney Morning Herald, 5/8/1965 ",ND-0082-Volos-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0082-Volos-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0082-Volos-Greece.pdf,ND.0082,ND.0082,72,, +ND.0081,"No date, Before 1963",0,Invalid,USA,Hawaii,"Portlock, Oahu",Diving,Val Valentine,M,,"A 4.3 m [14'] shark made threat display. No injury, no attack",N,,,B. Sojka & D. Lloyd,ND-0081-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0081-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0081-Valentine.pdf,ND.0081,ND.0081,71,, +ND.0078,"No date, Before 1902",0,Unprovoked,USA,Florida,"Mosquito Inlet (Ponce Inlet), Volusia County",Canoeing,male,M,,FATAL,Y,,,"W.H. Gregg, p.19; L. Schultz & M. Malin, p.533",ND-0078-canoeist-mail-carrier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0078-canoeist-mail-carrier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0078-canoeist-mail-carrier.pdf,ND.0078,ND.0078,70,, +ND.0076,"No date, Before 1902",0,Unprovoked,MEDITERRANEAN SEA,,,,"male, a ship carpenter",M,,FATAL,Y,,,"W.H. Gregg, p.22; L. Schultz & M. Malin, p.529",ND-0076-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0076-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0076-Mediterranean.pdf,ND.0076,ND.0076,69,, +ND.0075,"No date, Before 1963",0,Unprovoked,AUSTRALIA,Torres Strait,,Diving for trochus,male,M,,Calf removed,N,,0.9 m [3'] shark,"G.P. Whitley (1952), p.192, cites A. Marshall",ND-0075-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0075-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0075-TorresStrait.pdf,ND.0075,ND.0075,68,, +ND.0074,"No date, After August 1926 and before 1936",0,Unprovoked,AUSTRALIA,Western Australia,Cossack Creek,Pearl diving,Ted Luck,M,,Leg bitten,N,,,"N. Caldwell; T. Peake, GSAF",ND-0074-Ted-Luck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0074-Ted-Luck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0074-Ted-Luck.pdf,ND.0074,ND.0074,67,, +ND.0073,"No date, Before 1963",0,Unprovoked,SINGAPORE,,"Keppel Harbor, 2 miles from Singapore city center",Swimming,,,,Recovered,N,,,"V.M. Coppleson (1958), p.266",ND-0073-KeppelHarbourSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0073-KeppelHarbourSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0073-KeppelHarbourSingapore.pdf,ND.0073,ND.0073,66,, +ND.0069,Before 1962,0,Unprovoked,FIJI,,,Spearfishing ,Dalton Baldwin,M,27,"No injury, bumped by shark which took speared fish",N,,1.8 m [6'] shark,"V. M. Coppleson (1962), p.253",ND-0069-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0069-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0069-Dalton.pdf,ND.0069,ND.0069,65,, +ND.0068,Before 1962,0,Unprovoked,MOZAMBIQUE,Maputo Province,Santa Maria Peninsula,Skindiving,Les Bishop,M,36,Bumped by sharks,N,,"""A pack of sharks""",L. Bishop; V.M. Coppleson (1962),ND-0068-LesBishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0068-LesBishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0068-LesBishop.pdf,ND.0068,ND.0068,64,, +ND.0066,Before 1961,0,Unprovoked,SEYCHELLES,Amirante Islands,Marie Louise Island,Swimming from capsized pirogue,Aristede,M,,FATAL,Y,,Tiger shark,"Travis, pp. 326-327",ND-0066-Aristede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0066-Aristede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0066-Aristede.pdf,ND.0066,ND.0066,63,, +ND.0065,1960s,0,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,Fishing from a small boat & put his hand in the water while holding a dead fish,male,M,25,Right hand severed,N,Afternoon,,B.W. Coad & L.A.J. Al-Hassan,ND-0065-deadfish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0065-deadfish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0065-deadfish.pdf,ND.0065,ND.0065,62,, +ND.0064,1960s,0,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River ,Swimming naked near a date palm where many dates fell into the water,male,M,6,Arm severed,N,Afternoon,Bull shark,B.W. Coad & L.A.J. Al-Hassan,ND-0064-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0064-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0064-Shatt-al-Arab.pdf,ND.0064,ND.0064,61,, +ND.0063,1960s,0,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River near Abu al Khasib,Swimming in section of river used for washing clothes & cooking utensils,male,M,16,Right leg lacerated & surgically amputated,N,Afternoon,Bull shark,B.W. Coad & L.A.J. Al-Hassan,ND-0063-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0063-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0063-Shatt-al-Arab.pdf,ND.0063,ND.0063,60,, +ND.0062,Before 1960,0,Unprovoked,BAHAMAS,Andros Islands,,,"male, a sponge Diver",M,,Lower leg and forearm severed,N,,"White shark, 7' to 8'","Star-Ledger (Newark, NJ), 8/22/1960",ND-0062-Spongediver-Andros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0062-Spongediver-Andros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0062-Spongediver-Andros.pdf,ND.0062,ND.0062,59,, +ND.0060,Before 19-Jun-1959,0,Unprovoked,USA,California,"Capistrano, Orange County",,girl,F,,Leg injured,N,,"White shark, 1,900-lb ","B. Walton, Sun (San Bernardino), 6/19/1959 ",ND-0060-Capistrano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0060-Capistrano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0060-Capistrano.pdf,ND.0060,ND.0060,58,, +ND.0059,Before 24 Apr-1959,0,Unprovoked,BERMUDA,Paget,Paget Parish,Spearfishing ,Ross Doe,M,,Shoulder abraded by skin of shark,N,,,"Mentioned in letter from L. S. Mowbray dated 4/24/1959; L. Schultz & M. Malin, p.516",ND-0059-RossDoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0059-RossDoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0059-RossDoe.pdf,ND.0059,ND.0059,57,, +ND.0058,Before 1958,0,Unprovoked,FIJI,Kadavu Island Group,"18.8S, 178.25E",Swimming with fish attached to belt,Fijian girl,F,,"""Severely injured when fish were seized by shark""",N,,,"V.M. Coppleson (1958), p.259",ND-0058-Fiji-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0058-Fiji-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0058-Fiji-girl.pdf,ND.0058,ND.0058,56,, +ND.0057,Before 1958,0,Unprovoked,MADAGASCAR,Toamasina Province,Tamatave,Bathing,male,M,,FATAL,Y,,,"V.M. Coppleson (1958), p.259",ND-0057-Tamatave-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0057-Tamatave-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0057-Tamatave-Madagascar.pdf,ND.0057,ND.0057,55,, +ND.0056,Before 1958,0,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Standing,Horton Chase,M,,Abrasions & bruises hip to ankle,N,,,"V.M. Coppleson (1956), p.255; R.F. Hutton",ND-0056-HortonChase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0056-HortonChase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0056-HortonChase.pdf,ND.0056,ND.0056,54,, +ND.0055,Before 1958,0,Provoked,BAHAMAS,Andros Islands,Middle Bight,Testing movie camera in full diving dress,John Fenton,M,,Shark bit diver's sleeve after he patted it on the head PROVOKED INCIDENT,N,,"Nurse shark, 2.1 m [7']","V.M. Coppleson (1958), p.97",ND-0055-JohnFenton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0055-JohnFenton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0055-JohnFenton.pdf,ND.0055,ND.0055,53,, +ND.0054,Before 1958,0,Unprovoked,INDONESIA,Riau Province,"Natuna Islands, between Sumatra & Kalimantan in the South China Sea",Swimming near anchored ship, a ship's engineer,M,,"FATAL, leg severed ",Y,,,"C.H. Townsend, p. 172; V.M. Coppleson, p.258",ND-0054-NatunaIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0054-NatunaIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0054-NatunaIslands.pdf,ND.0054,ND.0054,52,, +ND.0053,Before 1958,0,Unprovoked,INDIA,Maharashtra,"Malwan, near Ratnagiri",,male,M,,FATAL,Y,,,"V.M. Coppleson (1958), p.261",ND-0053-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0053-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0053-India.pdf,ND.0053,ND.0053,51,, +ND.0052,Before 1957,0,Unprovoked,NICARAGUA,Lake Nicaragua (fresh water),A village north of San Carlos,Lashing logs together when he fell into the water,an Indian,M,,"FATAL, leg severed ",Y,,"Bull shark caught, leg recovered & buried beside the man's body","F. Poli, pp.150-153",ND-0052-NicaraguanIndian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0052-NicaraguanIndian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0052-NicaraguanIndian.pdf,ND.0052,ND.0052,50,, +ND.0051,Before 1957,0,Provoked,CUBA,Havana Province,Cojimar,"Shark fishing, knocked overboard",Sandrillio,M,50,"FATAL, hip bitten PROVOKED INCIDENT",Y,,,"F. Poli, pp.75, 81-83",ND-0051-Sandrillio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0051-Sandrillio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0051-Sandrillio.pdf,ND.0051,ND.0051,49,, +ND.0049,Before 1956,0,Unprovoked,MARSHALL ISLANDS,Bikini Atoll,,Swimming,male,M,,Buttocks bitten,N,,,J.E. Lasch,ND-0049-BikiniAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0049-BikiniAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0049-BikiniAtoll.pdf,ND.0049,ND.0049,48,, +ND.0048,Before 1956,0,Unprovoked,KIRIBATI,Phoenix Islands,Canton Island,Diving,Dusty Rhodes,M,,No injury,N,,,"J. Oetzel, Skin Diver Magazine, March 1956, p.19 ",ND-0048-DustyRhodes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0048-DustyRhodes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0048-DustyRhodes.pdf,ND.0048,ND.0048,47,, +ND.0047,Before Mar-1956,0,Unprovoked,NORTH PACIFIC OCEAN,,Wake Island,"Fishing, wading with string of fish",male,M,,Survived,N,,,"J. Oetzel, Skin Diver Magazine, March 1956, p.19 ",ND-0047-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0047-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0047-WakeIsland.pdf,ND.0047,ND.0047,46,, +ND.0046,Before 1952,0,Unprovoked,KIRIBATI,Gilbert Islands,Nonouti,,Gilbertese fisherman,M,,FATAL,Y,,,"Grimble, pp. 142-143",ND-0046-GilberteseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0046-GilberteseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0046-GilberteseFisherman.pdf,ND.0046,ND.0046,45,, +ND.0044,1941-1945,0,Sea Disaster,,,,A group of survivors on a raft for 17-days,C.,,,"FATAL, shark leapt into raft and bit the man who died 4 hours later",Y,Late afternoon,1.2 m [4'] shark,"G.A. Llano in Airmen Against the Sea, p.69",ND-0044-C.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0044-C.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0044-C.pdf,ND.0044,ND.0044,44,, +ND.0043,"""During the war"" 1943-1945",0,Unprovoked,SOLOMON ISLANDS,New Georgia,"Munda Island, Roviana Lagoon",Floating on his back,American male,M,,Buttock bitten,N,,,"W. Chapman (1949) Fishing in Troubled Waters, p.182",ND-0043-American-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0043-American-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0043-American-male.pdf,ND.0043,ND.0043,43,, +ND.0042,"""Before the war""",0,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island?,Free diving,Mortakee,M,,Head bitten,N,,,Press clipping dated 6/28/1950,ND-0042-Mortakee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0042-Mortakee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0042-Mortakee.pdf,ND.0042,ND.0042,42,, +ND.0041,"Said to be 1941-1945, more likely 1945",0,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Fishing in ankle-deep water,an old fisherman,M,,"FATAL, foot lacerated & crushed ",Y,,,"Lt. Col. R.S. Hunt, pp. 80-81",ND-0041-OldFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0041-OldFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0041-OldFisherman.pdf,ND.0041,ND.0041,41,, +ND.0040,1941-1945,0,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",,a local dignitary,M,,"FATAL, femoral artery severed, died 12 days later ",Y,,,Lt. Col. R.S. Hunt of the Royal Army Medical Corp,ND-0040-Local dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0040-Local dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0040-Local dignitary.pdf,ND.0040,ND.0040,40,, +ND.0039,1941-1945,0,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River","Standing, washing rear wheels of his ambulance in ankle-deep water",I.A.S. C. driver ,M,,"FATAL, fell into water when shark seized his right ankle, right leg bitten, left forearm & hand lacerated, all tissue stripped from right arm ",Y,,,"Lt.Col. R.S. Hunt, p.79",ND-0039-AmbulanceDriver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0039-AmbulanceDriver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0039-AmbulanceDriver.pdf,ND.0039,ND.0039,39,, +ND.0038,1941-1942,0,Unprovoked,IRAQ,Basrah,Shatt-el Arab River near a small boat stand,Swimming,male,M,13 or 14,"FATAL, left leg bitten with severe blood loss",Y,Afternoon,Bull shark,B.W. Coad & L.A.J. Al-Hassan,ND-0038-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0038-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0038-Shatt-al-Arab.pdf,ND.0038,ND.0038,38,, +ND.0037,1940 - 1950,0,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,,"FATAL, died of sepsis",Y,,"""a black-tipped shark""",G.F. Mead,ND-0037-PearlDiver-sepsis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0037-PearlDiver-sepsis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0037-PearlDiver-sepsis.pdf,ND.0037,ND.0037,37,, +ND.0036,1940 - 1950,0,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a fisherman / diver,M,,Buttocks bitten,N,,6' shark,G.F. Mead,ND-0036-Fisherman-SaudiArabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0036-Fisherman-SaudiArabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0036-Fisherman-SaudiArabia.pdf,ND.0036,ND.0036,36,, +ND.0035,1940 - 1950,0,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,,"Foot lacerated, surgically amputated",N,,,G.F. Mead,ND-0035-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0035-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0035-PearlDiver.pdf,ND.0035,ND.0035,35,, +ND.0034,1940-1946,0,Sea Disaster,PACIFIC OCEAN,,,,"8 US airmen in the water, 1 was bitten by a shark",M,,FATAL,Y,,,G. Llano,ND-0034-8-men-on-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0034-8-men-on-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0034-8-men-on-raft.pdf,ND.0034,ND.0034,34,, +ND.0033,Before 1905,0,Provoked,BURMA,,,Carrying a supposedly dead shark by its mouth,boy,M,,4 finger severed by 'dead' shark. PROVOKED ACCIDENT,N,,,"Massillon Independent, 3/1905",ND-0033-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0033-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0033-Burma.pdf,ND.0033,ND.0033,33,, +ND.0032,World War II,0,Sea Disaster,PAPUA NEW GUINEA,Between New Ireland & New Britain,St. Georges Channel,Spent 8 days in dinghy,pilot,M,,"No injury, but shark removed the heel & part of his left shoe",N,,,"G.A. Llano in Airmen Against the Sea, p.69; V.M. Coppleson (1962), p.257",ND-0032-RabaulPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0032-RabaulPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0032-RabaulPilot.pdf,ND.0032,ND.0032,32,, +ND.0031,World War II,0,Sea Disaster,PAPUA NEW GUINEA,Madang Province,Off Lae,"Aircraft ditched in the sea, swimming ashore",male,M,,Shark bumped him,N,,,"V.M. Coppleson (1962), p.257",ND-0031-Ditched-Aircrat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0031-Ditched-Aircrat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0031-Ditched-Aircrat.pdf,ND.0031,ND.0031,31,, +ND.0030,Before 1905,0,Unprovoked,BURMA,,,Bathing,male,M,,Fatal x 2,Y,,,"Massillon Independent, 3/1905",ND-0030-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0030-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0030-Burma.pdf,ND.0030,ND.0030,30,, +ND.0028,A few years before 1938,0,Boat,ITALY,Adriatic Sea,,Wooden fishing boat,Occupant: Mr. Maciotta,M,,No injury to occupant; shark capsized boat,N,,White shark,A. De Maddalena; Anon. (1938),ND-0028-Maciotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0028-Maciotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0028-Maciotta.pdf,ND.0028,ND.0028,29,, +ND.0027,No date,0,Unprovoked,GREECE,Dodecanese Islands,Symi Island,Sponge diving,Psarofa-gomenes,M,,Head bitten,N,,,M. N. Kalafatas ,ND-0027-Psarofagomenos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0027-Psarofagomenos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0027-Psarofagomenos.pdf,ND.0027,ND.0027,28,, +ND.0026,Early 1930s,0,Unprovoked,BELIZE,,,Standing,a servant,M,16,FATAL,Y,,12' tiger shark,Mitchell-Hedges,ND-0026-Belize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0026-Belize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0026-Belize.pdf,ND.0026,ND.0026,27,, +ND.0025,Before 1927,0,Unprovoked,AUSTRALIA,New South Wales,"Spectacle Island, Port Jackson",,"male, the Sergeant of Marines",M,,,UNKNOWN,,,H. Capper,ND-0025-Sgt-SpectacleIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0025-Sgt-SpectacleIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0025-Sgt-SpectacleIsland.pdf,ND.0025,ND.0025,26,, +ND.0024,Between 1918 & 1939,0,Unprovoked,REUNION,Saint-Denis,Barachois,Swimming,,,,FATAL,Y,,,G. Van Grevelynghe,ND-0024-Barachois-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0024-Barachois-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0024-Barachois-Reunion.pdf,ND.0024,ND.0024,25,, +ND.0023,No date,0,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Wading,Madelaine Dalton,F,,Ankle bitten,N,,,"L. Green in Tavern of the Seas, p.182",ND-0023-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0023-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0023-Dalton.pdf,ND.0023,ND.0023,24,, +ND.0022,No date,0,Unprovoked,AUSTRALIA,,,Pearl diving,Jaringoorli,M,,Lacerations to thigh,N,,,"Adelaide Advertiser, 1/11/1940",ND-0022-Jaringoorli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0022-Jaringoorli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0022-Jaringoorli.pdf,ND.0022,ND.0022,23,, +ND.0021,No date,0,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban ,Swimming in pool formed by construction of a wharf,Indian boy,M,,"FATAL, leg severed ",Y,,,"L. Green in South African Beachcomber, p.97",ND-0021-DurbanIndianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0021-DurbanIndianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0021-DurbanIndianBoy.pdf,ND.0021,ND.0021,22,, +ND.0020,1920 -1923,0,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,,3 Japanese divers,M,,FATAL,Y,,,"V.M. Coppleson (1958), p.241",ND-0020-3JapaneseDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0020-3JapaneseDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0020-3JapaneseDivers.pdf,ND.0020,ND.0020,21,, +ND.0019,Before 1921,0,Unprovoked,USA,Florida,"Gadsden Point, Tampa Bay",Fishing,James Kelley,M,,2-inch lacerations,N,,,"T. Helm, p.219",ND-0019-Kelley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0019-Kelley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0019-Kelley.pdf,ND.0019,ND.0019,20,, +ND.0018,Before 1911,0,Unprovoked,VIETNAM,Ba Ria-Vung Tau Province,V?ng Tu,Swimming around anchored ship,crewman,M,,Foot bitten,N,,,"Daily Kennebec Journal, 3/27/1911",ND-0018-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0018-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0018-Vietnam.pdf,ND.0018,ND.0018,19,, +ND.0017,Before 1921,0,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban ,Crew swimming alongside their anchored ship,male,M,,FATAL,Y,,,"Captain A. Anderson, Natal Mercury, 12/31/1921; M. Levine, GSAF",ND-0017-alongside-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0017-alongside-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0017-alongside-ship.pdf,ND.0017,ND.0017,18,, +ND.0016,Before 1921,0,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,4 men were bathing,male,M,,FATAL,Y,,,"Captain A. Anderson, Natal Mercury, 12/31/1921; M. Levine, GSAF",ND-0016- Durban-PostOffice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0016- Durban-PostOffice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0016- Durban-PostOffice.pdf,ND.0016,ND.0016,17,, +ND.0015,Before 1917,0,Unprovoked,FIJI,Moala Island,,Wreck of large double sailing canoe,20 Fijians,,,"FATAL, 18 people were killed by sharks, 2 survived",Y,,,"Fijian Society papers presented April 17, 1918; W.E., p.191",ND-0015-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0015-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0015-FijianCanoe.pdf,ND.0015,ND.0015,16,, +ND.0014,Before 17-Jul-1916,0,Unprovoked,USA,North Carolina ,Somewhere between Hatteras and Beaufort,Swimming,"""youthful male""",M,,"""Lost leg""",N,,,"C. Creswell, GSAF; Wilmington Star, 7/17/1916 ",ND-0014-pre1916-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0014-pre1916-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0014-pre1916-NorthCarolina.pdf,ND.0014,ND.0014,15,, +ND.0013,No date (3 days after preceding incident) & prior to 19-Jul-1913,0,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Fishing,a native fisherman,M,,"FATAL, body not recovered but shark was caught with the man's loincloth in its gut shortly afterwards.",Y,,,"Rural New Yorker, 7/19/1913 ",ND-0013-Durban-native-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0013-Durban-native-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0013-Durban-native-fisherman.pdf,ND.0013,ND.0013,14,, +ND.0012,Before 19-Jul-1913,0,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Wading,a young Scotsman,M,,"FATAL, leg stripped of flesh ",Y,,,"Rural New Yorker, 7/19/1913",ND-0012-Durban-Scotsman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0012-Durban-Scotsman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0012-Durban-Scotsman.pdf,ND.0012,ND.0012,13,, +ND.0011,Before 1911,0,Unprovoked,ASIA?,,,Swimming,Mr. Masury,M,,Foot severed,N,,,"Ref. J. T. Dubois in N.Y. Sun, 3/19/1911 ",ND-0011-Masury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0011-Masury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0011-Masury.pdf,ND.0011,ND.0011,12,, +ND.0010,Circa 1862,0,Unprovoked,USA,Hawaii,Puna,,A chiefess,F,,Ankle bitten,N,,,Captain W. Young,ND-0010-Puna Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0010-Puna Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0010-Puna Hawaii.pdf,ND.0010,ND.0010,11,, +ND.0009,Before 1906,0,Unprovoked,AUSTRALIA,,,Fishing,boy,M,,"FATAL, knocked overboard by tail of shark & carried off by shark ",Y,,Blue pointer,"NY Sun, 9/9/1906, referring to account by Louis Becke",ND-0009-boy-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0009-boy-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0009-boy-Australia.pdf,ND.0009,ND.0009,10,, +ND.0008,Before 1906,0,Unprovoked,AUSTRALIA,,,Fishing,fisherman,M,,FATAL,Y,,Blue pointer,"NY Sun, 9/9/1906, referring to account by Louis Becke",ND-0008-Fisherman2-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0008-Fisherman2-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0008-Fisherman2-Australia.pdf,ND.0008,ND.0008,9,, +ND.0007,Before 1906,0,Unprovoked,AUSTRALIA,,,Fishing,fisherman,M,,FATAL,Y,,Blue pointers,"NY Sun, 9/9/1906, referring to account by Louis Becke",ND-0007 - Fisherman-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0007 - Fisherman-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0007 - Fisherman-Australia.pdf,ND.0007,ND.0007,8,, +ND.0006,Before 1906,0,Unprovoked,AUSTRALIA,New South Wales, ,Swimming,Arab boy,M,,FATAL,Y,,Said to involve a grey nurse shark that leapt out of the water and seized the boy but species identification is questionable,"L. Becke in New York Sun, 9/9/1906; L. Schultz & M. Malin, p.523",ND-0006-ArabBoy-Prymount.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0006-ArabBoy-Prymount.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0006-ArabBoy-Prymount.pdf,ND.0006,ND.0006,7,, +ND.0005,Before 1903,0,Unprovoked,AUSTRALIA,Western Australia,Roebuck Bay,Diving,male,M,,FATAL,Y,,,"H. Taunton; N. Bartlett, p. 234",ND-0005-RoebuckBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf,ND.0005,ND.0005,6,, +ND.0004,Before 1903,0,Unprovoked,AUSTRALIA,Western Australia,,Pearl diving,Ahmun,M,,FATAL,Y,,,"H. Taunton; N. Bartlett, pp. 233-234",ND-0004-Ahmun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf,ND.0004,ND.0004,5,, +ND.0003,1900-1905,0,Unprovoked,USA,North Carolina,Ocracoke Inlet,Swimming,Coast Guard personnel,M,,FATAL,Y,,,"F. Schwartz, p.23; C. Creswell, GSAF",ND-0003-Ocracoke_1900-1905.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf,ND.0003,ND.0003,4,, +ND.0002,1883-1889,0,Unprovoked,PANAMA,,"Panama Bay 8N, 79W",,Jules Patterson,M,,FATAL,Y,,,"The Sun, 10/20/1938",ND-0002-JulesPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf,ND.0002,ND.0002,3,, +ND.0001,1845-1853,0,Unprovoked,CEYLON (SRI LANKA),Eastern Province,"Below the English fort, Trincomalee",Swimming,male,M,15,"FATAL. ""Shark bit him in half, carrying away the lower extremities"" ",Y,,,S.W. Baker,ND-0001-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf,ND.0001,ND.0001,2,, diff --git a/module-2_labs/lab-advanced-pandas/your-code/main.ipynb b/module-2_labs/lab-advanced-pandas/your-code/main.ipynb index 664f71f..d77ce02 100644 --- a/module-2_labs/lab-advanced-pandas/your-code/main.ipynb +++ b/module-2_labs/lab-advanced-pandas/your-code/main.ipynb @@ -12,13 +12,14 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# import numpy and pandas\n", "\n", - "import " + "import numpy as np\n", + "import pandas as pd" ] }, { @@ -32,7 +33,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -54,10 +55,128 @@ "cell_type": "code", "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Serial No.GRE ScoreTOEFL ScoreUniversity RatingSOPLORCGPAResearchChance of Admit
0133711844.54.59.6510.92
1231610433.03.58.0010.72
2332211033.52.58.6710.80
3431410322.03.08.2100.65
4533011554.53.09.3410.90
\n", + "
" + ], + "text/plain": [ + " Serial No. GRE Score TOEFL Score University Rating SOP LOR CGPA \\\n", + "0 1 337 118 4 4.5 4.5 9.65 \n", + "1 2 316 104 3 3.0 3.5 8.00 \n", + "2 3 322 110 3 3.5 2.5 8.67 \n", + "3 4 314 103 2 2.0 3.0 8.21 \n", + "4 5 330 115 5 4.5 3.0 9.34 \n", + "\n", + " Research Chance of Admit \n", + "0 1 0.92 \n", + "1 1 0.72 \n", + "2 1 0.80 \n", + "3 0 0.65 \n", + "4 1 0.90 " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "admissions.head()\n" ] }, { @@ -71,10 +190,31 @@ "cell_type": "code", "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Serial No. 0\n", + "GRE Score 0\n", + "TOEFL Score 0\n", + "University Rating 0\n", + "SOP 0\n", + "LOR 0\n", + "CGPA 0\n", + "Research 0\n", + "Chance of Admit 0\n", + "dtype: int64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "admissions.isna().sum()\n" ] }, { @@ -88,12 +228,168 @@ "cell_type": "code", "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GRE ScoreTOEFL ScoreUniversity RatingSOPLORCGPAResearchChance of Admit
Serial No.
133711844.54.59.6510.92
231610433.03.58.0010.72
332211033.52.58.6710.80
431410322.03.08.2100.65
533011554.53.09.3410.90
\n", + "
" + ], + "text/plain": [ + " GRE Score TOEFL Score University Rating SOP LOR CGPA \\\n", + "Serial No. \n", + "1 337 118 4 4.5 4.5 9.65 \n", + "2 316 104 3 3.0 3.5 8.00 \n", + "3 322 110 3 3.5 2.5 8.67 \n", + "4 314 103 2 2.0 3.0 8.21 \n", + "5 330 115 5 4.5 3.0 9.34 \n", + "\n", + " Research Chance of Admit \n", + "Serial No. \n", + "1 1 0.92 \n", + "2 1 0.72 \n", + "3 1 0.80 \n", + "4 0 0.65 \n", + "5 1 0.90 " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", + "\n", + "admissions.set_index('Serial No.',inplace=True)\n", + "admissions.head()\n", "\n" ] }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "GRE Score 385\n", + "TOEFL Score 385\n", + "University Rating 385\n", + "SOP 385\n", + "LOR 385\n", + "CGPA 385\n", + "Research 385\n", + "Chance of Admit 385\n", + "dtype: int64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "admissions.count()" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -103,12 +399,153 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 7, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "admissions_new = admissions.copy()\n", + "len(admissions_new.groupby(['GRE Score','CGPA'])) == len(admissions)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TOEFL ScoreUniversity RatingSOPLORResearchChance of Admit
GRE ScoreCGPA
3379.6511844.54.510.92
3168.0010433.03.510.72
3228.6711033.52.510.80
3148.2110322.03.000.65
3309.3411554.53.010.90
\n", + "
" + ], + "text/plain": [ + " TOEFL Score University Rating SOP LOR Research \\\n", + "GRE Score CGPA \n", + "337 9.65 118 4 4.5 4.5 1 \n", + "316 8.00 104 3 3.0 3.5 1 \n", + "322 8.67 110 3 3.5 2.5 1 \n", + "314 8.21 103 2 2.0 3.0 0 \n", + "330 9.34 115 5 4.5 3.0 1 \n", + "\n", + " Chance of Admit \n", + "GRE Score CGPA \n", + "337 9.65 0.92 \n", + "316 8.00 0.72 \n", + "322 8.67 0.80 \n", + "314 8.21 0.65 \n", + "330 9.34 0.90 " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "admissions_new.set_index(['GRE Score','CGPA'],drop=True,inplace=True)\n", + "admissions_new.head()" ] }, { @@ -127,12 +564,126 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 9, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GRE ScoreCGPATOEFL ScoreUniversity RatingSOPLORResearchChance of Admit
03379.6511844.54.510.92
13168.0010433.03.510.72
23228.6711033.52.510.80
33148.2110322.03.000.65
43309.3411554.53.010.90
\n", + "
" + ], + "text/plain": [ + " GRE Score CGPA TOEFL Score University Rating SOP LOR Research \\\n", + "0 337 9.65 118 4 4.5 4.5 1 \n", + "1 316 8.00 104 3 3.0 3.5 1 \n", + "2 322 8.67 110 3 3.5 2.5 1 \n", + "3 314 8.21 103 2 2.0 3.0 0 \n", + "4 330 9.34 115 5 4.5 3.0 1 \n", + "\n", + " Chance of Admit \n", + "0 0.92 \n", + "1 0.72 \n", + "2 0.80 \n", + "3 0.65 \n", + "4 0.90 " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "admissions_new.reset_index(drop=False,inplace=True)\n", + "admissions_new.head()" ] }, { @@ -146,12 +697,205 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 10, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GRE ScoreCGPATOEFL ScoreUniversity RatingSOPLORResearchChance of Admit
03379.6511844.54.510.92
43309.3411554.53.010.90
103289.1011244.04.510.78
193289.5011655.05.010.94
203349.7011955.04.510.95
...........................
3793299.2311144.54.010.89
3803249.0411033.53.510.82
3813259.1110733.03.510.84
3823309.4511645.04.510.91
3843339.6611745.04.010.95
\n", + "

101 rows × 8 columns

\n", + "
" + ], + "text/plain": [ + " GRE Score CGPA TOEFL Score University Rating SOP LOR Research \\\n", + "0 337 9.65 118 4 4.5 4.5 1 \n", + "4 330 9.34 115 5 4.5 3.0 1 \n", + "10 328 9.10 112 4 4.0 4.5 1 \n", + "19 328 9.50 116 5 5.0 5.0 1 \n", + "20 334 9.70 119 5 5.0 4.5 1 \n", + ".. ... ... ... ... ... ... ... \n", + "379 329 9.23 111 4 4.5 4.0 1 \n", + "380 324 9.04 110 3 3.5 3.5 1 \n", + "381 325 9.11 107 3 3.0 3.5 1 \n", + "382 330 9.45 116 4 5.0 4.5 1 \n", + "384 333 9.66 117 4 5.0 4.0 1 \n", + "\n", + " Chance of Admit \n", + "0 0.92 \n", + "4 0.90 \n", + "10 0.78 \n", + "19 0.94 \n", + "20 0.95 \n", + ".. ... \n", + "379 0.89 \n", + "380 0.82 \n", + "381 0.84 \n", + "382 0.91 \n", + "384 0.95 \n", + "\n", + "[101 rows x 8 columns]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "admissions_new[(admissions_new['CGPA']>9) & (admissions_new['Research']==1)]\n" ] }, { @@ -163,12 +907,23 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0.8019999999999999" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "admissions_new[(admissions_new['CGPA']>9) & (admissions_new['SOP']<3.5)]['Chance of Admit'].mean()\n" ] }, { @@ -186,7 +941,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": {}, "outputs": [], "source": [ @@ -194,7 +949,8 @@ " # This function takes a column from a dataframe and returns a standardized column by subtracting the column's mean\n", " # and dividing by the column's standard deviation.\n", " \n", - " # Your code here:" + " # Your code here:\n", + " return (col-col.mean())/col.std(ddof=0)" ] }, { @@ -206,12 +962,254 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", - "\n" + "\n", + "CGPA_std = standardize(admissions_new['CGPA'])\n", + "GRE_std = standardize(admissions_new['GRE Score'])\n", + "LOR_std = standardize(admissions_new['LOR'])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GRE ScoreCGPATOEFL ScoreUniversity RatingSOPLORResearchChance of AdmitCGPA_stdGRE_stdLOR_std
03379.6511844.54.510.921.7501741.7556631.193197
13168.0010433.03.510.72-0.992501-0.0634500.076840
23228.6711033.52.510.800.1211910.456297-1.039517
33148.2110322.03.000.65-0.643433-0.236698-0.481338
43309.3411554.53.010.901.2348841.149292-0.481338
....................................
3803249.0411033.53.510.820.7362160.6295460.076840
3813259.1110733.03.510.840.8525710.7161700.076840
3823309.4511645.04.510.911.4177291.1492921.193197
3833128.7810333.54.000.670.304036-0.4099470.635019
3843339.6611745.04.010.951.7667961.4091650.635019
\n", + "

385 rows × 11 columns

\n", + "
" + ], + "text/plain": [ + " GRE Score CGPA TOEFL Score University Rating SOP LOR Research \\\n", + "0 337 9.65 118 4 4.5 4.5 1 \n", + "1 316 8.00 104 3 3.0 3.5 1 \n", + "2 322 8.67 110 3 3.5 2.5 1 \n", + "3 314 8.21 103 2 2.0 3.0 0 \n", + "4 330 9.34 115 5 4.5 3.0 1 \n", + ".. ... ... ... ... ... ... ... \n", + "380 324 9.04 110 3 3.5 3.5 1 \n", + "381 325 9.11 107 3 3.0 3.5 1 \n", + "382 330 9.45 116 4 5.0 4.5 1 \n", + "383 312 8.78 103 3 3.5 4.0 0 \n", + "384 333 9.66 117 4 5.0 4.0 1 \n", + "\n", + " Chance of Admit CGPA_std GRE_std LOR_std \n", + "0 0.92 1.750174 1.755663 1.193197 \n", + "1 0.72 -0.992501 -0.063450 0.076840 \n", + "2 0.80 0.121191 0.456297 -1.039517 \n", + "3 0.65 -0.643433 -0.236698 -0.481338 \n", + "4 0.90 1.234884 1.149292 -0.481338 \n", + ".. ... ... ... ... \n", + "380 0.82 0.736216 0.629546 0.076840 \n", + "381 0.84 0.852571 0.716170 0.076840 \n", + "382 0.91 1.417729 1.149292 1.193197 \n", + "383 0.67 0.304036 -0.409947 0.635019 \n", + "384 0.95 1.766796 1.409165 0.635019 \n", + "\n", + "[385 rows x 11 columns]" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "adm_2 = admissions_new.assign(CGPA_std=CGPA_std,GRE_std=GRE_std,LOR_std=LOR_std)\n", + "adm_2" ] }, { @@ -223,7 +1221,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 27, "metadata": {}, "outputs": [], "source": [ @@ -235,6 +1233,26 @@ "decision_choice = choices(std_columns, k=admissions.shape[0])" ] }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "RangeIndex(start=0, stop=385, step=1)" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "adm_2.index" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -244,12 +1262,274 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", - "\n" + "adm_2 = adm_2.assign(decision_column=adm_2.lookup(adm_2.index,decision_choice))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
gre_scorecgpatoefl_scoreuniversity_ratingsoplorresearchchance_of_admitcgpa_stdgre_stdlor_stddecision_columndecision
03479.6511844.54.510.921.7501741.7556631.1931971.1931971
13268.0010433.03.510.72-0.992501-0.0634500.076840-0.0634500
23328.6711033.52.510.800.1211910.456297-1.0395170.4562970
33248.2110322.03.000.65-0.643433-0.236698-0.481338-0.2366980
43409.3411554.53.010.901.2348841.149292-0.4813381.2348841
..........................................
3803349.0411033.53.510.820.7362160.6295460.0768400.0768400
3813359.1110733.03.510.840.8525710.7161700.0768400.8525711
3823409.4511645.04.510.911.4177291.1492921.1931971.1492921
3833228.7810333.54.000.670.304036-0.4099470.635019-0.4099470
3843439.6611745.04.010.951.7667961.4091650.6350191.7667961
\n", + "

385 rows × 13 columns

\n", + "
" + ], + "text/plain": [ + " gre_score cgpa toefl_score university_rating sop lor research \\\n", + "0 347 9.65 118 4 4.5 4.5 1 \n", + "1 326 8.00 104 3 3.0 3.5 1 \n", + "2 332 8.67 110 3 3.5 2.5 1 \n", + "3 324 8.21 103 2 2.0 3.0 0 \n", + "4 340 9.34 115 5 4.5 3.0 1 \n", + ".. ... ... ... ... ... ... ... \n", + "380 334 9.04 110 3 3.5 3.5 1 \n", + "381 335 9.11 107 3 3.0 3.5 1 \n", + "382 340 9.45 116 4 5.0 4.5 1 \n", + "383 322 8.78 103 3 3.5 4.0 0 \n", + "384 343 9.66 117 4 5.0 4.0 1 \n", + "\n", + " chance_of_admit cgpa_std gre_std lor_std decision_column decision \n", + "0 0.92 1.750174 1.755663 1.193197 1.193197 1 \n", + "1 0.72 -0.992501 -0.063450 0.076840 -0.063450 0 \n", + "2 0.80 0.121191 0.456297 -1.039517 0.456297 0 \n", + "3 0.65 -0.643433 -0.236698 -0.481338 -0.236698 0 \n", + "4 0.90 1.234884 1.149292 -0.481338 1.234884 1 \n", + ".. ... ... ... ... ... ... \n", + "380 0.82 0.736216 0.629546 0.076840 0.076840 0 \n", + "381 0.84 0.852571 0.716170 0.076840 0.852571 1 \n", + "382 0.91 1.417729 1.149292 1.193197 1.149292 1 \n", + "383 0.67 0.304036 -0.409947 0.635019 -0.409947 0 \n", + "384 0.95 1.766796 1.409165 0.635019 1.766796 1 \n", + "\n", + "[385 rows x 13 columns]" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "adm_2\n" ] }, { @@ -261,14 +1541,280 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", + "\n", + "\n", + "adm_2['decision']=np.where(adm_2['decision_column']> 0.8,1,0)\n", + "\n", "\n" ] }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GRE ScoreCGPATOEFL ScoreUniversity RatingSOPLORResearchChance of AdmitCGPA_stdGRE_stdLOR_stddecision_columndecision
03379.6511844.54.510.921.7501741.7556631.1931971.1931971
13168.0010433.03.510.72-0.992501-0.0634500.076840-0.0634500
23228.6711033.52.510.800.1211910.456297-1.0395170.4562970
33148.2110322.03.000.65-0.643433-0.236698-0.481338-0.2366980
43309.3411554.53.010.901.2348841.149292-0.4813381.2348841
..........................................
3803249.0411033.53.510.820.7362160.6295460.0768400.0768400
3813259.1110733.03.510.840.8525710.7161700.0768400.8525711
3823309.4511645.04.510.911.4177291.1492921.1931971.1492921
3833128.7810333.54.000.670.304036-0.4099470.635019-0.4099470
3843339.6611745.04.010.951.7667961.4091650.6350191.7667961
\n", + "

385 rows × 13 columns

\n", + "
" + ], + "text/plain": [ + " GRE Score CGPA TOEFL Score University Rating SOP LOR Research \\\n", + "0 337 9.65 118 4 4.5 4.5 1 \n", + "1 316 8.00 104 3 3.0 3.5 1 \n", + "2 322 8.67 110 3 3.5 2.5 1 \n", + "3 314 8.21 103 2 2.0 3.0 0 \n", + "4 330 9.34 115 5 4.5 3.0 1 \n", + ".. ... ... ... ... ... ... ... \n", + "380 324 9.04 110 3 3.5 3.5 1 \n", + "381 325 9.11 107 3 3.0 3.5 1 \n", + "382 330 9.45 116 4 5.0 4.5 1 \n", + "383 312 8.78 103 3 3.5 4.0 0 \n", + "384 333 9.66 117 4 5.0 4.0 1 \n", + "\n", + " Chance of Admit CGPA_std GRE_std LOR_std decision_column decision \n", + "0 0.92 1.750174 1.755663 1.193197 1.193197 1 \n", + "1 0.72 -0.992501 -0.063450 0.076840 -0.063450 0 \n", + "2 0.80 0.121191 0.456297 -1.039517 0.456297 0 \n", + "3 0.65 -0.643433 -0.236698 -0.481338 -0.236698 0 \n", + "4 0.90 1.234884 1.149292 -0.481338 1.234884 1 \n", + ".. ... ... ... ... ... ... \n", + "380 0.82 0.736216 0.629546 0.076840 0.076840 0 \n", + "381 0.84 0.852571 0.716170 0.076840 0.852571 1 \n", + "382 0.91 1.417729 1.149292 1.193197 1.149292 1 \n", + "383 0.67 0.304036 -0.409947 0.635019 -0.409947 0 \n", + "384 0.95 1.766796 1.409165 0.635019 1.766796 1 \n", + "\n", + "[385 rows x 13 columns]" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "adm_2" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -278,12 +1824,27 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 21, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "decision\n", + "0 299\n", + "1 86\n", + "Name: decision_column, dtype: int64" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "adm_2.groupby(['decision']).count()['decision_column']\n" ] }, { @@ -299,14 +1860,278 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 22, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", + "\n", + "adm_2.columns = adm_2.columns.str.replace('.','').str.replace(' ','_').str.lower()\n", "\n" ] }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
gre_scorecgpatoefl_scoreuniversity_ratingsoplorresearchchance_of_admitcgpa_stdgre_stdlor_stddecision_columndecision
03379.6511844.54.510.921.7501741.7556631.1931971.1931971
13168.0010433.03.510.72-0.992501-0.0634500.076840-0.0634500
23228.6711033.52.510.800.1211910.456297-1.0395170.4562970
33148.2110322.03.000.65-0.643433-0.236698-0.481338-0.2366980
43309.3411554.53.010.901.2348841.149292-0.4813381.2348841
..........................................
3803249.0411033.53.510.820.7362160.6295460.0768400.0768400
3813259.1110733.03.510.840.8525710.7161700.0768400.8525711
3823309.4511645.04.510.911.4177291.1492921.1931971.1492921
3833128.7810333.54.000.670.304036-0.4099470.635019-0.4099470
3843339.6611745.04.010.951.7667961.4091650.6350191.7667961
\n", + "

385 rows × 13 columns

\n", + "
" + ], + "text/plain": [ + " gre_score cgpa toefl_score university_rating sop lor research \\\n", + "0 337 9.65 118 4 4.5 4.5 1 \n", + "1 316 8.00 104 3 3.0 3.5 1 \n", + "2 322 8.67 110 3 3.5 2.5 1 \n", + "3 314 8.21 103 2 2.0 3.0 0 \n", + "4 330 9.34 115 5 4.5 3.0 1 \n", + ".. ... ... ... ... ... ... ... \n", + "380 324 9.04 110 3 3.5 3.5 1 \n", + "381 325 9.11 107 3 3.0 3.5 1 \n", + "382 330 9.45 116 4 5.0 4.5 1 \n", + "383 312 8.78 103 3 3.5 4.0 0 \n", + "384 333 9.66 117 4 5.0 4.0 1 \n", + "\n", + " chance_of_admit cgpa_std gre_std lor_std decision_column decision \n", + "0 0.92 1.750174 1.755663 1.193197 1.193197 1 \n", + "1 0.72 -0.992501 -0.063450 0.076840 -0.063450 0 \n", + "2 0.80 0.121191 0.456297 -1.039517 0.456297 0 \n", + "3 0.65 -0.643433 -0.236698 -0.481338 -0.236698 0 \n", + "4 0.90 1.234884 1.149292 -0.481338 1.234884 1 \n", + ".. ... ... ... ... ... ... \n", + "380 0.82 0.736216 0.629546 0.076840 0.076840 0 \n", + "381 0.84 0.852571 0.716170 0.076840 0.852571 1 \n", + "382 0.91 1.417729 1.149292 1.193197 1.149292 1 \n", + "383 0.67 0.304036 -0.409947 0.635019 -0.409947 0 \n", + "384 0.95 1.766796 1.409165 0.635019 1.766796 1 \n", + "\n", + "[385 rows x 13 columns]" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "adm_2" + ] + }, { "cell_type": "markdown", "metadata": {}, @@ -316,14 +2141,63 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 24, "metadata": {}, "outputs": [], "source": [ "# Your code here:\n", - "\n" + "\n", + "adm_2['gre_score'] = np.where(adm_2['gre_score']>=4,adm_2['gre_score']+10,adm_2['gre_score'])\n" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [], + "source": [ + "adjusted_gre = pd.cut(adm_2['gre_score'],bins=4)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 (337.5, 350.0]\n", + "1 (325.0, 337.5]\n", + "2 (325.0, 337.5]\n", + "3 (312.5, 325.0]\n", + "4 (337.5, 350.0]\n", + " ... \n", + "380 (325.0, 337.5]\n", + "381 (325.0, 337.5]\n", + "382 (337.5, 350.0]\n", + "383 (312.5, 325.0]\n", + "384 (337.5, 350.0]\n", + "Name: gre_score, Length: 385, dtype: category\n", + "Categories (4, interval[float64]): [(299.95, 312.5] < (312.5, 325.0] < (325.0, 337.5] < (337.5, 350.0]]" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "adjusted_gre" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "code", "execution_count": null, From 35730ef41b985c748255b23efc3efa474da1c06d Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sun, 27 Oct 2019 10:03:12 +0100 Subject: [PATCH 16/30] Added Answers --- .../your-code/cleaned_shark_attacks.csv | 56 +-- .../your-code/cleaned_shark_attacks.pkl | Bin 1580410 -> 1580410 bytes .../your-code/data-wrangling_ivy.ipynb | 319 +++++++----------- 3 files changed, 143 insertions(+), 232 deletions(-) diff --git a/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv b/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv index c61efd8..bf320de 100644 --- a/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv +++ b/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv @@ -1047,7 +1047,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4949,2008.04.26.a,26-Apr-08,2008,Provoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Mark Pattison,M,Puncture wounds to right foot PROVOKED INCIDENT,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.a-Pattison.pdf 4948,2008.04.25,25-Apr-08,2008,Unprovoked,Usa,California,"Solana Beach, San Diego County",Swimming,Dave Martin,M,FATAL,Y,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.25-DaveMartin.pdf 4947,2008.04.20.b,20-Apr-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,female,M,Cuts & punctures to right foot,N,S. Petersohn,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.b-Girl.pdf -4946,2008.04.20.a,20-Apr-08,2008,Unprovoked,Australia,New South Wales,Crescent Head,Unknown,Jamie Adlington,M,Unknown,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.a-Adlington.pdf +4946,2008.04.20.a,20-Apr-08,2008,Unprovoked,Australia,New South Wales,Crescent Head,Unknown,Jamie Adlington,M,Unknown,UNKNOWN,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.a-Adlington.pdf 4945,2008.04.19.R,19-Apr-2008,2008,Invalid,South africa,KwaZulu-Natal,Aliwal Shoal,Free-diving,Jean-Francois Avenier,M,"As he pushd the shark away from his camera, his finger was cut on a tooth",N,J. Avenier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.19.R-Avenier.pdf 4944,2008.04.18,18-Apr-08,2008,Invalid,Mexico,Quintana Roo,"Delfines Beach, Cancun",Swimming,Joram Galleros Villanueva,M,Probable drowning with post-mortem bites,Y,C.Johansson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.18-Villanueva.pdf 4943,2008.04.17,17-Apr-08,2008,Invalid,Australia,Queensland,"Duranbah, Greenmount Beach",Surfing,David Weale,M,2 puncture wounds to leg,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.17-Weale.pdf @@ -1142,7 +1142,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4854,2007.07.10,10-Jul-07,2007,Unprovoked,Bahamas,Abaco Islands,Allan-Pensacola Cay,Spearfishing,Joanie Regan,F,"Lacerations to thumb, ring and pinky fingers of right hand ",N,J. Regan,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.10-Regan.pdf 4853,2007.07.05,05-Jul-07,2007,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,Chaz Cecil,M,Right foot bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.05-Cecil.pdf 4852,2007.07.04,04-Jul-07,2007,Unprovoked,Reunion,Unknown,Boucan Canot,Body boarding,Vincent Bouju,M,Minor injuries to thigh & knee ,N,clicanoo.com,7/5/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.04-Bouju.pdf -4851,2007.07.00,Jul-07,2007,Invalid,Unknown,Unknown,Unknown,Murder,Alex Takyi,Unknown,Unknown,N,Daily Guide,8/20/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.00-Takyi.pdf +4851,2007.07.00,Jul-07,2007,Invalid,Unknown,Unknown,Unknown,Murder,Alex Takyi,Unknown,Unknown,UNKNOWN,Daily Guide,8/20/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.00-Takyi.pdf 4850,2007.06.30.b,30-Jun-07,2007,Provoked,Usa,Florida,Marques Island,Removing hook from shark,Samuel Gruber,M,Lacerations to right hand by hooked shark PROVOKED INCIDENT,N,S. Gruber; SharkAttackSurvivors.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.b-Gruber.pdf 4849,2007.06.30.a,30-Jun-07,2007,Unprovoked,Usa,California,"Will Rogers State Beach, Los Angeles County",Swimming,Katina Zinner,F,Hand bitten,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.a-Zinner.pdf 4848,2007.06.25,25-Jun-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Justin Lewis,M,6 to 8 puncture wounds to right hand,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.25-JustinLewis.pdf @@ -2025,7 +2025,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3971,1997.06.24,24-Jun-97,1997,Unprovoked,Usa,Hawaii,"Sunset Beach, Oahu",Spearfishing / night diving,L. Molina,M,Leg bitten just above ankle,N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.24-Molina.pdf 3970,1997.06.15,15-Jun-97,1997,Unprovoked,Fiji,Taveuni,Off a small island 5 km from Garden Island Resort,Snorkeling,Liz Rogers,F,"Bitten on inner thigh, leg surgically amputated",N,R. D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.15-LizRogers.pdf 3969,1997.06.09,09-Jun-97,1997,Unprovoked,Usa,Florida, Palm Beach County,Surfing,Michael Massey,M,Laceration to left upper arm,N,Palm Beach Post,6/12/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.09-Massey.pdf -3968,1997.06.07,07-Jun-97,1997,Unprovoked,Brazil,Rio de Janeiro,"Copacabana, Rio de Janeiro",Bathing,José Luiz Lipiani,M,Unknown,N,Globo,6/9/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.07-NV-Lipiani.pdf +3968,1997.06.07,07-Jun-97,1997,Unprovoked,Brazil,Rio de Janeiro,"Copacabana, Rio de Janeiro",Bathing,José Luiz Lipiani,M,Unknown,UNKNOWN,Globo,6/9/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.07-NV-Lipiani.pdf 3967,1997.06.02,02-Jun-97,1997,Unprovoked,Usa,Florida,"Daytona Beach Shores, Volusia County","Body surfing, stood up on sandbar",Doug Amelio,M,4 lacerations above left ankle,N,S. Petersohn,GSAF; D. Treen; Florida Times-Union,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.02-Amelio.pdf 3966,1997.05.31.c,31-May-97,1997,Unprovoked,Usa,Florida,In Gulf of Mexico 17 miles off Weeki Wachee ,Spearfishing,Dave Medvec,M,Right thigh punctured,N,R. Nelson,St. Petersburg Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.c-Medvec.pdf 3965,1997.05.31.b,31-May-97,1997,Unprovoked,Usa,Florida,"Flagler Beach, Flagler County",Surfing,Robert Fuller,M,Left elbow bitten,N,A. Mikula,Daytona Beach News-Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.b-Fuller.pdf @@ -2042,7 +2042,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3954,1997.01.20,20-Jan-97,1997,Unprovoked,Australia,Western Australia,Geraldton,Windsurfing,Werner Schonhofer,M,"Presumed fatal, no body recovered, shark mutilated wetsuit & harness recovered ",Y,Daily Telegraph,1/22/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.20.a-Schonhofer.pdf 3953,1997.01.03.a,03-Jan-97,1997,Unprovoked,Reunion,Unknown,la Pointe-au-Sel,Spearfishing,David Lonne,M,FATAL,Y,Clicanoo,le journal de l'Ile de la Réunion,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.03-Lonne.pdf 3952,1997.01.01,01-Jan-97,1997,Boat,Australia,Victoria,"Seal Rocks, Phillip Island",Watching seals,"Inflatable dinghy, occupants: Jasmine Wigley, Greg Wilkie, Phil Rourke & Fleur Anderson",Unknown,"No injury to occupants, shark bit 2 of the dinghy's 3 floation chambers",N,The Advertiser,1/3/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.01-Seal-island-boat.pdf -3951,1996.12.29,29-Dec-96,1996,Unprovoked,Australia,Queensland,Coolum Beach,Surfing,Blair Hall,M,Unknown,N,The Advertiser,12/30/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.29-BlairHall.pdf +3951,1996.12.29,29-Dec-96,1996,Unprovoked,Australia,Queensland,Coolum Beach,Surfing,Blair Hall,M,Unknown,UNKNOWN,The Advertiser,12/30/1996,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.29-BlairHall.pdf 3950,1996.12.10,10-Dec-96,1996,Unprovoked,South africa,Eastern Cape Province,"Duck Pond, Sardina Bay near Port Elizabeth",Surfing,Steven Cross,M,Elbow bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.10-Cross.pdf 3949,1996.12.00.b,Dec-96,1996,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Charles Wadra,M,"Presumed fatal, only his shark-bitten speargun recovered",Y,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.b-Wadra.pdf 3948,1996.12.00.a,Dec-96,1996,Unprovoked,New caledonia,South Province,L'llot Maetre,Attempting to attract dolphins,female,F,Hand bitten,N,W. Leander,,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.a-NewCaledonia.pdf @@ -2422,7 +2422,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3574,1990.02.17,17-Feb-90,1990,Unprovoked,Usa,Hawaii,"Mokapu, Kane'ohe Marine Air Corps Station, O'ahu",Scuba diving & spearfishing,Roy T. Tanaka,M,Right arm severed FATAL,Y,J. Borg,pp.78-79; L. Taylor (1993) pp.110-111,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.17-Tanaka.pdf 3573,1990.02.05,05-Feb-90,1990,Unprovoked,Usa,Florida,"Monster Hole, Sebastian Inlet, Indian River County",Board sailing,Bruce Ferguson,M,Foot bitten,N,Orlando Sentinel,Feb 9,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.05-Ferguson.pdf 3572,1990.01.12,12-Jan-90,1990,Unprovoked,Usa,California,"Montera Beach, San Mateo County",Surfing (sitting on his board),Sean Sullivan,M,"No injury, board bitten",N,J. McCosker & R.N. Lea; R. Collier,p. 116 ; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.01.12-Sullivan_Collier.pdf -3571,1990.00.00,1990,1990,Unprovoked,Usa,Florida,"Pensacola, Escambia County",Surfing,male,M,Unknown,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.00.00-NV-Pensacola.pdf +3571,1990.00.00,1990,1990,Unprovoked,Usa,Florida,"Pensacola, Escambia County",Surfing,male,M,Unknown,UNKNOWN,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.00.00-NV-Pensacola.pdf 3570,1989.12.19,19-Dec-89,1989,Provoked,Usa,Hawaii,"90 miles east of Hilo, Hawai'i",On board 51' fishing vessel One Ki,George Sohswel,M,Left leg & foot bitten by shark brought onboard. PROVOKED INCIDENT,N,J. Borg,p.78; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.19-Sohswel.pdf 3569,1989.12.03,03-Dec-89,1989,Unprovoked,Australia,Northern Territory,Gove Peninsula near Darwin,Unknown,Ryan Johnson,M,"No details, ""recovering in Darwin Hospital""",UNKNOWN,Courier-Mail,12/6/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.03-Johnson.pdf 3568,1989.12.02,02-Dec-89,1989,Invalid,Australia,Queensland,Fraser Island,Swimming,Michael Preston,M,"Swept out to sea, feared taken by shark",Y,The Advertiser,12/4/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.02-Preston.pdf @@ -2812,7 +2812,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3183,1981.03.25,25-Mar-81,1981,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Standing / Wading,Christopher J. Auditore,M,"Lacerations on calf, ankle & heel",N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.25-Auditore.pdf 3182,1981.03.24,24-Mar-81,1981,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Robert Thomas,M,Puncture wounds on right thigh,N,M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.24-Thomas.pdf 3181,1981.03.04,04-Mar-81,1981,Unprovoked,Chile,Coquimbo,"Bahia Totoralillo, 80 km north of Coquimbo",Free diving Spearfishing,Carlos Veraga M.,M,Foot & ankle bitten,N,J. McCosker & A.C. Engana,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.04-Vergara.pdf -3180,1981.03.00,Mar-81,1981,Unprovoked,Brazil,Rio de Janeiro,Cabo Frio,Diving,Unknown,Unknown,Unknown,N,Globo,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.00-Brazil.pdf +3180,1981.03.00,Mar-81,1981,Unprovoked,Brazil,Rio de Janeiro,Cabo Frio,Diving,Unknown,Unknown,Unknown,UNKNOWN,Globo,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.00-Brazil.pdf 3179,1981.02.19,19-Feb-81,1981,Unprovoked,South africa,KwaZulu-Natal,Umtentweni,Swimming,Richard Guy,M,Foot lacerated,N,R. Guy,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.19-Guy.pdf 3178,1981.02.16,16-Feb-81,1981,Unprovoked,Australia,Western Australia,"Leighton Beach, north of Freemantle",Exercising his dog in the shallows,Steven Fawcett,M,Puncture wounds to foot,N,A. Sharpe,p.134,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.16-Fawcett.pdf 3177,1981.02.07,07-Feb-81,1981,Unprovoked,Australia,Western Australia,"Parker's Point, Rottnest Island",Unknown,Filmer,Unknown,No details,UNKNOWN,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.07-NV-Filmer.pdf @@ -2981,7 +2981,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3014,1975.11.02,02-Nov-75,1975,Unprovoked,Usa,Florida,"Crescent Beach, St. Johns County",Surfing,Scott Lee Hurst,M,Foot bitten,N,NY Times,11/6/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.02-Hurst.pdf 3013,1975.10.21,21-Oct-75,1975,Invalid,Usa,New Jersey,"Sandy Hook, Monmouth County",Surf fishing,Unknown,M,"""Tooth marks"" in left leg",N,J. Stone; Asbury Park Press,10/22/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.21-SandyHook.pdf 3012,1975.10.12,12-Oct-75,1975,Unprovoked,Australia,New South Wales,"Lennox Head, Ballina",Surfing,Barry Neale,M,"Cracked jaw & broken tooth, shark took chunk out of surfboard",N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.12-Neale.pdf -3011,1975.10.04,04-Oct-75,1975,Invalid,Usa,California,"Seal Beach, Orange County",Surfing,Unknown,Unknown,Unknown,N,Unconfirmed Report,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.04-NV-California.pdf +3011,1975.10.04,04-Oct-75,1975,Invalid,Usa,California,"Seal Beach, Orange County",Surfing,Unknown,Unknown,Unknown,UNKNOWN,Unconfirmed Report,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.04-NV-California.pdf 3010,1975.09.00,Sep-75,1975,Unprovoked,South africa,KwaZulu-Natal,Richards Bay,Paddleskiing,Tony Meehan,M,Right foot & ankle lacerated,N,G. Charter,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.09.00-Meehan.pdf 3009,1975.08.17,17-Aug-75,1975,Unprovoked,South africa,Eastern Cape Province,Cape St. Francis,Surfing,David Robertson,M,Left leg & surfboard bitten,N,D. Robertson,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.17-Robertson.pdf 3008,1975.08.12,12-Aug-75,1975,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Floating on a small orange raft ,Henry Peterson,M,"Calf bitten, leg surgically amputated below the knee Note: by late August, 3 more bathers had been bitten by sharks at Daytona Beach",N,NY Times,8/17/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.12-Peterson.pdf @@ -3072,7 +3072,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2923,1973.09.10.R,10-Sep-1973,1973,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom Swimming,Tsang Kai-shing,M,FATAL,Y,Charleston Daily Mail,9/10/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.10.R-Tsang.pdf 2922,1973.09.09,09-Sep-73,1973,Unprovoked,Mexico,Baja California,Guadalupe Island,"Free diving, Spearfishing",Al Schneppershoff,M,"FATAL, leg bitten ",Y,Washington Post,9/12/1973; J. McCosker & R.N. Lea,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.09-Schneppershoff.pdf 2921,1973.09.00,Sep-73,1973,Unprovoked,Egypt,Red Sea,Southern end of the Sinai Peninsula,Unknown,Soldier,M,Massive wound on right thigh with femur exposed,N,R. Davis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.00-NV-RedSea.pdf -2920,1973.08.27,27-Aug-73,1973,Unprovoked,Australia,Queensland,Palm Cove Beach,Unknown,G. Cole,Unknown,Unknown,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.27-Cole.pdf +2920,1973.08.27,27-Aug-73,1973,Unprovoked,Australia,Queensland,Palm Cove Beach,Unknown,G. Cole,Unknown,Unknown,UNKNOWN,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.27-Cole.pdf 2919,1973.08.25,25-Aug-73,1973,Unprovoked,Australia,Queensland,"Point Lookout, Stradbroke Island",Surfing,Bruce Lawlor (or Lawler),M,Right foot severed,N,L.A. Times,8/16/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.25-Lawler.pdf 2918,1973.08.16,16-Aug-73,1973,Unprovoked,Usa,Virginia,False Cape,Crabbing (spearing crabs),Chris DeFord,M,Elbow bitten,N,A. MacCormick,p.11,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.16-DeFord.pdf 2917,1973.06.13,13-Jun-73,1973,Unprovoked,Unknown,Unknown,Unknown,Freedom Swimming,2 youths,M,"One man was killed by a shark, the other was injured",N,The Age,6/15/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.06.13-HongKong.pdf @@ -3208,7 +3208,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2787,1969.06.00,Jun-69,1969,Unprovoked,Usa,Florida,Sarasota County,Wading,"John Holmes, Jr.",M,No injury,N,H.D.Baldridge (1994) SAF Case #1609,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.00-NV-Holmes.pdf 2786,1969.05.25,25-May-69,1969,Provoked,Usa,Texas,Packery Channel,Surf-fishing,Walter Barnett,M,Foot lacerated when he stepped on the shark PROVOKED INCIDENT,N,Corpus Christi Times,5/26/1969; H.D.Baldridge (1994) SAF Case #1629,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.25-Barnett.pdf 2785,1969.05.24,24-May-69,1969,Provoked,Usa,Florida,Sarasota County,Diving,Brian Martel,M,Laceration to buttocks Recorded as PROVOKED INCIDENT,N,H.D.Baldridge (1994) SAF Case #1596,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.24-NV-Martel.pdf -2784,1969.05.22,22-May-69,1969,Unprovoked,Unknown,Unknown,Unknown,Surfing,"Douglas Kuchn, Jr.",M,Unknown,N,H.D.Baldridge (1994) SAF Case #1607,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.22-NV-Kuchn.pdf +2784,1969.05.22,22-May-69,1969,Unprovoked,Unknown,Unknown,Unknown,Surfing,"Douglas Kuchn, Jr.",M,Unknown,UNKNOWN,H.D.Baldridge (1994) SAF Case #1607,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.22-NV-Kuchn.pdf 2783,1969.05.14,14-May-69,1969,Unprovoked,Australia,Queensland,Broomfield Reef,Unknown,J. Gillies,Unknown,Survived,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.14-Gillies.pdf 2782,1969.04.22,22-Apr-69,1969,Invalid,Australia,New South Wales,"Kingscliffe Beach, south of Tweed Heads",Netting pilchards,David Anderson,M,No injury,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.22-Anderson.pdf 2781,1969.04.19,19-Aug-69,1969,Provoked,Usa,Florida,"Marathon, Monroe County",Fishing,Jack Horner,M,Laceration to foot from dead shark PROVOKED INCIDENT,N,Tri-City Herald,4/21/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.19-Horner.pdf @@ -3230,7 +3230,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2765,1968.10.29,29-Oct-68,1968,Provoked,Unknown,Unknown,Unknown,Unknown,John DeBry,M,Calf injured Recorded as PROVOKED INCIDENT,N,H.D. Baldridge (1994) SAF Case #1565,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.29-NV-DeBry.pdf 2764,1968.10.13,13-Oct-68,1968,Unprovoked,Usa,Florida,"Egmont Key, Hillsborough County",Spearfishing using Scuba,Jim C. Johnson,M,Swim fin bitten,N,H.D. Baldridge,p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.13-Johnson.pdf 2763,1968.10.10,10-Oct-68,1968,Sea Disaster,Philippines,Moro Gulf,Unknown,Sinking of the ferryboat Dumaguete ,a passenger,Unknown,Survived,N,Fresno Bee Republican,10/12/1968,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.10-FerryDisaster.pdf -2762,1968.09.22,22-Sep-68,1968,Invalid,Usa,Florida,"Riviera Beach, Palm Beach County",Surfing,Unknown,Unknown,Unknown,N, M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.22-NV-RivieraBeach.pdf +2762,1968.09.22,22-Sep-68,1968,Invalid,Usa,Florida,"Riviera Beach, Palm Beach County",Surfing,Unknown,Unknown,Unknown,UNKNOWN, M. Vorenberg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.22-NV-RivieraBeach.pdf 2761,1968.09.15,15-Sep-68,1968,Unprovoked,New zealand,South Island,Otago Harbor,Spearfishing,Graham Hitt,M,"FATAL, left leg bitten, femoral artery severed ",Y,R.D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.15-Hitt.pdf 2760,1968.08.24,24-Aug-68,1968,Unprovoked,Usa,Florida,Half mile north of Juno Beach Pier,Playing with a frisbee in the shallows,Colleen Chamberlin & Scott Chamberlin,Unknown,"Shark bumped Colleen, the nudged Scott, then bit Frisbee & swam away with it",N,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.24-Chamberlin.pdf 2759,1968.08.21,21-Aug-68,1968,Unprovoked,Usa,Florida,Okaloosa County,Standing,Peter S. Ball,M,Leg & arm bitten,N,Brownsville Herald,8/14/1968; H.D.Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.21-PeterBall.pdf @@ -3264,7 +3264,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2731,1968.01.17,17-Jan-68,1968,Unprovoked,Papua new guinea,Morobe Province,Finschafen,Swimming,Awin Ieromia,Unknown,FATAL,Y,H.D. Baldridge (1994) SAF Cases #1519 & #1584,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.01.17-NV-Ieromia.pdf 2730,1968.00.00.c,1968,1968,Unprovoked,Costa rica,Limón Province,Parismina,Swimming after his canoe capsized,male,M,FATAL,Y,Kokomo Tribune,5/11/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.c-Parisima.pdf 2729,1968.00.00.b,1968,1968,Invalid,Usa,Florida,"Key West, Monroe County",Diving,Unknown,Unknown,Recovered,N,Unverified,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.b-NV-KeyWestDiver.pdf -2728,1968.00.00.a,1968,1968,Invalid,Usa,Florida,"Jensen Beach, Martin County",Surfing,Unknown,Unknown,Unknown,N,Unverified,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.a-NV-JensenBeach.pdf +2728,1968.00.00.a,1968,1968,Invalid,Usa,Florida,"Jensen Beach, Martin County",Surfing,Unknown,Unknown,Unknown,UNKNOWN,Unverified,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.a-NV-JensenBeach.pdf 2727,1967.12.30,30-Dec-67,1967,Unprovoked,South africa,Western Cape Province,Mossel Bay,Surfing,Brian Pearson,M,Right ankle & foot bitten,N,B. Pearson,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.30-Pearson.pdf 2726,1967.12.21.R,21-Dec-1967,1967,Invalid,Papua new guinea,Central Province,Port Moresby,Spearfishing,Bob Valentine,M,No injury,N,H.D. Baldridge (1994) ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.21.R-Valentine.pdf 2725,1967.12.18,18-Dec-67,1967,Unprovoked,Unknown,Unknown,Unknown,Unknown,Tera Tetapana,M,Arm lacerated,N,H.D.Baldridge (1994) SAF Case #1532,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.18-NV-Tetapana.pdf @@ -3485,7 +3485,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2510,1964.01.11,11-Jan-64,1964,Unprovoked,Usa,California,Southeast Farallon Island,Spearfishing / Scuba diving (at surface),Jack Rochette,M,Leg & thigh bitten,N,R. Collier,p.261-264; D. Miller & R. Collier; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.11-Rochette_Collier.pdf 2509,1964.01.06.R,06-Jan-1964,1964,Unprovoked,Papua new guinea,New Britain,Unknown,Fishing,male,M,FATAL,Y,Oldham Evening Chronicle,1/6/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.06.R-NewBritain.pdf 2508,1964.01.04,04-Jan-64,1964,Unprovoked,Fiji,"Lomaloma, Lau",Tuvuca Isalnd,Swimming,Tale Meve (female),F,Deep lacerations to her right thigh,N,SAF Case #1250,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.04-Meve.pdf -2507,1964.01.01.b,01-Jan-64,1964,Unprovoked,Australia,Western Australia,Metro coast,Unknown,Edwards,Unknown,Unknown,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-NV-Edwards.pdf +2507,1964.01.01.b,01-Jan-64,1964,Unprovoked,Australia,Western Australia,Metro coast,Unknown,Edwards,Unknown,Unknown,UNKNOWN,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-NV-Edwards.pdf 2506,1964.01.01.a,01-Jan-64,1964,Unprovoked,South africa,Western Cape Province,Mossel Bay,Diving for sinkers,Jakobus Christiaan Steyn,M,Lacerations and puncture wounds in right arm ,N,The Argus,1/3/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-Edwards.pdf 2505,1964.01.00,Jan-64,1964,Invalid,New zealand,North Island,White Island,Snorkeling,J.H. Seddon,M,No injury,N,H.D.Baldridge (1994) SAF Case #1484,Note: Unable to verify in local records.,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.00-NV-Sneddon.pdf 2504,1963.12.29,29-Dec-63,1963,Unprovoked,South africa,KwaZulu-Natal,"Catfish Rock, between Salt Rock & Shaka’s Rock",Standing,Barbara Elsa Strauss,F,"Right hand & foot severed, thigh & buttock lacerated",N,B. Strauss,D. Davies,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.29-Strauss.pdf @@ -3611,10 +3611,10 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2384,1962.02.07,07-Feb-62,1962,Unprovoked,South africa,KwaZulu-Natal,Winkelspruit,Swimming,Clifford Hoogvorst,M,"FATAL, calf bitten twice",Y,M. Levine,J. D'Aubrey,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.07-Hoogvorst.pdf 2383,1962.02.05,05-Feb-62,1962,Unprovoked,South africa,KwaZulu-Natal,Winkelspruit,Treading water,Reece Nielsen,M,"FATAL, tissue removed from thigh, femoral artery severed ",Y,M. Nielsen,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.05-Nielsen.pdf 2382,1962.02.04,04-Feb-62,1962,Unprovoked,Australia,Queensland,Greenmount Beach,Swimming,Lance Maloney,M,Shin bitten,N,Courier Mail (Brisbane),2/5/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.04-Maloney.pdf -2381,1962.02.02,02-Feb-62,1962,Boat,New zealand,North Island,South of New Plymouth,Fishing,"17' fishing launch, occupants: A. Burkitt & C. Brooke",Unknown,Unknown,N,SAF Case #1125,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.02-NV-Burkitt-Brooke-launch.pdf +2381,1962.02.02,02-Feb-62,1962,Boat,New zealand,North Island,South of New Plymouth,Fishing,"17' fishing launch, occupants: A. Burkitt & C. Brooke",Unknown,Unknown,UNKNOWN,SAF Case #1125,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.02-NV-Burkitt-Brooke-launch.pdf 2380,1962.02.00,Feb-62,1962,Unprovoked,Solomon islands,Guadalcanal Province,"North Coast, Guadalcanal Island",Swimming outside fishing net,"Mr. Loloi, a constable",M,"FATAL, shoulder & thigh bitten ",Y,Auckland Herald,2/26/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.00-Loloi.pdf 2379,1962.01.27,27-Jan-62,1962,Unprovoked,New zealand,South Island,Oreti Beach,Splashing ,Norman McEwan,M,"Left hand injured: gash on back of hand, toothmarks on palm",N,R. Weeks,GSAF; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.27-McEwan.pdf -2378,1962.01.26,26-Jan-62,1962,Unprovoked,Mozambique,Gaza,Praia Sepulveda,Unknown,Domingos Zefanias Cumbe,M,Unknown,N,D. Davies,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.26-Cumbe.pdf +2378,1962.01.26,26-Jan-62,1962,Unprovoked,Mozambique,Gaza,Praia Sepulveda,Unknown,Domingos Zefanias Cumbe,M,Unknown,UNKNOWN,D. Davies,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.26-Cumbe.pdf 2377,1962.01.21,21-Jan-62,1962,Provoked,Australia,New South Wales,Cronulla,Spearfishing,Robert Smith,M,Suffered from shock & immersion after being dragged underwater by speared shark PROVOKED INCIDENT,N,Daily Mirror (Sydney) & Sydney Morning Herald,1/22/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.21-Smith.pdf 2376,1962.01.18,18-Jan-62,1962,Invalid,South africa,KwaZulu-Natal,Margate,"Fishing, slipped on rocks & fell into sea",Jacobus Vermaak,M,Possible drowning / post mortem scavenging,Y,D. Davies,p.114; A. Cowan,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.18-Vermaak.pdf 2375,1962.01.16,16-Jan-62,1962,Provoked,New zealand,South Island,"Pigeon Bay, Canterbury",Fishing,Mr. Reynish & Mr. Meikle,Unknown,"No injury to occupants, hooked shark attacked boat PROVOKED INCIDENT",N,The Sun (Australia),1/17/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.16-RedShark.pdf @@ -3833,7 +3833,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2162,1959.09.30,30-Sep-59,1959,Unprovoked,Philippines,Leyte Island,Luang Dulag,Swimming ,Francisco Daguinot,M,"No details, survived",N,Manila Times,10/2/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.30-Daguinot.pdf 2161,1959.09.27,27-Sep-59,1959,Invalid,Bermuda,Hamilton,Astwood's Cove,Unknown,Dorothy Barbara Rawlinson,F,"Murdered, body scavenged by sharks",Y,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.27-Rawlinson.pdf 2160,1959.09.26.b,26-Sep-59,1959,Sea Disaster,Usa,Florida,"Off Port Everglades, Broward County","Adrift, hanging onto cushion, after his 17' skiff ran out of gas & capsized 3 miles from shore",Robert Walker,M,"During the night both hands and feet were bitten, rescued next day after spending 17 hours in the sea.",N,St Petersberg Times,9/27/1959; NY Herald Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.b-Walker.pdf -2159,1959.09.26.a,26-Sep-59,1959,Boat,Usa,South Carolina,"Albergotti Creek, near Air Station boat docks, Beaufort",Gigging for flounder,"12' boat. Occupants: Capt. E.J. Wines, Maj. W. Waller & Larry Waller",Unknown,Unknown,N,Gazette (Beaufort,SC),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.a-Wines.pdf +2159,1959.09.26.a,26-Sep-59,1959,Boat,Usa,South Carolina,"Albergotti Creek, near Air Station boat docks, Beaufort",Gigging for flounder,"12' boat. Occupants: Capt. E.J. Wines, Maj. W. Waller & Larry Waller",Unknown,Unknown,UNKNOWN,Gazette (Beaufort,SC),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.a-Wines.pdf 2158,1959.09.11,Between 10 and 12-Sep-1959,1959,Boat,Usa,California,"Between False Klamath & mouth of Klamath River, Del Norte County",Pulling hooked salmon to boat,12 m fishing boat. Occupant: Henry Tervo,Unknown,"No injury to occupant, shark struck stern of boat",N,R. Collier,p.172,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.11-Tervo.pdf 2157,1959.09.10.R,10-Sep-1959,1959,Unprovoked,India,Orissa,Machhagan,Unknown,Unknown,Unknown,"5 fatalities, 30 injured",Y,Times of India,9/10/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.10.R-India.pdf 2156,1959.09.02,02-Sep-59,1959,Invalid,Usa,New York,"Oak Beach, Fire Inlet",On inflatable raft,male,M,No injury,N,H.D. Baldridge (1994) SAF Case #506,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.02-NV-InflatableRaft.pdf @@ -4289,7 +4289,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1706,1949.04.18,18-Apr-49,1949,Provoked,Australia,Queensland,"Nerang River, Southpot",Fishing,"""Lockie"" Smith",M,Toe bitten by netted shark PROVOKED INCIDENT,N,Courier-Mail,4/19/1949,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.18-Lockie-Smith.pdf 1705,1949.04.17,17-Apr-49,1949,Unprovoked,Australia,Queensland,"Ellis Beach, 20 miles from Cairns",Bathing in water 0.9 m deep,Richard Joseph Maguire,M,"FATAL, left leg severed",Y,G.P. Whitley (1951),p.194; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.17-Maguire.pdf 1704,1949.04.13,13-Apr-49,1949,Unprovoked,Mexico,Tamaulipas,"Miramar Beach, Tampico",Bathing,male,M,"U.S. destroyer John W. Weeks, 6 miles offshore, demonstrating guns & bombs for Mexican officials was thought to have driven the shark into the shallows where it bit the bather before other bathers drove it away with sticks & clubs.",N,New York Herald Tribune,4/15/1949,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.13-Miramar.pdf -1703,1949.03.00,Mar-1949 or Apr-1949,1949,Boating,Australia,South Australia,18 miles south of Port Augusta,Unknown,boat,Unknown,Unknown,N,G.P. Whitley (1951),p.194; SAF Case #612,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.03.00-boat-PortAugusta.pdf +1703,1949.03.00,Mar-1949 or Apr-1949,1949,Boating,Australia,South Australia,18 miles south of Port Augusta,Unknown,boat,Unknown,Unknown,UNKNOWN,G.P. Whitley (1951),p.194; SAF Case #612,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.03.00-boat-PortAugusta.pdf 1702,1949.01.23,23-Jan-49,1949,Unprovoked,Australia,New South Wales,"Bar Beach, Newcastle ",Lifesaving exhibition,Ray Land,M,FATAL,Y,G.P. Whitley (1951); V.M. Coppleson (1958),pp. 77 & 78; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.23-Land.pdf 1701,1949.01.14,14-Jan-49,1949,Invalid,Australia,New South Wales,Off North Bondi,Surfing,Vince Wilson,M,"No injury, chased by 3 sharks",N,Sydney Morning Herald," 1/14/1949 ",http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.14-Wilson.pdf @@ -4747,7 +4747,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1250,1933.01.04,04-Jan-33,1933,Unprovoked,Australia,Queensland,"Strand Beach, Kissing Point, Townsville",Swimming,Stanley Victor Locksley,M,Severe abdominal wounds FATAL (Note: 14 days earlier a dog was bitten in two by a large shark),Y,V. M. Coppleson.Q11. (1933); V.M. Coppleson (1958),pp.90 & 238,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.01.04-Locksley.pdf 1249,1932.12.11.R,11-Dec-1932,1932,Unprovoked,Australia,Northern Territory,Arnhem Land,Unknown,Unknown,M,Leg bitten,N,Sunday Times (Perth),12/11/1932 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.11-ArnhemLand.pdf 1248,1932.12.09.R,09-Dec-1932,1932,Provoked,New zealand,North Island,Mahurangi River Mouth,Fishing ,Mr. L. E. Brasting,M,Laceration to hand PROVOKED INCIDENT,N,New Zealand Herald,12/9/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.09-Brasting.pdf -1247,1932.11.09,08-Nov-32,1932,Sea Disaster,Unknown,Unknown,Unknown,Hurricane & Tidal Wave,Unknown,Unknown,Unknown,N,Barrier Miner,11/14/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.11.09-Hurricane-Cuba.pdf +1247,1932.11.09,08-Nov-32,1932,Sea Disaster,Unknown,Unknown,Unknown,Hurricane & Tidal Wave,Unknown,Unknown,Unknown,UNKNOWN,Barrier Miner,11/14/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.11.09-Hurricane-Cuba.pdf 1246,1932.10.31,31-Oct-32,1932,Unprovoked,Australia,New South Wales,"Redhead Beach, Newcastle",Swimming,Reginald Ogilvie,M,"Torso bitten with pneumothorax, slight lacerations on left hand",N,V.M. Coppleson.N19. (1933); V.M. Coppleson (1958),pp.80 & 232,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.31-Ogilvie.pdf 1245,1932.10.11,11-Oct-32,1932,Unprovoked,Cape verde,Barlavento Islands,São Vicente ,Swimming,Michele Ruck,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.11-Ruck.pdf 1244,1932.09.26.R,26-Sep-1932,1932,Unprovoked,Fiji,Viti Levu Island,Navua,Catching a turtle,male,M,Left arm severely bitten,N,Queensland Times,9/26/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.09.26.R-Fiji.pdf @@ -5136,7 +5136,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 862,1912.08.30,30-Aug-12,1912,Unprovoked,Usa,Georgia,"Tybee Island, Chatham County",Swimming,Edward Coffee,M,FATAL,Y,Atlanta Constitution,8/31/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.08.30-Coffee.pdf 861,1912.07.23,23-Jul-12,1912,Unprovoked,Usa,South Carolina,Sullivan's Island,Swimming,Corporal Kirkpatrick,M,Toes severed,N,Atlanta Constitution,7/25/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.23-Kirkpatrick.pdf 860,1912.07.06.R,06-Jul-1912,1912,Unprovoked,Solomon islands,Central Province,Savo,Bathing,male,M,FATAL,Y,Sydney Morning Herald,7/6/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.06.R-Savo.pdf -859,1912.05.04,04-May-12,1912,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,arm recovered from hooked shark,M,Unknown,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.05.04-arm.pdf +859,1912.05.04,04-May-12,1912,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,arm recovered from hooked shark,M,Unknown,UNKNOWN,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.05.04-arm.pdf 858,1912.03.18,18-Mar-12,1912,Unprovoked,New zealand,North Island,Takapuna,Swimming,male,M,"""Slight laceration to leg""",N,Evening Post,3/20/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.03.18-Takapuna.pdf 857,1912.02.22,22-Feb-12,1912,Provoked,Australia,Western Australia,Bunbury,Hard hat diving,Mr. Swanson,M,"No injury, shark nipped diving suit after he prodded the shark PROVOKED INCIDENT ",N,Western Argus,2/27/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.22-Swanson.pdf 856,1912.02.19,19-Feb-12,1912,Unprovoked,Australia,New South Wales,Coogee,Swimming,Fred Wort,M,Left calf & heel bitten,N,Argus (Melbourne) 2/20/1912,p.6; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.19-Wort.pdf @@ -5310,7 +5310,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 688,1901.09.23.R,23-Sep-1901,1901,Unprovoked,Cyprus,Southern Cyprus,Larnaca,Swimming,male,M,"FATAL, bitten on arms, chest & legs",Y,Bardanis citing Embros,9/23/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.09.23.R-Cyprus.pdf 687,1901.07.30,30-Jul-01,1901,Unprovoked,South africa,Western Cape Province,Windmill Beach,Swimming,"John Hendrick Adrian Chandler, a prisoner of war",M,"Right leg bitten & foot severed, right arm bitten, bones fractured & nearly severed FATAL",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.30-Chandler.pdf 686,1901.07.17,17-Jul-01,1901,Invalid,Italy,Syracuse,Capo Santa Croce,Swimming,Antonio Tornatori,M,"Disappeared, but shark involvement unconfirmed",Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.17-Antonio.pdf -685,1901.06.29.R,29-Jun-1901,1901,Invalid,Yemen ,Aden,Unknown,Diving around anchored liner,boy,M,Unknown,N,The Graphic,6/29/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf +685,1901.06.29.R,29-Jun-1901,1901,Invalid,Yemen ,Aden,Unknown,Diving around anchored liner,boy,M,Unknown,UNKNOWN,The Graphic,6/29/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf 684,1901.06.24,24-Jun-01,1901,Unprovoked,Philippines,Western Viscayas,"Island of Panay, Iliolo",Swimming,"S. McKie, apprentice 1st class on the U.S. Naval ship Annapolis",M,"Left thigh stripped of flesh 4"" above the knee ",N,J.A. Guthrie; Sun,7/13/1913; V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.24-McK.pdf 683,1901.01.30,30-Jan-01,1901,Unprovoked,Australia,Queensland,Brisbane,Bathing,John Thompson,M,"Thigh bitten, FATAL",Y,Otago Witness,2/6/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.01.30-Thompson.pdf 682,1901.00.00,Summer 1901,1901,Unprovoked,Usa,Florida,Indian River Inlet / Fort Pierce Inlet,Bathing,Michael O'Brien,M,Abdomen bitten,N,W.H. Gregg; L. Schultz & M. Malin,p.533,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.00.00-O'Brien.pdf @@ -5357,7 +5357,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 641,1898.07.00, Jul-1898,1898,Unprovoked,Cuba,Santiago de Cuba Province,Santiago de Cuba,Swimming,male,M,FATAL,Y,V.M. Coppleson (1958),p.258 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.00-Cuba.pdf 640,1898.06.22,22-Jun-1898,1898,Unprovoked,New caledonia,South Province,Noumea,boat from City of Naples capsized,14 sailors,M,FATAL,Y,New York Times,6/23/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.06.22-NewCaledonia.pdf 639,1898.04.13,13-Apr-1898,1898,Sea Disaster,Fiji,Muala,Unknown,The cutter Francis Adams foundered,male,M,Lacerations to thigh,N,Launceston Examiner,8/26/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.04.13-FrancisAdams.pdf -638,1898.00.00.R,1898,1898,Invalid,Unknown,Unknown,Unknown,Sponge divers,male,M,Unknown,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf +638,1898.00.00.R,1898,1898,Invalid,Unknown,Unknown,Unknown,Sponge divers,male,M,Unknown,UNKNOWN,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf 637,1898.00.00.f,1898,1898,Unprovoked,Usa,South Carolina,Ramshorn Creek,Fishing (Seining),Archibald Rutledge,M,Lacerations to left hand,N,Field & Stream,1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.f-Rutledge.pdf 636,1898.00.00.e,1898 (soon after the close of the Spanish-American War),1898,Unprovoked,Cuba,Santiago de Cuba Province,Off Santiago de Cuba,13 men in the water after sailboat capsized & sank,seamen,M,"FATAL, 7 survived but 6 were taken by sharks",Y,J. E. Kirby,letter to Captain Dinning,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.e-13-men.pdf 635,1898.00.00.d,1898,1898,Unprovoked,Jamaica,Kingston Parish,Kingston Harbor,Trailing hand in the water,Gonzales,F,"Hand lacerated, 2 fingers severed",N,Indiana Evening Gazette,11/22/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.d-Gonzales.pdf @@ -5698,7 +5698,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 299,1863.00.00.R,1863,1863,Unprovoked,Greece,Corfu,Unknown,Swimming,male,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R-Corfu 298,1862.12.22,22-Dec-1862,1862,Unprovoked,New zealand,North Island,"Soldier's Point, Brick Bay, Auckland",Swimming,Thomas Cooke,M,Right thigh and left foot severely bitten,N,V.M. Coppleson (1962),p.247,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.22-Cooke.pdf 297,1862.12.19.R,19-Dec-1862,1862,Unprovoked,Australia,Queensland,Brisbane River,Trying to catch a wounded bird,male,M,FATAL,Y,Courier,12/19/1862,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.19.R-Boy-Brisbane.pdf -296,1862.12.04,04-Dec-1862,1862,Invalid,New zealand,South Island,Lyttleton?,Unknown,Unknown,Unknown,Unknown,N,Bendigo Advertiser,1/3/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf +296,1862.12.04,04-Dec-1862,1862,Invalid,New zealand,South Island,Lyttleton?,Unknown,Unknown,Unknown,Unknown,UNKNOWN,Bendigo Advertiser,1/3/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf 295,1862.08.15.R,15-Aug-1862,1862,Unprovoked,Spain,Unknown,A Spanish port,Bathing,The widowed Marchioness of Lendinez,F,Survived,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.15.R-Lendinez.pdf 294,1862.08.02.R,02-Aug-1862,1862,Invalid,Spain,Malaga,Fuengirola,Unknown,male,M,Possible drowning and scavenging,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.02.R-Fuengirola.pdf 293,1862.07.25,25-Jul-1862,1862,Unprovoked,Spain,Malaga,San Andres Beach,Swimming,Joaquin Rosales Martinez,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.25-Martinez.pdf @@ -5846,7 +5846,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 151,1764.00.00,1764,1764,Unprovoked,Spain,Unknown,Guadalquivir River,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1764.00.00-Spain.pdf 150,1758.00.00,1758,1758,Unprovoked,Unknown,Unknown,Unknown,"Fell overboard from a frigate & was swallowed by a shark. The captain fired a gun at the shark, and ""the creature cast the man out of his throat.""",sailor,M,"""He was taken up alive and but little injured."" ",N,A.M. Hodgkin,,http://sharkattackfile.net/spreadsheets/pdf_directory/1758.00.00-Mediterranean.pdf 149,1749.00.00,1749,1749,Unprovoked,Cuba,Havana Province,Havana Harbor,Swimming,Brook Watson,M,"Right leg severed at knee. In 1796 he became Lord Mayor of London. In 1778 he commissioned American artist, John Singleton Copley, to paint the incident: Watson and the Shark",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1749.00.00-Watson.pdf -148,1755.00.00,1755,1755,Unprovoked,Sweden,Skagerrak arm of the North Sea,Bohuslän,Unknown,Fishermen,M,Unknown,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1755.00.00-Sweden.pdf +148,1755.00.00,1755,1755,Unprovoked,Sweden,Skagerrak arm of the North Sea,Bohuslän,Unknown,Fishermen,M,Unknown,UNKNOWN,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1755.00.00-Sweden.pdf 147,1748.00.00,1748,1748,Unprovoked,Panama,Las Perlas archipelago,Taboga & Isla del Rey,Pearl diving,African slaves,M,FATAL,Y,J. Castro,et al,http://sharkattackfile.net/spreadsheets/pdf_directory/1748.00.00.R-LasPerlas.pdf 146,1742.12.17,17-Dec-1742,1742,Unprovoked,Barbados,Unknown,Carlisle Bay,Swimming,2 impressed seamen,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1742.12.17-AdviceSeamen.pdf 145,1738.04.06.R,06-Apr-1738,1738,Unprovoked,Italy,Sicily,Strait of Messina,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1738.04.06.R-Messina.pdf @@ -5857,14 +5857,14 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 140,1700.00.00.b,1700s,1700,Unprovoked,France,Côte d'Azur ,Antibes,Bathing,seaman,M,Leg severed,N,A. De Maddalena,citing Cazeils (1998),http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.b-Antibes.pdf 139,1700.00.00.a,1700s,1700,Unprovoked,Unknown,Unknown,Unknown,Bathing,seaman from the York,M,FATAL,Y,Tioga Eagle,10.26/ 1842,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.a-Barbados.pdf 138,1642.00.00.b,Late 1600s 1728,1642,Invalid,Unknown,Unknown,Unknown,Went overboard,crew member of the Nieuwstadt,M,FATAL,Y,History of the Pyrates,by D. Defoe,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00.b-Nieuwstadt.pdf -137,1638.00.00.R,1638,1638,Unprovoked,Unknown,Unknown,Unknown,Unknown,sailors,M,Unknown,N,Sir Thomas Herbert,,http://sharkattackfile.net/spreadsheets/pdf_directory/1638.00.00.R-Herbert -136,1637.00.00.R,1637,1637,Unprovoked,India,West Bengal,Hooghly River mouth,Wading,Hindu pilgrims,Unknown,Unknown,N,H. Edwards,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1637.00.00-Manrique.pdf -135,1617.00.00.R,1617,1617,Unprovoked,India,West Bengal,Ganges Delta,Unknown,Indian people,Unknown,Unknown,N,H. Edwards,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1617.00.00-Purchas.pdf +137,1638.00.00.R,1638,1638,Unprovoked,Unknown,Unknown,Unknown,Unknown,sailors,M,Unknown,UNKNOWN,Sir Thomas Herbert,,http://sharkattackfile.net/spreadsheets/pdf_directory/1638.00.00.R-Herbert +136,1637.00.00.R,1637,1637,Unprovoked,India,West Bengal,Hooghly River mouth,Wading,Hindu pilgrims,Unknown,Unknown,UNKNOWN,H. Edwards,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1637.00.00-Manrique.pdf +135,1617.00.00.R,1617,1617,Unprovoked,India,West Bengal,Ganges Delta,Unknown,Indian people,Unknown,Unknown,UNKNOWN,H. Edwards,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1617.00.00-Purchas.pdf 134,1642.00.00,1642,1642,Unprovoked,Usa,New York ,Between Manhattan and The Bronx,Swimming ,Antony Van Corlear,M,FATAL,Y,Knickerbocker's History of New York,by Washington Irving,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00-Corlear.pdf 133,1595.00.00,1595,1595,Unprovoked,India,Kerala,River Cochin,Ship lay at anchor & man was working on its rudder,male,M,"Leg severed mid-thigh, hand severed, arm above elbow and part of buttocks. Not known if he survived",UNKNOWN,The Voyage of John Huyghen van Linschoten,,http://sharkattackfile.net/spreadsheets/pdf_directory/1595.00.00-Cochin.pdf 132,1580.01.10.R,Letter dated 10-Jan-1580,1580,Unprovoked,Unknown,Unknown,Unknown,Man fell overboard from ship. Those on board threw a rope to him with a wooden block & were pulling him to the ship,male,M,"FATAL. ""Shark tore him to pieces.",Y,G.P. Whitley,p. 10,http://sharkattackfile.net/spreadsheets/pdf_directory/1580.01.10.R-Portugal-India.pdf -131,1555.00.00,1555,1555,Unprovoked,Unknown,Unknown,Unknown,Swimming,male,M,Unknown,N,Olaus Magnus,,http://sharkattackfile.net/spreadsheets/pdf_directory/1555.00.00 - Olaus Magnus.pdf -130,1554.00.00,Ca. 1554,1554,Unprovoked,France,Nice & Marseilles,Unknown,Unknown,males (wearing armor),M,Unknown,N,G. Rondelet ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1554.00.00-Rondelet.pdf +131,1555.00.00,1555,1555,Unprovoked,Unknown,Unknown,Unknown,Swimming,male,M,Unknown,UNKNOWN,Olaus Magnus,,http://sharkattackfile.net/spreadsheets/pdf_directory/1555.00.00 - Olaus Magnus.pdf +130,1554.00.00,Ca. 1554,1554,Unprovoked,France,Nice & Marseilles,Unknown,Unknown,males (wearing armor),M,Unknown,UNKNOWN,G. Rondelet ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1554.00.00-Rondelet.pdf 129,1543.00.00,Ca. 1543,1543,Unprovoked,Venezuela,Magarita or Cubagua Islands,Unknown,Pearl diving,Indian slave,M,FATAL,Y,J. Castro,,http://sharkattackfile.net/spreadsheets/pdf_directory/1543.00.00.R-LasCasas.pdf 128,0500.00.00,Circa 500 A.D.,500,Unprovoked,Unknown,Unknown,Unknown,Unknown,male,Unknown,Foot severed,N,J. Castro,,http://sharkattackfile.net/spreadsheets/pdf_directory/500AD-Mexico.pdf 127,0077.00.00,77 A.D.,77,Unprovoked,International_water,Ionian Sea,Unknown,Sponge diving,males,M,FATAL,Y,Perils mentioned by Pliny the Elder (23 A.D. to 76 A.D.),,http://sharkattackfile.net/spreadsheets/pdf_directory/77AD-Pliny.pdf @@ -5968,7 +5968,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 29,ND.0028,A few years before 1938,0,Boat,Italy,Adriatic Sea,Unknown,Wooden fishing boat,Occupant: Mr. Maciotta,M,No injury to occupant; shark capsized boat,N,A. De Maddalena; Anon. (1938),,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0028-Maciotta.pdf 28,ND.0027,No date,0,Unprovoked,Greece,Dodecanese Islands,Symi Island,Sponge diving,Psarofa-gomenes,M,Head bitten,N,M. N. Kalafatas ,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0027-Psarofagomenos.pdf 27,ND.0026,Early 1930s,0,Unprovoked,Unknown,Unknown,Unknown,Standing,a servant,M,FATAL,Y,Mitchell-Hedges,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0026-Belize.pdf -26,ND.0025,Before 1927,0,Unprovoked,Australia,New South Wales,"Spectacle Island, Port Jackson",Unknown,"male, the Sergeant of Marines",M,Unknown,N,H. Capper,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0025-Sgt-SpectacleIsland.pdf +26,ND.0025,Before 1927,0,Unprovoked,Australia,New South Wales,"Spectacle Island, Port Jackson",Unknown,"male, the Sergeant of Marines",M,Unknown,UNKNOWN,H. Capper,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0025-Sgt-SpectacleIsland.pdf 25,ND.0024,Between 1918 & 1939,0,Unprovoked,Reunion,Saint-Denis,Barachois,Swimming,Unknown,Unknown,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0024-Barachois-Reunion.pdf 24,ND.0023,No date,0,Unprovoked,South africa,Western Cape Province,Arniston,Wading,Madelaine Dalton,F,Ankle bitten,N,L. Green in Tavern of the Seas,p.182,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0023-Dalton.pdf 23,ND.0022,No date,0,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,Jaringoorli,M,Lacerations to thigh,N,Adelaide Advertiser,1/11/1940,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0022-Jaringoorli.pdf diff --git a/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.pkl b/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.pkl index 83270f76fc71b6dc931d01d3bf09b0310ac55c39..7a5e1f7b6800a0fdc7c2c957219d7bae16f4fdd9 100644 GIT binary patch delta 1119 zcmY*XKTH#06o;0BdVY_q^jbNAQn(OLq*(r#Du1LdE-p7a=*7{P$mZhE;f$j!_N~Uj z)f-GMVbG332oxg5K?MyG5@T`%6R@cG`>sl1crV|d_r3S~^Hpb^>a0_A8{LQ-b(>tp zZFXDSn0vxi-IFiH{SWK~LgmF2sXX&j7@XS>7RLi|RVJIgO_8mwrr(GJ-<%hnjMeqh zHeLl6Na5FWVuIHrWU^O5t=CHyJF7U$y%$-(xF!E_ALaWcaxQaVA>7(B28XWY9IX+sG;{ zpejImQl?=J_QWvHw31npi`)<>RK`f-ppBqI2NW^3QJ>Q&&GFAD30Z=@QTiebv@rSU zvgnec#JFWim^ijdJ3?c7l%U!w=m65UIv8lBAKOi^vy1v$J5X+V9COO&C4e2sAI>i7 zIJ46Ph0X!bD?<8|lnQr|%`+=7ELes_=%R9=n-o8Y(P&hfs_{|}Wqn7`ScHEoXd5c+ z&B0&5&PrL+KFF2B^6(FUwjAiSLjdO&`hu~+@ew@s1TG|Z1}3Y9GxHVO^0-t>t4XG? zGlErUXZfuJHu(Q7eur5@Je`DcAt`Bv)KZ27m6o4I+K(w4VC1A=Xgo#p3g`MDLTG>Z zSM3=3N??Ablb*$n+<>4VWlu{pRp}!Hl|Kj_tQNK{{Mkw$Qn4Rtssj^>19T z+2%t8DtAv%o*@&sr}3nmM*@m}0HCDi$1hQTgl|aSrM(P$6}C-T_(Q1O`wto#?$lHD za9dk(&oCu;N=M5~5=5cMLL+bGf%F9-6)vJtCXZ`x5D5Uf9<@&rq7|Vb;)qj-HberU OBa(=e-#&Tz_WED2Zh-Ot delta 1098 zcmY*YO;6NN6wM4%W-Ra83d3M^(u|InijEAUaWu>VHY_kP{RPsW(1nSKt64O0DI0q? zE++nhNi;TLVY(DTpd=c<5J!S5jH$3t34WZ{0tt(I^ZMTXIOp8ky#;4)!D)LLFYEPr zIZyHWy}VcOPI#&}@Lb$q=guHCx$<7ju^tPX^+*`LLB;gTeIiYC>&KgI0;#3wQUQslZu zChK2BBNap6K_B-ba_bekA*CvCepOVFYWceYOs`Xo^*6vADYPxiR*&IO zX(1J)J&KiZKFB_DIl*2H>Z4@kIr@%Ew*h?Z3E+z=2!ukQu#HXLM5~wMxR3ux;u3PD z2?s7};MV9)R`SKRA23&VHjC#+3aZ2gT$n>L_Et%DQEpg5>2S7q)6xLc+((P(GaPED zyfF-iKBfd_ax{iEQ)j>$pKlfJo<<);o4| zH9TY7SoR42))TqKm}inwl#@UObV@5kEBJrpbR<+Oa3|?XMv7B>i0y}+glRAxb_zBK R8-mIAVOS~XwnmnE{{bneaJc{g diff --git a/module-1_projects/pandas-project/your-code/data-wrangling_ivy.ipynb b/module-1_projects/pandas-project/your-code/data-wrangling_ivy.ipynb index 3f4f883..193602c 100644 --- a/module-1_projects/pandas-project/your-code/data-wrangling_ivy.ipynb +++ b/module-1_projects/pandas-project/your-code/data-wrangling_ivy.ipynb @@ -25,7 +25,7 @@ }, { "cell_type": "code", - "execution_count": 95, + "execution_count": 3, "metadata": {}, "outputs": [ { @@ -41,14 +41,24 @@ "Activity object\n", "Name object\n", "Sex object\n", + "Age object\n", "Injury object\n", "Fatal (Y/N) object\n", + "Time object\n", + "Species object\n", "Investigator or Source object\n", + "pdf object\n", + "href formula object\n", "href object\n", + "Case Number.1 object\n", + "Case Number.2 object\n", + "original order int64\n", + "Unnamed: 22 object\n", + "Unnamed: 23 object\n", "dtype: object" ] }, - "execution_count": 95, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -63,7 +73,7 @@ "metadata": {}, "source": [ "# Approaches:\n", - " 1. Handling Missing Values\n", + " 1. Handle Missing Values\n", " 2. Check duplicated Columns\n", " 3. Redefine index\n", " 4. Clean up data in several columns e.g Date, Year\n", @@ -127,8 +137,7 @@ "source": [ "# 5 columns contains over 40% of missing values. It's safe to say that they are no longer representative for analysis. \n", "# Decision: dropping 5 columns \n", - "# *'Time' column will be very useful to analysize behavior of sharks. However % of missing values are too high. \n", - "# Decided to still drop it. " + "# *'Time' column will be very useful to analysize behavior of sharks. However % of missing values is too high. " ] }, { @@ -148,7 +157,7 @@ } ], "source": [ - "# Create to drop list with columns to be dropped \n", + "# Create to_drop list with columns to be dropped \n", "\n", "to_drop = cols_missing_values[cols_missing_values > 0.4].index\n", "to_drop" @@ -203,62 +212,31 @@ "name": "stderr", "output_type": "stream", "text": [ - "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:5: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " \"\"\"\n", - "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:6: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " \n", - "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:7: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " import sys\n", - "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:8: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " \n", - "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:9: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " if __name__ == '__main__':\n", - "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:10: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " # Remove the CWD from sys.path while we load stuff.\n", - "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:11: SettingWithCopyWarning: \n", + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:17: SettingWithCopyWarning: \n", "A value is trying to be set on a copy of a slice from a DataFrame\n", "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " # This is added back by InteractiveShellApp.init_path()\n", - "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:12: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " if sys.path[0] == '':\n" + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n" ] } ], "source": [ - "# For columns that are not related to other columns: Activity, Name, Sex, Investigator, href formula, href \n", - "# or columns that are the 'base' of other columns e.g. Location, Injury\n", - "# --- > Fill in 'N/A' or 'Unknown' for missing values since they are not available. \n", + "# For columns that are not related to other columns: Activity, Name, Sex, Investigator, href formula, href, Location, Injury\n", + "# --- > Fill in 'N/A' or 'Unknown' for missing values since there is no other reference to determine the values\n", "\n", - "df['Location'][df['Location'].isnull()] = 'Unknown'\n", - "df['Activity'][df['Activity'].isnull()] = 'Unknown'\n", - "df['Name'][df['Name'].isnull()] = 'Unknown'\n", - "df['Sex '][df['Sex '].isnull()] = 'Unknown'\n", - "df['Injury'][df['Injury'].isnull()] = 'Unknown'\n", - "df['href formula'][df['href formula'].isnull()] = 'N/A'\n", - "df['href'][df['href'].isnull()] = 'N/A'\n", - "df['Investigator or Source'][df['Investigator or Source'].isnull()] = 'Unknown'\n" + "\n", + "fill_values = {'Location' : 'Unknown',\n", + " 'Activity' : 'Unknown',\n", + " 'Name' : 'Unknown',\n", + " 'Sex ' : 'Unknown',\n", + " 'Injury' : 'Unknown',\n", + " 'href formula' : 'N/A',\n", + " 'href' : 'N/A',\n", + " 'Investigator or Source' : 'Unknown'\n", + " }\n", + "\n", + "\n", + "for x,y in fill_values.items():\n", + " df[x][df[x].isnull()] = y\n" ] }, { @@ -307,7 +285,7 @@ } ], "source": [ - "# Now we can also assign 'N/A' for values of 'Area' and 'Country' for records whose 'Location' is N/A\n", + "# Now we can also assign 'Unknown' for values of 'Area' and 'Country' for records whose 'Location' is unknown.\n", "\n", "df['Area'][(df['Area'].isnull()) & (df['Location']=='Unknown')] = 'Unknown'\n", "df['Country'][(df['Area']=='Unknown') & (df['Location']=='Unknown')] = 'Unknown'" @@ -321,10 +299,10 @@ { "data": { "text/plain": [ - "Country 0.003171\n", - "Area 0.031208\n", - "Fatal (Y/N) 0.003171\n", - "dtype: float64" + "Country 19\n", + "Area 187\n", + "Fatal (Y/N) 19\n", + "dtype: int64" ] }, "execution_count": 12, @@ -333,7 +311,7 @@ } ], "source": [ - "df.isnull().sum()[df.isnull().sum()>0]/len(df)" + "df.isnull().sum()[df.isnull().sum()>0]" ] }, { @@ -736,7 +714,7 @@ } ], "source": [ - "# The rest of cases tend to happen in international seas\n", + "# The rest of cases tended to happen in international seas\n", "# Assign 'INTERNATIONAL_WATER' in Country columns for those records to indicate that\n", "\n", "\n", @@ -783,8 +761,8 @@ } ], "source": [ - "# Looking into the locations values for the rest of missing values of 'Area', \n", - "# inputs are usually still not precise enough for us to determine the Area. \n", + "# After inspecting the locations values for the rest of missing values of 'Area', \n", + "# inputs are usually not precise enough for us to determine the Area. \n", "# Assign 'Unknown' \n", "df['Area'][df['Area'].isnull()] ='Unknown'" ] @@ -793,41 +771,6 @@ "cell_type": "code", "execution_count": 19, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:4: SettingWithCopyWarning: \n", - "A value is trying to be set on a copy of a slice from a DataFrame\n", - "\n", - "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", - " after removing the cwd from sys.path.\n" - ] - } - ], - "source": [ - "# Colunm 'Fatal' should contain only Y/N values \n", - "# Assign 'N' to 'Fatal' if 'Injury' is unknown. \n", - "\n", - "df['Fatal (Y/N)'][df['Injury']=='Unknown'] = 'N'" - ] - }, - { - "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [], - "source": [ - "# Looking into injuries data, A lot of no injuries and others cases victims are dead... \n", - "# Since the remaining percentage of missing values is very low, assign 'N' to the rest of missing values \n", - "# df['Fatal (Y/N)'][df['Fatal (Y/N)'].isnull()] = 'N'" - ] - }, - { - "cell_type": "code", - "execution_count": 21, - "metadata": {}, "outputs": [ { "data": { @@ -854,7 +797,7 @@ "Name: Injury, dtype: object" ] }, - "execution_count": 21, + "execution_count": 19, "metadata": {}, "output_type": "execute_result" } @@ -866,7 +809,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 20, "metadata": {}, "outputs": [], "source": [ @@ -878,7 +821,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 21, "metadata": {}, "outputs": [ { @@ -899,7 +842,7 @@ }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 22, "metadata": {}, "outputs": [ { @@ -927,7 +870,7 @@ "dtype: int64" ] }, - "execution_count": 24, + "execution_count": 22, "metadata": {}, "output_type": "execute_result" } @@ -948,7 +891,7 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 23, "metadata": {}, "outputs": [ { @@ -957,13 +900,13 @@ "False" ] }, - "execution_count": 25, + "execution_count": 23, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# Checked quickly if they are identical, result is False\n", + "# Check quickly if they are identical, result is False\n", "df['Case Number'].equals(df['Case Number.1'])\n", "df['Case Number.1'].equals(df['Case Number.2'])\n", "df['Case Number.2'].equals(df['Case Number'])" @@ -971,7 +914,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 24, "metadata": {}, "outputs": [ { @@ -1100,7 +1043,7 @@ "5150 1911.07.31.R 1911.07.31.T 1911.07.31.R" ] }, - "execution_count": 26, + "execution_count": 24, "metadata": {}, "output_type": "execute_result" } @@ -1112,7 +1055,7 @@ }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 25, "metadata": {}, "outputs": [], "source": [ @@ -1123,7 +1066,7 @@ }, { "cell_type": "code", - "execution_count": 28, + "execution_count": 26, "metadata": {}, "outputs": [ { @@ -1134,7 +1077,7 @@ "dtype: float64" ] }, - "execution_count": 28, + "execution_count": 26, "metadata": {}, "output_type": "execute_result" } @@ -1145,7 +1088,7 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 27, "metadata": {}, "outputs": [ { @@ -1562,7 +1505,7 @@ "5857 http://sharkattackfile.net/spreadsheets/pdf_di... " ] }, - "execution_count": 29, + "execution_count": 27, "metadata": {}, "output_type": "execute_result" } @@ -1573,7 +1516,7 @@ }, { "cell_type": "code", - "execution_count": 30, + "execution_count": 28, "metadata": {}, "outputs": [], "source": [ @@ -1595,7 +1538,7 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 29, "metadata": {}, "outputs": [], "source": [ @@ -1604,7 +1547,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 30, "metadata": {}, "outputs": [ { @@ -1615,7 +1558,7 @@ "dtype: float64" ] }, - "execution_count": 33, + "execution_count": 30, "metadata": {}, "output_type": "execute_result" } @@ -1632,7 +1575,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 31, "metadata": {}, "outputs": [], "source": [ @@ -1644,13 +1587,13 @@ "metadata": {}, "source": [ "### 3. Reset index\n", - "- Looking into Case number, they contain usually date of the attach cases. However the user input is too inconsistant and therefore it is not recommended to use this column as index reference. Nonetheless we will keep this column as it provides information in case the input in date column is not complete. \n", - "- Column 'original order' seems to be a good candidate. They seem to follow the order when attacks were reported. " + "- Looking into Case numbers, they contain usually date of the attach cases. However the user input is too inconsistant and therefore it is not recommended to use this column as index reference. Nonetheless we will keep this column as it provides information in case the input in date column is not complete. \n", + "- Column 'original order' seems to be a good candidate as an index. They seem to follow the order when attacks were reported. " ] }, { "cell_type": "code", - "execution_count": 35, + "execution_count": 32, "metadata": {}, "outputs": [ { @@ -1670,7 +1613,7 @@ "Name: original order, Length: 5988, dtype: int64" ] }, - "execution_count": 35, + "execution_count": 32, "metadata": {}, "output_type": "execute_result" } @@ -1682,7 +1625,7 @@ }, { "cell_type": "code", - "execution_count": 36, + "execution_count": 33, "metadata": {}, "outputs": [ { @@ -1944,21 +1887,21 @@ "5424 http://sharkattackfile.net/spreadsheets/pdf_di... 569 " ] }, - "execution_count": 36, + "execution_count": 33, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# Out of 5988 records, values of 4 records are duplicated. \n", - "# Action: drop one of the duplicate cases, sort the column and make it as index \n", + "# Action: drop one of the duplicate cases, sort the column and set it as index \n", "\n", "df[(df['original order']==5661) | (df['original order']==569)|(df['original order']==3847) | (df['original order']==5739)]" ] }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 34, "metadata": {}, "outputs": [], "source": [ @@ -1968,7 +1911,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 35, "metadata": {}, "outputs": [ { @@ -1977,7 +1920,7 @@ "True" ] }, - "execution_count": 38, + "execution_count": 35, "metadata": {}, "output_type": "execute_result" } @@ -1988,7 +1931,7 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 36, "metadata": {}, "outputs": [], "source": [ @@ -2007,13 +1950,13 @@ "metadata": {}, "source": [ "1. Date\n", - " - 'reported' appeared multiple times in date and provide no useful information\n", - " - remove 'reported'\n" + " - Word 'reported' appeared multiple times in date and provide no useful information\n", + " - Remove 'reported'\n" ] }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 37, "metadata": {}, "outputs": [], "source": [ @@ -2028,7 +1971,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 38, "metadata": {}, "outputs": [ { @@ -2049,7 +1992,7 @@ "Name: Date, Length: 5988, dtype: object" ] }, - "execution_count": 56, + "execution_count": 38, "metadata": {}, "output_type": "execute_result" } @@ -2068,7 +2011,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 39, "metadata": {}, "outputs": [], "source": [ @@ -2085,7 +2028,7 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 40, "metadata": {}, "outputs": [ { @@ -2101,7 +2044,7 @@ "Name: Sex , dtype: int64" ] }, - "execution_count": 44, + "execution_count": 40, "metadata": {}, "output_type": "execute_result" } @@ -2112,7 +2055,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 41, "metadata": {}, "outputs": [], "source": [ @@ -2121,7 +2064,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 42, "metadata": {}, "outputs": [ { @@ -2142,7 +2085,7 @@ }, { "cell_type": "code", - "execution_count": 74, + "execution_count": 43, "metadata": {}, "outputs": [ { @@ -2154,7 +2097,7 @@ "Name: Sex , dtype: int64" ] }, - "execution_count": 74, + "execution_count": 43, "metadata": {}, "output_type": "execute_result" } @@ -2173,24 +2116,24 @@ }, { "cell_type": "code", - "execution_count": 59, + "execution_count": 44, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "N 4341\n", + "N 4313\n", "Y 1569\n", - "UNKNOWN 66\n", + "UNKNOWN 94\n", " N 8\n", - "n 1\n", + "N 1\n", "#VALUE! 1\n", "F 1\n", - "N 1\n", + "n 1\n", "Name: Fatal (Y/N), dtype: int64" ] }, - "execution_count": 59, + "execution_count": 44, "metadata": {}, "output_type": "execute_result" } @@ -2201,19 +2144,19 @@ }, { "cell_type": "code", - "execution_count": 72, + "execution_count": 45, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "N 4351\n", + "N 4323\n", "Y 1570\n", - "UNKNOWN 67\n", + "UNKNOWN 95\n", "Name: Fatal (Y/N), dtype: int64" ] }, - "execution_count": 72, + "execution_count": 45, "metadata": {}, "output_type": "execute_result" } @@ -2222,38 +2165,6 @@ "df['Fatal (Y/N)'].str.replace(' ','').str.replace('F','Y').str.replace('n','N').str.replace('#VALUE!','UNKNOWN').value_counts()" ] }, - { - "cell_type": "code", - "execution_count": 70, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "original order\n", - "5993 N\n", - "5992 N\n", - "5991 N\n", - "5990 N\n", - "5989 N\n", - " ..\n", - "6 Y\n", - "5 Y\n", - "4 Y\n", - "3 Y\n", - "2 Y\n", - "Name: Fatal (Y/N), Length: 5988, dtype: object" - ] - }, - "execution_count": 70, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "df['Fatal (Y/N)'].str.replace('#VALUE!','')" - ] - }, { "cell_type": "markdown", "metadata": {}, @@ -2267,7 +2178,7 @@ }, { "cell_type": "code", - "execution_count": 106, + "execution_count": 46, "metadata": {}, "outputs": [], "source": [ @@ -2276,7 +2187,7 @@ }, { "cell_type": "code", - "execution_count": 108, + "execution_count": 47, "metadata": {}, "outputs": [ { @@ -2506,7 +2417,7 @@ "[5988 rows x 10 columns]" ] }, - "execution_count": 108, + "execution_count": 47, "metadata": {}, "output_type": "execute_result" } @@ -2517,7 +2428,7 @@ }, { "cell_type": "code", - "execution_count": 119, + "execution_count": 48, "metadata": {}, "outputs": [], "source": [ @@ -2527,7 +2438,7 @@ }, { "cell_type": "code", - "execution_count": 121, + "execution_count": 49, "metadata": {}, "outputs": [], "source": [ @@ -2543,7 +2454,7 @@ }, { "cell_type": "code", - "execution_count": 122, + "execution_count": 50, "metadata": {}, "outputs": [ { @@ -2552,7 +2463,7 @@ "0" ] }, - "execution_count": 122, + "execution_count": 50, "metadata": {}, "output_type": "execute_result" } @@ -2566,13 +2477,13 @@ "metadata": {}, "source": [ "### 7. Rename and format columns \n", - " - Rename 'href' to 'Case file path\n", - " - Remove unessary space in 'Sex ' column name" + " - Rename 'href' to 'Case file path'\n", + " - Remove unessary space in 'Sex ' column name " ] }, { "cell_type": "code", - "execution_count": 123, + "execution_count": 51, "metadata": {}, "outputs": [ { @@ -2584,7 +2495,7 @@ " dtype='object')" ] }, - "execution_count": 123, + "execution_count": 51, "metadata": {}, "output_type": "execute_result" } @@ -2595,7 +2506,7 @@ }, { "cell_type": "code", - "execution_count": 128, + "execution_count": 52, "metadata": {}, "outputs": [], "source": [ @@ -2606,7 +2517,7 @@ }, { "cell_type": "code", - "execution_count": 129, + "execution_count": 53, "metadata": {}, "outputs": [ { @@ -2810,7 +2721,7 @@ "5989 9/16/2016 " ] }, - "execution_count": 129, + "execution_count": 53, "metadata": {}, "output_type": "execute_result" } @@ -2825,12 +2736,12 @@ "source": [ "### 8. Rearrange columns\n", "\n", - " - Move 'Ref date or page' after 'Investigator or Source'" + " - Move 'Ref date or page' to follow 'Investigator or Source'" ] }, { "cell_type": "code", - "execution_count": 132, + "execution_count": 54, "metadata": {}, "outputs": [], "source": [ @@ -2841,7 +2752,7 @@ }, { "cell_type": "code", - "execution_count": 134, + "execution_count": 55, "metadata": {}, "outputs": [ { @@ -3037,7 +2948,7 @@ "5989 http://sharkattackfile.net/spreadsheets/pdf_di... " ] }, - "execution_count": 134, + "execution_count": 55, "metadata": {}, "output_type": "execute_result" } @@ -3055,7 +2966,7 @@ }, { "cell_type": "code", - "execution_count": 135, + "execution_count": 56, "metadata": {}, "outputs": [], "source": [ @@ -3064,7 +2975,7 @@ }, { "cell_type": "code", - "execution_count": 136, + "execution_count": 57, "metadata": {}, "outputs": [], "source": [ From 96415d068ccafade54f188b76e6365dbae4838d4 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sun, 27 Oct 2019 22:02:26 +0100 Subject: [PATCH 17/30] Updated answers --- .../your-code/cleaned_shark_attacks.csv | 1364 ++++++++--------- .../your-code/cleaned_shark_attacks.pkl | Bin 1580410 -> 1579118 bytes .../your-code/data-wrangling_ivy.ipynb | 214 ++- 3 files changed, 846 insertions(+), 732 deletions(-) diff --git a/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv b/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv index bf320de..111eda0 100644 --- a/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv +++ b/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.csv @@ -33,7 +33,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5962,2016.07.16.a,16-Jul-16,2016,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Unknown,female,F,Minor injury to toes,N,Orlando Sentinel,7/21/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.a-NSB.pdf 5961,2016.07.15,15-Jul-16,2016,Unprovoked,Usa,South Carolina,"North Myrtle Beach, Horry County",Swimming,male,M,Puncture wounds to foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14-MyrtleBeach.pdf 5960,2016.07.14.4, 14-Jul-2016,2016,Unprovoked,Bahamas,Unknown,Tiger Beach,Scuba Diving,Michael Dornellas,M,Face bruised when partly blind shark collided with him,N,GrindTV,7/14/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14.R-TigerBeach.pdf -5959,2016.07.08.R,08-Jul-2016,2016,Unprovoked,Spain,Canary Islands,"Las Teresitas, Tenerife",Wading,female,F,"5 tiny puncture marks to lower leg, treated with hydrogen peroxide",N,La Opinion de Tenerife,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08.R-Spain.pdf +5959,2016.07.08.R,08-Jul-16,2016,Unprovoked,Spain,Canary Islands,"Las Teresitas, Tenerife",Wading,female,F,"5 tiny puncture marks to lower leg, treated with hydrogen peroxide",N,La Opinion de Tenerife,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08.R-Spain.pdf 5958,2016.07.08,08-Jul-16,2016,Boat,Usa,California,"Capitola, Santa Cruz County",Fishing for squid,Mark Davis,M,"No injury. Hull bitten, tooth fragment recovered",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08-CapitolaBoat.pdf 5957,2016.07.07.b,07-Jul-16,2016,Provoked,Usa,Massachusetts,"Off Gloucester, Essec County",Fishing,Roger Brissom,M,Fin of hooked shark injured fisherman's forearm. . PROVOKED INCIDENT,N,Salem News 7/8/2016,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.b-Brissom.pdf 5956,2016.07.07.a,07-Jul-16,2016,Boat,Usa,California,"Off Palos Verdes peninsula, Los Angeles County",Fishing for sharks,24' boat Shark Tagger Occupant Keith Poe,M,"No injury. Hull bitten, tooth fragment recovered",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.a-PoeBoat.pdf @@ -85,12 +85,12 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5911,2016.03.11,11-Mar-16,2016,Unprovoked,Usa,Florida,"Vero Beach, St. Lucie County",Body surfing,Daniel Kenny,M,Lacerations to right foot and ankle,N,WCBV-5,3/31/206,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.11-Kenny.pdf 5910,2016.03.10,10-Mar-16,2016,Unprovoked,Fiji,Vanua Levu,Unknown,Diving for beche-de-mer,Maika Tabua,M,FATAL,Y,Fiji Sun,3/12/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.10-Tabua.pdf 5909,2016.03.04,04-Mar-16,2016,Unprovoked,Usa,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Unknown,male,M,Superficial injury to foot,N,WPTV. 3/4/2016,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.04-OCPark.pdf -5908,2016.03.03.R,03-Mar-2016,2016,Unprovoked,Australia,South Australia,Wrights Bay,Fishing,Lee Taplin,M,Puncture wounds to right calf,N,9 News,3/1/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.03.R-Taplin.pdf +5908,2016.03.03.R,03-Mar-16,2016,Unprovoked,Australia,South Australia,Wrights Bay,Fishing,Lee Taplin,M,Puncture wounds to right calf,N,9 News,3/1/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.03.R-Taplin.pdf 5907,2016.03.02,02-Mar-16,2016,Unprovoked,Brazil,Santa Catarina State,Escalerio Beach Balneário Camboriú,Swimming,Rafael Hermes Thomas,M,Minor injury to head,N,Misones Online,3/4/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.02-Thomas.pdf 5906,2016.02.22,22-Feb-16,2016,Unprovoked,New caledonia,South Province,"Ricaudy Reef, Noumea",Kite surfing,Adrian *,M,Puncture wounds to right thigh,N,Les Nouvelles Calédoniennes,2/23/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.22-Noumea.pdf 5905,2016.02.19, 19-Feb-2016,2016,Unprovoked,New caledonia,South Province,Yate,Spearfishing,male,M,Forearm bitten,N,Les Nouvelles Calédoniennes,2/19/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.19-NewCaledonia.pdf 5904,2016.02.12,12-Feb-16,2016,Unprovoked,Dominican republic,Altagracia Province,"Bavaro Beach, Punta Cana",Wading,Patricia Howe,F,Avulsion injury to lower leg,N,S. Harris,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.12-Howe.pdf -5903,2016.02.10.R,10-Feb-2016,2016,Invalid,Cayman islands,Grand Cayman,Stingray City Bar,Feeding stingrays?,Richard Branson,M,Minor injury to wrist from Southern stingray,N,R. Branson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.10.R-Branson-stingray.pdf +5903,2016.02.10.R,10-Feb-16,2016,Invalid,Cayman islands,Grand Cayman,Stingray City Bar,Feeding stingrays?,Richard Branson,M,Minor injury to wrist from Southern stingray,N,R. Branson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.10.R-Branson-stingray.pdf 5902,2016.02.10,10-Feb-16,2016,Invalid,Australia,Tasmania,Nettley Bay,Surfing,male,M,"No injury, knocked off board",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.11-NettleyBay.pdf 5901,2016.02.05,05-Feb-16,2016,Unprovoked,Australia,Queensland,Stradbroke Island,Walking,female,F,Foot nipped,N,Courier Mail,2/5/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.05-Stradbroke.pdf 5900,2016.02.04,04-Feb-16,2016,Unprovoked,Australia,New South Wales,Hams Beach,Windsurfing,Andrew Morris,M,"No injury, shark bit board",N,B. Myatt,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.04-Morris.pdf @@ -100,7 +100,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5896,2016.01.24.b,24-Jan-16,2016,Unprovoked,Usa,Texas,Off Surfside,Spearfishing,Keith Love,M,"Bruised ribs & tail bone, speargun broken and wetsuit cut",N,K. Love,,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.b-Love.pdf 5895,2016.01.24.a,24-Jan-16,2016,Boat,United arab emirates,Fujairah Emirate,35 miles off Fujairah,Fishing,Occupants: Hamza Humaid Al Sahra’a & 5 crew,M,"No injury to occupants, shark leapt into boat",N,Gulf News,1/25/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.a-UAEboat.pdf 5894,2016.01.23,23-Jan-16,2016,Unprovoked,Usa,Hawaii,"Wailea Beach, Maui",Paddle boarding,Matt Mason,M,No injury,N,Grand Forks Herald,1/27/2915,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.23-Mason.pdf -5893,2016.01.11.R,11-Jan-2016,2016,Unprovoked,Australia,Queensland,"Happy Valley Beach, Caloundra",Surfing,Shane Hilder,M,Laceration to right foot,N,ABC Sunshine Coast,1/11/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.11.R-Hilder.pdf +5893,2016.01.11.R,11-Jan-16,2016,Unprovoked,Australia,Queensland,"Happy Valley Beach, Caloundra",Surfing,Shane Hilder,M,Laceration to right foot,N,ABC Sunshine Coast,1/11/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.11.R-Hilder.pdf 5892,2016.01.05,05-Jan-16,2016,Unprovoked,Australia,Queensland,Heron Island,Wading,Nicolas Davis,M,Laceration to right calf,N,Nine News,1/5/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.05-Davis.pdf 5891,2016.01.02,02-Jan-16,2016,Unprovoked,Australia,Queensland,Miall Island,Spearfishing,Allan Countryman,M,Lacerations to arms & leg,N,Courier Mail,1/2/2016,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.02-Countryman.pdf 5890,2015.12.26,26-Dec-15,2015,Boat,South africa,KwaZulu-Natal,Westbrook Beach,Kayak Fishing,Occupant: Grant Wardell,M,"No injury, kayak damaged",N,Traveller24,12/26/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.26-Wardell.pdf @@ -184,7 +184,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5811,2015.06.26.c,26-Jun-15,2015,Invalid,Usa,Florida,"Jacksonville Beach, Duval County",Swimming,female,F,Minor lacerations to leg,N,Action News Jax,6/26/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.c-Jacksonville.pdf 5810,2015.06.26.b,26-Jun-15,2015,Unprovoked,South africa,Western Cape Province,"Lookout Beach, Plettenberg Bay",Surfing,Dylan Reddering,M,Multiple lacerations to torso & leg,N,Zig Zag Surfing Magazine,,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.b-Reddering.pdf 5809,2015.06.26.a,26-Jun-15,2015,Unprovoked,Usa,South Carolina,"South Beach, Hunting Island State Park, Beaufort County",Standing,"Lance Donahue, Jr",M,Puncture wounds to foot,N,C. Creswell,GSAF; WCNC,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.a-Donahue.pdf -5808,2015.06.25.R,25-Jun-2015,2015,Provoked,Australia,Western Australia,Rottnest Island,Swimming,Stephen,M,Minor lacerations to forearm when he grabbed shark by its tail PROVOKED INCIDENT,N,West Australian Police,6/25/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25.R-Stephen.pdf +5808,2015.06.25.R,25-Jun-15,2015,Provoked,Australia,Western Australia,Rottnest Island,Swimming,Stephen,M,Minor lacerations to forearm when he grabbed shark by its tail PROVOKED INCIDENT,N,West Australian Police,6/25/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25.R-Stephen.pdf 5807,2015.06.25,25-Jun-15,2015,Unprovoked,Usa,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Body surfing?,Patrick Thornton,M,Multiple lacerations to back,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25-Avon.pdf 5806,2015.06.24.b,24-Jun-15,2015,Unprovoked,Usa,North Carolina,Surf City,Swimming,Brady Noyes,M,Minor injury to foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.b-Noyes.pdf 5805,2015.06.24.a,24-Jun-15,2015,Invalid,Australia,Western Australia,Denmark,Surfing,Lily Kumpe,F,"Bruises and abrasions to face, chin, chest, both shins & feet and cut to right hand when her surfboard was struck with force",N,L. Kumpe,R. Mcauley,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.a-Kumpe.pdf @@ -247,9 +247,9 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5748,2014.12.28.c,28-Dec-14,2014,Invalid,South africa,KwaZulu-Natal,Durban,Swimming,"5 people claimed to have been injured by a ""baby"" shark",Unknown,Minor cuts on feet,N,IOL News,12/29/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.c-Durban.pdf 5747,2014.12.28.b,28-Dec-14,2014,Unprovoked,Usa,California,"Montaña de Oro State Park, San Luis Obispo County ",Surfing,Kevin Swanson,M,Injury to hip/leg,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.b-Swanson.pdf 5746,2014.12.28.a,28-Dec-14,2014,Provoked,Australia,Victoria,Paradise Beach,Fishing,male,M,Laceration to calf when he fell on shark he had caught PROVOKED INCIDENT,N,ABC.net.au,12/28/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.a-ParadiseBeach.pdf -5745,2014.12.23.R,23-Dec-2014,2014,Unprovoked,Unknown,Unknown,Unknown,Diving / Filming,male,M,"No injury, shark snagged its teeth in diver's suit",N,Maxisciences.com,12/23/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.23.R-GoblinShark.pdf +5745,2014.12.23.R,23-Dec-14,2014,Unprovoked,Unknown,Unknown,Unknown,Diving / Filming,male,M,"No injury, shark snagged its teeth in diver's suit",N,Maxisciences.com,12/23/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.23.R-GoblinShark.pdf 5744,2014.12.15,15-Dec-14,2014,Unprovoked,Australia,Queensland,Rudder Reef,Spearfishing,Daniel Smith,M,FATAL,Y,Herald Sun,12/15/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.15-DanielSmith.pdf -5743,2014.12.03.R,03-Dec-2014,2014,Provoked,Spain,Granada,Off Motril,Fishing for blue sharks,male,M,Glancing bite to wrist from netted shark PROVOKED INCIDENT,N,ABCandalucia,12/3/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.03.R-Spanish-fisherman.pdf +5743,2014.12.03.R,03-Dec-14,2014,Provoked,Spain,Granada,Off Motril,Fishing for blue sharks,male,M,Glancing bite to wrist from netted shark PROVOKED INCIDENT,N,ABCandalucia,12/3/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.03.R-Spanish-fisherman.pdf 5742,2014.11.29,29-Nov-14,2014,Unprovoked,Australia,Western Australia,"Pyramids Beach, Port Bouvard",Surfing,Cameron Pearman,M,Minor injuries to right leg,N,The Sydney Morning Herald,11/29/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.29-Pearman.pdf 5741,2014.11.20,20-Nov-14,2014,Provoked,Mauritius,Cargados Carajos Shoals (St. Brandon),Unknown,Fishing,Rameshwar Ram Dhauro,M,"FATAL, arm bitten by shark hauled on deck PROVOKED INCIDENT",Y,A. R. Ramjatan ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.20-Mauritius.pdf 5740,2014.11.19,19-Nov-14,2014,Boat,Australia,Western Australia,Freo,Fishing,Boat: occupants: David Lock & his father,M,"Shark chasing fish bumped boat, no injury to occupants",N,The West Australian,11/20/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.19-Freo.pdf @@ -277,7 +277,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5719,2014.10.02.b,02-Oct-14,2014,Unprovoked,Usa,California,"Walls Beach, Vandenberg AFB, Santa Barbara County",Surfing,M.M.,M,Lacerations to knee,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf 5718,2014.10.02.a,02-Oct-14,2014,Unprovoked,Australia,Western Australia,"Kelpids Beach, Wylie Bay, Esperance",Surfing,Sean Pollard,M,"Left arm & right hand severed, lacerations to both legs",N,9News,2/15/2015,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.a-Pollard.pdf 5717,2014.09.21,21-Sep-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jordan Lefebvre,M,Minor injury to left foot,N,NBC2 News,9/21/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.21-Lefebvre.pdf -5716,2014.09.13.R,12-Sep-2014,2014,Unprovoked,French polynesia,Moorea,Tiahura Lagoon,Feeding fish,female,F,Thumb & finger nipped,N,LeDepeche,9/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.12.R-Moorea.pdf +5716,2014.09.13.R,12-Sep-14,2014,Unprovoked,French polynesia,Moorea,Tiahura Lagoon,Feeding fish,female,F,Thumb & finger nipped,N,LeDepeche,9/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.12.R-Moorea.pdf 5715,2014.09.13,13-Sep-14,2014,Invalid,Usa,California,"Manresa State Beach, Santa Cruz County",Surfing,Beau Browning,M,"A hoax, no shark involvement",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.13-Browning.pdf 5714,2014.09.09,09-Sep-14,2014,Unprovoked,Australia,New South Wales,"Clarkes Beach, Byron Bay",Swimming,Paul Wilcox,M,FATAL,Y,BBC,9/9/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.09-Wilcox.pdf 5713,2014.09.06,06-Sep-14,2014,Unprovoked,Usa,Alabama,"Katrina Cut, Dauphin Island, Mobile County",Fishing ,Jamie Robson,M,Leg bitten,N,Fox10TV.com,9/7/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.06-Robson.pdf @@ -291,7 +291,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5705,2014.08.27.c,27-Aug-14,2014,Unprovoked,Spain,Alicante,Benidorm,Swimming,Raquel Martin,F,Minor lacerations to posterior lower leg,N,Diario Informacion,8/29/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.c-Spain.pdf 5704,2014.08.27.b,27-Aug-14,2014,Unprovoked,Usa,North Carolina,"Figure Eight Island, New Hanover County",Surfing,Hunter Anderson,M,Laceration to left hand,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.b-Anderson.pdf 5703,2014.08.27.a,27-Aug-14,2014,Unprovoked,Usa,South Carolina,"Surfside Beach, Horry County",Standing,female,F,Heel bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.a-Surfside.pdf -5702,2014.08.25,25-Aug-2014,2014,Provoked,Usa,Florida,Apalachicola Bay ,Fishing for sharks,John Wiley,M,Lacerations to forearm from hooked shark PROVOKED INCIDENT,N,Nooga.com,8/25/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.25.R-Wiley.pdf +5702,2014.08.25,25-Aug-14,2014,Provoked,Usa,Florida,Apalachicola Bay ,Fishing for sharks,John Wiley,M,Lacerations to forearm from hooked shark PROVOKED INCIDENT,N,Nooga.com,8/25/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.25.R-Wiley.pdf 5701,2014.08.24,24-Aug-14,2014,Unprovoked,Usa,North Carolina,"Off Masonboro Island, New Hanover County",Kite boarding,Miller Diggs,Unknown,Laceration to left foot,N,C. Creswell,GSAF; WWAY,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.24-Diggs.pdf 5700,2014.08.16,16-Aug-14,2014,Unprovoked,Australia,Western Australia,Gnaraloo,Spearfishing,Adam Haling ,M,Lacerations to face and neck,N,Herald Sun,8/21/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.16-Haling.pdf 5699,2014.08.12,12-Aug-14,2014,Unprovoked,Usa,Florida,"3 to 4 miles west of Indian Pass, Gulf County",Standing,Kyle Hayes,M,Puncture wounds and lacerations to left thigh and knee,N,K. Hayes / Brewton Standard,8/19/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.12-Hayes.pdf @@ -317,11 +317,11 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5679,2014.07.05.b,05-Jul-14,2014,Provoked,Usa,California,"Manhattan Beach, Los Angeles County",Swimming,Steve Robles,M,PROVOKED INCIDENT Torso bitten by shark hooked by an angler,N,R. Collier,GSAF / M Michaelson,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.b-Robles.pdf 5678,2014.07.05.a,05-Jul-14,2014,Unprovoked,Usa,California,"Oceano Dunes State Beach, San Luis Obispo County",Surfing,R.J.,M,"No injury, surboard bitten",N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.a-Surfer.pdf 5677,2014.07.03,03-Jul-14,2014,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Body surfing,Christian Fairbourne,M,Right hand bitten,N,C. Creswell,GSAF Live5News,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.03-Fairbourne.pdf -5676,2014.06.27.R,27-Jun-2014,2014,Boat,St. martin,Unknown,20 miles from shore,Transatlantic Rowing,Victor Mooney,M,His boat was holed by a shark,N,Star Advertiser,6/272014; Goree Challenge.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.27-Mooney.pdf +5676,2014.06.27.R,27-Jun-14,2014,Boat,St. martin,Unknown,20 miles from shore,Transatlantic Rowing,Victor Mooney,M,His boat was holed by a shark,N,Star Advertiser,6/272014; Goree Challenge.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.27-Mooney.pdf 5675,2014.06.25,25-Jun-14,2014,Unprovoked,Bahamas,Abaco Islands,Unknown,Spearfishing,Mark Adams,M,No injury but shark took his pole spear,N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.25-Adams.pdf 5674,2014.06.18.b,18-Jun-14,2014,Unprovoked,Australia,South Australia,"Middleton Point, Fleurieu Peninsula",Surfing,Max Longhurst ,M,"No injury, surfboard 'attacked'",N,The Times,6/19/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.b-Longhurst.pdf 5673,2014.06.18.a,18-Jun-14,2014,Unprovoked,Australia,South Australia,"Middleton Point, Fleurieu Peninsula",Body boarding,Jesse McKinnon,M,Lacerations to knee,N,The Advertiser,6/19/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.a-McKinnon.pdf -5672,2014.06.17.R,17-Jun-2014,2014,Provoked,Australia,Western Australia,Horizontal Falls,Petting a shark,Ric Wright,M,Lacerations to right hand by captive shark PROVOKED INCIDENT,N,Meribula News,6/17/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.17.R-Wright.pdf +5672,2014.06.17.R,17-Jun-14,2014,Provoked,Australia,Western Australia,Horizontal Falls,Petting a shark,Ric Wright,M,Lacerations to right hand by captive shark PROVOKED INCIDENT,N,Meribula News,6/17/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.17.R-Wright.pdf 5671,2014.06.09.c,09-Jun-14,2014,Unprovoked,Brazil,Unknown,500 km off the coast of Pernambuco,Fishing,Sunarko,M,Severe injury to arm,N,msn,6/11/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.c-Sunarko.pdf 5670,2014.06.09.b,09-Jun-14,2014,Unprovoked,Usa,Delaware,"Cape Henlopen State Park, Sussex County",Standing,Andrew Vance,M,"Abrasion to right hand, lacerations to left forearm",N,News Journal (Wilmington,Del),http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.b-Vance.pdf 5669,2014.06.09.a,09-Jun-14,2014,Unprovoked,Australia,South Australia,"Parsons Beach, Fleurieu Peninsula",Body boarding,Scott Berry,M,Minor injury to torso,N,The Australian,6/9/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09-Berry.pdf @@ -337,13 +337,13 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5659,2014.05.14,14-May-14,2014,Unprovoked,Australia,South Australia,"Elliston, Eyre Peninsula",Surfing,Andrew McLeod,M,"No injury, but surfboard severely damaged",N,N. Davies,The Advertiser,"http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.14-McLeod, pdf" 5658,2014.05.13,13-May-14,2014,Unprovoked,Usa,Florida,"Jacksonville Beach, Duval County",Wading,Mihaela Cosa,F,Lacerations and puncture wounds to right foot,N,M. Michaelson,Shark Research Institute,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.13-Cosa.pdf 5657,2014.05.11,11-May-14,2014,Unprovoked,Usa,Georgia,"Tybee Island, Chatham County",Surfing,Ayden Meadows,M,Puncture wounds to right thigh,N,Savannah Morning News,5/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.11-Meadows.pdf -5656,2014.05.10.R,10-May-2014,2014,Invalid,Usa,Florida,"Bethel Shoals, Indian River County",Diving,Jimmy Roseman,M,"No injury. No attack. 12' white shark appeared curious, not aggressive & departed when prodded by spear",N,Metro,5/10/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.10.R-Roseman.pdf +5656,2014.05.10.R,10-May-14,2014,Invalid,Usa,Florida,"Bethel Shoals, Indian River County",Diving,Jimmy Roseman,M,"No injury. No attack. 12' white shark appeared curious, not aggressive & departed when prodded by spear",N,Metro,5/10/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.10.R-Roseman.pdf 5655,2014.05.06,06-May-14,2014,Unprovoked,Usa,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Swimming,Kimberly Popp,F,Lacerations to left foot,N,The Island Packet,5/7/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.06-Popp.pdf 5654,2014.05.01,01-May-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Shane Nolet,M,Laceration to right hand and cuts on fingertips,N,Wesh.com,5/2/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.01-Nolet.pdf 5653,2014.04.24,24-Apr-14,2014,Unprovoked,Australia,Western Australia,"South Passage, south of Coral Bay",Spearfishing,male,M,Minor injury,N,9 News,4/24/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.24-WA.pdf 5652,2014.04.22,22-Apr-14,2014,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Swimming,male,M,Laceration & puncture wounds to right foot,N,R. Neale,Florida Today,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.22-CocoaBeach.pdf 5651,2014.04.15,15-Apr-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Justin Davidson,M,Minor lacerations to left foot,N,Daytona Beach News-Journal,4/15/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.15-NSB.pdf -5650,2014.04.12.R,12-Apr-2014,2014,Boat,Unknown,Unknown,Unknown,Shark watching,Inflatable boat,Unknown,"No injury to occupants, shark bit pontoon",N,You Tube,posted 4/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/.2014.04.12.R-inflatable +5650,2014.04.12.R,12-Apr-14,2014,Boat,Unknown,Unknown,Unknown,Shark watching,Inflatable boat,Unknown,"No injury to occupants, shark bit pontoon",N,You Tube,posted 4/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/.2014.04.12.R-inflatable 5649,2014.04.12,12-Apr-14,2014,Provoked,South africa,Eastern Cape Province,Port Alfred,Fishing,Lionel McDougall,M,Lacerations to leg & hand by hooked shark PROVOKED INCIDENT,N,The Citizen,4/12/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.12-McDougall.pdf 5648,2014.04.04.b,04-Apr-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Minor puncture wounds to lower left leg,N,News 13,4/4/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.b-NSB.pdf 5647,2014.04.04.a,04-Apr-14,2014,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Lacerations to foot,N,News 13,4/4/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.a-NSB.pdf @@ -359,7 +359,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5637,2014.03.12,12-Mar-14,2014,Unprovoked,Australia,New South Wales,Lighthouse Beach,Swimming,Mike Porter,M,Minor lacerations to foot,N,N. Keene,The Daily Telegraph,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.12-LightouseBeach.pdf 5636,2014.03.02,02-Mar-14,2014,Unprovoked,Usa,Florida,"Santa Lucea Beach, South Hutchinson Island, St. Lucie County",Surfing,Dylan Fugitt,M,Lacerations to toes,N,L.Gordon,CBS 12,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.02-Fugitt.pdf 5635,2014.02.20,20-Feb-14,2014,Unprovoked,French polynesia,Society Islands,Huahine,Kitesurfing,male,M,Lacerations to lower leg,N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.20-FrenchPolynesia.pdf -5634,2014.02.17,17-Feb-2014,2014,Boat,Unknown,Unknown,Unknown,Sailing,OneDLL,M,"No injury to occupants, hull bitten",N,Sail-World.com,2/17/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.17.R-OneDLL +5634,2014.02.17,17-Feb-14,2014,Boat,Unknown,Unknown,Unknown,Sailing,OneDLL,M,"No injury to occupants, hull bitten",N,Sail-World.com,2/17/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.17.R-OneDLL 5633,2014.02.08,08-Feb-14,2014,Unprovoked,Australia,South Australia,"Goldsmith Beach, Yorke Peninsula",Spearfishing / Free diving,Sam Kellett ,M,FATAL,Y,The Advertiser,2/9/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.08-Kellett.pdf 5632,2014.02.07.b,07-Feb-14,2014,Provoked,Trinidad & tobago,Trinidad,Unknown,Fishing,Simon Torres,M,Possibly a PROVOKED INCIDENT,N,Trinidad Guardian,2/11/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf 5631,2014.02.07,07-Feb-14,2014,Unprovoked,New zealand,South Island,Porpoise Bay,Surfing,Darren Mills,M,Lacerations to leg,N,New Zealand Herald,2/7/2014,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf @@ -419,7 +419,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5577,2013.08.14, 14-Aug-2013,2013,Unprovoked,Usa,Hawaii,"Makenat, Maui",Snorkeling,Jana Lutteropp,F,FATAL,Y,KHON2,8/15/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.14-Lutteropp.pdf 5576,2013.08.13, 13-Aug-2013,2013,Unprovoked,Usa,Hawaii,"Ka'a Point, Maui",Kiteboarding,Morgan Flannery,F,No injury & not on board. Board adrift when bitten by shark,N,Maui News,8/14/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.13-Flannery.pdf 5575,2013.08.11,11-Aug-13,2013,Unprovoked,Usa,South Carolina,Folly Beach,Surfing,Tyson Royston,M,"No injury, shark became entangled in his surfboard leash",N,Post and Courier,8/11/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.11-Royston.pdf -5574,2013.08.08.R,08-Aug-2013,2013,Unprovoked,Unknown,Unknown,Unknown,Attempting to free the shark,Tyler,M,"Unknown, but survived",N,WebProNews/Science,8/8/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.08-Tyler.pdf +5574,2013.08.08.R,08-Aug-13,2013,Unprovoked,Unknown,Unknown,Unknown,Attempting to free the shark,Tyler,M,"Unknown, but survived",N,WebProNews/Science,8/8/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.08-Tyler.pdf 5573,2013.08.05, 05-Aug-2013,2013,Unprovoked,Usa,Florida,"Sanibel Island, Lee County",Fishing,Christian Mercurio,M,Minor injury to foot & shin,N,NBC2 News,8/5/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.05-Mercurio.pdf 5572,2013.07.31, 31-Jul-2013,2013,Unprovoked,Usa,Hawaii,"Ulua Beach, Maui",Snorkeling,Evonne Cashman,F,"Lacerations to hand, face and torso",N,Maui Now,7/31/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.31-Cashmani.pdf 5571,2013.07.30, 30-Jul-2013,2013,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Swimming,Ty Bretz,M,Foot bitten,N,A. Brenneka,Shark Attack Survivors; C. Creswell,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.30-Bretz.pdf @@ -430,7 +430,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5566,2013.07.28.a,28-Jul-13,2013,Unprovoked,Bahamas,Abaco Islands,Grand Cay,Diving,male,M,Bitten on rear lower extremities,N,News Channel 5,7/28/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.a-Bahamas.pdf 5565,2013.07.22, 22-Jul-2013,2013,Unprovoked,Brazil,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Bruna Silva Gobbi ,F,FATAL,Y,G! Pernambuco,7/22/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.22-Gobbi.pdf 5564,2013.07.19,19-Jul-13,2013,Unprovoked,Usa,Alabama,"Gulf Shores, Baldwin County",Walking in surf,Laura Havrylkoff,F,Lacerations and abrasions to foot and ankle,N,A. Brenneka,Shark Attack Survivors; L. Havrylkoff,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.19-Havrylkoff.pdf -5563,2013.07.17.R,17-Jul-2013,2013,Unprovoked,Usa,Florida,"Butler Beach, St Augustine, St. Johns County",Swimming ,male,M,4 cuts to posterior calf,N,Florida Today,7/17/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.17-StAugustine.pdf +5563,2013.07.17.R,17-Jul-13,2013,Unprovoked,Usa,Florida,"Butler Beach, St Augustine, St. Johns County",Swimming ,male,M,4 cuts to posterior calf,N,Florida Today,7/17/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.17-StAugustine.pdf 5562,2013.07.15,15-Jul-13,2013,Unprovoked,Reunion,Saint-Paul,Le cimetière marin,Swimming & snorkeling,Sarah Roperh,F,FATAL,Y,Clicanoo,7/15/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.15-Reunion.pdf 5561,2013.07.14,14-Jul-13,2013,Unprovoked,Unknown,Unknown,Unknown,Swimming,Fernando Licay,M,FATAL,Y,Sun Star,7/18/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.14-Licay.pdf 5560,2013.07.11,11-Jul-13,2013,Unprovoked,Usa,North Carolina,Holden Beach. Brunswick County,Wading,Barbara Corey,F,Right foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.11-Corey.pdf @@ -445,7 +445,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5551,2013.06.17,17-Jun-13,2013,Unprovoked,Usa,Texas,"Surfside Beach, Brazoria County",Swimming,Garrett Sebesta ,M,Left leg & hand bitten,N,ABC News,6/18/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.17-Sebesta.pdf 5550,2013.06.16,16-Jun-13,2013,Unprovoked,South africa,Eastern Cape Province,Queensberry Bay,Surfing,Kevin Bracey,M,Lacerations to knee,N,Dispatch Online,6/19/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.16-Bracey.pdf 5549,2013.06.15,15-Jun-13,2013,Unprovoked,Usa,Florida,"Atlantic Beach, Duval County",Surfing,female,F,Lacerations to left ankle,N,ActionNewsJax.com,6/15/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.15-LaFlam.pdf -5548,2013.06.14.R,14-Jun-2013,2013,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Boogie Boarding,Allison Foreman,F,Puncture marks to hand,N,WMBF News,6/14/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.14.R-Foreman.pdf +5548,2013.06.14.R,14-Jun-13,2013,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Boogie Boarding,Allison Foreman,F,Puncture marks to hand,N,WMBF News,6/14/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.14.R-Foreman.pdf 5547,2013.06.06.b,06-Jun-13,2013,Provoked,Usa,Florida,"Off Snipe Point, Florida Keys, Monroe County",Fishing for sharks,Walter Kefauver,M,Left hand bitten as he attempted to remove hook from shark PROVOKED INCIDENT,N,CBS Miami,6/6/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.b-Kefauver.pdf 5546,2013.06.06.a,06-Jun-13,2013,Unprovoked,Australia,New South Wales,Target Beach,Surfing,Steve Adamson,M,"No injury, board damaged",N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.a-Adamson.pdf 5545,2013.05.27.b,27-May-13,2013,Unprovoked,Usa,Hawaii,"Halewia, Oahu",Diving,Tali Ena,M,Lacerations to right hand,N,A. Brenneka,Shark Attack Survivors,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27.b-Ena.pdf @@ -465,11 +465,11 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5531,2013.04.13.a,13-Apr-13,2013,Unprovoked,Unknown,Unknown,Unknown,Unknown,Nae Deok Kim,M,FATAL,Y,Pacific News Center,4/15/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.a-NaeDeokKim.pdf 5530,2013.04.10,10-Apr-13,2013,Unprovoked,French polynesia,Tuamotus,"North Pass, Fakarava",Kite boarding,Nick Eitel,M,"Underside of board, fins and, harness were damaged, and left hip, thigh and buttock sustained puncture wounds",N,N. Eitel,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.10-Eitel.pdf 5529,2013.04.04,04-Apr-13,2013,Unprovoked,Usa,Florida,"Jensen Beach, Martin County ",Swimming,male,M,Lacerations to hand,N,A. Brenneka,Shark Attack Survivors; TC Palm,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.04-JensenBeach.pdf -5528,2013.04.02.R,02-Apr-2013,2013,Invalid,Australia,Western Australia,Perth,Unknown,Martin Tann,M,Disappeared. No evidence that he was taken by a shark,Y,WA Today,4/4/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.R-Tann.pdf +5528,2013.04.02.R,02-Apr-13,2013,Invalid,Australia,Western Australia,Perth,Unknown,Martin Tann,M,Disappeared. No evidence that he was taken by a shark,Y,WA Today,4/4/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.R-Tann.pdf 5527,2013.04.02.a,02-Apr-13,2013,Unprovoked,Usa,Hawaii,Ka’anapali Shores,Surfing,male,M,Right thigh bitten,N,Maui Now,4/2/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.a-Hawaii.pdf 5526,2013.03.31,31-Mar-13,2013,Invalid,Australia,New South Wales,Terrigal Beach,Surfing,Richard Tognetti,M,Never happened; it was a hoax,N,Limelight Magazine,4/1/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.31-Tognetti.pdf 5525,2013.03.29,29-Mar-13,2013,Unprovoked,Seychelles,Unknown,Ile Platte,Free diving,Richard Parkinson,M,Lacerations to left foot,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.29-Parkinson.pdf -5524,2013.03.21.R,21-Mar-2013,2013,Unprovoked,Unknown,Unknown,Unknown,Snorkeling,Monika Wanis,F,Toe injured,N,H. Fairchild,The Lantern,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.R-Wanis.pdf +5524,2013.03.21.R,21-Mar-13,2013,Unprovoked,Unknown,Unknown,Unknown,Snorkeling,Monika Wanis,F,Toe injured,N,H. Fairchild,The Lantern,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.R-Wanis.pdf 5523,2013.03.21,21-Mar-13,2013,Unprovoked,Bahamas,Eleuthera,Savannah Sound,Fly fishing,Kerry Anderson,M,Left foot bitten,N,13wham.com,3/22/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.a-Bahamas.pdf 5522,2013.03.16.b,16-Mar-13,2013,Provoked,South africa,Western Cape Province,De Mond,Fishing - 'tag & release',Kobus Koeberg,M,Lacerations to left calf and heel from hooked shark PROVOKED INCIDENT,N,National Sea Rescue Institute,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.b-Koeberg.pdf 5521,2013.03.16.a,16-Mar-13,2013,Unprovoked,South africa,Western Cape Province,Hawston Beach,Surfing,Troy Henri,M,"No injury, surfboard bitten",N,Cape Times,3/19/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.a-Henri.pdf @@ -485,7 +485,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5511,2013.02.01,01-Feb-13,2013,Unprovoked,Jamaica,Kingston Parish,Pedro Cays,Unknown,male,M,Knee bitten,N,The Gleaner,2/1/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.01-Jamaica.pdf 5510,2013.01.26,26-Jan-13,2013,Boat,Australia,Victoria,Cape Nelson,Fishing,"Occupants: Andrew & Ben Donegan & Joel Ryan, ",M,"No injury to occupants, shark bit propeller",N,7NewsMelbourne,1/28/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.26-boat.pdf 5509,2013.01.25,25-Jan-13,2013,Unprovoked,Australia,Queensland,Noosa,Surfing,Matthew Cassaigne,M,Lacerations to neck,N,sharkattackfile.info,,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.25-Cassaigne.pdf -5508,2013.01.21.R,21-Jan-2013,2013,Invalid,Australia,Queensland,Bullcock Beach,Dragging stranded shark into deeper water,Paul Marshallsea,M,"No injury, a 3 m blue shark merely snapped at the man.",N,The Guardian,1/21/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.21.R-Marshallsea.pdf +5508,2013.01.21.R,21-Jan-13,2013,Invalid,Australia,Queensland,Bullcock Beach,Dragging stranded shark into deeper water,Paul Marshallsea,M,"No injury, a 3 m blue shark merely snapped at the man.",N,The Guardian,1/21/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.21.R-Marshallsea.pdf 5507,2013.01.16,16-Jan-13,2013,Unprovoked,Usa,Hawaii,Kiholo Bay,Surfing,Paul Santos,M,Left forearm bitten ,N,Hawaii 24/7,1/16/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.16-Santos.pdf 5506,2013.01.13,13-Jan-13,2013,Unprovoked,New zealand,Mercury Islands,Great Mercury Island,Spearfishing,Kim Bade,M,Minor cut on finger,N,Bay of Plenty Times,1/18/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.13-Bade.pdf 5505,2013.01.05,05-Jan-13,2013,Unprovoked,Australia,Western Australia,Near Legendre Island,Spearfishing / Free diving,Jake Swaffer,M,Calf & shin bitten ,N,Perth Now,1/7/2013,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.05-Swaffer.pdf @@ -510,7 +510,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5486,2012.10.18.b,18-Oct-12,2012,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,male,M,Minor bite to ankle,N,WESH.com,10/18/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.b-PonceInlet.pdf 5485,2012.10.18.a,18-Oct-12,2012,Unprovoked,Usa,Hawaii,"Kanaha Beach, Maui",Paddle boarding,David Peterson,M,"No injury, board bitten",N,Maui News,10/18/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.a-Peterson.pdf 5484,2012.10.16,16-Oct-12,2012,Invalid,Usa,Florida,Hobe Sound,Unknown,male,M,Laceration to toe,N,WPTV,10/16/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.16-HobeSound.pdf -5483,2012.10.11.R,11-Oct-2012,2012,Unprovoked,Nigeria,Delta,Oboro,Bathing,Mrs. Torugbene-Ere Aboh,F,Laceration to right leg,N,The Osun Defender,10/11/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.11.R-Nigeria.pdf +5483,2012.10.11.R,11-Oct-12,2012,Unprovoked,Nigeria,Delta,Oboro,Bathing,Mrs. Torugbene-Ere Aboh,F,Laceration to right leg,N,The Osun Defender,10/11/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.11.R-Nigeria.pdf 5482,2012.10.07,10-Oct-12,2012,Unprovoked,Usa,California,"Davenport Landing, Santa Cruz County",Windsurfing,Gunner Proppe,M,"No ijnury to boardrider, shark struck board breaking the mast",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.07-Proppe.pdf 5481,2012.10.02,02-Oct-12,2012,Unprovoked,Australia,Western Australia,"Mullaloo Beach, Perth",Bodyboarding,Andrew Gavriliu,M,"No injury, but swim fin bitten & torn",N,The West Australian,10/4/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.02-Gavriliu.pdf 5480,2012.09.25,25-Sep-12,2012,Unprovoked,Usa,Florida,"Melbourne Beach, Brevard County",Surfing,Brandon Taylor,M,Lacerations to left forearm,N,The Examiner,9/26/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.25-Taylor.pdf @@ -548,7 +548,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5448,2012.07.07.b,07-Jul-12,2012,Invalid,Australia,Victoria,Ship's Graveyard off Point Lonsdale,Scuba diving,Karen Lee,F,Cause of death was drowning & preceded shark involvement,Y,Aleks Devic,Herald Sun,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.b-Lee.pdf 5447,2012.07.07.a,07-Jul-12,2012,Unprovoked,Usa,California,"Pleasure Point, Santa Cruz County",Kayaking,M.C.,M,"No injury, kayak bitten",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.a-SantaCruz.pdf 5446,2012.07.06,06-Jul-12,2012,Unprovoked,South africa,Western Cape Province,"Sandstrand, Jongensfontein",Surfing,Jacque Mostert,M,Lacerattions to left thigh & knee,N,NSRI,7/6/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.06-Mostert.pdf -5445,2012.06.28.R,28-Jun-2012,2012,Invalid,Croatia,Unknown,Buccari Bay,Swimming,Unknown,Unknown,"Leg struck. Initally reported as a shark attack, but involved a swordfish",N,Il Gazzettino,6/28/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.28.R-Croatia.pdf +5445,2012.06.28.R,28-Jun-12,2012,Invalid,Croatia,Unknown,Buccari Bay,Swimming,Unknown,Unknown,"Leg struck. Initally reported as a shark attack, but involved a swordfish",N,Il Gazzettino,6/28/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.28.R-Croatia.pdf 5444,2012.06.26.c,26-Jun-12,2012,Unprovoked,Usa,Florida,"Juno Beach, Palm Beach County",Swimming,Nickolaus Bieber ,M,Thigh bitten,N,WPTV.com,6/26/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.c-Bieber.pdf 5443,2012.06.26.b,26-Jun-12,2012,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Nip to left foot,N,H. Frederick,Headline Surfer,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.b-NewSmyrnaBeach.pdf 5442,2012.06.26.a,26-Jun-12,2012,Unprovoked,Usa,Hawaii,"Kahana Beach, Maui",Sitting in the water,Sage St. Clair,F,Laceration to left calf,N,Hawaii News Now,6/26/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.a-StClair.pdf @@ -597,7 +597,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5399,2012.02.25,25-Feb-12,2012,Unprovoked,Australia,New South Wales,Broughton Island,Fishing,male,M,Laceration to left foot,N,B. Smee,Newcastle Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.25-BroughtonIslandFisherman.pdf 5398,2012.02.20,20-Feb-12,2012,Boat,South africa,Western Cape Province,Strandfontein,Fishing,8m inflatable boat. Occupants: Bhad Battle & Kevin Overmeyer,Unknown,"No injury to occupants, boat damaged",N,Cape Argus,2/21/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.20-StrandfonteinBoat.pdf 5397,2012.02.06,06-Feb-12,2012,Unprovoked,Australia,Queensland,Wurtulla,Surfing,Nick Ferguson,M,"No injury, but fin lost from surfboard",N,Sunshine Coast Daily,2/7/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.06-Ferguson.pdf -5396,2012.01.22.R,22-Jan-2012,2012,Unprovoked,Bahamas,Unknown,Cat Island,"Diving, photographing sharks",Russell Easton,M,"No injury, shark grabbed his camera",N,Evening Chronicle,1/23/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.22.R-Bahamas.pdf +5396,2012.01.22.R,22-Jan-12,2012,Unprovoked,Bahamas,Unknown,Cat Island,"Diving, photographing sharks",Russell Easton,M,"No injury, shark grabbed his camera",N,Evening Chronicle,1/23/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.22.R-Bahamas.pdf 5395,2012.01.27,27-Jan-12,2012,Unprovoked,Usa,Hawaii,Lanai,Snorkeling,J. Graden,Unknown,"No injury, shark bit swim fin",N,HawaiiNow.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.27-NV-Graden.pdf 5394,2012.01.19,19-Jan-12,2012,Unprovoked,Australia,Western Australia,Coral Bay,Snorkeling,David Pickering,M,Lacerations to right forearm,N,Sydney Morning Herald,1/20/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.19-Pickering.pdf 5393,2012.01.18.b,18-Jan-12,2012,Provoked,Taiwan,Taitung ,Taimali,Fishing,male,M,Bitten on left thigh PROVOKED ACCIDENT,N,Taiwan television,,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.b-Taiwan.pdf @@ -607,7 +607,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5389,2012.01.03,03-Jan-12,2012,Unprovoked,Australia,New South Wales,North Avoca Beach,Surfing,Mike Wells,M,Right forearm and wrist injured,N,Daily Telegraph,1/3/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.03-Wells.pdf 5388,2012.01.02,02-Jan-12,2012,Unprovoked,Australia,Queensland,Duranbah,Spearfishing,Hugo Silva,M,"No injury, punctures to swim fin",N,A. Brenneka,goldcoast.com.au,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf 5387,2011.12.31,31-Dec-11,2011,Unprovoked,Usa,Florida,"Jupiter, Palm Beach County",Unknown,male,M,Hand injured,N,Palm Beach Post, 12/31/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.31-Jupiter.pdf -5386,2011.12.26.R,26-Dec-2011,2011,Invalid,Antigua,St John's,Fort James Beach,Swimming,"Veron Edwards, Sr. ",M,Bitten on right hand & wrist,N,D. Francis,Caribarena,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.26.R-Edwards.pdf +5386,2011.12.26.R,26-Dec-11,2011,Invalid,Antigua,St John's,Fort James Beach,Swimming,"Veron Edwards, Sr. ",M,Bitten on right hand & wrist,N,D. Francis,Caribarena,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.26.R-Edwards.pdf 5385,2011.12.25,25-Dec-11,2011,Unprovoked,Ecuador,Santa Elena,Barandúa Beach,Surfing,Félix Júnior Lainez Trejos,M,Lacerations to left thigh and calf,N,A. Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.25-Trejos.pdf 5384,2011.12.23,23-Dec-11,2011,Unprovoked,Usa,Florida,New Smyrna Beach,Surfing,Will Futato,M,Laceration to ankle,N,Daytona Beach News-Journal,12/24/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.23-Futato.pdf 5383,2011.12.21.b,21-Dec-11,2011,Provoked,Usa,Hawaii,"Makahuena Point, Kauai",Canoeing,Keone Miyake,M,"No injury, after kayak collided with the shark, it bit the rudder PROVOKED INCIDENT",N,A. Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.b-Miyake.pdf @@ -621,11 +621,11 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5375,2011.11.29,29-Nov-11,2011,Unprovoked,Indonesia,Bali,Tabanan,Surfing,Marc Andrews,M,Lacerations to right hand,N,Daily Telegraph,11/30/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.29-Andrews.pdf 5374,2011.11.28,28-Nov-11,2011,Unprovoked,Australia,Queensland,Peregian,Swimming,Eamon Kriz,M,Puncture marks to foot,N,Sunshire Coast Daily,12/1/2011 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.28-Kriz-not-on-spreadsheet.pdf 5373,2011.11.22,22-Nov-11,2011,Unprovoked,Usa,California,Pigeon Point,Kayaking,Harry Pali,M,"No injury, kayak bitten",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.22-Harry-Pali.pdf -5372,2011.11.20.R,20-Nov-2011,2011,Unprovoked,Papua new guinea,East New Britain,Pigeon Island,Scuba diving,male,M,"No injury, shark collided with diver",N,you Tube,Shark Attack at 57 metres,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.20.R-PigeonIsland.pdf +5372,2011.11.20.R,20-Nov-11,2011,Unprovoked,Papua new guinea,East New Britain,Pigeon Island,Scuba diving,male,M,"No injury, shark collided with diver",N,you Tube,Shark Attack at 57 metres,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.20.R-PigeonIsland.pdf 5371,2011.11.12,12-Nov-11,2011,Unprovoked,Brazil,Pernambuco,"Punta Del Chifre Beach, Olinda",Surfing,Jerônimo Pereira da Paz ,M,Legs bitten,N,H. Nickel & A. Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.12-Periera-Pernambuco.pdf 5370,2011.11.11,11-Nov-11,2011,Unprovoked,Reunion,Bois-Blanc ,Sainte-Rose,Free diving / spearfishing,Jean-Paul Delaunay,M,Left foot bitten,N,H. Nickel & A. Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.11-Delaunay.pdf 5369,2011.10.29., 29-Oct-2011,2011,Unprovoked,Usa,California,"Marina State Beach, Monterey County",Surfing,Eric Tarantino,M,"Lacerations to right wrist, foream & neck",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.29-Tarantino.pdf -5368,2011.10.28.R,28-Oct-2011,2011,Unprovoked,Scotland,Moray,Spey Bay,Surfing,Andrew Rollo,M,"No injury, shark bumped leg & board. ",N,Daily Record,10/28/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28.R-Rollo.pdf +5368,2011.10.28.R,28-Oct-11,2011,Unprovoked,Scotland,Moray,Spey Bay,Surfing,Andrew Rollo,M,"No injury, shark bumped leg & board. ",N,Daily Record,10/28/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28.R-Rollo.pdf 5367,2011.10.28., 29-Oct-2011,2011,Provoked,South africa,KwaZulu-Natal,"uShaka Aquarium, Durban",Diving,Unknown,Unknown,Arm bitten by captive shark PROVOKED INCIDENT,N,Durban Radio,10/29/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28-uShaka-Aquarium.pdf 5366,2011.10.22,22-Oct-11,2011,Unprovoked,Australia,Western Australia,Rottnest Island,Diving,George Wainwright,M,FATAL,Y,Sky News,10/22/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.22-Wainwright.pdf 5365,2011.10.20,20-Oct-11,2011,Unprovoked,Usa,Oregon,"Newport, Lincoln County",Surfing,Bobby Gumm,M,"No injury, shark bit surfboard",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.20-Gumm.pdf @@ -688,9 +688,9 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5308,2011.06.19.b,19-Jun-11,2011,Unprovoked,Turks & caicos,Caicos Bank,French Cay,Spearfishing,Cefor Lewis,M,Right calf bitten,N,fptci.com,6/23/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.b-Lewis.pdf 5307,2011.06.19.a,19-Jun-11,2011,Unprovoked,Costa rica,Guanacaste,Playa Grande,Surfing,Kevin Moraga,M,FATAL,Y,D. Martinez,Tico Times,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.a-Moraga.pdf 5306,2011.06.15,15-Jun-11,2011,Unprovoked,Reunion,Saint-Gilles-les-Bains,Boucan-Canot,Boogie Boarding,Eddie Aubert,M,FATAL,Y,Surfprevention.com,6/16/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.15-Auber.pdf -5305,2011.06.14.R,14-Jun-2011,2011,Boat,United kingdom,Cornwall,St. Ives,Fishing,16' Dreamcatcher. Occupant: Ian Bussus,Unknown,"No injury, shark slammed into boat",N,G. Box-Turnbull,Daily Mirror,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.14.R-St.Ives.pdf +5305,2011.06.14.R,14-Jun-11,2011,Boat,United kingdom,Cornwall,St. Ives,Fishing,16' Dreamcatcher. Occupant: Ian Bussus,Unknown,"No injury, shark slammed into boat",N,G. Box-Turnbull,Daily Mirror,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.14.R-St.Ives.pdf 5304,2011.06.12,12-Jun-11,2011,Unprovoked,Usa,Florida,"Off Jupiter Inlet, Palm Beach County",Scuba diving,Daniel Webb,M,Lacerations to right calf,N,WPTV,6/13/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.12-Webb.pdf -5303,2011.06.06.R,06-Jun-2011,2011,Unprovoked,Columbia,San Andrés archipelago,Albuquerque Cay,Spearfishing,Jhon Jairo James,M,Injuries to right hand and forearm,N,Il Isleno.com,6/6/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.R-James.pdf +5303,2011.06.06.R,06-Jun-11,2011,Unprovoked,Columbia,San Andrés archipelago,Albuquerque Cay,Spearfishing,Jhon Jairo James,M,Injuries to right hand and forearm,N,Il Isleno.com,6/6/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.R-James.pdf 5302,2011.06.06.b,06-Jun-11,2011,Unprovoked,Usa,California,"La Jolla, San Diego County",Spearfishing,Justin Schlaefli,M,"No injury, minor damage to wetsuit",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.b-Schlaefli.pdf 5301,2011.06.06.a,06-Jun-11,2011,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Alan McIntosh,M,Puncture wound to calf,N,L. Lelis,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.a-McIntosh.pdf 5300,2011.06.01,01-Jun-11,2011,Unprovoked,Malaysia,Kedah,Palau Payar,Snorkeling,Canadian teen,F,Laceration to dorsum of right foot,N,meglognature.blogspot.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.01-Malaysia.pdf @@ -703,7 +703,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5293,2011.05.13.b,13-May-11,2011,Unprovoked,Usa,Florida,"Ponte Vedra Beach, St Johns County",Body surfing,Bob Brown,M,Lacerations to left foot & ankle,N,News 4,5/16/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.b-Brown.pdf 5292,2011.05.13.a,13-May-11,2011,Unprovoked,Usa,Florida,"Ormond Beach, Volusia County",Surfing,Adrian Bronson,M,Minor injury; puncture wounds to calf,N,L. Lelis,Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.a-Bronson.pdf 5291,2011.05.10,10-May-11,2011,Provoked,Usa,Florida,Miami,Fishing ,Brian Storch,M,Laceration to arm by captive shark PROVOKED INCIDENT,N,News 7,5/11/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.10-Storch.pdf -5290,2011.05.07.R,07-May-2011,2011,Invalid,United arab emirates (uae),Umm al Qaywayan Province,Khor Fakkan ,Fishing ,Mustafa Al Hammadi,M,"Erroneously reported on several internet sites as a ""shark attack"", it was the shark 8', 300-kg mako shark that was attacked, not the fisherman",N,Emirates 24/7 News,5/7/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.07.R-UAE.pdf +5290,2011.05.07.R,07-May-11,2011,Invalid,United arab emirates (uae),Umm al Qaywayan Province,Khor Fakkan ,Fishing ,Mustafa Al Hammadi,M,"Erroneously reported on several internet sites as a ""shark attack"", it was the shark 8', 300-kg mako shark that was attacked, not the fisherman",N,Emirates 24/7 News,5/7/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.07.R-UAE.pdf 5289,2011.05.04,04-May-11,2011,Unprovoked,South africa,KwaZulu-Natal,Palm Beach,Spearfishing,Trevor Burger,M,Calf bitten,N,The Witness,5/10/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.04-Burger.pdf 5288,2011.04.26,26-Apr-11,2011,Unprovoked,Usa,Florida,"Riviera Beach, Palm Beach County",Spearfishing,Anthony Segrich,M,Calf bitten,N,J. Wigham III,Palm Beach Post,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.26-Seagrich.pdf 5287,2011.04.23,23-Apr-11,2011,Unprovoked,Australia,Western Australia,Red Bluffs,Washing sand off a speared fish,Marcus van der Vyver,M,Heel bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.23-VanderVyver.pdf @@ -711,21 +711,21 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5285,2011.04.16,16-Apr-11,2011,Unprovoked,New zealand,South Island,Snapper Point,Surfing,Laine Hobson,M,Puncture to left hand,N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.16-Hobson.pdf 5284,2011.04.12,13-Apr-11,2011,Unprovoked,Indonesia,Bali,Balian,Surfing,Joe Ferrar,M,Lacerations to forearm,N,A.Brenneka,SharkAttackSurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.12-Ferrar.pdf 5283,2011.04.08,08-Apr-11,2011,Unprovoked,Fiji,Vitu Levu,"Malake Island, Ra Province",Diving,Etuate Caucau ,M,Minor injuries to left leg and hand,N,Bula Namaste,4/10/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.08-Caucau.pdf -5282,2011.03.29.R,29-Mar-2011,2011,Provoked,Usa,Texas,Matagorda Beach,"Standing, holding shark pup",Orlando,M,Minor laceration to shoulder from captive shark PROVOKED INCIDENT,N,You Tube,Baby Blacktip Shark Attack - How NOT to hold a shark.,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.29.R-Orlando.pdf +5282,2011.03.29.R,29-Mar-11,2011,Provoked,Usa,Texas,Matagorda Beach,"Standing, holding shark pup",Orlando,M,Minor laceration to shoulder from captive shark PROVOKED INCIDENT,N,You Tube,Baby Blacktip Shark Attack - How NOT to hold a shark.,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.29.R-Orlando.pdf 5281,2011.03.24,24-Mar-11,2011,Unprovoked,Mexico,Quintana Roo,"Gaviotas Beach, Cancun",Swimming,Liuba Taran,F,Lower leg & foot bitten,N,Canadian press,3/25/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.24-Taran.pdf 5280,2011.03.23,23-Mar-11,2011,Unprovoked,Australia,New South Wales,Crowdy Head,Surfing,David Pearson,M,Severe injury to left forearm,N,Nine News,3/24/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.23-Pearson.pdf 5279,2011.03.21.b,21-Mar-11,2011,Unprovoked,Mexico,Quintana Roo,Unknown,Swimming,Andrew Masternak ,M,Right foot bitten,N,Mississauga.net,3/29/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.b-Masternak.pdf 5278,2011.03.21.a,21-Mar-11,2011,Unprovoked,Fiji,Unknown,Nukudamu ,Diving / fishing,Metereti Jeke,M,"Left forearm severely bitten, surgically amputated",N,Fiji Times Online,3/24/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.a-Jeke.pdf 5277,2011.03.16,16-Mar-11,2011,Unprovoked,Australia,New South Wales,"Jimmys Beach, Port Stephens",Wakeboarding,Lisa Mondy,F,"Severe injuries to head, neck, shoulder & upper left arm",N,The Sydney Morning Herald,3/17/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.16-Mondy.pdf -5276,2011.03.10.R,10-Mar-2010,2011,Invalid,Egypt,South Sinai Peninsula,Sharm-el-Sheikh,Unknown,female,F,"Apparent drowning, and subsequent scavenging by 16' tiger shark",N,Swindon Advertiser,3/10/2011 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.R-Sharm-scavenging.pdf +5276,2011.03.10.R,10-Mar-10,2011,Invalid,Egypt,South Sinai Peninsula,Sharm-el-Sheikh,Unknown,female,F,"Apparent drowning, and subsequent scavenging by 16' tiger shark",N,Swindon Advertiser,3/10/2011 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.R-Sharm-scavenging.pdf 5275,2011.03.10,10-Mar-11,2011,Unprovoked,Australia,New South Wales,"Tallow Beach, Byron Bay",Surfing,Prem Puri,M,"No injury, surboard broken",N,Northern Star,3/11/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.a-Puri.pdf -5274,2011.02.28.R,28-Feb-2011,2011,Provoked,Australia,Queensland,Between ,Fishing,Shane Nyari,M,Lacerations to right hand by hooked shark PROVOKED INCIDENT,N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.28.R-Nyari.pdf +5274,2011.02.28.R,28-Feb-11,2011,Provoked,Australia,Queensland,Between ,Fishing,Shane Nyari,M,Lacerations to right hand by hooked shark PROVOKED INCIDENT,N,C. Eksander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.28.R-Nyari.pdf 5273,2011.02.23,23-Feb-11,2011,Unprovoked,New caledonia, Loyalty Islands,"Bay of Bweedro, Ouvéa",Spearfishing,Jean-Luc Majele,M,Lacerations to left forearm,N,Les Nouvelles Caledoniennes,2/25/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.23-Jean-Luc.pdf 5272,2011.02.19,18-Feb-11,2011,Unprovoked,Reunion,Saint Gilles ,Trois-Roches,Surfing,Eric Dargent ,M,Left leg severed at the knee,N,Clicanoo.com,2/21/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.19-Dargent.pdf 5271,2011.02.17,17-Feb-11,2011,Unprovoked,Australia,South Australia,Off Perforated Island near Coffin Bay,Diving for abalone,Peter Clarkson,M,FATAL,Y,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.17-Clarkson.pdf 5270,2011.02.13,13-Feb-11,2011,Provoked,Australia,Queensland,Sunshine Beach,Fishing,male,M,Lacerations to calf by hooked shark PROVOKED INCIDENT,N,Courier-Mail,2/14/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.13-SunshineBeach-angler.pdf 5269,2011.02.12,12-Feb-11,2011,Unprovoked,Australia,Western Australia,Exmouth,Snorkeling,Allen ___,M,Arm bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.12-Exmouth.pdf -5268,2011.02.04.R,04-Feb-2011,2011,Provoked,Mexico,Colima,"Manzanillo, Revillagigedo Islands",Shark fishing on the Ricardo Astorga,Porfirio Lugo Camacho ,M,Left foot bitten PROVOKED INCIDENT,N,AngelGuardianMX,2/4/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.04.R-Camacho.pdf +5268,2011.02.04.R,04-Feb-11,2011,Provoked,Mexico,Colima,"Manzanillo, Revillagigedo Islands",Shark fishing on the Ricardo Astorga,Porfirio Lugo Camacho ,M,Left foot bitten PROVOKED INCIDENT,N,AngelGuardianMX,2/4/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.04.R-Camacho.pdf 5267,2011.02.02,02-Feb-11,2011,Unprovoked,South africa,Eastern Cape Province,"Sundays River Mouth, Port Elizabeth",Surf fishing,Johannes Jonk,M,Right leg bitten,N,Iafrica.com,2/2/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.02-Jonk.pdf 5266,2011.01.31,31-Jan-11,2011,Unprovoked,Mexico,Quintana Roo,Cancun,Swimming,Nicole Moore,F,"Leg, forearm & hand severely bitten",N,El Diario de Yucatan,2/1/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.31-Moore.pdf 5265,2011.01.28,28-Jan-11,2011,Provoked,Mexico,Colima,Revillagigedo Islands,Shark fishing on the Don Agustín-VI. ,C. Pedro Luis Beltrán Camargo ,M,Left eg bitten PROVOKED INCIDENT,N,Sun Sentinel,1/30/2011,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.28-Camargo.pdf @@ -738,19 +738,19 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5258,2010.12.17,17-Dec-10,2010,Unprovoked,Fiji,Vitu Levu,Sigatoka,Surfing,Jordi Gracia ,M,Lacerations to foot,N,Fiji Times Online,12/19/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.17-Gracia.pdf 5257,2010.12.11,11-Dec-10,2010,Unprovoked,Usa,Hawaii,"Tavares Bay, Maui",Surfing,Andrew Wilson,M,Lacerations to right foot,N,Maui News,12/14/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.11-Wilson.pdf 5256,2010.12.05,05-Dec-10,2010,Unprovoked,Egypt,South Sinai Peninsula,"Middle Garden, Sharm el-Shiekh",Snorkeling,Renate Seiffert,F,FATAL,Y,M. Levine,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.05-Renate- Seiffert.pdf -5255,2010.12.03.R,03-Dec-2010,2010,Unprovoked,Indonesia,Bali,Balian,Surfing,Wei Ong,M,Lacerations to right hand,N,M. Trott,Indo Surf Life,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.03.R-Ong.pdf +5255,2010.12.03.R,03-Dec-10,2010,Unprovoked,Indonesia,Bali,Balian,Surfing,Wei Ong,M,Lacerations to right hand,N,M. Trott,Indo Surf Life,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.03.R-Ong.pdf 5254,2010.12.01.b,01-Dec-10,2010,Unprovoked,Egypt,South Sinai Peninsula,"Ras Nasrani, Sharm el-Sheikh",Snorkeling,Yevgeniy (Eugene) Trishkin ,M,Both arms severely bitten,N,M. Levine,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.b-Yevgeniy-Trishkin.pdf 5253,2010.12.01.a,01-Dec-10,2010,Unprovoked,Egypt,South Sinai Peninsula,"Ras Nasrani, Sharm el-Sheikh",Snorkeling,Viktor Koliy ,M,Lacerations to right leg,N,M. Levine,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.a-Viktor-Koliy.pdf 5252,2010.11.30.b,30-Nov-10,2010,Unprovoked,Egypt,South Sinai Peninsula,"Coral Bay, Sharm el-Sheikh",Snorkeling,Lyudmila Stolyarova ,F,"Foot severed, Right forearm severed, lacerations to left hand (defense wounds)",N,M. Levine,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.b-Lyudmila-Stolyarova.pdf 5251,2010.11.30.a,30-Nov-10,2010,Unprovoked,Egypt,South Sinai Peninsula,"Coral Bay, Sharm el-Sheikh",Snorkeling,Olga Martsinko ,F,Foot and arm bitten,N,M. Levine,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.a-Olga Marsyenko.pdf -5250,2010.11.27.R,27-Nov-2010,2010,Unprovoked,Unknown,Unknown,Unknown,Fishing,male,M,Serious wounds to chest,N,Samoa Observer,11/27/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.R-Samoa.pdf +5250,2010.11.27.R,27-Nov-10,2010,Unprovoked,Unknown,Unknown,Unknown,Fishing,male,M,Serious wounds to chest,N,Samoa Observer,11/27/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.R-Samoa.pdf 5249,2010.11.27,27-Nov-10,2010,Invalid,Australia,Western Australia,Native Dog Beach,Swimming,Michael Utley,M,Death may have been due to drowning,Y,mailonline.com,12/2/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.a-Utley.pdf 5248,2010.11.19,19-Nov-10,2010,Provoked,Usa,Palmyra Atoll,Unknown,Snorkeling,Kydd Pollock,M,Head bitten by netted shark PROVOKED INCIDENT,N,Sunday News,12/12/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.19-Pollock.pdf 5247,2010.11.15,15-Nov-10,2010,Unprovoked,Dominican republic,Unknown,Boca Chica,Diving,Pinales Pedro Zapata,M,FATAL,Y,Dominican Today,11/15/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.15-Zapata.pdf 5246,2010.11.14,14-Nov-10,2010,Unprovoked,Indonesia,Bali,Balian,Surfing,male,M,Hand bitten ,N,Bali Waves,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.14-Bali.pdf -5245,2010.11.12.R,12-Nov-2010,2010,Boat,Australia,Western Australia,Between Carnac and Garden Islands,Fishing,4-m runabout. Occupant: Allen Gade,M,No injury to occupant. Shark rammed bottom of the boat,N,R. Hidding,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.12.R-Gade.pdf +5245,2010.11.12.R,12-Nov-10,2010,Boat,Australia,Western Australia,Between Carnac and Garden Islands,Fishing,4-m runabout. Occupant: Allen Gade,M,No injury to occupant. Shark rammed bottom of the boat,N,R. Hidding,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.12.R-Gade.pdf 5244,2010.10.30,30-Oct-10,2010,Unprovoked,Australia,Western Australia,Off Garden Island,Snorkeling,Elyse Frankcom,F,Torso and left buttock bitten,N,Perth Now,10/30/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.30-Francom.pdf -5243,2010.10.28.R,28-Oct-2010,2010,Unprovoked,Australia,Western Australia,Cheynes Beach,Spearfishing,Deacon Plant,M,"No injury, shark head-butted diver's thigh",N,Albany & Great Southern Weekender,10/28/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.R-Plant.pdf +5243,2010.10.28.R,28-Oct-10,2010,Unprovoked,Australia,Western Australia,Cheynes Beach,Spearfishing,Deacon Plant,M,"No injury, shark head-butted diver's thigh",N,Albany & Great Southern Weekender,10/28/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.R-Plant.pdf 5242,2010.10.28,28-Oct-10,2010,Unprovoked,Usa,Oregon,Florence,Surfing,Seth Mead,M,No injury to surfer,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.a-SethMead.pdf 5241,2010.10.25,25-Oct-10,2010,Provoked,Azores,Unknown,350 miles from Faial Island,Fishing,crewman from the Gedi,M,PROVOKED INCIDENT? ,N,Jornal Diario,10/26/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.25-Gedi-crewman.pdf 5240,2010.10.23.b,23-Oct-10,2010,Unprovoked,Usa,Maine,"Burnt Cove near Eastport, Washington County",Scuba diving,Scott MacNichol,M,"No injury to diver, shark bit his video camera",N,Bangor Daily News,10/27/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23-MacNichol.pdf @@ -766,7 +766,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5230,2010.09.21,21-Sep-10,2010,Unprovoked,South africa,Western Cape Province,Between Dyer Island and Pearly Beach,Swimming,Khanyisile Momoza ,M,FATAL,Y,Cape Argus,9/25/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.21-Momoza.pdf 5229,2010.09.13, 13-Sep-2010,2010,Unprovoked,Australia,New South Wales,Fraser's Reef,Surfing,Jake Davis,M,Lacerations and puncture wounds to leg and foot,N,Daily Telegraph,9/16/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.13-Davis.pdf 5228,2010.09.07,07-Sep-10,2010,Unprovoked,Usa,Florida,"St. Augustine, St. John's County",Swimming,Jason Whitworth,M,Lacerations to left wrist,N,St. Augustine Record,9/9/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.07-Whitworth.pdf -5227,2010.09.06.R,06-Sep-2010,2010,Unprovoked,Tonga,Ha'api ,Unknown,Swimming / Whale Watching,Bjørn Jensen,M,Puncture wounds to right foot,N,New Zealand Herald,9/6/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.06.R-Jensen.pdf +5227,2010.09.06.R,06-Sep-10,2010,Unprovoked,Tonga,Ha'api ,Unknown,Swimming / Whale Watching,Bjørn Jensen,M,Puncture wounds to right foot,N,New Zealand Herald,9/6/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.06.R-Jensen.pdf 5226,2010.09.04, 04-Sep-2010,2010,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Kris Kerr,M,"No injury, shark charged surfboard",N,CBS News,9/10/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.04-Kerr.pdf 5225,2010.09.03.b,03-Sep-10,2010,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Coffman,M,Lacerations to right hand ,N,S. Petersohn; Daytona Beach News-Journal,9/3/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.b-Coffman.pdf 5224,2010.09.03.a,03-Sep-10,2010,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Andrew Heald,M,Left thigh bitten,N,S. Petersohn; M. Johnson,Daytona Beach News-Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.a-Heald.pdf @@ -818,7 +818,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5178,2010.02.15,15-Feb-10,2010,Unprovoked,Fiji,Off Vanua Levu,Nara Reef,Scuba diving,Henry Usimewa,M,FATAL,Y,Fiji Times,2/17/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.15-Usimewa.pdf 5177,2010.02.13,13-Feb-10,2010,Unprovoked,Australia,Queensland,"Dent Island, Whitsundays",Snorkeling,Patricia Trumbull,F,Lacerations to legs & buttocks,N,Sydney Morning Herald,2/14/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.13-Trumbull.pdf 5176,2010.02.11,11-Feb-10,2010,Unprovoked,Australia,New South Wales,"Mona Vale Beach, Sydney",Surfing,Paul Welsh,M,"Minor injury, lacerations to left lower leg",N,John West, Taronga Zoo,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.11-Welsh.pdf -5175,2010.02.06.R,06-Feb-2010,2010,Provoked,New zealand,South Island,Cosy Nook,Spearfishing,Aaron Muilwyk,M,"No injury, shark bit his speargun after he used it to prod the shark PROVOKED INCIDENT",N,Southland Times,2/6/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.R-Muilwyk.pdf +5175,2010.02.06.R,06-Feb-10,2010,Provoked,New zealand,South Island,Cosy Nook,Spearfishing,Aaron Muilwyk,M,"No injury, shark bit his speargun after he used it to prod the shark PROVOKED INCIDENT",N,Southland Times,2/6/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.R-Muilwyk.pdf 5174,2010.02.06.b,06-Feb-10,2010,Unprovoked,Australia,New South Wales,Turners' Beach,Body boarding,Dean Everson,M,"No injury, shark & board collided",N,K. Matthews,Lismore Northern Star,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.b-Everson.pdf 5173,2010.02.06.a,06-Feb-10,2010,Provoked,Usa,Florida,Riviera Beach,Surf fishing / wading,male,M,Leg bitten while trying to free a hooked shark PROVOKED INCIDENT,N,WPTV.com,2/7/2010,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.a-RivieraBeach.pdf 5172,2010.02.04,04-Feb-10,2010,Invalid,Guam,Merizo,Achang Reef,Spearfishing (free diving),Andrew Duenas,M,Shark bites were post-mortem,Y,B. Kelman,Pacific Daily News,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.04-Duenas.pdf @@ -855,13 +855,13 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5141,2009.11.08,08-Nov-09,2009,Unprovoked,Australia,South Australia,Second Valley,Kayaking,Dean Brougham,M,Ankle bitten,N,Adelaide Now,11/19/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.08-Brougham.pdf 5140,2009.11.05,05-Nov-09,2009,Unprovoked,Usa,California,"Davenport, Santa Cruz County",Surfing,Eric Geiselman,M,"No injury, board broken in half",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.05-Geiselman.pdf 5139,2009.10.30,30-Oct-09,2009,Unprovoked,Australia,Victoria,Portland,Kayaking,Rhys Gadsden,M,"No injury, shark bit kayak",N,The Age,10/31/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.30-Gadsden.pdf -5138,2009.10.29.R,29-Oct-2009,2009,Unprovoked,Mozambique,Inhambane Province,Off Vilanculo,Spearfishing,Mark Rogotzki ,M,Left ankle & foot bitten,N,R. Allen; J. Little,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.29.R-Rogotzki.pdf +5138,2009.10.29.R,29-Oct-09,2009,Unprovoked,Mozambique,Inhambane Province,Off Vilanculo,Spearfishing,Mark Rogotzki ,M,Left ankle & foot bitten,N,R. Allen; J. Little,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.29.R-Rogotzki.pdf 5137,2009.10.28,28-Oct-09,2009,Unprovoked,Australia,New South Wales,Lennox Heads,Paddle-boarding,Zahli Lowe,F,"No injury, shark bit rear of paddleboard",N,Northern Star,10/30/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.28-Lowe.pdf 5136,2009.10.24,24-Oct-09,2009,Unprovoked,Usa,California,"San Onofre, San Diego County ",Surfing,Scott Barton,M,"3 puncture wounds to big toe of left foot, and laceration on arch of foot",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.24-Scott-Barton.pdf 5135,2009.10.19,19-Oct-09,2009,Unprovoked,Usa,Hawaii,"Kalama Park, Maui",Surfing,Scott Henrich,M,Bitten on upper right thigh & right ankle,N,Star Bulletin,10/19/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.19-Henrich.pdf 5134,2009.10.18,18-Oct-09,2009,Unprovoked,Panama,Bocas,Playa La Cabaña ,Wading,female,F,Arm & torso bitten,N,A. Blaker,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.18-Panama.pdf 5133,2009.10.17,17-Oct-09,2009,Provoked,Scotland,Fife,Deep Sea World Aquarium,Diving,male,M,15-20 puncture wounds to arm by captive shark PROVOKED INCIDENT ,N,Telegraph.co.uk,10/18/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.17-DeepSeaWorld.pdf -5132,2009.10.14.R,14-Oct-2009,2009,Unprovoked,Australia,Western Australia,Unknown,Diving,Matt Bowen,M,Severe lacerations to lower right leg,N,BBC News,10/19/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.14.R-Bowen.pdf +5132,2009.10.14.R,14-Oct-09,2009,Unprovoked,Australia,Western Australia,Unknown,Diving,Matt Bowen,M,Severe lacerations to lower right leg,N,BBC News,10/19/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.14.R-Bowen.pdf 5131,2009.10.09,09-Oct-09,2009,Unprovoked,Usa,California,"San Onofre State Beach, San Diego County",Surfing,Bernard Wagor,M,Laceration to shin of left leg,N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.09-Wagor.pdf 5130,2009.10.02,02-Oct-09,2009,Provoked,United kingdom,Devon,Mewstone Rock,Fishing,male,M,Injury to forearm from shark's spine PROVOKED INCIDENT ,N,The Herald,10/2/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.02-UK.pdf 5129,2009.09.26,26-Sep-09,2009,Unprovoked,Usa,Florida,"Key Colony Beach, Monroe County",Swimming,Daniel Callahan,M,Laceration to right foot,N,keysnet.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.26-Callahan.pdf @@ -882,7 +882,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5114,2009.07.31,31-Jul-09,2009,Unprovoked,Bahamas,Abaco Islands,Spanish Cay,Spearfishing,Derek Mitchell,M,Lacerations to calf,N,WPTV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.31-Mitchell.pdf 5113,2009.07.30,30-Jul-09,2009,Unprovoked,Australia,New South Wales,Broken Head,Surfing,Zac Skyring,M,Left forearm grazed & puncture marks in wetsuit,N,Lismore Northern Star,7/31/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.30-Skyring.pdf 5112,2009.07.29,29-Jul-09,2009,Unprovoked,Vietnam,Binh Dinh Province,Quy Nhon ,Swimming,Hoang Thi Thuy Hong ,F,Foot bitten,N,CandOnline,1/15/2020,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.29-Hong.pdf -5111,2009.07.24.R,24-Jul-2009,2009,Unprovoked,Kenya,Mombasa,Likoni Channel,Washing his feet,male,M,FATAL,Y,Standard Digital,7/24/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.R-Likoni.pdf +5111,2009.07.24.R,24-Jul-09,2009,Unprovoked,Kenya,Mombasa,Likoni Channel,Washing his feet,male,M,FATAL,Y,Standard Digital,7/24/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.R-Likoni.pdf 5110,2009.07.24.b,24-Jul-09,2009,Unprovoked,Usa,Texas,South Padre Island,Wading,Deidre Casas,F,Lacerations to anterior left lower leg,N,KRGV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.b-Casas.pdf 5109,2009.07.24.a,24-Jul-09,2009,Invalid,Spain,Catalunya,Sant Salvador,Swimming,Unknown,F,Laceration to left foot,N,ABC-Spain,7/25/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.a-Spain.pdf 5108,2009.07.22.b,22-Jul-09,2009,Unprovoked,Usa,North Carolina,Holden Beach. Brunswick County,Swimming,Julia Anne Mittleberg,F,Laceration to left foot,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.b-Mittleberg.pdf @@ -896,7 +896,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5100,2009.06.27,27-Jun-09,2009,Unprovoked,Australia,New South Wales,"Seven Mile Beach, Gerroa",Surfing,Les Wade,M,2-inch laceration to upper left arm,N,Brisbane Times,6/28/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.27-Wade.pdf 5099,2009.06.21,21-Jun-09,2009,Invalid,Usa,California,"Shell Beach, San Luis Obispo County",Surfing,male,M,Puncture wounds to foot,N,San Luis Obispo Tribune,6/24/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.21-California.pdf 5098,2009.06.16,16-Jun-09,2009,Invalid,Usa,Florida,"Melbourne Beach, Brevard County",Crawling,Kevin Crowley,M,2-inch laceration to upper left arm,N,Florida Today,1/17/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.16-Crowley.pdf -5097,2009.06.14.R,14-Jun-2009,2009,Provoked,Unknown,Unknown,Unknown,Fishing for sharks,Tran Van Quy,M,Hand bitten by hooked shark PROVOKED INCIDENT,N,Tin Tuc online,6/14/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.14.R-Quy.pdf +5097,2009.06.14.R,14-Jun-09,2009,Provoked,Unknown,Unknown,Unknown,Fishing for sharks,Tran Van Quy,M,Hand bitten by hooked shark PROVOKED INCIDENT,N,Tin Tuc online,6/14/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.14.R-Quy.pdf 5096,2009.06.02.b,02-Jun-09,2009,Unprovoked,Egypt,St. Johns Reef,Habili Gafar,Scuba diving,"Nil, a dive guide",M,Lacerations to left hand,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.b-Nil.pdf 5095,2009.06.02.a,02-Jun-09,2009,Unprovoked,Egypt,St. Johns Reef,Habili Gafar,Scuba diving,"Luc, a Belgian diver",M,3 cm laceration to shoulder,N,E. Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.a-Luc.pdf 5094,2009.06.01,01-Jun-09,2009,Unprovoked,Egypt,St. Johns Reef,Habili Gafar,Snorkeling,Katrina Tipio,F,FATAL,Y,A. Hamada; E.Ritter,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.01-Tipio.pdf @@ -908,7 +908,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5088,2009.05.12,12-May-09,2009,Provoked,Guam,North Region,Ritidian Point,Spearfishing,Jonathan Leon Guerrero,M,Speared shark bit his forearm PROVOKED INCIDENT,N,N. Delgado,Pacific News Center; KUAM.com,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.12-Guerrero.pdf 5087,2009.05.06,06-Mar-09,2009,Provoked,Bahamas,Exuma Islands,Unknown,Spearfishing,Luis Hernandez,M,Lacerations to right forearm after he poked the shark with his spear PROVOKED INCIDENT ,N,Sun Sentinel,5/8/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.06-Hernandez.pdf 5086,2009.04.28,28-Apr-09,2009,Unprovoked,Usa,Florida,"St. Augustine, St. John's County",Unknown,Alicia,F,Multiple lacerations to right foot & ankle,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.28-Alicia.pdf -5085,2009.04.25.R,25-Apr-2009,2009,Unprovoked,Usa,California,"San Onofre State Beach, San Diego County",Surfing,Drew Senner,M,No injury,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.25.R-Senner.pdf +5085,2009.04.25.R,25-Apr-09,2009,Unprovoked,Usa,California,"San Onofre State Beach, San Diego County",Surfing,Drew Senner,M,No injury,N,R. Collier,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.25.R-Senner.pdf 5084,2009.04.21,21-Apr-09,2009,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,3 puncture wounds to posterior right ankle,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.21-NSB.pdf 5083,2009.04.20,20-Apr-09,2009,Unprovoked,Philippines,Batangas province,Mabini,Swimming,Gerald Perez,M,Legs bitten,N,Abs-cbnNEWS.com,4/22/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.20-Perez.pdf 5082,2009.04.19,19-Apr-09,2009,Unprovoked,Usa,Florida,"Carlin Park, Jupiter Inlet",Surfing,Bruce Klinker,M,Left foot bitten,N,UPI,4/20/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.19-Klinker.pdf @@ -924,9 +924,9 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5072,2009.03.19.b,19-Mar-09,2009,Unprovoked,Australia,New South Wales,South Broulee,Surfing,male,M,"No injury, shark damaged surfboard",N,ABC News,3/19/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.b-SouthBroulee.pdf 5071,2009.03.19.a,19-Mar-09,2009,Unprovoked,Australia,New South Wales,Bateman's Bay,Surfing,Bernadette Davis,F,"No injury, shark bit nose of surfboard",N,Canberra Times,3/20/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.a-Davis.pdf 5070,2009.03.18.a,18-Mar-09,2009,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,female,F,Minor bite to ankle,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.18.a-PonceInlet.pdf -5069,2009.03.17.R,17-Mar-2009,2009,Unprovoked,Malaysia,Strait of Malacca,Pulau Payar Island,Feeding fish,female,F,Minor injury,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.R-Malaysia.pdf +5069,2009.03.17.R,17-Mar-09,2009,Unprovoked,Malaysia,Strait of Malacca,Pulau Payar Island,Feeding fish,female,F,Minor injury,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.R-Malaysia.pdf 5068,2009.03.17,17-Mar-09,2009,Unprovoked,Usa,Hawaii,Alenuihaha Channel,Swimming,Mike Spaulding,M,"Minor injury, bite chest and left calf",N,B. Perry,Maui News,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.a-Spaulding.pdf -5067,2009.03.16.R,16-Mar-2009,2009,Provoked,Australia,Western Australia,"The Natural Jetty, Rottnest Island",Wading,male,M,Thigh bitten when he trod on the shark PROVOKED INCIDENT,N,The West,3/16/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.16.R-Rottnest-Island.pdf +5067,2009.03.16.R,16-Mar-09,2009,Provoked,Australia,Western Australia,"The Natural Jetty, Rottnest Island",Wading,male,M,Thigh bitten when he trod on the shark PROVOKED INCIDENT,N,The West,3/16/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.16.R-Rottnest-Island.pdf 5066,2009.03.06,06-Mar-09,2009,Unprovoked,New caledonia,South Province,Bourail,Surfing,Kevin Hannecart,M,FATAL,Y,Les Nouvelles Caledoniennes,3/7-10/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.06-Hannecart.pdf 5065,2009.03.02,02-Mar-09,2009,Provoked,South africa,Western Cape Province,Off Cape Point,Fishing,Gabriel Fernandez,M,Lacerations to arm and 2 fingers by hooked shark PROVOKED INCIDENT,N,Cape Times,3/3/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.02-Fernandez.pdf 5064,2009.03.01.b,01-Mar-09,2009,Boat,New zealand,North Island,Taranaki,Fishing,"boat, occupants: Boyd Rutherford & Hamish Roper",M,"No injury to occupants, shark bit propeller",N,Taranaki Daily News,3/3/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Taranaki.pdf @@ -938,8 +938,8 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5058,2009.02.08,08-Feb-09,2009,Sea Disaster,Usa,Puerto Rico,Quebradillas,Air Disaster,occupant of a Cessna 206,M,It is probable that all 5 passengers died on impact. The body of one was scavenged by a shark,Y,C. Ekstander,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.08-PuertoRicoAirCrash.pdf 5057,2009.02.07.b,07-Feb-09,2009,Unprovoked,Australia,New South Wales,Cellito Beach,Surfing,Durwin Keg,M,"No injury, surfboard dented",N,D. Keg; Herald Sun,2/8/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.b-Keg.pdf 5056,2009.02.07.a,07-Feb-09,2009,Unprovoked,Australia,New South Wales,Sandon,Surfing,Joe Kennard,M,"No injury, flung from surfboard by the shark",N,A. Vlastaras,Daily Examiner,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.a-Kennard.pdf -5055,2009.01.27.R,27-Jan-2009,2009,Provoked,Azores,Unknown,Onboard the fishing vessel Nuevo Cedes ,Fishing,A Spanish fisherman,M,Left forearm bitten PROVOKED INCIDENT,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.27.R-Azores.pdf -5054,2009.01.26.R,26-Jan-2009,2009,Invalid,Brazil,Unknown,Praia do Olho d'Aqua,Unknown,Luciano Guimaraes dos Santos,M,Probable drowning with post-mortem bites,Y,Jornal Pequeno,1/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.26.R-Brazil.pdf +5055,2009.01.27.R,27-Jan-09,2009,Provoked,Azores,Unknown,Onboard the fishing vessel Nuevo Cedes ,Fishing,A Spanish fisherman,M,Left forearm bitten PROVOKED INCIDENT,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.27.R-Azores.pdf +5054,2009.01.26.R,26-Jan-09,2009,Invalid,Brazil,Unknown,Praia do Olho d'Aqua,Unknown,Luciano Guimaraes dos Santos,M,Probable drowning with post-mortem bites,Y,Jornal Pequeno,1/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.26.R-Brazil.pdf 5053,2009.01.25,25-Jan-09,2009,Unprovoked,Cuba,Guantanamo Province,Guantanamo Bay,Spearfishing,John Emory,M,Severe lacerations to lower left leg,N,J. Emory; Caribbean Net, 4/142009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.25-Emory.pdf 5052,2009.01.24.c,24-Jan-09,2009,Boat,New zealand,North Island,Alderman Islands,Fishing,7.2 m boat. Occupant Kelvin Travers,Unknown,"No injury to occupant, shark removed small auxiliary outboard motor",N,NZ Herald,1/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.c-NewZealand.pdf 5051,2009.01.24.b,24-Jan-09,2009,Unprovoked,Australia,New South Wales,"Surf Beach, Batemans Bay",Swimming,Jeremy McDonagh,M,Hand injured,N,ABC News,1/28/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.b-McDonough.pdf @@ -947,7 +947,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 5049,2009.01.23,23-Jan-09,2009,Invalid,Brazil,Maranhão,Olho d'Água ,Swimming,Luciano Guimarães dos Santos ,M,"Drowned, body scavenged by shark",Y,Jornal Pequeno,1/26/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.23-Santos.pdf 5048,2009.01.18,18-Jan-09,2009,Boat,Australia,Victoria,Off Tower Hill,Fishing,Occupants: Scott & John Fulton,M,"No injury to occupants, shark bit propeller",N,The Standard,1/20/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.18-Fulton-boat.pdf 5047,2009.01.16,16-Jan-09,2009,Unprovoked,New zealand,South Island,Karitane Beach,Surfing,Tane Tokona,M,"No injury, bumped off board by the shark",N,R. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.16-Tokana.pdf -5046,2009.01.13.R,13-Jan-2009,2009,Unprovoked,South africa,Western Cape Province,"Shark Alley, off Gansbaai",Unknown,4 poachers ,Unknown,FATAL,Y,ABC News,1/13/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.13.R-Poachers.pdf +5046,2009.01.13.R,13-Jan-09,2009,Unprovoked,South africa,Western Cape Province,"Shark Alley, off Gansbaai",Unknown,4 poachers ,Unknown,FATAL,Y,ABC News,1/13/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.13.R-Poachers.pdf 5045,2009.01.12,12-Jan-09,2009,Unprovoked,Australia,New South Wales,"Windang, Lake Illawara",Snorkeling,Steven Fogarty,M,Puncture wounds to right calf,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.12-Fogarty.pdf 5044,2009.01.11.b,11-Jan-09,2009,Unprovoked,Australia,Tasmania,Binalong Bay,Surfing,Hannah Mighall,F,Severe lacerations to right leg,N,P. Kemp,GSAF; C. Black pp. 169-177,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.b-Mighall.pdf 5043,2009.01.11.a,11-Jan-09,2009,Unprovoked,Australia,New South Wales,Fingal Beach,Surfing,Jonathan Beard,M,Left thigh severely bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.a-Beard.pdf @@ -1001,7 +1001,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4995,2008.08.12,12-Aug-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Emma Klopchin ,F,Puncture wounds & 3-inch laceration to right calf,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.12-Klopchin.pdf 4994,2008.08.11,11-Aug-08,2008,Unprovoked,Usa,Hawaii,"Ala Moana Beach Park, Oah'u",Diving,male,M,"No injury, shark grabbed his bag of fish",N,Honolulu Advertiser,8/13/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.11-AlaMoana.pdf 4993,2008.07.30.R,30-Jul-08,2008,Unprovoked,Australia,Victoria,Levys Beach,Surfing,Aaron Seare,M,"No injury, surfboard leash severed",N,Herald Sun,7/31/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30-Seare.pdf -4992,2008.07.30,30-Jul-2008,2008,Unprovoked,Unknown,Unknown,Unknown,Unknown,Michael Rutzen,M,Lacerations to fingers,N,http://www.youtube.com/watch?v=0jVJFXlapWY&feature=related,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30.R-Rutzen.pdf +4992,2008.07.30,30-Jul-08,2008,Unprovoked,Unknown,Unknown,Unknown,Unknown,Michael Rutzen,M,Lacerations to fingers,N,http://www.youtube.com/watch?v=0jVJFXlapWY&feature=related,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30.R-Rutzen.pdf 4991,2008.07.27,27-Jul-08,2008,Unprovoked,Panama,San Carlos,Playa Teta,Swimming or surfing,Gerardo Solis ,M,5 lacerations to left foot,N,International Herald Tribune,7/28/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.27-Solis.pdf 4990,2008.07.26.b,26-Jul-08,2008,Unprovoked,Mexico,Cabo San Lucas,Unknown,Swimming,Ryan Seacrest,M,3 puncture wounds to toe,N,Fox News,7/28/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.b-Seacrest.pdf 4989,2008.07.26.a,26-Jul-08,2008,Unprovoked,Usa,Hawaii,"Honokowai, Maui",Swimming,U. Mataafa,M,Minor injury,N,Maui News,7/27/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.a-Maui @@ -1020,7 +1020,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4976,2008.06.28.c,28-Jun-08,2008,Invalid,Usa,Hawaii,"Kamilo Point, Hawai'i",Wading,Nathan Labarios,M,Probable drowning with post-mortem bites,Y,Honolulu Star Bulletin,6/30/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.c-Labarios.pdf 4975,2008.06.28.b,28-Jun-08,2008,Unprovoked,Bahamas,Abaco Islands,Unknown,Spearfishing,Max Briggs,M,Lacerations to calf,N,M. Briggs; C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.b-Briggs.pdf 4974,2008.06.28.a,28-Jun-08,2008,Unprovoked,South africa,Western Cape Province,Mossel Bay,Surf skiing ,Kobus Maritz,M,"No injury, ski bitten",N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.a-Maritz.pdf -4973,2008.06.26.R,26-Jun-2008,2008,Unprovoked,South africa,Western Cape Province,Struis Bay,Spearfishing (free diving),Kevin Macghie ,M,No injury,N,D. Inggs; Gletwyn Rubidge’s Spearfishing and Freediving blog,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.R-Macghie.pdf +4973,2008.06.26.R,26-Jun-08,2008,Unprovoked,South africa,Western Cape Province,Struis Bay,Spearfishing (free diving),Kevin Macghie ,M,No injury,N,D. Inggs; Gletwyn Rubidge’s Spearfishing and Freediving blog,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.R-Macghie.pdf 4972,2008.06.26.b,26-Jun-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Minor laceration to foot,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.b-NSB.pdf 4971,2008.06.26.a,26-Jun-08,2008,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Swimming,Preston Pearman,M,Lacerations to hand,N,P. Pearman; C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.a-Pearman.pdf 4970,2008.06.24,24-Jun-08,2008,Unprovoked,Brazil,Bahia,Guarajuba,Surfing,Ricardo Garcia Santo Sé  ,M,"No injury, board bitten",N,O Globo,6/25/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.24-Brazil.pdf @@ -1028,7 +1028,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4968,2008.06.20,20-Jun-08,2008,Unprovoked,Usa,Florida,"Fernandina Beach, Nassau County",Wading,Jennifer Cation,F,Lacerations to lower right calf,N,News-Leader,6/21/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.20-Cation.pdf 4967,2008.06.11,11-Jun-08,2008,Unprovoked,Brazil,Pernambuco,"Punta Del Chifre, Olinda",Surfing,Juan Rodrigues Galvao ,M,Laceration to left leg & foot,N,O Globo,6/12/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.11-Rodrigues.pdf 4966,2008.06.07,07-Jun-08,2008,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Body surfing,John Vasbinder,M,Lacerations & abrasions to right hand,N,TC Palm,6/20/08,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.07-Vasbinder.pdf -4965,2008.06.02.R,02-Jun-2008,2008,Boat,Scotland,Easter Ross,Balintore Bay,Fishing,"12' boat, 2 occupants",Unknown,No injury to occupants; shark struck their boat,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.02.R-Scotland.pdf +4965,2008.06.02.R,02-Jun-08,2008,Boat,Scotland,Easter Ross,Balintore Bay,Fishing,"12' boat, 2 occupants",Unknown,No injury to occupants; shark struck their boat,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.02.R-Scotland.pdf 4964,2008.06.01.b,01-Jun-08,2008,Unprovoked,Usa,South Carolina,Cherry Grove,Body surfing,Madi Taff,F,Foot bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01.b-Taff.pdf 4963,2008.06.01.a,01-Jun-08,2008,Unprovoked,Brazil,Pernambuco,"Piedade, Recife",Swimming,Wellington dos Santos ,M,"Hand severed, buttocks bitten",N,Associated Press,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01-Santos.pdf 4962,2008.05.26,26-May-08,2008,Unprovoked,Usa,North Carolina,"Hammocks Beach State Park, Bear Island, Onslow County",Surfing,William Early,M,Biceps & lower arm bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.26-Early.pdf @@ -1048,13 +1048,13 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4948,2008.04.25,25-Apr-08,2008,Unprovoked,Usa,California,"Solana Beach, San Diego County",Swimming,Dave Martin,M,FATAL,Y,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.25-DaveMartin.pdf 4947,2008.04.20.b,20-Apr-08,2008,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,female,M,Cuts & punctures to right foot,N,S. Petersohn,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.b-Girl.pdf 4946,2008.04.20.a,20-Apr-08,2008,Unprovoked,Australia,New South Wales,Crescent Head,Unknown,Jamie Adlington,M,Unknown,UNKNOWN,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.a-Adlington.pdf -4945,2008.04.19.R,19-Apr-2008,2008,Invalid,South africa,KwaZulu-Natal,Aliwal Shoal,Free-diving,Jean-Francois Avenier,M,"As he pushd the shark away from his camera, his finger was cut on a tooth",N,J. Avenier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.19.R-Avenier.pdf +4945,2008.04.19.R,19-Apr-08,2008,Invalid,South africa,KwaZulu-Natal,Aliwal Shoal,Free-diving,Jean-Francois Avenier,M,"As he pushd the shark away from his camera, his finger was cut on a tooth",N,J. Avenier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.19.R-Avenier.pdf 4944,2008.04.18,18-Apr-08,2008,Invalid,Mexico,Quintana Roo,"Delfines Beach, Cancun",Swimming,Joram Galleros Villanueva,M,Probable drowning with post-mortem bites,Y,C.Johansson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.18-Villanueva.pdf 4943,2008.04.17,17-Apr-08,2008,Invalid,Australia,Queensland,"Duranbah, Greenmount Beach",Surfing,David Weale,M,2 puncture wounds to leg,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.17-Weale.pdf 4942,2008.04.15,15-Apr-08,2008,Unprovoked,Usa,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Bobby Phillips,M,Puncture wounds to right foot,N,B. Phillips,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.15-Phillips.pdf 4941,2008.03.28.a,28-Mar-08,2008,Unprovoked,Usa,Florida,"Near Cocoa Beach, Brevard County",Boogie Boarding,Teresa Holloway,M,Right foot bitten,N,D. MacAnnally,Eyewitness News ,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.a-Holloway.pdf -4940,2008.04.09.R,09-Apr-2008,2008,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Rutu Meli,M,Left forearm bitten ,N,C. Johansson,GSAF; Orange County Register 4/9/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.09.R-Meli-Fiji.pdf -4939,2008.04.08.R,08-Apr-2008,2008,Unprovoked,Usa,Florida,"1.4 miles south of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Surfing,Unknown,Unknown,Foot bitten,N,"News 13,4/8/2008",,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.R-NSB-2.pdf +4940,2008.04.09.R,09-Apr-08,2008,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Rutu Meli,M,Left forearm bitten ,N,C. Johansson,GSAF; Orange County Register 4/9/2009,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.09.R-Meli-Fiji.pdf +4939,2008.04.08.R,08-Apr-08,2008,Unprovoked,Usa,Florida,"1.4 miles south of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Surfing,Unknown,Unknown,Foot bitten,N,"News 13,4/8/2008",,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.R-NSB-2.pdf 4938,2008.04.08,08-Apr-08,2008,Unprovoked,Australia,New South Wales,"Lighthouse Beach, Ballina",Body boarding,Peter Edmonds,M,FATAL,Y,T. Peake,GSAF; NSW Police Force,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.a-Edmonds.pdf 4937,2008.04.03,03-Apr-08,2008,Unprovoked,Usa,Florida,"South of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Walking out of the water after surfing,Joey Giangrasso,M,Right foot & ankle bitten,N,S. Petersohn,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.03-Giangrasso.pdf 4936,2008.03.28.c,28-Mar-08,2008,Unprovoked,South africa,KwaZulu-Natal,Scottburgh,Fishing from surfski,Jacques Peens,M,Right leg bitten,N,C. Johansson,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.c-Peens.pdf @@ -1065,13 +1065,13 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4931,2008.03.15,15-Mar-08,2008,Unprovoked,Usa,Florida,"Lovers Key State Park, Bonita Springs, Lee County",Jet skiing,male,M,Minor injury,N,News-Press.com ,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.15-BonitaSprings.pdf 4930,2008.03.07,07-Mar-08,2008,Unprovoked,Usa,California," Huntington Beach, Orange County",Surfing,Thomas Larkin,M,"No injury to surfer, surfboard bitten by the shark",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.07-Larkin.pdf 4929,2008.02.24,24-Feb-08,2008,Unprovoked,Bahamas,Northern Bahamas,"Dive site known as ""The End of the Map""",Diving,Markus Groh,M,"Leg bitten, FATAL",Y,Sun-Sentinel,2/25/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.24-Groh.pdf -4928,2008.02.21.R,21-Feb-2008,2008,Unprovoked,French polynesia,Society Islands,Tahiti,Spearfishing,Apia Hauta,M,Lacerations to face,N,Independent News Online,2/21/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.21.R-Hauta.pdf +4928,2008.02.21.R,21-Feb-08,2008,Unprovoked,French polynesia,Society Islands,Tahiti,Spearfishing,Apia Hauta,M,Lacerations to face,N,Independent News Online,2/21/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.21.R-Hauta.pdf 4927,2008.02.15,15-Feb-08,2008,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,Harold Bradner,M,Lacerations to foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.15-Bradner.pdf 4926,2008.02.07,07-Feb-08,2008,Unprovoked,Australia,New South Wales,Horseshoe Bay,Surfing,Fiona Casey,F,Abrasions to elbow; collided with shark,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.07-Casey.pdf 4925,2008.02.06,06-Feb-08,2008,Unprovoked,Usa,Florida,"Opposite Patrick Air Force Base, Brevard County",Surf-skiing,Unidentified,M,Lacerations to foot,N,Vero Beach Press Journal,2/7/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.06-Surfer.pdf 4924,2008.01.29,29-Jan-08,2008,Unprovoked,South africa,KwaZulu-Natal,"Suncoast Pirates Beach, Durban",Surf-skiing,Wayne Symington,M,"No injury to surf-skiier, shark holed ski",N,The Mercury,2/1/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.29-Symington.pdf 4923,2008.01.27,27-Jan-08,2008,Provoked,Australia,Queensland,200 km east of Coolangatta ,Accidentally stood on hooked shark's tail before attempting to gut it ,Jarryd Tinson ,M,Laceration to left knee PROVOKED INCIDENT,N,News.com.au,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.27-Tinson.pdf -4922,2008.01.19.R,19-Jan-2008,2008,Invalid,New zealand,South Island,Marfells Beach,Wading,Matthew O'Neill,M,"Stingray envenomation, not a shark",N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.19.R-O'Neill.pdf +4922,2008.01.19.R,19-Jan-08,2008,Invalid,New zealand,South Island,Marfells Beach,Wading,Matthew O'Neill,M,"Stingray envenomation, not a shark",N,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.19.R-O'Neill.pdf 4921,2008.01.14,14-Jan-08,2008,Boat,New zealand,North Island,Omaha Beach,Attempting to chase shark out to sea,inflatable rescue boat. Occupants: Lauren Johnson &. Kris O'Neill,Unknown,"No injury to occupants, pontoon punctured",N,TV3; R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.14-inflatable-boat.pdf 4920,2008.01.10,10-Jan-08,2008,Unprovoked,Usa,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Jordan Marsden,M,Left foot bitten,N,Forida Today,1/18/2008; Channel 9 News,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.10-Marsden.pdf 4919,2008.00.00.b,Fall 2008,2008,Provoked,Usa,Florida,"Off Fort Pierce, St. Lucie County",Fishing for snapper,Johnny Silva,M,Minor injury to hand by hooked shark PROVOKED INCIDENT,N,Extremecoast.com/ 1/30/2009,,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.b-Silva.pdf @@ -1152,11 +1152,11 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4844,2007.06.05,05-Jun-07,2007,Unprovoked,Australia,New South Wales,"Shelly Beach, Crescent Head",Surfing,Jack Moir,M,Lacerations to leg & ankle,N,S. Williams,Daily Telegraph,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.05-JackMoir.pdf 4843,2007.05.26,26-May-07,2007,Unprovoked,Usa,South Carolina,Garden City,Wading,Susan Dornquast,F,Lacerations to lower leg,N,C. Creswell,GSAF; Hilton Head Island Packet,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.26-Dornquast.pdf 4842,2007.05.24,24-May-07,2007,Provoked,Usa,Virginia,"Virginia Aquarium & Marine Science Center, Virginia Beach ",Reviving a sedated shark,Beth Firchau,F,Left shin bitten by captive shark PROVOKED INCIDENT,N,WAVY-TV10-News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.24-Firchau.pdf -4841,2007.05.17.R,17-May-2007,2007,Provoked,England,Kent,Folkestone,Fishing,Phil Tanner,M,Bitten on the nose by a hooked shark PROVOKED INCIDENT,N,V. Wheeler,The Sun,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.17.R-PhilTanner.pdf +4841,2007.05.17.R,17-May-07,2007,Provoked,England,Kent,Folkestone,Fishing,Phil Tanner,M,Bitten on the nose by a hooked shark PROVOKED INCIDENT,N,V. Wheeler,The Sun,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.17.R-PhilTanner.pdf 4840,2007.05.16,16-May-07,2007,Unprovoked,Australia,Western Australia,"Warra Beach, Coral Bay",Wading,Becky Cooke,F,Left heel & calf bitten,N,The Western Australian,5/16/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.16-BeckyCooke.pdf 4839,2007.05.12,12-May-07,2007,Unprovoked,Australia,Victoria,Warrnambool,Surfing,Blake French,M,"No injury, shark's fin caught his leg",N,The Standard,5/15/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.12-BlakeFrench.pdf 4838,2007.05.10,10-May-07,2007,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jennifer Manis,F,Knee bitten,N,J. Manis,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.10-Manis.pdf -4837,2007.05.09.R,09-May-2007,2007,Unprovoked,Seychelles,Bird Island,Unknown,Snorkeling,male,M,No injury,N,Seychelles Forum,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.09.R-Seychelles.pdf +4837,2007.05.09.R,09-May-07,2007,Unprovoked,Seychelles,Bird Island,Unknown,Snorkeling,male,M,No injury,N,Seychelles Forum,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.09.R-Seychelles.pdf 4836,2007.05.08,08-May-07,2007,Invalid,Australia,New South Wales,Kingscliff Beach,Swimming,male,M,Shark involvement prior to death unconfirmed,Y,NineMSNews,5/10/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.08-KingscliffBeach.pdf 4835,2007.05.07.b,07-May-07,2007,Unprovoked,Usa,Hawaii,"Keawakapu Beach, Maui",Snorkeling,Peller Marion,F,Right foot bitten,N,G. Kubota,Honolulu Star Bulletin,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.b-PellerMarion.pdf 4834,2007.05.07.a,07-May-07,2007,Unprovoked,Usa,Florida,Naples,Swimming,Hans Pruss,M,Circular bite on left thigh,N,Naples News,5/10/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.a-HansPruss.pdf @@ -1173,10 +1173,10 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4823,2007.03.22,22-Mar-07,2007,Unprovoked,Yemen,Muhafazat Hadramawt,Ras-Alkalb,Murder,At least 29 (and possibly another 71) Somali & Ethiopian refugees,Unknown,"FATAL, beaten & thrown overboard by smugglers, they were killed by sharks",Y,United Nations High Commission for Refugees,3/26/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.22-EthiopianRefugees.pdf 4822,2007.03.21,21-Mar-07,2007,Unprovoked,Usa,Florida,Jupiter Inlet,Surfing,Sam Chief,M,Punctures & lacerations to right calf & calf,N,TCPalm,3/23/2007 ,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.21-Chief.pdf 4821,2007.03.20,20-Mar-07,2007,Unprovoked,Australia,New South Wales,South Golden Beach,Surfing,Jodie Cooper,F,Lacerations to 3 fingers of left hand ,N,Gold Coast Bulletin,3/21/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.20-JodieCooper.pdf -4820,2007.03.14.R,14-Mar-2007,2007,Provoked,Usa,Florida,Delray Beach,Shark fishing,Gregory Kuehlewind ,M,Right hand bitten by hooked shark PROVOKED INCIDENT,N,Associated Press,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.14.R-Kuehlewind.pdf +4820,2007.03.14.R,14-Mar-07,2007,Provoked,Usa,Florida,Delray Beach,Shark fishing,Gregory Kuehlewind ,M,Right hand bitten by hooked shark PROVOKED INCIDENT,N,Associated Press,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.14.R-Kuehlewind.pdf 4819,2007.03.12,12-Mar-07,2007,Unprovoked,Australia,Queensland,"Moore Park, north of Bundaberg",Swimming,Mary Jane Ryan,F,"Bruises to arm and hand, laceration to lower leg & minor injuries to foot",N,ABC News Online,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.12-Ryan.pdf 4818,2007.03.11,11-Mar-07,2007,Unprovoked,Usa,Florida,"Tiger Shores Beach, Martin County",Surfing,Adam McMichael,M,Lacerations to right forearm & hand,N,J. Ashton,T.C. Palm,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.11-McMichael.pdf -4817,2007.03.05.R,05-Mar-2007,2007,Provoked,New zealand,Cook islans,Penhryn Island,Spearfishing,Turua William Maretapu,M,Leg bitten by shark after he shot at it & missed PROVOKED INCIDENT,N,R. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.05.R-Maretapu.pdf +4817,2007.03.05.R,05-Mar-07,2007,Provoked,New zealand,Cook islans,Penhryn Island,Spearfishing,Turua William Maretapu,M,Leg bitten by shark after he shot at it & missed PROVOKED INCIDENT,N,R. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.05.R-Maretapu.pdf 4816,2007.02.04,04-Feb-07,2007,Invalid,Unknown,Unknown,Unknown,Swimming,Jason Cash,M,Death due to drowning. Shark bite may have been postmortem,Y,The Argus,3/2/2007,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.04-Cash.pdf 4815,2007.02.03,03-Feb-07,2007,Unprovoked,Australia,New South Wales,Shelly Beach,Boogie Boarding,Matthew McIntosh,M,Lacerations to lower left leg & ankle ,N,P. Immerz,SharkProject; P. Kemp,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.03-McIntosh.pdf 4814,2007.02.00,Feb-07,2007,Unprovoked,New caledonia,Loyalty Islands,Ouvéa,Spearfishing,male,M,Survived,N,Les Nouvelles Caledoniennes,,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.00-Ouvea.pdf @@ -1205,7 +1205,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4791,2006.10.00.a,Oct-06,2006,Unprovoked,Gulf of aden,Between Somalia & Yemen,Unknown,Murder,5 Ethiopian refugees,Unknown,"FATAL, beaten & thrown overboard by smugglers, they were killed by sharks",Y,United Nations High Commission for Refugees,10/20/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.a-EthiopianRefugees.pdf 4790,2006.09.30,30-Sep-06,2006,Invalid,South africa,Western Cape Province,Miller's Point,Spearfishing,Joseph Johnston,M,No injury; 4m white shark made a threat display,N,Cape Argus,10/2/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.30-Johnston.pdf 4789,2006.09.29,29-Sep-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Andrews ,M,Big toe bitten,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.29-Andrews.pdf -4788,2006.09.18.R,18-Sep-2006,2006,Provoked,Usa,Florida,"Off Key Largo, Monroe County",Diving / Kissing the shark,Dave Marcel,M,Lacerations to upper lip PROVOKED INCIDENT,N,CBS-4,9/18/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.18.R-DaveMarcel.pdf +4788,2006.09.18.R,18-Sep-06,2006,Provoked,Usa,Florida,"Off Key Largo, Monroe County",Diving / Kissing the shark,Dave Marcel,M,Lacerations to upper lip PROVOKED INCIDENT,N,CBS-4,9/18/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.18.R-DaveMarcel.pdf 4787,2006.09.16,16-Sep-06,2006,Unprovoked,Usa,North Carolina,Onslow Beach,Surfing,Jake Poland,M,Laceration to left thigh,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.16-JakePoland.pdf 4786,2006.09.14,14-Sep-06,2006,Unprovoked,Usa,Florida,"Singer Island, Riviera Beach",Swimming,William Carol,M,Minor injury to left hand,N,WFTV.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.14-Carol.pdf 4785,2006.09.11,11-Sep-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Dennis Macy,M,Left torso grazed,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.11-Macy.pdf @@ -1232,7 +1232,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4764,2006.07.28,28-Jul-06,2006,Unprovoked,South africa,Western Cape Province,Fish Hoek,Surf-skiing,Lyle Maarsdorp,M,"No injury, surf ski bitten",N,Cape Argus,7/29/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.28-Maasdorp.pdf 4763,2006.07.25,25-Jul-06,2006,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,Minor lacerations to right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.25-NSB.pdf 4762,2006.07.23,23-Jul-06,2006,Unprovoked,Usa,Texas,"Sargent Beach, Matagorda County",Surf fishing,R.K. Halbert,M,Right foot bitten,N,KHOU.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.23-Halbert.pdf -4761,2006.07.17.R,17-Jul-2006,2006,Invalid,Australia,Torres Strait,Western Province,Unknown,Unknown,Unknown,8 shark-bitten bodies washed ashore,N,The Torres News,7/17/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.R-TorresStrait.pdf +4761,2006.07.17.R,17-Jul-06,2006,Invalid,Australia,Torres Strait,Western Province,Unknown,Unknown,Unknown,8 shark-bitten bodies washed ashore,N,The Torres News,7/17/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.R-TorresStrait.pdf 4760,2006.07.17,17-Jul-06,2006,Unprovoked,Usa,South Carolina,"Singleton Beach, Hilton Head Island, Beaufort County",Standing,Dallas Jackson,M,Left ankle & foot bitten,N, C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.a-DallasJackson.pdf 4759,2006.07.13,13-Jul-06,2006,Invalid,Spain,Alicante,San Juan Beach ,Swimming,female,F,Hand & wrist severely bitten,N,C. Johansson,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.13-girl-Spain.pdf 4758,2006.07.12,12-Jul-06,2006,Unprovoked,Usa,South Carolina,"Kiawah Island, Charleston County",Swimming,female,F,Ankle & foot bitten,N, C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.12-KiawahIsland.pdf @@ -1282,7 +1282,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4714,2006.02.08,08-Feb-06,2006,Unprovoked,South africa,Eastern Cape Province,"Nahoon, East London",Surfing,Jason Noades,M,2 bite marks on right calf,N,M. Kabeli,Dispatch Online.com; G. Brett & K. Cole,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.08-Noades.pdf 4713,2006.02.01.b,01-Feb-06,2006,Unprovoked,Tonga,Vava'u,Tu’anuku,Swimming,Tessa Horan,F,Severe bite to right leg FATAL,Y,D. Clem; www.matangitonga.to,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.b-Horan.pdf 4712,2006.02.01.a,01-Feb-06,2006,Boat,Usa,Hawaii,"Off Pu'u Ola'l, Makena, Maui",Kayaking,Dan Lankheit,M,No injury to occupant; shark bumped the kayak repeatedly for 15 minutes,N,R. Collier,GSAF; Honolulu Advertiser,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.a-Lankheit.pdf -4711,2006.01.28.R,28-Jan-2006,2006,Boat,Atlantic ocean,300 miles from Antigua,Unknown,Competing in the Woodvale Atlantic Rowing Race,"Mayabrit, an ocean rowing boat. Occupants: Andrew Barnett & J.C.S. Brendana",M,No injury to occupants; shark rammed boat repeatedly,N,N. Bevan,icwales.icnetwork.co.uk,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.28.R-Mayabrit.pdf +4711,2006.01.28.R,28-Jan-06,2006,Boat,Atlantic ocean,300 miles from Antigua,Unknown,Competing in the Woodvale Atlantic Rowing Race,"Mayabrit, an ocean rowing boat. Occupants: Andrew Barnett & J.C.S. Brendana",M,No injury to occupants; shark rammed boat repeatedly,N,N. Bevan,icwales.icnetwork.co.uk,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.28.R-Mayabrit.pdf 4710,2006.01.25,25-Jan-06,2006,Unprovoked,South africa,Eastern Cape Province,Coffee Bay,Spearfishing,Michael Vriese,M,Right arm bitten,N,Geremy Cliff,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.25-Vriese.pdf 4709,2006.01.23,23-Jan-06,2006,Boat,Atlantic ocean,800 miles from land,Unknown,Competing in the Woodvale Atlantic Rowing Race,"Rowgirls, an ocean rowing boat. Occupants: Sally Kettle, Claire Mills & Sue McMillan",F,"No injury to occupants; a shark, accidentally caught in a line, threatened to rip out the transom",N,Northants News,1/25/2006,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.23-Rowgirls.pdf 4708,2006.01.18,18-Jan-06,2006,Unprovoked,Usa,California,"Santa Cruz, Santa Cruz County",Night Surfing,Mario Lari,M,"No injury, but 2 small nicks on wetsuit",N,R. Collier,,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.18-Lari.pdf @@ -1295,8 +1295,8 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4701,2005.12.21,21-Dec-05,2005,Unprovoked,Usa,Hawaii,"Keawakapu Beach, Maui",Swimming,Jonathan Genant,M,Left hand bitten,N, San Francisco Gate 2/21/2005,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.21-Genant.pdf 4700,2005.12.20,20-Dec-05,2005,Boat,Atlantic ocean,600 nm west of the Canary Islands,Unknown,Competing in the Woodvale Atlantic Rowing Race,"7 m boat, occupants: Tara Remington & Iain Rudkin",Unknown,"No injury to occupants, shark rammed boat for 15 minutes",N,R.D. Weeks,GSAF; NZ Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.20-rowboat.pdf 4699,2005.12.11,11-Dec-05,2005,Unprovoked,Australia,Queensland,St. Crispin Reef,Spearfishing,Glenn Simpson,M,Right forearm & elbow bitten,N,Courier-Mail,12/12/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.11-Simpson.pdf -4698,2005.12.05.R,06-Dec-2005,2005,Boat,Australia,South Australia,"Middle Beach, 40 km north of Adelaide",Fishing,"5.4 m fibreglass boat, occupants: Robert & James Hogg",Unknown,"No injury to occupants, hydrofoil of outboard motor bitten ",N,Melbourne Herald Sun,12/5/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.05.R-HoggBoat.pdf -4697,2005.11.29.R,29-Nov-2005,2005,Unprovoked,Usa,Florida,"Cape San Blas, Gulf County",Surfing,John Larsen,M,Left foot bitten,N,wpmi.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.29.R-Larsen.pdf +4698,2005.12.05.R,06-Dec-05,2005,Boat,Australia,South Australia,"Middle Beach, 40 km north of Adelaide",Fishing,"5.4 m fibreglass boat, occupants: Robert & James Hogg",Unknown,"No injury to occupants, hydrofoil of outboard motor bitten ",N,Melbourne Herald Sun,12/5/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.05.R-HoggBoat.pdf +4697,2005.11.29.R,29-Nov-05,2005,Unprovoked,Usa,Florida,"Cape San Blas, Gulf County",Surfing,John Larsen,M,Left foot bitten,N,wpmi.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.29.R-Larsen.pdf 4696,2005.11.27,27-Nov-05,2005,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Blake Perry,M,Right thumb & palm lacerated,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.27-Perry.pdf 4695,2005.11.25.c,25-Nov-05,2005,Boat,Australia,Victoria,"6 km off Collendina, south of Melbourne",Fishing,"4.5 m boat, occupant: Rodney Lawn",Unknown,"No injury to occupant, shark bit outboard motor",N,Sunday Mail (QLD),11/27/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.c-boat-Lawn.pdf 4694,2005.11.25.b,25-Nov-05,2005,Unprovoked,Australia,Victoria,Flinders,Surfing,Tom Burke,M,"2 lacerations on leg, each 4"" to 5"" long",N,Sydney Morning Herald,11/25/2005,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.b-Burke.pdf @@ -1529,7 +1529,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4467,2003.08.19,19-Aug-03,2003,Unprovoked,Usa,California,"Avila Beach, San Luis Obispo County","Swimming, wearing black wetsuit & swim fins",Deborah Franzman,F,"FATAL Hip & upper thigh bitten, femoral artery severed ",Y,R. Collier,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.19-Franzman.pdf 4466,2003.08.12,12-Aug-03,2003,Invalid,Usa,California,"Venice Beach, Los Angeles County",Swimming,male,M,Left ankle lacerated,N,ABC News,,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.12-VeniceBeach.pdf 4465,2003.08.08,08-Aug-03,2003,Unprovoked,South africa,Eastern Cape Province,Jeffrey’s Bay,Sitting on surfboard,Joseph Krone,M,"No injury, wetsuit torn & board bitten",N,E. Ritter,GSAF http://sport.iafrica.com/news/261271.htm ,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.08-Krone.pdf -4464,2003.07.26.R,26-Jul-2003,2003,Unprovoked,Australia,Northern Territory,Nhulunbuy,Surf skiing,Martin Gunda,M,"No injury, flung into water when shark bit rudder of ski",N,Northern Territory News,7/26/2003,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.26.R-Gunda.pdf +4464,2003.07.26.R,26-Jul-03,2003,Unprovoked,Australia,Northern Territory,Nhulunbuy,Surf skiing,Martin Gunda,M,"No injury, flung into water when shark bit rudder of ski",N,Northern Territory News,7/26/2003,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.26.R-Gunda.pdf 4463,2003.07.20,20-Jul-03,2003,Unprovoked,Usa,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,John McGovern,M,Laceration to little finger of right hand,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.20-McGovern.pdf 4462,2003.07.15,15-Jul-03,2003,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Wading,C.K.,F,Heel & sole of left foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.15-CK.pdf 4461,2003.07.09,10-Jul-03,2003,Unprovoked,Bahamas,Abaco Islands,Bakers Bay,Spearfishing,Richard Horton,M,Right thigh bitten,N,M. Levine,GSAF; Associated Press,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.09-Horton.pdf @@ -1614,7 +1614,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4382,2002.08.14,14-Aug-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Paxton Vinyard,M,Big toe bitten,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.14-Vinyard.pdf 4381,2002.08.11,11-Aug-02,2002,Unprovoked,Usa,Florida,"Vero Beach, Indian River County",Surfing,Brad Milliken,M,Lacerations on heel & dorsum of right foot,N,Stuart News,8/12/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.11-Milliken.pdf 4380,2002.08.07,07-Aug-02,2002,Unprovoked,Usa,Florida,"Ponce De Leon Inlet, Volusia County",Standing,David Brennen Smith,M,Ankle & leg lacerated,N,S. Petersohn,GSAF; J. Eager; A. Caldwell,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.07-Smith.pdf -4379,2002.08.06.R,06-Aug-2002,2002,Provoked,United kingdom,Cheshire,"Blue Planet Aquarium, Ellesmere Port",Diving,Rob Bennett,M,Hand bitten by captive shark PROVOKED INCIDENT,N,Evening Standard (London,England),http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.06-Bennet.pdf +4379,2002.08.06.R,06-Aug-02,2002,Provoked,United kingdom,Cheshire,"Blue Planet Aquarium, Ellesmere Port",Diving,Rob Bennett,M,Hand bitten by captive shark PROVOKED INCIDENT,N,Evening Standard (London,England),http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.06-Bennet.pdf 4378,2002.08.05,05-Aug-02,2002,Unprovoked,Usa,North Carolina,"Topsail Beach, Pender County",Standing,Robert Pollan,M,Leg lacerated,N,Wisconsin State Journal; C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.05-Pollan.pdf 4377,2002.07.26,26-Jul-02,2002,Unprovoked,Usa,South Carolina,"Myrtle Beach, Horry County",Surfing,T.J. Nimmons,M,Heel bitten,N,C. Creswell,GSAF; The State (Columbia,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.26-Nimmons.pdf 4376,2002.07.20,20-Jul-02,2002,Unprovoked,Usa,North Carolina,"Emerald Isle, Carteret County",Swimming,Mary Katherine Strong,F,Calf bitten,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.20-Strong.pdf @@ -1625,8 +1625,8 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4371,2002.06.20.b,20-Jun-02,2002,Unprovoked,Australia,Queensland,Sunshine Beach,Surfing,male,M,minor injury to foot,N,AAP,6/20/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.b-surfer-QLD.pdf 4370,2002.06.20.a,20-Jun-02,2002,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,female,F,Small lacerations on right lower leg,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.a-female.pdf 4369,2002.06.16,16-Jun-02,2002,Invalid,Indonesia,Unknown,"Shark caught in Indonesia, offloaded to trawler that docked at Samut Prakan, 20 miles south of Bangkok, Thailand",Unknown,Unknown,Unknown,Human remains (right forearm & leg) recovered from 3.7m [12'] tiger shark’s gut. Forensic examination suggested the remains had been consumed by the shark one to two weeks earlier,Y,espn.go.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.16-Indonesia.pdf -4368,2002.06.13.R2,13-Jun-2002,2002,Unprovoked,Papua new guinea,Louisiade Archipelago,"Brooker Island , Calvados Chain",Unknown,Unknown,Unknown,"Arm severely lacerated, surgically amputated",N,PNG Post-Courier,6/13/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13-R.2-beche-de-mer.pdf -4367,2002.06.13.R1,13-Jun-2002,2002,Unprovoked,Papua new guinea,Louisiade Archipelago,"Gawa Reefs, Sudest Island",Attempting to retreive a dinghy,an elementary school teacher,Unknown,FATAL,Y,PNG Post-Courier,6/13/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13.R.1-schoolteacher.pdf +4368,2002.06.13.R2,13-Jun-02,2002,Unprovoked,Papua new guinea,Louisiade Archipelago,"Brooker Island , Calvados Chain",Unknown,Unknown,Unknown,"Arm severely lacerated, surgically amputated",N,PNG Post-Courier,6/13/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13-R.2-beche-de-mer.pdf +4367,2002.06.13.R1,13-Jun-02,2002,Unprovoked,Papua new guinea,Louisiade Archipelago,"Gawa Reefs, Sudest Island",Attempting to retreive a dinghy,an elementary school teacher,Unknown,FATAL,Y,PNG Post-Courier,6/13/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13.R.1-schoolteacher.pdf 4366,2002.06.11.b,11-Jun-02,2002,Unprovoked,Usa,Hawaii,"Anini Beach, Kaua'i",Sitting on surfboard,C. Levin,Unknown,"No injury, shark bit side of surfboard",N,Hawaii Department of Land and Natural Resources,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.b-Levin.pdf 4365,2002.06.11.a,10-Jun-02,2002,Unprovoked,Usa,Florida,"St Augustine Beach, St Johns County",Surfing,Jason Smith,M,Right hand lacerated,N,Orlando Sentinel,6/12/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.a-JasonSmith.pdf 4364,2002.06.09.b,09-Jun-02,2002,Unprovoked,Usa,Florida,"South of Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Craig Taylor,M,6-inch gash on right foot,N,S. Petersohn,GSAF; S. Pedicini,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.b-Taylor.pdf @@ -1636,7 +1636,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4360,2002.05.31.a,31-May-02,2002,Unprovoked,Usa,Florida,"St. George Island (near Apachicola), Franklin County",Floating on a raft,Matt Tichenor,M,Lacerated foot,N,South Florida Sun-Sentinel; Orlando Sentinel,6/3/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.a-Tichenor.pdf 4359,2002.05.22.b,22-May-02,2002,Provoked,Usa,Florida,"a pier at the end of Caxambas Drive, Marco Island ","Fishing, removing the shark from his line",male,M,Leg bitten by hooked shark PROVOKED INCIDENT,N,News-Press,5/23/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.b-MarcoIsland.pdf 4358,2002.05.22.a,22-May-02,2002,Unprovoked,Usa,Florida,"Atlantic Avenue, Palm Beach County",Playing in the surf with his 2 dogs,Sean Oliver,M,"2-inch wound on dorsum of right foot, 1-inch wound on sole",N,Palm Beach Post, 5/24 & 26/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.a-Oliver.pdf -4357,2002.05.21.R,21-May-2002,2002,Unprovoked,Costa rica,Guanacaste,Playa Grande,Surfing,Nick Wallace,M,Toothmarks in board & his swim trunks,N,Surfline.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.R-Wallace.pdf +4357,2002.05.21.R,21-May-02,2002,Unprovoked,Costa rica,Guanacaste,Playa Grande,Surfing,Nick Wallace,M,Toothmarks in board & his swim trunks,N,Surfline.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.R-Wallace.pdf 4356,2002.05.21,21-May-02,2002,Unprovoked,Papua new guinea,Milne Bay Province,Tewatewa Island,Collecting beche-de-mer,Billy Leonard,M,Wrist lacerated,N,PNG Post-Courier,6/13/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.a-Leonard.pdf 4355,2002.05.13,13-May-02,2002,Unprovoked,Usa,Florida,"Ten Thousand Islands National Wildlife Refuge, Collier County",Fishing,Fermin Gallegos,M,Laceration to arm.,N,South Florida Sun-Sentinel; Southwest Florida Digest,,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.13-Gallegos.pdf 4354,2002.05.10,10-May-02,2002,Unprovoked,Brazil,Pernambuco,"Pina, Recife",Surfing,Paulo Fernandes Alves Ferreira,M,Leg injured,N,JCOnline,5/11/2002,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.10-PauloFernandesAlvesFerreira.pdf @@ -1796,7 +1796,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4200,2000.09.00.b,Early Sep-2000,2000,Unprovoked,Tanzania,Unknown,"Coco Beach, Dar-es-Salaam",Swimming,Unknown,Unknown,FATAL,Y,T. Thierry,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.00-CocoBeach4.pdf 4199,2000.08.31,31-Aug-00,2000,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,Rickey Johnson,M,Punctures & lacerations on right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.31-Johnson.pdf 4198,2000.08.30,30-Aug-00,2000,Unprovoked,Usa,Florida,"Boca Ciega Bay, Tampa, Pinellas County",Jumped into the water,Thaddeus Kubinski,M,FATAL,Y,E. Ritter,GSAF; Charlotte Observer,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.30-Kubinski.pdf -4197,2000.08.27.R,27-Aug-2000,2000,Provoked,Usa,Alaska,Prince William Sound,Conducting research,Bruce Wright,M,Leg bitten by netted shark PROVOKED INCIDENT,N,B.A. Wright,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.27.R-BruceWright.pdf +4197,2000.08.27.R,27-Aug-00,2000,Provoked,Usa,Alaska,Prince William Sound,Conducting research,Bruce Wright,M,Leg bitten by netted shark PROVOKED INCIDENT,N,B.A. Wright,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.27.R-BruceWright.pdf 4196,2000.08.21,21-Aug-00,2000,Unprovoked,Usa,North Carolina,"Bouges Bank, Emerald Isle, Carteret County",Swimming out to porpoises ,male,M,"Severe gash to left hand above wrist, almost severing hand",N,C. Creswell,GSAF; Wilmington Morning Star; Charlotte Observer,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.21-male.pdf 4195,2000.08.15,15-Aug-00,2000,Unprovoked,Usa,Hawaii,"Kanaha Beach, Maui","Windsurfing, but sitting on his board",Jean Alain Goenvec,M,Left calf lacerated,N,Maui.net,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.15-Goenvec.pdf 4194,2000.08.13,13-Aug-00,2000,Unprovoked,Usa,Florida,"South Jacksonville Beach, Duval County",Surfing / Wading,Jason Wuss,M,Minor lacerations to the dorsum of the right foot,N,Florida Times-Union,8/14/2000; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.13-JasonWuss.pdf @@ -1852,7 +1852,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4144,2000.02.14,14-Feb-00,2000,Provoked,England,Worcestershire,The Fountain Pub in Tenbury Wells,Feeding prawns to captive sharks,"Paul Smith, a chef",M,Fingers bitten PROVOKED INCIDENT,N,The Sun (London),2/17/2000,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.14-Smith.pdf 4143,2000.02.03,03-Feb-00,2000,Unprovoked,New zealand,South Island,Oreti Beach (reported as the 4th person bitten in NZ in 2000),Surfing,Michael Petas,M,"No injury, wetsuit punctured",N,Waikato Times; Southland Times,10/23/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.03-Petas.pdf 4142,2000.02.01,01-Feb-00,2000,Unprovoked,Australia,South Australia,"Point Sinclair, Cactus Beach near Penong",Surfing,Anthony Hayes,M,Hand bitten,N,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.01-Hayes.pdf -4141,2000.01.28.R,28-Jan-2000,2000,Boat,Reunion,Unknown,Saint Pierre,Canoe with 3 men onboard sank,Boulabhaï Ishmael,M,FATAL,Y,B.L. du Vendre,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.28.R-Reunion.pdf +4141,2000.01.28.R,28-Jan-00,2000,Boat,Reunion,Unknown,Saint Pierre,Canoe with 3 men onboard sank,Boulabhaï Ishmael,M,FATAL,Y,B.L. du Vendre,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.28.R-Reunion.pdf 4140,2000.01.05,05-Jan-00,2000,Unprovoked,Thailand,Phang nga Province,Phang nga Island,Diving,Stephan Kahl,M,FATAL,Y,A. Xuereb,,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.05-Kahl.pdf 4139,2000.00.00,2000,2000,Boat,Usa,Florida,"Boca Grande, Lee County",Fishing for tarpon,"boat: occupant, Terry Winters",M,No injury to occupant; shark bit propeller,N,B. Stout,News-Press,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.00.00-BocaGrandeBoat.pdf 4138,1999.12.31.c,31-Dec-99,1999,Unprovoked,New zealand,South Island,Oreti Beach,Surfing,Tim Wild,M,Six puncture wounds on leg,N,R.D. Weeks,GSAF; The Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.c-Wildl.pdf @@ -1875,7 +1875,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4121,1999.10.01,01-Oct-99,1999,Unprovoked,Usa,Hawaii,Old Kona Airport State Park,"Surfing, lying on surfboard",Jesse Spencer,M,Right arm bitten,N,Star Bulletin,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.01-Spencer.pdf 4120,1999.09.29,29-Sep-99,1999,Unprovoked,Usa,Florida,"South side of Ponce de Leon Inlet, Volusia County",Wading to shore after surfing,Joel A. Borges,M,3 one-inch lacerations to sole of right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.29-Borges.pdf 4119,1999.09.24,24-Sep-99,1999,Boat,Italy,Adriatic Sea,San Benedetto,Fishing,Boat “Coca Cola”,Unknown,No Injury to occupants,N,Orlando Sentinel,9/28/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.24-boat.pdf -4118,1999.09.16,16-Sep-1999,1999,Unprovoked,Usa,Florida,"Cape Canaveral, Brevard County",Wading,Janet Ferguson,F,Thigh (posterior) bitten,N,Evening News (Edinburgh,Scotland),http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.16-Ferguson.pdf +4118,1999.09.16,16-Sep-99,1999,Unprovoked,Usa,Florida,"Cape Canaveral, Brevard County",Wading,Janet Ferguson,F,Thigh (posterior) bitten,N,Evening News (Edinburgh,Scotland),http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.16-Ferguson.pdf 4117,1999.09.10,10-Sep-99,1999,Unprovoked,Usa,South Carolina,"Isle of Palms, Charleston County",Wading,Taylor Warnock,F,Toes lacerated,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.10-Warnock.pdf 4116,1999.09.05,05-Sep-99,1999,Unprovoked,Usa,Florida,"Fort Pierce Inlet, St. Lucie County",Surfing,Mike Sprague,M,Right foot bitten,N,Orlando Sentinel,9/8/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.05-Sprague.pdf 4115,1999.09.04.b,04-Sep-99,1999,Provoked,Usa,Florida,"World Typhoon Lagoon, Disney Water Park, Orange County",Wading,Troy Patterson,M,Left knee nipped by captive shark PROVOKED INCIDENT,N,K. Morelli,Tampa Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.b-Patterson.pdf @@ -1916,13 +1916,13 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4080,1999.01.29,29-Jan-99,1999,Unprovoked,Mauritius,Unknown,Belle-Mare,Spearfishing,Rajkumar Mansaram,M,Legs & torso injured,N,J.M. Langlois,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.29-Mauritius.pdf 4079,1999.01.13, 13-Jan-1999,1999,Unprovoked,South africa,Eastern Cape Province,Bonza Beach,Paddle Skiing,Evan Ridge,M,"No Injury, ski bitten",N,The Citizen,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.13-Ridge.pdf 4078,1999.01.07,01-Jan-99,1999,Boat,New zealand,North Island,"Papamoa, near Tauranga, Bay of Plenty",Inflatable boat,Unknown,Unknown,No injury to occupant: boat lost,N,The Dominion,1/8/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.07-NZ-inflatable.pdf -4077,1999.01.03.R,03-Jan-1999,1999,Invalid,Australia,Northern Territory,Gulf of Carpenteria,Fishing,Donna Turcotte,F,"Cut foot, but injury caused by fishing line, not the shark",N,Sunday Mail,3/1/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03.R-Turcotte.pdf +4077,1999.01.03.R,03-Jan-99,1999,Invalid,Australia,Northern Territory,Gulf of Carpenteria,Fishing,Donna Turcotte,F,"Cut foot, but injury caused by fishing line, not the shark",N,Sunday Mail,3/1/1999,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03.R-Turcotte.pdf 4076,1999.01.03,03-Jan-99,1999,Unprovoked,Reunion,Saint-Leu,Pointe au Sel,Spearfishing,Unknown,Unknown,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03-ReunionIsland.pdf 4075,1999.00.00.b,1999,1999,Unprovoked,South africa,Western Cape Province,"Hospital Rock, Dyers Island",Spearfishing,Healy Lootz,M,Heel lacerated,N,V. Van der Merwe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.b-Lootz.pdf 4074,1999.00.00.a,1999,1999,Invalid,Usa,Virginia,"Sandridge Beach, Virginia Beach, Princess Anne County",Body surfing,male,M,Abrasions,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.a-NV-SandridgeBeach.pdf 4073,1998.12.24,24-Dec-98,1998,Provoked,Usa,Florida,"Ormond Beach, Volusia County",Surfing,Andy Thompson,M,Left foot bitten after he accidentally stepped on the shark PROVOKED INCIDENT ,N,S. Petersohn,GSAF; Daytona Beach News Journal,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.24-AndyThompson.pdf 4072,1998.12.22,22-Dec-98,1998,Unprovoked,Australia,South Australia,Middleton Beach,Standing,Megan O'Leary,F,2 puncture wounds in left leg,N,The Advertiser,12/23/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.22-O'Leary.pdf -4071,1998.12.20.R,20-Dec-1998,1998,Unprovoked,South africa,Eastern Cape Province,"King's Beach, Port Elizabeth",Surfing,Greg Harrison,M,Leg bitten,N,G. Cliff,NSB; Sunday Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.20.R-Harrison.pdf +4071,1998.12.20.R,20-Dec-98,1998,Unprovoked,South africa,Eastern Cape Province,"King's Beach, Port Elizabeth",Surfing,Greg Harrison,M,Leg bitten,N,G. Cliff,NSB; Sunday Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.20.R-Harrison.pdf 4070,1998.12.18,18-Dec-98,1998,Unprovoked,South africa,Eastern Cape Province,Kei River Mouth,Splashing,Douw van der Merwe,M,Right leg bitten,N,Sunday Times,12/20/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.18-vanderMerwe.pdf 4069,1998.12.15,15-Dec-98,1998,Unprovoked,Australia,South Australia,Middleton Beach,Surfing,Unknown,F,Leg injured,N,Animal Attack Files,12/19/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.15-female surfer.pdf 4068,1998.11.21,21-Nov-98,1998,Unprovoked,Usa,Florida,"Ocean Beach, Jaycee Park, Vero Beach, Indian River County",Swimming,James Willie Tellasmon,M,FATAL,Y,E. Ritter. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.21-Tellasmon.pdf @@ -1939,7 +1939,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4057,1998.10.01.a,01-Oct-98,1998,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Unknown,Mike Duncan,M,2 one-inch lacerations in left foot,N,S. Petersohn,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.a-Duncan.pdf 4056,1998.09.27,27-Sep-98,1998,Unprovoked,Usa,Florida,"The Rocks, Hutchinson Island, Martin County",Surfing,Kai Haire,M,Puncture wounds to leg,N,The Stuart (FL) News,9/29/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.27-KaiHaire.pdf 4055,1998.09.22,22-Sep-98,1998,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Jade Blackstock,M,Left arm lacerated,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.22-Blackstock.pdf -4054,1998.09.16.R,16-Sep-1998,1998,Unprovoked,South africa,Eastern Cape Province,Kowie River,Fishing / washing bait off hands,Grant Rielly,M,Laceration to right foot,N,Daily Dispatch,9/16/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.16.R-Rielly.pdf +4054,1998.09.16.R,16-Sep-98,1998,Unprovoked,South africa,Eastern Cape Province,Kowie River,Fishing / washing bait off hands,Grant Rielly,M,Laceration to right foot,N,Daily Dispatch,9/16/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.16.R-Rielly.pdf 4053,1998.09.14,14-Sep-98,1998,Unprovoked,Usa,Florida,"Stuart Beach, Martin County",Surfing,Danny Hoopes,M,Right foot bitten,N,P. Sheth,Fort Pierce Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.14-DannyHoopes.pdf 4052,1998.09.00,Sep-98,1998,Provoked,Senegal,Cap Vert Peninsula,Yoff Island,Spearfishing,A.D,M,Bitten by harpooned shark PROVOKED INCIDENT,N,S. Trape,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.00-Senegal.pdf 4051,1998.08.30,30-Aug-98,1998,Unprovoked,Usa,Florida,"Ponce Inlet, Volusia County",Surfing,J. Howington,M,Toes lacerated,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.30-Howington.pdf @@ -1976,7 +1976,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4020,1998.03.15,15-Mar-98,1998,Unprovoked,South africa,Western Cape Province,Saldanha Bay,Snorkeling – hunting crayfish and abalone,Kevin Dewey,M,Lower leg lacerated,N,C. Maxwell,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.15-Dewey.pdf 4019,1998.03.08.a,08-Mar-98,1998,Unprovoked,Usa,Florida,"Loggerhead Park, Juno Beach, Palm Beach County",Swimming or paddle boarding,Rick Welch,M,6 puncture wounds to right calf,N,Jupiter Courier,3/11/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.08-Welch.pdf 4018,1998.02.23,23-Feb-98,1998,Unprovoked,Usa,Florida,"Jensen Beach, Martin County",Swimming,Gordon Wilson,M,Hands bitten,N,Palm Beach Post,2/24/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.02.23-Wilson.pdf -4017,1998.01.28.R ,28-Jan-1998,1998,Invalid,Australia,New South Wales,Whale Beach,Spearfishing,male,M,"Missing, thought to have been taken by a shark",Y,Daily Telegraph,1/28/1998.p.2,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.R-spearfisherman.pdf +4017,1998.01.28.R ,28-Jan-98,1998,Invalid,Australia,New South Wales,Whale Beach,Spearfishing,male,M,"Missing, thought to have been taken by a shark",Y,Daily Telegraph,1/28/1998.p.2,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.R-spearfisherman.pdf 4016,1998.01.28.a,Jan-98,1998,Unprovoked,New caledonia,South Province,l'Anse-Vata,Windsurfing,Frederic Marechal,M,"No injury, board bumped & fin damaged",N,W. Leander,Les Nouvelles Caledoniennes,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.a-Frederic_Marechal.pdf 4015,1998.01.25.b,25-Jan-98,1998,Unprovoked,Reunion,Grand'Anse,Unknown,Bathing,Philippe Blu,M,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.b-Blu.pdf 4014,1998.01.25.a,25-Jan-98,1998,Unprovoked,South africa,Eastern Cape Province,East London,Surfing,Glenn Vosloo,M,Calf & foot lacerated,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.a-Vosloo.pdf @@ -1990,13 +1990,13 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 4006,1997.12.25.b,25-Dec-97,1997,Invalid,Usa,Florida,"Fort Lauderdale, Broward County",Unknown,Gerd Olofsson,F,"Ankle bitten, but shark involvement unconfirmed",N,Miami Herald,12/27/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.b-Olofsson.pdf 4005,1997.12.25.a,25-Dec-97,1997,Unprovoked,Usa,Florida,"Hollywood Beach, Broward County",Swimming,Samuel Lussier,M,Left leg gashed knee to ankle,N,Orlando Sentinel,12/27/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.a-Lussier.pdf 4004,1997.11.09,09-Nov-97,1997,Unprovoked,Australia,Western Australia,Albany,Scuba diving (submerged riding a scooter),Kevin Hulkes,M,Left arm lacerated when shark grabbed scooter,N,Daily Telegraph,11/12/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.09-Hulkes.pdf -4003,1997.11.05.R,05-Nov-1997,1997,Unprovoked,Usa,Florida,Unknown,Swimming,"James Ogilvy, 31st in line for the British Throne",M,Thigh bitten,N,The Mirror (London),11/5/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.R-Ogilvy.pdf +4003,1997.11.05.R,05-Nov-97,1997,Unprovoked,Usa,Florida,Unknown,Swimming,"James Ogilvy, 31st in line for the British Throne",M,Thigh bitten,N,The Mirror (London),11/5/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.R-Ogilvy.pdf 4002,1997.11.05, 05-Nov-1997,1997,Invalid,Australia,New South Wales,Botany Bay?,Unknown,Luke McIntyre,M,5 m white shark obsrved feeding on remains 6 days later,Y,Courier-Mail,12/7/1998,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.a-McIntyre.pdf 4001,1997.10.28.b,28-Oct-97,1997,Unprovoked,Australia,Western Australia,"Cottesloe Beach, Perth",Surf-skiing,Brian Sierakowski & Barney Hanrahan,M,"Sierakowski suffered a minor facial injury, ski bitten in half by shark",N,Reuters Limited,et al,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.b-Sierakowski.pdf 4000,1997.10.28.a,28-Oct-97,1997,Unprovoked,Usa,Hawaii,"Waiokapua Bay/Majors Bay, Brennecke Beach, Poipu, Kaua'i Island",Body boarding or surfing,Mike Coots,M,"Both legs bitten, right leg severed at mid-calf & defense wounds on right hand",N,Yahoo News Canada,8/16/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.a-Coots.pdf 3999,1997.10.24,24-Oct-97,1997,Unprovoked,Usa,Florida,"North Jetty, Fort Pierce Inlet State Park, St. Lucie County",Surfing,Luis Morales,M,"5"" gash in foot",N,Fort Pierce News, 10/25/1997 & 10/31/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.24-Morales.pdf 3998,1997.10.21,21-Oct-97,1997,Unprovoked,Usa,Florida,"North Jetty, Fort Pierce Inlet State Park, St. Lucie County",Surfing,Jacob McBee,M,Left foot bitten,N,Fort Pierce News, 10/24/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.21-McBee.pdf -3997,1997.10.11.R,11-Oct-1997,1997,Boat,South africa,Eastern Cape Province,Off Port Alfred,Fishingat,Andre Marais & Tony Jensen,Unknown,"No injury, hooked shark bit their 4.8 m inflatable boat",N,Daily Dispatch,10/11/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.11.R-Jensen-Marais.pdf +3997,1997.10.11.R,11-Oct-97,1997,Boat,South africa,Eastern Cape Province,Off Port Alfred,Fishingat,Andre Marais & Tony Jensen,Unknown,"No injury, hooked shark bit their 4.8 m inflatable boat",N,Daily Dispatch,10/11/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.11.R-Jensen-Marais.pdf 3996,1997.10.04,04-Oct-97,1997,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Swimming,Tara Stalnaker,F,Laceration & 3 puncture wounds to anterior right thigh,N,S. Petersohn,GSAF; Orlando Sentinel,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.04.b-Stalnaker.pdf 3995,1997.09.16,16-Sep-97,1997,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Swimming,Pedro Fernandes da Silva,M,FATAL,Y,JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.16-PedroFernandesDaSilva.pdf 3994,1997.09.09,09-Sep-97,1997,Unprovoked,Usa,Florida,Volusia County ,Surfing,G.D.,M,Laceration to right foot,N,S. Petersohn,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.09-Dietlin.pdf @@ -2108,7 +2108,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3888,1995.11.25.b,25-Nov-95,1995,Invalid,Usa,Hawaii,"Ha'ena, Kaua'i",Unknown,Wendall Olanolan,M,Minor injury,N,G. Balazs,,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.b-NV-Olanolan.pdf 3887,1995.11.25.a,25-Nov-95,1995,Unprovoked,Unknown,Unknown,Unknown,Fell off aircraft carrier,"Zacharay Mayo, a U.S. Marine",M,"Minor injuries, bites on fingers & toes. Rescued by Pakistani fishermen",N,CNN,,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.a-Mayo.pdf 3886,1995.11.17,17-Nov-95,1995,Unprovoked,Australia,Queensland,Great Keppel Island,Unknown,Roberto Giordan,M,Survived,N,A. Brenneka,sharkattacksurvivors.com,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.17-Giordan.pdf -3885,1995.10.28.R,28-Oct-1995,1995,Unprovoked,Usa,Florida,Unknown,Boogie boarding,Matthew Beyrer,M,Lacerations to right foot,N,Flagler/Palm Coast News Tribune,10/28/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.28.R-Beyrer.pdf +3885,1995.10.28.R,28-Oct-95,1995,Unprovoked,Usa,Florida,Unknown,Boogie boarding,Matthew Beyrer,M,Lacerations to right foot,N,Flagler/Palm Coast News Tribune,10/28/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.28.R-Beyrer.pdf 3884,1995.10.21,21-Oct-95,1995,Unprovoked,Usa,Florida,"North Beach, St. Lucie County",Surfing,John Foley,M,Foot bitten,N,I. Nordemar,Fort Pierce Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.21-Foley.pdf 3883,1995.10.11,11-Oct-95,1995,Unprovoked,Australia,Queensland,"Pialba, Hervey Bay",Playing / standing,Lisa Mott,F,Laceration to thigh,N,Herald Sun,10/12/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.11-Mott.pdf 3882,1995.10.01,01-Oct-95,1995,Unprovoked,Usa,Florida,"Ormond Beach, Volusia County",Surfing,Stephen Massfeller,M,Right arm injured,N,Orlando Sentinel,10/2/1995,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.01-Massfeller.pdf @@ -2196,7 +2196,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3800,1994.10.05,05-Oct-94,1994,Unprovoked,Usa,Florida,"Indialantic, Brevard County",Surfing,Scott Dulmage,M,Foot bitten,N,Orlando Sentinel,10/5/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.05-ScottDulmage.pdf 3799,1994.09.26,26-Sep-94,1994,Unprovoked,Usa,South Carolina,"North Forest Beach, near Hilton Head, Beaufort County",Swimming,Lioubov Kozarinova,F,Right side of abdomen & left hand bitten,N,Atlanta Journal-Constitution,9/27/1994; Charlotte Observer,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.26-Kozarinova.pdf 3798,1994.09.21,21-Sep-94,1994,Unprovoked,Usa,Oregon,"Short Sand Beach, Oswald West State Park",Surfing,Rob MacKenzie,M,"No injury, surfboard bitten",N,R. Collier+M2079,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.21-MacKenzie_Collier.pdf -3797,1994.09.11.R,11-Sep-1994,1994,Sea Disaster,Usa,Florida,Florida Straits,Adrift on refugee raft,2 Cuban brothers,M,FATAL,Y,Sunday Herald Sun,9/11/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.11.R-CubanRefugees.pdf +3797,1994.09.11.R,11-Sep-94,1994,Sea Disaster,Usa,Florida,Florida Straits,Adrift on refugee raft,2 Cuban brothers,M,FATAL,Y,Sunday Herald Sun,9/11/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.11.R-CubanRefugees.pdf 3796,1994.09.05,05-Sep-94,1994,Unprovoked,Usa,Hawaii,Makaha Surf Beach,Jumped off rocks into white water,Rose Ann Savea,F,Left calf bitten,N,Dr. P. Bjorkman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.05-RoseAnnSavea.pdf 3795,1994.08.22,22-Aug-94,1994,Unprovoked,Japan,Kagoshima Prefecture,Tatsugo-cho,Unknown,Nagisa Yasuhara,Unknown,Survived,N,K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.08.22-Yashuhara.pdf 3794,1994.07.24,24-Jul-94,1994,Unprovoked,Brazil,Pernambuco,"Boa Viagem, Recife",Surfing,Carlos Frederico Gomes Martins,M,Left foot severed,N,C.F.G. Martins; JCOnline,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.24-Carlos_Martins.pdf @@ -2213,7 +2213,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3783,1994.05.24,24-May-94,1994,Unprovoked,Usa,Florida,"Spessard Holland Park, Melbourne Beach, Brevard County",Wading,female,F,Lower left calf & ankle lacerated,N,Tampa Tribune,5/26/1994; Bradenton Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.24-female.pdf 3782,1994.05.23,23-May-94,1994,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Wading,Jim Sellmer,M,Gash on ankle,N,Orlando Sentinel,5/24/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.23-Sellmer.pdf 3781,1994.05.15,15-May-94,1994,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Joel Tatro,M,Right knee lacerated,N,Orlando Sentinel,5/16/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.15-Tatro.pdf -3780,1994.04.16,16-Apr-1994,1994,Invalid,Usa,California,"Sunset Cliffs, San Diego, San Diego County",Unknown,Michele Von Emster,F,Not a shark attack; possibly murder. Body recovered 4-16-1994 minus severed leg,Y,R. Collier; McCormick,p.147,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.16-Emster.pdf +3780,1994.04.16,16-Apr-94,1994,Invalid,Usa,California,"Sunset Cliffs, San Diego, San Diego County",Unknown,Michele Von Emster,F,Not a shark attack; possibly murder. Body recovered 4-16-1994 minus severed leg,Y,R. Collier; McCormick,p.147,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.16-Emster.pdf 3779,1994.04.15,15-Apr-94,1994,Unprovoked,Reunion,Saint-Joseph,Lieu-dit Cayenne,Unknown,Unknown,Unknown,FATAL,Y,G. Van Grevelynghe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.15-Reunion.pdf 3778,1994.04.06,06-Apr-94,1994,Unprovoked,Bahamas,Unknown,Rum Cay,Wading,Scott Curatolo-Wagemann,M,Lower right leg bitten,N,S. Curatolo-Wagemann; SharkSurvivors.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.06-Wagemann.pdf 3777,1994.04.03,03-Apr-94,1994,Unprovoked,Usa,Florida,"Miami Beach, Dade County",Freediving for seashells,Raul Tozo,M,Left shoulder lacerated,N,Miami Herald,4/5/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.03-Tozo.pdf @@ -2230,7 +2230,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3766,1994.01.31.b,31-Jan-94,1994,Unprovoked,Brazil,Pernambuco,Piedade,Swimming,Sérgio Adriano Gomes Silva,M,Right leg bitten,N,M. Szpilman,p.139,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.b-SG.pdf 3765,1994.01.31.a,31-Jan-94,1994,Unprovoked,Usa,Hawaii,"Velzyland, north shore of O'ahu",Surfing,Jim Broach,M,FATAL,Y,G. Balazs; Allen,p.109,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.a-Broach.pdf 3764,1994.01.30,30-Jan-94,1994,Unprovoked,South africa,Eastern Cape Province,"Nahoon Beach, East London",Windsurfing,Andy Austin,M,Calf bitten,N,A. Gifford,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.30-Austin.pdf -3763,1994.01.12.R,12-Jan-1994,1994,Boat,Australia,Western Australia,Albany,Fishing,"5 m aluminum boat, occupants: Ben Turnbull, Lia & Neville Parker",Unknown,"No injury to occupants, shark bit anchor and ladder",N,Advertiser,1/12/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.12.R-Turnbull.pdf +3763,1994.01.12.R,12-Jan-94,1994,Boat,Australia,Western Australia,Albany,Fishing,"5 m aluminum boat, occupants: Ben Turnbull, Lia & Neville Parker",Unknown,"No injury to occupants, shark bit anchor and ladder",N,Advertiser,1/12/1994,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.12.R-Turnbull.pdf 3762,1994.01.09,09-Jan-94,1994,Unprovoked,Australia,Queensland,"Katana Downs Reach, Brisbane River","Swimming, after falling off towed kneeboard",Gary Cochrane,M,Hamstring bitten,N,Advertiser,"1/12/1994,p.18",http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.09-Cochrane.pdf 3761,1994.01.03,03-Jan-94,1994,Unprovoked,South africa,KwaZulu-Natal,Hibberdene,Swimming ,Ian Galbraith,M,Foot bitten,N,G. Cliff,NSB,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.03-Galbraith.pdf 3760,1994.00.00.b,Last incident of 1994 in Hong Kong,1994,Unprovoked,Unknown,Unknown,Unknown,Playing volleyball with friends,female,F,Both legs lacerated,N,J. Wong,,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.b-NV-HongKong.pdf @@ -2297,7 +2297,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3699,1992.11.25.a,25-Nov-92,1992,Unprovoked,Usa,Florida,"Brevard County, a mile north of Sebastian Inlet",Surfing,Matthew Robertson Paul,M,Forearm & hand bitten; tooth fragments of the shark were recovered from the surfer's hand,N,M. R. Paul; Orlando Sentinel,11/28/1992; Fort Pierce Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.25-Paul.pdf 3698,1992.11.23,23-Nov-92,1992,Unprovoked,Usa,Florida,Unknown,Surfing,Larry Bush,M,Right ankle bitten,N,Fort Pierce Tribune,11/24/1992 & 11/30/1992; Palm Beach Post,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.23-LarryBush.pdf 3697,1992.11.14,14-Nov-92,1992,Boat,Usa,California,"Ano Nuevo, San Mateo County",Kayaking,Ken Kelton,M,"No injury, kayak bitten",N,R. Collier,p.137,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.14-Kelton_Collier.pdf -3696,1992.11.12.R,12-Nov-1992,1992,Unprovoked,Fiji,Wakaya Island,Unknown,Scuba diving,Chad Smith,M,Left arm lacerated,N,Herald Sun,11/12/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.12.R-Smith.pdf +3696,1992.11.12.R,12-Nov-92,1992,Unprovoked,Fiji,Wakaya Island,Unknown,Scuba diving,Chad Smith,M,Left arm lacerated,N,Herald Sun,11/12/1992,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.12.R-Smith.pdf 3695,1992.11.11,11-Nov-92,1992,Unprovoked,Usa,California,"San Nicholas Island, Santa Barbara County",Scuba diving (submerged),Kenny Crane,M,Foot punctured,N,R. Collier,pp.136-137,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.11-Crane_Collier.pdf 3694,1992.11.05.b,06-Nov-92,1992,Unprovoked,Usa,Florida,"North Jetty Park, Fort Pierce, St Lucie County",Surfing,Josh Greinstein ,M,Heel bitten,N,P.Owers,Fort Pierce Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.b-Greinstein.pdf 3693,1992.11.05.a,05-Nov-92,1992,Unprovoked,Usa,Hawaii,"Kea'au Beach Park, O'ahu",Body boarding,Aaron A. Romento,M,Right leg severely lacerated FATAL,Y,Dr. P. Bjokman; Palm Beach Post,11/7/1992 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.a-Romento.pdf @@ -2430,7 +2430,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3566,1989.11.18,18-Nov-89,1989,Unprovoked,South africa,Western Cape Province,Melkbosstrand,Free diving & spearfishing,Gerjo Van Niekerk,M,FATAL,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.18-VanNiekerk.pdf 3565,1989.11.12,12-Nov-89,1989,Invalid,Usa,Hawaii,"Ehukai Beach Park, Sunset Beach, O'ahu","Wading, knocked down & swept away by large waves",Edward Malek,M,Lower porton of body recovered 3 days later. Note: rare sighting of shark made at same beach on 11-5-1989 ,Y,J. Borg,p.78; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.12-Malek.pdf 3564,1989.11.02,02-Nov-89,1989,Unprovoked,Australia,Queensland,Mermaid Waters,Swimming in canal,Kristoffer Fredriksen,M,Left ankle broken & lacerated,N,Courier-Mail,11/7/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.02-Fredriksen.pdf -3563,1989.10.29.R,29-Oct-1989,1989,Unprovoked,Australia,Northern Territory,Edith Falls,Swimming,Christine Kaesler,F,Puncture marks to right calf,N,Sunday Mail,10/29/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.29.R-Kaesler.pdf +3563,1989.10.29.R,29-Oct-89,1989,Unprovoked,Australia,Northern Territory,Edith Falls,Swimming,Christine Kaesler,F,Puncture marks to right calf,N,Sunday Mail,10/29/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.29.R-Kaesler.pdf 3562,1989.10.22,22-Oct-89,1989,Unprovoked,Australia,Tasmania,Shelly Point ,Surfing,Steven Jillet,M,"No injury, board bitten",N,Hobart Mercury,10/23/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.22-Jillet.pdf 3561,1989.10.14,14-Oct-89,1989,Invalid,Usa,Hawaii,"Kahe Point, O'ahu",Scuba diving,"Ray Mehl, Jr.",M,"Disappeared 15 minutes into shallow dive. Decapitated body minus arm found by divers the following morning, then shark appeared and consumed most of remains",Y,Washington Post,10/17/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.14-Mehl.pdf 3560,1989.10.11,11-Oct-89,1989,Unprovoked,Usa,Texas,Surfside Beach,Surfing,Jason Largent,M,Foot & leg bitten,N,Austin American Statesman,10/13/1989,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.11-Largent.pdf @@ -2798,7 +2798,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3197,1981.07.18,18-Jul-81,1981,Unprovoked,South africa,Eastern Cape Province,Nahoon,Surfing,Barry Van Der Helm,M,7 lacerations to right foot,N,B. V.D. Helm; R. Horn; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.18-vanderHelm.pdf 3196,1981.07.07,07-Jul-81,1981,Unprovoked,Usa,Florida,Carter Cay,Spearfishing,Ed Cannette,M,Left foot & ankle lacerated,N,E. Pace,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.07-NV-Cannette.pdf 3195,1981.07.01,01-Jul-81,1981,Unprovoked,South africa,KwaZulu-Natal,Clansthal,Catching sardines,John Wilson,M,Laceration to calf,N,Chronicle Telegram,7/1/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.01-Wilson.pdf -3194,1981.06.15.R,15-Jun-1981,1981,Boat,England,Unknown,Isle of Wight,Fishing,2 fishermen,M,Minor injuries from shark that leapt aboard their boat,N,The Times (London),6/15/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.15.R-Isle-of-Wight.pdf +3194,1981.06.15.R,15-Jun-81,1981,Boat,England,Unknown,Isle of Wight,Fishing,2 fishermen,M,Minor injuries from shark that leapt aboard their boat,N,The Times (London),6/15/1981,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.15.R-Isle-of-Wight.pdf 3193,1981.06.12,12-Jun-81,1981,Invalid,Usa,Hawaii,"Honoli'i Pali, Hilo Bay ('Alae Point), Hawai'i",Unknown,Preston D. Soley,M,"Probable drowning, 1/3 of shark-multilated body recovered",Y,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.12-Soley.pdf 3192,1981.05.24,24-May-81,1981,Unprovoked,Usa,Hawaii,"Ha'ena Beach Park, Kaua'i","Scuba diving, reportedly also spearfishing",Roger B. Garletts,M,"FATAL, disappeared, dive gear & shredded tooth-marked wetsuit were recovered",Y,J. Borg,p.87; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.24-Garletts.pdf 3191,1981.05.23,23-May-81,1981,Unprovoked,South korea,Chungnam,Wae-yeon Island,Shell diving,Pak Kyong-sun ,F,FATAL,Y,Y. Choi & K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.23-Pak-Kyong-sun.pdf @@ -2830,7 +2830,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3165,1980.11.11.,11-Nov-80,1980,Unprovoked,Brazil,Pernambuco,Piedade,Swimming,Ibson Gomes Vieira ,M,FATAL,Y,JC Online,6/25/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.11-Vieira.pdf 3164,1980.10.27,27-Oct-80,1980,Unprovoked,Usa,Oregon,Off Umpqua River,Surfing,Christopher Cowan,M,Thigh lacerated,N,R.N. Lea & D. Miller; R. Collier,pp.83-84,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.27-Cowan_Collier.pdf 3163,1980.10.17,17-Oct-80,1980,Unprovoked,Usa,California,"Moonstone Beach, Humboldt County",Surfing,Curt Vikan,M,No injury,N,R. N. Lea & D. Miller; R. Collier,pp.82-83,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.17-Vikan_Collier.pdf -3162,1980.08.22.R,22-Aug-1980,1980,Unprovoked,Unknown,Unknown,Unknown,Diving in tuna net,Gerald Correria,M,FATAL,Y,Valley Independent,8/22/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.22.R-Correria.pdf +3162,1980.08.22.R,22-Aug-80,1980,Unprovoked,Unknown,Unknown,Unknown,Diving in tuna net,Gerald Correria,M,FATAL,Y,Valley Independent,8/22/1980,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.22.R-Correria.pdf 3161,1980.08.10,10-Aug-80,1980,Unprovoked,Usa,North Carolina,"Ocean Isle, Brunswick County",Wading,Susan Waters,F,Bitten behind knee & lower leg,N,Chronicle Telegram,8/11/1980; F. Schwartz,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.10-Waters.pdf 3160,1980.08.04,04-Aug-80,1980,Unprovoked,Usa,Hawaii,"Puamana, Lahaina, Maui",Resting on body board,Mark Skidgel,M,Torso bitten,N,J. Borg,p.75; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.04-Skidgel.pdf 3159,1980.07.26,26-Jul-80,1980,Unprovoked,Spain,Canary Islands,"San Juan de la Rambla, Tenerife",Skin diving,Fuentes Gonzalez Escualo ,M,Thigh injured,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.26-Escualo.pdf @@ -2889,9 +2889,9 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3106,1978.10.21,21-Oct-78,1978,Invalid,South africa,KwaZulu-Natal,"Fishing camp, St. Lucia Estuary",Fishing,Mr. Kuppasamy,M,Scavenged or FATAL (may have involved foul play),Y,Natal Parks Board,J. Daniel; W. Pople,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.10.21-Kuppasamy.pdf 3105,1978.09.27,27-Sep-78,1978,Unprovoked,South africa,Western Cape Province,"Miller's Point, False Bay",Spearfishing,Erik Lombard,M,"No injury, shark took his catch, then towed & pushed diver through the water ",N,E. Lombard,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.27-Lombard.pdf 3104,1978.09.16,16-Sep-78,1978,Unprovoked,Italy,Tyrrhenian Sea,Capo d'Anzio,Diving,Fabrizio Marini,M,No injury,N,A. De Maddalena; Marini (1989),,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.16-Marini.pdf -3103,1978.09.02.R,02-Sep-1978,1978,Unprovoked,Australia,Tasmania,"Cape Pillar, Storm Bay",Scuba diving for abalone,Jim Scott,M,Several broken ribs,N,Chronicle Telegram,9/2/1978 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.02.R-Scott.pdf +3103,1978.09.02.R,02-Sep-78,1978,Unprovoked,Australia,Tasmania,"Cape Pillar, Storm Bay",Scuba diving for abalone,Jim Scott,M,Several broken ribs,N,Chronicle Telegram,9/2/1978 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.02.R-Scott.pdf 3102,1978.08.05,05-Aug-78,1978,Unprovoked,Usa,California,"Pajaro Dunes, Santa Cruz County",Wading,Pat DuNah,M,Punctures on leg (minor injury),N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.05-DuNah_Collier.pdf -3101,1978.08.01.R,01-Aug-1978,1978,Unprovoked,Usa,Florida,Florida Straits,Floating on inner tube raft,Ramon Cordoba,M,Minor injury to ankle,N,Miami News,8/1/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.01.R-Cordoba.pdf +3101,1978.08.01.R,01-Aug-78,1978,Unprovoked,Usa,Florida,Florida Straits,Floating on inner tube raft,Ramon Cordoba,M,Minor injury to ankle,N,Miami News,8/1/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.01.R-Cordoba.pdf 3100,1978.07.27,27-Jul-78,1978,Sea Disaster,Usa,South Carolina,Unknown,"Explosion destroyed 28' boat, survivors in the water ",Sam Boger,M,"No injury, his foot was bumped by a shark biting the body of a passenger that had drowned.",N,NY Times,7/28/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.27-Boger.pdf 3099,1978.07.19,19-Jul-78,1978,Provoked,Usa,California,"Newport Beach, Orange County",Fishing,Harry Griffet,M,Laceration to leg by hooked shark PROVOKED INCIDENT,N,Fresno Bee,7/19/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.19-Griffet.pdf 3098,1978.06.21.b,21-Jun-78,1978,Unprovoked,Usa,Florida,"South of Neptune Beach, Duval County",Surfing,Fred Dean Hunt,M,Foot bitten,N,Bryan Times,6/23/1978,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.b-Hunt.pdf @@ -2957,7 +2957,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 3038,1976.07.12,12-Jul-76,1976,Unprovoked,Usa,Florida,St. Lucie County,Spearfishing,Bill Loughlin,M,"""lost part of a finger""",N,News-Tribune,7/27/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.12-Loughlin.pdf 3037,1976.06.23,23-Jun-76,1976,Unprovoked,Usa,Florida,"St. Andrews State Park, Bay County",Skindiving,Paul Maurer,M,Lacerations to right arm,N,Albuquerque Journal,6/25/1976 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.23-Maurer.pdf 3036,1976.06.10,10-Jun-76,1976,Unprovoked,Usa,Hawaii,"Kama'ole Beach, Park No. 1, Kihei, Maui",Swimming,Donald Gard,M,Leg & foot bitten,N,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.10-Gard.pdf -3035,1976.06.02.R,02-Jun-1976,1976,Provoked,Italy,Reggio Calabria Province,Bovalino,Fishing,Francisco Pelle,M,Shark rammed boat PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.02.R-Pelle.pdf +3035,1976.06.02.R,02-Jun-76,1976,Provoked,Italy,Reggio Calabria Province,Bovalino,Fishing,Francisco Pelle,M,Shark rammed boat PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.02.R-Pelle.pdf 3034,1976.06.01,01-Jun-76,1976,Boat,Australia,Queensland,Off Stradbroke Island,Sitting in bow of her father's 5 m boat,Debbie McMillan,F,"Shark jumped in boat, hitting her in the face & knocking her unconscious",N,A. Sharpe,p.103,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.01-McMillan.pdf 3033,1976.05.02,02-May-76,1976,Boat,South africa,Western Cape Province,40 km off Cape Point,Competing in a light tackle game fishing,"6 m skiboat, occupants: Terry McManus, Dan Clark and Blackie Swart",Unknown,"Shark following hooked fish, rammed & holed boat",N,The Argus,5/3/1976,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.05.02-McManus-boat.pdf 3032,1976.04.28,28-Apr-76,1976,Invalid,Usa,Texas,Galveston Island,Unknown,Unknown,Unknown,"Possible drowning victim, remains retrieved from shark caught by fishermen on 28-Apr-1976",Y,NY Times 4/30/1976,p.14,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.04.28-HumanRemains-Galveston.pdf @@ -2999,7 +2999,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2996,1975.06.23.b,23-Jun-75,1975,Unprovoked,Usa,South Carolina,"Windy Hill, near Myrtle Beach, Horry County",Swimming ,Jim Krents,M,Lacerations to right foot,N,Morning Herald (Uniontown,PA),http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.b-Krents.pdf 2995,1975.06.23.a,23-Jun-75,1975,Unprovoked,Usa,South Carolina,"North Myrtle Beach, Horry County",Standing,Donna Hutson,F,Hand & wrist bitten,N,Morning Herald (Uniontown,PA),http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.a-Hutson.pdf 2994,1975.06.15,15-Jun-75,1975,Unprovoked,Usa,Alabama,5 miles off the coast,Swimming near his boat,William Wayne Daniels,M,Left leg bitten,N,The News,6/16/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.15-Daniels.pdf -2993,1975.06.02.R,02-Jun-1975,1975,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Surfing,Jeffrey Hanrahan,M,"No injury, board bumped",N,Sarasota Herald Tribune,6/2/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.02.R-Hanrahan.pdf +2993,1975.06.02.R,02-Jun-75,1975,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Surfing,Jeffrey Hanrahan,M,"No injury, board bumped",N,Sarasota Herald Tribune,6/2/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.02.R-Hanrahan.pdf 2992,1975.06.00.c,Jun-75,1975,Provoked,Usa,Florida," New Smyrna Beach, Volusia County",Unknown,Unknown,M,Slightly injured when he stepped on a shark PROVOKED INCIDENT,N,undated press clipping - see 1975.06.00.b,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.00.c-stepped-on-shark.pdf 2991,1975.05.25,25-May-75,1975,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Edward Bassett,M,Right foot bitten,N,Sumter Daily Item,7/9/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.25-Bassett.pdf 2990,1975.05.20,20-May-75,1975,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Bathing,Cindy Jones,F,Leg bitten,N,Pacifc Stars and Stripes,6/3/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.20-Jones.pdf @@ -3013,7 +3013,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2982,1975.03.09,09-Mar-75,1975,Provoked,South africa,Western Cape Province,"Boggomsbaai, Mossel Bay",Attempting to drag hooked shark ashore by its tail,Frans Swanepoel,M,Left leg bitten PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.09-Swanepoel.pdf 2981,1975.03.00,Mar-75,1975,Sea Disaster,Bangladesh,Ganges-Brahmaputra delta,Unknown,Ferry capsized,Unknown,Unknown,"FATAL, of 190 passengers & crew thrown into the water, 50 people were said to have been killed by sharks",Y,M. McDiarmid,p.67,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.00-Bangladesh.pdf 2980,1975.02.23,23-Feb-75,1975,Unprovoked,South africa,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Surfing,Bretton Russell Jones,M,Foot severed,N,S. Jooste; B.R. Jones,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.23-Jones.pdf -2979,1975.02.14.R,14-Feb-1975,1975,Boat,South africa,Western Cape Province,Plettenberg Bay,Unknown,"hobiecat, occupants: Judy Lambert & a friend",Unknown,Shark bit rudder & hull,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.14-Hobiecat.pdf +2979,1975.02.14.R,14-Feb-75,1975,Boat,South africa,Western Cape Province,Plettenberg Bay,Unknown,"hobiecat, occupants: Judy Lambert & a friend",Unknown,Shark bit rudder & hull,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.14-Hobiecat.pdf 2978,1975.02.10,10-Feb-75,1975,Unprovoked,Australia,South Australia,(Point Sinclair) Penong,Swimming underwater from crayfish cage to a fishing bait,Wade Shipard,M,Right leg severed FATAL,Y, A. Sharpe,pp.124-125; Sydney Morning Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.10-Shipard.pdf 2977,1975.02.09,09-Feb-75,1975,Unprovoked,Australia,Victoria,Anglesea,Crayfishing,John Lear,M,Puncture wounds to right shoulder,N,The Age,2/11/1975,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.09-Lear.pdf 2976,1975.02.07,07-Feb-75,1975,Unprovoked,Australia,Queensland,Currumbin Rock,Unknown,M. Worman,M,Survived,N,J. Green,p. 36,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.07-Worman.pdf @@ -3041,7 +3041,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2954,1974.07.02,02-Jul-74,1974,Sea Disaster,Usa,Florida ,Gulf of Mexico,Adrift after the sinking of the motor yacht Princess Dianne,Billy Horne,M,Arm bitten FATAL,Y,Wilmington Star,7/3/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.02-BillyHorne.pdf 2953,1974.06.20,20-Jun-74,1974,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Swimming,Olive Heaton,F,Lacerations to hip and leg,N,Daytona Beach Morning Journal,6/21/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.06.20-Heaton.pdf 2952,1974.05.26,26-May-74,1974,Unprovoked,Usa,California,"Tomales Point, Marin County",Free diving (but on surface),Leroy Hancock,M,Leg bitten,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.05.26-Hancock_Collier.pdf -2951,1974.04.25.R,25-Apr-1974,1974,Sea Disaster,Unknown,Unknown,Unknown,Fishing boat swamped in a storm,5 men,M,FATAL,Y,Fresno Bee Republican,4/25/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.25.R-Brazil.pdf +2951,1974.04.25.R,25-Apr-74,1974,Sea Disaster,Unknown,Unknown,Unknown,Fishing boat swamped in a storm,5 men,M,FATAL,Y,Fresno Bee Republican,4/25/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.25.R-Brazil.pdf 2950,1974.04.20,20-Apr-74,1974,Unprovoked,South africa,Western Cape Province,Arniston,Spearfishing,Andre Hartman,M,Left knee lacerated,N,A. Hartman,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.20-Hartman.pdf 2949,1974.04.14,14-Apr-74,1974,Unprovoked,South africa,Eastern Cape Province,Glengariff,Standing,Simon Parkin,M,Lower right leg lacerated,N,S. Parkin,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.14-Parkin.pdf 2948,1974.04.12,12-Apr-74,1974,Unprovoked,Usa,Florida,"Haulover Beach, Miami-Dade County",Swimming,Stacie Alexander,F,Foot bitten,N,Chicago Tribune,4/13/1974,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.12-Alexander.pdf @@ -3061,7 +3061,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2934,1974.00.00.a,1974,1974,Unprovoked,Croatia,Primorje-Gorski Kotar County ,Preluka Harbour,Unknown,2 Czech tourists,Unknown,FATAL,Y,A. DeMaddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.a-2Tourists.pdf 2933,1973.12.25,25-Dec-73,1973,Unprovoked,Mozambique,Gaza,Xai Xai,Spearfishing,Christiaan Weissig,M,"Right leg severed at knee, abrasion on left ankle",N,J. Bass; M Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.25-Weissig.pdf 2932,1973.12.21.b,21-Dec-73,1973,Unprovoked,Mozambique,Gaza,Xai Xai,Swimming ,Hans Reiner,M,FATAL,Y,Natal Witness Newspaper,,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.21-Reiner.pdf -2931,1973.12.19.R,18-Dec-1973,1973,Unprovoked,Philippines,Luzon,Unknown,Swimming,Ron Arney,M,FATAL,Y,Washington Post,12/19/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.19.R-Arney.pdf +2931,1973.12.19.R,18-Dec-73,1973,Unprovoked,Philippines,Luzon,Unknown,Swimming,Ron Arney,M,FATAL,Y,Washington Post,12/19/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.19.R-Arney.pdf 2930,1973.12.18,18-Dec-73,1973,Unprovoked,Usa,Hawaii,"Kalama Beach, Kihei, Maui",Swimming,Gary W. Floyd,M,Leg bitten,N,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.18-Floyd.pdf 2929,1973.12.00,Dec-73,1973,Unprovoked,Mexico,Guerrero,Acapulco Bay,Swimming alongside yacht Mexico Fiesta,American male,M,FATAL,Y,A.Resciniti,pp.107-108,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.00-MexicanFiesta.pdf 2928,1973.11.25,25-Nov-73,1973,Unprovoked,Australia,Western Australia,Swan River,Unknown,Copley,Unknown,Survived,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.25-Copley.pdf @@ -3069,7 +3069,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2926,1973.11.03,03-Nov-73,1973,Unprovoked,Australia,Queensland,Gin Arm Creek,Unknown,a Solomon Islander,Unknown,Knee lacerated,N,R. McKenzie,Sunday Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.03-SolomonIslander.pdf 2925,1973.09.29,29-Sep-73,1973,Sea Disaster,South africa,KwaZulu-Natal,Mission Rocks,Being pulled to shore from wreck of 25-ton fishing vessel Alan S,male,Unknown,"FATAL, thigh bitten ",Y,Natal Mercury,10/5/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.29-AlanS.pdf 2924,1973.09.14,14-Sep-73,1973,Unprovoked,Bahamas,Grand Bahama Island,"Memory Rock, 18 miles from NW end of the Island","Free diving, Spearfishing",Kevin G. Schlusemeyer,M,Left hand & forearm lacerated,N,M.Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.14-Schlusemeyer.pdf -2923,1973.09.10.R,10-Sep-1973,1973,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom Swimming,Tsang Kai-shing,M,FATAL,Y,Charleston Daily Mail,9/10/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.10.R-Tsang.pdf +2923,1973.09.10.R,10-Sep-73,1973,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom Swimming,Tsang Kai-shing,M,FATAL,Y,Charleston Daily Mail,9/10/1973,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.10.R-Tsang.pdf 2922,1973.09.09,09-Sep-73,1973,Unprovoked,Mexico,Baja California,Guadalupe Island,"Free diving, Spearfishing",Al Schneppershoff,M,"FATAL, leg bitten ",Y,Washington Post,9/12/1973; J. McCosker & R.N. Lea,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.09-Schneppershoff.pdf 2921,1973.09.00,Sep-73,1973,Unprovoked,Egypt,Red Sea,Southern end of the Sinai Peninsula,Unknown,Soldier,M,Massive wound on right thigh with femur exposed,N,R. Davis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.00-NV-RedSea.pdf 2920,1973.08.27,27-Aug-73,1973,Unprovoked,Australia,Queensland,Palm Cove Beach,Unknown,G. Cole,Unknown,Unknown,UNKNOWN,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.27-Cole.pdf @@ -3097,15 +3097,15 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2898,1972.10.21,21-Oct-72,1972,Unprovoked,Australia,New South Wales,Tabourie Beach,Surfing,Terry Cooper,M,Lacerations to thigh & buttocks,N,The Age,10/23/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.21-Cooper.pdf 2897,1972.10.14.b,14-Oct-72,1972,Unprovoked,Usa,US Virgin Islands,"St. Croix, Cane Bay",Scuba diving,Rodney Temple,M,"FATAL, body not recovered",Y,H.D. Baldridge,pp.177 & 185,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.b-Temple.pdf 2896,1972.10.14.a,14-Oct-72,1972,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Surfing,Kenneth Hiles,M,Survived,N,Daytona Beach Morning Journal,10/18/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.a-Hiles.pdf -2895,1972.10.10.R,10-Oct-1972,1972,Unprovoked,New zealand,North Island,Wanganui,Swimming,Barry Kumara,M,"No injury, leg of jeans torn off",N,European Stars and Stripes,10/10/1973 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.10.R-Kumara.pdf +2895,1972.10.10.R,10-Oct-72,1972,Unprovoked,New zealand,North Island,Wanganui,Swimming,Barry Kumara,M,"No injury, leg of jeans torn off",N,European Stars and Stripes,10/10/1973 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.10.R-Kumara.pdf 2894,1972.09.09,09-Sep-72,1972,Unprovoked,Usa,California,"Point Sur, Monterey County",Surfing,Hans Kretschmer,M,Legs & board bitten,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.09-Kretschmer_Collier.pdf 2893,1972.09.04,04-Sep-72,1972,Invalid,Mozambique,Maputo Province,Inhaca Island,Swimming,Yvonne Vladislavick,F,Feet injured,N,Daily News,9/6/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.04-Vladislavick.pdf 2892,1972.08.29,29-Aug-72,1972,Unprovoked,Usa,Florida,"Crescent Beach, St. Johns County",Surfing,Mark Van Leer,M,Left calf bitten,N,Ocala Star Banner,8/30/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.29-VanLeer.pdf 2891,1972.08.17,17-Aug-72,1972,Unprovoked,Usa,Hawaii,"Waimanu, Honoka'a, Hawai'i",Spearfishing,Eric Fotherby,M,Forearm bitten,N,J. Borg,p.74; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.17-Fotherby.pdf 2890,1972.08.08,08-Aug-72,1972,Unprovoked,Australia,Tasmania,Tasman Island,Diving for abalone,Gordon Johnson,M,Left foot bitten,N,The Age,8/10/1972; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.08-Johnson.pdf 2889,1972.07.05,05-Jul-72,1972,Invalid,Usa,California,"Laguna Beach, Orange County",Diving,Unknown,Unknown,Sharks reportedly bit legs & fins ,N,Unconfirmed Report,,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.07.05-NV-California.pdf -2888,1972.06.26.b,26-Jun-1972,1972,Unprovoked,Australia,Queensland,Pancake Creek,Unknown,Kenneth Murchison,M,FATAL,Y,Canberra Times,6/26/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.b-Murchison.pdf -2887,1972.06.26.a,26-Jun-1972,1972,Unprovoked,Australia,Queensland,Pancake Creek,Unknown,Ronald Kelly,M,FATAL,Y,Canberra Times,6/26/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.a-Kelly.pdf +2888,1972.06.26.b,26-Jun-72,1972,Unprovoked,Australia,Queensland,Pancake Creek,Unknown,Kenneth Murchison,M,FATAL,Y,Canberra Times,6/26/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.b-Murchison.pdf +2887,1972.06.26.a,26-Jun-72,1972,Unprovoked,Australia,Queensland,Pancake Creek,Unknown,Ronald Kelly,M,FATAL,Y,Canberra Times,6/26/1972,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.a-Kelly.pdf 2886,1972.06.10,10-Jun-72,1972,Unprovoked,Usa,Florida,"Cocoa Beach, Brevard County",Surfing,Richard Salick,M,Buttocks bitten,N,P. Salick,,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.10-Salick.pdf 2885,1972.05.28,28-May-72,1972,Unprovoked,Usa,California,"Bird Rock, near Tomales Point, Marin County",Free diving for abalone,Helmut Himmrich,M,Bitten on legs & buttock,N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.28-Himmrich_Collier.pdf 2884,1972.05.06,06-May-72,1972,Unprovoked,French polynesia,Tuamotus,Ahé Atoll,Spearfishing,B.T.,M,Thigh bitten,N,M. Fouques,et.al,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.06-BT.pdf @@ -3124,7 +3124,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2871,1971.12.23,23-Dec-71,1971,Unprovoked,Australia,New South Wales,Smokey Cape,Unknown,G. Byron,Unknown,Survived,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.23-Byron.pdf 2870,1971.12.16,16-Dec-71,1971,Unprovoked,South africa,Western Cape Province,"Fish Hoek, False Bay",Swimming,Cheryl Teague,F,Right forearm bitten,N,C. Teague, M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.16-Teague.pdf 2869,1971.12.05,05-Dec-71,1971,Unprovoked,Australia,Queensland,Gladstone,Unknown,Gregory Carroll,M,FATAL,Y,The Age,12/9/1971,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.05-Carroll.pdf -2868,1971.11.27,25-Nov-1971,1971,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom Swimming,Chan Sze-king,M,"Left leg severely bitten, surgically amputated",N,The Advocate,11/25/1971; Post Crescent,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.27-Tracy.pdf +2868,1971.11.27,25-Nov-71,1971,Unprovoked,Hong kong,Mirs Bay ,Unknown,Freedom Swimming,Chan Sze-king,M,"Left leg severely bitten, surgically amputated",N,The Advocate,11/25/1971; Post Crescent,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.27-Tracy.pdf 2867,1971.11.25.R,27-Oct-71,1971,Provoked,Australia,New South Wales,"Marineland, Sydney",Unknown,K. Tracy,Unknown,PROVOKED INCIDENT,N,J. Green,p.36,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.25.R-Chan.pdf 2866,1971.10.23,23-Oct-71,1971,Unprovoked,Usa,Florida,"Ft. Pierce, St Lucie County",Surfing,"Walter E. Milford, Jr.",M,"Right shoulder, arm & hand bitten",N,News Tribune,10/25/1971 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.23-Milford.pdf 2865,1971.10.14,14-Oct-71,1971,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Swimming,Werner Bayer,M,Wrist & hand lacerated,N,J. Bass,,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.14-Bayer.pdf @@ -3137,7 +3137,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2858,1971.07.19,19-Jul-71,1971,Unprovoked,Usa,California,"Point Purisima, Santa Barbara County",Hookah diving (submerged),Kenneth Gray,M,"Major injuries to head, buttocks & back",N,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.19-Gray_Collier.pdf 2857,1971.06.30,30-Jun-71,1971,Unprovoked,South africa,Western Cape Province,Mossel Bay,Surfing,Gideon Scheltema,M,Leg & surfboard bitten,N,G. Scheltema,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.30-Scheltema.pdf 2856,1971.06.01,01-Jun-71,1971,Unprovoked,British isles,South Devon,Beesands,Scuba diving,Jimmy Johnson,M,"No injury, said to have been attacked by shark but drove it away with a lobster hook",N,J. Steel (1989),,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.01-Johnson.pdf -2855,1971.04.16R,16-Apr-1971,1971,Unprovoked,Kenya,Coast Province,Watamu,Swimming,a German tourist,M,Right foot bitten,N,M. v. Schoor,,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.16-Watamu.pdf +2855,1971.04.16R,16-Apr-71,1971,Unprovoked,Kenya,Coast Province,Watamu,Swimming,a German tourist,M,Right foot bitten,N,M. v. Schoor,,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.16-Watamu.pdf 2854,1971.04.11,11-Apr-71,1971,Unprovoked,South africa,Western Cape Province,Buffels Bay,Swimming,Theo Klein,M,"FATAL, multiple bites ",Y,J. Wallace,ORI; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.11-TheoKlein.pdf 2853,1971.04.06,06-Apr-71,1971,Unprovoked,Mexico,Guerrero,"Copacabana Beach, Acapulco",Surfing,Jimmy Rowe,M,"FATAL, left thigh bitten ",Y,A.Resciniti,p.109,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.06-Rowe.pdf 2852,1971.04.05.b,05-Apr-71,1971,Unprovoked,Unknown,Unknown,Unknown,Unknown,Alberto Mayora ,M,"FATAL, body not recovered",Y,H.D. Baldridge (1994) SAF Case #1646,,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.b-NV-A-Mayora.pdf @@ -3180,7 +3180,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2815,1970.01.23.a,23-Jan-70,1970,Unprovoked,Mozambique,Limpopo River,"Gijana, 150 km inland",Swimming,Elissane Mobunda,M,Leg severed at knee,N,Natal Daily News,2/4/1970; D. Davies,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.a-Mobunda.pdf 2814,1970.01.16, 16-Jan-1970,1970,Sea Disaster,Egypt,Red Sea,A few miles south of Port Suez,Air disaster,pilot of Israeli skyhawk,M,FATAL,Y,The Progress,1/17/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.16-IsraeliPilot.pdf 2813,1970.01.10,10-Jan-70,1970,Unprovoked,Mexico,Guerrero,Acapulco,Swimming,Jack Kardell,M,Leg bitten,N,A. Resciniti,p.110,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.10-Kardell.pdf -2812,1970.01.09.R,09-Jan-1970,1970,Unprovoked,England,Devon,Teignmouth,Attempted to return injured shark to the sea,a fisherman,M,Leg bitten,N,Reading Eagle,1/9/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.09.R-England.pdf +2812,1970.01.09.R,09-Jan-70,1970,Unprovoked,England,Devon,Teignmouth,Attempted to return injured shark to the sea,a fisherman,M,Leg bitten,N,Reading Eagle,1/9/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.09.R-England.pdf 2811,1970.01.00, Jan-1970,1970,Unprovoked,Papua new guinea,New Ireland Province,Unknown,Freediving,Mosley,M,Lacerations to back,N,Brainerd Daily Dispatch,1/13/1970,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.00-NV-Mosley.pdf 2810,1970.00.00.h,1970s,1970,Unprovoked,Sri lanka,Western Province,Colombo Harbor,Spearfishing / freediving,Hiran Wickremartne,M,Swim fins badly torn by the shark's teeth,N,R. I. DeSilva,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.h-Wickremaratne.pdf 2809,1970.00.00.g,Late 1970s,1970,Unprovoked,Spain,Canary Islands,"Icod de los Vinos, Tenerife",Spearfishing,Unknown,M,Minor injury,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.g-Tenerife.pdf @@ -3214,7 +3214,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2781,1969.04.19,19-Aug-69,1969,Provoked,Usa,Florida,"Marathon, Monroe County",Fishing,Jack Horner,M,Laceration to foot from dead shark PROVOKED INCIDENT,N,Tri-City Herald,4/21/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.19-Horner.pdf 2780,1969.03.25,25-Mar-69,1969,Provoked,Australia,New South Wales,Newcastle,Unknown,William Hill,M,Foot lacerated. Recorded as PROVOKED INCIDENT,N,H.D.Baldridge (1994) SAF Case #1612,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.25-NV-WilliamHill.pdf 2779,1969.03.09,09-Mar-69,1969,Unprovoked,Usa,Hawaii,"Makaha, O'ahu",Surfing,Licius Lee,M,Leg & surfboard bitten,N,J. Borg,p.73; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.09-Lee.pdf -2778,1969.02.17.R,17-Feb-1969,1969,Provoked,Australia,Tasmania,Taroona,Fishing,George Pacey,M,Lacerations to hand from hooked shark PROVOKED INCIDENT,N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.17.R-Pacey.pdf +2778,1969.02.17.R,17-Feb-69,1969,Provoked,Australia,Tasmania,Taroona,Fishing,George Pacey,M,Lacerations to hand from hooked shark PROVOKED INCIDENT,N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.17.R-Pacey.pdf 2777,1969.02.00,Feb-69,1969,Invalid,Australia,Queensland,Cooktown,Hard hat diving,Elin Anderson,M,No details,UNKNOWN,H.D.Baldridge (1994) SAF Case #1591,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.00-NV-ElinAnderson.pdf 2776,1969.01.27,27-Jan-69,1969,Unprovoked,Australia,New South Wales,Beecroft Head,Freediving,Kevin Deacon,M,Abrasions and lacerations to lower right leg,N,H.D.Baldridge (1994) SAF Case #1560,,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.27-Deacon.pdf 2775,1969.01.00,Jan-69,1969,Unprovoked,Australia,Victoria,Port MacDonnel,Unknown,W.D. Simpson,M,Minor injury ,N,H.D.Baldridge (1994),SAF Case #1594,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.00-Simpson.pdf @@ -3250,7 +3250,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2745,1968.04.29,29-Apr-68,1968,Invalid,Usa,Florida,"Fort Lauderdale, Broward County",Wading,Frank Carrell,M,Foot severely injured,N,News Journal,5/1/1968,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.29-Carrell.pdf 2744,1968.04.20,20-Apr-68,1968,Unprovoked,Usa,Florida,"Palm Beach Shores, Riviera Beach, Singer Island, Palm Beach County",Unknown,Steven Samples,M,"Buttock, both legs & arm bitten",N,M. Vorenberg,GSAF; R. Skocik,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.20-Samples.pdf 2743,1968.04.15,15-Apr-68,1968,Unprovoked,Australia,New South Wales,South Coast,"Diving. Shark “swallowed’ his hand, so he threw his other around the shark and went “shark-back riding” for 30 yards until the shark opened its jaws",Rodney Castle,M,Hand lacerated,N,Sydney Morning Herald,4/28/1968 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.15-Castle.pdf -2742,1968.04.11.R,11-Apr-1968,1968,Unprovoked,Papua new guinea,Gulf Province,Orokolo Bay,Swimming,Hukolapa Laiokeke,M,FATAL Laceration to chest,Y,The Age,4/11/1968,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.11.R-Laiokeke.pdf +2742,1968.04.11.R,11-Apr-68,1968,Unprovoked,Papua new guinea,Gulf Province,Orokolo Bay,Swimming,Hukolapa Laiokeke,M,FATAL Laceration to chest,Y,The Age,4/11/1968,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.11.R-Laiokeke.pdf 2741,1968.04.07,07-Apr-68,1968,Provoked,Australia,New South Wales,Stockton Bight,Unknown,Ray Weaver,M,Foot lacerated Recorded as PROVOKED INCIDENT,N,J. Green,p.36; H. D. Baldridge (1994) SAF Case #1528,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.07-Weaver.pdf 2740,1968.03.25,25-Mar-68,1968,Unprovoked,South africa,KwaZulu-Natal,Richards Bay,Wading & pushing dinghy toward the shallows,Almon Mtiyane,M,Left thigh lacerated,N,J. Bass,H.A. Jones,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.25-Mtiyane.pdf 2739,1968.03.10,10-Mar-68,1968,Unprovoked,Usa,Florida,"Jensen Beach, Martin County",Surfing,Jan Icyda,M,Foot lacerated,N,H.D. Baldridge (1994) SAF Case #1548,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.10-Icyda.pdf @@ -3266,7 +3266,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2729,1968.00.00.b,1968,1968,Invalid,Usa,Florida,"Key West, Monroe County",Diving,Unknown,Unknown,Recovered,N,Unverified,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.b-NV-KeyWestDiver.pdf 2728,1968.00.00.a,1968,1968,Invalid,Usa,Florida,"Jensen Beach, Martin County",Surfing,Unknown,Unknown,Unknown,UNKNOWN,Unverified,,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.a-NV-JensenBeach.pdf 2727,1967.12.30,30-Dec-67,1967,Unprovoked,South africa,Western Cape Province,Mossel Bay,Surfing,Brian Pearson,M,Right ankle & foot bitten,N,B. Pearson,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.30-Pearson.pdf -2726,1967.12.21.R,21-Dec-1967,1967,Invalid,Papua new guinea,Central Province,Port Moresby,Spearfishing,Bob Valentine,M,No injury,N,H.D. Baldridge (1994) ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.21.R-Valentine.pdf +2726,1967.12.21.R,21-Dec-67,1967,Invalid,Papua new guinea,Central Province,Port Moresby,Spearfishing,Bob Valentine,M,No injury,N,H.D. Baldridge (1994) ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.21.R-Valentine.pdf 2725,1967.12.18,18-Dec-67,1967,Unprovoked,Unknown,Unknown,Unknown,Unknown,Tera Tetapana,M,Arm lacerated,N,H.D.Baldridge (1994) SAF Case #1532,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.18-NV-Tetapana.pdf 2724,1967.12.17,17-Dec-67,1967,Unprovoked,Australia,Victoria,"Cheviot Beach, Portsea, Port Phillip Bay",Swimming,Prime Minister Harold Holt,M,"FATAL, presumed taken by a shark, body not recovered",Y,H. Edwards,p.137-138,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.17-PrimeMinister.pdf 2723,1967.12.14,14-Dec-67,1967,Provoked,Unknown,Unknown,Unknown,Unknown,Joe Stinson,M,"Head, shoulder, arm lacerated. Recorded as PROVOKED INCIDENT",N,H.D.Baldridge (1994) SAF Case #1566,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.14-NV-Stinson.pdf @@ -3275,7 +3275,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2720,1967.11.15,15-Nov-67,1967,Provoked,Unknown,Unknown,Unknown,Freediving,Stephen Wiltshire,M,Hand lacerated by speared shark PROVOKED INCIDENT,N,H.D.Baldridge (1994) SAF Case #1537,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.15-NV-Wiltshire.pdf 2719,1967.11.04,04-Nov-67,1967,Sea Disaster,Philippines,Rombion Province,Off Sibuyan Island,Sinking of the M/V Mindoro during a typhoon,Unknown,Unknown,Passengers taken by sharks,Y,Canberra Times,11/9/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.04-Mindoro.pdf 2718,1967.11.00,Nov-67,1967,Invalid,South africa,KwaZulu-Natal,Brighton Beach,Unknown,female,F,"Bones and brightly colored bangles recovered 3.35 m, 145.5-kg tiger shark’s gut ",Y,A. Heydorn,ORI,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.00-BrightonBeach.pdf -2717,1967.10.26.R,26-Oct-1967,1967,Unprovoked,Mexico,Veracruz,Veracruz,Swimming,"""a youth""",Unknown,FATAL,Y,Chicago Tribune,10/27/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.26.R-Veracruz.pdf +2717,1967.10.26.R,26-Oct-67,1967,Unprovoked,Mexico,Veracruz,Veracruz,Swimming,"""a youth""",Unknown,FATAL,Y,Chicago Tribune,10/27/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.26.R-Veracruz.pdf 2716,1967.10.17,17-Oct-67,1967,Unprovoked,Usa,Florida,"McArthur Beach, Singer Island, Palm Beach Shores",Standing on sandbar,Peter J. White,M,Left foot bitten,N,M. Vorenberg,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.17-White.pdf 2715,1967.10.00,Oct-67,1967,Unprovoked,Unknown,Unknown,Unknown,Swimming,Toetuu Hopoi,M,Arm & leg bitten,N,H.D.Baldridge (1994) SAF Case #1480,,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.00-NV-Hopoi.pdf 2714,1967.09.20,20-Sep-67,1967,Invalid,Usa,Hawaii,"Kailua Bay, O'ahu",Boat capsized between O'ahu & Molokai,male,M,Remains found in a 3.4 m (11') tiger shark. Probable drowning & scavenging,Y,J. Borg,p.73; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.20-male-Oahu.pdf @@ -3289,7 +3289,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2706,1967.08.25,25-Aug-67,1967,Unprovoked,Italy,Liguria," Marinella Sarzana, La Spezia ",Spearfishing on Scuba,Gian Paolo Porta Casucci,M,Minor injuries to face & forearm,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.25-Casucci.pdf 2705,1967.08.19,19-Aug-67,1967,Unprovoked,Australia,Western Australia,Jurien Bay,"Spearfishing, dived to pick up a float line",Robert Bartle,M,"FATAL, ""bitten in two""",Y,H. Edwards,pp.35-42; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.19-Bartle.pdf 2704,1967.08.15,15-Aug-67,1967,Unprovoked,Bermuda,Hamilton,Hamilton,Floating,Sue Ferguson,F,Right foot abraded & lacerated,N,Gettysburg Times,8/15/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.15-Ferguson.pdf -2703,1967.08.14.R,14-Aug-1967,1967,Unprovoked,Unknown,Unknown,Unknown,Unknown,Thomas Walsh,M,3 fingers were bitten by a shark,N,New York Times,8/14/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.14.R-Walsh.pdf +2703,1967.08.14.R,14-Aug-67,1967,Unprovoked,Unknown,Unknown,Unknown,Unknown,Thomas Walsh,M,3 fingers were bitten by a shark,N,New York Times,8/14/1967,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.14.R-Walsh.pdf 2702,1967.08.10,10-Aug-67,1967,Invalid,Australia,New South Wales,Jervis Bay,Anti-sabotage night dive exercise alongside destroyer (Scuba diving),"J.T. Hales and Kenneth J. Hislop, Australian Navy frogmen",M,"Disappeared, no trace of men or equipment, shark attack considered",Y,H.D. Baldridge,p.184,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.10-Hales-Hislop.pdf 2701,1967.08.07,07-Aug-67,1967,Unprovoked,Usa,Florida,Near Key West,Spearfishing,Donald Ritter,M,Shark grasped thigh,N,H.D. Baldridge,p.193; Clark,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.07-Ritter.pdf 2700,1967.08.00.b,Aug-67,1967,Unprovoked,Bahamas,Out Islands,Andros Island,Photographing sharks underwater using Scuba,Richard Winer,M,"No injury, shark struck camera",N,H.D. Baldridge,p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.b-Winer.pdf @@ -3390,7 +3390,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2605,1965.08.26,26-Aug-65,1965,Unprovoked,Usa,New Jersey,"Steel Pier, Atlantic City, Atlantic County",Swimming,"James Bloodworth, Jr.",M,Right thigh lacerated,N,J. Bloodworth; Philadelphia Inquirer 8/27/1965,,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.26-Bloodworth.pdf 2604,1965.07.30,30-Jul-64,1965,Provoked,Bahamas,Bimini Islands,Lerner Marine Lab,Attempting to anesthetize shark,Karl Kuchnow,M,Chest bitten PROVOKED INCIDENT,N,H.D. Baldridge,p. 93,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.30-Kuchnow.pdf 2603,1965.07.26,26-Jul-65,1965,Unprovoked,Mexico,Veracruz,Mocambo,Bathing,Hector Serfio Trillio Jimenez,M,"FATAL, both legs severed ",Y,Latin American Times (New York),8/3/1965 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.26-Jimenez.pdf -2602,1965.07.02.R,02-Jul-1965,1965,Boat,Bermuda,Hamilton,Unknown,Unknown,"12' boat Sio Ag, occupant: John Riding",Unknown,"No injury to occupant, shark bit boat",N,Daily Express,7/2/1965; SAF Case #1375,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.02.R-Riding.pdf +2602,1965.07.02.R,02-Jul-65,1965,Boat,Bermuda,Hamilton,Unknown,Unknown,"12' boat Sio Ag, occupant: John Riding",Unknown,"No injury to occupant, shark bit boat",N,Daily Express,7/2/1965; SAF Case #1375,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.02.R-Riding.pdf 2601,1965.06.19,19-Jun-65,1965,Invalid,Usa,Florida,"In front of Key Biscayne Beach Club, Key Biscayne",Wading,Eugene Rihl III,M,Parallel lacerations on right calf. Thought to be a barracuda bite ,N,Miami Herald,6/20/1965; SAF Case #1372,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.19-Rihl.pdf 2600,1965.06.18,18-Jun-65,1965,Invalid,Usa,Florida,150 miles southeast of Cape Kennedy,"Diving, retrieving film package from Titan 3C rocket","Sgt James Lacasse & Sgt David Milsten, USAF divers",M,"No injury, chased by 4.6 m [15'] oceanic whitetip sharks",N,Evening Standard (London) 6/9/1965; Sunday Express (London),6/20/1965 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.18-TitanRocket.pdf 2599,1965.06.09,09-Jun-65,1965,Unprovoked,Mexico,Veracruz,Mocambo,Swimming,"Father Miguel de Jesus Chavez, a Catholic priest",M,"Right forearm severed, right leg bitten and surgically amputated",N,J. Carranza (This is apparently a different case than 1965.05.00.a),,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.09-Chavez.pdf @@ -3465,7 +3465,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2530,1964.03.28.a,28-Mar-64,1964,Sea Disaster,Papua new guinea,Central Province,30 miles from Port Moresby,"Canoe capsized with 10 occupants, 8 survived, Hamilton swam off to seek help",Donald Hamilton,M,Presumed FATAL,Y,Daily Mirror (Sydney),3/311964; SAF Case 1333,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.a-Hamilton.pdf 2529,1964.03.05,05-Mar-64,1964,Unprovoked,Usa,Florida,"Fort Lauderdale, Broward County",Skin diving ,James R. Duryea,M,"Minor injury, abdomen abraded when he collided with the shark",N,Sun Sentinel,3/6/1964 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.05-Duryea.pdf 2528,1964.03.00,Mar-64,1964,Unprovoked,Senegal,Cap Vert Peninsula,"Bel Air, Dakar",Free diving for shell,O.D.,M,Thigh & hand bitten,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.00-Senegal.pdf -2527,1964.02.17.R,17-Feb-1964,1964,Provoked,Fiji,Unknown,Savuli Reef,Fishing,"boat, occupant: R. Southey of Lautoka",Unknown,Hooked shark bit boat PROVOKED INCIDENT,N,Fiji Times,2/17/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.17.R-Fiji-boat.pdf +2527,1964.02.17.R,17-Feb-64,1964,Provoked,Fiji,Unknown,Savuli Reef,Fishing,"boat, occupant: R. Southey of Lautoka",Unknown,Hooked shark bit boat PROVOKED INCIDENT,N,Fiji Times,2/17/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.17.R-Fiji-boat.pdf 2526,1964.02.14.b,14-Feb-64,1964,Unprovoked,Unknown,Unknown,Unknown,Diving for trochus shell,Bernard Taye,M,"FATAL, foot & part of other leg severed ",Y,Sydney Daily Telegraph,2/15/1964 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.b-Taye.pdf 2525,1964.02.14.a,14-Feb-64,1964,Unprovoked,Fiji,Vanua Levu,"Nailou Village, Tunuloa Natewa Bay",Spearfishing,Ivo Berabi,M,"FATAL, thigh and abdomen bitten ",Y,Fiji Times; L. Schultz,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.a-Berabi.pdf 2524,1964.02.11,11-Feb-64,1964,Unprovoked,New zealand,North Island,"Palliser Bay, Whatarangi (east of Wellington)",preparing to go skin diving,male,M,Hand lacerated,N,R.D.Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.11-male-Palliser Bay.pdf @@ -3483,7 +3483,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2512,1964.01.21,21-Jan-64,1964,Boat,South africa,Western Cape Province,20 m from shore at Strand,Shark watching,"Motor boat, occupants: Quintus Du Toit, J.H. van Heerden & J.P. Marais",Unknown,"No injury to occupants, shark holed boat",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.21-boat.pdf 2511,1964.01.18,18-Jan-64,1964,Unprovoked,Australia,Western Australia,Hamelin Bay,Freediving,Frank Hastie,M,Arm lacerated,N,G.P. Whitley,citing Sydney Morning Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.18-Hastie.pdf 2510,1964.01.11,11-Jan-64,1964,Unprovoked,Usa,California,Southeast Farallon Island,Spearfishing / Scuba diving (at surface),Jack Rochette,M,Leg & thigh bitten,N,R. Collier,p.261-264; D. Miller & R. Collier; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.11-Rochette_Collier.pdf -2509,1964.01.06.R,06-Jan-1964,1964,Unprovoked,Papua new guinea,New Britain,Unknown,Fishing,male,M,FATAL,Y,Oldham Evening Chronicle,1/6/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.06.R-NewBritain.pdf +2509,1964.01.06.R,06-Jan-64,1964,Unprovoked,Papua new guinea,New Britain,Unknown,Fishing,male,M,FATAL,Y,Oldham Evening Chronicle,1/6/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.06.R-NewBritain.pdf 2508,1964.01.04,04-Jan-64,1964,Unprovoked,Fiji,"Lomaloma, Lau",Tuvuca Isalnd,Swimming,Tale Meve (female),F,Deep lacerations to her right thigh,N,SAF Case #1250,,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.04-Meve.pdf 2507,1964.01.01.b,01-Jan-64,1964,Unprovoked,Australia,Western Australia,Metro coast,Unknown,Edwards,Unknown,Unknown,UNKNOWN,T. Peake,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-NV-Edwards.pdf 2506,1964.01.01.a,01-Jan-64,1964,Unprovoked,South africa,Western Cape Province,Mossel Bay,Diving for sinkers,Jakobus Christiaan Steyn,M,Lacerations and puncture wounds in right arm ,N,The Argus,1/3/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-Edwards.pdf @@ -3503,10 +3503,10 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2492,1963.11.30.a,30-Nov-63,1963,Provoked,Papua new guinea,Gulf Province,"Kukipi, 150 miles west of Port Moresby in the Lakekamu River area",Fishing / standing in waist deep water,"Siara Ikui, female",F,Left arm lacerated PROVOKED INCIDENT,N,M. Malin; The Sun (Melbourne),12/2/1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.a-Siara.pdf 2491,1963.11.28,28-Nov-63,1963,Unprovoked,Fiji, Lau Province,"Dravuwalu, Totoya Island",Fishing,"Mereseini Wati, female",F,Elbow bitten,N,Capt. S. B. Brown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.28-Wati.pdf 2490,1963.11.25,25-Nov-63,1963,Unprovoked,Fiji,Vita Levu,Rewa River,Spearing fish,Sumia Qio,M,Ankle & foot bitten,N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.25-Sumia.pdf -2489,1963.11.16.R,16-Nov-1963,1963,Unprovoked,Italy,Sicily,Off Mondello Lighthouse,Spearfishing,Dr. Salito,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.16.R-Salito.pdf +2489,1963.11.16.R,16-Nov-63,1963,Unprovoked,Italy,Sicily,Off Mondello Lighthouse,Spearfishing,Dr. Salito,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.16.R-Salito.pdf 2488,1963.11.14,14-Nov-63,1963,Provoked,Australia,Queensland,Mermaid Beach,Catching sharks under government contract,"boat Nora, occupant Bruce Harris",M,"No injury to occupant, netted shark rammed & bit boat PROVOKED INCIDENT",N,Miner (WA) & Warwick Daily News (Qld),11/15/1963 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.14-Nora.pdf 2487,1963.11.12,12-Nov-63,1963,Provoked,Usa,Florida,"8 miles south of Elliot Key, Miami-Dade County",Testing anti-shark cage,"D. R. Nelson, J. Greenberg & S.H. Gruber",M,No injury PROVOKED INCIDENT,N,D.R. Nelson,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.12-DonNelson.pdf -2486,1963.11.05.R,05-Nov-1963,1963,Unprovoked,Papua new guinea,New Britain,Unknown,Wading,Tule,M,Thigh lacerated ,N,H.D. Baldridge (1994) SAF Case #1478,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.05.R-Tule.pdf +2486,1963.11.05.R,05-Nov-63,1963,Unprovoked,Papua new guinea,New Britain,Unknown,Wading,Tule,M,Thigh lacerated ,N,H.D. Baldridge (1994) SAF Case #1478,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.05.R-Tule.pdf 2485,1963.11.04,04-Nov-63,1963,Unprovoked,Palau,Western Caroline Islands,Koror,Fishing,Saburo Dooley,M,Left calf lacerated,N,R. Yalap,M.D.; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.04-Dooley.pdf 2484,1963.10.16,16-Oct-63,1963,Unprovoked,Usa,Florida,"Biltmore Beach, near Panama City","Surf fishing, wading ",William Cheatham,M,"Right thigh & foot bruised, right calf lacerated",N,H.D. Baldridge,p.109,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.16-Cheatham.pdf 2483,1963.10.15,15-Oct-63,1963,Provoked,Unknown,Unknown,Unknown,Fishing for sharks,"Eichi Nakata, of the the crew of the trawler Kayo Maru",M,"Right hand lacerated, PROVOKED INCIDENT",N,J.L. Holland; The Honolulu Advertiser,10/19/1963; SAF Cse #1209,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.15-Nakata.pdf @@ -3519,7 +3519,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2476,1963.07.28,28-Jul-63,1963,Unprovoked,Federated states of micronesia,Eastern Caroline Islands,"Koop Reef, Truk (Chuuk)",Spearfishing,Akira,M,Upper left arm bitten,N,K. Aniol,Medical Officer,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.28-Akira.pdf 2475,1963.07.15,15-Jul-63,1963,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Bathing,Robert Driscoll,M,"Left forearm bitten, surgically amputated?",N,Orlando Sentinel,7/16/1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.15-Driscoll.pdf 2474,1963.07.11,11-Jul-63,1963,Provoked,Usa,Mississippi,Horn Island,"Fishing, on charter boat Silver Dollar","James Ronald Mason, deckhand",M,"Cuts on right hand, PROVOKED INCIDENT",N,Gulfport Herald,7/12/1963; SAF Case #1218,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.11-Mason.pdf -2473,1963.07.10.R,10-Jul-1963,1963,Sea Disaster,Unknown,Unknown,Unknown,63' fishing boat Sno' Bay foundered,40 people were onboard,Unknown,No survivors & a body sighted could not be recovered because of sharks,Y,The Blade (Toledo,OH),http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.10.R-Sno'Boy.pdf +2473,1963.07.10.R,10-Jul-63,1963,Sea Disaster,Unknown,Unknown,Unknown,63' fishing boat Sno' Bay foundered,40 people were onboard,Unknown,No survivors & a body sighted could not be recovered because of sharks,Y,The Blade (Toledo,OH),http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.10.R-Sno'Boy.pdf 2472,1963.07.00,Jul-63,1963,Unprovoked,Panama,San Blas coast,"4 miles from Tuwala, near Mulatuppu","Seining for bait, standing in chest-deep water",an Indian male,M,"FATAL, foot nearly severed ",Y,H. Loftin,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.00-Tuwala.pdf 2471,1963.06.01.b,01-Jun-63,1963,Unprovoked,Greece,Thessaly,near Trikerion Island,Swimming,Helga Pogl,F,FATAL,Y,A. De Maddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.b-Pogl.pdf 2470,1963.06.01.a,01-Jun-63,1963,Provoked,Papua new guinea,Central Province,Near Fisherman's Island,Fishing,Au Kila (male),M,"Hooked shark bit his nose, arm and leg PROVOKED INCIDENT",N,Pacific Post (Port Moresby),6/4/1963,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.a-Au_Kila.pdf @@ -3567,7 +3567,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2428,1962.09.22,22-Sep-62,1962,Unprovoked,Mexico,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,Nestor Valenzuela,M,"Left arm severely bitten, surgically amputated",N,C.G. Robles,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.22-Valenzuela.pdf 2427,1962.09.13,13-Sep-62,1962,Unprovoked,South atlantic ocean,Off coast of West Africa,Off the passenger liner Stirling Castle,"When a deckhand jumped overboard, McIver dived after him with a rescue line.",John MacIver,M,"FATAL, he died within minutes of being hauled back onboard the Stirling Castle",Y,Daily Express (London),et. al,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.13-MacIver.pdf 2426,1962.09.02,02-Sep-62,1962,Unprovoked,Italy,Tyrrhenian Sea,"Circeo, Secca del Quadro",Spearfishing with Scuba gear,Maurizio Sarra,M,"FATAL, multiple injuries to both legs ",Y,A. De Maddalena & C. Moore,GSAF; Carletti (1973),http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.02-Sarra.pdf -2425,1962.08.31.R,31-Aug-1962,1962,Provoked,Israel,Sharon,2 km north of Apollonia,Fishing,fisherman,M,"Details unknown, possibly a PROVOKED INCIDENT",UNKNOWN,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.31.R-Israel.pdf +2425,1962.08.31.R,31-Aug-62,1962,Provoked,Israel,Sharon,2 km north of Apollonia,Fishing,fisherman,M,"Details unknown, possibly a PROVOKED INCIDENT",UNKNOWN,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.31.R-Israel.pdf 2424,"1962,08.30.b",30-Aug-62,1962,Boat,Turkey,Antalya Province,Ucagiz,Unknown,Occupant: Hasan Olta,M,No injury ,N,C.Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.b-pdf 2423,1962.08.30.a,30-Aug-62,1962,Provoked,Papua new guinea,Northern District,Kufulu Point,Fishing,Enigo Setiro,M,Posterior lower left leg lacerated by netted shark PROVOKED INCIDENT,N,SAF Case #1192,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.a-Setiro.pdf 2422,1962.08.29,29-Aug-62,1962,Provoked,Usa,California,"Solana Beach, San Diego County",Diving for abalone,Knox Harris,M,"Struck shark with abalone bar to scare it away from abalone, but shark bit his shoulder PROVOKED INCIDENT",N,SAF Case #1059; D. Miller & R. Collier; R. Collier,p. xxv; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.29-Harris.pdf @@ -3583,7 +3583,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2412,1962.07.19,19-Jul-62,1962,Provoked,Usa,California,30 miles south of San Clemente Island,Fishing for albacore,Esteban L. Cervantes,M,"2 lacerations on left hand by hooked shark, PROVOKED INCIDENT",N,R. Zarkas; San Diego Union,7/30/1962 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.19-Cervantes.pdf 2411,1962.07.10,10-Jul-62,1962,Unprovoked,Usa,Georgia,"St. Simons Island or Jeykll Island, Glynn County",Playing in surf with his child (9),Leonard Harrison Hancock,M,"Cuts on fingers, hand & wrist",N,L.H. Hancock,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.10-Hancock.pdf 2410,1962.07.07,07-Jul-62,1962,Unprovoked,Usa,Georgia,"Jekyll Island, Glynn County",Dived from inner-tube,Gary Duncan,M,Laceration on hand,N,J. M. Hicks,M.D.; Washington Star,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.07-Duncan.pdf -2409,1962.07.03.R,03-Jul-1962,1962,Invalid,Greece,Cyclades,Near Mykonos Island,Unknown,Boat with tourists onboard,Unknown,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.03.R-Greece.pdf +2409,1962.07.03.R,03-Jul-62,1962,Invalid,Greece,Cyclades,Near Mykonos Island,Unknown,Boat with tourists onboard,Unknown,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.03.R-Greece.pdf 2408,1962.06.25,25-Jun-62,1962,Invalid,Usa,Florida,"Fernandina Beach, Nassau County",U.S. Airforce crewman reported missing after bailing out of jet,male,M,FATAL,Y,SAF Case #1106,,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.25-NV-AirForce-bailout.pdf 2407,1962.06.21,21-Jun-62,1962,Boat,South africa,Western Cape Province,"Millers Point, False Bay","On a ""shark hunt""","2.4 m rowboat, occupants: Edgar Brown, Jerry Welz & Cornelius Stakenburg",Unknown,"No injury to occupants, shark charged boat, then 2 more sharks hit boat, oar grabbed, boat finally drifted ashore at 02h00",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.21-MillersPointBoat.pdf 2406,1962.06.17,17-Jun-62,1962,Unprovoked,Usa,Florida,"New Smyrna Beach, Volusia County",Rolled off raft,Barry Bryan Reed,M,"8"" laceration on left calf",N,D. Reed; Hobart Gazette,6/28/ 1962 s,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.17-BarryReed.pdf @@ -3653,7 +3653,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2342,1961.09.24.a,24-Sep-61,1961,Provoked,Tanzania,Unknown,Near entrance to Dar-es-Salaam Harbour,Fishing,Yusef Mohamed,M,PROVOKED INCIDENT Right hand severed by hooked shark,N,Mombasa Times 9/25/1961,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.a-YusefMohamed.pdf 2341,1961.09.23,23-Sep-61,1961,Unprovoked,Mid atlantic ocean,165 miles from Bermuda,Unknown,"Survived US Naval aircraft crash, climbing onboard rescue vessel when he fell back into sea ",Patrick Imhof,M,Right shoulder blade & back lacerated,N,E.L.de Wilton; V.M. Coppleson (1962),p.246; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.23-Imhof.pdf 2340,1961.09.07,07-Sep-61,1961,Unprovoked,Persian gulf,25 km off the coast of Iran & 483km from mouth of Persian Gulf,Khark Island,"Free diving, surveying a pipeline & examing cathodes under jetty",I. Padden,M,"3"" cut on sole of foot",N,Underseas,Ltd (London),http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.07-Padden.pdf -2339,1961.09.02.R,06-Sep-1961,1961,Provoked,Italy,Venice Province, Chioggia,Fishing,Pollione Perrini & Fioravante Perini ,M,Left foot & right hand bitten by netted shark PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06.R-Chioggia.pdf +2339,1961.09.02.R,06-Sep-61,1961,Provoked,Italy,Venice Province, Chioggia,Fishing,Pollione Perrini & Fioravante Perini ,M,Left foot & right hand bitten by netted shark PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06.R-Chioggia.pdf 2338,1961.09.06,06-Sep-61,1961,Invalid,Australia,Western Australia,Broome,Attaching a line at sea,a sailor from the Fukuichi Maru,Unknown,Shark involvement prior to death priunconfirmed,Y,Canberra Times,9/8/1962,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06-Sailor.pdf 2337,1961.08.20,20-Aug-61,1961,Unprovoked,Usa,California,"Portuguese Beach at mouth of Salmon Creek, Sonoma County",Swimming,David Vogensen,M,"Foot, leg & groin lacerated",N,L.A. Times,8/21/1961; D. Miller & R. Collier; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.20-Vogensen_Collier.pdf 2336,1961.08.16,16-Aug-61,1961,Unprovoked,Usa,South Carolina,"Pawley’s Island, Georgetown County",Wading,William Lee Bailey,M,"Right arm bitten. Left leg bitten, surgically amputated ",N,C.O. Adams,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.16-Bailey.pdf @@ -3667,7 +3667,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2328,1961.07.00.a,Jul-61,1961,Provoked,Panama,Unknown,"Jarque, just south of Pi?as Bay",Fishing (trolling) from canoe,boy,M,"FATAL, hooked shark pulled him into the water PROVOKED INCIDENT",Y,J. Hardie,D. DeSylva,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.a-youngboy.pdf 2327,1961.06.24,24-Jun-61,1961,Unprovoked,Usa,Florida,"500 yards from Fowey Rock Light, 9 miles east of Key Biscayne, Miami",Scuba diving & spearfishing ,William J. Dandridge,M,"FATAL, arm severed & left side of torso removed ",Y,D. McGee,J. Quillian,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.24-Dandridge.pdf 2326,1961.06.18,18-Jun-61,1961,Unprovoked,Usa,Florida,"Jensen Beach, Martin County",Standing,Bill Hawkins,M,Lacerations to left leg,N,News Tribune,6/20/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.18-Hawkins.pdf -2325,1961.06.06.R,06-Jun-1961,1961,Boat,Usa,Florida,"Ponte Vedra Beach, St. Johns County",Spearfishing on Scuba,W. Davidson,M,"No injury to diver or occupants of the boat, shark butted boat ",N,Florida Times-Union,6/6/1961 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.06.R-W.E.-Davidson.pdf +2325,1961.06.06.R,06-Jun-61,1961,Boat,Usa,Florida,"Ponte Vedra Beach, St. Johns County",Spearfishing on Scuba,W. Davidson,M,"No injury to diver or occupants of the boat, shark butted boat ",N,Florida Times-Union,6/6/1961 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.06.R-W.E.-Davidson.pdf 2324,1961.06.02,02-Jun-61,1961,Unprovoked,New britain,East New Britain Province,Rabaul,Spearfishing,male,M,Minor injuries to arm,N,A.M. Rapson,p.150,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.02-Rabaul.pdf 2323,1961.06.01,01-Jun-61,1961,Provoked,Papua new guinea,"Admiralty Islands, Manus Province","Rossun, Manus","Fishing, speared shark upset canoe & man fell in water",Marik-Pokas,M,"Left thigh severely bitten, but he regained the canoe, then shark bit canoe PROVOKED INCIDENT",N,J. McDonough; A. M. Rapson,p.147; Papua and New Guinea Agricultural Journal;,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.01-Marik-Pokas.pdf 2322,1961.05.21,21-May-61,1961,Unprovoked,Usa,California,"Tomales Point, Marin County",Free diving for abalone,Rodney Orr,M,"No injury, wetsuit bitten",N,D. Miller & R. Collier; R. Collier,pp.32-33 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.21-Orr_Collier.pdf @@ -3708,7 +3708,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2287,1961.01.05,05-Jan-61,1961,Unprovoked,Mozambique,Limpopo River,190 km to 240 km from the sea,Swimming,African child (male),M,Leg bitten ,N,D. Davies,p.124-125,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.05-AfricanChild.pdf 2286,1961.01.03.b,03-Jan-61,1961,Unprovoked,South africa,Western Cape Province,Strandfontein,Standing,Peter Hendricks,M,"Lower left leg bitten, abrasions on back of right leg",N,Cape Times,1/4/1961,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.b-Hendricks.pdf 2285,1961.01.03.a,03-Jan-61,1961,Invalid,South africa,KwaZulu-Natal,Palm Beach,Unknown,Unknown,Unknown,Human remains (patella & remnants of black swim suit) found in shark,Y,D. Davies; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.a-Remains-in-raggie.pdf -2284,1961.01.02.R,02-Jan-1961,1961,Boat,Australia,Tasmania,Off Tasman Island,Ocean racing,yacht Southerly Buster,Unknown,"No injury to occupants, shark struck boat",N,C. Black. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.02.R-SoutherlyBuster.pdf +2284,1961.01.02.R,02-Jan-61,1961,Boat,Australia,Tasmania,Off Tasman Island,Ocean racing,yacht Southerly Buster,Unknown,"No injury to occupants, shark struck boat",N,C. Black. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.02.R-SoutherlyBuster.pdf 2283,1961.00.00.e,1961,1961,Boat,Australia,New South Wales,South coast,Fishing for mackerel,boat,Unknown,"No injury to occupant, shark took hooked fish then bit stern of boat",N,Brisbane Courier Mail,12/30/1961 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.e-Mackerel-fishing.pdf 2282,1961.01.01,01-Jan-61,1961,Unprovoked,Columbia,Roncador Bank,"Roncador Bank, 135 nm north of San Andres ",Taking boat from California to Florida when it ran aground & he was swimming back to boat,Joe Chaney ,M,Leg bitten,N,V.M. Coppleson (1962) p.246,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.01-Chaney.pdf 2281,1961.00.00.d,1961,1961,Unprovoked,Unknown,Unknown,Unknown,Spearfishing,Unknown,Unknown,Arm injured,N,SAF Case #1109,,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.d-NV-NewCaledonia.pdf @@ -3743,7 +3743,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2252,1960.08.29,29-Aug-60,1960,Sea Disaster,Senegal,Cap-Vert Peninsula,off Dakar,Air disaster: crash of Air France Super Constellation ,Unknown,Unknown,All 63 on board perished when the aircraft hit the water. Sharks hampered retrieval of bodies,Y,The Daily Telegram (Colombus,8/30/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.29-Senegal.pdf 2251,1960.08.25,25-Aug-60,1960,Invalid,Usa,Texas,30 miles east of Corpus Christi,Aircraft crashed into sea,Naval aviator,M,"Partial human remains spotted by helicopter, shark involvement, if any, may have been post-mortum",Y,US Naval Aviation Safety Center; L. Schultz & M. Malin,p.558; SAF Case #1013,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.25-NavalAviator.pdf 2250,1960.08.24,24-Aug-60,1960,Unprovoked,Usa,Connecticut,"Off Eames Monument, Bridgeport, Fairfield County",Free diving,Clyde Trudeau,M,Superficial laceration of left arm,N,M. McMahon,,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.24-Trudeau.pdf -2249,1960.08.22.R.,22-Aug-1960,1960,Unprovoked,Papua new guinea,Milne Bay Province,Unknown,Free-diving,"""a native""",M,Lost left arm,N,The Age,8/22/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.R-Milne-PNG.pdf +2249,1960.08.22.R.,22-Aug-60,1960,Unprovoked,Papua new guinea,Milne Bay Province,Unknown,Free-diving,"""a native""",M,Lost left arm,N,The Age,8/22/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.R-Milne-PNG.pdf 2248,1960.08.22,22-Aug-60,1960,Unprovoked,Usa,New Jersey,"Seaside Park, Ocean County",Unknown,Thomas McDonald,M,Knee ripped to bone,N,T. Helm,p.250; R. Skocik,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.a-McDonald.pdf 2247,1960.08.21,21-Aug-60,1960,Unprovoked,Usa,New Jersey,"Sea Girt, Monmouth County",Standing in knee-deep water,John Brodeur,M,"Lower right leg bitten, surgically amputated 10 days later",N,C. G. Samaha,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.21-Brodeur.pdf 2246,1960.08.14,14-Aug-60,1960,Invalid,Mozambique,Delagoa Bay,Bella Vista,boat with 46 people on board capsized,Unknown,Unknown,1 survivor,N,L. Schultz & M. Malin,p.563; SAF Case #760,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.14-NV-Mozambique.pdf @@ -3770,7 +3770,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2225,1960.04.30,30-Apr-60,1960,Unprovoked,South africa,KwaZulu-Natal,Amanzimtoti,Treading water,Mike Hely,M,Multiple major injuries,N,M. Hely,E. Kerns,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.30-Hely.pdf 2224,1960.04.24,24-Apr-60,1960,Unprovoked,Usa,California,"Tomales Point, Marin County",Skindiving for abalone (but at surface),Frank I. Gilbert,M,Foot & swim fin bitten ,N,F.I. Gilbert; Follett,p. 192-198; D. Miller & R. Collier; R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.24-Gilbert_Collier.pdf 2223,1960.04.22,22-Apr-60,1960,Provoked,Australia,Western Australia,Rottnest Island,"Fishing, hauling in a set line",Ted Nelson onboard fishing boat Wayfarer,M,4 fingers of left hand were lacerated by shark he had shot in the head PROVOKED INCIDENT,N,L. Schultz & M. Malin,p.546,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.22-Nelson.pdf -2222,1960.04.20.R,20-Apr-1960,1960,Provoked,South africa,Eastern Cape Province,Port Alfred,Fishing,P. Wagener,M,Gaffed shark bit his ankle PROVOKED INCIDENT,N,Eastern Province Herald,4/20/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.20.R-Wagener.pdf +2222,1960.04.20.R,20-Apr-60,1960,Provoked,South africa,Eastern Cape Province,Port Alfred,Fishing,P. Wagener,M,Gaffed shark bit his ankle PROVOKED INCIDENT,N,Eastern Province Herald,4/20/1960,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.20.R-Wagener.pdf 2221,1960.04.14,14-Apr-60,1960,Invalid,Bermuda,"33N, 68W",Royal Canadian Navy CS2F-1 aircraft ditched in the sea 180 nautical miles WNW of Bermuda at 01h30,Floating on a raft,"Crew of aircraft: McGreevy, Beakley, Rosenthal, Ryan & Hodge",M,"No injury, shark bumped raft",N,G.S. Beakley,RCN; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.14-Beakley-recheck text-March.pdf 2220,1960.04.12,12-Apr-60,1960,Unprovoked,Australia,New South Wales,"Horseshoe Bay, near Kempsey",Surfing,Ivan Chandler,M,Right arm & side bruised,N,Macleay Argus (NSW),4/14/1960; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.12-Chandler.pdf 2219,1960.04.10,10-Apr-60,1960,Provoked,Australia,Western Australia,Off Rottnest Island,"Spearfishing, shot a sandtiger shark. Cord to spear tangled round his legs & a wave washed him onto a reef.",Mick Coleman,M,"Bruises & minor injuries from reef, not the shark PROVOKED INCIDENT",N,V.M. Coppleson (1962),p.252,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.10-Coleman.pdf @@ -3821,7 +3821,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2174,1959.11.22,22-Nov-59,1959,Unprovoked,Australia,Queensland,"Surfer's Paradise, Northcliffe",Trailing the field in a surf race,Jeffrey Francis Sasche (or Sachse),M,"Lower left leg bittten, hand abraded",N,Daily Mirror (Sydney) 11/23/1959; G.P. Whitley; P. Gilbert,L. Schultz & S. Springer (1960); J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.22-Sachse.pdf 2173,1959.11.16,16-Nov-59,1959,Invalid,Usa,Louisiana,120 miles southeast of New Orleans,National Airlines DC7B enroute from Miami to Los Angeles with 42 or 46 people on board went down in heavy fog,All on board perished in the crash,Unknown,Body recovery efforts were hampered by large sharks but sharks did not cause the deaths. ,Y,Washington Post,11/17/1959; SAF Case #591,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.16-AircraftDC7B.pdf 2172,1959.11.15,15-Nov-59,1959,Boat,South africa,Western Cape Province,"Swartklip, False Bay",Fishing for tunny,"boat Sea Hawk, occupants: R. Roberts & 4 others",Unknown,R. Roberts' leg was bruised when shark leapt into boat,N,East London Dispatch,11/16/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.15-SeaHawk.pdf -2171,1959.11.12.R,12-Nov-1959,1959,Provoked,Australia,South Australia,Near Port Vincent,Shark fishing,24' yacht owened by C.L. Whitrow,Unknown,"No injury to occupant, hull bitten PROVOKED INCIDENT",N,Advertiser (Adelaide),11/12/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.12.R-Whitrow-yacht.pdf +2171,1959.11.12.R,12-Nov-59,1959,Provoked,Australia,South Australia,Near Port Vincent,Shark fishing,24' yacht owened by C.L. Whitrow,Unknown,"No injury to occupant, hull bitten PROVOKED INCIDENT",N,Advertiser (Adelaide),11/12/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.12.R-Whitrow-yacht.pdf 2170,1959.11.10,10-Nov-59,1959,Unprovoked,Usa,California,"Near Paradise Cove, Malibu, Los Angeles County",Swimming at surface through school of feeding 2.5' to 5’ sharks,Duffie Fryling,M,Forearm bitten,N,D. Miller & R. Collier; R. Collier,pp.26-27; P. Gilbert,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.10-Fryling_Collier.pdf 2169,1959.11.09,09-Nov-59,1959,Provoked,Australia,Western Australia, Perth,"Spearfishing, shot shark, hauled it onto boat",Ian Marks,M,"No injury. Diver shot shark, then shark tore legs of his rubber suit, water poured in & swept out to sea by strong rip current PROVOKED INCIDENT",N,Perth Daily News,4/19/1961; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.09-Marks.pdf 2168,1959.11.01,01-Nov-59,1959,Provoked,Papua new guinea,New Britain,"Rapindik Beach, Rabaul",Fishing,male,M,Both hands bitten while helping companion land speared shark PROVOKED INCIDENT,N,A. M. Rapson,p.147,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.01-Rabaul.pdf @@ -3835,10 +3835,10 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2160,1959.09.26.b,26-Sep-59,1959,Sea Disaster,Usa,Florida,"Off Port Everglades, Broward County","Adrift, hanging onto cushion, after his 17' skiff ran out of gas & capsized 3 miles from shore",Robert Walker,M,"During the night both hands and feet were bitten, rescued next day after spending 17 hours in the sea.",N,St Petersberg Times,9/27/1959; NY Herald Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.b-Walker.pdf 2159,1959.09.26.a,26-Sep-59,1959,Boat,Usa,South Carolina,"Albergotti Creek, near Air Station boat docks, Beaufort",Gigging for flounder,"12' boat. Occupants: Capt. E.J. Wines, Maj. W. Waller & Larry Waller",Unknown,Unknown,UNKNOWN,Gazette (Beaufort,SC),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.a-Wines.pdf 2158,1959.09.11,Between 10 and 12-Sep-1959,1959,Boat,Usa,California,"Between False Klamath & mouth of Klamath River, Del Norte County",Pulling hooked salmon to boat,12 m fishing boat. Occupant: Henry Tervo,Unknown,"No injury to occupant, shark struck stern of boat",N,R. Collier,p.172,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.11-Tervo.pdf -2157,1959.09.10.R,10-Sep-1959,1959,Unprovoked,India,Orissa,Machhagan,Unknown,Unknown,Unknown,"5 fatalities, 30 injured",Y,Times of India,9/10/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.10.R-India.pdf +2157,1959.09.10.R,10-Sep-59,1959,Unprovoked,India,Orissa,Machhagan,Unknown,Unknown,Unknown,"5 fatalities, 30 injured",Y,Times of India,9/10/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.10.R-India.pdf 2156,1959.09.02,02-Sep-59,1959,Invalid,Usa,New York,"Oak Beach, Fire Inlet",On inflatable raft,male,M,No injury,N,H.D. Baldridge (1994) SAF Case #506,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.02-NV-InflatableRaft.pdf 2155,1959.09.00,Sep-59,1959,Unprovoked,Mexico,Guerrrero,Acapulco,Unknown,French woman,F,"FATAL, leg severed, other leg lacerated ",Y,A. R. Satz; P. Gilbert,L. Schultz & S. Springer (1960),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.00-French-woman.pdf -2154,1959.08.31.R,31-Aug-1959,1959,Boat,Azores,Unknown,Sao Miguel,Fishing,40' bonito boat,Unknown,No injury to occupants; shark bit rudder,N,A. Cordeiro,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.31.R-Azores.pdf +2154,1959.08.31.R,31-Aug-59,1959,Boat,Azores,Unknown,Sao Miguel,Fishing,40' bonito boat,Unknown,No injury to occupants; shark bit rudder,N,A. Cordeiro,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.31.R-Azores.pdf 2153,1959.08.30,30-Aug-59,1959,Invalid,Australia,Tasmania,Unknown,Swimming,Ron Cox,M,No injury,N,C. Black; H.D. Baldridge (1994) ISAF Case #654,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.30-Cox.pdf 2152,1959.08.25,25-Aug-59,1959,Invalid,Japan,Hokkaido Prefecture,"Okushiri Island, Hiyama Subprefecture",Unknown,Masami Fukushi,M,Survived (no injury?),N,"K. Nakaya (1993); H.D. Baldrige. Note: Recorded as ""Doubtful"" by Schultz and Malin",,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.25-Fukushi.pdf 2151,1959.08.20,20-Aug-59,1959,Invalid,Philippines,North Palawan,Cabuli Island,The 240-ton motor vessel Pilar II with 100 people on board capsized in high winds & rough seas,boy,M,"Navy personnel reported that his body was ""mutilated by sharks"" but it is probable that death resulted from drowning",Y,Manila Daily,8/26/1959; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.20-PilarII.pdf @@ -3862,7 +3862,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2133,1959.07.02,02-Jul-59,1959,Provoked,Usa,Florida,"Delray Beach, Palm Beach County",Free diving,King Scherer,M,Arm bitten when he grabbed shark’s tail PROVOKED INCIDENT,N,Miami Herald,7/3/1959; Garrick & L. Schultz,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.02-Scherer.pdf 2132,1959.07.00.b,Late Jul-1959,1959,Boat,North atlantic ocean,In the Gulf Stream ,Between Bimini & Miami,Unknown,"17' boat, occupant: Richard Wade",Unknown,"No injury to occupant, shark bit propeller as Wade was refueling",N,J. Randall in Sharks & Survival,p.356,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.b-boat-R-Wade.pdf 2131,1959.07.00.a,Jul-59,1959,Unprovoked,Mexico,Quintana Roo,Chinchorro Banks,Wading,Lobster fishermen x 2,M,"FATAL, legs bitten ",Y,C.G. Robles,,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.a-Lobster-fishermen.pdf -2130,1959.06.26.R,26-Jun-1959,1959,Unprovoked,Turkey,Mersin Province,Off Mezitli,Unknown,Yitzhak Steinberg,M,Leg injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.26.R-Steinberg.pdf +2130,1959.06.26.R,26-Jun-59,1959,Unprovoked,Turkey,Mersin Province,Off Mezitli,Unknown,Yitzhak Steinberg,M,Leg injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.26.R-Steinberg.pdf 2129,1959.06.14.b,14-Jun-59,1959,Unprovoked,Mexico,Guyamas,San Pedro Nolasco Island,Swimming ashore from capsized boat,Francisco R. Topete,M,FATAL,Y,Miami Herald,6/15/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.b-Topete.pdf 2128,1959.06.14.a,14-Jun-59,1959,Unprovoked,Usa,California,"La Jolla, San Diego County",Free diving for abalone,Robert Pamperin,M,"FATAL, body not recovered",Y,D. Miller & R. Collier; R. Collier,pp. 21-24 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.a-Pamperin_Collier.pdf 2127,1959.06.13,13-Jun-59,1959,Invalid,Usa,California,"Dillon Beach, Marin County",Swimming ,T. McNeill,Unknown,"Disappeared after diving in “deep hole”, body not recovered, “presumed taken by a shark” ",Y,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.13-McNeill.pdf @@ -3907,7 +3907,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2088,1958.12.12,12-Dec-58,1958,Unprovoked,American samoa,Tutuila Island,Van Camp wharf,Cleaning hull of ship ,Sailor of tuna vessel No.12 Taiyo Marei,M,"FATAL, left thigh & hip bitten ",Y,M. Hosina,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.12-Samoa.pdf 2087,1958.11.23,23-Nov-58,1958,Unprovoked,Australia,Queensland,Surfer's Paradise,Swimming,Peter Gerard Spronk,M,FATAL,Y,V.M. Coppleson (1962),p.245; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.23-Spronk.pdf 2086,1958.11.14,14-Nov-58,1958,Invalid,South africa,Western Cape Province,False Bay,Fishing,male,M,"No injury, shark leapt at him",N,Clipping dated 11/15/1958,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.14-FalseBayFisherman.pdf -2085,1958.11.07.R,07-Nov-1958,1958,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province","M'Buke, south of Manus Island",Spearfishing,native boy,M,"FATAL, left arm & leg severed ",Y,A.M. Rapson,p.149; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.07.R-MbukeIsland.pdf +2085,1958.11.07.R,07-Nov-58,1958,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province","M'Buke, south of Manus Island",Spearfishing,native boy,M,"FATAL, left arm & leg severed ",Y,A.M. Rapson,p.149; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.07.R-MbukeIsland.pdf 2084,1958.11.05,05-Nov-58,1958,Boat,Usa,California,"Pacific Beach, San Diego County",Fishing,"4.3 m skiff, occupant: Bob Shay",Unknown,"No injury to occupant, shark chasing barracuda tied to the stern rammed skiff & slashed the motor",N,C. Limbaugh,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.05-boat-Shay.pdf 2083,1958.10.12,12-Oct-58,1958,Unprovoked,Usa,California,"Coronado Strand, San Diego County",Swimming near jetty,John Allman,M,"Left arm, hips & leg lacerated",N,Los Angeles Times,10/13/1958; D. Miller & R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.12-Allman_Collier.pdf 2082,1958.10.05,05-Oct-58,1958,Unprovoked,Usa,Florida,"Baker's Haulover, Miami Beach",Unknown,Lytton Evans,M,No injury,N,R.F. Hutton citing Miami Herald Newspaper Library,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.05-Evans.pdf @@ -3933,7 +3933,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2062,1958.06.24,24-Jun-58,1958,Unprovoked,Usa,Florida,"Turtle Beach, Siesta Key, Sarasota County",Walking,Frank A. Mahala,M,Lower left leg & foot bitten,N,E. Clark; R. Skocik,pp.172-173; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.24-Mahala.pdf 2061,1958.06.17,17-Jun-58,1958,Provoked,Usa,Florida,Key Biscayne,"Swimming, towing the shark",B. Irving,M,Thigh bitten PROVOKED INCIDENT,N,Randall in Sharks & Survival,pp.357,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.17-Irving.pdf 2060,1958.06.15,15-Jun-58,1958,Invalid,Australia,Queensland,Green Island,Swimming,Alva Colquhoun & Ilsa Konrads,F,"Injuries caused by coral, not the shark",N,Natal Mercury,6/18/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.15-Swimmers.pdf -2059,1958.06.02.R,02-Jun-1958,1958,Invalid,South africa,KwaZulu-Natal,King Reef off Park Rynie,Spearfishing,Gene Franken & Maurice McGregor,M,Injuries not caused by sharks,N,Daily News,6/2/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.02-McGregor-Franken.pdf +2059,1958.06.02.R,02-Jun-58,1958,Invalid,South africa,KwaZulu-Natal,King Reef off Park Rynie,Spearfishing,Gene Franken & Maurice McGregor,M,Injuries not caused by sharks,N,Daily News,6/2/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.02-McGregor-Franken.pdf 2058,1958.04.30,30-Apr-58,1958,Provoked,Usa,Florida,1 mile off Miami Beach,Free diving,Johnny Bower,M,"Grabbed shark’s tail, shark bit his thigh PROVOKED INCIDENT",N,Miami Herald, May 1,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.30-Bowers.pdf 2057,1958.04.19,19-Apr-58,1958,Unprovoked,Taiwan,Taipei Hsien,Off Cape of Pi-tou,Diving,Nan-Tien Chang,M,Right cheek bitten,N,W.H. Yu,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.19-Chang.pdf 2056,1958.04.05,05-Apr-58,1958,Unprovoked,South africa,KwaZulu-Natal,Uvongo,Paddling in knee-deep water,Fay Jones Bester,F,FATAL,Y,G.S. Perry,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.05-Bester.pdf @@ -3943,7 +3943,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2052,1958.02.01,01-Feb-58,1958,Provoked,Usa,US Virgin Islands,Water Island,Spearfishing on Scuba,"U.S. Navy U.D.T. Diver trainee, Ronald Gerringer",M,Chest bitten by speared shark PROVOKED INCIDENT,N,J,Randall,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.01-Gerringer.pdf 2051,1958.01.27,27-Jan-58,1958,Unprovoked,Australia,New South Wales,5 miles south of Sussex Inlet at mouth of Berara Lake,Spearfishing / swimming on surface,Ronald Kerwand,M,Right leg lacerated,N,V.M. Coppleson (1962),p.251 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.27-Kerwand.pdf 2050,1958.01.19,19-Jan-58,1958,Unprovoked,Australia,New South Wales,Brunswick Heads,Body surfing,Brian Henderson,M,"Laceration to left ankle, heel and little toe",N,V.M. Coppleson (1962),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.19-Henderson.pdf -2049,1958.01.09.R,09-Jan-1958,1958,Invalid,Japan,Ibaraki Prefecture,Mito,Unknown,male,M,Torso recovered from shark,Y,Natal Mercury,1/9/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09.R-Japan.pdf +2049,1958.01.09.R,09-Jan-58,1958,Invalid,Japan,Ibaraki Prefecture,Mito,Unknown,male,M,Torso recovered from shark,Y,Natal Mercury,1/9/1958,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09.R-Japan.pdf 2048,1958.01.09,09-Jan-58,1958,Unprovoked,South africa,KwaZulu-Natal,Scotburgh,Swimming,Derek Garth Prinsloo,M,FATAL,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09-Prinsloo.pdf 2047,1958.00.00.j,1958-1959,1958,Provoked,Tonga,Vava'u,Hunga Island,Spearfishing,male,M,Calf avulsed by shark he was holding by the tail PROVOKED INCIDENT,N,Dr. S. Fonea,,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.j-Tonga.pdf 2046,1958.00.00.i,1958,1958,Provoked,Samoa,South Pacific Ocean,North of Northeast Samoa,Placed hand in disemboweled shark’s jaws,Takai Otiai,Unknown,Hand lacerated PROVOKED INCIDENT,N,V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.i-Otiai.pdf @@ -3961,7 +3961,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2034,1957.12.20,20-Dec-57,1957,Unprovoked,South africa,KwaZulu-Natal,Uvongo,Standing,Allan Green,M,"FATAL, multiple, severe injuries ",Y,P. Lynch,G. Wolfe,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.20-Green.pdf 2033,1957.12.18,18-Dec-57,1957,Unprovoked,South africa,KwaZulu-Natal,Karridene,Body surfing,Robert Wherley,M,"Left leg severed at knee, part of left thigh removed",N, M. Levine,GSAF ,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.18-Wherley.pdf 2032,1957.11.08,08-Nov-57,1957,Sea Disaster,Pacific ocean,"1,000 miles east of Hawaii",Unknown,Air/Sea Disaster Pan-American Airlines Stratocruiser with 44 people onboard crashed into the sea,Unknown,Unknown,Navy personnel recovered 19 shark-scavenged bodies,N,Guam Daily News,November 19,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.08-Stratocruiser.pdf -2031,1957.11.04.R,04-Nov-1957,1957,Boat,Australia,New South Wales,Off Scotts,Fishing,"16-foot launch, occupants: George Casey, Jack Byrnes, Julian Reynolds & Denny Laverty",Unknown,"No injury, shark's teeth embedded in boat",N,The Age,11/04/1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.04.R-Fishing-launch.pdf +2031,1957.11.04.R,04-Nov-57,1957,Boat,Australia,New South Wales,Off Scotts,Fishing,"16-foot launch, occupants: George Casey, Jack Byrnes, Julian Reynolds & Denny Laverty",Unknown,"No injury, shark's teeth embedded in boat",N,The Age,11/04/1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.04.R-Fishing-launch.pdf 2030,1957.10.24,24-Oct-57,1957,Unprovoked,Solomon islands,Honiara,Honiara,Unknown,"Matthew Keia, a Lord Howe native",M,FATAL,Y,V.M. Coppleson (1962),p.248 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.24-Keia.pdf 2029,1957.10.23,23-Oct-57,1957,Unprovoked,Solomon islands,Honiara,Honiara,Unknown,Melanesian woman,F,FATAL,Y,V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.23-Melanesian-woman.pdf 2028,1957.09.02,02-Sep-57,1957,Unprovoked,Marshall islands,Eniwetok Atoll,Parry Island,Unknown,Walter L. Huges,M,Survived,N,V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.09.02-Huges.pdf @@ -3971,7 +3971,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 2024,1957.07.09,09-Jul-57,1957,Unprovoked,Australia,Torres Strait,Near Thursday Island,Diving for trochus,Conwell Kris,M,Right hand and arm bitten,N,The Age,7/11/1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.09-Kris.pdf 2023,1957.06.21,21-Jun-57,1957,Invalid,Cuba,Yucatan Channel,Unknown,M.V. Tropical sank. Sole survivor rode oil drums for 8 days without food or water.,Unknown,Unknown,"No injury, no attack, sharks in vicinity when the sea was calm",N,Daily Telegram,7/1/1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.06.21-Tropical.pdf 2022,1957.05.11,11-May-57,1957,Unprovoked,Australia,New South Wales,"Tea Gardens, north of Newcastle",Competing in spearfishing championship & towing dead fish,Leonard Higgins,M,Thigh bitten & few lacerations on abdomen & buttock,N,V.M. Coppleson (1958),p.175,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.11-Higgins.pdf -2021,1957.05.07,07-May-1957,1957,Unprovoked,Unknown,Unknown,Unknown,Fishing,Elison Sevo,M,Legs nipped & he bit shark's snout,N,Miami Daily News,5/7/1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.07.R-Sevo.pdf +2021,1957.05.07,07-May-57,1957,Unprovoked,Unknown,Unknown,Unknown,Fishing,Elison Sevo,M,Legs nipped & he bit shark's snout,N,Miami Daily News,5/7/1957,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.07.R-Sevo.pdf 2020,1957.05.00,May-57,1957,Unprovoked,Usa,Florida,"8 miles off St. Marks, Wakulla County",3 men & 2 boys picked up wearing life jackets and with inner tube,male,M,Leg lacerated,N,V.M. Coppleson (1962),p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.00-St-Marks.pdf 2019,1957.04.28,28-Apr-57,1957,Unprovoked,Usa,California,"Atascadero Beach, Morro Bay, San Luis Obispo County",Swimming,Peter Savino,M,"FATAL, seen with arm in mouth of shark. Body not recovered. ",Y,D. Miller & R. Collier,R. Collier,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.28-Savino_Collier.pdf 2018,1957.04.23,23-Apr-57,1957,Unprovoked,Australia,New South Wales,"Merewether Beach, Newcastle",Surfing,Paul Wilson ,M,Minor injuries,N,V.M. Coppleson (1958),pp.79 & 236,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.23-Wilson.pdf @@ -3997,7 +3997,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1998,1957.00.00.a,1957,1957,Unprovoked,Papua new guinea,"New Britain, Bismarck Archipelago",Duke of York Island,Dynamiting fish,male,M,FATAL,Y,A. M. Rapson,p. 149,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.a-Duke-of-York.pdf 1997,1956.12.26,26-Dec-56,1956,Unprovoked,Papua new guinea,Milne Bay Province,Samarai Island (south end),Spearfishing,Patterson (John) Nikuniko,M,"FATAL, left leg severed at hip, left torso removed ",Y,Beavis,Kwato Mission; District Commissioner,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.26-Nikuniko.pdf 1996,1956.12.24,24-Dec-56,1956,Unprovoked,Papua new guinea,Milne Bay Province,Samarai Island,Spearfishing,Titus Tiso,M,"FATAL, left arm, shoulder & chest bitten ",Y,Beavis,Kwato Mission; A. M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.24-Tiso.pdf -1995,1956.12.15.R,15-Dec-1956,1956,Unprovoked,Gabon,Estuaire Province,Owendo,Swimming,P. Allen,M,FATAL,Y,Alton Evening Telegraph,12/15/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.15.R-Allen.pdf +1995,1956.12.15.R,15-Dec-56,1956,Unprovoked,Gabon,Estuaire Province,Owendo,Swimming,P. Allen,M,FATAL,Y,Alton Evening Telegraph,12/15/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.15.R-Allen.pdf 1994,1956.12.09,09-Dec-56,1956,Provoked,New zealand,North Island,North Auckland,Fishing,Richard McKenzie,M,Bitten in cockpit of boat by shark caught 30 minutes earlier PROVOKED INCIDENT,N, The Argus,12/10/1956; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.09-McKenzie.pdf 1993,1956.10.27,27-Oct-56,1956,Unprovoked,South africa,Western Cape Province,"Glencairn, False Bay",Free diving for sinkers,Graham Smith,M,Right heel lacerated & swim fin removed by shark,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.27-Smith.pdf 1992,1956.10.20,20-Oct-56,1956,Unprovoked,Papua new guinea,Central Province,Kapakapa ,"Spearfishing, holding 5' speared fish",Bogana Sabati,M,"Left forearm & hand bitten, surgically amputated ",N,South Pacific Post,1/024/1956; A.M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.20-Sabati.pdf @@ -4009,7 +4009,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1986,1956.09.00.a,Sep-56,1956,Unprovoked,Italy,Tyrrenian Sea,1.5 miles south of San Felice Circeo ,Scuba diving,Goffredo Lombardo,M,Survived,N,G. Bini,A. De Maddalena & C. Moore,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.a-Lombardo.pdf 1985,1956.08.25,25-Aug-56,1956,Unprovoked,Papua new guinea,Central Province,"Paga Point or Fishermans Island, Port Moresby",Fishing ,"Kara Benagi, from Hula",M,"FATAL, tissue removed from abdomen & thigh ",Y,V.M. Coppleson (1958),pp.49-51 & 264; A.M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.25-Benagi.pdf 1984,1956.08.20,20-Aug-56,1956,Unprovoked,Papua new guinea,Central Province,"Paga Point, Port Moresby ",Fishing,native,M,"Leg bitten, but survived",N,V.M. Coppleson (1958),pp.49 & 264; A.M. Rapson,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.20-native.pdf -1983,1956.08.15.R,15-Aug-1956,1956,Unprovoked,Usa,Puerto Rico,North coast,Skin diving,Jose Luis Nufize Lago,M,FATAL,Y,Virgin Island Daily News,8/15/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.R-Lago.pdf +1983,1956.08.15.R,15-Aug-56,1956,Unprovoked,Usa,Puerto Rico,North coast,Skin diving,Jose Luis Nufize Lago,M,FATAL,Y,Virgin Island Daily News,8/15/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.R-Lago.pdf 1982,1956.08.15.b,15-Aug-56,1956,Provoked,Australia,Queensland,Near Southport,Diving,Lyle Davis,M,Laceration to arm when his dive buddy grabbed the shark PROVOKED INCIDENT,N,Central Queensland Herald,8/16/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.b-Davis.pdf 1981,1956.08.15.a,15-Aug-56,1956,Unprovoked,Usa,California,"Pismo Beach, San Luis Obispo County",Swimming near pier,Douglas Clarke,M,"Lacerated thigh, hand & shoulder",N,D. Miller & R. Collier,V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.a-DouglasClarke.pdf 1980,1956.08.01,01-Aug-56,1956,Unprovoked,South africa,KwaZulu-Natal,"Chain Rocks, Amanzimtoti",Free diving for crayfish,Maximilliaan Roual Van Dam,M,"No injury, right swim fin bitten",N,Umtali Post,8/8/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.01-VanDam.pdf @@ -4026,7 +4026,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1969,1956.06.28,28-Jun-56,1956,Unprovoked,Australia,Torres Strait,"Fishman's Island (near Port Moresby, PNG) ","Line fishing from Lakotoi, saw shoal of fish, dived overboard, had speared second fish & surfaced for air",Kila,M,"6"" gashes in foot & leg ",N,A. M. Rapson,p.149; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.28-Kila.pdf 1968,1956.06.22, 22-Jun-1956,1956,Boating,Portugal,Madeira,Off Funchal,Longling fishing,Manuel Pereira,M,"FATAL. Shark sank fishing boat, causing death by drowning",Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.22-Pereira.pdf 1967,1956.06.20,20-Jun-56,1956,Sea Disaster,Mid atlantic ocean,Unknown,Venezuelan aircraft lost,Air/Sea Disaster,Unknown,Unknown,FATAL x 6,Y,New York Times,6/21/1956; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.20-VenezuelanAircraft.pdf -1966,1956.05.26.R,26-May-1956,1956,Boating,South africa,Western Cape Province,Plettenberg Bay,Fishing,multiple boats including B.J. C. Brunt,Unknown,"No injury, sharks bit propellers, etc",N,Natal Mercuy,5/26/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.26.R-Brunt-boat.pdf +1966,1956.05.26.R,26-May-56,1956,Boating,South africa,Western Cape Province,Plettenberg Bay,Fishing,multiple boats including B.J. C. Brunt,Unknown,"No injury, sharks bit propellers, etc",N,Natal Mercuy,5/26/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.26.R-Brunt-boat.pdf 1965,1956.05.07,07-May-56,1956,Unprovoked,Unknown,Unknown,Unknown,"Free diving, working on U/W scenes for motion picture",Russ Shearman,M,FATAL,Y,V.M. Coppleson (1958),p.258; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.07-Shearman.pdf 1964,1956.05.00,May-56,1956,Unprovoked,Australia,Torres Strait,Unknown,Diving,Unknown,Unknown,"""Badly bitten by shark""",N, V.M. Coppleson (1958),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.00-diver.pdf 1963,1956.03.25,25-Mar-56,1956,Boating,Italy,Ligurian Sea,"Genova, S. Nazaro, Punta Vagno",Boating,Unknown,Unknown,No details,UNKNOWN,A. De Maddalena; Mojetta et al. (1997),,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.25-Italy.pdf @@ -4034,8 +4034,8 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1961,1956.03.04,04-Mar-56,1956,Unprovoked,Australia,Victoria,"Portsea Beach, near entrance to Port Phillip Bay","Swimming, attacked at surf carnival",John Patrick Wishart,M,FATAL,Y,V.M. Coppleson (1958),pp.110-111 & 241; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.04-Wishart.pdf 1960,1956.03.00.b,Mar-56,1956,Unprovoked,Australia,Western Australia,Fremantle,Attempting to set underwater endurance record,Theo Brown,M,"No injury to diver, but shark bit hole in his wetsuit",N,J. Green,p.34,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.00.b-Brown.pdf 1959,1956.02.26,26-Feb-56,1956,Unprovoked,Australia,Queensland,Pioneer River near Mackay,Diving into water,Barry Keith Antonini,M,"FATAL, large amount of tissue removed from leg, artery severed ",Y,B. Thompson; L. Schultz & M. Malin,p.521,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.26-Antonini.pdf -1958,1956.02.10.R,10-Feb-1956,1956,Unprovoked,Australia,Victoria,Cowes,Swimming,Brian Hamilton,M,Punctures to calves,N,The Argus,2/10/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.10.R-Hamilton.pdf -1957,1956.01.16.R,16-Jan-1956,1956,Unprovoked,Australia,Torres Strait,Palm Island,Diving for trochus,Stephen Conedo,M,Lacerations to thighs,N,The Age,1/15/1956; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16.R-Conedo.pdf +1958,1956.02.10.R,10-Feb-56,1956,Unprovoked,Australia,Victoria,Cowes,Swimming,Brian Hamilton,M,Punctures to calves,N,The Argus,2/10/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.10.R-Hamilton.pdf +1957,1956.01.16.R,16-Jan-56,1956,Unprovoked,Australia,Torres Strait,Palm Island,Diving for trochus,Stephen Conedo,M,Lacerations to thighs,N,The Age,1/15/1956; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16.R-Conedo.pdf 1956,1956.01.16,16-Jan-56,1956,Unprovoked,Costa rica,Unknown,San Juan River,Swimming,Lester Burton,M,"FATAL, leg severed ",Y,Washington Post,1/18/1956; Note: Webster,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16-Burton.pdf 1955,1956.01.05,05-Jan-56,1956,Unprovoked,Australia,New South Wales,North Bondi,Surf skiing,Ken Howell,M,"No injury, shark bumped his 17' ski",N,Sydney Morning Herald,1/16/1956,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.05-Howell.pdf 1954,1956.00.00.h,1956,1956,Unprovoked,Papua new guinea,Madang Province,"Singour, 60 miles south of Madang",Diving,native boy,M,Lower leg & foot lacerated,N,H.D. Baldridge,,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.h-NV native-boy.pdf @@ -4046,7 +4046,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1949,1956.00.00.c,1956,1956,Unprovoked,Papua new guinea,Milne Bay Province,"Kimuta, Renard Island",Unknown,Anonymous,Unknown,"Non-fatal, treated at Misima Hospital",N,A.M. Rapson,p. 149,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.c-Kimuta.pdf 1948,1956.00.00.b,1956,1956,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province",Hus Island ,Unknown,male,M,Right calf bitten,N,A.M. Rapson,p.149;,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.b-Hus-Island.pdf 1947,1956.00.00.a,1956,1956,Unprovoked,Papua new guinea,New Ireland Province,Enuk Island ,Unknown,Lamoman,M,"FATAL, head & neck bitten ",Y,J. McLachlan,Medical Officer,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.a-Enuk.pdf -1946,1955.12.31,31-Dec-1955,1955,Boating,Australia,Tasmania,Unknown,Ocean racing,yacht Even,Unknown,"No injury to occupants, shark gouged hull",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.31.R-Even.pdf +1946,1955.12.31,31-Dec-55,1955,Boating,Australia,Tasmania,Unknown,Ocean racing,yacht Even,Unknown,"No injury to occupants, shark gouged hull",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.31.R-Even.pdf 1945,1955.12.11,11-Dec-55,1955,Boating,Usa,Florida,½ mile offshore & 9 miles north of Fort Pierce,Fishing for pompano,"boat, occupants: P.D. Neilly & Charlton Anderson",Unknown,"No injury to occupants, shark released from net holed boat",N,R.F. Hutton,3/30/1959,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.11-boat Neilly_Charlton.pdf 1944,1955.11.16,16-Nov-55,1955,Unprovoked,Papua new guinea,Central Province,"Kalautu Village, Baibara at the mouth of Oibada River",Swimming,Niu Bodu,M,Right thigh bitten,N,J. G. Davis; A.M. Rapson,pp.143 & 148 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.16-NiuBodu.pdf 1943,1955.11.00,Nov-55,1955,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province","Low Island, Manus",Spearfishing,male,M,Right arm severely bitten,N,Rapson,p.149,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.00-LowIsland.pdf @@ -4060,7 +4060,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1935,1955.08.30.a,30-Aug-55,1955,Provoked,Usa,California,"Zuma Beach, Santa Monica, Los Angeles County",Surfing,Dale Strand,M,"Surfer grabbed shark, which turned & bit him and 2 lifeguards PROVOKED INCIDENT",N,SAF Case #244; D. Miller & R. Collier,V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.a-DaleStrand.pdf 1934,1955.08.26,26-Aug-55,1955,Unprovoked,Croatia, Primorje-Gorski Kotar County,Opatija,Swimming,Carla Podzum,F,FATAL,Y,R. Rocconi,,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.26-Podzum.pdf 1933,1955.08.08,08-Aug-55,1955,Unprovoked,American samoa,Tutuila Island,Pago Pago Bay,Swimming,Sailor from tuna vessel,M,"FATAL, abdomen bitten ",Y,M. Hosina,,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.08-Samoa.pdf -1932,1955.08.04.R,04-Aug-1955,1955,Provoked,Usa,South Carolina,Windy Hill Beach,Fishing,fisherman,M,Finger bitten by hooked shark PROVOKED INCIDENT,N,Kingsport Times,8/4/1955,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.04.R-SC-fisherman.pdf +1932,1955.08.04.R,04-Aug-55,1955,Provoked,Usa,South Carolina,Windy Hill Beach,Fishing,fisherman,M,Finger bitten by hooked shark PROVOKED INCIDENT,N,Kingsport Times,8/4/1955,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.04.R-SC-fisherman.pdf 1931,1955.08.00.c,Aug-55,1955,Unprovoked,North atlantic ocean ,Open sea,Unknown,Treading water,Wolfgang Emrich,M,No injury,N,H.D.Baldridge (1994),SAF Case #1489,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.c-NV-Emrich.pdf 1930,1955.08.00.a,Aug-55,1955,Boating,Australia,South Australia,Port Augusta,Fishing,"launch, occupant: Clarrie Whelan",Unknown,Whelan's head was injured when he fell to the deck as shark rammed boat,N,V.M. Coppleson (1958),pp.184-185,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.a-Whelan.pdf 1929,1955.07.25,25-Jul-55,1955,Unprovoked,Japan,Okayama Prefecture,Usimado-no-Seto,Unknown,Hideo Ishida,M,FATAL,Y,M. Hosina,,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.25-Ishida.pdf @@ -4069,7 +4069,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1926,1955.07.07,07-Jul-55,1955,Unprovoked,Yemen,Aden,Telegraph Bay,Swimming,Mrs. W. F. Dixon,F,"FATAL, back lacerated, arm & leg severed ",Y,Evening Sun (Baltimore),9/27/1955; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.07-Dixon.pdf 1925,1955.05.08,08-May-55,1955,Provoked,Usa,California,"Malibu, Los Angeles County",Spearfishing,Robert C. Yeargin,M,Diver hit shark & right forearm slightly injured PROVOKED INCIDENT,N,D. Miller & R. Collier,V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.08-Yeargin.pdf 1924,1955.05.00,May-55,1955,Unprovoked,Papua new guinea,"Admiralty Islands, Manus Province","Lou Island, south of Manus Island",Spearfishing,Sindlin,M,"Right forearm severely lacerated, left arm & hand lacerated",N,V.M. Coppleson (1958),pp.144-146 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.00-Sindilin.pdf -1923,1955.04.13.R,13-Apr-1955,1955,Unprovoked,Papua new guinea,Central Province,"Hadrian’s (Haidana?) Island, near Port Moresby",Spearfishing or fishing,Kairua Gairi,M,Left shoulder bitten,N,South Pacific Post,4/13/1955; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.13.R-Gairu.pdf +1923,1955.04.13.R,13-Apr-55,1955,Unprovoked,Papua new guinea,Central Province,"Hadrian’s (Haidana?) Island, near Port Moresby",Spearfishing or fishing,Kairua Gairi,M,Left shoulder bitten,N,South Pacific Post,4/13/1955; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.13.R-Gairu.pdf 1922,1955.04.12,12-Apr-55,1955,Unprovoked,Papua new guinea,Unknown,Abau,Spearfishing,Kula,M,No injury. Shark took string of fish then struck canoe,N,South Pacific Post,4/20/1955,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.12-Kula.pdf 1921,1955.04.00,Apr-55,1955,Unprovoked,Usa,Hawaii,"Hilo, Hawai'i","Fishing from boat, Kaimamla",Kanematsu Oshiro,M,Hand bitten,N,Tribune-Herald (Hilo,Hawaii),http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.00-Oshiro.pdf 1920,1955.03.09,09-Mar-55,1955,Unprovoked,Australia,New South Wales,Wamberal,Body surfing,Noel Langford,M,FATAL,Y,V.M. Coppleson (1958),pp.84-85 & 236; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.09-Langford.pdf @@ -4108,14 +4108,14 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1887,1954.07.28,28-Jul-54,1954,Unprovoked,Singapore,Unknown,Singapore Harbor,Closed circuit diving (submerged). Diving to recover jettisoned packets of opium for police,"C.B. Larkin, a Royal Navy diver",M,"FATAL, abdomen, buttock, right thigh & hands bitten ",Y,New York Times,7/29/1954; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.28-BritishDiver.pdf 1886,1954.07.27,27-Jul-54,1954,Boating,Italy,Venice Province,Off Chioggia,Fishing trawler Flavio Gioia ,10 crew,M,No injury to occupants. Shark tore nets & trawl and struck boat repeatedly,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.27-Trawler.pdf 1885,1954.07.15,15-Jul-54,1954,Unprovoked,The balkans,Slovenia,Between Punta Grossa & Koper,Swimming,a Hungarian refugee,M,FATAL,Y,R. Rocconi & C. Moore,GSAF V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.15-refugee.pdf -1884,1954.07.04.R,04-Jul-1954,1954,Unprovoked,Usa,Florida,Florida Keys,Unknown,a marine biology student from the University of Miami,Unknown,Small wound on upper thigh,N,Daytona Beach Sunday News- Journal,7/4/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.04.R-UniversityStudent.pdf +1884,1954.07.04.R,04-Jul-54,1954,Unprovoked,Usa,Florida,Florida Keys,Unknown,a marine biology student from the University of Miami,Unknown,Small wound on upper thigh,N,Daytona Beach Sunday News- Journal,7/4/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.04.R-UniversityStudent.pdf 1883,1954.07.03,03-Jul-54,1954,Unprovoked,Bermuda,South shore ,Elbow Beach,Swimming,"Sub-Lieut. Edwin Michael Marks, of H.M.S. Sheffield",M,"Left thigh bitten, chest lacerated & defense wounds on foot, fingers and hands",N,E.M. Marks; V.M. Coppleson (1958),pp.155 & 257; Randall,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.03-Marks.pdf -1882,1954.07.02.R,02-Jul-1954,1954,Unprovoked,Greece,Unknown,Kalamata,Swimming,2 males,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.02.R-Kalamata.pdf -1881,1954.07.01.R,01-Jul-1954,1954,Invalid,Croatia,Unknown,Pula,Unknown,male,Unknown,Human remains found in shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.01.R-Pula.pdf +1882,1954.07.02.R,02-Jul-54,1954,Unprovoked,Greece,Unknown,Kalamata,Swimming,2 males,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.02.R-Kalamata.pdf +1881,1954.07.01.R,01-Jul-54,1954,Invalid,Croatia,Unknown,Pula,Unknown,male,Unknown,Human remains found in shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.01.R-Pula.pdf 1880,1954.06.29,29-Jun-54,1954,Provoked,Usa,California,"Santa Monica, Los Angeles County",Grabbed shark & threw it on deck,"Frank Donahue, a movie stuntman",M,Right elbow & forearm lacerated PROVOKED INCIDENT,N,L.A. Times,6/30/1954; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.29-Donahue.pdf 1879,1954.06.27,27-Jun-54,1954,Unprovoked,Australia,Queensland,Fitzroy Island,Pearl diving from lugger Whyalla,Morslem Aken,M,"Shark bit right arm & shoulder, then Aken says, he ""knocked out"" the shark",N,Morning Bulletin (Rockhampton),6/30/1954 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.27-Aken.pdf 1878,1954.06.00,Jun-54,1954,Unprovoked,Unknown,Unknown,Unknown,Bathing alongside ship,Naval Rating,M,"FATAL, thigh bitten ",Y,V.M. Coppleson (1958),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.00-NavalRating.pdf -1877,1954.05.26.R,26-May-1954,1954,Unprovoked,Papua new guinea,East Sepik,Wewak,"Fishing / cleaning fish, dived into water to retrieve a lost fish","male, a native constable",M,"FATAL, decapitated ",Y,South Pacific Post,5/26/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.26.R-Constable.pdf +1877,1954.05.26.R,26-May-54,1954,Unprovoked,Papua new guinea,East Sepik,Wewak,"Fishing / cleaning fish, dived into water to retrieve a lost fish","male, a native constable",M,"FATAL, decapitated ",Y,South Pacific Post,5/26/1954,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.26.R-Constable.pdf 1876,1954.05.00,May-54,1954,Unprovoked,Papua new guinea,Madang Province,Near Madang Town,Unknown,child,Unknown,Foot severed,N,V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.00-child.pdf 1875,1954.04.08,08-Apr-54,1954,Invalid,Usa,Hawaii,"Wailupe, O'ahu",Fishing from shore,Gordon S. Chun,M,"Body recovered, mutilated by shark/s",Y,The Honolulu Advertiser,4/8/1954; Honoulu Star Bulletin 4/8/1954; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.08-Chun.pdf 1874,1954.04.00,Apr-54,1954,Provoked,Sudan?,Red Sea,Southern part ,Spearfishing,Jean Foucher-Createau,M,"Speared small shark, shark bit his thigh and/or buttock PROVOKED INCIDENT",N,V.M. Coppleson (1962),p.254; H.D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.00-Foucher-Creteau.pdf @@ -4137,9 +4137,9 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1858,1953.12.00,Dec-53,1953,Unprovoked,Australia,New South Wales,Maroubra Beach,Surf skiing,Jack Haynes,M,"No Injury, shark charged surfski",N, V.M. Coppleson (1958),p.42,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.00-Haynes.pdf 1857,1953.10.00,Oct-53,1953,Provoked,Australia,New South Wales,"Boat Harbour, north of Cronulla",Unknown,Len Kosky,M,"Hit by tail of speared shark, fell & hit head on rock & out cold for 30 minutes PROVOKED INCIDENT",N,V.M. Coppleson (1958),p.172,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.10.00-Kosky.pdf 1856,1953.09.27,27-Sep-53,1953,Unprovoked,Philippines,Luzon Island,Bohol,Unknown,Bartolome Mangubat,M,FATAL,Y,Palm Beach Post,9/28/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.27-Mangutbal.pdf -1855,1953.09.20.R,20-Sep-1953,1953,Unprovoked,Usa,California,"Santa Catalina Island, Los Angeles County",Scuba diving,Al Diamond,M,No injury,N,Oakland Tribune,9/20/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.20.R-Diamond.pdf +1855,1953.09.20.R,20-Sep-53,1953,Unprovoked,Usa,California,"Santa Catalina Island, Los Angeles County",Scuba diving,Al Diamond,M,No injury,N,Oakland Tribune,9/20/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.20.R-Diamond.pdf 1854,1953.09.18,18-Sep-53,1953,Sea Disaster,Usa,Georgia,200 miles east of Savannah,Aircaft exploded,Sgt. Larry Charles Graybill,M,Hand bitten,N,New York Times ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.18-Graybill.pdf -1853,1953.09.03.R,03-Sep-1953,1953,Unprovoked,Usa,New York,Rockaway Beach,Surf fishing,"Alan Stevenson, Jr.",M,Laceration to right lower leg,N,The Dispatch,9/3/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.03.R-Stevenson.pdf +1853,1953.09.03.R,03-Sep-53,1953,Unprovoked,Usa,New York,Rockaway Beach,Surf fishing,"Alan Stevenson, Jr.",M,Laceration to right lower leg,N,The Dispatch,9/3/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.03.R-Stevenson.pdf 1852,1953.09.02,02-Sep-53,1953,Unprovoked,Usa,Hawaii,"Waiau, Pearl Harbor, O'ahu",Crabbing,Daniel Gonsalves,M,Leg & foot bitten,N,Honolulu Star Bulletin,9/2/1953; G.H. Balazs; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.02-Gonsalves.pdf 1851,1953.08.00,Aug-53,1953,Invalid,Mexico,Guerrero,Acapulco,Free diving,Arthur R. Satz,M,No injury,N,H.D. Baldridge (1994) SAF Case #679,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.08.00-NV-Satz.pdf 1850,1953.07.31,31-Jul-53,1953,Unprovoked,Mexico,Colima,Manzanillo,Wading,Ema Aquilera Prada,F,FATAL,Y,V.M. Coppleson (1958),p.262; J.M. Alatorre,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.31-Prada.pdf @@ -4156,7 +4156,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1839,1953.04.00.b,Apr-53,1953,Unprovoked,Iran,Karun River,"near Ahvaz, 275 km from the sea",Unknown,Mr. Kaaby,M,Arm severed,N,B. Coad,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.b-Kaaby.pdf 1838,1953.04.00.a,Apr-53,1953,Unprovoked,Iran,Karun River,"near Ahvaz, 275 km from the sea",Swimming in midriver near sewage outlet & 400 m from a slaughterhouse,Mr. Nasser Seemrookh,M,Right forearm severed at the elbow,N,B. Coad,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.a-Seemrookh.pdf 1837,1953.03.22,Mar-53,1953,Unprovoked,Australia,New South Wales,"Long Reef, Collaroy",Spearfishing,Helmut Scheidl,M,Arm lacerated,N,V.M. Coppleson (1958),pp.166-167,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.22-Scheidl.pdf -1836,1953.03.19.R,19-Mar-1953,1953,Unprovoked,Australia,South Australia,"Schnapper Rock, Kirton Point",Spearfishing,Michael Leech,M,Abrasion,N,The Advertiser,3/19/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.19.R-Leech.pdf +1836,1953.03.19.R,19-Mar-53,1953,Unprovoked,Australia,South Australia,"Schnapper Rock, Kirton Point",Spearfishing,Michael Leech,M,Abrasion,N,The Advertiser,3/19/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.19.R-Leech.pdf 1835,1953.03.00.c,Mar-53,1953,Sea Disaster,Indian ocean,Unknown,Between Straits of Malacca and Sri Lanka,Adrift on a 4' raft for 32 days,"Ensio Tiira & Fred Ericsson, deserters from the French Foreign Legion",Unknown,Sharks attacked raft & consumed the body of Ericsson after he died,Y,E. Tiira,,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.b-Tiira.pdf 1834,1953.03.00.a,Mar-53,1953,Unprovoked,Papua new guinea,Milne Bay Province,"Off Rossel Island, Louisiade Archipelago",Went over side of boat at trochus ground,Captain of cutter Hetabu,M,"FATAL, arm & leg severed & shark smashed at his body with its tail ",Y,A.M. Rapson,p.148; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.a-Hetabu.pdf 1833,1953.02.18,18-Feb-53,1953,Provoked,Usa,Hawaii,"Barber’s Point, O'ahu",Bitten while cutting shark from net,James S. Takeuchi,M,Hand bitten PROVOKED INCIDENT ,N,V.M. Coppleson (1958),p.260; G.H. Balazs; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.18-Takeuchi.pdf @@ -4184,7 +4184,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1811,1952.07.13,13-Jul-52,1952,Provoked,Usa,California,"San Diego, San Diego County",Fishing,"Gerald Howard, on board sportsfishing boat Teresa A",M,Part of hand removed by shark he had caught PROVOKED INCIDENT,N,L.A. Times,7/14/1952 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf 1810,1952.07.05,05-Jul-52,1952,Unprovoked,Usa,Puerto Rico,"Mona Island, 40 miles west of the mainland ","Spearfishing, carrying fish on spear",Juan Suarez Morales,M,Leg lacerated & bone fractured ,N,V.M. Coppleson (1958),p.265; J. Randall in Sharks and Survival,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.05-Morales.pdf 1809,1952.05.27,27-May-52,1952,Unprovoked,Usa,California,"Imperial Beach, San Diego County",Swimming on surface,"Arthur E. Taylor, a navy diver & member+G1053 of a 24-man demolition team",M,Foot & swimfin bitten,N,R. Collier,pp.8-9,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.27-Taylor_Collier.pdf -1808,1952.05.07.R,07-May-1952,1952,Unprovoked,Australia,Western Australia,Boyup Brook,"Fishing, standing in water washing fish",Mr. M. King,M,Lacerations to 2 fingers & knuckles abraded,N,T. Peake,GSAF; West Australian,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.07.R-King.pdf +1808,1952.05.07.R,07-May-52,1952,Unprovoked,Australia,Western Australia,Boyup Brook,"Fishing, standing in water washing fish",Mr. M. King,M,Lacerations to 2 fingers & knuckles abraded,N,T. Peake,GSAF; West Australian,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.07.R-King.pdf 1807,1952.05.00,May-52,1952,Unprovoked,India,Unknown,Off Trivandrum (west coast),"Fishing, standing in water next to purse net",Ranji Lal,M,Lower leg lacerated,N,F. Dennis,p.10,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.00-Lal.pdf 1806,1952.04.06,06-Apr-52,1952,Boating,Australia,South Australia,Streaky Bay,Fishing for white sharks,25' cutter,Unknown,No injury to fisherman Alf Dean & other occupants;,N,Recorder (Port Pirie),4/7/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.06-AlfDean.pdf 1805,1952.04.00,Apr-52,1952,Provoked,Sudan,Red Sea State,"Suakin Harbor, Suakin Island",Spearfishing,Hans Hass,M,Right forearm lacerated by speared shark PROVOKED INCIDENT,N,H. Hass in We Come From the Sea,pp.42-46,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.00-Hass.pdf @@ -4202,22 +4202,22 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1793,1951.11.29,29-Nov-51,1951,Unprovoked,South africa,KwaZulu-Natal,"South Beach, Durban",Swimming,Harold Tait,M,Thigh bruised & abraded,N,G. Plowman,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.29-Tait.pdf 1792,1951.11.28.b,28-Nov-51,1951,Unprovoked,Jamaica,Kingston Parish,Kingston Harbor,Fishing,George Lewis,M,Lacerations to left hand,N,Daily Gleaner,11/29/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.b-Lewis.pdf 1791,1951.11.28.a,28-Nov-51,1951,Unprovoked,South africa,KwaZulu-Natal,Winkelspruit,Treading water,George Plowman,M,"Leg severed below knee, defense wounds on hand",N,G. Plowman,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.a-Plowman.pdf -1790,1951.11.23.R,23-Nov-1951,1951,Unprovoked,Unknown,Unknown,Unknown,Shipwrecked; adrift on raft for 2 days & 2 nights,3 fishermen,M,"FATAL, two men survived, one succumbed to shark bite & exhaustion",Y,Fresno Bee Republican,11/23/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.22-Philippines.pdf +1790,1951.11.23.R,23-Nov-51,1951,Unprovoked,Unknown,Unknown,Unknown,Shipwrecked; adrift on raft for 2 days & 2 nights,3 fishermen,M,"FATAL, two men survived, one succumbed to shark bite & exhaustion",Y,Fresno Bee Republican,11/23/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.22-Philippines.pdf 1789,1951.10.22,22-Oct-51,1951,Unprovoked,Australia,Queensland,"Ocean baths, Kissing Point Beach ",Swimming,Arthur James Kenealey,M,"FATAL, leg severed, shark dragged him through hole in protective net",Y,V.M. Coppleson (1958),pp.90-91; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.22-Kenealy.pdf 1788,1951.10.05,05-Oct-51,1951,Invalid,North atlantic ocean,South Carolina,400 miles off the le,cargo ship Southern Isle sank at 04h00,Unknown,Unknown,Sharks fed on bodies of the drowned,N,J. Waters,U.S. Coast Guard; San Mateo Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.05-SouthernIsle.pdf 1787,1951.09.29,29-Sep-51,1951,Unprovoked,Italy,Salerno,Amalfi,Swimming,Anna Wurn,F,FATAL,Y,C. Moore,GSAF; Courier-Mail,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.29-Wurn.pdf -1786,1951.09.03.R,03-Sep-1951,1951,Unprovoked,Italy,Salerno Province,Salerno,Fishing for squid,Luca Caputo,M,3 fingers severed when he used his hand as bait,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.03.R-Caputo.pdf -1785,1951.09.02-R,02-Sep-1951,1951,Unprovoked,Australia,Queensland,Fitzroy River near Rockhampton,"Body found on deserted luxury yacht, 38’ Christine",Dr. E. Al Joske,M,"FATAL, abdominal wounds & right leg severed at the hip ",Y,J. Green,p.34; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.02-Joske.pdf +1786,1951.09.03.R,03-Sep-51,1951,Unprovoked,Italy,Salerno Province,Salerno,Fishing for squid,Luca Caputo,M,3 fingers severed when he used his hand as bait,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.03.R-Caputo.pdf +1785,1951.09.02-R,02-Sep-51,1951,Unprovoked,Australia,Queensland,Fitzroy River near Rockhampton,"Body found on deserted luxury yacht, 38’ Christine",Dr. E. Al Joske,M,"FATAL, abdominal wounds & right leg severed at the hip ",Y,J. Green,p.34; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.02-Joske.pdf 1784,1951.08.17.b,17-Aug-51,1951,Unprovoked,Greece,Corfu Island,Off Royal Residence,Swimming,George Athanasenas,M,Injured but survived,N,A. De Maddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.b-Athanasenas.pdf 1783,1951.08.17.a,17-Aug-51,1951,Unprovoked,Greece,Corfu Island,Off Royal Residence,Swimming,Vanda Pierri,F,"FATAL, body not recovered Another man was also injured by the shark at same time (see below)",Y,A De Maddalena,,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.a-Perri.pdf -1782,1951.08.16.R,16-Aug-1951,1951,Unprovoked,Italy,Taranto,Torre Colimena,Diving (Hookah),male,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.16.R-TorreColimena.pdf +1782,1951.08.16.R,16-Aug-51,1951,Unprovoked,Italy,Taranto,Torre Colimena,Diving (Hookah),male,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.16.R-TorreColimena.pdf 1781,1951.08.00,Between 01-Aug-1951 & 08-Aug-1951,1951,Unprovoked,Columbia,Caribbean Sea,Cartegena,Bathing,"4 people killed in the past week, others injured",Unknown,FATAL,Y,New York Times,8/9/1951; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.00-Cartagena.pdf -1780,1951.07.19.R,19-Jul-1951,1951,Unprovoked,Usa,California,"Long Beach, Los Angeles County",Unknown,Archie Nottingham,M,Severe laceration to foot,N,Long Beach Independent,7/19/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.19.R-Nottingham.pdf +1780,1951.07.19.R,19-Jul-51,1951,Unprovoked,Usa,California,"Long Beach, Los Angeles County",Unknown,Archie Nottingham,M,Severe laceration to foot,N,Long Beach Independent,7/19/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.19.R-Nottingham.pdf 1779,1951.07.11,11-Jul-51,1951,Unprovoked,Pacific ocean,Unknown,In Los Angeles – Honolulu yacht race,Fell overboard,"Edward Sierks, skipper",M,"""Molested by shark that nibbled his bare feet"", rescued 30 hours later.",N,Daily Review,7/13/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.11-Sierks.pdf 1778,1951.06.25,25-Jun-51,1951,Unprovoked,Usa,Hawaii,"Kapehu Beach, Laupahoehoe, Hawai'i",Swept out to sea while fishing,Alejandro Nodura,M,"FATAL, victim seen in shark's mouth",Y,G.H. Balazs & A.K.H. Kam; J. Borg,p.72; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.25-Nodura.pdf 1777,1951.06.00,Jun-51,1951,Unprovoked,French polynesia,Tuamotus,"Outer edge of Hikueru, one of the Central Tuamotu atolls",Spearfishing,Don M. Clark,M,Right thumb bitten,N,D.M. Clark,,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.00-Clark.pdf 1776,1951.05.22,22-May-51,1951,Unprovoked,Unknown,Unknown,Unknown,Free diving,Brian Lanse,M,Lower leg severely injured,N,H.D.Baldridge (1994),SAF Case #1482,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.22-NV-Lanse.pdf -1775,1951.05.09.R,09-May-1951,1951,Provoked,Italy,Naples Province,"Torre del Greco, Naples",Unknown,Unknown,Unknown,3 men knocked to ground by harpooned shark PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.09.R-Naples.pdf +1775,1951.05.09.R,09-May-51,1951,Provoked,Italy,Naples Province,"Torre del Greco, Naples",Unknown,Unknown,Unknown,3 men knocked to ground by harpooned shark PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.09.R-Naples.pdf 1774,1951.03.26,26-Mar-51,1951,Provoked,Australia,New South Wales,Avalon,Fell off surf ski,Ken Davidson,M,Minor laceration to chest when he grabbed the shark by its tail PROVOKED INCIDENT,N,Canberra Times,1/27/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.26-Davidson.pdf 1773,1951.03.24,24-Mar-51,1951,Unprovoked,Australia,New South Wales,Sydney,"Fishing, casting in the surf",male,M,Severe lacerations of chest & thigh,N,LA Times,3/25/1951 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.24-Fisherman.pdf 1772,1951.03.15,15-Mar-51,1951,Unprovoked,South africa,KwaZulu-Natal,"South Beach, Durban",Body surfing,Heinrich Stapelberg,M,Left foot lacerated,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.15-Stapelberg.pdf @@ -4228,7 +4228,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1767,1951.01.03,03-Jan-51,1951,Invalid,Australia,New South Wales,Hawkesbury River,Unknown,male,M,Body found after a week in the water apparently bitten by shark/s,Y,G.P. Whitley (1951),p.194,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.03-HawkesburyRiver.pdf 1766,1951.00.00,1951,1951,Unprovoked,New guinea,Madang Province,Manam Island,Unknown,Unknown,Unknown,FATAL,Y,A. Bleakley; A. M. Rapson,p.148,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.00.00-ManamIsland.pdf 1765,1950.12.31,31-Dec-50,1950,Unprovoked,Australia,Queensland,Kirra,Paddling a surfboat,Brian Love,M,"No injury, shark bit oar",N,Examiner,1/1/1951,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.31-oar.pdf -1764,1950.12.19.R,19-Dec-1950,1950,Unprovoked,Australia,New South Wales,Jervis Bay,Swimming,2 swimmers,Unknown,Legs nipped,N,Canberra Times,12/19/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.19.R-JervisBay.pdf +1764,1950.12.19.R,19-Dec-50,1950,Unprovoked,Australia,New South Wales,Jervis Bay,Swimming,2 swimmers,Unknown,Legs nipped,N,Canberra Times,12/19/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.19.R-JervisBay.pdf 1763,1950.12.16,16-Dec-50,1950,Unprovoked,Australia,Queensland,"Palm Beach North, 5 miles north of Burleigh Heads, Brisbane",Treading water,"Desmond Quinlan, lifesaver",M,"FATAL, lower abdomen severely bitten & his left leg was severed",Y,R. A Smith; G.P. Whitley (1951),p.194,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.16-Quinlan.pdf 1762,1950.11.29,29-Nov-50,1950,Provoked,Australia,Northern Territory,Goulburn Island,Diving ,Irrwala,M,"Minor injury to hand and groin from shark ""caught on his fishing spear"" PROVOKED INCIDENT",N,Northern Standard,12/1/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.29-Irrwala.pdf 1761,1950.11.25,25-Nov-50,1950,Unprovoked,Australia,Queensland,"Burleigh Heads, Brisbane",Body surfing,Leo Vincent Ryan,M,Part of buttocks & fingers severed,N,G.P.Whitley (1951),p. 194,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.25-LeoVincentRyan.pdf @@ -4237,7 +4237,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1758,1950.10.04,04-Oct-50,1950,Unprovoked,Australia,Queensland,"Peterson's Beach, Sarina",Fishing,Valentine Sichter,M,Lacerations to right thumb and knee,N,Courier-Mail,10/6/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.04-Sichter.pdf 1757,1950.08.06,06-Aug-50,1950,Provoked,El salvador, La Libertad,50 miles off Port La Libertad,Jerked overboard while pole fishing for tuna,Robert L. Bottini,M,Left thigh bitten by hooked shark PROVOKED INCIDENT,N,Evening Sun (Baltimore),8/11/1950; Long Beach Press-Telegram,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.06-Bottini.pdf 1756,1950.08.00,Aug-50,1950,Unprovoked,Saudi arabia,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,Tissue stripped knee to foot,N,G.F. Mead,,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.00-PearlDiver-Arabia.pdf -1755,1950.07.27.R,27-Jul-1950,1950,Boating,Australia,South Australia,Streaky Bay,Fishing,40' fishing cutter,Unknown,No injury to occupants,N,The Mercury,7/27/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.27.R-Horsell-boat.pdf +1755,1950.07.27.R,27-Jul-50,1950,Boating,Australia,South Australia,Streaky Bay,Fishing,40' fishing cutter,Unknown,No injury to occupants,N,The Mercury,7/27/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.27.R-Horsell-boat.pdf 1754,1950.07.21,21-Jul-50,1950,Unprovoked,Japan,Sago Prefecture,Ariakeno Bay,Swimming,male,M,FATAL,Y,M. Hosina; K. Nakaya,,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.21-Japan.pdf 1753,1950.07.19,1950.07.19,1950,Provoked,Italy,Savona,Albenga,Fishing,male,Unknown,Harpooned shark bit his forehead PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.19-Albenga.pdf 1752,1950.07.14,15-Jul-50,1950,Unprovoked,Cuba,Caribbean Sea,Unknown,Swept off deck of S.S.Frontenac enroute from West Indies to US,"Johan Loekstad, a Norwegian seaman",M,Found at 21h30 by searchlight. Had been constantly harassed by sharks & had numerous lacerations,N,L.A. Times,8/20/1950; Evening Star (Washington,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.14-Loekstad.pdf @@ -4253,10 +4253,10 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1742,1950.03.26,26-Mar-50,1950,Unprovoked,South africa,Eastern Cape Province,"Off bank of Ntshala River, Morgan Bay",Wading,Mr. N. Wright,M,"Ankle & foot lacerated, defense wounds on hand",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.26-Wright.pdf 1741,1950.03.08,08-Mar-50,1950,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Lifesaving drill,Brian Von Berg,M,FATAL,Y,N.Cook; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.08-VonBerg.pdf 1740,1950.03.01,01-Mar-50,1950,Invalid,Australia,Western Australia,"City Beach, Perth",Suicide,Peter Szott,M,"His body, with bullet wound in head & right hand missing, washed shore - an apparent suicide",Y,G.P. Whitley (1951),p.186,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.01-Szott.pdf -1739,1950.02.18.R,18-Feb-1950,1950,Unprovoked,Australia,Western Australia,"Cottesloe, Perth",Spearfishing,male,M,Minor injury to leg,N,Mirror,2/18/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.18.R-Perth.pdf +1739,1950.02.18.R,18-Feb-50,1950,Unprovoked,Australia,Western Australia,"Cottesloe, Perth",Spearfishing,male,M,Minor injury to leg,N,Mirror,2/18/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.18.R-Perth.pdf 1738,1950.02.11,11-Feb-50,1950,Unprovoked,South africa,KwaZulu-Natal,"South Beach, Durban",Body surfing,Clive Dumayne,M,"FATAL, body not recovered ",Y,M. Dumayne,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.11-Dumayne.pdf 1737,1950.01.16,16-Jan-50,1950,Invalid,Usa,Hawaii,"Kahakuloa, Maui","Fishing, one of three fishermen swept into the sea by a large wave ",Gilbert S. Hotta,M,"His remains were recovered from a “huge shark” caught 3 days later. The remains of another fisherman, Harold Fujimoto, were recovered, but the body of the third fisherman, Hideo Tamura, was never found",Y,J. Borg,p.72; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.16-Hotta.pdf -1736,1950.01.12.R,12-Jan-1950,1950,Unprovoked,Australia,Victoria,South Werribee Beach,Swimming,D. Martin,M,3 lacerations to heel,N,Werribee Shire Banner,1/12/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.12.R-Martin.pdf +1736,1950.01.12.R,12-Jan-50,1950,Unprovoked,Australia,Victoria,South Werribee Beach,Swimming,D. Martin,M,3 lacerations to heel,N,Werribee Shire Banner,1/12/1950,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.12.R-Martin.pdf 1735,1950.00.00.m,1950,1950,Boating,Australia,Tasmania,Triabunna,Sitting on side of dinghy mending a net,Neil Drake,M,"No injury to occupant, shark bit side of dinghy",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.m-Drake-dinghy.pdf 1734,1950.00.00.l,1950,1950,Unprovoked,Sri lanka,Eastern Province,Heda Oya Estuary,Shark fishing,Aboobaker,M,Buttock removed,N,R.I. DeSilva,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.l-Abbobaker.pdf 1733,1950.00.00.k,1950,1950,Unprovoked,Sri lanka,Southern Province,Dodnduwa,Spearfishing,Langston Pereira,M,"No injury, but shark damaged one of his swim fins",N,R.I. DeSilva,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.k-Pereira.pdf @@ -4278,7 +4278,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1717,1949.08.28.a,28-Aug-49,1949,Unprovoked,Australia,Queensland,Yorkey’s Knob Beach near Cairns,Swimming,James Howard,M,"FATAL, right leg, thigh & fingers lacerated ",Y,G.P. Whitley (1951),p.194,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.a-Howard.pdf 1716,1949.08.17,17-Aug-49,1949,Invalid,Italy,Tuscany,Elba Island,Swimming,Domenico Murolo,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.17-Murolo.pdf 1715,1949.08.16,16-Aug-49,1949,Unprovoked,Australia,Tasmania,Flinders Island,Swimming near shore,Robert Kay,M,Hip lacerated,N,G.P. Whitley (1952),p.194;,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.16-Kay.pdf -1714,1949.08.10.R,10-Aug-1949,1949,Unprovoked,Italy,Calabria,Cosenza,Swimming,Giovanni Picarelli,M,Right hand severed,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.10.R-Picarelli.pdf +1714,1949.08.10.R,10-Aug-49,1949,Unprovoked,Italy,Calabria,Cosenza,Swimming,Giovanni Picarelli,M,Right hand severed,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.10.R-Picarelli.pdf 1713,1949.07.29,07-Jul-49,1949,Unprovoked,Iran,Shatt-el-Arab River,Unknown,Swimming,"R. Palmer, ship’s apprentice",M,Right leg lacerated,N,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.29-Palmer.pdf 1712,1949.07.28,28-Jul-49,1949,Unprovoked,Iran,Shatt-al-Arab River,Bashamir,Swimming,Ali,M,"FATAL, thigh lacerated, femur exposed ",Y,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.28-Ali.pdf 1711,1949.07.25,25-Jul-49,1949,Unprovoked,Usa,South Carolina,"Oketee River, Jasper County",Floating on his back,Ted Roach,M,"Abdomen abraded, thigh lacerated",N,V.M. Coppleson (1958),p.153,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.25-Roach.pdf @@ -4312,14 +4312,14 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1684,1948.09.22,22-Sep-48,1948,Unprovoked,Greece,Attica,Keratsini ,Swimming,Dimitris Parassakis ,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.22-Parasakis.pdf 1683,1948.09.19.b,19-Sep-48,1948,Unprovoked,Usa,Hawaii,"Off Makapauu Point, O'ahu",Swimming,Noah Kalama,M,Leg bitten,N,J. Borg,p.72; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.b-Kalama.pdf 1682,1948.09.19.a,19-Sep-48,1948,Unprovoked,Usa,Hawaii,"Off Makapauu Point, O'ahu",Fishing,male,M,Survived,N,V.M. Coppleson (1958); Honolulu Advertiser,8/9/1953; Hawaiian Tribune-Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.a-Hawaii.pdf -1681,1948.09.17.R,17-Sep-1848,1848,Unprovoked,Turkey,Adana Province,Yumurtalik,Swimming,Ali Kaymaz,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.17.R-Kaymaz.pdf +1681,1948.09.17.R,17-Sep-48,1848,Unprovoked,Turkey,Adana Province,Yumurtalik,Swimming,Ali Kaymaz,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.17.R-Kaymaz.pdf 1680,1948.09.15,15-Sep-48,1948,Sea Disaster,Mid atlantic ocean,Unknown,Bound from New York to London in ballast,Leicester abandoned in a hurricane,2 males,M,"FATAL, 2 men killed by sharks, 20 survived",Y,Glasgow Herald,9/20/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.15-Leicester.pdf 1679,1948.09.02,02-Sep-48,1948,Unprovoked,Iran,Bandar Ma’shur sea inlet,Unknown,Bathing or washing,Roghai,F,"FATAL, left arm & left buttock severed ",Y,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.02-Roghai.pdf 1678,1948.08.19,19-Aug-48,1948,Unprovoked,Iran,Shatt-al-Arab River,Unknown,Unknown,Abdul Hussain,M,"FATAL, right arm severely bitten & surgically amputated, died 12 to 14 hours later ",Y,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.19-Hussain.pdf 1677,1948.08.03,03-Aug-48,1948,Unprovoked,Iran,Shatt-al-Arab River,Bashamir,Swimming,Ismail,M,"Quadriceps lacerated, femur exposed",N,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.03-Ismail.pdf 1676,1948.08.00,Aug-48,1948,Provoked,Bahamas,Bimini Islands,Lerner Marine Laboratory,Spearing a shark,"Francisco Edmund Blanc, a scientist from National Museum in Paris",M,Shark that he speared bit his calf PROVOKED INCIDENT,N,E. Clark; P. Gilbert; V.M. Coppleson (1962),p.252,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.00-Blanc.pdf 1675,1948.07.01,01-Jul-48,1948,Unprovoked,Usa,US Virgin Islands,"St. John, Genti Bay",Swimming,Clide Osborne,M,FATAL,Y,Virgin Island Daily News,7/6/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.07.01-Osborne.pdf -1674,1948.06.06.R,06-Jun-1948,1948,Unprovoked,Northern mariana islands,Saipan,Unknown,Swimming,Pfc. Donald Tasking,M,Heel bitten,N,Wisconsin State Journal,6/6/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.06.06.R-Tasking.pdf +1674,1948.06.06.R,06-Jun-48,1948,Unprovoked,Northern mariana islands,Saipan,Unknown,Swimming,Pfc. Donald Tasking,M,Heel bitten,N,Wisconsin State Journal,6/6/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.06.06.R-Tasking.pdf 1673,1948.05.10,10-May-48,1948,Provoked,Iran,Shatt-al-Arab River,Unknown,"Fishing, shark caught in his net",Ali,M,"8"" x 4"" left antecubital fossa of muscle & skin removed PROVOKED INCIDENT",N,A. Anderson,M.D. / Lt. Col. R.S. Hunt,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.05.10-Ali.pdf 1672,1948.04.10,10-Apr-48,1948,Provoked,South africa,Western Cape Province,Gansbaai,"Bringing hooked, harpooned shark onboard boat","boat, occupants, P. Groenwald and others",M,Groenwald's arm lacerated by the shark PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.04.10-Groenwald.pdf 1671,1948.03.13.R,"13-Mar-1948 ""Bitten last weekend",1948,Unprovoked,Kenya,Coast Province,Mombasa,Unknown,"R.S. Draper, a young British soldier",M,FATAL,Y,Star,3/13/1948 & 2/20/1948,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.13-Draper.pdf @@ -4333,7 +4333,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1663,1948.00.00.b,1948,1948,Provoked,Papua new guinea,Bougainville (North Solomons),"Tung Island, off the west coast of Buka Island",Spearfishing,male,M,Bitten on face while taking shark off spear PROVOKED INCIDENT,N,A.M. Rapson,p.147,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.b-TungIsland.pdf 1662,1948.00.00.a,1948,1948,Boating,South africa,Western Cape Province,False Bay,Fishing,boat Marie ,Unknown,"No injury to occupants, boat holed by shark",N,T. Wallett,p.27,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.a-Marie.pdf 1661,1947.12.21,21-Dec-47,1947,Unprovoked,Australia,New South Wales,"Watson Taylor's Lake, 25 miles south of Port Macquarie",Fishing,Don Ireland,M,Leg gashed,N,Canberra Times,12/22/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.21-Ireland.pdf -1660,1947.12.15.R,15-Dec-1947,1947,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,Unknown,Unknown,"Human remains found in shark, possibly one of the crew of the wrecked fishing boat John Bull",Y,Cape Times,12/15/1947; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.15.R-JohnBull.pdf +1660,1947.12.15.R,15-Dec-47,1947,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,Unknown,Unknown,"Human remains found in shark, possibly one of the crew of the wrecked fishing boat John Bull",Y,Cape Times,12/15/1947; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.15.R-JohnBull.pdf 1659,1947.12.00,Dec-47,1947,Unprovoked,Senegal,Unknown,"Tiaroye, near Dakar, Cap Vert Peninsula",Fishing / diving,male,M,"FATAL, right thigh bitten ",Y,Dejou & d'Alucida (1948),,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.00-Dakar.pdf 1658,1947.11.23,23-Nov-47,1947,Boating,Australia,South Australia,3 miles out to sea off Glenelg,Fishing,10' dinghy,Unknown,"No injury to occupants, shark made 20 to 30 rushes at dinghy",N,V.M. Coppleson (1958),p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.23-dinghy.pdf 1657,1947.11.14.b,14-Nov-47,1947,Unprovoked,Australia,New South Wales,"Knobby's Beach, Newcastle",Fishing from surf ski,Peter Curruthers,M,"No injury, ski bumped",N,G.P. Whitley; Barrier Miner,11/17/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.b-Curruthers.pdf @@ -4344,13 +4344,13 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1652,1947.10.28,28-Oct-47,1947,Unprovoked,Australia,Northern Territory,"Mornington Island, Gulf of Carpentaria",Fishing in waist-deep water,"Dan, an aboriginal",M,Kneecap removed,N,G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.28-Dan.pdf 1651,1947.10.10,10-Oct-47,1947,Unprovoked,Brazil,Pernambuco,Piedade,Swimming ,Father Serafin de Oliveira,M,FATAL,Y,JC Online,6/25/2012,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.10-Serafim.pdf 1650,1947.08.04,04-Aug-47,1947,Unprovoked,Usa,Florida,In a canal 10 miles north of St Augustine,Swimming,"Ralph Reginald Rives, Jr.",M,"FATAL, calf bitten, leg surgically amputated ",Y,R. F. Hutton; Coppleson (1958),,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.08.04-Rives.pdf -1649,1947.07.27.R,27-Jul-1947,1947,Provoked,Usa,California,"Santa Monica, Los Angeles County",Fishing,Philip Dorn,M,PROVOKED INCIDENT,N,Joplin Globe,7/27/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.27.R-PhilipDorn.pdf -1648,1947.07.24.R,24-Jul-1947,1947,Unprovoked,Australia,Northern Territory,Darwin Harbour,Diving,A.S. Festing,M,Suit ripped,N,Canberra Times,7/25/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.24.R-Festing.pdf +1649,1947.07.27.R,27-Jul-47,1947,Provoked,Usa,California,"Santa Monica, Los Angeles County",Fishing,Philip Dorn,M,PROVOKED INCIDENT,N,Joplin Globe,7/27/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.27.R-PhilipDorn.pdf +1648,1947.07.24.R,24-Jul-47,1947,Unprovoked,Australia,Northern Territory,Darwin Harbour,Diving,A.S. Festing,M,Suit ripped,N,Canberra Times,7/25/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.24.R-Festing.pdf 1647,1947.07.15,15-Jul-47,1947,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Swimming,Keith Daldorf,M,Right thigh lacerated,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.15-Dalldorf.pdf 1646,1947.07.00,Jul-47,1947,Invalid,Greece,Carpathian Sea,Dodecanese Islands,Jumped overboard ,Nickolas Doulis,M,Shark involvement unconfirmed,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.07-Doulis.pdf 1645,1947.06.27,27-Jun-47,1947,Unprovoked,Usa,Hawaii,"Off Waianae, O'ahu",Fishing,Valentin Limatoc,M,"Left forearm, arm & leg lacerated",N,EWA Hospital; G.H. Balazs & A.K.H. Kam; J. Borg,p. 72; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.27-Limatoc.pdf 1644,1947.06.16,16-Jun-47,1947,Boating,Australia,New South Wales,Coogee,Fishing,12-foot dinghy Occupants: R. Hunt & a friend.,Unknown,"No injury to occupants, shark bumped & lifted dinghy",N,Geraldton Guardian and Express,6/317/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.16-fishermen-Coogee.pdf -1643,1947.05.13.R,13-May-1947,1947,Unprovoked,Kenya,Coast Province,"Kilindini Harbor, Mombasa",Swimming,merchant seaman,M,Knee grazed,N,Sunday Tribune,5/13/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.05.13.R-Kenya.pdf +1643,1947.05.13.R,13-May-47,1947,Unprovoked,Kenya,Coast Province,"Kilindini Harbor, Mombasa",Swimming,merchant seaman,M,Knee grazed,N,Sunday Tribune,5/13/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.05.13.R-Kenya.pdf 1642,1947.04.20,20-Apr-47,1947,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,"Aubrey ""Bill"" Nielsen",M,Ankle & shin lacerated,N,A. Nielsen,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.20-Neilson.pdf 1641,1947.04.11,11-Apr-47,1947,Unprovoked,South africa,KwaZulu-Natal,"Rocket Hut Beach, Durban",Body surfing,Robert Douglas,M,"Thigh severely lacerated, shin & calf lacerated",N,R. Douglas,T. Livesley,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.11-Douglas.pdf 1640,1947.04.06,06-Apr-47,1947,Unprovoked,Australia,New South Wales,Palm Beach,Surfing,Max Watt,M,"No injury, board scraped by shark",N,Courier-Mail,4/7/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.06-Watt.pdf @@ -4358,14 +4358,14 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1638,1947.03.12,12-Mar-47,1947,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Wading,Adam Johannes Kriel,M,"Hip abraded, right calf severely lacerated",N,A. Kriel,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.12-Kriel.pdf 1637,1947.03.09,09-Mar-47,1947,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,"Gabriel Botha, a lifesaver",M,Lacerations on buttock & right foot ,N,G. Botha,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.09-Botha.pdf 1636,1947.02.23,23-Feb-47,1947,Boating,Australia,Queensland,Palm Beach,Fishing,Unknown,Unknown,"No injury, shark holed boat",N,Canberra Times,2/24/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.23-boat-PalmBeach.pdf -1635,1947.02.06.R,06-Feb-1947,1947,Provoked,Bahamas,New Providence Island,Cable Beach,Attempting to ride a shark,Bill Whitman,M,Arm bitten PROVOKED INCIDENT,N,Miami Daily News,2/6/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.06.R-Whitman.pdf +1635,1947.02.06.R,06-Feb-47,1947,Provoked,Bahamas,New Providence Island,Cable Beach,Attempting to ride a shark,Bill Whitman,M,Arm bitten PROVOKED INCIDENT,N,Miami Daily News,2/6/1947,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.06.R-Whitman.pdf 1634,1947.02.00,Feb-47,1947,Unprovoked,Brazil,Rio de Janeiro,Copacabana,Bathing,Unknown,Unknown,FATAL,Y,Globo,5/7/1997,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.00-Brazil.pdf 1633,1947.01.14,14-Jan-47,1947,Boating,Australia,New South Wales,"Berry's Bay, Sydney Harbour",Rowing,"rowboat, occupants: Bob Scott & John Blackwell ",Unknown,"No injury, shark lifted the boat 0.5 m out of the water",N,A. Sharpe,p.73,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.14-rowboat.pdf 1632,1947.01.05,05-Jan-47,1947,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Peter C. Knoop,M,Flexed left leg lacerated,N,P. Knoop,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.05-Knoop.pdf 1631,1946.12.28,28-Dec-46,1946,Unprovoked,Australia,South Australia,Glenelg,Swimming near jetty with 2' piece of wood,Leo Streng,M,"Forearm & fingers lacerated, teethmarks on wood",N,G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.28-Streng.pdf -1630,1946.12.24.R,24-Dec-1946,1946,Boating,Australia,Queensland,"Auckland Creek, Gladstone",Unknown,Moored fishing launch of Harry Lone,Unknown,Shark jumped into cockpit,N,V.M. Coppleson (1958),p.181,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.24.R-Lone-launch.pdf +1630,1946.12.24.R,24-Dec-46,1946,Boating,Australia,Queensland,"Auckland Creek, Gladstone",Unknown,Moored fishing launch of Harry Lone,Unknown,Shark jumped into cockpit,N,V.M. Coppleson (1958),p.181,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.24.R-Lone-launch.pdf 1629,1946.11.20,20-Nov-46,1946,Unprovoked,Australia,Torres Strait,40 miles off Thursday Island,Pearl diving from lugger,"Esrona Johnson, Torres Strait islander",M,"FATAL, right arm severed",Y,G.P. Whitley (1951),p. 193;V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.11.20-EsronaJohnson.pdf -1628,1946.10.26.R,26-Oct-1946,1946,Unprovoked,Marshall islands,Kwajalein,Unknown,Fishing,American,Unknown,FATAL,Y,Washington Post,10/27/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.26.R-Kwajalein.pdf +1628,1946.10.26.R,26-Oct-46,1946,Unprovoked,Marshall islands,Kwajalein,Unknown,Fishing,American,Unknown,FATAL,Y,Washington Post,10/27/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.26.R-Kwajalein.pdf 1627,1946.10.14,14-Oct-46,1946,Unprovoked,Australia,New South Wales,"Mark’s Point, Swan Bay, Lake Macquarie",Swimming,Douglas Blackmore,M,Left leg lacerated,N,G.P. Whitley (1951),p.193; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.14-Blackmore.pdf 1626,1946.08.24,24-Aug-46,1946,Unprovoked,Israel,Gaza,Jura Village,Fishing,Kamel Mustapha Ayesh,M,Laceration to back,N,C. Moorem GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.24-KMAyesh.pdf 1625,1946.08.18,18-Aug-46,1946,Unprovoked,Australia,Queensland,"Ellis Beach, 20 miles from Cairns",Swimming after a tennis ball,Phillip South Collin,M,"FATAL, body not recovered",Y,G.P. Whitley (1951),p.193;V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.18-Collin.pdf @@ -4413,14 +4413,14 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1583,1944.10.25.b,25-Oct-44,1944,Sea Disaster,Philippines,Off Samar Island in the Gulf of Leyte,Unknown,USS Johnston DD 557 sunk on 10/24/1944 in the Battle off Samara. Crewmen were swimming beside a raft.,"William Clinton Carter, Jr. & 2 other men",M,"Clinton was bitten on his back, 2 others did not survive",Y,Abiline Reporter News,12/29/1944,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.b-Carter.pdf 1582,1944.10.25.a,25-Oct-44,1944,Unprovoked,Philippines,Unknown,Off Cape Engano,Parachuted into Pacific,US Naval ensign,M,"Shark grazed leg, leaving toothmarks",N,G.A. Llano in Airmen Against the Sea,p.66,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.a-Ensign.pdf 1581,1944.10.24,24-Oct-44,1944,Sea Disaster,Hong kong,Unknown,225 miles east of Hong Kong,Japanese POW ship Arisan Maru with 1800 American prisoners of war on board bound for slave labor camps was torpedoed by an American submarine,Unknown,M,Most of the men drowned & some were taken by sharks. Only only nine men survived,Y,internet (multiple),,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.24-ArisanMaru.pdf -1580,1944.10.23.R,23-Oct-1944,1944,Boating,Australia,Queensland,Tewantin,Fishing,dinghy,Unknown,No injury to occupants; shark bit dinghy leaving tooth fragments in its woodwork,N,G.P. Whitley (1951),p.193,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.23.R-Tewantin-dinghy.pdf +1580,1944.10.23.R,23-Oct-44,1944,Boating,Australia,Queensland,Tewantin,Fishing,dinghy,Unknown,No injury to occupants; shark bit dinghy leaving tooth fragments in its woodwork,N,G.P. Whitley (1951),p.193,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.23.R-Tewantin-dinghy.pdf 1579,1944.09.03,03-Sep-44,1944,Unprovoked,Usa,Maryland,North Beach,Swimming,Philip Stanton,M,Laceration to right lower leg,N,Washington Post,9/4/1944,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.03-PhilipStanton.pdf 1578,1944.09.00,Sep-44,1944,Unprovoked,Unknown,Unknown,Unknown,Fell overboard from US Navy PC boat,a sailor,M,FATAL,Y,E. Buleman,NMRI,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.00-sailor.pdf 1577,1944.08.20,20-Aug-44,1944,Unprovoked,South africa,KwaZulu-Natal,Margate,Swimming ,Dennis Nissen,M,"FATAL, body not recovered",Y,T. Blake,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.08.20-Nissen.pdf 1576,1944.07.22,22-Jul-144,1944,Unprovoked,South africa,Western Cape Province,Hartenbos,Swimming,Albert Schmidt,M,"FATAL, body not recovered",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.07.22-Schmidt.pdf 1575,1944.06.23,23-Jun-44,1944,Invalid,North pacific ocean,Unknown,Aircraft went down on 6/12/1944. He survived on raft for 11 days and was 150 miles off Guam when rescued,Unknown,Lt. Cmdr. Price,M,"When picked up by the USS Boyd DD 44 on 6/23/1944 his raft was ""surrounded by sharks""",N,USS Boyd archive,,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.06.23-Boyd-Rescue-incomplete.pdf 1574,1944.05.31,31-May-44,1944,Unprovoked,Usa,Florida,"Atlantic Beach, Mayport, Duval County",Bathing,Mary Ann Shands,F,Left calf bitten,N,H.W. Bigelow & C.W. Schroeder (1948) pp.70 & 368; V.M. Coppleson (1958) ; Randall,p.353 in Sharks & Survival; T. Helm,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.31-Shands.pdf -1573,1944.05.24.R,24-May-1944,1944,Unprovoked,Unknown,Unknown,Unknown,Unknown,a male from the Second Seabee Battalion,Unknown,Minor injury when shark tore off his boot,N,St. Petersburg Times,5/24/1943,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.24.R-Seabee.pdf +1573,1944.05.24.R,24-May-44,1944,Unprovoked,Unknown,Unknown,Unknown,Unknown,a male from the Second Seabee Battalion,Unknown,Minor injury when shark tore off his boot,N,St. Petersburg Times,5/24/1943,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.24.R-Seabee.pdf 1572,1944.05.04,04-May-44,1944,Unprovoked,Panama,Caribbean Sea,Unknown,Washed overboard by swell,"US Naval seaman, one of a crew on a Panama Sea Frontier Naval Patrol craft manned by Coast Guard",M,"FATAL. His back was bitten as he was being towed to ship by rescuer, Lieut (j.g.) Stanley Kurta, then the shark pulled him below the surface. ",Y,Star & Herald (Panama),5/17/1944; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.04.a-seaman.pdf 1571,1944.04.00,Apr-44,1944,Unprovoked,Nicaragua,Lake Nicaragua (fresh water),Unknown,Unknown,multiple bathers,Unknown,Some killed & others severely injured,Y,V.M. Coppleson (1958),,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.04.00-LakeNicaragua.pdf 1570,1944.03.26.b,26-Mar-44,1944,Unprovoked,South africa,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Gabriel Botha,M,Left thigh bitten,N,G. Botha,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.b-Botha.pdf @@ -4450,7 +4450,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1546,1943.05.17.b,17-May-43,1943,Sea Disaster,Central pacific,Unknown,68 miles east of Wallis Island,"S2N Navy scout plane went down, E.H. Almond & Lieut A.G. Reading in water","Arthur George Reading, Naval aviator",M,"Jaw dislocated & contusions from many blows on legs & body by shark fins, rescued after 14 hours",N,W.L. Jones; V.M. Coppleson (1962),p.217; G.A. Llano in Airmen Against the Sea,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.b-Reading.pdf 1545,1943.05.17.a,17-May-43,1943,Sea Disaster,Central pacific,Unknown,68 miles east of Wallis Island,"S2N Navy scout plane went down, E.H. Almond & Lieut A.G. Reading in water","E.H. Almond, US Navy radioman",M,"FATAL, right leg & left thigh bitten ",Y,V.M. Coppleson (1962),p.217; G.A. Llano in Airmen Against the Sea,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.a-Almond.pdf 1544,1943.05.14,14-May-43,1943,Sea Disaster,Australia,Queensland,Off Brisbane,Hospital Ship Centaur torpedoed & sunk by the Japanese submarine I-177,unknown,M,FATAL,Y,The Age,5/19/1953,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.14-Centaur.pdf -1543,1943.05.01.R,01-May-1943,1943,Sea Disaster,Unknown,Unknown,Unknown,ship torpedoed 400 miles off the African coas. Man was clinging to hatch cover,Clarence Master,M,"Leg, foot & arm bitten",N,St. Petersburg Times,5/1/1943,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.01.R-Clarence-Master.pdf +1543,1943.05.01.R,01-May-43,1943,Sea Disaster,Unknown,Unknown,Unknown,ship torpedoed 400 miles off the African coas. Man was clinging to hatch cover,Clarence Master,M,"Leg, foot & arm bitten",N,St. Petersburg Times,5/1/1943,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.01.R-Clarence-Master.pdf 1542,1943.04.05,05-Apr-43,1943,Invalid,Usa,Hawaii,"3 miles from shore off McGregor Point, Maui","Small boat swamped, 4 people swimming to shore but he fell behind the other 3 and vanished",Leonard Gant,M,On 29-Apr-1943 his remains (right forearm & swim trunks) were found in shark’s gut,Y,Honolulu Advertiser,8/9/1953; V.M. Coppleson (1958); J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.04.05-Gant.pdf 1541,1943.03.21,21-Mar-43,1943,Unprovoked,South africa,KwaZulu-Natal,"North Beach, Durban",Swimming,Eric Ridley,M,"FATAL, thigh lacerated, both calves bitten ",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.21-Ridley.pdf 1540,1943.03.14,14-Mar-43,1943,Sea Disaster,Unknown,Unknown,Unknown,"The 21,516-ton troopship Empress of Canada torpedoed and sunk by the Italian submarine Leonardo da Vinci",Unknown,Unknown,"Of the 1346 on board, 392 perished including 90 women & 44 crew. 1 person known to have been fatally injured by a shark.",Y,Greatships.net,,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.14-Empress-of-Canada.pdf @@ -4482,8 +4482,8 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1514,1942.08.08,08-Aug-42,1942,Sea Disaster,Unknown,Unknown,Unknown,Japanese aircraft shot down. He was one of two survivors rescued by the U.S. destroyer Mugford,Tamaki Amano,M,Lacerations to left arm,N,Appleton Post-Crescent,4/18/1964,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.08.08-Amano.pdf 1513,1942.07.12,12-Jul-42,1942,Sea Disaster,Unknown,Unknown,Unknown,The SS Potlach was torpedoed & sunk by the U-153 on 27-Jun-1942. ,John Martin Miller,M,FATAL Arm bitten,Y,Kingsport Times,8/6/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.12-Miller.pdf 1512,1942.07.06,06-Jul-42,1942,Provoked,Italy,Liguria,Savona,Sculling,Gino Bardolini,M,"After he hit the shark with an oar, the shark bit the oar and overturned the boat PROVOKED INCIDENT",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.06-Bardolini -1511,1942.06.11.R,11-Jun-1942,1942,Sea Disaster,Unknown,Unknown,Unknown,A 210-ton brig was sunk by a Japanese submarine. Some of the survivors were machine-gunned & some were taken by sharks,2 males,M,FATAL,Y,Canberra Times,6/11/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.11.R-Bay-of-Bengal.pdf -1510,1942.06.08.R,08-Jun-1942,1942,Invalid,Unknown,Unknown,Unknown,boat capsized during filming,Jacare,M,"Remains recovered from shark, but cause of death was probably drowning",Y,Time Magazine,6/8/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.08.R-Jacare-Brazil.pdf +1511,1942.06.11.R,11-Jun-42,1942,Sea Disaster,Unknown,Unknown,Unknown,A 210-ton brig was sunk by a Japanese submarine. Some of the survivors were machine-gunned & some were taken by sharks,2 males,M,FATAL,Y,Canberra Times,6/11/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.11.R-Bay-of-Bengal.pdf +1510,1942.06.08.R,08-Jun-42,1942,Invalid,Unknown,Unknown,Unknown,boat capsized during filming,Jacare,M,"Remains recovered from shark, but cause of death was probably drowning",Y,Time Magazine,6/8/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.08.R-Jacare-Brazil.pdf 1509,1942.06.04,04-Jun-42,1942,Unprovoked,Usa,Midway Atoll,Unknown,"Plane crashed in water, men in life raft",a pilot,M,Survived,N,Evening Standard,7/16/1942,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.04-Midway.pdf 1508,1942.06.00,Jun-42,1942,Unprovoked,International_water,300 miles east of St. Thomas (Virgin Islands),Unknown,On life raft tethered to lifeboat. A seaman put hand over side to rinse a cup,male,M,Forearm lacerated,N,V.M. Coppleson (1962),p.258,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.00-on-life-raft.pdf 1507,1942.05.09,09-May-42,1942,Unprovoked,Australia,Queensland,"Great Barrier Reef, off Cairns",Diving from lugger,Abraham Johnson,M,"Hands, arms & knee lacerated",N,V.M. Coppleson (1958),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.05.09-Johnson.pdf @@ -4511,7 +4511,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1485,1941.11.24,25-Nov-41,1941,Sea Disaster,South atlantic ocean,"North of Pernambuco, Brazil",Unknown,British cruiser Dunedin torpedoed & sunk by the U-124,Unknown,Unknown,"418 perished, only 67 survived, some of the men were taken by sharks",Y,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.24-Dunedin.pdf 1484,1941.11.19,19-Nov-41,1941,Sea Disaster,Australia,Western Australia,Shark Bay,German raider Kormoran was sunk in an engagement with HMAS Sydney,male from the Kormoran,M,Leg bitten,N,Canberra Times,12/4/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.19-Kormoran.pdf 1483,1941.09.25,25-Sep-41,1941,Unprovoked,Caribbean sea,Unknown,125 nm north of Aruba,SS Ethel Skakel foundered in Central America Hurricane of 1941,Scotty,M,Leg lacerated FATAL,Y,Washington Post. 10/2/1941,,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.09.25-Scotty.pdf -1482,1941.08.21.R,21-Aug-1941,1941,Provoked,Usa,New York,Montauk,Fishing,Captain Jack Kelly,Unknown,Laceration to left forearm from hooked shark PROVOKED INCIDENT,N,New York Times,8/21/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.21.R-Kelly.pdf +1482,1941.08.21.R,21-Aug-41,1941,Provoked,Usa,New York,Montauk,Fishing,Captain Jack Kelly,Unknown,Laceration to left forearm from hooked shark PROVOKED INCIDENT,N,New York Times,8/21/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.21.R-Kelly.pdf 1481,1941.08.05,05-Aug-41,1941,Invalid,Australia,New South Wales,Parramata River,Swimming,Ronald Dickerson,M,Shark involvement prior to death unconfirmed,Y,Canberra Times,8/6/1941,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.05-Dickerson.pdf 1480,1941.08.01,01-Aug-41,1941,Unprovoked,Usa,South Carolina,Sullivan's Island at entrance to Charleston Harbor,Swimming at edge of channel,"Howard E. Sweatmon, a soldier",M,Chest lacerated,N,V.M. Coppleson (1958),p.153; T. Helm,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.01-Sweatmon.pdf 1479,1941.07.22,22-Jul-41,1941,Boating,Usa,New Jersey,"Brielle, Monmouth County (Offshore)",Fishing for tuna,"Fishing boat Bingo III , occupants: Michael Perkins, George Hornack & Capt. Lonergan ",Unknown,"No injury to occupants, shark leapt into boat & bit cabin door",N,N.Y Times,7/23/1941; SAF Case #951,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.23-boatBingo.pdf @@ -4534,7 +4534,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1463,1941.00.00.a,1941,1941,Unprovoked,Papua new guinea,Unknown,"Gaire Village, between Rigo & Port Moresby",Unknown,Renagi Loi,M,"Foot severely bitten, surgically amputated",N,V.M. Coppleson (1962),p.248,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.a-RenagiLoi.pdf 1462,1940.12.28,28-Dec-40,1940,Unprovoked,Australia,New South Wales,"Stockton Beach, Newcastle",Standing on sandbank,Clarence Hammond,M,"FATAL, injuries to lower back ",Y,J. Green,p.33; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.28-Hammond.pdf 1461,1940.12.20,20-Dec-40,1940,Unprovoked,South africa,KwaZulu-Natal,"Inyoni Rocks, South Coast",Swimming,Desmond Chandley,M,"FATAL, multiple injuries to legs & buttocks ",Y,R. Kahn,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.20-Chandley.pdf -1460,1940.12.19.R,19-Dec-1940,1940,Unprovoked,Australia,Queensland,Double Island Beach,Fishing,Jack Ryan,M,Minor injury to leg,N,Soda Springs Sun,12/19/1940,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.19.R-JackRyan.pdf +1460,1940.12.19.R,19-Dec-40,1940,Unprovoked,Australia,Queensland,Double Island Beach,Fishing,Jack Ryan,M,Minor injury to leg,N,Soda Springs Sun,12/19/1940,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.19.R-JackRyan.pdf 1459,1940.12.10,10-Dec-40,1940,Provoked,Australia,Northern Territory,Darwin,Collecting fish in military trap when bitten by captured shark that had been shot by soldiers with Garten,Private. Michael Garten,M,Leg severely lacerated PROVOKED INCIDENT,N,V.M. Coppleson; G.P. Whitley (1951),p. 192,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.10-Garten.pdf 1458,1940.09.00,Sep-40,1940,Unprovoked,Panama,Panama Bay (Pacific Ocean),Otoque Island,Bathing,Roberto Menacho,M,FATAL,Y,V.M. Coppleson (1958),p.263,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.09.00-Menacho.pdf 1457,1940.07.13.b,13-Jul-40,1940,Unprovoked,Usa,South Carolina,"Folly Beach, Charleston County",Standing,William Tanner,M,Ankle bitten,N,V.M. Coppleson (1958),p.253,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.b-Tanner.pdf @@ -4562,10 +4562,10 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1435,1939.11.11,11-Nov-39,1939,Provoked,Australia,New South Wales,Maroubra,Unknown,boat,Unknown,Boat bitten by gaffed shark PROVOKED INCIDENT,N,G.P. Whitley,p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.11-boat-Maroubra.pdf 1434,1939.11.09,09-Nov-39,1939,Boating,Australia,New South Wales,Wollongong,Unknown,another boat,Unknown,No details,UNKNOWN,G.P. Whitley,p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.09-boat-2-Wollongong.pdf 1433,1939.11.06,06-Nov-39,1939,Boating,Australia,New South Wales,Wollongong,Unknown,boat,Unknown,No details,UNKNOWN,G.P. Whitley,p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.06-boat-1-Wollongong.pdf -1432,1939.11.02.R,02-Nov-1939,1939,Unprovoked,Unknown,Unknown,Unknown,Fishing,a Samoan boy,M,FATAL,Y,Canberra Times,11/2/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.02.R-Samoa.pdf -1431,1939.10.25.R,25-Oct-1939,1939,Unprovoked,Australia,Queensland,Near Restoration Rock off Portland Roads ,"Free diving for trochus shell, swimming to dinghy",Small Cobbe,M,"Both thighs were lacerated, recovered at Thursday Island hospital",N,G.P. Whitley,p. 20; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.25.R-Cobbe.pdf +1432,1939.11.02.R,02-Nov-39,1939,Unprovoked,Unknown,Unknown,Unknown,Fishing,a Samoan boy,M,FATAL,Y,Canberra Times,11/2/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.02.R-Samoa.pdf +1431,1939.10.25.R,25-Oct-39,1939,Unprovoked,Australia,Queensland,Near Restoration Rock off Portland Roads ,"Free diving for trochus shell, swimming to dinghy",Small Cobbe,M,"Both thighs were lacerated, recovered at Thursday Island hospital",N,G.P. Whitley,p. 20; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.25.R-Cobbe.pdf 1430,1939.10.04,04-Oct-39,1939,Unprovoked,Usa,Hawaii,"Kane'ohe Bay, Mokapu, O'ahu",Spearfishing & had just speared a ulua,James Akina,M,Hand bitten,N,G.H. Balazs & A.K.H. Kam; J. Borg,p.71; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.04-Akina.pdf -1429,1939.09.27.R,27-Sep-1939,1939,Unprovoked,Australia,Torres Strait ,Near Mabuiag Island,Pearl diving,Sammy Mira,M,"Leg severely bitten, surgically amputated",N,Cairns Post,9/27/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.09.27-Mira.pdf +1429,1939.09.27.R,27-Sep-39,1939,Unprovoked,Australia,Torres Strait ,Near Mabuiag Island,Pearl diving,Sammy Mira,M,"Leg severely bitten, surgically amputated",N,Cairns Post,9/27/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.09.27-Mira.pdf 1428,1939.08.01,01-Aug-39,1939,Provoked,Usa,California,"Off San Pedro, Los Angeles County",Fishing,John Ray,M,Harpooned shark bit his arm PROVOKED INCIDENT,N,L.A. Times,8/11/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.08.01-Ray.pdf 1427,1939.07.18,18-Jul-39,1939,Sea Disaster,Unknown,Unknown,Unknown,Japanese freighter Bokuyo Maru burned & sank,child,Unknown,Thought to have been taken by a shark,Y,Syracuse Herald,7/30/1939,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.18-Child-B-Maru.pdf 1426,1939.07.16,16-Jul-39,1939,Provoked,Bahamas,Andros Islands,Blue Hole,"Dress diving, filming shark & pulling it through the water for a motion picture scene",E.F. MacEwan,M,Minor injury to shoulder & back PROVOKED INCIDENT,N,Evening Sun (Baltimore),7/31/1939; E.R.F. Johnson,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.16-MacEwan.pdf @@ -4585,15 +4585,15 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1412,1938.08.29,29-Aug-38,1938,Unprovoked,China,North China,"Outer harbor, Hong Kong",Swimming alongside warship Tsingt-ao,"Ulrick Baker or William M. Baker, a sailor from H.M.S. Folkestone",M,"FATAL, leg severed ",Y,New York Times (William Baker),8/30/1938; [SAF Case #934]; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.29-Baker.pdf 1411,1938.08.18,18-Aug-38,1938,Provoked,Usa,California,"Near Encino, Los Angeles County",Fishing,Warren William,M,Lacerations to hand by hooked shark PROVOKED INCIDENT,N,Washington Post. 8/19/1938,p.24,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.18-WarrenWilliams.pdf 1410,1938.07.18,18-Jul-38,1938,Unprovoked,Usa,South Carolina,Charleston,Swimming,Maynard Tanner,M,Foot & ankle lacerated,N,Kingsport Times,7/18/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.18-MaynardTanner.pdf -1409,1938.07.17.R,17-Jul-1938,1938,Provoked,Unknown,Unknown,Unknown,Fishing,Ahmed,M,Injured by harpooned shark PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17.R-Turkey.pdf +1409,1938.07.17.R,17-Jul-38,1938,Provoked,Unknown,Unknown,Unknown,Fishing,Ahmed,M,Injured by harpooned shark PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17.R-Turkey.pdf 1408,1938.07.17,17-Jul-38,1938,Provoked,Usa,California,"Dana Point, Orange County","Fishing, removing gaff from shark's mouth","Harry Griffet, passenger on fishing boat Flyer",M,Leg bitten by gaffed shark PROVOKED INCIDENT,N,L.A. Times,7/18/1938 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17-Griffet.pdf 1407,1938.07.12,12-Jul-38,1938,Unprovoked,Australia,Torres Strait,Off Bathurst Island,"Hardhat diving from Japanese pearling lugger, Reiyo Maru",Okada,M,"FATAL, dragged out of diving helmet ",Y,G.P. Whitley,p.264; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.12-Okada.pdf 1406,1938.06.17,17-Jun-38,1938,Unprovoked,Nicaragua,Lower San Juan River,Unknown,"The schooner Elizabeth, bound from Bluefields, Nicaragua to the river port of San Carlos foundered",Elena Hodgson & Isaac Ollis,Unknown,"FATAL x 2, all other passengers & crew reached shore after a long swim",Y,NY Times; L. Schultz & M. Malin,p.558,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.17-Hodgson_Ollis.pdf 1405,1938.06.08,08-Jun-38,1938,Unprovoked,Australia,New South Wales,Manly,Hardhat diving,Charles Edwards,M,"No injury, the shark knocked him off his feet",N,The Canberra Times,6/10/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.08-Edwards.pdf 1404,1938.05.26,26-May-38,1938,Unprovoked,Costa rica,Nicoya Peninsula,Unknown,Fishing,Laureano Villareal,M,"FATAL, pulled overboard by tuna, & bitten by shark ",Y,V.M. Coppleson (1958),p.259 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.26.R-Villareal.pdf 1403,1938.05.15,15-May-38,1938,Unprovoked,Iraq,Basrah City,"Ashar Canal, where people wash clothes & kitchen pans","Swimming, naked",male,M,"Arm severed, but survived. Note: Some weeks later he was swimming at the same spot when a shark severed his right foot.",N,B.W. Coad & L.A.J. Al-Hassan,,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.15-Basrah.pdf -1402,1938.05.02.R,02-May-1938,1938,Unprovoked,India,West Bengal,Hooghley River near Budge-Budge,Bathing,Unknown,Unknown,"2 survived, 1 FATAL",Y,The Times (London),5/2/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.02.R-India.pdf -1401,1938.03.21.R,21-Mar-1938,1938,Unprovoked,Fiji,Viti Levu,Singatoka River,Wading,male,M,unknown,N,Time Magazine,3/21/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.21.R-FijianMethodist.pdf +1402,1938.05.02.R,02-May-38,1938,Unprovoked,India,West Bengal,Hooghley River near Budge-Budge,Bathing,Unknown,Unknown,"2 survived, 1 FATAL",Y,The Times (London),5/2/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.02.R-India.pdf +1401,1938.03.21.R,21-Mar-38,1938,Unprovoked,Fiji,Viti Levu,Singatoka River,Wading,male,M,unknown,N,Time Magazine,3/21/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.21.R-FijianMethodist.pdf 1400,1938.03.08,08-Mar-38,1938,Unprovoked,Australia,Northern Territory,Liverpool River,Canoe capsized by shark,aboriginal male,M,"Leg severed, but survived",N,V.M. Coppleson (1958) (in text); Sydney Morning Herald,3/16/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.08-Liverpool-River.pdf 1399,1938.01.21,21-Jan-38,1938,Provoked,Australia,New South Wales,Tweed Heads,Fishing,Robert Corowa,M,Thumb bitten by landed shark PROVOKED INCIDENT,N,Courier-Mail,1/22/1938; Sydney Morning Herald 1/26/1938; Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.21-Corowa.pdf 1398,1938.01.18,18-Jan-38,1938,Provoked,South africa,KwaZulu-Natal,"Vetch’s Pier, Durban","Watching seine netters with friends, one of whom picked up a netted shark",George Parkin,M,Leg bitten PROVOKED INCIDENT,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.18-Parkin.pdf @@ -4606,7 +4606,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1391,1938.00.00.a,1938,1938,Unprovoked,South africa,KwaZulu-Natal,"Bilanhlolo River Mouth, Ramsgate",Swimming,black male,M,"""Mauled""",N,H. Greenwood,,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.a-blackmale.pdf 1390,1937.11.13,13-Nov-37,1937,Sea Disaster,Usa,North Carolina,Off Cape Hatteraa,"Tzenny Chandris, a Greek freighter laden with scrap iron, foundered in heavy weather",3 crewmen,M,FATAL ,Y,Stevens Point Journal,11/15/1937; TIME,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.13-Tzenny-Chandris.pdf 1389,1937.11.11,11-Nov-37,1937,Unprovoked,Australia,Torres Strait ,Ota Reef,Diving for trochus,Nelan Kris,M,FATAL,Y,J. Green,p.33; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.11-Kris.pdf -1388,1937.11.06.R,06-Nov-1937,1937,Sea Disaster,Unknown,Unknown,Unknown,"Two canoes with 14 aboard blown to sea in a storm. While adrift for 3 week, one person fell overboard and was killed by a shark",Unknown,M,FATAL,Y,The Argus,11/6/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.06.R-Solomon-Islands.pdf +1388,1937.11.06.R,06-Nov-37,1937,Sea Disaster,Unknown,Unknown,Unknown,"Two canoes with 14 aboard blown to sea in a storm. While adrift for 3 week, one person fell overboard and was killed by a shark",Unknown,M,FATAL,Y,The Argus,11/6/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.06.R-Solomon-Islands.pdf 1387,1937.10.27.b,27-Oct-37,1937,Unprovoked,Australia,Queensland ,"Kirra Beach, Coolangatta",Swimming ,Jack Brinkley,M,FATAL,Y,J. Green; V.M. Coppleson,pp.51,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.b-Brinkley.pdf 1386,1937.10.27.a,27-Oct-37,1937,Unprovoked,Australia,Queensland,"Kirra Beach, Coolangatta",Swimming ,Norman Girvan,M,FATAL,Y,V.M. Coppleson,pp.51,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.a-Girvanpub.pdf 1385,1937.10.24.c,24-Oct-37,1937,Unprovoked,Australia,New South Wales,Byron Bay ,Swimming near jetty,Thomas McDonald,M,Tooth imprints on torso,N,The Age,10/25/1937; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.b-McDonald.pdf @@ -4618,9 +4618,9 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1379,1937.08.31,31-Aug-37,1937,Unprovoked,Australia,Torres Strait,"Mabuiag Island, between New Guinea & Australia","Diving from the lugger San, operated by the Protector of the Aborigines",Iona Asai,M,"Head, neck & shoulder bitten (In 1918, he was also bitten by a shark off Cairns)",N,The Maitland Daily Mercury,8/31/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.31-IonaAsai.pdf 1378,1937.08.16,16-Aug-37,1937,Invalid,Turkey,Unknown,Istanbul,Swimming,male,M,"No injury, no attack",N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.16-Istanbul.pdf 1377,1937.08.02,02-Aug-37,1937,Unprovoked,Panama,Colon Province,Limon Bay,Swimming,Jorge Fernandez,M,FATAL,Y,The Gleaner,8/12/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.02-Fernandez.pdf -1376,1937.07.16.R,16-Jul-1937,1937,Unprovoked,Australia,Northern Territory,Elcho Island,Pearl diving,A Japanese hard hat diver,M,FATAL,Y,Mansfield News-Journal,7/16/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.16.R-JapaneseDiver.pdf +1376,1937.07.16.R,16-Jul-37,1937,Unprovoked,Australia,Northern Territory,Elcho Island,Pearl diving,A Japanese hard hat diver,M,FATAL,Y,Mansfield News-Journal,7/16/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.16.R-JapaneseDiver.pdf 1375,1937.07.06,07-Jul-37,1937,Invalid,Italy,Liguria,Borgeo Verezzi,Unknown,row boat: 2 occupants,Unknown,No injury,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.06-Italy.pdf -1374,1937.06.28.R,28-Jun-1937,1937,Unprovoked,Greece,Unknown,Salonika?,Unknown,A. Arvanitakis ,Unknown,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.28.R-Salonika.pdf +1374,1937.06.28.R,28-Jun-37,1937,Unprovoked,Greece,Unknown,Salonika?,Unknown,A. Arvanitakis ,Unknown,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.28.R-Salonika.pdf 1373,1937.06.15.b,15-Jun-37,1937,Provoked,Australia,New South Wales,"Wallamba River, near entrance to Wallis Lake","Fishing from launch, fell into net with shark",David Emmerton,M,Bitten by netted shark PROVOKED INCIDENT,N,Sydney Morning Herald,6/19/1937; V.M. Coppleson (1958) (in text); SAF Cases #549 & 550,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.b-Emmerton.pdf 1372,1937.06.15, 15-Jun-1937,1937,Unprovoked,Usa,Texas,Galveston,Swimming,"Hal A. Thompson, Jr.",M,FATAL,Y,Amarillo Globe,6/16/1937 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.a-Thompson.pdf 1371,1937.05.30,30-May-37,1937,Provoked,Usa,Texas,Galveston,Fishing,William Siskalo,M,Leg nipped by hooked shark PROVOKED INCIDENT,N,Galveston Daily News,6/1/1937,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.30-Siskalo.pdf @@ -4643,7 +4643,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1354,1936.09.04,04-Sep-36,1936,Unprovoked,Usa,Hawaii,"Lahaina, Maui",Swimming,young male,M,Leg lacerated,N,J. Borg,p.71; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.09.04-Maui.pdf 1353,1936.08.24,24-Aug-36,1936,Unprovoked,Australia,Torres Strait,Near Mabuiag Island,"Trochus diving, but floating on surface","Tala Lui, a Torres Strait islander",M,Flexed right leg bitten,N,G.P. Whitley,p.264; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.24-TalaLui.pdf 1352,1936.08.11,11-Aug-36,1936,Provoked,Canada,Newfoundland,Georges Bank,Fishing for cod,"a dory of the schooner Raymonde, occupants: Albion Muise, Peter Dousette & Jack Shannon",Unknown,"No injury to occupants, hooked shark leapt onboard boat PROVOKED INCIDENT",N,NY Times,8/13/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.11-schoonerRaymonde.pdf -1351,1936.08.04,04-Aug-1936,1936,Unprovoked,Australia,Torres Strait,Bathurst Island,Pearl diving,Japanese diver,M,Torso bitten ,N,Nortnern Standard,8/4/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.04.R-PearlDiver.pdf +1351,1936.08.04,04-Aug-36,1936,Unprovoked,Australia,Torres Strait,Bathurst Island,Pearl diving,Japanese diver,M,Torso bitten ,N,Nortnern Standard,8/4/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.04.R-PearlDiver.pdf 1350,1936.08.00,Aug-36,1936,Boating,Usa,North Carolina,"Pamlico Sound off Frisco, Dare County",Fishing,"rowboat, occupants: James Mitchell-Hedges & Raymond McHenry",M,Shark rammed boat; no injury to occupants,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.00-PamlicoSound.pdf 1349,1936.07.25,25-Jul-36,1936,Unprovoked,Usa,Massachusetts,"Hollywood Beach, just above Mattapoisett Harbor, Buzzards Bay",Swimming crawl stroke,"Joseph Troy, Jr",M,"FATAL, finger severed, thigh bitten He died during the surgical amputation of his leg ",Y,B. R. Tilden,M.D.; NY Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.25-Troy.pdf 1348,1936.07.12,12-Jul-36,1936,Boating,Usa,New Jersey,"Long Branch, Monmouth County (offshore)",Fishing for bluefish,"22' boat, occupants: Saul White & Charles Dillione",Unknown,"No injury to occupants, shark leapt onboard boat",N,NY Times,6/13/1936 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.12-SaulWhite.pdf @@ -4658,7 +4658,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1339,1936.03.19,19-Mar-36,1936,Unprovoked,Australia,Queensland,"Near Forbes Island, Barrier Reef",Diving for trochus,"Norman, an aboriginal",M,Right forearm lacerated,N,G.P. Whitley,p.263; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.19-Norman.pdf 1338,1936.03.04.,04-Mar-36,1936,Boating,Australia,Northern Territory,Between Cape Hotham & Darwin (50 miles from Darwin),Rowing ,"dinghy, occupants: aborigine & lighthouse keeper",Unknown,"No injury to occupants, shark almost wrenched oar from aborigine",N,G.P. Whitley,p.263; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.04-CapeHotham.pdf 1337,1936.02.23,23-Feb-36,1936,Provoked,Australia,New South Wales,"Angourie, near Yamba",Touching the mouth of a supposedly dead shark,Eva Cameron,F,Finger bitten PROVOKED INCIDENT,N,Coppleson (1958),p. 176; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.23-Cameron.pdf -1336,1936.02.20..R,20-Feb-1936,1936,Unprovoked,Australia,Queensland,Brisbane River,Sculling,C.E. Slaughter,M,"No injury, scull sank",N,Nevada State Journal,5/2/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.20.R-Slaughter.pdf +1336,1936.02.20..R,20-Feb-36,1936,Unprovoked,Australia,Queensland,Brisbane River,Sculling,C.E. Slaughter,M,"No injury, scull sank",N,Nevada State Journal,5/2/1936,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.20.R-Slaughter.pdf 1335,1936.02.04,04-Feb-36,1936,Unprovoked,Australia,New South Wales,"South Steyne, Manly",Swimming,David Paton,M,"FATAL, taken by shark, body not recovered. Twenty months later, in October 1937, meshing (setting anti-shark gill nets) began at metropolitan beaches",Y,V.M. Coppleson (1958),pp.67 & 234; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.04-Paton.pdf 1334,1936.01.22,22-Jan-36,1936,Unprovoked,Australia,South Australia,"West Beach, near Adelaide","Swimming. Passer-by, Len Bedford, heard him shriek , saw shark leap from the water & swimmer disappeared",Ray Bennett,M,FATAL ,Y,Sydney Morning Herald,1/23/1936; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.22-Bennett.pdf 1333,1936.01.05,05-Jan-36,1936,Invalid,Australia,Queensland,"Main Beach, Southport",Surfing,Kevin Canavan,M,Disappeared & his torn clothing washed ashore,N,Canberra Times,1/7/1936; V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.05-Canavan.pdf @@ -4667,7 +4667,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1330,1935.12.23,23-Dec-35,1935,Provoked,Australia,Victoria,150 yards from the pier at Lorne,Cruising,16' motor launch owned by A. & E. Norton,Unknown,"Harpooned shark stove in bow (20"" x 10"" hole), boat sank PROVOKED INCIDENT",N,V.M. Coppleson (1958),p.183,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.12.23-NortonBoat.pdf 1329,1935.11.13,13-Nov-35,1935,Unprovoked,Australia,Torres Strait,Barrier Reef near Innisfail,Diving?,"James Messot, a Thursday Islander",M,Back & arm gashed but survived,N,NY Times,11/16/1935; Sun (Sydney) 1/13/1936 (pictures of healed wounds); V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1935.11.13-Messot.pdf 1328,1935.09.21,21-Sep-35,1935,Unprovoked,Usa,North Carolina,"Brown’s Inlet on New River, Onslow Beach",Swimming,Jere W. Fountain,M,"FATAL, thigh bitten ",Y, F. Schwartz,p.23; C. Creswell,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.21-Fountain.pdf -1327,1935.09.04.R,04-Sep-1935,1935,Unprovoked,Papua new guinea,Central Province,Hula,Swimming,Mailia Ola,M,FATAL,Y,Cairns Post,9/24/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.04.R-Hula.pdf +1327,1935.09.04.R,04-Sep-35,1935,Unprovoked,Papua new guinea,Central Province,Hula,Swimming,Mailia Ola,M,FATAL,Y,Cairns Post,9/24/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.04.R-Hula.pdf 1326,1935.08.26,26-Aug-35,1935,Unprovoked,Australia,Queensland,"At Flat Top, near Mackay","Fell overboard, hanging onto lifebuoy",Patrick Quinn,M,"FATAL. His body was not recovered, but about 3 weeks later 2 sharks were caught with human remains, thought to be those of Quinn",Y,V.M. Coppleson (1958),p.22; G. P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.26-Quinn.pdf 1325,1935.08.24,24-Aug-35,1935,Invalid,United kingdom,Isle of Wight,Atherfield,Fishing,Percy Wadham,M,"The hooked shark didn't cut his finger, he was injured by his line",N,C. Moore; Isle of Wight Press,,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.24-Atherfield 1324,1935.08.13,13-Aug-35,1935,Unprovoked,Australia,Torres Strait,"Near Warrior Reefs, Queensland",Diving for beche-de-mer from lugger,"Barani, a Papuan",M,"FATAL, right buttock & thigh bitten ",Y,J. Green,p.33; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.13 -Barani.pdf @@ -4676,16 +4676,16 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1321,1935.07.05,05-Jul-35,1935,Unprovoked,Panama,Unknown,off Culebra,"Fishing with dynamite, afterwards in water retrieving catch",Valentin Alonso,M,"FATAL, leg severed ",Y,New York Times,7/6/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.05-Alonso.pdf 1320,1935.07.01,01-Jul-35,1935,Unprovoked,Croatia,Adriatic Sea,"Susak / Fiume (Rijeka, Istria)",Swimming,Mira Kudlich,F,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.01-Kudlich.pdf 1319,1935.06.18,18-Jun-35,1935,Unprovoked,Usa,New Jersey,50 miles offshore,"Fishing for bluefish, shark leapt into dory",Captain Manuel Chalor of fishing trawler Nautilus,M,Arm lacerated by a shark that leapt onto boat ,N,NY Times,6/19/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.18-Chalor.pdf -1318,1935.06.05.R,05-Jun-1935,1935,Unprovoked,Solomon islands,Makira-Uluwa Province,Makira Island,Fishing,a native,M,FATAL,Y,Sydney Mail,6/5/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf +1318,1935.06.05.R,05-Jun-35,1935,Unprovoked,Solomon islands,Makira-Uluwa Province,Makira Island,Fishing,a native,M,FATAL,Y,Sydney Mail,6/5/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf 1317,1935.06.00.b,Jun-35,1935,Boating,Australia,South Australia,Off Port Broughton,Unknown,"A dinghy, occupant J.W. Wall",Unknown,Shark bumped dinghy twice,N,Australian Woman's Weekly,8/27/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf 1316,1935.06.00.a,Jun-35,1935,Unprovoked,Papua new guinea,Northern (Oro) Province,"Dobu Passage, D'Entrecasteaux Islands (between Normanby & Fergusson Islands)",Unknown,Unknown,Unknown,"Samoan missionary, Filemani, caught an 8'6"" shark after it had killed 1 man & 2 boys in space of few weeks",N,D.K. Webster,p.67,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.00.a-Filemani.pdf 1315,1935.05.19,19-May-35,1935,Provoked,South africa,KwaZulu-Natal,"North Pier, Durban",Put foot inside a landed & supposedly dead shark,"male, a spectator",M,"Foot bitten, required 1 week hospitalization PROVOKED INCIDENT",N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.19-spectator.pdf 1314,1935.05.12,12-May-35,1935,Unprovoked,Australia,Torres Strait,On edge of reef near Warrior Island,Pearl diving,"Andrew, a Torres Strait Islander",M,3 gashes on hand & wrist,N,V.M. Coppleson (1958),pp.103 & 243,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.12-Andrew.pdf 1313,1935.04.25,25-Apr-35,1935,Invalid,Australia,New South Wales,Coogee,"Disappeared 11 days earlier, probable homicide victim","James Smith, murder victim",M,Captive shark regurgitated his arm in the Coogee Aquarium,N,A. Sharpe,pp.28-32,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.25-SharkArmCase.pdf -1312,1935.04.12.R,12-Apr-1935,1935,Unprovoked,Unknown,Unknown,Unknown,Diving,Pearl Purdy Scott,F,Laceration to left leg,N,Port Arthur News,4/12/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.12.R-PearlPurdyScott.pdf -1311,1935.04.08.R,08-Apr-1935,1935,Unprovoked,Usa,California,"Hermosa Beach, Los Angeles County",Unknown,A. R. Davis,M,Laceration to hand ,N,Los Angeles Times,4/8/1935 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.08.R-Davis.pdf +1312,1935.04.12.R,12-Apr-35,1935,Unprovoked,Unknown,Unknown,Unknown,Diving,Pearl Purdy Scott,F,Laceration to left leg,N,Port Arthur News,4/12/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.12.R-PearlPurdyScott.pdf +1311,1935.04.08.R,08-Apr-35,1935,Unprovoked,Usa,California,"Hermosa Beach, Los Angeles County",Unknown,A. R. Davis,M,Laceration to hand ,N,Los Angeles Times,4/8/1935 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.08.R-Davis.pdf 1310,1935.03.30,30-Mar-35,1935,Unprovoked,Australia,Queensland,Barrier Reef off Mackay,Diving from dinghy for trochus shell,"Samuel, a Thursday islander",M,Buttocks injured by fin or a bump ,N,G.P. Whitley citing the Sydney Morning Herald,4/1/1935; 1951),http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.30-Samuel.pdf -1309,1935.03.25.R,25-Mar-1935,1935,Provoked,South africa,KwaZulu-Natal,"North Pier, Durban",Put foot inside mouth of supposedly dead shark,male,M,Injury to foot PROVOKED INCIDENT,N,Natal Coast Angler,3/25/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.25.R-Durban.pdf +1309,1935.03.25.R,25-Mar-35,1935,Provoked,South africa,KwaZulu-Natal,"North Pier, Durban",Put foot inside mouth of supposedly dead shark,male,M,Injury to foot PROVOKED INCIDENT,N,Natal Coast Angler,3/25/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.25.R-Durban.pdf 1308,1935.03.20,20-Mar-35,1935,Unprovoked,Australia,Torres Strait,Three Mile Reef off Lizard Island 50 miles north of Cooktown,"Pearl diving, but standing in the water","Kosam, a Torres Strait Islander",M,Left thigh abraded & 3 fingers lacerated,N,Sydney Morning Herald,3/20/1935; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.20-Kosam.pdf 1307,1935.03.13,13-Mar-35,1935,Provoked,Australia,Queensland,Pimpana River,Hauling in net with shark in it,William Charles Beitz,M,Calf & shin bitten PROVOKED INCIDENT,N,G.P. Whitley,,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.13-Beitz.pdf 1306,1935.03.11,11-Mar-35,1935,Unprovoked,Australia,New South Wales,Newcastle,Surfing,Eric McMichael,M,Abrasions to shins,N,Sydney Morning Herald,3/11/1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.11-McMichael.pdf @@ -4694,7 +4694,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1303,1935.02.14,14-Feb-35,1935,Unprovoked,Australia,New South Wales,Austinmer,Surfing (pneumatic surfboard),Darcy Lorenz,M,"Thigh lacerated, abrasions",N,V.M. Coppleson (1958),pp.45 & 233,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.02.14-Lorenz.pdf 1302,1935.01.24.b,24-Jan-35,1935,Unprovoked,Australia,New South Wales,"Off Ben Buckler, near Sydney",Fishing,William Johnson,M,"No injury, sleeve ripped",N,G.P. Whitley,p.263,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.b-Johnson.pdf 1301,1935.01.24.a,24-Jan-35,1935,Boating,Australia,Queensland,"Ross River, Townsville",Fishing for sharks,flat-bottomed boat,Unknown,No injury to occupants,N,G.P. Whitley,p.263,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.a-Flat-bottomed-boat.pdf -1300,1935.01.21.R,21-Jan-1935,1935,Invalid,Israel,Herzliyah,Sidny Ali,Unknown,Unknown,Unknown,human remains washed ahore,F,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.21.R-SidnyAli.pdf +1300,1935.01.21.R,21-Jan-35,1935,Invalid,Israel,Herzliyah,Sidny Ali,Unknown,Unknown,Unknown,human remains washed ahore,F,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.21.R-SidnyAli.pdf 1299,1935.01.17,17-Jan-35,1935,Invalid,Australia,Queensland,"Seaforth River, near MacKay",Unknown,small boy,M,No injury; onlookers saw shark heading for him and lifted him ashore,N,G.P. Whitley,p.263,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.17-Seaforth.pdf 1298,1934.12.31.b,31-Dec-34,1934,Unprovoked,Australia,New South Wales,George’s River at Kentucky,Splashing,Beryl Morrin,F,Hands severed,N,V.M. Coppleson (1958),pp.67 & 233; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.b-Morrin.pdf 1297,1934.12.31.a,31-Dec-34,1934,Unprovoked,Australia,New South Wales," St. George’s River at Moorebank, near Milperra Bridge",Swimming (lead swimmer in race),Richard George Soden,M,"FATAL, left leg bitten ",Y,V.M. Coppleson (1958),pp.67 & 233; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.a-Soden.pdf @@ -4705,7 +4705,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1292,1934.10.02,22-Oct-34,1934,Unprovoked,Australia,Torres Strait,Warrior Reefs,Freediving for trochus shell (submerged),"David Younger, Torres Strait Islander",M,"FATAL, forearm lacerated & surgically amputated, but died of gas gangrene 13 days afterwards ",Y, V.M. Coppleson (1958),pp.102-103,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.02-Younger.pdf 1291,1934.09.08,08-Sep-34,1934,Provoked,Bermuda,Hamilton,Nine miles off Frasconi Flats,Fishing,"Captain Earnest Gibbons, skipper of the cruiser Cupid",M,Right foot bitten by shark caught & taken onboard by Mrs. Tucker North PROVOKED INCIDENT,N,NY Times,9/10/193,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.09.08-Gibbons.pdf 1290,1934.08.27,27-Aug-34,1934,Boating,Italy,Sicily,Catania,Fishing on a boat,Unknown,M,No injury to occupants,N,A. De Maddalena; Giudici & Fino (1989),,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.27-Catania.pdf -1289,1934.08.26.R,26-Aug-1934,1934,Invalid,Italy / croatia,Unknown,Kralievica,Swimming,Zorca Prinz,F,"Reported to be FATAL, but found to be a false report; there was no attack",N,C. Moore R. Roccini,GSAF; D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26.R-Prinz.pdf +1289,1934.08.26.R,26-Aug-34,1934,Invalid,Italy / croatia,Unknown,Kralievica,Swimming,Zorca Prinz,F,"Reported to be FATAL, but found to be a false report; there was no attack",N,C. Moore R. Roccini,GSAF; D. Baldridge,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26.R-Prinz.pdf 1288,1934.08.26,26-Aug-34,1934,Unprovoked,Australia,Queensland,Off Eva Island 20 miles from Cardwell,Dived into sea from launch & bitten immediately,Robert Steele,M,"FATAL, body was not recovered",Y,G.P. Whitley citing Sydney Morning Herald 8/27/1934; Sunday Mail (Brisbane) 11/18/1934; G.P. Whitley,p.262; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26-Steeke.pdf 1287,1934.08.21,21-Aug-34,1934,Unprovoked,Croatia,Adriatic Sea,"Susak (Rijeka, Istria)",Swimming,Agnes Novak,F,FATAL,Y,NY Times,7/10/1934,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.21-Novak.pdf 1286,1934.08.05,05-Aug-34,1934,Unprovoked,Usa,Georgia,"Thunderbolt, Chatham County",Swimming,"William Aimar, Jr.",M,Lacerations to right leg,N,Cullman Democrat,8.9/1934,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.05-Aimar.pdf @@ -4720,43 +4720,43 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1277,1934.03.00,Mar-34,1934,Provoked,Australia,New South Wales,Cronulla,Fishing ,"18' launch, occupants: 2 fishermen",Unknown,"No injury to occupants, hooked shark, snapped at rudder & then attacked boat PROVOKED INCIDENT",N,V.M. Coppleson (1958),p.182; G.P. Whitley ,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.00-Cronulla-boat.pdf 1276,1934.02.24,24-Feb-34,1934,Unprovoked,Australia,Torres Strait,Adolphus Channel,Splashing in water ,"Rixon, an aboriginal",M,"Lacerated knee & foot, deep puncture wounds",N,V.M. Coppleson (1958),p.243,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.24-Rixon.pdf 1275,1934.02.22,22-Feb-34,1934,Unprovoked,Chile,Elqui Province,Coquimbo,Fell into the water,a soldier,M,FATAL,Y,Los Angeles Times,2/23/1934,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.22-Soldier-Chile.pdf -1274,1934.01.08.R,08-Feb-1934,1934,Boating,Turkey,Istanbul,"Haydarpasa jetty, Istanbul",Fishing,2 males,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08.R-Turkey.pdf +1274,1934.01.08.R,08-Feb-34,1934,Boating,Turkey,Istanbul,"Haydarpasa jetty, Istanbul",Fishing,2 males,M,No injury,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08.R-Turkey.pdf 1273,1934.01.27,27-Jan-34,1934,Unprovoked,Australia,New South Wales,"Lambeth Street Wharf, George’s River, East Hills (20 miles from river mouth)",Swimming outside the safety enclosure attempting to retrieve a tennis ball drifting toward midstream ,Wallace John McCutcheon,M,"Bumped, chest bitten & badly injured",N,V.M. Coppleson (1958),pp.67 & 232; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.27-McCutcheon.pdf 1272,1934.01.07,07-Jan-34,1934,Unprovoked,Australia,New South Wales,Queenscliff,Swimming on sandbar adjacent to channel,Colin Grant ,M,Severely lacerated right leg. Later surgically amputated & survived despite gas gangrene,N,V.M. Coppleson (1958),pp.65-66 & 232; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.07-Grant.pdf 1271,1933.11.20,20-Nov-33,1933,Unprovoked,Australia,Torres Strait,Near Boydong Cay,Free diving for trochus ,"Bili, a Papuan",M,"FATAL, right buttock & thigh bitten ",Y,Cairns Post,11/29/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.20-Bill.pdf 1270,1933.11.18,18-Nov-33,1933,Unprovoked,Australia,Queensland,Near Barrow Point,Pearl diving,"Alfred Aniba, a Torres Strait Islander",M,"Hand badly injured, right arm surgically amputated above wrist",N,V.M. Coppleson (1958),p.243,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.18-AlfredAniba.pdf -1269,1933.10.25.R,25-Oct-1933,1933,Unprovoked,Australia,Queensland,Off Bloomfield River,Diving,male,M,Hand severed,N,Courier-Mail,10/25/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.10.25.R-BloomfieldRiver.pdf -1268,1933.09.27.R,27-Sep-1933,1933,Boating,Israel,Unknown,Nabi Rubin,Fishing,2 males,M,"One man bitten on thigh, another on arm",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.09.27.R-NabiRubin.pdf +1269,1933.10.25.R,25-Oct-33,1933,Unprovoked,Australia,Queensland,Off Bloomfield River,Diving,male,M,Hand severed,N,Courier-Mail,10/25/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.10.25.R-BloomfieldRiver.pdf +1268,1933.09.27.R,27-Sep-33,1933,Boating,Israel,Unknown,Nabi Rubin,Fishing,2 males,M,"One man bitten on thigh, another on arm",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.09.27.R-NabiRubin.pdf 1267,1933.08.28.b,28-Aug-33,1933,Provoked,Usa,California,"Hermosa Beach, Los Angeles County","Fishing, caught a 15' shark & took it onboard",Nathaniel Myrick,M,Severely lacerated arm PROVOKED INCIDENT,N,D. Baldridge,p.90,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.b-Myrick.pdf 1266,1933.08.28.a,28-Aug-33,1933,Unprovoked,Usa,South Carolina,"Pawley’s Island, north of Charleston",Bathing,Kenneth Layton,M,Right heel & ankle bitten,N,E.M. Burton; V.M. Coppleson (1958),pp.153 & 253,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.a-Layton.pdf -1265,1933.08.26.R,26-Aug-1933,1933,Unprovoked,Usa,Connecticut,Mystic River,Swimming,Helen Clarke,F,Foot bitten,N,Hartford Courant,8/26/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.26.R-HelenClarke.pdf -1264,1933.07.07.R,07-Jul-1933,1933,Unprovoked,Usa,California,"San Diego, San Diego County",Unknown,Tom Schaliniski,M,Survived,N,Woodland Daily Democrat,7/7/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.07-Shalininski.pdf +1265,1933.08.26.R,26-Aug-33,1933,Unprovoked,Usa,Connecticut,Mystic River,Swimming,Helen Clarke,F,Foot bitten,N,Hartford Courant,8/26/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.26.R-HelenClarke.pdf +1264,1933.07.07.R,07-Jul-33,1933,Unprovoked,Usa,California,"San Diego, San Diego County",Unknown,Tom Schaliniski,M,Survived,N,Woodland Daily Democrat,7/7/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.07-Shalininski.pdf 1263,1933.07.03,03-Jul-33,1933,Unprovoked,Australia,Western Australia,Broome,Pearl diving,Unknown,M,"No injury, shark tore diving suit",N,Canberra Times,7/6/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.03-Pearl-diver-Broome.pdf 1262,1933.06.21,21-Jun-33,1933,Unprovoked,Usa,South Carolina,North end of Morris Island at mouth of Charleston Harbor,Sitting in 3' of water,Dayton Hastie,M,Right knee & left leg bitten,N,E. M. Burton (1935); V.M. Coppleson (1958),pp.152-153 & 252; Randall in Sharks and Survival,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.21-Hastie.pdf 1261,1933.06.16,16-Jun-33,1933,Unprovoked,Usa,South Carolina,"Folly Island, near Charleston",Standing,Emma G. Megginson,F,Left calf bitten,N,E. M. Burton; Note: A. Resciniti lists date as 16-Jul-1933,,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.16-Megginson.pdf 1260,1933.06.13,13-Jun-33,1933,Invalid,Australia,Northern Territory,Darwin,Fishing,Ah Cup,M,"No injury, ""shark chased him ashore""",N,V.M. Coppleson (1962),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.13-Chinese-fisherman.pdf 1259,1933.05.24,24-May-33,1933,Sea Disaster,Barbados,St Michael Parish,Off Pelican Island,Yacht of Michael Howell capsized,9 people in the water,Unknown,"5 survived & 4 perished, but shark involvement not confirmed",Y,New York Times 5/26/1933; L. Schultz & M. Malin,p.558; SAF Case #931,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.24-yacht-Barbados.pdf 1258,1933.05.23,23-May-33,1933,Provoked,Australia,Queensland,Off Stradbroke Island,Fishing,Mr. E.B. Port,M,Laceration to lower leg by netted shark PROVOKED INCIDENT,N,Brisbane Courier,5/24/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.23-Port.pdf -1257,1933.06.08.R,08-Jun-1933,1933,Unprovoked,Australia,Queensland,Currumbin,Treading water,Walter Mitchell,M,Lacerations to legs from fins of shark,N,Townsville Daily Bulletin,6/9/1933 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.08-Mitchell.pdf +1257,1933.06.08.R,08-Jun-33,1933,Unprovoked,Australia,Queensland,Currumbin,Treading water,Walter Mitchell,M,Lacerations to legs from fins of shark,N,Townsville Daily Bulletin,6/9/1933 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.08-Mitchell.pdf 1256,1933.05.03,03-May-33,1933,Sea Disaster,Cuba,Havana Province,"Off Jaimanitas Yacht Club, Havana",Swimming to shore from capsized sailboat,Majin Alvarez Piedra,M,FATAL,Y,NY Times,May 4,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.03-sailor_cuba.pdf 1255,1933.04.10,10-Apr-33,1933,Unprovoked,Usa,Florida,"Miami Beach, Miami-Dade County",Swimming,Thomas N. Martin,M,FATAL,Y,New York Herald Tribune,4/12/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.04.10-Martin.pdf 1254,1933.02.26,26-Feb-33,1933,Unprovoked,Australia,New South Wales,Sydney,Standing on his hands,W. McCann,M,Abrasions to legs,N,Townsville Daily Bulletin,2/27/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.26-McCann.pdf -1253,1933.02.15.R,15-Feb-1933,1933,Unprovoked,Australia,Torres Strait,"Barrow Point, 100 miles north of Cooktown, Queensland",Diving for trochus from dinghy when seized by shark 6' below the surface,"Tumia, a Torres Strait Islander",M,"Injuries to arm, shoulder & chest, took 2 days to reach hospital",N,La Crosse Tribune And Leader-Press,5/15/1933; V.M. Coppleson.Q12. (1933); V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.15.R-Tumia.pdf +1253,1933.02.15.R,15-Feb-33,1933,Unprovoked,Australia,Torres Strait,"Barrow Point, 100 miles north of Cooktown, Queensland",Diving for trochus from dinghy when seized by shark 6' below the surface,"Tumia, a Torres Strait Islander",M,"Injuries to arm, shoulder & chest, took 2 days to reach hospital",N,La Crosse Tribune And Leader-Press,5/15/1933; V.M. Coppleson.Q12. (1933); V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.15.R-Tumia.pdf 1252,1933.02.14,14-Feb-33,1933,Boating,Australia,South Australia,Adelaide,Unknown,boat,Unknown,No injury to occupants. Shark leapt into boat during sailing races,N,G.P. Whitley citing Sydney Morning Herald,2/16/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.14-Shark-leaps-in-boat.pdf 1251,1933.02.12,12-Feb-33,1933,Provoked,Australia,South Australia,"Port River, Adelaide",Fishing,Donald Jukes,M,Forearm injured by hooked shark PROVOKED INCIDENT,N,The Advertiser,2/13/1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.12-Jukes.pdf 1250,1933.01.04,04-Jan-33,1933,Unprovoked,Australia,Queensland,"Strand Beach, Kissing Point, Townsville",Swimming,Stanley Victor Locksley,M,Severe abdominal wounds FATAL (Note: 14 days earlier a dog was bitten in two by a large shark),Y,V. M. Coppleson.Q11. (1933); V.M. Coppleson (1958),pp.90 & 238,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.01.04-Locksley.pdf -1249,1932.12.11.R,11-Dec-1932,1932,Unprovoked,Australia,Northern Territory,Arnhem Land,Unknown,Unknown,M,Leg bitten,N,Sunday Times (Perth),12/11/1932 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.11-ArnhemLand.pdf -1248,1932.12.09.R,09-Dec-1932,1932,Provoked,New zealand,North Island,Mahurangi River Mouth,Fishing ,Mr. L. E. Brasting,M,Laceration to hand PROVOKED INCIDENT,N,New Zealand Herald,12/9/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.09-Brasting.pdf +1249,1932.12.11.R,11-Dec-32,1932,Unprovoked,Australia,Northern Territory,Arnhem Land,Unknown,Unknown,M,Leg bitten,N,Sunday Times (Perth),12/11/1932 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.11-ArnhemLand.pdf +1248,1932.12.09.R,09-Dec-32,1932,Provoked,New zealand,North Island,Mahurangi River Mouth,Fishing ,Mr. L. E. Brasting,M,Laceration to hand PROVOKED INCIDENT,N,New Zealand Herald,12/9/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.09-Brasting.pdf 1247,1932.11.09,08-Nov-32,1932,Sea Disaster,Unknown,Unknown,Unknown,Hurricane & Tidal Wave,Unknown,Unknown,Unknown,UNKNOWN,Barrier Miner,11/14/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.11.09-Hurricane-Cuba.pdf 1246,1932.10.31,31-Oct-32,1932,Unprovoked,Australia,New South Wales,"Redhead Beach, Newcastle",Swimming,Reginald Ogilvie,M,"Torso bitten with pneumothorax, slight lacerations on left hand",N,V.M. Coppleson.N19. (1933); V.M. Coppleson (1958),pp.80 & 232,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.31-Ogilvie.pdf 1245,1932.10.11,11-Oct-32,1932,Unprovoked,Cape verde,Barlavento Islands,São Vicente ,Swimming,Michele Ruck,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.11-Ruck.pdf -1244,1932.09.26.R,26-Sep-1932,1932,Unprovoked,Fiji,Viti Levu Island,Navua,Catching a turtle,male,M,Left arm severely bitten,N,Queensland Times,9/26/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.09.26.R-Fiji.pdf +1244,1932.09.26.R,26-Sep-32,1932,Unprovoked,Fiji,Viti Levu Island,Navua,Catching a turtle,male,M,Left arm severely bitten,N,Queensland Times,9/26/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.09.26.R-Fiji.pdf 1243,1932.08.30.b,30-Aug-32,1932,Provoked,Australia,New South Wales,Bondi,Unknown,male,M,Hand bitten by landed shark PROVOKED INCIDENT,N,G.P. Whitley,,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.b-male-Bondi.pdf 1242,1932.08.30.a,30-Aug-32,1932,Provoked,Australia,New South Wales,Newcastle,Unknown,D. Bennett,M,Bitten by landed shark PROVOKED INCIDENT,N,G.P. Whitley; J. Green,p.32,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.a-Bennett.pdf 1241,1932.08.10,10-Aug-32,1932,Provoked,Usa,New Jersey,"Offshore, between Mantoloking & Point Pleasant, Ocean County",Fishing,John Olsen,M,Hooked shark gashed right leg PROVOKED INCIDENT,N,Lime Springs Herald,9/22/1932; R. Heyer,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.10-Olsen.pdf 1240,1932.08.09,09-Aug-32,1932,Unprovoked,Australia,Torres Strait,Unknown,Pearl diving,"Jack Giblett or Gilbert, Torres Strait Islander",M,Bitten on buttock & leg,N,J. Green,p.32; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.09-JackGiblett.pdf 1239,1932.08.06,06-Aug-32,1932,Provoked,Bahamas,New Providence Island,Nassau,On expedition filming a feature movie & standing on tripod,George Vanderbilt,M,"No injury, hooked shark rammed tripod PROVOKED INCIDENT",N,New York Times,8/7/1932 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.06-Vanderbilt.pdf -1238,1932.07.14.R,14-Jul-1932,1932,Invalid,Usa,Texas,Galveston,Unknown,male,M,Body recovered from shark but death due to shark bite was not confirmed,Y,IGFA,,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.14.R-Galveston.pdf +1238,1932.07.14.R,14-Jul-32,1932,Invalid,Usa,Texas,Galveston,Unknown,male,M,Body recovered from shark but death due to shark bite was not confirmed,Y,IGFA,,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.14.R-Galveston.pdf 1237,1932.07.02,02-Jul-32,1932,Boating,Canada,Bay of Fundy,16 km west of Digby Gut,"Fishing, hauling in fishing gear"," 7.6 m motorized boat, occupants: fisherman & his son",M,"No injury to occupants, shark bumped boat repeatedly",N,Piers (1933),,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.02-Bay-of-Fundy.pdf 1236,1932.06.28,28-Jun-32,1932,Provoked,Usa,New Jersey,"10 miles offshore from Sea Isle City, Cape May County",Fishing,Antonio Fonzzo,M,Knee bitten by boated shark PROVOKED INCIDENT,N,NY Times,6/29/1932 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.28-Fonzzo.pdf 1235,1932.06.26,26-Jun-32,1932,Provoked,Usa,New Jersey,"Off Ocean City, Cape May County",Fishing,Giacomo Giavanco,M,Ankle broken when 500-lb boated shark lashed him with its tail PROVOKED INCIDENT,N,NY Times,6/29/1932 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.26-Giacomo.pdf @@ -4783,15 +4783,15 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1214,1931.08.25,25-Aug-31,1931,Unprovoked,Cuba,Havana Province,"Miramar subdivision, Havana",Swimming a quarter mile offshore,Pablo Medina,M,"FATAL, right leg bitten ",Y,New York Times,8/27/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.25-Medina.pdf 1213,1931.08.23,23-Aug-31,1931,Unprovoked,Cuba,Havana Province,"Miramar, Havana",Swimming ,Laureano Rodriguez,M,"FATAL, ""rescuers saw shark trying to drag him under by the leg"" ",Y,New York Times,8/27/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.23-Rodriguez.pdf 1212,1931.08.18,18-Aug-31,1931,Unprovoked,Usa,Texas,Off Brownsville,Swimming,P. Kincaid Zifflewwiggett,M,Minor injury,N,Brownsville Herald,8/19/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.18-Zifflewwiggett.pdf -1211,1931.08.06.R,06-Aug-1931,1931,Unprovoked,Usa,New Jersey,"Sandy Hook (ocean side), Monmouth County",Swimming,"soldier, a private",M,Survived,N,New York Times,8/6/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.06.R-soldier.pdf +1211,1931.08.06.R,06-Aug-31,1931,Unprovoked,Usa,New Jersey,"Sandy Hook (ocean side), Monmouth County",Swimming,"soldier, a private",M,Survived,N,New York Times,8/6/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.06.R-soldier.pdf 1210,1931.08.01,01-Aug-31,1931,Unprovoked,Australia,Queensland,Port Douglas,Fell overboard?,Llewellyn Roberts,M,FATAL,Y,Townsville Daily Bulletin,8/4/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.01-Roberts.pdf -1209,1931.07.28.R,28-Jul-1931,1931,Unprovoked,Fiji,Viti Levu Island,Tamavua River,Swimming,Narnak,M,Multiple injuries ,N,Sydney Morning Herald,8/12/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.28.R-Narnak.pdf +1209,1931.07.28.R,28-Jul-31,1931,Unprovoked,Fiji,Viti Levu Island,Tamavua River,Swimming,Narnak,M,Multiple injuries ,N,Sydney Morning Herald,8/12/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.28.R-Narnak.pdf 1208,1931.07.15,15-Jul-31,1931,Unprovoked,Usa,New Jersey,"Sea Girt, Monmouth County",Swimming,soldier in NJ National Guard,M,Nipped on leg,N,Daily Courier,7/21/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.15-SeaGirt.pdf 1207,1931.06.14,14-Jun-31,1931,Unprovoked,Usa,Hawaii,"Pearl Harbor, O'ahu","Fishing, had just speared a ulua",male,M,Survived,N,V.M. Coppleson,p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.14-male.pdf 1206,1931.06.13,13-Jun-31,1931,Provoked,Usa,Hawaii,"Pearl Harbor, O'ahu",Gaffing & attempting to bring onboard a harpooned shark,Lieutenant Williamson,M,Tip of finger amputated PROVOKED INCIDENT,N,G.H. Balazs; J. Borg,p.70; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.13-Williamson.pdf -1205,1931.06.04.R,04-Jun-1931,1931,Unprovoked,Usa,Florida,"Key West, Monroe County ",Crabbing,"Frank Johnson, Jr.",M,Lacerations to fingers,N,Key West Citizen,6/4/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.04.R-Johnson.pdf +1205,1931.06.04.R,04-Jun-31,1931,Unprovoked,Usa,Florida,"Key West, Monroe County ",Crabbing,"Frank Johnson, Jr.",M,Lacerations to fingers,N,Key West Citizen,6/4/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.04.R-Johnson.pdf 1204,1931.05.02,02-May-31,1931,Boating,Australia,New South Wales,Kempsey,Unknown,"pilot boat, occupants; Captain McAlister & crew",Unknown,No injury to occupants; oar & rudder bitten,N,Sydney Morning Herald,6/5/1931; Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.05.02-pilot-boat.pdf -1203,1931.04.27.R,27-Apr-1931,1931,Unprovoked,France,French Southern Territories,Île Saint-Paul,"Fishing, boat capsized",Quillezic,M,FATAL,Y,Los Angeles Times,4/27/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.04.27.R-Quillezic.pdf +1203,1931.04.27.R,27-Apr-31,1931,Unprovoked,France,French Southern Territories,Île Saint-Paul,"Fishing, boat capsized",Quillezic,M,FATAL,Y,Los Angeles Times,4/27/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.04.27.R-Quillezic.pdf 1202,1931.03.22,22-Mar-31,1931,Unprovoked,Australia,Queensland,"Ross River, Townsville",Fishing with a cast net,Arthur Tomida,M,"FATAL, left thigh severely bitten ",Y,V. M. Coppleson.Q9. (1933); V.M. Coppleson (1958),pp.90 & 238,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.22-Tomida.pdf 1201,1931.03.15,16-Mar-31,1931,Boating,Turkey,Unknown,"Bakurköy, Istanbul",Fishing,"Fishing boat. occupants: Laz Hüseyin, Ali Osman & Tursun ",Unknown,"No injury to occupants, shark crushed boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.15-Turkey.pdf @@ -4807,7 +4807,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1191,1930.12.02,02-Dec-30,1930,Boating,Australia,Victoria,Rosebud,Fishing,12' dinghy,Unknown,No injury to occupants; shark seized gunwale & tried to overturn boat,N,G.P. Whitley,p.262,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.02-dinghy.pdf 1190,1930.12.00,Dec-30,1930,Unprovoked,Australia,New South Wales,Parramata River,Unknown,male,M,FATAL,Y,H.D.Baldridge (1994),SAF Case #506,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.00-ParamattaRiver.pdf 1189,1930.11.30,30-Nov-30,1930,Unprovoked,Australia,Queensland,"St. Helena Island, Moreton Bay",Thrown into water from fishing dinghy,Moses Smith,M,Laceration to leg,N,Sydney Morning Herald,12/1/1930 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.11.30-Smith.pdf -1188,1930.09.26.R,26-Sep-1930,1930,Unprovoked,Honduras,Black River,Unknown,Swimming,Indian guide,M,FATAL,Y,NY Times,9/26/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.26.R-IndianGuide.pdf +1188,1930.09.26.R,26-Sep-30,1930,Unprovoked,Honduras,Black River,Unknown,Swimming,Indian guide,M,FATAL,Y,NY Times,9/26/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.26.R-IndianGuide.pdf 1187,1930.09.12.R,1930,1930,Boating,Unknown,Unknown,Unknown,Unknown,Unknown,Unknown,"No inury to occupants, shark struck boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.12.R-Azores.pdf 1186,1930.08.31,31-Aug-30,1930,Unprovoked,Australia,Western Australia,Geraldton,Fishing,William Burton,M,Minor injury,N,Geraldton Guardian,9/2/1930 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.31-Burton.pdf 1185,1930.08.16,16-Aug-30,1930,Unprovoked,Spain,Canary Islands,"El Escabonal, Tenerife ",Swimming,Cecil Bethencourt,M,Leg bitten,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.16-El-Escabonal-CanaryIslands.pdf @@ -4816,13 +4816,13 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1182,1930.07.11,11-Jul-30,1930,Unprovoked,Usa,Florida,"Jensen Beach, Martin County",Swimming,William Harns,M,Arm lacerated from shoulder to wrist,N,NY Times,7/13/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.11-Harns.pdf 1181,1930.06.04,04-Jun-30,1930,Unprovoked,Australia,Torres Strait,Near Mabuiag Island,Unknown,"Ibigan, a Torres Strait islander",M,FATAL,Y,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.06.04-Ibigan.pdf 1180,1930.05.27,27-May-30,1930,Unprovoked,Usa,Texas,High Island,Swimming / floating,A.B. Wattigney,M,Lacerations to arm,N,Port Arthur News,5/28/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.27-Wattigney.pdf -1179,1930.05.11.R,11-May-1930,1930,Boating,Turkey,Unknown,Ye?ilköy,Fishing,small boat. Occupants: 2 Englishmen,M,No injury but shark damaged boat,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11.R-Turkey.pdf +1179,1930.05.11.R,11-May-30,1930,Boating,Turkey,Unknown,Ye?ilköy,Fishing,small boat. Occupants: 2 Englishmen,M,No injury but shark damaged boat,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11.R-Turkey.pdf 1178,1930.05.11,11-May-30,1930,Invalid,Costa rica,Limón Province,Off Porto Limon,Air disaster,Unknown,Unknown,Shark involvement prior to death was not confirmed,Y,Evening Independent,5/12/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11-Rovirosa-Sidar.pdf 1177,1930.04.08,08-Apr-30,1930,Invalid,South africa,Eastern Cape Province,Bashee River,Unknown,male,M,Remains of drowning victim recovered from shark,Y,Dr. J.A. Du Toit,,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.04.08-BasheeRiver.pdf -1176,1930.03.07.R,07-Mar-1930,1930,Unprovoked,Usa,Florida,70 miles off Tarpon Springs,Sponge diving,Speros Gigis,M,No injury to diver but shark left 3 toothmarks in his helmet,N,Evening Independent,3/7/1930 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.03.07.R-Giglis.pdf +1176,1930.03.07.R,07-Mar-30,1930,Unprovoked,Usa,Florida,70 miles off Tarpon Springs,Sponge diving,Speros Gigis,M,No injury to diver but shark left 3 toothmarks in his helmet,N,Evening Independent,3/7/1930 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.03.07.R-Giglis.pdf 1175,1930.02.20,20-Feb-30,1930,Unprovoked,Australia,Torres Strait,Unknown,Pearl diving,Jerry,M,Arm & chest injured,N,V.M. Coppleson (1958),p.242 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.20-Jerry.pdf 1174,1930.02.15,15-Feb-30,1930,Unprovoked,Australia,Victoria,"Middle Brighton, Port Phillip",Diving off pier & treading water,Norman Clark,M,FATAL,Y,V.M. Coppleson.V2.(1933); V.M. Coppleson (1958),pp.110 & 241; A. MacCormick,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.15-Clarke.pdf -1173,1930.02.03.R,03-Feb-1930,1930,Provoked,Australia,Western Australia,Onslow,Removing shark from a trap,Mr. M. Donovan,M,Laceration to thigh from trapped shark PROVOKED INCIDENT,N,Geraldton Guardian and Express,2/3/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.03.R-Donovan.pdf +1173,1930.02.03.R,03-Feb-30,1930,Provoked,Australia,Western Australia,Onslow,Removing shark from a trap,Mr. M. Donovan,M,Laceration to thigh from trapped shark PROVOKED INCIDENT,N,Geraldton Guardian and Express,2/3/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.03.R-Donovan.pdf 1172,1930.01.22,22-Jan-30,1930,Boating,Mexico,Veracruz,Panuco River Mouth,Fishing schooner Jose Luis foundered,Unknown,Unknown,remains of one of the crew found in shark,Y,Reno Evening Gazette,2/14/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.22-FishingSchooner.pdf 1171,1930.01.16,16-Jan-30,1930,Unprovoked,South africa,Western Cape Province,"Melkbaai, False Bay",Swimming,Servy LeRoux,M,Torso & arm bitten,N,A. LeRoux,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.16-le-Roux.pdf 1170,1930.01.00,Jan-30,1930,Sea Disaster,Mauritius,Unknown,Two miles from shore in Tamarind Bay,Swimming to shore after a squall capsized their motorized shark fishing boat,"males, shark fishermen",M,Five men were said to have been killed by sharks ,Y,NY Times,1/14/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.00-Mauritius.pdf @@ -4832,7 +4832,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1166,1929.12.21,21-Dec-29,1929,Unprovoked,Australia,Torres Strait,Thursday Island,Diving,male,M,Recovered at Thursday Island Hospital,N,L. Schultz & M. Malin ref. SAF Case #510,,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.21-ThursdayIsland.pdf 1165,1929.12.16,16-Dec-29,1929,Unprovoked,Australia,New South Wales,Collaroy,Bathing or body surfing ,Nancy Thom,F,Superficial lacerations on right leg,N,V.M. Coppleson.N10. (1933); V.M. Coppleson (1958),pp.112 & 232. Note: In 1933 Coppleson gives the date of 16-Jan-1929 but revised it to 16-Dec-1929 in later works,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.16-Thom.pdf 1164,1929.12.13,13-Dec-29,1929,Unprovoked,Australia,Torres Strait,Thursday Island,Pearl diving,"Nago, a Japanese diver",M,Injuries to chest & arm,N,J. Green,p.32; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.13-Nago.pdf -1163,1929.12.03.R,03-Dec-1929,1929,Unprovoked,Australia,Queensland,Townsville,Unknown,male,M,FATAL,Y,Brisbane Courier,12/3/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.03.R-Unidentified.pdf +1163,1929.12.03.R,03-Dec-29,1929,Unprovoked,Australia,Queensland,Townsville,Unknown,male,M,FATAL,Y,Brisbane Courier,12/3/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.03.R-Unidentified.pdf 1162,1929.11.29,29-Nov-29,1929,Sea Disaster,Kiribati,Phoenix Islands,Nikumaroro Island,"Sea Disaster, wreck of the SS Norwich City",Unknown,Unknown,"11 of her crew perished, most, possibly all, deaths were due to drowning",Y,Hartford Courant,2/15/1930,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.29-NorwichCity.pdf 1161,1929.11.21,21-Nov-29,1929,Unprovoked,Cuba,Cienfuegos Province,Cienfuegos,Fishing,Gamatano Yugoago,M,"Shark attacked his boat, threatening to capsize it. He jumped overboard & shark bit his arm. He knifed & killed shark. Later his arm was surgically amputated",N,New York Times,11/28/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.21-Yugoago.pdf 1160,1929.10.20,20-Oct-29,1929,Unprovoked,Australia,Torres Strait,Near Badu Island,Pearl diving,Lifu,M,Heel injured,N,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.20-Lifu.pdf @@ -4840,11 +4840,11 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1158,1929.09.01,01-Sep-29,1929,Unprovoked,Australia,Queensland,"Ross River, Townsville",Fell from wharf into water & attacked immediately,Edward William Hobbs,M,"FATAL, severe injuries to both legs ",Y,V.M. Coppleson.Q7. (1933); V.M. Coppleson (1958),pp.90 & 237; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.09.01-Hobbs.pdf 1157,1929.08.05,05-Aug-29,1929,Unprovoked,Usa,South Carolina,Fort Moultrie,Bathing,"Robert W. McGhee, Private 1st Class, 8th Infantry",M,Left foot & ankle bitten,N,Clay Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.08.05-McGhee.pdf 1156,1929.07.29,29-Jul-29,1929,Unprovoked,Mexico,Tamaulipas,Tampico,Swimming,Crew member of Casanova,M,Right leg severed below knee,N,V.M. Coppleson (1958),p.262,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.29-Casanova.pdf -1155,1929.07.17.R,17-Jul-1929,1929,Invalid,Cape verde,Santiago Island,Tarrafal,Unknown,female,F,Body of woman recovered from shark,Y,C. Moore; Heraldo de Madrid,7/17/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.17.R-CapeVerde.pdf +1155,1929.07.17.R,17-Jul-29,1929,Invalid,Cape verde,Santiago Island,Tarrafal,Unknown,female,F,Body of woman recovered from shark,Y,C. Moore; Heraldo de Madrid,7/17/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.17.R-CapeVerde.pdf 1154,1929.06.23,23-Jun-29,1929,Provoked,Usa,Florida,"Fort Pierce, St Lucie County",Fishing,F.P. Jones,M,Leg bitten by hooked shark PROVOKED INCIDENT,N,Miami News,6/25/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.06.23-Jones.pdf 1153,1929.05.31,31-May-29,1929,Unprovoked,Australia,Torres Strait,Unknown,Pearl diving,Johnny Moira,M,"Injuries to both legs, buttocks, back, lower abdomen & chest",N,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.05.31-Moira.pdf -1152,1929.04.26.R,26-Apr-1929,1929,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving for trepang,Ali Ah Mat,M,Thigh bitten,N,Northern Standard (Dawin),4/26/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.26.R-AliAhMat.pdf -1151,1929.04.17.R,17-Apr-1929,1929,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving for trochus,Nistritani Taked,M,Lacerations to right wrist,N,Brisbane Courier,4/19/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.17.R-Taked.pdf +1152,1929.04.26.R,26-Apr-29,1929,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving for trepang,Ali Ah Mat,M,Thigh bitten,N,Northern Standard (Dawin),4/26/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.26.R-AliAhMat.pdf +1151,1929.04.17.R,17-Apr-29,1929,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving for trochus,Nistritani Taked,M,Lacerations to right wrist,N,Brisbane Courier,4/19/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.17.R-Taked.pdf 1150,1929.04.11,11-Apr-29,1929,Provoked,Australia,Queensland,"Bribie Passage, Caloundra",Standing in knee-deep water,David Alexander Manners,M,Right calf severely bitten by shark caught in the net PROVOKED INCIDENT,N,Brisbane Courier,4/12/1929; Coppleson (1933),http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.11-Manners.pdf 1149,1929.04.09,09-Apr-29,1929,Unprovoked,Australia,Torres Strait,Badu Island,Unknown,diver,M,FATAL,Y,G.P. Whitley,citng R.S.M.A.C.,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.09-BaduIsland.pdf 1148,1929.04.04,04-Apr-29,1929,Unprovoked,Australia,Torres Strait,Badu Island,Swimming between boats,"Ned Luffman, a Torres Strait Islander",M,FATAL,Y,V.M. Coppleson (1958),p.242 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.04-Luffman.pdf @@ -4867,21 +4867,21 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1131,1929.00.00.a,1929,1929,Unprovoked,Usa,Florida,"Cape Canaveral, Brevard County",Hardhat diving ,Carl Holm,M,"“Put hand through hatch, shark nearly bit off thumb”",N,R. McAllister; D. Baldridge,p.180 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.a-Holm.pdf 1130,1928.12.21,21-Dec-28,1928,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,Rueben,M,Injuries to arm ,N,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.12.21-Rueben.pdf 1129,1928.11.18,18-Nov-28,1928,Provoked,Usa,New Jersey,"Seabright, Monmouth County",Fishing,"boat, occupants: Captains Charles Anderson, Emit Lindberg & Oscar Benson",M,"Fishermen were cut & bruised by netted, harpooned and gaffed sharks PROVOKED INCIDENT",N,NY Herald Tribune,,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.18-SeaBright.pdf -1128,1928.11.15.R,15-Nov-1928,1928,Boating,Unknown,Unknown,Unknown,Unknown,"dhow, occupant Eugene Wright",M,"No injury to occupants, shark bit keel",N,Sun Herald,11/15/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.15.R-Wright.pdf +1128,1928.11.15.R,15-Nov-28,1928,Boating,Unknown,Unknown,Unknown,Unknown,"dhow, occupant Eugene Wright",M,"No injury to occupants, shark bit keel",N,Sun Herald,11/15/1938,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.15.R-Wright.pdf 1127,1928.11.12,12-Nov-28,1928,Sea Disaster,Usa,Virginia,"200 miles off Hampton Roads, Virginia, USA","Sea Disaster, sinking of the SS Vestris",Earl DeVore,M,FATAL,Y,Havre Daily News Promoter,11/20/1928; TIME Magazine,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.12-Vestris-DeVore.pdf 1126,1928.11.04,04-Nov-28,1928,Unprovoked,Panama,Gulf of Panama,Taboga Island Bay,Swimming,Abraham Moreno,M,"FATAL, multiple injuries including evisceration, 3 fractures of right arm, 5 fingers & leg severed below knee",Y,J.W. Phalen is original source. NOTE: V.M. Coppleson (1958),p.263,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.04-Moreno.pdf 1125,1928.09.00,Sep-28,1928,Unprovoked,Usa,Texas,Corpus Christi,Fishing,W.R. Loesberg,M,Knee bitten,N,Galveston Daily News,12/7/1929,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.09.00-Loesberg.pdf -1124,1928.08.24.R,24-Aug-1928,1928,Invalid,Usa,New Jersey,Off shore,Unknown,male,M,Thumb & coat sleeve recovered from shark's gut,UNKNOWN,Decatur Evening Herald,8/24/1928 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.08.24.R-Thumb.pdf +1124,1928.08.24.R,24-Aug-28,1928,Invalid,Usa,New Jersey,Off shore,Unknown,male,M,Thumb & coat sleeve recovered from shark's gut,UNKNOWN,Decatur Evening Herald,8/24/1928 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.08.24.R-Thumb.pdf 1123,1928.07.11,11-Jul-28,1928,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,"Willie Poid, a Torres Strait islander",M,Injuries to chest,N,V.M. Coppleson (1958),p.242,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.11-Poid.pdf 1122,1928.07.00,Late Jul-1928,1928,Provoked,Italy,Tuscany,Viareggio,Boating,Mr. Bagolinii,M,"No injury, shark approached the boat, he hit it with and oar and fell into the sea PROVOKED INCIDENT",N,A. De Maddalena; Gianturco (1978),,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.00-Bagolini.pdf -1121,1928.06.24.R,24-Jun-1928,1928,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Swimming,Jim Stevens,M,Bitten on leg,N,Ludington Daily News,6/24/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.06.24.R-Stevens.pdf +1121,1928.06.24.R,24-Jun-28,1928,Unprovoked,Usa,Florida,"Daytona Beach, Volusia County",Swimming,Jim Stevens,M,Bitten on leg,N,Ludington Daily News,6/24/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.06.24.R-Stevens.pdf 1120,1928.05.17,27-May-28,1928,Invalid,Unknown,Unknown,Unknown,Unknown,A.F.C. Smiot,M,No details,UNKNOWN,H.D. Baldridge (1994) SAF Case #1595,questioned authenticity of this incident,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.05.17-Smiot.pdf -1119,1928.04.14.R,14-Apr-1928,1928,Unprovoked,Australia,Queensland,"Barrow Point, 100 miles north of Cooktown, Queensland",Fishing,a Murray Islander,M,Severe lacerations to arm,N,The Western Champion,4/14/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.R-BarrowPoint.pdf +1119,1928.04.14.R,14-Apr-28,1928,Unprovoked,Australia,Queensland,"Barrow Point, 100 miles north of Cooktown, Queensland",Fishing,a Murray Islander,M,Severe lacerations to arm,N,The Western Champion,4/14/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.R-BarrowPoint.pdf 1118,1928.04.14,14-Apr-28,1928,Unprovoked,Australia,New South Wales,Bondi,Treading water,Maxwell Steele,M,Tissue of left leg stripped from knee to ankle ,N,V. M. Coppleson.N8. (1933); V.M. Coppleson (1958),pp.64 &231; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.a-Steele.pdf 1117,1928.04.09,09-Apr-28,1928,Unprovoked,Jamaica,Unknown,"Coal wharf, Port Royal",Diving,Lewis,M,FATAL,Y,Kingston Gleaner,4/11/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.09-Jamaica.pdf 1116,1928.04.06,06-Apr-28,1928,Unprovoked,Australia,Queensland,Graceville,Bathing,Noel Arthy,M,Lacerations to right leg ,N,Brisbane Courier,5/8/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.06-Arthy.pdf 1115,1928.04.04,04-Apr-28,1928,Unprovoked,Australia,New South Wales,"Cooks Hill, Newcastle",Standing in waist-deep water,Edward Arthur Lane,M,"FATAL, right hand severed, large lacerations on thigh",Y,V.M. Coppleson.N18. (1933); V.M. Coppleson (1958),pp.76 & 231; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.04-Lane.pdf -1114,1928.03.28.R,28-Mar-1928,1928,Unprovoked,Australia,Queensland,Unknown,Unknown,Bob,M,Hip bitten,N,Townsville Daily Bulletin,3/28/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.03.28.R-Bob.pdf +1114,1928.03.28.R,28-Mar-28,1928,Unprovoked,Australia,Queensland,Unknown,Unknown,Bob,M,Hip bitten,N,Townsville Daily Bulletin,3/28/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.03.28.R-Bob.pdf 1113,1928.02.20,20-Feb-28,1928,Unprovoked,Australia,Torres Strait,"Near Barrow Point, Queensland",Pearl diving,"Wanewa, a Torres Strait Islander",M,FATAL,Y,Townsville Daily Bulletin,2/28/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.20-Wanewa.pdf 1112,1928.02.00.b,Feb-28,1928,Unprovoked,Costa rica,Near Puntarenas,Unknown,Swimming,Lily Artavia,F,Right leg severely lacerated. Surgically amputated,N,Gleaner (Jamaica),3/7/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.b-Artavia.pdf 1111,1928.02.00.a,Feb-28,1928,Unprovoked,Costa rica,Near Puntarenas,Unknown,Swimming,Armando Chavez,M,Right leg & hand severely lacerated,N,Gleaner (Jamaica),3/7/1928,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.a-Chavez.pdf @@ -4906,16 +4906,16 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1092,1927.02.09,09-Feb-27,1927,Unprovoked,Australia,Queensland,Brisbane River,Attempting to rescue drowning man,Bernard Gill,M,"No injury, but trouser leg shredded by shark",N,Northern Territory Times & Gazette,2/11/1927,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.09-Gill.pdf 1091,1927.02.00,Feb-27,1927,Provoked,New zealand,South Island,"Menzies Bay, Banks Peninsula, ",Fishing,male,M,Severely bitten by shark caught 30 minutes earlier PROVOKED INCIDENT,N,R.D. Weeks,GSAF; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.00-MenziesBay.pdf 1090,1927.01.20,20-Jan-27,1927,Unprovoked,South africa,Eastern Cape Province,Kidd’s Beach,Body surfing,Andrew I. Brown,M,Both thighs lacerated,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.20-Brown.pdf -1089,1927.01.08.R,08-Jan-1927,1927,Unprovoked,Usa,California,"Catalina Channel, Los Angeles County",Swimming,Price Taylor,M,Lost hand,N,The Afro-American,1/8/1927,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.08.R-Taylor.pdf +1089,1927.01.08.R,08-Jan-27,1927,Unprovoked,Usa,California,"Catalina Channel, Los Angeles County",Swimming,Price Taylor,M,Lost hand,N,The Afro-American,1/8/1927,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.08.R-Taylor.pdf 1088,1927.01.03,03-Jan-27,1927,Unprovoked,Australia,New South Wales,"Grey’s Point, Port Hacking",Swimming,Mervwyn Allum,M,"FATAL, leg bitten from thigh to ankle",Y,V.M. Coppleson.N.21.(1933); V.M. Coppleson (1958),p.230; NYTimes,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.03-Allum.pdf 1087,1927.00.00.b,1927,1927,Unprovoked,Australia,New South Wales,15 miles up the Cataract River,Swimming,Anonymous ,M,"FATAL, shoulder bitten ",Y,W.E.,pp. 192-193,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.b-Australia.pdf 1086,1927.00.00.a,1927,1927,Unprovoked,Australia,Torres Strait,Thursday Island,Pearl diving,Dick Lahou,M,Shoulder bitten,N,V.M. Coppleson (1958),p.241,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.a-Lahou.pdf -1085,1926.12.02.R,02-Dec-1926,1926,Unprovoked,Australia,Torres Strait,Palm Island,Diving for trochus,Norman Skeen,M,FATAL,Y,Brisbane Courier,12/3/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.12.02-Norman.pdf +1085,1926.12.02.R,02-Dec-26,1926,Unprovoked,Australia,Torres Strait,Palm Island,Diving for trochus,Norman Skeen,M,FATAL,Y,Brisbane Courier,12/3/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.12.02-Norman.pdf 1084,1926.11.17,17-Nov-26,1926,Unprovoked,Australia,Torres Strait,Near Thursday Island,Diving,Noma,M,Arm injured,N,J. Green,p.32; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1926.11.17-Noma.pdf -1083,1926.10.29.R,29-Oct-1926,1926,Unprovoked,Papua new guinea,Central Province,Roku Point,Jumped into the water,male,M,"FATAL, abdomen bitten",Y,Cairns Post,10/29/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.29.R-RokuPoint.pdf +1083,1926.10.29.R,29-Oct-26,1926,Unprovoked,Papua new guinea,Central Province,Roku Point,Jumped into the water,male,M,"FATAL, abdomen bitten",Y,Cairns Post,10/29/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.29.R-RokuPoint.pdf 1082,1926.10.23.b,23-Oct-26,1926,Unprovoked,Australia,New South Wales,Clarence River,Bathing,Herbert Webster,M,"3"" laceration to leg",N,Barrier Miner,10/25/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.b-Webster.pdf 1081,1926.10.23.a,23-Oct-26,1926,Sea Disaster,Bermuda,Unknown,18 miles southwest of Bermuda ,British patrol boat 1250-ton HMS Valerian foundered in a hurricane,Unknown,Unknown,"Of 104 people in the water, only 20 survived. 84 people were lost, many to sharks. Sharks 2 pulled crew off life rafts",N,New York Herald Tribune,10/29/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.a - HMS Valerian.pdf -1080,1926.09.06.R,06-Sep-1926,1926,Unprovoked,Papua new guinea,Unknown,Near Port Moresby,Jumped out of canoe,a native,M,FATAL,Y,Barrier Miner,9/6/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.09.06.R-PortMoresby.pdf +1080,1926.09.06.R,06-Sep-26,1926,Unprovoked,Papua new guinea,Unknown,Near Port Moresby,Jumped out of canoe,a native,M,FATAL,Y,Barrier Miner,9/6/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.09.06.R-PortMoresby.pdf 1079,1926.08.24,24-Aug-26,1926,Unprovoked,Usa,New Jersey,"Seaside, Ocean County",Swimming,Charles A. Burke,M,FATAL,Y,Washington Post 8/25/1926; L. Schultz & M. Malin,p.531,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.08.24-Burke.pdf 1078,1926.07.23,23-Jul-26,1926,Unprovoked,Italy,Golfo di Genova in the Ligurian Sea,Varazze,Swimming,Augusto Casellato,M,"FATAL, body was not recovered",Y,NY Herald Tribune,7/25/1926; A. De Maddalena; Anon. (1926a),http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.23-Casellato.pdf 1077,1926.07.12,12-Jul-26,1926,Boating,Usa,New Jersey,20 miles off Seabright,Fishing,"boat, occupants: Andrew Peterson & Peter Jergerson",M,No injury to occupants,N,Evening Sun,undated clipping,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.12-boat.pdf @@ -4942,13 +4942,13 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1056,1925.03.27,07-Mar-1925 or 27-Mar-1925,1925,Unprovoked,Australia,New South Wales,Coogee,Bathing in waist-deep water,Jack Dagworthy,M,"Left thigh bitten, leg surgically amputated ",N,V.M. Coppleson.N7.(1933); V.M. Coppleson (1958),pp.63 & 230; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.27-Dagworthy.pdf 1055,1925.03.12,12-Mar-25,1925,Unprovoked,Australia,New South Wales,Newcastle Beach,Swimming,Jack Canning,M,"FATAL, right forearm severed, lacerations from buttocks to heel L",Y,V.M. Coppleson.N16.(1933) V.M. Coppleson (1958),pp.76 & 230,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.12-Canning.pdf 1054,1925.03.10,10-Mar-25,1925,Unprovoked,Papua new guinea,Central Province,Hula,Swimming,a Papuan,M,FATAL,Y,The Queenslander,4/4/1925,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.10-Papuan.pdf -1053,1925.01.27.R,27-Jan-1925,1925,Unprovoked,Usa,Florida,"Miami Beach, Miami-Dade County",Swimming,Frank Chorie,M,Lacerations to arm,N,Evening Independent,1/27/1925,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.27.R-Chorie.pdf +1053,1925.01.27.R,27-Jan-25,1925,Unprovoked,Usa,Florida,"Miami Beach, Miami-Dade County",Swimming,Frank Chorie,M,Lacerations to arm,N,Evening Independent,1/27/1925,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.27.R-Chorie.pdf 1052,1925.01.08,08-Jan-25,1925,Unprovoked,Canada,Vancouver,Second Narrows in Burrard Inlet,"Diving, repairing water main at depth of 90'", male,M,"Injuries, if any, unknown, but afterwards diver stunned shark with iron bar",N,ABCS; Manitoba Free-Press,1/13/1925,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.08-Vancouver.pdf 1051,1925.00.00,1925,1925,Unprovoked,Fiji,Viti Levu Island,"Suva Harbor, Suva",Diving for coins tossed from passenger ship,Fijian boy,M,"Both arms bitten, surgically amputated",N,V.M. Coppleson (1958),p.258,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.00.00-Fijian boy.pdf 1050,1924.11.25,25-Nov-24,1924,Unprovoked,Mexico,Tamaulipas,Tampico,The Ward liner Esperanza stranded during a gale & she leapt overboard to rescue her dog which had been swept overboard.,Ofelia Rivas,F,FATAL,Y,Indianapolis Star,12/15/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.25-Rivas.pdf 1049,1924.11.24,24-Nov-24,1924,Unprovoked,Panama,"2 to 3 miles off Taboguilla Island, Pacific Ocean",Pacific Anchorage off the Panama Canal,"Inebriated, woke from sleep and fell off deck into the water ",male,M,Knee bitten,N,Gorgas Hospital Records,,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.24-Panama.pdf 1048,1924.11.21,21-Nov-24,1924,Unprovoked,Usa,Puerto Rico,Santurce,Bathing,Professor Winslow,M,"FATAL, hand severed, both legs & arms bitten & nearly severed ",Y,R. W. Kramer; V.M. Coppleson (1958),pp.48 & 264,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.21-Winslow.pdf -1047,1924.10.31.R,31-Oct-1924,1924,Provoked,French polynesia,Tuamotus,Rangiroa,Pearl diving,Huri-Huri,M,Abrasions PROVOKED ATTACK,N,F. O'Brien in Atolls of the Sea,,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.31-Huri-Huri.pdf +1047,1924.10.31.R,31-Oct-24,1924,Provoked,French polynesia,Tuamotus,Rangiroa,Pearl diving,Huri-Huri,M,Abrasions PROVOKED ATTACK,N,F. O'Brien in Atolls of the Sea,,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.31-Huri-Huri.pdf 1046,1924.10.18,18-Oct-24,1924,Unprovoked,Australia,Victoria,Port Melbourne,Bathing,Fred White,M,Leg bitten,N,Coppleson.V1. (1933); Melbourne Herald,1/7/1925,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.18-White.pdf 1045,1924.07.31,31-Jul-24,1924,Unprovoked,Usa,South Carolina,"Folly Island, near Charleston",Standing,Lewis Kornahrens,M,Left knee & leg bitten. (Tooth fragment recovered from kneecap),N,E. M. Burton; E.W. Gudger (1935); V.M. Coppleson (1958),pp.152 & 252; J. Randall,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.31-Kornahrens.pdf 1044,1924.07.14,14-Jul-24,1924,Provoked,England,Dorset,Weymouth,Fishing for mackerel,2 fishermen,M,Arms broken by hooked shark PROVOKED INCIDENT,N,C. Moore; The Times,7/14/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.14-Weymouth.pdf @@ -4957,7 +4957,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1041,1924.04.25,25-Apr-24,1924,Unprovoked,Australia,New South Wales,Kiama,"Fishing, fell in water & swimming strongly to shore",Ernest Conroy,M,"FATAL, partial remains recovered ",Y,V.M. Coppleson (1933); G.P. Whitley,p.266,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.25-Conroy.pdf 1040,1924.04.22,22-Apr-24,1924,Unprovoked,Panama,150 miles offshore,Unknown,"Floating, after falling or jumping off the Standard Oil tanker Frederick W. Weller",Claremont L. Staden,M,"Reported to have had ""2 fights with sharks"" before being rescued by the British freighter Dorsetafter 23 hours in the water",N,NY Times,5/4/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.22-Staden.pdf 1039,1924.04.20,20-Apr-24,1924,Invalid,Australia,Western Australia,Fremantle,Swimming ,Noel Knight,M,Abrasions,N,V.M. Coppleson (1933); G.P. Whitley (1951),p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.20-Knight.pdf -1038,1924.03.28.R,28-Mar-1924,1924,Unprovoked,Solomon islands,Central Province,Savo Island,Swimming,male,M,"Left arm severed, leg bitten",N,Cairns Post,3/28/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.28.R-Savo-Island.pdf +1038,1924.03.28.R,28-Mar-24,1924,Unprovoked,Solomon islands,Central Province,Savo Island,Swimming,male,M,"Left arm severed, leg bitten",N,Cairns Post,3/28/1924,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.28.R-Savo-Island.pdf 1037,1924.03.24,24-Mar-24,1924,Boating,Spain,Galica,Sisargas Islands,Fishing,Boat owned by Ricardo Laneiro,Unknown,"No injury to occupants, shark bit boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.24.Sisargas.pdf 1036,1924.02.13,13-Feb-24,1924,Unprovoked,Australia,New South Wales,Bronte,Bathing in 5' of water,Nita Derritt,F,"Legs severely bitten, surgically amputated",N,V.M. Coppleson.N6. (1933); V.M. Coppleson (1958),pp.63 & 230; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.13-Derritt.pdf 1035,1924.02.08,08-Feb-24,1924,Invalid,Australia,Queensland,Currumbin,Bathing,Frederick Dullroy,M,Probable drowning & scavenging,UNKNOWN,11/02/1924,,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08-Dullroy.pdf @@ -4972,10 +4972,10 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1026,1923.10.17,17-Oct-23,1923,Boating,Australia,New South Wales," Black Head, south of Taree",Fishing,15' boat,Unknown,"No injury to occupants, shark bit boat",N,V.M. Coppleson (1933); SAF Case #494,,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.17-boat-Taree.pdf 1025,1923.10.16,16-Oct-23,1923,Unprovoked,Australia,Torres Strait,Near Thursday Island,Pearl diving,"Amano, a Japanese diver",M,"Arm severed, but survived",N,V.M. Coppleson (1958),p.241; J. Green,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.16-Amano.pdf 1024,1923.08.08,08-Aug-23,1923,Unprovoked,Guyana,Demerara County,Off the Demerara River ,Fishing,Charles Blair,M,Puncture wounds to left leg,N,Gleaner (Jamaica),9/6/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.08.08-Blair.pdf -1023,1923.07.02.R,02-Jul-1923,1923,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving for pearl,aboriginal male,M,non-fatal,N,Brisbane Courer,7/2/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.07.02-Mildred-Diver.pdf +1023,1923.07.02.R,02-Jul-23,1923,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving for pearl,aboriginal male,M,non-fatal,N,Brisbane Courer,7/2/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.07.02-Mildred-Diver.pdf 1022,1923.06.16,16-Jun-23,1923,Boating,Australia,New South Wales,Bellambi Reef,"After rowing skiff was holed by shark, he was attempting to swim ashore",J. Rigby,M,"FATAL, taken by shark. Two other men drowned, only 1 man survived",Y,V.M. Coppleson (1933); G. P. Whitley; V.M. Coppleson (1958),p.185,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.16-Rigby.pdf 1021,1923.06.06,06-Jun-23,1923,Boating,Mexico,Vera Cruz,Outside Vera Cruz Harbor,Dismantling cable buoys of the cable ship All America,"boat, occupants; Carl Sjoistrom & 2 other crew",Unknown,"No injury to occupants, shark rammed boat",N,NY Herald Tribune,undated clipping,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.06-AllAmerica.pdf -1020,1923.05.23.R,23-May-1923,1923,Unprovoked,Australia,Western Australia,"Southgates, near Geraldton",Wading,Percy Evensen,M,Minor puncture wounds to foot,N,The West Australian,5/23/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.23.R-Evensen.pdf +1020,1923.05.23.R,23-May-23,1923,Unprovoked,Australia,Western Australia,"Southgates, near Geraldton",Wading,Percy Evensen,M,Minor puncture wounds to foot,N,The West Australian,5/23/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.23.R-Evensen.pdf 1019,1923.05.22,22-May-23,1923,Unprovoked,Australia,Queensland,Great Barrier Reef,Diving?,Keizo Masoyo,M,FATAL,Y,Northern Miner,5/27/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.22-Masoyo.pdf 1018,1923.03.18,18-Mar-23,1923,Unprovoked,Australia,Queensland,"Ross River, Townsville",Diving,Jellannie Solomon,M,Lacerations to right thigh and knee,N,Northern Miner,3/19/1923,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.03.18-Solomon.pdf 1017,1923.02.00,Feb-23,1923,Unprovoked,Usa,Puerto Rico,San Juan,Swimming ,Puerto Rican,M,"Right calf, right side of abdomen & left wrist & hand bitten",N,V.M. Coppleson (1958),pp.48 & 265,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.02.00.a-PuertoRican.pdf @@ -4991,8 +4991,8 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 1007,1922.09.29,29-Sep-22,1922,Unprovoked,Barbados,Lucy,Pie Corner,Fishing,Master Hurley,M,FATAL,Y,Kingston Gleaner,10/17/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.29-Barbados.pdf 1006,1922.10.29,29-Oct-22,1922,Invalid,Australia,New South Wales,"Botany Bay, Sydney",Sailing,H.R.W.,M,"FATAL, but shark involvement prior to death unconfirmed",UNKNOWN,R.D. Weeks,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.10.29-HRW.pdf 1005,1922.09.28,28-Sep-22,1922,Unprovoked,Usa,Hawaii,"Keawanui, Kamalo, Moloka'i","Freediving, inspecting Kaunakakai wharf construction after blasting & dredging ","male, Territorial Surveyor",M,Survived,N,Honolulu Advertiser,8/19/1953; Tribune Herald (Hilo),http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.28-TerritorialSurveyor.pdf -1004,1922.09.26.R,26-Sep-1922,1922,Unprovoked,England,East Yorkshire,Hornsea,Swimming ,Mr.P. H. Lee,M,FATAL,Y,Western Argus,9/26/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.26.R-Lee.pdf -1003,1922.09.21.R,21-Sep-1922,1922,Boating,Usa,Massachusetts,Nahant,Fishing,"boat, occupants: Mr. Goslin & 4 passengers",Unknown,"No injury to occupants, shark splintered stern",N,L. Schultz & M. Malin,p.554,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.21-GoslinBoat.pdf +1004,1922.09.26.R,26-Sep-22,1922,Unprovoked,England,East Yorkshire,Hornsea,Swimming ,Mr.P. H. Lee,M,FATAL,Y,Western Argus,9/26/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.26.R-Lee.pdf +1003,1922.09.21.R,21-Sep-22,1922,Boating,Usa,Massachusetts,Nahant,Fishing,"boat, occupants: Mr. Goslin & 4 passengers",Unknown,"No injury to occupants, shark splintered stern",N,L. Schultz & M. Malin,p.554,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.21-GoslinBoat.pdf 1002,1922.07.19,19-Jul-22,1922,Unprovoked,Usa,Florida,"Pablo Beach, Jacksonville, Duval County",Unknown,Francis L'Engle,M,Leg bitten,N,Palm Beach Post,7/19/1932,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.07.19-L'Engle.pdf 1001,1922.06.17,17-Jun-22,1922,Unprovoked,Usa,Florida,"Municipal Pier, St. Petersburg, Tampa bay",Floating,Dorothy MacLatchie,F,"FATAL, thigh bitten",Y,V.M. Coppleson,(1958) pp.155 & 252,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.06.17-MacLatchie.pdf 1000,1922.05.24,24-May-22,1922,Unprovoked,Jamaica,Westmoreland Parish,Savanna-la-Mar,Swimming,Sausse Leon,M,"FATAL, arm severed, thigh severely bitten ",Y,Daily Gleaner,5/25/1922; H.E. Lloyd,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.24-Leon.pdf @@ -5001,39 +5001,39 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 997,1922.03.20,20-Mar-22,1922,Unprovoked,Jamaica,Kingston Parish,Kingston Harbor,Fishing,Unknown,M,Survived,N,Daily Gleaner,3/21/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.20-Jamaica.pdf 996,1922.03.13,13-Mar-22,1922,Unprovoked,Jamaica,Kingston Parish,Kingston Harbor,Standing,Adeline Lopez,F,"FATAL, right leg severed at thigh ",Y,Daily Gleaner,3/21/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.13-Lopez.pdf 995,1922.03.02,02-Mar-22,1922,Unprovoked,Australia,New South Wales,Coogee,Bathing in knee-deep water,Mervyn Gannon,M,"FATAL, right hand severed, lacerations on left thigh & left hand, died in hospital of gas gangrene",Y,V.M. Coppleson.N5. (1933); V.M. Coppleson (1958),pp.63 & 230; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.02-Gannon.pdf -994,1922.02.22.R,02-Feb-1922,1922,Invalid,Australia,New South Wales,"Bilgola Beach, Sydney",Swimming,Norman Whiteley,M,"Disappeared whiile swimming alone, body parts recovered, but shark involvement prior to death unconfirmed",Y,Cairns Post,2/33/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.22.R-Whiteley.pdf +994,1922.02.22.R,02-Feb-22,1922,Invalid,Australia,New South Wales,"Bilgola Beach, Sydney",Swimming,Norman Whiteley,M,"Disappeared whiile swimming alone, body parts recovered, but shark involvement prior to death unconfirmed",Y,Cairns Post,2/33/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.22.R-Whiteley.pdf 993,1922.02.04,04-Feb-22,1922,Unprovoked,Australia,New South Wales,Coogee ,Swimming,Milton Coughlan,M,"FATAL, both arms & shoulder bitten",Y,V.M. Coppleson.N.4. (1933); V.M. Coppleson (1958),pp.62 & 230; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.04-Coughlan.pdf -992,1922.01.28.R,28-Jan-1922,1922,Unprovoked,Iraq,Unknown,Shatt-al Arab River,Bathing,Haroun-al-Raschid,M,FATAL,Y,The Queenslander,1/28/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.28.R-Haroun-al-Raschid.pdf +992,1922.01.28.R,28-Jan-22,1922,Unprovoked,Iraq,Unknown,Shatt-al Arab River,Bathing,Haroun-al-Raschid,M,FATAL,Y,The Queenslander,1/28/1922,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.28.R-Haroun-al-Raschid.pdf 991,1922.01.15,15-Jan-22,1922,Unprovoked,Australia,Queensland,"Ross River, Townsville",Swimming ,Robert Milroy,M,FATAL,Y,V.M. Coppleson.Q5. (1933); V.M. Coppleson (1958),pp. 90 & 229,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.15-Milroy.pdf 990,1922.01.13,13-Jan-22,1922,Unprovoked,Australia,New South Wales,"Stockton Beach, Newcastle",Standing,Alwyn Bevan,M,Small laceration on left thigh & swim costume torn,N,V.M. Coppleson.N15. (1933); V.M. Coppleson (1958),p.229,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.13-Bevan.pdf 989,1922.01.04,04-Jan-22,1922,Unprovoked,Australia,New South Wales,"Stockton Beach, Newcastle",Surfing,John Manning Rowe,M,"FATAL, disappeared, then his shark-bitten remains washed ashore ",Y,The Argus,1/9/1922; V.M. Coppleson (1933),http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.04-JManningRowe.pdf 988,1921.12.11,11-Dec-21,1921,Unprovoked,Australia,Queensland,Fitzroy River at Rockhampton,Swimming,Robert Murphy,M,Survived,N,The Queenslander,12/17/ 1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.12.11-Murphy.pdf 987,1921.11.27.b,27-Nov-21,1921,Unprovoked,Australia,Queensland,"Gay’s Corner, Bulimba Reach of Brisbane River",Fell from his father's back into the water,George Jack,M,"FATAL, disappeared, body not recovered",Y,V.M. Coppleson (1958),pp.92 & 237,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf 986,1921.11.27.a,27-Nov-21,1921,Unprovoked,Australia,Queensland,"Gay’s Corner, Bulimba Reach of Brisbane River","Wading to dinghy, carrying his son",Herbert Jack,M,"Right hip, buttock, elbow, arm & wrist bitten",N,V.M. Coppleson.Q3. (1933); V.M. Coppleson (1958),pp.92 & 237,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf -985,1921.11.15.R,15-Nov-1921,1921,Unprovoked,Fiji,Viti Levu Island,Rewa River,Swimming,Esau & his young daughter,Unknown,FATAL,Y,Richmond River Express,12/2/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.15.R-Fiji.pdf +985,1921.11.15.R,15-Nov-21,1921,Unprovoked,Fiji,Viti Levu Island,Rewa River,Swimming,Esau & his young daughter,Unknown,FATAL,Y,Richmond River Express,12/2/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.15.R-Fiji.pdf 984,1921.10.12,12-Oct-21,1921,Unprovoked,Australia,Queensland,Off Hinchinbrook Island,Diving for beche-de-mer ,aboriginal diver,M,Lacerations to right arm & chest,N,Brisbane Courier,10/15/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.12-Hinchinbrook-Island.pdf 983,1921.10.04,04-Oct-21,1921,Unprovoked,Australia,Queensland,Barrier Reef,Diving for beche-de-mer,Yoichi Schamok,M,"Left thigh bitten, FATAL",Y,Cairns Post,10/17/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.04-Schamok.pdf 982,1921.09.00,Sep-21,1921,Provoked,England,Dorset,Weymouth,Fishing,Roberts,M,Leg bitten by shark he was attempting to capture PROVOKED INCIDENT,N,Argus,10/8/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.09.00-Roberts.pdf -981,1921.08.29.R,29-Aug-1929,1921,Unprovoked,Australia,Torres Strait,Unknown,Unknown,Oku Hayadi,M,Lacerations to arm,N,The Register,8/29/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.29.R-Hayadi.pdf +981,1921.08.29.R,29-Aug-29,1921,Unprovoked,Australia,Torres Strait,Unknown,Unknown,Oku Hayadi,M,Lacerations to arm,N,The Register,8/29/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.29.R-Hayadi.pdf 980,1921.08.28,28-Aug-21,1921,Unprovoked,Philippines,Luzon Island,"Fort Frank, Manila Bay",Swimming,"Marcellus T. Abernathy, a US soldier in the 9th Coast Artillery",M,"FATAL, abdomen severely lacerated, taken by seaplane to hospital in Corrigedor but died ",Y,New York Times,9/1/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.28-Abernathy.pdf -979,1921.01.11.R,11-Jan-1921,1921,Invalid,Philippines,"Cavite Province, Luzon",Unknown,Unknown,Unknown,Unknown,Buttons & shoes found in shark caught in fish trap,UNKNOWN,Reno Evening Gazette,1/11/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.01.11.R-Cavite.pdf +979,1921.01.11.R,11-Jan-21,1921,Invalid,Philippines,"Cavite Province, Luzon",Unknown,Unknown,Unknown,Unknown,Buttons & shoes found in shark caught in fish trap,UNKNOWN,Reno Evening Gazette,1/11/1921,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.01.11.R-Cavite.pdf 978,1920.11.29,29-Nov-20,1920,Unprovoked,Australia,Western Australia,Bunbury,Wading,Reginald Gibbs,M,Lacerations to leg & hand,N,Geraldton Guardian,12/4/1920 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.29-Gibbs.pdf 977,1921.08.22,22-Aug-21,1921,Unprovoked,Haiti,Cape Haitien,Marine Dock,Dived into a school of baitfish,"E.C.P, a U.S. Marine",M,"FATAL, large wound on thigh",Y,V.M. Coppleson (1958),p.259; Baker & Rose,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.22-ECP.pdf 976,1920.11.22,22-Nov-20,1920,Unprovoked,Australia,Western Australia,Cottesloe Beach,Standing,T.F. Davies,M,"Minor injuries to leg, hand & fingers",N,Daily News,11/24/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.22-Davies.pdf 975,1920.11.04,04-Nov-20,1920,Sea Disaster,Philippines,Leyte,Unknown,The coastwise steamer San Basilio capsized in a typhoon,male,Unknown,FATAL,Y,Oakland Tribune,11/11/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.04-Philippines.pdf 974,1920.07.14,14-Jul-20,1920,Invalid,Usa,New York,"Woodcliff Channel, Freeport, Long Island",Swimming ,Thomas McCann,M,Thought to have been taken by a shark. Body was not recovered,Y,V.M. Coppleson (1958),p.151 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.14-McCann.pdf -973,1920.07.05.R,06-Jul-1920,1920,Unprovoked,Australia,Torres Strait,200 miles from MacKay,Diving for trochus shell,Japanese diver,M,Severe lacerations to right shoulder & arm,N,Brisbane Courier,7/6/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.05.R-Japanese-DIver.pdf +973,1920.07.05.R,06-Jul-20,1920,Unprovoked,Australia,Torres Strait,200 miles from MacKay,Diving for trochus shell,Japanese diver,M,Severe lacerations to right shoulder & arm,N,Brisbane Courier,7/6/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.05.R-Japanese-DIver.pdf 972,1920.06.29,29-Jun-20,1920,Unprovoked,Usa,Florida,"Englewood Beach, Charlotte County",Swimming ,Hayward Green,M,Knee & thigh bitten,N,E. Clark,,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.29-Green.pdf 971,1920.06.27,27-Jun-20,1920,Provoked,Canada,Halifax,"Slaunwhite's Ledge, Hubbard Cove",Harpooned shark,occupants: John Chandler & Walter Winters,Unknown,"No injury to occupants, but shark struck boat with such force that Chandler was flung overboard. PROVOKED INCIDENT",N,H. Piers (1933),,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.27-Hubbard.pdf 970,1920.03.08,08-Mar-20,1920,Unprovoked,Australia,Queensland,"Between Bay Rock & Magnetic Island, Cleveland Bay","Boat capsized, swimming to shore",Alfred Burgess,M,"Tossed in air by shark, sustained abrasions",N,H. Miller (1920); V.M. Coppleson Q.2.(1933); V.M. Coppleson (1958),pp.43,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.03.08-Burgess.pdf -969,1920.01.24.R.b,24-Jan-1920,1920,Unprovoked,Australia,Torres Strait,Unknown,Diving,male,M,Lacerations to foot,N,The Argus,1/24/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.b-TorresStrait-diver.pdf +969,1920.01.24.R.b,24-Jan-20,1920,Unprovoked,Australia,Torres Strait,Unknown,Diving,male,M,Lacerations to foot,N,The Argus,1/24/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.b-TorresStrait-diver.pdf 968,1920.02.03,03-Feb-20,1920,Unprovoked,South africa,Eastern Cape Province,Zwartkops River,Floating face down,Thea Toft,F,Abdomen bitten,N,T. Toft,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.02.03-Toft.pdf -967,1920.01.24.R.a,24-Jan-1920,1920,Unprovoked,Australia,Torres Strait,Arlington Reef,Free diving,Japanese diver,M,FATAL,Y,The Argus,1/24/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.a-JapaneseDiver.pdf +967,1920.01.24.R.a,24-Jan-20,1920,Unprovoked,Australia,Torres Strait,Arlington Reef,Free diving,Japanese diver,M,FATAL,Y,The Argus,1/24/1920,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.a-JapaneseDiver.pdf 966,1920.01.15,15-Jan-20,1920,Unprovoked,Australia,New South Wales,"Throsby Creek, Newcastle",Swimming ,David Miller,M,Leg bitten. FATAL,Y,V.M. Coppleson.N14. (1933); V.M. Coppleson (1958),p.229,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.15-Miller.pdf 965,1920.00.00.b,1920s,1920,Unprovoked,Jamaica,Westmoreland Parish,Savanna-la-Mar,Jumped overboard,sailor,M,FATAL,Y,Daily Gleaner,4/14/1969,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.c-Jamaica.pdf 964,1920.00.00.b,1920,1920,Unprovoked,New zealand,North Island,"Stanley Bay, Auckland Harbor",Unknown,female,F,"""Recovered""",N,V.M. Coppleson (1958),p.262,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.b-StanleyBay.pdf 963,1920.00.00.a,1920,1920,Unprovoked,South africa,KwaZulu-Natal,Tugela River,Splashing,Zulu male,M,Thigh & buttocks bitten. Not known if he survived.,N,J.L.B. Smith,,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.a-TugelaRiver.pdf -962,1919.12.30.R,30-Dec-1919,1919,Unprovoked,Australia,Queensland,Brible Island,Swimming,John Brothy,M,Lacerations to left leg,N,Brisbane Courier,12/30/1919,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.30.R-Brothy.pdf +962,1919.12.30.R,30-Dec-19,1919,Unprovoked,Australia,Queensland,Brible Island,Swimming,John Brothy,M,Lacerations to left leg,N,Brisbane Courier,12/30/1919,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.30.R-Brothy.pdf 961,1919.12.07,07-Dec-19,1919,Unprovoked,Australia,New South Wales,"Pelican Island, Macleay River",Swimming,James Ridley,M,"FATAL, left leg & calf bitten, leg surgically amputated ",Y,Sydney Morning Herald,12/9/1919; V.M. Coppleson.N.20.(1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.07-Ridley.pdf 960,1919.11.18,18-Nov-19,1919,Unprovoked,Australia,Northern Territory,Darwin,Sitting in a boat,a sailor,M,Lacerations to buttocks,N,G.P. Whitley; V.M. Coppleson (1933) ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.11.18-sailor.pdf 959,1919.09.12,12-Sep-19,1919,Unprovoked,Costa rica,Turtle Bogue,Where Colorado River enters the sea,Small vessel with 13 men on board capsized crossing the bar and 6 men drowned. The 7 survivors were swimming to shore,6 males,M,"FATAL, 6 men were taken by sharks as they neared the beach, 1 survived",Y,Pinchot,p.85-86,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.09.12-CostaRica.pdf @@ -5061,7 +5061,7 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 937,1917.07.15,15-Jul-17,1917,Sea Disaster,Ireland,Off Ireland,82 miles from Fastnet,Ship Mariston torpedoed & sunk,Unknown,M,"FATAL, only 1 survivor",Y,Western Mail, 11/9/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.15-Mariston-ship.pdf 936,1917.06.03,03-Jun-17,1917,Unprovoked,Usa,South Carolina,Calibogue Sound,Swimming beside launch,"Walter J. Pierpont, Jr.",M,Right arm bitten,N,C. Creswell,GSAF; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1917.06.03-Pierpont.pdf 935,1917.05.31,31-May-17,1917,Unprovoked,Philippines,Luzon Island,Canacao Bay,Swimming,"E.E., water tender of the U.S.S. Dale",M,"FATAL, abdominal cavity removed ",Y,P.F. Prioleau; W.E.,p.195; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.31-EE.pdf -934,1917.05.05,05-May-1917,1917,Unprovoked,Unknown,Unknown,Unknown,Diving for pearls,a young Arab,M,Torso bitten,N,Denton Journal,5/5/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.05-Arab.pdf +934,1917.05.05,05-May-17,1917,Unprovoked,Unknown,Unknown,Unknown,Diving for pearls,a young Arab,M,Torso bitten,N,Denton Journal,5/5/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.05-Arab.pdf 933,1917.00.00,1917,1917,Unprovoked,Libya,Mediterranean Sea,Tripoli,Diving for sponges,male,M,"Bitten by shark, but repelled it with his 'skandalopetra' ",N,F. Warn (see Bitter Sea in bibliography),,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.00.00-SpongeDiver.pdf 932,1916.12.30,30-Dec-16,1916,Unprovoked,Australia,Queensland,"Yeppoon, near Ross Creek",Bathing,John Ford,M,Right calf bitten,N,Morning Bulletin,1/1/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.30-Ford.pdf 931,1916.12.08.b,08-Dec-16,1916,Unprovoked,Australia,New South Wales,"Seven Shillings Beach, Middle Harbor, Sydney (Estuary)",Taking wife to beach & about 1 m from the shore,Walter C. German,M,"FATAL, right arm severed, chest punctured ",Y,G.P. Whitley,ref. Dr. Cleland,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf @@ -5083,47 +5083,47 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 915,1916.07.06,06-Jul-16,1916,Unprovoked,Usa,New Jersey,"Spring Lake, Monmouth County",Swimming,Charles Bruder,M,FATAL,Y,R. Fernicola,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.06-Bruder.pdf 914,1916.07.01,01-Jul-16,1916,Unprovoked,Usa,New Jersey,"Beach Haven, Ocean County",Swimming,Charles E. Vansant,M,"FATAL, left leg bitten",Y,R. Fernicola,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.01-Vansant.pdf 913,1916.06.30,30-Jun-16,1916,Unprovoked,Usa,New Jersey,"Atlantic City, Atlantic County",Swimming,boy,M,Heel bitten,N,C. Phinizy,,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.30-AtlanticCity.pdf -912,1916.06.24.R,24-Jun-1916,1916,Unprovoked,Unknown,Unknown,Unknown,Jumped overboard from Norwegian steamship Venator,Victor Matheson,M,Presumed FATAL,Y,Washington Post,6/24/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.24.R-Matheson.pdf +912,1916.06.24.R,24-Jun-16,1916,Unprovoked,Unknown,Unknown,Unknown,Jumped overboard from Norwegian steamship Venator,Victor Matheson,M,Presumed FATAL,Y,Washington Post,6/24/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.24.R-Matheson.pdf 911,1916.06.23,23-Jun-16,1916,Provoked,Usa,Florida,Unknown,Unknown,Adolph Crouse,M,Leg bitten by shark hooked shark PROVOKED INCIDENT,N,New York Times,6/29/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.23-Crouse.pdf -910,1916.04.25.R,25-Apr-1916,1916,Unprovoked,Australia,New South Wales,Manley Beach,Swimming,Thomas Harrington,M,FATAL,Y,Modesto Evening News,4/25/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.25.R-Harrington.pdf +910,1916.04.25.R,25-Apr-16,1916,Unprovoked,Australia,New South Wales,Manley Beach,Swimming,Thomas Harrington,M,FATAL,Y,Modesto Evening News,4/25/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.25.R-Harrington.pdf 909,1916.04.03,03-Apr-16,1916,Unprovoked,Australia,Victoria,Carrum,Clinging to overturned rowing boat,Monte Robinson & Andrew McNeill,M,FATAL,Y,Argus,3/5/1917,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.03-Robinson-McNeill.pdf 908,1916.03.19,19-Mar-16,1916,Unprovoked,Australia,New South Wales,Curl Curl,Bathing,Alexander Robinson,M,Minor lacerations to heel,N,Argus,4/21/1916,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.03.19-Robinson.pdf -907,1915.12.09.R,09-Dec-1915,1915,Unprovoked,Australia,Torres Strait, Thursday Island,Diving,A Japanese diver,M,"Arm severed, lacerations to thigh",N,Big Piney Examiner,12/9/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.12.09.R-JapaneseDiver.pdf +907,1915.12.09.R,09-Dec-15,1915,Unprovoked,Australia,Torres Strait, Thursday Island,Diving,A Japanese diver,M,"Arm severed, lacerations to thigh",N,Big Piney Examiner,12/9/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.12.09.R-JapaneseDiver.pdf 906,1915.11.10,10-Nov-15,1915,Unprovoked,Australia,Queensland,"Cabbage Tree Creek, Sandgate",Bathing,James Gleeson,M,Severe bite to arm,N,Argus,11/11/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.10-Gleeson.pdf 905,1915.11.08,08-Nov-14,1915,Unprovoked,Australia,New South Wales,Manly,Bathing,Albert Rebecchi,M,Severe lacerations to feet & ankles,N,Sydney Morning Herald,11/9/1915; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.08-Rebecchi.pdf 904,1915.08.03,03-Aug-15,1915,Unprovoked,Usa,Florida,"St. Augustine, St Johns County",Unknown,M.F. Turnipseed,M,Laceration to left leg,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.08.03-Turnipseed.pdf -903,1915.07.06.a.R,06-Jul-1915,1915,Unprovoked,Mexico,Tamaulipas,Tampico,Fishing,Captain Thaxton,M,FATAL,Y,Oakland Tribune,7/6/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.b.R-Thaxton.pdf -902,1915.07.06.a.R,06-Jul-1915,1915,Unprovoked,Mexico,Unknown,Santa Maria Bar,Wading,J.W. McDonald,M,FATAL,Y,Oakland Tribune,7/6/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.a.R-McDonald.pdf -901,1915.05.15.R,15-May-1915,1915,Invalid,Egypt,Unknown,Alexandria,Fell overboard,male,M,Shark involvement not confirmed,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.05.15.R-Alexandria.pdf +903,1915.07.06.a.R,06-Jul-15,1915,Unprovoked,Mexico,Tamaulipas,Tampico,Fishing,Captain Thaxton,M,FATAL,Y,Oakland Tribune,7/6/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.b.R-Thaxton.pdf +902,1915.07.06.a.R,06-Jul-15,1915,Unprovoked,Mexico,Unknown,Santa Maria Bar,Wading,J.W. McDonald,M,FATAL,Y,Oakland Tribune,7/6/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.a.R-McDonald.pdf +901,1915.05.15.R,15-May-15,1915,Invalid,Egypt,Unknown,Alexandria,Fell overboard,male,M,Shark involvement not confirmed,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.05.15.R-Alexandria.pdf 900,1915.03.29,29-Mar-15,1915,Unprovoked,Australia,Torres Strait,Near Thursday Island,Skin diving for trepang but at surface next to the boat,Hana,M,"Shoulder bitten. Hana, one of the rescuers, fended shark off with an oar, then shark bit oar in two",N,N. Bartlett,pp.234,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.03.29-Hana.pdf 899,1915.02.06,06-Feb-15,1915,Unprovoked,Australia,Queensland,Wynnum-Manley,Swimming,H. Stanton,M,Foot bitten,N,Brisbane Courier,2/8/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.02.06-Stanton.pdf 898,1915.01.13,13-Jan-15,1915,Invalid,New zealand,North Island,Otaki,Fishing,Henry Hodge & his son,M,Death may have been due to drowning,Y,The Mercury,1/14/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.13-Hodge.pdf 897,1915.01.01,01-Jan-15,1915,Unprovoked,Australia,New South Wales,"Sirius Cove, Sydney Harbor",Bathing,Warren Tooze,M,FATAL,Y,G.P. Whitley,citing Argus (Melbourne) 1/5/1915; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.01-Tooze.pdf 896,1915.00.00,Ca. 1915,1915,Invalid,Usa,Florida,"Soldier Key, Miami-Dade County",Unknown,Remains of male found in shark,M,"Fatal, drowning or scavenging",UNKNOWN,Fishing Gazette 1915,Vol. 32,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.00.00-HumanRemains.pdf -895,1914.12.04.R,04-Dec-1914,1914,Unprovoked,Australia,Queensland,Magnetic Island,Swimming,A. Steinstecke,M,Lacerations to right thigh and knee,N,Northern Miner,12/4/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.12.04.R-Steinstecke.pdf +895,1914.12.04.R,04-Dec-14,1914,Unprovoked,Australia,Queensland,Magnetic Island,Swimming,A. Steinstecke,M,Lacerations to right thigh and knee,N,Northern Miner,12/4/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.12.04.R-Steinstecke.pdf 894,1914.10.17,17-Oct-14,1914,Sea Disaster,Samoa,Apolima Strait,Opposite Apelima & Manona,Copra vessel with 19 on board was wrecked in a squall,female,F,Thigh bitten,N,Evening Post,12/2/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.10.17-Samoa.pdf -893,1914.09.26.R,26-Sep-1914,1914,Unprovoked,Jamaica,Kingston Parish,Port Royal,Fell overboard,"""a native boy""",M,FATAL,Y,Stevens Point Daily Journal,9/26/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.26.R-Jamaica.pdf +893,1914.09.26.R,26-Sep-14,1914,Unprovoked,Jamaica,Kingston Parish,Port Royal,Fell overboard,"""a native boy""",M,FATAL,Y,Stevens Point Daily Journal,9/26/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.26.R-Jamaica.pdf 892,1914.09.09,09-Sep-14,1914,Unprovoked,Usa,Louisiana,Lake Pontchartrain,Swimming,Peter Kontspoulas,M,FATAL,Y,Washington Post,9/10/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.09-PeterKontspoulas.pdf -891,1914.07.15.R,15-Jul-1914,1914,Unprovoked,Croatia,Zadar County,Biograd na moru,Washing clothes,female,F,"No injury, shark grabbed clothes",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.15.R.pdf -890,1914.07.09.R,09-Jul-1914,1914,Provoked,Usa,Louisiana,New Orleans,Fishing,Lopez,M,PROVOKED INCIDENT Legs severed by shark entangled in his net,N,Lima Daily News,7/9/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.09.R-Lopez.pdf +891,1914.07.15.R,15-Jul-14,1914,Unprovoked,Croatia,Zadar County,Biograd na moru,Washing clothes,female,F,"No injury, shark grabbed clothes",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.15.R.pdf +890,1914.07.09.R,09-Jul-14,1914,Provoked,Usa,Louisiana,New Orleans,Fishing,Lopez,M,PROVOKED INCIDENT Legs severed by shark entangled in his net,N,Lima Daily News,7/9/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.09.R-Lopez.pdf 889,1914.07.07,07-Jul-14,1914,Unprovoked,Croatia, Primorje-Gorski Kotar County,Rijeka,Unknown,male,M,"No injury, shark nudged raft and circled for 2 hrs.",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.07.pdf 888,1914.06.12,13-Jun-14,1914,Boating,Montenegro,Adriatic Sea,Between St. Stjepan and Budva,Fishing boat,Occupants: Ivan Angjus & Stevo Kentera,M,"No injury, shark bit paddle and stern of boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.13-Budva.pdf 887,1914.06.10,10-Jun-14,1914,Unprovoked,Australia,Victoria,Sandringham,Bathing,Mr. Croxford,M,FATAL,Y,Evening Post,6/11/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.10-Croxford.pdf 886,1914.05.31,31-May-14,1914,Sea Disaster,New caledonia,South Province,Noumea,Swimming ashore from swamped 13-ft boat,Mr. Child & a Kanaka,M,FATAL x 2,Y,The Mercury,6/23/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.31-Child-Kanaka.pdf 885,1914.05.14,14-May-14,1914,Provoked,Usa,Florida,"Boca Ciega Bay, Pinellas County",Fishing,Mrs. A.L. Cummings,F,PROVOKED INCIDENT Lacerations to right hand by hooked shark,N,Evening Independent,5/14/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.14-Cummings.pdf -884,1914.03.14.R,14-Mar-1914,1914,Invalid,Usa,Florida,"St. Augustine, St Johns County",Swimming,John B. Mooney,M,His remains were recovered from a shark 3 years after his disappearance - Probable drowning / scavenging,Y,Washington Post,3/14/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.14.R-Mooney.pdf +884,1914.03.14.R,14-Mar-14,1914,Invalid,Usa,Florida,"St. Augustine, St Johns County",Swimming,John B. Mooney,M,His remains were recovered from a shark 3 years after his disappearance - Probable drowning / scavenging,Y,Washington Post,3/14/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.14.R-Mooney.pdf 883,1914.03.03,03-Mar-14,1914,Unprovoked,Usa,Hawaii,"Honomu, Hawai'i",Washed into sea while picking opihi & attacked by 2 large sharks ,Okomoto,M,FATAL,Y,C.H. Townsend,,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.03-Okomoto.pdf -882,1914.02.09.R,09-Feb-1914,1914,Unprovoked,Australia,South Australia,Marion Bay,Wading,Mr. Hasell,M,Lacerations to foot,N,The Advertiser,2/10/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.09.R-Hasell.pdf +882,1914.02.09.R,09-Feb-14,1914,Unprovoked,Australia,South Australia,Marion Bay,Wading,Mr. Hasell,M,Lacerations to foot,N,The Advertiser,2/10/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.09.R-Hasell.pdf 881,1914.02.03, 03-Feb-1914,1914,Unprovoked,Australia,New South Wales,Paramatta River,Canoeing,John Dabbs,M,Lacerations to arms,N,Oakland Tribune,3/241914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.03-Dabbs.pdf -880,1914.01.17.R,17-Jan-1914,1914,Unprovoked,Australia,Queensland,Brisbane,Wading,Mrs. Schmidt,F,Laceration to leg,N,The Queenslandert ,1/17/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.01.17.R-Schmidt.pdf +880,1914.01.17.R,17-Jan-14,1914,Unprovoked,Australia,Queensland,Brisbane,Wading,Mrs. Schmidt,F,Laceration to leg,N,The Queenslandert ,1/17/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.01.17.R-Schmidt.pdf 879,1914.00.00,1914,1914,Unprovoked,South africa,KwaZulu-Natal,Durban,Unknown,Indian female,F,No details,UNKNOWN,L. Green,South African Beachcomber,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.00.00-IndianWoman.pdf -878,1913.12.30.R,30-Dec-1913,1913,Provoked,Usa,Florida,"Palm Beach, Palm Beach County",Fishing for mackerel,"motor boat, occupants: Mr. & Mrs. Sidney M. Colgate and their three children, Bayard, Caroline and Margaret ",Unknown,No injury to occupants but hull splintered by harpooned shark PROVOKED INCIDENT,N,New Smyrna Daily News,1/2/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.30.R-Colgate Boat.pdf +878,1913.12.30.R,30-Dec-13,1913,Provoked,Usa,Florida,"Palm Beach, Palm Beach County",Fishing for mackerel,"motor boat, occupants: Mr. & Mrs. Sidney M. Colgate and their three children, Bayard, Caroline and Margaret ",Unknown,No injury to occupants but hull splintered by harpooned shark PROVOKED INCIDENT,N,New Smyrna Daily News,1/2/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.30.R-Colgate Boat.pdf 877,1913.11.27,27-Nov-13,1913,Unprovoked,Nigeria,Lagos ,Lagos,Boat swamped,Gerald Arthur Edwin Denny,M,FATAL,Y,The Times (London),7/21/1914,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.27-Denny.pdf 876,1913.11.21,21-Nov-13,1913,Unprovoked,Australia,Queensland,"Sandgate Jetty, Brisbane",Swimming,Henry Boucher,M,Calf severely bitten; leg surgically amputated,N,Sydney Morning Herald,11/24/1913 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.21-Boucher.pdf 875,1913.09.21,21-Sep-13,1913,Unprovoked,Usa,Florida,"West Palm Beach, Palm Beach County",Unknown,male,M,Major injuries but survived,N,V.M. Coppleson (1958),p.251; T. Helm,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.21-WestPalmBeach.pdf 874,1913.09.03,03-Sep-13,1913,Provoked,Croatia,Istria County,Pula,Unknown,Fishing,M,Badly bitten by a shark dragged onboard PROVOKED INCIDENT,N,C.Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.03-Croatia.pdf -873,1913.08.27.R,27-Aug-1913,1913,Invalid,Usa,New Jersey,"Lavalette, Ocean County",Unknown,Unknown,M,Man's leg recovered from 800-lb shark,UNKNOWN,Trenton Evening Times,8/27/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-Lavalette.pdf -872,1913.08.27.R,27-Aug-1913,1913,Invalid,Usa,New Jersey,"Spring Lake, Monmouth County",Unknown,Unknown,F,Female foot recovered from shark,UNKNOWN,Washington Post,8/27/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-FemaleFoot.pdf +873,1913.08.27.R,27-Aug-13,1913,Invalid,Usa,New Jersey,"Lavalette, Ocean County",Unknown,Unknown,M,Man's leg recovered from 800-lb shark,UNKNOWN,Trenton Evening Times,8/27/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-Lavalette.pdf +872,1913.08.27.R,27-Aug-13,1913,Invalid,Usa,New Jersey,"Spring Lake, Monmouth County",Unknown,Unknown,F,Female foot recovered from shark,UNKNOWN,Washington Post,8/27/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-FemaleFoot.pdf 871,1913.08.26.R,26-Aug-13,1913,Invalid,Italy,Trieste,Unknown,Unknown,Unknown,Unknown,Human casualties,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.26.R-Trieste.pdf 870,1913.07.12,12-Jul-13,1913,Unprovoked,Usa,South Carolina,Charleston,Unknown,soldier,M,FATAL,Y,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.07.12-soldier.pdf 869,1913.05.21,21-May-13,1913,Provoked,Usa,Florida,"John's Pass, Pinellas County",Fishing,George Roberts,M,"Forefinger of right hand bitten by a ""dead"" shark PROVOKED INCIDENT",N,Evening Independent,5/22/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.21-Roberts.pdf @@ -5135,14 +5135,14 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 863,1913.00.00.a,1913,1913,Unprovoked,Australia,Victoria,Brighton,Unknown,"male, a ""youth""",M,Arm severed,N,V.M. Coppleson (1958),"p.110 [ Note: Coppleson had no concrete evidence about this incident; he heard only ""vague reports"".",http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.a-youth.pdf 862,1912.08.30,30-Aug-12,1912,Unprovoked,Usa,Georgia,"Tybee Island, Chatham County",Swimming,Edward Coffee,M,FATAL,Y,Atlanta Constitution,8/31/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.08.30-Coffee.pdf 861,1912.07.23,23-Jul-12,1912,Unprovoked,Usa,South Carolina,Sullivan's Island,Swimming,Corporal Kirkpatrick,M,Toes severed,N,Atlanta Constitution,7/25/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.23-Kirkpatrick.pdf -860,1912.07.06.R,06-Jul-1912,1912,Unprovoked,Solomon islands,Central Province,Savo,Bathing,male,M,FATAL,Y,Sydney Morning Herald,7/6/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.06.R-Savo.pdf +860,1912.07.06.R,06-Jul-12,1912,Unprovoked,Solomon islands,Central Province,Savo,Bathing,male,M,FATAL,Y,Sydney Morning Herald,7/6/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.06.R-Savo.pdf 859,1912.05.04,04-May-12,1912,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,arm recovered from hooked shark,M,Unknown,UNKNOWN,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.05.04-arm.pdf 858,1912.03.18,18-Mar-12,1912,Unprovoked,New zealand,North Island,Takapuna,Swimming,male,M,"""Slight laceration to leg""",N,Evening Post,3/20/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.03.18-Takapuna.pdf 857,1912.02.22,22-Feb-12,1912,Provoked,Australia,Western Australia,Bunbury,Hard hat diving,Mr. Swanson,M,"No injury, shark nipped diving suit after he prodded the shark PROVOKED INCIDENT ",N,Western Argus,2/27/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.22-Swanson.pdf 856,1912.02.19,19-Feb-12,1912,Unprovoked,Australia,New South Wales,Coogee,Swimming,Fred Wort,M,Left calf & heel bitten,N,Argus (Melbourne) 2/20/1912,p.6; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.19-Wort.pdf 855,1912.02.03,03-Feb-12,1912,Unprovoked,New caledonia,South Province,Noumea,Swimming,Raoul Gillies,M,Left shoulder & both legs bitten,N,Northern Star,3/16/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.03-Gillies.pdf 854,1912.01.26,26-Jan-12,1912,Unprovoked,Australia,New South Wales,"Fig Tree Bridge, Lane Cove River, near Sydney ",Swimming,James Edward Morgan,M,FATAL,Y,Argus (Melbourne) 1/27,28,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.26-Morgan.pdf -853,1912.01.13.R,13-Jan-1912,1912,Unprovoked,Fiji,Viti Levu group,Beqa,Washed overboard,Unknown,M,FATAL,Y,Clarence & Richmond Examiner,1/13/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.13.R-Fiji.pdf +853,1912.01.13.R,13-Jan-12,1912,Unprovoked,Fiji,Viti Levu group,Beqa,Washed overboard,Unknown,M,FATAL,Y,Clarence & Richmond Examiner,1/13/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.13.R-Fiji.pdf 852,1912.01.06,06-Jan-12,1912,Unprovoked,Australia,New South Wales,Sydney Harbor,Unknown,male,M,Thigh & lower abdomen severely bitten,N, V.M. Coppleson (1933),page 450,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.06-Sydney.pdf 851,1912.01.01,01-Jan-12,1912,Unprovoked,Australia,Queensland,Ross Creek,Bathing,Samuel Tristing,M,FATAL,Y,Argus,1/2/1912,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.01-Tristing.pdf 850,1912.00.00,1912,1912,Unprovoked,Spain,Balearics,Isla Cabrera,Fell into the water,the governor of Cabrera,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.00.00-Isla-Cabrera-Balearics.pdf @@ -5152,23 +5152,23 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 846,1911.09.23,23-Sep-11,1911,Unprovoked,Usa,Texas,Galveston Ship Channel,Jumped overboard to rescue companion,"John Blomquist, a dredgerman",M,FATAL,Y,The Sun,7/13/1913; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.23-Blomquist.pdf 845,1911.09.20,20-Sep-11,1911,Unprovoked,Usa,Florida,"Pensacola Bay, Escambia County",Fell overboard & swimming,"Thomas Ashe, a ship’s pilot",M,FATAL,Y,The Sun,7/13/1913; Washington Post,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.20-Ashe.pdf 844,1911.09.17,17-Sep-11,1911,Unprovoked,Usa,Florida,"Pablo Beach, Jacksonville, Duval County",Bathing,Harold C. Rood,M,Left arm & thigh bitten,N,Sun,7/13/1913; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.17-HCRood.pdf -843,1911.07.31.R,31-Jul-1911,1911,Unprovoked,Spain,Málaga ,Ceuta,Bathing,a soldier,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.31.R-Ceuta.pdf -842,1911.07.16.R,16-Jul-1911,1911,Provoked,Usa,Delaware,Delaware Lightship,Fishing,Martin Berg,M,"Hooked shark bit his leg, knee to ankle PROVOKED INCIDENT",N,Washington Post,7/16/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.16.R-Berg.pdf +843,1911.07.31.R,31-Jul-11,1911,Unprovoked,Spain,Málaga ,Ceuta,Bathing,a soldier,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.31.R-Ceuta.pdf +842,1911.07.16.R,16-Jul-11,1911,Provoked,Usa,Delaware,Delaware Lightship,Fishing,Martin Berg,M,"Hooked shark bit his leg, knee to ankle PROVOKED INCIDENT",N,Washington Post,7/16/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.16.R-Berg.pdf 841,1911.05.09,09-May-11,1911,Unprovoked,South africa,Western Cape Province,Victoria Bay,Bathing,James May,M,"FATAL, partial remains recovered",Y,Cape Mercantile Advertiser,5/16/1911; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.09-JamesMay.pdf -840,1911.05.01.R,01-May-1911,1911,Provoked,Usa,Texas,"Rockport, Aransas County",Fishing,Mateo Zapeda,M,Bitten on left leg by hooked shark PROVOKED INCIDENT,N,Daily Advocate,5/1/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01.R-Zepada.pdf +840,1911.05.01.R,01-May-11,1911,Provoked,Usa,Texas,"Rockport, Aransas County",Fishing,Mateo Zapeda,M,Bitten on left leg by hooked shark PROVOKED INCIDENT,N,Daily Advocate,5/1/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01.R-Zepada.pdf 839,1911.05.01,01-May-11,1911,Unprovoked,South africa,Western Cape Province,Victoria Bay,Swimming,James Jantjes,M,FATAL,Y,Cape Mercantile Advertiser,5/2/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01-Jantjies.pdf -838,1911.04.08.R,08-Apr-1911,1911,Boating,New zealand,Chatham Islands,Unknown,Fishing,2 fishermen,Unknown,"No injury to occupants, shark bit boat",N,Grey River Argus,4/8/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.04.08.R-ChathamIslandBoat.pdf -837,1911.03.29.R,29-Mar-1911,1911,Unprovoked,Australia,Torres Strait,Thursday Island,Swimming,male,M,FATAL,Y,Northern Star,3/29/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.03.29.R-ThursdayIsland.pdf +838,1911.04.08.R,08-Apr-11,1911,Boating,New zealand,Chatham Islands,Unknown,Fishing,2 fishermen,Unknown,"No injury to occupants, shark bit boat",N,Grey River Argus,4/8/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.04.08.R-ChathamIslandBoat.pdf +837,1911.03.29.R,29-Mar-11,1911,Unprovoked,Australia,Torres Strait,Thursday Island,Swimming,male,M,FATAL,Y,Northern Star,3/29/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.03.29.R-ThursdayIsland.pdf 836,1911.01.04,04-Jan-11,1911,Sea Disaster,Australia,Western Australia,Off Legendre Island,3-masted steel barque Glenbank foundered during a cyclone,Anti Ketola,M,Minor injuries,N,Washington Post,1/26/1913,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.01.04-Katola.pdf 835,1911.00.00.b,1911,1911,Unprovoked,Usa,Texas,"Texas City, Galveston",Swimming,a sailor,M,Minor injury to feet,N,D.G. McComb,,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.b-TexasCity.pdf 834,1911.00.00.a,Ca. 1911,1911,Unprovoked,New zealand,North Island,"Manukau Harbor, 6 miles south of Auckland",Fishing,male,M,FATAL,Y,H.C. Chapman,,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.a-Manukau Harbor.pdf -833,1910.12.25.R,25-Dec-1910,1910,Invalid,Croatia, Primorje-Gorski Kotar County,Rijeka,Unknown,male,M,FATAL?,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.15.R-Rijeka.pdf -832,1910.12.23.R,23-Dec-1910,1910,Sea Disaster,Australia,Western Australia,Fremantle,Shipwrecked pearling schooner,Theodore Anderson’s captain & rest of crew taken by sharks,M,FATAL,Y,Iowa City Citizen,12/23/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.23.R-Anderson.pdf +833,1910.12.25.R,25-Dec-10,1910,Invalid,Croatia, Primorje-Gorski Kotar County,Rijeka,Unknown,male,M,FATAL?,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.15.R-Rijeka.pdf +832,1910.12.23.R,23-Dec-10,1910,Sea Disaster,Australia,Western Australia,Fremantle,Shipwrecked pearling schooner,Theodore Anderson’s captain & rest of crew taken by sharks,M,FATAL,Y,Iowa City Citizen,12/23/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.23.R-Anderson.pdf 831,1910.11.28,28-Nov-10,1910,Provoked,North atlantic ocean,Georges Bank,Unknown,Fishing,Tham Key,M,Right hand severely bitten by netted shark PROVOKED INCIDENT,N,NY Times,11/30/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.28-Key.pdf 830,1910.11.24,24-Nov-10,1910,Unprovoked,Australia,Queensland,Mackay,Bathing,Cecil Smith,M,Foot bitten,N,The Advertiser,11/25/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.24-Smith.pdf -829,1910.06.25.R,25-Jun-1910,1910,Unprovoked,Mexico,Unknown,LaBarra,Swimming,H. Gebler,M,Leg bitten,N,Indiana Evening Gazette,9/25/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.25.R-Gebler.pdf -828,1910.06.08.R,08-Jun-1910,1910,Sea Disaster,Mozambique,Zambesi River,Portuguese territory,"Steamer Durao struck rock & filled, boats capsized, passengers & crew tried to swim to shore",Unknown,Unknown,"FATAL, 3 passengers & 14 crew taken by sharks, captain, 1 passenger & 2 crew survived",Y,D. Davies,,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.08.R-Durao.pdf -827,1910.05.16.R,16-May-1910,1910,Invalid,Usa,Alabama,"Off Fort Gaines, Dauphin Island, Mobile County","Unknown, their unoccupied yawlboat was recovered","William Olsen, William Peterson, Albert Thomas & R. Zekoski",M,Presumed drowned & bodies taken by sharks,N,Atlanta Constitution,5/17/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.05.16.R-yawlboat.pdf +829,1910.06.25.R,25-Jun-10,1910,Unprovoked,Mexico,Unknown,LaBarra,Swimming,H. Gebler,M,Leg bitten,N,Indiana Evening Gazette,9/25/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.25.R-Gebler.pdf +828,1910.06.08.R,08-Jun-10,1910,Sea Disaster,Mozambique,Zambesi River,Portuguese territory,"Steamer Durao struck rock & filled, boats capsized, passengers & crew tried to swim to shore",Unknown,Unknown,"FATAL, 3 passengers & 14 crew taken by sharks, captain, 1 passenger & 2 crew survived",Y,D. Davies,,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.08.R-Durao.pdf +827,1910.05.16.R,16-May-10,1910,Invalid,Usa,Alabama,"Off Fort Gaines, Dauphin Island, Mobile County","Unknown, their unoccupied yawlboat was recovered","William Olsen, William Peterson, Albert Thomas & R. Zekoski",M,Presumed drowned & bodies taken by sharks,N,Atlanta Constitution,5/17/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.05.16.R-yawlboat.pdf 826,1910.03.31,31-Mar-10,1910,Unprovoked,Panama,Colón Province,Cristobal,Fell overboard from USS cruiser Tacoma,"Samuel Barnes, a Marine",M,FATAL,Y,The Ogden Standard,4/13/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.31-Barnes.pdf 825,1910.03.08,08-Mar-10,1910,Unprovoked,New zealand,North Island,"Waikanae Beach, Gisborne",Swimming,H. McGregor,M,Lacerations to foot,N,Poverty Bay Herald,3/9/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.08-McGregor.pdf 824,1910.03.00,Mar-10,1910,Invalid,Usa,Hawaii,"Pearl Harbor, O'ahu","Hard hat diving, laying some charge of powder",Martin Lund,M,No injury,N,The Sun,4/3/1910; Authenticity questioned by G.H. Balazs in J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.00-Lund.pdf @@ -5176,51 +5176,51 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 822,1910.01.26,26-Jan-10,1910,Unprovoked,Australia,New South Wales,Newcastle Harbor,Unknown,Alfred Victor Clulow,M,FATAL,Y,V.M. Coppleson (1962),p.245,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.01.26-Clulow.pdf 821,1910.00.00.b,1910,1910,Invalid,Usa,Hawaii,"Hilo, Hawai'i","Fishing, thrown into water by heavy sea, clinging to rocks at the water line",male,M,"Body bitten by shark/s, but death may have been due to drowning",Y,C.H. Townsend; Authenticity questioned by G.H. Balazs in J. Borg,p.70,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.b-Hilo.pdf 820,1910.00.00.a,1910,1910,Unprovoked,Philippines,Luzon Island,"Polinao Point, Manila",Swimming,Lieut. James H. Stewart,M,"Calf removed, not known if he survived ",UNKNOWN,V.M. Coppleson (1958),p.264,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.a-Stewart.pdf -819,1909.12.26.R,26-Nov-1909,1909,Unprovoked,Usa,Florida,"16 miles north of Fort Pierce Inlet, Indian River County ",Unknown,Herman Hovelsrud ,M,Severe lacerations to arm,N,Washington Post,12/26/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.26.R-Hovelsrud.pdf -818,1909.12.15.R,15-Dec-1909,1909,Unprovoked,Australia,New South Wales,20 miles off Sydney,Fell overboard,Mr. Witt,M,FATAL,Y,Star,12/15/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.15.R-Witt.pdf +819,1909.12.26.R,26-Nov-09,1909,Unprovoked,Usa,Florida,"16 miles north of Fort Pierce Inlet, Indian River County ",Unknown,Herman Hovelsrud ,M,Severe lacerations to arm,N,Washington Post,12/26/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.26.R-Hovelsrud.pdf +818,1909.12.15.R,15-Dec-09,1909,Unprovoked,Australia,New South Wales,20 miles off Sydney,Fell overboard,Mr. Witt,M,FATAL,Y,Star,12/15/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.15.R-Witt.pdf 817,1909.12.05,05-Dec-09,1909,Provoked,Australia,New South Wales,Bondi,Fishing,male,M,3 fingers bitten by hooked shark PROVOKED INCIDENT,N,The Advertiser,12/9/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.05-Fisherman.pdf 816,1909.11.14,14-Nov-1909 to 19-Nov-1909,1909,Sea Disaster,Indonesia,30 nm from Singapore,Rhio Strait,The 2379-ton French steamer La Seyne collied with British steamer Onda & sank in minutes. Passengers jumped overboard expecting to be picked up by Onda’s boats,Unknown,Unknown,"FATAL, 101 people perished, including commander, Joseph Couailhac. Iit was reported that a “shoal of sharks circled passengers in the water and dragged scores of people to their deaths” Of the 61 survivors, many were injured by sharks",Y,The Sun,7/13/1913 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.11.14-LaSeyne.pdf -815,1909.09.04.R,04-Sep-1909,1909,Provoked,Usa,Delaware,"Lewes, Sussex County",Seine netting,Walter Beach,M,Abrasion to leg from netted shark PROVOKED INCIDENT,N,Gettysburg Times,9/4/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.09.04.R-Beach.pdf +815,1909.09.04.R,04-Sep-09,1909,Provoked,Usa,Delaware,"Lewes, Sussex County",Seine netting,Walter Beach,M,Abrasion to leg from netted shark PROVOKED INCIDENT,N,Gettysburg Times,9/4/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.09.04.R-Beach.pdf 814,1909.08.13,13-Aug-09,1909,Unprovoked,Usa,Florida,"Pensacola Bay, Escambia County",Fell overboard from fishing schooner Halycon,William Craug,M,FATAL,Y,Laurel Ledger,8/19/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.08.13-Craug.pdf 813,1909.07.24,24-Jul-09,1909,Unprovoked,Usa,New York,Rockaway,Fell overboard while fishing for sharks,Albert Tyler,M,Right leg bitten,N,NY Times,7/25/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.24-Tyler.pdf 812,1909.07.15,15-Jul-09,1909,Unprovoked,Usa,Florida,"Panama City, Bay County",Swimming,Henry Munson,M,Hip & thigh lacerated,N,News Herald,7/29/2001,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.15-Munson.pdf -811,1909.06.26.a.R,26-Jun-1909,1909,Unprovoked,Mexico,Guerrero,Zacatula,Bathing,Rosa Lopez,F,FATAL,Y,Adams County News,6/26/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.a.R-Lopez.pdf +811,1909.06.26.a.R,26-Jun-09,1909,Unprovoked,Mexico,Guerrero,Zacatula,Bathing,Rosa Lopez,F,FATAL,Y,Adams County News,6/26/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.a.R-Lopez.pdf 810,1909.06.26.b.R,26-Jun-09,1909,Unprovoked,South africa,Western Cape Province,Cape Town,Unknown,Unknown,M,Remains of soldier in uniform. Probable drowning & scavenging,Y,Adams County News,6/26/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.b.R-CapeTown.pdf 809,1909.06.18,18-Jun-09,1909,Sea Disaster,Australia,Queensland,"Middleton Reef, 300 nm from Brisbane","1446-ton Norwegian barque Errol, bound from Peru to Newcastle with 22 on board wrecked. Survivors shelterd on the wreck of the Annasona. Subsequently the Master, his wife & 4 children perished along with several crew. Survivors (5) were rescued 7/12/1909",Master of the Errol,M,"FATAL, only his legs, still in sea-boots, were recovered ",Y,Australian Zoologist,viii.,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.18-Errol.pdf -808,1909.04.27.R,27-Apr-1909,1909,Provoked,Spain,Andalucia,"Puente Mayorga, San Roque, Cádiz",Fishing,male,M,Shark knocked him down after he grabbed it by the tail. No injury. PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.27.R-Cadiz.pdf +808,1909.04.27.R,27-Apr-09,1909,Provoked,Spain,Andalucia,"Puente Mayorga, San Roque, Cádiz",Fishing,male,M,Shark knocked him down after he grabbed it by the tail. No injury. PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.27.R-Cadiz.pdf 807,1909.04.10,10-Apr-09,1909,Invalid,Usa,Hawaii,"Pa'uwela, Maui",Reported swept away by waves while gathering opihi,Mrs. Ah Kim Chong,F, Search party saw a large shark devour what appeared to be part of her body,Y,J. Borg,pp.69-70; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.10-Chong.pdf -806,1909.04.09.R,09-Apr-1909,1909,Unprovoked,Tunisia,Sfax,Unknown,Diving (Helmet) for sponges,Johannis Zambeltos,M,FATAL,Y,C. Moore,GSAF; Petit Paisien,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.09.R-Zambeltos.pdf +806,1909.04.09.R,09-Apr-09,1909,Unprovoked,Tunisia,Sfax,Unknown,Diving (Helmet) for sponges,Johannis Zambeltos,M,FATAL,Y,C. Moore,GSAF; Petit Paisien,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.09.R-Zambeltos.pdf 805,1909.03.06,06-Mar-09,1909,Sea Disaster,South africa,South Atlantic Ocean,Possession Island,Wreck of the 1308-ton Norwegian ship Auckland,The Captain’s wife,F,FATAL,Y,L. Green,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.03.06-Auckland.pdf 804,1909.01.17,17-Jan-09,1909,Invalid,International_water,Unknown,Near the equator,Jumped overboard ,Thomas Butler,M,FATAL,Y,Star,3/18/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.17-Butler.pdf 803,1909.01.00,Jan-09,1909,Invalid,Italy,Sicily,"Off Capo San Croce, near Augusta (Catania)","On December 28, 1908, an earthquake, followed by tsunamis, destroyed coastal towns in Silcily and southern Italy, killing more than 100,000 people",Unknown,Unknown," 3 unidentified bodies recovered (male, female & young girl) from gut of female 4.5 m [14'9""] white shark caught in fishing net. They may have drowned in tidal wave following earthquake ",Y,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.00-Messina.pdf 802,1909.00.00,1909,1909,Unprovoked,Australia,New South Wales,Woy Woy,Unknown,anonymous,Unknown,Survived,N ,G.P. Whitley,citing Lone Hand,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.00.00-WoyWoy.pdf 801,1908.12.31,31-Dec-08,1908,Unprovoked,South africa,Western Cape Province,Stilbaai,Swimming,The son of Rabbi East,M,FATAL,Y,Fairbridge Index,Cape Archives,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.31-East.pdf -800,1908.12.16.R,16-Dec-1908,1908,Unprovoked,Mexico,Quintana Roo,Unknown,Swimming ashore from capsized boat,Colonel Harry J. Earle,M,"FATAL, ""bitten in two""",Y,Lowell Sun,12/16/1908; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.16-Earle.pdf +800,1908.12.16.R,16-Dec-08,1908,Unprovoked,Mexico,Quintana Roo,Unknown,Swimming ashore from capsized boat,Colonel Harry J. Earle,M,"FATAL, ""bitten in two""",Y,Lowell Sun,12/16/1908; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.16-Earle.pdf 799,1908.09.21, 21-Sep-1908,1908,Unprovoked,Australia,Torres Strait,Thursday Island,Fell from the jetty,Kong Choong Ting,M,FATAL,Y,Northern Territory Times & Gazette,9/25/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.21-KongChoongTing.pdf 798,1908.09.05,05-Sep-08,1908,Unprovoked,Usa,California,"Redondo, Los Angeles County",On fishing boat & trailing hand in the water,Ralph Nelson,M,Lacerations to fingers,N,Los Angeles Times,9/6/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.05-RalphNelson.pdf -797,1908.08.28.R,28-Aug-1908,1908,Unprovoked,Spain,Galicia,Cape Finisterre,Fell overboard from P&O steamship Arabia,William Newbury,M,FATAL,Y,Poverty Bay Herald,10/14/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.08.28.R-Newbury.pdf -796,1908.07.18.R,18-Jul-1908,1908,Invalid,Spain,Canary Islands,"Tazacorte, La Palma",Unknown,Unknown,Unknown,Human remains recovered but shark involvement prior to death unconfirmed ,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.18.R-LasPalmas.pdf -795,1908.07.08.R,08-Jul-1908,1908,Unprovoked,Croatia,Adriatic Sea,Medola,Boating,Milena Scambelli,F,"FATAL, lost a leg",Y,A. De Maddalena; M. Zuffa (pers. Comm.),Anon. (1908); C. Moore,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.08.R-Milena.pdf +797,1908.08.28.R,28-Aug-08,1908,Unprovoked,Spain,Galicia,Cape Finisterre,Fell overboard from P&O steamship Arabia,William Newbury,M,FATAL,Y,Poverty Bay Herald,10/14/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.08.28.R-Newbury.pdf +796,1908.07.18.R,18-Jul-08,1908,Invalid,Spain,Canary Islands,"Tazacorte, La Palma",Unknown,Unknown,Unknown,Human remains recovered but shark involvement prior to death unconfirmed ,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.18.R-LasPalmas.pdf +795,1908.07.08.R,08-Jul-08,1908,Unprovoked,Croatia,Adriatic Sea,Medola,Boating,Milena Scambelli,F,"FATAL, lost a leg",Y,A. De Maddalena; M. Zuffa (pers. Comm.),Anon. (1908); C. Moore,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.08.R-Milena.pdf 794,1908.06.18,18-Jun-08,1908,Unprovoked,Egypt,Gulf of Suez,Off Ras Gharib,The 168-ton Belmore foundered in heavy seas,Seaman Gray,M,FATAL,Y,Bay of Plenty Times,6/26/2008,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.18-Gray.pdf 793,1908.06.08,08-Jun-08,1908,Sea Disaster,Usa,Georgia,Unknown,The British steamer Caribbee foundered,Walter Howe,M,FATAL,Y,New York Times,6/15/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.08-Howe.pdf -792,1908.06.02.R,02-Jun-1908,1908,Sea Disaster,Papua new guinea,New Britain,Matupi,.,Unknown,Unknown,"Remains of 3 humans recovered from shark, but shark involvement prior to death unconfirmed",Y,Taranaki Herald,6/2/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.02.R-Matupi.pdf +792,1908.06.02.R,02-Jun-08,1908,Sea Disaster,Papua new guinea,New Britain,Matupi,.,Unknown,Unknown,"Remains of 3 humans recovered from shark, but shark involvement prior to death unconfirmed",Y,Taranaki Herald,6/2/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.02.R-Matupi.pdf 791,1908.05.13,13-May-08,1908,Sea Disaster,Indonesia,Java,Jakarta Harbor,native boats sunk in storm,Unknown,Unknown,FATAL,Y,The Advertiser,6/26/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.13-Jakarta.pdf 790,1908.05.10,10-May-08,1908,Invalid,Usa,Florida," Marathon, Monroe County",Unknown,John C. Williams,M,"FATAL, but shark involvement prior to death was not confirmed",Y,Weekly Miami Metropolis,5/11/1908,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.10-Williams.pdf 789,1908.01.08,08-Jan-08,1908,Unprovoked,Usa,Hawaii,"Mana, Kaua'i",Gathering fish stunned by dynamite,"male, a Japanese fisherman",M,"FATAL, ""pulled below the surface' ",Y,C.H. Townsend,Bull. N.Y. Zoological Society,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.01.08-JapaneseFisherman.pdf 788,1907.12.21,21-Dec-07,1907,Unprovoked,Australia,New South Wales,"Middle Harbour, Sugarloaf Bay, Sydney (Estuary)",Bathing,Henry Jones,M,FATAL,Y,R.D. Weeks,GSAF; Otago Daily Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.12.21-Jones.pdf -787,1907.10.18.R,18-Oct-1907,1907,Unprovoked,Australia,Torres Strait,Near Thursday Island,Bathing,male from the lugger Teazer,M,FATAL,Y,The Queenslander,10/26/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.18.R-male-Teazer.pdf -786,1907.10.16.R,16-Oct-1907,1907,Unprovoked,China,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M,"3 of thel 5 were injured, one of whom lost both hands",N,Dawson Daily News,11/20/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf -785,1907.10.16.R,16-Oct-1907,1907,Unprovoked,China,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M, 2 of the 5 fishermen were so seriously injured they died of their wounds,Y,Dawson Daily News,11/20/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf +787,1907.10.18.R,18-Oct-07,1907,Unprovoked,Australia,Torres Strait,Near Thursday Island,Bathing,male from the lugger Teazer,M,FATAL,Y,The Queenslander,10/26/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.18.R-male-Teazer.pdf +786,1907.10.16.R,16-Oct-07,1907,Unprovoked,China,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M,"3 of thel 5 were injured, one of whom lost both hands",N,Dawson Daily News,11/20/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf +785,1907.10.16.R,16-Oct-07,1907,Unprovoked,China,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M, 2 of the 5 fishermen were so seriously injured they died of their wounds,Y,Dawson Daily News,11/20/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf 784,1907.10.14,14-Oct-07,1907,Unprovoked,Australia,New South Wales,"Merewether Beach, near Newcastle",Bathing,Edward. Nolan,M,Lacerations to left arm from shoulder to wrist,N,Evening Post,10/14/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.14-Nolan.pdf 783,1907.10.12,12-Oct-07,1907,Invalid,Haiti,Tiburon Peninsula,Aux Cayes (now Les Cayes),Reached out to disentangle rope & fell overboard,"William Thomas, a seaman from the Hamburg-American liner Alleghany",M,"No attack, no injury",N,H.D. Baldridge, SAF Case #412,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.12-alleghany-sailor.pdf 782,1907.10.08,08-Oct-07,1907,Unprovoked,Usa,Hawaii," Kalepolepo, Kihei, Maui","Diving, retrieving fish caught in net ","male, a Japanese fisherman",M,"Arm severed at elbow, surgically amputated at shoulder ",N,C. Townsend; Pacific Commerical Advertiser,10/13/1907; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.08-fisherman.pdf -781,1907.09.18.R,19-Sep-1907,1907,Invalid,England,English Channel,Unknown,Swimming,J. Wolffe,M," ""Struck across loins"" but no injury. According to witnesses, incident involved a bottlenose dolphin.",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.18.R-Wolffe.pdf +781,1907.09.18.R,19-Sep-07,1907,Invalid,England,English Channel,Unknown,Swimming,J. Wolffe,M," ""Struck across loins"" but no injury. According to witnesses, incident involved a bottlenose dolphin.",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.18.R-Wolffe.pdf 780,1907.09.11,11-Sep-07,1907,Unprovoked,Croatia," Split-Dalmatia Count,","Sucurja, Hvar Island,",Swimming,female,F,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.11-Croatia.pdf -779,1907.08.12.b..R,12-Aug-1907,1907,Unprovoked,Croatia, Primorje-Gorski Kotar County,Krk Island,Swimming,a school teacher,F,FATAL,Y,Ogden Standard,8/13/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.b.R-SchoolTeacher.pdf -778,1907.08.12.a..R,12-Aug-1907,1907,Unprovoked,Croatia, Primorje-Gorski Kotar County,Krk Island,Swimming,Josef Slivovic,M,FATAL,Y,Ogden Standard,8/13/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.a.R-Silvovic.pdf -777,1907.08.08.R,08-Aug-1907,1907,Unprovoked,Usa,New Jersey,Lower Delaware Bay,Wading,George Kell,M,Abrasion to chest,N,New Oxford Item,8/8/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.08.R-Kell.pdf -776,1907.07.14.R,14-Jul-1907,1907,Unprovoked,Croatia," Split-Dalmatia Count,","Su?uraj, Hvar Island",Swimming,female,F,FATAL,Y,C. Moore,S. Navajas,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.14-R-Adriatic.pdf -775,1907.07.04.R,04-Jul-1907,1907,Invalid,Australia,Queensland,Karra Garra,.,Dick Atkins,M,"Disappeared, but shark involvement unconfirmed",Y,Queensland Figaro,7/4/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.04-R-Atkins.pdf +779,1907.08.12.b..R,12-Aug-07,1907,Unprovoked,Croatia, Primorje-Gorski Kotar County,Krk Island,Swimming,a school teacher,F,FATAL,Y,Ogden Standard,8/13/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.b.R-SchoolTeacher.pdf +778,1907.08.12.a..R,12-Aug-07,1907,Unprovoked,Croatia, Primorje-Gorski Kotar County,Krk Island,Swimming,Josef Slivovic,M,FATAL,Y,Ogden Standard,8/13/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.a.R-Silvovic.pdf +777,1907.08.08.R,08-Aug-07,1907,Unprovoked,Usa,New Jersey,Lower Delaware Bay,Wading,George Kell,M,Abrasion to chest,N,New Oxford Item,8/8/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.08.R-Kell.pdf +776,1907.07.14.R,14-Jul-07,1907,Unprovoked,Croatia," Split-Dalmatia Count,","Su?uraj, Hvar Island",Swimming,female,F,FATAL,Y,C. Moore,S. Navajas,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.14-R-Adriatic.pdf +775,1907.07.04.R,04-Jul-07,1907,Invalid,Australia,Queensland,Karra Garra,.,Dick Atkins,M,"Disappeared, but shark involvement unconfirmed",Y,Queensland Figaro,7/4/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.04-R-Atkins.pdf 774,1907.07.00,Jul-07,1907,Unprovoked,Usa,South Carolina,Small creek near Coles Island,Floating in creek,C.B. Hernandez,M,Slight injuries to left knee & calf ,N,E. M. Burton,,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.00-CB-Hernandez.pdf 773,1907.04.20,20-Apr-07,1907,Unprovoked,Mexico,Oaxaca,Salina Cruz,Bathing,Laurence Funda,M," 3 fingers & thigh lacerated, foot crushed",N,Los Angles Times,8/7/1907,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.04.20-Funda.pdf 772,1907.03.26,26-Mar-07,1907,Unprovoked,Usa,Florida,"Garden Key, Charlotte County","Fishing, tarpon being chased by shark leapt across his skiff, breaking it in half & Larkin became tangled in the net",Belton Larkin,M,"FATAL, shark bit his side, nearly cutting him in two ",Y,The Sun,7/13/1913 reprinted article from Punta Gorda Herald of 3/31/1907. NOTE: V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.26-Larkin.pdf @@ -5231,34 +5231,34 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 767,1907.00.00.b,1907,1907,Unprovoked,Vietnam,Khánh Hòa Province,Nha Trang,Fishing,A fisherman,M,"Leg severely bitten, surgically amputated",N,G. Vassal,,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.b-Vietnam.pdf 766,1907.00.00.a,1907,1907,Unprovoked,Usa,Hawaii,"Pepe'ekeo, Honomu, Hawai'i","Net fishing, fell into the water",Japanese fisherman,M,FATAL,Y,C. H. Townsend; G. H. Balazs & A. H. Kam; J. Borg,p.69; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.a-Pepeekeo.pdf 765,1906.11.16,16-Nov-06,1906,Unprovoked,Jamaica,Westmoreland Parish,Cabaritta River mouth,Fishing,Zacey Allen,M,Leg bitten,N,The Gleaner (Jamaica),11/20/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.11.16-ZaceyAllen.pdf -764,1906.10.10.d.R,10-Oct-1906,1906,Unprovoked,Usa,Hawaii,Unknown,Unknown,"an ""old native""",M,Buttock bitten,N,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.d.R-OldNative.pdf -763,1906.10.10.c.R,10-Oct-1906,1906,Unprovoked,Usa,Hawaii,Unknown,Swimming,skipper of a coasting schooner,M,FATAL,Y,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.c.R-skipper.pdf -762,1906.10.10.b.R,10-Oct-1906,1906,Unprovoked,Usa,Hawaii,Unknown,Diving,a native,M,Arm severed,N,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.b.R-Hawaii.pdf -761,1906.10.10.a.R,10-Oct-1906,1906,Unprovoked,Usa,Hawaii,Unknown,Swimming,a sailor,M,FATAL,Y,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.a.R-Hawaii.pdf -760,1906.09.27.R.b,27-Sep-1906,1906,Unprovoked,Indonesia,Java,Lorok Bay,Swimming,William Munich,M,Thumb & index finger of left hand severed,N,Atlanta Constitution,9/27/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf -759,1906.09.27.R.a,27-Sep-1906,1906,Unprovoked,Indonesia,Java,Lorok Bay,Swimming,a Swedish sailor,M,FATAL,Y,Atlanta Constitution,9/27/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf -758,1906.09.05.R,05-Sep-1906,1906,Unprovoked,Australia,Torres Strait,Mabiuag,Swimming,Smith,M,FATAL,Y,Wanganui Herald,9/12/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.05.R-Smith.pdf +764,1906.10.10.d.R,10-Oct-06,1906,Unprovoked,Usa,Hawaii,Unknown,Unknown,"an ""old native""",M,Buttock bitten,N,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.d.R-OldNative.pdf +763,1906.10.10.c.R,10-Oct-06,1906,Unprovoked,Usa,Hawaii,Unknown,Swimming,skipper of a coasting schooner,M,FATAL,Y,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.c.R-skipper.pdf +762,1906.10.10.b.R,10-Oct-06,1906,Unprovoked,Usa,Hawaii,Unknown,Diving,a native,M,Arm severed,N,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.b.R-Hawaii.pdf +761,1906.10.10.a.R,10-Oct-06,1906,Unprovoked,Usa,Hawaii,Unknown,Swimming,a sailor,M,FATAL,Y,Washington Post,10/10/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.a.R-Hawaii.pdf +760,1906.09.27.R.b,27-Sep-06,1906,Unprovoked,Indonesia,Java,Lorok Bay,Swimming,William Munich,M,Thumb & index finger of left hand severed,N,Atlanta Constitution,9/27/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf +759,1906.09.27.R.a,27-Sep-06,1906,Unprovoked,Indonesia,Java,Lorok Bay,Swimming,a Swedish sailor,M,FATAL,Y,Atlanta Constitution,9/27/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf +758,1906.09.05.R,05-Sep-06,1906,Unprovoked,Australia,Torres Strait,Mabiuag,Swimming,Smith,M,FATAL,Y,Wanganui Herald,9/12/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.05.R-Smith.pdf 757,1906.09.00,Sep-06,1906,Provoked,Usa,California,"Avalon, Los Angeles County",Fishing,Percy Neale,M,PROVOKED INCIDENT No injury; shirt torn by gaffed shark,N,L.A.Times,10/1/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.00-Neale.pdf 756,1906.08.20,20-Aug-06,1906,Unprovoked,Yemen ,Aden,Unknown,Diving around anchored liner,boy,M,Leg severed. Injury originally thought due to boat's propeller,N,S. Samuels,,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.20-boy.pdf 755,1906.08.04,04-Aug-06,1906,Unprovoked,Usa,Maryland,"Tangier Sound, Somerset County",Fell overboard,William McFlood,M,FATAL,Y,Washington Post,8/11/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.04-McFlood.pdf -754,1906.07.05.R,05-Jul-1906,1906,Unprovoked,Usa,Mississippi,"Bay St. Louis, Hancock County",Swimming,a St. Stanislaus College student,M,FATAL,Y,The Courier,7/5/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.05.R-St.Stanislaus.pdf +754,1906.07.05.R,05-Jul-06,1906,Unprovoked,Usa,Mississippi,"Bay St. Louis, Hancock County",Swimming,a St. Stanislaus College student,M,FATAL,Y,The Courier,7/5/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.05.R-St.Stanislaus.pdf 753,1906.07.00,Jul-06,1906,Invalid,Mozambique,Maputo Province,Lourenco Marques,Unknown,Captain Sanna,M,Sanna drowned; his hand (identified by ring on finger) found in a shark at the market,Y,L.M. Guardian,7/23/1906; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.00-CaptainSanna.pdf -752,1906.04.27.R,27-Apr-1906,1906,Unprovoked,Indonesia,Maluku Province,Aru Islands,Hard hat diving,Unknown,M,FATAL,Y,The Advertiser,5/16/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.27.R-Aru-Islands.pdf +752,1906.04.27.R,27-Apr-06,1906,Unprovoked,Indonesia,Maluku Province,Aru Islands,Hard hat diving,Unknown,M,FATAL,Y,The Advertiser,5/16/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.27.R-Aru-Islands.pdf 751,1906.04.16,16-Apr-06,1906,Provoked,Australia,Victoria,Western Port Bay,Shooting sharks ,Leo Clarke,M,Finger severed by shark he had shot & stabbed PROVOKED INCIDENT,N,The Argus,4/18/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.16-Clarke.pdf 750,1906.04.14,14-Apr-06,1906,Unprovoked,Australia,Queensland,Lizard Island,Diving for beche-de-mer ,Charley ,M,FATAL,Y,Morning Post,4/20/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.14-Charley.pdf 749,1906.04.10.R.a & b,10-April 1906,1906,Sea Disaster,Indonesia,Unknown,40 miles from Tahane Island,The schooner Tahitienne foundered in a hurricane,Captain Baxter & Dick Chares,M,FATAL x 2,Y,Atlanta Constitution,5/13/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.10.R.a-b-Baxter.pdf 748,1906.04.02.R,02-April 1906,1906,Invalid,Australia,New South Wales,Moodie Beach,.,Herbert Mills,M,Cause of death may have been downing,Y,.Morning Bulletin,4/3/1906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.02.R-Mills.pdf -747,1906.02.14.R,14-Feb-1906,1906,Invalid,New zealand,North Island,Mototapu Island,Swimming,Herbert Thomas,M,"FATAL, but shark involvement prior to death was not determined",Y,Otago Witness,2/14/11906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.02.14.R-Thomas.pdf +747,1906.02.14.R,14-Feb-06,1906,Invalid,New zealand,North Island,Mototapu Island,Swimming,Herbert Thomas,M,"FATAL, but shark involvement prior to death was not determined",Y,Otago Witness,2/14/11906,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.02.14.R-Thomas.pdf 746,1906.01.28,28-Jan-06,1906,Unprovoked,Australia,New South Wales,Georges River,Bathing,William Joseph Dobson.,M,FATAL,Y,J. Green,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.28-Dobson.pdf 745,1906.01.20,20-Jan-06,1906,Unprovoked,South africa,KwaZulu-Natal,"Battery Beach, Durban",Washing horses,Ramdayal,M,"FATAL, hips & thigh bitten ",Y,Natal Mercury Pictorial,1/31/1906; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.20-Ramdayal.pdf 744,1905.12.31,31-Dec-05,1905,Unprovoked,South africa,KwaZulu-Natal,"Back Beach, Durban",Floating or standing,"Eric Suppeman, cabin boy on the Norwegian ship Blanca",M,"FATAL, left torso, buttocks, thigh & foot bitten ",Y,Natal Mercury 1/1/1906; Natal Mercury Pictorial,1/10/1906; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.31-Suppeman.pdf 743,1905.12.29,29-Dec-05,1905,Invalid,Australia,Western Australia,Geraldton,Bathing,Hugh Carroll,M,"""Bad wound in the leg"" - 7-ft shark caught in the bath same day",N,The Advertiser,12/30/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.29-Carroll.pdf -742,1905.11.17.R,17-Nov-1905,1905,Invalid,Unknown,Unknown,Unknown,A man's head found in a shark caught by British steamer Syria,Unknown,M,Probable scavenging,Y,Altoona Mirror,11/17/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.11.17.R-Syria.pdf +742,1905.11.17.R,17-Nov-05,1905,Invalid,Unknown,Unknown,Unknown,A man's head found in a shark caught by British steamer Syria,Unknown,M,Probable scavenging,Y,Altoona Mirror,11/17/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.11.17.R-Syria.pdf 741,1905.09.29,29-Sep-05,1905,Unprovoked,Australia,New South Wales,"Waverly, Sydney",Swimming,Jame Crotty,M,FATAL. Shark involvement suspected but not confirmed,Y,The Argus,9/30/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.09.29-Crotty.pdf 740,1905.08.00.b,Late Aug-1905,1905,Unprovoked,Usa,New Jersey,"Atlantic City, Atlantic County",Swimming from naptha launch after a day of fishing,George Wright,M,3 toes of right foot were severed,N,The Sun (undated article),,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.b-Wright.pdf 739,1905.08.00.a,Aug-05,1905,Unprovoked,Philippines,Luzon Island,Manila Bay,Bathing,Frank Abernathy,M,Leg bitten,N,Obrien County Bell,8/31/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.a-Abernathy.pdf 738,1905.07.29,29-Jul-05,1905,Unprovoked,Usa,North Carolina,"Davis Shore, east of Beaufor, Carteret Countyt",Wading,Sutton Davis,M,Body not recovered FATAL,Y,C. Creswell,GSAF; F. Schwartz,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.29-Davis.pdf -737,1905.07.25.R,25-Jul-1905,1905,Invalid,Italy,Unknown,Naples,Unknown,boy,M,"Body recovered from shark, probable drowning and scavenging",Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.25.R-Naples.pdf +737,1905.07.25.R,25-Jul-05,1905,Invalid,Italy,Unknown,Naples,Unknown,boy,M,"Body recovered from shark, probable drowning and scavenging",Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.25.R-Naples.pdf 736,1905.07.00,Jul-05,1905,Unprovoked,Usa,North Carolina,"Ocracoke, Hyde County",Fishing,Coast Guard personnel,M,FATAL,Y,F. Schwartz,p.23 & pers.com to C. Creswell,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.00 735,1905.05.22,22-May-05,1905,Unprovoked,Usa,Florida,"Pablo Beach, Jacksonville, Duval County",Swimming,Dunham Coxetter,M,Lacerations to back & right leg,N,Atlanta Constitution,5/23/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.05.22.R-Coxetter.pdf 734,1905.04.06,06-Apr-05,1905,Unprovoked,South africa,KwaZulu-Natal,"Back Beach, Durban",Swimming,James Anderson,M,"FATAL, thigh bitten, femoral artery severed ",Y,Natal Mercury,4/7/1905; H.Gill & M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.04.06-Anderson.pdf @@ -5268,12 +5268,12 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 730,1905.01.01,01-Jan-05,1905,Invalid,Australia,Victoria,Elwood,Bathing,Alfred Boldner,M,Reported to have been killed by a shark but 2 years later he was found very much alive,Y,Adelaide Advertiser,1/3/1905,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.01.01-Boldner.pdf 729,1905.00.00,1905,1905,Boating,Usa,North Carolina,"Cape Lookout, Carteret County",Harpooning turtles,"skiff, occupants: Russel J. Coles and others",Unknown,"No injury, shark bumped skifft",N,Clay Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.00.00.b-CoastGuard.pdf 728,1904.11.02,02-Nov-04,1904,Unprovoked,Philippines,Luzon Island,"Inner Harbor, Olongapo",Bathing alongside US Naval ship,"sailor, a boatswain's mate from the Piscataqua",M,Foot bitten,N,The Sun,undated article; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1904.11.02-sailor.pdf -727,1904.10.11.R,11-Oct-1904,1904,Unprovoked,Indian ocean,Between Noumea & Sydney,Unknown,Fell overboard,Axel Slettsten,M,FATAL,Y,The Argus,10/11/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.10.11.R-Slettsten.pdf +727,1904.10.11.R,11-Oct-04,1904,Unprovoked,Indian ocean,Between Noumea & Sydney,Unknown,Fell overboard,Axel Slettsten,M,FATAL,Y,The Argus,10/11/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.10.11.R-Slettsten.pdf 726,1904.09.00,Sep-04,1904,Unprovoked,Cuba,Havana Province,Havana Harbor,Lost his footing & fell overboard,Sailor from ship Mobile,M,"FATAL, left leg severed below knee, right leg severed above knee by a second shark",Y,Washington Post 7/19/1905,,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.09.00-Mobile-sailor.pdf 725,1904.08.00,Aug-04,1904,Unprovoked,Cuba,Villa Clara Province,Caibarien Harbor,"Ship's boat capsized in squall, captain & 2 sailors clinging onto hull",2 sailors,M,"FATAL, shark pulled them off hull of boat ",Y,Washington Post 7/19/1905,,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.08.00-boat-of-German-bark.pdf 724,1904.07.28,28-Jul-04,1904,Unprovoked,Usa,New Jersey,"Shrewsbury River, Monmouth County",Sailing,"boat, 2 occupants",M,No injury,N,New York Herald Tribune,7/29/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.28-ShrewsburyRiver.pdf 723,1904.07.27,27-Jul-04,1904,Unprovoked,Usa,Texas,Unknown,Swimming,Chester Kennedy,M,"FATAL, body not recovered",Y,New York Times,7/28/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.27-ChesterKennedy.pdf -722,1904.07.01.R,01-Jul-1904,1904,Unprovoked,Italy,Ancona Province,Ancona,Swimming,Unknown,M,FATAL x 4. Afterwards metal mesh nets were installed,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.01-Ancona.pdf +722,1904.07.01.R,01-Jul-04,1904,Unprovoked,Italy,Ancona Province,Ancona,Swimming,Unknown,M,FATAL x 4. Afterwards metal mesh nets were installed,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.01-Ancona.pdf 721,1904.02.07,07-Feb-04,1904,Unprovoked,Australia,Queensland,Brisbane,Swimming after his hat,George Grant,M,FATAL,Y,Grey River Argus,2/26/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.07-Grant.pdf 720,1904.02.04,04-Feb-04,1904,Unprovoked,New zealand,North Island,Waitara,Swimming,Ngawai Rakau,M,FATAL,Y,Star,2/4/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.04-Rakau.pdf 719,1904.01.23,23-Jan-04,1904,Unprovoked,New caledonia,South Province,Noumea,Bathing,Charley Smith,M,FATAL,Y,The Advertiser,2/4/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.01.23-Smith.pdf @@ -5281,20 +5281,20 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 717,1904.00.00.b,1904,1904,Unprovoked,Philippines,Quezon,Tayabas,Bathing,Lt. Edward Hearn,M,Left arm bitten,N,N.Y. Sun,3/19/1911 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.b-Hearn.pdf 716,1904.00.00.a,1904,1904,Unprovoked,Usa,Hawaii,"Off Diamond Head, Honolulu, O'ahu",Swimming,male,M,"FATAL, disappeared, then shark caught with head and body of man, from waist down minus leg, in its gut",Y,The Sun (no date); D. Baldridge,p.171; G.H. Balazs,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.a-Honolulu.pdf 715,1903.10.04,04-Oct-03,1903,Unprovoked,Cuba,Havana Province,Havana Harbor,Fell overboard,a sailor,M,FATAL,Y,NY Times,10/18/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.10.04-Sailor.pdf -714,1903.09.16.R,16-Sep-1903,1903,Unprovoked,Usa,New Jersey,"Atlantic City, Atlantic County",Fishing,Rev. John McMillan,M,Lacerations to right arm & shoulder,N,Indiana Messenger,9/16/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.09.16.R-McMillan.pdf +714,1903.09.16.R,16-Sep-03,1903,Unprovoked,Usa,New Jersey,"Atlantic City, Atlantic County",Fishing,Rev. John McMillan,M,Lacerations to right arm & shoulder,N,Indiana Messenger,9/16/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.09.16.R-McMillan.pdf 713,1903.07.00,Jul-03,1903,Unprovoked,Unknown,Unknown,Unknown,"Swimming, after falling overboard",Juan de la Cruz Silva Martinez,M,"Right leg bitten, surgically amputated",N,Atlanta Constitution,1/10/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.07.00-Martinez.pdf 712,1903.06.21,21-Jun-03,1903,Unprovoked,Australia,New South Wales,Georges River,Swimming,William Price,M,FATAL,Y,The Advertiser,6/22/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.06.21-Price.pdf 711,1903.05.04,04-May-03,1903,Unprovoked,Mexico,Veracruz,Coatzacoalcos,Bathing,3 men,M,FATAL x 3,Y,Chicago Tribune,5/5/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.05.04-Mexicox3.pdf -710,1903.03.20.R,20-Mar-1903,1903,Unprovoked,Australia,New South Wales,Sydney,Suicide,R. Raymond,M,Jumped off cliff,Y,Northern Territory Times,3/20/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.20.R-Raymond-Suicide.pdf +710,1903.03.20.R,20-Mar-03,1903,Unprovoked,Australia,New South Wales,Sydney,Suicide,R. Raymond,M,Jumped off cliff,Y,Northern Territory Times,3/20/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.20.R-Raymond-Suicide.pdf 709,1903.03.12,12-Mar-03,1903,Unprovoked,Australia,Queensland,Logan River,Swimming,William Bartlett,M,FATAL,Y,Sydney Morning Herald,3/16/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.12-Bartlett.pdf 708,1903.01.10, 10-Jan-1903,1903,Unprovoked,Australia,New South Wales,"Lane Cove River, Sydney Harbor (Estuary)",Unknown,Sydney James,M,FATAL,Y,Northern Territory Times & Gazette,1/12/1903,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.01.10-James.pdf 707,1903.00.00.b,Summer of 1903,1903,Unprovoked,Unknown,Unknown,Unknown,Sponge diving,2 males,M,FATAL,Y,M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.b-Crete.pdf 706,1903.00.00.a,Ca. 1903,1903,Unprovoked,Usa,Hawaii,"Koko Head, south side of O'ahu Island",Fishing,Phil Kitchin,M,"FATAL, remains (foot) recovered from shark 2 days later",Y,Captain W. Young, 51-52,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.a-PhilKitchin.pdf -705,1902.12.22.R,22-Dec-1902,1902,Unprovoked,Nicaragua,Rio San Juan,Greytown,Swimming,Frederick Wiseman,M,FATAL,Y,Racine Daily Journal,12/22/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.12.22.R-Wiseman.pdf +705,1902.12.22.R,22-Dec-02,1902,Unprovoked,Nicaragua,Rio San Juan,Greytown,Swimming,Frederick Wiseman,M,FATAL,Y,Racine Daily Journal,12/22/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.12.22.R-Wiseman.pdf 704,1902.11.10,10-Nov-02,1902,Unprovoked,Australia,New South Wales,"Middle Harbour, Sydney ",Swimming,Howard Dent,M,FATAL,Y,The Advertiser,11/11/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.10-Dent.pdf -703,1902.11.01.R,01-Nov-1902,1902,Unprovoked,Usa,Texas,"Near Port Lavaca, Calhoun County",Fishing,male,M,Severe laceration to hand,N,Victoria Weekly,1/11/ 1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.01.R-PortLavaca.pdf -702,1902.08.28.R,29-Aug-1902,1902,Unprovoked,Italy,Calabria,Nicotera,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.28.R-Nicotera.pdf -701,1902.08.24.R,24-Aug-1902,1902,Boating,Croatia,Istria County,Porec,Fishing,Row boat; occupants - 2 young men,M,"No injury to occupants, shark grabbed anchor rope & towed boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.24.R-Croatia.pdf +703,1902.11.01.R,01-Nov-02,1902,Unprovoked,Usa,Texas,"Near Port Lavaca, Calhoun County",Fishing,male,M,Severe laceration to hand,N,Victoria Weekly,1/11/ 1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.01.R-PortLavaca.pdf +702,1902.08.28.R,29-Aug-02,1902,Unprovoked,Italy,Calabria,Nicotera,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.28.R-Nicotera.pdf +701,1902.08.24.R,24-Aug-02,1902,Boating,Croatia,Istria County,Porec,Fishing,Row boat; occupants - 2 young men,M,"No injury to occupants, shark grabbed anchor rope & towed boat",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.24.R-Croatia.pdf 700,1902.08.08,08-Aug-02,1902,Unprovoked,Usa,Hawaii,"Kalihi, O'ahu",Catching crabs,Hawaiian boy,M,"FATAL, both arms severed ",Y,G. H. Balazs & A. H. Kam; V.M. Coppleson (1958),p.250; J. Borg,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.08-HawaiianBoy.pdf 699,1902.07.15,15-Jul-02,1902,Provoked,Italy,Liguria,"Galliera dock, Genoa",Fishing,male,M,Face & arms injured by hooked shark PROVOKED INCIDENT ,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.15-Genoa.pdf 698,1902.07.06,06-Jul-02,1902,Provoked,Usa,New Jersey,"Atlantic City, Atlantic County",Swimming,Harry M. Speerman,M,Shark bit his left arm after he grabbed its tail PROVOKED INCIDENT,N,New York Times,7/7/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.06-Speerman.pdf @@ -5302,15 +5302,15 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 696,1902.06.00,Jun-02,1902,Unprovoked,Egypt,Mediterranean Sea,"Tzortzou Reef, Marsa Matruh",Sponge diving,Giorgos,M,Bitten on hand and thigh,N,M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.00-Giorgos.pdf 695,1902.04.00,Apr-02,1902,Invalid,South africa,Eastern Cape Province,Algoa Bay,Swimming,Neil Sorenson,M,Probable drowning & scavenging,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.04.19-Sorenson.pdf 694,1902.02.22.R,.22-Feb-1902,1902,Provoked,New zealand,North Island,Poverty Bay,Standing on ship deck,male,M,"No injury, hooked shark bit tousers. PROVOKED INCIDENT",N,The Colonist 2/22/1902,,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.02.22.R-PovertyBay.pdf -693,1902.01.25.R,25-Jan-1902,1902,Unprovoked,Australia,New South Wales,Kerosene Bay,Dangling feet in the water,John Ogier,M,FATAL,Y,The Advertiser,1/25/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.22-Ogier.pdf -692,1902.01.19.R,19-Jan-1902,1902,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,a soldier from the Natal Garrison,M,Possible drowning & scavenging. Remains were recovered from a 15' shark's gut,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19R-soldier-Durban.pdf +693,1902.01.25.R,25-Jan-02,1902,Unprovoked,Australia,New South Wales,Kerosene Bay,Dangling feet in the water,John Ogier,M,FATAL,Y,The Advertiser,1/25/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.22-Ogier.pdf +692,1902.01.19.R,19-Jan-02,1902,Invalid,South africa,KwaZulu-Natal,Durban,Unknown,a soldier from the Natal Garrison,M,Possible drowning & scavenging. Remains were recovered from a 15' shark's gut,Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19R-soldier-Durban.pdf 691,1902.01.19,19-Jan-02,1902,Unprovoked,Australia,Queensland,Brisbane,Swimming,Charles Jones,M,Legs bitten,N,Brisbane Courier,1/20/1902,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19-Jones.pdf 690,1901.12.01,01-Dec-01,1901,Unprovoked,Australia,Queensland,Brisbane,Bathing,William Quince,M,Lacerations to torso & thigh,N,The Argus,12/2/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.12.01-Quince.pdf 689,1901.10.00,Mid Oct-1901,1901,Unprovoked,Philippines,Zamboanga del Sur Province, Port Isabela de Basilan,Taking catch from a fish weir in which the shark was snared,"Dahkus, a Molussa Moro",M,Right thigh bitten ,N,J.A. Guthrie,M.D.; Newark Advocate,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.10.00-Dahkus.pdf -688,1901.09.23.R,23-Sep-1901,1901,Unprovoked,Cyprus,Southern Cyprus,Larnaca,Swimming,male,M,"FATAL, bitten on arms, chest & legs",Y,Bardanis citing Embros,9/23/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.09.23.R-Cyprus.pdf +688,1901.09.23.R,23-Sep-01,1901,Unprovoked,Cyprus,Southern Cyprus,Larnaca,Swimming,male,M,"FATAL, bitten on arms, chest & legs",Y,Bardanis citing Embros,9/23/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.09.23.R-Cyprus.pdf 687,1901.07.30,30-Jul-01,1901,Unprovoked,South africa,Western Cape Province,Windmill Beach,Swimming,"John Hendrick Adrian Chandler, a prisoner of war",M,"Right leg bitten & foot severed, right arm bitten, bones fractured & nearly severed FATAL",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.30-Chandler.pdf 686,1901.07.17,17-Jul-01,1901,Invalid,Italy,Syracuse,Capo Santa Croce,Swimming,Antonio Tornatori,M,"Disappeared, but shark involvement unconfirmed",Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.17-Antonio.pdf -685,1901.06.29.R,29-Jun-1901,1901,Invalid,Yemen ,Aden,Unknown,Diving around anchored liner,boy,M,Unknown,UNKNOWN,The Graphic,6/29/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf +685,1901.06.29.R,29-Jun-01,1901,Invalid,Yemen ,Aden,Unknown,Diving around anchored liner,boy,M,Unknown,UNKNOWN,The Graphic,6/29/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf 684,1901.06.24,24-Jun-01,1901,Unprovoked,Philippines,Western Viscayas,"Island of Panay, Iliolo",Swimming,"S. McKie, apprentice 1st class on the U.S. Naval ship Annapolis",M,"Left thigh stripped of flesh 4"" above the knee ",N,J.A. Guthrie; Sun,7/13/1913; V.M. Coppleson,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.24-McK.pdf 683,1901.01.30,30-Jan-01,1901,Unprovoked,Australia,Queensland,Brisbane,Bathing,John Thompson,M,"Thigh bitten, FATAL",Y,Otago Witness,2/6/1901,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.01.30-Thompson.pdf 682,1901.00.00,Summer 1901,1901,Unprovoked,Usa,Florida,Indian River Inlet / Fort Pierce Inlet,Bathing,Michael O'Brien,M,Abdomen bitten,N,W.H. Gregg; L. Schultz & M. Malin,p.533,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.00.00-O'Brien.pdf @@ -5327,36 +5327,36 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 671,1900.01.28, 28-Jan-1900,1900,Unprovoked,Australia,New South Wales,"Lane Cove River, Sydney Harbor (Estuary)","Standing, gathering oysters",Charles Duck,M,Right posterior thigh bitten,N,Poverty Bay Herald,2/12/1900,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.01.28-Duck.pdf 670,1900.00.00.b,Early 1900s,1900,Unprovoked,Usa,Hawaii,"Inter-Island Dry Dock at Kakaako Street, Honolulu, O'ahu",Unknown,Emil A. Berndt,M,Severe abrasion when shark swam between his legs,N,G. H. Balazs; J. Borg,p.69; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.b-Berndt.pdf 669,1900.00.00.a,Ca. 1900,1900,Unprovoked,South africa,Eastern Cape Province,Port Elizabeth,Swimming,Mr. Gruner,M,Leg severed,N,H. Monsen ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.a-Gruner.pdf -668,1899.12.18,18-Dec-1899,1899,Unprovoked,Australia,Queensland,Tingalpa Creek,Fell into the water,J. Richardson,M,bite to lower leg,N,Brisbane Courier,12/21/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.12.18-Richardson.pdf -667,1899.11.20,20-Nov-1899,1899,Sea Disaster,Philippines,Mindoro Occidental,Off Lubang Island,Sea Disaster,wreck of the steamship Hubeh,Unknown,FATAL,Y,The Mercury,1/191900,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.11.20-Hupeh-wreck.pdf -666,1899.10.12.b,12-Oct-1899,1899,Unprovoked,Libya,Mediterranean Sea,Off Bengasi,Diving,John Cataris,M,Lacerations to head,N,Iowa Daily Press,10/12/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.b.R-Cataris.pdf -665,1899.10.12.a,12-Oct-1899,1899,Unprovoked,Libya,Mediterranean Sea,Off Bengasi,Sponge diving,Skoumbourdi,M,FATAL,Y,Iowa Daily Press,10/12/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.a.R-Skoumbourdi.pdf -664,1899.09.11.R,11-Sep-1899,1899,Unprovoked,Mexico,Tamaulipas,Tampico,Swimming,Paul Guyot,M,FATAL,Y,Bryan Morning Eagle,9/12/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.09.11.R-Guyot -663,1899.08.23.R,23-Aug-1899,1899,Provoked,Usa,California,"Monterey Bay, Monterey County",Hunting sharks,males,M,"FATAL, Drowned or crushed when harpooned shark smashed their boat PROVOKED INCIDENT",Y,Mexia Evening Ledger,8/23/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.23.R-BaskingShark-Monterey.pdf -662,1899.08.15,15-Aug-1899,1899,Unprovoked,Usa,Florida,"Trout River, Panama Park",Swimming,Delano Wood,M,FATAL,Y,Washington Post,8/16/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.15-DelanoWood.pdf -661,1899.08.08.c,08-Aug-1899,1899,Unprovoked,Egypt ,Mediterranean Sea,Port Said,Floating on his back,Arab boy,M,Back muscles torn away,N,W. B. Orme,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.c-ArabBoy-9.pdf -660,1899.08.08.b,08-Aug-1899,1899,Unprovoked,Egypt ,Mediterranean Sea,Port Said,Bathing,Arab boy,M,"Forearm, wrist & hand bitten",N,W. B. Orme,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.b-ArabBoy-19.pdf -659,1899.08.08.a,08-Aug-1899,1899,Unprovoked,Egypt,Mediterranean Sea,Port Said,Bathing,Arab boy,M,Left leg bitten,N,W. B. Orme,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.a-ArabBoy-13.pdf -658,1899.07.08.R,08-Jul-1899,1899,Unprovoked,Unknown,Unknown,Unknown,Fell overboard ,Captain Masson,M,FATAL,Y,Mataura Ensign,7/8/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.07.08.R-Masson.pdf -657,1899.06.07,07-Jun-1899,1899,Provoked,Italy,Calabria,Bagnara Calabra,Fishing,Enrico & Noce,M,Multiple injuries from boated shark PROVOKED INCIDENT,N,C. Moore. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.07-Bagnara.pdf +668,1899.12.18,18-Dec-99,1899,Unprovoked,Australia,Queensland,Tingalpa Creek,Fell into the water,J. Richardson,M,bite to lower leg,N,Brisbane Courier,12/21/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.12.18-Richardson.pdf +667,1899.11.20,20-Nov-99,1899,Sea Disaster,Philippines,Mindoro Occidental,Off Lubang Island,Sea Disaster,wreck of the steamship Hubeh,Unknown,FATAL,Y,The Mercury,1/191900,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.11.20-Hupeh-wreck.pdf +666,1899.10.12.b,12-Oct-99,1899,Unprovoked,Libya,Mediterranean Sea,Off Bengasi,Diving,John Cataris,M,Lacerations to head,N,Iowa Daily Press,10/12/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.b.R-Cataris.pdf +665,1899.10.12.a,12-Oct-99,1899,Unprovoked,Libya,Mediterranean Sea,Off Bengasi,Sponge diving,Skoumbourdi,M,FATAL,Y,Iowa Daily Press,10/12/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.a.R-Skoumbourdi.pdf +664,1899.09.11.R,11-Sep-99,1899,Unprovoked,Mexico,Tamaulipas,Tampico,Swimming,Paul Guyot,M,FATAL,Y,Bryan Morning Eagle,9/12/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.09.11.R-Guyot +663,1899.08.23.R,23-Aug-99,1899,Provoked,Usa,California,"Monterey Bay, Monterey County",Hunting sharks,males,M,"FATAL, Drowned or crushed when harpooned shark smashed their boat PROVOKED INCIDENT",Y,Mexia Evening Ledger,8/23/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.23.R-BaskingShark-Monterey.pdf +662,1899.08.15,15-Aug-99,1899,Unprovoked,Usa,Florida,"Trout River, Panama Park",Swimming,Delano Wood,M,FATAL,Y,Washington Post,8/16/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.15-DelanoWood.pdf +661,1899.08.08.c,08-Aug-99,1899,Unprovoked,Egypt ,Mediterranean Sea,Port Said,Floating on his back,Arab boy,M,Back muscles torn away,N,W. B. Orme,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.c-ArabBoy-9.pdf +660,1899.08.08.b,08-Aug-99,1899,Unprovoked,Egypt ,Mediterranean Sea,Port Said,Bathing,Arab boy,M,"Forearm, wrist & hand bitten",N,W. B. Orme,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.b-ArabBoy-19.pdf +659,1899.08.08.a,08-Aug-99,1899,Unprovoked,Egypt,Mediterranean Sea,Port Said,Bathing,Arab boy,M,Left leg bitten,N,W. B. Orme,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.a-ArabBoy-13.pdf +658,1899.07.08.R,08-Jul-99,1899,Unprovoked,Unknown,Unknown,Unknown,Fell overboard ,Captain Masson,M,FATAL,Y,Mataura Ensign,7/8/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.07.08.R-Masson.pdf +657,1899.06.07,07-Jun-99,1899,Provoked,Italy,Calabria,Bagnara Calabra,Fishing,Enrico & Noce,M,Multiple injuries from boated shark PROVOKED INCIDENT,N,C. Moore. GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.07-Bagnara.pdf 656,1899.06.02, 02-Jun-1899,1899,Invalid,New zealand,North Island,East Cape,Attempting to land a boat from the Hinemoa,N. Buchanan,M,FATAL,Y,Brisbane Courier,6/7/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.02-Buchanan.pdf -655,1899.05.28,28-May-1899,1899,Invalid,Philippines,Negros ,Escalante,Swimming,Captain Tilly,M,FATAL,Y,New York Times,5/30/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.28-CaptTilly.pdf -654,1899.05.04.R,04-May-1899,1899,Unprovoked,Italy,Imperia Province,Bordighera,Bathing,The valet of the Earl of Strathmore and Kinghorne,M,FATAL,Y,Washington Post,5/5/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.04.R-Valet.pdf -653,1899.01.28,28-Jan-1899,1899,Invalid,Australia,New South Wales,Newcastle,Bathing,Rose Sutcliffe,F,Drowning may hav preceded attack,Y,Kalgoorlie Western Argus,2/2/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.01.28-Sutcliffe.pdf +655,1899.05.28,28-May-99,1899,Invalid,Philippines,Negros ,Escalante,Swimming,Captain Tilly,M,FATAL,Y,New York Times,5/30/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.28-CaptTilly.pdf +654,1899.05.04.R,04-May-99,1899,Unprovoked,Italy,Imperia Province,Bordighera,Bathing,The valet of the Earl of Strathmore and Kinghorne,M,FATAL,Y,Washington Post,5/5/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.04.R-Valet.pdf +653,1899.01.28,28-Jan-99,1899,Invalid,Australia,New South Wales,Newcastle,Bathing,Rose Sutcliffe,F,Drowning may hav preceded attack,Y,Kalgoorlie Western Argus,2/2/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.01.28-Sutcliffe.pdf 652,1899.00.00.c,1899 During the Seige of Ladysmith,1899,Unprovoked,South africa,KwaZulu-Natal,Durban,Dangling feet in the water,a petty officer,M,Foot severed ,N,Indiana Evening Gazette,11/22/1904,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.c-Durban.pdf 651,1899.00.00.b,1899,1899,Boating,Usa,Florida,St. John's River,Rowing,"boat, occupants: 2 Jacksonville pilots",M,No injury to occupants. shark bit oar,N,W. H. Gregg,p. 22,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.b-2pilots.pdf 650,1899.00.00.a,Ca. 1899,1899,Unprovoked,Usa,Florida,Near a small wreck in a channel at Indian Key,Hunting crayfish,male,M,Leg bitten,N,W.H. Gregg,p.19,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.a-IndianKey.pdf -649,1898.12.28.R,28-Dec-1898,1898,Unprovoked,Australia,Queensland,The Narrows,Fell oveboard,James Waters,M,FATAL,Y,Brisbane Courier,12/28/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.12.28.R-Waters.pdf -648,1898.10.28,28-Oct-1898,1898,Unprovoked,Usa,Hawaii,Off Kohala,Jumped overboard,Ah Hoi,M,FATAL,Y,Hawaiian Gazette,11/1/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.10.28-AhHol.pdf -647,1898.09.19.b.R,19-Sep-1898,1898,Unprovoked,Unknown,Unknown,Unknown,Diving,Halletts,M,Lacerations to hand from shark trapped inside diving bell. ,N,Lincoln Evening News & Daily Call,9/19/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.b.R-Halletts.pdf -646,1898.09.19.a.R,19-Sep-1898,1898,Unprovoked,Unknown,Unknown,Unknown,Diving,male,M,Lacerations to fingers,N,Lincoln Evening News & Daily Call,9/19/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.a.R.Sully.pdf -645,1898.08.22,22-Aug-1898,1898,Unprovoked,Usa,New York,"Prince's Bay, Staten Island",Swimming,Charles E. Boone,M,Laceration to thigh,N,Lima News,9/27/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.08.22-Boone.pdf -644,1898.07.26.R,26-Jul-1898,1898,Invalid,Australia,New South Wales,Sydney,Swimming after their boat capsized,Martin Gunner,Unknown,"Reported fatal, but this is a questionable incident",Y,Brisbane Courier,7/26/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.26.R-Gunner.pdf -643,1898.07.15,15-Jul-1898,1898,Unprovoked,Yemen ,Aden,Outer Harbor,Swimming at side of small boat,Somali boatman,M,"FATAL, severe injuries to both arms & legs, 3 limbs surgically amputed & died after 3 days ",Y,Captain J. L.T. Jones,,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.15-SomaliBoatman.pdf -642,1898.07.14,14-Jul-1898,1898,Unprovoked,Yemen ,Aden,Sapper Bay,Standing,Davies,M,FATAL,Y,Inangahua Times,10/26/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.07.14-Davies.pdf +649,1898.12.28.R,28-Dec-98,1898,Unprovoked,Australia,Queensland,The Narrows,Fell oveboard,James Waters,M,FATAL,Y,Brisbane Courier,12/28/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.12.28.R-Waters.pdf +648,1898.10.28,28-Oct-98,1898,Unprovoked,Usa,Hawaii,Off Kohala,Jumped overboard,Ah Hoi,M,FATAL,Y,Hawaiian Gazette,11/1/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.10.28-AhHol.pdf +647,1898.09.19.b.R,19-Sep-98,1898,Unprovoked,Unknown,Unknown,Unknown,Diving,Halletts,M,Lacerations to hand from shark trapped inside diving bell. ,N,Lincoln Evening News & Daily Call,9/19/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.b.R-Halletts.pdf +646,1898.09.19.a.R,19-Sep-98,1898,Unprovoked,Unknown,Unknown,Unknown,Diving,male,M,Lacerations to fingers,N,Lincoln Evening News & Daily Call,9/19/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.19.a.R.Sully.pdf +645,1898.08.22,22-Aug-98,1898,Unprovoked,Usa,New York,"Prince's Bay, Staten Island",Swimming,Charles E. Boone,M,Laceration to thigh,N,Lima News,9/27/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.08.22-Boone.pdf +644,1898.07.26.R,26-Jul-98,1898,Invalid,Australia,New South Wales,Sydney,Swimming after their boat capsized,Martin Gunner,Unknown,"Reported fatal, but this is a questionable incident",Y,Brisbane Courier,7/26/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.26.R-Gunner.pdf +643,1898.07.15,15-Jul-98,1898,Unprovoked,Yemen ,Aden,Outer Harbor,Swimming at side of small boat,Somali boatman,M,"FATAL, severe injuries to both arms & legs, 3 limbs surgically amputed & died after 3 days ",Y,Captain J. L.T. Jones,,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.15-SomaliBoatman.pdf +642,1898.07.14,14-Jul-98,1898,Unprovoked,Yemen ,Aden,Sapper Bay,Standing,Davies,M,FATAL,Y,Inangahua Times,10/26/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.07.14-Davies.pdf 641,1898.07.00, Jul-1898,1898,Unprovoked,Cuba,Santiago de Cuba Province,Santiago de Cuba,Swimming,male,M,FATAL,Y,V.M. Coppleson (1958),p.258 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.00-Cuba.pdf -640,1898.06.22,22-Jun-1898,1898,Unprovoked,New caledonia,South Province,Noumea,boat from City of Naples capsized,14 sailors,M,FATAL,Y,New York Times,6/23/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.06.22-NewCaledonia.pdf -639,1898.04.13,13-Apr-1898,1898,Sea Disaster,Fiji,Muala,Unknown,The cutter Francis Adams foundered,male,M,Lacerations to thigh,N,Launceston Examiner,8/26/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.04.13-FrancisAdams.pdf +640,1898.06.22,22-Jun-98,1898,Unprovoked,New caledonia,South Province,Noumea,boat from City of Naples capsized,14 sailors,M,FATAL,Y,New York Times,6/23/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.06.22-NewCaledonia.pdf +639,1898.04.13,13-Apr-98,1898,Sea Disaster,Fiji,Muala,Unknown,The cutter Francis Adams foundered,male,M,Lacerations to thigh,N,Launceston Examiner,8/26/1898,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.04.13-FrancisAdams.pdf 638,1898.00.00.R,1898,1898,Invalid,Unknown,Unknown,Unknown,Sponge divers,male,M,Unknown,UNKNOWN,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf 637,1898.00.00.f,1898,1898,Unprovoked,Usa,South Carolina,Ramshorn Creek,Fishing (Seining),Archibald Rutledge,M,Lacerations to left hand,N,Field & Stream,1933,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.f-Rutledge.pdf 636,1898.00.00.e,1898 (soon after the close of the Spanish-American War),1898,Unprovoked,Cuba,Santiago de Cuba Province,Off Santiago de Cuba,13 men in the water after sailboat capsized & sank,seamen,M,"FATAL, 7 survived but 6 were taken by sharks",Y,J. E. Kirby,letter to Captain Dinning,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.e-13-men.pdf @@ -5365,494 +5365,494 @@ original order,Case Number,Date,Year,Type,Country,Area,Location,Activity,Name,Se 633,1898.00.00.b,1898-1899,1898,Unprovoked,Usa,Florida,"a creek near Jacksonville, Duval County",Unknown,boy,M,Lacerations,N,W. H. Gregg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.b-Florida.pdf 632,1898.00.00.a,Summer of 1898,1898,Unprovoked,Yemen ,Aden,Harbor,Diving for coins,male,M,FATAL,Y,Daily Kennebec Journal,3/27/1911,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.a-AdenDiver.pdf 631,1898.00.00 g,1898,1898,Sea Disaster,Usa,Hawaii,Unknown,Loss of the schooner Nomad,male,M,FATAL,Y,H.W. McCurdy,History of the Pacific Northwest,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.g-Nomad.pdf -630,1897.12.04.R,04-Dec-1897,1897,Provoked,Usa,East coast,Unknown,Angling,a sailor,M,Hooked shark bit his leg PROVOKED INCIDENT,N,Trenton Evening Times,12/4/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.12.04.R-Sailor.pdf -629,1897.10.15,15-Oct-1897,1897,Invalid,Mexico,Vera Cruz,Vera Cruz Harbor,Diving,Alexander Cameron,M,Minor injuries,N,NY Times,11/11/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.15-Cameron.pdf -628,1897.10.05.R,05-Oct-1897,1897,Unprovoked,Marshall islands,Ratak ,Ailuk Island,Fishing,5 children,Unknown,FATAL,Y,North Otago Times,1258/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.05.R-Ailuk-Island.pdf -627,1897.09.17,17-Sep-1897,1897,Provoked,Usa,Rhode Island,Point Judith,Fishing,"""Hoke"" Smith",M,Lacerations to hand by netted shark PROVOKED INCIDENT,N,New York Times,9/18/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.17-HokeSmith.pdf -626,1897.09.06,06-Sep-1897,1897,Unprovoked,Usa,South Carolina,"Elliott Cut, Charleston County",Standing,Allan Fripp,M,Lacerations to lower leg,N,Hartford Courant,8/7/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.06-Fripp.pdf -625,1897.07.21,21-Jul-1897,1897,Unprovoked,South africa,KwaZulu-Natal,"Back Beach, Durban",Wading after stray fish from seine netter’s catch,a young Indian boy,M,FATAL,Y,Natal Mercury,7/24/1897; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.07.21-Indianboy.pdf -624,1897.06.09,09-Jun-1897,1897,Invalid,Yemen ,Socotra Islands,Socotra,Wreck of the steamship Sultan of Bombay,Moslem pilgrims,Unknown,Sharks scavenged on the dead,Y,Star,7/10/1897; Kalgoorlie Western Argus,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.06.09-Sultan-of-Bombay.pdf -623,1897.03.15.b.R,15-Mar-1897,1897,Unprovoked,International_water,Mediterranean Sea,Unknown,Swimming,male,M,FATAL,Y,Daily Northwestern,5/15/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.b.R-Mediterranean.pdf -622,1897.03.15.a.R,15-Mar-1897,1897,Unprovoked,Usa,Massachusetts,30 miles south of Lynn,Fishing,male,M,FATAL,Y,Daily Northwestern,5/15/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.a.R-Lynn.pdf +630,1897.12.04.R,04-Dec-97,1897,Provoked,Usa,East coast,Unknown,Angling,a sailor,M,Hooked shark bit his leg PROVOKED INCIDENT,N,Trenton Evening Times,12/4/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.12.04.R-Sailor.pdf +629,1897.10.15,15-Oct-97,1897,Invalid,Mexico,Vera Cruz,Vera Cruz Harbor,Diving,Alexander Cameron,M,Minor injuries,N,NY Times,11/11/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.15-Cameron.pdf +628,1897.10.05.R,05-Oct-97,1897,Unprovoked,Marshall islands,Ratak ,Ailuk Island,Fishing,5 children,Unknown,FATAL,Y,North Otago Times,1258/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.05.R-Ailuk-Island.pdf +627,1897.09.17,17-Sep-97,1897,Provoked,Usa,Rhode Island,Point Judith,Fishing,"""Hoke"" Smith",M,Lacerations to hand by netted shark PROVOKED INCIDENT,N,New York Times,9/18/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.17-HokeSmith.pdf +626,1897.09.06,06-Sep-97,1897,Unprovoked,Usa,South Carolina,"Elliott Cut, Charleston County",Standing,Allan Fripp,M,Lacerations to lower leg,N,Hartford Courant,8/7/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.06-Fripp.pdf +625,1897.07.21,21-Jul-97,1897,Unprovoked,South africa,KwaZulu-Natal,"Back Beach, Durban",Wading after stray fish from seine netter’s catch,a young Indian boy,M,FATAL,Y,Natal Mercury,7/24/1897; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.07.21-Indianboy.pdf +624,1897.06.09,09-Jun-97,1897,Invalid,Yemen ,Socotra Islands,Socotra,Wreck of the steamship Sultan of Bombay,Moslem pilgrims,Unknown,Sharks scavenged on the dead,Y,Star,7/10/1897; Kalgoorlie Western Argus,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.06.09-Sultan-of-Bombay.pdf +623,1897.03.15.b.R,15-Mar-97,1897,Unprovoked,International_water,Mediterranean Sea,Unknown,Swimming,male,M,FATAL,Y,Daily Northwestern,5/15/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.b.R-Mediterranean.pdf +622,1897.03.15.a.R,15-Mar-97,1897,Unprovoked,Usa,Massachusetts,30 miles south of Lynn,Fishing,male,M,FATAL,Y,Daily Northwestern,5/15/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.a.R-Lynn.pdf 621,1897.00.00.b,1897,1897,Unprovoked,Unknown,Unknown,Unknown,Unknown,Maori male,M,Lacerations to left arm,N,Deseret News,6/28/1946,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Maori.pdf 620,1897.00.00.a,1897,1897,Unprovoked,Egypt,Mediterranean Sea,Port Said,Unknown,Anonymous,Unknown,No details,UNKNOWN,Mentioned in paper by W.B. Orme; G.A. Llano,p.127,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.00.00.a-Egypt.pdf 619,1896.12.23,23-Decp1896,1896,Boating,Australia,Victoria,Hobson's Bay,Fishing,10' skiff. Occupants F. Whitehead & L. Honeybone,M,No injury to occupants. Shark bit boat several times,N,South Australian Register,12/25/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.23-skiff-HobsonsBay.pdf -618,1896.12.20,20-Dec-1896,1896,Unprovoked,New zealand,North Island,"Marine Parade, Napier, Hawke Bay",Bathing,Bright Cooper,M,"FATAL, left arm severed at elbow, right arm at wrist ",Y,A.W. Parrott,p. 68; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.20-Cooper.pdf -617,1896.12.17.R,17-Dec-1896,1896,Unprovoked,New zealand,South Island,Hoiktika,Unknown,E. Reynolds,M,FATAL,Y,The Star,12/17/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.17.R-Reynolds.pdf -616,1896.11.29,29-Nov-1896,1896,Unprovoked,Australia,Western Australia,Albany,Swimming,Davies,M,FATAL,Y,West Australian,12/3/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.29-Davies.pdf -615,1896.11.01,01-Nov-1896,1896,Unprovoked,Australia,Western Australia,Esperance,Boat swamped,Louis,M,FATAL,Y,West Australian,11/2/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.01-Louis.pdf -614,1896.09.11.R,11-Sep-1896,1896,Unprovoked,Unknown,Unknown,Unknown,Diving,Unknown,M,Leg severed,N,New Oxford Item,9/11/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.09.11.R-SriLanka.pdf -613,1896.07.25,25-Jul-1896,1896,Unprovoked,Usa,Hawaii,"Kahului, Maui",Fishing,Nahalehau,M,FATAL,Y,Hawaiian Gazette,8/4/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.07.25-Nahalehau.pdf -612,1896.06.21.R,21-Jun-1896,1896,Unprovoked,Usa,South Carolina,Charleston,Bathing,Mr. Walsh ,M,Lacerations to foot and calf,N,New York Times,6/21/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.06.21.R-Walsh.pdf +618,1896.12.20,20-Dec-96,1896,Unprovoked,New zealand,North Island,"Marine Parade, Napier, Hawke Bay",Bathing,Bright Cooper,M,"FATAL, left arm severed at elbow, right arm at wrist ",Y,A.W. Parrott,p. 68; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.20-Cooper.pdf +617,1896.12.17.R,17-Dec-96,1896,Unprovoked,New zealand,South Island,Hoiktika,Unknown,E. Reynolds,M,FATAL,Y,The Star,12/17/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.17.R-Reynolds.pdf +616,1896.11.29,29-Nov-96,1896,Unprovoked,Australia,Western Australia,Albany,Swimming,Davies,M,FATAL,Y,West Australian,12/3/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.29-Davies.pdf +615,1896.11.01,01-Nov-96,1896,Unprovoked,Australia,Western Australia,Esperance,Boat swamped,Louis,M,FATAL,Y,West Australian,11/2/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.01-Louis.pdf +614,1896.09.11.R,11-Sep-96,1896,Unprovoked,Unknown,Unknown,Unknown,Diving,Unknown,M,Leg severed,N,New Oxford Item,9/11/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.09.11.R-SriLanka.pdf +613,1896.07.25,25-Jul-96,1896,Unprovoked,Usa,Hawaii,"Kahului, Maui",Fishing,Nahalehau,M,FATAL,Y,Hawaiian Gazette,8/4/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.07.25-Nahalehau.pdf +612,1896.06.21.R,21-Jun-96,1896,Unprovoked,Usa,South Carolina,Charleston,Bathing,Mr. Walsh ,M,Lacerations to foot and calf,N,New York Times,6/21/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.06.21.R-Walsh.pdf 611,1896.01.11, 11-Jan-1896,1896,Unprovoked,Australia,New South Wales,"Johnstone's Bay, Sydney",Bathing,William Ready,M,FATAL,Y,Brisbane Courier,1/13/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.01.11-Ready.pdf 610,1896.00.00.b,1896,1896,Unprovoked,Usa,Florida,Unknown,"Swimming ashore from a ""filibuster""",male,M,FATAL,Y,W.H. Gregg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.b-filibuster.pdf 609,1896.00.00.a,1896,1896,Unprovoked,Haiti,Off Cape Haitien,Unknown,Wading,Syrian,M,Leg severed below knee,N,C. R. Baker & C.M. Rose; V.M. Coppleson (1958),p.259 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.a-Syrian.pdf -608,1895.12.09,09-Dec-1895,1895,Unprovoked,Australia,New South Wales,"West Balmain, Sydney",Bathing,Thomas John Terrill,M,FATAL,Y,Brisbane Courier,12/9/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.12.09-Terrill.pdf -607,1895.11.21.R,21-Nov-1895,1895,Unprovoked,Barbados,St Michael Parish,Bridgetown,Diving for coins,Rouee Youma,M,Leg bitten,N,NY Times,11/21/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.21.R-Youma.pdf -606,1895.11.16,16-Nov-1895,1895,Unprovoked,Australia,New South Wales,Jervis Bay ,Fishing,Edward Bailey,M,FATAL,Y,West Australian,11/19/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.16-Bailey.pdf -605,1895.09.18,18-Sep-1895,1895,Sea Disaster,Cuba,Havana Province,Havana Harbor,Shipwreck,male,M,Probable drowning & scavenging,Y,NY Times,9/21/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.18-HavanaShipwreck.pdf -604,1895.09.14.R,14-Sep-1895,1895,Unprovoked,Yemen ,Aden,Unknown,Diving for coins,a native boy ,M,FATAL,Y,Queenslander,9/14/8/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.14.R-Aden.pdf +608,1895.12.09,09-Dec-95,1895,Unprovoked,Australia,New South Wales,"West Balmain, Sydney",Bathing,Thomas John Terrill,M,FATAL,Y,Brisbane Courier,12/9/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.12.09-Terrill.pdf +607,1895.11.21.R,21-Nov-95,1895,Unprovoked,Barbados,St Michael Parish,Bridgetown,Diving for coins,Rouee Youma,M,Leg bitten,N,NY Times,11/21/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.21.R-Youma.pdf +606,1895.11.16,16-Nov-95,1895,Unprovoked,Australia,New South Wales,Jervis Bay ,Fishing,Edward Bailey,M,FATAL,Y,West Australian,11/19/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.16-Bailey.pdf +605,1895.09.18,18-Sep-95,1895,Sea Disaster,Cuba,Havana Province,Havana Harbor,Shipwreck,male,M,Probable drowning & scavenging,Y,NY Times,9/21/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.18-HavanaShipwreck.pdf +604,1895.09.14.R,14-Sep-95,1895,Unprovoked,Yemen ,Aden,Unknown,Diving for coins,a native boy ,M,FATAL,Y,Queenslander,9/14/8/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.14.R-Aden.pdf 603,1895.09.00,Sep-1895,1895,Provoked,Usa,North Carolina,"Near the mouth of the Cape Fear River, Brunswick County",Fishing,"open boat, occupants: Robert Ruark, Hoyle Dosher & Elmer Adkins",Unknown,"No injury, hooked shark rammed boat & Ruark fell on its back PROVOKED INCIDENT",N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.00-boat.pdf -602,1895.08.11,11-Aug-1895,1895,Unprovoked,Usa,Rhode Island,Noyes Beach,Swimming,Charles Beattie,M,FATAL,Y,Boston Globe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.11-Beattie.pdf +602,1895.08.11,11-Aug-95,1895,Unprovoked,Usa,Rhode Island,Noyes Beach,Swimming,Charles Beattie,M,FATAL,Y,Boston Globe,,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.11-Beattie.pdf 601,1895.08.02,2-Aug-1895,1895,Unprovoked,Usa,New Jersey,Raritan Bay,Fishing,Elias Turner,M,Arm bitten,N,Boston Globe,8/3/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.02-Turner.pdf -600,1895.07.16.R,16-Jul-1895,1895,Unprovoked,Unknown,Unknown,Unknown,Hunting seals,William Lloyd,M,FATAL,Y,Morning News,7/16/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.07.16.R-Lloyd.pdf -599,1895.06.13.R,13-Jun-1895,1895,Unprovoked,Unknown,Unknown,Unknown,Diving,Marsh,M,Right hand severed,N,Lima Times,6/13/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.13.R-EnglishDiver.pdf -598,1895.06.03.R,03-Jun-1895,1895,Unprovoked,Australia,Western Australia,Barrow Passage,Pearl diving,a Japanese diver,M,FATAL,Y,The West Australian,6/3/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.03.R-JapaneseDiver.pdf -597,1895.05.21,21-May-1895,1895,Sea Disaster,Bahamas,Bimini Islands,Off Gun Cay,Sea Disaster : Wreck of the Carrie E. Long,Tip Stanley,M,Heel bitten,N,Meriden Daily Republican,6/12/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.21-Stanley.pdf -596,1895.05.03,03-May-1895,1895,Unprovoked,New zealand,South Island,Preservation Inlet,"""Boat accident""",James Cromarty,M,FATAL Thigh bitten,Y,Otago Witness,5/16/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.03-Cromarty.pdf -595,1895.04.29,29-Apr-1895,1895,Unprovoked,South africa,Eastern Cape Province,Mzimvubu River,"""Crossing the river""",Sombutize,M,"FATAL, right arm lacerated ",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.29-Sombutize.pdf -594,1895.04.23,23-Apr-1895,1895,Unprovoked,New zealand,South Island,Oamaru,Swimming,Percy Mitchell,M,Lacerations to foot,N,Star,4/25/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.23-Mitchell.pdf -593,1895.03.29.R,29-Mar-1895,1895,Unprovoked,Indonesia,Moluccas,South Aroo Island,Swimming,Pindo Island pirates,M,FATAL,Y,Fitzroy City Press,3/29/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.29.R-Pindo-Islanders.pdf -592,1895.03.15,15-Mar-1895,1895,Unprovoked,Australia,Queensland,Burnett River,Swimming,Nicol Pringle,M,Lower leg & foot bitten,N,The Telegraph,3/20/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.15-Pringle.pdf -591,1895.02.27,27-Feb-1895,1895,Unprovoked,Australia,New South Wales,Sydney Harbor,Swimming,James Edward Clifton Donald,M,FATAL,Y,I. Donald ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.27-Donald.pdf -590,1895.02.23.R,23-Feb-1895,1895,Unprovoked,Panama,Bocas del Toro,Unknown,"Swimming, after sailboat capsized",John Minard,M,FATAL,Y,Fort Wayne Sentinel,2/23/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.23.R-Minard.pdf +600,1895.07.16.R,16-Jul-95,1895,Unprovoked,Unknown,Unknown,Unknown,Hunting seals,William Lloyd,M,FATAL,Y,Morning News,7/16/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.07.16.R-Lloyd.pdf +599,1895.06.13.R,13-Jun-95,1895,Unprovoked,Unknown,Unknown,Unknown,Diving,Marsh,M,Right hand severed,N,Lima Times,6/13/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.13.R-EnglishDiver.pdf +598,1895.06.03.R,03-Jun-95,1895,Unprovoked,Australia,Western Australia,Barrow Passage,Pearl diving,a Japanese diver,M,FATAL,Y,The West Australian,6/3/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.03.R-JapaneseDiver.pdf +597,1895.05.21,21-May-95,1895,Sea Disaster,Bahamas,Bimini Islands,Off Gun Cay,Sea Disaster : Wreck of the Carrie E. Long,Tip Stanley,M,Heel bitten,N,Meriden Daily Republican,6/12/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.21-Stanley.pdf +596,1895.05.03,03-May-95,1895,Unprovoked,New zealand,South Island,Preservation Inlet,"""Boat accident""",James Cromarty,M,FATAL Thigh bitten,Y,Otago Witness,5/16/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.03-Cromarty.pdf +595,1895.04.29,29-Apr-95,1895,Unprovoked,South africa,Eastern Cape Province,Mzimvubu River,"""Crossing the river""",Sombutize,M,"FATAL, right arm lacerated ",Y,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.29-Sombutize.pdf +594,1895.04.23,23-Apr-95,1895,Unprovoked,New zealand,South Island,Oamaru,Swimming,Percy Mitchell,M,Lacerations to foot,N,Star,4/25/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.23-Mitchell.pdf +593,1895.03.29.R,29-Mar-95,1895,Unprovoked,Indonesia,Moluccas,South Aroo Island,Swimming,Pindo Island pirates,M,FATAL,Y,Fitzroy City Press,3/29/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.29.R-Pindo-Islanders.pdf +592,1895.03.15,15-Mar-95,1895,Unprovoked,Australia,Queensland,Burnett River,Swimming,Nicol Pringle,M,Lower leg & foot bitten,N,The Telegraph,3/20/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.15-Pringle.pdf +591,1895.02.27,27-Feb-95,1895,Unprovoked,Australia,New South Wales,Sydney Harbor,Swimming,James Edward Clifton Donald,M,FATAL,Y,I. Donald ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.27-Donald.pdf +590,1895.02.23.R,23-Feb-95,1895,Unprovoked,Panama,Bocas del Toro,Unknown,"Swimming, after sailboat capsized",John Minard,M,FATAL,Y,Fort Wayne Sentinel,2/23/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.23.R-Minard.pdf 589,1895.00.00.b,1895,1895,Boating,Australia,Western Australia,"Dampier's Creek, Broome",Unknown,oar of Knut Dahl's boat,Unknown,No injury to occupants of boat,N,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.00.00-Dahl.pdf -588,1894.12.11,11-Dec-1894,1894,Provoked,Usa,Florida,"North Beach, St. Augustine",Fishing,Chatiles F. Brynes,M,Left leg bitten PROVOKED INCIDENT,N,Atlanta Constitution,12/12/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.12.11-Brynes.pdf -587,1894.11.28,28-Nov-1894,1894,Unprovoked,Australia,New South Wales,Newcastle ,Bathing,Horace Hewison,M,"""Lost his arm""",N,Brisbane Courier,1/7/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.11.28-Hewison.pdf -586,1894.10.06.R,06-Oct-1894,1894,Unprovoked,Usa,Alabama,Mobile Bay,Swimming,a deserter from the ship Evarest,M,FATAL,Y,Middletown Daily Argus,10/6/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.10.06.R-deserter.pdf -585,1894.09.12.R,12-Sep-1894,1894,Unprovoked,Usa,Virginia,Norfolk,Bathing,Michael Daly,M,Lacerations to leg,N,Washington Post,9/13/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.12.R-Daly.pdf -584,1894.09.06.R,06-Sep-1894,1894,Unprovoked,Fiji,Vita Levu,Rewa River,Dangling feet in the water,Fijian girl,F,Foot severed,N,The Colonist,9/6/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.06.R-FijianGirl.pdf -583,1894.09.01.R,01-Sep-1894,1894,Provoked,Usa,Texas,Rockport,Fishing,William Muller,M,Laceration to calf PROVOKED INCIDENT,N,Lima Times Democrat,9/1/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.01.R-Muller.pdf -582,1894.08.21,21-Aug-1894,1894,Unprovoked,Usa,New York,"Woolsey's Point, East River",Swimming,Catherine Beach,F,No injury,UNKNOWN,NY Times,8/22/1894 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.21-CatherineBeach.pdf -581,1894.08.01,01-Aug-1894,1894,Unprovoked,Usa,Florida,"Jacksonville, Duval County",Swimming / floating on his back,Milton Shane,M,Lacerations to thigh,N,Jacksonville Times-Union,8/2/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.01-MiltonShane.pdf +588,1894.12.11,11-Dec-94,1894,Provoked,Usa,Florida,"North Beach, St. Augustine",Fishing,Chatiles F. Brynes,M,Left leg bitten PROVOKED INCIDENT,N,Atlanta Constitution,12/12/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.12.11-Brynes.pdf +587,1894.11.28,28-Nov-94,1894,Unprovoked,Australia,New South Wales,Newcastle ,Bathing,Horace Hewison,M,"""Lost his arm""",N,Brisbane Courier,1/7/1895,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.11.28-Hewison.pdf +586,1894.10.06.R,06-Oct-94,1894,Unprovoked,Usa,Alabama,Mobile Bay,Swimming,a deserter from the ship Evarest,M,FATAL,Y,Middletown Daily Argus,10/6/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.10.06.R-deserter.pdf +585,1894.09.12.R,12-Sep-94,1894,Unprovoked,Usa,Virginia,Norfolk,Bathing,Michael Daly,M,Lacerations to leg,N,Washington Post,9/13/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.12.R-Daly.pdf +584,1894.09.06.R,06-Sep-94,1894,Unprovoked,Fiji,Vita Levu,Rewa River,Dangling feet in the water,Fijian girl,F,Foot severed,N,The Colonist,9/6/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.06.R-FijianGirl.pdf +583,1894.09.01.R,01-Sep-94,1894,Provoked,Usa,Texas,Rockport,Fishing,William Muller,M,Laceration to calf PROVOKED INCIDENT,N,Lima Times Democrat,9/1/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.01.R-Muller.pdf +582,1894.08.21,21-Aug-94,1894,Unprovoked,Usa,New York,"Woolsey's Point, East River",Swimming,Catherine Beach,F,No injury,UNKNOWN,NY Times,8/22/1894 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.21-CatherineBeach.pdf +581,1894.08.01,01-Aug-94,1894,Unprovoked,Usa,Florida,"Jacksonville, Duval County",Swimming / floating on his back,Milton Shane,M,Lacerations to thigh,N,Jacksonville Times-Union,8/2/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.01-MiltonShane.pdf 580,1894.07.15.R,Reportd 15-Jul-1894,1894,Unprovoked,France,Provence,"la Badine, Hyères ",Fishing,"la Badine, Hyères, ",M,No injury,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.07.15.R-France.pdf -579,1894.06.29,29-Jun-1894,1894,Unprovoked,Usa,Florida,Anastasia Island,Bathing,Erskine H. Reynolds,M,"""Painfully injured"" but no details",UNKNOWN,Atlanta Constitution,7/1/1894; Washington Post 7/1/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.29-ErskineReynolds.pdf -578,1894.06.25,25-Jun-1894,1894,Unprovoked,South africa,Western Cape Province,Simons Town,Swimming after harpooned whale capsized boat,"Swedish male, crewman from the Harry Mundahl",M,FATAL,Y,Cape Argus,7/2/1894 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.25-SwedishWhaler.pdf -577,1894.06.15.b.R,15-Jun-1894,1894,Unprovoked,Usa,North Carolina,"New Bern, Craven County",bathing ,soldier ,M,Right leg bitten,N,Warren Ledger,6/15/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.b.R-Newbern.pdf -576,1894.06.15.a.R,15-Jun-1894,1894,Unprovoked,Mexico,Bay of Campeche,Unknown,Fell from yardarm of British ship Rover,sailor,M,"FATAL, torso bitten ",Y,Warren Ledger,6/15/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.a-R-Rover.pdf -575,1894.04.28.b.R,28-Apr-1894,1894,Unprovoked,Burma,Rangoon,Amherst,Bathing, Grace Darling,F,FATAL,Y,Bruce Herald,8/24/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.b.R-GraceDarling.pdf -574,1894.04.28.a.R,28-Apr-1894,1894,Unprovoked,Burma,Rangoon,Amherst,Bathing,Lucy Stone ,F,FATAL ,Y,Bruce Herald,8/24/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.a.R-LucyStone.pdf -573,1893.10.20.R,20-Oct-1893,1893,Unprovoked,India,Bay of Bengal,Madras Harbor,Murder,A young pearl trader,M,FATAL,Y,Middletown Daily Argus,10/20/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.20.R-PearlTrader.pdf -572,1893.10.16,16-Oct-1893,1893,Invalid,Croatia, Primorje-Gorski Kotar County,"Off Volusca, Opatija",small boat,4 passengers frightened by shark,Unknown,No injury; no attack,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.16-Opatija.pdf -570,1893.07.03,03-Jul-1893,1893,Unprovoked,Philippines,Unknown,Off Manila,Abandoning burning steamship Don Juan,Unknown,M,FATAL,Y,New Zealand Tablet,12/1/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.07.03-DonJuan.pdf -569,1893.06.22,22-Jun-1893,1893,Unprovoked,Lebanon,Unknown,Off Tripoli,HMS Victoria collided with the HMS Camperdown,crew,M,FATAL,Y,The Sydney Morning Herald,6/29/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22-HMSVictoria.pdf -568,1893.05.23.R,23-May-1893,1893,Unprovoked,Fiji,Unknown,Between Kadavu & Beqa,Canoe swamped,a girl,F,FATAL,Y,Brisbane Courier,5/23/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.23.R-FijianCanoe.pdf -567,1893.05.17,17-May-1893,1893,Unprovoked,Cuba,Havana Province,Havana Harbor,His balloon crashed in the harbor,"Ramon Margulies, aeronaut",M,FATAL,Y,Portsmouth Herald,3/6/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.17-Margulies.pdf -566,1893.04.15,15-Apr-1893,1893,Unprovoked,Unknown,Unknown,Unknown,Swimming after falling overboard from the sealing ship Vesper,Charles Barclay,M,"One leg severed by the shark, the other surgically amputated",N,The News,4/15/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.15.R-Barclay.pdf -565,1893.04.14,14-Apr-1893,1893,Unprovoked,Australia,Queensland,Torres Strait,"Boat capsized, swimming ashore",Kangaroo,M,Leg bitten,N,Brisbane Courier,6/2/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.14-Kangaroo.pdf -564,1893.04.04,04-Apr-1893,1893,Invalid,Australia,Tasmania,"Chimney Point, George’s Bay","Boat capsized, swimming ashore",Joseph Meredith,M,"Fatal, probable drowning",Y,C. Black,GSAF; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.04-Meredith.pdf -563,1893.01.30.R,30-Jan-1893,1893,Unprovoked,New zealand,South Island?,Downs River,Bathing,Donald McKenzie,M,FATAL,Y,Taranaki Herald,1/30/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.30.R-McKenzie.pdf -562,1893.01.18.R,18-Jan-1893,1893,Unprovoked,French polynesia,Unknown,One week out of Pápete,Murdered,sailor,M,FATAL.Tossed overboard to sharks by Rodrigue brothers who were later executed in Manila,Y,West Australian,1/18/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.18.R-RodrigueBrothersVictims.pdf +579,1894.06.29,29-Jun-94,1894,Unprovoked,Usa,Florida,Anastasia Island,Bathing,Erskine H. Reynolds,M,"""Painfully injured"" but no details",UNKNOWN,Atlanta Constitution,7/1/1894; Washington Post 7/1/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.29-ErskineReynolds.pdf +578,1894.06.25,25-Jun-94,1894,Unprovoked,South africa,Western Cape Province,Simons Town,Swimming after harpooned whale capsized boat,"Swedish male, crewman from the Harry Mundahl",M,FATAL,Y,Cape Argus,7/2/1894 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.25-SwedishWhaler.pdf +577,1894.06.15.b.R,15-Jun-94,1894,Unprovoked,Usa,North Carolina,"New Bern, Craven County",bathing ,soldier ,M,Right leg bitten,N,Warren Ledger,6/15/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.b.R-Newbern.pdf +576,1894.06.15.a.R,15-Jun-94,1894,Unprovoked,Mexico,Bay of Campeche,Unknown,Fell from yardarm of British ship Rover,sailor,M,"FATAL, torso bitten ",Y,Warren Ledger,6/15/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.a-R-Rover.pdf +575,1894.04.28.b.R,28-Apr-94,1894,Unprovoked,Burma,Rangoon,Amherst,Bathing, Grace Darling,F,FATAL,Y,Bruce Herald,8/24/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.b.R-GraceDarling.pdf +574,1894.04.28.a.R,28-Apr-94,1894,Unprovoked,Burma,Rangoon,Amherst,Bathing,Lucy Stone ,F,FATAL ,Y,Bruce Herald,8/24/1894,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.a.R-LucyStone.pdf +573,1893.10.20.R,20-Oct-93,1893,Unprovoked,India,Bay of Bengal,Madras Harbor,Murder,A young pearl trader,M,FATAL,Y,Middletown Daily Argus,10/20/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.20.R-PearlTrader.pdf +572,1893.10.16,16-Oct-93,1893,Invalid,Croatia, Primorje-Gorski Kotar County,"Off Volusca, Opatija",small boat,4 passengers frightened by shark,Unknown,No injury; no attack,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.16-Opatija.pdf +570,1893.07.03,03-Jul-93,1893,Unprovoked,Philippines,Unknown,Off Manila,Abandoning burning steamship Don Juan,Unknown,M,FATAL,Y,New Zealand Tablet,12/1/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.07.03-DonJuan.pdf +569,1893.06.22,22-Jun-93,1893,Unprovoked,Lebanon,Unknown,Off Tripoli,HMS Victoria collided with the HMS Camperdown,crew,M,FATAL,Y,The Sydney Morning Herald,6/29/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22-HMSVictoria.pdf +568,1893.05.23.R,23-May-93,1893,Unprovoked,Fiji,Unknown,Between Kadavu & Beqa,Canoe swamped,a girl,F,FATAL,Y,Brisbane Courier,5/23/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.23.R-FijianCanoe.pdf +567,1893.05.17,17-May-93,1893,Unprovoked,Cuba,Havana Province,Havana Harbor,His balloon crashed in the harbor,"Ramon Margulies, aeronaut",M,FATAL,Y,Portsmouth Herald,3/6/1899,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.17-Margulies.pdf +566,1893.04.15,15-Apr-93,1893,Unprovoked,Unknown,Unknown,Unknown,Swimming after falling overboard from the sealing ship Vesper,Charles Barclay,M,"One leg severed by the shark, the other surgically amputated",N,The News,4/15/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.15.R-Barclay.pdf +565,1893.04.14,14-Apr-93,1893,Unprovoked,Australia,Queensland,Torres Strait,"Boat capsized, swimming ashore",Kangaroo,M,Leg bitten,N,Brisbane Courier,6/2/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.14-Kangaroo.pdf +564,1893.04.04,04-Apr-93,1893,Invalid,Australia,Tasmania,"Chimney Point, George’s Bay","Boat capsized, swimming ashore",Joseph Meredith,M,"Fatal, probable drowning",Y,C. Black,GSAF; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.04-Meredith.pdf +563,1893.01.30.R,30-Jan-93,1893,Unprovoked,New zealand,South Island?,Downs River,Bathing,Donald McKenzie,M,FATAL,Y,Taranaki Herald,1/30/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.30.R-McKenzie.pdf +562,1893.01.18.R,18-Jan-93,1893,Unprovoked,French polynesia,Unknown,One week out of Pápete,Murdered,sailor,M,FATAL.Tossed overboard to sharks by Rodrigue brothers who were later executed in Manila,Y,West Australian,1/18/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.18.R-RodrigueBrothersVictims.pdf 561,1893.00.00,1893,1893,Unprovoked,Egypt,Mediterranean Sea,Port Said,Unknown,No details,Unknown,No details,UNKNOWN,Briefly mentioned in paper by W.B. Orme; G.A. Llano,p.127,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.00.00-PortSaid.pdf -560,1892.12.15,15-Dec-1892,1892,Unprovoked,Unknown,Unknown,Unknown,Fell overboard,Samuel Coolidge,M,FATAL,Y,Washington Post,1/9/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.12.15-SamuelCoolidge.pdf -559,1892.11.09.R,09-Nov-1892,1892,Unprovoked,Australia,Norfolk Island,Unknown,Fishing,a boat steerer,M,Laceration to arm,N,Timaru Herald,11/8/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.09.R-NorfolkIsland.pdf -558,1892.11.06,06-Nov-1892,1892,Unprovoked,Australia,Queensland,"Wellington Point, Brisbane",Swimming,Mrs. Coe,F,Abrasions to left leg,N,Brisbane Courier,11/9/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.06-Coe.pdf -557,1892.09.16.R,16-Sep-1892,1892,Unprovoked,Usa,Texas,Velasco,Unknown,Baker,M,Hand bitten,N,Galveston Daily News,9/16/1892 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.09.16.R-Baker.pdf -556,1892.06.24,24-Jun-1892,1892,Invalid,France,Brittany,Brest,Fishing boat,Unknown,Unknown,"No injury, no attack",Y,C.Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.24-Brest.pdf -555,1892.06.20.R,20-Jun-1892,1892,Unprovoked,Cuba,Havana Province,Havana Harbor,Riding a horse,a mestizo,M,FATAL,Y,Daily Citizen,6/20/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.20.R-Rider.pdf -554,1892.05.19.R,19-May-1892,1892,Unprovoked,New zealand,North Island,Rockhampton,Bathing,Abraham Yates,M,Minor injury to leg,N,Wanganui Chronicle,5/19/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.05.19.R-Yates.pdf -553,1892.04.21.R,21-Apr-1892,1892,Unprovoked,Bahamas,Out Islands,Unknown,Fell overboard from sponge vessel,male,M,"FATAL, leg severed",Y,The Gleaner (Jamaica),4/21/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.04.21.R-Bahamas.pdf -552,1892.03.25.R,25-Mar-1893,1892,Unprovoked,Unknown,Unknown,Unknown, a canoe was pursuing a schooner that had forcibily abducted 5 young girls,Unknown,M,6 or 8 of the would-be rescuers were shot & the rest were killed by sharks,Y,West Australian,3/25/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.25.R-Canoe.pdf -551,1892.03.02,02-Mar-1892,1892,Provoked,Australia,New South Wales,Lake Macquarie,Fishing,Christopher Wang,M,Lacerations to calf by netted shark PROVOKED INCIDENT,N,The Argus,3/4/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.02-Wang.pdf +560,1892.12.15,15-Dec-92,1892,Unprovoked,Unknown,Unknown,Unknown,Fell overboard,Samuel Coolidge,M,FATAL,Y,Washington Post,1/9/1893,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.12.15-SamuelCoolidge.pdf +559,1892.11.09.R,09-Nov-92,1892,Unprovoked,Australia,Norfolk Island,Unknown,Fishing,a boat steerer,M,Laceration to arm,N,Timaru Herald,11/8/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.09.R-NorfolkIsland.pdf +558,1892.11.06,06-Nov-92,1892,Unprovoked,Australia,Queensland,"Wellington Point, Brisbane",Swimming,Mrs. Coe,F,Abrasions to left leg,N,Brisbane Courier,11/9/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.06-Coe.pdf +557,1892.09.16.R,16-Sep-92,1892,Unprovoked,Usa,Texas,Velasco,Unknown,Baker,M,Hand bitten,N,Galveston Daily News,9/16/1892 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.09.16.R-Baker.pdf +556,1892.06.24,24-Jun-92,1892,Invalid,France,Brittany,Brest,Fishing boat,Unknown,Unknown,"No injury, no attack",Y,C.Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.24-Brest.pdf +555,1892.06.20.R,20-Jun-92,1892,Unprovoked,Cuba,Havana Province,Havana Harbor,Riding a horse,a mestizo,M,FATAL,Y,Daily Citizen,6/20/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.20.R-Rider.pdf +554,1892.05.19.R,19-May-92,1892,Unprovoked,New zealand,North Island,Rockhampton,Bathing,Abraham Yates,M,Minor injury to leg,N,Wanganui Chronicle,5/19/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.05.19.R-Yates.pdf +553,1892.04.21.R,21-Apr-92,1892,Unprovoked,Bahamas,Out Islands,Unknown,Fell overboard from sponge vessel,male,M,"FATAL, leg severed",Y,The Gleaner (Jamaica),4/21/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.04.21.R-Bahamas.pdf +552,1892.03.25.R,25-Mar-93,1892,Unprovoked,Unknown,Unknown,Unknown, a canoe was pursuing a schooner that had forcibily abducted 5 young girls,Unknown,M,6 or 8 of the would-be rescuers were shot & the rest were killed by sharks,Y,West Australian,3/25/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.25.R-Canoe.pdf +551,1892.03.02,02-Mar-92,1892,Provoked,Australia,New South Wales,Lake Macquarie,Fishing,Christopher Wang,M,Lacerations to calf by netted shark PROVOKED INCIDENT,N,The Argus,3/4/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.02-Wang.pdf 550,1892.00.00,1892,1892,Provoked,Australia,Torres Strait,Badu Island,Dress diving,Mr. A. Rotaman,M,FATAL Bitten in two by shark that he molested with a knife. Buried at Batu Island. PROVOKED INCIDENT,Y,G.P. Whitley,p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.00.00-Rotaman.pdf -549,1891.12.31.R,31-Dec-1891,1891,Unprovoked,Australia,New South Wales,Unknown,Swimming,Mr. Christesen,M,Foot severed,N,Maitland Mercury & Hunter River General Advertiser,12/31/1891 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.31.R-Christesen.pdf -548,1891.12.22.R,22-Dec-1891,1891,Unprovoked,New zealand,North Island,"Manukau Harbor, 6 miles south of Auckland","Swimming, after boat swamped",Henry Jacobson,M,Hand bitten,N,The Advertiser,1/1/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.22.R-Jacobson.pdf -547,1891.09.14.R,14-Sep-1891,1891,Sea Disaster,Kiribati,Line Islands,Flint Island,"Sea Disaster, canoes capsized in storm",Unknown,Unknown,"FATAL Of 38 people in the water, 8 were killed by sharks & 1 man's leg was severed",Y,Newark Daily Advocate,9/14/1891; Bismark Daily Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.09.14.R-Kiribati.pdf -546,1891.08.30.R,30-Aug-1891,1891,Unprovoked,Canada,Nova Scotia,Halifax,Knocked overboard,John Roult,M,FATAL,Y,Washington Post,8/31/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.30.R-Roult.pdf -545,1891.08.29,29-Aug-1891,1891,Provoked,Usa,New Jersey,"Off Longport, Atlantic County",Shooting sharks ,one of the crew of the schooner Mary C. Brown,M,"Survived, PROVOKED INCIDENT",N,The Daily Argus News,9/3/1891 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.29-Mary-Brown-crew.pdf -544,1891.06.11,11-Jun-1891,1891,Invalid,Usa,Virginia,Hampton Roads,Fishing for sharks when he became entangled in net & fell overboard,John Howard,M,"Fatal, but death may have been due to drowning",Y,Washington Post,6/12/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.06.11-JohnHoward.pdf -543,1891.03.10,10-Mar-1891,1891,Unprovoked,Unknown,Unknown,Unknown,Fleeing across a river,Unknown,Unknown,FATAL,Y,West Australian,11/2/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.03.10-Paraguay.pdf -542,1891.01.08.R,08-Jan-1891,1891,Unprovoked,Jamaica,Kingston Parish,Port Royal Harbour,boat capsized,3 sailors,M,FATAL,Y,Tuapeka Times,1/21/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.01.08.R-Jamaica.pdf -541,1890.12.30,30-Dec-1890,1890,Invalid,Australia,Queensland,Moreton Bay,Swimming to shore after boat capsized by a squall,C. Gregory,Unknown,"Fatal, but death may have been due to drowning",Y,The Argus,21/2/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.30-Gregory.pdf -540,1890.12.27.R,27-Dec-1890,1890,Unprovoked,British new guinea,Woodlark Islands,Off Panamota,Thrown overboard,Tetebara,M,Arm bitten,N,Queenslander,12/27/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.27.R-Tetebara.pdf -539,1890.10.25.R,25-Oct-1890,1890,Unprovoked,Unknown,Unknown,Unknown,Thrown overboard,Captain Lavarello ,M,FATAL,Y,Taranaki Herald,10/25/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.10.25.R-Lavarello.pdf -538,1890.08.17.R,17-Aug-1890,1890,Provoked,Usa,New Jersey,"Off Normandie-by-the-Sea, Monmouth County",Fishing for bluefish,a charter fishing boat with James Whiteside and his party,Unknown,No injury to occupants. Hooked shark damaged boat PROVOKED INCIDENT,N,NY Times,8/17/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.17.R-NJ-PartyBoat.pdf +549,1891.12.31.R,31-Dec-91,1891,Unprovoked,Australia,New South Wales,Unknown,Swimming,Mr. Christesen,M,Foot severed,N,Maitland Mercury & Hunter River General Advertiser,12/31/1891 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.31.R-Christesen.pdf +548,1891.12.22.R,22-Dec-91,1891,Unprovoked,New zealand,North Island,"Manukau Harbor, 6 miles south of Auckland","Swimming, after boat swamped",Henry Jacobson,M,Hand bitten,N,The Advertiser,1/1/1892,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.22.R-Jacobson.pdf +547,1891.09.14.R,14-Sep-91,1891,Sea Disaster,Kiribati,Line Islands,Flint Island,"Sea Disaster, canoes capsized in storm",Unknown,Unknown,"FATAL Of 38 people in the water, 8 were killed by sharks & 1 man's leg was severed",Y,Newark Daily Advocate,9/14/1891; Bismark Daily Tribune,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.09.14.R-Kiribati.pdf +546,1891.08.30.R,30-Aug-91,1891,Unprovoked,Canada,Nova Scotia,Halifax,Knocked overboard,John Roult,M,FATAL,Y,Washington Post,8/31/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.30.R-Roult.pdf +545,1891.08.29,29-Aug-91,1891,Provoked,Usa,New Jersey,"Off Longport, Atlantic County",Shooting sharks ,one of the crew of the schooner Mary C. Brown,M,"Survived, PROVOKED INCIDENT",N,The Daily Argus News,9/3/1891 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.29-Mary-Brown-crew.pdf +544,1891.06.11,11-Jun-91,1891,Invalid,Usa,Virginia,Hampton Roads,Fishing for sharks when he became entangled in net & fell overboard,John Howard,M,"Fatal, but death may have been due to drowning",Y,Washington Post,6/12/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.06.11-JohnHoward.pdf +543,1891.03.10,10-Mar-91,1891,Unprovoked,Unknown,Unknown,Unknown,Fleeing across a river,Unknown,Unknown,FATAL,Y,West Australian,11/2/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.03.10-Paraguay.pdf +542,1891.01.08.R,08-Jan-91,1891,Unprovoked,Jamaica,Kingston Parish,Port Royal Harbour,boat capsized,3 sailors,M,FATAL,Y,Tuapeka Times,1/21/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.01.08.R-Jamaica.pdf +541,1890.12.30,30-Dec-90,1890,Invalid,Australia,Queensland,Moreton Bay,Swimming to shore after boat capsized by a squall,C. Gregory,Unknown,"Fatal, but death may have been due to drowning",Y,The Argus,21/2/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.30-Gregory.pdf +540,1890.12.27.R,27-Dec-90,1890,Unprovoked,British new guinea,Woodlark Islands,Off Panamota,Thrown overboard,Tetebara,M,Arm bitten,N,Queenslander,12/27/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.27.R-Tetebara.pdf +539,1890.10.25.R,25-Oct-90,1890,Unprovoked,Unknown,Unknown,Unknown,Thrown overboard,Captain Lavarello ,M,FATAL,Y,Taranaki Herald,10/25/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.10.25.R-Lavarello.pdf +538,1890.08.17.R,17-Aug-90,1890,Provoked,Usa,New Jersey,"Off Normandie-by-the-Sea, Monmouth County",Fishing for bluefish,a charter fishing boat with James Whiteside and his party,Unknown,No injury to occupants. Hooked shark damaged boat PROVOKED INCIDENT,N,NY Times,8/17/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.17.R-NJ-PartyBoat.pdf 537,1890.08.09,9-Aug-1890,1890,Unprovoked,Usa,Connecticut,"Bridgeport, Fairfield County",Treading for clams,Raymond Odell,M,Severe lacerations to left arm.,N,NY Times,8/12/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.09-Odell.pdf 536,1890.08.08, 08-Aug-1890,1890,Unprovoked,Samoa,Upolu Island,Apia Harbour,Bathing,Hermann Schwebke,M,Both legs severed,N,Argus,9/9/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.08-Schwebke.pdf 535,1890.06.26,06-26-1890,1890,Unprovoked,Croatia,Unknown,Fiume,Swimming,Mayonni,M,Legs severed ,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.26-Mayonni.pdf -534,1890.06.14.R,14-Jun-1890,1890,Unprovoked,Unknown,Unknown,Unknown,Fell overboard,a Frenchman,M,Severe lacerations to foot,N,Bush Advocate,6/14/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.14.R-Frenchman.pdf -533,1890.06.02.R,02-Jun-1890,1890,Unprovoked,Egypt,Unknown,Port Said,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.02.R-PortSaid.pdf -532,1890.05.14,14-May-1890,1890,Invalid,South africa,Eastern Cape Province,Port Elizabeth,Unknown,Joseph Lundy,M,"Forensic evidence indicated death resulted from drowning, his body was subsequently scavenged by a shark",#VALUE!,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.05.14-Lundy.pdf -531,1890.02.25,25-Feb-1890,1890,Boating,Malta,Munxar Reef,Marsascala,"Fishing boat with 4 men on board was rammed & capsized by a shark, throwing all occupants into the water",Salvatore & Agostino Bugeja,M,"FATAL, 2 men were lost, presumed taken by the shark",Y,A. Buttigieg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.02.25-Malta.pdf +534,1890.06.14.R,14-Jun-90,1890,Unprovoked,Unknown,Unknown,Unknown,Fell overboard,a Frenchman,M,Severe lacerations to foot,N,Bush Advocate,6/14/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.14.R-Frenchman.pdf +533,1890.06.02.R,02-Jun-90,1890,Unprovoked,Egypt,Unknown,Port Said,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.02.R-PortSaid.pdf +532,1890.05.14,14-May-90,1890,Invalid,South africa,Eastern Cape Province,Port Elizabeth,Unknown,Joseph Lundy,M,"Forensic evidence indicated death resulted from drowning, his body was subsequently scavenged by a shark",#VALUE!,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.05.14-Lundy.pdf +531,1890.02.25,25-Feb-90,1890,Boating,Malta,Munxar Reef,Marsascala,"Fishing boat with 4 men on board was rammed & capsized by a shark, throwing all occupants into the water",Salvatore & Agostino Bugeja,M,"FATAL, 2 men were lost, presumed taken by the shark",Y,A. Buttigieg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.02.25-Malta.pdf 530,1890.00.00.e,1890,1890,Unprovoked,Australia,Tasmania,Derwent River (empties into the sea at Hobart),Wading,Frederick Sampson Johnson,M,Knee bitten,N,V.M. Coppleson (1958),p.105; C. Black pp. 147-148,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.e-FrederickSampsonJohnson.pdf 529,1890.00.00.d,1890,1890,Unprovoked,India,Tamil Nadu,Tuticorin,Diving,a pearl diver,M,No details,UNKNOWN,Sydney Morning Herald,10/1/1890,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.d-Tuticorin.pdf 528,1890.00.00.c,1890,1890,Unprovoked,India,Tamil Nadu,Tuticorin,Diving,a pearl diver,M,No details,UNKNOWN,Steubenville Herald,11/12/1896,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.c-Tuticorin.pdf 527,1890.00.00.b,1890,1890,Unprovoked,New zealand,North Island,"Lampton Harbour, Wellington",Swimming,soldier ,M,FATAL,Y,A. W. Parrott,p.68,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.b-soldier.pdf 526,1890.00.00.a,Ca. 1890,1890,Unprovoked,South africa,KwaZulu-Natal,Cape Vidal,Bathing,Zulu boy,M,"FATAL, leg bitten, foot partly severed ",Y,J. Daniel,M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.a-ZuluMale.pdf -525,1889.11.29.R,29-Nov-1889,1889,Invalid,Greece,Northern Peloponnese,Patras,Unknown,Unknown,Unknown,"Human remains found in 4m, 900 kg shark",Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.29.R-Greece.pdf -524,1889.11.22,22-Nov-1889,1889,Unprovoked,Australia,Queensland,Bowen,Fell into the water,E.J. Sharpe,M,FATAL,Y,Brisbane Courier,11/26/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.22-Sharpe.pdf -523,1889.11.16,16-Nov-1889,1889,Invalid,Usa,Hawaii,Honolulu,Parachuted from balloon,Joe Lawrence,M,Speculated that he was taken by a shark but most likely drowned,Y,NY Times,11/24/1889 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.16-Honolulu.pdf -522,1889.10.03.R,03-Oct-1889,1889,Unprovoked,India,Tamil Nadu,Madras,Swimming,"B, a young English officer",M,FATAL,Y,Decatur Daily Republican,10/3/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.10.03.R-Madras.pdf -521,1889.07.21,21-Jul-1889,1889,Unprovoked,Usa,Florida,"Fernandina, Nassau County",Swimming,Eddie Roe,M,"FATAL, calf bitten",Y,NY Times,7/22/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.21-Roe.pdf +525,1889.11.29.R,29-Nov-89,1889,Invalid,Greece,Northern Peloponnese,Patras,Unknown,Unknown,Unknown,"Human remains found in 4m, 900 kg shark",Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.29.R-Greece.pdf +524,1889.11.22,22-Nov-89,1889,Unprovoked,Australia,Queensland,Bowen,Fell into the water,E.J. Sharpe,M,FATAL,Y,Brisbane Courier,11/26/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.22-Sharpe.pdf +523,1889.11.16,16-Nov-89,1889,Invalid,Usa,Hawaii,Honolulu,Parachuted from balloon,Joe Lawrence,M,Speculated that he was taken by a shark but most likely drowned,Y,NY Times,11/24/1889 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.16-Honolulu.pdf +522,1889.10.03.R,03-Oct-89,1889,Unprovoked,India,Tamil Nadu,Madras,Swimming,"B, a young English officer",M,FATAL,Y,Decatur Daily Republican,10/3/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.10.03.R-Madras.pdf +521,1889.07.21,21-Jul-89,1889,Unprovoked,Usa,Florida,"Fernandina, Nassau County",Swimming,Eddie Roe,M,"FATAL, calf bitten",Y,NY Times,7/22/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.21-Roe.pdf 520,1889.07.19, 19-Jul-1889,1889,Unprovoked,Usa,Texas,West Bay near Galveston ,Fishing,John Bolling,M,Leg bitten,N,Galveston Daily News,7/21/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.19-Bolling.pdf -519,1889.07.08,08-Jul-1889,1889,Unprovoked,Australia,Victoria,Port Phillip,Fell into the water,male,M,FATAL ,Y,Brisbane Courier,7/9/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.08-PortPhillip.pdf -518,1889.01.31.R,31-Jan-1889,1889,Provoked,Usa,Florida,Hillsborough Bay,Fishing,"rowboat, ",Unknown,No injury to occupants. Gaffed shark capsized boat PROVOKED INCIDENT,N,Timaru Herald,1/31/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.31.R-Florida.pdf +519,1889.07.08,08-Jul-89,1889,Unprovoked,Australia,Victoria,Port Phillip,Fell into the water,male,M,FATAL ,Y,Brisbane Courier,7/9/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.08-PortPhillip.pdf +518,1889.01.31.R,31-Jan-89,1889,Provoked,Usa,Florida,Hillsborough Bay,Fishing,"rowboat, ",Unknown,No injury to occupants. Gaffed shark capsized boat PROVOKED INCIDENT,N,Timaru Herald,1/31/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.31.R-Florida.pdf 517,1889.01.00,Jan-1889,1889,Unprovoked,Sierra leone,Western Area,Freetown,Cleaning the side of a ship,English sailor,M,FATAL,Y,NY Times,1/20/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.00-EnglishSailor.pdf -516,1888.12.25.R,25-Dec-1888,1888,Unprovoked,Indian ocean,Between Perth & Colombo,Unknown,Swimming,E. Burnside,M,Foot severed,N,West Australian,12/25/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.25.R-Burnside.pdf -515,1888.12.09,09-Dec-1888,1888,Unprovoked,Australia,New South Wales,"Iron Cove Bridge, Sydney (Estuary)",Swimming,Stephen Carter,M,FATAL,Y,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.09-Carter.pdf +516,1888.12.25.R,25-Dec-88,1888,Unprovoked,Indian ocean,Between Perth & Colombo,Unknown,Swimming,E. Burnside,M,Foot severed,N,West Australian,12/25/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.25.R-Burnside.pdf +515,1888.12.09,09-Dec-88,1888,Unprovoked,Australia,New South Wales,"Iron Cove Bridge, Sydney (Estuary)",Swimming,Stephen Carter,M,FATAL,Y,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.09-Carter.pdf 514,1888.12.00,Dec-1888,1888,Unprovoked,Australia,New South Wales,"Hawkesbury Bridge, Sydney",Working on the bridge when he fell into the river,Mr. Ryland,M,FATAL,Y,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.00-Ryland.pdf -513,1888.10.23.R,23-Oct-1888,1888,Unprovoked,Croatia, Primorje-Gorski Kotar County,Rijeka,Unknown,Unknown,Unknown,Human remains found in shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.10.23.R-Croatia. Pdf -512,1888.08.14,14-Aug-1888,1888,Sea Disaster,Canada,Nova Scotia,Off Sable Island,The steamships Thingvalla and Geiser collided,1 man,M,FATAL,Y,Aurora Daiy Express,8/18/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.14-Geiser-passenger.pdf -511,1888.08.01.R,01-Aug-1888,1888,Boating,Usa,New York,Unknown,Sailing,catboat. Occupants: Captain Tuppe & 2 young ladiesr,Unknown,No injury to occupants. Shark beat away with oar,N,The Ledger,8/3/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.01-catboat.pdf -510,1888.07.20.R,20-Jul-1888,1888,Invalid,Unknown,Unknown,Unknown,Probabable drowning,Unknown,M,Human remains recovered from a 10' to 12' shark caught in a turtle net,Y,Otago Witness,7/20/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.20.R-Jamaica-scavenging.pdf -509,1888.07.13.R,13-Jul-1888,1888,Sea Disaster,India,Gujarat,Cutch Coast,The Dwarka foundered,6 crew,M,"FATAL, only 1 of her crew of 7 survived",Y,Otago Witness,7/13/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.13.R-Dwarka.pdf -508,1888.07.04,04-Jul-1888,1888,Invalid,Croatia,Lukovo,Unknown,Unknown,Unknown,Unknown,Human remains & clothing found in 7' shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.04-Croatia.pdf -507,1888.06.24,24-Jun-1888,1888,Boating,Australia,Victoria,Port Melbourne,Fishing,2 men,Unknown,"No injury to occupants, shark holed boat",N,Taranaki Herald,7/9/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.24-fishermen.pdf -506,1888.06.18.R,18-Jun-1888,1888,Invalid,Australia,Victoria,"Point Cook, Port Phillip Bay",The cutter yacht Cutty Sark sank,"Claude Hadley, William Grundy, Albert Faulkner & Frederick Faulkner",M,Probable drowning & scavenging,Y,New York Times,6/18/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.18-PortPhillip.pdf -505,1888.02.17,17-Feb-1888,1888,Unprovoked,New zealand,South Island,Oamaru,Floating on his back,David Grant,M,"Arm severely lacerated, surgically amputated",N,R.D. Weeks,GSAF; K.C. McDonald; Evening Post (Wellington),http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.17-DavidGrant.pdf +513,1888.10.23.R,23-Oct-88,1888,Unprovoked,Croatia, Primorje-Gorski Kotar County,Rijeka,Unknown,Unknown,Unknown,Human remains found in shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.10.23.R-Croatia. Pdf +512,1888.08.14,14-Aug-88,1888,Sea Disaster,Canada,Nova Scotia,Off Sable Island,The steamships Thingvalla and Geiser collided,1 man,M,FATAL,Y,Aurora Daiy Express,8/18/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.14-Geiser-passenger.pdf +511,1888.08.01.R,01-Aug-88,1888,Boating,Usa,New York,Unknown,Sailing,catboat. Occupants: Captain Tuppe & 2 young ladiesr,Unknown,No injury to occupants. Shark beat away with oar,N,The Ledger,8/3/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.01-catboat.pdf +510,1888.07.20.R,20-Jul-88,1888,Invalid,Unknown,Unknown,Unknown,Probabable drowning,Unknown,M,Human remains recovered from a 10' to 12' shark caught in a turtle net,Y,Otago Witness,7/20/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.20.R-Jamaica-scavenging.pdf +509,1888.07.13.R,13-Jul-88,1888,Sea Disaster,India,Gujarat,Cutch Coast,The Dwarka foundered,6 crew,M,"FATAL, only 1 of her crew of 7 survived",Y,Otago Witness,7/13/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.13.R-Dwarka.pdf +508,1888.07.04,04-Jul-88,1888,Invalid,Croatia,Lukovo,Unknown,Unknown,Unknown,Unknown,Human remains & clothing found in 7' shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.04-Croatia.pdf +507,1888.06.24,24-Jun-88,1888,Boating,Australia,Victoria,Port Melbourne,Fishing,2 men,Unknown,"No injury to occupants, shark holed boat",N,Taranaki Herald,7/9/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.24-fishermen.pdf +506,1888.06.18.R,18-Jun-88,1888,Invalid,Australia,Victoria,"Point Cook, Port Phillip Bay",The cutter yacht Cutty Sark sank,"Claude Hadley, William Grundy, Albert Faulkner & Frederick Faulkner",M,Probable drowning & scavenging,Y,New York Times,6/18/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.18-PortPhillip.pdf +505,1888.02.17,17-Feb-88,1888,Unprovoked,New zealand,South Island,Oamaru,Floating on his back,David Grant,M,"Arm severely lacerated, surgically amputated",N,R.D. Weeks,GSAF; K.C. McDonald; Evening Post (Wellington),http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.17-DavidGrant.pdf 504,1888.02.00,Feb-1888,1888,Unprovoked,South africa,Eastern Cape Province,Mzimvubu River mouth,Crossing the river mouth,male,M,FATAL,Y,Cape Mercantile Advertiser,2/15/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.00-Mzimvubu.pdf -503,1888.01.22,22-Jan-1888,1888,Boating,Australia,New South Wales,Sydney Harbor,Rowing,Burke,M,"Shark bit boat, but no injury to occupant who swam ashore",N,Star,1/23/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.01.22-Burke.pdf +503,1888.01.22,22-Jan-88,1888,Boating,Australia,New South Wales,Sydney Harbor,Rowing,Burke,M,"Shark bit boat, but no injury to occupant who swam ashore",N,Star,1/23/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.01.22-Burke.pdf 502,1888.00.00,1888,1888,Unprovoked,Libya,Mediterranean Sea,Off Tripoli,Sponge diving,T riantafyllos,M,Lacerations to thorax and hands,N,M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.00.00-Triantafyllos.pdf -501,1887.12.22.R,22-Dec-1887,1887,Unprovoked,Honduras,Cortés,Off Puerto Cortez (Caribbean coast),Fell oveboard from steamer Wanderer,Carl Luhudahl,M,FATAL,Y,Union County Journal,12/22/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.22.R-Luhudahl.pdf -500,1887.12.04,04-Dec-1887,1887,Unprovoked,Australia,New South Wales,"Ryde, Sydney (Estuary)",Unknown,Thomas Cochrane (William Charles Corkhill0,M,FATAL,Y,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.04-Cochrane.pdf -499,1887.10.18,18-Oct-1887,1887,Unprovoked,Usa,Florida,"Between Lake Worth & Biscayne Bay, near Hillsboro","Crossing inlet in a boat, seen fighting sharks with his oar, sharks smashed boat","James F. Hamilton, a mail carrier",M,FATAL,Y,Evening Telegram,11/5/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.18-Hamilton.pdf +501,1887.12.22.R,22-Dec-87,1887,Unprovoked,Honduras,Cortés,Off Puerto Cortez (Caribbean coast),Fell oveboard from steamer Wanderer,Carl Luhudahl,M,FATAL,Y,Union County Journal,12/22/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.22.R-Luhudahl.pdf +500,1887.12.04,04-Dec-87,1887,Unprovoked,Australia,New South Wales,"Ryde, Sydney (Estuary)",Unknown,Thomas Cochrane (William Charles Corkhill0,M,FATAL,Y,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.04-Cochrane.pdf +499,1887.10.18,18-Oct-87,1887,Unprovoked,Usa,Florida,"Between Lake Worth & Biscayne Bay, near Hillsboro","Crossing inlet in a boat, seen fighting sharks with his oar, sharks smashed boat","James F. Hamilton, a mail carrier",M,FATAL,Y,Evening Telegram,11/5/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.18-Hamilton.pdf 498,1887.10.00,October 1887,1887,Sea Disaster,Unknown,Unknown,Unknown,"Sea disaster, wreck of the Alfred Watts",Burgess & 2 seamen,M,FATAL,Y,New York Times,12/23/1887 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.00-Shipwreck-Alfred-Watts.pdf -497,1887.09.22,22-Sep-1887,1887,Unprovoked,Italy,Unknown,Trieste,Swimming,Joseph Weissmantel,M,Leg injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.22-Weissmantel.pdf -496,1887.09.06,11-Sep-1887,1887,Invalid,Croatia, Primorje-Gorski Kotar County,Kraljevica,Unknown,Unknown,Unknown,Shoes & human remains found in a shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.06-Croatia.pdf -495,1887.03.12,12-Mar-1887,1887,Boating,Australia,South Australia,Black Point,Rowing a dinghy,Mr. Boucaut & Mr. Harris,Unknown,No injury to occupants,N,New York Times,5/16/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.03.12-dinghy-Black-Point.pdf -494,1887.02.08.R,08-Feb-1887,1887,Unprovoked,New zealand,North Island,Kaipara,Swimming,a seaman from the Johann Brodersen,M,FATAL,Y,Bruce Herald,2/8/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-Kaipara.pdf -493,1887.02.08,08-Feb-1887,1887,Provoked,South africa,Western Cape Province,Blaauwberg,Unknown,boat,Unknown,"Harpooned shark, bit boat, causing it to ship water. Boat reached shore in sinking condition PROVOKED INCIDENT",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-boat.pdf -492,1887.01.20,20-Jan-1887,1887,Sea Disaster,Brazil,Alagoas,Maceió,The passenger ship Kapuna was run down the ore carrier Ada Melmore,Whittle,M,FATAL,Y,Brisbane Courier,4/14/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.20-Whittle.pdf -491,1887.01.12,12-Jan-1887,1887,Unprovoked,South africa,Eastern Cape Province,"Mzimvubu River, 9.6 km from the sea",Swimming,Zangile,M,"FATAL, flesh removed hip to knee, calf & heel bitten ",Y,Cape Mercantile Advertiser,1/25/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.12-Zangile.pdf +497,1887.09.22,22-Sep-87,1887,Unprovoked,Italy,Unknown,Trieste,Swimming,Joseph Weissmantel,M,Leg injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.22-Weissmantel.pdf +496,1887.09.06,11-Sep-87,1887,Invalid,Croatia, Primorje-Gorski Kotar County,Kraljevica,Unknown,Unknown,Unknown,Shoes & human remains found in a shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.06-Croatia.pdf +495,1887.03.12,12-Mar-87,1887,Boating,Australia,South Australia,Black Point,Rowing a dinghy,Mr. Boucaut & Mr. Harris,Unknown,No injury to occupants,N,New York Times,5/16/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.03.12-dinghy-Black-Point.pdf +494,1887.02.08.R,08-Feb-87,1887,Unprovoked,New zealand,North Island,Kaipara,Swimming,a seaman from the Johann Brodersen,M,FATAL,Y,Bruce Herald,2/8/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-Kaipara.pdf +493,1887.02.08,08-Feb-87,1887,Provoked,South africa,Western Cape Province,Blaauwberg,Unknown,boat,Unknown,"Harpooned shark, bit boat, causing it to ship water. Boat reached shore in sinking condition PROVOKED INCIDENT",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-boat.pdf +492,1887.01.20,20-Jan-87,1887,Sea Disaster,Brazil,Alagoas,Maceió,The passenger ship Kapuna was run down the ore carrier Ada Melmore,Whittle,M,FATAL,Y,Brisbane Courier,4/14/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.20-Whittle.pdf +491,1887.01.12,12-Jan-87,1887,Unprovoked,South africa,Eastern Cape Province,"Mzimvubu River, 9.6 km from the sea",Swimming,Zangile,M,"FATAL, flesh removed hip to knee, calf & heel bitten ",Y,Cape Mercantile Advertiser,1/25/1887,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.12-Zangile.pdf 490,1887.00.00,1887,1887,Sea Disaster,Ocean,"Somewhere between Philadelphia and Hiogo, Japan",Unknown,British ship Macedon was thrown on her beam ends by a sudden squall,a ship's steward,M,Foot severed,N,Galveston Daily News,2/11/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.00.00-Macedom.pdf 489,1886.08.00.c,Mid-Aug-1886,1886,Boating,Usa, New Jersey,"Shrewsbury River, Highlands, Monmouth County",Unknown,"boat, occupants: 4 men",M,"Shark attacked boat, shark killed & towed to shore",N,R. Heyer,citing the Red Bank Register,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.c-boat.pdf 488,1886.08.00.b,Mid-Aug-1886,1886,Provoked,Usa,New Jersey,"Sandy Hook Bay, Highlands, Monmouth County","Netting menhaden, sharks caught in net",Boat of Captain Forman White,Unknown,"No injury, sharks ripped net & bit boat PROVOKED INCIDENT",N,R. Heyer,citing the Red Bank Register,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.b-FormanWhite-boat.pdf 487,1886.08.00.a,Aug-1886,1886,Boating,Usa,New Jersey,"Shrewsbury River, Highlands, Monmouth County",Clamming,John Parker & Edward Matthews,M,"No injury. They were chased by three sharks, one of which rammed their boat",N,R. Heyer citing the Red Bank Register,9/1/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.a-Parker-Matthews.pdf -486,1886.06.17,17-Jun-1886,1886,Unprovoked,Australia,Queensland,Off Bribie Heads,Swimming after being washed overboard,Lacoon,M,FATAL,Y,Brisbane Courier,6/21/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.17-Lacoon.pdf -485,1886.06.02,02-Jun-1886,1886,Invalid,Usa,Hawaii,"Hamakua Homakua, Hawai'i","Fishing from shore, washed into the sea",2 women,F,"The body of one woman had been bitten by a shark but it is not known if she was alive at the time, the other woman disappeared",Y,G. H. Balazs & A. H. Kam; V.M. Coppleson (1958),p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.02-Hamakua.pdf -484,1886.05.06,06-May-1886,1886,Unprovoked,New caledonia,South Province,Noumea,Bathing,male,M,FATAL,Y,Timaru Herald,6/8/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.05.06-Noumea.pdf -483,1886.04.26,26-Apr-1886,1886,Unprovoked,Australia,Queensland,Rothesay Bay,Oystering,male,M,Wrist bitten,N,The Capricornian,5/1/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.26-RothesayBay.pdf -482,1886.04.11,11-Apr-1886,1886,Invalid,New zealand,South Island,Near the mouth of the Clarence River,Sea disaster : Wreck of the Taiaroa,male,M,Probable drowning & scavenging,Y,Auckland Star,4/24/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.11-TaiaroaShipwreck.pdf -481,1886.03.06.R,06-Mar-1886,1886,Invalid,New zealand,South Island,Dunedin ,Bathing ,Rodwell,M,Left leg severed. Probably confusion with GSAF 1886.01.28,N,Feilding Star,3/6/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.06-Rodwell-NZ.pdf +486,1886.06.17,17-Jun-86,1886,Unprovoked,Australia,Queensland,Off Bribie Heads,Swimming after being washed overboard,Lacoon,M,FATAL,Y,Brisbane Courier,6/21/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.17-Lacoon.pdf +485,1886.06.02,02-Jun-86,1886,Invalid,Usa,Hawaii,"Hamakua Homakua, Hawai'i","Fishing from shore, washed into the sea",2 women,F,"The body of one woman had been bitten by a shark but it is not known if she was alive at the time, the other woman disappeared",Y,G. H. Balazs & A. H. Kam; V.M. Coppleson (1958),p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.02-Hamakua.pdf +484,1886.05.06,06-May-86,1886,Unprovoked,New caledonia,South Province,Noumea,Bathing,male,M,FATAL,Y,Timaru Herald,6/8/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.05.06-Noumea.pdf +483,1886.04.26,26-Apr-86,1886,Unprovoked,Australia,Queensland,Rothesay Bay,Oystering,male,M,Wrist bitten,N,The Capricornian,5/1/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.26-RothesayBay.pdf +482,1886.04.11,11-Apr-86,1886,Invalid,New zealand,South Island,Near the mouth of the Clarence River,Sea disaster : Wreck of the Taiaroa,male,M,Probable drowning & scavenging,Y,Auckland Star,4/24/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.11-TaiaroaShipwreck.pdf +481,1886.03.06.R,06-Mar-86,1886,Invalid,New zealand,South Island,Dunedin ,Bathing ,Rodwell,M,Left leg severed. Probably confusion with GSAF 1886.01.28,N,Feilding Star,3/6/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.06-Rodwell-NZ.pdf 480,1886.03.00,Mar-1886,1886,Invalid,Australia,New South Wales,"Dobroyd Head, Watson Bay, Sydney",He drowned when boat capsized,James Barefoot,M,His body was found in a tiger shark; next day other human remains found in sharks at Berry's Bay ,Y,Evening Post,4/7/1886; G.P. Whitley (1951),http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.00-Barefoot.pdf -479,1886.02.13.R,13-Feb-1886,1886,Boating,Australia,Victoria,Mordialloc,Fishing,20' boat; occupants: John Wright & a friend,M,"No injury to occupants, shark shook boat ""stem to stern""",N,Evening Post,2/13/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.02.13.R-Wright.pdf -478,1886.01.28,28-Jan-1886,1886,Unprovoked,South africa,Eastern Cape Province,"South Jetty, Port Elizabeth",Diving off jetty,Mr. Rodwell,M,"Chest & buttocks bitten, left leg severed at knee",N,Eastern Province Herald,1/28/1886; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.28-Rodwell.pdf -477,1886.01.26,26-Jan-1886,1886,Unprovoked,Australia,Queensland,Unknown,Diving alongsidethe steamship Ranelagh ,John Byrne,M,Foot bitten,N,Brisbane Courier,1/27/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.26-Byrne.pdf -476,1886.01.01,01-Jan-1886,1886,Unprovoked,South africa,Western Cape Province,Groot River,Swimming,Dr. James Woolby,M,"FATAL. He threw up his hands, shrieked and disappeared. Partial remains washed ashore the next day",Y,P. Logan; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.01-Woolby.pdf +479,1886.02.13.R,13-Feb-86,1886,Boating,Australia,Victoria,Mordialloc,Fishing,20' boat; occupants: John Wright & a friend,M,"No injury to occupants, shark shook boat ""stem to stern""",N,Evening Post,2/13/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.02.13.R-Wright.pdf +478,1886.01.28,28-Jan-86,1886,Unprovoked,South africa,Eastern Cape Province,"South Jetty, Port Elizabeth",Diving off jetty,Mr. Rodwell,M,"Chest & buttocks bitten, left leg severed at knee",N,Eastern Province Herald,1/28/1886; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.28-Rodwell.pdf +477,1886.01.26,26-Jan-86,1886,Unprovoked,Australia,Queensland,Unknown,Diving alongsidethe steamship Ranelagh ,John Byrne,M,Foot bitten,N,Brisbane Courier,1/27/1886,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.26-Byrne.pdf +476,1886.01.01,01-Jan-86,1886,Unprovoked,South africa,Western Cape Province,Groot River,Swimming,Dr. James Woolby,M,"FATAL. He threw up his hands, shrieked and disappeared. Partial remains washed ashore the next day",Y,P. Logan; M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.01-Woolby.pdf 475,1886.00.00,1886,1886,Unprovoked,Australia,New South Wales,Sydney Harbor,Sailing,male,M,Leg severed,N,I. M. Sigismund,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.00.00-Sydney.pdf -474,1885.11.26.R,26-Nov-1885,1885,Boating,Australia,Queensland,Brisbane ,Unknown,"boat, occupant John Bishop",Unknown,"No injury to occupant, shark bit off section of the boat's rudder",N,Brisbane Courier,11/26/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.R-Bishop.pdf -473,1885.11.26,26-Nov-1885,1885,Unprovoked,Australia,Western Australia,Bunbury,Bathing,A.Y. Glyde,M,Laceration to calf,N,The West Australia,12/2/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.a-Glyde.pdf -472,1885.08.17,17-Aug-1885,1885,Unprovoked,Unknown,Unknown,Unknown,Fell or jumped overboard from the liner Rhynland,J.R. Loesch,M,FATAL,Y,New York Times,8/27/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.08.17-Loesch.pdf -471,1885.07.26.c,26-Jul-1885,1885,Sea Disaster,Usa,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor,M,Left arm severed,N,Hawaiian Gazette,8124/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26-b-Schooner-crew-1.pdf -470,1885.07.26.b,26-Jul-1885,1885,Sea Disaster,Usa,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor ,M,Laceration to torso,N,Hawaiian Gazette,8124/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.c-Schooner-crew-2.pdf -469,1885.07.26.a,26-Jul-1885,1885,Sea Disaster,Usa,Hawaii,Kau District,Wreck of the schooner Pohoiki ,Captain Mark Robinson,M,FATAL,Y,Hawaiian Gazette,8/24/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.a-CaptainRobinson.pdf -468,1885.04.16.R,16-Apr-1885,1885,Unprovoked,Unknown,Unknown,Unknown,Swimming,2 males,M,FATAL,Y, Gleaner (Jamaica),4/16/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.16.R-GermanShip.pdf -467,1885.04.09,09-Apr-1885,1885,Unprovoked,New zealand,North Island,Auckland,Bathing,Pahi,M,Lacerations to lower leg,N,"Grey River Argus,4/18/185",,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.09-Pahi.pdf -466,1885.03.28,28-Mar-1885,1885,Unprovoked,South africa,KwaZulu-Natal,Kokstad District,Fishing,"boat, occupant: Mr. Anderson",M,"No injury to occupant, rammed oar in shark's mouth and it bit the oar ",N,South African Illustrated News,3/28/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.03.28-oar.pdf -465,1884.12.13,13-Dec-1884,1884,Sea Disaster,Australia,South Australia,Port Phillip,yachting accident,Willaim Browne,M,"Cause of death most likely drowning, remains recovered in shark",Y,The Argus,12/29/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.13-Browne.pdf -464,1884.12.08.R,08-Dec-1884,1884,Provoked,France,Côte d'Azur ,Between Nice & Villefranche,Unknown,child,F,FATAL Leg severed by harpooned shark PROVOKED INCIDENT,Y,North Otago Times,12/8/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.08.R-France.pdf -463,1884.08.28.R.,28-Aug-1884,1884,Unprovoked,Usa,New Jersey,"Bayonne, Hudson County",Boating,Edward Monroe,M,Hand bitten,N,Atlanta Contitution,8/28/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.28.R-EdwardMonroe.pdf -462,1884.08.18,18-Aug-1884,1884,Invalid,Usa,New York,Jamaica Bay,Clamming,Stephen Rylor,M,Unclear if he sustained any injury from the shark,N,New York Times,8/20/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.18-Rylor.pdf -461,1884.01.16,16-Jan-1884,1884,Unprovoked,South africa,Eastern Cape Province,"South Jetty, Port Elizabeth",Swimming,Mr. Meyer,M,FATAL,Y,Port Elizabeth Herald,1/23/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.16-Meyer.pdf -460,1884.01.14,14-Jan-1884,1884,Unprovoked,Australia,South Australia,"Port Pirie, Spencer Gulf, 230 km north of Adelaide",Fell overboard,Miss Warren,F,FATAL,Y,G.P. Whitley (1951),p. 192,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.14-Warren.pdf -459,1883.12.19,19-Dec-1883,1883,Unprovoked,Australia,New South Wales,Parramatta River,Swimming,Cuthbert Vere Lysaght,M,FATAL,Y,West Australian,12/22/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.19-Lysaght.pdf +474,1885.11.26.R,26-Nov-85,1885,Boating,Australia,Queensland,Brisbane ,Unknown,"boat, occupant John Bishop",Unknown,"No injury to occupant, shark bit off section of the boat's rudder",N,Brisbane Courier,11/26/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.R-Bishop.pdf +473,1885.11.26,26-Nov-85,1885,Unprovoked,Australia,Western Australia,Bunbury,Bathing,A.Y. Glyde,M,Laceration to calf,N,The West Australia,12/2/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.a-Glyde.pdf +472,1885.08.17,17-Aug-85,1885,Unprovoked,Unknown,Unknown,Unknown,Fell or jumped overboard from the liner Rhynland,J.R. Loesch,M,FATAL,Y,New York Times,8/27/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.08.17-Loesch.pdf +471,1885.07.26.c,26-Jul-85,1885,Sea Disaster,Usa,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor,M,Left arm severed,N,Hawaiian Gazette,8124/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26-b-Schooner-crew-1.pdf +470,1885.07.26.b,26-Jul-85,1885,Sea Disaster,Usa,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor ,M,Laceration to torso,N,Hawaiian Gazette,8124/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.c-Schooner-crew-2.pdf +469,1885.07.26.a,26-Jul-85,1885,Sea Disaster,Usa,Hawaii,Kau District,Wreck of the schooner Pohoiki ,Captain Mark Robinson,M,FATAL,Y,Hawaiian Gazette,8/24/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.a-CaptainRobinson.pdf +468,1885.04.16.R,16-Apr-85,1885,Unprovoked,Unknown,Unknown,Unknown,Swimming,2 males,M,FATAL,Y, Gleaner (Jamaica),4/16/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.16.R-GermanShip.pdf +467,1885.04.09,09-Apr-85,1885,Unprovoked,New zealand,North Island,Auckland,Bathing,Pahi,M,Lacerations to lower leg,N,"Grey River Argus,4/18/185",,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.09-Pahi.pdf +466,1885.03.28,28-Mar-85,1885,Unprovoked,South africa,KwaZulu-Natal,Kokstad District,Fishing,"boat, occupant: Mr. Anderson",M,"No injury to occupant, rammed oar in shark's mouth and it bit the oar ",N,South African Illustrated News,3/28/1885,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.03.28-oar.pdf +465,1884.12.13,13-Dec-84,1884,Sea Disaster,Australia,South Australia,Port Phillip,yachting accident,Willaim Browne,M,"Cause of death most likely drowning, remains recovered in shark",Y,The Argus,12/29/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.13-Browne.pdf +464,1884.12.08.R,08-Dec-84,1884,Provoked,France,Côte d'Azur ,Between Nice & Villefranche,Unknown,child,F,FATAL Leg severed by harpooned shark PROVOKED INCIDENT,Y,North Otago Times,12/8/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.08.R-France.pdf +463,1884.08.28.R.,28-Aug-84,1884,Unprovoked,Usa,New Jersey,"Bayonne, Hudson County",Boating,Edward Monroe,M,Hand bitten,N,Atlanta Contitution,8/28/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.28.R-EdwardMonroe.pdf +462,1884.08.18,18-Aug-84,1884,Invalid,Usa,New York,Jamaica Bay,Clamming,Stephen Rylor,M,Unclear if he sustained any injury from the shark,N,New York Times,8/20/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.18-Rylor.pdf +461,1884.01.16,16-Jan-84,1884,Unprovoked,South africa,Eastern Cape Province,"South Jetty, Port Elizabeth",Swimming,Mr. Meyer,M,FATAL,Y,Port Elizabeth Herald,1/23/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.16-Meyer.pdf +460,1884.01.14,14-Jan-84,1884,Unprovoked,Australia,South Australia,"Port Pirie, Spencer Gulf, 230 km north of Adelaide",Fell overboard,Miss Warren,F,FATAL,Y,G.P. Whitley (1951),p. 192,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.14-Warren.pdf +459,1883.12.19,19-Dec-83,1883,Unprovoked,Australia,New South Wales,Parramatta River,Swimming,Cuthbert Vere Lysaght,M,FATAL,Y,West Australian,12/22/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.19-Lysaght.pdf 458,1883.09.14.R,14-Sep-1883 (probably happened Ca. 1843/1844),1883,Unprovoked,Australia,Tasmania,Between Port Arthur Penal Colony & Forestier Peninsula,Swimming / escaping imprisonment ,Owen,M,FATAL,Y,C. Black,GSAF; Bruce Herald,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.09.14.R-Owen-the-Bushranger.pdf -457,1883.07.05,05-Jul-1883,1883,Provoked,Georgia,Unknown,"Savannah River, Chatham County",Fishing for sharks,male,M,Leg injured by hooked shark PROVOKED INCIDENT,N,Savannah Times,7/13/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.07.05-Savannah.pdf -456,1883.02.26.R,26-Feb-1883,1883,Unprovoked,Australia,Northern Territory,the pearling beds,Diving,male,M,Arm severed,N,The Queenslander,3/3/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.26.R-PearlDiver.pdf -455,1883.02.25.R,25-Feb-1883,1883,Unprovoked,Australia,Northern Territory,the pearling beds,Diving,male,M,FATAL,Y,The Queenslander,3/3/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.25.R-Pearl-Diver.pdf -454,1883.01.21,21-Jan-1883,1883,Unprovoked,Australia,New South Wales,"Iron Cove, Sydney",Bathing,John Eaton,M,FATAL,Y,Maitland Mercury,1/23/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.01.21-Eaton.pdf +457,1883.07.05,05-Jul-83,1883,Provoked,Georgia,Unknown,"Savannah River, Chatham County",Fishing for sharks,male,M,Leg injured by hooked shark PROVOKED INCIDENT,N,Savannah Times,7/13/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.07.05-Savannah.pdf +456,1883.02.26.R,26-Feb-83,1883,Unprovoked,Australia,Northern Territory,the pearling beds,Diving,male,M,Arm severed,N,The Queenslander,3/3/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.26.R-PearlDiver.pdf +455,1883.02.25.R,25-Feb-83,1883,Unprovoked,Australia,Northern Territory,the pearling beds,Diving,male,M,FATAL,Y,The Queenslander,3/3/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.25.R-Pearl-Diver.pdf +454,1883.01.21,21-Jan-83,1883,Unprovoked,Australia,New South Wales,"Iron Cove, Sydney",Bathing,John Eaton,M,FATAL,Y,Maitland Mercury,1/23/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.01.21-Eaton.pdf 453,1883.00.00.d,1883,1883,Unprovoked,Unknown,Unknown,Unknown,Fishing,"male, a cook",M,"FATAL, remains recovered from 2 sharks",Y,Freeborn County Standard,11/14/1883,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.d-cook.pdf 452,1883.00.00.c,Summer of 1883,1883,Unprovoked,Usa,Florida,"Fort Pickens, Escambia County",Fell overboard,the Captain’s boy,M,FATAL,Y,St Joseph Herald,7/12/1884,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.c-CaptainsBoy.pdf 451,1883.00.00.b,1883,1883,Invalid,Usa,South Carolina,"Bull’s Bay, near Charleston",Unknown,adult male,M,"Body found with arm severed by shark, but shark involvement prior to death was uncomfirmed",Y,W.H. Gregg,p.21; SAF Case #910,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.b-BullsBay.pdf 450,1883.00.00.a,1883,1883,Unprovoked,Usa,South Carolina,Unknown,Unknown,an aeronaut,M,FATAL,Y,W.H. Greg,p.22,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.a-aeronaut.pdf -449,1882.12.03,03-Dec-1882,1882,Provoked,New zealand,South Island,New Brighton,Restraining a beached shark,Mr. Hill,M,Hand severely nipped PROVOKED INCIDENT ,N,The Star,12/4/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.12.03-Hill.pdf -448,1882.11.12.b,12-Nov-1882,1882,Unprovoked,New zealand,North Island,"Tararu, Thames",Bathing,Arthur Evans,M,Sole of foot bitten,N,Colonist,11/22/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.b-Evans.pdf -447,1882.11.12.a,12-Nov-1882,1882,Unprovoked,New zealand,North Island,"Tararu, Thames",Bathing,William Connerly,M,Lacerations to thigh,N,Colonist,11/22/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.a-Connerly.pdf +449,1882.12.03,03-Dec-82,1882,Provoked,New zealand,South Island,New Brighton,Restraining a beached shark,Mr. Hill,M,Hand severely nipped PROVOKED INCIDENT ,N,The Star,12/4/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.12.03-Hill.pdf +448,1882.11.12.b,12-Nov-82,1882,Unprovoked,New zealand,North Island,"Tararu, Thames",Bathing,Arthur Evans,M,Sole of foot bitten,N,Colonist,11/22/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.b-Evans.pdf +447,1882.11.12.a,12-Nov-82,1882,Unprovoked,New zealand,North Island,"Tararu, Thames",Bathing,William Connerly,M,Lacerations to thigh,N,Colonist,11/22/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.a-Connerly.pdf 446,1882.09.00,Sep-1882,1882,Unprovoked,Unknown,Unknown,Unknown,Clinging to shipwrecked junk,Japanese fisherman,M,Lacerations to elbows & knees,N,Launceston Examiner,6/21/1883 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.09.00-JapaneseFisherman.pdf -445,1882.05.14,14-May-1882,1882,Unprovoked,Australia,New South Wales,Millers Point,Fell overboard,John Clare,M,Laceration to calf,N,Launceston Examiner,5/20/1882 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.14-Clare.pdf -444,1882.05.12.R,12-May-1882,1882,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,a Malay diver,M,FATAL Torso bitten,Y,West Australian,5/12/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.12.R-MalayDiver.pdf -443,1882.04.15,15-Apr-1882,1882,Unprovoked,Australia,New South Wales,Lake Macquarie,Fishing,Unknown,M,FATAL,Y,The Mercury,4/25/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.04.15-fisherman.pdf +445,1882.05.14,14-May-82,1882,Unprovoked,Australia,New South Wales,Millers Point,Fell overboard,John Clare,M,Laceration to calf,N,Launceston Examiner,5/20/1882 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.14-Clare.pdf +444,1882.05.12.R,12-May-82,1882,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,a Malay diver,M,FATAL Torso bitten,Y,West Australian,5/12/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.12.R-MalayDiver.pdf +443,1882.04.15,15-Apr-82,1882,Unprovoked,Australia,New South Wales,Lake Macquarie,Fishing,Unknown,M,FATAL,Y,The Mercury,4/25/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.04.15-fisherman.pdf 442,1882.02.07.R, 07-Feb-1882,1882,Unprovoked,Unknown,Unknown,Unknown,Pearl diving,a native diver,M,FATAL Thigh bitten,Y,West Australian,3/28/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.02.07.R-PearlDiver.pdf -441,1882.01.23.R,23-Jan-1882,1882,Unprovoked,Australia,New South Wales,"Darling Harbor, Sydney",Bathing,George Sinclair,M,FATAL,Y,Brisbane Courier,1/24/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.23.R-Sinclair.pdf +441,1882.01.23.R,23-Jan-82,1882,Unprovoked,Australia,New South Wales,"Darling Harbor, Sydney",Bathing,George Sinclair,M,FATAL,Y,Brisbane Courier,1/24/1882,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.23.R-Sinclair.pdf 440,1882.00.00.b,1882,1882,Unprovoked,Usa,Florida,"In the bay near the naval yard at Pensacola, Escambia County","During ""an exhibition"" he was tied in sack & thrown overboard ",John T. Clark,M,"No injury, sack rammed by shark & shark harassed him when he surfaced",N,The Sun; Iowa City Citizen,9/15/1910,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.b-Clark.pdf 439,1882.00.00.a,1882,1882,Unprovoked,Australia,Queensland,Maryborough,Unknown,male,M,Survived,N,V.M. Coppleson (1958),p.453; G.P. Whitley (1940),http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.a-Maryborough.pdf -438,1881.11.13,13-Nov-1881,1881,Invalid,Australia,New South Wales,"Johnstone's Bay, Sydney",Swimming,John Sullivan,M,Shark involvement suspected but not confirmed,N,Maitland Mercury & Hunter River General Advertiser,11/15/1881,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.11.13-Sullivan.pdf -437,1881.10.16,16-Oct-1881,1881,Invalid,Usa,Florida,"Pensacola Bay, Escambia County",Bathing,Anthony McDonald,M,Shark involvement prior to death unconfirmed,Y,Pensacola Gazette,"10/18/1881; Fort Wayne Daily Gazette,11/2/1881 ",http://sharkattackfile.net/spreadsheets/pdf_directory/1881.10.16-McDonald.pdf -436,1881.09.05,05-Sep-1881,1881,Unprovoked,Usa,North Carolina,"Elizabeth City, Pasquotank County ",Bathing,Frank G. Hines,M,"FATAL, possible post-mortem bites",Y,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.09.05-Hines.pdf -435,1881.08.16.R,16-Aug-1881,1881,Unprovoked,International_water,Western Banks,Unknown,"Floating, holding onto an oar after dory capsized",George Sedgwick,M,FATAL,Y,Lewiston Evening Journal,8/16/1881,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.16.R-Sedgwick.pdf -434,1881.08.12,12-Aug-1881,1881,Unprovoked,Usa,Rhode Island,Providence,Swimming,Jerry Lowney,M,"No injury, overalls ripped by shark",N,Providence Journal 8/15/1881,,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.12-Lowney.pdf -433,1881.06.25,25-Jut-1881,1881,Unprovoked,Usa,Unknown,Santa Cruz,Bathing,Father Hudson,M,Survived,N,"Grey River Argus,10/3/1881",p.2,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.25-FatherHudson.pdf -432,1881.06.13,13-Jun-1881,1881,Unprovoked,Usa,Alabama,Mobile Bay,Fell overboard,William Smith,M,FATAL,Y,Mobile Register,7/14/1881; NY Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.13-Smith.pdf +438,1881.11.13,13-Nov-81,1881,Invalid,Australia,New South Wales,"Johnstone's Bay, Sydney",Swimming,John Sullivan,M,Shark involvement suspected but not confirmed,N,Maitland Mercury & Hunter River General Advertiser,11/15/1881,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.11.13-Sullivan.pdf +437,1881.10.16,16-Oct-81,1881,Invalid,Usa,Florida,"Pensacola Bay, Escambia County",Bathing,Anthony McDonald,M,Shark involvement prior to death unconfirmed,Y,Pensacola Gazette,"10/18/1881; Fort Wayne Daily Gazette,11/2/1881 ",http://sharkattackfile.net/spreadsheets/pdf_directory/1881.10.16-McDonald.pdf +436,1881.09.05,05-Sep-81,1881,Unprovoked,Usa,North Carolina,"Elizabeth City, Pasquotank County ",Bathing,Frank G. Hines,M,"FATAL, possible post-mortem bites",Y,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.09.05-Hines.pdf +435,1881.08.16.R,16-Aug-81,1881,Unprovoked,International_water,Western Banks,Unknown,"Floating, holding onto an oar after dory capsized",George Sedgwick,M,FATAL,Y,Lewiston Evening Journal,8/16/1881,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.16.R-Sedgwick.pdf +434,1881.08.12,12-Aug-81,1881,Unprovoked,Usa,Rhode Island,Providence,Swimming,Jerry Lowney,M,"No injury, overalls ripped by shark",N,Providence Journal 8/15/1881,,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.12-Lowney.pdf +433,1881.06.25,25-Jut-81,1881,Unprovoked,Usa,Unknown,Santa Cruz,Bathing,Father Hudson,M,Survived,N,"Grey River Argus,10/3/1881",p.2,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.25-FatherHudson.pdf +432,1881.06.13,13-Jun-81,1881,Unprovoked,Usa,Alabama,Mobile Bay,Fell overboard,William Smith,M,FATAL,Y,Mobile Register,7/14/1881; NY Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.13-Smith.pdf 431,1881.00.00.b,1881,1881,Unprovoked,India,Unknown,"At Panihattu, Barrackpore, Dackhineshwar, Barahonagore, Kashipur & Chitpur down to Baug Bazar ghats",Unknown,Unknown,Unknown,"""More than 20 persons severely bitten by sharks this year. Almost all were fatal""",Y,A.C. Kastagir,Asst. Surgeon in the Indian Medical Gazette,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.b-India.pdf 430,1881.00.00.a,Ca. 1881,1881,Boating,Italy,Sicily,Stretto di Messina,Fishing on a boat,male,M,Non-Fatal,N,A. De Maddalena; Doderlein (1881),,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.a-Italy.pdf -429,1880.11.25,25-Nov-1880,1880,Unprovoked,Australia,Queensland,"Petrie Bight, Brisbane River",Swimming,Alexey Drury,M,"Feet bitten, surgically amputated FATAL",Y,Bucks County Gazette,2/10/1881,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.11.25-AlexeyDrury.pdf -428,1880.10.10,10-Oct-1880,1880,Sea Disaster,Australia,New South Wales,Bermagui,Traveling by boat,The Lamont Young party,M,"Disappeared, thought to have murdered or drowned or taken by a sharks after entrails washed ashore",Y,Sydney Morning Herald,10/26/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.10.10-Lamont-Young-Party.pdf -427,1880.08.08,08-Aug-1880,1880,Unprovoked,Unknown,Unknown,Unknown,Swimming to retrieve a flannel,Farejallah,M,Legs severed FATAL,Y,Newfoundlander (NZ),11/5/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.08.08-Farejallah.pdf -426,1880.07.25,25-Jul-1880,1880,Boating,Usa,New York,The Narrows,Sailing,Captain Aleck Robertson,M,"Shark bit stern, no injury to occupant",N,The Sun,7/26/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.07.25-Robertson.pdf -425,1880.05.15,15-May-1880,1880,Unprovoked,India,West Bengal,Ganges River,Unknown,"Sutto Cumar Mukerjea, a.k.a. Haboo",M,"Left hand severed, arm & right calf injured",N,A.C. Kastagir,surgeon; G.A. Llano,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.15-Haboo.pdf -424,1880.05.14,14-May-1880,1880,Unprovoked,India,West Bengal,Hoogly River,Bathing in river,a widow,F,"Hands, forearm & left thigh lacerated, radial artery severed",N,V.M. Coppleson (1958),p.261,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.14-Widow.pdf -423,1880.05.07.R,07-May-1880,1880,Invalid,Mexico,Guerro,Acapulco,Unknown,A.H.C.,M,"Human remains recovered from a 15' shark, probable scavenging",Y,Dover Weekly Argus,5/7/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.07.R-AHC.pdf -422,1880.05.02.b,02-May-1880,1880,Unprovoked,India,West Bengal,(Calcutta?),Bathing in river,Sasti,M,"FATAL, left forearm & hand bitten, brachial artery severed, died of secondary hemorrhage 11 days later ",Y,V.M. Coppleson (1958),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.b-Sasti.pdf -421,1880.05.02.a,02-May-1880,1880,Unprovoked,India,West Bengal,"Panihati, 4 miles south of Barrackpore on the Hoogly River",Bathing,"N., a native boy",M,"FATAL, right leg severed at mid-thigh, femur severed ",Y,V.M. Coppleson (1958),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.a-N.pdf -420,1880.01.22,22-Jan-1880,1880,Boating,Australia,New South Wales,"Chowder Bay, Sydney",Fishing,"boat, Occupants: William Smith & Thomas Martin",Unknown,"No injury to occupants, shark rammed boat",N,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.22-ChowderBayBoat.pdf -419,1880.01.03,03-Jan-1880,1880,Unprovoked,Australia,New South Wales,Cooranbong,Bathing,Teresa Bonnell,F,Lacerations to leg,N,Morning Bulletin,1/28/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.03-Bonnell.pdf +429,1880.11.25,25-Nov-80,1880,Unprovoked,Australia,Queensland,"Petrie Bight, Brisbane River",Swimming,Alexey Drury,M,"Feet bitten, surgically amputated FATAL",Y,Bucks County Gazette,2/10/1881,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.11.25-AlexeyDrury.pdf +428,1880.10.10,10-Oct-80,1880,Sea Disaster,Australia,New South Wales,Bermagui,Traveling by boat,The Lamont Young party,M,"Disappeared, thought to have murdered or drowned or taken by a sharks after entrails washed ashore",Y,Sydney Morning Herald,10/26/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.10.10-Lamont-Young-Party.pdf +427,1880.08.08,08-Aug-80,1880,Unprovoked,Unknown,Unknown,Unknown,Swimming to retrieve a flannel,Farejallah,M,Legs severed FATAL,Y,Newfoundlander (NZ),11/5/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.08.08-Farejallah.pdf +426,1880.07.25,25-Jul-80,1880,Boating,Usa,New York,The Narrows,Sailing,Captain Aleck Robertson,M,"Shark bit stern, no injury to occupant",N,The Sun,7/26/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.07.25-Robertson.pdf +425,1880.05.15,15-May-80,1880,Unprovoked,India,West Bengal,Ganges River,Unknown,"Sutto Cumar Mukerjea, a.k.a. Haboo",M,"Left hand severed, arm & right calf injured",N,A.C. Kastagir,surgeon; G.A. Llano,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.15-Haboo.pdf +424,1880.05.14,14-May-80,1880,Unprovoked,India,West Bengal,Hoogly River,Bathing in river,a widow,F,"Hands, forearm & left thigh lacerated, radial artery severed",N,V.M. Coppleson (1958),p.261,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.14-Widow.pdf +423,1880.05.07.R,07-May-80,1880,Invalid,Mexico,Guerro,Acapulco,Unknown,A.H.C.,M,"Human remains recovered from a 15' shark, probable scavenging",Y,Dover Weekly Argus,5/7/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.07.R-AHC.pdf +422,1880.05.02.b,02-May-80,1880,Unprovoked,India,West Bengal,(Calcutta?),Bathing in river,Sasti,M,"FATAL, left forearm & hand bitten, brachial artery severed, died of secondary hemorrhage 11 days later ",Y,V.M. Coppleson (1958),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.b-Sasti.pdf +421,1880.05.02.a,02-May-80,1880,Unprovoked,India,West Bengal,"Panihati, 4 miles south of Barrackpore on the Hoogly River",Bathing,"N., a native boy",M,"FATAL, right leg severed at mid-thigh, femur severed ",Y,V.M. Coppleson (1958),p.260,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.a-N.pdf +420,1880.01.22,22-Jan-80,1880,Boating,Australia,New South Wales,"Chowder Bay, Sydney",Fishing,"boat, Occupants: William Smith & Thomas Martin",Unknown,"No injury to occupants, shark rammed boat",N,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.22-ChowderBayBoat.pdf +419,1880.01.03,03-Jan-80,1880,Unprovoked,Australia,New South Wales,Cooranbong,Bathing,Teresa Bonnell,F,Lacerations to leg,N,Morning Bulletin,1/28/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.03-Bonnell.pdf 418,1880.00.00.e,1880?,1880,Invalid,Unknown,Unknown,Unknown,Diving for sponges,male,M,FATAL but shark involvement in death unconfirmed,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf 417,1880.00.00.d,Ca. 1880,1880,Invalid,Usa,Florida,"Hutchinson Island, Martin County",Unknown,"""Old Cuba""",M,"Drowned, body scavenged by shark",Y,History of Martin County by J. Hutchinson,,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.d-OldCuba.pdf 416,1880.00.00.c,Ca. 1880,1880,Unprovoked,Solomon islands,Guadalcanal Province,Guadalcanal,Unknown,boy,M,"Arm & leg severed, survived ",N,C.M. Woodford,page 35,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.c-Guadalcanal.pdf 415,1880.00.00.a,1880,1880,Unprovoked,New zealand,South Island,Campbell’s Point,Unknown,male,M,Recovered,N,Coppleson (1958),p.262 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.a-CampbellsPoint.pdf -414,1879.12.24,24-Dec-1879,1879,Unprovoked,India,Andaman Islands,Port Blair,Swimming,Kenney,M,FATAL,Y,Elyria Republican,3/18/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.12.24-Kenney.pdf -413,1879.11.10,10-Nov-1879,1879,Unprovoked,Australia,New South Wales,Clarence Heads,Swimming,Goddard,M,Thigh bitten,N,Maitland Mercury & Hunter River General Advertiser,11/18/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.11.10-Goddard.pdf +414,1879.12.24,24-Dec-79,1879,Unprovoked,India,Andaman Islands,Port Blair,Swimming,Kenney,M,FATAL,Y,Elyria Republican,3/18/1880,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.12.24-Kenney.pdf +413,1879.11.10,10-Nov-79,1879,Unprovoked,Australia,New South Wales,Clarence Heads,Swimming,Goddard,M,Thigh bitten,N,Maitland Mercury & Hunter River General Advertiser,11/18/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.11.10-Goddard.pdf 412,1879.09.22, 22-Sep-1879,1879,Provoked,Spain,Valencia,Castellon de la Plana,Fishing,Unknown,Unknown,"No injuries to occupants, Hooked shark bit boat PROVOKED INCIDENT",N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.09.22-Castellon-de-la-Plana.pdf -411,1879.08.30.R,30-Aug-1879,1879,Sea Disaster,Fiji,Lau Group,Totoya ,Unknown,male + 20,M,"Severely bitten on heel, 20 others taken by sharks",N,Wagga Wagga Advertiser,8/30/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.08.30.R-Totoya.pdf +411,1879.08.30.R,30-Aug-79,1879,Sea Disaster,Fiji,Lau Group,Totoya ,Unknown,male + 20,M,"Severely bitten on heel, 20 others taken by sharks",N,Wagga Wagga Advertiser,8/30/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.08.30.R-Totoya.pdf 410,1879.07.03,3-Jul-1879,1879,Unprovoked,Usa,California,"Los Angeles, Los Angeles County",Bathing,John Fry,M,No details,N,Reno Evening Gazette,7/11/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.07.03-JohnFry.pdf -409,1879.03.19,19-Mar-1879,1879,Unprovoked,New zealand,North Island,Napier,Standing,Michal O'Neill,M,FATAL,Y,Star,3/20/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.19-O'Neill.pdf -408,1879.03.10,10-Mar-1879,1879,Invalid,Australia,New South Wales,Near Sydney ,The steamship Bonnie Dundee lost in collision,Cabin boy of the Bonnie Dundee,M,Partial remains found in shark,Y,Star,3/22/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.10-Bonnie-Dundee.pdf +409,1879.03.19,19-Mar-79,1879,Unprovoked,New zealand,North Island,Napier,Standing,Michal O'Neill,M,FATAL,Y,Star,3/20/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.19-O'Neill.pdf +408,1879.03.10,10-Mar-79,1879,Invalid,Australia,New South Wales,Near Sydney ,The steamship Bonnie Dundee lost in collision,Cabin boy of the Bonnie Dundee,M,Partial remains found in shark,Y,Star,3/22/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.10-Bonnie-Dundee.pdf 407,1879.00.00,1879,1879,Unprovoked,Usa,Mississippi,River mouth,Floating with life buoy after pilot launch capsized,Gus Ericsson,M,FATAL,Y,Indiana County Gazette,10/3/1900,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.00.00-Ericsson.pdf -406,1878.11.17,17-Nov-1878,1878,Unprovoked,Australia,New South Wales,"Lane Cove River, Sydney Harbor ",Bathing,Mr. Meares,M,Laceration to leg,N,The Mercury,11/22/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.11.17-Meares.pdf -405,1878.10.24.R,24-Oct-1878,1878,Unprovoked,Indonesia,East Java,Probolinggo,Swimming,Owen,M,FATAL,Y,Hartford Weekly Times,10/24/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.24.R-Owen.pdf -404,1878.10.13,13-Oct-1878,1878,Unprovoked,Unknown,Unknown,Unknown,Jumped overboard after murdering 2 shipmates,Sherrington,M,FATAL,Y,The Maitland Mercury & Hunter River General Advertiser,1/28/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.13-Sherrington.pdf -403,1878.09.14.R,14-Sep-1878,1878,Provoked,Usa,Connecticut,"Branford, New Haven County",Fishing,Captain Pattison,M,Leg bitten by netted shark PROVOKED INCIDENT,N,St. Joseph Herald,9/14/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.14.R-Pattison.pdf -402,1878.09.02.b,02-Sep-1878,1878,Sea Disaster,South atlantic ocean,Off the coast of West Africa,Unknown,Boat with 5 men capsized while returning to the Amerique,Antonio du Val,M, Du Val's leg was bitten but he survived,N,Brisbane Courier,11/19/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.b-Amerique-boy.pdf -401,1878.09.02.a,02-Sep-1878,1878,Sea Disaster,South atlantic ocean,Off the coast of West Africa,Unknown,Boat with 5 men capsized while returning to the Amerique,Unknown,M,"FATAL, 2 of the crew were killed by sharks",Y,Brisbane Courier,11/19/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.a-Amerique.pdf -400,1878.08.09,09-Aug-1878,1878,Unprovoked,Usa,New York,East River,Swimming,Cole,M,FATAL?,Y,Daily Kennebec Journal,8/10/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.09-Cole.pdf -399,1878.08.08,08-Aug-1878,1878,Unprovoked,Usa,New York,Brooklyn,Swimming,George Gates,M,FATAL,Y,NY Times,8/9 & 8/16/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.08-Gates.pdf +406,1878.11.17,17-Nov-78,1878,Unprovoked,Australia,New South Wales,"Lane Cove River, Sydney Harbor ",Bathing,Mr. Meares,M,Laceration to leg,N,The Mercury,11/22/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.11.17-Meares.pdf +405,1878.10.24.R,24-Oct-78,1878,Unprovoked,Indonesia,East Java,Probolinggo,Swimming,Owen,M,FATAL,Y,Hartford Weekly Times,10/24/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.24.R-Owen.pdf +404,1878.10.13,13-Oct-78,1878,Unprovoked,Unknown,Unknown,Unknown,Jumped overboard after murdering 2 shipmates,Sherrington,M,FATAL,Y,The Maitland Mercury & Hunter River General Advertiser,1/28/1879,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.13-Sherrington.pdf +403,1878.09.14.R,14-Sep-78,1878,Provoked,Usa,Connecticut,"Branford, New Haven County",Fishing,Captain Pattison,M,Leg bitten by netted shark PROVOKED INCIDENT,N,St. Joseph Herald,9/14/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.14.R-Pattison.pdf +402,1878.09.02.b,02-Sep-78,1878,Sea Disaster,South atlantic ocean,Off the coast of West Africa,Unknown,Boat with 5 men capsized while returning to the Amerique,Antonio du Val,M, Du Val's leg was bitten but he survived,N,Brisbane Courier,11/19/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.b-Amerique-boy.pdf +401,1878.09.02.a,02-Sep-78,1878,Sea Disaster,South atlantic ocean,Off the coast of West Africa,Unknown,Boat with 5 men capsized while returning to the Amerique,Unknown,M,"FATAL, 2 of the crew were killed by sharks",Y,Brisbane Courier,11/19/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.a-Amerique.pdf +400,1878.08.09,09-Aug-78,1878,Unprovoked,Usa,New York,East River,Swimming,Cole,M,FATAL?,Y,Daily Kennebec Journal,8/10/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.09-Cole.pdf +399,1878.08.08,08-Aug-78,1878,Unprovoked,Usa,New York,Brooklyn,Swimming,George Gates,M,FATAL,Y,NY Times,8/9 & 8/16/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.08-Gates.pdf 398,1878.06.10,10-Jun-78,1878,Unprovoked,Philippines,Misamis Oriental,Cagayan de Oro,Unknown,Dolores Margarita Corrales y Roa,F,FATAL,Y,A.J. Montalvan II,Philippine Daily Inquirer,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.06.10-Philippines.pdf 397,1878.03.30.R,30-March-1878,1878,Unprovoked,Unknown,Unknown,Unknown,Unknown,Unknown,M,"""Fearfully injured""",N,Hawkes Bay Herald,4/16/1878,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.03.30.R-NewGuinea.pdf -396,1878.02.13,13-Feb-1878,1878,Sea Disaster,South africa,Western Cape Province,Olifantbos Point,Wreck of the Union Steamship Company 982-ton iron steamer Kafir,An Arab who had been with Stanley when he met Livingstone,M,"FATAL, shark removed large part of his hip",Y,M. Levine,GSAF; Times of Natal,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.13-Kafir.pdf +396,1878.02.13,13-Feb-78,1878,Sea Disaster,South africa,Western Cape Province,Olifantbos Point,Wreck of the Union Steamship Company 982-ton iron steamer Kafir,An Arab who had been with Stanley when he met Livingstone,M,"FATAL, shark removed large part of his hip",Y,M. Levine,GSAF; Times of Natal,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.13-Kafir.pdf 395,1878.00.00,1878,1878,Unprovoked,Australia,New South Wales,"Balmain, Sydney (Estuary)",Bathing in 2 feet of water,boy,M,"FATAL, leg severed ",Y,G.P. Whitley,ref Dr. Cleland,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.00.00-Balmain.pdf -394,1877.12.15.R,15-Dec-1877,1877,Sea Disaster,Unknown,Unknown,Unknown,Unknown,a male & a female,Unknown,FATAL,Y,Australian Town & Country Journal,12/15/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15.R-Fiji.pdf -393,1877.12.15,15-Dec-1877,1877,Unprovoked,Australia,New South Wales,"Peacock Point, Balmain, Sydney",Bathing,Albert Thomas Burless,M,Leg severely bitten & later surgically amputated,N,Sydney Mail,2/16/1878; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15-Burless.pdf -392,1877.12.12,12-Dec-1877,1877,Unprovoked,Australia,New South Wales,Near Sydney,Washed overboard from the barque Mary Eady,2 males,M,FATAL,Y,Brisbane Courier,12/15/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.12-MaryEady.pdf -391,1877.09.15,15-Sep-1877,1877,Unprovoked,Australia,New South Wales,Port Jackson,Fishing,Mr. Coulthard,M,"No injury, pulled overboard by a shark that grabbed his coat",N,The Mercury (Hobart),9/22/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.09.15-Coulthard.pdf -390,1877.08.28.R,28-Aug-1877,1877,Invalid,Unknown,Unknown,Unknown,Unknown,female,M,Partial human remains found in 13' shark,Y,Western Australian Times,8/28/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.08.28.R-IndianOcean.pdf +394,1877.12.15.R,15-Dec-77,1877,Sea Disaster,Unknown,Unknown,Unknown,Unknown,a male & a female,Unknown,FATAL,Y,Australian Town & Country Journal,12/15/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15.R-Fiji.pdf +393,1877.12.15,15-Dec-77,1877,Unprovoked,Australia,New South Wales,"Peacock Point, Balmain, Sydney",Bathing,Albert Thomas Burless,M,Leg severely bitten & later surgically amputated,N,Sydney Mail,2/16/1878; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15-Burless.pdf +392,1877.12.12,12-Dec-77,1877,Unprovoked,Australia,New South Wales,Near Sydney,Washed overboard from the barque Mary Eady,2 males,M,FATAL,Y,Brisbane Courier,12/15/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.12-MaryEady.pdf +391,1877.09.15,15-Sep-77,1877,Unprovoked,Australia,New South Wales,Port Jackson,Fishing,Mr. Coulthard,M,"No injury, pulled overboard by a shark that grabbed his coat",N,The Mercury (Hobart),9/22/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.09.15-Coulthard.pdf +390,1877.08.28.R,28-Aug-77,1877,Invalid,Unknown,Unknown,Unknown,Unknown,female,M,Partial human remains found in 13' shark,Y,Western Australian Times,8/28/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.08.28.R-IndianOcean.pdf 389,1877.04.07, 07-Apr-1877,1877,Provoked,Australia,Tasmania,Smelting Works Bay near Hobart,Unknown,John Smart,M,Fingers injured by landed shark PROVOKED INCIDENT,N,C. Black,GSAF; G.P. Whitley,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.07-Smart.pdf -388,1877.04.04.,04-Apr-1877,1877,Unprovoked,Australia,Victoria,Portarlington,Bathing,Mitchell,M,Thigh & foot bitten,N,Brisbane Courier,4/11/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.04-Mitchell.pdf -387,1877.03.16,16-Mar-1877,1877,Unprovoked,Italy,Strait of Messina,Off Calabria,Paddling,Captain Paul Boyton,M,3 ribs broken by shark's tail,N,J. Stanton,et. Al,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.16-Boyton.pdf +388,1877.04.04.,04-Apr-77,1877,Unprovoked,Australia,Victoria,Portarlington,Bathing,Mitchell,M,Thigh & foot bitten,N,Brisbane Courier,4/11/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.04-Mitchell.pdf +387,1877.03.16,16-Mar-77,1877,Unprovoked,Italy,Strait of Messina,Off Calabria,Paddling,Captain Paul Boyton,M,3 ribs broken by shark's tail,N,J. Stanton,et. Al,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.16-Boyton.pdf 386,1877.03.11, 11-Mar-1877,1877,Unprovoked,Fiji,Viti Levu Island,"Na Koro Vatu, Rewa River",Unknown,boy,M,"Thigh severely bitten, femur exposed ",N,Timaru Herald,5/18/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.11-RewaRiver.pdf -385,1877.02.17.R,17-Feb-1877,1877,Unprovoked,Australia,Victoria,Off Melbourne,Fishing ,Gesoun Gentel,M,Severe bite to hand,N,Otago Witness,2/17/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.02.17.R-Gentel.pdf +385,1877.02.17.R,17-Feb-77,1877,Unprovoked,Australia,Victoria,Off Melbourne,Fishing ,Gesoun Gentel,M,Severe bite to hand,N,Otago Witness,2/17/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.02.17.R-Gentel.pdf 384,1877.01.28, 28-Jan-1877,1877,Unprovoked,Australia,Victoria,Emerald Hill,Bathing,William Marks,M,FATAL,Y,The Mercury,2/19/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.28-Marks.pdf -383,1877.01.24.R,24-Jan-1877,1877,Unprovoked,Australia,Victoria,Boarding School Bay,Swimming,female,F,Ankle injured,N,The Argus,1/24/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.24.R-BoardingSchoolBay.pdf -382,1877.01.04,04-Jan-1877,1877,Invalid,South africa,KwaZulu-Natal,Durban,Body found floating next to his ship,"Anno Toosegir, a Malagasy crewman from the 130-ton brig Sea Nymph",M,"Although his body was bitten by a shark/s, bruises on his neck & face suggested foul play & a shipmate taken into custody but no charges made",Y,M. Levine,GSAF; Natal Colonist,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.04-Toosegeir.pdf +383,1877.01.24.R,24-Jan-77,1877,Unprovoked,Australia,Victoria,Boarding School Bay,Swimming,female,F,Ankle injured,N,The Argus,1/24/1877,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.24.R-BoardingSchoolBay.pdf +382,1877.01.04,04-Jan-77,1877,Invalid,South africa,KwaZulu-Natal,Durban,Body found floating next to his ship,"Anno Toosegir, a Malagasy crewman from the 130-ton brig Sea Nymph",M,"Although his body was bitten by a shark/s, bruises on his neck & face suggested foul play & a shipmate taken into custody but no charges made",Y,M. Levine,GSAF; Natal Colonist,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.04-Toosegeir.pdf 381,1877.00.00,Before 1878,1877,Unprovoked,India,Hoogly River,Near Calcutta,Unknown,Indian,Unknown,"Thigh severely bitten, femur exposed & grooved",N,J. Fayrer,M.D. cited in F. Day,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.00.00-Calcutta.pdf -380,1876.09.07.R,07-Sep-1876,1876,Unprovoked,Greece,Cyclades archipelago,Between the islands of Tenos and Andros ,Diving for sponges,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.09.07.R-Greece.pdf -379,1876.06.04.R,04-Jun-1876,1876,Unprovoked,Usa,Georgia,Cumberland Island,Bathing,Arthur E.. Boardman,M,Leg bitten,N,The Constitution,6/24/1876,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.06.04.R-Boardman.pdf -378,1876.05.14,14-May-1876,1876,Unprovoked,Australia,New South Wales,Sydney Harbour,Swimming,Frederick Brown,M,FATAL,Y,Sydney Mail,6/3/1876,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.05.14-Brown.pdf -377,1876.02.06,06-Feb-1876,1876,Unprovoked,Australia,Victoria,Albert Park in Port Phillip Bay,Bathing,Patrick Rooney,M,"FATAL, rescued by man on horseback, but died on the beach ",Y,V.M. Coppleson (1958),p.110; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.02.06-Rooney.pdf +380,1876.09.07.R,07-Sep-76,1876,Unprovoked,Greece,Cyclades archipelago,Between the islands of Tenos and Andros ,Diving for sponges,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.09.07.R-Greece.pdf +379,1876.06.04.R,04-Jun-76,1876,Unprovoked,Usa,Georgia,Cumberland Island,Bathing,Arthur E.. Boardman,M,Leg bitten,N,The Constitution,6/24/1876,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.06.04.R-Boardman.pdf +378,1876.05.14,14-May-76,1876,Unprovoked,Australia,New South Wales,Sydney Harbour,Swimming,Frederick Brown,M,FATAL,Y,Sydney Mail,6/3/1876,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.05.14-Brown.pdf +377,1876.02.06,06-Feb-76,1876,Unprovoked,Australia,Victoria,Albert Park in Port Phillip Bay,Bathing,Patrick Rooney,M,"FATAL, rescued by man on horseback, but died on the beach ",Y,V.M. Coppleson (1958),p.110; A. Sharpe,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.02.06-Rooney.pdf 376,1876.00.00.d,1876,1876,Unprovoked,Lebanon,Mount Lebanon,Batroun,Sponge diving,male,M,FATAL,Y,Drug Cir. & Chem. Gazette,1876,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.d-Lebanon.pdf 375,1876.00.00.c,1876,1876,Unprovoked,England,"Between Hastings & Fairlight, Sussex",Unknown,Unknown,male,M,Leg abraded,N,MEDSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.c-MEDSAF.pdf 374,1876.00.00.b,1876,1876,Unprovoked,Australia,Western Australia,Between De Grey River and Port Walcott,Pearl diving,"male, aboriginal diver",M,"""Severely bitten"" but survived",N,G.P. Whitley (1951) pp.185 & 192,citing P.Walcott,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.b-pearl-diver.pdf 373,1876.00.00.a,1876,1876,Unprovoked,Australia,New South Wales,Sydney,Unknown,boy,M,"FATAL, ""his side was bitten""",Y,G.P. Whitley (1951),p.192,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.a-boy-Sydney.pdf -372,1875.11.27.R,27-Nov-1875,1875,Unprovoked,Australia,New South Wales,Clarence Heads,Fishing,Aboriginal male,M,Foot severed at ankle,N,Brisbane Courier,11/27/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.11.27.R-AboriginalFisherman.pdf -371,1875.08.10,10-Aug-1875,1875,Invalid,South africa,KwaZulu-Natal,"Back Beach, Durban",Unknown,Unknown,Unknown,"Press reported that a 3 m shark was caught with human remains in its gut, but remains were those of a porpoise according to medical examiner",Y, Natal Colonist,8/13/1875; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.08.10-porpoise.pdf -370,1875.03.03,03-Mar-1875,1875,Unprovoked,New zealand,North Island,Tauranga,Bathing,male,M,FATAL,Y,Thames Star,3/3/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.03.03-Maori_boy.pdf -369,1875.01.20.R,20-Jan-1875,1875,Invalid,Australia,Queensland,Mary River,Bathing,male,M,"Forehead bitten, but shark involvement questionable",N,Nelson Evening Mail,1/20/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.01.20.R-MaryRiver.pdf -368,1874.11.21,21-Nov-1874,1874,Unprovoked,Australia,Queensland,Maryborough,Bathing,"""a lad""",M,Thigh bitten,N,Maryborough Chronicle,11/24/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.21-Maryborough.pdf +372,1875.11.27.R,27-Nov-75,1875,Unprovoked,Australia,New South Wales,Clarence Heads,Fishing,Aboriginal male,M,Foot severed at ankle,N,Brisbane Courier,11/27/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.11.27.R-AboriginalFisherman.pdf +371,1875.08.10,10-Aug-75,1875,Invalid,South africa,KwaZulu-Natal,"Back Beach, Durban",Unknown,Unknown,Unknown,"Press reported that a 3 m shark was caught with human remains in its gut, but remains were those of a porpoise according to medical examiner",Y, Natal Colonist,8/13/1875; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.08.10-porpoise.pdf +370,1875.03.03,03-Mar-75,1875,Unprovoked,New zealand,North Island,Tauranga,Bathing,male,M,FATAL,Y,Thames Star,3/3/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.03.03-Maori_boy.pdf +369,1875.01.20.R,20-Jan-75,1875,Invalid,Australia,Queensland,Mary River,Bathing,male,M,"Forehead bitten, but shark involvement questionable",N,Nelson Evening Mail,1/20/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.01.20.R-MaryRiver.pdf +368,1874.11.21,21-Nov-74,1874,Unprovoked,Australia,Queensland,Maryborough,Bathing,"""a lad""",M,Thigh bitten,N,Maryborough Chronicle,11/24/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.21-Maryborough.pdf 367,1875.00.00,Ca. mid-1870s,1875,Unprovoked,Australia,Western Australia,Sharks Bay,Sitting on gunwale of boat,Andrew Farmer,M,FATAL,Y,Western Mail (Perth),6/27/1919,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.00.00-Farmer.pdf -366,1874.11.14.R,14-Nov-1874,1874,Boating,Croatia,Zadar County,"Lika-Senj, Pag Island",Fishing,2 occupants,Unknown,"Shark damaged boat, but no injury to occupants",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.14.R-Croatia.pdf -365,1874.07.23,23-Jul-1874,1874,Boating,Unknown,Unknown,Unknown,Fishing,Unknown,Unknown,Shark and boat collided. No injury to occupants,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.23-Planier.pdf -364,1874.07.15.R,15-Jul-1874,1874,Unprovoked,Usa,Hawaii,Waikiki,Fishing,a native fisherman,M,Thumb & thigh lacerated,N,Empire,7/15/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.R-Hawaii.pdf -363,1874.07.15,15-Jul-1874,1874,Unprovoked,Usa,New York,Coney Island,Bathing,Mr. Keatly,M,Lacerations to groin,N,NY Times,7/17/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.a-Keatly.pdf -362,1874.06.15.b.R,15-Jun-1874,1874,Unprovoked,Kiribati,Gilbert Islands,Beru,Escaping from blackbirding vessel,Unknown,M,FATAL,Y,Daily Southern Cross,6/15/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.b.R-Blackbirder.pdf -361,1874.06.15.a.R,15-Jun-1874,1874,Unprovoked,Unknown,Unknown,Unknown,Salvaging a shipwreck,Unknown,M,Heel bitten,N,Daily Southern Cross,6/15/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.a.R-Achilles-tendon.pdf -360,1874.04.20.R,20-Apr-1874,1874,Boating,Canada,Newfoundland,St. Pierre Bank ,Fishing,A dory: occupants : 2 men,M,Shark bit & tipped the dory,N,Jones (1879); Piers (1933),,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.04.20.R-Dory.pdf +366,1874.11.14.R,14-Nov-74,1874,Boating,Croatia,Zadar County,"Lika-Senj, Pag Island",Fishing,2 occupants,Unknown,"Shark damaged boat, but no injury to occupants",N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.14.R-Croatia.pdf +365,1874.07.23,23-Jul-74,1874,Boating,Unknown,Unknown,Unknown,Fishing,Unknown,Unknown,Shark and boat collided. No injury to occupants,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.23-Planier.pdf +364,1874.07.15.R,15-Jul-74,1874,Unprovoked,Usa,Hawaii,Waikiki,Fishing,a native fisherman,M,Thumb & thigh lacerated,N,Empire,7/15/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.R-Hawaii.pdf +363,1874.07.15,15-Jul-74,1874,Unprovoked,Usa,New York,Coney Island,Bathing,Mr. Keatly,M,Lacerations to groin,N,NY Times,7/17/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.a-Keatly.pdf +362,1874.06.15.b.R,15-Jun-74,1874,Unprovoked,Kiribati,Gilbert Islands,Beru,Escaping from blackbirding vessel,Unknown,M,FATAL,Y,Daily Southern Cross,6/15/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.b.R-Blackbirder.pdf +361,1874.06.15.a.R,15-Jun-74,1874,Unprovoked,Unknown,Unknown,Unknown,Salvaging a shipwreck,Unknown,M,Heel bitten,N,Daily Southern Cross,6/15/1874,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.a.R-Achilles-tendon.pdf +360,1874.04.20.R,20-Apr-74,1874,Boating,Canada,Newfoundland,St. Pierre Bank ,Fishing,A dory: occupants : 2 men,M,Shark bit & tipped the dory,N,Jones (1879); Piers (1933),,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.04.20.R-Dory.pdf 359,1874.01.09,09-Jan- 1874,1874,Unprovoked,Australia,New South Wales,"Darling Harbor, Sydney",Bathing,Thomas Thompson,M,Thigh severely bitten,N,Sydney Morning Herald,1/1/1874; V.M. Coppleson (1962),http://sharkattackfile.net/spreadsheets/pdf_directory/1874.01.09-Thompson.pdf 358,1874.00.00,1874,1874,Boating,Tuvalu,Unknown,Between Nanumea & Nanumaga Atolls,Fleet of canoes caught by a squall and charged by sharks.,Unknown,Unknown,"2 people out of +70 survived, one of whom was bitten by sharks",Y,Otago Witness,10/28/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.00.00-Tuvalu.pdf -357,1873.07.28,28-Jul-1873,1873,Provoked,Usa,Maryland,Chester River,Fishing (Seining),James Green,M,Leg severely bitten by netted shark. Lower leg surgically amputated PROVOKED INCIDENT,N,NY Times,7/30/1873,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.07.28-Green.pdf -356,1873.06.09.R,09-Jun-1873,1873,Invalid,Australia,New South Wales,Newcastle ,Bathing,Joseph Henry,M,Shark involvement prior to death was not confirmed,Y,The Mercury,6/9/1873,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.06.09.R-Henry.pdf -355,1873.01.09.R,09-Jan-1873,1873,Unprovoked,Australia,Queensland,White Cliffs,Bathing,young aboriginal male,M,Survived,N,Brisbane Courier,1/9/1873,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.01.09.R-Aboriginal-male.pdf +357,1873.07.28,28-Jul-73,1873,Provoked,Usa,Maryland,Chester River,Fishing (Seining),James Green,M,Leg severely bitten by netted shark. Lower leg surgically amputated PROVOKED INCIDENT,N,NY Times,7/30/1873,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.07.28-Green.pdf +356,1873.06.09.R,09-Jun-73,1873,Invalid,Australia,New South Wales,Newcastle ,Bathing,Joseph Henry,M,Shark involvement prior to death was not confirmed,Y,The Mercury,6/9/1873,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.06.09.R-Henry.pdf +355,1873.01.09.R,09-Jan-73,1873,Unprovoked,Australia,Queensland,White Cliffs,Bathing,young aboriginal male,M,Survived,N,Brisbane Courier,1/9/1873,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.01.09.R-Aboriginal-male.pdf 354,1873.00.00,Nov- or Dec-1873,1873,Unprovoked,Cuba,Havana Province,Havana Harbor,Swimming / escaping imprisonment ,Franz Mayer,M,"Legs severed bitten, later surgically amputated",N,NY Times,8/9/1931,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.00.00-Mayer.pdf -353,1872.11.30.R,30-Nov-1872,1872,Unprovoked,Unknown,Unknown,Unknown,Swimming to avoid capture,Malay pirates,M,FATAL,Y,The Mercury,11/230/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.30.R-MalayPirates.pdf -352,1872.11.24,24-Nov-1872,1872,Invalid,Unknown,Unknown,Unknown,Unknown,Abel Fosdyk (who claimed to be sole survivor from the Mary Celeste),M,"No injury, but according to Fosdyk, captain & crew were killed by sharks",N,Strand Magazine ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.24-MaryCeleste.pdf -351,1872.08.07.R,07-Aug-1872,1872,Invalid,Croatia,Unknown,Fiume,Fishing,male,M,No injury,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.08.07.R-Fiume.pdf -350,1872.04.03.R,03-Apr-1872,1872,Unprovoked,Usa,Hawaii,Kawahae,Canoeing,Kaholo,M,"Thigh bitten, shark teeth embedded in canoe",N,Honolulu Gazette,4/3/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.04.03.R-Kaholo.pdf -349,1872.02.26,26-Feb-1872,1872,Sea Disaster,Australia,Queensland,Bramble Reef,Wreck of the 150-ton brig Maria,Unknown,Unknown,"FATAL, some were taken by sharks",Y,coralsea-wrecks.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.02.26-MariaShipwreck.pdf -348,1872.01.28,28-Jan-1872,1872,Invalid,Fiji,Lomaiviti Provine,"Levuka Point, Ovalau Island",boat capsized,Mr. Manning,M,Probable drowning,Y,Empire,2/20/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.01.28-Manning.pdf +353,1872.11.30.R,30-Nov-72,1872,Unprovoked,Unknown,Unknown,Unknown,Swimming to avoid capture,Malay pirates,M,FATAL,Y,The Mercury,11/230/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.30.R-MalayPirates.pdf +352,1872.11.24,24-Nov-72,1872,Invalid,Unknown,Unknown,Unknown,Unknown,Abel Fosdyk (who claimed to be sole survivor from the Mary Celeste),M,"No injury, but according to Fosdyk, captain & crew were killed by sharks",N,Strand Magazine ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.24-MaryCeleste.pdf +351,1872.08.07.R,07-Aug-72,1872,Invalid,Croatia,Unknown,Fiume,Fishing,male,M,No injury,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.08.07.R-Fiume.pdf +350,1872.04.03.R,03-Apr-72,1872,Unprovoked,Usa,Hawaii,Kawahae,Canoeing,Kaholo,M,"Thigh bitten, shark teeth embedded in canoe",N,Honolulu Gazette,4/3/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.04.03.R-Kaholo.pdf +349,1872.02.26,26-Feb-72,1872,Sea Disaster,Australia,Queensland,Bramble Reef,Wreck of the 150-ton brig Maria,Unknown,Unknown,"FATAL, some were taken by sharks",Y,coralsea-wrecks.com,,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.02.26-MariaShipwreck.pdf +348,1872.01.28,28-Jan-72,1872,Invalid,Fiji,Lomaiviti Provine,"Levuka Point, Ovalau Island",boat capsized,Mr. Manning,M,Probable drowning,Y,Empire,2/20/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.01.28-Manning.pdf 347,1872.00.00,Circa 1872,1872,Sea Disaster,South atlantic ocean,Off the coast of South America,Unknown,Adrift on a raft ,an Italian fisherman,M,Leg bitten,N,San Francisco Bulletin,11/1/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.00.00-Italian.pdf -346,1871.12.11.R,11-Dec-1871,1871,Invalid,Australia,New South Wales,Hawkesbury River,Unknown,male,M,Human remains recovered from 11' shark,N,Border Watch,1/10/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.12.11.R-Remains.pdf -345,1871.08.29.R,29-Aug-1871,1871,Unprovoked,Usa,Hawaii,Unknown,Fishing,male,M,Limbs severed,N,The British Colonist,8/29/1871,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.29.R-Hawaii.pdf +346,1871.12.11.R,11-Dec-71,1871,Invalid,Australia,New South Wales,Hawkesbury River,Unknown,male,M,Human remains recovered from 11' shark,N,Border Watch,1/10/1872,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.12.11.R-Remains.pdf +345,1871.08.29.R,29-Aug-71,1871,Unprovoked,Usa,Hawaii,Unknown,Fishing,male,M,Limbs severed,N,The British Colonist,8/29/1871,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.29.R-Hawaii.pdf 344,1871.08.00,Aug-1871,1871,Provoked,Usa,New York,Long Island,Shark fishing,Unknown,M,Hand injured PROVOKED INCIDENT,N,New York Times,8/26/1871,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.00-SharkFisherman.pdf -343,1871.05.22.R,22-May-1871,1871,Unprovoked,Sri lanka,Eastern Province,Trincomalee,Bathing,An officer from H.M. Forte,M,Severe laceration to thigh,N,The Argus,5/22/1871,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.22.R-Trincomalee.pdf -342,1871.03.24,24-Mar-1871,1871,Unprovoked,India,"22ºN, 88ºE",Hoogly River at Multah,Bathing,Deno,M,"FATAL, left thigh & buttock bitten, died of pneumonia 7 weeks later ",Y,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.03.24-Deno.pdf +343,1871.05.22.R,22-May-71,1871,Unprovoked,Sri lanka,Eastern Province,Trincomalee,Bathing,An officer from H.M. Forte,M,Severe laceration to thigh,N,The Argus,5/22/1871,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.22.R-Trincomalee.pdf +342,1871.03.24,24-Mar-71,1871,Unprovoked,India,"22ºN, 88ºE",Hoogly River at Multah,Bathing,Deno,M,"FATAL, left thigh & buttock bitten, died of pneumonia 7 weeks later ",Y,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.03.24-Deno.pdf 341,1871.00.00.c,1871,1871,Unprovoked,Australia,New South Wales,Manning River,Unknown,male,M,"FATAL, ""caught by legs"" ",Y,G.P. Whitley,ref E.S. Hill,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.c-ManningRiver.pdf 340,1871.00.00.b,Before 1871,1871,Unprovoked,Australia,Queensland,Brisbane River,Unknown,male,M,Survived,N,G.P. Whitley,ref. E.S. Hill,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.b-BrisbaneRiver.pdf 339,1871.00.00.a,Before 1871,1871,Unprovoked,Australia,New South Wales,Jervis Bay & Long Reef,Fishing,"2 males, aborigines",M,Feet grabbed,N,G.P. Whitley (1940),p.79,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.a-aborigines.pdf -338,1870.07.27,27-Jul-1870,1870,Unprovoked,Usa,North Carolina,"Smithville (now Southport), Brunswick County",Bathing,Giles Gordon,M,Foot bitten & toe severed,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.07.27-Gordon.pdf -337,1870.06.19,19-Jun-1870,1870,Unprovoked,India,"22ºN, 88ºE","Calcutta, Hoogly River at one of the ghats",Bathing,"male, a Hindu shopkeeper",M,"Left arm bitten, developed gangrene, surgically amputated",N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.19-HinduShopkeeper.pdf -336,1870.06.01,01-Jun-1870,1870,Unprovoked,India,West Bengal,"Hoogly River, Calcutta",Bathing / standing,"B., ""an Ooryah coolie""",M,"Right foot & leg bitten, surgically amputated",N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.01-Ooryah.pdf -335,1870.05.26.R,26-May-1870,1870,Unprovoked,Australia,Queensland,Moreton Island,Fishing,Master Lacy,M,bite to lower leg,N,Brisbane Courier,5/26/1870,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.26.R-Lacy.pdf -334,1870.05.18,18-May-1870,1870,Unprovoked,India,"22ºN, 88ºE","Hatkolah, Ghat,",Bathing,"H.E.S., a Hindu trader",M,4 irregular lacerated wounds on right arm,N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.18-HinduTrader.pdf -333,1870.05.11,11-May-1870,1870,Unprovoked,India,"22ºN, 88ºE",Near Sobah Bazar,Bathing,"male, a Hindu confectioner",M,3 lacerated irregular wounds on anterior left thigh,N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.11-HinduConfectioner.pdf -332,1870.01.09,09-Jan-1870,1870,Unprovoked,Australia,Queensland,Brisbane River,Bathing,John Saunders,M,Right thigh bitten,N,Brisbane Courier,1/15/1870,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.01.09-Saunders.pdf +338,1870.07.27,27-Jul-70,1870,Unprovoked,Usa,North Carolina,"Smithville (now Southport), Brunswick County",Bathing,Giles Gordon,M,Foot bitten & toe severed,N,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.07.27-Gordon.pdf +337,1870.06.19,19-Jun-70,1870,Unprovoked,India,"22ºN, 88ºE","Calcutta, Hoogly River at one of the ghats",Bathing,"male, a Hindu shopkeeper",M,"Left arm bitten, developed gangrene, surgically amputated",N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.19-HinduShopkeeper.pdf +336,1870.06.01,01-Jun-70,1870,Unprovoked,India,West Bengal,"Hoogly River, Calcutta",Bathing / standing,"B., ""an Ooryah coolie""",M,"Right foot & leg bitten, surgically amputated",N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.01-Ooryah.pdf +335,1870.05.26.R,26-May-70,1870,Unprovoked,Australia,Queensland,Moreton Island,Fishing,Master Lacy,M,bite to lower leg,N,Brisbane Courier,5/26/1870,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.26.R-Lacy.pdf +334,1870.05.18,18-May-70,1870,Unprovoked,India,"22ºN, 88ºE","Hatkolah, Ghat,",Bathing,"H.E.S., a Hindu trader",M,4 irregular lacerated wounds on right arm,N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.18-HinduTrader.pdf +333,1870.05.11,11-May-70,1870,Unprovoked,India,"22ºN, 88ºE",Near Sobah Bazar,Bathing,"male, a Hindu confectioner",M,3 lacerated irregular wounds on anterior left thigh,N,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.11-HinduConfectioner.pdf +332,1870.01.09,09-Jan-70,1870,Unprovoked,Australia,Queensland,Brisbane River,Bathing,John Saunders,M,Right thigh bitten,N,Brisbane Courier,1/15/1870,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.01.09-Saunders.pdf 331,1870.00.00,Early 1870s,1870,Invalid,Australia,Tasmania,Derwent River,Canoeing,Sub Lieut. Bowyer of H.M.S. Chile,M,Shark bit canoe in half & bit man. Note: There is an earlier story of FATAL shark attack in same river,N,C. Black,p.12; V.M. Coppleson (1958) pp. 104-105,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.00.00-Bowyer.pdf -330,1869.04.15.R,15-Apr-1869,1869,Unprovoked,Australia,South Australia,Cape Elizabeth,Net fishing,Joseph Simms,M,Foot bitten,N,The Mercury,4/151869,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.15.R-Simms.pdf -329,1869.04.10,10-Apr-1869,1869,Invalid,Unknown,Unknown,Unknown,Fell overboard,Christian Frederick,M,"FATAL, but shark involvement prior to death was not determined",Y,Nelson Examiner & New Zealand Chronicle,4/24/1869,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.10-Frederick.pdf -328,1868.09.01,01-Sep-1868,1868,Unprovoked,Italy,Adriatic Sea,Trieste,Unknown,male,M,FATAL,Y,A. De Maddalena; Radovanovi (1965),Soldo & Jardas (2000),http://sharkattackfile.net/spreadsheets/pdf_directory/1868.09.01-Trieste.pdf -327,1868.05.13,13-May-1868,1868,Unprovoked,India,Hoogly River,Ghat,Standing,male,M,"FATAL, upper left thigh, groin & buttocks severely bitten, leg surgically amputated at the hip ",Y,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.05.13-Hindoo.pdf -326,1868.01.17,17-Jan-1868,1868,Sea Disaster,Vietnam,Unknown,Cohong,A junk foundered,Unknown,M,FATAL,Y,Argus,5/26/1868,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.17-Vietnamese.pdf -325,1868.01.04.R,04-Jan-1868,1868,Sea Disaster,Australia,South Australia,Belfast (now Port Fairy),Fishing,"boat, occupants: John Griffiths & Thomas Johnson",Unknown,"No injury to occupants, shark's teeth embedded in keel",N,Nelson Examiner & New Zealand Chronicle,4/3/1868,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.04.R-PortFairy.pdf +330,1869.04.15.R,15-Apr-69,1869,Unprovoked,Australia,South Australia,Cape Elizabeth,Net fishing,Joseph Simms,M,Foot bitten,N,The Mercury,4/151869,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.15.R-Simms.pdf +329,1869.04.10,10-Apr-69,1869,Invalid,Unknown,Unknown,Unknown,Fell overboard,Christian Frederick,M,"FATAL, but shark involvement prior to death was not determined",Y,Nelson Examiner & New Zealand Chronicle,4/24/1869,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.10-Frederick.pdf +328,1868.09.01,01-Sep-68,1868,Unprovoked,Italy,Adriatic Sea,Trieste,Unknown,male,M,FATAL,Y,A. De Maddalena; Radovanovi (1965),Soldo & Jardas (2000),http://sharkattackfile.net/spreadsheets/pdf_directory/1868.09.01-Trieste.pdf +327,1868.05.13,13-May-68,1868,Unprovoked,India,Hoogly River,Ghat,Standing,male,M,"FATAL, upper left thigh, groin & buttocks severely bitten, leg surgically amputated at the hip ",Y,J. Fayrer,M.D.,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.05.13-Hindoo.pdf +326,1868.01.17,17-Jan-68,1868,Sea Disaster,Vietnam,Unknown,Cohong,A junk foundered,Unknown,M,FATAL,Y,Argus,5/26/1868,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.17-Vietnamese.pdf +325,1868.01.04.R,04-Jan-68,1868,Sea Disaster,Australia,South Australia,Belfast (now Port Fairy),Fishing,"boat, occupants: John Griffiths & Thomas Johnson",Unknown,"No injury to occupants, shark's teeth embedded in keel",N,Nelson Examiner & New Zealand Chronicle,4/3/1868,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.04.R-PortFairy.pdf 324,1868.00.00.b,"24-Oct-1888, but took place around 1868",1868,Unprovoked,Australia,Torres Strait,South Aroo Island,Swimming,15 Pindo Islanders,M,FATAL,Y,The New Era,10/24/1888,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.b-PindoIslanders.pdf 323,1868.00.00.a,1868 (?),1868,Unprovoked,New zealand,North Island,"Brickfield Bay, Auckland Harbour",Bathing close inshore,Cook,M,Thigh bitten,N,V.M. Coppleson (1958) (May refer to Thomas Cooke,see- 22-Dec-1862),http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.a-Cook.pdf -322,1867.08.22.R,22-Aug-1867,1867,Unprovoked,Egypt,Unknown,Port Said,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.22.R-PortSaid.pdf +322,1867.08.22.R,22-Aug-67,1867,Unprovoked,Egypt,Unknown,Port Said,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.22.R-PortSaid.pdf 321,1867.08.00,Aug-1867,1867,Unprovoked,Mexico,Veracruz ,Vera Cruz Harbor,boat from the Austrian ship Elizabeth,14 crewmen,M,FATAL,Y,Washington Star,12/12/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.00-ElizabethCrew.pdf -320,1867.06.26,26-Jun-1867,1867,Sea Disaster,Cuba,Villa Clara Province,Remedios,boat from ship Josephine capsized in squall,2 crew clinging to floating barrels,M,FATAL,Y,Cork Examiner,8/17/1867; Whaleman's Shipping List,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.06.26-JosephineCrewmen.pdf +320,1867.06.26,26-Jun-67,1867,Sea Disaster,Cuba,Villa Clara Province,Remedios,boat from ship Josephine capsized in squall,2 crew clinging to floating barrels,M,FATAL,Y,Cork Examiner,8/17/1867; Whaleman's Shipping List,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.06.26-JosephineCrewmen.pdf 319,1867.00.00,1867,1867,Unprovoked,Cuba,Matanzas Province (north coast),Matanzas,Painting a ship,male,M,"FATAL, pulled off float by shark, body not recovered ",Y,Washington Star,12/12/1891,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.00.00-Cuba.pdf -318,1866.04.24.R,24-Apr-1866,1866,Invalid,Australia,Western Australia,Off De Grey river,Fell overboard,Mr. Groves,M,Thought to have been taken by a shark. Body was not recovered,Y,The Argus,4/24/1866,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.04.24.R-Groves.pdf -317,1865.09.02,02-Sep-1865,1865,Unprovoked,Usa,New York,"Greenport Sound, Long Island",Swimming alongside the schooner Catherine Wilcox,Peter Johnson,M,Multiple lacerations,N,P. Bailey; J. Gaudin,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.09.02-Johnson.pdf -316,1865.07.18.R,18-Jul-1865,1865,Unprovoked,Usa,Texas,Brazos,Bathing,Col. Bryant,M,FATAL,Y,Daily Index,7/18/1865,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.07.18.R-Col-Bryant.pdf -315,1865.03.01.R,01-Mar-1865,1865,Boating,South africa,Western Cape Province,St. Helena Bay,Fishing,boat: 4 occupants,M,"FATAL: Boat capsized, sharks took fishermen",Y,South African Advertiser,3/1/1865,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.03.01.R-St-HelenaBay.pdf +318,1866.04.24.R,24-Apr-66,1866,Invalid,Australia,Western Australia,Off De Grey river,Fell overboard,Mr. Groves,M,Thought to have been taken by a shark. Body was not recovered,Y,The Argus,4/24/1866,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.04.24.R-Groves.pdf +317,1865.09.02,02-Sep-65,1865,Unprovoked,Usa,New York,"Greenport Sound, Long Island",Swimming alongside the schooner Catherine Wilcox,Peter Johnson,M,Multiple lacerations,N,P. Bailey; J. Gaudin,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.09.02-Johnson.pdf +316,1865.07.18.R,18-Jul-65,1865,Unprovoked,Usa,Texas,Brazos,Bathing,Col. Bryant,M,FATAL,Y,Daily Index,7/18/1865,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.07.18.R-Col-Bryant.pdf +315,1865.03.01.R,01-Mar-65,1865,Boating,South africa,Western Cape Province,St. Helena Bay,Fishing,boat: 4 occupants,M,"FATAL: Boat capsized, sharks took fishermen",Y,South African Advertiser,3/1/1865,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.03.01.R-St-HelenaBay.pdf 314,1865.00.00,1865,1865,Boating,Australia,South Australia,Semaphore,Boarding a ship,"R.H. Barrett, pilot holding steering oar of whaleboat",Unknown,"No injury to pilot, oar bitten",N,V.M. Coppleson (1958),p.186,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.00.00-Barrett.pdf -313,1864.09.18.R,18-Sep-1864,1864,Provoked,France,Alpes Maritime,Antibes,Dragging a shark,fisherman,M,Knee bitten PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.18.R-Antibes.pdf +313,1864.09.18.R,18-Sep-64,1864,Provoked,France,Alpes Maritime,Antibes,Dragging a shark,fisherman,M,Knee bitten PROVOKED INCIDENT,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.18.R-Antibes.pdf 312,1864.09.00,Sep-1864,1864,Unprovoked,Scotland,Edinburgh,Granton,Unknown,Mr. Ballard,M,Leg bitten 3 times,N,C. Moore citing R. Peirce,,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.00-Ballard.pdf -311,1864.08.12,12-Aug-1864,1864,Unprovoked,Usa,New York,Mahattan,Swimming,Henry Brice,M,Left thigh severely bitten,N,NY Times,8/13/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.12-Brice.pdf -310,1864.07.25,25-Jul-1864,1864,Unprovoked,Spain,Eastern Catalona,Badalona,Bathing,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.07.25-Badalona-Spain.pdf -309,1864.01.27.R,27-Jan-1864,1864,Unprovoked,Panama,Colón Province,Aspinwall (Colón),Coming ashore on a hawser,a sailor from ther RM steam packet Solent,M,FATAL,Y,Chicago Tribune,1/27/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.27.R-SailorSolent.pdf -308,1864.01.16.R,16-Jan-1864,1864,Unprovoked,New zealand,Foveaux Strait,Stewart Island,Boat swamped,male,M,FATAL,Y,Otago Witness,1/16/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.16.R-StewartsIsland.pdf -307,1864.01.02,02-Jan-1864,1864,Unprovoked,New zealand,North Island,"Brickfield Bay, Auckland Harbour",Standing / Bathing,Mr. Kelsall,M,Minor injury to hip,N,Wellington Independent,1/21/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.01-Kelsall.pdf +311,1864.08.12,12-Aug-64,1864,Unprovoked,Usa,New York,Mahattan,Swimming,Henry Brice,M,Left thigh severely bitten,N,NY Times,8/13/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.12-Brice.pdf +310,1864.07.25,25-Jul-64,1864,Unprovoked,Spain,Eastern Catalona,Badalona,Bathing,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.07.25-Badalona-Spain.pdf +309,1864.01.27.R,27-Jan-64,1864,Unprovoked,Panama,Colón Province,Aspinwall (Colón),Coming ashore on a hawser,a sailor from ther RM steam packet Solent,M,FATAL,Y,Chicago Tribune,1/27/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.27.R-SailorSolent.pdf +308,1864.01.16.R,16-Jan-64,1864,Unprovoked,New zealand,Foveaux Strait,Stewart Island,Boat swamped,male,M,FATAL,Y,Otago Witness,1/16/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.16.R-StewartsIsland.pdf +307,1864.01.02,02-Jan-64,1864,Unprovoked,New zealand,North Island,"Brickfield Bay, Auckland Harbour",Standing / Bathing,Mr. Kelsall,M,Minor injury to hip,N,Wellington Independent,1/21/1864,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.01-Kelsall.pdf 306,1864.00.00,1864,1864,Invalid,Australia,South Australia,"Corio Bay, Port Phillip",Swimming,"Mr. Warren, Jr.",M,"Presumed Fatal, but shark involvement not confirmed",Y,The Argus,11/24/1868,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.00.00-Warren.pdf -305,1863.12.14,14-Dec-1863,1863,Unprovoked,Guinea,Conakry Region,Ile de Loss,"Bathing near whaling ship (bark A. R. Tucker of New Bedford, Massachusetts)",Charles H. Petty,M,"FATAL ""Most of leg torn away . . . Buried on Island of DeLoss on the west coast of Africa""",Y,P. Purrington,Whaling Museum & Old Dartmouth Historical Society; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1863.12.14-Petty.pdf -304,1863.09.13.R,13-Sep-1863,1863,Unprovoked,Usa,South Carolina,"Stono Inlet, near Charleston, Charleston County",Bathing,male,M,Thrown into the air & bruised,N,NY Times,9/13/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.09.13.R-StonoInlet.pdf +305,1863.12.14,14-Dec-63,1863,Unprovoked,Guinea,Conakry Region,Ile de Loss,"Bathing near whaling ship (bark A. R. Tucker of New Bedford, Massachusetts)",Charles H. Petty,M,"FATAL ""Most of leg torn away . . . Buried on Island of DeLoss on the west coast of Africa""",Y,P. Purrington,Whaling Museum & Old Dartmouth Historical Society; V.M. Coppleson (1958),http://sharkattackfile.net/spreadsheets/pdf_directory/1863.12.14-Petty.pdf +304,1863.09.13.R,13-Sep-63,1863,Unprovoked,Usa,South Carolina,"Stono Inlet, near Charleston, Charleston County",Bathing,male,M,Thrown into the air & bruised,N,NY Times,9/13/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.09.13.R-StonoInlet.pdf 303,1863.04.00,Apr-1863,1863,Unprovoked,Australia,Queensland,Caloundra Heads,Launching a boat,Mr. Barnsfield,M,FATAL,Y,Brisbane Courier,6/12/1889,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.04.00-Barnsfield.pdf -302,1863.03.05,05-Mar-1863,1863,Unprovoked,Australia,Victoria,Brighton,Floating on back,William Thorn,M,Lacerations to right torso & ankle,N,Argus,3/10/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.03.05-Thorn.pdf -301,1863.02.05,05-Feb-1863,1863,Invalid,South africa,KwaZulu-Natal,"Back Beach, Durban","Swimming, caught in strong backwash & disappeared",Mr. J. Canham,M,Shark caught 9 days later contained human remains thought to be those of Canham,Y,M. Levine,GSAF; Times of Natal,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.02.05-Canham.pdf -300,1863.01.10,10-Jan-1863,1863,Unprovoked,Australia,New South Wales,"""Bellynahinch"" on the Manning River",Bathing,James Brown,M,FATAL,Y,G.P. Whitley,p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.01.10-Brown.pdf +302,1863.03.05,05-Mar-63,1863,Unprovoked,Australia,Victoria,Brighton,Floating on back,William Thorn,M,Lacerations to right torso & ankle,N,Argus,3/10/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.03.05-Thorn.pdf +301,1863.02.05,05-Feb-63,1863,Invalid,South africa,KwaZulu-Natal,"Back Beach, Durban","Swimming, caught in strong backwash & disappeared",Mr. J. Canham,M,Shark caught 9 days later contained human remains thought to be those of Canham,Y,M. Levine,GSAF; Times of Natal,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.02.05-Canham.pdf +300,1863.01.10,10-Jan-63,1863,Unprovoked,Australia,New South Wales,"""Bellynahinch"" on the Manning River",Bathing,James Brown,M,FATAL,Y,G.P. Whitley,p.259,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.01.10-Brown.pdf 299,1863.00.00.R,1863,1863,Unprovoked,Greece,Corfu,Unknown,Swimming,male,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R-Corfu -298,1862.12.22,22-Dec-1862,1862,Unprovoked,New zealand,North Island,"Soldier's Point, Brick Bay, Auckland",Swimming,Thomas Cooke,M,Right thigh and left foot severely bitten,N,V.M. Coppleson (1962),p.247,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.22-Cooke.pdf -297,1862.12.19.R,19-Dec-1862,1862,Unprovoked,Australia,Queensland,Brisbane River,Trying to catch a wounded bird,male,M,FATAL,Y,Courier,12/19/1862,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.19.R-Boy-Brisbane.pdf -296,1862.12.04,04-Dec-1862,1862,Invalid,New zealand,South Island,Lyttleton?,Unknown,Unknown,Unknown,Unknown,UNKNOWN,Bendigo Advertiser,1/3/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf -295,1862.08.15.R,15-Aug-1862,1862,Unprovoked,Spain,Unknown,A Spanish port,Bathing,The widowed Marchioness of Lendinez,F,Survived,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.15.R-Lendinez.pdf -294,1862.08.02.R,02-Aug-1862,1862,Invalid,Spain,Malaga,Fuengirola,Unknown,male,M,Possible drowning and scavenging,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.02.R-Fuengirola.pdf -293,1862.07.25,25-Jul-1862,1862,Unprovoked,Spain,Malaga,San Andres Beach,Swimming,Joaquin Rosales Martinez,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.25-Martinez.pdf -292,1862.07.14,14-Jul-1862,1862,Unprovoked,Spain,Cádiz,Off Algeciras,Unknown,male,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.14-Algeciras.pdf -291,1862.07.13,13-Jul-1862,1862,Unprovoked,Spain,Cádiz,Off Algeciras,Swimming alongside the SS Kearsarge,Tibbetts,M,FATAL,Y,C. Moore; W.H. Bedlam,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.13-Tibbetts.pdf -290,1862.06.03,03-Jun-1862,1862,Unprovoked,South africa,KwaZulu-Natal,Durban Harbor,Unknown,male,M,"""Very severe wounds""",N,Cape Argus,6/10/1862; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.06.03-male_Durban_Harbour.pdf -289,1862.05.05,05-May-1862,1862,Unprovoked,South africa,KwaZulu-Natal,Durban,Bathing,Mr. Cummings,M,Lacerations,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.05.05-Cummings.pdf +298,1862.12.22,22-Dec-62,1862,Unprovoked,New zealand,North Island,"Soldier's Point, Brick Bay, Auckland",Swimming,Thomas Cooke,M,Right thigh and left foot severely bitten,N,V.M. Coppleson (1962),p.247,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.22-Cooke.pdf +297,1862.12.19.R,19-Dec-62,1862,Unprovoked,Australia,Queensland,Brisbane River,Trying to catch a wounded bird,male,M,FATAL,Y,Courier,12/19/1862,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.19.R-Boy-Brisbane.pdf +296,1862.12.04,04-Dec-62,1862,Invalid,New zealand,South Island,Lyttleton?,Unknown,Unknown,Unknown,Unknown,UNKNOWN,Bendigo Advertiser,1/3/1863,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf +295,1862.08.15.R,15-Aug-62,1862,Unprovoked,Spain,Unknown,A Spanish port,Bathing,The widowed Marchioness of Lendinez,F,Survived,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.15.R-Lendinez.pdf +294,1862.08.02.R,02-Aug-62,1862,Invalid,Spain,Malaga,Fuengirola,Unknown,male,M,Possible drowning and scavenging,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.02.R-Fuengirola.pdf +293,1862.07.25,25-Jul-62,1862,Unprovoked,Spain,Malaga,San Andres Beach,Swimming,Joaquin Rosales Martinez,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.25-Martinez.pdf +292,1862.07.14,14-Jul-62,1862,Unprovoked,Spain,Cádiz,Off Algeciras,Unknown,male,M,FATAL,Y,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.14-Algeciras.pdf +291,1862.07.13,13-Jul-62,1862,Unprovoked,Spain,Cádiz,Off Algeciras,Swimming alongside the SS Kearsarge,Tibbetts,M,FATAL,Y,C. Moore; W.H. Bedlam,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.13-Tibbetts.pdf +290,1862.06.03,03-Jun-62,1862,Unprovoked,South africa,KwaZulu-Natal,Durban Harbor,Unknown,male,M,"""Very severe wounds""",N,Cape Argus,6/10/1862; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.06.03-male_Durban_Harbour.pdf +289,1862.05.05,05-May-62,1862,Unprovoked,South africa,KwaZulu-Natal,Durban,Bathing,Mr. Cummings,M,Lacerations,N,M. Levine,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.05.05-Cummings.pdf 288,1862.00.00.b,Circa 1862,1862,Unprovoked,Usa,Hawaii,Puna,Unknown,A chiefess,F,Ankle bitten,N,Captain W. Young,,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.b-Hawaii.pdf 287,1862.00.00.a,1862,1862,Unprovoked,Japan,Bonin Islands,Unknown,Boat of a Hawaiian brig was stove in by whale,boat crew,M,FATAL,Y,Otago Witness,10/28/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.a-BoninIslands.pdf -286,1861.11.10,10-Nov-1861,1861,Unprovoked,Unknown,Unknown,Unknown,Bathing alongside the American ship Thomas W. Sears,crew,M,FATAL,Y,The Argus,11/15/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.11.10-Singapore.pdf -285,1861.09.25.R,25-Sep-1861,1861,Unprovoked,Cuba,Unknown,60 miles off Trinidad de Cuba,Deserting the bark Nazarene,Caughlin (A.K.A. James Dilano),M,Lacerations,N,New York Times,10/5/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.09.25.R-deserter.pdf +286,1861.11.10,10-Nov-61,1861,Unprovoked,Unknown,Unknown,Unknown,Bathing alongside the American ship Thomas W. Sears,crew,M,FATAL,Y,The Argus,11/15/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.11.10-Singapore.pdf +285,1861.09.25.R,25-Sep-61,1861,Unprovoked,Cuba,Unknown,60 miles off Trinidad de Cuba,Deserting the bark Nazarene,Caughlin (A.K.A. James Dilano),M,Lacerations,N,New York Times,10/5/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.09.25.R-deserter.pdf 284,1861.03.00,Mar-1861,1861,Unprovoked,New zealand,North Island,"Wynyard Wharf, Auckland Harbor",Bathing,a soldier,M,"""Severely bitten but recovered""",N,P. Tichener,,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.03.00-soldier.pdf -283,1861.02.12.R,12-Feb-1861,1861,Unprovoked,Equatorial guinea / cameroon,Fernando Po Island,Unknown,Swimming,William Looney,M,FATAL,Y,Daily Southern Cross,2/12/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.02.12.R-Looney.pdf -282,1861.01.15.R,15-Jan-1861,1861,Unprovoked,Australia,Queensland,Cleveland,Bathing,Dr. Lucas,M,Lacerations to fingers,N,Moreton Bay Courier,1/15/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.01.15.R-Lucas.pdf -281,1860.12.26,26-Dec-1860,1860,Unprovoked,Australia,New South Wales,"The Domain, Sydney",Bathing,Unknown,M,Lacerations to leg,N,The Argus,12/31/1860,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.12.26-TheDomain-Sydney.pdf -280,1860.08.01,01-Aug-1860,1860,Unprovoked,Usa,New York,Brooklyn,Swimming,Jerry Duke,M,Toe severed,N,New York Times,8/3/1860; Brooklyn News,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.08.01-JerryDuke.pdf +283,1861.02.12.R,12-Feb-61,1861,Unprovoked,Equatorial guinea / cameroon,Fernando Po Island,Unknown,Swimming,William Looney,M,FATAL,Y,Daily Southern Cross,2/12/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.02.12.R-Looney.pdf +282,1861.01.15.R,15-Jan-61,1861,Unprovoked,Australia,Queensland,Cleveland,Bathing,Dr. Lucas,M,Lacerations to fingers,N,Moreton Bay Courier,1/15/1861,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.01.15.R-Lucas.pdf +281,1860.12.26,26-Dec-60,1860,Unprovoked,Australia,New South Wales,"The Domain, Sydney",Bathing,Unknown,M,Lacerations to leg,N,The Argus,12/31/1860,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.12.26-TheDomain-Sydney.pdf +280,1860.08.01,01-Aug-60,1860,Unprovoked,Usa,New York,Brooklyn,Swimming,Jerry Duke,M,Toe severed,N,New York Times,8/3/1860; Brooklyn News,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.08.01-JerryDuke.pdf 279,1860.04.00.b,Apr-1860,1860,Unprovoked,New zealand,North Island,"Princes Wharf, Auckland Harbor",Swimming,H. Cook,M,"Leg bitten, surgically amputated",N,P.Tichener,,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.b-Cook.pdf 278,1860.04.00.a,Apr-1860,1860,Unprovoked,New zealand,North Island,"St. George's Bay, Auckland Harbor",Bathing,H. Bradley,M,FATAL Foot & leg bitten,Y,P. Tichener,,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.a-Bradley.pdf -277,1860.03.27,27-Mar-1860,1860,Sea Disaster,Cook islands,Mangaia Island,Unknown,43-ton schooner Irene capsized & sank,a Cook's Islander,M,Probable drowning ,Y,Brisbane Courier,8/1/1866,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.27-Clark'sIslander.pdf -276,1860.03.11,11-Mar-1860,1860,Unprovoked,Bahamas,New Providence Island,Nassau,"In boat being towed by ship, Karnak",a pilot,M,FATAL,Y,New York Times,3/26/1860,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.11-KarnakPilot.pdf -275,1859.03.16,16-Mar-1859,1859,Unprovoked,Usa,Hawaii,Off Kawaihae,Fell overboard,J.G. Luther,M,FATAL,Y,Pacific Commercial Advertiser,3/24/1850,http://sharkattackfile.net/spreadsheets/pdf_directory/1859.03.16-Luther.pdf -274,1858.08.31,31-Aug-1858,1858,Invalid,Usa,New York ,"Staten Island, Richmond County",Swimming,male,M,Thought to have been taken by a shark/s. Body not recovered,Y,Weekly Hawk Eye And Telegraph,9/7/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.31-StatenIsland.pdf -273,1858.08.29,29-Aug-1858,1858,Invalid,Usa,New York ,"Staten Island, Richmond County",Swimming,3 males,M,Thought to have been taken by a shark/s. Bodies not recovered,Y,Weekly Hawk Eye And Telegraph,9/7/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.29-StatenIsland.pdf -272,1858.03.14,14-Mar-1858,1858,Unprovoked,Australia,Victoria,Hobson Bay,Bathing,Adolphe Bollander,M,FATAL,Y,Moreton Bay Courier,3/31/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.03.14-Bollander.pdf -271,1858.01.09.R,09-Jan-1858,1858,Unprovoked,Tonga,Vava'u,Unknown,Jumped overboard while intoxicated,crewman from the Shepherdess,M,FATAL,Y,Sydney Morning Herald,1/9/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.09.R-Tonga.pdf -270,1856.11.30,30-Nov-1856,1856,Unprovoked,Unknown,Unknown,Unknown,Unknown,Cornelius Conhlren,M,FATAL,Y,Hartford Daily Courant,1/29/1857,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.30-Conhlren.pdf -269,1856.11.25.R,25-Nov-1856,1856,Unprovoked,Unknown,Unknown,Unknown,Swimming,a seaman,M,FATAL,Y,The Argus,11/25/1856,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.25.R-Fiji.pdf -268,1856.06.21.R,21-Jun-1856,1856,Unprovoked,England,Isle of Wight,Colwell Bay,Swimming,male,M,Survived,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.06.21.R-Isle-of-Wight.pdf -267,1856.02.06,06-Feb-1856,1856,Unprovoked,Australia,Victoria,Point Henry,Swimming,a seaman from the John and Lucy,M,Severe bite to thigh. Not known if he survived,UNKNOWN,The Argus,2/8/1856,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.02.06-Point-Henry.pdf -266,1855.11.11,11-Nov-1855,1855,Unprovoked,Australia,Victoria,Melbourne,Swimming,a seaman from the whaling brig Curlew,M,FATAL,Y,Maitland Mercury,11/14/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.11.11-Curlew-seaman.pdf -265,1855.09.30,30-Sep-1855,1855,Sea Disaster,Usa,North Carolina,Cape Hatteras,ship William Penn grounded & broke apart,sailor,M,Foot bitten,N,NY Times,10/12/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.09.30-WilliamPenn.pdf -264,1855.07.28,28-Jul-1855,1855,Unprovoked,Unknown,Unknown,Unknown,Bathing,"a young boy, one of the crew of the Post Boy",M,FATAL,Y,Maitland Mercury,8/25/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.07.28-PostBoy-sailors.pdf -263,1855.04.09.R,09-Apr-1855,1855,Unprovoked,Australia,South Australia,Port Wakefield,Fell overboard from the Malacca,child,F,FATAL,Y,The Argus,4/9/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.04.09.R-Malacca-child.pdf -262,1855.03.28,28-Mar-1855,1855,Unprovoked,Australia,South Australia,Port Wakefield,Fell overboard from the Sobella,Master Coleman,M,FATAL,Y,The Register,4/20/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.03.28-Coleman.pdf -261,1855.02.12.R,12-Feb-1855,1855,Unprovoked,Solomon islands,Makira-Ulawa Province,Makira Island (Formerly San Cristobal),Swimming ,male,M,FATAL,Y,The Hobarton Mercury,2/12/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.02.12.R-Native.pdf +277,1860.03.27,27-Mar-60,1860,Sea Disaster,Cook islands,Mangaia Island,Unknown,43-ton schooner Irene capsized & sank,a Cook's Islander,M,Probable drowning ,Y,Brisbane Courier,8/1/1866,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.27-Clark'sIslander.pdf +276,1860.03.11,11-Mar-60,1860,Unprovoked,Bahamas,New Providence Island,Nassau,"In boat being towed by ship, Karnak",a pilot,M,FATAL,Y,New York Times,3/26/1860,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.11-KarnakPilot.pdf +275,1859.03.16,16-Mar-59,1859,Unprovoked,Usa,Hawaii,Off Kawaihae,Fell overboard,J.G. Luther,M,FATAL,Y,Pacific Commercial Advertiser,3/24/1850,http://sharkattackfile.net/spreadsheets/pdf_directory/1859.03.16-Luther.pdf +274,1858.08.31,31-Aug-58,1858,Invalid,Usa,New York ,"Staten Island, Richmond County",Swimming,male,M,Thought to have been taken by a shark/s. Body not recovered,Y,Weekly Hawk Eye And Telegraph,9/7/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.31-StatenIsland.pdf +273,1858.08.29,29-Aug-58,1858,Invalid,Usa,New York ,"Staten Island, Richmond County",Swimming,3 males,M,Thought to have been taken by a shark/s. Bodies not recovered,Y,Weekly Hawk Eye And Telegraph,9/7/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.29-StatenIsland.pdf +272,1858.03.14,14-Mar-58,1858,Unprovoked,Australia,Victoria,Hobson Bay,Bathing,Adolphe Bollander,M,FATAL,Y,Moreton Bay Courier,3/31/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.03.14-Bollander.pdf +271,1858.01.09.R,09-Jan-58,1858,Unprovoked,Tonga,Vava'u,Unknown,Jumped overboard while intoxicated,crewman from the Shepherdess,M,FATAL,Y,Sydney Morning Herald,1/9/1858,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.09.R-Tonga.pdf +270,1856.11.30,30-Nov-56,1856,Unprovoked,Unknown,Unknown,Unknown,Unknown,Cornelius Conhlren,M,FATAL,Y,Hartford Daily Courant,1/29/1857,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.30-Conhlren.pdf +269,1856.11.25.R,25-Nov-56,1856,Unprovoked,Unknown,Unknown,Unknown,Swimming,a seaman,M,FATAL,Y,The Argus,11/25/1856,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.25.R-Fiji.pdf +268,1856.06.21.R,21-Jun-56,1856,Unprovoked,England,Isle of Wight,Colwell Bay,Swimming,male,M,Survived,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.06.21.R-Isle-of-Wight.pdf +267,1856.02.06,06-Feb-56,1856,Unprovoked,Australia,Victoria,Point Henry,Swimming,a seaman from the John and Lucy,M,Severe bite to thigh. Not known if he survived,UNKNOWN,The Argus,2/8/1856,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.02.06-Point-Henry.pdf +266,1855.11.11,11-Nov-55,1855,Unprovoked,Australia,Victoria,Melbourne,Swimming,a seaman from the whaling brig Curlew,M,FATAL,Y,Maitland Mercury,11/14/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.11.11-Curlew-seaman.pdf +265,1855.09.30,30-Sep-55,1855,Sea Disaster,Usa,North Carolina,Cape Hatteras,ship William Penn grounded & broke apart,sailor,M,Foot bitten,N,NY Times,10/12/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.09.30-WilliamPenn.pdf +264,1855.07.28,28-Jul-55,1855,Unprovoked,Unknown,Unknown,Unknown,Bathing,"a young boy, one of the crew of the Post Boy",M,FATAL,Y,Maitland Mercury,8/25/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.07.28-PostBoy-sailors.pdf +263,1855.04.09.R,09-Apr-55,1855,Unprovoked,Australia,South Australia,Port Wakefield,Fell overboard from the Malacca,child,F,FATAL,Y,The Argus,4/9/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.04.09.R-Malacca-child.pdf +262,1855.03.28,28-Mar-55,1855,Unprovoked,Australia,South Australia,Port Wakefield,Fell overboard from the Sobella,Master Coleman,M,FATAL,Y,The Register,4/20/1926,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.03.28-Coleman.pdf +261,1855.02.12.R,12-Feb-55,1855,Unprovoked,Solomon islands,Makira-Ulawa Province,Makira Island (Formerly San Cristobal),Swimming ,male,M,FATAL,Y,The Hobarton Mercury,2/12/1855,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.02.12.R-Native.pdf 260,1855.00.00,Circa 1855,1855,Invalid,Australia,New South Wales,Sydney Harbor,Swimming ,C.T. Clark,M,"No injury & although reported as an attack, it was simply an encounter",N,Brighton Southern Cross,2/13/1915,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.00.00-Clark.pdf -259,1854.04.08.R,08-Apr-1854,1854,Unprovoked,Greece,Corfu ,Unknown,Swimming,Hanson,M,Leg severed at knee,N,South Australian Register,5/8/1854,http://sharkattackfile.net/spreadsheets/pdf_directory/1854.04.08.R-Hanson.pdf -258,1853.11.08,08-Nov-1853,1853,Unprovoked,Australia,New South Wales,Unknown,Swimming,John Peters,M,Leg bitten,N,Maitland Mercury,11/19/1853,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.11.08-Peters.pdf +259,1854.04.08.R,08-Apr-54,1854,Unprovoked,Greece,Corfu ,Unknown,Swimming,Hanson,M,Leg severed at knee,N,South Australian Register,5/8/1854,http://sharkattackfile.net/spreadsheets/pdf_directory/1854.04.08.R-Hanson.pdf +258,1853.11.08,08-Nov-53,1853,Unprovoked,Australia,New South Wales,Unknown,Swimming,John Peters,M,Leg bitten,N,Maitland Mercury,11/19/1853,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.11.08-Peters.pdf 257,1853.09.28,28-Sept-1853,1853,Unprovoked,Usa,North Carolina,"Morehead, Carteret County",Commercial Salvage Diving,Alfetto,M,No injury. Copper breastplate & harness bitten,N,C. Creswell,GSAF; Washington Post,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.09.28-Alfetto.pdf -256,1853.07.13.R,13-Jul-1853,1853,Unprovoked,Usa,South Carolina,"Charleston Harbor, Charleston County",Swimming,male,M,FATAL,Y,Democratic Banner 8/5/1853,,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.07.13.R-Charleston.pdf +256,1853.07.13.R,13-Jul-53,1853,Unprovoked,Usa,South Carolina,"Charleston Harbor, Charleston County",Swimming,male,M,FATAL,Y,Democratic Banner 8/5/1853,,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.07.13.R-Charleston.pdf 255,1853.00.00.d,1853,1853,Unprovoked,Australia,Queensland,Moreton Bay,Fell into the water,"James Hexton, pilot",M,FATAL,Y,Brisbane Courier,1/28/1909,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.d-Hexton.pdf 254,1853.00.00.c,Sep or Oct-1853,1853,Unprovoked,Usa,North Carolina,"Morehead, Carteret County",Hard hat diving,Mark Dare,M,"No injury, copper breastplate punctured",N,Fort Wayne Gazette,1/24/1897,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.c-MarkDare.pdf 253,1853.00.00.b,1853,1853,Invalid,Usa,South Carolina,Off the Battery,He was fighting a shark when his boat capsized & he disappeared,a young man,M, His gold watch was later found in a shark but death may have been due to drowning,Y,W. H. Gregg,p.21 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.b-battery.pdf 252,1853.00.00.a,1853 or 1854,1853,Unprovoked,Usa,Florida,"Near Fernandina Bar, Nassau County ",Knocked overboard,Captain George Jacob Hanscheldt,M,FATAL,Y,W. H. Gregg,p.22 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.a-Hanscheldt.pdf -251,1852.12.19,19-Dec-1852,1852,Invalid,Australia,New South Wales,"Clark's Island, Sydney Harbor",Swimming,Edward Graham,M,Shark involvement prior to death was not confirmed,Y,Maitland Mercury & Hunter River General Advertiser,12/25/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.12.19-Graham.pdf -250,1852.10.23.R,23-Oct-1852,1852,Provoked,Pacific ocean,Between Australia & USA,Unknown,Fishing,William Stannard,M,Foot bitten by hooked shark PROVOKED INCIDENT,N,Maitland Mercury,10/23/1852,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.23.R-Stannard.pdf -249,1852.10.09.R,09-Oct-1852,1852,Unprovoked,Australia,New South Wales,Coalcliff,Fell overboard,James Rogers,M,FATAL,Y,Maitland Mercury,10/09/1852,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.09.R-Rogers.pdf -248,1852.08.07,07-Aug-1852,1852,Unprovoked,Tonga,Tongatapu,Unknown,Fell overboard,Charles Weymouth,M,FATAL,Y,Courier,1/3/1853,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.07-Weymouth.pdf +251,1852.12.19,19-Dec-52,1852,Invalid,Australia,New South Wales,"Clark's Island, Sydney Harbor",Swimming,Edward Graham,M,Shark involvement prior to death was not confirmed,Y,Maitland Mercury & Hunter River General Advertiser,12/25/1952,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.12.19-Graham.pdf +250,1852.10.23.R,23-Oct-52,1852,Provoked,Pacific ocean,Between Australia & USA,Unknown,Fishing,William Stannard,M,Foot bitten by hooked shark PROVOKED INCIDENT,N,Maitland Mercury,10/23/1852,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.23.R-Stannard.pdf +249,1852.10.09.R,09-Oct-52,1852,Unprovoked,Australia,New South Wales,Coalcliff,Fell overboard,James Rogers,M,FATAL,Y,Maitland Mercury,10/09/1852,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.09.R-Rogers.pdf +248,1852.08.07,07-Aug-52,1852,Unprovoked,Tonga,Tongatapu,Unknown,Fell overboard,Charles Weymouth,M,FATAL,Y,Courier,1/3/1853,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.07-Weymouth.pdf 247,1852.08.00,Aug-1852,1852,Unprovoked,Usa,Virginia,Norfolk,Swimming,a deserter from the U.S. Pennsylvania,M,FATAL,Y,Dixon Telegraph,8/14/1852,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.00-Sailor.pdf 246,1852.07.28,28-Jul-52,1852,Invalid,Unknown,Unknown,Unknown,Unknown,Karen Bredesen Stræte ,F,Death preceded shark involvement,Y,Norway Heritage,,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.07.28-Karen.pdf -245,1852.05.24,24-May-1852,1852,Unprovoked,South africa,KwaZulu-Natal,Durban Bay,Swimming from capsized boat,Mr. Messum's servant,M,FATAL,Y,M. Levine,GSAF; Natal Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.05.24-Messum-servant.pdf -244,1852.02.26,26-Feb-1852,1852,Sea Disaster,South africa,Western Cape Province,Danger Point,Wreck of the steamship Birkenhead,Unknown,M,"FATAL. All of the women & children on board survived, but many of the 445 men that perished were taken by sharks",Y,D. Davies,pp.182-184; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.02.26-Birkenhead.pdf +245,1852.05.24,24-May-52,1852,Unprovoked,South africa,KwaZulu-Natal,Durban Bay,Swimming from capsized boat,Mr. Messum's servant,M,FATAL,Y,M. Levine,GSAF; Natal Times,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.05.24-Messum-servant.pdf +244,1852.02.26,26-Feb-52,1852,Sea Disaster,South africa,Western Cape Province,Danger Point,Wreck of the steamship Birkenhead,Unknown,M,"FATAL. All of the women & children on board survived, but many of the 445 men that perished were taken by sharks",Y,D. Davies,pp.182-184; M. Levine,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.02.26-Birkenhead.pdf 243,1852.01.22,"""Anniversary Day"" 22-Jan-1850 or 1852",1852,Unprovoked,New zealand,North Island,Wellington Harbor,Swimming,"Johnny Balmer, a soldier from the 65th Regiment",M,"FATAL, posterior thigh bared to femur, kneecap lacerated ",Y,Ref: H. Blake,Sixty Years in New Zealand,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.01.22-Balmer.pdf 242,1852.00.00,1852,1852,Unprovoked,Usa,South Carolina,"Mount Pleasant, Charleston County","Vessel capsized, wading ashore carrying an oar",Charles Chambers,M,"FATAL, body was not recovered",Y,W. H. Gregg,p. 21,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.00.00-Chambers.pdf -241,1851.06.19.R,19-Jun-1851,1851,Unprovoked,Mexico,Oaxaca,Unknown,Bathing,John Gray & another member of the Tehuantepec surveying party,M,FATAL,Y,Burlington Hawk-Eye,6/19/1851,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.06.19.R-JohnGray.pdf +241,1851.06.19.R,19-Jun-51,1851,Unprovoked,Mexico,Oaxaca,Unknown,Bathing,John Gray & another member of the Tehuantepec surveying party,M,FATAL,Y,Burlington Hawk-Eye,6/19/1851,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.06.19.R-JohnGray.pdf 240,1851.03.08.R,Mar-1851,1851,Unprovoked,Usa,Hawaii,Honolulu Harbor,Swimming,James Kinney,M,FATAL,Y,The Friend (Honolulu),3/8/1851,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.03.08.R-Kinney.pdf 239,1851.00.00,1851,1851,Unprovoked,Usa,California,"San Francisco Bay (or San Leandro Bay), near cannery, Alameda County",Hard hat diving,William Cortigan,M,3 toes severed,N,The Perry Chief,10/16/1875,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.00.00-Cortigan.pdf 238,1850.00.00,1850,1850,Unprovoked,Nicaragua,Lake Nicaragua (fresh water),"Granada, Granada Department",Bathing,Unknown,M,FATAL,Y,E. Squier,1852,http://sharkattackfile.net/spreadsheets/pdf_directory/1850.00.00-LakeNicaragua.pdf -237,1849.12.09,09-Dec-1849,1849,Unprovoked,Australia,New South Wales,Sydney Harbor,Unknown,male,M,FATAL,Y,T.H. Huxley's Diary,1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.09-SydneyHarbour.pdf -236,1849.12.01,01-Dec-1849,1849,Unprovoked,Australia,New South Wales,"Woolloomooloo, Sydney Harbor (Estuary)",Bathing,a sailor from the steamship Eagle,M,FATAL,Y,Moreton Bay Courier,12/15/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.01-Sailor.pdf -235,1849.09.19,19-Sep-1849,1849,Unprovoked,Australia,Victoria,Warrnambool,Swimming,a sailor from the schooner Brother,M,FATAL,Y,Maitland Mercury & Hunter River General Advertiser,10/10/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.09.19-Brother-seaman.pdf -234,1849.06.08.b,08-Jun-1849,1849,Unprovoked,Usa,Florida,"Pensacola, Escambia County",Attempting to rescue woman seized by shark,Mr. Mansfield,M,FATAL,Y,Adams Sentinel,8/6/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.b-Mansfield.pdf -233,1849.06.08.a,08-Jun-1849,1849,Unprovoked,Usa,Florida,"Pensacola, Escambia County",Bathing,Mrs. Cracton,F,FATAL,Y,Adams Sentinel,8/6/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.a-Cracton.pdf -232,1849.01.27,27-Jan-1849,1849,Invalid,Australia,New South Wales,Sydney,boat capsized,William Henry Elliott,M,Torso bitten but may have been postmorem,Y,Maitland Mercury,2/3/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.01.27-Elliot.pdf -231,1848.08.31,31-Aug-1848,1848,Unprovoked,Usa,Maryland,Patapsco River,Swimming,male,M,Left leg severely bitten,N,Adams Sentinel,9/4/1848,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.08.31-PatapscoRiver.pdf +237,1849.12.09,09-Dec-49,1849,Unprovoked,Australia,New South Wales,Sydney Harbor,Unknown,male,M,FATAL,Y,T.H. Huxley's Diary,1935,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.09-SydneyHarbour.pdf +236,1849.12.01,01-Dec-49,1849,Unprovoked,Australia,New South Wales,"Woolloomooloo, Sydney Harbor (Estuary)",Bathing,a sailor from the steamship Eagle,M,FATAL,Y,Moreton Bay Courier,12/15/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.01-Sailor.pdf +235,1849.09.19,19-Sep-49,1849,Unprovoked,Australia,Victoria,Warrnambool,Swimming,a sailor from the schooner Brother,M,FATAL,Y,Maitland Mercury & Hunter River General Advertiser,10/10/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.09.19-Brother-seaman.pdf +234,1849.06.08.b,08-Jun-49,1849,Unprovoked,Usa,Florida,"Pensacola, Escambia County",Attempting to rescue woman seized by shark,Mr. Mansfield,M,FATAL,Y,Adams Sentinel,8/6/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.b-Mansfield.pdf +233,1849.06.08.a,08-Jun-49,1849,Unprovoked,Usa,Florida,"Pensacola, Escambia County",Bathing,Mrs. Cracton,F,FATAL,Y,Adams Sentinel,8/6/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.a-Cracton.pdf +232,1849.01.27,27-Jan-49,1849,Invalid,Australia,New South Wales,Sydney,boat capsized,William Henry Elliott,M,Torso bitten but may have been postmorem,Y,Maitland Mercury,2/3/1849,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.01.27-Elliot.pdf +231,1848.08.31,31-Aug-48,1848,Unprovoked,Usa,Maryland,Patapsco River,Swimming,male,M,Left leg severely bitten,N,Adams Sentinel,9/4/1848,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.08.31-PatapscoRiver.pdf 230,1848.07.00,Jul-1848,1848,Unprovoked,England,Norfolk,Hunstanton,Standing,male,M,Shark struck him with its tail,N,C. Moore,citing R. Peirce,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.07.00-Hunstanton.pdf -229,1847.11.30,30-Nov-1847,1847,Unprovoked,Australia,Queensland,Brisbane River,Swimming,James Stewart,M,Thigh & calf bitten,N,Moreton Bay Courier,12.4/1847,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.11.30-Stewart.pdf -228,1847.07.19,19-Jul-1847,1847,Unprovoked,Greece,Corfu,Off the harbor wall at Mandrakina,Swimming,"William Mills, a British solider, 36th Regiment",M,FATAL,Y,I. Fergusson; A. Buttigieg; M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.19-Mills.pdf -227,1847.03.11,11-Mar-1847,1847,Sea Disaster,Australia,Queensland,Moreton Bay,Wreck of the Sovereign,Spicer,M,Foot severed,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.03.11-Spicer.pdf +229,1847.11.30,30-Nov-47,1847,Unprovoked,Australia,Queensland,Brisbane River,Swimming,James Stewart,M,Thigh & calf bitten,N,Moreton Bay Courier,12.4/1847,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.11.30-Stewart.pdf +228,1847.07.19,19-Jul-47,1847,Unprovoked,Greece,Corfu,Off the harbor wall at Mandrakina,Swimming,"William Mills, a British solider, 36th Regiment",M,FATAL,Y,I. Fergusson; A. Buttigieg; M. Bardanis,,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.19-Mills.pdf +227,1847.03.11,11-Mar-47,1847,Sea Disaster,Australia,Queensland,Moreton Bay,Wreck of the Sovereign,Spicer,M,Foot severed,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.03.11-Spicer.pdf 226,1847.00.00.c,in 1847,1847,Unprovoked,Australia,Queensland,Moreton Bay,Unknown,a native,Unknown,Foot severed at ankle joint,N,Narrative of the Voyage of HMS Rattlesnake 1846-1850,,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.c-HMS-Rattlesnake.pdf 225,1847.00.00.b,1847,1847,Invalid,Usa,South Carolina,"Charleston Harbor, Charleston County",Swimming,a young sailor,M,"Disappeared, thought to have been taken by a shark",Y,W.H. Gregg,pp. 21-22,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.b-sailor.pdf 224,1847.00.00.a,Ca. 1847,1847,Unprovoked,Usa,South Carolina,Unknown,Boating,adult,M,Hand severed,N,W.H. Greg,p.21,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.a-SouthCarolina.pdf -223,1846.12.08,08-Dec-1846,1846,Sea Disaster,Mexico,Veracruz,Vera Cruz,Wreck of the USS Somers,Unknown,M,"FATAL, some were taken by sharks",Y,Report of the loss of the Somers,J.H.W.,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.12.08-Somers.pdf -222,1845.12.26,26-Dec-1845,1845,Unprovoked,Australia,New South Wales,Newcastle ,Fishing,John Williams,M,FATAL,Y,The Maitland Mercury & Hunter River General Advertiser 11/18/1893,,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.12.26-Williams.pdf -221,1845.09.16.R,16-Sep-1845,1845,Unprovoked,Unknown,Unknown,Unknown,Unknown,a school teacher,M,Leg severed,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.16.R-England.pdf -220,1845.09.10.R,10-Sep-1845,1845,Unprovoked,Usa,Florida,"Pensacola Bay, Escambia County",Seine netting,Nickerson,M,FATAL,Y,Tioga Eagle,9/10/1845,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.10.R-Nickerson.pdf +223,1846.12.08,08-Dec-46,1846,Sea Disaster,Mexico,Veracruz,Vera Cruz,Wreck of the USS Somers,Unknown,M,"FATAL, some were taken by sharks",Y,Report of the loss of the Somers,J.H.W.,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.12.08-Somers.pdf +222,1845.12.26,26-Dec-45,1845,Unprovoked,Australia,New South Wales,Newcastle ,Fishing,John Williams,M,FATAL,Y,The Maitland Mercury & Hunter River General Advertiser 11/18/1893,,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.12.26-Williams.pdf +221,1845.09.16.R,16-Sep-45,1845,Unprovoked,Unknown,Unknown,Unknown,Unknown,a school teacher,M,Leg severed,N,C. Moore,,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.16.R-England.pdf +220,1845.09.10.R,10-Sep-45,1845,Unprovoked,Usa,Florida,"Pensacola Bay, Escambia County",Seine netting,Nickerson,M,FATAL,Y,Tioga Eagle,9/10/1845,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.10.R-Nickerson.pdf 219,1845.00.00.R,1845,1845,Unprovoked,Unknown,Unknown,Unknown,Unknown,"""The Queen's Chaplain""",M,FATAL,Y,Journal of an African Cruiser,,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.00.00.R-SierraLeone.pdf -218,1844.07.20.,20-Jul-1844,1844,Unprovoked,Unknown,Unknown,Unknown,Boat capsized,a seaman from HMS Isis,M,FATAL,Y,Colonial Times,5/24/1845,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.20-Isis-seaman.pdf +218,1844.07.20.,20-Jul-44,1844,Unprovoked,Unknown,Unknown,Unknown,Boat capsized,a seaman from HMS Isis,M,FATAL,Y,Colonial Times,5/24/1845,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.20-Isis-seaman.pdf 217,1844.07.16.R,1844.07.16.R,1844,Unprovoked,Algeria,Unknown,Cape Matifou,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.16.R-Algeria.pdf -216,1844.05.24,24-May-1844,1844,Unprovoked,Coast of africa,Island of St. Thomas,Unknown,Fell overboard,"Martin, coxswain of the USS Saratoga",M,"FATAL, taken immediately by a shark ",Y,Tioga Eagle,7/31/1844 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.05.24-Saratoga.pdf +216,1844.05.24,24-May-44,1844,Unprovoked,Coast of africa,Island of St. Thomas,Unknown,Fell overboard,"Martin, coxswain of the USS Saratoga",M,"FATAL, taken immediately by a shark ",Y,Tioga Eagle,7/31/1844 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.05.24-Saratoga.pdf 215,1844.00.00,1844,1844,Unprovoked,Unknown,Unknown,Unknown,"Portuguese seaman fell overboard. Boat lowered to pick up with 1st mate & 4 crew, but done hurriedly & all were thrown into the water. As a second boat was lowered, a shark went after the 1st mate but he was rescued. Then the shark went after Mr. Andrews ",Mr. Andrews,M,FATAL,Y,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.00.00-Andrews.pdf -214,1842.07.06,06-Jul-1842,1842,Provoked,Usa,New Jersey,"Absecon, Atlantic County",Harassing a shark,male,Unknown,Lacerations to leg PROVOKED INCIDENT,n,New York Evening Post,7/11/1842,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.06-Absecon.pdf +214,1842.07.06,06-Jul-42,1842,Provoked,Usa,New Jersey,"Absecon, Atlantic County",Harassing a shark,male,Unknown,Lacerations to leg PROVOKED INCIDENT,n,New York Evening Post,7/11/1842,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.06-Absecon.pdf 213,1842.00.00.b,1842,1842,Unprovoked,India,Tamil Nadu, Chennai (formerly Madras),Washed off catamaran in the surf,male,M,FATAL,Y,Tioga Eagle,10/26/1842,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.b-Hindoo.pdf 212,1842.00.00.a,1842,1842,Unprovoked,Australia,New South Wales,Sydney Harbor,"Unknown, but it was said to be the ""First known attack in Sydney Harbour""",male,M,Recovered,N,V.M. Coppleson (1933),p.450,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.a-1st-SydneyHarbour.pdf -211,1841.03.27,27-Mar-1841,1841,Unprovoked,Australia,New South Wales,"Cockatoo Island, Sydney",Bathing,Andrew Goggin,M,FATAL,Y,Sydney Gazette,4/27/1841,http://sharkattackfile.net/spreadsheets/pdf_directory/1841.03.27-Goggin.pdf +211,1841.03.27,27-Mar-41,1841,Unprovoked,Australia,New South Wales,"Cockatoo Island, Sydney",Bathing,Andrew Goggin,M,FATAL,Y,Sydney Gazette,4/27/1841,http://sharkattackfile.net/spreadsheets/pdf_directory/1841.03.27-Goggin.pdf 210,1840.12.00,Dec-1840,1840,Unprovoked,Australia,New South Wales,"Off Domain, Sydney Harbor",Swimming,male,M,FATAL,Y,G.P. Whitley,p.259; L. Schultz & M. Malin,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.12.00 - Domain.pdf -209,1840.09.18.R,18-Sep-1840,1840,Unprovoked,Fiji,Viti Levu Island,Rewa ,Unknown,male,M,Arms & legs severed,N,Hobart Town Courier,9/18/1840,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.09.18.R-Fiji.pdf +209,1840.09.18.R,18-Sep-40,1840,Unprovoked,Fiji,Viti Levu Island,Rewa ,Unknown,male,M,Arms & legs severed,N,Hobart Town Courier,9/18/1840,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.09.18.R-Fiji.pdf 208,1840.02.00,Feb-1840,1840,Boat,Australia,Tasmania,George Town Cove,Sailing,A dinghy,Unknown,"No injury to occupant, shark seized stern post",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.02.00-dinghy.pdf 207,1840.00.00.a,Ca. 1840,1840,Unprovoked,Usa,South Carolina,"Charleston Harbor, Charleston County",Accidentally thrown overboard & treading water while awaiting rescue,crew member of a pilot boat,M,"FATAL, body was not recovered",Y,C. Creswell,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.00.00.a-pilot.pdf -206,1839.11.17,17-Nov-1839,1839,Invalid,Australia,New South Wales,Unknown,Unknown,Mr.Johnson (male),M,"""Drowned, 2 days later his head was bitten off by a shark""",Y,H.D. Baldridge,p.146,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.11.17-Johnson.pdf -205,1839.04.14,14-Apr-1839,1839,Unprovoked,Cuba,Matanzas Province (north coast),Matanzas,Sitting on gunwale of boat,sailor,M,FATAL,Y,Daily Courant,5/31/1839,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.04.14-Matanzas.pdf +206,1839.11.17,17-Nov-39,1839,Invalid,Australia,New South Wales,Unknown,Unknown,Mr.Johnson (male),M,"""Drowned, 2 days later his head was bitten off by a shark""",Y,H.D. Baldridge,p.146,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.11.17-Johnson.pdf +205,1839.04.14,14-Apr-39,1839,Unprovoked,Cuba,Matanzas Province (north coast),Matanzas,Sitting on gunwale of boat,sailor,M,FATAL,Y,Daily Courant,5/31/1839,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.04.14-Matanzas.pdf 204,1839.00.00.b,1839/1840,1839,Unprovoked,Australia,South Australia,"Horn Point, Lady's Bay",Attempting to rescue crew after whale upset their boat,Captain Wishart of the whaler Wallaby,M,FATAL,Y,G. Dunderdale,The Book of the Bush,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.b-Wishart.pdf 203,1839.00.00.a,Ca. 1839,1839,Unprovoked,Fiji,Viti Levu Island,Rewa ,Unknown,"Joeli Bulu, missionary",M,Survived,N,J. Garrett; T. Kanailagi,,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.a-Pulu.pdf -202,1837.09.03,09-Sep-1837,1837,Unprovoked,Usa,South Carolina,"Magwoods Wharf, Charleston Harbor, Charleston County",Bathing,a young boy from the Plymouth,M,Right foot bittten,N,C. Creswell,GSAF; J. Hair,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.09.03-Plymouth-boy.pdf -201,1837.01.17,17-Jan-1837,1837,Unprovoked,Australia,New South Wales,Macleay River,Washing his feet,Alfred Australia Howe,M,"FATAL Injured by shark, died of tetanus",Y,Gazette (Sydney) 1/31/1837; Proc. Royal Aust. Hist. Scty,I,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.01.17-Howe.pdf +202,1837.09.03,09-Sep-37,1837,Unprovoked,Usa,South Carolina,"Magwoods Wharf, Charleston Harbor, Charleston County",Bathing,a young boy from the Plymouth,M,Right foot bittten,N,C. Creswell,GSAF; J. Hair,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.09.03-Plymouth-boy.pdf +201,1837.01.17,17-Jan-37,1837,Unprovoked,Australia,New South Wales,Macleay River,Washing his feet,Alfred Australia Howe,M,"FATAL Injured by shark, died of tetanus",Y,Gazette (Sydney) 1/31/1837; Proc. Royal Aust. Hist. Scty,I,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.01.17-Howe.pdf 200,1837.00.00.a,Ca. 1837,1837,Invalid,Usa,South Carolina,“Southern Wharf”,Unknown,"adult male, a sailor",M,Shark caught contained human remains,Y,W. H. Gregg,,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.00.00.a-remains.pdf 199,1836.07.26.R,1836.07.26.R,1836,Invalid,Unknown,Unknown,Unknown,Unknown,Unknown,Unknown,"Shark caught, contained human remains",Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.07.26.R-Spain.pdf 198,1836.00.00.a,1836.00.,1836,Unprovoked,Australia,South Australia,Unknown,Unknown,Unknown,Unknown,"No details, it was the year the first settlers came ashore in Holdfast Bay, Port Pirie",UNKNOWN,A. Sharpe,p.119,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.00.00.a-HoldfastBay.pdf -197,1835.02.21.R,21-Feb-1835,1835,Unprovoked,Vanuatu,Sanma Province,"Bay of Yago, Espiritu Santo Island",Bathing,John McKeig,M,FATAL,Y,Sydney Gazette,2/21/1835,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.02.21.R-McKeig.pdf -196,1835.01.06,06-Jan-1835,1835,Unprovoked,Tasman sea,35º39 : 165º8',Alongside the whaler Marianne,Hooking into a whale,male,M,"""Savagely bitten"" but apparently survived",N,G.P. Whitley,p. 259,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.01.06-Whaler.pdf -195,1834.07.15.R,15-Jul-1834,1834,Unprovoked,French polynesia,Society Islands,Tahiti,Swimming,Kaugatava Orurutm,F,FATAL,Y,Republican Banner,7/15/1834,http://sharkattackfile.net/spreadsheets/pdf_directory/1834.07.15.R-Tahiti.pdf -194,1832.06.04,04-Jun-1832,1832,Unprovoked,Australia,New South Wales,"South Head, Sydney",Fishing,Aboriginal female,F,Leg severed,N,Sydney Herald,6/11/1832,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.06.04-AboriginalWoman.pdf -193,1832.01.23.R,23-Jan-1832,1832,Unprovoked,Australia,New South Wales,Sydney,Bathing,male,M,Laceration to leg,N,Sydney Herald,1/23/1832,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.01.23.R-Wilshire-slaughter-house.pdf +197,1835.02.21.R,21-Feb-35,1835,Unprovoked,Vanuatu,Sanma Province,"Bay of Yago, Espiritu Santo Island",Bathing,John McKeig,M,FATAL,Y,Sydney Gazette,2/21/1835,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.02.21.R-McKeig.pdf +196,1835.01.06,06-Jan-35,1835,Unprovoked,Tasman sea,35º39 : 165º8',Alongside the whaler Marianne,Hooking into a whale,male,M,"""Savagely bitten"" but apparently survived",N,G.P. Whitley,p. 259,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.01.06-Whaler.pdf +195,1834.07.15.R,15-Jul-34,1834,Unprovoked,French polynesia,Society Islands,Tahiti,Swimming,Kaugatava Orurutm,F,FATAL,Y,Republican Banner,7/15/1834,http://sharkattackfile.net/spreadsheets/pdf_directory/1834.07.15.R-Tahiti.pdf +194,1832.06.04,04-Jun-32,1832,Unprovoked,Australia,New South Wales,"South Head, Sydney",Fishing,Aboriginal female,F,Leg severed,N,Sydney Herald,6/11/1832,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.06.04-AboriginalWoman.pdf +193,1832.01.23.R,23-Jan-32,1832,Unprovoked,Australia,New South Wales,Sydney,Bathing,male,M,Laceration to leg,N,Sydney Herald,1/23/1832,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.01.23.R-Wilshire-slaughter-house.pdf 192,1831.01.22.R,22- Jan-1831,1831,Invalid,Australia,Tasmania,Hobart,"Boat capsized, clinging to line",Robert Dudlow,M,"Drowned, no shark involvement",Y,C. Black,GSAF; Sydney Gazette,http://sharkattackfile.net/spreadsheets/pdf_directory/1831.01.22.R-Dudlow.pdf -191,1830.07.26,26-Jul-1830,1830,Unprovoked,Usa,Massachusetts,"Swampscott, Essex County","Fishing from dory, shark upset boat & he fell into the water",Joseph Blaney,M,FATAL,Y,Huron Sun,8/3/1830,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.26-JosephBlaney.pdf -190,1830.07.02.R,02-Jul-1830,1830,Unprovoked,India,Tamil Nadu,Madras,Washing a dog,male,M,FATAL,Y,Madras Courier,7/2/1830,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.02.R-Madras.pdf -189,1830.04.30,30-Apr-1830,1830,Unprovoked,India,Tamil Nadu,St. Thomé,Bathing,Ensign Bromwick,M,FATAL,Y,Madras Gazette,5/1/1830,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.04.30-Bromwick.pdf -188,1829.07.03.R,03-Jul-1829,1829,Unprovoked,Sierra leone,Western Area,Unknown,Unknown,Thomas Cargill,M,Both hands severed,N,Hagerstown Mail,7/3/1829,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.07.03.R-Cargill.pdf +191,1830.07.26,26-Jul-30,1830,Unprovoked,Usa,Massachusetts,"Swampscott, Essex County","Fishing from dory, shark upset boat & he fell into the water",Joseph Blaney,M,FATAL,Y,Huron Sun,8/3/1830,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.26-JosephBlaney.pdf +190,1830.07.02.R,02-Jul-30,1830,Unprovoked,India,Tamil Nadu,Madras,Washing a dog,male,M,FATAL,Y,Madras Courier,7/2/1830,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.02.R-Madras.pdf +189,1830.04.30,30-Apr-30,1830,Unprovoked,India,Tamil Nadu,St. Thomé,Bathing,Ensign Bromwick,M,FATAL,Y,Madras Gazette,5/1/1830,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.04.30-Bromwick.pdf +188,1829.07.03.R,03-Jul-29,1829,Unprovoked,Sierra leone,Western Area,Unknown,Unknown,Thomas Cargill,M,Both hands severed,N,Hagerstown Mail,7/3/1829,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.07.03.R-Cargill.pdf 187,1829.00.00,1829,1829,Sea Disaster,Caribbean sea,Unknown,Between St. Bart's and Saba,Wreck of the schooner Driver,Ned & Pawn,M,FATAL x 2,Y,The Times,12/14/1829,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.00.00-Ned-Pawn.pdf -186,1828.09.28,28-Sep-1828,1828,Unprovoked,Sierra leone,Western Area,"River Sierra Leone, 35 miles upriver from Freetown","British ship, Britannia, was loading lumber. He was bathing","Thomas Corrigle, an apprentice from the ship",M,"Left arm severed 2.5"" from elbow, groin, abdomen, right forearm & hand lacerated, flesh removed from thigh, baring femur. Both arms surgically amputated: left arm above elbow, right arm above wrist. Survived",N,Account by J. Boyle,,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.09.28-Corrigle.pdf +186,1828.09.28,28-Sep-28,1828,Unprovoked,Sierra leone,Western Area,"River Sierra Leone, 35 miles upriver from Freetown","British ship, Britannia, was loading lumber. He was bathing","Thomas Corrigle, an apprentice from the ship",M,"Left arm severed 2.5"" from elbow, groin, abdomen, right forearm & hand lacerated, flesh removed from thigh, baring femur. Both arms surgically amputated: left arm above elbow, right arm above wrist. Survived",N,Account by J. Boyle,,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.09.28-Corrigle.pdf 185,1828.00.00,1828,1828,Unprovoked,Usa,Hawaii,"Uo, Lahaina, Maui",Surfing,Male,M,FATAL,Y,J. Borg,p.68; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1828.00.00-male.pdf 184,1827.06.00.b,Jun-1827,1827,Unprovoked,Sierra leone,Western Area ,Tombo Island in the Sierra Leone River,Swimming,"A boy, one of the crew of the ship Thomas Gelston",M,The boy's foot was bitten,N,Edinburgh Advertiser. 9/12/1828,,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.b-boy-crew-Gelston.pdf 183,1827.06.00.a,Jun-1827,1827,Unprovoked,Sierra leone,Western Area ,Tombo Island in the Sierra Leone River,Swimming,"William Davis, of the ship Thomas Gelston",M,Davis' leg was severed,N,Edinburgh Advertiser. 9/12/1828,,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.a-Davis.pdf -182,1827.01.11.R,11-Jan-1827,1827,Unprovoked,Unknown,Unknown,Unknown,Jumped overboard,Thomas Laurington,M,FATAL,Y,Sydney Gazette,1/11/1827,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.01.11.R-Laurington.pdf +182,1827.01.11.R,11-Jan-27,1827,Unprovoked,Unknown,Unknown,Unknown,Jumped overboard,Thomas Laurington,M,FATAL,Y,Sydney Gazette,1/11/1827,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.01.11.R-Laurington.pdf 181,1827.00.00,1827,1827,Unprovoked,Egypt,Unknown,Alexandria,Unknown,Two men,M,Remains of the men were recovered from a +17-foot shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.00.00-Alexandria.pdf 180,1826.12.00,Dec-1826,1826,Unprovoked,Brazil,Paraiba,Paraiba,Unknown,a seaman from the ship Beverly,M,Leg severed,N,Book of the Ocean,,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.12.00-seaman-Beverly.pdf 179,1826.11.00,Ca. Nov-1826,1826,Unprovoked,Ghana,Cape Coast,Unknown,Bathing,a seaman from HM Redwing,M,FATAL,Y,Sydney Gazette and New South Wales Advertiser,7/25/1827 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.11.00-seaman-Redwing.pdf -178,1826.08.28,28-Aug-1826,1826,Sea Disaster,Unknown,Unknown,Unknown,HBM Magpie foundered in a squall,Lieutenant Edward Smith,M,FATAL ,Y,Edinburgh Advertiser. 10/20/1826,,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.28-Smith.pdf +178,1826.08.28,28-Aug-26,1826,Sea Disaster,Unknown,Unknown,Unknown,HBM Magpie foundered in a squall,Lieutenant Edward Smith,M,FATAL ,Y,Edinburgh Advertiser. 10/20/1826,,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.28-Smith.pdf 177,1825.00.00.b,1820s,1825,Unprovoked,Australia,Tasmania,"Sweet Water Point, Pitt Water",Swimming,"""Amphibious Jack"" male",M,FATAL,Y,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.b-AmphibiousJack.pdf 176,1825.00.00,Ca . 1825,1825,Invalid,Australia,Western Australia,South Bruny Island,Unknown,Nelson,M,"Arms severed, but he survived",N,C. Black,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.a-Nelson.pdf -175,1822.04.15,15-Apr-1822,1822,Unprovoked,Nigeria,Rivers State,Bonny River,Unknown,slaves,Unknown,FATAL,Y,Times of London,8/5/1822,http://sharkattackfile.net/spreadsheets/pdf_directory/1822.04.15-Slaver.pdf -174,1819.07.08.R,08-Jul-1819,1819,Invalid,Spain,Unknown,Cadiz,Unknown,male,M,No injury / No attack,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1819.07.08-Cadiz.pdf -173,1818.05.22.R,22-May-1818,1818,Invalid,Norway,Unknown,Herøy,Unknown,male,M,Probable drowning ,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1818.05.22.R-Norway.pdf -172,1817.06.24,24-Jun-1817,1817,Unprovoked,Usa,South Carolina,"Charleston Harbor, Charleston County",Swimming,Jemmy,M,FATAL,Y,The Times,6/25/1817,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.24-Jemmy.pdf -171,1817.06.15,15-Jun-1817,1817,Unprovoked,India,Maharashtra,Bombay (now Mumbai),Swimming,Charles Anderson,M,FATAL,Y,Edinburgh Advertiser. 2/3/1818,,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.15-Anderson.pdf -170,1817.05.11,11-May-1817,1817,Unprovoked,Sri lanka,Western Province,Colombo,Swimming,William May,M,FATAL,Y,Edinburgh Advertiser. 11/4/1817; R. DeSilva,,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.05.11-May.pdf -169,1817.02.22,22-Feb-1817,1817,Unprovoked,Sri lanka,Unknown,Gulf of Mannar,Conch diver,male,M,Abdomen bitten,N,J. Kennedy,,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.02.22-Mannar.pdf +175,1822.04.15,15-Apr-22,1822,Unprovoked,Nigeria,Rivers State,Bonny River,Unknown,slaves,Unknown,FATAL,Y,Times of London,8/5/1822,http://sharkattackfile.net/spreadsheets/pdf_directory/1822.04.15-Slaver.pdf +174,1819.07.08.R,08-Jul-19,1819,Invalid,Spain,Unknown,Cadiz,Unknown,male,M,No injury / No attack,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1819.07.08-Cadiz.pdf +173,1818.05.22.R,22-May-18,1818,Invalid,Norway,Unknown,Herøy,Unknown,male,M,Probable drowning ,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1818.05.22.R-Norway.pdf +172,1817.06.24,24-Jun-17,1817,Unprovoked,Usa,South Carolina,"Charleston Harbor, Charleston County",Swimming,Jemmy,M,FATAL,Y,The Times,6/25/1817,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.24-Jemmy.pdf +171,1817.06.15,15-Jun-17,1817,Unprovoked,India,Maharashtra,Bombay (now Mumbai),Swimming,Charles Anderson,M,FATAL,Y,Edinburgh Advertiser. 2/3/1818,,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.15-Anderson.pdf +170,1817.05.11,11-May-17,1817,Unprovoked,Sri lanka,Western Province,Colombo,Swimming,William May,M,FATAL,Y,Edinburgh Advertiser. 11/4/1817; R. DeSilva,,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.05.11-May.pdf +169,1817.02.22,22-Feb-17,1817,Unprovoked,Sri lanka,Unknown,Gulf of Mannar,Conch diver,male,M,Abdomen bitten,N,J. Kennedy,,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.02.22-Mannar.pdf 168,1816.09.03.R,03-Sept-1816,1816,Unprovoked,Usa,Rhode Island,Bristol Harbor,Swimming,male,Unknown,FATAL,Y,Connecticut Courant,9/3/1816,http://sharkattackfile.net/spreadsheets/pdf_directory/1816.09.03.R-Rhode-Island.pdf 167,1812.07.00,May 1812,1812,Unprovoked,England,Devon,Mill Bay,Swimming,soldier from the Lancashire militia,M,Both legs injured,N,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1812.07.00-Mill-Bay.pdf -166,1811.03.01,01-Mar-1811,1811,Unprovoked,Unknown,Unknown,Unknown,Fell overboard,John Walker,M,FATAL,Y,Journal of Captain Marryat,,http://sharkattackfile.net/spreadsheets/pdf_directory/1811.03.01-John-Walker.pdf -165,1807.01.12,12-Jan-1807,1807,Unprovoked,Australia,New South Wales,"Cockle Bay, Sydney Harbour",Unknown,male,M,Survived,N,J. Green,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1807.01.12-Cockle-Bay.pdf +166,1811.03.01,01-Mar-11,1811,Unprovoked,Unknown,Unknown,Unknown,Fell overboard,John Walker,M,FATAL,Y,Journal of Captain Marryat,,http://sharkattackfile.net/spreadsheets/pdf_directory/1811.03.01-John-Walker.pdf +165,1807.01.12,12-Jan-07,1807,Unprovoked,Australia,New South Wales,"Cockle Bay, Sydney Harbour",Unknown,male,M,Survived,N,J. Green,p.31,http://sharkattackfile.net/spreadsheets/pdf_directory/1807.01.12-Cockle-Bay.pdf 164,1805.09.00,Sep-1805,1805,Invalid,Usa,New York,"Sag Harbor, Suffolk County",Unknown,Unknown,M, human remains (male) found in shark’s gut,Y,S.L. Mitchill (1814),,http://sharkattackfile.net/spreadsheets/pdf_directory/1805.09.00-NY.pdf -163,1804.02.26.R,26-Feb-1804,1804,Boat,Australia,New South Wales,"Georges Head, off Port Jackson",Unknown,boat,Unknown,No injury to occupants,N, Sydney Gazette,2/26/1804 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1804.02.26-boat-GeorgesHead.pdf +163,1804.02.26.R,26-Feb-04,1804,Boat,Australia,New South Wales,"Georges Head, off Port Jackson",Unknown,boat,Unknown,No injury to occupants,N, Sydney Gazette,2/26/1804 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1804.02.26-boat-GeorgesHead.pdf 162,1803.03.00,Mar-1803,1803,Unprovoked,Australia,Western Australia,"Hamelin Harbour, at Faure Island",Unknown,M. Lefevre & a sailor (rescuer),M,Shark knocked him down & tore clothing of the rescuer,N,F. Peron ref in G.P. Whitley (Fishes of Australia),p.13 ,http://sharkattackfile.net/spreadsheets/pdf_directory/1803.03.00-Lefevre.pdf 161,1800.00.00,1800,1800,Unprovoked,Seychelles,St. Anne,Unknown,a corsair's boat was overturned,Unknown,F,"FATAL, all onboard were killed by sharks",Y,V. C. Harvey-Brain,,http://sharkattackfile.net/spreadsheets/pdf_directory/1800.00.00-Corsair-boat.pdf 160,1791.00.00,1791,1791,Unprovoked,Australia,New South Wales,Port Jackson,Unknown,"female, an Australian aboriginal",F,"FATAL, ""bitten in two""",Y,G.P. Whitley; D. Baldridge,p.162,http://sharkattackfile.net/spreadsheets/pdf_directory/1791.00.00-aboriginal woman.pdf -159,1788.05.10,10-May-1788,1788,Boat,Australia,New South Wales,Sydney Harbor,Fishing,boat,Unknown,"No injury to occupants, shark bit oar and rudder",N,G.P. Whitley citing J. Cobley,Sydney Cove,http://sharkattackfile.net/spreadsheets/pdf_directory/1788.05.10-Sydney -158,1787.07.05,05-Jul-1787,1787,Unprovoked,St helena,Unknown,Landing Place,Swimming,Private Isaac Hicksled,M,FATAL,Y,H.R. Janisch (1885),Extracts from the St. Helena Archives,http://sharkattackfile.net/spreadsheets/pdf_directory/1787.07.05-Hicksled.pdf -157,1785.09.26.R,26-Sep-1785,1785,Unprovoked,England,Sussex,Brighton,Unknown,Unknown,M,Human remains recovered from shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1785.09.26.R-Brighton.pdf +159,1788.05.10,10-May-88,1788,Boat,Australia,New South Wales,Sydney Harbor,Fishing,boat,Unknown,"No injury to occupants, shark bit oar and rudder",N,G.P. Whitley citing J. Cobley,Sydney Cove,http://sharkattackfile.net/spreadsheets/pdf_directory/1788.05.10-Sydney +158,1787.07.05,05-Jul-87,1787,Unprovoked,St helena,Unknown,Landing Place,Swimming,Private Isaac Hicksled,M,FATAL,Y,H.R. Janisch (1885),Extracts from the St. Helena Archives,http://sharkattackfile.net/spreadsheets/pdf_directory/1787.07.05-Hicksled.pdf +157,1785.09.26.R,26-Sep-85,1785,Unprovoked,England,Sussex,Brighton,Unknown,Unknown,M,Human remains recovered from shark,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1785.09.26.R-Brighton.pdf 156,1779.00.00,1779,1779,Unprovoked,Usa,Hawaii,"Maliu, Hawai'i",Surfing,Nu'u-anu-pa'a hu,M,"FATAL, buttock lacerated ",Y,G.H. Balazs; J. Borg,p.68; L. Taylor (1993),http://sharkattackfile.net/spreadsheets/pdf_directory/1779.00.00-Hawaii.pdf 155,1776.00.00.R,1776,1776,Unprovoked,Unknown,Unknown,Unknown,Murder,African slave,M,FATAL,Y,T. Pennant,,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00.R-Slave.pdf 154,1776.00.00.b,1776,1776,Boat,Unknown,Unknown,Unknown,Unknown,Occupants of skin boats,Unknown,FATAL,Y,T. Pennant,,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00-Greenland.pdf -153,1771.07.12.R,12-Jul-1771,1771,Unprovoked,Usa,Unknown,Damiscotte,Fishing,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1771.07.12.R-Damiscotte.pdf +153,1771.07.12.R,12-Jul-71,1771,Unprovoked,Usa,Unknown,Damiscotte,Fishing,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1771.07.12.R-Damiscotte.pdf 152,1767.00.00,1767,1767,Invalid,France,Côte d'Azur ,St. Tropez,Bathing,Samuel Matthews,M,Lacerations to arm & leg,N,Unknown,,http://sharkattackfile.net/spreadsheets/pdf_directory/1767.00.00-Matthews.pdf 151,1764.00.00,1764,1764,Unprovoked,Spain,Unknown,Guadalquivir River,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1764.00.00-Spain.pdf 150,1758.00.00,1758,1758,Unprovoked,Unknown,Unknown,Unknown,"Fell overboard from a frigate & was swallowed by a shark. The captain fired a gun at the shark, and ""the creature cast the man out of his throat.""",sailor,M,"""He was taken up alive and but little injured."" ",N,A.M. Hodgkin,,http://sharkattackfile.net/spreadsheets/pdf_directory/1758.00.00-Mediterranean.pdf 149,1749.00.00,1749,1749,Unprovoked,Cuba,Havana Province,Havana Harbor,Swimming,Brook Watson,M,"Right leg severed at knee. In 1796 he became Lord Mayor of London. In 1778 he commissioned American artist, John Singleton Copley, to paint the incident: Watson and the Shark",N,GSAF,,http://sharkattackfile.net/spreadsheets/pdf_directory/1749.00.00-Watson.pdf 148,1755.00.00,1755,1755,Unprovoked,Sweden,Skagerrak arm of the North Sea,Bohuslän,Unknown,Fishermen,M,Unknown,UNKNOWN,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1755.00.00-Sweden.pdf 147,1748.00.00,1748,1748,Unprovoked,Panama,Las Perlas archipelago,Taboga & Isla del Rey,Pearl diving,African slaves,M,FATAL,Y,J. Castro,et al,http://sharkattackfile.net/spreadsheets/pdf_directory/1748.00.00.R-LasPerlas.pdf -146,1742.12.17,17-Dec-1742,1742,Unprovoked,Barbados,Unknown,Carlisle Bay,Swimming,2 impressed seamen,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1742.12.17-AdviceSeamen.pdf -145,1738.04.06.R,06-Apr-1738,1738,Unprovoked,Italy,Sicily,Strait of Messina,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1738.04.06.R-Messina.pdf +146,1742.12.17,17-Dec-42,1742,Unprovoked,Barbados,Unknown,Carlisle Bay,Swimming,2 impressed seamen,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1742.12.17-AdviceSeamen.pdf +145,1738.04.06.R,06-Apr-38,1738,Unprovoked,Italy,Sicily,Strait of Messina,Swimming,male,M,FATAL,Y,C. Moore,GSAF,http://sharkattackfile.net/spreadsheets/pdf_directory/1738.04.06.R-Messina.pdf 144,1733.00.00,1733,1733,Invalid,Iceland,Bardestrand,Talkknefiord,Unknown,Unknown,Unknown,"Partial hominid remains recovered from shark, probable drowning and scavenging",Y,E. Olafsen,,http://sharkattackfile.net/spreadsheets/pdf_directory/1733.00.00-Iceland.pdf 143,1721.06.00,June 1721,1721,Unprovoked,Italy,Sardinia,"Ponte della Maddelena,",Swimming,male,M,"FATAL, partial remains recovered from shark’s gut",Y,F. Ricciardi; A. De Maddalena. ,,http://sharkattackfile.net/spreadsheets/pdf_directory/1721.06.00-Maddalena.pdf -142,1703.03.26,26-Mar-1703,1703,Unprovoked,Barbados,Southwest coast,Carlisle Bay,Swimming,"Samuel Jennings, a deserter from the British frigate Milford",M,"Hand and foot severely bitten, surgically amputated",N,W.R.Cutter,Vol.1,http://sharkattackfile.net/spreadsheets/pdf_directory/1703.03.26-Jennings.pdf +142,1703.03.26,26-Mar-03,1703,Unprovoked,Barbados,Southwest coast,Carlisle Bay,Swimming,"Samuel Jennings, a deserter from the British frigate Milford",M,"Hand and foot severely bitten, surgically amputated",N,W.R.Cutter,Vol.1,http://sharkattackfile.net/spreadsheets/pdf_directory/1703.03.26-Jennings.pdf 141,1700.00.00.c,1700s,1700,Unprovoked,France,Unknown,Nice,Unknown,child,M,FATAL,Y,A. De Maddalena,citing Cazeils (1998),http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.c-Nice.pdf 140,1700.00.00.b,1700s,1700,Unprovoked,France,Côte d'Azur ,Antibes,Bathing,seaman,M,Leg severed,N,A. De Maddalena,citing Cazeils (1998),http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.b-Antibes.pdf 139,1700.00.00.a,1700s,1700,Unprovoked,Unknown,Unknown,Unknown,Bathing,seaman from the York,M,FATAL,Y,Tioga Eagle,10.26/ 1842,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.a-Barbados.pdf diff --git a/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.pkl b/module-1_projects/pandas-project/your-code/cleaned_shark_attacks.pkl index 7a5e1f7b6800a0fdc7c2c957219d7bae16f4fdd9..3eb075252ddb332e89cf904c01caea47820cf2ea 100644 GIT binary patch delta 209325 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
BaBAD?rZmBGUr(LH#O92YeJDB%N@U|LqS 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

^=qTM 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 h-$O0Vn^&08a#dkQtAd Remove 'reported'\n", + " - Convert DD-MM-YYYY to DD-MM-YY\n" ] }, { @@ -1977,19 +1975,43 @@ { "data": { "text/plain": [ - "original order\n", - "5993 18-Sep-16\n", - "5992 18-Sep-16\n", - "5991 18-Sep-16\n", - "5990 17-Sep-16\n", - "5989 16-Sep-16\n", - " ... \n", - "6 Before 1903\n", - "5 Before 1903\n", - "4 1900-1905\n", - "3 1883-1889\n", - "2 1845-1853\n", - "Name: Date, Length: 5988, dtype: object" + "9 0.724616\n", + "11 0.127255\n", + "4 0.047929\n", + "6 0.047762\n", + "12 0.012525\n", + "8 0.009185\n", + "13 0.006346\n", + "5 0.003507\n", + "10 0.003340\n", + "14 0.003006\n", + "16 0.002171\n", + "20 0.001837\n", + "15 0.001503\n", + "26 0.001336\n", + "7 0.001169\n", + "19 0.001002\n", + "24 0.001002\n", + "32 0.000668\n", + "27 0.000501\n", + "17 0.000501\n", + "34 0.000334\n", + "28 0.000167\n", + "64 0.000167\n", + "43 0.000167\n", + "37 0.000167\n", + "21 0.000167\n", + "33 0.000167\n", + "23 0.000167\n", + "45 0.000167\n", + "47 0.000167\n", + "18 0.000167\n", + "22 0.000167\n", + "38 0.000167\n", + "42 0.000167\n", + "39 0.000167\n", + "55 0.000167\n", + "Name: Date, dtype: float64" ] }, "execution_count": 38, @@ -1998,7 +2020,92 @@ } ], "source": [ - "df['Date']" + "df['Date'].str.len().value_counts()/len(df)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:8: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n" + ] + } + ], + "source": [ + "import re\n", + " \n", + "def format_date(date):\n", + " pattern1 = re.compile(r'(\\d{2}-\\w{3}-)(\\d{2})(\\d{2})')\n", + " return pattern1.sub(r'\\1\\3',date)\n", + " \n", + " \n", + "df['Date'][df['Date'].str.len()==11]=df['Date'][df['Date'].str.len()==11].apply(format_date)" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "9 0.838510\n", + "4 0.047929\n", + "6 0.047762\n", + "11 0.013360\n", + "12 0.012525\n", + "8 0.009185\n", + "13 0.006346\n", + "5 0.003507\n", + "10 0.003340\n", + "14 0.003006\n", + "16 0.002171\n", + "20 0.001837\n", + "15 0.001503\n", + "26 0.001336\n", + "7 0.001169\n", + "24 0.001002\n", + "19 0.001002\n", + "32 0.000668\n", + "27 0.000501\n", + "17 0.000501\n", + "34 0.000334\n", + "43 0.000167\n", + "28 0.000167\n", + "64 0.000167\n", + "39 0.000167\n", + "45 0.000167\n", + "21 0.000167\n", + "33 0.000167\n", + "37 0.000167\n", + "47 0.000167\n", + "18 0.000167\n", + "22 0.000167\n", + "38 0.000167\n", + "42 0.000167\n", + "23 0.000167\n", + "55 0.000167\n", + "Name: Date, dtype: float64" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Imroved \n", + "df['Date'].str.len().value_counts()/len(df)" ] }, { @@ -2011,7 +2118,7 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 41, "metadata": {}, "outputs": [], "source": [ @@ -2028,7 +2135,7 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 42, "metadata": {}, "outputs": [ { @@ -2044,7 +2151,7 @@ "Name: Sex , dtype: int64" ] }, - "execution_count": 40, + "execution_count": 42, "metadata": {}, "output_type": "execute_result" } @@ -2055,7 +2162,7 @@ }, { "cell_type": "code", - "execution_count": 41, + "execution_count": 43, "metadata": {}, "outputs": [], "source": [ @@ -2064,7 +2171,7 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 44, "metadata": {}, "outputs": [ { @@ -2085,7 +2192,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 45, "metadata": {}, "outputs": [ { @@ -2097,7 +2204,7 @@ "Name: Sex , dtype: int64" ] }, - "execution_count": 43, + "execution_count": 45, "metadata": {}, "output_type": "execute_result" } @@ -2116,7 +2223,7 @@ }, { "cell_type": "code", - "execution_count": 44, + "execution_count": 46, "metadata": {}, "outputs": [ { @@ -2127,13 +2234,13 @@ "UNKNOWN 94\n", " N 8\n", "N 1\n", - "#VALUE! 1\n", "F 1\n", + "#VALUE! 1\n", "n 1\n", "Name: Fatal (Y/N), dtype: int64" ] }, - "execution_count": 44, + "execution_count": 46, "metadata": {}, "output_type": "execute_result" } @@ -2144,7 +2251,7 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 47, "metadata": {}, "outputs": [ { @@ -2156,7 +2263,7 @@ "Name: Fatal (Y/N), dtype: int64" ] }, - "execution_count": 45, + "execution_count": 47, "metadata": {}, "output_type": "execute_result" } @@ -2178,7 +2285,7 @@ }, { "cell_type": "code", - "execution_count": 46, + "execution_count": 48, "metadata": {}, "outputs": [], "source": [ @@ -2187,7 +2294,7 @@ }, { "cell_type": "code", - "execution_count": 47, + "execution_count": 49, "metadata": {}, "outputs": [ { @@ -2417,7 +2524,7 @@ "[5988 rows x 10 columns]" ] }, - "execution_count": 47, + "execution_count": 49, "metadata": {}, "output_type": "execute_result" } @@ -2428,7 +2535,7 @@ }, { "cell_type": "code", - "execution_count": 48, + "execution_count": 50, "metadata": {}, "outputs": [], "source": [ @@ -2438,7 +2545,7 @@ }, { "cell_type": "code", - "execution_count": 49, + "execution_count": 51, "metadata": {}, "outputs": [], "source": [ @@ -2454,7 +2561,7 @@ }, { "cell_type": "code", - "execution_count": 50, + "execution_count": 52, "metadata": {}, "outputs": [ { @@ -2463,7 +2570,7 @@ "0" ] }, - "execution_count": 50, + "execution_count": 52, "metadata": {}, "output_type": "execute_result" } @@ -2483,7 +2590,7 @@ }, { "cell_type": "code", - "execution_count": 51, + "execution_count": 53, "metadata": {}, "outputs": [ { @@ -2495,7 +2602,7 @@ " dtype='object')" ] }, - "execution_count": 51, + "execution_count": 53, "metadata": {}, "output_type": "execute_result" } @@ -2506,7 +2613,7 @@ }, { "cell_type": "code", - "execution_count": 52, + "execution_count": 54, "metadata": {}, "outputs": [], "source": [ @@ -2517,7 +2624,7 @@ }, { "cell_type": "code", - "execution_count": 53, + "execution_count": 55, "metadata": {}, "outputs": [ { @@ -2721,7 +2828,7 @@ "5989 9/16/2016 " ] }, - "execution_count": 53, + "execution_count": 55, "metadata": {}, "output_type": "execute_result" } @@ -2741,7 +2848,7 @@ }, { "cell_type": "code", - "execution_count": 54, + "execution_count": 56, "metadata": {}, "outputs": [], "source": [ @@ -2752,7 +2859,7 @@ }, { "cell_type": "code", - "execution_count": 55, + "execution_count": 57, "metadata": {}, "outputs": [ { @@ -2948,7 +3055,7 @@ "5989 http://sharkattackfile.net/spreadsheets/pdf_di... " ] }, - "execution_count": 55, + "execution_count": 57, "metadata": {}, "output_type": "execute_result" } @@ -2957,6 +3064,13 @@ "df.head()" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "markdown", "metadata": {}, @@ -2966,7 +3080,7 @@ }, { "cell_type": "code", - "execution_count": 56, + "execution_count": 58, "metadata": {}, "outputs": [], "source": [ @@ -2975,7 +3089,7 @@ }, { "cell_type": "code", - "execution_count": 57, + "execution_count": 59, "metadata": {}, "outputs": [], "source": [ From 52f644eab9db7ad04765ed3fbb699b3fe6048bdf Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Tue, 5 Nov 2019 22:52:13 +0100 Subject: [PATCH 18/30] Added answers --- .../your-code/main-Answers.ipynb | 245 + .../your-code/main.ipynb | 2 +- .../your-code/Scavenger Game.ipynb | 311 + .../lab-coingecko-api/your code/example.ipynb | 2 +- .../lab-coingecko-api/your code/main.ipynb | 252 +- .../your-code/challenge-1.ipynb | 1439 +++- .../your-code/challenge-2.ipynb | 171 +- .../your-code/main.ipynb | 982 ++- .../lab-web-scraping/your-code/main.ipynb | 6672 ++++++++++++++++- .../lab-matplotlib-seaborn/main.ipynb | 113 +- .../your-code/challenge-1.ipynb | 487 +- .../your-code/challenge-2.ipynb | 677 +- .../your-code/challenge-3.ipynb | 1066 ++- .../your-code/main.ipynb | 183 +- .../your-code/main.ipynb | 3543 ++++++++- .../lab-time-series/your-code/main.ipynb | 592 +- 16 files changed, 15980 insertions(+), 757 deletions(-) create mode 100644 module-1_labs/lab-advanced-web-scraping/your-code/main-Answers.ipynb create mode 100644 module-1_labs/lab-api-scavenger-game/your-code/Scavenger Game.ipynb diff --git a/module-1_labs/lab-advanced-web-scraping/your-code/main-Answers.ipynb b/module-1_labs/lab-advanced-web-scraping/your-code/main-Answers.ipynb new file mode 100644 index 0000000..e9fea71 --- /dev/null +++ b/module-1_labs/lab-advanced-web-scraping/your-code/main-Answers.ipynb @@ -0,0 +1,245 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Advanced Web Scraping Lab\n", + "\n", + "In this lab you will first learn the following code snippet which is a simple web spider class that allows you to scrape paginated webpages. Read the code, run it, and make sure you understand how it work. In the challenges of this lab, we will guide you in building up this class so that eventually you will have a more robus web spider that you can further work on in the Web Scraping Project." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "im\n", + "import requests\n", + "from bs4 import BeautifulSoup\n", + "\n", + "class IronhackSpider:\n", + " \"\"\"\n", + " This is the constructor class to which you can pass a bunch of parameters. \n", + " These parameters are stored to the class instance variables so that the\n", + " class functions can access them later.\n", + " \n", + " url_pattern: the regex pattern of the web urls to scape\n", + " pages_to_scrape: how many pages to scrape\n", + " sleep_interval: the time interval in seconds to delay between requests. If <0, requests will not be delayed.\n", + " content_parser: a function reference that will extract the intended info from the scraped content.\n", + " \"\"\"\n", + " def __init__(self, url_pattern, pages_to_scrape=10, sleep_interval=-1, content_parser=None):\n", + " self.url_pattern = url_pattern\n", + " self.pages_to_scrape = pages_to_scrape\n", + " self.sleep_interval = sleep_interval\n", + " self.content_parser = content_parser\n", + " \n", + " \"\"\"\n", + " Scrape the content of a single url.\n", + " \"\"\"\n", + " def scrape_url(self, url):\n", + " response = requests.get(url)\n", + " result = self.content_parser(response.content)\n", + " self.output_results(result)\n", + " \n", + " \"\"\"\n", + " Export the scraped content. Right now it simply print out the results.\n", + " But in the future you can export the results into a text file or database.\n", + " \"\"\"\n", + " def output_results(self, r):\n", + " print(r)\n", + " \n", + " \"\"\"\n", + " After the class is instantiated, call this function to start the scraping jobs.\n", + " This function uses a FOR loop to call `scrape_url()` for each url to scrape.\n", + " \"\"\"\n", + " def kickstart(self):\n", + " for i in range(1, self.pages_to_scrape+1):\n", + " self.scrape_url(self.url_pattern % i)\n", + "\n", + "\n", + "URL_PATTERN = 'http://quotes.toscrape.com/page/%s/' # regex pattern for the urls to scrape\n", + "PAGES_TO_SCRAPE = 1 # how many webpages to scrapge\n", + "\n", + "\"\"\"\n", + "This is a custom parser function you will complete in the challenge.\n", + "Right now it simply returns the string passed to it. But in this lab\n", + "you will complete this function so that it extracts the quotes.\n", + "This function will be passed to the IronhackSpider class.\n", + "\"\"\"\n", + "def quotes_parser(content):\n", + " pattern = \n", + " return content.replace('http://','')\n", + "\n", + "# Instantiate the IronhackSpider class\n", + "my_spider = IronhackSpider(URL_PATTERN, PAGES_TO_SCRAPE, content_parser=quotes_parser)\n", + "\n", + "# Start scraping jobs\n", + "my_spider.kickstart()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Challenge 1 - Custom Parser Function\n", + "\n", + "In this challenge, complete the custom `quotes_parser()` function so that the returned result contains the quote string instead of the whole html page content.\n", + "\n", + "In the cell below, write your updated `quotes_parser()` function and kickstart the spider. Make sure the results being printed contain a list of quote strings extracted from the html content." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Challenge 2 - Error Handling\n", + "\n", + "In `IronhackSpider.scrape_url()`, catch any error that might occur when you make requests to scrape the webpage. This includes checking the response status code and catching http request errors such as timeout, SSL, and too many redirects.\n", + "\n", + "In the cell below, place your entire code including the updated `IronhackSpdier` class and the code to kickstart the spider." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3 - Sleep Interval\n", + "\n", + "In `IronhackSpider.kickstart()`, implement `sleep_interval`. You will check if `self.sleep_interval` is larger than 0. If so, tell the FOR loop to sleep the given amount of time before making the next request.\n", + "\n", + "In the cell below, place your entire code including the updated `IronhackSpdier` class and the code to kickstart the spider." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 4 - Test Batch Scraping\n", + "\n", + "Change the `PAGES_TO_SCRAPE` value from `1` to `10`. Try if your code still works as intended to scrape 10 webpages. If there are errors in your code, fix them.\n", + "\n", + "In the cell below, place your entire code including the updated `IronhackSpdier` class and the code to kickstart the spider." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 5 - Scrape a Different Website\n", + "\n", + "Update the parameters passed to the `IronhackSpider` constructor so that you coder can crawl [books.toscrape.com](http://books.toscrape.com/). You will need to use a different `URL_PATTERN` (figure out the new url pattern by yourself) and write another parser function to be passed to `IronhackSpider`. \n", + "\n", + "In the cell below, place your entire code including the updated `IronhackSpdier` class and the code to kickstart the spider." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge 1 - Making Your Spider Unblockable\n", + "\n", + "Use techniques such as randomizing user agents and referers in your requests to reduce the likelihood that your spider is blocked by websites. [Here](http://blog.adnansiddiqi.me/5-strategies-to-write-unblock-able-web-scrapers-in-python/) is a great article to learn these techniques.\n", + "\n", + "In the cell below, place your entire code including the updated `IronhackSpdier` class and the code to kickstart the spider." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Bonus Challenge 2 - Making Asynchronous Calls\n", + "\n", + "Implement asynchronous calls to `IronhackSpider`. You will make requests in parallel to complete your tasks faster.\n", + "\n", + "In the cell below, place your entire code including the updated `IronhackSpdier` class and the code to kickstart the spider." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# your code here" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-advanced-web-scraping/your-code/main.ipynb b/module-1_labs/lab-advanced-web-scraping/your-code/main.ipynb index 257597a..33163f2 100644 --- a/module-1_labs/lab-advanced-web-scraping/your-code/main.ipynb +++ b/module-1_labs/lab-advanced-web-scraping/your-code/main.ipynb @@ -235,7 +235,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-api-scavenger-game/your-code/Scavenger Game.ipynb b/module-1_labs/lab-api-scavenger-game/your-code/Scavenger Game.ipynb new file mode 100644 index 0000000..b2eafd2 --- /dev/null +++ b/module-1_labs/lab-api-scavenger-game/your-code/Scavenger Game.ipynb @@ -0,0 +1,311 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 131, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import requests\n", + "import json\n", + "import matplotlib\n", + "import re\n", + "%matplotlib inline" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 1 Fork Languages" + ] + }, + { + "cell_type": "code", + "execution_count": 149, + "metadata": {}, + "outputs": [], + "source": [ + "url = \"https://api.github.com/repos/ironhack-datalabs/data-ber-10-19/forks\"\n", + "\n", + "headers = {\"Accept\": \"application/vnd.github.v3+json\",\n", + " \"Authorization\":\"ivywsip:cf17b20b3a1f9ae733dbbe820325d5605daa4979 https://api.github.com\"}" + ] + }, + { + "cell_type": "code", + "execution_count": 150, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "200" + ] + }, + "execution_count": 150, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response = requests.get(url,headers=headers)\n", + "response.status_code" + ] + }, + { + "cell_type": "code", + "execution_count": 151, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Jupyter Notebook'" + ] + }, + "execution_count": 151, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response.json()[0]['language']\n" + ] + }, + { + "cell_type": "code", + "execution_count": 152, + "metadata": {}, + "outputs": [], + "source": [ + "forks=response.json()" + ] + }, + { + "cell_type": "code", + "execution_count": 153, + "metadata": {}, + "outputs": [], + "source": [ + "lans=[]\n", + "\n", + "for fork in range(len(forks)):\n", + " lans.append(forks[fork]['language'])" + ] + }, + { + "cell_type": "code", + "execution_count": 154, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Jupyter Notebook', 'TSQL'}" + ] + }, + "execution_count": 154, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "languages = set(lans)\n", + "languages" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 2: Count Commits" + ] + }, + { + "cell_type": "code", + "execution_count": 190, + "metadata": {}, + "outputs": [], + "source": [ + "url = \"https://api.github.com/repos/ironhack-datalabs/data-ber-10-19/commits?since=2019-10-27T00:00:00Z\"\n", + "\n", + "headers = {\"Accept\": \"application/vnd.github.v3+json\",\n", + " \"Authorization\":\"ivywsip:cf17b20b3a1f9ae733dbbe820325d5605daa4979 https://api.github.com\"}" + ] + }, + { + "cell_type": "code", + "execution_count": 191, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "200" + ] + }, + "execution_count": 191, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response = requests.get(url,headers=headers)\n", + "response.status_code" + ] + }, + { + "cell_type": "code", + "execution_count": 201, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "11" + ] + }, + "execution_count": 201, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "num_commits = len(response.json())\n", + "num_commits" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Challenge 3: Hidden Cold Joke" + ] + }, + { + "cell_type": "code", + "execution_count": 239, + "metadata": {}, + "outputs": [], + "source": [ + "url = \"https://api.github.com/repos/ironhack-datalabs/scavenger/contents/17020\"\n", + "\n", + "headers = {\"Accept\": \"application/vnd.github.v3+json\",\n", + " \"Authorization\":\"ivywsip:cf17b20b3a1f9ae733dbbe820325d5605daa4979 https://api.github.com\"}" + ] + }, + { + "cell_type": "code", + "execution_count": 240, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "403" + ] + }, + "execution_count": 240, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response = requests.get(url,headers=headers)\n", + "response.status_code" + ] + }, + { + "cell_type": "code", + "execution_count": 241, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'message': \"API rate limit exceeded for 109.40.241.73. (But here's the good news: Authenticated requests get a higher rate limit. Check out the documentation for more details.)\",\n", + " 'documentation_url': 'https://developer.github.com/v3/#rate-limiting'}" + ] + }, + "execution_count": 241, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response.json()" + ] + }, + { + "cell_type": "code", + "execution_count": 234, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'17020'" + ] + }, + "execution_count": 234, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "response.json()[3]['name']" + ] + }, + { + "cell_type": "code", + "execution_count": 238, + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "0", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 6\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mscavenger\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0ms\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'type'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m==\u001b[0m\u001b[0;34m'dir'\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0mr\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mrequests\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0murl\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0mscavenger\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0ms\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'name'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0mheaders\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mheaders\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 8\u001b[0;31m \u001b[0mfiles\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mjson\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\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'name'\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;31mKeyError\u001b[0m: 0" + ] + } + ], + "source": [ + "scavenger = response.json()\n", + "\n", + "files = []\n", + "\n", + "for s in range(len(scavenger)):\n", + " if scavenger[s]['type']=='dir':\n", + " r = requests.get(url+scavenger[s]['name'],headers=headers)\n", + " files.append(r.json()[0]['name'])" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-1_labs/lab-coingecko-api/your code/example.ipynb b/module-1_labs/lab-coingecko-api/your code/example.ipynb index 07cb836..13072c4 100644 --- a/module-1_labs/lab-coingecko-api/your code/example.ipynb +++ b/module-1_labs/lab-coingecko-api/your code/example.ipynb @@ -1851,7 +1851,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.3" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-coingecko-api/your code/main.ipynb b/module-1_labs/lab-coingecko-api/your code/main.ipynb index e2665f3..cbf0db9 100644 --- a/module-1_labs/lab-coingecko-api/your code/main.ipynb +++ b/module-1_labs/lab-coingecko-api/your code/main.ipynb @@ -9,14 +9,17 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 20, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", + "import numpy as np\n", "import requests\n", "import json\n", "import matplotlib\n", + "import matplotlib.pyplot as plt\n", + "\n", "%matplotlib inline" ] }, @@ -29,10 +32,33 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "

" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "base = 'https://api.coingecko.com/api/v3/'\n", + "url = base + 'coins/bitcoin/market_chart?vs_currency=usd&days=30'\n", + "result = requests.get(url)\n", + "j_bc = result.json()\n", + "\n", + "df_bc = pd.DataFrame(j_bc['prices'], columns=['time', 'price'])\n", + "df_bc['time'] = pd.to_datetime(df_bc['time'], unit='ms')\n", + "df_bc.set_index('time',inplace=True)\n", + "df_bc.plot();\n" + ] }, { "cell_type": "markdown", @@ -43,10 +69,33 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "base = 'https://api.coingecko.com/api/v3/'\n", + "url_l = base + 'coins/litecoin/market_chart?vs_currency=usd&days=30'\n", + "result_l = requests.get(url_l)\n", + "j_lc = result_l.json()\n", + "\n", + "df_lc = pd.DataFrame(j_lc['prices'], columns=['time', 'price'])\n", + "df_lc['time'] = pd.to_datetime(df_lc['time'], unit='ms')\n", + "df_lc.set_index('time',inplace=True)\n", + "df_lc.plot();" + ] }, { "cell_type": "markdown", @@ -57,10 +106,43 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 31, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "base = 'https://api.coingecko.com/api/v3/'\n", + "url_d = base + 'coins/dogecoin/market_chart?vs_currency=usd&days=30'\n", + "result_d = requests.get(url_d)\n", + "j_dc = result_d.json()\n", + "\n", + "df_dc = pd.DataFrame(j_dc['prices'], columns=['time', 'price'])\n", + "df_dc['time'] = pd.to_datetime(df_dc['time'], unit='ms')\n", + "df_dc.set_index('time',inplace=True)\n", + "df_dc.plot()\n" + ] }, { "cell_type": "markdown", @@ -78,10 +160,152 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 34, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
date_timepricefile_name
015469056000000.00586001coin
115469920000000.00613901coin
215470784000000.00611701coin
315471648000000.00511901coin
415472512000000.00522901coin
............
23915723936000000.8919291irstcoin
24015724800000000.8635151irstcoin
24115725664000000.9065491irstcoin
24215727392000000.8934731irstcoin
24315727975640000.8563581irstcoin
\n", + "

2202 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " date_time price file_name\n", + "0 1546905600000 0.005860 01coin\n", + "1 1546992000000 0.006139 01coin\n", + "2 1547078400000 0.006117 01coin\n", + "3 1547164800000 0.005119 01coin\n", + "4 1547251200000 0.005229 01coin\n", + ".. ... ... ...\n", + "239 1572393600000 0.891929 1irstcoin\n", + "240 1572480000000 0.863515 1irstcoin\n", + "241 1572566400000 0.906549 1irstcoin\n", + "242 1572739200000 0.893473 1irstcoin\n", + "243 1572797564000 0.856358 1irstcoin\n", + "\n", + "[2202 rows x 3 columns]" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "url = base + 'coins/list'\n", + "result = requests.get(url)\n", + "j = result.json()\n", + "\n", + "df_list = pd.DataFrame(j)\n", + "df_list.head(10)\n", + "data_df = df_list.iloc[:10, 0]\n", + "data_df\n", + "data_list = []\n", + "\n", + "for i in data_df:\n", + " base = \"http://api.coingecko.com/api/v3/coins/\"\n", + " url = base + i + \"/market_chart?vs_currency=usd&days=300\"\n", + " result = requests.get(url)\n", + " data = result.json()\n", + " data_df = pd.DataFrame(data['prices'], columns = ['date_time','price'])\n", + " data_df[\"file_name\"] = i\n", + " data_list.append(data_df)\n", + "\n", + "data_series = pd.concat(data_list)\n", + "data_series" + ] }, { "cell_type": "markdown", @@ -114,7 +338,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.3" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-df-calculation-and-transformation/your-code/challenge-1.ipynb b/module-1_labs/lab-df-calculation-and-transformation/your-code/challenge-1.ipynb index 426e92a..df7666f 100644 --- a/module-1_labs/lab-df-calculation-and-transformation/your-code/challenge-1.ipynb +++ b/module-1_labs/lab-df-calculation-and-transformation/your-code/challenge-1.ipynb @@ -17,11 +17,14 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 29, "metadata": {}, "outputs": [], "source": [ - "# import libraries\n" + "# import libraries\n", + "import pandas as pd\n", + "import numpy as np\n", + "import re" ] }, { @@ -37,11 +40,266 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
#NameType 1Type 2TotalHPAttackDefenseSp. AtkSp. DefSpeedGenerationLegendary
01BulbasaurGrassPoison3184549496565451False
12IvysaurGrassPoison4056062638080601False
23VenusaurGrassPoison525808283100100801False
33VenusaurMega VenusaurGrassPoison62580100123122120801False
44CharmanderFireNaN3093952436050651False
..........................................
795719DiancieRockFairy60050100150100150506True
796719DiancieMega DiancieRockFairy700501601101601101106True
797720HoopaHoopa ConfinedPsychicGhost6008011060150130706True
798720HoopaHoopa UnboundPsychicDark6808016060170130806True
799721VolcanionFireWater6008011012013090706True
\n", + "

800 rows × 13 columns

\n", + "
" + ], + "text/plain": [ + " # Name Type 1 Type 2 Total HP Attack Defense \\\n", + "0 1 Bulbasaur Grass Poison 318 45 49 49 \n", + "1 2 Ivysaur Grass Poison 405 60 62 63 \n", + "2 3 Venusaur Grass Poison 525 80 82 83 \n", + "3 3 VenusaurMega Venusaur Grass Poison 625 80 100 123 \n", + "4 4 Charmander Fire NaN 309 39 52 43 \n", + ".. ... ... ... ... ... .. ... ... \n", + "795 719 Diancie Rock Fairy 600 50 100 150 \n", + "796 719 DiancieMega Diancie Rock Fairy 700 50 160 110 \n", + "797 720 HoopaHoopa Confined Psychic Ghost 600 80 110 60 \n", + "798 720 HoopaHoopa Unbound Psychic Dark 680 80 160 60 \n", + "799 721 Volcanion Fire Water 600 80 110 120 \n", + "\n", + " Sp. Atk Sp. Def Speed Generation Legendary \n", + "0 65 65 45 1 False \n", + "1 80 80 60 1 False \n", + "2 100 100 80 1 False \n", + "3 122 120 80 1 False \n", + "4 60 50 65 1 False \n", + ".. ... ... ... ... ... \n", + "795 100 150 50 6 True \n", + "796 160 110 110 6 True \n", + "797 150 130 70 6 True \n", + "798 170 130 80 6 True \n", + "799 130 90 70 6 True \n", + "\n", + "[800 rows x 13 columns]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# import data set\n" + "# import data set\n", + "pokemon = pd.read_csv('Pokemon.csv')\n", + "pokemon" ] }, { @@ -53,11 +311,244 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
#NameType 1Type 2TotalHPAttackDefenseSp. AtkSp. DefSpeedGenerationLegendary
01BulbasaurGrassPoison3184549496565451False
12IvysaurGrassPoison4056062638080601False
23VenusaurGrassPoison525808283100100801False
33VenusaurMega VenusaurGrassPoison62580100123122120801False
44CharmanderFireNaN3093952436050651False
55CharmeleonFireNaN4055864588065801False
66CharizardFireFlying534788478109851001False
76CharizardMega Charizard XFireDragon63478130111130851001False
86CharizardMega Charizard YFireFlying63478104781591151001False
97SquirtleWaterNaN3144448655064431False
\n", + "
" + ], + "text/plain": [ + " # Name Type 1 Type 2 Total HP Attack Defense \\\n", + "0 1 Bulbasaur Grass Poison 318 45 49 49 \n", + "1 2 Ivysaur Grass Poison 405 60 62 63 \n", + "2 3 Venusaur Grass Poison 525 80 82 83 \n", + "3 3 VenusaurMega Venusaur Grass Poison 625 80 100 123 \n", + "4 4 Charmander Fire NaN 309 39 52 43 \n", + "5 5 Charmeleon Fire NaN 405 58 64 58 \n", + "6 6 Charizard Fire Flying 534 78 84 78 \n", + "7 6 CharizardMega Charizard X Fire Dragon 634 78 130 111 \n", + "8 6 CharizardMega Charizard Y Fire Flying 634 78 104 78 \n", + "9 7 Squirtle Water NaN 314 44 48 65 \n", + "\n", + " Sp. Atk Sp. Def Speed Generation Legendary \n", + "0 65 65 45 1 False \n", + "1 80 80 60 1 False \n", + "2 100 100 80 1 False \n", + "3 122 120 80 1 False \n", + "4 60 50 65 1 False \n", + "5 80 65 80 1 False \n", + "6 109 85 100 1 False \n", + "7 130 85 100 1 False \n", + "8 159 115 100 1 False \n", + "9 50 64 43 1 False " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# enter your code here\n" + "# enter your code here\n", + "pokemon.head(10)" ] }, { @@ -96,13 +587,61 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 27, "metadata": {}, "outputs": [], "source": [ - "# enter your code here\n" + "# enter your code here\n", + "type_1 = list(pd.DataFrame(pokemon['Type 1'].value_counts()).index)\n", + "type_2 = list(pd.DataFrame(pokemon['Type 2'].value_counts()).index)\n", + "\n", + "all_types = set(type_1+type_2)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Bug',\n", + " 'Dark',\n", + " 'Dragon',\n", + " 'Electric',\n", + " 'Fairy',\n", + " 'Fighting',\n", + " 'Fire',\n", + " 'Flying',\n", + " 'Ghost',\n", + " 'Grass',\n", + " 'Ground',\n", + " 'Ice',\n", + " 'Normal',\n", + " 'Poison',\n", + " 'Psychic',\n", + " 'Rock',\n", + " 'Steel',\n", + " 'Water'}" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "all_types" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "markdown", "metadata": {}, @@ -114,16 +653,75 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 51, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "[] 752\n", + "[Mega Charizard] 2\n", + "[Mega Mewtwo] 2\n", + "[Mega Beedrill] 1\n", + "[Mega Slowbro] 1\n", + "[Mega Mawile] 1\n", + "[Mega Abomasnow] 1\n", + "[Mega Alakazam] 1\n", + "[Mega Sableye] 1\n", + "[Mega Lucario] 1\n", + "[Mega Pidgeot] 1\n", + "[Mega Gardevoir] 1\n", + "[Mega Garchomp] 1\n", + "[Mega Swampert] 1\n", + "[Mega Aggron] 1\n", + "[Mega Lopunny] 1\n", + "[Mega Blastoise] 1\n", + "[Mega Blaziken] 1\n", + "[Mega Rayquaza] 1\n", + "[Mega Sceptile] 1\n", + "[Mega Latios] 1\n", + "[Mega Venusaur] 1\n", + "[Mega Tyranitar] 1\n", + "[Mega Gallade] 1\n", + "[Mega Gengar] 1\n", + "[Mega Houndoom] 1\n", + "[Mega Audino] 1\n", + "[Mega Metagross] 1\n", + "[Mega Heracross] 1\n", + "[Mega Salamence] 1\n", + "[Mega Scizor] 1\n", + "[Mega Glalie] 1\n", + "[Mega Steelix] 1\n", + "[Mega Absol] 1\n", + "[Mega Ampharos] 1\n", + "[Mega Banette] 1\n", + "[Mega Altaria] 1\n", + "[Mega Aerodactyl] 1\n", + "[Mega Camerupt] 1\n", + "[Mega Gyarados] 1\n", + "[Mega Sharpedo] 1\n", + "[Mega Pinsir] 1\n", + "[Mega Manectric] 1\n", + "[Mega Diancie] 1\n", + "[Mega Kangaskhan] 1\n", + "[Mega Medicham] 1\n", + "[Mega Latias] 1\n", + "Name: Name, dtype: int64" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# enter your code here\n", - "\n", + "pattern = r'\\w+(Mega\\s\\w+)'\n", + "pokemon['Name'] = pokemon['Name'].str.replace(pattern,r'\\1')\n", "\n", "# test transformed data\n", "\n", - "pokemon.head(10)" + "pokemon['Name'].str.findall(r'Mega\\s\\w+').value_counts()" ] }, { @@ -137,11 +735,12 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 58, "metadata": {}, "outputs": [], "source": [ - "# enter your code here\n" + "# enter your code here\n", + "pokemon = pokemon.assign(AD_Ratio=round((pokemon['Attack']/pokemon['Defense']),2))" ] }, { @@ -153,11 +752,84 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 67, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
#NameType 1Type 2TotalHPAttackDefenseSp. AtkSp. DefSpeedGenerationLegendaryAD_Ratio
429386DeoxysAttack FormePsychicNaN6005018020180201503True9.0
\n", + "
" + ], + "text/plain": [ + " # Name Type 1 Type 2 Total HP Attack Defense \\\n", + "429 386 DeoxysAttack Forme Psychic NaN 600 50 180 20 \n", + "\n", + " Sp. Atk Sp. Def Speed Generation Legendary AD_Ratio \n", + "429 180 20 150 3 True 9.0 " + ] + }, + "execution_count": 67, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# enter your code here\n" + "# enter your code here\n", + "pokemon.loc[pokemon['AD_Ratio']==pokemon['AD_Ratio'].max()]" ] }, { @@ -169,11 +841,84 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 68, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
#NameType 1Type 2TotalHPAttackDefenseSp. AtkSp. DefSpeedGenerationLegendaryAD_Ratio
230213ShuckleBugRock50520102301023052False0.04
\n", + "
" + ], + "text/plain": [ + " # Name Type 1 Type 2 Total HP Attack Defense Sp. Atk Sp. Def \\\n", + "230 213 Shuckle Bug Rock 505 20 10 230 10 230 \n", + "\n", + " Speed Generation Legendary AD_Ratio \n", + "230 5 2 False 0.04 " + ] + }, + "execution_count": 68, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# enter your code here\n" + "# enter your code here\n", + "pokemon.loc[pokemon['AD_Ratio']==pokemon['AD_Ratio'].min()]" ] }, { @@ -191,11 +936,330 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 72, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 False\n", + "1 False\n", + "2 False\n", + "3 False\n", + "4 True\n", + " ... \n", + "795 False\n", + "796 False\n", + "797 False\n", + "798 False\n", + "799 False\n", + "Name: Type 2, Length: 800, dtype: bool" + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pokemon['Type 2'].isnull()" + ] + }, + { + "cell_type": "code", + "execution_count": 78, "metadata": {}, "outputs": [], "source": [ - "# enter your code here\n" + "# enter your code her\n", + "pokemon.loc[(pokemon['Type 2'].isnull()==True),'combo_type'] = pokemon['Type 1']+'-'+pokemon['Type 1']\n", + "pokemon.loc[(pokemon['Type 2'].isnull()==False), 'combo_type'] = pokemon['Type 1']+'-'+pokemon['Type 2']" + ] + }, + { + "cell_type": "code", + "execution_count": 79, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
#NameType 1Type 2TotalHPAttackDefenseSp. AtkSp. DefSpeedGenerationLegendaryAD_Ratiocombo_type
01BulbasaurGrassPoison3184549496565451False1.00Grass-Poison
12IvysaurGrassPoison4056062638080601False0.98Grass-Poison
23VenusaurGrassPoison525808283100100801False0.99Grass-Poison
33Mega VenusaurGrassPoison62580100123122120801False0.81Grass-Poison
44CharmanderFireNaN3093952436050651False1.21Fire-Fire
................................................
795719DiancieRockFairy60050100150100150506True0.67Rock-Fairy
796719Mega DiancieRockFairy700501601101601101106True1.45Rock-Fairy
797720HoopaHoopa ConfinedPsychicGhost6008011060150130706True1.83Psychic-Ghost
798720HoopaHoopa UnboundPsychicDark6808016060170130806True2.67Psychic-Dark
799721VolcanionFireWater6008011012013090706True0.92Fire-Water
\n", + "

800 rows × 15 columns

\n", + "
" + ], + "text/plain": [ + " # Name Type 1 Type 2 Total HP Attack Defense \\\n", + "0 1 Bulbasaur Grass Poison 318 45 49 49 \n", + "1 2 Ivysaur Grass Poison 405 60 62 63 \n", + "2 3 Venusaur Grass Poison 525 80 82 83 \n", + "3 3 Mega Venusaur Grass Poison 625 80 100 123 \n", + "4 4 Charmander Fire NaN 309 39 52 43 \n", + ".. ... ... ... ... ... .. ... ... \n", + "795 719 Diancie Rock Fairy 600 50 100 150 \n", + "796 719 Mega Diancie Rock Fairy 700 50 160 110 \n", + "797 720 HoopaHoopa Confined Psychic Ghost 600 80 110 60 \n", + "798 720 HoopaHoopa Unbound Psychic Dark 680 80 160 60 \n", + "799 721 Volcanion Fire Water 600 80 110 120 \n", + "\n", + " Sp. Atk Sp. Def Speed Generation Legendary AD_Ratio combo_type \n", + "0 65 65 45 1 False 1.00 Grass-Poison \n", + "1 80 80 60 1 False 0.98 Grass-Poison \n", + "2 100 100 80 1 False 0.99 Grass-Poison \n", + "3 122 120 80 1 False 0.81 Grass-Poison \n", + "4 60 50 65 1 False 1.21 Fire-Fire \n", + ".. ... ... ... ... ... ... ... \n", + "795 100 150 50 6 True 0.67 Rock-Fairy \n", + "796 160 110 110 6 True 1.45 Rock-Fairy \n", + "797 150 130 70 6 True 1.83 Psychic-Ghost \n", + "798 170 130 80 6 True 2.67 Psychic-Dark \n", + "799 130 90 70 6 True 0.92 Fire-Water \n", + "\n", + "[800 rows x 15 columns]" + ] + }, + "execution_count": 79, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pokemon" ] }, { @@ -207,11 +1271,167 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 91, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
#NameType 1Type 2TotalHPAttackDefenseSp. AtkSp. DefSpeedGenerationLegendaryAD_Ratiocombo_type
429386DeoxysAttack FormePsychicNaN6005018020180201503True9.00Psychic-Psychic
347318CarvanhaWaterDark3054590206520653False4.50Water-Dark
1915Mega BeedrillBugPoison495651504015801451False3.75Bug-Poison
453408CranidosRockNaN35067125403030584False3.12Rock-Rock
428386DeoxysNormal FormePsychicNaN6005015050150501503True3.00Psychic-Psychic
\n", + "
" + ], + "text/plain": [ + " # Name Type 1 Type 2 Total HP Attack Defense \\\n", + "429 386 DeoxysAttack Forme Psychic NaN 600 50 180 20 \n", + "347 318 Carvanha Water Dark 305 45 90 20 \n", + "19 15 Mega Beedrill Bug Poison 495 65 150 40 \n", + "453 408 Cranidos Rock NaN 350 67 125 40 \n", + "428 386 DeoxysNormal Forme Psychic NaN 600 50 150 50 \n", + "\n", + " Sp. Atk Sp. Def Speed Generation Legendary AD_Ratio combo_type \n", + "429 180 20 150 3 True 9.00 Psychic-Psychic \n", + "347 65 20 65 3 False 4.50 Water-Dark \n", + "19 15 80 145 1 False 3.75 Bug-Poison \n", + "453 30 30 58 4 False 3.12 Rock-Rock \n", + "428 150 50 150 3 True 3.00 Psychic-Psychic " + ] + }, + "execution_count": 91, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# enter your code here\n" + "# enter your code here\n", + "# pokemon['AD_Ratio'].sort_values(ascending=False).head(5).index\n", + "pokemon.iloc[(pokemon['AD_Ratio'].sort_values(ascending=False).head(5).index)]" ] }, { @@ -225,11 +1445,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 95, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['Psychic-Psychic', 'Water-Dark', 'Bug-Poison', 'Rock-Rock']" + ] + }, + "execution_count": 95, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# enter your code here\n" + "# enter your code here\n", + "top_ad = list(pokemon.iloc[(pokemon['AD_Ratio'].sort_values(ascending=False).head(5).index)]['combo_type'].value_counts().index)\n", + "top_ad" ] }, { @@ -245,11 +1478,149 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 101, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
#TotalHPAttackDefenseSp. AtkSp. DefSpeedGenerationLegendaryAD_Ratio
combo_type
Bug-Poison199.166667347.91666753.75000068.33333358.08333342.50000059.33333365.9166672.3333330.0000001.315833
Psychic-Psychic381.973684464.55263272.55263264.94736867.23684298.55263282.39473778.8684213.3421050.2368421.164211
Rock-Rock410.111111409.44444467.111111103.333333107.22222240.55555658.33333332.8888893.8888890.1111111.258889
Water-Dark347.666667493.83333369.166667120.00000065.16666788.83333363.50000087.1666673.1666670.0000002.291667
\n", + "
" + ], + "text/plain": [ + " # Total HP Attack Defense \\\n", + "combo_type \n", + "Bug-Poison 199.166667 347.916667 53.750000 68.333333 58.083333 \n", + "Psychic-Psychic 381.973684 464.552632 72.552632 64.947368 67.236842 \n", + "Rock-Rock 410.111111 409.444444 67.111111 103.333333 107.222222 \n", + "Water-Dark 347.666667 493.833333 69.166667 120.000000 65.166667 \n", + "\n", + " Sp. Atk Sp. Def Speed Generation Legendary \\\n", + "combo_type \n", + "Bug-Poison 42.500000 59.333333 65.916667 2.333333 0.000000 \n", + "Psychic-Psychic 98.552632 82.394737 78.868421 3.342105 0.236842 \n", + "Rock-Rock 40.555556 58.333333 32.888889 3.888889 0.111111 \n", + "Water-Dark 88.833333 63.500000 87.166667 3.166667 0.000000 \n", + "\n", + " AD_Ratio \n", + "combo_type \n", + "Bug-Poison 1.315833 \n", + "Psychic-Psychic 1.164211 \n", + "Rock-Rock 1.258889 \n", + "Water-Dark 2.291667 " + ] + }, + "execution_count": 101, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# enter your code here\n" + "# enter your code here\n", + "pokemon.loc[(pokemon['combo_type'].isin(top_ad))].groupby('combo_type').mean()" ] } ], @@ -269,7 +1640,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-df-calculation-and-transformation/your-code/challenge-2.ipynb b/module-1_labs/lab-df-calculation-and-transformation/your-code/challenge-2.ipynb index b15cf7f..09565ed 100644 --- a/module-1_labs/lab-df-calculation-and-transformation/your-code/challenge-2.ipynb +++ b/module-1_labs/lab-df-calculation-and-transformation/your-code/challenge-2.ipynb @@ -32,7 +32,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -43,11 +43,153 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
#NameType 1Type 2TotalHPAttackDefenseSp. AtkSp. DefSpeedGenerationLegendary
01BulbasaurGrassPoison3184549496565451False
12IvysaurGrassPoison4056062638080601False
23VenusaurGrassPoison525808283100100801False
33VenusaurMega VenusaurGrassPoison62580100123122120801False
44CharmanderFireNaN3093952436050651False
\n", + "
" + ], + "text/plain": [ + " # Name Type 1 Type 2 Total HP Attack Defense \\\n", + "0 1 Bulbasaur Grass Poison 318 45 49 49 \n", + "1 2 Ivysaur Grass Poison 405 60 62 63 \n", + "2 3 Venusaur Grass Poison 525 80 82 83 \n", + "3 3 VenusaurMega Venusaur Grass Poison 625 80 100 123 \n", + "4 4 Charmander Fire NaN 309 39 52 43 \n", + "\n", + " Sp. Atk Sp. Def Speed Generation Legendary \n", + "0 65 65 45 1 False \n", + "1 80 80 60 1 False \n", + "2 100 100 80 1 False \n", + "3 122 120 80 1 False \n", + "4 60 50 65 1 False " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# importing the dataset and inspect the first few rows of the data\n", "pokemon = pd.read_csv('Pokemon.csv')\n", @@ -78,11 +220,26 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True 800\n", + "dtype: int64" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your code here" + "# your code here\n", + "(pokemon['Total']==pokemon['HP']+pokemon['Attack']+pokemon['Defense']+pokemon['Sp. Atk']+pokemon['Sp. Def']+pokemon['Speed']).value_counts()\n", + "\n", + "\n" ] }, { @@ -188,7 +345,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-job-board-scraping/your-code/main.ipynb b/module-1_labs/lab-job-board-scraping/your-code/main.ipynb index 7dab1ee..39237f7 100644 --- a/module-1_labs/lab-job-board-scraping/your-code/main.ipynb +++ b/module-1_labs/lab-job-board-scraping/your-code/main.ipynb @@ -107,153 +107,153 @@ " \n", " \n", " 0\n", - " Master Data Management Architect /Manager\n", - " Synergy Business Consulting, Inc.\n", - " Teaneck, New Jersey, United States\n", + " IT Senior Associate\n", + " Kearney & Company\n", + " McLean, VA, US\n", " \n", " \n", " 1\n", - " SEO Manager\n", - " Onward Select\n", - " Atlanta, Georgia\n", + " Intern: Data Analysis/Process Improvement Prog...\n", + " Juniper Networks\n", + " Sunnyvale, CA, US\n", " \n", " \n", " 2\n", - " Data Governance Analyst\n", - " Momentum Consulting Corporation\n", - " Miami, Florida\n", + " Associate / Business Analyst (Consulting Data ...\n", + " Foresight Associates, LLC\n", + " Greater Minneapolis-St. Paul Area\n", " \n", " \n", " 3\n", - " Data Systems Analyst\n", - " Cypress HCM\n", - " San Francisco, California\n", + " Software Engineer, Data Models & Analysis\n", + " Improbable\n", + " Washington, D.C., DC, US\n", " \n", " \n", " 4\n", - " Data Analyst w/ AWS\n", - " Digipulse Technologies Inc.\n", - " Greensboro, North Carolina, United States\n", + " Manager, Reporting and Data Analysis\n", + " The Madison Square Garden Company\n", + " Greater New York City Area\n", " \n", " \n", " 5\n", - " Rebate & Data Analyst (Contract)\n", - " SolomonEdwards\n", - " Philadelphia, Pennsylvania\n", + " Data Analysis Manager\n", + " Capital One\n", + " McLean, VA, US\n", " \n", " \n", " 6\n", - " Tibco Spotfire Data Analyst\n", - " GSquared Group\n", - " Atlanta, Georgia\n", + " Data Management and Analysis Services Analyst I\n", + " Conduent\n", + " Ocoee, Florida\n", " \n", " \n", " 7\n", - " Data Modeler\n", - " Confiance Tech Solutions\n", - " Greater Atlanta Area\n", + " Manager, Data Analysis & Insights\n", + " The Coca-Cola Company\n", + " Atlanta, GA, US\n", " \n", " \n", " 8\n", - " HEDIS Quality Analyst\n", - " HealthTECH Resources, Inc.\n", - " New York, New York\n", + " Data Analyst\n", + " Viper Staffing Services L.L.C.\n", + " Glendale, California, United States\n", " \n", " \n", " 9\n", - " Senior Financial Analyst\n", - " Talent 360 Solutions\n", - " Greater Atlanta Area\n", + " Sr. Bioinformatics Scientist\n", + " The EAC Agency\n", + " Fremont, California, United States\n", " \n", " \n", " 10\n", - " Manager of Business Intelligence\n", - " Beyond Finance, Inc.\n", - " Houston, Texas\n", + " Programmer Anaylyst\n", + " Valley First Credit Union\n", + " Modesto, California Area\n", " \n", " \n", " 11\n", - " Manager, Provider Network Development (Healthc...\n", - " Remedy Partners\n", - " Norwalk, Connecticut, United States\n", + " Data Analysis Coordinator\n", + " The Job Network\n", + " Troy, NY, US\n", " \n", " \n", " 12\n", - " IFRS9/CECL Implementation\n", - " New York Technology Partners\n", - " New York, New York, United States\n", + " Sr. Manager, Strategic Business Intelligence &...\n", + " Project Assistants\n", + " Charlotte, NC, US\n", " \n", " \n", " 13\n", - " Medical Director Pharmacovigilance\n", - " Integrated Resources, Inc ( IRI )\n", - " Cambridge, Massachusetts\n", + " Operations Manager\n", + " California Umbrella\n", + " 92509, Riverside, California, United States\n", " \n", " \n", " 14\n", - " Sr. Internal Auditor\n", - " Interface\n", - " 1280 W Peachtree St NW, Atlanta, Georgia 30309\n", + " DataStage Developer\n", + " Confidential\n", + " Bellevue, Washington, United States\n", " \n", " \n", " 15\n", - " Workday Consultant\n", - " Amiseq Inc.\n", - " Frisco, Texas, United States\n", + " Sr. Systems Engineer-Data Analysis\n", + " Vprecruiter\n", + " Bethesda, MD, US\n", " \n", " \n", " 16\n", - " Vice President - Counter Party Credit\n", - " Madison-Davis, LLC\n", - " New York, New York, United States\n", + " Scientist\n", + " Nantero\n", + " Woburn, Massachusetts\n", " \n", " \n", " 17\n", - " Data Analyst\n", - " WorkFusion\n", - " New York City, NY, US\n", + " Procurement Executive – Data Analysis (Contract)\n", + " Blue Signal Search\n", + " Decatur, IL, US\n", " \n", " \n", " 18\n", - " Senior Manager Data Analysis\n", - " Jobs @ TheJobNetwork\n", - " Deerfield, IL, US\n", + " Manager, Data and Analysis\n", + " KUOW Public Radio\n", + " Seattle, WA, US\n", " \n", " \n", " 19\n", - " Data Analyst\n", - " ipsy\n", - " San Mateo, CA, US\n", + " Manager of Data Analysis\n", + " Summit Public Schools\n", + " Redwood City, CA, US\n", " \n", " \n", " 20\n", - " Data Analyst\n", - " Headspace Inc.\n", - " Santa Monica, CA, US\n", + " Data Management, Analysis & Reporting\n", + " Bank of America\n", + " Newark, DE, US\n", " \n", " \n", " 21\n", - " Master Data Analyst\n", - " Larsen & Toubro Infotech Ltd (LTI)\n", - " San Jose, California, United States\n", + " Data Analysis Manager\n", + " Genworth\n", + " Richmond, VA, US\n", " \n", " \n", " 22\n", - " Senior Data Analyst - Finance & Platform Analy...\n", - " Twitch\n", - " San Francisco, CA, US\n", + " Data Analysis\n", + " ClearedJobs.Net\n", + " Redstone Arsenal, AL, US\n", " \n", " \n", " 23\n", - " Procurement Specialist – MRO, Data Analysis\n", - " Blue Signal Search\n", - " Decatur, IL, US\n", + " Automation Engineer - Data Analysis/Simulation\n", + " Wynright Corporation\n", + " Bolingbrook, IL, US\n", " \n", " \n", " 24\n", - " Operations Data Analyst & Program Manager - 74307\n", - " AMD\n", - " Santa Clara, CA, US\n", + " Manager of Data Analysis\n", + " Summit Public Schools (Public Charter Network)\n", + " Redwood City, CA, US\n", " \n", " \n", "\n", @@ -261,85 +261,85 @@ ], "text/plain": [ " Title \\\n", - "0 Master Data Management Architect /Manager \n", - "1 SEO Manager \n", - "2 Data Governance Analyst \n", - "3 Data Systems Analyst \n", - "4 Data Analyst w/ AWS \n", - "5 Rebate & Data Analyst (Contract) \n", - "6 Tibco Spotfire Data Analyst \n", - "7 Data Modeler \n", - "8 HEDIS Quality Analyst \n", - "9 Senior Financial Analyst \n", - "10 Manager of Business Intelligence \n", - "11 Manager, Provider Network Development (Healthc... \n", - "12 IFRS9/CECL Implementation \n", - "13 Medical Director Pharmacovigilance \n", - "14 Sr. Internal Auditor \n", - "15 Workday Consultant \n", - "16 Vice President - Counter Party Credit \n", - "17 Data Analyst \n", - "18 Senior Manager Data Analysis \n", - "19 Data Analyst \n", - "20 Data Analyst \n", - "21 Master Data Analyst \n", - "22 Senior Data Analyst - Finance & Platform Analy... \n", - "23 Procurement Specialist – MRO, Data Analysis \n", - "24 Operations Data Analyst & Program Manager - 74307 \n", + "0 IT Senior Associate \n", + "1 Intern: Data Analysis/Process Improvement Prog... \n", + "2 Associate / Business Analyst (Consulting Data ... \n", + "3 Software Engineer, Data Models & Analysis \n", + "4 Manager, Reporting and Data Analysis \n", + "5 Data Analysis Manager \n", + "6 Data Management and Analysis Services Analyst I \n", + "7 Manager, Data Analysis & Insights \n", + "8 Data Analyst \n", + "9 Sr. Bioinformatics Scientist \n", + "10 Programmer Anaylyst \n", + "11 Data Analysis Coordinator \n", + "12 Sr. Manager, Strategic Business Intelligence &... \n", + "13 Operations Manager \n", + "14 DataStage Developer \n", + "15 Sr. Systems Engineer-Data Analysis \n", + "16 Scientist \n", + "17 Procurement Executive – Data Analysis (Contract) \n", + "18 Manager, Data and Analysis \n", + "19 Manager of Data Analysis \n", + "20 Data Management, Analysis & Reporting \n", + "21 Data Analysis Manager \n", + "22 Data Analysis \n", + "23 Automation Engineer - Data Analysis/Simulation \n", + "24 Manager of Data Analysis \n", "\n", - " Company \\\n", - "0 Synergy Business Consulting, Inc. \n", - "1 Onward Select \n", - "2 Momentum Consulting Corporation \n", - "3 Cypress HCM \n", - "4 Digipulse Technologies Inc. \n", - "5 SolomonEdwards \n", - "6 GSquared Group \n", - "7 Confiance Tech Solutions \n", - "8 HealthTECH Resources, Inc. \n", - "9 Talent 360 Solutions \n", - "10 Beyond Finance, Inc. \n", - "11 Remedy Partners \n", - "12 New York Technology Partners \n", - "13 Integrated Resources, Inc ( IRI ) \n", - "14 Interface \n", - "15 Amiseq Inc. \n", - "16 Madison-Davis, LLC \n", - "17 WorkFusion \n", - "18 Jobs @ TheJobNetwork \n", - "19 ipsy \n", - "20 Headspace Inc. \n", - "21 Larsen & Toubro Infotech Ltd (LTI) \n", - "22 Twitch \n", - "23 Blue Signal Search \n", - "24 AMD \n", + " Company \\\n", + "0 Kearney & Company \n", + "1 Juniper Networks \n", + "2 Foresight Associates, LLC \n", + "3 Improbable \n", + "4 The Madison Square Garden Company \n", + "5 Capital One \n", + "6 Conduent \n", + "7 The Coca-Cola Company \n", + "8 Viper Staffing Services L.L.C. \n", + "9 The EAC Agency \n", + "10 Valley First Credit Union \n", + "11 The Job Network \n", + "12 Project Assistants \n", + "13 California Umbrella \n", + "14 Confidential \n", + "15 Vprecruiter \n", + "16 Nantero \n", + "17 Blue Signal Search \n", + "18 KUOW Public Radio \n", + "19 Summit Public Schools \n", + "20 Bank of America \n", + "21 Genworth \n", + "22 ClearedJobs.Net \n", + "23 Wynright Corporation \n", + "24 Summit Public Schools (Public Charter Network) \n", "\n", - " Location \n", - "0 Teaneck, New Jersey, United States \n", - "1 Atlanta, Georgia \n", - "2 Miami, Florida \n", - "3 San Francisco, California \n", - "4 Greensboro, North Carolina, United States \n", - "5 Philadelphia, Pennsylvania \n", - "6 Atlanta, Georgia \n", - "7 Greater Atlanta Area \n", - "8 New York, New York \n", - "9 Greater Atlanta Area \n", - "10 Houston, Texas \n", - "11 Norwalk, Connecticut, United States \n", - "12 New York, New York, United States \n", - "13 Cambridge, Massachusetts \n", - "14 1280 W Peachtree St NW, Atlanta, Georgia 30309 \n", - "15 Frisco, Texas, United States \n", - "16 New York, New York, United States \n", - "17 New York City, NY, US \n", - "18 Deerfield, IL, US \n", - "19 San Mateo, CA, US \n", - "20 Santa Monica, CA, US \n", - "21 San Jose, California, United States \n", - "22 San Francisco, CA, US \n", - "23 Decatur, IL, US \n", - "24 Santa Clara, CA, US " + " Location \n", + "0 McLean, VA, US \n", + "1 Sunnyvale, CA, US \n", + "2 Greater Minneapolis-St. Paul Area \n", + "3 Washington, D.C., DC, US \n", + "4 Greater New York City Area \n", + "5 McLean, VA, US \n", + "6 Ocoee, Florida \n", + "7 Atlanta, GA, US \n", + "8 Glendale, California, United States \n", + "9 Fremont, California, United States \n", + "10 Modesto, California Area \n", + "11 Troy, NY, US \n", + "12 Charlotte, NC, US \n", + "13 92509, Riverside, California, United States \n", + "14 Bellevue, Washington, United States \n", + "15 Bethesda, MD, US \n", + "16 Woburn, Massachusetts \n", + "17 Decatur, IL, US \n", + "18 Seattle, WA, US \n", + "19 Redwood City, CA, US \n", + "20 Newark, DE, US \n", + "21 Richmond, VA, US \n", + "22 Redstone Arsenal, AL, US \n", + "23 Bolingbrook, IL, US \n", + "24 Redwood City, CA, US " ] }, "execution_count": 2, @@ -372,11 +372,185 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 69, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "\n", + "def scrape_linkedin_job_search_pages(keywords,num_pages):\n", + " \n", + " \n", + " BASE_URL = 'https://www.linkedin.com/jobs/search/?'\n", + " scrape_url = ''.join([BASE_URL, 'keywords=', keywords])\n", + "\n", + " columns = ['Title', 'Company', 'Location']\n", + " data = pd.DataFrame(columns=columns)\n", + " \n", + " for num in range(num_pages):\n", + " if num == 0:\n", + " page = requests.get(scrape_url)\n", + " else:\n", + " page = requests.get(''.join([scrape_url,'&start=',str(num*25)]))\n", + " soup = BeautifulSoup(page.text, 'html.parser')\n", + " titles = []\n", + " companies = []\n", + " locations = []\n", + " for card in soup.select(\"div.result-card__contents\"):\n", + " title = card.findChild(\"h3\", recursive=False)\n", + " company = card.findChild(\"h4\", recursive=False)\n", + " location = card.findChild(\"span\", attrs={\"class\": \"job-result-card__location\"}, recursive=True)\n", + " titles.append(title.string)\n", + " companies.append(company.string)\n", + " locations.append(location.string)\n", + " zipped = zip(titles, companies, locations)\n", + " for z in list(zipped):\n", + " data=data.append({'Title' : z[0] , 'Company' : z[1], 'Location': z[2]} , ignore_index=True)\n", + " \n", + " return data\n" + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TitleCompanyLocation
0Sr. Data Analyst – Predictive & Inferential An...Peyton Resource GroupArlington, Texas
1Manager, Data and AnalysisDigitas North AmericaGreater New York City Area
2Data Analysis ManagerAddison GroupHouston, TX, US
3Manager, Reporting and Data AnalysisThe Madison Square Garden CompanyGreater New York City Area
4Senior Data AnalystiTech SolutionsPhiladelphia, Pennsylvania
............
145Data AnalystBrooksourcePhiladelphia, Pennsylvania
146Data AnalystPartner's Consulting, Inc.Philadelphia, Pennsylvania
147Data AnalystNew York Life Insurance CompanyNew York City, NY, US
148Data Analyst24 Seven LLCPortland, Oregon
149Manager, Data Architecture and AnalysisVerizon ConnectAtlanta, GA, US
\n", + "

150 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Title \\\n", + "0 Sr. Data Analyst – Predictive & Inferential An... \n", + "1 Manager, Data and Analysis \n", + "2 Data Analysis Manager \n", + "3 Manager, Reporting and Data Analysis \n", + "4 Senior Data Analyst \n", + ".. ... \n", + "145 Data Analyst \n", + "146 Data Analyst \n", + "147 Data Analyst \n", + "148 Data Analyst \n", + "149 Manager, Data Architecture and Analysis \n", + "\n", + " Company Location \n", + "0 Peyton Resource Group Arlington, Texas \n", + "1 Digitas North America Greater New York City Area \n", + "2 Addison Group Houston, TX, US \n", + "3 The Madison Square Garden Company Greater New York City Area \n", + "4 iTech Solutions Philadelphia, Pennsylvania \n", + ".. ... ... \n", + "145 Brooksource Philadelphia, Pennsylvania \n", + "146 Partner's Consulting, Inc. Philadelphia, Pennsylvania \n", + "147 New York Life Insurance Company New York City, NY, US \n", + "148 24 Seven LLC Portland, Oregon \n", + "149 Verizon Connect Atlanta, GA, US \n", + "\n", + "[150 rows x 3 columns]" + ] + }, + "execution_count": 75, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results = scrape_linkedin_job_search_pages('data%20analysis',6)\n", + "results" ] }, { @@ -390,13 +564,210 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 103, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "\n", + "def scrape_linkedin_job_search_pages_country(keywords,num_pages,country):\n", + " \n", + " \n", + " BASE_URL = 'https://www.linkedin.com/jobs/search/?'\n", + " \n", + " if country==True:\n", + " scrape_url = ''.join([BASE_URL, 'keywords=', keywords,])\n", + " else: \n", + " scrape_url = ''.join([BASE_URL, 'keywords=', keywords,'&location=',country.replace(\" \",\"%20\")]) \n", + " \n", + "\n", + " columns = ['Title', 'Company', 'Location']\n", + " data = pd.DataFrame(columns=columns)\n", + " \n", + " for num in range(num_pages):\n", + " if num == 0:\n", + " page = requests.get(scrape_url)\n", + " else:\n", + " page = requests.get(''.join([scrape_url,'&start=',str(num*25)]))\n", + " soup = BeautifulSoup(page.text, 'html.parser')\n", + " titles = []\n", + " companies = []\n", + " locations = []\n", + " for card in soup.select(\"div.result-card__contents\"):\n", + " title = card.findChild(\"h3\", recursive=False)\n", + " company = card.findChild(\"h4\", recursive=False)\n", + " location = card.findChild(\"span\", attrs={\"class\": \"job-result-card__location\"}, recursive=True)\n", + " titles.append(title.string)\n", + " companies.append(company.string)\n", + " locations.append(location.string)\n", + " zipped = zip(titles, companies, locations)\n", + " for z in list(zipped):\n", + " data=data.append({'Title' : z[0] , 'Company' : z[1], 'Location': z[2]} , ignore_index=True)\n", + " \n", + " return data\n" ] }, + { + "cell_type": "code", + "execution_count": 113, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TitleCompanyLocation
0Lead Data AnalystEPAM SystemsKiev, UA
1Senior Data Analyst - MarketplacethredUPKiev, UA
2SalesForce PMOLuxoftKiev Region, Ukraine
3Senior Big Data Software Engineer (ID 40222)SoftServeDnipropetrovsk, Ukraine
4Product AnalystToptalKharkiv, UA
............
95DATA MIGRATION DEVELOPERINSCALE GlobalKiev, UA
96Accounting and data analysis specialist, UAJACOBS DOUWE EGBERTSKiev, UA
97Data Science EngineerCapital RecruitersKiev, UA
98Company Analytics and Data Intelligence LeadLifeCell International Pvt.LtdKiev, UA
99Data AnalystRing UkraineKiev, UA
\n", + "

100 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Title \\\n", + "0 Lead Data Analyst \n", + "1 Senior Data Analyst - Marketplace \n", + "2 SalesForce PMO \n", + "3 Senior Big Data Software Engineer (ID 40222) \n", + "4 Product Analyst \n", + ".. ... \n", + "95 DATA MIGRATION DEVELOPER \n", + "96 Accounting and data analysis specialist, UA \n", + "97 Data Science Engineer \n", + "98 Company Analytics and Data Intelligence Lead \n", + "99 Data Analyst \n", + "\n", + " Company Location \n", + "0 EPAM Systems Kiev, UA \n", + "1 thredUP Kiev, UA \n", + "2 Luxoft Kiev Region, Ukraine \n", + "3 SoftServe Dnipropetrovsk, Ukraine \n", + "4 Toptal Kharkiv, UA \n", + ".. ... ... \n", + "95 INSCALE Global Kiev, UA \n", + "96 JACOBS DOUWE EGBERTS Kiev, UA \n", + "97 Capital Recruiters Kiev, UA \n", + "98 LifeCell International Pvt.Ltd Kiev, UA \n", + "99 Ring Ukraine Kiev, UA \n", + "\n", + "[100 rows x 3 columns]" + ] + }, + "execution_count": 113, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results = scrape_linkedin_job_search_pages_country('data%20analysis',4,'UK')\n", + "results" + ] + }, + { + "cell_type": "code", + "execution_count": 99, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 99, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [] + }, { "cell_type": "markdown", "metadata": {}, @@ -414,11 +785,187 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 120, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "# your code here\n", + "\n", + "def scrape_linkedin_job_search_pages_country_days(keywords,num_pages,country,num_days):\n", + " \n", + " BASE_URL = 'https://www.linkedin.com/jobs/search/?'\n", + " \n", + " scrape_url = ''.join([BASE_URL, 'keywords=', keywords,'&location=',country.replace(\" \",\"%20\"),'f_TPR=r',str(num_days*86400)]) \n", + " \n", + " \n", + " columns = ['Title', 'Company', 'Location']\n", + " data = pd.DataFrame(columns=columns)\n", + " \n", + " for num in range(num_pages):\n", + " if num == 0:\n", + " page = requests.get(scrape_url)\n", + " else:\n", + " page = requests.get(''.join([scrape_url,'&start=',str(num*25)]))\n", + " soup = BeautifulSoup(page.text, 'html.parser')\n", + " titles = []\n", + " companies = []\n", + " locations = []\n", + " for card in soup.select(\"div.result-card__contents\"):\n", + " title = card.findChild(\"h3\", recursive=False)\n", + " company = card.findChild(\"h4\", recursive=False)\n", + " location = card.findChild(\"span\", attrs={\"class\": \"job-result-card__location\"}, recursive=True)\n", + " titles.append(title.string)\n", + " companies.append(company.string)\n", + " locations.append(location.string)\n", + " zipped = zip(titles, companies, locations)\n", + " for z in list(zipped):\n", + " data=data.append({'Title' : z[0] , 'Company' : z[1], 'Location': z[2]} , ignore_index=True)\n", + " \n", + " return data\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 121, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TitleCompanyLocation
0Sr. Data EngineerCypress HCMMiami/Fort Lauderdale Area
1Senior Data EngineerDynamo, LLC.Greater Omaha Area
2Data ArchitectSessionMGreater Boston Area
3Lead Strategic Data Analyst (SAS & Tableau) Lo...Compass Technology GroupDallas, Texas
4IT Data AnalystNavigantGardena, California
............
95Manager, Reporting and Data AnalysisThe Madison Square Garden CompanyGreater New York City Area
96Data AnalystViper Staffing Services L.L.C.Glendale, California, United States
97Sr. Bioinformatics ScientistThe EAC AgencyFremont, California, United States
98Programmer AnaylystValley First Credit UnionModesto, California Area
99Data Analysis CoordinatorThe Job NetworkTroy, NY, US
\n", + "

100 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Title \\\n", + "0 Sr. Data Engineer \n", + "1 Senior Data Engineer \n", + "2 Data Architect \n", + "3 Lead Strategic Data Analyst (SAS & Tableau) Lo... \n", + "4 IT Data Analyst \n", + ".. ... \n", + "95 Manager, Reporting and Data Analysis \n", + "96 Data Analyst \n", + "97 Sr. Bioinformatics Scientist \n", + "98 Programmer Anaylyst \n", + "99 Data Analysis Coordinator \n", + "\n", + " Company Location \n", + "0 Cypress HCM Miami/Fort Lauderdale Area \n", + "1 Dynamo, LLC. Greater Omaha Area \n", + "2 SessionM Greater Boston Area \n", + "3 Compass Technology Group Dallas, Texas \n", + "4 Navigant Gardena, California \n", + ".. ... ... \n", + "95 The Madison Square Garden Company Greater New York City Area \n", + "96 Viper Staffing Services L.L.C. Glendale, California, United States \n", + "97 The EAC Agency Fremont, California, United States \n", + "98 Valley First Credit Union Modesto, California Area \n", + "99 The Job Network Troy, NY, US \n", + "\n", + "[100 rows x 3 columns]" + ] + }, + "execution_count": 121, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "results = scrape_linkedin_job_search_pages_country_days('data%20analysis',4,'United Kingdom',2)\n", + "results" ] }, { @@ -434,12 +981,125 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 132, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "import re\n", + "\n", + "# your code here\n", + "\n", + "def scrape_linkedin_job_search_advanced(keywords,num_pages,country,num_days):\n", + " \n", + " BASE_URL = 'https://www.linkedin.com/jobs/search/?'\n", + " \n", + " scrape_url = ''.join([BASE_URL, 'keywords=', keywords,'&location=',country.replace(\" \",\"%20\"),'f_TPR=r',str(num_days*86400)]) \n", + " \n", + " \n", + " columns = ['Title', 'Company', 'Location','CurrentJobId']\n", + " data = pd.DataFrame(columns=columns)\n", + " \n", + " for num in range(num_pages):\n", + " if num == 0:\n", + " page = requests.get(scrape_url)\n", + " else:\n", + " page = requests.get(''.join([scrape_url,'&start=',str(num*25)]))\n", + " soup = BeautifulSoup(page.text, 'html.parser')\n", + " titles = []\n", + " companies = []\n", + " locations = []\n", + " jobID = []\n", + " for card in soup.select(\"div.result-card__contents\"):\n", + " title = card.findChild(\"h3\", recursive=False)\n", + " company = card.findChild(\"h4\", recursive=False)\n", + " location = card.findChild(\"span\", attrs={\"class\": \"job-result-card__location\"}, recursive=True)\n", + " jobID = card.find('a',attrs={\"href\": \"job-result-card__location\"})\n", + " titles.append(title.string)\n", + " companies.append(company.string)\n", + " locations.append(location.string)\n", + " jobID.append(job_ID)\n", + " zipped = zip(titles, companies, locations, jobID)\n", + " for z in list(zipped):\n", + " data=data.append({'Title' : z[0] , 'Company' : z[1], 'Location': z[2] , 'CurrentJobId':z[3]}, ignore_index=True)\n", + " \n", + " return data" ] + }, + { + "cell_type": "code", + "execution_count": 140, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[

Software Engineer - Data Mining/Data Analysis/Machine Learning

LinkedIn

Sunnyvale

The ideal candidate will have domain experience (data mining, information retrieval, security data science, natural language processing, ...

,\n", + "

Sr. Data Analyst – Predictive & Inferential Analysis

Peyton Resource Group

Arlington, Texas

Proficient skills doing data discovery in an EDW or data lake environment. Proficient skills using Tableau, Power BI, Cognos, or ...

,\n", + "

Data Analysis Manager

Capital One

McLean, VA, US

An ideal candidate will be on the leading edge of Analytical technology with a passion for the newest and most innovative tools. Still ...

,\n", + "

Senior Manager of Data Analysis

Philips

Boston, MA, US

To succeed in this role, you should have the following skills and experience. It is our mission to improve people’s lives through ...

,\n", + "

Software Engineer, Data Models & Analysis

Improbable

Washington, D.C., DC, US

Using your broad software engineering experience, you will choose the most appropriate language/technologies for the project at hand; ...

,\n", + "

BUSINESS ANALYST-Marketing and Data Analysis

ASHLIN Management Group

20721, Bowie, Maryland, United States

The Business Analyst position is responsible for understanding business process management and business requirements of the client. This ...

Easy Apply
,\n", + "

Supervisor, Data Analysis

Quartz Health Solutions

Madison, Wisconsin, United States$85,000.00 - $110,000.00

Quartz is seeking a technical, analytical leader to join our growing Data Warehouse Department as a Supervisor, Data Analysis. Strong ...

,\n", + "

Manager, Data Architecture and Analysis

Verizon Connect

Atlanta, GA, US

What we’re looking for... Even Better If You Have. Together we’ll go far. Six or more years of general data architecture experience. ...

,\n", + "

Core Data - Data Analyst/ Data Architect

Apple

Cupertino, CA, US

This role is inherently cross-functional and the ideal candidate will work across disciplines. We are looking for someone with a love for...

,\n", + "

Manager, Data and Analysis

Digitas North America

Greater New York City Area

We’re looking for strong, impactful work experience, which typically includes: To help with this, we’re looking for an outstanding ...

,\n", + "

Data Intelligence Analyst

Consumer Reports

Yonkers, NY, US

The data intelligence program brings in critical revenue to support CR’s mission-oriented work while simultaneously driving upstream ...

,\n", + "

Associate / Business Analyst (Consulting Data Analysis)

Foresight Associates, LLC

Greater Minneapolis-St. Paul Area

Business Analyst Level (Salary 45K plus bonus) 0-2 years non-academic experience applied to business problems and or relevant school ...

,\n", + "

Financial Data Analyst

Pinnacle Group, Inc.

Dallas/Fort Worth Area

A strong financial acumen, quantitative and data analysis skills. Strong organizational and stakeholder management skills. Strong verbal,...

Easy Apply
,\n", + "

Senior Data Analyst

Optimizely

San Francisco, CA, US

Optimizely is looking for a mid-to-senior level Data Analyst who can provide actionable insight through a combination of data ...

,\n", + "

Data Analyst

24/7 Wall St.

Greater New York City Area

24/7 Wall St. is looking for a data analyst to work closely with its editorial and business intelligence teams. Experience with Python, ...

,\n", + "

Sr. Manager, Strategic Business Intelligence & Data Analysis

Project Assistants

Charlotte, North Carolina Area

     Experience with the leading BI, analytical and visualization tools such as Tableau, Microsoft, SAP and Qlik required.      ...

,\n", + "

Senior Data Analyst

Trexin Consulting

Chicago, Illinois

Key Desired Skills, Experience and Knowledge. Trexin Consulting is currently seeking a Technical Data Analyst to join our team in Chicago...

,\n", + "

Master Data Management Analysis

Search Masters, Inc.

Bedford, Ohio

Prior accounting experience in a manufacturing facility is required. Will be responsible for financial reporting for capital approvals, ...

,\n", + "

Modelling Data Analyst

Transurban

Fairfax County, VA, US

At Transurban, we are on a mission to strengthen communities through transportation. Well-developed numerical skills and demonstrated ...

,\n", + "

Manager, Reporting and Data Analysis

The Madison Square Garden Company

Greater New York City Area

Advanced Microsoft Access and Excel skills, including proficiency with complex pivot tables and data analysis functions. Analytical ...

,\n", + "

Data Analyst

Modis

Chicago, Illinois

The Data Analyst is responsible for data modeling and analytics.       Leverages technology to design and develop quantitative and ...

,\n", + "

Data Analyst

Experis

San Antonio, TX, US

A top company in San Antonio is seeking a Data Analyst for an 8 month contract with likely extensions. 5+ years of experience in working ...

,\n", + "

Data Analysis Manager

Addison Group

Houston, TX, US

Clear communication skills and experience partnering with business functions/units to define, design, and implement best practices for ...

,\n", + "

Data Analyst

Brooksource

Philadelphia, Pennsylvania

Pay Rate: $20.00  - $22.00 (Depending on Experience) Strong SQL experience, openness to learn SSIS. 0-1-year experience in enterprise ...

Easy Apply
,\n", + "

Data Analyst

FedEx Services

Memphis, TN, US

Two (2) years work experience in measurement and analysis, quantitative business problem solving, operations analysis, marketing analysis...

]" + ] + }, + "execution_count": 140, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "BASE_URL = 'https://www.linkedin.com/jobs/search/?&f_TPR=r86400&keywords=data%20analysis'\n", + "page = requests.get(BASE_URL)\n", + "soup = BeautifulSoup(page.text, 'html.parser')\n", + "soup.select(\"div.result-card__contents\")\n" + ] + }, + { + "cell_type": "code", + "execution_count": 133, + "metadata": {}, + "outputs": [ + { + "ename": "AttributeError", + "evalue": "'NoneType' object has no attribute 'append'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mAttributeError\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[0mscrape_linkedin_job_search_advanced\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'data%20analysis'\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m4\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m'United Kingdom'\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;36m2\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\u001b[0m in \u001b[0;36mscrape_linkedin_job_search_advanced\u001b[0;34m(keywords, num_pages, country, num_days)\u001b[0m\n\u001b[1;32m 31\u001b[0m \u001b[0mcompanies\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mcompany\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstring\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 32\u001b[0m \u001b[0mlocations\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mlocation\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstring\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 33\u001b[0;31m \u001b[0mjobID\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mjob_ID\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 34\u001b[0m \u001b[0mzipped\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mzip\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mtitles\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcompanies\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlocations\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mjobID\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 35\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mz\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mlist\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mzipped\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;31mAttributeError\u001b[0m: 'NoneType' object has no attribute 'append'" + ] + } + ], + "source": [ + "scrape_linkedin_job_search_advanced('data%20analysis',4,'United Kingdom',2)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -458,7 +1118,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.3" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-1_labs/lab-web-scraping/your-code/main.ipynb b/module-1_labs/lab-web-scraping/your-code/main.ipynb index d2d7553..fd1d71f 100644 --- a/module-1_labs/lab-web-scraping/your-code/main.ipynb +++ b/module-1_labs/lab-web-scraping/your-code/main.ipynb @@ -40,7 +40,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -53,10 +53,17 @@ "# import urllib.request\n", "# from urllib.request import urlopen\n", "# import random\n", - "# import re\n", + "import re\n", "# import scrapy" ] }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "markdown", "metadata": {}, @@ -66,7 +73,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -76,11 +83,5044 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "Trending developers on GitHub today · GitHub\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
\n", + "Skip to content\n", + "\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "\n", + " Sign up\n", + " \n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "\n", + "\n", + "\n", + " Sign in\n", + " \n", + "\n", + " Sign up\n", + " \n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "

Trending

\n", + "

\n", + " These are the developers building the hot tools today.\n", + "

\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " Language:\n", + "\n", + " \n", + " Any\n", + "\n", + "\n", + "\n", + "
\n", + "\n", + " Select a language\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "\n", + " C++\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HTML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Java\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " JavaScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PHP\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Python\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ruby\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Unknown languages\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " 1C Enterprise\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ABAP\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ABNF\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ActionScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ada\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Adobe Font Metrics\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Agda\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " AGS Script\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Alloy\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Alpine Abuild\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Altium Designer\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " AMPL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " AngelScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ant Build System\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ANTLR\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ApacheConf\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Apex\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " API Blueprint\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " APL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Apollo Guidance Computer\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " AppleScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Arc\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " AsciiDoc\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ASN.1\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ASP\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " AspectJ\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Assembly\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Asymptote\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ATS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Augeas\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " AutoHotkey\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " AutoIt\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Awk\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ballerina\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Batchfile\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Befunge\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Bison\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " BitBake\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Blade\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " BlitzBasic\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " BlitzMax\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Bluespec\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Boo\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Brainfuck\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Brightscript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Zeek\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " C\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " C#\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " C++\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " C-ObjDump\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " C2hs Haskell\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Cabal Config\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Cap'n Proto\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " CartoCSS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ceylon\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Chapel\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Charity\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ChucK\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Cirru\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Clarion\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Clean\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Click\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " CLIPS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Clojure\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Closure Templates\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Cloud Firestore Security Rules\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " CMake\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " COBOL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " CoffeeScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ColdFusion\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ColdFusion CFC\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " COLLADA\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Common Lisp\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Common Workflow Language\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Component Pascal\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " CoNLL-U\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Cool\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Coq\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Cpp-ObjDump\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Creole\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Crystal\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " CSON\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Csound\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Csound Document\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Csound Score\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " CSS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " CSV\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Cuda\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " CWeb\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Cycript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Cython\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " D\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " D-ObjDump\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Darcs Patch\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Dart\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " DataWeave\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " desktop\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Dhall\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Diff\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " DIGITAL Command Language\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " DM\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " DNS Zone\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Dockerfile\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Dogescript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " DTrace\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Dylan\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " E\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Eagle\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Easybuild\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " EBNF\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " eC\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ecere Projects\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ECL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ECLiPSe\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Edje Data Collection\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " edn\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Eiffel\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " EJS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Elixir\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Elm\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Emacs Lisp\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " EmberScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " EML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " EQ\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Erlang\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " F#\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " F*\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Factor\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Fancy\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Fantom\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " FIGlet Font\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Filebench WML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Filterscript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " fish\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " FLUX\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Formatted\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Forth\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Fortran\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " FreeMarker\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Frege\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " G-code\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Game Maker Language\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " GAML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " GAMS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " GAP\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " GCC Machine Description\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " GDB\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " GDScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Genie\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Genshi\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Gentoo Ebuild\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Gentoo Eclass\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Gerber Image\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Gettext Catalog\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Gherkin\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Git Attributes\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Git Config\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " GLSL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Glyph\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Glyph Bitmap Distribution Format\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " GN\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Gnuplot\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Go\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Golo\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Gosu\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Grace\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Gradle\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Grammatical Framework\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Graph Modeling Language\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " GraphQL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Graphviz (DOT)\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Groovy\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Groovy Server Pages\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Hack\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Haml\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Handlebars\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HAProxy\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Harbour\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Haskell\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Haxe\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HCL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HiveQL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HLSL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HolyC\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HTML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HTML+Django\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HTML+ECR\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HTML+EEX\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HTML+ERB\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HTML+PHP\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HTML+Razor\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HTTP\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HXML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Hy\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " HyPhy\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " IDL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Idris\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " IGOR Pro\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Inform 7\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " INI\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Inno Setup\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Io\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ioke\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " IRC log\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Isabelle\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Isabelle ROOT\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " J\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Jasmin\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Java\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Java Properties\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Java Server Pages\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " JavaScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " JavaScript+ERB\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " JFlex\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Jison\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Jison Lex\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Jolie\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " JSON\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " JSON with Comments\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " JSON5\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " JSONiq\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " JSONLD\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Jsonnet\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " JSX\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Julia\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Jupyter Notebook\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " KiCad Layout\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " KiCad Legacy Layout\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " KiCad Schematic\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Kit\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Kotlin\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " KRL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " LabVIEW\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Lasso\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Latte\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Lean\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Less\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Lex\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " LFE\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " LilyPond\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Limbo\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Linker Script\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Linux Kernel Module\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Liquid\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Literate Agda\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Literate CoffeeScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Literate Haskell\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " LiveScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " LLVM\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Logos\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Logtalk\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " LOLCODE\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " LookML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " LoomScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " LSL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Lua\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " M\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " M4\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " M4Sugar\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Makefile\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Mako\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Markdown\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Marko\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Mask\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Mathematica\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " MATLAB\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Maven POM\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Max\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " MAXScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " mcfunction\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " MediaWiki\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Mercury\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Meson\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Metal\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " MiniD\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Mirah\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " MLIR\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Modelica\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Modula-2\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Modula-3\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Module Management System\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Monkey\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Moocode\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " MoonScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Motorola 68K Assembly\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " MQL4\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " MQL5\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " MTML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " MUF\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " mupad\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Myghty\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " nanorc\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " NCL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Nearley\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Nemerle\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " nesC\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " NetLinx\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " NetLinx+ERB\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " NetLogo\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " NewLisp\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Nextflow\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Nginx\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Nim\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ninja\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Nit\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Nix\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " NL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " NSIS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Nu\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " NumPy\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ObjDump\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Objective-C\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Objective-C++\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Objective-J\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ObjectScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " OCaml\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Omgrofl\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ooc\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Opa\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Opal\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " OpenCL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " OpenEdge ABL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " OpenRC runscript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " OpenSCAD\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " OpenType Feature File\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Org\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ox\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Oxygene\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Oz\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " P4\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pan\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Papyrus\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Parrot\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Parrot Assembly\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Parrot Internal Representation\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pascal\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pawn\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pep8\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Perl\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Perl 6\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PHP\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pic\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pickle\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PicoLisp\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PigLatin\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pike\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PLpgSQL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PLSQL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pod\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pod 6\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PogoScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pony\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PostCSS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PostScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " POV-Ray SDL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PowerBuilder\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PowerShell\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Processing\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Prolog\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Propeller Spin\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Protocol Buffer\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Public Key\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pug\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Puppet\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Pure Data\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PureBasic\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " PureScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Python\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Python console\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Python traceback\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " q\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " QMake\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " QML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Quake\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " R\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Racket\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ragel\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " RAML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Rascal\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Raw token data\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " RDoc\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " REALbasic\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Reason\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Rebol\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Red\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Redcode\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Regular Expression\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ren'Py\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " RenderScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " reStructuredText\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " REXX\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " RHTML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Rich Text Format\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ring\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " RMarkdown\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " RobotFramework\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Roff\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Roff Manpage\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Rouge\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " RPC\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " RPM Spec\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Ruby\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " RUNOFF\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Rust\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Sage\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SaltStack\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SAS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Sass\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Scala\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Scaml\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Scheme\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Scilab\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SCSS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " sed\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Self\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ShaderLab\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Shell\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ShellSession\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Shen\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Slash\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Slice\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Slim\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Smali\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Smalltalk\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Smarty\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SmPL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SMT\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Solidity\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SourcePawn\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SPARQL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Spline Font Database\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SQF\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SQL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SQLPL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Squirrel\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SRecode Template\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SSH Config\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Stan\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Standard ML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Stata\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " STON\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Stylus\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SubRip Text\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SugarSS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SuperCollider\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SVG\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Swift\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SystemVerilog\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Tcl\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Tcsh\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Tea\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Terra\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " TeX\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Text\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Textile\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Thrift\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " TI Program\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " TLA\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " TOML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " TSQL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " TSX\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Turing\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Turtle\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Twig\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " TXL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Type Language\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " TypeScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Unified Parallel C\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Unity3D Asset\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Unix Assembly\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Uno\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " UnrealScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " UrWeb\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " V\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Vala\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " VCL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Verilog\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " VHDL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Vim script\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Visual Basic\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Volt\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Vue\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Wavefront Material\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Wavefront Object\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " wdl\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Web Ontology Language\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " WebAssembly\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " WebIDL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " WebVTT\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Windows Registry Entries\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " wisp\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Wollok\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " World of Warcraft Addon Data\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " X BitMap\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " X Font Directory Index\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " X PixMap\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " X10\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " xBase\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " XC\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " XCompose\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " XML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Xojo\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " XPages\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " XProc\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " XQuery\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " XS\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " XSLT\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Xtend\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Yacc\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " YAML\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " YANG\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " YARA\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " YASnippet\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ZAP\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Zeek\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ZenScript\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Zephir\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Zig\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " ZIL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " Zimpl\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " Date range:\n", + "\n", + " \n", + " Today\n", + "\n", + "\n", + "\n", + "
\n", + "\n", + " Adjust time span\n", + "\n", + "\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 1\n", + "\n", + "
\n", + "\"@felangel\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Felix Angelov\n", + "\n", + "

\n", + "

\n", + "\n", + " felangel\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
Popular repo
\n", + "

\n", + "\n", + "\n", + "\n", + " bloc\n", + " \n", + "

\n", + "
\n", + " A predictable state management library that helps implement the BLoC design pattern\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 2\n", + "\n", + "
\n", + "\"@borkdude\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Michiel Borkent\n", + "\n", + "

\n", + "

\n", + "\n", + " borkdude\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 3\n", + "\n", + "
\n", + "\"@Jocs\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Ran Luo\n", + "\n", + "

\n", + "

\n", + "\n", + " Jocs\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 4\n", + "\n", + "
\n", + "\"@juanpicado\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Juan Picado @jotadeveloper\n", + "\n", + "

\n", + "

\n", + "\n", + " juanpicado\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "\n", + " 6\n", + "\n", + "
\n", + "\"@kan-bayashi\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Tomoki Hayashi\n", + "\n", + "

\n", + "

\n", + "\n", + " kan-bayashi\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "\n", + " 8\n", + "\n", + "
\n", + "\"@matklad\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Aleksey Kladov\n", + "\n", + "

\n", + "

\n", + "\n", + " matklad\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "\n", + " 10\n", + "\n", + "
\n", + "\"@OttoWinter\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Otto Winter\n", + "\n", + "

\n", + "

\n", + "\n", + " OttoWinter\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 11\n", + "\n", + "
\n", + "\"@jesstelford\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Jess Telford\n", + "\n", + "

\n", + "

\n", + "\n", + " jesstelford\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 12\n", + "\n", + "
\n", + "\"@lpil\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Louis Pilfold\n", + "\n", + "

\n", + "

\n", + "\n", + " lpil\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 13\n", + "\n", + "
\n", + "\"@unknwon\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Unknwon\n", + "\n", + "

\n", + "

\n", + "\n", + " unknwon\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "\n", + " 15\n", + "\n", + "
\n", + "\"@tpope\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Tim Pope\n", + "\n", + "

\n", + "

\n", + "\n", + " tpope\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "\n", + " 17\n", + "\n", + "
\n", + "\"@jesseduffield\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Jesse Duffield\n", + "\n", + "

\n", + "

\n", + "\n", + " jesseduffield\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 18\n", + "\n", + "
\n", + "\"@arvidn\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Arvid Norberg\n", + "\n", + "

\n", + "

\n", + "\n", + " arvidn\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 19\n", + "\n", + "
\n", + "\"@ianstormtaylor\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Ian Storm Taylor\n", + "\n", + "

\n", + "

\n", + "\n", + " ianstormtaylor\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
Popular repo
\n", + "

\n", + "\n", + "\n", + "\n", + " slate\n", + " \n", + "

\n", + "
\n", + " A completely customizable framework for building rich text editors. (Currently in beta.)\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 20\n", + "\n", + "
\n", + "\"@seregazhuk\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Sergey Zhuk\n", + "\n", + "

\n", + "

\n", + "\n", + " seregazhuk\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 21\n", + "\n", + "
\n", + "\"@illume\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " René Dudfield\n", + "\n", + "

\n", + "

\n", + "\n", + " illume\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 22\n", + "\n", + "
\n", + "\"@kabirbaidhya\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Kabir Baidhya\n", + "\n", + "

\n", + "

\n", + "\n", + " kabirbaidhya\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 23\n", + "\n", + "
\n", + "\"@jshjohnson\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Josh Johnson\n", + "\n", + "

\n", + "

\n", + "\n", + " jshjohnson\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 24\n", + "\n", + "
\n", + "\"@jdegoes\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " John A. De Goes\n", + "\n", + "

\n", + "

\n", + "\n", + " jdegoes\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
Popular repo
\n", + "

\n", + "\n", + "\n", + "\n", + " blueeyes\n", + " \n", + "

\n", + "
\n", + " A lightweight Web 3.0 framework for Scala, featuring a purely asynchronous architecture, extremely high-performance, massive scalability, high usability, and a functional, composable design.\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + " 25\n", + "\n", + "
\n", + "\"@kishikawakatsumi\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + "\n", + " Kishikawa Katsumi\n", + "\n", + "

\n", + "

\n", + "\n", + " kishikawakatsumi\n", + "\n", + "

\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "Follow\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + "\n", + "\n", + " You can’t perform that action at this time.\n", + "
\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "\n", + "\n", + "\n" + ] + } + ], "source": [ - "#your code" + "#your code\n", + "response = requests.get(url)\n", + "html_bytes = response.content\n", + "\n", + "git_soup = BeautifulSoup(html_bytes,\"html.parser\")\n", + "print(git_soup)" ] }, { @@ -134,11 +5174,1400 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[
\n", + " \n", + " 1\n", + " \n", + "
\n", + " \"@felangel\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Felix Angelov\n", + " \n", + "

\n", + "

\n", + " \n", + " felangel\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
Popular repo
\n", + "

\n", + " \n", + " \n", + " \n", + " bloc\n", + " \n", + "

\n", + "
\n", + " A predictable state management library that helps implement the BLoC design pattern\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 2\n", + " \n", + "
\n", + " \"@borkdude\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Michiel Borkent\n", + " \n", + "

\n", + "

\n", + " \n", + " borkdude\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 3\n", + " \n", + "
\n", + " \"@Jocs\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Ran Luo\n", + " \n", + "

\n", + "

\n", + " \n", + " Jocs\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 4\n", + " \n", + "
\n", + " \"@juanpicado\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Juan Picado @jotadeveloper\n", + " \n", + "

\n", + "

\n", + " \n", + " juanpicado\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
, ,
\n", + " \n", + " 6\n", + " \n", + "
\n", + " \"@kan-bayashi\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Tomoki Hayashi\n", + " \n", + "

\n", + "

\n", + " \n", + " kan-bayashi\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 7\n", + " \n", + "
\n", + " \"@streamich\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Vadim Dalecky\n", + " \n", + "

\n", + "

\n", + " \n", + " streamich\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 8\n", + " \n", + "
\n", + " \"@matklad\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Aleksey Kladov\n", + " \n", + "

\n", + "

\n", + " \n", + " matklad\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 9\n", + " \n", + "
\n", + " \"@budparr\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Bud Parr\n", + " \n", + "

\n", + "

\n", + " \n", + " budparr\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 10\n", + " \n", + "
\n", + " \"@OttoWinter\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Otto Winter\n", + " \n", + "

\n", + "

\n", + " \n", + " OttoWinter\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 11\n", + " \n", + "
\n", + " \"@jesstelford\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Jess Telford\n", + " \n", + "

\n", + "

\n", + " \n", + " jesstelford\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 12\n", + " \n", + "
\n", + " \"@lpil\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Louis Pilfold\n", + " \n", + "

\n", + "

\n", + " \n", + " lpil\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 13\n", + " \n", + "
\n", + " \"@unknwon\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Unknwon\n", + " \n", + "

\n", + "

\n", + " \n", + " unknwon\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 14\n", + " \n", + "
\n", + " \"@mrdoob\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Mr.doob\n", + " \n", + "

\n", + "

\n", + " \n", + " mrdoob\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 15\n", + " \n", + "
\n", + " \"@tpope\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Tim Pope\n", + " \n", + "

\n", + "

\n", + " \n", + " tpope\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 16\n", + " \n", + "
\n", + " \"@SimenB\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Simen Bekkhus\n", + " \n", + "

\n", + "

\n", + " \n", + " SimenB\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 17\n", + " \n", + "
\n", + " \"@jesseduffield\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Jesse Duffield\n", + " \n", + "

\n", + "

\n", + " \n", + " jesseduffield\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 18\n", + " \n", + "
\n", + " \"@arvidn\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Arvid Norberg\n", + " \n", + "

\n", + "

\n", + " \n", + " arvidn\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 19\n", + " \n", + "
\n", + " \"@ianstormtaylor\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Ian Storm Taylor\n", + " \n", + "

\n", + "

\n", + " \n", + " ianstormtaylor\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
Popular repo
\n", + "

\n", + " \n", + " \n", + " \n", + " slate\n", + " \n", + "

\n", + "
\n", + " A completely customizable framework for building rich text editors. (Currently in beta.)\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 20\n", + " \n", + "
\n", + " \"@seregazhuk\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Sergey Zhuk\n", + " \n", + "

\n", + "

\n", + " \n", + " seregazhuk\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 21\n", + " \n", + "
\n", + " \"@illume\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " René Dudfield\n", + " \n", + "

\n", + "

\n", + " \n", + " illume\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 22\n", + " \n", + "
\n", + " \"@kabirbaidhya\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Kabir Baidhya\n", + " \n", + "

\n", + "

\n", + " \n", + " kabirbaidhya\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 23\n", + " \n", + "
\n", + " \"@jshjohnson\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Josh Johnson\n", + " \n", + "

\n", + "

\n", + " \n", + " jshjohnson\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 24\n", + " \n", + "
\n", + " \"@jdegoes\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " John A. De Goes\n", + " \n", + "

\n", + "

\n", + " \n", + " jdegoes\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
Popular repo
\n", + "

\n", + " \n", + " \n", + " \n", + " blueeyes\n", + " \n", + "

\n", + "
\n", + " A lightweight Web 3.0 framework for Scala, featuring a purely asynchronous architecture, extremely high-performance, massive scalability, high usability, and a functional, composable design.\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
,
\n", + " \n", + " 25\n", + " \n", + "
\n", + " \"@kishikawakatsumi\"\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

\n", + " \n", + " Kishikawa Katsumi\n", + " \n", + "

\n", + "

\n", + " \n", + " kishikawakatsumi\n", + " \n", + "

\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + " \n", + " Follow\n", + " \n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + "
]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#your code\n", + "\n", + "article_class = (git_soup\n", + " .find_all('article',class_=\"Box-row d-flex\"))\n", + "\n", + "article_class" + ] + }, + { + "cell_type": "code", + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ - "#your code" + "dev_names_raw = []\n", + "\n", + "for article in article_class:\n", + " dev_names_raw.append((article\n", + " .find('div',class_= 'd-sm-flex flex-auto')\n", + " .find('div',class_= 'col-sm-8 d-md-flex')\n", + " .find('div',class_= 'col-md-6')\n", + " .h1.a.contents)[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['FelixAngelov',\n", + " 'MichielBorkent',\n", + " 'RanLuo',\n", + " 'JuanPicado@jotadeveloper',\n", + " 'MilosKozak',\n", + " 'TomokiHayashi',\n", + " 'VadimDalecky',\n", + " 'AlekseyKladov',\n", + " 'BudParr',\n", + " 'OttoWinter',\n", + " 'JessTelford',\n", + " 'LouisPilfold',\n", + " 'Unknwon',\n", + " 'Mr.doob',\n", + " 'TimPope',\n", + " 'SimenBekkhus',\n", + " 'JesseDuffield',\n", + " 'ArvidNorberg',\n", + " 'IanStormTaylor',\n", + " 'SergeyZhuk',\n", + " 'RenéDudfield',\n", + " 'KabirBaidhya',\n", + " 'JoshJohnson',\n", + " 'JohnA.DeGoes',\n", + " 'KishikawaKatsumi']" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# dev_names=[]\n", + "\n", + "# for n in dev_names_raw:\n", + "# pattern = r'\\n\\s+(.+)\\n'\n", + "# dev_names.append(re.findall(pattern,n)[0])\n", + "\n", + "\n", + "\n", + "dev_names = [n.replace(' ','').replace('\\n', '') for n in dev_names_raw]\n", + "dev_names" ] }, { @@ -152,21 +6581,70 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "# This is the url you will scrape in this exercise\n", - "url = 'https://github.com/trending/python?since=daily'" + "url1 = 'https://github.com/trending/python?since=daily'" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['/ytdl-org/youtube-dl',\n", + " '/geekcomputers/Python',\n", + " '/ageitgey/face_recognition',\n", + " '/deepfakes/faceswap',\n", + " '/DrDonk/unlocker',\n", + " '/Yorko/mlcourse.ai',\n", + " '/scikit-learn/scikit-learn',\n", + " '/0Kee-Team/WatchAD',\n", + " '/google-research/google-research',\n", + " '/killgcd/chromego',\n", + " '/google-research/bert',\n", + " '/donnemartin/system-design-primer',\n", + " '/axi0mX/ipwndfu',\n", + " '/wangzheng0822/algo',\n", + " '/cvlab-stonybrook/DewarpNet',\n", + " '/kovidgoyal/kitty',\n", + " '/pi-hole/docker-pi-hole',\n", + " '/openai/baselines',\n", + " '/evilsocket/pwnagotchi',\n", + " '/3b1b/manim',\n", + " '/home-assistant/home-assistant',\n", + " '/IgnoredAmbience/yahoo-group-archiver',\n", + " '/bitcoinbook/bitcoinbook',\n", + " '/wb14123/seq2seq-couplet',\n", + " '/instaloader/instaloader']" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "#your code" + "#your code\n", + "response_repo = requests.get(url1)\n", + "html_bytes1 = response_repo.content\n", + "\n", + "repo_soup=BeautifulSoup(html_bytes1,'html.parser')\n", + "\n", + "repos_all = repo_soup.find_all('article',class_='Box-row')\n", + "\n", + "repo_names=[]\n", + "\n", + "for repo in repos_all:\n", + " repo_names.append(repo.find('h1',class_='h3 lh-condensed').a['href'])\n", + " \n", + "\n", + "repo_names" ] }, { @@ -178,21 +6656,69 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "# This is the url you will scrape in this exercise\n", - "url = 'https://en.wikipedia.org/wiki/Walt_Disney'" + "url3 = 'https://en.wikipedia.org/wiki/Walt_Disney'" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 114, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['/wiki/File:Walt_Disney_1946.JPG',\n", + " '/wiki/File:Walt_Disney_1942_signature.svg',\n", + " '/wiki/File:Walt_Disney_envelope_ca._1921.jpg',\n", + " '/wiki/File:Trolley_Troubles_poster.jpg',\n", + " '/wiki/File:Walt_Disney_and_his_cartoon_creation_%22Mickey_Mouse%22_-_National_Board_of_Review_Magazine.jpg',\n", + " '/wiki/File:Steamboat-willie.jpg',\n", + " '/wiki/File:Walt_Disney_1935.jpg',\n", + " '/wiki/File:Walt_Disney_Snow_white_1937_trailer_screenshot_(13).jpg',\n", + " '/wiki/File:Disney_drawing_goofy.jpg',\n", + " '/wiki/File:DisneySchiphol1951.jpg',\n", + " '/wiki/File:WaltDisneyplansDisneylandDec1954.jpg',\n", + " '/wiki/File:Walt_disney_portrait_right.jpg',\n", + " '/wiki/File:Walt_Disney_Grave.JPG',\n", + " '/wiki/File:Roy_O._Disney_with_Company_at_Press_Conference.jpg',\n", + " '/wiki/File:Disney_Display_Case.JPG',\n", + " '/wiki/File:Disney1968.jpg',\n", + " '/wiki/File:Animation_disc.svg',\n", + " '/wiki/File:P_vip.svg',\n", + " '/wiki/File:Magic_Kingdom_castle.jpg',\n", + " '/wiki/File:Video-x-generic.svg',\n", + " '/wiki/File:Flag_of_Los_Angeles_County,_California.svg',\n", + " '/wiki/File:Blank_television_set.svg',\n", + " '/wiki/File:Flag_of_the_United_States.svg']" + ] + }, + "execution_count": 114, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "#your code" + "#your code\n", + "\n", + "response3 = requests.get(url3)\n", + "html_bytes3 = response3.content\n", + "\n", + "disney_soup = BeautifulSoup(html_bytes3,'html.parser')\n", + "div_content = disney_soup.find('div',class_='mw-parser-output')\n", + "\n", + "image_links = div_content.find_all('a',class_='image')\n", + "\n", + "table_pics = []\n", + "\n", + "for a in image_links:\n", + " table_pics.append(a['href'])\n", + " \n", + "table_pics" ] }, { @@ -204,21 +6730,43 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 115, "metadata": {}, "outputs": [], "source": [ "# This is the url you will scrape in this exercise\n", - "url ='https://en.wikipedia.org/wiki/Python' " + "url4 ='https://en.wikipedia.org/wiki/Python' " ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 136, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "TypeError", + "evalue": "'NoneType' object is not subscriptable", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mTypeError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 9\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 10\u001b[0m \u001b[0;32mfor\u001b[0m \u001b[0mul\u001b[0m \u001b[0;32min\u001b[0m \u001b[0mfind_ul\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 11\u001b[0;31m \u001b[0mlinks\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mul\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'href'\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;31mTypeError\u001b[0m: 'NoneType' object is not subscriptable" + ] + } + ], "source": [ - "#your code" + "#your code\n", + "response4 = requests.get(url4)\n", + "html_bytes4 = response4.content\n", + "python_soup = BeautifulSoup(html_bytes4,'html.parser')\n", + "\n", + "find_ul = python_soup.find_all('ul')\n", + "\n", + "links=[]\n", + "\n", + "for ul in find_ul:\n", + " links.append(ul.a['href'])" ] }, { @@ -230,7 +6778,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ @@ -240,7 +6788,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, "outputs": [], "source": [ @@ -256,7 +6804,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -266,7 +6814,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": {}, "outputs": [], "source": [ @@ -282,7 +6830,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ @@ -292,7 +6840,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "metadata": {}, "outputs": [], "source": [ @@ -308,7 +6856,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ @@ -318,7 +6866,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "metadata": {}, "outputs": [], "source": [ @@ -342,7 +6890,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 21, "metadata": {}, "outputs": [], "source": [ @@ -353,7 +6901,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 22, "metadata": {}, "outputs": [], "source": [ @@ -377,7 +6925,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 23, "metadata": {}, "outputs": [], "source": [ @@ -388,7 +6936,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 24, "metadata": {}, "outputs": [], "source": [ @@ -404,7 +6952,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "metadata": {}, "outputs": [], "source": [ @@ -414,7 +6962,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ @@ -430,7 +6978,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 27, "metadata": {}, "outputs": [], "source": [ @@ -440,7 +6988,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 28, "metadata": {}, "outputs": [], "source": [ @@ -456,7 +7004,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 29, "metadata": {}, "outputs": [], "source": [ @@ -466,7 +7014,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 30, "metadata": {}, "outputs": [], "source": [ @@ -489,7 +7037,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 31, "metadata": {}, "outputs": [], "source": [ @@ -500,7 +7048,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 32, "metadata": {}, "outputs": [], "source": [ @@ -516,7 +7064,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 33, "metadata": {}, "outputs": [], "source": [ @@ -526,7 +7074,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 34, "metadata": {}, "outputs": [], "source": [ @@ -542,7 +7090,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 35, "metadata": {}, "outputs": [], "source": [ @@ -552,7 +7100,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 36, "metadata": {}, "outputs": [], "source": [ @@ -568,9 +7116,33 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 37, "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKeyboardInterrupt\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m~/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel/kernelbase.py\u001b[0m in \u001b[0;36m_input_request\u001b[0;34m(self, prompt, ident, parent, password)\u001b[0m\n\u001b[1;32m 884\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[0;32m--> 885\u001b[0;31m \u001b[0mident\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mreply\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msession\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrecv\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstdin_socket\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[0m\u001b[1;32m 886\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~/miniconda3/envs/day1/lib/python3.7/site-packages/jupyter_client/session.py\u001b[0m in \u001b[0;36mrecv\u001b[0;34m(self, socket, mode, content, copy)\u001b[0m\n\u001b[1;32m 802\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[0;32m--> 803\u001b[0;31m \u001b[0mmsg_list\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0msocket\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrecv_multipart\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmode\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcopy\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mcopy\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 804\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mzmq\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mZMQError\u001b[0m \u001b[0;32mas\u001b[0m \u001b[0me\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/day1/lib/python3.7/site-packages/zmq/sugar/socket.py\u001b[0m in \u001b[0;36mrecv_multipart\u001b[0;34m(self, flags, copy, track)\u001b[0m\n\u001b[1;32m 474\u001b[0m \"\"\"\n\u001b[0;32m--> 475\u001b[0;31m \u001b[0mparts\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m[\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrecv\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mflags\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcopy\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mcopy\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mtrack\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mtrack\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 476\u001b[0m \u001b[0;31m# have first part already, only loop while more to receive\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32mzmq/backend/cython/socket.pyx\u001b[0m in \u001b[0;36mzmq.backend.cython.socket.Socket.recv\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mzmq/backend/cython/socket.pyx\u001b[0m in \u001b[0;36mzmq.backend.cython.socket.Socket.recv\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32mzmq/backend/cython/socket.pyx\u001b[0m in \u001b[0;36mzmq.backend.cython.socket._recv_copy\u001b[0;34m()\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/day1/lib/python3.7/site-packages/zmq/backend/cython/checkrc.pxd\u001b[0m in \u001b[0;36mzmq.backend.cython.checkrc._check_rc\u001b[0;34m()\u001b[0m\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: ", + "\nDuring handling of the above exception, another exception occurred:\n", + "\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[1;32m 1\u001b[0m \u001b[0;31m#https://openweathermap.org/current\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 2\u001b[0;31m \u001b[0mcity\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mcity\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0minput\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'Enter the city:'\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 3\u001b[0m \u001b[0murl\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m'http://api.openweathermap.org/data/2.5/weather?'\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;34m'q='\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0mcity\u001b[0m\u001b[0;34m+\u001b[0m\u001b[0;34m'&APPID=b35975e18dc93725acb092f7272cc6b8&units=metric'\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel/kernelbase.py\u001b[0m in \u001b[0;36mraw_input\u001b[0;34m(self, prompt)\u001b[0m\n\u001b[1;32m 858\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_parent_ident\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 859\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_parent_header\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 860\u001b[0;31m \u001b[0mpassword\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mFalse\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 861\u001b[0m )\n\u001b[1;32m 862\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel/kernelbase.py\u001b[0m in \u001b[0;36m_input_request\u001b[0;34m(self, prompt, ident, parent, password)\u001b[0m\n\u001b[1;32m 888\u001b[0m \u001b[0;32mexcept\u001b[0m \u001b[0mKeyboardInterrupt\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 889\u001b[0m \u001b[0;31m# re-raise KeyboardInterrupt, to truncate traceback\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 890\u001b[0;31m \u001b[0;32mraise\u001b[0m \u001b[0mKeyboardInterrupt\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 891\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 892\u001b[0m \u001b[0;32mbreak\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + } + ], "source": [ "#https://openweathermap.org/current\n", "city = city=input('Enter the city:')\n", @@ -630,7 +7202,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-matplotlib-seaborn/main.ipynb b/module-2_labs/lab-matplotlib-seaborn/main.ipynb index ff8b438..87d30fc 100644 --- a/module-2_labs/lab-matplotlib-seaborn/main.ipynb +++ b/module-2_labs/lab-matplotlib-seaborn/main.ipynb @@ -17,9 +17,7 @@ { "cell_type": "code", "execution_count": 2, - "metadata": { - "collapsed": true - }, + "metadata": {}, "outputs": [], "source": [ "# import libraries here\n", @@ -46,10 +44,8 @@ }, { "cell_type": "code", - "execution_count": 149, - "metadata": { - "collapsed": true - }, + "execution_count": 12, + "metadata": {}, "outputs": [], "source": [ "x = np.arange(0,100)\n", @@ -71,9 +67,7 @@ { "cell_type": "code", "execution_count": 188, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -114,9 +108,7 @@ { "cell_type": "code", "execution_count": 191, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -157,9 +149,7 @@ { "cell_type": "code", "execution_count": 15, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -204,29 +194,29 @@ }, { "cell_type": "code", - "execution_count": 87, - "metadata": { - "collapsed": false - }, + "execution_count": 14, + "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "Text(0.5,1,'Logarithmic scale (y)')" + "Text(0.5, 1.0, 'Logarithmic scale (y)')" ] }, - "execution_count": 87, + "execution_count": 14, "metadata": {}, "output_type": "execute_result" }, { "data": { - "image/png": "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\n", + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAlMAAAEICAYAAAB74HFBAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3deZhcVbnv8e+vu9OZCGPCFAgBGSSgokYQ9FxRQAMiQY8CAUUwiJwLDuc4gfNw77nH6xmUA4JRA04kMl1PgDCJIg6gCV7kEmIwjOmAJAwZSbq7qt77x97dVDpV3VU97V3dv8/z9FNVa++qertJLd5ae71rKSIwMzMzs/5pyjoAMzMzs0bmZMrMzMxsAJxMmZmZmQ2AkykzMzOzAXAyZWZmZjYATqbMzMzMBsDJlGVG0lck/WQY3+8JSccP1/uZ2dCTtEzSsb0cv1vSeYP0XmdJumMwXmuAcRwrqW0Az3+7pJ/XeO4fJR3W3/caLZxMjWBp8vCspIllbedJujvDsMxsBMjLl5OIOCwi7oah/4IWET+NiLcP1esPo38G/qXGc/8V+NoQxjIiOJka+VqAjw/0RZTwvxczywVJLVnH0IgkvQHYKSLuq/Epi4C3StprCMNqeP6f48j3TeBTknaudFDSMZKWSFqf3h5TduxuSf9T0u+Al4AD0rb/Ien3kjZJuknSbpJ+KmlD+hrTy17j25JWpcful/R3tQQtabKkmyWtk/SCpN90JXOS9pV0o6S1kp6XdFna/gpJv0zbnktjqvZ7N0m6WNKj6fnXStq1xr+pmfVC0oclrUw/u4sk7V127O2SVqR9znck/brrMlxfn+F0NOyzkh4ENktq6RohkzQL+Bxweto3/bkspP0k/U7SRkl3SJqcvt50SSHp3LSfelHSBZLeIOnBtP+5rOz9z5H027LHh0m6M/09n5X0uSp/j5MkPZy+/2pJnyo7NlvSA2kf+Wj6e5DGtDx9zmOSPtLL33tvSTekfeLjkj7Wy3+eE4Fflz33ckn/1uP1bpL0CYCI2ArcD4yEEbkh42Rq5FsK3A18queBNHm4BbgU2A34d+AWSbuVnfYB4HxgEvBk2nZG2j4VeAVwL3AVsCuwHPhy2fOXAEekx64BrpM0roa4Pwm0AVOAPUg6yZDUDNycxjI9jWFh168E/C9gb+BQYF/gK1Ve/2PAqcBb0vNfBC6vIS4z64Wkt5F8Dk8D9iL5rC5Mj00GrgcuIelzVgDHlD+dvj/Dc4B3AjtHRKGrMSJuI7l89bOI2CEiXlP2nDOBc4HdgVa27w+PAg4CTge+BXweOB44DDhN0lsq/J6TgF8At6XxHgjcVeXP8gPgIxExCTgc+GX6GkcCPwI+DewM/DfgifQ5a4CTgR3T2P9D0usqxNEE3AT8maQ/PA74hKR3VInlVSR/9y4/BOaUfVmdnL7GgrJzlgPlf0/rIdNkStJ8SWskPVTHc96bfpOYmT7eLx3xeEDJRMQLhi7ihvUl4KOSpvRofyfw14j4cUQUImIB8BfgXWXnXB0Ry9LjnWnbVRHxaESsB24FHo2IX6Qd23XAa7ueHBE/iYjn0+f/GzAWOKSGmDtJOuL9IqIzIn4TyUaSR5J0XJ+OiM0RsTUifpu+18qIuDMi2iNiLUlyuF0nmPoI8PmIaIuIdpIO+73ypQOzgToLmB8Rf0o/W5cARysZsT4JWBYRN6b9xaXA37qeWONn+NKIWBURW+qI6aqIeCR9zrUkX/DKfT3tS+4ANgMLImJNRKwGfkNZn1bmZOBvEfFv6XM3RsQfqrx/JzBD0o4R8WJE/Cltn0vyt7ozIkoRsToi/pL+LW5J+9mIiF8DdwCVRvbfAEyJiK9FREdEPAZ8j+RLbyU7Axu7HkTEH4H1JAkU6fPujohny56zMX2eVZH1yNTVwKxaT06/CXwMKP8H+wxwTEQcQfLt4uLyIWWDiHiIZDTn4h6H9ubl0aYuT5J8u+myqsJLln/ItlR4vEPXA0mfTIeq10taB+wETK4h7G8CK4E70iHurtj3BZ4s/0Za9l67S1qYDqNvAH7Sy3vtB/yfdBh/Hck3ryLJKJiZ9d82/UpEbAKeJ+lX9qasT0m/IHVXpdX4Ga7UJ/Xlb2X3X6Ksj0rV3KeV2Rd4tMb3/3uSRPLJ9LLm0X29hqQTJd2XXkJclz6/Un+2H7B3V1+Wnvs5qvdlL5JcaSj3Q+D96f33Az/ucXwSsK76r2eZJlMRcQ/wQnlbes38tnS06TeSXll2+OvA/wa2lr1GR/rtB5JRj6wTxLz6MvBhtk2Unib5IJabBqwuexz9fUMl86M+SzLcv0tE7EzyDUh9PTf9lvfJiDiAZKTsnyQdR9KRTqsygvS/0nhfHRE7knQK1d5rFXBiROxc9jMu/SZqZv23Tb+ipJp4N5J+5Rlgn7JjKn9MbZ/h3vqkfvdX/bCKZJpDnyJiSUTMJrnM+HOS0bGqryFpLHADSSXdHmnfuZjK/dkq4PEefdmkiDipSjgPAgf3aPsJMFvSa0gur/ZcNuFQksuIVkUeE495wEcj4vUk17W/AyDptcC+EXFzzycomZD8IMk/qm9ExNPDGXAjiIiVwM9IRva6LAYOlnRmOpHzdGAGySjWYJgEFIC1QIukL5Fc/++TpJMlHZh2thtIRo2KwB9JOuR/kTRR0jhJbyp7v03AOklTSeYhVHMl8D8l7Ze+3xRJs+v/Fc1GtTHpZ7Drp4VkbuS5ko5Ik4J/Bv4QEU+QzNF8laRT03MvBPYse716PsOVPAtM1/BUHt8M7CnpE5LGSpok6aieJ0lqVbI+1U7pVImu/gySuVTnSjpOSVHM1HQAoZVkcGAtUJB0ItUngP8R2KBkYv54Sc2SDldStVfJYnpcOo2INpL5rT8Gbii/hJr+N3w9cGdNf5VRKlfJlKQdSCYjXifpAeC7wF7pB+M/SCYlbye9fv5qkgmAH5TkSzWVfQ3oXnMqIp4nue7/SZJh+M8AJ0fEc4P0freTzKl6hGTYfyu1D9EfRDK5cxPJBPfvRMTdEVEkGak6EHiK5BLB6elzvgq8jmT06xbgxl5e/9skJb93SNoI3EdymdjMareY5DJY189XIuIu4IskIyvPkIy8nAGQ9i3vI7nC8DzJl7elQNfVhXo+w5Vcl94+L+lPvZ45QBGxETiBpD/6G/BX4K1VTv8A8ER66fIC0ktq6Xylc0n+/7aepMpuv/S1P0YygvUiyQT6RVXi6OoTjwAeB54Dvk8ypaLS+X8C1ldI/H5IMjm95yW+U0jmUHmQohdKLllnGEAyKfHmiDhc0o7AiojYq8c5O5FcV96UNu1JcnnwlIhY2uPcq4BbIuL6oY7dzMz6L/2i3AacFRG/yjqe0ULS24H/HhGnlrX9N5LLfdMjolTW/gdgbjr31qrI1chURGwAHpf0PuheKPI1EbE+IiZHxPSImE4yinBKRCyVtI+k8en5uwBvYtuyTzMzywlJ75C0c3r56HMk84BqXUDSBkFE3NEjkRpDsrjz98sTqfTco5xI9S3rpREWkFzCOURSm6S5JGW1c5UsuLYM6Gsey6HAH9Lzfw38a0T8v6GM28zM+u1okisNz5Fcnjq1zmUObBBJOpSkUm8vkjW2rB8yv8xnZjbc0gqze4AvR8TNSjbK/TrJF7iFke71ZmZWi1xd5jMz6w9VWQBY0iwlW5esLFurDJIlO64texwkczLHUbbukZlZLTIbmZo8eXJMnz49k/c2s2zcf//9z0VEz5X4ByydPLsJ+FFEHJ62NZNUkp5AkiAtIdmKZG+SxQ/HAc+lI1NNEVFKK4H/PSLO6us93YeZjS699V+ZbZ0xffp0li5d2veJZjZiSOq54v6giIh7VLbBdupIYGW6vQaSFpLMwdyBZImQGcAWSYvLJt2+SLK+T0WSzifZq5Jp06a5DzMbRXrrv7wPmZmNVFPZdl2zNuCoiLgIQNI5JCNTJUnvAd5Bsv/YZdVeMCLmkSwszMyZMz3h1MwAJ1NmNnJV2nqjOwGKiKvL7t9I/QtEmpkBnoBuZiNXG8lGsl32Idk3zsxsUPWZTFWrkik7LkmXptUyD0p63eCHaWZWtyXAQZL2l9RKsqVJxS05zMwGopaRqauBWb0cP5FkH7WDSCZmXjHwsMzMaldpAeCIKAAXkewRuRy4NiKWZRmnmY1Mfc6ZqlIlU242STlyAPel2wTsFRHPDFKMZma9iog5VdoXk2zGa2Y2ZAZjzlSlipmplU6UdL6kpZKWrl27dhDe2szMzCxbg5FM9Voxs01jxLyImBkRM6dMGfR1+8xsOD31B/jVP0Ont1UzswZT7IQ7vgjrnhqUlxuMZMoVM2aj0ao/wK+/AaVC1pGYmdVu63r46fvg95fCitsG5SUHI5laBJydVvW9EVjv+VJmo0CpM7ltGpNtHGZmtXrxSfjBO+CJ38Dsy+Go8wflZfucgJ5WyRwLTJbUBnwZGAMQEVeSTO48CVgJvAScOyiRmVm+lYrJbZPX/jWzBtB2Pyw4HYod8P4b4YC3DNpL11LNV7FKpux4ABcOWkRm1hiKXSNTzdnGYWbWl4f/C248H3bYA865BaYcMqgv7xXQzax/Sp3JJT5VqkExM8uBCPjdt+Has2HPV8N5dw16IgXem8/M+qvYCc2eL2VmOVXshMWfgvuvhsPeDadeAWPGD8lbOZkys/4pFT1fyszyaet6uPaD8Niv4O8+CW/9AjQN3cU494Rm1j+lTidTZpY/656Cn54Gz/8VTrkMXveBIX9L94Rm1j++zGdmedNVsVcY/Iq93jiZMrP+KRW8xpSZ5cfDi+DGDw9ZxV5vXM1nZv1TKkCzv4+ZWca6K/Y+AHu+asgq9nrjntDM+qfoOVNmlrFhrNjrjXtCM+ufrnWmzMyyUF6x9+Z/grd9cUgr9nrjZMrM+qfoy3xmlpHyir3Zl8Nr359pOO4Jzax/PAHdzLLQdj8sOAMK7cNasdcbT0A3s/5p0HWmJB0q6UpJ10v6h7RthqRrJV0h6b1Zx2hmVTy8CK5+ZzIv6rw7c5FIgZMpM+uvYiE360xJmi9pjaSHerTPkrRC0kpJFwNExPKIuAA4DZiZnnoi8J8R8Q/A2cMavJn1LQJ+d2m6x97hmVTs9cbJlJn1T75Gpq4GZpU3SGoGLidJlGYAcyTNSI+dAvwWuCs9/cfAGZK+Cew2TDGbWS2KnXDzJ+DOL8Jhp8IHb4IdpmQd1TacTJlZ/+RoBfSIuAd4oUfzkcDKiHgsIjqAhcDs9PxFEXEMcFb6eE1EXAhcDDw3fJGbWa+2roefvi9Z+uDN/wh/Pz+TpQ/6kpuvlWbWYPI/AX0qsKrscRtwlKRjgfcAY4HFAJKmA58DJgLfrPaCks4HzgeYNm3aEIRsZt0y2GOvv5xMmVn/lArQ1Jx1FL1RhbaIiLuBu3s0PkGaJPUmIuYB8wBmzpwZA47QzCrbpmLvBjjg2Kwj6pWTKTPrnxxd5quiDdi37PE+wNMZxWJmtXp4Edx4fjIv6pybczXRvBrPmTKz/sn/CuhLgIMk7S+pFTgDWJRxTGZWzTZ77B0O5/2yIRIpcDJlZv1VKuZmZErSAuBe4BBJbZLmRkQBuAi4HVgOXBsRy7KM08yq6K7Y+1Kyx14OK/Z648t8ZtY/xc7czJmKiDlV2heTTjI3s5zaZo+9f4S3fSmzPfb6y8mUmfVP/i/zmVnerXsKrjkdnnsk9xV7vXEyZWb9k6MV0M2sATVYxV5vGmsczczyo1TI0wroZtZIlt+U7rE3Dube0dCJFDiZMrP+ytd2MmbWCLr22PtZWcXe7q/MOqoBc09oZv2T/3WmzCxPip2w+NNw/1Uw41R495W53BqmP5xMmVn9SkUgPAHdzGqzdT1cdw48+kt48z/B277YcBV7vXEyZWb1KxWS22Z3IWbWh20q9v4TXnd21hENOveEZla/Ymdy65EpM+vN6vvhmpFRsdcbJ1NmVr9SVzLlLsTMqlh+E9zw4WQl8w/eNCImmlczci5YmtnwKXZd5vPIlJn1UF6xt8dhcN5dIzqRghqTKUmzJK2QtFLSxRWO7yTpJkl/lrRM0rmDH6qZ5YZHpsysku499r4IM2bDOTfDDrtnHdWQ67MnlNQMXA6cALQBSyQtioiHy067EHg4It4laQqwQtJPI6JjSKI2s2yVPDJlZj2MgD32+quWr5VHAisj4jEASQuB2UB5MhXAJEkCdgBeAAqDHKuZ5UXRI1NmVmbdKrjmtIbfY6+/aukJpwKryh63AUf1OOcyYBHwNDAJOD0iSj1fSNL5wPkA06ZN60+8ZpYHXSNTTqbMbJRU7PWmlvE3VWiLHo/fATwA7A0cAVwmacftnhQxLyJmRsTMKVOm1B2smeVE18iUL/OZjW7Lb4KrRs4ee/1VSzLVBuxb9ngfkhGocucCN0ZiJfA4MLKn7puNZt0jU06mzEal7Sr2RsYee/1VSzK1BDhI0v6SWoEzSC7plXsKOA5A0h7AIcBjgxmomeWIJ6CbjV7FAtz8jz0q9kb31aY+JzxEREHSRcDtQDMwPyKWSbogPX4l8HXgakn/j+Sy4Gcj4rkhjNvMstQ9Ab052zjMbHhts8fe6KrY601Ns0cjYjGwuEfblWX3nwbePrihmVlulRp3OxlJhwIfByYDd0XEFZXasozRLJdGwR57/eV00szql7PLfJLmS1oj6aEe7dstOBwRyyPiAuA0YGa1NjMrs/p++N5xsH51UrHnRGobTqbMrH7F3E1AvxqYVd5QtuDwicAMYI6kGemxU4DfAneVnb9dm5nhir0aOJkys/qV8jVnKiLuIVksuFz3gsPpbgxdCw4TEYsi4hjgrLLX2K6tJ0nnS1oqaenatWsH/fcwy5VRuMdef3nFPTOrX2OsM1VxwWFJxwLvAcaSzgWt1FZJRMwD5gHMnDmz53p7ZiNHsQCLPwX3XwUzToV3XwljxmcdVW45mTKz+jXGOlMVFxyOiLuBu3s0btdmNmpt3ZBW7N0Fb/4neNsXXbHXBydTZla/7gnoue5Callw2MzKuWKvX3LdE5pZTjXGRsfdCw4Dq0kWHD4z25DMcsx77PWbx+3MrH45W2dK0gLgXuAQSW2S5kZEAehacHg5cG1ELMsyTrPccsXegOT6a6WZ5VQxX+tMRcScKu3bLThsZmUi4Pf/CXd+Caa+HuYsgB12zzqqhuNkyszq1z0B3V2IWcPapmJvNrz7u67Y6yf3hGZWv1JDLI1gZtVsU7HnPfYGysmUmdWvMSagm1kl61bBNaclFXvvuhRe/8GsI2p47gnNrH6Nsc6UmfW0+k+w4Azo3OqKvUHkMT0zq1+pAGryZQGzRrL8ZrjqJGgZ64q9Qeae0MzqV+z0qJRZo+iq2PvZ+2GPGd5jbwj4Mp+Z1a9U8Hwps0ZQLMCtn4al812xN4TcG5pZ/Yqded9KxszKK/be9Ak47su+ND9E3BuaWf1KBV/mM8uz8oo977E35JxMmVn9Sp1eY8osr7r32NsKZ10Pr3hr1hGNeE6mzKx+RY9MmeXS8pvhhvNghynwwZs80XyY+OKpmdWv1AlNzVlHYWZdIuD3l7liLyMemTKz+hV9mc8sN4oFuPUzsPQHrtjLiJMpM6ufJ6Cb5YMr9nLByZSZ1a9U8NIIZllbtwquOR2eW+E99jLm3tDM6lfs9KKdZlkq32PPFXuZc29oZvUreTsZs8yUV+ydvcgTzXPAF1bNrH6loiegmw03V+zllkemzKx+xU5onZh1FP0i6VTgncDuwOURcYekvwPOIukTZ0TEMVnGaLad8j32Dj0lqdhrnZB1VJbyyJSZ1a+UrzlTkuZLWiPpoR7tsyStkLRS0sUAEfHziPgwcA5wetr2m4i4ALgZ+OEwh2/Wu60bkq1hls5PKvbe90MnUjnjZMrM6lcs5O0y39XArPIGSc3A5cCJwAxgjqQZZad8IT1e7kxgwdCFaVandatg/ix47O6kYu+Er3rpgxzyfxEzq1+pkKuRqYi4B3ihR/ORwMqIeCwiOoCFwGwlvgHcGhF/6jpZ0jRgfURsqPY+ks6XtFTS0rVr1w7Bb2JWZvWf4PvHwfpV8P7rvfRBjtWUTFUaKq9wzrGSHpC0TNKvBzdMM8uVxtjoeCqwquxxW9r2UeB44L2SLig7Phe4qrcXjIh5ETEzImZOmTJlsOM1e9nym+Gqk6B5LMy9A17xtqwjsl70+dWybKj8BJLOaImkRRHxcNk5OwPfAWZFxFOSdh+qgM0sB4oNsTSCKrRFRFwKXFrhwJeHPiSzPkTAvZfDHV+Aqa+DOQthB/8vNe9qGafvHioHkLQQmA08XHbOmcCNEfEUQESsGexAzSxHcnaZr4o2YN+yx/sAT2cUi1nfXLHXsGq5zFdtqLzcwcAuku6WdL+ksyu9kOcbmI0QjbGdzBLgIEn7S2oFzgAWZRyTWWVbN8CC012x16BqSaYqDpX3eNwCvJ5k7ZZ3AF+UdPB2T/J8A7ORIWeX+SQtAO4FDpHUJmluRBSAi4DbgeXAtRGxLMs4zSrqqth79Ffwrm+7Yq8B1fLVspah8jbguYjYDGyWdA/wGuCRQYnSzPKllK+lESJiTpX2xcDiYQ7HrHbde+xtSSr2PNG8IdWS+tYyVP5fwN9JapE0ATiK5JugmY1ExU5oas46CrPG9pdbXLE3QvQ5MhURBUldQ+XNwPyIWNZVUhwRV0bEckm3AQ8CJeD7EfFQ9Vc1s4bmjY7N+s8VeyNOTTNIKw2VR8SVPR5/E/jm4IVmZrkUkbvLfGYNo1iAWz8DS3/gir0RJPflOGaWM6VicuuRKbP6bN0A150Dj94Fx3wMjvdE85HCyZSZ1afUmdzmf2kEs/xYtwquOR3W/iWp2Hv9OVlHZIPIvaGZ1aeYJlP5X7TTLB9csTfieXzRzOpTKiS3vsxn1jfvsTcqOJkys/p0JVO+zGdWXVfF3s/eD3vMgA/fBbsfmnVUNkTcG5pZfbov83lkyqyiYgFu+yws+b4r9kYJJ1NmVp+S50yZVbV1A1x/Lqz8Bbzp43DcV1yxNwq4NzSz+nQtjeB1psy2tb4tqdhbs9wVe6OMkykzq4+r+cy29/T/hWvOgM6X4Kzr4MDjso7IhpF7QzOrT/c6Ux6ZMgOSPfZuOA8mTIazf+6J5qOQL+SaWX08MmWWiIDfXwYLz0oSKFfsjVruDc2sPt5Oxsx77Nk2nEyZWX28nYyNduUVe95jz3AyZWb18jpTNpqtb4OfnuY99mwbTqbMrD4NPgFd0qnAO4Hdgcsj4g5JBwCfB3aKiPdmGqDllyv2rAqPS5pZfYpde/M1ZxtHGUnzJa2R9FCP9lmSVkhaKeligIj4eUR8GDgHOD1teywi5g574NY4/nJLusdeK3zodidStg0nU2ZWn3xudHw1MKu8QVIzcDlwIjADmCNpRtkpX0iPm1VXXrE35ZVw3i+SvfbMyjiZMrP65PAyX0TcA7zQo/lIYGU66tQBLARmK/EN4NaI+FM97yPpfElLJS1du3bt4ARv+VUswC2fhDs+D4e+C865BSbtkXVUlkNOpsysPsVcjkxVMhVYVfa4LW37KHA88F5JFwBI2k3SlcBrJV1S7QUjYl5EzIyImVOmTBnC0C1zWzfAgtOTpQ+O+Ri874de+sCq8gR0M6tP90bH+ZkzVYUqtEVEXApc2qPxeeCCYYnK8s977FmdnEyZWX265kzl6DJfFW3AvmWP9wGezigWaxSu2LN+8GU+M6tP46wztQQ4SNL+klqBM4BFGcdkefaXxS9X7M29w4mU1czJlJnVJ4cjU5IWAPcCh0hqkzQ3IgrARcDtwHLg2ohYlmWcllMRcO93YOGZL1fseY89q4Mv85lZfXK40XFEzKnSvhhYPMzhWCMpFuC2z8KS73uPPeu3/PSGZtYYuteZcvdhDW7rBrj+Q7DyTu+xZwPi3tDM6pPDdabM6uaKPRtETqbMrD5Fj0xZg3PFng0yj2eaWX1KnUkipUrLOJnlnPfYsyHgZMrM6lMqeFTKGk8E3Hu599izIeEe0czqUyw0whpTZi/bpmLvXfDuea7Ys0HlZMrM6lPqhGZ3HdYg2jfCdeemFXsfheO/5oo9G3Q1/YuSNEvSCkkrJV3cy3lvkFSU9N7BC9HMcqXY6ZEpawzr22D+ifDoL+Hkb8Hb/4cTKRsSfX69lNQMXA6cQLLX1RJJiyLi4QrnfYNktWEzG6m6JqCb5Zkr9mwY1ZKiHwmsjIjHIqIDWAjMrnDeR4EbgDWDGJ+Z5U2p6Mt8lm/le+y5Ys+GQS3J1FRgVdnjtrStm6SpwLuBK3t7IUnnS1oqaenatWvrjdXM8sCX+SyvKu2x54o9Gwa1JFOVFpOJHo+/BXw2Ioq9vVBEzIuImRExc8qUKbXGaGZ5Uur06ueWP8UCLP4U3H4JHHoynHMLTNoj66hslKhlrL4N2Lfs8T7A0z3OmQksVLKI32TgJEmFiPj5oERpZvnhpREsb7ap2PMeezb8akmmlgAHSdofWA2cAZxZfkJE7N91X9LVwM1OpMxGqFIBmpqzjsIsUb7H3snfgpnnZh2RjUJ9JlMRUZB0EUmVXjMwPyKWSbogPd7rPCkzG2F8mc/yoqtir2MznHUtHHh81hHZKFVTSU5ELAYW92irmERFxDkDD8vMcssT0C0P/rIYbpgLE3aDuXd4orllyheVzaw+pYKXRrDsbFOxdwicd5cTKcuce0Qzq0+hHVp3yDoKG43K99h75cnwnu95jz3LBY9MmVl9OjbB2MZNpiQdIOkHkq4vaztW0m8kXSnp2AzDs2q2boAFZySJ1DEfhdN+7ETKcsPJlJnVp31T7kamJM2XtEbSQz3at9tXNN3NYW6PlwhgEzCOZDkYy5P1bXCV99iz/PK/RjOrT0f+kingamBWeUPZvqInAjOAOZKqTa75TUScCHwW+OoQxmn1evoB+N5x8OKTyR57XvrAcsjJlJnVLiKXl/ki4h7ghR7Nte4rSkSU0rsvAmOrvY+3xBpmK25NRqSaxyQVe95jz3LKyZSZ1a7zJYhSHkemKqm4r6ik3SRdCbxW0iUAkt4j6bvAj4HLqr2gt8QaJhFw3xWwYI4r9qwhuJrPzGrXvim5zdnIVBUV9xWNiOeBC3o03mditZ0AABPnSURBVAjcOCxRWe+KBbjtYljyPVfsWcNwMmVmtetIk6nWSdnGUZta9hW1PGnfCNd/CP56R1Kxd/zXPNHcGoKTKTOrXfvG5LYxRqb63FfUcmT96nSPvYe9x541HKf8Zla77pGpfCVTkhYA9wKHSGqTNDciCkDXvqLLgWsjYlmWcVoVTz8A33sbrHPFnjUmj0yZWe1yOmcqIuZUad9uX1HLmfI99j5wuyeaW0PyyJSZ1a6x5kxZnnmPPRtBPDJlZrVrrDlTlleu2LMRxsmUmdUup3OmrIG0b4TrzoWVd8LRF8EJX3fFnjU8J1NmVrt2J1M2ANtU7P0HzPxQ1hGZDQonU2ZWu45NMGaiRxKsfk8/AAvOSBLys66FA4/POiKzQeNkysxq177R86WsfituhevnwoRdkz32PNHcRhh/vTSz2nVs8iU+q902e+wd7Io9G7E8MmVmtWvf5JEpq02xALdfAn+c54o9G/GcTJlZ7To2eY0p65v32LNRxsmUmdWufSPsuHfWUVieuWLPRiEnU2ZWO8+Zst64Ys9GKSdTZlY7z5myalyxZ6OYL2KbWe08MmWV3HdlUrE3+SA47xdOpGzU8ciUmdWmVITOl5xM2cu2q9ibB60Ts47KbNg5mTKz2nTty+fLfAbbVuwdfRGc8DVoas46KrNMOJkys9p4Xz7rUl6x985/hzfMzTois0w5mTKz2nSPTHmdqVHt6QeSRKpjsyv2zFKegG5mtRnBI1OSZki6VtIVkt6bdTy5teJWuOpEaB4Dc293ImWWcjJlZrXp2JjcNsicKUnzJa2R9FCP9lmSVkhaKenitPlE4D8j4h+As4c92EbQVbE35ZC0Yu+wrCMyy42akqkqnU/58bMkPZj+/F7SawY/VDPLVOONTF0NzCpvkNQMXE6SPM0A5kiaAfwYOEPSN4HdhjnOfCsVYfFn4LbPwivfCefcApP2zDoqs1zpM5nqpfMp9zjwloh4NfB1YN5gB2pmGWuwOVMRcQ/wQo/mI4GVEfFYRHQAC4HZEbEmIi4ELgaeG+ZQ86t9YzIa9cfvJhV7p/3ISx+YVVDLBPTuzgdA0kJgNvBw1wkR8fuy8+8D9hnMIM0sB9rTy3yNMzJVyVRgVdnjNuAoSdOBzwETgW9We7Kk84HzAaZNmzZkQebC+tWw4HR41hV7Zn2pJZmq2Pn0cv5c4NZKB0ZVR2Q20oyMdaZUoS0i4gnSvqk3ETGPdOR95syZMbih5Uj5HntnXgsHeaK5WW9qmTNVsfOpeKL0VpJk6rOVjkfEvIiYGREzp0yZUnuUZpa99k2gJhgzIetIBqIN2Lfs8T7A0xnFkk8rboWrToKmlqRiz4mUWZ9qSaZq6nwkvRr4Psn8g+cHJzwzy42OzcklPlX6ftUwlgAHSdpfUitwBrAo45jyo7ti72BX7JnVoZZkqs/OR9I04EbgAxHxyOCHaWaZ69jYUPOlJC0A7gUOkdQmaW5EFICLgNuB5cC1EbEsyzhzoViAxZ8uq9hb7Io9szr0OWcqIgqSujqfZmB+RCyTdEF6/ErgSyTlxN9R8q21EBEzhy5sMxt27Zsaar5URMyp0r4YWDzM4eSX99gzG7CatpOp1PmkSVTX/fOA8wY3NDPLlY5NDTUyZTXwHntmg8J785lZbRpsZMr64Io9s0Hj7WTMrDYdm6C1MRbstD6suC2p2FOzK/bMBoGTKTOrTftGj0yNBPddCQvnwOSD4MN3uWLPbBD4Mp+Z1cZzphpbqQi3XZJsDfPKk+E987w1jNkgcTJlZrXxnKnG1b4Rrp8Lf73dFXtmQ8DJlJn1rdgJxXbPmWpE3mPPbMg5mTKzvnVtcuyRqcbyzJ+TpQ9csWc2pJxMmVnfNj+X3I7fNds4rHYrbksW4xy/S1Kx54nmZkPG1Xxm1rcXH09ud90/2zisNq7YMxtWHpkys7698Fhyu4uTqVwrr9g75J3w999zxZ7ZMHAyZWZ9e+HxZFmEiZOzjsSqKa/Ye+OF8Pavu2LPbJg4mTKzvr34eHKJL9nI3PJmmz32/g3e4K1SzYaTkykz69sLj8Puh2YdhVXiij2zzHkCupn1rlSEF5/w5PM8WnEbzD/Re+yZZcwjU2bWuw2rodQJux6QdSRW7r4r4fZLYM9Xw5k/g0l7Zh2RWS6USkFnqUSxFHQWg2IpKJRKFIqR/JRKFErJ/T12HMtuO4wd8Hs6mTKz3r2QLovgSr588B57NoQikgSks1iis1iio1hKHhdKaVtyrFAq0VHY9n6h1OOc7tcJCunrdZa67r+c4HSk5ybPT44XSmWvkT6nZyLUWexKmNK29LxS1P77fm32YZx99PQB/92cTJlZ77zGVH60b0oW4vQeew0vImgvJMlKe2eJ9kKRjkIpaUvbk8eV2zvT26Qt0ttieiy6z+3seX5ZotRZ9rjrnEI9mUg/jGkWLU1NtDSLMc1NtDQlt2OaRUvZ45ZmMaapidaWJiY0NzGmSbSUndPSlN6WvU73sWZt83hMcxPNTap4zoy9dhqU38vJlJn17oXHoLkVdpyadSRDRtKhwMeBycBdEXFFxiFtb8PTcM1p6R57rtgbLF0jMVs6i7R3FtnSWWRrZ4mt3fe7fkov3y8kCdDWQnGb2/ZCcl57oUh7mgC1d76cDLV3n5ckOoOltaWJsc1J4jGmuYkxLaK1Obk/Nm1rbWliQmtLd1tLc3pOSxOt6fGWJr38GmnS05oe70paxnQlL+n91rL7Y9L37HqdruSl6/ktTUIjtCLYyZSZ9e6Fx2Hn/RpuBETSfOBkYE1EHF7WPgv4NtAMfD8i/iUilgMXSGoCvpdJwL0Z5RV7XaM4L3UU2dxeYHNHgc3tRV7qKPBSR3K7ub3Ilo5i8riz0H1/S0eSFL3UUWBLZ4mt3cdfTpiK/RyNaWkS48Y0M25ME2Nbmhk7Jkkcxo1pprWliZ3Gj2HcpLG0trzcNq4luR3b0tR9/tgxzd3JUNexriRm7Jjm7mSnq70rOWpNk5iRmqA0EidTZta7rjWmGs/VwGXAj7oaJDUDlwMnAG3AEkmLIuJhSacAF6fPyY8G32Nva2eRDVs72bClwIatnWzcWmBjerup6357cn9zRyFpby8kSVN7sft+PZefklGYZiaMaWZ8azMTWlsYP6aZncePYfyO4xjfmrSPa2lmfGtTelveliRI41qaGZsmS0nS1My4lpfvNzc5ibGEkykzqy4CXngCph2TdSR1i4h7JE3v0XwksDIiHgOQtBCYDTwcEYuARZJuAa6p9JqSzgfOB5g2bdoQRV4mRxV7WzuLPL+5gxc3d/DC5g5efKmDdS91dt+u39LJupc6WL8lub9ha4H1WzrpKPR+OUuCia0tTBrXwsSxLeyQ/uwxaVz6uJmJY5NjE1ubmZAen5AmScltcs74NIFqafaqPza8nEyZWXWbn4OOjSNpWYSpwKqyx23AUZKOBd4DjAUWV3tyRMwD5gHMnDlz6GbqDlPF3tbOIs9u2Mqaje2s2dDO2o1bWbupnbUb23l+UwfPbe7g+U3tvLC5g5c6ilVfZ9LYFnaeOIadxic/e+40jp3Gj2HH8WPYcVzXbQs7jhvDpHEtTOq+bWFiawtNHuGxBudkysyqG3mVfJX+rx0RcTdw9/CGUkX7JrhhLjxy24Aq9kqlYO2mdla98BJtL25h9brk55l1W3hm/VaeWb+V9Vs6t3tec5PYbWIrk3cYy247tHLA5InsOrGVXSe2stvEVnZJ7+8yYQw7T2hlp/FjGOORIBvlnEyZWXUjb42pNmDfssf7AE9nFMv21q+GBafDs8tqrthbv6WTlWs2sXLNRh5bu5nHntvME89t5qkXXqK9xyW2XSe2stdO49hnlwnMnL4Le+00nt0njWX3Hcex+6SxTJk0ll0ntHqkyKxOTqbMrLqVv4BxO8Eu07OOZLAsAQ6StD+wGjgDODPbkFLdFXsb04q9E7Y75W/rt/LntnU8tHo9y57ewPJnNvDM+q3dx1ubm9hvtwlMnzyRtxw8hf12m8A+u05g313GM3XnCYxvbayKTLNG4WTKzCrbuh6W3wRHnAktrVlHUzdJC4BjgcmS2oAvR8QPJF0E3E6yNML8iFiWYZiJ7oq9neFDt8OeyUoOTz3/Er9d+Rz3PfY89z/5IqvXbQGSS3EHTtmBo/bflUP23JGD99iBA3ffgX12meAKM7MMOJkys8qW/RwKW+CIs7KOpF8iYk6V9sX0Msl82HVX7L2KmLOQB9aN57bFy7nj4Wd5/LnNAOw+aSxv2H9X5r55f46YtjMz9tqRcWM8ymSWF06mzKyyB66ByQfD1NdlHcnIVFax13ngifxw7y9wzfce4bG1m2lpEke/Yjc+ePR+vPmgKbxiykQvzGiWY06mzGx7zz8Kq+6D47+SLARkg6tsj72le83hQ3+dzYaHnmTmfrvwkb8/gFmH78VO48dkHaWZ1cjJlJlt74Gfgprg1adnHcnIk+6xV3r2Yb7R9GHmPfFWTjp8Dy5864HM2HvHrKMzs35wMmVm21p+E/zuUjj4RNhx76yjGVmeeZC45nQ6Nr/IR9o/yd92/ztuPu81HLb34Oxcb2bZqGmlNUmzJK2QtFLSxRWOS9Kl6fEHJXmShVkjWvZ/4LpzYO8j4N1XZB3NyPLI7TB/Fhvai8ze8mUOOPrd/NdFb3IiZTYC9Dky1dvGoGWnnQgclP4cBVyR3ppZXkXA5rXw4pPQtgQe/Bk88wDs+0Y46zoY50tOg+YP34XbLubFHV/JO569kOOPeg1fPPlQTyo3GyFqucxXdWPQsnNmAz+KiADuk7SzpL0i4pkBR1jsZM0330B7ofq+UGajUW//G1YEEOl50f3TEgWaKTA22hkXW2ji5e3lHms5kN9MOp+7Ok6i/Ye1Lb00Y+8d+fK7DhvAbzEK3P55uPcyNu3/Dt7yyBm86sC9+eophzmRMhtBakmmKm4MWsM5U4Ftkqn+7bgu1o6bzsat2+8hZTbaRS8pVXIsOV5K06aiWijSTLvGsaVpPBuaduLZ5r1Y3TKNNS17DU/Qo83kg+CNF/Lrvf47G5b/mc+ddKj3sjMbYWpJpipuDNqPc/q343pzC4d94uc1nWpmljuvPye5fTD5bulEymzkqeVTXcvGoPnePNTMzMxsiNSSTHVvDCqplWRj0EU9zlkEnJ1W9b0RWD8o86XMzMzMcq7Py3wRUai0MaikC9LjV5Lsc3USsBJ4CTh36EI2MzMzy4+aFu2stDFomkR13Q/gwsENzczMzCz/PBPSzMzMbACcTJmZmZkNgJMpMzMzswFwMmVmZmY2AErmjmfwxtJa4Mk6njIZeG6IwhlKjRo3NG7sjRo3jPzY94uIKcMRzFCrsw8b6f9d86hR44bGjb1R44YB9l+ZJVP1krQ0ImZmHUe9GjVuaNzYGzVucOwjVSP/bRo19kaNGxo39kaNGwYeuy/zmZmZmQ2AkykzMzOzAWikZGpe1gH0U6PGDY0be6PGDY59pGrkv02jxt6ocUPjxt6occMAY2+YOVNmZmZmedRII1NmZmZmueNkyszMzGwAcp9MSZolaYWklZIuzjqe3kjaV9KvJC2XtEzSx9P2XSXdKemv6e0uWcdaiaRmSf9X0s3p40aJe2dJ10v6S/q3P7oRYpf0j+m/k4ckLZA0Lq9xS5ovaY2kh8raqsYq6ZL0M7tC0juyiTofGqUPc/+VjUbtv8B9WLlcJ1OSmoHLgROBGcAcSTOyjapXBeCTEXEo8EbgwjTei4G7IuIg4K70cR59HFhe9rhR4v42cFtEvBJ4DcnvkOvYJU0FPgbMjIjDgWbgDPIb99XArB5tFWNN/82fARyWPuc76Wd51GmwPsz9VzYarv8C92HbiYjc/gBHA7eXPb4EuCTruOqI/7+AE4AVwF5p217AiqxjqxDrPuk/prcBN6dtjRD3jsDjpMUUZe25jh2YCqwCdgVagJuBt+c5bmA68FBff+Oen1PgduDorOPP6G/WsH2Y+69hibsh+680LvdhZT+5Hpni5f9YXdrSttyTNB14LfAHYI+IeAYgvd09u8iq+hbwGaBU1tYIcR8ArAWuSof4vy9pIjmPPSJWA/8KPAU8A6yPiDvIedw9VIu1YT+3Q6Ah/xbuv4ZNQ/Zf4D6sp7wnU6rQlvu1HCTtANwAfCIiNmQdT18knQysiYj7s46lH1qA1wFXRMRrgc3kZ1i5qvTa/Gxgf2BvYKKk92cb1aBpyM/tEGm4v4X7r2HVkP0XuA/rKe/JVBuwb9njfYCnM4qlJpLGkHREP42IG9PmZyXtlR7fC1iTVXxVvAk4RdITwELgbZJ+Qv7jhuTfSFtE/CF9fD1J55T32I8HHo+ItRHRCdwIHEP+4y5XLdaG+9wOoYb6W7j/GnaN2n+B+7Bt5D2ZWgIcJGl/Sa0kE8IWZRxTVZIE/ABYHhH/XnZoEfDB9P4HSeYi5EZEXBIR+0TEdJK/8S8j4v3kPG6AiPgbsErSIWnTccDD5D/2p4A3SpqQ/rs5jmTiad7jLlct1kXAGZLGStofOAj4Ywbx5UHD9GHuv4ZfA/df4D5sW1lPCKthwthJwCPAo8Dns46nj1jfTDIU+CDwQPpzErAbyeTIv6a3u2Yday+/w7G8PIGzIeIGjgCWpn/3nwO7NELswFeBvwAPAT8GxuY1bmABybyITpJvbXN7ixX4fPqZXQGcmHX8Gf/tGqIPc/+VWcwN2X+lsbsPS3+8nYyZmZnZAOT9Mp+ZmZlZrjmZMjMzMxsAJ1NmZmZmA+BkyszMzGwAnEyZmZmZDYCTKTMzM7MBcDJlZmZmNgD/H+DyZ1Ev/Z2UAAAAAElFTkSuQmCC\n", "text/plain": [ - "" + "
" ] }, - "metadata": {}, + "metadata": { + "needs_background": "light" + }, "output_type": "display_data" } ], @@ -236,7 +226,6 @@ " \n", "axes[0].plot(x, x**2,x, np.exp(x))\n", "axes[0].set_title(\"Normal scale\")\n", - "\n", "axes[1].plot(x, x**2,x, np.exp(x))\n", "axes[1].set_yscale(\"log\")\n", "axes[1].set_title(\"Logarithmic scale (y)\")" @@ -259,9 +248,7 @@ { "cell_type": "code", "execution_count": 193, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -446,9 +433,7 @@ { "cell_type": "code", "execution_count": 195, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -502,9 +487,7 @@ { "cell_type": "code", "execution_count": 196, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -546,7 +529,6 @@ "cell_type": "code", "execution_count": 25, "metadata": { - "collapsed": false, "scrolled": true }, "outputs": [ @@ -674,9 +656,7 @@ { "cell_type": "code", "execution_count": 28, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -718,9 +698,7 @@ { "cell_type": "code", "execution_count": 94, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -807,9 +785,7 @@ { "cell_type": "code", "execution_count": 95, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -938,9 +914,7 @@ { "cell_type": "code", "execution_count": 110, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -978,9 +952,7 @@ { "cell_type": "code", "execution_count": 109, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -1041,9 +1013,7 @@ { "cell_type": "code", "execution_count": 108, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -1082,9 +1052,7 @@ { "cell_type": "code", "execution_count": 107, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -1117,9 +1085,7 @@ { "cell_type": "code", "execution_count": 106, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -1157,9 +1123,7 @@ { "cell_type": "code", "execution_count": 105, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -1199,9 +1163,7 @@ { "cell_type": "code", "execution_count": 104, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -1256,9 +1218,7 @@ { "cell_type": "code", "execution_count": 98, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -1326,9 +1286,7 @@ { "cell_type": "code", "execution_count": 99, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -1366,9 +1324,7 @@ { "cell_type": "code", "execution_count": 101, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -1426,7 +1382,6 @@ "cell_type": "code", "execution_count": 102, "metadata": { - "collapsed": false, "scrolled": true }, "outputs": [ @@ -1467,9 +1422,7 @@ { "cell_type": "code", "execution_count": 103, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [ { "data": { @@ -1525,7 +1478,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.0" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-1.ipynb b/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-1.ipynb index 72694b0..262e6d6 100644 --- a/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-1.ipynb +++ b/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-1.ipynb @@ -34,12 +34,10 @@ "source": [ "# import libraries here\n", "import numpy as np\n", - "'''\n", "import pandas as pd\n", "import matplotlib.pyplot as plt\n", "import seaborn as sns\n", - "%matplotlib inline\n", - "'''" + "%matplotlib inline" ] }, { @@ -75,20 +73,54 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# your code here-1st way (call `subplots` twice using the `index` parameter)\n" + "# your code here-1st way (call `subplots` twice using the `index` parameter)\n", + "plt.subplot(121);\n", + "plt.plot(x,y);\n", + "plt.subplot(122);\n", + "plt.plot(x,z);" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# your code here-2st way (call `subplots` only once not using the `index` parameter)\n" + "# your code here-2st way (call `subplots` only once not using the `index` parameter)\n", + "fig, (ax1,ax2) = plt.subplots(2);\n", + "ax1.plot(x, y);\n", + "ax2.plot(x, z);\n", + "\n" ] }, { @@ -102,11 +134,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "fig, (ax1,ax2) = plt.subplots(2,figsize=(10,10));\n", + "ax1.plot(x, y);\n", + "ax2.plot(x, z);" ] }, { @@ -120,11 +168,42 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0, 0.5, 'y')" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAVoAAAE9CAYAAABKoKqUAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3deXjU5bn/8fedfYeEhBBCNmTfl4BsLnUXF9xQrFqqWNr+arW7Untqz2l7jketp9r1cAyIG4pKq6VWVFqrYd/3nUlCIJCEkBCyT+b+/TFjGymBAJl8Z5L7dV25knlmux8zfPzmme88t6gqxhhj/CfE6QKMMaazs6A1xhg/s6A1xhg/s6A1xhg/s6A1xhg/s6A1xhg/C3O6gI6WnJys2dnZTpdhjOlk1q9fX66qKae7LqCCVkQygJeAXoAHmKuqz4lIEvAGkA0UAHeq6nHffeYAs4Bm4GFVXXqm58jOzmbdunV+m4MxpmsSkcLWrgu0pQM38F1VHQxMAL4hIkOAx4BlqtofWOa7jO+6GcBQ4DrgtyIS6kjlxhjTioAKWlUtUdUNvp+rgZ1AOjANWOC72QLgFt/P04DXVbVBVV3APmB8x1ZtjDFnFlBB25KIZAOjgdVAqqqWgDeMgZ6+m6UDB1vcrdg3dupjzRaRdSKyrqyszJ9lG2OCnKqy7VBVuz5mQAatiMQBbwPfUtUTZ7rpacb+ZfMGVZ2rqrmqmpuSctq1amNMF9fgbuat9cVMfT6fG3+Vz56j1e322AH1ZhiAiITjDdlXVXWxb/ioiKSpaomIpAGlvvFiIKPF3fsAhzuuWmNMsKuoaeTVVYW8tKqQsuoG+veM479vH05mUky7PUdABa2ICJAH7FTVZ1tc9S4wE3jS9/2dFuOvicizQG+gP7Cm4yo2xgSrfaXV5OUXsHhDMQ1uD5cOSOGZ6Tlc2j8ZbxS1n4AKWmAycB+wVUQ2+cZ+iDdgF4nILKAImA6gqttFZBGwA+8ZC99Q1eaOL9sYEwxUlfx95bzwqYu/7ykjMiyE28ak88DkHPqnxvvteQMqaFU1n9OvuwJc2cp9fg783G9FGWOCXn1TM+9sOsS8/AJ2H60mOS6S71w9gHsuzqRHXKTfnz+ggtYYY9pT+ckGXl5ZyCurCjlW08igXvE8fccIbh7Vm8iwjjvl3oLWGNPp7D5Szbx8F3/YdIhGt4crB/Vk1pQcJl7Uo93XX9vCgtYY0yl4PMrf95YxL9/Fp3vLiQoP4c7cPtw/OYeLUuIcrc2C1hgT1Ooam1m8sZh5+S72l9WQmhDJ968dyBfHZ5IYG+F0eYAFrTEmSJWeqOellYW8urqQ47VNDEtP4H/uGskNw3sTERZYn8WyoDXGBJXth6vIy3fxp82HcXuUqwanMmtKDhfnJDmy/toWFrTGmIDn8Sh/3VVKXr6LlQeOERMRyhfHZ3L/5Byyk2OdLu+sLGiNMQGrttHN2+uLmbe8AFd5DWndophz/SBmjM+kW3S40+W1mQWtMSbgHKmqZ8HKAl5bXURVXRMjM7rz/N2juX5YL8JDA2v9tS0saI0xAWNrcRV5+QdYsqUEjyrXDu3Fg5fkMCYzMWDXX9vCgtYY46hmj/LRzqPkfepiTUEFcZFhfGliNvdPziajHXfQcpIFrTHGEScb3Ly57iDzlxdQVFFLevdofnTDYO4cl0FCVPCsv7aFBa0xpkMdqqxjwYoCFq4porrezdisRB67fhDXDEklLAjXX9vCgtYY0yE2Fh0nL9/FX7YdAeC6Yb2YNcW7/trZWdAaY/zG3exh6faj5OUfYENRJfFRYcyaksPMSdmkd492urwOY0FrjGl3J+qbWLTWu/56qLKOzKQYnrhpCNNzM4iL7Hqx0/VmbIzxm4MVtcxfXsCidQc52eBmfHYSP75pCFcNTiU0JHhPz7pQFrTGmAuiqmzwrb++v+0IISLcMCKNB6f0ZXifbk6XFxAsaI0x56Wp2cNfth0hL9/F5oOVJESF8dXLLmLmxGx6dYtyuryAElBBKyLzgBuBUlUd5hv7CfAVoMx3sx+q6nu+6+YAs4Bm4GFVXdrhRRvTxVTVNrFwbRELVhRQUlVPTnIsP502lNvH9iEmIqAiJWAE2n+VF4FfAy+dMv4/qvpMywERGQLMAIbibTX+kYgMsC64xvhHQXkN85e7eHN9MbWNzUzs24OfThvGFYN6EtKF11/bIqCCVlU/EZHsNt58GvC6qjYALhHZB4wHVvqpPGO6HFVltauCvHwXH+08SliIcNPI3syaksPQ3rb+2lYBFbRn8JCIfAlYB3xXVY8D6cCqFrcp9o0ZYy5Qo9vDn7ceJi/fxbZDJ0iMCeehL/TjvglZ9Eyw9ddzFQxB+zvgp4D6vv8CeAA43d8qeroHEJHZwGyAzMxM/1RpTCdQWdvIq6uLeGllAUdPNHBRSiz/eetwbhuTTlR4x7Xn7mwCPmhV9ehnP4vI/wFLfBeLgYwWN+0DHG7lMeYCcwFyc3NPG8bGdGUHyk4yb7mLt9YXU9/kYUq/ZJ68fQSX9U+x9dd2EPBBKyJpqlriu3grsM3387vAayLyLN43w/oDaxwo0ZigpKqs3H+MvHwXy3aVEhEWwi2jevPAlBwG9UpwurxOJaCCVkQWApcDySJSDDwBXC4io/AuCxQAXwVQ1e0isgjYAbiBb9gZB8acXYO7mXc3HWbe8gJ2lpygR2wE37qqP/dOyCI5LtLp8jolUe1af0nn5ubqunXrnC7DmA537GSDb/21kPKTDQxIjePBKX25eVRvW39tByKyXlVzT3ddQB3RGmPa396j1cxb7mLxhkM0uD1cNiCFWVNyuKR/clC3hwkmFrTGdEKqyqd7y3kh38Une8qIDAvhtjHpPDA5h/6p8U6X1+VY0BrTidQ3NfPOpkPk5bvYc/QkKfGRfPfqAdwzIYuk2Ainy+uyLGiN6QTKqht4ZVUhr6wq5FhNI4PTEnhm+khuGplGZJitvzrNgtaYILbryAnyPnXxzqbDNDZ7uHJQT2ZdksPEvj1s/TWAWNAaE2Q8HuXve8vI+9RF/r5yosNDuWtcBvdPzqZvSpzT5ZnTsKA1JkjUNTazeGMx8/Jd7C+rITUhkh9cN5Avjs+ke4ytvwYyC1pjAlzpiXpeWlnIq6sLOV7bxPD0bvzyrlFMHZ5GRFjnbM/d2VjQGhOgth+uIi/fxZ82H8btUa4enMqsKTmMz0my9dcgY0FrTADxeJRlu0rJyz/AqgMVxESEcs/FWXx5UjbZybFOl2fOkwWtMQGgttHNW+uLmb+8AFd5Db27RfHDqYO4a1wm3aLDnS7PXCALWmMcVFJVx4IVhSxcU0RVXROjMrrzq7tHc/2wXoSF2vprZ2FBa4wDthRXkpfv4s9bSvCoct2wXsya0pexWYlOl2b8wILWmA7S7FE+3HGUefku1hRUEBcZxsxJ2Xx5UjYZSTFOl2f8yILWGD872eBm0dqDvLiigKKKWtK7R/OjGwZz17gM4qNs/bUrsKA1xk8OVdbx4nIXr685SHWDm7FZiTx2/SCuGZJq669djAWtMe1sY9FxXsh38f62IwBMHZ7GrCk5jMro7nBlxikWtMa0A3ezh6Xbj/JC/gE2FlUSHxXGrCk5zJyUTXr3aKfLMw6zoDXmApyob2LR2oPMX17Aoco6snrE8JObhjA9N4PYSPvnZbwC6pUgIvOAG4FSVR3mG0sC3gCy8TZnvFNVj/uumwPMApqBh1V1qQNlmy7oYEUt85cXsGjdQU42uBmfk8SPbxrCVYNTCbX23OYUARW0wIvAr4GXWow9BixT1SdF5DHf5UdFZAgwAxiKt934RyIywDrhGn9RVdYXHueFT118sOMIISLcOCKNWVP6MrxPN6fLMwEsoIJWVT8RkexThqfhbUEOsAD4GHjUN/66qjYALhHZB4wHVnZErabraGr28N7WEuYtL2DzwUq6RYfz1csuYubEbHp1i3K6PBME/BK0IvIQ8Opnf+JfoFRVLQFQ1RIR6ekbTwdWtbhdsW/MmHZRVdvEwrVFLFhRQElVPTnJsfx02lBuH9uHmIiAOkYxAc5fr5ZewFoR2QDMA5aqqrbzc5xuIey0zyEis4HZAJmZme1chulsCsprmL/cxZvri6ltbGZi3x787JZhfGFgT0Js/dWcB78Erar+SET+DbgGuB/4tYgsAvJUdf85PtxREUnzHc2mAaW+8WIgo8Xt+gCHW6lnLjAXIDc3t70D33QCqspqVwV5+S4+2nmUsBDh5pHpzJqSw5DeCU6XZ4Kc3/7+UVUVkSPAEcANJAJviciHqvqDc3iod4GZwJO+7++0GH9NRJ7F+2ZYf2BNe9VvuoZGt4clWw6Tl+9i++ETJMaE89AX+nHfhCx6Jtj6q2kf/lqjfRhvKJYDLwDfV9UmEQkB9gKnDVoRWYj3ja9kESkGnsAbsItEZBZQBEwHUNXtvqPkHXiD/Bt2xoFpq+M1jby2xrv+WlrdQL+ecfzXbcO5dXQ6UeHWntu0L38d0SYDt6lqYctBVfWIyI2t3UlV727lqitbuf3PgZ+fd5Wmy9lfdpJ5+S7e3lBMfZOHS/on89QdI7hsQIq1hzF+46812h+f4bqd/nhOY1qjqqzYf4y8fBd/3VVKRFgIt45K54EpOQzsFe90eaYLsHNUTKfV4G7m3U3e9dddR6rpERvBt67qz70TskiOi3S6PNOFWNCaTufYyQZeWVXEy6sKKT/ZwMDUeJ66fQQ3j+pt66/GERa0ptPYc7SaefkuFm88RKPbw+UDU3hwSl8m9+th66/GURa0JqipKp/uLeeFfBef7CkjMiyE28f0YdaUbPr1tPVXExgsaE1Qqm9q5o8bDzFvuYs9R0+SEh/J964ZwBcvziIpNsLp8oz5HAtaE1TKqht4eVUhr64q5FhNI0PSEvjF9JHcODKNyDBbfzWByYLWBIVdR06Q96mLdzYdpsnj4cpBPXlgSg4T+9r6qwl8FrQmYHk8yt/3lPFC/gGW7ztGdHgoM8ZncP/kHHKSY50uz5g2s6A1AaeusZm3NxQzf7mL/WU1pCZE8uh1g7h7fAbdY2z91QQfC1oTMI6eqOellQW8urqIytomhqd345d3jWLq8DQiwqw9twleFrTGcdsOVZGX72LJlsO4PcrVg1N58JK+jMtOtPVX0ylY0BpHeDzKsl2l5OUfYNWBCmIiQrnn4izun5xNVg9bfzWdiwWt6VA1DW7e3lDMvHwXBcdqSe8ezQ+nDuKucZl0iw53ujxj/MKC1nSIkqo6Fqwo5LXVhZyodzM6szvfu3Yg1w3tRViorb+azs2C1vjV5oOV5OW7eG9rCR5Vrh+WxgNTchibleh0acZ0GAta0+6aPcqHO46Ql+9ibcFx4iPD+PKkbGZOyiYjKcbp8ozpcBa0pt2cbHCzaO1BXlxRQFFFLX0So/m3G4dwZ24f4qNs/dV0XRa05oIdrKhlwYoC3lh7kOoGN2OzEplz/SCuGdqLUGvPbYwFrTl/6wuPMy/fxV+2lSAiTB2exqwpOYzK6O50acYElKAJWhEpAKqBZsCtqrkikgS8AWQDBcCdqnrcqRq7Anezh/e3e9dfNxZVEh8Vxlcu6cvMSdn07h7tdHnGBKSgCVqfL6hqeYvLjwHLVPVJEXnMd/lRZ0rr3E7UN/HGGu/666HKOrJ6xPCTm4YwPTeD2MhgexkZ07GC/V/INOBy388LgI+xoG1XRcdqmb/CxaK1B6lpbObinCSeuGkIVw5OtfVXY9oomIJWgQ9ERIH/VdW5QKqqlgCoaomI9HS0wk5CVVlXeJy8T118sOMIISLcNLI3s6bkMCy9m9PlGRN0giloJ6vqYV+Yfigiu9p6RxGZDcwGyMzM9Fd9Qa+p2cN7W0uYl+9ic3EV3WPC+dplFzFzUjapCVFOl2dM0AqaoFXVw77vpSLyB2A8cFRE0nxHs2lAaSv3nQvMBcjNzdWOqjlYVNU2sXBtEQtWFFBSVU/f5Fh+dsswbh/Th+gIaw9jzIUKiqAVkVggRFWrfT9fA/wH8C4wE3jS9/0d56oMPq7yGuYvd/HmumLqmpqZdFEPfn7rMC4f0JMQW381pt0ERdACqcAffHuThgGvqer7IrIWWCQis4AiYLqDNQYFVWXVgQry8g+wbFcp4SEh/1h/HdI7wenyjOmUgiJoVfUAMPI048eAKzu+ouDT6PawZMthXvjUxY6SEyTFRvDNL/Tj3olZ9Iy39Vdj/Ckogtacv4qaRl5bXchLKwsprW6gX884nrxtOLeMTicq3NZfjekIFrSd1L7Sk8xb7uLt9cU0uD1cOiCFp+7I5rIBKdYexpgOZkHbiagqy/cdIy//AH/bXUZEWAi3jkrngSk5DOwV73R5xnRZFrSdQIO7mXc2HWZevotdR6pJjovg21cN4J4JmSTHRTpdnjFdngVtEDt2soFXVhXx8qpCyk82MKhXPE/fMYKbR/UmMszWX40JFBa0QWjP0Wrm5btYvPEQjW4PXxiYwoOX9GXSRT1s/dWYAGRBGyRUlU/2lpOX7+KTPWVEhYdwx9g+PDA5h34945wuzxhzBha0Aa6+qZk/bDzEvHwXe0tPkhIfyfevHcgXx2eSGBvhdHnGmDawoA1QpdX1vLKykFdWF1FR08iQtAR+MX0kN45Ms/VXY4KMBW2A2XH4BHn5Lv60+TBNHg9XDkpl1pQcJvRNsvVXY4KUBW0A8HiUj/eUkpfvYvm+Y0SHh3LXuAwemJJDTnKs0+UZYy6QBa2D6hqbeXtDMfOWuzhQVkOvhCgevW4Qd4/PoHuMrb8a01lY0Drg6Il6XlpZwKuri6isbWJEn248N2MUU4enER4a4nR5xph2ZkHbgbYdqiIv38WSLYdxe5RrhqQya0pfxmUn2vqrMZ2YBa2fNXuUZTuP8kK+izWuCmIjQrl3Qhb3T8ohs0eM0+UZYzqABa2f1DS4eWt9MfOXuyg4Vkt692genzqYu8ZnkBAV7nR5xpgOZEHbzg5X1rFgRQEL1xRxot7NqIzu/PragVw3tBdhtv5qTJdkQdtONh+s5IV8F+9tLUFVuX5YGg9MyWFsVqLTpRljHGZBewGaPcoH24+Ql+9iXeFx4iPDuH9SNjMnZZORZOuvxhivoA9aEbkOeA4IBV5Q1Sf9/ZzV9U0sWlfMiytcHKyoIyMpmh/fOITpuX2It/VXY8wpgjpoRSQU+A1wNVAMrBWRd1V1hz+e72BFLQtWFPDG2oNUN7gZl53I41MHc/WQXoRae25jTCuCOmiB8cA+X5dcROR1YBrQrkG7vvA4efkHeH/bEUSEG4anMWtKDiMzurfn0xhjOqlgD9p04GCLy8XAxe314MdrGrn/xbVsOlhJQlQYX7m0LzMnZtO7e3R7PYUxpgsI9qA93d/r+i83EpkNzAbIzMxs84N3jwmnV0IU/zFtKLeP6UNsZLD/5zLGOCHYk6MYyGhxuQ9w+NQbqepcYC5Abm7uvwRxa0SE39839kJrNMZ0ccF+Bv1aoL+I5IhIBDADeNfhmowx5nOC+ohWVd0i8hCwFO/pXfNUdbvDZRljzOcEddACqOp7wHtO12GMMa0J9qUDY4wJeKLa5veGOgURKQMKz/FuyUC5H8pxgs0lMHWmuUDnmk9b55Klqimnu6LLBe35EJF1qprrdB3tweYSmDrTXKBzzac95mJLB8YY42cWtMYY42cWtG0z1+kC2pHNJTB1prlA55rPBc/F1miNMcbP7IjWGGP8zIL2DETkOhHZLSL7ROQxp+s5FyKSISJ/E5GdIrJdRB7xjSeJyIcistf3PWh67YhIqIhsFJElvsvBPJfuIvKWiOzy/Y4mBut8ROTbvtfYNhFZKCJRwTQXEZknIqUisq3FWKv1i8gcXybsFpFr2/IcFrStaLGp+PXAEOBuERnibFXnxA18V1UHAxOAb/jqfwxYpqr9gWW+y8HiEWBni8vBPJfngPdVdRAwEu+8gm4+IpIOPAzkquowvB+Fn0FwzeVF4LpTxk5bv+/f0AxgqO8+v/VlxZmpqn2d5guYCCxtcXkOMMfpui5gPu/g7USxG0jzjaUBu52urY319/G94K8AlvjGgnUuCYAL33skLcaDbj78c0/oJLwf6V8CXBNscwGygW1n+12cmgN491mZeLbHtyPa1p1uU/F0h2q5ICKSDYwGVgOpqloC4Pve07nKzskvgR8AnhZjwTqXvkAZMN+3FPKCiMQShPNR1UPAM0ARUAJUqeoHBOFcTtFa/eeVCxa0rWvTpuKBTkTigLeBb6nqCafrOR8iciNQqqrrna6lnYQBY4DfqepooIbA/tO6Vb61y2lADtAbiBWRe52tyq/OKxcsaFvXpk3FA5mIhOMN2VdVdbFv+KiIpPmuTwNKnarvHEwGbhaRAuB14AoReYXgnAt4X1vFqrrad/ktvMEbjPO5CnCpapmqNgGLgUkE51xaaq3+88oFC9rWBfWm4iIiQB6wU1WfbXHVu8BM388z8a7dBjRVnaOqfVQ1G+/v4a+qei9BOBcAVT0CHBSRgb6hK/E2FA3G+RQBE0QkxveauxLvG3vBOJeWWqv/XWCGiESKSA7QH1hz1kdzehE6kL+AqcAeYD/wuNP1nGPtU/D+SbMF2OT7mgr0wPum0l7f9ySnaz3HeV3OP98MC9q5AKOAdb7fzx+BxGCdD/DvwC5gG/AyEBlMcwEW4l1fbsJ7xDrrTPUDj/syYTdwfVuewz4ZZowxfmZLB8YY42cWtMYY42cWtMYY42cWtMYY42cWtMYY42cWtMYY42cWtMYY42cWtMacQkTGicgW376qsb69Voc5XZcJXn77wIKIzAM+2wxkmG8sCXgD75ZkBcCdqnrcd90cvJ/IaAYeVtWlvvGxePeLjAbeAx5RVRWRSOAlYCxwDLhLVQvOVldycrJmZ2e31zSNMQaA9evXl6tqyumu82fQXgqcBF5qEbRPARWq+qSvY0Giqj7q20x3ITAe7w5AHwEDVLVZRNbg3fB5Fd6gfV5V/yIi/w8YoapfE5EZwK2qetfZ6srNzdV169b5YcbGmK5MRNarau7prvPb0oGqfgJUnDI8DVjg+3kBcEuL8ddVtUFVXcA+YLxv15wEVV2p3v8jvHTKfT57rLeAK32bWhhjTEDp6DXac91MN93386njn7uPqrqBKrwbQRhjTEAJlDfDWttM90yb7LZ5A14RmS0i60RkXVlZ2XmWaIzpKuoam9v18To6aM91M91i38+njn/uPiISBnTjX5cqAFDVuaqaq6q5KSmnXas2xhgA3tl0iMuf+Ruu8pp2e8yODtpz2kzXt7xQLSITfOuvXzrlPp891h14N4O2PR+NMedFVfntx/t45PVNZPeIJSkmot0eO6zdHukUIrIQ7ybNySJSDDwBPAksEpFZeHdmnw6gqttFZBHeXebdwDdU9bNj96/zz9O7/uL7Am/3gJdFZB/eI9kZ/pqLMaZzczd7+MmftvPKqiJuGtmbZ6aPIDLs7F3E26rLbfxtp3cZY1qqbXTzzdc2smxXKV+9rC+PXjuIkJBzP4HpTKd3+e2I1hhjAl1pdT2zXlzH9sNV/PSWYdw3Icsvz2NBa4zpkvYcreb++WupqGnk/76Uy5WDU/32XBa0xpguJ39vOV9/ZT1REaEs+upEhvfp5tfns6A1xnQpb6wt4vE/bOOilDjm3T+O9O7Rfn9OC1pjTJfg8ShPLd3N7/++n0v6J/Obe8aQEBXeIc9tQWuM6fTqGpv5zqJN/GXbEb54cSb/cfNQwkI77mMEFrTGmE6t9EQ9D760jq2Hqnh86mAevCSHjt5/yoLWGNNpbTtUxVdeWkdVXRP/d18uVw3x35kFZ2JBa4zplN7fdoRvv7GJ7jHhvPm1iQzt7d8zC87EgtYY06l49yzYz9NLdzMqoztzvzSWnvFRjtZkQWuM6TTqm5p59O0tvLPpMNNG9ea/bx9BVHj77VlwvixojTGdwtET9cx+eT2bD1by/WsH8v8uv6jD3/RqjQWtMSbobTpYyeyX1nGywc3c+8ZyzdBeTpf0ORa0xpigtnhDMY8t3krP+EgWz5rEoF4JTpf0LxxpZSMi3xaR7SKyTUQWikiUiCSJyIcistf3PbHF7eeIyD4R2S0i17YYHysiW33XPW/NGY3pOtzNHn62ZAffWbSZ0RndefehKQEZsuBA0IpIOvAwkOtrQx6Kd9Pux4BlqtofWOa7jK8V+QxgKHAd8FsR+Wx1+3fAbLwdGfr7rjfGdHKVtY18ef5aXsh3MXNiFq88eDFJse3XEaG9OdWcMQyI9vX6isHbB6w9W5EbYzqpnSUnuOnX+axxVfDU7SP492nDCO/Aj9Oejw5fo1XVQyLyDN5WNnXAB6r6gYh8rhW5iLRsRb6qxUN81nK8idZbkRtjOqElWw7z/Te3kBAdxutfncCYzMSz3ykAdHjQ+tZepwE5QCXwpojce6a7nGbsbK3IT33O2XiXGMjMzDyneo0xznM3e3h66W7+95MDjM1K5Hf3jKFngrMfQjgXTpx1cBXgUtUyABFZDEzC14rcdzR7oa3IP0dV5wJzwdszrB3nYozxs4qaRr65cAPL9x3j3gmZ/PjGoUSEBfZSwamcqLYImCAiMb6zBK4EdtK+rciNMZ3A5oOV3Pj8p6wtOM5Td4zgZ7cMD7qQBWfWaFeLyFvABrytxTfiPdqMo/1akRtjgtzCNUU88c52UuIjeetrExnRp7vTJZ03azdujAko9U3N/Nsft/Hm+mIu6Z/MczNGB/SpW5+xduPGmKBQdKyWr72ynh0lJ3j4in48ctUAQkOC/3NIFrTGmIDwwfYjfPfNzYSIMP/L4/jCoJ5nv1OQsKA1xjiqqdnDM75Tt4and+O394whIynG6bLalQWtMcYxJVV1fPO1jawrPM49F2fy45uGEBnm/P6x7c2C1hjjiL/vKePbb2yivqmZ52aMYtqozvvBTgtaY0yHcjd7ePbDPfz24/0MTI3nN/eMoV/POKfL8isLWmNMhympquPhhRtZW3CcGeMyeOKmoURHdL6lglNZ0BpjOsSynUf53pubaXB7+OVdo7hldOddKjiVBa0xxq8a3M089f5u8vJdDElL4NdfHE3flM69VHAqC1pjjN8cKJJjEK0AABKYSURBVDvJw69vZNuhE8ycmMWcqYMDoittR7OgNca0O1Xl7Q2H+PE724gICwnIhokdyYLWGNOuTtQ38fgftvGnzYcZn5PEczNGkdYt2umyHGVBa4xpN+sKKvjWG5soqarne9cM4OuX9+sUexVcKAtaY8wFczd7eP6v+/j1X/eSnhjNoq9OZGxWcLSZ6QhOtRvvLiJvicguEdkpIhOt3bgxwamgvIY7fr+S55ft5dbRfXjv4UssZE/h1FblzwHvq+ogYCTeDgvWbtyYIKKqvLG2iKnPf8qBspP86u7R/OLOkcRHhTtdWsBxojljAnAp8GUAVW0EGkVkGnC572YLgI+BR2nRbhxwichn7cYL8LUb9z3uZ+3GrcuCMX5WfrKBx97eykc7jzK5Xw+emT6yy7/hdSZOrNH2BcqA+SIyElgPPAL4rd24dcE1pv18sP0IcxZvpbrBzY9uGMwDk3MIsTe8zsiJpYMwYAzwO1UdDdTgWyZoxQW3G1fVuaqaq6q5KSkp51qvMQbvaVvfXbSZ2S+vp1e3KJZ8cwoPXtLXQrYNnDiiLQaKVXW17/JbeIPWb+3GjTEXJn9vOT94azNHqxv45hX9+OYV/YOyG61TOvy/lKoeAQ6KyEDf0JV4O9xau3FjAkxNg5sf/XEr9+atJioilLe/PonvXjPQQvYcOXUe7TeBV0UkAjgA3I839K3duDEBYuX+Y/zg7c0UH6/jwSk5fO/agV1yn4L2YO3GjTGfU9Pg5qn3d7FgZSFZPWJ4+o6RjM9JcrqsgGftxo0xbbJ8XzmPvr2FQ5V13D85mx9cO6hLbMztbxa0xhhO1DfxX+/tZOGag+Qkx/LG7Il2FNuOLGiN6eI+2nGUx/+4lbLqBmZf2pfvXD3A1mLbmQWtMV1UWXUD//6n7SzZUsKgXvHMvS+XkRndnS6rU7KgNaaLUVXeWl/Mz/68k7rGZr5z9QC+dtlFdsqWH501aEXkIeBVVT3eAfUYY/zIVV7DDxdvZeWBY4zLTuS/bhvR6Vt9B4K2HNH2AtaKyAZgHrBUu9o5YcYEuUa3h7mf7Of5v+4jMiyEn986jLvHZdrHZzvIWYNWVX8kIv8GXIP3gwW/9n2AIE9V9/u7QGPMhVl94BiP/3Eb+0pPcsPwNJ64aQg9E6KcLqtLadMaraqqiBwBjuD9dFYi8JaIfKiqP/BngcaY83PsZAP/+d4u3t5QTJ/EaObfP44vDOx59juadteWNdqH8e49UA68AHxfVZtEJATYC1jQGhNAmj3KG2sP8t/v76Kmwc3XL7+Ih6/obx88cFBbjmiTgdtUtbDloKp6RORG/5RljDkfW4or+bc/bmNzcRUX5yTxs1uG0T813umyury2rNH++AzX7Wzfcowx5+N4TSNPf7CbhWuK6BEbyS/vGsW0Ub2xNnqBwc6jNSaINXuU19cW8fTS3VTXu/nypGy+ffUAEqxvV0CxoDUmSK0tqOCJd7azo+QE43OS+I9pQxnUK8HpssxpOPZREBEJFZGNIrLEd9najRvTBocr63jk9Y1M//1Kjtc28qu7R/PG7AkWsgHMySPaR/C2Gf/s1fFZu/EnReQx3+VHT2k33hv4SEQG+Db//qzd+CrgPbztxm3zb9Mp1TU287+f7Of3f9+PKnzzin58/fKLiImwP0wDnSO/IRHpA9wA/Bz4jm/Y2o0bcxoej/LO5kM89f5uSqrqmTq8F3OuH0xGUozTpZk2cup/hb/Ee/5ty/NOrN24MadYW1DBz5bsYHNxFcPSE/jlXaO4uG8Pp8sy56jDg9Z37m2pqq4XkcvbcpfTjJ1zu3FgLnhb2bSxVGMc4yqv4b//sov3tx+hV0IUz0wfyW2j021vgiDlxBHtZOBmEZkKRAEJIvIK1m7cGCpqGnl+2V5eWVVIRFgI37l6AF+5pK99qivIdXjQquocYA6A74j2e6p6r4g8jfejvk/yr+3GXxORZ/G+GfZZu/FmEakWkQnAarztxn/VoZMxpp3UNrqZl+/if/9+gJpGNzPGZ/Ktq/rTM942f+kMAuntyiexduOmi2lq9rBo3UGe+2gvpdUNXD0klR9cO9A+NtvJWLtxYxzg8ShLtpbw7Ae7KThWS25WIo9dP4jcbGuIGKys3bgxAUJV+dvuUp5euoedJScYmBpP3sxcrhjU0/Yl6MQsaI3pICv2lfPMB7vZUFRJZlIMv7xrFDeN7E2onUnQ6VnQGuNnqw8c438+2sOqAxWkdYvi57cO487cDMJDrRliV2FBa4yfrCuo4H8+2sPyfcdIiY/kiZuGcPf4TKLC7VStrsaC1ph2tsZVwXPLvAGbHBfBj24YzD0XZ9m5sF2YBa0x7UBVWbH/GM8v28tqVwXJcZEWsOYfLGiNuQCqyrKdpfzm431sLKokNSGSH9/oXSKwgDWfsaA15jy4mz38eWsJv/t4P7uOVNMnMZqf3jKM6WP72Bqs+RcWtMacg/qmZt5aX8zcTw5QVFFLv55x/GL6SG4e1dvOIjCtsqA1pg2O1zTy8qpCFqwo4FhNIyMzuvP4DYO5enCq7ahlzsqC1pgzKCivIS/fxZvrD1Lf5OGKQT356qV9GZ+TZJ/kMm1mQWvMKVSVNa4KXsh38dHOo4SHhDBtVG8evKQvA3vZZi/m3FnQGuPT4G7mT5tLmL/cxfbDJ0iMCeehL/TjvglZ9Eyw7QrN+XOiw0IG8BLQC/AAc1X1ORFJAt4AsoEC4E5VPe67zxxgFtAMPKyqS33jY/nnNonvAY9oV9uOzFywI1X1vLq6kIVriig/2ciA1Dj+89bh3DYm3c4gMO3CiSNaN/BdVd0gIvHAehH5EPgy1gXXdBBVZdWBCl5ZVcj724/gUeXKQT2ZOSmbKf2Sbf3VtCsnOiyUAJ81YawWkZ14mypaF1zjd1V1TfxhQzGvri5ib+lJuseE88DkbO6bkE1mD+sqa/zD0TVaEckGRuNtReO3Lrima1NVNh2s5LXVRfxpy2HqmzyM7NONp+8YwU0je9vygPE7x4JWROKAt4FvqeqJM/ypdsFdcK3deNdUWdvIHzce4vW1B9l1pJqYiFBuGZXOPRdnMbxPN6fLM12II0ErIuF4Q/ZVVV3sG/ZbF1xrN951eDzK8v3lvLmumPe3H6HR7WF4ejf+89bh3DyqN3GRdqKN6XhOnHUgQB6wU1WfbXHVu1gXXHOeXOU1LN5QzOINhzhUWUe36HDuHpfBneMyGNrbjl6Ns5z43/tk4D5gq4hs8o39EOuCa85RZW0jS7aU8IeNh1hfeJwQgSn9U3js+kFcPSTV1l5NwLAuuCao1Dc189HOo7yz6TAf7y6lqVkZkBrHbWP6cOvodFLtgwXGIdYF1wS1RreH/H1l/GlzCR9sP0JNYzOpCZHMnJjNrWPSGZKWYOe9moBmQWsCUqPbw4r95fx5SwlLtx/hRL2bbtHh3DiiN9NG9+binB7WPdYEDQtaEzDqm5r5dG85f9lWwkc7jnKi3k18ZBhXD0nlhhFpXNI/hYgw2/PVBB8LWuOoqtom/ra7lA92HOHj3WXUNjaTEBXG1UN6cf2wXlwyIJnIMHtTywQ3C1rT4QrKa/ho51GW7SxlTUEFzR4lJT6SW0anc93QXkzo28OOXE2nYkFr/K7B3cy6guP8dVcpf9tVyoHyGgAGpMYx+9K+XD0klVF9ulunAtNpWdCadqeqHCiv4dM9ZXy6t5wV+49R19RMRFgIE/r24L6JWVw5KNU2cTFdhgWtaRdl1Q2s2F/O8n3lLN93jEOVdQBk9Yhhem4fLu2fwqR+PYiJsJec6XrsVW/OS1l1A2tcFax2HWPF/mPsKz0JQLfocCb27cHXL7+IS/onk9Uj1uFKjXGeBa05K1WlqKKWdQXHWVtQwZqCCg6UeddZYyJCGZedxB1j+zCxbw+GpXez81uNOYUFrfkXtY1uthZXsfFgJRsKj7OhqJLykw0AJESFkZudxJ25GVyck8Sw9G6Eh9oZAsaciQVtF9fgbmZXSTVbD1WxtbiKzcWV7Dlajce3BUZWjxgu7Z/M2OxExmYlMqBnvJ0dYMw5sqDtQipqGtlVcoIdJSfYWVLN9sNV7Cs9iduXqokx4Yzo051rhvZiZJ9ujM5MJCk2wuGqjQl+FrSd0PGaRvaVnWRf6Un2Hj3J3tJqdh2ppqy64R+3SYmPZEhaAlcM6smw9G4MT+9Gn8Ro25zFGD8I+qAVkeuA54BQ4AVVfdLhkjpEVV0TBytqKThWQ+GxWlzlNf/4qqhp/MftosND6dczjssGpDAwNZ6BveIZ0juB5LhIB6s3pmsJ6qAVkVDgN8DVeFvbrBWRd1V1h7OVXZhGt4eykw0cqaqnpKqOI1X1HKqs49DxOg5V1nGwopYT9e7P3Sc1IZKc5FiuHZrKRSlxXJQSR7+ecaR3j7Y1VWMcFtRBC4wH9qnqAQAReR1ve/KACdpmj3KywU11fRNVdb6v2iaO1zZxvLaRYycbqahp4FhNI6UnGig72fC5I9LPxEaEkp4YTe/u0YzJTCQzKYaMpBiyesSQmRRDrPXCMiZgBfu/znTgYIvLxcDF7fkEP3l3O6qKAh5Vmj3eBoBNHg9NzUqT20Njs4f6pmbqm5qpa/JQ1+imprGZ2gbv9zOJjQilR1wkSbERZPWIITc7kZT4SHolRJGaEEVa9yjSEqJJiA6z9VNjglSwB22bWo5fSLvxP2w85HsMCBEhRITQEAgPDSE8NISwECEqPJTIsBCiI0JJio0kOiKUuMhQYiLCiIsMIz7K+9UtOpyE6HC6R0eQGBtOYkyE9bUypgsI9qBtrRX551xIu/HNT1xzIfUZYwzB/pGetUB/EckRkQhgBt725MYYEzCC+ohWVd0i8hCwFO/pXfNUdbvDZRljzOcEddACqOp7wHtO12GMMa0J9qUDY4wJeKJ6Tu8NBT0RKQMKz/FuyUC5H8pxgs0lMHWmuUDnmk9b55Klqimnu6LLBe35EJF1qprrdB3tweYSmDrTXKBzzac95mJLB8YY42cWtMYY42cWtG0z1+kC2pHNJTB1prlA55rPBc/F1miNMcbP7IjWGGP8zIL2DETkOhHZLSL7ROQxp+s5FyKSISJ/E5GdIrJdRB7xjSeJyIcistf3PdHpWttKREJFZKOILPFdDua5dBeRt0Rkl+93NDFY5yMi3/a9xraJyEIRiQqmuYjIPBEpFZFtLcZarV9E5vgyYbeIXNuW57CgbUWLTcWvB4YAd4vIEGerOidu4LuqOhiYAHzDV/9jwDJV7Q8s810OFo8AO1tcDua5PAe8r6qDgJF45xV08xGRdOBhIFdVh+H9KPwMgmsuLwLXnTJ22vp9/4ZmAEN99/mtLyvOTFXt6zRfwERgaYvLc4A5Ttd1AfN5B28nit1Amm8sDdjtdG1trL+P7wV/BbDENxasc0kAXPjeI2kxHnTz4Z97Qifh/Uj/EuCaYJsLkA1sO9vv4tQcwLvPysSzPb4d0bbudJuKpztUywURkWxgNLAaSFXVEgDf957OVXZOfgn8APC0GAvWufQFyoD5vqWQF0QkliCcj6oeAp4BioASoEpVPyAI53KK1uo/r1ywoG1dmzYVD3QiEge8DXxLVU84Xc/5EJEbgVJVXe90Le0kDBgD/E5VRwM1BPaf1q3yrV1OA3KA3kCsiNzrbFV+dV65YEHbujZtKh7IRCQcb8i+qqqLfcNHRSTNd30aUOpUfedgMnCziBQArwNXiMgrBOdcwPvaKlbV1b7Lb+EN3mCcz1WAS1XLVLUJWAxMIjjn0lJr9Z9XLljQti6oNxUXb4OxPGCnqj7b4qp3gZm+n2fiXbsNaKo6R1X7qGo23t/DX1X1XoJwLgCqegQ4KCIDfUNX4m0oGozzKQImiEiM7zV3Jd439oJxLi21Vv+7wAwRiRSRHKA/sOasj+b0InQgfwFTgT3AfuBxp+s5x9qn4P2TZguwyfc1FeiB902lvb7vSU7Xeo7zupx/vhkWtHMBRgHrfL+fPwKJwTof4N+BXcA24GUgMpjmAizEu77chPeIddaZ6gce92XCbuD6tjyHfTLMGGP8zJYOjDHGzyxojTHGzyxojTHGzyxojTHGzyxojTHGzyxojTHGzyxojTHGzyxojTmFiIwTkS2+fVVjfXutDnO6LhO87AMLxpyGiPwMiAKi8e5L8F8Ol2SCmAWtMafh299iLVAPTFLVZodLMkHMlg6MOb0kIA6Ix3tka8x5syNaY05DRN7FuyVjDt6d9h9yuCQTxMKcLsCYQCMiXwLcqvqarx/UChG5QlX/6nRtJjjZEa0xxviZrdEaY4yfWdAaY4yfWdAaY4yfWdAaY4yfWdAaY4yfWdAaY4yfWdAaY4yfWdAaY4yf/X8I3L9yrIYYawAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "\n", + "fig, (ax1,ax2) = plt.subplots(2,figsize=(5,5))\n", + "ax1.plot(x, y)\n", + "ax2.plot(x, z)\n", + "ax1.set_xlabel('x')\n", + "ax1.set_ylabel('y')\n", + "ax2.set_xlabel('x')\n", + "ax2.set_ylabel('y')" ] }, { @@ -138,11 +217,41 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'Logarithmic scale')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAlMAAAEICAYAAAB74HFBAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3deZxcVbnv/8+3u9OZGROmQAgIIoGjqFEE9YoCGhCNehQIKIPByLngcI4TOOFw77k/f55BOSAYNeAAiUzXE0IgKIp4FDTBi1xCCIYxHZAkQEaS7q6q5/6xdzeVTnV3VU97V/f3/Xr1q6rW3lX1dKd75am117OWIgIzMzMz65uGrAMwMzMzq2dOpszMzMz6wcmUmZmZWT84mTIzMzPrBydTZmZmZv3gZMrMzMysH5xMWSYkfU3Sz4b4Pe+WdMFQvqeZ5YOkFZJO6OH4gPUPks6WdOdAvFY/4zhBUkvWcYwETqaGKUlPSnpO0viytgsk3Z1hWFWT9EVJT0jaKqlF0s+zjsnMapf2RSdlHUdEHBURd8Pgf5iLiOsi4p2D9fqWP06mhrcm4FP9fRElhux3RdK5wEeAkyJiAjADuGuo3t/Mhg9JTVnHYMOfk6nh7dvAZyXtUemgpOMlLZO0Kb09vuzY3ZL+p6TfAy8Bh6Zt/0PSH9IRo1sl7S3pOkmb09eYVvYa35W0Jj12v6S3Vhn3G4ClEfEYQET8LSLmlb3uXpKukfSMpBcl/SJt31PSYknr0/bFkg7s7k0kfVTSyvTcpZIOrjI+MxsAkj4mabWkFyQtknRA2bF3SlqV9k/fk/Tbjstwkl4h6deSnpe0Ie2D9ih77pOSviDpQWCbpKaOETJJM4EvAmek/dhfykI6WNLvJW2RdKekSenrTZMUks5P+7QXJV0o6Q2SHpS0UdIVZe9/nqT/Knt8lKRfpt/nc5K+2M3P41RJD6fvv1bSZ8uOzZL0QNqfPpZ+H6QxrUyf87ikj/fw8z5A0s1pH/mEpE9W/69lPXEyNbwtB+4GPtv1gKS9gNuAy4G9gX8DbpO0d9lpHwHmAhOBp9K2M9P2KcArgHuBa4C9gJXAZWXPXwYckx67HrhR0pgq4r4POEfS5yTNkNTY5fhPgXHAUcA+wL+n7Q1pLAcDU4HtwBVUIOl9JB3qB4DJwO+ABVXEZmYDQNI7gP8FnA7sT9LHLEyPTQJuAi4l6Z9WAceXPz197gHAkcBBwNe6vMVs4N3AHhFR6GiMiDuAfwZ+HhETIuI1Zc85CzifpF9pZte+81jgcOAM4DvAl4CTSPqi0yW9rcL3ORH4FXBHGu9hdD/S/iPg4xExETga+HX6Gm8EfgJ8DtgD+G/Ak+lz1gGnAbulsf+7pNdViKMBuBX4C0n/fSLwaUnv6iYWq0GmyZSk+ZLWSXqohud8MP2EMCN9fHA66vGAkgmGFw5exHXpq8AnJE3u0v5u4K8R8dOIKETEAuAR4D1l51wbESvS4+1p2zUR8VhEbAJuBx6LiF+lndWNwGs7nhwRP4uI59Pn/yswGjiit4Aj4mfAJ4B3Ab8F1km6BEDS/sApwIUR8WJEtEfEb9PnPR8RN0fESxGxBfifwC6dW+rjwP+KiJVp7P8MHOPRKbMhczYwPyL+HBGtJInTceno9qnAioi4Jf37vBz4W8cTI2J1RPwyIlojYj3Jh8Guf+uXR8SaiNheQ0zXRMSj6XNuIPkwWO6bEbEjIu4EtgELImJdRKwl+UD2WnZ1GvC3iPjX9LlbIuKP3bx/OzBd0m5p//bntH0Oyc/qlxFRioi1EfFI+rO4Le2TI+0L7wQqXQV4AzA5Ir4REW0R8TjwA5IPyNZPWY9MXQvMrPbkNMP/JFD+i/gscHxEHEPyqeGS8qHikS4iHgIWA5d0OXQAL482dXiK5BNLhzUVXvK5svvbKzye0PFA0mfS4edNkjYCuwOTqoz7uog4ieRT2IXAN9JPUAcBL0TEi12fI2mcpO9LekrSZuAeYI8KI1uQjF59Nx2e3wi8QPJpd0qFc81s4O3UB0XEVuB5kr/BAyjrfyIigM6qNEn7SFqYXgrbDPyMXfuWSv1Xb/5Wdv8lyvqzVNX9X5mDgMeqfP+/J0kkn0ovax7X22tIOkXSfeklxI3p8yv1swcDB3T0eem5XwT2rTI260GmyVRE3EPyn1in9Fr4Helo0+8kvars8DeB/x/YUfYabemnGkhGPrJOEPPoMuBj7JwoPEPyx1VuKrC27HH09Q2VzI/6AskQ/p4RsQewiSRhqVo68nQj8CDJsPcaYC9Vngf2GZKRr2MjYjeSoXC6ec81JMPpe5R9jY2IP9QSn5n12U59kJLK471J+qBngQPLjqn8McklvgBenf6tf5hd/8576r/63Lf1wRqSKRG9iohlETGL5DLjL0hGx7p9DUmjgZuBfwH2TfvZJXTf5z3Rpc+bGBGn1vwd2S7ymHjMAz4REa8nuV79PQBJrwUOiojFXZ8g6aB0ouEa4FsR8cxQBpx3EbEa+DnJqF6HJcArJZ2VTs48A5hOMoo1ECYCBWA90CTpqyTX9HuVTt58t6SJkhoknUIyJ+GPEfEsyeXF7ymZcD5KUkfSNJHk0+HGdE7YZZXfAYCrgUslHZW+5+6SPtSXb9TMejVK0piyryaSeZTnSzomTQr+meRv/EmS+Zx/J+l96bkXAfuVvd5EYCvJ3/oUkrlEtXgOmKahqVJeDOwn6dOSRqf92rFdT5LUrGR9qt3TaRWbgWJ6+EckP6sT0z5xSjrQ0EwyiLAeKKR9ZXdLMvwJ2KxkYv5YSY2Sjpb0hoH+hkeiXCVTkiaQTDK8UdIDwPeB/dNf+H8nGXnYRXpd/NUkE/vOleRhy119A+hccyoinie5lv8ZkqH1zwOnRcSGAXq/pSRJz6MkQ/k7qH7YfTPJ8PPTwEaS0ch/iIiO6piPkMwteIRk8uWn0/bvAGOBDSST2O/o7g0i4n8D3wIWppcJHiKZi2VmA28JyQedjq+vRcRdwFdIRlaeJRl5ORMg7Yc+RPK3/zzJB73lQMdViK8DryMZ7b4NuKXGeG5Mb5+X9Ocez+yndP7mySTzUf8G/BV4ezenfwR4Mu2TLiQZcSMi/kQ6uZzke/4tcHD62p8kGcF6kWQC/aJu4iimMRwDPEHST/6QZPqF9ZOSS9EZBpBMNlwcEUdL2g1YFRH7dzlnd5LrxVvTpv1ILg++NyKWdzn3GuC2iLhpsGM3M7PBl36gbgHOjojfZB2PWVe5GpmKiM3AEx2XW5R4TURsiohJETEtIqaRjDq8NyKWSzpQ0tj0/D2BN5OU0ZqZWZ2S9C5Je6SXAL9IMg/ovozDMqso66URFpCsU3SEki1D5pCUy85RspDaCmBWLy9zJPDH9PzfAv8SEf93MOM2M7NBdxzJFYkNJJen3lfjMgdmQybzy3xmZkMtrRy7B7gsIhYr2QD3myQf4BZGuoebmVk1cnWZz8ysL9TNAsCSZirZkmS10oVfU1/g5bJzSErltwJjKFvPyMysGpmNTE2aNCmmTZuWyXubWTbuv//+DRHRdTX+fkuXx9gK/CQijk7bGkmqSU8mSZCWkWwxcgDJooZjgA3pyFRDRJTSSuB/i4ize3tP92FmI0tP/Vdmu2lPmzaN5cuX936imQ0bkrquuj8gIuIelW2ynXojsDrdNgNJC0nmYE4gWSZkOrBd0pKIKKXPeZFk3Z6KJM0l2a+SqVOnug8zG0F66r8yS6bMzAbZFHZe26yFZHX8iyFZHJZkZKok6QMke0HuQTebYwNExDyShYWZMWOGJ5yaGeBkysyGr0pbanQmQBFxbdn9W6h94UczM8AT0M1s+Goh2SC2w4Ek+8GZmQ2oXpOp7qpkyo5L0uVptcyDkl438GGamdVsGXC4pEMkNZNsVVJxqw0zs/6oZmTqWmBmD8dPAQ5Pv+YCV/U/LDOz6lVaADgiCsDFJPtErgRuiIgVWcZpZsNTr3OmuqmSKTeLpBw5gPvS5f/3j4hnByhGM7MeRcTsbtqXkGyya2Y2aAZizlSlipkplU6UNFfScknL169fPwBvbWZmZpatgUimeqyY2akxYl5EzIiIGZMnD/i6fWY2lJ7+I/zmn6Hd26WZWZ0ptsOdX4GNTw/Iyw1EMuWKGbORaM0f4bffglIh60jMzKq3YxNc9yH4w+Ww6o4BecmBSKYWAeekVX1vAjZ5vpTZCFBqT24bRmUbh5lZtV58Cn70LnjydzDrSjh27oC8bK8T0NMqmROASZJagMuAUQARcTXJ5M5TgdXAS8D5AxKZmeVbqZjcNnjtXzOrAy33w4IzoNgGH74FDn3bgL10NdV8Fatkyo4HcNGARWRm9aHYMTLVmG0cZma9efg/4Za5MGFfOO82mHzEgL68V0A3s74ptSeX+FSpBsXMLAci4PffhRvOgf1eDRfcNeCJFHhvPjPrq2I7NHq+lJnlVLEdlnwW7r8Wjno/vO8qGDV2UN7KyZSZ9U2p6PlSZpZPOzbBDefC47+Bt34G3v5laBi8i3HuCc2sb0rtTqbMLH82Pg3XnQ7P/xXeewW87iOD/pbuCc2sb3yZz8zypqNirzDwFXs9cTJlZn1TKniNKTPLj4cXwS0fG7SKvZ64ms/M+qZUgEZ/HjOzjHVW7H0E9vu7QavY64l7QjPrm6LnTJlZxoawYq8n7gnNrG861pkyM8tCecXeW/4J3vGVQa3Y64mTKTPrm6Iv85lZRsor9mZdCa/9cKbhuCc0s77xBHQzy0LL/bDgTCi0DmnFXk88Ad3M+qZO15mSdKSkqyXdJOkf0rbpkm6QdJWkD2Ydo5l14+FFcO27k3lRF/wyF4kUOJkys74qFnKzzpSk+ZLWSXqoS/tMSaskrZZ0CUBErIyIC4HTgRnpqacA/xER/wCcM6TBm1nvIuD3l6d77B2dScVeT5xMmVnf5Gtk6lpgZnmDpEbgSpJEaTowW9L09Nh7gf8C7kpP/ylwpqRvA3sPUcxmVo1iOyz+NPzyK3DU++DcW2HC5Kyj2omTKTPrmxytgB4R9wAvdGl+I7A6Ih6PiDZgITArPX9RRBwPnJ0+XhcRFwGXABuGLnIz69GOTXDdh5KlD97yj/D38zNZ+qA3uflYaWZ1Jv8T0KcAa8oetwDHSjoB+AAwGlgCIGka8EVgPPDt7l5Q0lxgLsDUqVMHIWQz65TBHnt95WTKzPqmVICGxqyj6IkqtEVE3A3c3aXxSdIkqScRMQ+YBzBjxozod4RmVtlOFXs3w6EnZB1Rj5xMmVnf5OgyXzdagIPKHh8IPJNRLGZWrYcXwS1zk3lR5y3O1UTz7njOlJn1Tf5XQF8GHC7pEEnNwJnAooxjMrPu7LTH3tFwwa/rIpECJ1Nm1lelYm5GpiQtAO4FjpDUImlORBSAi4GlwErghohYkWWcZtaNzoq9ryZ77OWwYq8nvsxnZn1TbM/NnKmImN1N+xLSSeZmllM77bH3j/COr2a2x15fOZkys77J/2U+M8u7jU/D9WfAhkdzX7HXEydTZtY3OVoB3czqUJ1V7PWkvsbRzCw/SoU8rYBuZvVk5a3pHntjYM6ddZ1IgZMpM+urfG0nY2b1oGOPvZ+XVezt86qso+o394Rm1jf5X2fKzPKk2A5LPgf3XwPT3wfvvzqXW8P0hZMpM6tdqQiEJ6CbWXV2bIIbz4PHfg1v+Sd4x1fqrmKvJ06mzKx2pUJy2+guxMx6sVPF3n/A687JOqIB557QzGpXbE9uPTJlZj1Zez9cPzwq9nriZMrMalfqSKbchZhZN1beCjd/LFnJ/Nxbh8VE8+4MnwuWZjZ0ih2X+TwyZWZdlFfs7XsUXHDXsE6koMpkStJMSaskrZZ0SYXju0u6VdJfJK2QdP7Ah2pmueGRKTOrpHOPva/A9Flw3mKYsE/WUQ26XntCSY3AlcDJQAuwTNKiiHi47LSLgIcj4j2SJgOrJF0XEW2DErWZZavkkSkz62IY7LHXV9V8rHwjsDoiHgeQtBCYBZQnUwFMlCRgAvACUBjgWM0sL4oemTKzMhvXwPWn1/0ee31VTU84BVhT9rgFOLbLOVcAi4BngInAGRFR6vpCkuYCcwGmTp3al3jNLA86RqacTJnZCKnY60k142+q0BZdHr8LeAA4ADgGuELSbrs8KWJeRMyIiBmTJ0+uOVgzy4mOkSlf5jMb2VbeCtcMnz32+qqaZKoFOKjs8YEkI1DlzgduicRq4AlgeE/dNxvJOkemnEyZjUi7VOwNjz32+qqaZGoZcLikQyQ1A2eSXNIr9zRwIoCkfYEjgMcHMlAzyxFPQDcbuYoFWPyPXSr2RvbVpl4nPEREQdLFwFKgEZgfESskXZgevxr4JnCtpP9LclnwCxGxYRDjNrMsdU5Ab8w2DjMbWjvtsTeyKvZ6UtXs0YhYAizp0nZ12f1ngHcObGhmllul+t1ORtKRwKeAScBdEXFVpbYsYzTLpRGwx15fOZ00s9rl7DKfpPmS1kl6qEv7LgsOR8TKiLgQOB2Y0V2bmZVZez/84ETYtDap2HMitRMnU2ZWu2LuJqBfC8wsbyhbcPgUYDowW9L09Nh7gf8C7io7f5c2M8MVe1VwMmVmtSvla85URNxDslhwuc4Fh9PdGDoWHCYiFkXE8cDZZa+xS1tXkuZKWi5p+fr16wf8+zDLlRG4x15fecU9M6tdfawzVXHBYUknAB8ARpPOBa3UVklEzAPmAcyYMaPrentmw0exAEs+C/dfA9PfB++/GkaNzTqq3HIyZWa1q491piouOBwRdwN3d2ncpc1sxNqxOa3Yuwve8k/wjq+4Yq8XTqbMrHadE9Bz3YVUs+CwmZVzxV6f5LonNLOcqo+NjjsXHAbWkiw4fFa2IZnlmPfY6zOP25lZ7XK2zpSkBcC9wBGSWiTNiYgC0LHg8ErghohYkWWcZrnlir1+yfXHSjPLqWK+1pmKiNndtO+y4LCZlYmAP/wH/PKrMOX1MHsBTNgn66jqjpMpM6td5wR0dyFmdWunir1Z8P7vu2Kvj9wTmlntSnWxNIKZdWenij3vsddfTqbMrHb1MQHdzCrZuAauPz2p2HvP5fD6c7OOqO65JzSz2tXHOlNm1tXaP8OCM6F9hyv2BpDH9MysdqUCqMGXBczqycrFcM2p0DTaFXsDzD2hmdWu2O5RKbN60VGx9/MPw77TvcfeIPBlPjOrXang+VJm9aBYgNs/B8vnu2JvELk3NLPaFdvzvpWMmZVX7L3503DiZb40P0jcG5pZ7UoFX+Yzy7Pyij3vsTfonEyZWe1K7V5jyiyvOvfY2wFn3wSveHvWEQ17TqbMrHZFj0yZ5dLKxXDzBTBhMpx7qyeaDxFfPDWz2pXaoaEx6yjMrEME/OEKV+xlxCNTZla7oi/zmeVGsQC3fx6W/8gVexlxMmVmtfMEdLN8cMVeLjiZMrPalQpeGsEsaxvXwPVnwIZV3mMvY+4Nzax2xXYv2mmWpfI99lyxlzn3hmZWu5K3kzHLTHnF3jmLPNE8B3xh1cxqVyp6ArrZUHPFXm55ZMrMaldsh+bxWUfRJ5LeB7wb2Ae4MiLulPRW4GySPnF6RByfZYxmuyjfY+/I9yYVe83jso7KUh6ZMrPalfI1Z0rSfEnrJD3UpX2mpFWSVku6BCAifhERHwPOA85I234XERcCi4EfD3H4Zj3bsTnZGmb5/KRi70M/diKVM06mzKx2xULeLvNdC8wsb5DUCFwJnAJMB2ZLml52ypfT4+XOAhYMXphmNdq4BubPhMfvTir2Tv66lz7IIf+LmFntSoVcjUxFxD3AC12a3wisjojHI6INWAjMUuJbwO0R8eeOkyVNBTZFxObu3kfSXEnLJS1fv379IHwnZmXW/hl+eCJsWgMfvslLH+RYVclUpaHyCuecIOkBSSsk/XZgwzSzXKmPjY6nAGvKHrekbZ8ATgI+KOnCsuNzgGt6esGImBcRMyJixuTJkwc6XrOXrVwM15wKjaNhzp3windkHZH1oNePlmVD5SeTdEbLJC2KiIfLztkD+B4wMyKelrTPYAVsZjlQrIulEVShLSLicuDyCgcuG/yQzHoRAfdeCXd+Gaa8DmYvhAn+LzXvqhmn7xwqB5C0EJgFPFx2zlnALRHxNEBErBvoQM0sR3J2ma8bLcBBZY8PBJ7JKBaz3rlir25Vc5mvu6Hycq8E9pR0t6T7JZ1T6YU838BsmKiP7WSWAYdLOkRSM3AmsCjjmMwq27EZFpzhir06VU0yVXGovMvjJuD1JGu3vAv4iqRX7vIkzzcwGx5ydplP0gLgXuAISS2S5kREAbgYWAqsBG6IiBVZxmlWUUfF3mO/gfd81xV7daiaj5bVDJW3ABsiYhuwTdI9wGuARwckSjPLl1K+lkaIiNndtC8BlgxxOGbV69xjb3tSseeJ5nWpmtS3mqHy/wTeKqlJ0jjgWJJPgmY2HBXboaEx6yjM6tsjt7lib5jodWQqIgqSOobKG4H5EbGio6Q4Iq6OiJWS7gAeBErADyPioe5f1czqmjc6Nus7V+wNO1XNIK00VB4RV3d5/G3g2wMXmpnlUkTuLvOZ1Y1iAW7/PCz/kSv2hpHcl+OYWc6UismtR6bMarNjM9x4Hjx2Fxz/STjJE82HCydTZlabUntym/+lEczyY+MauP4MWP9IUrH3+vOyjsgGkHtDM6tNMU2m8r9op1k+uGJv2PP4opnVplRIbn2Zz6x33mNvRHAyZWa16UimfJnPrHsdFXs//zDsOx0+dhfsc2TWUdkgcW9oZrXpvMznkSmziooFuOMLsOyHrtgbIZxMmVltSp4zZdatHZvhpvNh9a/gzZ+CE7/mir0RwL2hmdWmY2kErzNltrNNLUnF3rqVrtgbYZxMmVltXM1ntqtn/g9cfya0vwRn3wiHnZh1RDaE3BuaWW0615nyyJQZkOyxd/MFMG4SnPMLTzQfgXwh18xq45Eps0QE/OEKWHh2kkC5Ym/Ecm9oZrXxdjJm3mPPduJkysxq4+1kbKQrr9jzHnuGkykzq5XXmbKRbFMLXHe699iznTiZMrPa1PkEdEnvA94N7ANcGRF3SjoU+BKwe0R8MNMALb9csWfd8LikmdWm2LE3X2O2cZSRNF/SOkkPdWmfKWmVpNWSLgGIiF9ExMeA84Az0rbHI2LOkAdu9eOR29I99prho0udSNlOnEyZWW3yudHxtcDM8gZJjcCVwCnAdGC2pOllp3w5PW7WvfKKvcmvggt+ley1Z1bGyZSZ1SaHl/ki4h7ghS7NbwRWp6NObcBCYJYS3wJuj4g/1/I+kuZKWi5p+fr16wcmeMuvYgFu+wzc+SU48j1w3m0wcd+so7IccjJlZrUp5nJkqpIpwJqyxy1p2yeAk4APSroQQNLekq4GXivp0u5eMCLmRcSMiJgxefLkQQzdMrdjMyw4I1n64PhPwod+7KUPrFuegG5mtenc6Dg/c6a6oQptERGXA5d3aXweuHBIorL88x57ViMnU2ZWm445Uzm6zNeNFuCgsscHAs9kFIvVC1fsWR/4Mp+Z1aZ+1plaBhwu6RBJzcCZwKKMY7I8e2TJyxV7c+50ImVVczJlZrXJ4ciUpAXAvcARklokzYmIAnAxsBRYCdwQESuyjNNyKgLu/R4sPOvlij3vsWc18GU+M6tNDjc6jojZ3bQvAZYMcThWT4oFuOMLsOyH3mPP+iw/vaGZ1YfOdabcfVid27EZbvoorP6l99izfnFvaGa1yeE6U2Y1c8WeDSAnU2ZWm6JHpqzOuWLPBpjHM82sNqX2JJFSpWWczHLOe+zZIHAyZWa1KRU8KmX1JwLuvdJ77NmgcI9oZrUpFuphjSmzl+1UsfceeP88V+zZgHIyZWa1KbVDo7sOqxOtW+DG89OKvU/ASd9wxZ4NuKp+oyTNlLRK0mpJl/Rw3hskFSV9cOBCNLNcKbZ7ZMrqw6YWmH8KPPZrOO078M7/4UTKBkWvHy8lNQJXAieT7HW1TNKiiHi4wnnfIllt2MyGq44J6GZ55oo9G0LVpOhvBFZHxOMR0QYsBGZVOO8TwM3AugGMz8zyplT0ZT7Lt/I99lyxZ0OgmmRqCrCm7HFL2tZJ0hTg/cDVPb2QpLmSlktavn79+lpjNbM88GU+y6tKe+y5Ys+GQDXJVKXFZKLL4+8AX4iIYk8vFBHzImJGRMyYPHlytTGaWZ6U2r36ueVPsQBLPgtLL4UjT4PzboOJ+2YdlY0Q1YzVtwAHlT0+EHimyzkzgIVKFvGbBJwqqRARvxiQKM0sP7w0guXNThV73mPPhl41ydQy4HBJhwBrgTOBs8pPiIhDOu5LuhZY7ETKbJgqFaChMesozBLle+yd9h2YcX7WEdkI1GsyFREFSReTVOk1AvMjYoWkC9PjPc6TMrNhxpf5LC86KvbatsHZN8BhJ2UdkY1QVZXkRMQSYEmXtopJVESc1/+wzCy3PAHd8uCRJXDzHBi3N8y50xPNLVO+qGxmtSkVvDSCZWenir0j4IK7nEhZ5twjmlltCq3QPCHrKGwkKt9j71WnwQd+4D32LBc8MmVmtWnbCqPrN5mSdKikH0m6qaztBEm/k3S1pBMyDM+6s2MzLDgzSaSO/wSc/lMnUpYbTqbMrDatW3M3MiVpvqR1kh7q0r7LvqLpbg5zurxEAFuBMSTLwViebGqBa7zHnuWXfxvNrDZt+UumgGuBmeUNZfuKngJMB2ZL6m5yze8i4hTgC8DXBzFOq9UzD8APToQXn0r22PPSB5ZDTqbMrHoRubzMFxH3AC90aa52X1EiopTefREY3d37eEusIbbq9mREqnFUUrHnPfYsp5xMmVn12l+CKOVxZKqSivuKStpb0tXAayVdCiDpA5K+D/wUuKK7F/SWWEMkAu67ChbMdsWe1QVX85lZ9Vq3Jrc5G5nqRsV9RSPieeDCLo23ALcMSVTWs2IB7rgElv3AFXtWN5xMmVn12tJkqnlitnFUp5p9RS1PWrfATR+Fv96ZVOyd9A1PNLe64GTKzKrXuiW5rY+RqV73FbUc2bQ23WPvYe+xZ3XHKb+ZVa9zZCpfyZSkBcC9wBGSWiTNiYgC0LGv6ErghohYkWWc1o1nHoAfvAM2umLP6pNHpsysejmdMxURs7tp3zTIxcsAABNPSURBVGVfUcuZ8j32PrLUE82tLnlkysyqV19zpizPvMeeDSMemTKz6tXXnCnLK1fs2TDjZMrMqpfTOVNWR1q3wI3nw+pfwnEXw8nfdMWe1T0nU2ZWvVYnU9YPO1Xs/TvM+GjWEZkNCCdTZla9tq0warxHEqx2zzwAC85MEvKzb4DDTso6IrMB42TKzKrXusXzpax2q26Hm+bAuL2SPfY80dyGGX+8NLPqtW31JT6r3k577L3SFXs2bHlkysyq17rVI1NWnWIBll4Kf5rnij0b9pxMmVn12rZ6jSnrnffYsxHGyZSZVa91C+x2QNZRWJ65Ys9GICdTZlY9z5mynrhiz0YoJ1NmVj3PmbLuuGLPRjBfxDaz6nlkyiq57+qkYm/S4XDBr5xI2YjjkSkzq06pCO0vOZmyl+1SsTcPmsdnHZXZkHMyZWbV6diXz5f5DHau2DvuYjj5G9DQmHVUZplwMmVm1fG+fNahvGLv3f8Gb5iTdURmmXIyZWbV6RyZ8jpTI9ozDySJVNs2V+yZpTwB3cyqM4xHpiRNl3SDpKskfTDreHJr1e1wzSnQOArmLHUiZZZyMmVm1WnbktzWyZwpSfMlrZP0UJf2mZJWSVot6ZK0+RTgPyLiH4BzhjzYetBRsTf5iLRi76isIzLLjaqSqW46n/LjZ0t6MP36g6TXDHyoZpap+huZuhaYWd4gqRG4kiR5mg7MljQd+ClwpqRvA3sPcZz5VirCks/DHV+AV70bzrsNJu6XdVRmudJrMtVD51PuCeBtEfFq4JvAvIEO1MwyVmdzpiLiHuCFLs1vBFZHxOMR0QYsBGZFxLqIuAi4BNgwxKHmV+uWZDTqT99PKvZO/4mXPjCroJoJ6J2dD4CkhcAs4OGOEyLiD2Xn3wccOJBBmlkOtKaX+epnZKqSKcCassctwLGSpgFfBMYD3+7uyZLmAnMBpk6dOmhB5sKmtbDgDHjOFXtmvakmmarY+fRw/hzg9koHRlRHZDbcDI91plShLSLiSdK+qScRMY905H3GjBkxsKHlSPkee2fdAId7orlZT6qZM1Wx86l4ovR2kmTqC5WOR8S8iJgRETMmT55cfZRmlr3WraAGGDUu60j6owU4qOzxgcAzGcWST6tuh2tOhYampGLPiZRZr6pJpqrqfCS9GvghyfyD5wcmPDPLjbZtySU+Vfp8VTeWAYdLOkRSM3AmsCjjmPKjs2Lvla7YM6tBNclUr52PpKnALcBHIuLRgQ/TzDLXtqWu5ktJWgDcCxwhqUXSnIgoABcDS4GVwA0RsSLLOHOhWIAlnyur2Fviij2zGvQ6ZyoiCpI6Op9GYH5ErJB0YXr8auCrJOXE31PyqbUQETMGL2wzG3KtW+tqvlREzO6mfQmwZIjDyS/vsWfWb1VtJ1Op80mTqI77FwAXDGxoZpYrbVvramTKquA99swGhPfmM7Pq1NnIlPXCFXtmA8bbyZhZddq2QnN9LNhpvVh1R1Kxp0ZX7JkNACdTZlad1i0emRoO7rsaFs6GSYfDx+5yxZ7ZAPBlPjOrjudM1bdSEe64NNka5lWnwQfmeWsYswHiZMrMquM5U/WrdQvcNAf+utQVe2aDwMmUmfWu2A7FVs+ZqkfeY89s0DmZMrPedWxy7JGp+vLsX5KlD1yxZzaonEyZWe+2bUhux+6VbRxWvVV3JItxjt0zqdjzRHOzQeNqPjPr3YtPJLd7HZJtHFYdV+yZDSmPTJlZ7154PLnd08lUrpVX7B3xbvj7H7hiz2wIOJkys9698ESyLML4SVlHYt0pr9h700Xwzm+6Ys9siDiZMrPevfhEcokv2cjc8manPfb+Fd7grVLNhpKTKTPr3QtPwD5HZh2FVeKKPbPMeQK6mfWsVIQXn/Tk8zxadQfMP8V77JllzCNTZtazzWuh1A57HZp1JFbuvqth6aWw36vhrJ/DxP2yjsgsF0qloL1UolgK2otBsRQUSiUKxUi+SiUKpeT+vruNZu8Jo/v9nk6mzKxnL6TLIriSLx+8x54NoogkAWkvlmgvlmgrlpLHhVLalhwrlEq0FXa+Xyh1OafzdYJC+nrtpY77Lyc4bem5yfOT44VS2Wukz+maCLUXOxKmtC09rxTVf7/fmHUU5xw3rd8/NydTZtYzrzGVH61bk4U4vcde3YsIWgtJstLaXqK1UKStUEra0vbkceX29vQ2aYv0tpgei85z27ueX5YotZc97jinUEsm0gejGkVTQwNNjWJUYwNNDcntqEbRVPa4qVGMamiguamBcY0NjGoQTWXnNDWkt2Wv03msUTs9HtXYQGODKp4zff/dB+T7cjJlZj174XFobIbdpmQdyaCRdCTwKWAScFdEXJVxSLva/Axcf3q6x54r9gZKx0jM9vYire1FtrcX2dFeYkfn/Y6v0sv3C0kCtKNQ3Om2tZCc11oo0pomQK3tLydDrZ3nJYnOQGluamB0Y5J4jGpsYFSTaG5M7o9O25qbGhjX3NTZ1tSYntPUQHN6vKlBL79GmvQ0p8c7kpZRHclLer+57P6o9D07Xqcjeel4flOD0DCtCHYyZWY9e+EJ2OPguhsBkTQfOA1YFxFHl7XPBL4LNAI/jIj/LyJWAhdKagB+kEnAPRnhFXsdozgvtRXZ1lpgW1uBba1FXmor8FJbcruttcj2tmLyuL3QeX97W5IUvdRWYHt7iR2dx19OmIp9HI1pahBjRjUyZlQDo5saGT0qSRzGjGqkuamB3ceOYszE0TQ3vdw2pim5Hd3U0Hn+6FGNnclQx7GOJGb0qMbOZKejvSM5ak6TmOGaoNQTJ1Nm1rOONabqz7XAFcBPOhokNQJXAicDLcAySYsi4mFJ7wUuSZ+TH3W+x96O9iKbd7SzeXuBzTva2bKjwJb0dmvH/dbk/ra2QtLeWkiSptZi5/1aLj8lozCNjBvVyNjmRsY1NzF2VCN7jB3F2N3GMLY5aR/T1MjY5ob0trwtSZDGNDUyOk2WkqSpkTFNL99vbHASYwknU2bWvQh44UmYenzWkdQsIu6RNK1L8xuB1RHxOICkhcAs4OGIWAQsknQbcH2l15Q0F5gLMHXq1EGKvEyOKvZ2tBd5flsbL25r44Vtbbz4UhsbX2rvvN20vZ2NL7WxaXtyf/OOApu2t9NW6PlylgTjm5uYOKaJ8aObmJB+7TtxTPq4kfGjk2PjmxsZlx4flyZJyW1yztg0gWpq9Ko/NrScTJlZ97ZtgLYtw2lZhCnAmrLHLcCxkk4APgCMBpZ09+SImAfMA5gxY8bgzdQdooq9He1Fntu8g3VbWlm3uZX1W3awfmsr67e08vzWNjZsa+P5ra28sK2Nl9qK3b7OxNFN7DF+FLuPTb72230Mu48dxW5jR7HbmI7bJnYbM4qJY5qY2HnbxPjmJho8wmN1zsmUmXVv+FXyVfpfOyLibuDuoQ2lG61b4eY58Ogd/arYK5WC9VtbWfPCS7S8uJ21G5OvZzdu59lNO3h20w42bW/f5XmNDWLv8c1MmjCavSc0c+ik8ew1vpm9xjez9/hm9kzv7zluFHuMa2b3saMY5ZEgG+GcTJlZ94bfGlMtwEFljw8Enskoll1tWgsLzoDnVlRdsbdpezur121l9botPL5+G49v2MaTG7bx9Asv0drlEtte45vZf/cxHLjnOGZM25P9dx/LPhNHs89uY9hn4mgmTxzNXuOaPVJkViMnU2bWvdW/gjG7w57Tso5koCwDDpd0CLAWOBM4K9uQUp0Ve1vSir2Tdznlb5t28JeWjTy0dhMrntnMymc38+ymHZ3HmxsbOHjvcUybNJ63vXIyB+89jgP3GsdBe45lyh7jGNtcXxWZZvXCyZSZVbZjE6y8FY45C5qas46mZpIWACcAkyS1AJdFxI8kXQwsJVkaYX5ErMgwzERnxd4e8NGlsF+yksPTz7/Ef63ewH2PP8/9T73I2o3bgeRS3GGTJ3DsIXtxxH678cp9J3DYPhM4cM9xrjAzy4CTKTOrbMUvoLAdjjk760j6JCJmd9O+hB4mmQ+5zoq9vyNmL+SBjWO5Y8lK7nz4OZ7YsA2AfSaO5g2H7MWctxzCMVP3YPr+uzFmlEeZzPLCyZSZVfbA9TDplTDldVlHMjyVVey1H3YKPz7gy1z/g0d5fP02mhrEca/Ym3OPO5i3HD6ZV0we74UZzXLMyZSZ7er5x2DNfXDS15KFgGxgle2xt3z/2Xz0r7PY/NBTzDh4Tz7+94cy8+j92X3sqKyjNLMqOZkys109cB2oAV59RtaRDD/pHnul5x7mWw0fY96Tb+fUo/florcfxvQDdss6OjPrAydTZrazlbfC7y+HV54Cux2QdTTDy7MPEtefQdu2F/l462f42z5vZfEFr+GoAwZm53ozy0ZVK61JmilplaTVki6pcFySLk+PPyjJkyzM6tGK/w03ngcHHAPvvyrraIaXR5fC/Jlsbi0ya/tlHHrc+/nPi9/sRMpsGOh1ZKqnjUHLTjsFODz9Oha4Kr01s7yKgG3r4cWnoGUZPPhzePYBOOhNcPaNMMaXnAbMH78Pd1zCi7u9inc9dxEnHfsavnLakZ5UbjZMVHOZr9uNQcvOmQX8JCICuE/SHpL2j4hn+x1hsZ11334DrYXu94UyG4l6+m9YEUCk50XnV1MUaKTA6GhlTGyngZe3l3u86TB+N3Eud7WdSuuPq1t6afoBu3HZe47qx3cxAiz9Etx7BVsPeRdve/RM/u6wA/j6e49yImU2jFSTTFXcGLSKc6YAOyVTfdtxXawfM40tO3bdQ8pspIseUqrkWHK8lKZNRTVRpJFWjWF7w1g2N+zOc437s7ZpKuua9h+aoEeaSYfDmy7it/v/dzav/AtfPPVI72VnNsxUk0xV3Bi0D+f0bcf1xiaO+vQvqjrVzCx3Xn9ecvtg8tnSiZTZ8FPNX3U1G4Pme/NQMzMzs0FSTTLVuTGopGaSjUEXdTlnEXBOWtX3JmDTgMyXMjMzM8u5Xi/zRUSh0sagki5Mj19Nss/VqcBq4CXg/MEL2czMzCw/qlq0s9LGoGkS1XE/gIsGNjQzMzOz/PNMSDMzM7N+cDJlZmZm1g9OpszMzMz6wcmUmZmZWT8omTuewRtL64GnanjKJGDDIIUzmOo1bqjf2Os1bhj+sR8cEZOHIpjBVmMfNtz/XfOoXuOG+o29XuOGfvZfmSVTtZK0PCJmZB1Hreo1bqjf2Os1bnDsw1U9/2zqNfZ6jRvqN/Z6jRv6H7sv85mZmZn1g5MpMzMzs36op2RqXtYB9FG9xg31G3u9xg2Ofbiq559NvcZer3FD/cZer3FDP2OvmzlTZmZmZnlUTyNTZmZmZrnjZMrMzMysH3KfTEmaKWmVpNWSLsk6np5IOkjSbyStlLRC0qfS9r0k/VLSX9PbPbOOtRJJjZL+j6TF6eN6iXsPSTdJeiT92R9XD7FL+sf09+QhSQskjclr3JLmS1on6aGytm5jlXRp+je7StK7sok6H+qlD3P/lY167b/AfVi5XCdTkhqBK4FTgOnAbEnTs42qRwXgMxFxJPAm4KI03kuAuyLicOCu9HEefQpYWfa4XuL+LnBHRLwKeA3J95Dr2CVNAT4JzIiIo4FG4EzyG/e1wMwubRVjTX/nzwSOSp/zvfRvecSpsz7M/Vc26q7/Avdhu4iI3H4BxwFLyx5fClyadVw1xP+fwMnAKmD/tG1/YFXWsVWI9cD0l+kdwOK0rR7i3g14grSYoqw917EDU4A1wF5AE7AYeGee4wamAQ/19jPu+ncKLAWOyzr+jH5mdduHuf8akrjrsv9K43IfVvaV65EpXv7H6tCStuWepGnAa4E/AvtGxLMA6e0+2UXWre8AnwdKZW31EPehwHrgmnSI/4eSxpPz2CNiLfAvwNPAs8CmiLiTnMfdRXex1u3f7SCoy5+F+68hU5f9F7gP6yrvyZQqtOV+LQdJE4CbgU9HxOas4+mNpNOAdRFxf9ax9EET8Drgqoh4LbCN/Awrdyu9Nj8LOAQ4ABgv6cPZRjVg6vLvdpDU3c/C/deQqsv+C9yHdZX3ZKoFOKjs8YHAMxnFUhVJo0g6ousi4pa0+TlJ+6fH9wfWZRVfN94MvFfSk8BC4B2Sfkb+44bkd6QlIv6YPr6JpHPKe+wnAU9ExPqIaAduAY4n/3GX6y7Wuvu7HUR19bNw/zXk6rX/AvdhO8l7MrUMOFzSIZKaSSaELco4pm5JEvAjYGVE/FvZoUXAuen9c0nmIuRGRFwaEQdGxDSSn/GvI+LD5DxugIj4G7BG0hFp04nAw+Q/9qeBN0kal/7enEgy8TTvcZfrLtZFwJmSRks6BDgc+FMG8eVB3fRh7r+GXh33X+A+bGdZTwirYsLYqcCjwGPAl7KOp5dY30IyFPgg8ED6dSqwN8nkyL+mt3tlHWsP38MJvDyBsy7iBo4Blqc/918Ae9ZD7MDXgUeAh4CfAqPzGjewgGReRDvJp7Y5PcUKfCn9m10FnJJ1/Bn/7OqiD3P/lVnMddl/pbG7D0u/vJ2MmZmZWT/k/TKfmZmZWa45mTIzMzPrBydTZmZmZv3gZMrMzMysH5xMmZmZmfWDkykzMzOzfnAyZWZmZtYP/w+J0hBFUKZNgAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "fig, axes = plt.subplots(1,2,figsize=(10,4))\n", + "\n", + "axes[0].plot(x,x**2,x,np.exp(x));\n", + "axes[0].set_title('Normal Scale')\n", + "axes[1].plot(x,x**2,x,np.exp(x))\n", + "axes[1].set_yscale('log')\n", + "axes[1].set_title('Logarithmic scale')\n" ] }, { @@ -156,21 +265,222 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Scatter Plot\n", "\n", "Please provide a scatter plot between \"Combined MPG\" as X variable and \n", "\"Highway MPG\" as Y variable" - ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
MakeModelYearEngine DisplacementCylindersTransmissionDrivetrainVehicle ClassFuel TypeFuel Barrels/YearCity MPGHighway MPGCombined MPGCO2 Emission Grams/MileFuel Cost/Year
0AM GeneralDJ Po Vehicle 2WD19842.54.0Automatic 3-spd2-Wheel DriveSpecial Purpose Vehicle 2WDRegular19.388824181717522.7647061950
1AM GeneralFJ8c Post Office19844.26.0Automatic 3-spd2-Wheel DriveSpecial Purpose Vehicle 2WDRegular25.354615131313683.6153852550
2AM GeneralPost Office DJ5 2WD19852.54.0Automatic 3-spdRear-Wheel DriveSpecial Purpose Vehicle 2WDRegular20.600625161716555.4375002100
3AM GeneralPost Office DJ8 2WD19854.26.0Automatic 3-spdRear-Wheel DriveSpecial Purpose Vehicle 2WDRegular25.354615131313683.6153852550
4ASC IncorporatedGNX19873.86.0Automatic 4-spdRear-Wheel DriveMidsize CarsPremium20.600625142116555.4375002550
\n", + "
" + ], + "text/plain": [ + " Make Model Year Engine Displacement \\\n", + "0 AM General DJ Po Vehicle 2WD 1984 2.5 \n", + "1 AM General FJ8c Post Office 1984 4.2 \n", + "2 AM General Post Office DJ5 2WD 1985 2.5 \n", + "3 AM General Post Office DJ8 2WD 1985 4.2 \n", + "4 ASC Incorporated GNX 1987 3.8 \n", + "\n", + " Cylinders Transmission Drivetrain Vehicle Class \\\n", + "0 4.0 Automatic 3-spd 2-Wheel Drive Special Purpose Vehicle 2WD \n", + "1 6.0 Automatic 3-spd 2-Wheel Drive Special Purpose Vehicle 2WD \n", + "2 4.0 Automatic 3-spd Rear-Wheel Drive Special Purpose Vehicle 2WD \n", + "3 6.0 Automatic 3-spd Rear-Wheel Drive Special Purpose Vehicle 2WD \n", + "4 6.0 Automatic 4-spd Rear-Wheel Drive Midsize Cars \n", + "\n", + " Fuel Type Fuel Barrels/Year City MPG Highway MPG Combined MPG \\\n", + "0 Regular 19.388824 18 17 17 \n", + "1 Regular 25.354615 13 13 13 \n", + "2 Regular 20.600625 16 17 16 \n", + "3 Regular 25.354615 13 13 13 \n", + "4 Premium 20.600625 14 21 16 \n", + "\n", + " CO2 Emission Grams/Mile Fuel Cost/Year \n", + "0 522.764706 1950 \n", + "1 683.615385 2550 \n", + "2 555.437500 2100 \n", + "3 683.615385 2550 \n", + "4 555.437500 2550 " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "df = pd.read_csv('vehicles.csv')\n", + "df.head()\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.scatter(df['Combined MPG'],df['Highway MPG'])\n" ] }, { @@ -184,20 +494,42 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Box Whisker Plot\n", "\n", "Please provide a box plot of the variable \"CO2 Emission Grams/mile\"" - ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAX0AAAD4CAYAAAAAczaOAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAWnklEQVR4nO3dfZBUV53G8e/DDIsoEkKYRMKLRBfUAIkms+gSV6UiL74sZLdICVFD3NRSJPiWuOvC7qqru2xF1yJRI1CsYkYNUhhfQGMUCpNVgyYOGkFCYlAijJAw5gWjMTFDfvtHn8HL0ANzu4fpae7zqeq69557Tt/TKfL0mdO3TysiMDOzYhhQ6w6YmVnfceibmRWIQ9/MrEAc+mZmBeLQNzMrkMZad+BERowYEePGjat1N8zM6sq2bdt+GxFNXcv7feiPGzeO1tbWWnfDzKyuSPp1uXJP75iZFYhD38ysQBz6ZmYF4tA3MysQh76ZWYE49M1yGjt2LJKOPMaOHVvrLpn1mEPfLIexY8eyb98+pk6dyv79+5k6dSr79u1z8FvdcOib5dAZ+HfeeScjR47kzjvvPBL8ZvXAoW+W0y233HLcY7P+zKFvltPcuXOPe2zWnzn0zXIYM2YMW7du5aKLLuLAgQNcdNFFbN26lTFjxtS6a2Y90u/X3jHrT/bu3cvYsWPZunUrZ599NlB6I9i7d2+Ne2bWMw59s5wc8FbPPL1jZlYgDn0zswJx6JuZFcgJQ1/SGkkHJf08U/Y/ku6TtF3S1yQNy5xbKmm3pPslzcyUXyhpRzr3SUnq/ZdjZmbH05OR/k3ArC5lm4FJEXEe8AtgKYCkc4F5wMTUZoWkhtRmJbAQGJ8eXZ/TzMxOshOGfkR8D3i0S9mmiOhIhz8CRqf9OcC6iHg6IvYAu4EpkkYCQyPihxERwOeBS3rrRZiZWc/0xpz+PwC3pf1RQHYRkrZUNirtdy0vS9JCSa2SWtvb23uhi2ZmBlWGvqR/AzqAmzuLylSL45SXFRGrI6I5Ipqbmo75MXczM6tQxV/OkrQAeDNwcZqygdIIPvt99NHA/lQ+uky5mZn1oYpG+pJmAf8CzI6IJzOnNgLzJA2SdA6lD2zvjogDwBOSXpXu2rkc2FBl383MLKcTjvQlfQl4HTBCUhvwIUp36wwCNqc7L38UEYsiYqek9cC9lKZ9FkfE4fRUV1G6E2gwpc8AbsPMzPqU/jwz0z81NzdHa2trrbthZlZXJG2LiOau5f5GrplZgTj0zcwKxKFvZlYgDn0zswJx6JuZFYhD38ysQPxziWY5lVsVvL/f+mzWySN9sxyygX/TTTeVLTfrzxz6ZhWICBYsWOARvtUdh75ZTtkRfrljs/7MyzCY5dA5jZP9/6ZcmVmteRkGs14kiZaWFs/lW91x6JvlkB3NX3HFFWXLzfoz37JplpMD3uqZR/pmZgXi0DczKxCHvplZgTj0zcwKxKFvZlYgDn0zswJx6JuZFYhD38ysQBz6ZmYFcsLQl7RG0kFJP8+UDZe0WdIDaXt65txSSbsl3S9pZqb8Qkk70rlPyouWmJn1uZ6M9G8CZnUpWwJsiYjxwJZ0jKRzgXnAxNRmhaSG1GYlsBAYnx5dn9PMzE6yE4Z+RHwPeLRL8RygJe23AJdkytdFxNMRsQfYDUyRNBIYGhE/jNLCJZ/PtDGrK5KOeZjVi0rn9M+KiAMAaXtmKh8F7MvUa0tlo9J+1/KyJC2U1Cqptb29vcIumvW+bMBfc801ZcvN+rPe/iC33L/8OE55WRGxOiKaI6K5qamp1zpn1lsiguXLl3vFTas7lYb+w2nKhrQ9mMrbgDGZeqOB/al8dJlys7qTHeGXOzbrzyoN/Y3AgrS/ANiQKZ8naZCkcyh9YHt3mgJ6QtKr0l07l2famNWV66+//rjHZv1ZT27Z/BLwQ+AlktokXQlcB0yX9AAwPR0TETuB9cC9wLeBxRFxOD3VVcBnKH24+0vgtl5+LWZ9RhLXXnut5/Kt7viH0c1yKhf0/f3/Iyue7n4Y3T+XaJaTA97qmZdhMDMrEIe+mVmBOPTNzArEoW9mViAOfTOzAnHom5kViEPfzKxAHPpmZgXiL2eZ5eRv5Fo980jfLIfu1trxGjxWLzzSN6tAdmTvwLd64pG+mVmBOPTNzArE0ztmFfCUjtUrj/TNcujuLh3fvWP1wqFvltOMGTOOjPQlMWPGjBr3yKznHPpmOcycOZNNmzaxaNEiHn/8cRYtWsSmTZuYOXNmrbtm1iOe0zfLYfPmzVx11VWsWLEC4Mh21apVteyWWY/5N3LNcpDE448/zmmnnXak7NChQwwbNszz+tavdPcbuZ7eMctBEkuXLj2qbOnSpb6bx+qGQ98sh+nTp7Ny5UquvvpqDh06xNVXX83KlSuZPn16rbtm1iOe3jHLyQuuWT04KdM7kq6RtFPSzyV9SdJzJA2XtFnSA2l7eqb+Ukm7Jd0vybc7WN3xgmtW7yoOfUmjgHcDzRExCWgA5gFLgC0RMR7Yko6RdG46PxGYBayQ1FBd981qY/bs2bS3tzN79uxad8Usl2rn9BuBwZIagecC+4E5QEs63wJckvbnAOsi4umI2APsBqZUeX2zmtiwYQMjRoxgw4YNte6KWS4Vh35E/Ab4OLAXOAAciohNwFkRcSDVOQCcmZqMAvZlnqItlZmZWR+pZnrndEqj93OAs4HnSXrb8ZqUKSv76ZekhZJaJbW2t7dX2kWzk0bSkYdZPalmeuf1wJ6IaI+IZ4CvAlOBhyWNBEjbg6l+GzAm0340pemgY0TE6ohojojmpqamKrpo1nPZIO/uUW17v0lYrVUT+nuBV0l6rkr/ki8GdgEbgQWpzgKgc9JzIzBP0iBJ5wDjgburuL5Zr4qIHj0mT558VLvJkyf3uK1v7bRaq3jtnYi4S9ItwE+ADuCnwGpgCLBe0pWU3hguTfV3SloP3JvqL46Iw1X236zPbd++HYBxS27lweveVOPemOVT1YJrEfEh4ENdip+mNOovV38ZsKyaa5qZWeW8DIOZWYE49M3MCsShb2ZWIA59M7MCceibmRWIQ9/MrEAc+mZmBeLQNzMrEIe+mVmBOPTNzArEoW9mViAOfTOzAnHom5kViEPfzKxAHPpmZgXi0DczKxCHvplZgTj0zcwKxKFvZlYgDn0zswJx6JuZFYhD38ysQBz6ZmYFUlXoSxom6RZJ90naJemvJQ2XtFnSA2l7eqb+Ukm7Jd0vaWb13TczszyqHel/Avh2RLwUOB/YBSwBtkTEeGBLOkbSucA8YCIwC1ghqaHK65uZWQ4Vh76kocBrgM8CRMSfIuJxYA7Qkqq1AJek/TnAuoh4OiL2ALuBKZVe38zM8qtmpP8ioB34nKSfSvqMpOcBZ0XEAYC0PTPVHwXsy7RvS2VmZtZHqgn9RuACYGVEvAL4A2kqpxsqUxZlK0oLJbVKam1vb6+ii2ZmllVN6LcBbRFxVzq+hdKbwMOSRgKk7cFM/TGZ9qOB/eWeOCJWR0RzRDQ3NTVV0UUzM8uqOPQj4iFgn6SXpKKLgXuBjcCCVLYA2JD2NwLzJA2SdA4wHri70uubmVl+jVW2fxdws6S/AH4FvIPSG8l6SVcCe4FLASJip6T1lN4YOoDFEXG4yuubmVkOVYV+RNwDNJc5dXE39ZcBy6q5ppmZVc7fyDUzKxCHvplZgVQ7p2/WL53/4U0c+uMzJ/0645bcelKf/7TBA/nZh2ac1GtYsTj07ZR06I/P8OB1b6p1N6p2st9UrHg8vWNmViAOfTOzAnHom5kViEPfzKxAHPpmZgXi0DczKxCHvplZgTj0zcwKxKFvZlYgDn0zswJx6JuZFYhD38ysQLzgmp2Snv+yJUxuWVLrblTt+S8DqP+F46z/cOjbKemJXdd5lU2zMjy9Y2ZWIA59M7MCceibmRWIQ9/MrEAc+mZmBeLQNzMrkKpDX1KDpJ9K+mY6Hi5ps6QH0vb0TN2lknZLul/SzGqvbWZm+fTGSP89wK7M8RJgS0SMB7akYySdC8wDJgKzgBWSGnrh+mZm1kNVhb6k0ZS+LviZTPEcoCXttwCXZMrXRcTTEbEH2A1Mqeb6ZmaWT7Uj/RuA9wPPZsrOiogDAGl7ZiofBezL1GtLZceQtFBSq6TW9vb2KrtoZmadKl6GQdKbgYMRsU3S63rSpExZlKsYEauB1QDNzc1l65idyKmwhMFpgwfWugt2iqlm7Z2LgNmS3gg8Bxgq6YvAw5JGRsQBSSOBg6l+GzAm0340sL+K65t1qy/W3Rm35NZTYn0fK5aKp3ciYmlEjI6IcZQ+oP1uRLwN2AgsSNUWABvS/kZgnqRBks4BxgN3V9xzMzPL7WSssnkdsF7SlcBe4FKAiNgpaT1wL9ABLI6Iwyfh+mZm1o1eCf2IuAO4I+0/AlzcTb1lwLLeuKaZmeXnb+SamRWIQ9/MrEAc+mZmBeLQNzMrEIe+mVmBOPTNzArEoW9mViAOfTOzAnHom5kViEPfzKxAHPpmZgXi0DczKxCHvplZgTj0zcwKxKFvZlYgDn0zswJx6JuZFYhD38ysQBz6ZmYF4tA3MysQh76ZWYE49M3MCsShb2ZWIBWHvqQxkm6XtEvSTknvSeXDJW2W9EDanp5ps1TSbkn3S5rZGy/AzMx6rpqRfgfwvoh4GfAqYLGkc4ElwJaIGA9sScekc/OAicAsYIWkhmo6b2Zm+VQc+hFxICJ+kvafAHYBo4A5QEuq1gJckvbnAOsi4umI2APsBqZUen0zM8uvV+b0JY0DXgHcBZwVEQeg9MYAnJmqjQL2ZZq1pbJyz7dQUquk1vb29t7oopmZ0QuhL2kI8BXgvRHxu+NVLVMW5SpGxOqIaI6I5qampmq7aGZmSVWhL2kgpcC/OSK+moofljQynR8JHEzlbcCYTPPRwP5qrm9mZvlUc/eOgM8CuyJieebURmBB2l8AbMiUz5M0SNI5wHjg7kqvb2Zm+TVW0fYi4O3ADkn3pLJ/Ba4D1ku6EtgLXAoQETslrQfupXTnz+KIOFzF9c3MLKeKQz8ifkD5eXqAi7tpswxYVuk1zcysOv5GrplZgVQzvWN2Sil9TJWzzUfzXyei7E1rZn3CI32zJCJO+Fi7dm3ZtmvXru1Rewe+1ZpD3yyHyy67DICGhgbuuOMOGhoajio36+88vWOWU0NDAx0dHQB0dHTQ2NjI4cO+Ec3qg0f6ZjnNnz+fSZMm0dDQwKRJk5g/f36tu2TWY+rvc4zNzc3R2tpa626YAX/+sLehoYHDhw8f2YI/oLX+RdK2iGjuWu6RvlkFOoPe0zpWbxz6ZmYF4tA3q8CAAQOO2prVC/+LNavAs88+e9TWrF449M0qMHjwYCQxePDgWnfFLBeHvllOkujo6CAi6OjoqGj5BrNaceib5RQRDBkyhAEDBjBkyBDfqml1xd/INavAY489dtTWrF54pG+Ww4wZM3KVm/U3Dn2zHCZMmJCr3Ky/8TIMZjl0Lq72ghe8gIMHD3LmmWfy0EMPHbUIm1l/4GUYzHrB4cOHGTZsGGvXruWpp55i7dq1DBs2zMsxWN1w6JvlNHfuXKZNm8bAgQOZNm0ac+fOrXWXzHrMoW+W05o1a1i+fDlPPvkky5cvZ82aNbXuklmPeU7fLIczzjiDRx99lMbGxiM/oNLR0cHw4cN55JFHat09syM8p2/WC2688UaGDh165Fu4khg6dCg33nhjjXtm1jN9HvqSZkm6X9JuSUv6+vpm1Zg/fz6rVq1iwoQJDBgwgAkTJrBq1Sr/epbVjT6d3pHUAPwCmA60AT8G5kfEvd218fSOmVl+/WV6ZwqwOyJ+FRF/AtYBc/q4D2ZmhdXXoT8K2Jc5bktlR5G0UFKrpNb29vY+65yZ2amur0O/3Bq0x8wvRcTqiGiOiOampqY+6JaZWTH0dei3AWMyx6OB/X3cBzOzwurr0P8xMF7SOZL+ApgHbOzjPpiZFVaffzlL0huBG4AGYE1ELDtB/Xbg133RN7OcRgC/rXUnzLrxwog4Zn68338j16y/ktRa7pY4s/7M38g1MysQh76ZWYE49M0qt7rWHTDLy3P6ZmYF4pG+mVmBOPTNzArEoW9VkfQCSesk/VLSvZK+JWlCOjdR0ncl/ULSA5I+oLQQvaS3StqeHlslnd/N8z8oaYeke9Ljkzn7t7WC1/QRSa/P266b55oi6Y70+n8i6VZJk3vjuXP0YaCkbWk/JH0hc65RUrukb6bj2Z1Lnkv6D0n/1Jd9tZOvsdYdsPqVAvxrQEtEzEtlLwfOkrSP0retr4qITZKeC3wFuBr4NLAHeG1EPCbpDZQ+FH1lN5eaFhEVfQkqIqZW0OaDlVyrK0lnAeuByyJiayp7NfBiYEeXuo0R0dEb1y3j1UDnm98fgEmSBkfEHyktc/6bzooRsRF/S/6U5pG+VWMa8ExErOosiIh7IuL7wGXAnRGxKZU/CbwTWJKOt0bEY6nZjyitw9RjafR8vaTvSdol6a8kfTWNqP8rU+/3aTsy1b1H0s8l/Y2kBkk3peMdkq5JdW+SNDftXyzpp+n8GkmDUvmDkj6cRu87JL20TDffSekN8chfGxHxg4j4euY6yyXdDnw0/VWwNV1vq6SXpHpXSPq6pG9I2iPpnZKuTfV+JGl4qvfu9NfWdknrMv2YBdyWOb4NeFPanw98KfPf6wpJx/wMmKQXS/q2pG2Svt/N67U64NC3akwCtnVzbmLXcxHxS2CIpKFd6l7J0aHU1e2Z6Z1rMuV/iojXAKuADcDi1KcrJJ3R5TkuA74TES8HzgfuAV4OjIqISRExGfhctoGk5wA3AW9J5xuBqzJVfhsRFwArgXLTIBOBnxzndQFMAF4fEe8D7gNeExGvAD4I/Hem3qT0GqYAy4AnU70fApenOkuAV0TEecCiTNtpwB2Z43XAvPT6zgPuOkEfofSX2Lsi4kJKr3VFD9pYP+TpHTtZRJlls5Mj5ZKmUQr9Vx/nubqb3umchtgB7IyIA+k5f0VpNdfsL5X/GFgjaSDw9Yi4J9V7kaRPAbcCm7o8/0uAPRHxi3TcQumN5YZ0/NW03Qb8/XH6T+rXXcBQYFNEvCcVfzkiDqf904AWSeMp/TcamGl+e0Q8ATwh6RDwjcxrPy/tbwdulvR1oPOvibOBR9NfWgBExHZJ4yiN8r/Vg34PAaYCX04fyQAMOlE765880rdq7AQuPM65o9alkfQi4PcpvJB0HvAZYE5EPHLsU5zQ02n7bGa/8/ioAU1EfA94DaX56y9IujxNL51PaRS8OPXlqC738PqHu14v2QlckOnDK4EPUAr3Tn/I7P8npXCfBPwt8Jwy14KjX2/2tb6J0uclFwLbJDUCbwC+U6ZvG4GPk5naOY4BwOMR8fLM42U9aGf9kEPfqvFdYJCkf+wsSHPrrwVuBl7deReMpMHAJ4GPpeOxlEbKb8+MpE8aSS8EDkbE/wKfBS6QNAIYEBFfoRTGF3Rpdh8wTtJfpuO3A/+X47KfpjTVlP0w+bnHqX8af/5Q9Yoc10HSAGBMRNwOvB8YBgzh2Pn8TmuAj0TEjjLnjhIRvwP2SLo0XUvq5m4r6/88vWMVi4iQ9HfADek2v6eAB4H3RsQfJc0BPiXp05SW0v4C0Pkh4QeBM4AVacqg4zgrVt4uqXMKZHtEXN5NveN5HfDPkp4Bfk9pHnwU8LkUmABLu7y+pyS9g9K0RiOlKaJV9FBEPCTpLZQ+pB0FHKS0FPNHumnyMUrTO9dSekPNowH4oqTTKP2Fcj3wBDA+Iu4r07c24BM5nv+twEpJ/05p2mkd8LOcfbR+wMswmJ2i0u2hb4uIRSesbIXh0DczKxDP6ZuZFYhD38ysQBz6ZmYF4tA3MysQh76ZWYE49M3MCuT/AQNoB+UQLUOxAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "df['CO2 Emission Grams/Mile'].plot(kind='box')" ] }, { @@ -211,47 +543,117 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Histogram\n", "\n", "Please provide a histogram of the Fuel Barrels/Year" - ] }, { "cell_type": "code", - + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "df['Fuel Barrels/Year'].plot(kind='hist')" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 21, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/plain": [ + "Regular 23587\n", + "Premium 9921\n", + "Gasoline or E85 1195\n", + "Diesel 911\n", + "Premium or E85 121\n", + "Midgrade 74\n", + "CNG 60\n", + "Premium and Electricity 20\n", + "Gasoline or natural gas 20\n", + "Premium Gas or Electricity 17\n", + "Regular Gas and Electricity 16\n", + "Gasoline or propane 8\n", + "Regular Gas or Electricity 2\n", + "Name: Fuel Type, dtype: int64" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['Fuel Type'].value_counts()" + ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "Bar Chart\n", "\n", "Please provide a bar chart of the Fuel Type on the X axis and \"City MPG\" on the Y axis" - ] }, { "cell_type": "code", - + "execution_count": 35, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "df.head(10).groupby(['Fuel Type','City MPG']).count()['Make'].plot(kind='bar')" ] }, { @@ -278,8 +680,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.3" - + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-2.ipynb b/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-2.ipynb index 00d6b58..9770248 100644 --- a/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-2.ipynb +++ b/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-2.ipynb @@ -23,18 +23,16 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# import libraries here\n", "import pandas as pd\n", - "'''\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import seaborn as sns\n", - "%matplotlib inline\n", - "'''" + "%matplotlib inline\n" ] }, { @@ -48,9 +46,223 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCalorie burnedStepsDistanceFloorsMinutes SedentaryMinutes Lightly ActiveMinutes Fairly ActiveMinutes Very ActiveActivity Calories...Distance_milesDaysDays_encodedWork_or_WeekendHours SleepSleep efficiencyYesterday_sleepYesterday_sleep_efficiencyMonthsMonths_encoded
02015-05-0819349050.6501.35546001680...0.403891Friday4.016.40000092.0863310.0000000.000000May5
12015-05-0936311892514.114611.00031661602248...8.767545Saturday5.007.56666792.4643586.40000092.086331May5
22015-05-1032041422810.571602.00022614771719...6.567891Sunday6.006.45000088.7614687.56666792.464358May5
32015-05-11267367565.028749.0001902349620...3.119282Monday0.015.18333388.8571436.45000088.761468May5
42015-05-1224955023.731876.000171007360...2.317714Tuesday1.016.78333382.8920575.18333388.857143May5
\n", + "

5 rows × 24 columns

\n", + "
" + ], + "text/plain": [ + " Date Calorie burned Steps Distance Floors Minutes Sedentary \\\n", + "0 2015-05-08 1934 905 0.65 0 1.355 \n", + "1 2015-05-09 3631 18925 14.11 4 611.000 \n", + "2 2015-05-10 3204 14228 10.57 1 602.000 \n", + "3 2015-05-11 2673 6756 5.02 8 749.000 \n", + "4 2015-05-12 2495 502 3.73 1 876.000 \n", + "\n", + " Minutes Lightly Active Minutes Fairly Active Minutes Very Active \\\n", + "0 46 0 0 \n", + "1 316 61 60 \n", + "2 226 14 77 \n", + "3 190 23 4 \n", + "4 171 0 0 \n", + "\n", + " Activity Calories ... Distance_miles Days Days_encoded \\\n", + "0 1680 ... 0.403891 Friday 4.0 \n", + "1 2248 ... 8.767545 Saturday 5.0 \n", + "2 1719 ... 6.567891 Sunday 6.0 \n", + "3 9620 ... 3.119282 Monday 0.0 \n", + "4 7360 ... 2.317714 Tuesday 1.0 \n", + "\n", + " Work_or_Weekend Hours Sleep Sleep efficiency Yesterday_sleep \\\n", + "0 1 6.400000 92.086331 0.000000 \n", + "1 0 7.566667 92.464358 6.400000 \n", + "2 0 6.450000 88.761468 7.566667 \n", + "3 1 5.183333 88.857143 6.450000 \n", + "4 1 6.783333 82.892057 5.183333 \n", + "\n", + " Yesterday_sleep_efficiency Months Months_encoded \n", + "0 0.000000 May 5 \n", + "1 92.086331 May 5 \n", + "2 92.464358 May 5 \n", + "3 88.761468 May 5 \n", + "4 88.857143 May 5 \n", + "\n", + "[5 rows x 24 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "fitbit=pd.read_csv('Fitbit2.csv')\n", "\n", @@ -82,11 +294,202 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
monthmedian_steps
0110366.0
129235.0
2311122.0
3413846.5
4511998.0
5612935.5
6710644.0
7812213.0
899343.0
9107865.0
10119453.5
11128531.0
\n", + "
" + ], + "text/plain": [ + " month median_steps\n", + "0 1 10366.0\n", + "1 2 9235.0\n", + "2 3 11122.0\n", + "3 4 13846.5\n", + "4 5 11998.0\n", + "5 6 12935.5\n", + "6 7 10644.0\n", + "7 8 12213.0\n", + "8 9 9343.0\n", + "9 10 7865.0\n", + "10 11 9453.5\n", + "11 12 8531.0" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Driver 1 enter codes here\n", + "\n", + "median_steps = fitbit.groupby('Months_encoded').median().reset_index()[['Months_encoded','Steps']]\n", + "median_steps.columns = ['month', 'median_steps']\n", + "median_steps" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Months_encoded\n", + "1 42094.0\n", + "2 36125.6\n", + "3 56034.2\n", + "4 63560.0\n", + "5 35832.8\n", + "6 54869.6\n", + "7 42837.0\n", + "8 46899.8\n", + "9 42593.2\n", + "10 34294.8\n", + "11 39481.6\n", + "12 36953.0\n", + "Name: Steps, dtype: float64" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Driver 1 enter codes here\n" + "weekdays = fitbit[fitbit['Work_or_Weekend']==1].groupby('Months_encoded')['Steps'].sum()/5\n", + "weekends = fitbit[fitbit['Work_or_Weekend']==0].groupby('Months_encoded')['Steps'].sum()/2\n", + "\n", + "wd_or_we = pd.concat([weekdays,weekends],axis=1).reset_index()\n", + "wd_or_we.columns = ['month','weekdays','weekends']\n", + "wd_or_we" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots(1,2, figsize=(12,4))\n", + "\n", + "plt.sca(ax[0])\n", + "plt.plot(median_steps['month'],median_steps['median_steps'])\n", + "plt.xlabel('month')\n", + "plt.ylabel('median steps')\n", + "plt.title('Median Steps by month');\n", + "\n", + "plt.sca(ax[1])\n", + "width = 0.35\n", + "plt.bar(wd_or_we['month'],wd_or_we['weekdays'],width,label='weekdays')\n", + "plt.bar(wd_or_we['month'] + width ,wd_or_we['weekends'],width, label='weekends')\n", + "plt.ylabel('Number of Fitbitter')\n", + "plt.title('Fitbitter workout behavior by month')\n", + "plt.xticks(wd_or_we['month']+0.1,wd_or_we['month'])\n", + "plt.legend(loc='best');\n", + "\n" ] }, { @@ -104,11 +507,259 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateCalorie burnedStepsDistanceFloorsMinutes SedentaryMinutes Lightly ActiveMinutes Fairly ActiveMinutes Very ActiveActivity Calories...Distance_milesDaysDays_encodedWork_or_WeekendHours SleepSleep efficiencyYesterday_sleepYesterday_sleep_efficiencyMonthsMonths_encoded
02015-05-0819349050.6501.35546001680...0.403891Friday4.016.40000092.0863310.0000000.000000May5
12015-05-0936311892514.114611.00031661602248...8.767545Saturday5.007.56666792.4643586.40000092.086331May5
22015-05-1032041422810.571602.00022614771719...6.567891Sunday6.006.45000088.7614687.56666792.464358May5
32015-05-11267367565.028749.0001902349620...3.119282Monday0.015.18333388.8571436.45000088.761468May5
42015-05-1224955023.731876.000171007360...2.317714Tuesday1.016.78333382.8920575.18333388.857143May5
\n", + "

5 rows × 24 columns

\n", + "
" + ], + "text/plain": [ + " Date Calorie burned Steps Distance Floors Minutes Sedentary \\\n", + "0 2015-05-08 1934 905 0.65 0 1.355 \n", + "1 2015-05-09 3631 18925 14.11 4 611.000 \n", + "2 2015-05-10 3204 14228 10.57 1 602.000 \n", + "3 2015-05-11 2673 6756 5.02 8 749.000 \n", + "4 2015-05-12 2495 502 3.73 1 876.000 \n", + "\n", + " Minutes Lightly Active Minutes Fairly Active Minutes Very Active \\\n", + "0 46 0 0 \n", + "1 316 61 60 \n", + "2 226 14 77 \n", + "3 190 23 4 \n", + "4 171 0 0 \n", + "\n", + " Activity Calories ... Distance_miles Days Days_encoded \\\n", + "0 1680 ... 0.403891 Friday 4.0 \n", + "1 2248 ... 8.767545 Saturday 5.0 \n", + "2 1719 ... 6.567891 Sunday 6.0 \n", + "3 9620 ... 3.119282 Monday 0.0 \n", + "4 7360 ... 2.317714 Tuesday 1.0 \n", + "\n", + " Work_or_Weekend Hours Sleep Sleep efficiency Yesterday_sleep \\\n", + "0 1 6.400000 92.086331 0.000000 \n", + "1 0 7.566667 92.464358 6.400000 \n", + "2 0 6.450000 88.761468 7.566667 \n", + "3 1 5.183333 88.857143 6.450000 \n", + "4 1 6.783333 82.892057 5.183333 \n", + "\n", + " Yesterday_sleep_efficiency Months Months_encoded \n", + "0 0.000000 May 5 \n", + "1 92.086331 May 5 \n", + "2 92.464358 May 5 \n", + "3 88.761468 May 5 \n", + "4 88.857143 May 5 \n", + "\n", + "[5 rows x 24 columns]" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Driver 2 enter codes here\n" + "# Driver 2 enter codes here\n", + "fitbit.head()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "fig, ax = plt.subplots(1,3, figsize=(12,4))\n", + "\n", + "plots = ['Minutes Lightly Active','Minutes Very Active','Minutes Sedentary']\n", + "plots_color = ['red','blue','green']\n", + "\n", + "for p in range(len(plots)):\n", + " plt.sca(ax[p])\n", + " plt.scatter(fitbit[plots[p]],fitbit['Steps'],color=plots_color[p])\n", + " plt.xlabel('Steps')\n", + " plt.ylabel(plots[p])\n", + " plt.title(str(plots[p])+' VS Steps');\n", + " plt.tight_layout()" ] } ], @@ -128,7 +779,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.0" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-3.ipynb b/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-3.ipynb index 93106c2..059e805 100644 --- a/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-3.ipynb +++ b/module-2_labs/lab-matplotlib-seaborn/your-code/challenge-3.ipynb @@ -15,12 +15,10 @@ "source": [ "# import libraries here\n", "import pandas as pd\n", - "'''\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "import seaborn as sns\n", - "%matplotlib inline\n", - "'''" + "%matplotlib inline" ] }, { @@ -32,9 +30,152 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PassengerIdSurvivedPclassNameGenderAgeSibSpParchTicketFareCabinEmbarked
010.03Braund, Mr. Owen Harrismale22.010A/5 211717.2500U0S
121.01Cumings, Mrs. John Bradley (Florence Briggs Th...female38.010PC 1759971.2833C85C
231.03Heikkinen, Miss. Lainafemale26.000STON/O2. 31012827.9250U0S
341.01Futrelle, Mrs. Jacques Heath (Lily May Peel)female35.01011380353.1000C123S
450.03Allen, Mr. William Henrymale35.0003734508.0500U0S
\n", + "
" + ], + "text/plain": [ + " PassengerId Survived Pclass \\\n", + "0 1 0.0 3 \n", + "1 2 1.0 1 \n", + "2 3 1.0 3 \n", + "3 4 1.0 1 \n", + "4 5 0.0 3 \n", + "\n", + " Name Gender Age SibSp \\\n", + "0 Braund, Mr. Owen Harris male 22.0 1 \n", + "1 Cumings, Mrs. John Bradley (Florence Briggs Th... female 38.0 1 \n", + "2 Heikkinen, Miss. Laina female 26.0 0 \n", + "3 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35.0 1 \n", + "4 Allen, Mr. William Henry male 35.0 0 \n", + "\n", + " Parch Ticket Fare Cabin Embarked \n", + "0 0 A/5 21171 7.2500 U0 S \n", + "1 0 PC 17599 71.2833 C85 C \n", + "2 0 STON/O2. 3101282 7.9250 U0 S \n", + "3 0 113803 53.1000 C123 S \n", + "4 0 373450 8.0500 U0 S " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "titanic = pd.read_csv('./titanic.csv',low_memory=False)\n", "titanic.head()" @@ -49,11 +190,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "PassengerId int64\n", + "Survived float64\n", + "Pclass int64\n", + "Name object\n", + "Gender object\n", + "Age float64\n", + "SibSp int64\n", + "Parch int64\n", + "Ticket object\n", + "Fare float64\n", + "Cabin object\n", + "Embarked object\n", + "dtype: object" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "#your code here\n" + "#your code here\n", + "titanic.dtypes" ] }, { @@ -67,20 +232,265 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PassengerIdSurvivedPclassAgeSibSpParchFare
010.0322.000000107.2500
121.0138.0000001071.2833
231.0326.000000007.9250
341.0135.0000001053.1000
450.0335.000000008.0500
........................
13041305NaN329.513190008.0500
13051306NaN139.00000000108.9000
13061307NaN338.500000007.2500
13071308NaN329.513190008.0500
13081309NaN325.3154351122.3583
\n", + "

1309 rows × 7 columns

\n", + "
" + ], + "text/plain": [ + " PassengerId Survived Pclass Age SibSp Parch Fare\n", + "0 1 0.0 3 22.000000 1 0 7.2500\n", + "1 2 1.0 1 38.000000 1 0 71.2833\n", + "2 3 1.0 3 26.000000 0 0 7.9250\n", + "3 4 1.0 1 35.000000 1 0 53.1000\n", + "4 5 0.0 3 35.000000 0 0 8.0500\n", + "... ... ... ... ... ... ... ...\n", + "1304 1305 NaN 3 29.513190 0 0 8.0500\n", + "1305 1306 NaN 1 39.000000 0 0 108.9000\n", + "1306 1307 NaN 3 38.500000 0 0 7.2500\n", + "1307 1308 NaN 3 29.513190 0 0 8.0500\n", + "1308 1309 NaN 3 25.315435 1 1 22.3583\n", + "\n", + "[1309 rows x 7 columns]" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your code here- numerical variable\n" + "# your code here- numerical variable\n", + "titanic.select_dtypes(np.number)" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0
1
2
3
4
...
1304
1305
1306
1307
1308
\n", + "

1309 rows × 0 columns

\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: []\n", + "Index: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, ...]\n", + "\n", + "[1309 rows x 0 columns]" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "#your code here- categorical variable\n" + "#your code here- categorical variable\n", + "titanic.select_dtypes('category')" ] }, { @@ -94,11 +504,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAxwAAAGpCAYAAAAHnzDnAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAMTQAADE0B0s6tTgAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAfG0lEQVR4nO3db4yV5Z3/8Q8zOLuuOAxYBaHFtYxlO921Ak3X+IDs2shYtNEUtDZstdVsqrW4GhBBm1oSg7qs6UDB1GZD19CQpolSU1OC0UwiqU9qAvIADB1q4ix/VtSZOc4EQWf4PTBM5QfqGeZcMGNfr4RkuL3OOd+TXA7znvvc54xpb28/GgAAgALqzvQAAADAp5fgAAAAihEcAABAMYIDAAAoRnAAAADFCA4AAKAYwQEAABQjOAAAgGLGVrPoxRdfzG9/+9vs3r07fX19ef7551NfX/+R6w8dOpQ1a9bkxRdfzNixYzN37tzcfvvtH3sbAADg06eqMxyHDx/OrFmz8u1vf7uqO21ra8vOnTuzatWqPPjgg2lvb8+TTz45rEEBAIDRp6ozHFdddVWSZPv27Z+49p133snzzz+fRx99NC0tLUmSW2+9NU888URuueUWZzkAAOCvSM2v4di9e3eS5LLLLhs8NmvWrFQqlezdu7fWDwcAAIxgNQ+Orq6ujBs3LmPH/uXkSVNTU5Kku7u71g8HAACMYFW9pGoojh49esKxMWPGfOxtBgYG8tZbb+Xss8/+xLUAAEBZR48ezaFDh3Leeeelrm545yhqHhwTJ05Mb29v3n///cGzHF1dXUn+cqbj//fWW2/lxhtvrPUoAADAMPzmN7/J+eefP6z7qHlwXHLJJUmSV155JbNnz06SbNu2LY2NjZk6depJb3P22WcnSTo7O9PY2FjrkfgrdP/992flypVnegw+Rewpas2eotbsKWqpUqnkc5/73ODP6cNRVXBUKpW88cYbgxd9d3R0pL6+PlOnTk1vb28WL16c5cuX54tf/GIaGxvzta99LT/72c9y33335d1338369etz3XXXfeQ7VB17GVVjY6PgoCYaGhrsJWrKnqLW7ClqzZ6ihFpc7lBVcLz00kt59NFHB/9+++23J0l++tOfZvLkyens7Mzhw4cH//s999yT1atXZ8mSJamvr8/cuXNzyy23DHtYAABgdKkqOK6++upcffXVH/nf29vbj/v72WefnWXLlmXZsmXDmw5OUWtr65kegU8Ze4pas6eoNXuKkarmb4sLI4FvutSaPUWt2VPUmj3FSCU4AACAYgQHAABQjOAAAACKERwAAEAxggMAAChGcAAAAMUIDgAAoBjBAQAAFCM4AACAYgQHAABQjOAAAACKERwAAEAxggMAAChGcAAAAMUIDgAAoBjBAQAAFCM4AACAYgQHAABQjOAAAACKERwAAEAxggMAAChGcAAAAMUIDgAAoBjBAQAAFCM4AACAYgQHAABQjOAAAACKERwAAEAxggMAAChGcAAAAMUIDgAAoBjBAQAAFCM4AACAYgQHAABQjOAAAACKERwAAEAxggMAAChGcAAAAMUIDgAAoBjBAQAAFCM4AACAYgQHAABQjOAAAACKERwAAEAxggMAAChGcAAAAMUIDgAAoBjBAQAAFCM4AACAYgQHAABQjOAAAACKERwAAEAxggMAAChGcAAAAMUIDgAAoBjBAQAAFCM4AACAYgQHAABQjOAAAACKERwAAEAxggMAAChGcAAAAMUIDgAAoBjBAQAAFCM4AACAYsYOZfHGjRvz9NNPp7e3N7Nnz87ixYszceLEk6597bXX8vjjj2fXrl2pr6/Pl7/85dx5552ZNGlSTQYHAABGvqrPcGzevDkbNmzIXXfdlbVr16avry8rVqz4yPU/+tGPMm7cuDz++ON57LHH0tvbm4ceeqgmQwMAAKND1cGxadOmzJ8/P3PmzElzc3OWLl2aHTt2pKOj44S13d3d2bdvXxYuXJhp06alubk5CxYsyO7du2s6PAAAMLJVFRxHjhzJnj17MnPmzMFjU6ZMyeTJk7Nz584T1jc2Nuazn/1snnvuuRw5ciSHDh3KCy+8kK985Su1mxwAABjxqgqOSqWSgYGBTJgw4bjjTU1N6e7uPvFO6+qyatWqvPzyy/n617+ea665Jvv27cvy5ctrMzUAADAqVHXR+NGjR4d0pwMDA2lra8tFF12UpUuX5r333sv//M//5KGHHsojjzzykbe7//7709DQkCRpbW1Na2vrkB4XAAA4NVu2bMmWLVuSfPAKp1qpKjjGjx+furq6dHV1HXe8u7s7TU1NJ6zftm1btm3blt/97neDAbF8+fLccMMN+fOf/5zPf/7zJ32clStXprGxcajPAQAA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4jhD+T51TF9fX2677bb83//9X55//nl7ikFD3U8vvPBCNm7cmM7OzjQ2NmbBggW56aabTuPEjHRD2VOvvfZaHn/88ezatSv19fX58pe/nDvvvDOTJk06zVMzUr344ov57W9/m927d6evr+8T/w0bzs/nVX/S+HBs3rw5GzZsyF133ZW1a9emr68vK1as+Mj1bW1t2blzZ1atWpUHH3ww7e3tefLJJ0/HqIwSQ9lTb731Vrq7u7No0aKsX78+d955ZzZt2pRf/epXp3lqRrKhfp86Zs2aNZk2bdppmJDRZKj76bnnnsuaNWtyww035Je//GVWrlyZGTNmnMaJGemGuqd+9KMfZdy4cXn88cfz2GOPpbe3Nw899NBpnJiR7vDhw5k1a1a+/e1vV7V+OD+fn5bg2LRpU+bPn585c+akubk5S5cuzY4dO9LR0XHC2nfeeSfPP/98Fi1alJaWlsyaNSu33nprnnnmmfT395+OcRkFhrKnLr744vzkJz/J5ZdfnqlTp+aKK67IggUL8oc//OEMTM5INZQ9dczWrVvz+uuv51vf+tZpnJTRYCj76f3338/Pf/7z3HHHHbn66qszderUfOELX8jMmTPPwOSMVEPZU93d3dm3b18WLlyYadOmpbm5OQsWLMju3bvPwOSMVFdddVX+7d/+LV/60pc+ce1wfz4vHhxHjhzJnj17jvvGOWXKlEyePDk7d+48Yf2x/xkuu+yywWOzZs1KpVLJ3r17S4/LKDDUPXUyPT09Offcc0uNyChzKnvq7bffztq1a7Ns2TIvo+I4p/LvXldXV/r7+/O9730vN954Yx5++OH09PSczrEZwYa6pxobG/PZz342zz33XI4cOZJDhw7lhRdeyFe+8pXTOTafIsP9+bx4cFQqlQwMDGTChAnHHW9qakp3d/cJ67u6ujJu3LjBDww8tjbJSdfz12eoe+r/t2/fvvz+97/PNddcU2pERplT2VOPPfZYvvnNb+aiiy46HSMyigx1Px04cCDJB6/P//73v58f//jHef311738hUFD3VN1dXVZtWpVXn755Xz961/PNddck3379mX58uWna2Q+ZYb783nx4Bjqx6GfbL0PA+TDhrqnPqyrqyvLli3LlVdemSuvvLKGUzGaDXVPbd68OT09PbnhhhsKTcRoNtT9NDAwkCT5zne+k8svvzz/+I//mMWLF+fll1/OG2+8UWJERplT2VNtbW256KKLsm7duqxevTp/93d/J2I5ZcP9+bz4u1SNHz8+dXV16erqOu54d3f3YBl92MSJE9Pb25v3339/sKKO3fZk6/nrM9Q9dUxPT0+WLFmSGTNm5O677y49JqPIUPfUK6+8kl27duWqq6467vjcuXNz99135xvf+EbReRnZhrqfjv3W+sNvPnDs6zfeeCMXXHBBwWkZDYa6p7Zt25Zt27bld7/7XRoaGpIky5cvzw033JA///nP+fznP39a5ubTY7g/nxc/w9HQ0JDp06dn+/btg8f279+fAwcOpKWl5YT1l1xySZIP/kE/Ztu2bWlsbMzUqVNLj8soMNQ9lXxwsdO9996bCy+8MMuWLUtd3Wl5vwRGiaHuqdtuuy3//d//Pfjn2IegPvHEE/mXf/mX0zU2I9RQ99OMGTMyduzY414Hfexrb2FKMvQ99e6772bMmDHH/Vt37OtjZ9RgKIb783n9d7/73Z8Umu0vD1JfnyeffDLTpk3Le++9l9WrV+eCCy7IwoULc/Dgwdxxxx35h3/4h5x//vn5m7/5m+zduzebN2/OjBkz8r//+79Zs2ZNrr322syePbv0qIwSQ9lTfX19uffee1NXV5f77rsv7733Xg4dOpTDhw/nb//2b8/0U2GEGMqeOuecczJhwoTBP319fdmyZUv+4z/+w54iydD2U0NDQ954441s3rw5l1xySXp7e7N69er8/d//fa677roz/VQYIYaypxobG/PMM89k7969mTZtWt58882sW7cuAwMD+e53v+uNLkjywbVBnZ2dee211/LSSy/liiuuSHd3d84+++x0d3fX9Ofz0/LBf/PmzUtXV1fa2toGP6zm2G8E+/v709nZmcOHDw+uv+eee7J69eosWbIk9fX1mTt3bm655ZbTMSqjxFD21J/+9Ke8+uqrSXLch2hNmjQpv/71r0//8IxIQ/0+BR9nqPtp0aJFWbduXR544IHU19fnq1/9an74wx+eqfEZgYayp5qamvLII4/kF7/4RX7wgx+kvr4+LS0tefjhh3PWWWedyafBCPLSSy/l0UcfHfz77bffniT56U9/msmTJ9f05/Mx7e3tp34FLgAAwMfwQnYAAKAYwQEAABQjOAAAgGIEBwAAUIzgAAAAihEcAABAMYIDAAAoRnAAAADFCA4AAKAYwQEAABTz/wDBkzz5AnNwlAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "fig, ax = plt.subplots(figsize=(12,6))\n", + "plt.style.use('classic')" ] }, { @@ -110,11 +533,220 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 152, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PassengerIdSurvivedPclassNameGenderAgeSibSpParchTicketFareCabinEmbarked
010.03Braund, Mr. Owen Harrismale22.010A/5 211717.2500U0S
121.01Cumings, Mrs. John Bradley (Florence Briggs Th...female38.010PC 1759971.2833C85C
231.03Heikkinen, Miss. Lainafemale26.000STON/O2. 31012827.9250U0S
341.01Futrelle, Mrs. Jacques Heath (Lily May Peel)female35.01011380353.1000C123S
450.03Allen, Mr. William Henrymale35.0003734508.0500U0S
\n", + "
" + ], + "text/plain": [ + " PassengerId Survived Pclass \\\n", + "0 1 0.0 3 \n", + "1 2 1.0 1 \n", + "2 3 1.0 3 \n", + "3 4 1.0 1 \n", + "4 5 0.0 3 \n", + "\n", + " Name Gender Age SibSp \\\n", + "0 Braund, Mr. Owen Harris male 22.0 1 \n", + "1 Cumings, Mrs. John Bradley (Florence Briggs Th... female 38.0 1 \n", + "2 Heikkinen, Miss. Laina female 26.0 0 \n", + "3 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35.0 1 \n", + "4 Allen, Mr. William Henry male 35.0 0 \n", + "\n", + " Parch Ticket Fare Cabin Embarked \n", + "0 0 A/5 21171 7.2500 U0 S \n", + "1 0 PC 17599 71.2833 C85 C \n", + "2 0 STON/O2. 3101282 7.9250 U0 S \n", + "3 0 113803 53.1000 C123 S \n", + "4 0 373450 8.0500 U0 S " + ] + }, + "execution_count": 152, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your code here\n", + "titanic.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 150, "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 (16.136, 32.102]\n", + "1 (32.102, 48.068]\n", + "2 (16.136, 32.102]\n", + "3 (32.102, 48.068]\n", + "4 (32.102, 48.068]\n", + " ... \n", + "1304 (16.136, 32.102]\n", + "1305 (32.102, 48.068]\n", + "1306 (32.102, 48.068]\n", + "1307 (16.136, 32.102]\n", + "1308 (16.136, 32.102]\n", + "Name: Age, Length: 1309, dtype: category\n", + "Categories (5, interval[float64]): [(0.0902, 16.136] < (16.136, 32.102] < (32.102, 48.068] < (48.068, 64.034] < (64.034, 80.0]]" + ] + }, + "execution_count": 150, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Find out proper bins' range\n", + "pd.cut(titanic['Age'],bins=5)" + ] + }, + { + "cell_type": "code", + "execution_count": 161, + "metadata": { + "scrolled": true + }, "outputs": [], "source": [ - "# your code here\n" + "# titanic['Age'].plot(kind='hist',bins=[0,16,32,48,64,80], xticks=[0,16,32,48,64,80]);" + ] + }, + { + "cell_type": "code", + "execution_count": 160, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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PxzkUU9P+/fv14oVKzR//nx5PB69/vrrslgsWrp0qc6dO6f8/HytXr1aDzzwgLq6uiRdjvrxPgYaV5s3b95X/neNjo7WggUL9M1vflNVVVV68803dffdd+vixYs6ePCgvvnNbwZhtNPfI488op07d2rZsmWy2+2qqqqSJN19992aO3eu37Y2m01z5sxRfHx8MIY6rc2dO1dLly7Vvn379OMf/1gWi0XHjx9XR0eHvvGNbyg2NlZRUVEqKSnRhg0b5Ha7deLECRUXFwd0fCOf/PrP//zPfg9Yy8/P5wFrN9jx48dVUlJy1fKXXnpJy5YtU3t7u1566SV99NFHslqtevDBB/XYY4/5PYQNE2P79u366KOP1NPTI4vFopSUFG3cuFG33XabDh48qEOHDl21T3p6un7yk58EYbQ3n1WrVvk9YO348eOqrKzU//zP/+jWW2/V3XffraeeeopQvEHefPNN/eu//qs+//xz3Xnnndq8efNXxsfBgwdVX1/PA9ZukE8//VTl5eVqaGhQf3+/Fi9erMcff9wX5a2trb4HrEVGRmrdunX67ne/G9CxjQwTAABwczLqXTkAAODmRpgAAABjECYAAMAYhAkAADAGYQIAAIxBmAAAAGMQJgAAwBiECQAAMAZhAgAAjEGYAAAAY/x/XN9aM52SVEwAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.hist(titanic['Age'],bins=[0,16,32,48,64,80])\n", + "plt.xticks([0,16,32,48,64,80]);" ] }, { @@ -126,11 +758,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 180, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "\n", + "fig, axs = plt.subplots(1,3,figsize=(12,6))\n", + "axs[0].hist(titanic['Age'],bins=10)\n", + "axs[1].hist(titanic['Age'],bins=20)\n", + "axs[2].hist(titanic['Age'],bins=50);\n" ] }, { @@ -142,11 +790,13 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ - "#your comment here\n" + "#your comment here\n", + "\n", + "# The distribution looks more normalized when the bin size is smaller" ] }, { @@ -158,11 +808,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 184, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "sns.distplot(a=titanic['Age'],bins=[0,16,32,48,64,80]);" ] }, { @@ -176,20 +838,47 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 219, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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VVWl0tJS+Xw+5eTkTOeaAABAAoppp2NsbEy//e1vlZmZqQ0bNui2225TZWWluru7JUldXV1yOp1KSUmJXlNQUKDOzk5JUjgcVnd3t/Lz86Pns7KylJmZKa/XO53rAQAACSqm6BgaGtLJkyf1k5/8RCtXrtSWLVs0f/58VVRUaHh4WH6/X3a7fcI1drtdgUBAkhQMBjU+Pi6HwzHpGAAAcGmL6emV8fFxSdKNN96or371q5KkiooKff3rX9drr732J6+PRCJTmlxNTY2sVqskye12y+12T+n7AACAC6OtrU1tbW2SPn5m49PEFB02m00Wi0WLFi36vwtnz9aCBQs0MDAgh8Ohnp6eCdcEAoHo7sfp6/1+/6RjPkltba3S09NjmSIAAIiDMzcFgsGgtm3bNunYmJ5emTNnjq666iodP348emxsbEz9/f264oor5HQ6dfToUYVCoej5w4cPa/ny5ZIkq9Wq7OxsdXR0RM/39fWpv79fubm557Y6AABwUYr5JbNf+9rX9Mtf/lIvv/yyent71dDQIEn6i7/4C61YsULz5s1TXV2djh07pr1792rfvn1avXp19Pri4mLt2rVL+/fvl8/n09atW5WXl8crVwAAmCFifsnsl7/8ZQUCAT3zzDM6ceKEPv/5z+uxxx5TamqqJGnz5s3yeDwqKytTRkaGNmzYEH25rCQVFRXJ7/ervr4++uZglZWV078iAACQkJLa29undpfnBTQyMqJVq1ZpaGhoRt3TEQwGZbPZJA1JmjnrnrmCkmwz7vccwKXr9N+xPXv2RDclzsRnrwAAACOIDgAAYATRAQAAjCA6AACAEUQHAAAwgugAAABGEB0AAMAIogMAABhBdAAAACOIDgAAYATRAQAAjCA6AACAEUQHAAAwgugAAABGEB0AAMAIogMAABhBdAAAACOIDgAAYATRAQAAjCA6AACAEUQHAAAwgugAAABGEB0AAMAIogMAABhBdAAAACOIDgAAYATRAQAAjCA6AACAEUQHAAAwgugAAABGEB0AAMAIogMAABgxO5ZBzz33nJ5//vkJx774xS/qkUcekST19vbK4/HI6/XK4XBo7dq1KioqmjC+ublZu3fv1vDwsFwulyoqKpSRkTFNywAAAIkupuiQJKfTqe9+97vRr61WqyRpdHRU1dXVysnJUWNjo7xerzwej6644gq5XC5J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JACiA3EVDof13nvvKRQKafHixUpJSYn3lAAAFwjv04G4slqtWrJkSbynAeA81NbWxjy2pqbmAs4EiY7ogDHl5eVKSkqKaewTTzxxgWcDYLrMmjUr3lPARYLogDEulyveUwBwATzwwAPxngIuEtzTAQAAjGCnAwAwbcbHx7Vnzx7953/+pz744AONjo5OON/c3BynmSEREB2Ii1OnTun555+P/sM0NjY24fyvfvWrOM0MwPl47rnn1Nraqttuu03PPfec7rzzTr3//vt69dVXVVpaGu/pIc54czDExZNPPqnXXntN69evl8Vi0f33369169Zp7ty5+ta3vhXv6QGYopdeeknf+ta3dMcdd2jWrFn68pe/rKqqKq1fv15vvfVWvKeHOCM6EBevvvqqKioqtHLlSs2aNUvXXnut1q5dq3vuuUcvv/xyvKcHYIqGhoaibwSWmpoa/QTp66+/Xr/97W/jOTUkAKIDcfHRRx9FP2Pl8ssvl9/vlyQtX75cXq83nlMDcB4++9nP6r333pMkLVmyRC+++KJGRka0b98+XX755XGeHeKNezoQF0uWLNGxY8eUmZmpZcuW6Wc/+5lSUlL07//+73zgG3ARW716tfr6+iRJ69atU01Njfbs2aNZs2apoqIizrNDvPGSWcTFa6+9pnA4rC996Ut65513tHHjRvX19enyyy/Xxo0btWLFinhPEcA0CIVC6unp0RVXXCG73R7v6SDOiA7EXSQSUSQS0YkTJ5SamiqLxSKLhWf+AOBSw9MriIuBgQFt375dHR0dOnHixFnneckscHEaHh7Wj370I3V0dCgQCCgSmfj/a3/yk5/EaWZIBEQH4uI73/mOIpGIysvLlZGREe/pAJgm3/3ud/X73/9eRUVFcjgc8Z4OEgzRgbjw+XzasWOHFi1aFO+pAJhGR44c0fe//31lZ2fHeypIQDxxjri4+uqrdfz48XhPA8A0W7JkiT766KN4TwMJihtJERcffPCBHnvsMblcLi1evFizZ0/cdCsoKIjTzACcj2PHjqmhoUHFxcWf+NjOysqK08yQCHh6BXHxu9/9Tp2dnfrNb35z1rmkpCRuJAUuUuFwWH/4wx/0r//6r0pKSooej0QiPLZBdCA+6uvr9Vd/9Ve66667uJEUuIRs2bJFixcv1gMPPMBjG2chOhAXwWBQJSUl/KMEXGL6+/v1yCOPaOHChfGeChIQN5IiLm666aZPfGoFwMXt+uuvV1dXV7yngQTFTgfiIi0tTT/84Q/1m9/8Rp/73Oc0a9asCefvvvvuOM0MwPm4+uqrtX37dr311ltasmTJWTeSFhUVxWlmSAREB+Li6NGjysnJ0cmTJ8/6VNkzbz4DcHH5+c9/LqvVqgMHDujAgQMTziUlJREdMxwvmQUAAEZwTwcAYNpFIhF98MEHGhsbi/dUkECIDgDAtDl16pQef/xxud1u3X777Xr//fclSY2NjfrpT38a59kh3ogOAMC0eeqpp+Tz+eTxeGS1WqPH8/Ly9NJLL8VxZkgERAcAYNrs379f5eXluuaaaybcFL548WI+bwlEBwBg+oyMjCgtLe2s48PDw2e9fBYzD9EBAJg21113nX7xi19Ev05KStIf//hHNTU1yeVyxXFmSAS8ZBYAMG36+vpUVVWltLQ0+Xw+XXvtterp6dGcOXP0+OOP68/+7M/iPUXEEXtdAIDzcuedd+rJJ5+UzWbTCy+8oMbGRr3yyis6duyYQqGQCgsLdfPNNys5OTneU0WcER0AgPPi9/v10UcfyWaz6aWXXlJZWZncbne8p4UERHQAAM7LNddcowcffFDLli1TJBLR97///Qkvlz3TAw88YHh2SCTcSAoAOC8PPvigbrzxxujXY2Njk/4HMxs7HQCA82Kz2bR27VpJUn9/vyorKz/xZbMAr14BAABG8PQKAAAwgugAAABGEB0AAMAIogMAABhBdAAAACP+H+/6uUY9717OAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "# your code here- 1st way\n" + "# your code here- 1st way\n", + "titanic['Gender'].value_counts().plot(kind='bar');" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 226, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjEAAAG9CAYAAADk9SfKAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAMTQAADE0B0s6tTgAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3df1yVZZ7/8TdHPQUo5xzURBCMIEMrJmVzZvrhllNR5BRGzeSSuv3YpZkao4FhF602HFclphMWGv7ql5PNsKu0sybRzmCTk2WtD9GZObANpAMhxJQHjhCKcPj+0dczMYqFAbeXvp6PR4+H57qv+74/FzNH3l73dd930LZt23oEAABgGJvVBQAAAJwKQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEjDrThpW1ub1q5dqx07dqitrU1Tp07Vww8/rLFjx0qS6uvr5Xa75fF45HK5NG/ePKWkpPQ6xsaNG7V582a1tbUpKSlJWVlZCg8Pt2I4AADAApbMxBQUFKi6ulqLFy9WcXGx7Ha7cnNz1d3dra6uLuXm5srhcKi4uFhz586V2+3Wrl27AvuXlZVpw4YNWrBggYqKitTe3q68vDwrhgIAACwy5DMxR44c0e9+9zs9+eSTmjx5siQpJydHs2bN0q5du3T06FE1NzdrzZo1CgkJUWxsrPbs2aPS0lIlJSVJkkpLS5WWlqYZM2YE9k9PT1dNTY3i4+OHekgAAMACQz4T09XVJb/fr3POOSfQNmLECNlsNv3xj39UdXW1EhISFBISEtg+bdo0VVVVSZI6OztVW1urqVOnBrZHRkYqIiJCHo9n6AYCAAAsNeQhJjQ0VAkJCXrxxRfV2tqqzs5OrV27Vt3d3Tp48KC8Xq+cTmevfZxOp1paWiRJPp9Pfr9fLperzz4AAODMZ8nC3oULF2rp0qWaPXu2goKCNGPGDF144YWy2Wzq7u4+6b49Pf1/6bbf79enn36q4OBgBQUFnWrZAABgCPX09Kijo0OjR4+WzXb8vIslISY6OlrPPvus2tra1N3dLYfDobS0NEVEROizzz5TXV1dr/4tLS2B2RmHwyGbzSav19tnn7/16aef6nvf+97gDAYAAAyqkpKSwB3MX2RJiDlm5MiRkqS9e/fq4MGD+va3v62GhgaVlJSoo6NDwcHBkqTdu3cHFgHb7XbFxcWpsrIysNC3sbFRTU1NmjJlygnPc+w49fX1CgsLG+xh4TRwbLYPwJmH7/fZw+fzKTo6OvB7/G9ZEmLeffddjRgxQuPHj9ef/vQnrVixQrfeeqvOP/98RUVFacyYMcrPz9f8+fNVVVWliooKLV++PLB/amqqioqKNGnSJI0fP16rVq1SYmJin3cmHbuEFBYWRog5S9jtdv63Bs5QfL/PPn0tBbEkxPh8Pj333HP69NNPNXr0aM2ePVv/8A//IOnzO5WWLVsmt9utjIwMhYeHKzMzMzDrIkkpKSnyer0qLCwMPOwuOzvbiqEAAACLBG3btq3/K2UN097erlmzZqm1tZX0fpYoLy9XcnKy1WUAGAR8v88ePp9PDodDW7ZsUWho6HHbeXcSzkj8BQecufh+4xhCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADDScKsLOFMcPnxYnZ2dVpcBnHbsdrvOPfdcq8sAcAYixAyAw4cPa8KE8/Xppx9bXQpw2hk9epw++mg/QQbAgCPEDIDOzk59+unHmjBhh2y2kVaXA5w2/P42ffTRFers7CTEABhwhJgBZLONlM02yuoyAAA4K7CwFwAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMZMlrB9ra2rRq1Sq9++676ujoUFxcnP7pn/5J3/jGNyRJ9fX1crvd8ng8crlcmjdvnlJSUnodY+PGjdq8ebPa2tqUlJSkrKwshYeHWzEcAABgAUtmYlauXKn/+7//05IlS7Ru3TolJCRo4cKFOnTokLq6upSbmyuHw6Hi4mLNnTtXbrdbu3btCuxfVlamDRs2aMGCBSoqKlJ7e7vy8vKsGAoAALCIJSGmqqpKN910k6ZMmaKoqCjdc889+uyzz1RfX6+dO3equblZOTk5io2N1c0336yZM2eqtLQ0sH9paanS0tI0Y8YMxcfHKycnR3v37lVNTY0VwwEAABawJMRcfPHFevvtt9Xa2qru7m5t3bpVY8aMUWxsrKqrq5WQkKCQkJBA/2nTpqmqqkqS1NnZqdraWk2dOjWwPTIyUhEREfJ4PEM+FgAAYA1L1sQsWLBAy5YtU2pqqmw2mxwOh5544gkFBwfL6/XK6XT26u90OtXS0iJJ8vl88vv9crlcffYBAABnPktmYjZt2qSPPvpIP/vZz1RcXKzvfOc7WrRokVpbW790356eniGoEAAAnO6GfCbmyJEjev755/Wzn/0scDfShRdeqHfffVe/+c1v5HK5VFdX12uflpaWwOyMw+GQzWaT1+vts09fFi5cKLvdLklKTk5WcnLyQA0LAAAMgPLycpWXl0v6fAnJyQx5iOnq6lJXV5dstt6TQEFBQfL7/UpISFBJSYk6OjoUHBwsSdq9e7cmT54sSbLb7YqLi1NlZaWSkpIkSY2NjWpqatKUKVNOeu6lS5cqLCxsEEYFAAAGwhcnGXw+n1auXNln3yG/nBQaGqpLLrlEq1atksfjUUNDg9avX6+mpiZdfvnlmj59usaMGaP8/Hzt27dPW7duVUVFhWbPnh04RmpqqjZt2qTt27erpqZGBQUFSkxMVHx8/FAPBwAAWMSShb2PPfaYiouL9cgjj6ijo0MTJ07U4sWLNXHiREnSsmXL5Ha7lZGRofDwcGVmZgZmXSQpJSVFXq9XhYWFgYfdZWdnWzEUAABgkaBt27ad8Stl29vbNWvWLLW2tg7K5SSfzyeHw6GYmL2y2UYN+PEBU/n9h1RXlzho3z0AZ7Zjv1+3bNmi0NDQ47bz7iQAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJGGW3HSO++8Ux9//PFx7Y899piuvfZa1dfXy+12y+PxyOVyad68eUpJSenVd+PGjdq8ebPa2tqUlJSkrKwshYeHD9UQAACAxSwJMcXFxfL7/YHP27Zt09q1azV9+nR1dXUpNzdX8fHxKi4ulsfjkdvt1rhx45SUlCRJKisr04YNG5Sbm6vIyEgVFRUpLy9PK1assGI4AADAApaEGKfT2evzO++8o6uuukqhoaF6++231dzcrDVr1igkJESxsbHas2ePSktLAyGmtLRUaWlpmjFjhiQpJydH6enpqqmpUXx8/JCPBwAADD3L18Q0Nzdr9+7duvHGGyVJ1dXVSkhIUEhISKDPtGnTVFVVJUnq7OxUbW2tpk6dGtgeGRmpiIgIeTyeoS0eAABYxvIQ88Ybb2j06NGaNm2aJMnr9R43U+N0OtXS0iJJ8vl88vv9crlcffYBAABnvtMixFx//fWy2b5aKT09PYNcEQAAMIEla2KO+cMf/qD6+vrApSRJcrlcqqur69WvpaUlMDvjcDhks9nk9Xr77NOXhQsXym63S5KSk5OVnJw8EMMAAAADpLy8XOXl5ZI+X0JyMpaGmPLycl188cWKjo4OtCUkJKikpEQdHR0KDg6WJO3evVuTJ0+WJNntdsXFxamysjKw0LexsVFNTU2aMmXKSc+3dOlShYWFDdJoAADA1/XFSQafz6eVK1f22deyy0mdnZ168803dcMNN/Rqnz59usaMGaP8/Hzt27dPW7duVUVFhWbPnh3ok5qaqk2bNmn79u2qqalRQUGBEhMTuTMJAICziGUzMb/73e/U2dmpmTNn9mofMWKEli1bJrfbrYyMDIWHhyszMzMw6yJJKSkp8nq9KiwsDDzsLjs7e6iHAAAALBS0bdu2M36lbHt7u2bNmqXW1tZBuZzk8/nkcDgUE7NXNtuoAT8+YCq//5Dq6hIH7bsH4Mx27Pfrli1bFBoaetx2y+9OAgAAOBWEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkYZbdeIPPvhAxcXF8ng8GjFihJKSkvT4449Lkurr6+V2u+XxeORyuTRv3jylpKT02n/jxo3avHmz2tralJSUpKysLIWHh1swEgAAYAVLZmL+/Oc/68c//rEuvfRSPfvssyoqKtLMmTMlSV1dXcrNzZXD4VBxcbHmzp0rt9utXbt2BfYvKyvThg0btGDBAhUVFam9vV15eXlWDAUAAFjEkpmY9evX6+qrr9bdd98daJs4caIkaefOnWpubtaaNWsUEhKi2NhY7dmzR6WlpUpKSpIklZaWKi0tTTNmzJAk5eTkKD09XTU1NYqPjx/6AQEAgCE35DMx3d3dev/99xUREaHMzEzddtttys7OVm1trSSpurpaCQkJCgkJCewzbdo0VVVVSZI6OztVW1urqVOnBrZHRkYqIiJCHo9naAcDAAAsM+QhprW1VYcPH9Yvf/lLzZw5U8uXL9fYsWOVlZWltrY2eb1eOZ3OXvs4nU61tLRIknw+n/x+v1wuV599AADAmW/IQ4zf75ck/f3f/71uueUWTZo0SVlZWQoKCtKOHTu+dP+enp7BLhEAABhgyNfEOBwO2Ww2RUdH/7WI4cM1fvx4NTc3y+Vyqa6urtc+LS0tgdmZY/t7vd4++/Rl4cKFstvtkqTk5GQlJycPxJAAAMAAKS8vV3l5uaTPl5CczJCHmBEjRujCCy9UQ0NDoK27u1tNTU0aN26cQkJCVFJSoo6ODgUHB0uSdu/ercmTJ0uS7Ha74uLiVFlZGVjo29jYqKamJk2ZMuWk5166dKnCwsIGaWQAAODr+uIkg8/n08qVK/vsa8kt1rfffrt+/etf63/+539UX1+voqIiSdIVV1yh6dOna8yYMcrPz9e+ffu0detWVVRUaPbs2YH9U1NTtWnTJm3fvl01NTUqKChQYmIidyYBAHAWseQW6+uuu04tLS1at26dDh06pIsuukhPPvmkQkNDJUnLli2T2+1WRkaGwsPDlZmZGZh1kaSUlBR5vV4VFhYGHnaXnZ1txVAAAIBFgrZt23bGr5Rtb2/XrFmz1NraOiiXk3w+nxwOh2Ji9spmGzXgxwdM5fcfUl1d4qB99wCc2Y79ft2yZUtgouOLeHcSAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGCk4Vac9IUXXtCLL77Yq+3KK6/UkiVLJEn19fVyu93yeDxyuVyaN2+eUlJSevXfuHGjNm/erLa2NiUlJSkrK0vh4eFDNgYAAGAtS0KMJCUkJOjf//3fA5/tdrskqaurS7m5uYqPj1dxcbE8Ho/cbrfGjRunpKQkSVJZWZk2bNig3NxcRUZGqqioSHl5eVqxYoUlYwEAAEPPshAzfPjwE86c7Ny5U83NzVqzZo1CQkIUGxurPXv2qLS0NBBiSktLlZaWphkzZkiScnJylJ6erpqaGsXHxw/pOAAAgDUsWxNTW1ur2267TXPnzlVhYaEOHTokSaqurlZCQoJCQkICfadNm6aqqipJUmdnp2prazV16tTA9sjISEVERMjj8QztIAAAgGUsmYmZMmWKcnNzFRUVpaamJq1du1aPPPKICgsL5fV65XQ6e/V3Op1qaWmRJPl8Pvn9frlcrj77AACAM58lIWb69OmBP19wwQWaOHGi7rrrLn3wwQdfum9PT89glgYAAAxh2ZqYL4qKitLIkSPV2Ngol8ulurq6XttbWloCszMOh0M2m01er7fPPn1ZuHBhYAFxcnKykpOTB3AUAADg6yovL1d5ebmkz5eQnMxpEWI+/vhjtbW1KSIiQiNGjFBJSYk6OjoUHBwsSdq9e7cmT54s6fO7mOLi4lRZWRlY6NvY2KimpiZNmTLlpOdZunSpwsLCBncwAADglH1xksHn82nlypV99rUkxBQXF+vKK6/U2LFj1djYqOLiYl188cWaNGmSuru7NWbMGOXn52v+/PmqqqpSRUWFli9fHtg/NTVVRUVFmjRpksaPH69Vq1YpMTGRO5MAADiLWBJiPv74Yz3++OPy+XwaPXq0Lr/8ct17772y2Wyy2WxatmyZ3G63MjIyFB4erszMzMCsiySlpKTI6/WqsLAw8LC77OxsK4YCAAAsErRt27avvFK2vLxc1157bWBdyTFHjx5VRUXFabvGpL29XbNmzVJra+ugXE7y+XxyOByKidkrm23UgB8fMJXff0h1dYmD9t0DcGY79vt1y5YtCg0NPW57v54T88QTT6i9vf249s8++0xPPPHEqVcJAADQT/0KMT09PQoKCjquzePxaNQoZiAAAMDQ+UprYmbOnKmgoCAFBQUpLS3thH3uvPPOAS0MAADgZL5SiCkoKJAk/eQnP9G//du/aeTIkX89wPDhGjdunCIiIganQgAAgBP4SiHm2J1BGzdu1HnnnSebzbJXLgEAAEjq5y3WERERam1tVVVVlVpaWuT3+3ttT0lJGdDiAAAA+tKvEFNRUaEnnnhCQUFBcjgcvRb5BgUFEWIAAMCQ6VeIWbt2rebMmaO77rpLw4YNG6yaAAAAvlS/QozP59P1119PgAFwVjl8+PCXvogOOBvZ7Xade+65lp2/XyHmO9/5jt55550+b7MGgDPN4cOHFRUTpYN/OWh1KcBpJ3xsuBrqGiwLMv0KMaGhoXrhhRf0v//7v7rggguOm5G55557BrQ4ALBaZ2enDv7loMLuDVOQPejLdwDOEj2dPTq4/qA6OzvNCDHV1dWKj4/X4cOH5fF4em372yf5AsCZJMgepKBz+HsOOJ30K8Q89dRTg1UHAABAv/DUOgAAYKR+zcQsWLDgpJeNVqxY8bULAgAA+Cr6FWKOvX7gmK6uLn344Yfau3evbr311gEtDAAA4GT6FWLmz59/wvZNmzZp3759A1IQAADAVzEga2K+9a1vadu2bQNxKAAAgK/ka4eY7u5ulZeXy+l0DkQ9AAAAX0m/Lid973vf67Wwt6enRz6fT0FBQfqXf/mXAS8OAACgL/0KMX/7RF6bzSan06mLLrpIDodjQAsDAAA4mX6FmBtvvHGw6gAAAOiXfoUYSfr444/16quvqr6+XpIUExOjW2+9VePGjRvw4gAAAPrSr4W97733nubOnau9e/dq/PjxGj9+vPbs2aN58+bp/fffH6waAQAAjtOvmZjVq1drzpw5uvvuu3u1P/fccyouLtbll18+oMUBAAD0pV8zMfX19br++uuPa7/hhhsCl5cAAACGQr9CzHnnnXfCy0bvv/++zjvvvAErCgAA4Mv063LS3LlzVVBQoN///veaMmWKJMnj8eitt97iOTEAAGBI9SvEJCcna8KECdq8ebPeeOMN9fT0KCYmRitWrNDFF188WDUCAAAcp18h5p133tHw4cP16KOP9mp/7733tHPnTn3zm98c0OIAAAD60q81MatXr1ZPT8/xB7HZtHr16gErCgAA4Mv0K8Q0NjYqOjr6uPYJEybowIEDp1TAI488omuvvVa7du0KtNXX1+vhhx9WcnKy7rzzTm3duvW4/TZu3Kjbb79dN954oxYtWqSDBw+e0vkBAICZ+hViXC6Xamtrj2v/05/+pFGjRvX75GVlZTpy5Eivtq6uLuXm5srhcKi4uFhz586V2+3uFXLKysq0YcMGLViwQEVFRWpvb1deXl6/zw8AAMzVrxBzww03aMWKFdq+fbt8Pp98Pp/eeustPf3007rpppv6deKmpia98MILysnJ6dW+c+dONTc3KycnR7Gxsbr55ps1c+ZMlZaWBvqUlpYqLS1NM2bMUHx8vHJycrR3717V1NT0qwYAAGCufi3snT9/vvx+v5YsWaKuri5J0ogRI3THHXdo/vz5X/k4fr9fy5cv1z/+4z9q7NixvbZVV1crISFBISEhgbZp06Zp7dq1kqTOzk7V1tYqIyMjsD0yMlIRERHyeDyKj4/vz5AAAICh+hVihg0bpvvuu0/z5s1TQ0ODenp6NGHCBNnt9n6d9D//8z8VHBx8wtkbr9crp9PZq83pdKqlpUWS5PP55Pf75XK5+uwDAADOfP1+i7Uk2e12xcbGntIJ//znP6ukpETFxcWntP+J7o4CAABnn1MKMV9HVVWVDh48qO9///u92nNycnTttddq/Pjxqqur67WtpaUlMDvjcDhks9nk9Xr77NOXhQsXBmaNkpOTlZyc/HWHAwAABlB5ebnKy8slfb6E5GSGPMRcddVVuuiii3q13XPPPfrxj3+s6dOn64MPPlBJSYk6OjoUHBwsSdq9e7cmT54s6fNZoLi4OFVWViopKUnS57d+NzU1BV6F0JelS5cqLCxsEEYFAAAGwhcnGXw+n1auXNln3yEPMSNHjtTIkSOPa4+IiNDYsWPldDo1ZswY5efna/78+aqqqlJFRYWWL18e6JuamqqioiJNmjRJ48eP16pVq5SYmMiiXgAAziJDHmK+zIgRI7Rs2TK53W5lZGQoPDxcmZmZgVkXSUpJSZHX61VhYaHa2tqUlJSk7OxsC6sGAABD7bQIMdu2bev1OSYmRoWFhSfdJz09Xenp6YNZFgAAOI3162F3AAAApwtCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASMOtOOnGjRv1+uuvq7m5Weecc44uueQS3X///YqOjpYk1dfXy+12y+PxyOVyad68eUpJSTnuGJs3b1ZbW5uSkpKUlZWl8PBwK4YDAAAsYMlMTGRkpB566CE9//zzevLJJ2Wz2ZSbmytJ6urqUm5urhwOh4qLizV37ly53W7t2rUrsH9ZWZk2bNigBQsWqKioSO3t7crLy7NiKAAAwCKWzMRcc801vT7ffffduvfee3Xw4EFVVVWpublZa9asUUhIiGJjY7Vnzx6VlpYqKSlJklRaWqq0tDTNmDFDkpSTk6P09HTV1NQoPj5+qIcDAAAsYPmamCNHjuj1119XdHS0nE6nqqurlZCQoJCQkECfadOmqaqqSpLU2dmp2tpaTZ06NbA9MjJSERER8ng8Q14/AACwhiUzMZL0zjvvaPHixTpy5IgmTJig/Px82Ww2eb1eOZ3OXn2dTqdaWlokST6fT36/Xy6Xq88+AADgzGfZTMxll12mdevWacWKFZo4caJ++tOfqqur60v36+npGYLqAADA6c6ymZjg4GBFRUUpKipKCQkJuuWWW7Rz5065XC7V1dX16tvS0hKYnXE4HIEZm7769GXhwoWy2+2SpOTkZCUnJw/giAAAwNdVXl6u8vJySZ8vITkZy0LM3+rp6dGwYcOUkJCgkpISdXR0KDg4WJK0e/duTZ48WZJkt9sVFxenysrKwELfxsZGNTU1acqUKSc9x9KlSxUWFja4AwEAAKfsi5MMPp9PK1eu7LOvJSFm9erVuuqqqzR69Gh5vV698sorcjgcuuSSS3TOOedozJgxys/P1/z581VVVaWKigotX748sH9qaqqKioo0adIkjR8/XqtWrVJiYiJ3JgEAcBaxJMQ0Nzfr8ccfV2trqxwOhxITE/Xkk09q5MiRkqRly5bJ7XYrIyND4eHhyszMDMy6SFJKSoq8Xq8KCwsDD7vLzs62YigAAMAiloSYRx999KTbY2JiVFhYeNI+6enpSk9PH8iyAACAQSx/TgwAAMCpIMQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIw03IqT/vznP9dbb72l+vp6hYSEaPr06crIyJDT6Qz0qa+vl9vtlsfjkcvl0rx585SSktLrOBs3btTmzZvV1tampKQkZWVlKTw8fKiHAwAALGDJTMwf/vAH3XHHHVq9erWWLFmi/fv3a/HixYHtXV1dys3NlcPhUHFxsebOnSu3261du3YF+pSVlWnDhg1asGCBioqK1N7erry8PCuGAwAALGDJTMzy5ct7fX7wwQf14IMPqq2tTSNHjtTOnTvV3NysNfUwV5QAABKzSURBVGvWKCQkRLGxsdqzZ49KS0uVlJQkSSotLVVaWppmzJghScrJyVF6erpqamoUHx8/5GMCAABD67RYE9Pa2iq73a7g4GBJUnV1tRISEhQSEhLoM23aNFVVVUmSOjs7VVtbq6lTpwa2R0ZGKiIiQh6PZ2iLBwAAlrA8xHR2duqll15ScnKyhg0bJknyer291sdIktPpVEtLiyTJ5/PJ7/fL5XL12QcAAJzZLA0x3d3dWrp0qSTpBz/4wVfer6enZ7BKAgAAhrBkTYwk+f1+5efnq66uToWFhYFLSZLkcrlUV1fXq39LS0tgdsbhcMhms8nr9fbZ50QWLlwou90uSUpOTlZycvJADQcAAAyA8vJylZeXS/r8as3JWBJienp6VFBQII/Ho6efflphYWG9tickJKikpEQdHR2BcLN7925NnjxZkmS32xUXF6fKysrAQt/GxkY1NTVpypQpfZ536dKlx50LAACcPr44yeDz+bRy5co++1pyOcntduudd97RokWLJEkHDx7UwYMH1d3dLUmaPn26xowZo/z8fO3bt09bt25VRUWFZs+eHThGamqqNm3apO3bt6umpkYFBQVKTEzkziQAAM4SlszEbNmyRZL0wx/+sFf7K6+8ooiICI0YMULLli2T2+1WRkaGwsPDlZmZGZh1kaSUlBR5vV4VFhYGHnaXnZ09pOMAAADWsSTEbNu27Uv7xMTEqLCw8KR90tPTlZ6ePlBlAQAAg1h+izUAAMCpIMQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABhpuBUnfeutt/Tqq6/qgw8+UHt7u379619r2LBhge319fVyu93yeDxyuVyaN2+eUlJSeh1j48aN2rx5s9ra2pSUlKSsrCyFh4cP9VAAAIBFLJmJOXLkiKZNm6Y5c+Yct62rq0u5ublyOBwqLi7W3Llz5Xa7tWvXrkCfsrIybdiwQQsWLFBRUZHa29uVl5c3lEMAAAAWs2Qm5vrrr5ckVVZWHrdt586dam5u1po1axQSEqLY2Fjt2bNHpaWlSkpKkiSVlpYqLS1NM2bMkCTl5OQoPT1dNTU1io+PH7qBAAAAy5x2a2Kqq6uVkJCgkJCQQNu0adNUVVUlSers7FRtba2mTp0a2B4ZGamIiAh5PJ4hrxcAAFjjtAsxXq9XTqezV5vT6VRLS4skyefzye/3y+Vy9dkHAACc+U67EPNlenp6rC4BAACcBixZE3MyLpdLdXV1vdpaWloCszMOh0M2m01er7fPPn1ZuHCh7Ha7JCk5OVnJyckDWDkAAPi6ysvLVV5eLunzJSQnc9qFmISEBJWUlKijo0PBwcGSpN27d2vy5MmSJLvdrri4OFVWVgYW+jY2NqqpqUlTpkw56bGXLl2qsLCwwR0AAAA4ZV+cZPD5fFq5cmWffS25nOTz+VRTU6OGhgZJUk1NjWpqatTR0aHp06drzJgxys/P1759+7R161ZVVFRo9uzZgf1TU1O1adMmbd++XTU1NSooKFBiYiJ3JgEAcBaxZCZmx44dys/PD3y+//77JUlPPfWULrvsMi1btkxut1sZGRkKDw9XZmZmYNZFklJSUuT1elVYWBh42F12dvaQjwMAAFjHkhBz44036sYbb+xze0xMjAoLC096jPT0dKWnpw90aQAAwBDG3Z0EAAAgEWIAAIChCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQAAwEiEGAAAYCRCDAAAMBIhBgAAGIkQAwAAjESIAQAARiLEAAAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICRCDEAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYabnUBX8fGjRu1efNmtbW1KSkpSVlZWQoPD7e6LAAAMASMnYkpKyvThg0btGDBAhUVFam9vV15eXlWlwUAAIaIsSGmtLRUaWlpmjFjhuLj45WTk6O9e/eqpqbG6tJwGujo+K3VJQAYJEf3H7W6BJwmjAwxnZ2dqq2t1dSpUwNtkZGRioiIkMfjsbAynC46OrZbXQKAQdL15y6rS8BpwsgQ4/P55Pf75XK5erU7nU61tLRYVBUAABhKRi7s7enpOaX+Pp9vMMoJHLer62PZbG2Dcg70j9/fpq6uRqvLOOv5/e2SBu+7NxSO1e5v8yuoM8jiaiBJPZ098h/yW13GWa+nc3B/t37x2H393jcyxDgcDtlsNnm93l7tLS0tcjqdx/Xv6OiQJEVHRw9qXQcOXD+ox0f/tLX90uoS8P8N9ndvKBzacMjqEvAFnX/stLoE/H9D8f3u6OjQyJEjj2s3MsTY7XbFxcWpsrJSSUlJkqTGxkY1NTVpypQpx/UfPXq0SkpKFBwcrKAg/iUFAIAJenp61NHRodGjR59wu5EhRpJSU1NVVFSkSZMmafz48Vq1apUSExMVHx9/XF+bzaaxY8daUCUAAPg6TjQDc4yxISYlJUVer1eFhYWBh91lZ2dbXRYAABgiQdu2bevfKlnAQC+88IJ27dqlZ555xupSgLNGa2urlixZot///vdyOp36xS9+MeQ1LF++XN3d3Vq0aNGQnxuDz9iZGADA6e3VV1/VJ598ovXr1ys0NNTqcnAGIsQAAAZFY2OjJk2apKioKKtLwRmKEIPTUmZmphISEtTW1qaKigqFhYUpMzNTcXFxWr58uTwej+Li4vTII48oIiJCb7/9tl5++WXt379fISEhuvLKK3X//fcrODj4hMfv7u7Wiy++qLKyMrW3t2vSpEn60Y9+pLi4uCEeKXBmyszM1J49eyRJb7zxhpKTkzVv3jwVFRVp9+7dCg0N1dVXX62MjAyde+65kqQ777xTqamp8ng8eu+99xQREaF//dd/ld1uV0FBgfbv369vfOMbWrhwocLCwiRJr732mkpLS9XQ0CCHw6EbbrhB8+fP17Bhw05Y1+HDh1VcXKw333xTXV1duvTSS/XQQw8pIiJiaH4wGFBGPrEXZ4ctW7bo/PPP15o1a/Stb31Ly5YtU0FBgW6//XatXr1akrRq1SpJn7+K4q677tK6dev06KOPqrKyUi+++GKfx37xxRf17rvv6tFHH9XatWt1ySWX6Cc/+Yna29uHZGzAmW7x4sWaMWOGrrnmGm3atEkPPvigcnJyFBUVpdWrV2vJkiWqrq7Ws88+22u/kpISXX311Vq7dq2io6O1dOlSFRUVKSMjQ88884w++ugj/fznPw/07+np0Q9+8AM999xzevjhh/Xaa6/pv//7v/usy+12q6GhQfn5+Vq1apWcTqcWLlyo7u7uQftZYPAQYnDauuSSS3T77bdrwoQJmjdvnnw+n5KSkvTtb39bMTExuu222wL/0rv22mt1xRVXKDIyUt/4xjc0f/58vfXWWyc8bmdnp0pKSpSbm6vExERFRUXpvvvuU2hoqHbs2DGUQwTOWGFhYbLb7TrnnHMUHh6ut99+W6GhoXrggQcUExOjhIQEPfDAAyorK+sVIK6++mpdf/31io6O1pw5c1RfX69bb71Vl112meLj45WSkqLKyspA/1mzZikpKUnjx4/XN7/5TaWlpfX53W9qatKbb76pxx57TBdddJFiYmKUlZWlxsZG3rtnKC4n4bQVGxsb+POx92Sdf/75vdp8Pp+6u7tVX1+v9evX64MPPtChQ4fU3d3d57+sGhoadOTIEf3whz/s1d7Z2akDBw4M/EAAaN++faqtrdVNN93Uq/3o0aP65JNPNG7cOEnSBRdcENjW1/e+tbU18PkPf/iDXnzxRe3fv19tbW3q7u7Weeed12cNXV1d+t73vter/ciRIzpw4IAuvfTSrzVGDD1CDE5bw4f/9f+ex560fKI2SVq0aJHi4uK0aNEiOZ1O7d27V08++eQJj3vsNRSFhYXHPURp1KhRA1Y/gL/q6OhQYmKisrKyjtv2xaexfpXvvd//+XuTPvvsM+Xm5uqaa67R3XffrVGjRuk3v/mNXn/99T5rOOecc7Ru3brjtp3olTU4/RFiYLy2tjYdOHBAeXl5gSc2v/nmm332nzhxokaMGKFPP/1UF1100RBVCZzd4uLitGPHDo0dO1Z2u31AjllfX6+2tjZlZGQE/kHS3NzcZ//4+HgdPnxYR44c6TXjA3OxJgbGCw4O1qhRo7RlyxYdOHBAFRUVJ13YFxoaqtTUVD311FP67W9/q8bGRv3xj3/U2rVrtW/fviGsHDh7XHfddRo+fLjy8vJUXV2thoYG7dix47iFvf1x3nnnafjw4Xr11Vd14MAB/epXv9Lbb7/dZ/+YmBhdffXVWrx4sd577z01NjZqz549evrpp3tdooI5mImB8YYNG6ZFixbpmWeeUVlZmS6++GLdfffdKigo6HOf+++/X2FhYSouLtYnn3wil8ulyy67TA6HYwgrB84eISEheuqpp1RcXKzs7Gx1d3crMjJSycnJp3xMl8ulrKwsrV+/Xi+//LIuv/xyzZkzR6+++mqf+zzyyCNat26dCgoK1NraqjFjxujv/u7vArd5wyy8dgAAABiJy0kAAMBIhBgAAGAkQgwAADASIQYAABiJEAMAAIxEiAEAAEYixAAAACMRYgAAgJEIMQDOeHfccUefLwUEYC5eOwBgyHz88cfasGGD3n//fXm9XrlcLsXFxSk1NVXTp0+3ujwAhiHEABgSdXV1+tGPfqTzzz9fDz/8sKKjo3Xo0CF98MEHWrVq1WkdYo4ePaoRI0ZYXQaAv0GIATAkCgsLNWHCBBUWFiooKCjQnpCQoO9+97uBz7t27dKaNWu0f/9+nXfeebrttts0e/ZsSVJTU5PmzJmjn/70p3r55Ze1f/9+XXTRRcrNzdW4ceMkfR44VqxYod/85jcaNWqU7rvvvuNqOXDggIqKirR7926Fhobq6quvVkZGRuAlgHfeeaduvfVWVVVV6b333tPdd9+t73//+4P54wFwClgTA2DQtba2qrKyUrfffnuvAHPMsba6ujo99thjuuWWW/T888/rhz/8oV566SVVVFT06v/CCy/on//5n7Vq1SodOXJEK1euDGzbuHGj3nnnHS1evFhLly7V1q1b5fP5AtuPHj2qnJwcRUVFafXq1VqyZImqq6v17LPP9jrHL37xC02fPl3PPfecZs6cOZA/DgADhBADYNA1NDSop6dH0dHRgbYPP/xQN910U+C/vXv36pVXXtGsWbN08803KzIyUt/+9reVlpam1157rdfx0tPTNXXqVMXGxur222/Xnj17Atv+67/+S/Pnz9fll1+u+Ph4/fjHP1ZnZ2dge0VFhUJDQ/XAAw8oJiZGCQkJeuCBB1RWVqbu7u5AvyuuuEKzZs1SZGSkxo4dO4g/HQCnistJACwRHR2tdevWqbu7W/Pnz5ff79e+ffv04Ycf6le/+lWgX3d3t8aMGdNr3wsuuCDw5/DwcPl8PnV3d6ujo0Ner1cJCQmB7TExMQoJCQl83rdvn2pra3XTTTf1OubRo0f1ySefBC5LxcfHD+h4AQw8QgyAQRcVFaWgoCDV1dUFwsGIESMUFRXVa/ajo6NDd9xxh1JSUnrtP2zYsF6fhw//619dJ7s8dSIdHR1KTExUVlbWcdtGjx4d+POx9TEATl+EGACDzuFw6LLLLtN//Md/6JprrpHNduIr2XFxcaqvr1dUVNQpnWfkyJFyuVyqqqrShRdeKOnzdTafffZZr3Ps2LFDY8eOld1uP6XzADg9sCYGwJB46KGH1NDQoMzMTL377rtqaGjQhx9+qF/+8peSJJvNpu9///t69913tX79eu3fv1/79u3T66+/rldfffUrn+e73/2uXnrpJe3atUs1NTUqLCzsFVauu+46DR8+XHl5eaqurlZDQ4N27Nhx3MJeAKc/ZmIADImJEydqzZo1eumll/Tkk0/K6/UqNDRUCQkJWrx4sRITEyVJBQUFWr9+vUpKSmS323XBBRdozpw5X/k86enp+stf/qJHHnlEI0eO1L333qv6+vrA9pCQED311FMqLi5Wdna2uru7FRkZqeTk5AEfM4DBFbRt27Yeq4sAAADoLy4nAQAAIxFiAACAkQgxAADASIQYAABgJEIMAAAwEiEGAAAYiRADAACMRIgBAABGIsQAAAAjEWIAAICR/h9WMOilNAZHXAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "# your code here- 2nd way\n" + "# your code here- 2nd way\n", + "\n", + "sns.countplot(x='Gender',data=titanic);\n", + "\n", + "# sns.barplot(x=titanic['Gender'].value_counts().index,y=titanic['Gender'].value_counts())" ] }, { @@ -201,11 +890,24 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 208, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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AJb453/+Z/3iF7/QF198oQkTJqiwsFDR0dH64osvdMstt1zUYxw9elQ/+clPdPjwYZ08eVK9vb3q7e2NnH/ggQf0wx/+ULfeeqsyMzM1f/58ORwOORwOzZ8/X48++qiysrJ066236o477oi8DQXADEQMAEt8/etf14MPPqjo6Gi53W5JUlNT06AeY8WKFUpOTtaKFSvkdDp18OBBvfTSS5Hz3/3ud/W1r31Ne/bs0Xvvvac33nhD69atU2Jiop5++ml5vV7t3btXb7/9tt58801t2LBBDodjSNcJYPjw6SQAlpg0aZISEhIiASNJiYmJGjdunOrr6y94fUdHhz777DPl5+crPT1dM2fO1IkTJ/qNS0pK0l//9V9r/fr1crlc2r17d+RcWlqalixZok2bNqmzs1P/+Z//OTSLAzAi2IkBMGpcc801euihh/Tqq68qKipKN9xwg44dO6ZwONzvO2QmTpyoSZMmadu2bXrooYd06NAh/fKXv4ycP336tDZs2KA77rhD1157rY4ePar29nbNmDFDra2t+pd/+Rfddtttcrvd+u1vf6vu7m4lJiaO9JIBXAYiBsCosmTJEknSK6+8okAgoPj4eBUUFPQbN2bMGK1YsUKvvvqqamtrddNNN2nJkiVas2aNJMlms8nv9+u5555TR0eHpkyZovz8fM2bN08nTpzQkSNHtH37dnV2dio+Pl7FxcW64YYbRnStAC5P1K5du8JWTwIAAGCwuCcGAAAYiYgBAABGImIAAICRiBgAAGAkIgYAABiJiAEAAEYiYgAAgJGIGAAAYCQiBgAAGImIAQAARvp/9R5MqeiG9dQAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "titanic.head()\n", + "sns.countplot(x='Pclass',data=titanic);" ] }, { @@ -217,11 +919,34 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 216, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 216, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "# your code here\n" + "# your code here\n", + "fig,ax = plt.subplots(figsize=(3,5))\n", + "sns.boxplot(y='Age',data=titanic,ax=ax)" ] }, { @@ -237,7 +962,8 @@ "metadata": {}, "outputs": [], "source": [ - "# your comment here\n" + "# your comment here\n", + "# The mean of the age is below 30. 50% of the population aged between 20 to 40. " ] }, { @@ -249,11 +975,23 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 220, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "#your code here\n" + "#your code here\n", + "sns.distplot(a=titanic['Age'],bins=[0,16,32,48,64,80]);" ] }, { @@ -269,7 +1007,8 @@ "metadata": {}, "outputs": [], "source": [ - "#your comment here\n" + "#your comment here\n", + "# The distribution of the age is almost symmetric." ] }, { @@ -283,20 +1022,56 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 227, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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aaox3H6w9aA8Pk/YNo/Po7qWusFIFhJAXUsdzwiAmLO8e9iGDRv0r//6r2HbvvjFL+qHP/yhJOnEiRMqKytTQ0ODMjIydP/992vevHlh+2/atEmVlZXq6upSQUGBVqxYobFjx1qdVADAXxROLtSepj19tk+fMF3//cf/ls/rC21zO93Ky8wbzOTBxvIy8+R2unlGAMRUTFpasrKy9Oqrr4b+/3//7/+VJHm9XpWUlCg9PV3r16/XkiVLVFZWptra2tB3t23bpo0bN+qRRx5ReXm5uru79eSTT8YimQCAvyidXapRyaPCto1KHqVfLfiV8jPzlepKlTPJqVRXqvIz81WUXRSnlMJuirKLeEYAxFxMBuK7XC7DlpHq6mq1tbXppZdeUlpamq677jodOHBAVVVVKigokCRVVVVpwYIFmjVrliRp1apVWrx4sY4eParrr78+FskFgGEvLTlNrStaDWcP2710NzNDwZTb6eYZARBzMQlajh07pqKiIo0cOVIFBQX65je/qU996lM6fPiwsrKylJaWFtp3xowZevnllyVJPT09OnbsmJYtWxb6fNKkScrMzFRDQwNBCwDEUFpymtbdua7PdrfTrUW5i7Qod1EcUoVEwDMCINYsD1pycnJUUlKiyZMnq6WlRS+//LK+//3va+3atWpvb9eYMWPC9h8zZoxOnz4tSers7JTf71dGRobpPgAAAACGF8uDlsLCwtB/f+Yzn9G1116rb3zjGzpy5MglvxsIBAZ83scff1zJycmSpLlz52ru3LkDPhYAAACA/tu+fbu2b98u6ULvKavFfHHJyZMna9SoUWpublZGRoaOHz8e9vnp06dDrS/p6elyOBxqb2833cfM008/rdGjR1ubeAAAAACX1LvRoLOzU88//7ylx4/5Oi2tra3q6upSZmamsrKy9Lvf/U5nz54Nfb5//35lZ2dLkpKTkzVlyhTV1X0yt3tzc7NaWlqUk5MT66QCAAAAsCHLW1rWr1+vL37xixo/fryam5u1fv16TZs2TVOnTpXP59O4ceO0evVqPfDAA2psbNRbb72lZ555JvT9u+++W+Xl5Zo6daomTpyoF154QdOnT2cQPgAAADBMWR60tLa26oknnlBnZ6euuOIKzZw5U9/85jflcDjkcDhUWlqqsrIyLVu2TGPHjtXy5ctD0x1L0rx589Te3q61a9eGFpdcuXKl1ckEAAAAkCCSdu3aNfDR7zbQ3d2t+fPnq6OjgzEtAAAAQJx1dnYqPT1dW7du1ciRIy05ZszHtAAAAADA5SBoAQAAAGBrBC0AAAAAbI2gBQAAAICtEbQAAAAAsDWCFgAAAAC2RtACAAAAwNYIWgAAAADYGkELAAAAAFsjaAEAAABgawQtAAAAAGyNoAUAAACArRG0AAAAALA1ghYAAAAAtkbQAgAAAMDWCFoAAAAA2BpBCwAAAABbI2gBAAAAYGsELQAAAABsjaAFAAAAgK0RtAAAAACwNYIWAAAAALZG0AIAAADA1ghaAAAAANgaQQsAAAAAWyNoAQAAAGBrBC0AAAAAbI2gBQAAAICtEbQAAAAAsDWCFgAAAAC2RtACAAAAwNYIWgAAAADYGkELAAAAAFsjaAEAAABgawQtAAAAAGyNoAUAAACArRG0AAAAALA1ghYAAAAAtkbQAgAAAMDWCFoAAAAA2BpBCwAAAABbI2gBAAAAYGsELQAAAABsjaAFAAAAgK3FPGj5/ve/ry9/+cuqra0NbTtx4oS+853vaO7cubrvvvv0xhtv9Pnepk2bdO+99+qOO+7Q9773PZ06dSrWSQUAAABgQzENWrZt26bz58+HbfN6vSopKVF6errWr1+vJUuWqKysLCyo2bZtmzZu3KhHHnlE5eXl6u7u1pNPPhnLpAIAAACwqZgFLS0tLdqwYYNWrVoVtr26ulptbW1atWqVrrvuOn31q1/V7bffrqqqqtA+VVVVWrBggWbNmqXrr79eq1at0sGDB3X06NFYJRcAAACATcUkaPH7/XrmmWe0dOlSjR8/Puyzw4cPKysrS2lpaaFtM2bMUGNjoySpp6dHx44dU35+fujzSZMmKTMzUw0NDbFILgAAAAAbi0nQ8u///u8aMWKE7rzzzj6ftbe3a8yYMWHbxowZo9OnT0uSOjs75ff7lZGRYboPAAAAgOHDZfUB//jHP6qiokLr168f0PcDgcCAvvf4448rOTlZkjR37lzNnTt3QMcBAAAAEJ3t27dr+/btki70nLKa5UFLY2OjTp06pUWLFoVtX7Vqlb785S9r4sSJOn78eNhnp0+fDrW+pKeny+FwqL293XQfI08//bRGjx5t0VUAAAAA6K/ejQadnZ16/vnnLT2+5UHLLbfcor/6q78K2/Y3f/M3+u53v6vCwkIdOXJEFRUVOnv2rEaMGCFJ2r9/v7KzsyVJycnJmjJliurq6lRQUCBJam5uVktLi3JycqxOLgAAAACbszxoGTVqlEaNGtVne2ZmpsaPH68xY8Zo3LhxWr16tR544AE1Njbqrbfe0jPPPBPa9+6771Z5ebmmTp2qiRMn6oUXXtD06dN1/fXXW51cAAAAADZnedByKW63W6WlpSorK9OyZcs0duxYLV++PNSqIknz5s1Te3u71q5dq66uLhUUFGjlypWDnVQAAAAANpC0a9eugY18t4nu7m7Nnz9fHR0djGkBAAAA4qyzs1Pp6enaunWrRo4cackxY7a4JAAAAABYgaAFAAAAgK0RtAAAAACwNYIWAAAAALZG0AIAAADA1ghaAAAAANgaQQsAAAAAWyNoAQAAAGBrBC0AAAAAbI2gBQAAAICtEbQAAAAAsDWCFgAAAAC2RtACAAAAwNYIWgAAAADYGkELAAAAAFsjaAEAAABgawQtAAAAAGyNoAUAAACArRG0AAAAALA1ghYAAAAAtkbQAgAAAMDWCFoAAAAA2BpBCwAAAABbI2gBAAAAYGsELQAAAABsjaAFAAAAgK0RtAAAAACwNYIWAAAAALZG0AIAAADA1ghaAAAAANgaQQsAAAAAWyNoAQAAAGBrBC0AAAAAbI2gBQAAAICtEbQAAAAAsDWCFgAAAAC2RtACAAAAwNYIWgAAAADYGkELAAAAAFsjaAEAAABgawQtAAAAAGyNoAUAAACArRG0AAAAALA1ghYAAAAAtuay+oCbNm3Sm2++qba2NqWkpCg3N1cPPfSQrr76aknSiRMnVFZWpoaGBmVkZOj+++/XvHnz+hyjsrJSXV1dKigo0IoVKzR27FirkwoAAAAgAVje0jJp0iQ9+uij+vnPf65nn31WDodDJSUlkiSv16uSkhKlp6dr/fr1WrJkicrKylRbWxv6/rZt27Rx40Y98sgjKi8vV3d3t5588kmrkwkAAAAgQVje0vKlL30p7N8PPvigvvnNb+rUqVNqbGxUW1ubXnrpJaWlpem6667TgQMHVFVVpYKCAklSVVWVFixYoFmzZkmSVq1apcWLF+vo0aO6/vrrrU4uAAAAAJuL6ZiW8+fP680339TVV1+tMWPG6PDhw8rKylJaWlponxkzZqixsVGS1NPTo2PHjik/Pz/0+aRJk5SZmamGhoZYJhUAAACATVne0iJJ7733np566imdP39eV111lVavXi2Hw6H29naNGTMmbN8xY8bo9OnTkqTOzk75/X5lZGSY7gMAAABgeIlJ0JKXl6ef/OQnOnXqlCoqKvRP//RP+vGPf3zJ7wUCgQGf8/HHH1dycrIkae7cuZo7d+6AjwUAAACg/7Zv367t27dLutB7ymoxCVpGjBihyZMna/LkycrKytJf//Vfq7q6WhkZGTp+/HjYvqdPnw61vqSnp4daZMz2MfP0009r9OjR1l4IAAAAgEvq3WjQ2dmp559/3tLjD8o6LYFAQE6nU1lZWfrd736ns2fPhj7bv3+/srOzJUnJycmaMmWK6urqQp83NzerpaVFOTk5g5FUAAAAADZjeUvLiy++qFtuuUVXXHGF2tvb9corryg9PV25ublKSUnRuHHjtHr1aj3wwANqbGzUW2+9pWeeeSb0/bvvvlvl5eWaOnWqJk6cqBdeeEHTp09n5jAAAABgmLI8aGlra9MTTzyhjo4Opaena/r06Xr22Wc1atQoSVJpaanKysq0bNkyjR07VsuXLw9NdyxJ8+bNU3t7u9auXRtaXHLlypVWJxMAAABAgkjatWvXwEe/20B3d7fmz5+vjo4OxrQAAAAAcdbZ2an09HRt3bpVI0eOtOSYgzKmBQAAAAAGiqAFAAAAgK0RtAAAAACwNYIWAAAAALZG0AIAAADA1ghaAAAAANgaQQsAAAAAWyNoAQAAAGBrBC0AAAAAbI2gBQAAAICtEbQAAAAAsDVXvBMAYHjz+DyqbKxUXUud8jLzVJRdJLfTPSjniOe5geGMdw9AtJJ27doViHciLkd3d7fmz5+vjo4OjR49Ot7JAWwtnj/iRueWpNs23Kb9Lfvl8XnkdrqVn5mv3Ut3m6Yr2mvw+DyG59ixZIfmbJwT1bkHcs3RXp8dDfXCn5XXN9TzygqR3gtJluTfUHn3gETV2dmp9PR0bd26VSNHjrTkmLS0AMOE0Y/4uup1g/Ijbnbuh2c+rP0t+3XOe06S5PP6tL9lvyobK7Uod5El11DZWGl4jpKdJVGdeyDMzm3lOWItns/NYLDy+oZ6XlnF7L2oOFSh5/c+b0n+DYV3D0A4xrQAw0TvH3FfwKdz3nOhH/F4nXvLoS3y+Dxh+3p8HtW11Fl2DXUtdYbnqGmqiercA2F2bivPEWvxfG4Gg5XXN9Tzyipm78WWQ1ssy7+h8O4BCEfQAgwT8fwRNzu3ktSnBtXtdCsvMy+q40S6hrzMPMNzFE4ujOrcA2F2bivPEWtDvfBn5fUN9byyitl7oSRZln9D4d0DEI6gBRgm4vkjbnbu4pxi5WfmK9WVKmeSU6muVOVn5ofGu/T3OJGuoSi7yPAcpbNLozr3QJid28pzxNpQL/xZeX1DPa+sYvZeFOcUW5Z/Q+HdAxCOgfjAMBHPgalWDbwd6DUwe9jADfUBzVZe31DPKytZNTFHtOfgPgCDIxYD8QlagGHEbrOHURBJDEM9z5k9zD7IP2BoIGgxQNACAAAA2AdTHgOAhWj9Qbzx7ABA/xC0ABiWrFpTg7U5MFA8OwDQf8weBmBYsmpNDdbmwEDx7ABA/xG0ABiWrFpTg7U5MFA8OwDQfwQtAIYlq9bUYG0ODBTPDgD0H0ELgGHJqsXnWMQOA8WzAwD9x0B8AMOS2+nW7qW7L3vmJquOg+GHZwcA+o91WgAAAABYJhbrtNA9DAAAAICtEbQAAAAAsDWCFgAAAAC2xkB8AIPC4/Mw4HgYMbrfkix7BuL5PPEsA8DgI2gBEHMen0e3bbhN+1v2y+PzyO10a131Ou1eupvC3hBkdL/X7lmrgAI60Hrgsp+BeD5PPMsAEB90DwMQc5WNldrfsl/nvOfkC/h0zntO+1v2q7KxMt5JQwwY3e/a5lrta95nyTMQz+eJZxkA4oOgBUDM1bXUyePzhG3z+Dyqa6mLU4riz+PzaHP9ZpXsKNHm+s198ieR02N0v71+r7x+b59zDuQZiOfzxLNsP7F+l+z2rgLDFd3DAMRcXmae3E63fF5faJvb6VZeZl4cUxU/dutiZHV6jO63y3Hh58bj/6TAN9BnIJ7PE8+yvcT6XbLbuwoMZ7S0AIi5ouwi5WfmK9WVKmeSU6muVOVn5ocGZw83dutiZHV6jO53wcQCzZg4w5JnIJ7PE8+yvcT6XbLbuwoMZ7S0AIg5t9Ot3Ut3M+PSX0TqYrQod1HCp8fsfkvWzB4Wz+eJZ9leYv0u2e1dBYYzghYAg8LtdGtR7iJ+6GW/LkaxSI/Z/bbqGYjn88SzbB+xfpfs9q4CwxndwwBgkNmti5Hd0gP0V6yfXd4NwD5oaQFgikX0+ifafHI73dqxZIdKdpaopqlGhZMLVTq71LKBw9Hes2CXp4pDFdpyaIuUJBXnFF92WqxKnx3PYZUzPWf6PAdpyWnxTlbCiHV3PboDAvaRtGvXrkC8E3E5uru7NX/+fHV0dGj06NHxTg4wZBjNmpOfmc+sORcZSD7FKm8v57iDcb+HyjmscqbnjCY8O0FdPV2hbaOSR6l1RSuBC4CE1tnZqfT0dG3dulUjR4605Jh0DwNgiFlz+mcg+RSrvL2c4w7G/R4q57BKyc6SsIBFkrp6ulSysyROKQIA+7I8aPnlL3+pb33rW7rzzju1YMECrV69WqdPnw7b58SJE/rOd76juXPn6r777tMbb7zR5zibNm3SvffeqzvuuEPf+973dOrUKauTCiACFtHrn4HkU6zy9nKOOxj3e6icwyo1TTVRbQeA4czyoKW+vl7FxcV68cUX9cMf/lB/+MMf9NRTT4U+93q9KikpUXp6utavX68lS5aorKxMtbW1oX22bdumjRs36pFHHlF5ebm6u7v15JNPWp1UABEEZ83pjVlz+hpIPsUqby/nuINxv4fKOaxSOLkwqu0AMJxZHrQ888wz+spXvqJrrrlG2dnZ+va3v639+/erq+tCE3h1dbXa2tq0atUqXXfddfrqV7+q22+/XVVVVaFjVFVVacGCBZo1a5auv/56rVq1SgcPHtTRo0etTi4AE8ya0z8DyadY5e3lHHcw7vdQOYdVSmeXalTyqLBto5JHqXR2aZxSBAD2FfPZwzo6OpScnKwRI0ZIkg4fPqysrCylpX0yyHDGjBl6+eWXJUk9PT06duyYli1bFvp80qRJyszMVENDg66//vpYJxmAmDWnvwaST7HK28s57mDc76FyDqukJaepdUUrs4cBQD/ENGjp6enRL37xC82dO1dOp1OS1N7erjFjxoTtN2bMmNC4l87OTvn9fmVkZJjuA2BwsIhe/wwkn2KVt5dz3MG430PlHFZJS07TujvXxTsZAGB7MZs9zOfz6emnn5Yk/d3f/V2/vxcIJPQMzAAAAAAsFpOWFr/fr9WrV+v48eNau3ZtqGuYJGVkZOj48eNh+58+fTrU+pKeni6Hw6H29nbTfYw8/vjjSk5OliTNnTtXc+fOtepyAAAAAESwfft2bd++XdKF3lZWszxoCQQCWrNmjRoaGvTjH/+4z4KPWVlZqqio0NmzZ0PBzP79+5WdnS1JSk5O1pQpU1RXV6eCggJJUnNzs1paWpSTk2N63qeffprFJQEAAIA46N1o0NnZqeeff97S41vePaysrEzvvfeevve970mSTp06pVOnTsnn80mSCgsLNW7cOK1evVoffPCB3njjDb311lu65557Qse4++679eqrr+qdd97R0aNHtWbNGk2fPp1B+AAAAMAwZHlLy9atWyVJf//3fx+2/ZVXXlFmZqbcbrdKS0tVVlamZcuWaezYsVq+fHmoVUWS5s2bp/b2dq1du1ZdXV0qKCjQypUrrU4qAAAAgASQtGvXroQe+d7d3a358+ero6OD7mEAAABAnHV2dio9PV1bt27VyJEjLTlmzGYPAwAAAAArELQAAAAAsDWCFgAAAAC2RtACAAAAwNYIWgAAAADYGkELAAAAAFsjaAEAAABgawQtAAAAAGyNoAUAAACArRG0AAAAALA1ghYAAAAAtuaKdwIAAJ/w+DyqbKxUXUud8jLzVJRdJLfTbbodl4+87R/yCUA8EbQAgE14fB7dtuE27W/ZL4/PI7fTrXXV67RjyQ7N2Tinz/bdS3dTaLxMZnlO3oYjnwDEG93DAMAmKhsrtb9lv855z8kX8Omc95z2t+xXyc4Sw+2VjZXxTnLCM8tz8jYc+QQg3ghaAMAm6lrq5PF5wrZ5fB7VNNUYbq9rqRvM5A1JZnlO3oYjnwDEG0ELANhEXmZen642bqdbhZMLDbfnZeYNZvKGJLM8J2/DkU8A4o2gBQBsoii7SPmZ+Up1pcqZ5FSqK1X5mfkqnV1quL0ouyjeSU54ZnlO3oYjnwDEGwPxAcAm3E63di/dbThDk9l2XB7ytn/IJwDxlrRr165AvBNxObq7uzV//nx1dHRo9OjR8U4OAEDRT4/LdLqJjfsHoLfOzk6lp6dr69atGjlypCXHpKUFCY91LSBZW2iK57MzFK4j2ulxmU43sXH/AAwGghYkNNa1gGRtoSmeBbChch29p8eVJJ/XF5oed1HuosveH/bC/QMwGBiIj4TGuhaQrF1DIp7rUQyV64h2etzhOJ2ux+fR5vrNKtlRos31m/tcvx2ZpXk43j8Ag4+gBQmNdS0gWVtoimcBbKhcR7TT4w636XSDrWBLX1uqNe+u0dLXluq2DbfZOnCJlObcK3PlD/jD9vcH/Mq9MjdOqQUwFBG0IKGxrgUkawu98SxAD5XriHZ63OE2nW4iri6fiGkGMLQQtCChsa4FJGsLvfEsQA+V6whOj7vhaxv02Bce04avbYg4liba/RNdInanipTm+rZ6JSkp7LMkJam+rX4wkwhgiGMgPhIa61pAsnYNiXg+O0PlOoLnX5S7qN8DsaPdP5EFW8F8Xl9om91bgi+V5mRXcmggfvDfdr4eAImHdVoAABhERjO75Wfm27p1KVKaJSXc9QCILdZpAQATg7EmyVBfE2ioX59dxLsVLCia+3qpNNvhegAMbbS0AJeBwpw9DEbNtdk5jNYEikUtc6wDiqF+fQM592Cw0wKgtI4AsAotLYCNsAq0fQzG4nZm5+i9JlCszj0Yi6gO9euL9tyJts9npY4AACAASURBVJhotFgQEkCiYfYwYICYAtQ+BmM2pniuCTQYi6gO9euL9tyJtphotBJxBjMAwxtBCzBA/Ojbx2CsSRLPNYEGI6AY6tcX7bkTbTHRaA23BT0BJD6CFmCA+NG3j8FYkySeawINRkAx1K8v2nMn2mKi0RpuC3oCSHwMxAcGiIGs9jKUZw8brEHyQ/36ojl3vMa0DObfECYSARArsRiIT9ACXAZ+9DFYhvp0xMweltj3DwB6I2gxQNACAAAA2AdTHgMIsbKGltpeRHKm54xKdpaopqlGhZMLVTq7VGnJafFOFgBgGCFoARKQles7sN4MIjnTc0YTnp2grp4uSdKepj36Wd3P1LqilcAFADBomD0MSEBWru/AejOIpGRnSShgCerq6VLJzpI4pQgAMBwRtAAJyMr1HVhvBpHUNNVEtR0AgFigexiQgILrO/i8vtC2ga7vYOWx7GoojNmJ1zUUTi7UnqY9htuBoKHwjgGwN2YPAxKQles7WH0suxVc4r0WhhVidQ39uV8Xj2mRpFHJowY8psWOz8hgGMrXPRTeMQDWYvYwAJIutITsXrrbkkKQVcfy+Dya9fNZqm2uldfvlcvh0to9a/X2g2/HdT2R3mN2JMnn9YXG7CzKXRTz81shFtfQ3wkY0pLT1Lqi1ZLZwzw+j279+a3a17wv9Iw8t+c5vfPgO0O6cDvUJ7sYCu8YAPsjaAESlNvp1qLcRZYUCqw4VsWhClU3VSugC423Hr9H1U3VqjhUoYXTFsat0BZpzI4dC1RGwV0sriGagmZacprW3bluYBfUS8WhCtU01YQ9IzVNNao4VKHF0xdf9vHtwOj+Rcrr4OeJ3AKTaO8YgMQUk6Dl7bff1n/8x3/oyJEj6u7u1o4dO+R0OkOfnzhxQmVlZWpoaFBGRobuv/9+zZs3L+wYmzZtUmVlpbq6ulRQUKAVK1Zo7NixsUguAAtsadgSKowGBRTQloYtcjlccauJTaQxO2Y18g/PfNjya4hHQXPLIZNn5NCWIRG0mN2/W66+xTCva5trta56XcK3wCTSOwYgccVk9rDz589rxowZ+vrXv97nM6/Xq5KSEqWnp2v9+vVasmSJysrKVFtbG9pn27Zt2rhxox555BGVl5eru7tbTz75ZCySCsAqZqPjAvGdoawou0j5mflKdaXKmeRUqitV+Zn5Ksouivm5o2U2/bQky68hWNDsLeYFzaQotycYs/t33nfeMK/Pe88PienGE+kdA5C4YtLS8pWvfEWSVFfXt0BSXV2ttrY2vfTSS0pLS9N1112nAwcOqKqqSgUFBZKkqqoqLViwQLNmzZIkrVq1SosXL9bRo0d1/fXXxyLJAC5T8bRi/frIr8Nq0pOUpOJpxXI5XHGribVy/E+smQV39W31ll9DUXZRn1r+WBc0i3OK9evfGTwjOcUxO+dgMrt/Ka4U5Wfm98nrFGfKkOhWlUjvGIDENehjWg4fPqysrCylpX0yiHPGjBl6+eWXJUk9PT06duyYli1bFvp80qRJyszMVENDA0ELYFMLpy3UP9f8c9gg6xkTZ2jhtIWSNOgF5N6sHP8TS5G62Vh9DfEoaC6ctlDlNeVhkzUUTCwIPSOJzuz+FUws0P+7/f8ZjnUZKt2qEuUdA5C4Bj1oaW9v15gxY8K2jRkzRqdPn5Z0YYo0v9+vjIwM030A2I/b6dY7D75jWgimJvbSBrv1Y7ALmm6nW28/+PaQfQ4i3T+jvI5HaxcAJCrbzR4WCCT0sjHAsBapEExN7KUNh242Q/k5iPb+DYf7DQBWGfSgJSMjQ8ePHw/bdvr06VDrS3p6uhwOh9rb2033MfL4448rOTlZkjR37lzNnTvX4pQDSFRDeWE/2Eu0QVm0+1v5LPNeALDS9u3btX37dkkXhntYbdCDlqysLFVUVOjs2bMaMWKEJGn//v3Kzs6WJCUnJ2vKlCmqq6sLDcxvbm5WS0uLcnJyTI/79NNPa/To0bG/AAAJJZEW9kuktGLwWfl88KwBsFrvRoPOzk49//zzlh4/JlMed3Z26ujRo2pqapIkHT16VEePHtXZs2dVWFiocePGafXq1frggw/0xhtv6K233tI999wT+v7dd9+tV199Ve+8846OHj2qNWvWaPr06QzCB4Ygj8+jzfWbVbKjRJvrN/eZTelymU1DG2la2Vinycq0RhLtdVi5f7zyMBI7pikaVj4fVj9rABBrMWlpeffdd7V69erQvx966CFJ0nPPPae8vDyVlpaqrKxMy5Yt09ixY7V8+fJQq4okzZs3T+3t7Vq7dm1occmVK1fGIqkA4mgwanujXUQxnjXQVi74GO11WLm/JNvV4nt8Ht3681vDZrd7bs9zeufBdwYlTVZ0xbLy+WAVewCJJiZByx133KE77rjD9PNrrrlGa9eujXiMxYsXa/HixF8hGRiKrOoL37u2V5J8Xl+otteqglO0q3UPRpqsSmsklY2V2te8T+d95yVduI59zftMryPa6460v6S45aGZikMVqmmqCa0R4/F7VNNUo4pDFVo8Pba/NVYFwlY+H6xiDyDRxKR7GIChK1gAW/raUq15d42WvrZUt224bUBdbSLV9lol2tW6ByNNZu6aepdcjvC6JJfDpbum3hX1sWpP1oYClqDzvvOqPVlruH+01x1p/3jmoZkth7aELWopSQEFtOXQlpif26quWFauPM8q9gASje2mPAZgb1a2RAxGba/b6daOJTtUsrNENU01KpxcqNLZpXI73YYtRvGsgX79yOuGhf3Xj7wedd5eHLBcanu0132p/c0+i9uMVUnm22OdJqu6Ylk5RXKkYw2VWcWGynUAuICgBeiFH7lLs7Iv/GAsrufxeTT7F7NDq7DXNteqpqlGO+/fqdt/cXufMQ5v3f+W8jPzB5ymi5+hu6bepdePvN6vZ6qupU5evzdsm9fvHVDeprhSotoebStPpP2D3Z8uzsO7pt4Vt7EuxTnF+vXvfh3W2pKkJBVlFcU8TVYGwpGmSDb7+2W23ehYQ2VWsaFyHQA+QdAC/AU/cv0z0AKYWcEp1ovrVRyqUHVTddhYhuqmaq38r5WGYxyqDlcNuAba6BlyOVzy+Dzy+r2XfKasLNwWTCxQqis11CImSamuVBVMLDDcP1IrT1F2UZ/rvlSr0I4lO7TqN6u0/dh2paem66GCh1R1uCpuY10WTluo8pryUPDqcrhUMLFATofTNE13Tb2rTwtdWnJaxPMYPSNWBueRAhOjv187luzQnI1z+v13bbDGdEVbQRTt/vEcm5ZoqKxDoiBoAf6CH7n+GUgB7FIBYTSL653pORNVQXJLg/FYhsrDlYbbNx/arMXTFw+oBtroGertUs+UlYXbaI9l1spTe7K2z3HWVa/TLdfcYtoqVJRdpNt/cXtYULj0taXKHJUZFkRJ0jnvOdU218b8HXM73Xr7wbf7FM5+sOsHhsFXzYc1+tvX/1ZdPV2SpD1Ne/Szup+pdUWr6fMW6RmJNjg3KkhKMp0BzezvV8nOkqj+rg3GrGJWz2xnlFfMjtY/VNYhkRC0AH/Bj1z/DKR1xKqA8EzPGU14dkJUBcmL4pKQiwvPQSf/fDLqawi2RKzds1bnvcZjRoIiPVMDydtIXX+iOZZZK89533nDWchmTppp2ioUnLmsd1AYUEAtXS2G575UnlnFKEA2u+6GPzWEnrOgrp4ulews0bo71xke/1LPSH+ZFSSXFSwznQGtvq3e8O/Xng/3GAaKe0/uNXwGB2NMl5Uz2xVlG3fve3jmw3I5XPL5PrkOl8PF7GgXobIOiYTZw4C/CP5Y98YUoMaChb/SOaValLsolG9mi/fVtdSpx9sTdoweb0/Us0mV7CwxLUiaKZ5WrKSLRmEnKUmfGfMZw/0njZpkuN0sqK09WRuaTa13NzQzl3qmzPLWSHDtkSVVS7T6f1ZrSdUS3frzW0PpjOZYZrNJuRwuw1nIXEku09mnjFptJJnmTYrTeJzNYDC77o/Pfmy4f/WH1abHqm2uNQ0Qoplxz2y2sfKactMZ0Mz+fplNvHCo7ZDh9sGYVaymqcbwmappqjHcP1KFklleBbtj9uZ2ugc0E99QZseZ/gAzBC3AXzAF6OWJNBVy1rgs+eUP298vv7LGZUV1jvc+fC+q7dKFsQyFkwvldriVpCS5HW4VTi7Uw4UPG+6/IGeB4fZIhcJgoeniQd6prlSNSh6lFGdKTJ6p4NojHr9HAQXCat6jFWyZ2fC1DXrsC49pw9c2aPfS3YbBhyR5A17D/YNB2cWD9CXJmeSUKyl8e4ozRQWTjMfZDAaz675ixBWG+2eMyDA9llmL0aG2Q1FNeWxWkOw432F84iTzv19uh3GgeursKcPtZvlhZVehho8aotoeqULJLK+qGqsMuy++fuT1y0j50ENlHRIJ3cOAvxiMQeFDWaRuBu+ffN/wO++ffF8P5D3Q73P0+Hqi2i5duK/BPv+976tZwd6osC2ZjxFJcaX0KTQlKUk3T75Zyz+3PKrZw6IVae2RgSyYaNR9KtIsZGbjkYqyi1T2Xpn2ntwbSl+SkkKTAARrwoPddeJdMWB0HTnjc/TmsTf77JszPsf0OGYtRqfOnoqq66lZF625U+bq6KmjfYLj4pxi079fK/9rpd5v7vv+fe6qz5leR7TjzKLVfrY9qu2XGp9llFfBqax7s0N3X7sNeh+MGRwBqxC0AL3E+sfaTg63HFbeT/J03ndeKc4U1f1tnbIyswb8oxqpm0GkoCUayY7kqLYHGd3X+rZ6OZOc8gU+Kew4k5yqb6s3PYZRobCysbJPoSnFlaLln1seOl/MnqkIa49Y5cYJNypJSX0KyjdOuDFy0pKS5ExyyhvwyiGHPpPxGf3XN/5Ld/zbHRcltX+JjXYChstVOLlQKc6UsG5MKc4UFU4uNP1OwaQCw+987qrP6WDbwX6PEzErSK6es1rvn3y/zwxoC6ctDB3z4metdHapflb3s7BulaOSR6l0dmn0mWKRm6+6WdUn+3azu/mqmw33j1ShZJZXxTnF2n5se1zWWzJjx0HvVNYhkRC0AMPQ4ZbDyn4xO/Tv877zyn4xWwf/9qCWvblsQD+qkQbwnvGc0Z6mPX2+E6kAaOTzV39ee5v3Gm6PNtjKHpcdFrBIki/gU/a4bJNvGBcKB1pTaUWNq9naI8U5xVEdx2qVjZU60HpA3sCF7jl++fXhnz/UD/77B6prrZPHfyG49fg9qmutu+Sg3wFNwHCZBnJfzb5TOrtUe0/u7fexIhUkjWZAi/TcpCWnqXVF66AGfJcykEDKrELJLK8k6fm9z9uqBcGug96HU2UdElvSrl27Io8atbnu7m7Nnz9fHR0dGj16dLyTAySE1B+mGg7QTVLShXVF/J+0mKS6UrXhaxsu+YNmVIuYn5mv3Ut3y+PzhBU6pQuFlGgLnRcXXoPH+XD5h7pz052G5zYr0H37P7+t599/vs/2h296WOVfLe93mqSBrTlhllfRBC4en0ezfj6rT8372w++bVlNacmOEv3of34UNibJIYdWfXGVSucYFzJLdpRozbtr+rRizZw0U3tP7u2z/bEvPGZ6LEl6dNuj+nHNj/tsf6TwEdOZvKwwkMDSrEVosFuK7G4w8sNuXbHM3otLPf9AIurs7FR6erq2bt2qkSNHWnJMWlqAYchsRqHgYO7e+tsPPFLtsNvptqS216zW+PUjr0eswTQqvJjNVGS2/VLXHk1NpVU1rgOpeY9WXmaekl3JYbNiJbuSI3azMWt1K5xcqLrWuqi77Fh5r4xEs2L8pY7TeyHHutY67T25t88Cj8Htw3ktjLTktJgGnJL9WhAGYzppYCgjaAGGoYv73UcSzY9qpEKCVYUUt9OtL1z9BaW500KFgEhTKput42B2/T1+80H9VrFyTaBYF8zi2U0qqHByoSXdC41EGmcgyXT1eaPtVi3wGEyXnVoJhpJ45S2D3oHLQ9ACDEN1f1sXNqbFSJKSlOJKsexH1YqCQqRF94ymVM69Mte0IDn5U5MNz5HsjDyo3wqJVOM6kIG6kb4zkEG/sRxMbrbQYcWhij5jItZVr+vTatI7yDELRmuaaqIKUq0esG327g3HwCieg+EZ9A5cHoIWYBjKysxS47LG0OxhF3M73Jr32Xn6eu7XDX9Uoy0EWVVQMAtAzBb88/q9piuFp6ekG37n5snGMxhZKVKNq1lf/8EoYFrVTUqKPHA62mNZNZjc6PpqT9YaLnS4+dDmqFtNrOoWZ+WAbbN3L1LwNZQL0fEeDG+3LmtAIiFoAYaprMwsnfv+OdNB4VuKtxgWXgZSCLKqoGBWk/2b3//GcP+qxip9/YavGxYkb558s/a17OvznZsm3WRp4GD2nd41rp8e82m9sPcFZazO0BnPmdBsYMFZsowmGgjmrcfnsWRA82DVQA80+Iqme6HROSQZXl9w7ZiLNf+5OepWk6e+/JRhMPrUl57Sz+p+FvYdl8Olu6beZZhWK7sPmrUkDaTL2lBgZd4CGFwELcAwF22XhYH027eqoGBWk52eatxqElwp3KggOSpllBxy9JkV62DrQX1727f7TK/74fIPdce/3RE2U9faPWsjztR1qUBgUe4izf70bI1/drzpNXf1dOm+V+8zzNtNv91kmNaBTAU8GDXQgxEYmZ3j4ZkPG17fuLRxhseZ+KmJqv+oPqpWE7N3qbKx0njV9sNVhl3QHp75sGXdB81akvZ8uGdYFt4TqWsmgHCOeCcAQPwFC9Clc0q1KHdRxALkQPrtBwsKF58zLzNPHp9Hm+s3q2RHiTbXb+5zjN6KsouUn5mvVFeqnElOpbpSlZ+Zr4dveth4/6xPWjU2fG2DHvvCY9rwtQ3avXS3CiYWKNkVPn4l2ZWsho8awsZOSBcCh0X/vkjVTdXy+D2hWdaqm6pVcahCZ3rO6NFtj+rzP/m8Ht32qM70nJEUHgj4Aj6d854LBQJBc345x/R6gw62HjTM2/KacsO0luwsCe3T37yNFFiaMbtuM8Fa/975sa95X1h+XMzsGjrOdujOX96pyc9O1p2/vFMdZztC5zDK8y2Hthhen0MOpbpSw7anOlN1bfq1GjtirNwOd2if4GQCN064Uc4kp6QLU9beOOHGiOO+6lrq5PV7w7Z5/V5tadjSJ63vn3xfXr/X8Dnvz9o/F+eV2YQTY0eMNX0nrRTNMzgYzP6GMBgesD9aWgBEZSD99u+aepdcjvA/Ny6HS3dMuSOqmnezmuyKQxWGq7Y7Hc7Q9/q7KGT72XbD6645WRN2fOnCFNGv1L+ih/7zIcPWjv60MB07dcw8s//ihitv0Mnfnwzb5gv4dPrcaeO0/iWAjCZvo11scyALPprV+teerI1qQPqvF/1aE8omyB+40Ep2suukxq4Zq1OPnTLNcyXJ8Lm9J/se7fzDzrD9e/w9eqn2JfkCPjmSHMr8VKZ+NOdHWjhtoTw+j+rb6kN55Qv4wsZN3frzW7WveV+oNe65Pc/p/xT+H8NzK6A+s955/B49/tbj+t9v/69eP/K6YetnNN3fPjf5c4b3IntcttrPtYel9VLBV7TiOejdDIPhgcRFSwuAqJjVVJbOLjWtwXz9yOuGBckf/PcPLtkScTGjVqH6tnrDfc22B4+zY8kOfWvGtzRz0kx9a8a3tGPJDt18lfFA/IzUDMPtjR81mrZ2RGphCpoydoppGqULs2Tdk32P4WefHvNpw+2Fkwv71crTW7RroZTsLInYymPErNbfbLvZNcz55ZxQwBLkD/h136v3meZ5cU6x4fPpcrj6PJv+gF89/h75Aj55/B6dOntKLodLbqdbJTtL1O3pDtu/29Otkp0lqjhUcSFg7NUaV9NUY9pyUjytOBRY9/ZR90d6/cjrhq2fwUBg6WtLtebdNVr62lLdtuE2VRyqMMyrxj81GuZtj69HSUoK23bxvy9XtM/gYImmZXmw2K1FCrAjghYkvKHyx97sOqLdbuW5jZgV9tOS0wy3B9dRMeoeE6lLWTRyr8yNanvwPHM2ztFL+17S3pN79dK+lzRn4xw99aWnNCp5VNi+o5JH6fFbHzcs5DmSjP+M1jTVqCi7SHkT8uR2uJWkJLkdbuVNyAurzd7xjR2G358xYYYeKXxErState1/txnuk+JMMUxr6ezSqLt71TbXRrV9IAs+prhSTLcbPYNm12DWOnWw9aBpni+cttCwm2B9W32fZ/NivfMt0nVvObTFsDWuqrHK8NwLpy3U+JF9xzP5A37T+2Ta/a3BuPvbqbOnDI9zvOO46lrrwgKsutY6SwOKgXQ5HI7MAtFE/S0DYoXuYUhodux+MBDRzshl5XSl0eZhsLAfzarfVq+QbgWzgedvHnvTcHpdt9Otl/e9HNadZsbEGZo5aabK95b3OX5w4UOjQmxv40aN00crPtKcX87RsVPH9JmMz+jbM7+t35/+/SetBiYV4C6ny3Qq4GgHHEe7gONAFnwsmFigVFdqKM8lKdWVqhsn3Gg6eN7oGqaMnaIDrQf6HH/6hOmSzPPcqJugUT5drHe+RbruP3b80fgASeZT3f5ozo/04GsPyuP/pIAa6T6Zdn8LGHd/+9xVn9OB1gNhrVkpzhQ5HI6YD8Rn0Hv/xHsaZiBR0NKChGbX7gfRMruO3jNy9Wf7QK472jyMNq2VjZUD6lIWjfq2+j4tHo4kR8TuYZFqgYPT6773t+9p3Z3rlJacJrfTrXcefEcb79mof/jiP2jjPRv1zoPvaPWc1aatHZWNlTrQeiCsNvtA64E+eTtu1DjVPVSnU/9wSiOTR+qR7Y+E1bjek3WPYStPcU6xYVql6Accl84uNb0OK/aPlCZJhs+OJMP9d3xjh2F+/GrBr/qV571bdbx+r/Im5IWdY1TyKKU4UwzzrXR2qUa6R4ade6R7pEpnl6o4p9j0PplZOG2hbpp0U7/vk2n3t2nG3d9KZ5dqxsQZYdtnTJyh4pzimA/EZ9B7/9AiBfQPLS1IaHUtdX0GsvZ4ey5ZWzjQtSJiJdoZuaJdYXsg5zY71kBX/bZyhfSL5WXmyeVwyef7pEbX5XBFLIBFqgU2ez6MasvdTrdpa0e0eWtW4+pyuHTz5JvDplsumFighdMWml5ftHkb7QKOA1nw0SxNP9j1A8N8qm+rN9xfurCeTm1zrfwBvxxJDhVMLOhXnhu1LN444Ub95K6fqL6tPjRxhNkgeLfTrdwrc/X+yfflC/jkTHIq98pcuZ1uLZy2UOU15TG9T2YTSCyctlALpy3s9zsmqc90y1YHFAx67x9apID+IWhBQsu9MtewK0julbmmBc9I3aEkWfIDG21QFG33qUjdqgZybrMCv9Gx8jLz5Exyhs005UxyXrKrl1n3GLPt0QjOTta7C0xw8T4zZoW/u6beFXWXQ7OFD6MtjJgVuOvb6vX2g29H/WxGm7dm12G22GY0Cz5GSpNZPmWNy9J3t39X249tV3pKurLGZUm68I7+tu23ocH4/oBfv237bcRV6YN5bhQYHmg9IJfDpdI5n7QSmeVbsCWn9+xhwZacRbmLtPP+nYZdC6PNk0iBc6RAIJp3bDACCrNz263iKJ7M/hbRIgWEI2hBQuvx9hgGLWd6zpgWPM1qsysOVRgu9BbtOJGBjLMx+9EqnV2qvSf39nv7QArcd029S26nO6zA73a6Tacj/vWiX8sbuGhQfcCrf7z1Hw3TNBg/vFWHq3TGE75GyBnPGVUdrtLi6YsNvxOcUODiAubrR163rH95tIURO9a4DmRq42gZTYntlFMPv/Fw2ExdS19bquf3Pq8vffpLpq0pZqvSB/P8chc6jfT9ouwi03FdVv4NsSLQl6ypMBiIoTIW0Sq0SAH9Q9CChGY0AFqSSv+nVM1dzVGtzr7l0BZLCquXGlRpVsMYbfcps5W3o72G14+8bjizV+/piHsfa8l/LDGcbvaf3vmnAf3wRmoR6++xzGZt2nJoi2nQYjahwC1X32JZ1zuzwCja4HUgwahVIk1tHG0rixmjKbHPes/KL3+fffc179Pnr/q8aXAXqTvU5vrNavyoUY4kR1hLodvp1hnPGZXsKLnks5Z7Za7h8597ZW5o8cxgBYDP6wstnmnl35BYi3UryED/Rg5l8QoggURC0IKE1vTnJsPtbV1tpgVPs9psJcmSwuqlamIjdU0zEk23qoHUIkc7RuVg60HD49Q01UT84TUqiEjGC+JFmh1N6tuFz3R5iQjLTpgVnGZOmmlZa4dZYBTt4pnxLMQOZGrjaBlNiW0UsEgXumOlOFOUn5lv2ppy8XPYu2Y/2DobnK7a7XTL5XDpxdoX5fV7LysgjHbxTDOX2xp0OQajFSTS9d019S7lvZinD05/IJ/fpxRXyrBohRmOgRoQLYIWJLTJn5qs1u7WPtvHjxyvlu4Ww4JnUXaRntvzXJ+VoItzirX92HbD75j16Tcb82FW6DWria04VKF/rvnnPitpv/PgO1H9cF2qe1E06TUbo3LDlTfoZFf46uzShYHRZswKQg/PfNiwMN57JrLe28268D1U8JB+/btfh7W2BGdtMisMmBWcUlwpunHCjZasFD6QmnergtFIoikgDWRq42jPYTSuyiGHYeDiTHKqYFKBnvjSEyrZWaLqpmplpGYoZ1xOaKa6i89zcdAnSW6HW/M+O0/Xpl+rF2tfDLtHkQLCAy0HDFv1DrQc0FnvWcPrM9tuJp7dBAcjQDa7vtwrc3Xj+ht1tP1oaHvvWQiHaisE3eWA/iFoQUJ79OZH9cBrD/TZ/oNZP9BL+14Km8Wn96J+RtOS3pN1T5/A4cYJN+qOKXcY9un/cPmHmvtvc/sEGm/d/5ZpLfD3dn7PsCb2lfpXVN1UHdrm8XtU3VStikMVEbs3XVwojDSGwuyHcceSHcqbkNcnr8zGzRRPK9b232/vk55IQYtZQWjLoS2Gs7+ZtfJsaTDuwhdQQCPdI9Xl+aQbUlYzIwAAIABJREFU00j3SM3/7HzTwoBpN5/xuXr7j2/LH/AroEDYPtF2ZYtU8x5sQenPsaKZ6SzSzFfBa4imgPTUl55S+d7ysHxwJDn01JeeihjM9z6Hy+HSP+76R92ddbeyrsjS5kObVd9Wr+kTputXC351YVyVI3xc1QjXCClJfVafv3b0tar5sEb/uOsfdaLzROhZePPYm0p537hW3ijo8wf8yh6XfeGZ84U/g+e9500DwovvZ+/tZuu0mK7fYsDj88jr92rsiLH6qPsj+QP+Pu+xVTXyRscaaIAcTbrM/k55/d6wgCXonPfcoLQyxUu8uwMOBlqSYAWCFiS0e3Pu1ZO7n9TvT/9e0oXg46ZJN2lR7iK98P4L8vq9Ciggr98b6n5S2VgZWglaUmgl6KrDVfIH/PIFfAooIF/AJ3/Ar+/v+r5hn/6F/75QNU01oVpXj/9Cl6qqw1Wm4xjMCjyH2g4Zbt9cv1n3ZN1jeCyzgqfZuJLN9ZsNfxirDlcZ1hybdVX6wa4fKElJfVo1Dv/psOl9MisI+eU3PPdNk24ybOVRwLgLX1VjVdjifNKF+2E2LifSejZ7PtwTdl99AZ9qmmr0ym9f0Qvvv2AYpJp1ZTO73zs/2Kmq56v0h9N/kC/gk8vh0to9a7Xz/p2a/YvZYQFkcLtR64/RWBeXwxUq+DqTnFr+5nJdO+Za3Tz55gFNNPDmsTf7BBRuh1uv/e41PbztYcMB+n3O4fPpf0/9r9a8uybs2Ce7TmrsmrFaP299n+Ck29utdV9Zp9J3S9XS3RLa/kHHB3qu+rk+z410IXAItsi5HK7Qcxuckrj38+RIcij3ytzQ34jeAgrot62/1eb6zX0KVxdPGNB7u8Nk6TOz7VJ4YS73ylyV15SrrvXCVO5Oh1MTRk3Qj+b8KDRtcqSAM5qCocfn0a0/v7XP8/z3N/296ZidSNcQTSBs9reluMJ4PRuHHEN6+t94dgccDLQkwSoELUhYHp9Ht//idn1w+oOw7Y4kh16pf0XvN78f2hZQQO83v69Nv92kw386bPgD8Ur9K9p7cm9omz/g196Te/XxmY8Nz19zssawsLP50OawFpva5lpVN1VH7Op18cxXQSc6Thi28pTfWR6x4Gk0rsR0AoKGLaHF+CSFLcZndKy8zDwlO5PDCrHJzuQBrYlybfq1hvvfNOkm7T25t28XvmnFevPYm32mZ/bLb9iiUd1UbVoYCAanvQUU0G9+/xvD7cGa4YuD1FW/WWXaBSzFlWJ4ffta9oWnye/RnqY9euw3j4V1xQpu39KwxTCgrjpc1ec56M0X8Kmlu0Ut3S2qbqrWT/f9VMsKlum896K8+kvLwh1T7tB9r96ng60HQ60gtc3GrUWrdqwyHaCf5k7rk+9m/AG/Hn/rccMg5NHfPKoUZ3geGu3XW4+3R6t+s0ofnfko9OzMmDhDOeNywvLd4/do7Z61ummicQvhfx79T/3m97/R8jeXa+KoiTreeVznvOeU6ko13N/r9+qe7Hv02pHXwrYnKUnF04oNW6XcTrc+/9PPa1/zPsPr8vv9au1qVU1TTWgNFrP3vii7yDAIeefBd+Txefqcu+pwlWGlS/6E/Ij5a2QgLQUen0fvnnhXNU01OuM5c2F6cpMxaOmp6bpjyh16dNujhmsCmQVr0XTrjWfh2Y6zBlppOLQkYXAQtCBhBccL9P6xDyigfc379MO3f2j4nXXV67Ti8ysMaxIbPmow/M6fzvzJcLvbYfwj19TZZFi4rThUoTM9xsGJ32886Lipq8mwYFheUx5Vzdyfuv6kTfWbwmZMkiK3Xpgdy2yK5IGsieKQwzBA2Hdyn2EXvvmfnW9Y63/V6KsMz5uRmmFaGHj7j28bfufiAn3QiY4ThmnddnSbYaG+pqlG08ZPMzyWmV8d/JXh9ufee04H2g6E/h0MqP/t4L+FjdO4lG5vt2pbag2vY/KoyRq7Zmzo3TjZdVIZP8rQkhuWGB7LaCyZdKGl6ruf/26ffI/kT2eN3zHJvDuWGafDqeau5j7vnzPJ2Wff95vfj9h1q8ffEwr6gi5uEQo61n5MFYcqDD+7/drbDSsfVs9erdrm2ojX4wv49ML7L1xyZjuv32sYhGw8sFGPbn+0z7lvu+Y2w+dgxwc7TMfsmHVVrW2u7fMcnvOeU22z8QQEZtNor5271nBs2urZq3XV2qsMW/XMWp23/X/bDL/z4fIPdeemO21V6z/U12kZ6i1JGDzmbdaAzRnNOCRdqPFs7mo2/M4H7R8YbpdkGlBcXHgOumniTYYFa6lvbXBw+t3qk9Uy0tHTYbj94i5PQafPne7zA2tWM/enrj9p/LPjdbzjeNj2VGdqaIxKf48lmU+R/PqR1w33l6SOsx3qOt91YTYgZ4q+ccM3tGPJDu0+bjxr2n8c+Y9QF76AAqEufN/f9f2+3Yg83Tp++rjhcXLG5eiGK28I3ZckJemGK29QUXaR3jvxnuF32rrbDLd/fNa4xc0sqG34qEGbD202/MzMqZ5Txsf6k3FAfakCr5F3T7xruP2Jt5/oE8wHFNAvfvuLqI4/dsRYFWUXKT8zX6muVNP3J1ZGJY8yfP8uXlsoyOz+RevNo2+GBTe9z33nK3eatkr1h9fv1f6W/TrvO2/6rppN+/3Dd35oeG6zZ+riio2gSMGjWaBvtt1sGu26ljrdPPlmuR1uJSlJbodbN0++WQdaD5jmX+9afF/AFxq4f9+r9xl+575X7zPcP1KX0VgLdpfb8LUNeuwLj2nD1zYMqa5TwZak3oZSSxIGD0ELEorH59Hm+s0q2VGiM54zhrWnLoerT5eSoGRnsurb6g0/m/SpSYbbZ06eqWRHcvhxHMlaPH2xZk6aGUqDM8mpmZNmavLoycaJT5L+fO7PxtdlEJwkKUnXjL7GcP8pGVNChUJnklOprlTTmrk5v5xjeIwrR12p3Ut3a+G0hf0+lhS51sxIMGj67Ue/lcfv0RnvGf1k/090689vVeufjWvrP+7+2LDm9s2jbxoWzFq6WwzvUc6VOapt/qRlIaCA9p7cq+aOZtPAtsffY7jdbApeR5Lxn9H2s+060HrA8LNo+fwmBUmTQmGkQMEsEG4/2x59wgxMu3JaaH2ab834lgonFSpzZKbpOyldCKAvJanX/8w4k5y65epbokrvpbqb9ZdZYV+Sjp06ZrjdrNXGSHBmO9N31SRb2s8Z39fuHuNzj0kZY7jdrKujJNN7a7bdbLrs90++r7cffFsb79mof/jiP2jjPRv19oNvmwbnNU01pn+PzKZmP9h6MKq/X4MlOGtg6ZxSLcpdNGQCFklhlRj9+Y0BzBC0IGEEB/MtfW2p1ry7Ri/te8nwhzTFmaL8icb9sm+48gblXplrOvjbyMKchcqfmB9W+5c/MV/3ZN0jR5JDjiRHaM0HR5JDC7IXGLbAFOcUa84U4wDCyEj3SM26ZpbhZ9PGTwsVCmdOmqlvzfiWdizZYfhDZ1Zgau5sDnVFiKaWL9paM7OgaV/LPk341ATDz674/9u797goy7x/4J85gRyUgyAnDxGo4AGVUTSftCxL3axVFF3dLPOprCcfYpNsXbfnte62qSuyZuhamx20MPHUPvpotpa7agkqionAKqwBAio2MIgcBmbm9we/mRjmuoGREWbg8369/MN77rnva+ZiZq7vfV/X9+vRV7hddGcNAPq594OLskXQonTBruxdVncPAGDQu4MQ4CE+t6fKU7hdyphA8d/auJBxku21latcPPjr31s8LW5a2DS4KdyEj0kN+t1U4v1t0UvZC+OCx5nr07x/7n2cLTuLyvpKDPQaiDDvMOHzIvwi2jy2h8oDj93/GD548gP0cekj3CekTwjmDJtjU5sH9Blg0/53I8xX/LpDeosvcAzsM9Bqwb9KoYI6SC35WY0bFif83pG68OGuchdu7+/V32rdTi9lL6iD1ML9AUAdrLYKUFwVrlAHi58jlS47JiRGOHhvbX+p76OogCjhc6IConjVv5N19ztJ1HkYtJDTEE0DEF2p1Ol10NaJp1u5KF0kB5LNF+43d+DKAeFgYH/efuEUJqVcKZziMG/4PIwPGd/u19tgaIBcLhfeQYgOjjYPCs+UnsH7597H1B1ThYufpQZMDcYGBGwIQI2uxqarfE8OeRJKmeWASilTSq5pkQqaAOChQQ9Z3amQy+SYNWSWcH+fXj7C7XqjXjhl7WypuE8B6zS3Jm8++Kbk3RNbjA0eK7nuyVYNRvHdkerGauH2kQEjEe4bLnxMJRO3ydtFfIW9PVpePRV9VourijFj8Azh8xMmJGB8yHjhnVOT6oZqfPXvr/DqkVdx7vlzwn3Sn0uXzO4luurvofRAxpIMq/6WQYaXo19u1x2gtniqPHH06aPwdLEMhj1dPJG+JF3495/5QibGBY8TXpmW+qyavl9afu88EvqIsF3D+w0XBhrzh8+3+ap4bGQsooOiLZ4THRQt+Zw1j64Rvh9rHl1j8/5SV/E/n/O58Dmfz/mcV/27QHe+k0SdhwvxyWmIpgGI6Aw6yak/5XfKsT93v/Cx0tvWBRMBoOx2GbLLs61SJO/O2S2cZpB9MxtfP/O1MFNQ3q08q3TBUur19earlS0XaAJoNYtQ88w4hxccRvBG8dQ307zwd2a802Z7TPbn7beohwI0DSj35+03ZzhqnpUnzDdMcppUo6ER1169hgkfTUDZ7TIE9Q5C+nPpOF58HO+de89iHr2rwhX9vfrj/I3zVsfR1muFfRHkGYSKevH0mMuay8LtH134CCqZCvXG9i0AF7UHAPJu5WF04Gh8WfCl1WPt/RswkZp6pK3Topeyl9VUupaphS3OLZcBgsNV6iqF+5vu2NTqLQskyiCDUq7Efd73YdbQWVAHq9ss3OmmcsOEkAkWKZ3VQWosHLkQT4Q/gamfTkW+Jh8GgwE6vQ56QUOrddXYdHYTShNKrf5ugryCkH0zGwqZwuI9U8gUWBazDNX11fj80udoMDRgYv+J2BO3B15uXtC8rrHKmubl5oWkaUlY+fVKnCw8icKqQtQ11iHMJwxKuRIXb140p5XupeyFRmMjGvQNkMvkcFG4IMgzCNPDp2Pd1HVwd3HHjeU3hJmspM4tlbpcikqhwvHnjls9Z1/uPvTKtPwb6aXshQUjFuDHmh8t+mJM4BjMGz5P+Dlu69y2tLe19+Nu9pc6t9RzbH1vicgxMGghpyFKCyklyDNImN0oqHeQ5NoEqecEeAbg/HXLgWmDvgEGg0GYhSzSL9KibkfWjSycKT2Dfy7+Z9NrkKsk1020NNRvKP746B+FtVJaDgrrG+vx51N/xpvH3kSRtgiNhkZzkFOaUIqwlDBhZe6W88tN6UAzSzNR21iLQm0h5JAjbngc5g2fh905u4Vt3XVpF1JOp1jVGGktaPqu6DsM2TzEHAQVaYswZPMQXI2/CgUsr7rr9DpMC52Gg5cPWmUXGhc8DhduXLDKEvbmpDex5MAS4bmlAoFcTa5wuxRvV29o67RWQUj5nXKE+4jvdkgFLD6uPsIgy0XugnqDdRDV26U3qqqrbGrvkL5DcPHmRavt/h7+uFNpfeeyZbBiYrq7WFxVDHWw2iottihrmzpIjd899DurgWSNrgYByQHCqXwi6deaApTCBOvMX1LnHhM4BpvPbEa9vh4N+gacLD6JGakz8M/F4mQQQNNguWVA36BvwIMfPmguPmqEERF+EUiYkIDsm9mSg2DRsUzbF49ebP58mwbipivTLbMrtZauV/Sc2MhYbEzfaFU81lRMtznT36XUuVtja3ubvx/tSUEs9f61dm6p59zN6yOirseghZyG6cc3oySjzavU/h7+wgKI84fPx7dF3wqfIzX1yDS/vGVtkIFe4rnip0tOt3oXJOHLBGGWIZHdl3bjP6P/U1grpeXAzAijVe0Y07mPFx/HC9EvYNPpTVbnaD5f3LRuqHndEZP/vfy/ePf0u+jn3k/Y1pLbJThfZpnqOaMkA98UfoOBHgNRdMc6w9el8ktWU5+qG5oKd9boLbO5GWHEsiPLrI5hhBGjA0cLp6zNHzEfmhoNEr9OFLbZFn1d++LHeusMYiG9Q/CD9ger7duyttl8Dn93f2HQ4qnyRH29ddBS11DX7oG+yUvql/DK4Vestg/tOxQ/VP5g07EAcepSqYHyk0OexCPbH8HZ0rPQG/U4U3oGGSUZ8HL1sul1ePfyxq3qW5j66VQUaAoQ5huGo08fhZ+nn2T6WADCejrbL2zHiwdftEj17LveF5rXNXB3cbcaTKddSsOZ0jPmv3O9UW9eKL5m6hqbCzxO/miyVaB//LmmdNwtjwNAshZLa3cKRGv49uftb7U+k4hU3RMp7Skq2HIfpVyJN4+9iVkRs6AOUvMuCBGZMWghp6FSqLAsZhky/5YpmQHJRFOjgYfKw2Iak4fKA7MjZmNXtjgNrVQK0CJtkbAuiYvCRTgYOFt2ttWc9IO8B7U7aBFdEQcs8/rXN9ZbZMdqyXTuNY+uwYdZH1qkATXNCzcNtHZe3ImzpWeF76+pBs5S9VJhm4wGo/D92HVpF9xd3QFBsiKptRonik4It0vZlb1LcsqarSl7pUgNqtOvpQu3342CCvH6nzq9uBaLLTVaTL7I+0K4/auCr2w+FtC0BiO3PNeqerzwbyF7FzJKfkr7rTfqkVGSIbmwXkqjoRH+G/zN/79w4wL8N/ijfHk5/Dz9hNN/Vn29SlhP54/H/yi8Yzp/z3xU6aqsBtx+7n7ilOY5uzFv+DybKn+nXUqzuAhjCvR3XtyJrZlbrY6zVL1UWIsl7VKaZA2Vfbn7hMHJ7kvi6a1StTNqdDUISAowf87SS9Lx4fkPcSPxhmTg0p6iglb76PW4ormCpO+S4Kp0Nb9/ogKZbRWXtFVnFJ10tMKWRM6EQQs5leyb2e26Iqsz6CQHsXK5bYusy6rLhIu8c2+JpxG1VtAQAMaHjLcYuLVGKgNO8znkbd19MhgNGNFvhOS8cJVChQc/fBCZZZmtpm0FYL66KyL13JLbJcivyG/1uFbnkaipIeXvV/8u3P7s/meF6yLuRoVOvDbGXsdv7Vh3GsXpaW83ilNot+Z4kbio5t2m/m0wNOBvl/+Gg1cOQh2kxsklJ5sGomXnLQbK58vO4w8n/iA8hmjaYmukas1M/XQqsl7KElZbl6ozcrNGXJfndOlp1DbWWg24h/kNE+5vMBjMBW9b3s2RunuxM3unMADamLERl25eMk8j1TfqkVmaiRR9imQNKKmgRWp9EWSw+p6Sy+TIvWUdgALAG0ffEH6nvnH0Dbz7M8tpZm2du3lgJLVW0QijuYbKzos78crhV2wqLtladipR4ADA5uPYSnTn6c1jb1qtCbPHeRgYUXfE7GHkVETpLUVuVosHIrtzdkumBpUKECATV4zX1IoLAQ7zG9ZqdhpRJhx3hbswi9Dnc8QV0oGf5mUnTEhotYZCy+dMHDARD9/3MCYOmAiVQoXUi6k4XXq6zYAF+P93kkrEGbnyb4oDk7q6OpuDEHuxZ0DRXdhaYb699EY9TpeeRurFVJwqPmW1bktn0KGwUlx93tYClFKZ3/I1+eY7AptOb0J6STo2nd6EgKQANOrFf4O+br7C7XqD3qoOToO+QTK46+/VH5mlmcK7OZml4jojl25eEm4v0BQI3z/JWjqtvH1SKYHjhsWZv6fkaErb3mhoxMHLB7H4b4vx0McPWXzvHck/Ijy+1PbWzt08vXBb3+kN+gZsOr3J5uKSUsUiW6bON73WtEtp97zopKitVzRXkHQqSfie3w2p19fR4xI5AocOWlJTUzF37lxMnz4dq1atgkYjHiRSzxEbGdu+ugpSP+JG6dSgI/uNFD4lpHeI8Id3Qv8JwpShMf1jWs1Jb7rjER8TjwkhExAfE4/yFeXQvK7B9LDpCPYMxvSw6dC8roGXm1e73pPWqo/LIEP2zWzJHzPROpfWnLx2Uri9BjXC7bkVti1sJ+eWcjoF31z9RviYVBIMW2/ySKWS7qXoJXlHYFeOeFpodZ04bXSVrsoqQFEpVDAaxY0trCyUDAilttc2iO8w1ejEnyU3lZtkDSgpUimB5w2fZ/6eenLIk1DKlTDCKDlg9+ol/i6S2g7AfNzmlHLL9OhtfX8ZjAbJFPatFZeUKhYpFeS0Nl3OXtpzV6mjQZKtQRyRM3HYoOXw4cPYsWMH4uPjkZKSgjt37mD16tVd3SzqYiqFCrOGzmrzyuzsobPFP+7D48ypQVtWXY4JiREWVZOqW7Dm0TWStQnayklvympz6vlTeGfGO3B3cTdnEXpm1DNYPHpxqwtcW74npsHHU0OfshrQuShdMDpwtOSPWWmVONWzrVe/pdir4jg5B22dFgWV0rV5RGy9E6c3iO+gyWQyySv/UncppKb9WRwXMvPnvrJenBo671ae5B1Pqe0hfcTFJWVy8WevtqFWsgaUlNYK+5m+pyL9I62m3bYcsC+LsU6C0dp2ADhw+YAwEDhw+YCwfTOHzBR+79zvc7/w+K0Vl5QqFtnWdLn2HudutOeuUkeDJFuDOCJn4rBBy/79+zFnzhxMnjwZ4eHhWLFiBb7//nvk59s2N566H3WwutXpUOE+4dgwbUNTdeVmP+4xITHmH3dRUNGeK5LNf/RN+f7tUeW3o7f0Ta9nd9xujA0eK5yaJvVjFtxHnI64j6tti6OpZ5EqUjktfJpVQdS2tLxY0BaFQlyEUilXSl75bzkl06Sttsogw/iQ8ebPt1JiKagccqiD1DZVk48fHy/cHtJbHMx4u3kLL7i09Z3T1kWU9gz8F45ciJjgGHMBUIVMgZjgGCwcuVDyvFnXs4TrAVsOoE3tG+4/XHixaYT/CJuLS0oVi2zPdLl7VXSyrbtK9giSbA3iiJyJQwYtOp0OBQUFGDNmjHlbcHAwAgMDkZMjzvBEPYfpi7/l1CyFTIHBvoNx4aULcHdxx4nnTlj8uLeVFrQ9VyRb/ujbq8qvvW7pt/YapH7M4mPi4alqMSBQeeIXw38hPMekAZOE2+/rc59w+wMhDyC0d6hNr8MFtg16O4PUYNXZPDTwIZv2b1kvx2TyfZOFfzfrpq5r9cq/yC9HiheRS5GaohUbGSt55X/to2uF68aejnq61XO5Kl2RMCHB/PmePni6cL/pg6cjNjLWaqH+ML9hiI2MRY2uBq8efhUPfPAAXj38Kmp0NZKBwP9M/h/hOeJj4u9JZfH2DPxVChVOLjmJz2I/w6//49f4LPYznFxystXz2zqAHh04Gi5Ky8++i9IFMf1jrKbU3ljelLWste88W16r1MUpey5gb97WxImJGOw7GK4KV7sGSbYGcUTORHbs2DGHm7tx69YtxMXFYdu2bbj//p9uC7/88st44IEH8Mwzz5i33blzBzNnzoRWq0WfPrwy3FM0L4BYr6+Hq9LVqXP6rzy6Euu/W29Vxfv1ia9jzdQ1djmHKHPNmMAxkulEAVikOAWaBqXXfnUNUz6ZYlEJfkzAGHz19FcWaWhNKldUokHfIHxMyrvT3sV/H/nvdu+vhBKNsM9i/wivCORp86y25y7NxY07N/Dwpw/b5Tz24KH0gKvSFZo6y/V+AfIA3DBYF0pVQYWPZn+EdzLewbmycxZ/by3rGgFNAcu//utfCN9iXSSzfHk53F3chWlotbVa+P7JV3oNSzOeKk9cjb+K0E2hFn9rrgpXvKR+Cf935f9QqC1sM825p8oTNxJvWGXDU8gU5qxmNboaq+rzKoUK/ZL64U6DZYY2OeRwUbqYPyOm75WWqX+bn/tW9S0MeneQVdtyl+Zi3EfjrNKNm7JfSdVjMdWzUcgUGBs8ts0LLx1xLzJOtfadIzq2rft3pF2OkF3rXrXDUV4f9WxVVVXw8vLCwYMH4eHhYZdjOmTQUl5ejnnz5jFooR5jV/YuLP7bYou6G72UvfDxzz+2a9VmW3/MpIrJSR1HW6u1GhSakgk0LwYY6h2KCf0n4B+F/0CBpsBicOuqcMW2p7aZixMaYYQMMtzvfT9iI2MR5huGLWe24N8V/7YoKnix5CKit0Wj0dgIpUyJjOcycEV7BZllmaiur0ZGSQZu627jsfsfQ19VX/zh1E/pd2WQYYDXAKQ/l47jxcexcO9CizbJIUfqnFSLvjAHzs2Or63TwsPFA64KV0T0jUBabhrq9fWQQ46R/iMx6b5JGBs8Fnm38jCi3wgATWm8B/QZgHXfrkNZdRn83f0hM8pwo6Yp6FDJVRjiNwSHFxzGN4XfYPel3YAMiBsWZ76jkXYpDbtzdgNGIG74T9ulBoDAT4ULm7cj0i8Sp0tOI7Ms09zfBy4fwKJ9iyxq6qhkKuyI3SH5t7krexee/eJZiwXocsjRz6Mfbt65adXfS9VL8V7mexb7uypc8cmsTxAbGYt9ufvwm69/g39X/tvqXF6uXnh21LMdqtvR/O98bPBYcx9JPVfqc+H3Jz/8WGtdgNRV4SpcjB8fEy9Z5b27DDxtfR3d5XUT9XQ9JmjR6XSYMWMG/vSnP0Gt/mku8IIFC7BgwQI89dRT5m2moOWVV16Bi0vTbeVp06Zh2rRpnd5uorvVWVcYHU1rd5h+P+X3XTJ46Yy7Xp3FHgPAu3k/pJ4zLngczpSeaff25ucI2RCC0mrrpBHBnsEoWV5i02u6VxSrFe26u2QyIWQCTj1/6h62iIio8xw5cgRHjjQlQ9HpdNi8ebNdgxaHnKTt4uKCsLAwZGVlmYOWsrIyXL9+HcOGiQt7vf3227zTQk6rebHInnSF0TTnXVSI0zR33553mjraJmdjj/fwbt4PqefEhMQg60ZWu7c3P0dUQJQwaJGsr9QFfNx8bLrTEhMS0xnNIiLqFM1vGlRVVWHz5s12Pb5DLsQHgFmzZmHv3r04ceIE8vPzsX79ekRFRSE83HpuNVF3cC8W2Do6R1w06oht6kp3835IPWfNo2ts2t7FBMTDAAANX0lEQVT8HJ/P+dzmAqyd7dzz54Tbs57Pksx+RURE7eOQ08NMPvvsM+zbtw/V1dVQq9VITEyEr69l9WKuaSFybo44h90R29SV7ub9kHqOrduba23NlKMo0hQh+oNoVNRWwMfNB+eeP4eBvgMl18EQEXVHPWZNiy0YtBAREREROY57EbQ47PQwIiIiIiIigEELERERERE5OAYtRERERETk0Bi0EBERERGRQ2PQQkREREREDo1BCxEREREROTQGLURERERE5NAYtBARERERkUNj0EJERERERA6NQQsRERERETk0Bi1EREREROTQGLQQEREREZFDY9BCREREREQOjUELERERERE5NAYtRERERETk0Bi0EBERERGRQ2PQQkREREREDo1BCxEREREROTQGLURERERE5NAYtBARERERkUNj0EJERERERA6NQQsRERERETk0Bi1EREREROTQGLQQEREREZFDY9BCREREREQOjUELERERERE5NAYtRERERETk0Bi0EBERERGRQ2PQQkREREREDo1BCxEREREROTQGLURERERE5NAYtBARERERkUNj0EJERERERA6NQQsRERERETk0Bi1EREREROTQGLQQEREREZFDY9BCREREREQOjUELERERERE5NAYtRERERETk0Bi0EBERERGRQ2PQQkREREREDo1BCxEREREROTQGLURERERE5NAYtBARERERkUNT2vNgFy5cwM6dO5GXlwetVotPP/0UISEhFvtoNBokJyfj7Nmz8PDwwOzZs/H0009b7HP48GHs2LEDP/74IyIiIpCYmIgBAwbYs6lEREREROQk7Hqnpa6uDkOGDMHzzz8vuc/q1atx+/ZtpKSkICEhAampqTh06JD58XPnzmHDhg1YuHAhtm7dCl9fX6xcuRINDQ32bCoRERERETkJuwYt48ePx5IlSzB27Fjh4wUFBfj++++RmJiI8PBwTJo0CXPnzsW+ffvM+3zxxRd4+OGHMXPmTISGhmLFihW4desWMjIy7NlUcmJHjhzp6iZQJ2J/9yzs756F/d2zsL+pIzp1TUteXh78/f0tpnpFR0fj6tWrqK+vBwDk5uZizJgx5sfd3NwQGRmJ3NzczmwqOTB+6fUs7O+ehf3ds7C/exb2N3VEpwYtFRUV8Pb2ttjm7e0Ng8EArVYLAKisrISPj4/FPl5eXqioqOi0dhIRERERkeNo10L85ORkHDhwQPLxUaNGYePGjXZrlC2MRiMAoKqqqkvOT51Pp9Oxv3sQ9nfPwv7uWdjfPQv7u+cw9bNpnG4P7QpaXnzxRSxatEjycZVK1a6T+fj4oLKy0mJbZWUl5HI5vLy8ADTdeWl5V0Wr1VplITOpra0FAGYX62E2b97c1U2gTsT+7lnY3z0L+7tnYX/3LLW1tfD09LTLsdoVtHh6etrlhBERESgvL8e1a9fQv39/AMD58+cRGhoKV1dXAEBkZCSysrLwxBNPAGjKSJabm4s5c+YIj9m3b1+kpaXBzc0NMpmsw20kIiIiIqK7ZzQaUVtbi759+9rtmHat01JbW4uSkhLcunULAFBYWIja2lr069cPffr0QVhYGKKiopCUlIRly5bh+vXr2LNnD1555RXzMX7+85/jjTfewOjRozFs2DDs2LEDffv2xfjx44XnlMvl8Pf3t+fLICIiIiKiDrDXHRYT2bFjx+w22SwrKwu/+tWvrLa/8cYbmD59OoCm4pIbNmxAZmYm3N3dERsba1Vc8tChQ9i+fTs0Gg0iIyOxfPlyDBw40F7NJCIiIiIiJ2LXoIWIiIiIiMje7Do9rDMdPHgQX375JX744QcolUpERUXhpZdeQnBwsHkfjUaD5ORknD17Fh4eHpg9e7bVXR1yLqmpqdi3bx+qq6uhVquxfPly+Pr6dnWzqIM+/fRTHD9+HMXFxXB3d0dMTAyWLl1qkSK9uLgYycnJyMnJgY+PD5555hn87Gc/68JWkz389re/xbfffoukpCSo1WoA7Ovu6PLly9i6dStycnKgUqmgVqvxu9/9DgD7u7uprq7Gli1bkJ6ejtraWoSFheGFF17AqFGjALC/nd3x48fxxRdf4PLly7hz5w6OHj0KhUJhfrw9/Xu3Y7lOrdNiTxcuXMDjjz+Od955Bxs2bIBOp8Ovf/1rNDY2mvdZvXo1bt++jZSUFCQkJCA1NRWHDh3qwlZTRxw+fBg7duxAfHw8UlJScOfOHaxevbqrm0V2kJ2djbi4OLz33nt466238MMPP+D3v/+9+fHGxkasXLkSXl5e2Lp1KxYtWoTk5GRkZmZ2Yaupow4fPmwuLGzCvu5+CgsL8dprr2HkyJH4y1/+gpSUFDzyyCMA2N/d0ebNm/Gvf/0Lb731Fj744ANERETgN7/5DW7fvs3+7gbq6+sRHR2NBQsWWD3Wnv7tyFjOae+0rFq1yuL/r7/+OubOnYvCwkKEhYWhoKAA33//PbZv344BAwYgPDwcV65cwb59+xjRO6n9+/djzpw5mDx5MgBgxYoV+OUvf4n8/HyEh4d3ceuoI9auXWvx/2XLlmHZsmWorq6Gp6cnMjIycPPmTbz//vtwd3dHaGgoLly4gP3795uvzpNzuX79Oj7++GOkpKRg3rx55u3s6+5n27ZtmDRpEp577jnztkGDBgFgf3dHubm5mDlzJoYNGwYAWLJkCfbu3Yvi4mJUVFSwv53cY489BqBpHXtL7fk8d2Qs57R3WlrSarUAgD59+gAA8vLy4O/vb1G/JTo6GlevXrW6skeOT6fToaCgAGPGjDFvCw4ORmBgIHJycrqwZXQvaLVauLi4wM3NDUDT5zkiIgLu7u7mfaKjo5Gbm9tVTaQOMBgMWLt2LRYvXmyV/ZF93b3o9XqcOXMGgYGBSEhIQGxsLBITE1FQUACA/d0dDR8+HN9++y20Wi30ej0OHToEPz8/hIaGsr+7ubb6t6NjuW4RtBiNRmzbtg3jxo0z/wBWVFRYzIcHmgpXGgwGc4BDzqOqqgoGgwE+Pj4W2729va0KlpJz0+l02L59O6ZNm2aeJyv1eWbfO6c9e/bAzc0NM2bMsHqMfd29aLVa1NXVYdeuXXjkkUewdu1a+Pv7Y/ny5aiurmZ/d0Px8fHw8vLCrFmz8PjjjyM1NRVr1qyBm5sb+7uba6t/OzqWc7jpYcnJyThw4IDk46NGjcLGjRsttm3ZsgVXr17Fu+++e6+bR13EaGSSu55Ar9fj7bffBgC8/PLLXdwauhcKCwuRlpaGrVu3dnVTqBMYDAYAwEMPPYSnnnoKALB8+XLExcXhu+++68qm0T2yd+9eXLt2DUlJSejTpw+++uorrFq1Cu+//35XN426WEfHcg4XtLz44otYtGiR5OMqlcri/3/961/xj3/8A5s2bbKouunj42MVtVVWVkIul8PLy8u+jaZ7zsvLC3K5HBUVFRbbKysrraJ6ck4GgwHr1q1DUVERNm7caJ4aBjR9nouKiiz2Z987p9zcXGg0GsyfP99i+4oVKzBlyhQEBQWxr7sR03d386naSqUSQUFBuHnzJj/b3Ux9fT0++ugjJCUlmbOFDR48GOnp6fj666/Z391cW/3b0bGcwwUtnp6e7a6g+cknn+DQoUPYuHEjgoKCLB6LiIhAeXk5rl27hv79+wMAzp8/j9DQULi6utq93XRvubi4ICwsDFlZWebFXGVlZbh+/bp5sR85L6PRiPXr1yMnJwebNm0yr00ziYiIQFpaGmpra83BzPnz5xEZGdkVzaUOePDBBzF06FCLbUuWLMFrr72GmJgYXL58mX3djahUKgwePBglJSXmbXq9HtevX0dAQADc3d3Z391IY2MjGhsbIZdbrj6QyWQwGAz8Lu/m2urfjo7lnHZNS2pqKnbu3ImVK1eid+/e0Gg00Gg0aGhoAACEhYUhKioKSUlJyM/Px8mTJ7Fnzx7ExsZ2ccvpbs2aNQt79+7FiRMnkJ+fj/Xr1yMqKoqZw7qB5ORknDp1ypwV0PR51uv1AICYmBj4+flh3bp1uHr1Kg4dOoRvvvkGs2fP7spm013w9PREaGioxT8ACAwMhL+/P/u6G5o7dy6OHj2Kv//97yguLkZKSgoAYOLEiezvbsbDwwMjRozAli1bkJOTg5KSEmzbtg3Xr1/HuHHj2N/dQFVVFfLz880XIvLz85Gfn4/a2tp29W9HxnKyY8eOOeVigV/84he4ceOG1fY///nPGD16NICmgc+GDRuQmZkJd3d3xMbGsrikk/vss88sChIlJiayuGQ3MGXKFOH2nTt3IjAwEABQVFRkLljl6+uLRYsW4YknnujMZtI9MmXKFIvikuzr7mfPnj3YvXs3bt++jaFDhyI+Pt4csLK/u5fy8nJs3boV58+fR21tLQYNGoTFixdjwoQJANjfzu7LL7/EunXrrLabxt/t6d+7Hcs5bdBCREREREQ9g9NODyMiIiIiop6BQQsRERERETk0Bi1EREREROTQGLQQEREREZFDY9BCREREREQOjUELERERERE5NAYtRERERETk0Bi0EBERERGRQ2PQQkREREREDo1BCxERERERObT/B2rCVyacsjm6AAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "#your code-1st way\n" + "#your code-1st way\n", + "fig, ax = plt.subplots(figsize=(12,6))\n", + "\n", + "plt.scatter(titanic['Age'],titanic['Fare'],color='green');" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 234, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 234, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAkkAAAG9CAYAAAABa+KmAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAMTQAADE0B0s6tTgAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzdfXxU9Z0v8M885jmTBCIEChRJlSCySFrvrfamW682FqkrYsUuonRbSt1Xq7T6oov2tatdH+D6amR7o1KxLVtbLbSadkWQPsBKu225bZbY1URtWDUowcQ8zOR5Zs7M/ePLL+fMyZlkJjmTmQmf9+uV18Bk5sw5ZyY5n3x/T46jR49GQUREREQxnOneASIiIqJMxJBEREREZIEhiYiIiMgCQxIRERGRBYYkIiIiIgsMSUREREQWGJKIiIiILDAkEREREVlwp3sHEvXGG29g9+7daG5uhsfjQXV1Ne69914AwKlTp1BXV4fm5maUlpbilltuwerVq2Oe//TTT+O5555Df38/qqurceedd6KsrCwNR0JERETZICsqSW+//Ta+9rWv4eKLL8bjjz+O+vp6XHHFFQCAcDiM7du3w+fzYffu3di4cSPq6urQ2Ng4+vxDhw7hqaeewu233476+noMDAzgvvvuS9fhEBERURbIikrSd7/7Xfyv//W/8LnPfW70vkWLFgEAjh8/jo6ODjzxxBPIz8/H4sWL8fLLL6OhoQHV1dUAgIaGBqxbtw41NTUAgG3btmHDhg1obW1FZWXl9B8QERERZbyMryRpmoY//vGPmDt3LrZu3Yrrr78ed911F06ePAkAeO2117B06VLk5+ePPmfVqlVoaWkBAASDQZw8eRKXXHLJ6PfnzZuHuXPnorm5eXoPhoiIiLJGxockv9+P4eFh7Nu3D1dccQV27NiB8vJy3Hnnnejv70dPTw9KSkpinlNSUoLe3l4AQCAQQCQSQWlpadzHEBEREZllfHNbJBIBAHz84x/HtddeCwC488478ZnPfAa/+93vJnx+NBpN+vW6urqQl5cHh8OR/A4TERHRtItGoxgaGsKsWbPgdNpTA8r4kOTz+eB0OrFgwYLR+9xuNyoqKtDR0YHS0lK0tbXFPKe3t3e0uqSe39PTE/cxRl1dXbjxxhtTcCRERESUavv370d5ebkt28r4kOTxePChD30I77777uh9mqbhzJkzmDNnDvLz87F//34MDQ0hLy8PAHDixAlUVVUBALxeL5YsWYKmpqbRjtzt7e04c+YMli1bNub11DZOnTqF4uLiVB/ejHb33XfjwQcfTPduzAg8l/bhubQHz6N9eC7tEQgEsGDBgtHruB0yPiQBwA033ICHH34YK1euxNKlS/Hcc88BAC677DJ4vV7Mnj0bO3fuxK233oqWlhYcOXIEO3bsGH3+ddddh/r6elxwwQWoqKjAY489hhUrVliObFNNbMXFxQxJU+T1enkObcJzaR+eS3vwPNqH59JednaVyYqQdOWVV6K3txdPPvkk+vr6cOGFF+Jb3/oWCgoKAAAPPfQQ6urqsGXLFpSVlWHr1q2jVSMAWL16NXp6erBr167RySTvuuuudB0OERERZYGsCEmAVJNuuOEGy+8tXLgQu3btGvf5GzZswIYNG1KxaxRHbW1tundhxuC5tA/PpT14Hu3Dc5m5HEePHk1u+NcMNzAwgDVr1sDv97P8SURElCUCgQB8Ph8OHDgw2tI0VRk/TxIRERFROjAkEREREVlgSCIiIiKywJBEREREZIEhiYiIiMgCQxIRERGRBYYkIiIiIgsMSUREREQWGJKIiIiILDAkEREREVlgSCIiIiKywJBEREREZIEhiYiIiMgCQxIRERGRBYYkIiIiIgsMSUREREQWGJKIiIiILDAkEREREVlgSCIiIiKywJBEREREZIEhiYiIiMgCQxIRERGRBYYkIiIiIgsMSUREREQWGJKIiIiILDAkEREREVlgSCIiIiKywJBEREREZIEhiYiIiMgCQxIRERGRBYYkIiIiIgsMSUREREQWGJKIiIiILDAkEREREVlgSCIiIiKywJBEREREZIEhiYiIiMgCQxIRERGRBYYkIiIiIgsMSUSUkdragB/+UG4BwO8HGhvlllKL55pIuNO9A0REZl/4ArB/PzAyAuTkACtXApoG9PYCJSXA5s3Apk3p3suZae9eYM8enmsigJUkIsowbW0SkDQNcLuBcBj4j/8A+vqAvDwJTnv2sMqRCn6/nNuREZ5rIoAhiYgyzLFjcnFWolEgEpGQpPT2Aq2t079vM11rq5xbI55rOpdlfHPb3r178a//+q8x911++eW4//77AQCnTp1CXV0dmpubUVpailtuuQWrV6+OefzTTz+N5557Dv39/aiursadd96JsrKyaTsGIkpcTY00sWma/N/hAJxOoKhIf0xJCVBZmZ79m8kqK+XcGkMqzzWdy7KikrR06VI8++yzo1//8A//AAAIh8PYvn07fD4fdu/ejY0bN6Kurg6NjY2jzz106BCeeuop3H777aivr8fAwADuu+++dB0KEU1g4ULgxhslGIXDgMsFXH65hKShIQlQmzcDPl+693Tm8fnk3Obk8FwTAVlQSQIAt9ttWfk5fvw4Ojo68MQTTyA/Px+LFy/Gyy+/jIaGBlRXVwMAGhoasG7dOtTU1AAAtm3bhg0bNqC1tRWV/POIKCM9+STwj/8oTW81NRKc/H5p9qms5EU7lTZtAtau5bkmArKkknTy5Elcf/312LhxI3bt2oW+s50TXnvtNSxduhT5+fmjj121ahVaWloAAMFgECdPnsQll1wy+v158+Zh7ty5aG5unt6DIKKkLFwI3Hyz3AJysa6u5kV7OvBcE4mMryQtW7YM27dvx/z583HmzBns2bMH3/jGN7Br1y709PSgpKQk5vElJSXoPdvzMBAIIBKJoLS0NO5jiIiIiKxkfEi69NJLR/99/vnnY9GiRbj55pvxxhtvTPjcaDSayl0jIiKiGSzjQ5LZ/PnzUVhYiPb2dpSWlqJNTcd7Vm9v72h1yefzwel0oqenJ+5j4rn77rvh9XoBALW1taitrbXxKIiIiGiqDh8+jMOHDwOQLjZ2y7qQ9N5776G/vx9z586Fx+PB/v37MTQ0hLy8PADAiRMnUFVVBQDwer1YsmQJmpqaRjtyt7e348yZM1i2bNm4r/Pggw+iuLg4tQdDREREk2YsYgQCATz66KO2bj/jQ9Lu3btx+eWXo7y8HO3t7di9ezcuuugiXHDBBdA0DbNnz8bOnTtx6623oqWlBUeOHMGOHTtGn3/dddehvr4eF1xwASoqKvDYY49hxYoVHNlGRERE48r4kPTee+/h3nvvRSAQwKxZs/CRj3wEn//85+F0OuF0OvHQQw+hrq4OW7ZsQVlZGbZu3TpaNQKA1atXo6enB7t27RqdTPKuu+5K4xERERFRNnAcPXqUvZsNBgYGsGbNGvj9fja3ERERZYlAIACfz4cDBw6goKDAlm1mxTxJRERERNONIYmIiIjIAkMSERERkQWGJCIiIiILDElEREREFhiSiIiIiCwwJBERERFZYEgiIiIissCQRERERGSBIYmIiIjIAkMSERERkQWGJCIiIiILDElEREREFhiSiIiIiCwwJBERERFZYEgiIiIissCQRERERGSBIYmIiIjIAkMSERERkQWGJCIiIiILDElEREREFhiSiIiIiCwwJBERERFZYEgiIiIissCQRERERGSBIYmIiIjIAkMSERERkQWGJCIiIiILDElEREREFhiSiIiIiCwwJBERERFZYEgiIiIissCQRERERGSBIYmIiIjIAkMSERERkQWGJCIiIiILDElEREREFhiSiIiIiCwwJBERERFZYEgiIiIissCQRERERGSBIYmIiIjIAkMSERERkQWGJCIiIiILWRWSvvGNb+ATn/gEGhsbR+87deoUvvrVr6K2thY33XQTDh48OOZ5Tz/9NG644QZcffXVuOeee9Dd3T2du01ERERZKGtC0qFDhzAyMhJzXzgcxvbt2+Hz+bB7925s3LgRdXV1MSHq0KFDeOqpp3D77bejvr4eAwMDuO+++6Z794mIiCjLZEVIOnPmDPbu3Ytt27bF3H/8+HF0dHRg27ZtWLx4Ma655hpcccUVaGhoGH1MQ0MD1q1bh5qaGlRWVmLbtm3485//jNbW1uk+DCIiIsoiGR+SIpEIduzYgU2bNqG8vDzme6+99hqWLl2K/Pz80ftWrVqFlpYWAEAwGMTJkydxySWXjH5/3rx5mDt3Lpqbm6fnAIiIiCgrZXxI+ulPf4q8vDx86lOfGvO9np4elJSUxNxXUlKC3t5eAEAgEEAkEkFpaWncxxARERFZcad7B8bz9ttvY//+/di9e/eknh+NRm3eIyIiIjpXZHRIamlpQXd3N9avXx9z/7Zt2/CJT3wCFRUVaGtri/leb2/vaHXJ5/PB6XSip6cn7mPiufvuu+H1egEAtbW1qK2tnerhEBERkY0OHz6Mw4cPA5AuNnbL6JD0sY99DBdeeGHMfX/3d3+Hr33ta7j00kvxxhtvYP/+/RgaGkJeXh4A4MSJE6iqqgIAeL1eLFmyBE1NTaiurgYAtLe348yZM1i2bNm4r/3ggw+iuLg4BUdFREREdjAWMQKBAB599FFbt5/RIamwsBCFhYVj7p87dy7Ky8tRUlKC2bNnY+fOnbj11lvR0tKCI0eOYMeOHaOPve6661BfX48LLrgAFRUVeOyxx7BixQpUVlZO56EQERFRlsnokDQRj8eDhx56CHV1ddiyZQvKysqwdevW0aoRAKxevRo9PT3YtWsX+vv7UV1djbvuuiuNe01ERETZwHH06FH2bjYYGBjAmjVr4Pf72dxGRESUJQKBAHw+Hw4cOICCggJbtpnxUwAQERERpQNDEhEREZEFhiQiIiIiCwxJRERERBYYkoiIiIgsMCQRERERWWBIIiIiIrLAkERERERkgSGJiIiIyAJDEhEREZEFhiQiIiIiCwxJRERERBYYkoiIiIgsMCQRERERWWBIIiIiIrLAkERERERkgSGJiIiIyAJDEhEREZEFhiQiIiIiCwxJRERERBYYkoiIiIgsMCQRERERWWBIIiIiIrLAkERERERkgSGJiIiIyAJDEhEREZEFhiQiIiIiCwxJRERERBYYkoiIiIgsMCQRERERWWBIIiIiIrLAkERERERkgSGJiIiIyAJDEhEREZEFhiQiIiIiCwxJRERERBYYkoiIiIgsMCQRERERWWBIIiIiIrLAkERERERkgSGJiIiIyAJDEhEREZEFhiQiIiIiCwxJRERERBbc6d6BiTz99NN48cUX0dHRgZycHCxfvhxf+tKXsGDBAgDAqVOnUFdXh+bmZpSWluKWW27B6tWrx2zjueeeQ39/P6qrq3HnnXeirKwsHYdDREREWSLjK0nz5s3DHXfcge9///v41re+BafTie3btwMAwuEwtm/fDp/Ph927d2Pjxo2oq6tDY2Pj6PMPHTqEp556Crfffjvq6+sxMDCA++67L12HQ0RERFki4ytJf/3Xfx3z/8997nP4/Oc/j+7ubrS0tKCjowNPPPEE8vPzsXjxYrz88stoaGhAdXU1AKChoQHr1q1DTU0NAGDbtm3YsGEDWltbUVlZOd2HQ0RERFki4ytJRiMjI3jxxRexYMEClJSU4LXXXsPSpUuRn58/+phVq1ahpaUFABAMBnHy5Elccsklo9+fN28e5s6di+bm5mnffyIiIsoeGV9JAoDf//73+OY3v4mRkRF84AMfwM6dO+F0OtHT04OSkpKYx5aUlKC3txcAEAgEEIlEUFpaGvcxRERERFayopK0cuVKPPnkk/iXf/kXLFq0CP/8z/+McDg84fOi0eg07B0RERHNRFlRScrLy8P8+fMxf/58LF26FNdeey2OHz+O0tJStLW1xTy2t7d3tLrk8/lGK07xHhPP3XffDa/X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6tQaxSQj1ZNkNC3e53MF5QL5auQCBQ+DteZcIGqYpujxaum9akbqOua68sVC7SOSOT/hCM5Tq2txWSIKD3OSmkC4QVJwLpDHow2DBU+LV0FQVFTNIIi9QERERI3H4bYm5Ha7UV19Bi6Xy58QDbj8QZDF4oPdboHDIUFQdLQ1rGnxRERE1DrwLB5CRcVBREXFny2OqBKiY2Gz2TgURkRE1AYwSAohKysd8a0lWYOIiIgijl0hITBXiIiIqG1jkERERERkgEESERERkQEGSUREREQGGCQRERERGWCQRERERGSAQRIRERGRAQZJRERERAYYJBEREREZYJBEREREZIBBEhEREZEBBklEREREBhgkERERERlgkERERERkgEESERERkQEGSUREREQGGCQRERERGWCQRERERGSAQRIRERGRAQZJRERERAYYJBEREREZYJBEREREZIBBEhEREZEBBklEREREBhgkERERERlgkERERERkgEESERERkQEGSUREREQGGCQRERERGWCQRERERGSAQRIRERGRAQZJRERERAYYJBEREREZYJBEREREZIBBEhEREZEBBklEREREBhgkERERERlgkERERERkgEESERERkQEGSUREREQGGCQRERERGbA29wHUZteuXVi9ejX27t2L0tJSrFixAl26dAm4TXFxMebOnYvvvvsOsbGxGDRoEB555JGA22zatAnLly9HUVERMjMzMXXqVFx44YVN+VCIiIiolWnRPUlnzpzBJZdcgsceeyzkbWbOnIny8nJkZ2fjqaeewqpVq7Bx40b/9d9//z1effVVPPzww8jJyUFSUhJmzJgBl8vVFA+BiIiIWqkWHSRdd911GDNmDK655hrD6/fv349//OMfmDp1KjIyMnDLLbdg6NChWLdunf82GzZswG233YZ7770XaWlpmDZtGk6ePIlvvvmmqR5Gm5Wbm9vch3DeYFtGDtsyMtiOkcO2bLladJBUl7179yIlJSVg6Ozqq6/GgQMHUF1dDQDYs2cPrrrqKv/1MTEx6NGjB/bs2dPkx9vW8I0fOWzLyGFbRgbbMXLYli1Xqw6STp06hYSEhIBtCQkJ8Hq9KC0tBQCUlJQgMTEx4Dbx8fE4depUkx0nERERtT7Nkrg9d+5cfPDBByGvv/LKKzF//vwmPCKNz+cDAJSVlTXL/Z9PnE4n2zFC2JaR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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], "source": [ - "# your code-2nd way\n" + "# your code-2nd way\n", + "sns.regplot(titanic['Age'],titanic['Fare'])\n" ] }, { @@ -310,13 +1085,196 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 239, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
PassengerIdSurvivedPclassNameGenderAgeSibSpParchTicketFareCabinEmbarked
010.03Braund, Mr. Owen Harrismale22.010A/5 211717.2500U0S
121.01Cumings, Mrs. John Bradley (Florence Briggs Th...female38.010PC 1759971.2833C85C
231.03Heikkinen, Miss. Lainafemale26.000STON/O2. 31012827.9250U0S
341.01Futrelle, Mrs. Jacques Heath (Lily May Peel)female35.01011380353.1000C123S
450.03Allen, Mr. William Henrymale35.0003734508.0500U0S
\n", + "
" + ], + "text/plain": [ + " PassengerId Survived Pclass \\\n", + "0 1 0.0 3 \n", + "1 2 1.0 1 \n", + "2 3 1.0 3 \n", + "3 4 1.0 1 \n", + "4 5 0.0 3 \n", + "\n", + " Name Gender Age SibSp \\\n", + "0 Braund, Mr. Owen Harris male 22.0 1 \n", + "1 Cumings, Mrs. John Bradley (Florence Briggs Th... female 38.0 1 \n", + "2 Heikkinen, Miss. Laina female 26.0 0 \n", + "3 Futrelle, Mrs. Jacques Heath (Lily May Peel) female 35.0 1 \n", + "4 Allen, Mr. William Henry male 35.0 0 \n", + "\n", + " Parch Ticket Fare Cabin Embarked \n", + "0 0 A/5 21171 7.2500 U0 S \n", + "1 0 PC 17599 71.2833 C85 C \n", + "2 0 STON/O2. 3101282 7.9250 U0 S \n", + "3 0 113803 53.1000 C123 S \n", + "4 0 373450 8.0500 U0 S " + ] + }, + "execution_count": 239, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "#your code here\n" + "#your code here\n", + "titanic.head()" ] }, + { + "cell_type": "code", + "execution_count": 254, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 254, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "titanic_p = titanic.pivot(index='PassengerId',columns='Cabin', values='Fare')\n", + "\n", + "sns.heatmap(data=titanic_p)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, { "cell_type": "markdown", "metadata": {}, @@ -386,7 +1344,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.0" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-plotting-multiple-data-series/your-code/main.ipynb b/module-2_labs/lab-plotting-multiple-data-series/your-code/main.ipynb index ef4d28c..19fddcf 100644 --- a/module-2_labs/lab-plotting-multiple-data-series/your-code/main.ipynb +++ b/module-2_labs/lab-plotting-multiple-data-series/your-code/main.ipynb @@ -11,7 +11,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ @@ -26,9 +26,134 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
YearMonthSupplierItemCodeDescriptionItemTypeRetailSalesRetailTransfersWarehouseSales
020174ROYAL WINE CORP100200GAMLA CAB - 750MLWINE0.01.00.0
120174SANTA MARGHERITA USA INC100749SANTA MARGHERITA P/GRIG ALTO - 375MLWINE0.01.00.0
220174JIM BEAM BRANDS CO10103KNOB CREEK BOURBON 9YR - 100P - 375MLLIQUOR0.08.00.0
320174HEAVEN HILL DISTILLERIES INC10120J W DANT BOURBON 100P - 1.75LLIQUOR0.02.00.0
420174ROYAL WINE CORP101664RAMON CORDOVA RIOJA - 750MLWINE0.04.00.0
\n", + "
" + ], + "text/plain": [ + " Year Month Supplier ItemCode \\\n", + "0 2017 4 ROYAL WINE CORP 100200 \n", + "1 2017 4 SANTA MARGHERITA USA INC 100749 \n", + "2 2017 4 JIM BEAM BRANDS CO 10103 \n", + "3 2017 4 HEAVEN HILL DISTILLERIES INC 10120 \n", + "4 2017 4 ROYAL WINE CORP 101664 \n", + "\n", + " Description ItemType RetailSales \\\n", + "0 GAMLA CAB - 750ML WINE 0.0 \n", + "1 SANTA MARGHERITA P/GRIG ALTO - 375ML WINE 0.0 \n", + "2 KNOB CREEK BOURBON 9YR - 100P - 375ML LIQUOR 0.0 \n", + "3 J W DANT BOURBON 100P - 1.75L LIQUOR 0.0 \n", + "4 RAMON CORDOVA RIOJA - 750ML WINE 0.0 \n", + "\n", + " RetailTransfers WarehouseSales \n", + "0 1.0 0.0 \n", + "1 1.0 0.0 \n", + "2 8.0 0.0 \n", + "3 2.0 0.0 \n", + "4 4.0 0.0 " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "data = pd.read_csv('../data/liquor_store_sales.csv')\n", "data.head()" @@ -43,10 +168,50 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "ename": "KeyboardInterrupt", + "evalue": "", + "output_type": "error", + "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[0mdata\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'RetailSales'\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m'RetailTransfers'\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m'WarehouseSales'\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mplot\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mkind\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m'bar'\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~/miniconda3/envs/ironhack/lib/python3.7/site-packages/pandas/plotting/_core.py\u001b[0m in \u001b[0;36m__call__\u001b[0;34m(self, *args, **kwargs)\u001b[0m\n\u001b[1;32m 792\u001b[0m \u001b[0mdata\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcolumns\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mlabel_name\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 793\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 794\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mplot_backend\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mplot\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkind\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mkind\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 795\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 796\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mline\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\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[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/ironhack/lib/python3.7/site-packages/pandas/plotting/_matplotlib/__init__.py\u001b[0m in \u001b[0;36mplot\u001b[0;34m(data, kind, **kwargs)\u001b[0m\n\u001b[1;32m 60\u001b[0m \u001b[0mkwargs\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m\"ax\"\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mgetattr\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0max\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"left_ax\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0max\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 61\u001b[0m \u001b[0mplot_obj\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mPLOT_CLASSES\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mkind\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mdata\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[0;32m---> 62\u001b[0;31m \u001b[0mplot_obj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mgenerate\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 63\u001b[0m \u001b[0mplot_obj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mdraw\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 64\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mplot_obj\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mresult\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/ironhack/lib/python3.7/site-packages/pandas/plotting/_matplotlib/core.py\u001b[0m in \u001b[0;36mgenerate\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 279\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_compute_plot_data\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 280\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_setup_subplots\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--> 281\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_make_plot\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 282\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_add_table\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 283\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_make_legend\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~/miniconda3/envs/ironhack/lib/python3.7/site-packages/pandas/plotting/_matplotlib/core.py\u001b[0m in \u001b[0;36m_make_plot\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 1393\u001b[0m \u001b[0mlabel\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mlabel\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1394\u001b[0m \u001b[0mlog\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mlog\u001b[0m\u001b[0;34m,\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1395\u001b[0;31m \u001b[0;34m**\u001b[0m\u001b[0mkwds\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1396\u001b[0m )\n\u001b[1;32m 1397\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_add_legend_handle\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mrect\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlabel\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mindex\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mi\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/ironhack/lib/python3.7/site-packages/pandas/plotting/_matplotlib/core.py\u001b[0m in \u001b[0;36m_plot\u001b[0;34m(cls, ax, x, y, w, start, log, **kwds)\u001b[0m\n\u001b[1;32m 1318\u001b[0m \u001b[0;34m@\u001b[0m\u001b[0mclassmethod\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1319\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m_plot\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mcls\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0max\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mw\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mstart\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlog\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mFalse\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwds\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-> 1320\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0max\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbar\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mx\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mw\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mbottom\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mstart\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlog\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mlog\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwds\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 1321\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1322\u001b[0m \u001b[0;34m@\u001b[0m\u001b[0mproperty\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/ironhack/lib/python3.7/site-packages/matplotlib/__init__.py\u001b[0m in \u001b[0;36minner\u001b[0;34m(ax, data, *args, **kwargs)\u001b[0m\n\u001b[1;32m 1599\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0minner\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0max\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdata\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\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[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1600\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mdata\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1601\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mfunc\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0max\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m*\u001b[0m\u001b[0mmap\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0msanitize_sequence\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0margs\u001b[0m\u001b[0;34m)\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 1602\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1603\u001b[0m \u001b[0mbound\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnew_sig\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbind\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0max\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[0;32m~/miniconda3/envs/ironhack/lib/python3.7/site-packages/matplotlib/axes/_axes.py\u001b[0m in \u001b[0;36mbar\u001b[0;34m(self, x, height, width, bottom, align, **kwargs)\u001b[0m\n\u001b[1;32m 2436\u001b[0m \u001b[0;32melif\u001b[0m \u001b[0morientation\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m'horizontal'\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2437\u001b[0m \u001b[0mr\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0msticky_edges\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mx\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0ml\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2438\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0madd_patch\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mr\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 2439\u001b[0m \u001b[0mpatches\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mr\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2440\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/ironhack/lib/python3.7/site-packages/matplotlib/axes/_base.py\u001b[0m in \u001b[0;36madd_patch\u001b[0;34m(self, p)\u001b[0m\n\u001b[1;32m 1969\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_clip_path\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;32mis\u001b[0m \u001b[0;32mNone\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1970\u001b[0m \u001b[0mp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mset_clip_path\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpatch\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1971\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_update_patch_limits\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mp\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 1972\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpatches\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mappend\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mp\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1973\u001b[0m \u001b[0mp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_remove_method\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpatches\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mremove\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/ironhack/lib/python3.7/site-packages/matplotlib/axes/_base.py\u001b[0m in \u001b[0;36m_update_patch_limits\u001b[0;34m(self, patch)\u001b[0m\n\u001b[1;32m 1995\u001b[0m \u001b[0mxys\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mpatch_to_data\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtransform\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mxys\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1996\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 1997\u001b[0;31m \u001b[0mupdatex\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mupdatey\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mpatch\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_transform\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0;31m\\\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 1998\u001b[0m \u001b[0mcontains_branch_seperately\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtransData\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 1999\u001b[0m self.update_datalim(xys, updatex=updatex,\n", + "\u001b[0;32m~/miniconda3/envs/ironhack/lib/python3.7/site-packages/matplotlib/patches.py\u001b[0m in \u001b[0;36mget_transform\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 212\u001b[0m \u001b[0mto\u001b[0m \u001b[0mthe\u001b[0m \u001b[0;34m:\u001b[0m\u001b[0;32mclass\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;31m`\u001b[0m\u001b[0mPatch\u001b[0m\u001b[0;31m`\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 213\u001b[0m \"\"\"\n\u001b[0;32m--> 214\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_patch_transform\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0martist\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mArtist\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_transform\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\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 215\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 216\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mget_data_transform\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\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~/miniconda3/envs/ironhack/lib/python3.7/site-packages/matplotlib/patches.py\u001b[0m in \u001b[0;36mget_patch_transform\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 756\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 757\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mget_patch_transform\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\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--> 758\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_update_patch_transform\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 759\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_rect_transform\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 760\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/ironhack/lib/python3.7/site-packages/matplotlib/patches.py\u001b[0m in \u001b[0;36m_update_patch_transform\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 733\u001b[0m \"\"\"\n\u001b[1;32m 734\u001b[0m \u001b[0mx0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my1\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_convert_units\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--> 735\u001b[0;31m \u001b[0mbbox\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mtransforms\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mBbox\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mfrom_extents\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mx0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mx1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my1\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 736\u001b[0m \u001b[0mrot_trans\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mtransforms\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mAffine2D\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 737\u001b[0m \u001b[0mrot_trans\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrotate_deg_around\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mx0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0my0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mangle\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;32m~/miniconda3/envs/ironhack/lib/python3.7/site-packages/matplotlib/transforms.py\u001b[0m in \u001b[0;36mfrom_extents\u001b[0;34m(*args)\u001b[0m\n\u001b[1;32m 795\u001b[0m \"\"\"\n\u001b[1;32m 796\u001b[0m \u001b[0mpoints\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marray\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdtype\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0mfloat\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mreshape\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;36m2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;36m2\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 797\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mBbox\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpoints\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 798\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 799\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0m__format__\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mfmt\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~/miniconda3/envs/ironhack/lib/python3.7/site-packages/matplotlib/transforms.py\u001b[0m in \u001b[0;36m__init__\u001b[0;34m(self, points, **kwargs)\u001b[0m\n\u001b[1;32m 743\u001b[0m '\"[[x0, y0], [x1, y1]]\".')\n\u001b[1;32m 744\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_points\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mpoints\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 745\u001b[0;31m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_minpos\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0marray\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minf\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mnp\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0minf\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 746\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_ignore\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;32mTrue\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 747\u001b[0m \u001b[0;31m# it is helpful in some contexts to know if the bbox is a\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mKeyboardInterrupt\u001b[0m: " + ] + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "data[['RetailSales','RetailTransfers','WarehouseSales']].plot(kind='bar')" + ] }, { "cell_type": "markdown", @@ -60,7 +225,9 @@ "execution_count": null, "metadata": {}, "outputs": [], - "source": [] + "source": [ + "date['RetailSales']" + ] }, { "cell_type": "markdown", @@ -169,7 +336,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.2" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-subsetting-and-descriptive-stats/your-code/main.ipynb b/module-2_labs/lab-subsetting-and-descriptive-stats/your-code/main.ipynb index 6a2cca3..d315671 100644 --- a/module-2_labs/lab-subsetting-and-descriptive-stats/your-code/main.ipynb +++ b/module-2_labs/lab-subsetting-and-descriptive-stats/your-code/main.ipynb @@ -21,13 +21,15 @@ }, { "cell_type": "code", - "execution_count": 1, - "metadata": { - "collapsed": true - }, + "execution_count": 63, + "metadata": {}, "outputs": [], "source": [ - "# import libraries here" + "# import libraries here\n", + "\n", + "import pandas as pd\n", + "import numpy as np \n", + "import seaborn as sns\n" ] }, { @@ -48,13 +50,13 @@ }, { "cell_type": "code", - "execution_count": 2, - "metadata": { - "collapsed": true - }, + "execution_count": 8, + "metadata": {}, "outputs": [], "source": [ - "# your answer here\n" + "# your answer here\n", + "\n", + "temp = pd.read_csv('Temp_States.csv')" ] }, { @@ -66,10 +68,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 9, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " City State Temperature\n", + "0 NYC New York 19.444444\n", + "1 Albany New York 9.444444\n", + "2 Buffalo New York 3.333333\n", + "3 Hartford Connecticut 17.222222\n", + "4 Bridgeport Connecticut 14.444444\n", + "5 Treton New Jersey 22.222222\n", + "6 Newark New Jersey 20.000000\n" + ] + } + ], + "source": [ + "print(temp)" + ] }, { "cell_type": "markdown", @@ -80,11 +99,26 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "City object\n", + "State object\n", + "Temperature float64\n", + "dtype: object" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here\n" + "# your answer here\n", + "temp.dtypes" ] }, { @@ -96,11 +130,73 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 16, "metadata": {}, - "outputs": [], - "source": [ - "# your answer here" + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CityStateTemperature
0NYCNew York19.444444
1AlbanyNew York9.444444
2BuffaloNew York3.333333
\n", + "
" + ], + "text/plain": [ + " City State Temperature\n", + "0 NYC New York 19.444444\n", + "1 Albany New York 9.444444\n", + "2 Buffalo New York 3.333333" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "temp[temp['State']=='New York']" ] }, { @@ -112,11 +208,60 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 17, "metadata": {}, - "outputs": [], - "source": [ - "# your answer here\n" + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Temperature
State
New York10.740741
\n", + "
" + ], + "text/plain": [ + " Temperature\n", + "State \n", + "New York 10.740741" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "temp[temp['State']=='New York'].groupby('State').mean()" ] }, { @@ -128,11 +273,80 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 20, "metadata": {}, - "outputs": [], - "source": [ - "# your answer here\n" + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CityStateTemperature
0NYCNew York19.444444
3HartfordConnecticut17.222222
5TretonNew Jersey22.222222
6NewarkNew Jersey20.000000
\n", + "
" + ], + "text/plain": [ + " City State Temperature\n", + "0 NYC New York 19.444444\n", + "3 Hartford Connecticut 17.222222\n", + "5 Treton New Jersey 22.222222\n", + "6 Newark New Jersey 20.000000" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "temp.loc[temp['Temperature']>15]" ] }, { @@ -144,11 +358,27 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 21, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0 NYC\n", + "3 Hartford\n", + "5 Treton\n", + "6 Newark\n", + "Name: City, dtype: object" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "temp.loc[temp['Temperature']>15]['City']" ] }, { @@ -162,11 +392,25 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 23, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0 NYC\n", + "3 Hartford\n", + "Name: City, dtype: object" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here\n" + "# your answer here\n", + "temp.loc[(temp['Temperature']>15) & (temp['Temperature']<20)]['City']" ] }, { @@ -180,11 +424,71 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 26, "metadata": {}, - "outputs": [], - "source": [ - "# your answer here\n" + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Temperature
State
Connecticut1.964186
New Jersey1.571348
New York8.133404
\n", + "
" + ], + "text/plain": [ + " Temperature\n", + "State \n", + "Connecticut 1.964186\n", + "New Jersey 1.571348\n", + "New York 8.133404" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "temp.groupby('State').mean()\n", + "temp.groupby('State').std()\n" ] }, { @@ -205,13 +509,13 @@ }, { "cell_type": "code", - "execution_count": 11, - "metadata": { - "collapsed": true - }, + "execution_count": 27, + "metadata": {}, "outputs": [], "source": [ - "# your answer here" + "# your answer here\n", + "\n", + "employee = pd.read_csv('employee.csv')" ] }, { @@ -223,11 +527,30 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 29, "metadata": {}, - "outputs": [], - "source": [ - "# your answer here\n" + "outputs": [ + { + "data": { + "text/plain": [ + "Name object\n", + "Department object\n", + "Education object\n", + "Gender object\n", + "Title object\n", + "Years int64\n", + "Salary int64\n", + "dtype: object" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "employee.dtypes" ] }, { @@ -239,11 +562,68 @@ }, { "cell_type": "code", - "execution_count": 13, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# your answer here\n", + "employee['Years'].plot(kind='hist')" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "employee['Salary'].plot(kind='hist')\n", + "#The distribution of the Salary are not evenly distributed. There are a huge gap between lowest and highest salary. " ] }, { @@ -255,11 +635,23 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 39, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "48.888888888888886" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "employee['Salary'].mean()" ] }, { @@ -271,11 +663,23 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 40, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "70" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "employee['Salary'].max()" ] }, { @@ -287,11 +691,23 @@ }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 41, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "30" + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here\n" + "# your answer here\n", + "employee['Salary'].min()" ] }, { @@ -303,11 +719,78 @@ }, { "cell_type": "code", - "execution_count": 16, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameDepartmentEducationGenderTitleYearsSalary
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
\n", + "
" + ], + "text/plain": [ + " Name Department Education Gender Title Years Salary\n", + "1 Maria IT Master F analyst 2 30\n", + "2 David HR Master M analyst 2 30" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "employee.loc[employee['Salary']==employee['Salary'].min()]" ] }, { @@ -319,11 +802,67 @@ }, { "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here\n" + "execution_count": 45, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameDepartmentEducationGenderTitleYearsSalary
2DavidHRMasterManalyst230
\n", + "
" + ], + "text/plain": [ + " Name Department Education Gender Title Years Salary\n", + "2 David HR Master M analyst 2 30" + ] + }, + "execution_count": 45, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "employee.loc[employee['Name']=='David']" ] }, { @@ -335,11 +874,24 @@ }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 53, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "2 30\n", + "Name: Salary, dtype: int64" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here\n" + "# your answer here\n", + "employee.loc[employee['Name']=='David']['Salary']" ] }, { @@ -351,11 +903,89 @@ }, { "cell_type": "code", - "execution_count": 19, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameDepartmentEducationGenderTitleYearsSalary
4SamuelSalesMasterMassociate355
5EvaSalesBachelorFassociate255
7PedroITPhdMassociate760
\n", + "
" + ], + "text/plain": [ + " Name Department Education Gender Title Years Salary\n", + "4 Samuel Sales Master M associate 3 55\n", + "5 Eva Sales Bachelor F associate 2 55\n", + "7 Pedro IT Phd M associate 7 60" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "employee.loc[employee['Title']=='associate']" ] }, { @@ -369,20 +999,176 @@ }, { "cell_type": "code", - "execution_count": 20, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here- 1 method\n" + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameDepartmentEducationGenderTitleYearsSalary
0JoseITBachelorManalyst135
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
\n", + "
" + ], + "text/plain": [ + " Name Department Education Gender Title Years Salary\n", + "0 Jose IT Bachelor M analyst 1 35\n", + "1 Maria IT Master F analyst 2 30\n", + "2 David HR Master M analyst 2 30" + ] + }, + "execution_count": 55, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here- 1 method\n", + "employee.head(3)" ] }, { "cell_type": "code", - "execution_count": 21, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here- 2nd method\n" + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameDepartmentEducationGenderTitleYearsSalary
0JoseITBachelorManalyst135
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
\n", + "
" + ], + "text/plain": [ + " Name Department Education Gender Title Years Salary\n", + "0 Jose IT Bachelor M analyst 1 35\n", + "1 Maria IT Master F analyst 2 30\n", + "2 David HR Master M analyst 2 30" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here- 2nd method\n", + "employee.iloc[:3]" ] }, { @@ -394,11 +1180,67 @@ }, { "cell_type": "code", - "execution_count": 22, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here\n" + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameDepartmentEducationGenderTitleYearsSalary
7PedroITPhdMassociate760
\n", + "
" + ], + "text/plain": [ + " Name Department Education Gender Title Years Salary\n", + "7 Pedro IT Phd M associate 7 60" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "employee.loc[(employee['Title']=='associate')&(employee['Salary']>55)]" ] }, { @@ -410,11 +1252,30 @@ }, { "cell_type": "code", - "execution_count": 25, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Years\n", + "1 35.000000\n", + "2 38.333333\n", + "3 55.000000\n", + "4 35.000000\n", + "7 60.000000\n", + "8 70.000000\n", + "Name: Salary, dtype: float64" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "employee.groupby('Years')['Salary'].mean()" ] }, { @@ -426,11 +1287,27 @@ }, { "cell_type": "code", - "execution_count": 23, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 61, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Title\n", + "VP 70.000000\n", + "analyst 32.500000\n", + "associate 56.666667\n", + "Name: Salary, dtype: float64" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "employee.groupby('Title')['Salary'].mean()" ] }, { @@ -444,29 +1321,310 @@ }, { "cell_type": "code", - "execution_count": 26, - "metadata": {}, - "outputs": [], - "source": [ - "# draw boxplot here" + "execution_count": 87, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
YearsSalary
count9.0000009.000000
mean4.11111148.888889
std2.80376716.541194
min1.00000030.000000
25%2.00000035.000000
50%3.00000055.000000
75%7.00000060.000000
max8.00000070.000000
\n", + "
" + ], + "text/plain": [ + " Years Salary\n", + "count 9.000000 9.000000\n", + "mean 4.111111 48.888889\n", + "std 2.803767 16.541194\n", + "min 1.000000 30.000000\n", + "25% 2.000000 35.000000\n", + "50% 3.000000 55.000000\n", + "75% 7.000000 60.000000\n", + "max 8.000000 70.000000" + ] + }, + "execution_count": 87, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "employee.describe()" ] }, { "cell_type": "code", - "execution_count": 27, + "execution_count": 75, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# print first quartile here" + "# draw boxplot here\n", + "sns.boxplot(data=employee['Salary']);" ] }, { "cell_type": "code", - "execution_count": 28, - "metadata": {}, - "outputs": [], - "source": [ - "# print third quartile here" + "execution_count": 88, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameDepartmentEducationGenderTitleYearsSalary
0JoseITBachelorManalyst135
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
3SoniaHRBachelorFanalyst435
\n", + "
" + ], + "text/plain": [ + " Name Department Education Gender Title Years Salary\n", + "0 Jose IT Bachelor M analyst 1 35\n", + "1 Maria IT Master F analyst 2 30\n", + "2 David HR Master M analyst 2 30\n", + "3 Sonia HR Bachelor F analyst 4 35" + ] + }, + "execution_count": 88, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print first quartile here\n", + "(employee.loc\n", + " [(employee['Salary']>=employee.describe().loc['min']['Salary'])&\n", + " (employee['Salary']<=employee.describe().loc['25%']['Salary'])])" + ] + }, + { + "cell_type": "code", + "execution_count": 86, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameDepartmentEducationGenderTitleYearsSalary
4SamuelSalesMasterMassociate355
5EvaSalesBachelorFassociate255
7PedroITPhdMassociate760
\n", + "
" + ], + "text/plain": [ + " Name Department Education Gender Title Years Salary\n", + "4 Samuel Sales Master M associate 3 55\n", + "5 Eva Sales Bachelor F associate 2 55\n", + "7 Pedro IT Phd M associate 7 60" + ] + }, + "execution_count": 86, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# print third quartile here\n", + "(employee.loc\n", + " [(employee['Salary']>=employee.describe().loc['50%']['Salary'])&\n", + " (employee['Salary']<=employee.describe().loc['75%']['Salary'])])" ] }, { @@ -478,11 +1636,26 @@ }, { "cell_type": "code", - "execution_count": 29, + "execution_count": 71, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Gender\n", + "F 47.5\n", + "M 50.0\n", + "Name: Salary, dtype: float64" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "employee.groupby('Gender')['Salary'].mean()" ] }, { @@ -496,11 +1669,95 @@ }, { "cell_type": "code", - "execution_count": 30, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameEducationGenderTitleYearsSalary
Department
HRAnaBachelorFVP230
ITCarlosBachelorFVP130
SalesEvaBachelorFassociate255
\n", + "
" + ], + "text/plain": [ + " Name Education Gender Title Years Salary\n", + "Department \n", + "HR Ana Bachelor F VP 2 30\n", + "IT Carlos Bachelor F VP 1 30\n", + "Sales Eva Bachelor F associate 2 55" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "employee.groupby('Department').min()" ] }, { @@ -516,11 +1773,27 @@ }, { "cell_type": "code", - "execution_count": 32, - "metadata": {}, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 98, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Department\n", + "HR 40\n", + "IT 40\n", + "Sales 0\n", + "Name: Salary, dtype: int64" + ] + }, + "execution_count": 98, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "employee.groupby('Department')['Salary'].apply(lambda x: max(x)-min(x))" ] }, { @@ -541,13 +1814,12 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, + "execution_count": 102, + "metadata": {}, "outputs": [], "source": [ - "# your answer here" + "# your answer here\n", + "orders = pd.read_csv('Orders.zip')" ] }, { @@ -559,24 +1831,226 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 106, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Unnamed: 0 int64\n", + "InvoiceNo int64\n", + "StockCode object\n", + "year int64\n", + "month int64\n", + "day int64\n", + "hour int64\n", + "Description object\n", + "Quantity int64\n", + "InvoiceDate object\n", + "UnitPrice float64\n", + "CustomerID int64\n", + "Country object\n", + "amount_spent float64\n", + "dtype: object" + ] + }, + "execution_count": 106, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.dtypes" ] }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 107, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0InvoiceNoyearmonthdayhourQuantityUnitPriceCustomerIDamount_spent
count397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000
mean278465.221859560617.1266452010.9342597.6125373.61455512.72824713.0218233.11617415294.31517122.394749
std152771.36830313106.1676950.2478293.4165271.9282742.273535180.42021022.0967881713.169877309.055588
min0.000000536365.0000002010.0000001.0000001.0000006.0000001.0000000.00000012346.0000000.000000
25%148333.750000549234.0000002011.0000005.0000002.00000011.0000002.0000001.25000013969.0000004.680000
50%284907.500000561893.0000002011.0000008.0000003.00000013.0000006.0000001.95000015159.00000011.800000
75%410079.250000572090.0000002011.00000011.0000005.00000014.00000012.0000003.75000016795.00000019.800000
max541908.000000581587.0000002011.00000012.0000007.00000020.00000080995.0000008142.75000018287.000000168469.600000
\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 InvoiceNo year month \\\n", + "count 397924.000000 397924.000000 397924.000000 397924.000000 \n", + "mean 278465.221859 560617.126645 2010.934259 7.612537 \n", + "std 152771.368303 13106.167695 0.247829 3.416527 \n", + "min 0.000000 536365.000000 2010.000000 1.000000 \n", + "25% 148333.750000 549234.000000 2011.000000 5.000000 \n", + "50% 284907.500000 561893.000000 2011.000000 8.000000 \n", + "75% 410079.250000 572090.000000 2011.000000 11.000000 \n", + "max 541908.000000 581587.000000 2011.000000 12.000000 \n", + "\n", + " day hour Quantity UnitPrice \\\n", + "count 397924.000000 397924.000000 397924.000000 397924.000000 \n", + "mean 3.614555 12.728247 13.021823 3.116174 \n", + "std 1.928274 2.273535 180.420210 22.096788 \n", + "min 1.000000 6.000000 1.000000 0.000000 \n", + "25% 2.000000 11.000000 2.000000 1.250000 \n", + "50% 3.000000 13.000000 6.000000 1.950000 \n", + "75% 5.000000 14.000000 12.000000 3.750000 \n", + "max 7.000000 20.000000 80995.000000 8142.750000 \n", + "\n", + " CustomerID amount_spent \n", + "count 397924.000000 397924.000000 \n", + "mean 15294.315171 22.394749 \n", + "std 1713.169877 309.055588 \n", + "min 12346.000000 0.000000 \n", + "25% 13969.000000 4.680000 \n", + "50% 15159.000000 11.800000 \n", + "75% 16795.000000 19.800000 \n", + "max 18287.000000 168469.600000 " + ] + }, + "execution_count": 107, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.describe()" ] }, { @@ -588,13 +2062,23 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], + "execution_count": 109, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "3.1161744805540756" + ] + }, + "execution_count": 109, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "orders['UnitPrice'].mean()" ] }, { @@ -606,24 +2090,44 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], + "execution_count": 111, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "8142.75" + ] + }, + "execution_count": 111, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "orders['UnitPrice'].max()" ] }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], + "execution_count": 110, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.0" + ] + }, + "execution_count": 110, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "orders['UnitPrice'].min()" ] }, { @@ -635,13 +2139,290 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 112, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
4250642153694422383201012512lunch bag suki design702010-12-03 12:20:001.6512557Spain115.50
4251642253694422384201012512lunch bag pink polkadot1002010-12-03 12:20:001.4512557Spain145.00
4252642353694420727201012512lunch bag black skull.602010-12-03 12:20:001.6512557Spain99.00
4253642453694420725201012512lunch bag red retrospot702010-12-03 12:20:001.6512557Spain115.50
4254642553694420728201012512lunch bag cars blue1002010-12-03 12:20:001.4512557Spain145.00
.............................................
39473353527158119323291201112317dolly girl childrens cup22011-12-07 17:05:001.2517097Spain2.50
39473453527258119385232D201112317set/3 decoupage stacking tins12011-12-07 17:05:004.9517097Spain4.95
39473553527358119322721201112317set of 3 cake tins sketchbook22011-12-07 17:05:001.9517097Spain3.90
39473653527458119323241201112317treasure tin gymkhana design12011-12-07 17:05:002.0817097Spain2.08
39473753527558119323247201112317biscuit tin 50's christmas12011-12-07 17:05:002.8917097Spain2.89
\n", + "

2485 rows × 14 columns

\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", + "4250 6421 536944 22383 2010 12 5 12 \n", + "4251 6422 536944 22384 2010 12 5 12 \n", + "4252 6423 536944 20727 2010 12 5 12 \n", + "4253 6424 536944 20725 2010 12 5 12 \n", + "4254 6425 536944 20728 2010 12 5 12 \n", + "... ... ... ... ... ... ... ... \n", + "394733 535271 581193 23291 2011 12 3 17 \n", + "394734 535272 581193 85232D 2011 12 3 17 \n", + "394735 535273 581193 22721 2011 12 3 17 \n", + "394736 535274 581193 23241 2011 12 3 17 \n", + "394737 535275 581193 23247 2011 12 3 17 \n", + "\n", + " Description Quantity InvoiceDate \\\n", + "4250 lunch bag suki design 70 2010-12-03 12:20:00 \n", + "4251 lunch bag pink polkadot 100 2010-12-03 12:20:00 \n", + "4252 lunch bag black skull. 60 2010-12-03 12:20:00 \n", + "4253 lunch bag red retrospot 70 2010-12-03 12:20:00 \n", + "4254 lunch bag cars blue 100 2010-12-03 12:20:00 \n", + "... ... ... ... \n", + "394733 dolly girl childrens cup 2 2011-12-07 17:05:00 \n", + "394734 set/3 decoupage stacking tins 1 2011-12-07 17:05:00 \n", + "394735 set of 3 cake tins sketchbook 2 2011-12-07 17:05:00 \n", + "394736 treasure tin gymkhana design 1 2011-12-07 17:05:00 \n", + "394737 biscuit tin 50's christmas 1 2011-12-07 17:05:00 \n", + "\n", + " UnitPrice CustomerID Country amount_spent \n", + "4250 1.65 12557 Spain 115.50 \n", + "4251 1.45 12557 Spain 145.00 \n", + "4252 1.65 12557 Spain 99.00 \n", + "4253 1.65 12557 Spain 115.50 \n", + "4254 1.45 12557 Spain 145.00 \n", + "... ... ... ... ... \n", + "394733 1.25 17097 Spain 2.50 \n", + "394734 4.95 17097 Spain 4.95 \n", + "394735 1.95 17097 Spain 3.90 \n", + "394736 2.08 17097 Spain 2.08 \n", + "394737 2.89 17097 Spain 2.89 \n", + "\n", + "[2485 rows x 14 columns]" + ] + }, + "execution_count": 112, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.loc[orders['Country']=='Spain']" ] }, { @@ -654,13 +2435,23 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], + "execution_count": 136, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "30" + ] + }, + "execution_count": 136, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "orders.loc[orders['Country']=='Spain']['CustomerID'].value_counts().count()" ] }, { @@ -672,13 +2463,290 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 119, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
46465363712208620101239paper chain kit 50's christmas802010-12-01 09:00:002.5513748United Kingdom204.00
83835363762173320101239red hanging heart t-light holder642010-12-01 09:32:002.5515291United Kingdom163.20
96965363782121220101239pack of 72 retrospot cake cases1202010-12-01 09:37:000.4214688United Kingdom50.40
10210253637885071B20101239red charlie+lola personal doorsign962010-12-01 09:37:000.3814688United Kingdom36.48
17417653638685099C20101239jumbo bag baroque black white1002010-12-01 09:57:001.6516029United Kingdom165.00
.............................................
39772054170258156623404201112511home sweet home blackboard1442011-12-09 11:50:003.2618102United Kingdom469.44
39772154170358156721417201112511cockle shell dish842011-12-09 11:56:000.7916626United Kingdom66.36
39772954171158156721326201112511aged glass silver t-light holder1442011-12-09 11:56:000.5516626United Kingdom79.20
39776154174658157123167201112512small ceramic top storage jar962011-12-09 12:00:000.6915311United Kingdom66.24
39788254186758158420832201112512red flock love heart photo frame722011-12-09 12:25:000.7213777United Kingdom51.84
\n", + "

11609 rows × 14 columns

\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", + "46 46 536371 22086 2010 12 3 9 \n", + "83 83 536376 21733 2010 12 3 9 \n", + "96 96 536378 21212 2010 12 3 9 \n", + "102 102 536378 85071B 2010 12 3 9 \n", + "174 176 536386 85099C 2010 12 3 9 \n", + "... ... ... ... ... ... ... ... \n", + "397720 541702 581566 23404 2011 12 5 11 \n", + "397721 541703 581567 21417 2011 12 5 11 \n", + "397729 541711 581567 21326 2011 12 5 11 \n", + "397761 541746 581571 23167 2011 12 5 12 \n", + "397882 541867 581584 20832 2011 12 5 12 \n", + "\n", + " Description Quantity InvoiceDate \\\n", + "46 paper chain kit 50's christmas 80 2010-12-01 09:00:00 \n", + "83 red hanging heart t-light holder 64 2010-12-01 09:32:00 \n", + "96 pack of 72 retrospot cake cases 120 2010-12-01 09:37:00 \n", + "102 red charlie+lola personal doorsign 96 2010-12-01 09:37:00 \n", + "174 jumbo bag baroque black white 100 2010-12-01 09:57:00 \n", + "... ... ... ... \n", + "397720 home sweet home blackboard 144 2011-12-09 11:50:00 \n", + "397721 cockle shell dish 84 2011-12-09 11:56:00 \n", + "397729 aged glass silver t-light holder 144 2011-12-09 11:56:00 \n", + "397761 small ceramic top storage jar 96 2011-12-09 12:00:00 \n", + "397882 red flock love heart photo frame 72 2011-12-09 12:25:00 \n", + "\n", + " UnitPrice CustomerID Country amount_spent \n", + "46 2.55 13748 United Kingdom 204.00 \n", + "83 2.55 15291 United Kingdom 163.20 \n", + "96 0.42 14688 United Kingdom 50.40 \n", + "102 0.38 14688 United Kingdom 36.48 \n", + "174 1.65 16029 United Kingdom 165.00 \n", + "... ... ... ... ... \n", + "397720 3.26 18102 United Kingdom 469.44 \n", + "397721 0.79 16626 United Kingdom 66.36 \n", + "397729 0.55 16626 United Kingdom 79.20 \n", + "397761 0.69 15311 United Kingdom 66.24 \n", + "397882 0.72 13777 United Kingdom 51.84 \n", + "\n", + "[11609 rows x 14 columns]" + ] + }, + "execution_count": 119, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.loc[orders['Quantity']>50]" ] }, { @@ -690,13 +2758,167 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 121, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
4250642153694422383201012512lunch bag suki design702010-12-03 12:20:001.6512557Spain115.5
4251642253694422384201012512lunch bag pink polkadot1002010-12-03 12:20:001.4512557Spain145.0
4252642353694420727201012512lunch bag black skull.602010-12-03 12:20:001.6512557Spain99.0
4253642453694420725201012512lunch bag red retrospot702010-12-03 12:20:001.6512557Spain115.5
4254642553694420728201012512lunch bag cars blue1002010-12-03 12:20:001.4512557Spain145.0
\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", + "4250 6421 536944 22383 2010 12 5 12 \n", + "4251 6422 536944 22384 2010 12 5 12 \n", + "4252 6423 536944 20727 2010 12 5 12 \n", + "4253 6424 536944 20725 2010 12 5 12 \n", + "4254 6425 536944 20728 2010 12 5 12 \n", + "\n", + " Description Quantity InvoiceDate UnitPrice \\\n", + "4250 lunch bag suki design 70 2010-12-03 12:20:00 1.65 \n", + "4251 lunch bag pink polkadot 100 2010-12-03 12:20:00 1.45 \n", + "4252 lunch bag black skull. 60 2010-12-03 12:20:00 1.65 \n", + "4253 lunch bag red retrospot 70 2010-12-03 12:20:00 1.65 \n", + "4254 lunch bag cars blue 100 2010-12-03 12:20:00 1.45 \n", + "\n", + " CustomerID Country amount_spent \n", + "4250 12557 Spain 115.5 \n", + "4251 12557 Spain 145.0 \n", + "4252 12557 Spain 99.0 \n", + "4253 12557 Spain 115.5 \n", + "4254 12557 Spain 145.0 " + ] + }, + "execution_count": 121, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.loc[(orders['Quantity']>50)&(orders['Country']=='Spain')].head()" ] }, { @@ -708,13 +2930,167 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 122, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
6914930253719722841201012714round cake tin vintage green12010-12-05 14:02:000.012647Germany0.0
225393357653926322580201012414advent calendar gingham sack42010-12-16 14:36:000.016560United Kingdom0.0
253794008953972222423201012213regency cakestand 3 tier102010-12-21 13:45:000.014911EIRE0.0
29080470685403722209020111416paper bunting retrospot242011-01-06 16:41:000.013081United Kingdom0.0
29082470705403722255320111416plasters in tin skulls242011-01-06 16:41:000.013081United Kingdom0.0
\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", + "6914 9302 537197 22841 2010 12 7 14 \n", + "22539 33576 539263 22580 2010 12 4 14 \n", + "25379 40089 539722 22423 2010 12 2 13 \n", + "29080 47068 540372 22090 2011 1 4 16 \n", + "29082 47070 540372 22553 2011 1 4 16 \n", + "\n", + " Description Quantity InvoiceDate UnitPrice \\\n", + "6914 round cake tin vintage green 1 2010-12-05 14:02:00 0.0 \n", + "22539 advent calendar gingham sack 4 2010-12-16 14:36:00 0.0 \n", + "25379 regency cakestand 3 tier 10 2010-12-21 13:45:00 0.0 \n", + "29080 paper bunting retrospot 24 2011-01-06 16:41:00 0.0 \n", + "29082 plasters in tin skulls 24 2011-01-06 16:41:00 0.0 \n", + "\n", + " CustomerID Country amount_spent \n", + "6914 12647 Germany 0.0 \n", + "22539 16560 United Kingdom 0.0 \n", + "25379 14911 EIRE 0.0 \n", + "29080 13081 United Kingdom 0.0 \n", + "29082 13081 United Kingdom 0.0 " + ] + }, + "execution_count": 122, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.loc[orders['UnitPrice']==0].head()" ] }, { @@ -727,13 +3103,167 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 124, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
93935363782072520101239lunch bag red retrospot102010-12-01 09:37:001.6514688United Kingdom16.50
1721745363852266220101239lunch bag dolly girl design102010-12-01 09:56:001.6517420United Kingdom16.50
35436353640122662201012311lunch bag dolly girl design12010-12-01 11:21:001.6515862United Kingdom1.65
35936853640120725201012311lunch bag red retrospot12010-12-01 11:21:001.6515862United Kingdom1.65
36036953640122382201012311lunch bag spaceboy design22010-12-01 11:21:001.6515862United Kingdom3.30
\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", + "93 93 536378 20725 2010 12 3 9 \n", + "172 174 536385 22662 2010 12 3 9 \n", + "354 363 536401 22662 2010 12 3 11 \n", + "359 368 536401 20725 2010 12 3 11 \n", + "360 369 536401 22382 2010 12 3 11 \n", + "\n", + " Description Quantity InvoiceDate UnitPrice \\\n", + "93 lunch bag red retrospot 10 2010-12-01 09:37:00 1.65 \n", + "172 lunch bag dolly girl design 10 2010-12-01 09:56:00 1.65 \n", + "354 lunch bag dolly girl design 1 2010-12-01 11:21:00 1.65 \n", + "359 lunch bag red retrospot 1 2010-12-01 11:21:00 1.65 \n", + "360 lunch bag spaceboy design 2 2010-12-01 11:21:00 1.65 \n", + "\n", + " CustomerID Country amount_spent \n", + "93 14688 United Kingdom 16.50 \n", + "172 17420 United Kingdom 16.50 \n", + "354 15862 United Kingdom 1.65 \n", + "359 15862 United Kingdom 1.65 \n", + "360 15862 United Kingdom 3.30 " + ] + }, + "execution_count": 124, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.loc[orders['Description'].str.contains('lunch bag')].head()" ] }, { @@ -745,13 +3275,167 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 125, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
26340426785400152072520111211lunch bag red retrospot102011-01-04 11:40:001.6513319United Kingdom16.50
26341426795400152072620111211lunch bag woodland102011-01-04 11:40:001.6513319United Kingdom16.50
26512428515400232238220111212lunch bag spaceboy design22011-01-04 12:58:001.6515039United Kingdom3.30
26513428525400232072620111212lunch bag woodland12011-01-04 12:58:001.6515039United Kingdom1.65
26860436165400982238420111215lunch bag pink polkadot12011-01-04 15:50:001.6516241United Kingdom1.65
\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", + "26340 42678 540015 20725 2011 1 2 11 \n", + "26341 42679 540015 20726 2011 1 2 11 \n", + "26512 42851 540023 22382 2011 1 2 12 \n", + "26513 42852 540023 20726 2011 1 2 12 \n", + "26860 43616 540098 22384 2011 1 2 15 \n", + "\n", + " Description Quantity InvoiceDate UnitPrice \\\n", + "26340 lunch bag red retrospot 10 2011-01-04 11:40:00 1.65 \n", + "26341 lunch bag woodland 10 2011-01-04 11:40:00 1.65 \n", + "26512 lunch bag spaceboy design 2 2011-01-04 12:58:00 1.65 \n", + "26513 lunch bag woodland 1 2011-01-04 12:58:00 1.65 \n", + "26860 lunch bag pink polkadot 1 2011-01-04 15:50:00 1.65 \n", + "\n", + " CustomerID Country amount_spent \n", + "26340 13319 United Kingdom 16.50 \n", + "26341 13319 United Kingdom 16.50 \n", + "26512 15039 United Kingdom 3.30 \n", + "26513 15039 United Kingdom 1.65 \n", + "26860 16241 United Kingdom 1.65 " + ] + }, + "execution_count": 125, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.loc[(orders['Description'].str.contains('lunch bag')) & (orders['year']==2011)].head()" ] }, { @@ -763,13 +3447,34 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 126, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "15.00 20082\n", + "19.80 11033\n", + "17.70 9174\n", + "16.50 8490\n", + "10.20 8028\n", + " ... \n", + "176.28 1\n", + "61.95 1\n", + "17.73 1\n", + "308.89 1\n", + "77.50 1\n", + "Name: amount_spent, Length: 2811, dtype: int64" + ] + }, + "execution_count": 126, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders['amount_spent'].value_counts()" ] }, { @@ -781,13 +3486,167 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 127, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
1994752854215619042207520118186 ribbons elegant christmas962011-08-01 08:30:001.4517941United Kingdom139.20
19947628542256190485049E2011818scandinavian reds ribbons1562011-08-01 08:30:001.0617941United Kingdom165.36
199477285423561905213852011819ivory hanging decoration heart242011-08-01 09:31:000.8514947United Kingdom20.40
19947828542456190584970L2011819single heart zinc t-light holder122011-08-01 09:31:000.9514947United Kingdom11.40
19947928542556190584970S2011819hanging heart zinc t-light holder122011-08-01 09:31:000.8514947United Kingdom10.20
\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", + "199475 285421 561904 22075 2011 8 1 8 \n", + "199476 285422 561904 85049E 2011 8 1 8 \n", + "199477 285423 561905 21385 2011 8 1 9 \n", + "199478 285424 561905 84970L 2011 8 1 9 \n", + "199479 285425 561905 84970S 2011 8 1 9 \n", + "\n", + " Description Quantity InvoiceDate \\\n", + "199475 6 ribbons elegant christmas 96 2011-08-01 08:30:00 \n", + "199476 scandinavian reds ribbons 156 2011-08-01 08:30:00 \n", + "199477 ivory hanging decoration heart 24 2011-08-01 09:31:00 \n", + "199478 single heart zinc t-light holder 12 2011-08-01 09:31:00 \n", + "199479 hanging heart zinc t-light holder 12 2011-08-01 09:31:00 \n", + "\n", + " UnitPrice CustomerID Country amount_spent \n", + "199475 1.45 17941 United Kingdom 139.20 \n", + "199476 1.06 17941 United Kingdom 165.36 \n", + "199477 0.85 14947 United Kingdom 20.40 \n", + "199478 0.95 14947 United Kingdom 11.40 \n", + "199479 0.85 14947 United Kingdom 10.20 " + ] + }, + "execution_count": 127, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.loc[(orders['month']==8)].head()" ] }, { @@ -800,13 +3659,46 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 129, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "United Kingdom 23105\n", + "Germany 795\n", + "EIRE 593\n", + "France 569\n", + "Netherlands 280\n", + "Switzerland 267\n", + "Spain 252\n", + "Belgium 194\n", + "Israel 171\n", + "Channel Islands 140\n", + "Australia 107\n", + "Italy 95\n", + "Austria 88\n", + "Norway 77\n", + "Finland 61\n", + "Malta 55\n", + "Portugal 41\n", + "Sweden 40\n", + "Unspecified 23\n", + "Iceland 22\n", + "Poland 17\n", + "Denmark 16\n", + "Canada 5\n", + "Name: Country, dtype: int64" + ] + }, + "execution_count": 129, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.loc[(orders['month']==8)]['Country'].value_counts()" ] }, { @@ -818,13 +3710,61 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 130, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Country\n", + "Australia 116.895620\n", + "Austria 25.624824\n", + "Bahrain 32.258824\n", + "Belgium 20.283772\n", + "Brazil 35.737500\n", + "Canada 24.280662\n", + "Channel Islands 27.340160\n", + "Cyprus 22.134169\n", + "Czech Republic 33.069600\n", + "Denmark 49.882474\n", + "EIRE 36.687745\n", + "European Community 21.670833\n", + "Finland 32.913985\n", + "France 25.056827\n", + "Germany 25.311562\n", + "Greece 32.831172\n", + "Iceland 23.681319\n", + "Israel 29.119718\n", + "Italy 23.064960\n", + "Japan 116.561900\n", + "Lebanon 37.641778\n", + "Lithuania 47.458857\n", + "Malta 24.335625\n", + "Netherlands 120.798282\n", + "Norway 33.736418\n", + "Poland 22.226212\n", + "Portugal 22.872702\n", + "RSA 17.281207\n", + "Saudi Arabia 16.213333\n", + "Singapore 95.852658\n", + "Spain 24.779521\n", + "Sweden 85.096075\n", + "Switzerland 30.642752\n", + "USA 20.002179\n", + "United Arab Emirates 27.974706\n", + "United Kingdom 20.625073\n", + "Unspecified 10.930615\n", + "Name: amount_spent, dtype: float64" + ] + }, + "execution_count": 130, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.groupby('Country')['amount_spent'].mean()" ] }, { @@ -836,13 +3776,87 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 134, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
3974515404215814832384320111259paper craft , little birdie809952011-12-09 09:15:002.0816446United Kingdom168469.6
\n", + "
" + ], + "text/plain": [ + " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", + "397451 540421 581483 23843 2011 12 5 9 \n", + "\n", + " Description Quantity InvoiceDate UnitPrice \\\n", + "397451 paper craft , little birdie 80995 2011-12-09 09:15:00 2.08 \n", + "\n", + " CustomerID Country amount_spent \n", + "397451 16446 United Kingdom 168469.6 " + ] + }, + "execution_count": 134, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.loc[orders['amount_spent']==orders['amount_spent'].max()]" ] }, { @@ -854,13 +3868,26 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 135, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "year\n", + "2010 21.892733\n", + "2011 22.430074\n", + "Name: amount_spent, dtype: float64" + ] + }, + "execution_count": 135, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "orders.groupby('year')['amount_spent'].mean()" ] } ], @@ -881,7 +3908,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-time-series/your-code/main.ipynb b/module-2_labs/lab-time-series/your-code/main.ipynb index 89f1b11..c480d60 100644 --- a/module-2_labs/lab-time-series/your-code/main.ipynb +++ b/module-2_labs/lab-time-series/your-code/main.ipynb @@ -12,12 +12,15 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 68, "metadata": {}, "outputs": [], "source": [ "# Import numpy and pandas\n", - "\n" + "\n", + "import numpy as np\n", + "import pandas as pd\n", + "from statsmodels import api " ] }, { @@ -33,7 +36,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "metadata": {}, "outputs": [], "source": [ @@ -52,12 +55,156 @@ }, { "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
attitude.rollattitude.pitchattitude.yawgravity.xgravity.ygravity.zrotationRate.xrotationRate.yrotationRate.zuserAcceleration.xuserAcceleration.yuserAcceleration.z
01.528132-0.7338960.6963720.7418950.669768-0.0316720.3167380.7781801.0827640.294894-0.1844930.377542
11.527992-0.7169870.6777620.7530990.657116-0.0322550.8420320.4244460.6435740.2194050.0358460.114866
21.527765-0.7069990.6709510.7596110.649555-0.032707-0.138143-0.0407410.3435630.0107140.134701-0.167808
31.516768-0.7046780.6757350.7607090.647788-0.041140-0.025005-1.0487170.035860-0.0083890.1367880.094958
41.493941-0.7039180.6729940.7600620.647210-0.0585300.114253-0.9128900.0473410.1994410.353996-0.044299
\n", + "
" + ], + "text/plain": [ + " attitude.roll attitude.pitch attitude.yaw gravity.x gravity.y \\\n", + "0 1.528132 -0.733896 0.696372 0.741895 0.669768 \n", + "1 1.527992 -0.716987 0.677762 0.753099 0.657116 \n", + "2 1.527765 -0.706999 0.670951 0.759611 0.649555 \n", + "3 1.516768 -0.704678 0.675735 0.760709 0.647788 \n", + "4 1.493941 -0.703918 0.672994 0.760062 0.647210 \n", + "\n", + " gravity.z rotationRate.x rotationRate.y rotationRate.z \\\n", + "0 -0.031672 0.316738 0.778180 1.082764 \n", + "1 -0.032255 0.842032 0.424446 0.643574 \n", + "2 -0.032707 -0.138143 -0.040741 0.343563 \n", + "3 -0.041140 -0.025005 -1.048717 0.035860 \n", + "4 -0.058530 0.114253 -0.912890 0.047341 \n", + "\n", + " userAcceleration.x userAcceleration.y userAcceleration.z \n", + "0 0.294894 -0.184493 0.377542 \n", + "1 0.219405 0.035846 0.114866 \n", + "2 0.010714 0.134701 -0.167808 \n", + "3 -0.008389 0.136788 0.094958 \n", + "4 0.199441 0.353996 -0.044299 " + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "sensor.head()" ] }, { @@ -69,12 +216,268 @@ }, { "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
attitude.rollattitude.pitchattitude.yawgravity.xgravity.ygravity.zrotationRate.xrotationRate.yrotationRate.zuserAcceleration.xuserAcceleration.yuserAcceleration.z
01.528132-0.7338960.6963720.7418950.669768-0.0316720.3167380.7781801.0827640.294894-0.1844930.377542
11.527992-0.7169870.6777620.7530990.657116-0.0322550.8420320.4244460.6435740.2194050.0358460.114866
21.527765-0.7069990.6709510.7596110.649555-0.032707-0.138143-0.0407410.3435630.0107140.134701-0.167808
31.516768-0.7046780.6757350.7607090.647788-0.041140-0.025005-1.0487170.035860-0.0083890.1367880.094958
41.493941-0.7039180.6729940.7600620.647210-0.0585300.114253-0.9128900.0473410.1994410.353996-0.044299
.......................................
17461.797120-0.5623242.4458890.8244430.5331540.189844-0.1232110.909536-0.379757-0.2683670.006733-0.064874
17471.814297-0.5697192.4496550.8172120.5393960.203020-0.0576410.723118-0.437812-0.102444-0.060666-0.229738
17481.830821-0.5783672.4479670.8092070.5466580.2152880.3432380.997236-0.338155-0.085590-0.030209-0.087740
17491.849557-0.5869622.4394580.8004850.5538340.2291100.4701441.227937-0.332223-0.0481050.0295550.060441
17501.869375-0.5967832.4337750.7905510.5619840.2433150.2918731.102207-0.436925-0.065011-0.0425750.046052
\n", + "

1751 rows × 12 columns

\n", + "
" + ], + "text/plain": [ + " attitude.roll attitude.pitch attitude.yaw gravity.x gravity.y \\\n", + "0 1.528132 -0.733896 0.696372 0.741895 0.669768 \n", + "1 1.527992 -0.716987 0.677762 0.753099 0.657116 \n", + "2 1.527765 -0.706999 0.670951 0.759611 0.649555 \n", + "3 1.516768 -0.704678 0.675735 0.760709 0.647788 \n", + "4 1.493941 -0.703918 0.672994 0.760062 0.647210 \n", + "... ... ... ... ... ... \n", + "1746 1.797120 -0.562324 2.445889 0.824443 0.533154 \n", + "1747 1.814297 -0.569719 2.449655 0.817212 0.539396 \n", + "1748 1.830821 -0.578367 2.447967 0.809207 0.546658 \n", + "1749 1.849557 -0.586962 2.439458 0.800485 0.553834 \n", + "1750 1.869375 -0.596783 2.433775 0.790551 0.561984 \n", + "\n", + " gravity.z rotationRate.x rotationRate.y rotationRate.z \\\n", + "0 -0.031672 0.316738 0.778180 1.082764 \n", + "1 -0.032255 0.842032 0.424446 0.643574 \n", + "2 -0.032707 -0.138143 -0.040741 0.343563 \n", + "3 -0.041140 -0.025005 -1.048717 0.035860 \n", + "4 -0.058530 0.114253 -0.912890 0.047341 \n", + "... ... ... ... ... \n", + "1746 0.189844 -0.123211 0.909536 -0.379757 \n", + "1747 0.203020 -0.057641 0.723118 -0.437812 \n", + "1748 0.215288 0.343238 0.997236 -0.338155 \n", + "1749 0.229110 0.470144 1.227937 -0.332223 \n", + "1750 0.243315 0.291873 1.102207 -0.436925 \n", + "\n", + " userAcceleration.x userAcceleration.y userAcceleration.z \n", + "0 0.294894 -0.184493 0.377542 \n", + "1 0.219405 0.035846 0.114866 \n", + "2 0.010714 0.134701 -0.167808 \n", + "3 -0.008389 0.136788 0.094958 \n", + "4 0.199441 0.353996 -0.044299 \n", + "... ... ... ... \n", + "1746 -0.268367 0.006733 -0.064874 \n", + "1747 -0.102444 -0.060666 -0.229738 \n", + "1748 -0.085590 -0.030209 -0.087740 \n", + "1749 -0.048105 0.029555 0.060441 \n", + "1750 -0.065011 -0.042575 0.046052 \n", + "\n", + "[1751 rows x 12 columns]" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "sensor.isnull().sum()\n", + "sensor.dropna()" ] }, { @@ -86,12 +489,24 @@ }, { "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(1751, 12)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "sensor.shape" ] }, { @@ -103,12 +518,35 @@ }, { "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "DatetimeIndex(['2018-01-01 00:00:00', '2018-01-01 00:00:01',\n", + " '2018-01-01 00:00:02', '2018-01-01 00:00:03',\n", + " '2018-01-01 00:00:04', '2018-01-01 00:00:05',\n", + " '2018-01-01 00:00:06', '2018-01-01 00:00:07',\n", + " '2018-01-01 00:00:08', '2018-01-01 00:00:09',\n", + " ...\n", + " '2018-01-01 00:29:01', '2018-01-01 00:29:02',\n", + " '2018-01-01 00:29:03', '2018-01-01 00:29:04',\n", + " '2018-01-01 00:29:05', '2018-01-01 00:29:06',\n", + " '2018-01-01 00:29:07', '2018-01-01 00:29:08',\n", + " '2018-01-01 00:29:09', '2018-01-01 00:29:10'],\n", + " dtype='datetime64[ns]', length=1751, freq='S')" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "pd.date_range('1/1/2018',periods=1751,freq='S')" ] }, { @@ -125,7 +563,8 @@ "outputs": [], "source": [ "# Your code here:\n", - "\n" + "sensor.index=pd.date_range('1/1/2018',periods=1751,freq='S')\n", + "sensor\n" ] }, { @@ -139,12 +578,72 @@ }, { "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [], + "execution_count": 77, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAagAAAEaCAYAAABEsMO+AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOyddXgUZ/7AP+/G3RMIJCQBgrsWd6iXuvfq7bV3v17tele3O+ruLXWhV+qUUoq7u4SEABHi7tnsvr8/dmd21iJkgQDzeZ48sKPvzLzz9fcdIaVER0dHR0eno2E42Q3Q0dHR0dFxha6gdHR0dHQ6JLqC0tHR0dHpkOgKSkdHR0enQ6IrKB0dHR2dDomuoHR0dHR0OiS6gtLR0dHR6ZDoCkpHR0dHp0PifbIbcDyIjo6WSUlJJ7sZOjo6OjqtYMuWLcVSyhjH5e1WUEKIKsDtdBRSytD2nqOtJCUlsXnz5hN92mMm6aEFnDugM29dM/SEnXN1ejG1jU3M6NfphJ1TR0dHxxVCiCOulrdbQUkpQ6wneArIBz4HBHANENLe458pLNiVx1sn8HzXfrQBgMNzzj2BZ9XpiKQXVBEd7EdEkO/JborOKcaytEKignwZ2DX8uBzfkzmomVLKt6WUVVLKSinlO8AlHjy+jo7OcWD6Kys5743VJ7sZOqcgN368iQveXHPcju9JBWUSQlwjhPASQhiEENcAJg8eX0dH5ziRW153spugo+OEJxXU1cDlQIH17zLrMh0dnXZgMktqGppOdjN0dE44HlNQUsrDUsoLpZTRUsoYKeVFUsrDnjr+qcT+/EoOF9e0aluzWf/cyclg3qYsSmsa27zf9XM3MuWl5Z5vUDM88uMu+j2+CP3TODpnGh5TUEKIVCHEEiHEbuvvgUKIRzx1/FOJWa+uYtKLy1u1rdFsPr6NOUZKqhsor227AD8VOFhUzT/n7+L/vtnW5n1XHigis6h1xoen+HpjNgCNpo7ZV3R0jheeDPF9APwLMAJIKXcCV7b3oEKIuUKIQkXxnW40mTqmVTzsmT8Z/NTik92M40Jjk0XQF1TWn+SWtA4hLP8aj0Nf0T14nY6MJxVUoJRyo8MyTwTOPwFmeeA4HZKOqqBOZwxWiX+qRcwUxdpWftyWS9/HfqehyblmyXSq3YQ28ObSdFYcKDrZzTju1BtNZJfWntQ2HK9oiycVVLEQojvWQbtCiEuBvPYeVEq5Eiht73E6Ko4hvp055cx6dSXVJykpfvvnmxk7Z+lJOfeJwmD1SMyniHC2NhfjMYb4Hpy/k9pGE9X1zn3KdBp7UC/+cYAb5jrazO1DSsmP23KP+VkcD+773w7GP7+sVW06Wl7H3NWHPN6G4xVt8aSCugt4D+gthMgF7gHu8ODxm0UIcZsQYrMQYnNR0fG3mu6dt51P1x5ucbt6o6nZCiytgPhjTz7PLtjH/vwqduaUe6KZbWbRnoIOUXIspWTv0crjc2yHfzs6wurxHasHpeznShc1ncYK6njw68487pm3nfdXZp6wc0opefiHXWw67NpOX2n1Eh1D1oWV9Zzz2iq79/mWTzfz1K971W2rG5pIemgBH66yXY/ZLHni5z0cKKjy9KW0GU8qqCNSymlADNBbSjlOSuly+orjgZTyfSnlcCnl8JgYpymdVDYdLiX9GG78oeIathwpA6DJZOb7bbk8/vMesktrSXpoAeszS1zuN+OVlfR7fJHb42qtnts+36Imwr0NJ2Ye35Yqw05W5djagyWc8/oqvtzg+S6k3PP2XFpzuZtlaYXHJeTS3iIJV96SqZ0h5pqGJtLybe9TvdF0WntlxdUNgEX4K9QbTTz1y14qao3H5ZwNTWa+3JDFZe+uc7k+xM/b2jb7MNv323LZm1fJJ2tsHlOZNRRXVNXAuysOkl9huY5P1x1Wt8kpq+OTtYe5+dNNzbbrRMgGT0rBQ0KI94HRQLUHj+sxzGbJZe+uY8arK91uk1FYxRtL0p1esskvLueSd9YC9h1hdUYxAN9vzXF5vCyroHp9SbpLj8AxB6Wct87Y/BjnN5akszu3otltWkNLwuSj4xAOaA1V1nDUkn2FHj+2cs/dhfi2ZpW1KGya8zxu/HgT57y+6tgb6EB7Q3wKTS4qRl0tawt/+3obM19dqea3ej/6O/fM266u/21XHov3FrTrHJ6motbIX7/coiobLXkVddzzzTaX68DmhSpeLcD8rTnMXXOIN5elt3huJURY19j6OQwajM0/IyWP6OhhB/l6AVDj4lyv/pnOnIX7eXFRGgBemutR0g7aZS7PewIMEU8qqF7An1hCfYeEEG8KIcZ58PjtRrEemlP8by8/yEuLDzQbYtPmh+qtisTP28t6bNcHf3nxAS56y3lKEEcB4etleSTV9U2Me24p92pedoW8ijpeWnyAu7/a6raNhVX1ZBQ6e4qNTWa1zZbzN9/JtPHqxiYz27Nt92VbVtkxeaOtwcdLKWTw/EugXLMrBXXjxxu5+O21XP9x87kLd8pCEdRVLvI9P27LZdILy475xT7WEJ+Cq4KcltpSWFnP3NWH3D6HVelF1u0a1Hvyy46j6vq/frmVWz/rWBM3f7HhCL/tyndpfH2/NZcftx/lm41ZLvd1dR8UZdOaKsvNR8q4Z952nl6wF4Ds0lo7b8wV9S6KW7Qoz7XJoU/6+1hkUr1GQSkqJ8Tf4nUpcu5wSS3XWefnVI7n7dW8ejgR4WFPDtStk1J+K6W8GBgChAIr2ntcIcTXwDqglxAiRwhx87Eeq7zOvVX88uIDDH/mT3LLLPHaima2rW20CZ8Gq9Dw97HcyuY6qasQjeP2SqeqqjeSU1bH99tynfYpqrJYd81VYI18dgnTXnb2FM99fRXnvGaz7luyyhXrS0rJvM3ZXPTWGv7Ykw/A7LfXMv0V995oW3AcNKsIzva8Atd+uIE7v9jitLypmRDfsjSLwN2R3XwO0F31ZWWd+3zjPfO2c7ik1qniKb+inlf/POBWAdnKzF2vn7v6EDNfWUmTyUxdo8ltrsKVQHFcZjZLO6V199fbeOrXvRxqYeB5RlE1Zccw8Pl40Zxh02A10HxcCGClHyoGpzu090h5h72t1TdGk5mkhxbw3oqDTvspxqEykH/888uY3MKYyfoWoinKM3SUL6ZmDDHFyNbKuVXplmiQkl9Trkcho7DKru86GjfVDU1U1ns2zOnRRIcQYqIQ4m1gK+CPZeqjdiGlvEpK2VlK6SOl7Cql/Kitx6hrtJRhNlcK+fqSdDu3vqbBdaeQUtqtK6y07OPtZSC3vI59eZV22zry0h9pdr8dBZ3iOTz0/S63bVUEVXZpHb/tshVK7swpbzY0ZTZL0gurydQIm5bK3DuF+gPwwqI0Hv3RMhStJWHVVlanFzP06cV2JcE2L6d1x3Blha7OKGbh7nyn5arya4f2czfAWnnhlefY3DYK76/M5NU/01m633UoTBGAjU3ODZZS8tSve0krqGLLkTJu+Hgjl727jioXgsJlDsph2cj//MlMTQhcMYYa3ChPpW03fryJ//vG5u3f/vlmBj5hy70qQvZgUbVd0t5klvR6ZCFvLctwefzWsjWrjCd/2UNxdQMTnl/Gvjz3nn2xqoScxZ8SWncX3VL6pbZkf8WBQrt9Nh6yGAj/Xbjfbt/GJjM7cyqs+5tVg0QxAtMLLOkFR+pbCPEpBpfW2K1paFKvxdU7pBgTjuG/2sYm5lvTFd6aPpxbXse0l1cy+KnFquJ1lB3Dn1nM8Kf/bLatN8zdyI8ujG53eHImiUNYKvdWAf2llJdLKed76vjt4bqPNjD++WWUWHNHvi46poIiPLSVd1rrvt5ops5oWzfXmoCsazQxds5SLtSE8Vx1rDeW2l7Ewqp6tmWX2a131Zk+WWMLsVTVG8kttwnjv35pCfOZzJIL3lzD1R+ud2s9usprtTSTRWyoHwBfrLcVK9Q22ifCDxRUMfOVlWpIsaLO6BRu2JpVxtg5S116pjusYYa1B4v59w+7uO/bHZpCBst5VhwosrMkTWbJU7/sJbu0lu+35jDyP0tYd9B1oYrzNSsKqnUaqqLWyIKdeXaFEVpvZtxzS5ljFUaKgWI0SZIeWsCBgiq+WH+EMf9dom5fXmdESslHqw9RWtOo9qEv1mex8kARt362mWd+3evUjkaTJTx777ztZBRWcfZrq0j+12/qeolNOLoapuAq3+RodRdXN5JRWE1BZT1//3qbmkT/WRO2A4vX53j/1mkKhRbtKaBSE+Y8Wl5HRmEVU19awdg5Sxn69GI+W3eY4uoGGprMvLAordVDK0xmySM/7rILYV/89lo+XnOYhbvzySqt5eXFB9zuX2I1RA8WVjtdg/LbrUK2Ltd6u+szLfdcCete8+EGdd3YOUvZnVvBygNFpD6ykBesOR+zlHbvY35FPdNfWclLiw84Vf22lI9W+rPSJ4urG+j3+CJV1vy846jq2Si5s1I3xnp2qc148DYY1PuxUGMIK4rXsT/VG83NFvLUG02sOFBkl6NsCY8oKCGEF/CxlHK2lPJrKeWJnQvGAUexs9lafbfLWlSgVL24QumY2pdl6NO2Gv+axibKXXgprlxbd4lWhSveW89jP+1xOL9zZ3zil718tPoQDU0mxj23jL9/7TxFj2Lp7jlaaefhaF/AWhfJUq0V5KhUwKKo640mu5ekpKbBbkzNnV9sIa2gim82ZrM8rZBBT/7Ble+vZ1tWmapU5vy2n9zyOvYcdS7sCLCGNesaTXy1IYv5W3NUa1BKSMuv4oa5G3nylz00NpnZe7SSXbkVzF1ziPu+3cEGq4A4XGK5bpNZMumFZU7nUVA86dY6UC/+kcZdX21lzcFidVmTSVLd0MR1H20gp6yOd61W5d8cns3ajGIe+XE3RytsRkV5bSPbsst5+te9/PVLWwhydUYx18/dyOK9BXzoIj9ibDKTWVTD99tyuWHuJjtvHaBSo/yVZ619plqjYnV6MdXWZ6vw606bEvpjbwE/7ziqPvd3ltvCVX/uLWD0f5fw7eZsl/fLFbnldbypMc5Kaxp57Kc9qgIE3JZu1xtNdsbB4ZIavlifxZ1fOOdglf7+5z73hRmK4fj9tlw+W2dfJarcI3dhNUUJ2Dwh23au8o655XV8ueEId31p31aBLdQIMFpjwCgKSkrJ5+uPcNTNsI/i6gZeXmwLDf+0PReTWar3VGtY//e3fXb7ugvHavvU9uxy+jz2OzuyyzlYVKMa9t1jgoC2F0lon3Vr8YiCklKagMmeOJYncDUgEWyhqZKaRja4KQtXHvZuqyB1HFtQ12hSPTEtrkIK7uKxRpMZo8nsMlTmrrrnmQX7eGj+LpceSE1DE3kVtk485SVb6q/K2tnTC6pchn0mv7hcHc/lyvrZfbSSu77citEk+cuYJACKqxqp1uThDlrnpvP1Nqgv7uYjZcx+ey0PfLcTsFlstQ0mqhuaOFJiu3ZX4RRFsJqlVBVKRmE1//ltH+e8vkot465qaFKFhrdBYDSZKayq53CJc5n33qOV/LrzqBqKMmhOXFLd4HbqI0UI7c61vbxGk5mVB4rUuL07XFni5bVG1RJvLhTlSFltoxp+cTVWba9GuBRU1jPjlRU8v8gWUjaaJLtzK1idXsy1H23g6g/WsyvHZjDc/ZVNuZa4MK6Uc+60GnprMlrnsQLkltWRU2bf5vBAH7v+vD+vkjUZ9vez3mii96O/8x+NgFUEY3phNRmF9gXDzXlhjU1mFu7Ks/NQtCFyZRuwPTdFqJrNErNZ0mg1nDKLa8gqqbXzOCrrjS7P7+/j5fQxSCGEW89IOcbevEoe/XG3k0Fa22jJ9Xyy5jCva0KCi/YUsOJAoUsDWpnPUaHMYRvl3XaMQtQbzaQXVpNeUMWALmGcN7CzGho3NqOgMouqOfu1VXYKT1G0XobmqwO1tPuLuhrWCiHeBOYBqvSRUrovNWslQohZwGuAF/ChlHJOc9sfLqmhrKbRqVNoX+Ar3l/Pr38bR/8uYXbbKEL8+6253Ds9lf0OAqSmsYkSF9aHozVrOZbrl2V3bgWz317rcp0rL0fhdxf5FIAtR8rcDgae+PwyXrliMH/5eBPXjEp0Wt/QZObxn/cwITWGiEAfu3VBvl7UNJpYst8SY//blB6k5VdRWFXvdlaCIw6K4ZcdR3njqiGqErlFU9G17l9T6BwWoAoD7dgvRXBJaYv7CwRrrV6M4qmYzGYarMeuaWhi/HPLCPJzneB2LP3OLa9jf34lvTuFMuyZP+kSHmC3vry2kfBAXyICLf0op8x2bQ1NZrvfMSGWUGifzqF2fUErQCMCfSirNVJeayTE38fuOl2xPrOE53635TE+WJXJgQL3Izhe/dMmrPblVXGgoNpu+2cW7GVblq34Y2dOBTtzXOc6XbXrkrfX8vs941VBc7Co9aNJcsrqyCyu4aqRCUQG+fLWsoNEBfnaGXF/7C3gj70Fdl95VjzuD1cf4pHz+gL2Sujur7by+c2j1N+uvI1vNmZx5chE3ll+kFf+tA/9HdUYdvVGk+pdVdUbWZ9ZwpXvr+fda4fy2pIM4kL96B4TrG6fWVytRiBC/L2pqm9ivws50GSSlNU00iU8QFXyAve5JSVkqPQdbSFL0kML1P9fOqyr076ZRTXEWvPGjjQ3du/f5/Th5x1H1SiElrKaRrZnl3PL+BTqjSaKrMaLuzF0H67K5JkFFoPisZ92c1ZKFHdP6amGgKODLe9TRa2RYH/vZhWWJxXUGOu/T2mWSWBKew5qDR++BUwHcoBNQoifpZTOQXoNk19azgfXD6dP51B1meMs1H/sLXBSUNq4+Z97C3jiF/vT1DaaKKluoFOoP/kOFrevlwGJVMNTlW6ET3Pzg9U2mgj197Zrh4I7i+v6uRv5+5QeLteV1Rp51tpZVqa7P+/kF5c7dZSwAB81ifrlLaOICvYjMTKQJfsLXFqK5bVGVYE44qoYY8m+Qq4d3U1VrlpP6rstFk9hXWYJkYqhIZyPoxXC6YXVTs8ELLN+ZLkZODvr1VWqQHT0SgY/tZjM/5yjPk+th3X2a6vw8zYQ6u/NhYO7MG9TNkaT2Wn0vbYs/7YJ3Xl+0X7K64yEtGLusivfX+90ra0lv8JZUGuVU0s4DvoEyK+st5vSRjtAF2BanzgSIgP4eM1hp31XpRdRWtNIYmQQt01IYX9eFYeKa1wacdUNTQT7eVNVb1Rze77elnzIFe+tJz7cXgCPeNaWmN982D6nC5aCo0m9Yl0OHcmz5nPLahoZognlf70xW41mrD1Ywr68SvblQazVEAE4UlKrhvEHdg0jv6KePBdhrH15lVQ1NHHVqEQ1jGmS0m0Y8d8/uC+Q0uLKKM0orHabYy+uaXAZlvP1MuDrbSAm2M9OYStkFlfTZJb0iw/lSInlmTU0mdyOoVOUE8Cmw2VsOlxG14hAtUK6oLKBR37cxRfrs3jygn7cYPXeXOHJMvPJLv7apZysjAQypJSZUspG4BvgwpZ2Kq81ctm763hnufvqoI2HSiiubnBb+aYop0m9Yph322jAEqIqqWkkMshXHQin0Dc+lCBNfstduEFr6TpSZzSp1nVbeH2p83U+dHZvwCK4AY6WNx8Dduy8SjvumtydsT2iAUiJCaK4utEupKiwK7eCvIp6HpzVi+HdItTlUkqXJdKvWQcbK/dJG89P13geC6xhmOr6pmaHCriboun7bblqHtIVrnJvCtNeWaEWMTgqv4YmM4MTI+gWFUijyUxafpXTPUwvrEYImH/nWdw+IYVQfx8qahub9Zw8wdFjiPdrKaqy7R8W4IMrI9exRP3DG4Zz0eAuTtt5GwQ7rKHExMhAvAyCzuH+lNU2ugw7p+VXsiO7nM/WHWGTVeGYzJJ1B0vYeLiUH7fbcmX7HZSk42+F0f9dokYCHK+hoclkl39TUM6jVOoCfLvZNiD/8Z/38MbSDCakxpAYGUhlfZPLSuHNR8oQAmYPsd2bukZTi+XjLeEqx11c3eB2FpOj5fUuZZJimEYG+aq5bC1KGDMq2JeoYIuC3p9X1ew4qK9uHWX3u8ks7fr8F+st48x+2eF837V4soovTgjxkRBiofV33/aMWdLQBdAGUHOsyxzPr87Fp13ubj43Hy/B+sxShj/zJ4Oe+qPZBjxxfj/Vii+tbeRgUTXdogLxcbBUBnUNU3ML4D7E1xy1jRbr8VjoGmEfoprWJ87utyvr6emL+rs93sjkSAB6xNrCGsnRlgSpNnehoIRQu4QH8MH1w9X9XIVEwVLYcd4bq1WLu6Vy2qLqhmZf6paKUtzhbkgB2Hvd+RW24ydFBQJwydAuakhldYZr77FHTDDDukViMAjCA30orzPa5QlC/dsfyLhtQoraJrB4/21hZFKk3W+tBzWwaxjpz57jdt9uUYHcMbE7gJ2BptAzLkT9/5DEcAAiAn2pcLgPCpe8s44L31rDh6sy6RkbzJyLB2AyS37f4zrE3V7u+Wa7S49RYYcLz0trgP19Sg8iAn0pq2mkyM1xBieE00tzH2oam1qszmuJTRpvcfaQLiRHB1FV32TnKXeLCuTCwfGAJb/kSkEp7QgL8HH5Dir9ultUEFFWOXjhW2vcjtvzNghGJkXyvzvOslvmKiefU1bHQ/N3ur1GT46D+gRYBMRbfx/AUnbeXlwFKJ0krXYuPm1HcCccz+7f2e0Ju0YEMEAT+usc7q9aDkeKazhSUku/+FCngX5Du0WQZBXggEvrUJkp4pKhXVly30Sn9fVGs1raDXDgmbPdttNVu7UkRAYw9y/D3W7/zW2juW50N/pqwqBaLhrShd/+Pp4LBtnsgRRrBc/2Zgay9u4USkSQLw/O7AVY8gLKAGSw5LYuGeocP2/Joiypbmg2R+dK2LUGx4GtjrkoBUUBfnj9cJY/MJk1D03hgkHxqrCabw1LpsYF2+2nzVuEB1jyUGUaS/umccmcM6CT+ntan1iX59cKRUfG94xm2f2T+OgGy/N2VZzRp3OoXSg4MdKi0K4amcC3d5zFmO5R6rpcTUFDVX2TXfg3yNdLzX94GwTL7pukeuuujCtt/4q33tvwQF/M0tI33BlkZbVGencOJbWT5X3WVtyF+Htz/qB4l/u1lYW781muCbuP7RHFs7NthpursN1HfxnBAzN78dqVgxmeFElsiB9NZsm2rDK6hAfw4KxedttP7hWLwSD47KaRzOgbR22DyU4ZjEiKYNWDk8l4tvXvu5bBCeGkRAexL69SLWIBuGBQPE9daLkWbT7TFWEB7iM3E1Jj6BIeoMpBcJ+DTI4OwtvLwLBEW38tqXEdNcivrOebTe6rQT2poKKllN8CZgApZRPQPhPBQg6QoPndFWjWL/T1NrD6n5MZmRSpVpUpXDK0Kx/dMJwXLxvExNQYu5dSwd/Hi9evGsK0PrFM7xuHn7cX4QE+RAf7qmML+sWH4WN9aTuH+fO3KT2Y2a8Tc/8ygomplslqlbyH8m7/fUoPplqFz/mDOpOiUWZa4sNsAtLX28DFQ53DJgorH7AVT0ZqikI2PzINP28vVSC4QlGw824fzfL7Jzmt9/M20Dc+1E44JUUFEeTrxQbreBtF4PWKC2HxPybwy93j6GUVKF2sCvNoeZ2dtfjm1UMZ19P5vv+6s/mvs7RU1eroQV0xPMHNlvbc4jAVz18nd+fPe52NBwU/66whXcIDEEIQHx5AiL836YXVBPp6MbBruN322mcQGuDDygNFFFTWExPixz+mpXLbhBTeunoou56YweE553K71RsBGNcjmsuGdWXXEzP40iFsoiXQ1wshBGO6R6vLtIr2m9tGM+/20Wp+YvaQLqoRpsyaoH1GdQ5jzsAmwLY8Op3e1mfs523AoFVeLgpUJvWyvA9ao08pyDlSWku4pjjn3+f05t1rhzKwq2XbfvGhDE2McBr4PKZ7FOcNdG9kKtt8eYv7e6ZFO3NIea2RYc0YA2C5F3dN7sGF1pCm4kWvO1hC99hg9V4JAb/9fTx3T7a8JxNSY0iODqK6ockupB0e6EtCZCDeXgY7b7aF6fBUAny9yC2vo7K+yc6zCfH3JizAx+XA8RFJlmu8Z1pPAEID3Hvyz10yALAZNYCTbFVQitO0/eL33Xkuq58BzkpxlgUKnlRQNUKIKGzfgxoNtH82U9gE9BRCJAshfLF8pffnlnbqGhFIN03IQyHYz4upfeLw9Tbw6U0j+UJTAaRYqP4+BpKjg/jwhhF8cL3FIjUYBOcPiqfRZCbQ14vBCeHqy54SE8R9M3rh7+NFXKg/t45PAawJSy8DZ1mV4GXDE5hz8UAemNmLMd2j7Sac1NLZIQn88uWDVU/onmk9SY0LJtTfm/X/mkqi5hrvnd6Le6b15K+TuhNttXQU631sD0sb7pueqm6vjKQP8fex8/wUXE0F4+1lYKj1PnUK9SfB2mFNUtIzLoQBXW1CSBGQOWV1dt5kaIAPFw3uwptXD3F5/QrvXDOU68/q5na9Mr3UtaMt1YmO4YkLh7i3sO+Y2J2Hz+mj/o7RJL8jAn3delFg84K1KOHc2yd0VxPp0/rEMqxbBFeMsClKJWT4575CEiIC+L9pPQn09UYIoeb8BifYFNxnN43khcsGEeLvg5+3F2sfmsLGh6eqAlwhwMciXAJ8vVTBrXhlf5/ak9EpUYT6+zCsm0X4XTu6mxqCVedsc7h/iuAIsOZal98/iY0PT8Xfx4soayWWwaEPB/nahNx71w3j7P6dmNEvjh/vGmuXl1DezW1Z5WrYCCAhIpBZ/Tvz73P60CsuRM1pnTfQ/ll6exnsFJ4rOocFqLnTttBkkiRFuTYe3aH0nyazpEdMMBcP6UrvTiF8cN1w+saH2gnrmBA/GprMqmc2OCGcx6wVigBvXj1EVepDrH3hH9NSOTznXFWZz+wXR/eYIHpan2Govw+3T0xRj6Eo2KggS7tcTcE2MTWGw3PO5Z5pFpngyoPqHhPEAzN70dlqNMeE+HGRNWToKswPEBno67RsR04FJTWNXDK0K7dPTOHJC/qp/dQx4qDFk1V892JRHN2FEGuwfHbj0vYeVErZJIS4G0v40AuYK6Xc08JugM3yu2RoV830HfbCRdtx5lwygFmvruJejRDXcufE7jQ0mdm3JVsAACAASURBVLl2VDcigiwWz+GSWqdPYyjWSnpBNV0jA3jzqqGsOFCkCvO7JtvCLG9dPZS7HCZ9jda40QqTe8Xy/nXDGNMjmlvGp2AyScKsnfXcAZ1JiAykR2yw2tlsbTGw58mZ+Hkb1Gv/cXsuB4tqnBSQr7fBzvpyN13PyKRIVqUX06tTCClWBZhb5lygoHT4lxcfsIQuQ/wY2DWcfvGhCCEYbRWAlw7rSliAj9Pknf27hDGmR7TTYEoFy303c93oJOZvyXWK6Qf6uu/e/buEct7AeBIiA3l9STrPXzqQ895YDVg80QBf93OxuaqSunV8Mn/sLeDvU3uoA1J7dQrhgZm97bZ77Py+3P65ZXCuVilq0T4Xg0N1guKNvXPtMOZtzFKLY7Sey5tXD+W5S5oI8vPmutFJqicLcFb3KNKemYWftxexIX4UVzdwy/hkwCKM9uVVcuek7lwzKpG4UH8+WXOYmf0sik47bCPSKvgcbSxte8f3jFb31Spdy+8IIoN8Ka1ptLsP4VbhNjolikX/mKAu7xRmb7RFBfkSHx7AmoemMG9Ttt14IIVAh2f49jVD1ZlXfLwERpNk/9OzmPTCcvIr6xmaGM7WrHKMJrOqtKOCfN2mCbRooyGXDe9KgK8Xv98zweW23azKT6lQ/OiG4Xahs9hQf64amcjytCI6hfmz5qEpqtFz4aB4Pl13hLeuHoq3l4FZ1mmpwgJ8VEMYLLLqls82M9zqJU3rE+c0eNlRFmoVVLCfN9UNTVw2PEHNLyq8euUQ9udXsdEaGr99YgrvrbANsp6Qavvc0b6nZuHjJejx8EIABnQJ5S9jLf1tQNcwsktruWFMkl3pt10b3SxvM1LKrUKIiVhmNRdAmpTSI6VKUsrfgN9a3NANlw3vSmFVPavSi10WTYzvGc3OnAp6xIaQ8R/3yeDYUH/+M3uA+rt3pxBWpRc7vaRK8URVQxPnJnUmIsiXi4a4DtOdO7AzO3NSeE8zij4yyNkCEUIwo18np+UAb10z1G2bwTlx/Z/ZA/hpx1GSou09zPl3jKGqwciNH2+iocns0oMCmNonjpcWH+CCQfH0i7fkFxy9PqXNYBvb9ch5fblAkzeIDvZj1YOTiQzyJdDXy0lBdQ7zb3aMxLkDOjNvczbdogK5ZXyy3TRSYPtcgJ+3gYYmMyF+3urAZSWsNat/J2b1t7+vitd5/qB4wgN8+Hz9EXy9DOpAZleRxofP7cvD51qs4ObmEZzZrxNXDE9g3uZsu3CJI/4+BnrGhrhd3yU8gHtn9OJgUQ0LduURHmDfZ5RnnugiiqBce0JkIM9q+vOcSwZyxYgExve0CZhbJ6Q47Q+oXo/jWEMtzRkIXgZBn84hrMkosfNWI4Jc50GUOSF7xAZz6/hkZllzyF3CA7hzYnfMZsnuoxUsT7PlkuJC7Q2AQQnheBkEJrPkm9vOUr2MHrHB5FfWc/O4FLZ+tVV9zqv/OZlAX28emr+TAwVVfH7zKMY/v0ydScHufgT78cc/JtA5zL/FKtzRKbYQXoCPl6qUtUxMjeHy4V3525SedvfnsfP78cCs3qpyGZwQzv78KnytQx5iQvwYmRzJtL5xZP7nHNVgmHPJAB7/2cCCnXn0iA0mo7Da6f0O07RDMfbcpSFGp0SpFZNjukerCmrJfRPtcq6Ohl53TcHV0MQIfrq7+Q9eeExBCSEuA36XUu4RQjwCDBVCPOOJgbrHyj/P7s3ArmGMSo4kJqQfU19a4VKQzv3LiBYnTXXFqOQoPlh1yKk0UxsCunxEy3mQ+2f2YkhiOHdYp25RksaOL5inGJUSxSgXcV8lPBcfHsCh4hq330vqGx/K/qdn4edtQAjBV7eOchsSefnyQdz77Q4ANRyhJcGFkLaEFPzVl/C+6amMSoni/77ZRl5FPbOHdCGjsJqnL+rPP6an4u/jxX0zepEQEUh2Wa2qqPp3CeWJ8/syuXcsE19YzoOzejGmRzRzFu5nXDOhH8Wif+MqSwjyyQv6UV5n5OM1hxBCMMghx+TI2B7RvLYknXMHuM6R3DohhSaz5JbxroU/wI7HZziFz1zx/KUDuXdGqupNt4dgP2875dQcqXEhjO8ZzeUu8nxPXtDPaXZ6VyiCuVenUAZ1DWNHToVaJeqI4kFJKblihP2A8wBfL+6f2YuXFx+wU1BDEu3zSFFBvupUSMpgUYDXrhxMbnmd6p0qkZeuEZa++e61wzBLibeXga2PTnc7zig1zr1BoSXE34fl90/isvfWcd3obi6NMH8fL56/dJDTci+DsCsqeeKCfoxKiWRoYjhCCNY9NEXtN1pvNjrYj7euHsprV5i59qMNZBQ6R0hiNF6cr5eBOrPJ5fsJ0FMTltMO8NcqJy3KIHVXxndzeDLE96iU8n/Wb0DNBF4E3gFal6U8DsSF+qvuZPeYYD65cQTDHcppwRJS8Wl+dn2XTOoVw3kDO3O1wwwN2sF8/eObj5Mr51dyA2DpnEvvm9jmh+kpPv7LCD5Ze5iEiOYsfNsN0ybmHdF2WHed15ErRiTYhTn/NtWSxH3/uuF8ueEIz84eoL7U2tDP5SMSKKpqUBWUEEJ9/geeORsfL4EQQs0rOvLxjSNcJnINBkFkkC/3zejlYi9nRiZH2lmvjvSIDealy52Fj5aWPvegEOTn3er76kl8vQ12MzhoaW7gpd12ZyVRVtPItL6xjO8ZjdFkdnvdyjXOdhOJAJtBNyo5khvHJqsFUB/dMJzduZX4+3jROcwym4P23YoK9lNDbPfPSLULUYHl+RuwjRXyBEnRQWx6eFq7j+Pv48XsIbaK2Ja+4eTtZVA9J8fUhHYA9Je3juKbjVkujUqAuBDbtgGtEJ6TesXyw7bck6qglATAucA7UsqfhBBPePD47WZSL9flu8eKt5eBN692Dq8pFT2+3oZmZ07Xos0h+PsY1NzOySApOognLujnmWNpPKuW7kWgrxe1jSa7pLmWAV3DmNN1YLPHiAzyZUbfOG4al2y3vDXPYbIH+4c75aRjY2RyJF/dOrpV2/aIDWbjv6c2G1JUBG9sqL9d2HZqnzimWscEfnnLKFYcKHIbhrt7Ss/WNv+URblPjh6UNuQ8NDGCoYnuKxm1hmFz+VqF/148gKtHJarFFq3FkwoqVwjxHjANeE4I4YeHvzd1KrHx4akIl0O4XOPvrVVQx+DOdVDCAn146sJ+raqm+v3/JnCktMZtdWNr8DII3nfjIemc2ribY05hSu9YJqTG8K+ze7vdJik6yGXF6pmEopgcc1BCCJbdPwlTC5/gAUvuzyAseb3mco0K/j5ejHARvWoJTyqoy4FZwItSynIhRGfggfYc0JrXegLoA4yUUnasb0c3Q2xI8y+TI1qL29WH1E5lrj8rqVXbJUYFukzq6+i0huhgPz67aeTJbkaHR1FMruxAdzlARyKCfFly3yTiw/3b9eHPlvDkXHy1wGHgbCHE34DOUsrm5xBqmd3AxYBnvit+inA6eVA6OjodC0WftPV7To4kRwfh5+11XA1qT87F9xjwKRAFRAMfW6v5jhkp5T4pZVrLW55e+LcyQa6jo6PTVpTBv45j044VISxFRPfPcD1+tD14MsR3FTBESlkPIISYA2wFnvHgOdwihLgNuA0gMdH5u0enEspUOjo6Ojqe5saxyVwwKL7FnF5b2ProdI8dS4snJeFhQHvFfsBB15vaEEL8KYTY7eKvxU9qaNFOFhsT07qxHB2V0y0HpaOj03HwMgiPKqfjSbs9KCHEG1jCmg3AHiGE8tWvacDqlvaXUrZ/MMBpRnuq2HR0dHROFzwR4lMq6/YCS7DMZm4Clnng2Do6Ojo6ZyieUFBfAc8CNwFHsIQNE4CPgX+358BCiNnAG1gmnl0ghNgupZzZvubq6Ojo6JwKeEJBPQ8EA8lSyioAIUQolqmOXqAdHy2UUv4A/OCBNp4SrHpwMoVV7ftUt46Ojs7pgicU1HlAqpS24VpSykohxJ3AfjzzVd0zgoTIQLeTM+ro6OicaXhCQUmtctIsNAkhjuMYY/ds2bKlWghxxo2fAsLwzEciT0XO1Gs/U68bztxrPx2v2+VMzJ5QUHuFENdLKT/TLhRCXIvFgzoZpEkpz7gJ2YQQ70spbzvZ7TgZnKnXfqZeN5y51346XrcQwuU0dp5QUHcB3wshbgK2YCk5HwEEALM9cHyd1vPLyW7ASeRMvfYz9brhzL32M+a6hYvo3LEdSIgpQD8sX9PdI6Vc4pEDH1tbNp+JHpSOjo7OqYg7me3JT74vBZZ66njt5P2T3QAdHR0dnVbjUmZ7zIPS0dHR0dHxJPqkbzo6Ojo6HRJdQeno6OjodEh0BaWjo6Oj0yHRFZSOjo6OTodEV1A6Ojo6Oh0SXUHp6Ojo6HRIdAWlo6Ojo9Mh0RWUjo6Ojk6HRFdQOjo6OjodEl1B6ejo6Oh0SHQFpaOjo6PTITkhCkoIMUsIkSaEyBBCPORi/TVCiJ3Wv7VCiEGadYeFELuEENvdfTNER0dHR+f047hPFiuE8AIOANOBHGATcJWUcq9mmzHAPillmRDibOAJKeUo67rDwHApZXFrzxkdHS2TkpI8dxFnIGYpMQhxspuho6NzBrBly5ZiKWWM43KPfW6jGUYCGVLKTAAhxDfAhYCqoKSUazXbrwe6tueESUlJbN6sO1vHwoVvriY62I+tWWUMS47kvessn2hpMpkxCIHBoCstHR0dzyKEOOJq+YkI8XUBsjW/c6zL3HEzsFDzWwJ/CCG2CCHcfuZYCHGbEGKzEGJzUVFRuxp8plJZb2RHTgVL9hdSVmtk0Z4C9udXAjBmzlLu+GLLSW6hjo7OmcSJUFCuTG6XcUUhxGQsCuqfmsVjpZRDgbOBu4QQE1ztK6V8X0o5XEo5PCbGyVPUaYGMwmo2ZJbaLfMyCH7Ymkt2aS2FVQ38sbfgJLVO51Tj0R9389Qve2kymU92U3ROYU5EiC8HSND87gocddxICDEQ+BA4W0pZoiyXUh61/lsohPgBS8hw5XFt8RnGtqwyZr+91m7Z1aMSOVpex8Ld+cSE+KnLv92czdDEcHrEhpzoZup0ILZllbH5cBm3jE9GOOQqs0tr+Xy9JWIzd80h3rhqCOcPij8ZzdQ5xTkRHtQmoKcQIlkI4QtcCfys3UAIkQh8D1wnpTygWR4khAhR/g/MAHafgDafUbywKE39v6+3gbevGcpj5/VlSu9YskpreXdFprr+we928s/5u05GM3U6EP/+YTfP/raPg0U1TuvWZ5bY/f5xW+6JapbOacZxV1BSyibgbmARsA/4Vkq5RwhxhxDiDutmjwFRwNsO5eRxwGohxA5gI7BASvn78W7zmUR1QxNrD5Zw2bCuhPh7889ZvTlnQGf8fbyY3jcOgOLqBvp3CVX32ZpVdrKaq9NB2JdnyU1mFFYDYDSZufbDDdzx+Rb2HK0kwMeL7+44i/5dQtlr3VZHp62ciBAfUsrfgN8clr2r+f8twC0u9ssEBjku1/EcBwqqAJjRrxMvXGZ/qzuHBTAkMZxtWeXcOj6F//tmOwB+3vr47jOZ2sYm9f8HiywKaun+QlZnWEaChPp706tTCMOTIrlwUBee/W0fJdUNRAX7uTyezoklp6wWfx8vok+B56FLmnbw+pJ0/vndzhNyrvyKelYc8Hx14oF8i4LqFec6p/TRDSOYf+dZTO4dqy6rN5qpqDN6vC06pwb7rX0GbArq99356rLK+iZ6d7L0p37xFs/7TPSijvcY02NBSsm455Yx/rllzW5nNJkprKw/Qa1yT4sKSggR2tzfiWhkR+XlxQeYtzkbk/n4d8SzX1vJDXM3UlTV4NHjphVUEeDjRdeIAJfrI4N8GdYtklB/H64dncg5AzoBlkS4zpnH0fI6rnp/PQAp0UFqDmrjoVLOGdCJblGBAKRaDZ6+VgW15+iZpaBKqhsYO2cpX23IOtlNsWN3ruU51BlNbo3MkuoG/v71NsY9t4wjJc45xhNJazyoPVgKE/YAZUAWlnFNZZzBBQtpGivS1UNsaDKRW17nkXNV1BkpqzU6nbc17Mgu56ZPNrFkXwGP/bSbnTnldusPFFSRGhfcqgG4z1w0gL9O6gFYwgQ6Zx7vr8ykocnMoIRwxveMZkd2Ob0eWUhueR3DukVyy/gUwgJ81PxleKAvXcIDzggFZdYYqsvTijhaUc/rS9JPYouceXOZrT25Zc7yaVlaIcOe+ZOFu/NpNJnZeKjUaZsTSYsKSkqZIKVMBH4BZkspw6WUYcBFwLzj3cCTzdzVh/jHvO00NtnGc+RV1DHzVVule7o1UVxYWc+V769jfWYJD83fxdg5S8mvcHaTS6rde0ENTSanZVoFmOXGczGazC7HnLyxNIOl+wu5+dPNfLbuCBe8uYb3VhxU16flV6vWbmtQLOTM4pNrWXVkKuuNfLsp2+WzbAvmFjzzE+G5O7LlSBnDukXw7e2jmd7X4k03WN+NMd2juG50N3Y8PoOEyEB1n77xoew9WnHC23oimbcpi4FP/kFBZT1Hy+v41/eWSldjBxoHlllUzaI9BUxMtYwTLXARwvtlh/0IIKUI5mTRlhzUSCmlWh4upfwFmOz5JnUs3lyWwQ/bclmTUcyeoxVIKdV4e3SwLwBZJbWYzZLR/13C+sxSnv51Lz9YS2s3HLKV3JZUN/Dp2sMMe+ZPp1JcgEPFNYz571LmLNxvt1wb1nOloEqqG5j60gru/mobP23PpabBlsRWQnF+3gYm9bJ0zK83ZiGlpLCynuLqhjYpqBB/HzqH+ZNeUE1tYxMFlfX6YEwH3lqWwYPzd/K/zTlt3re6oYm3lmWQW17HpBeX84YbC/y3XXn0e/x3lu5v2+Bpo8nMVxuymLcpi8d/2k29sfVKtLHJTFp+FcOTIvDz9mJcz2g2/nsqax6awrvXDqVPZ9cR/37xoWQW19gVV5xOVDc08c/5u6huaGJ1ejFfbjhCo8lMUlQgJTWNVNZ3jHzt2oMWmXP7hBQA8h0UlJSStPwq+ncJ5ZMbR9C7U4hqfJ8s2lLFV2qdifwLLDNBXIslzHdaU20V9v+cv5PCqgZeuWIQS/cXkhITxNL7JjHkqT84XFLD7qMVKAatNpyxaE8+gb7eJEcHMe3lFerypfsLkRJWphfRt3MoPl6C//tmOw1NZt5dcZCbxiaxcHc+lw3vSqFVQfl5G8h2EVp79rd9ZJXWklVay+978rlmVCLPzh4AQElNA1eNTOS/F1t+v708g+d/T+OFRWm8vdziSaV2atug2x6xwfywLZcFu/JobDJz49gkHj+/X5uOcbqRVVJLaIA34YG+bDtiCaOuO1jCtaO7udzeaDJz+XvrGJkcyb/O7qMun7cpmxcWpalj015afIC/Te1pt+/WrDKe+XUv9UYz767IZErvOLv1987bjgRuGptMfLi/XfXcNxuzePSnPervfl3CuHx4Aq0hvbCKRpOZ/vFh6rLYUH8AuoS7zmEC9O0cipSW8VHzt+bytyk96N3p9Ehfv/xHGtuybWHzA4VV/LTtKJN7xXDlyERu/3wLmUU1DE4IP4mttLA+s4TOYf6MSI5ECNTojtFk5qK31tArLoS8inpm9e/EpF6xfLclhx0OKYETTVsU1NXAk9jmyVsJXOXxFnUgKuuNamhPURJfbchiR3YF159lETzdooI4UlLLirQihIALBsXz0/aj+Hkb6BIRwG+78vltV77Tsd9fmcn7KzOdlj91YT+e+mUvI/+zBLDkn5RioGHdIth7tJLZb6/hiuEJXDkykYYmE3/sKaB3pxC1ukrxskxmSWlNo+rpAYxIigRQlRNAz9jgNt2X1LgQVqUXE+rvjbfBwNcbs7hnaiphgT5tOs7pwtL9Bdz0yWYuGBTP0xf1Z7v1pd50uBQppdNMCwA/bz/KtqxytmWVc9/0XvhaS/cX77X0lRB/b6rqLcZRYWW9qghyymq5WDPrx86cckxmiZc1h5hdWsv3Vu/9h225jO0RxZe3jAYsFvKXDkn7pfsK7RTUuoMlJEYF8vm6IxwoqOKtq4cS4OsFwB5rgr1/lzDaQj/r9m8vO8jmI2VU1Br54pZRbTpGR6SxyczrSzPU3wmRAXy85jCNTWaeuKAv3WOCADhUXN0hFFRGYTX94kPx8TIQFeRHYZVFQW3ILGXP0UrVsFaMjZ6xISzYlUdtYxOBvidkRJITrQ7xSSmLpZR3SSkHWP/uassnME5FlCSitnNtOlxGo8nMFGvZdbeoQA4V15BWUEVCRCDnDOgMwIOzenOBdXqXS4e1bnL23p1CuP6sJG4cm6QuW7Azj715FUQG+TI8KZJDxTVsyyrnoe93IaXkpT8OUN3QxIOzejG8W4Rdu8trGzFLiAqyKagBXcLw9bI8dn8fA3+b0oPOYf5tui8XDe5C704hvH3NMOb+ZQT1RjP/25Ld8o6nGWsyivnf5mye/nUfAL/vyWfBTotXeclQi+frWCiTVVLLh6syeeC7HeqyLUcsgYjy2kY2HS7jrsnd2fXETH66aywAm4/YAhVL9xcCcM2oRO6dnkq90awKGrDN2pBkzRWuyShRc2E7cirYn1/FBGsOwt/HoI6DA9idW8FVH6xn7JylvLviIEv3F/L8Ilu4eWduOSF+3nTT5JdaQ3yYP+GBPup1uMujnmpo8zPje0YzIimSxiYz4YE+TO0TR9cIy33KKXUuRmguvyil5N5vt7Nkn+vw7dqDxczblOVUxl5Vb1S9onqjiQveXM0fe/LV8x0qriE52qI040L92JdXxcxXVvLIj/Yzw8SHW+RBz7hgpIRMF7OFnCharaCEED2EEG8LIX4TQvyh/B3Pxp1scqyC/uqRiYBtgGqInzcjki2eSNeIAPIr68korCYlJoiZ/Tqx47EZ3Dwumbsm92D9v6byxAX24a/ZQ7pw7/RUNj48lUfO7UNUkC9PXdiPD2+wfNri1gkpnGtVdGkFVSzaU0BCZCBnpUTZHWfLkTK+25JDz9hgJqXG8t2dY7hveiqHSmrYc7RCzYNpQzz+Pl4kWoXXvdNTuW9GL5cWfnMM6BrG7/dMYGRyJH3jQxmUEM7PO5ymVzytaWgycc2HG3jgu50cKq4hOtiPJpOZz9YdpkdsMH8ZkwTAtiz7EMnNn27imQX7MEt48bJBeBuEOr5t3cESTGaphux6dw7B2yD4dnO26o39sC2X7jFBPDt7gDq7hyKUftuVx0uLDzAyOZLlD0zm85tHAvDxmsMAfL0hi0BfL966egirHpzMreNTOFJaq0YJ3rUWzyjdISU6iO3W8NXag8V8sT6LPvGhbf7kihCCvpr8VFZpLVe8t46Fu/LadJyOhjK26+mL+vP6lUO4bnQ3fLwEt4xLxsfLoA6GzSmrY2dOOV9uOILZLNmQWUKPh3/jvwv3se5giZOiySmr4/utudz86WYnRVZvNHH1Bxv45/xdasm4wrUfbWTayys4UlLDjuxyduZUcPdX2wDIq6ynoclMcrQlWhIb4sf27HLSCqo4XFJLilVxgWWAPtgiK+mFFiPmb19v44mf93AiaYvf9h3wEZYcVPvKkzowC3bm8fXGLB4/v69aSj2lTyxPXdiPKb1jyS2rI8jPGx+rFxIfHoDJLNmfX8VZ3S0KRAl1+XgZ6OTCO+kSHsDfrXmFW8ancPM4+wk3Y0P8eeuaoex/abk6ziQxMpAhiTZPzt/HwKXvrgPgmYv6q0LjypGJvLU8g3NfX207n8MYp+l948gorGaY1eNqLxN7RvPmsgyqG5oI9js5oYATjWPZ9B0TU3hmwT7251fx3CUD6N05BH8fA1uzyjhnQGe+3pjF8rQi0gureWBmLy4Z2pVOYf58tyWbFQeKeOjs3qpnkRpnEQx+3l4kRQexPK2I5WlFXDUykW1Z5TxzUX8A4qxhv91HK+keG6wqmH+fY8lpjesRzZTescxZuJ/UuGDWHCxmUq8YQvx9CPH3ISUmCJNZklVaS0JkAMv2F3LVyERuHpdMk9nM1xuy+HTdEb7dlM2P2y3Gzoy+9vmu1tKncyhrD5ZwVkoU6zJL2HColIo6I2dbDbFThZLqBoL9vfHz9mKvdUqnq0cm4mUQRAT5svPxmWpIFCwGbG55Hfd9u4P0wmqKqhrILavDLOG9FZm8tyKTR87twy3jU9R9tFOJjf7vEhbdM4EIaxRkeZptsP7K9CIW7clnet844sMD2GE1Jia+sFyN+iiy6JBVjiRrFBFYZv2oaTTxwMxe3PnlVgC1ArNbVBDeBkF6QTVSSrXCz9HgPp60RZqYpZRvHLeWnESyS2vZc7SCmf068cbSdPbnV3HVB+sZ0CWMAB8vooJ8uf6sJADVbVeID7MJ/xSHh6/lmYv6887yg0QH+3LFCPuktDsPpt5oq47rFOqHv48Xj57Xl8TIQIL9vLlh7kYaTWa1bBQgJsSPYd0iWJNhqxLsHmOfY7p/Ri9m9evEIA/FxYckRmCWsCe3glEOXt7pwsdrDvHkL3v5+tbRnNU9inXWiqjpfePoGRvM+J4xwD5m9I3jsmEJGAyCPp1D2ZdXydO/7uWTtYfVY100pItquExMjeW53/er5ckh/t6E+NtyebOHdFELJr7emMXZ/TtxzSiLR69Yuo/+uJv3Vx4ku7SOW8cnq8JJCMGrVw7m7FdX8fSv+8gpq+Nq674ACda+PP2VFdw2PoWaRhMz+sbRw2o5T+kTx6frjvDP73eSEBHI0MRwbh6XfEz37y9jkgj09eLWCSksTytiRVoRP+/Ipd5owt/Hq+UDdACq6o2Me24ZXSICWPh/49lztILenUPU/B9gp5zAoqC2HimjwJrDfvVPS1Vmr7gQ7p7Sgw9XH+L7rbl2CmqLJqRbWNXA73vyucoaxfluSw7hgT6EBfjw4h9pSAk7csrV6M5901N5afEB1fNVytwPFVvCkSnWvNi/zulD95hg7p/ZC2+DwNvLwPie0WSX1hJv7Zu+ZRsETgAAIABJREFU3gaSooNIL6ymtKZRbZP2maXlV2E0mducl2wtbVFQP1k/GPgDoNY9SylP2RF4GYXV5FXU8cbSDDYeKuXGsUnsz6/i4qFdWJFWxLK0IgYlhDcbAkuItCkoxX12xbWju7mt6HLHa1cO5pEfd+NlEFxmTWRrBcTCe8ZjNJkJcvBazh0Qz5qMEl69YjBxof6EBdgXL3gZhMeUE6AKtMzimtNSQZnNkid/sXwA+qoP1rP9semsySimT+dQPrh+uLrd4n9MoFtUkOrNpsaG8MvOo2w+XMblw7syJDGCeqPJruJtYmoMz/2+nz/3FZBbXu9UDffXSd05b2BnnvplL0v2F3LdWd3U/hgR6EO3qECOlNSSbc1zjOkebbd/qL8Pd07qziM/WsbUD9AIEsXYkhLeW5mJr7dBjQIobXv58kHc++0OskpruXRY1zaHgxUSIgO5b0YvwFJI5GMQzN+aQ1p+lUf74vFCSslvu/KoM5rIKKzm/v/tYFduBRcPbe7bq5bIx687LaHMZy7qrz6Ha0cncv6geA4X1/DS4gNU1BnV93TLkTJ6xYUwvmc032zKZvHeAqv3XMaf+wq4Z1pPCirrOVJi8bhXpVtKAUL8vPnr5B6kdgrh9s8tHxctrzXS0GQis7iGQF8vYq2fzkmNC+GR8/ratfWTG0diMtsX9SRGBpJTVsfhElvecOOhUowmMz1jQ5j99hpqG03Mv/MshnWLPOb76462KChlMtdHNcskkOhi21OCaz/cYDcWQInV3zs9lWtHd+P+/+1o0WLUKqXUTm2rhmuJ4UmR/H6Py+8zAs6ekcLVoxK5cHC8k+I6XnQJD8Dfx3DSB/UdL5RcZGSQL1X1Rh6av4vNR8q43sHg6OkwnqxnXDC1jZZo+Kz+nZzKwQH6dA5hQJcw3liSQYi/t90AV7B4Qd2ignj5isFsOVJql4cUQvDNbaOR0vLFY0DNjWq5dFhXPl17GCFguEaIxIb4YRCowyOGJIQ7eTOjNedry3i5llAs7l25FaeEgvp07WGesBop0/rE8dN2S7hrZHLzBtnQRFsYfURSJJsensa3m7O5dJjF4BxiXb8zp5zxPWOoaWhiX14ld0/pyb3TUzFLyze1vt2cTXmtxYu5/qwkNh4q5euN9oVJC+8Zj5dBMLV3LP8+pzelNUbeXXGQ5WlFLNiZR1JUULMGhpdB2HmDAJ3D/NmaVaZ6ZADXz90IWAwNpX/P35prp6AW7sojITKw3Z5VqyWYlLJ1gyVOESrqjHbKKTEykKzSWh6c1YuuEYF0jQhk6X2TWjyOl0Hw7e1nkVVaS2xI26rhjicnSjkBGAyClOhgdeLQ0w3ls/cf3jCcBTvz+Gj1IQDG9oxubjc7hTUkwXW+TwjBHRO7c9dXW8mvhJEuFAxAWICPSwWnhPnm3zmG2kbXOUB/Hy8W3zvRabnBIFj70FTCAnxYuDuPsT2cryde49H1buN4ueboGhFAVJAvS/YVcM2oxGP2zE4EZrNUvaCLBsfz0uWDmfTiMrJL6xjbvXkFNTLF8jx9vQwkRwfh623grsk91PUDE8IQwlJMM75nDGsPlmCWMCLJ0l/OGdCJuWsO8eB3O+ndKYTIIF8ig3yZ2S+OT24cQW55HQ//YPHKFO/b28vAbRO6s3R/Ae+uQPWmLhveumpiLfHhAZTXGkkvcJ5i7ecdR7lqZCKlNQ2sSCtSh1TUNZq488utxIf5s/ZfU9t8Ti2tlmJCiADg/4BuUso7hRA9gJ5SyoUt7NohUb5nM75nNOcPjKdrRADvrDjIVSPa7hCOTI50K1jOFLrHBrM9+/Qct52mmfE96ixfVUE5VlU6MtRa1NK7U4ia5HbF8CSb8kpx4xW3xLEWvCi5sIuHuhdeX906irT8KpKaybG2FSEEN41L5oVFacx+ey0vXT7IbUTgZLLlSBnXfLieeqOZW8Ylq2Gxr24ZTUOTucVPiIT6+/D7PeNpMkl1rJvj+tTYEH7anst1o7vx47ZcIoN8Vc91WLcI5lw8gIe+38X+/CpVcQkhmNQrlt25limk+ncJdVLyWoP5mlGJ/GNaapuvXyk5355dTteIADWaoHDr+GTWHCxh0Z4CjpTUkhQdpBb7HHUxzVtbaYuZPRfYBYy3/j4K/A/bwN1TCqUK6+XLB6ufNB/jwoLUaR3dY4L4defRUyrp3RryK+pZl1lCt6hAgvy8CfLz5uFz+hBrLVppjhB/H1Y9OLnF7ZRqPIBBXY9Psrk9jOke7ZTb8gR/ndSdmBA/nlu4n6s/WM/y+yc7FRmcbL7bkkO90UznMH+uHGkLIjmGYpujpVkzHj63D7d8tpkr319PQVU9U3rHqlXCQgiuHJnIqvRiFuzKI8Uhz923cyiPnteX8wc5V0Mq+SaAR8/ri7dX27+upBSB7c+vYkz3KFVBXTasK6NSokiJCUYphN94qJSk6CCPzoDelhb3lFL+BzACSClrgVb55UKIWUKINCFEhnW6JMf1QgjxunX9TiHE0Nbu2xrqjSZeXJTG4r22gW97j1YSE+KnKied9tEj1jKob+n+Qma/vcYuZn2qUlVv5OzXVrL2YIldeOvWCSlcOLj55LhCQmRgq/rYC5cO5LJhXdWcxJmAEILLhyfw7nXDKKhs4KuNHevTFFJKlqcVMrNfHOv+NZUesZ4LcWqZkBrDC5cOJK2givJaI8lRzp7qhFSLgeDoKRsMgpvHJbtMLyjeXXSw7zEbjdoQbyeNIXXnpO7qBATJUUEE+3mz2zoh8BFNQUV2aS2z317Doj3Os+m0hrYoqEYhhD+WwgiEEMlAY/O7gBDCC3gLOBvoC1wlhOjrsNnZQE/r323AO23Yt0W8DYI/9ubz5C97qGlowmSW7M2rVD+mptN+lPDMy4sPsC2rnE/WHMJslqxOL+6QH25rDT/vOEpZrREvg+BWTRnw8eCy4Qm8cNkgpyT1mcCIJEuI/MNVmW2avLYtHC2v490VB+2+SqDQZDLzx558Pl17WA39A+zLqyKvop6pLnJ/nmZmv07q/115Z5cNS2D+nWNaPSsNWPLjS+6byC9/G3fM7dKO44wL8+cvY5II8fe2G09lMAgGdAljfaZl0PGRUpsH9Y9529mWVc7Tv/4/e9cdX0WV/b/3pUIChN4h0qU3ERUL9t511VV/urqW1bWuEhW7rq69i1jABgiCUkLvvSRAQgIEUknvvb12f3/M3Hl3+kwSCMJ8P59A8t6dOXPbafecMwebRN+OgHoDwEoAfQghPwLYAOAFC9dNApBKKU2nlLoBzANwg6LNDQB+ogJ2AogihPS0eK0pgoNcePHqM5FTXo9pCxMxdPoKHMqvwujjFLt/OuKMLhEgJFD+JTGnEr/H5+Du73fhtz1/zTJI83ZnY1iPdkh9+ypMjD69zxiPN56+dAjyKxuk8z27qHN7Ue/WF26vLknGuysOY/XBgCbv81M8+OMeDJ6+Ag/9HI9XlyTj7u92Sd9vSBHKSl00rKvqfi0N3sJhlV54uFwEE/p3tF3FY2DXSCmQpikICXIhJEig2b1dGF69bjgSXrlcdd51zeieOFJYgwVxOcgoqZVyQll5q7yKek3lwAyWBBQRniYBwG0A/gkhF2oSpXSdhct7Q3jBIUOO+JmVNlauZc/4ECEkjhASV1ysfjX6lEFd0C4sGMsS8+H1Uwzv2V7KLXLQfISHBMlqtKWX1GLeHsFlM3NLuuE7sOxg7u5jJ+Rtvkm5lTiQW4k7zup7UkeYnSo4Z2BnXDa8O77emGZoRVFKsXh/rixilL299qy312JZorzkVoPHB4/Pj2QxmCAxp1J67UdCTgXWHioCb+CX1rqRJ9ZP3HC4CKN6dzhh0bmXninU9xzaguH8LQGXuP57dAgHIURTSN46oQ9G9GqP5xcmYltqKcb2jcJTlwaq8PspMGT6CtuvXLEkoKjgo1lGKS2mlC6mlP5JKS2ySENrdyt9PnptrFzLnnEmpXQipXRi165qjSc4yCWF0V43pheWP3m+rYNOB+a4cqRwUPs3UfDvFevQpRfX4urPtjT7vTjZZXV4YdEB3PL1ds3vthxVKyaAwKQWxGXL3pPFUOf24ov1R1FW68b+7Arc8vV2HMyrQuyBfIQEEdw0zn5oroOm4d5z+kvvVOKxNCFPqle45WgJnpy3H0//tl/6fuHeHJTXeeD1+/H4nH34eWcWAKHa+OUfb8bwV1ZKEWUzN6djzOursf5wIfaK2v2Xd43HrhcvwYonhfivbaklqGn0Yu+xcukdaicCM+6egK3Tpp7QFBErmCLyzd5R+vwyPCQI8x6aLCUbD+wWKQVYdBHPwiLDgqXXF1mFnZHYTQgZTynda4uCYPXwpkofCBGAVtqEWrjWMm4/qw/WHy7CjWN7NfUWDgzwn8uH4OwBnTBlUBck5FTgcEE1fvzHJGSX1WH6n0n4eM0R3fdGpRXXICzYpSolxX8/a5vg/imqbkRlnUeqM+bx+XHHzJ3IrajHIxcOxHNXDJWd5fywLQPvrUxBRkktwoKDcPaATlIY7+ztmfhg9RHszixHaU0jkvOqsDQxD8fK6tA7qs1p+wqR1sDZZ3RGu7BgrE8pQlWDB+sOF+G9W0bj33OFgqdrn7kQy8UCswdyK+Hx+RES5EJiTiX6dmqDpY9PwZT/bcC83cdwz+T+OFxQJYU8d44IxfBe7bHlaAk8PopvN2egrNaNAV0jcM1oQbHqGhmGzhGh+G5LBgZ3bwc/xQk9pw4O0l//rYnXrh+By4Z3l4oT66FdeAjevmkkPl+XihvG9kJpjRCicMHgLvjHlDMwqFuk7WANUwFFCAmmlHoBTAHwT0JIGoBaCNYNpZSON7wBsAfAYDGoIhfAHRDeLcVjCYDHCSHzAJwNoJJSmk8IKbZwrWVcPKw7El+7/JQKgz6ZEBzkwtShgpti5VMXyIRIcl4lftmZhScuHqzKCcopr8NVn26B2+tH2n+v1gwUeGD2Hlm5le1pJVKh0e+2ZEivtZixKQ0d2gjlfRgWxgtvtmXvwAoLdiHlrasAQKqpt/lIwPrKLKlFYVWDLILJwfFHaLALI3oL9Qv/3JeLOrdPFjnGv/CTUmBBXA5um9gH6cW1GNg1ElFtQ/H0ZUPw5rKDSC2qRmKO4NZb+8wF6B3VFocLquAiBC4CbBCLrrLCu4BwznPdmF6YvT0T74uvGTEqX3a6oG+ntrhjkrX80GtH98K1owUDoHdUG3x513hcNLRrk61CKy6+3eL/NwIYCuBqCGdRt4r/G0IUbo8DWAXgEID5lNJkQsgjhJBHxGbLAaQDSAXwLYB/GV1rrWvacITTiQNvfdwzORoeH8W4N9dIr4cAgITsCkz53wbpAPWNpcmqM4iyWrcknFixS15YbUgpwpg+HXDojSsxoX9HzBPflVNW60Z0TCzSimvRj3PnNnr9SCuuwVPz9mHL0RLcPbkfXrhqGH554GxcPKwbMkpqkV/Z0KzDZQdNw9Du7bDvWIVUQocFTbTh9i17E8CLfxzAzM3p4qG8IEiuE62hSz/ajLdiD6JLZCgGdo1Em9AgjOvXET/+YxKuGhnIGeKj5wDglWuHo0f7cKnYcn+NgAUH1kAIwTWjezbLZWlFQBEAoJSmaf1YIUIpXU4pHUIpHUgpfVv8bAaldIb4OxVfgDhQfBlinNG1Dv56OLNnOzDDaNb2QKQWeynbNaN6ghDgxx1ZeH2poIMwocUsoIcuGIC5/5yMThGhSMqtRHWDBz4/RXJuJcb2jUKb0CD8bWJfZJXW4fG5+xDLvW/oszvHoV+ntnjkQsGyemf5Yfwp1lO7fWJfPHzhQEwZ3AXRnYXqzQVVDVIWvYMThyFcvtn5XCmpuOmX4tAbV2LHCxfjmcuGSHlprIDrwG6C4tKtfbjkwm/w+HH2GZ1VQS6j+waid5U5ai4XkRWAdRTa1oUV0daVEPKM3peU0o9a8HkcnKIghGDJ41Nw7edbEZ8ZKIm0M6MMo/t0wJd/H49NR4rxwsJEzI/Lwbi+HfHqkmS8f9tofLL2CCLDgjHtymEIchH07BCO2AP5SCmsRnWDB7VuH0b1EcoKXT+2F37YloHYxHzEivXTvrlnAsb2jcLm56cCAFYk5WPtoUK0CQlC3PRLZRremT3bwSdWT3VcfCcefLX1b+6ZgPt+2IMLORdRm1BhTv7413l4ct4+rBaT7/kKC5/cMQ4PTBmAt2IP4oHz1cWeB3WNxNlndML/iS+VVOLOSf3w1cY06Q3VDloPViyoIACRANrp/DhwYAkje3fAIxcOREJOBercXjR4fNifXYGzxTqGFw7pivmPnAM/pXh+YSLqPT48Pmcfat0+vHPzKOlsql24wKxSi2pQWCWEr08Wi3KGhwRhzj8nY6oYfSUU1pS7cQaJScXj+kWp3A83jQtoz45758RjVO8OePKSwfj67+PRNjQY8x85R1ZclaFNaJDs1S7KQraj+nTAbw+fI6smzhAc5MJvD5+Dq3Velti3U1vMe2gyPr1zXDN746C5sGJB5VNK3zjuT+LgtMDkAZ0wY1Ma9mZVIDiIwO0V3DAMfTq2xXkDu2Bragl6R7WRgh8uHtZNavPs5UPxw9YMrEgSki7/fOw8WfRTp4hQvHrdCCTmbMdL15ypeoaB3SKx7nAR+muUlAkOcuHnBybhw9VHMLrPyf8aiFMNhBA8fZm1oqbMwrloaFfDYrxNweRT8L1mf0VYEVBOlqKDFsPE6E4gRHitdaPXB0LU7zC6aVxvbE0twf3nRWPK4C5ILaqRWTpnRXfCxP4dcc1nWzGyd3vpDbI8ortEIP7lyzSfgb0xtKNOCPn5g7uKb8h1cDJjTN8ozLxnQpMruTs4+WFFQDXvhR4OHHCIDAtG76g2WH2wAJkldbhoSFfVG39vGtcbvTu2wcT+HREc5NKsBk0IwbJ/T0FTijxcO6YXUotr8NAFx7e+noPjj8sV7lsHpxZMBRSltOxEPIiD0weDukViY0oxglwEr12vTtx1uYglF4vdumQMXSLD8NaNo5p0rQMHDk4c7L8gxIGDZmJwNyFIYUK/jprnQA4cOHAAOALKQStgpBhKzCLvHDhw4EALJ1dVQgenBa4d3QuEEFwx4vi/Z8eBAwd/XTgCysEJR5CL4PoxTsFeBw4cGIP8Vd92agRCSDWAlNZ+jlZABwCVrf0QrYTTte+na7+B07fvp2K/h1JKVYUfTlULKoVSOrG1H+JEgxAyk1L6UGs/R2vgdO376dpv4PTt+6nYb0JInNbnTpDEqYWlrf0ArYjTte+na7+B07fvp02/T1UXX9zpaEE5cODAwV8Rejz7VLWgZrb2Azhw4MCBA8vQ5NmnpAXlwIEDBw7++jhVLSgHDhw4cPAXhyOgHDhw4MDBSQlHQDlw4MCBg5MSjoBy4MCBAwcnJRwB5cCBAwcOTko4AsqBAwcOHJyUcASUAwcOHDg4KeEIKAcOHDhwcFLCEVAOHDhw4OCkRKsKKELIlYSQFEJIKiEkRuP7YYSQHYSQRkLIf1rjGR04cODAQeug1V63QQgJAvAlgMsA5ADYQwhZQik9yDUrA/AEgBtb4REdOHDgwEErojUtqEkAUiml6ZRSN4B5AG7gG1BKiyilewB4WuMBHThw4MBB66E1X1jYG0A293cOgLObejNCyEMAHgKAiIiICcOGDZO+oxQgxPq9qPiPrWtstm/Sczk0HBoOjVanAQLYIdMk/oPTi0Z8fHwJpbSrBlHaKj8AbgPwHff3PQA+12n7GoD/WL33hAkTKMPRwiraf9oy+ue+HGoV1362hfaftsxy+2OltbT/tGV03u4sy9fc9vV2WzQKK+tp/2nL6A9b0y1fc+/3u2zRKK9tpP2nLaNfrD9q+ZpHfo6zRaO20UP7T1tG31952PI1T/+2zxYNj9dH+09bRt9Ymmz5mhcXJdL+05ZRv99v+Zr+05bRFxYlWm7/1rJk2n/aMtro8dmi8dS8fZbbf7g6hfaftoxWN3hs0Xjopz2W23+1IZX2n7aMltY02qJxz/e7LLeftTWd9p+2jOZX1NuicevX2yy3/233Mdp/2jKaVVJri8bVn2623H7J/lzaf9oymlJQZYvG1Pc3WG6/JrmA9p+2jCZkl1u+Zuj05XTyf9dabr/lSDHtP20Z3Z1RavmaMa+voqNfW2WpLYA4qsHLDV18hJDxRj9WJakOcgD05f7uAyCvmfdU4WB+NQBgzcFCzNl1DNExsWj0+gyvOZBbKf0+4pWVeH/VYcP2acU1AIAVSQVYtDcH0TGxqG30Gl6zO7NM+n3Cm2vw5rKDBq2B7PI6AMDShDzEJuYjOiYWlfXGns9NR4ql3899Zx1e+uOAYfvi6kYAwB/7crHuUCGiY2JRUtNoeM2KpALp94s/2Ihn5ycYtq9uEMZlflw2tqWWIDomFvmV9YbXLNqbK/1+1adb8NicvYbt3T4/AGDu7mOIyyxDdEwsjpXWGV7z665jAACfn+Kmr7bhwR8130AtwSvSmLPrGBJzKhAdE4vUompLNNw+P+6YuQP3fL/LsD3DH/tycbigCtExsUjOqzRsO3+P4JSobvDg/lm7cduM7ZZorEouRHpxDaJjYrHvWLnJ8+QAENbLo7/E47rPt1qisflIMXLK6xAdE4ud6aWGbZckCKwgt6IOT/+2H5d/vMkSjT2Z5SiqakB0TKxs/WtheVI+AGH/xixMxAXvbbBEIzmvCmW1bkTHxGJVcoFh2zUHCwEAh/Kr8NqSZEx6e60lGukltahu8CA6JhaL9+catt14pAgAkJBdgXdWHMLo11aZ3r/B40d+ZQMaPD5Ex8RK60YPW1NLAAB7Msvw8ZojGDp9hSmNijoPKus98Pj8iI6Jxc87Mk2vUcLsDOpDg58PbFOTYw+AwYSQMwghoQDuALCkmfdUgYrvu3IRgo/XHgEgDJxV1Lp9+HJDmgkN4X8C4MsNqQCAvApjpsujtNaN77dmGLbxMxqE4Nst6QACgtEK8iobJAZpRsNFgNnbMwEASbnGDJFHekktFu7NMaERmI85u4Xn2ZNpzBCla/0Uh/KrEJuYb9jO7RWEBwGwUBRum48aMysGr59i37EKrD1UaExDFFAApOdZc7DI8BrWd5+PYmd6GbYcLTFs72MTAmCtyOjM+s5oEBBsSCm2PLZAgAmZz6Hwv4sICsoBG2skTnweq2sRIPhjXy6OFFpf6+x5Zm+ztqdAgHl7snGszFiJ4ZFaJDzPzM3pJjTE+SAEs7dnoqjaWOHjkSvykC/Wp5rQgETjm03pqGowVo55lNW6AQAfrkkxbEe5dfXpuqNo9PoN2/Oo9wgGwTsrjBV9LRgKKErpVIOfi21Tk9/bC+BxAKsAHAIwn1KaTAh5hBDyCAAQQnoQQnIAPANgOiEkhxDS3g6dwAIJbPiPVh9pzqMb0CBwiU7at5cfsn0ftgg0afgZYwdCggQaL/2RZJuGkfXIM7eQIGFp/GeBsUXEwD97jYH16PUF5iPEJfTjibn7LNHw+AObolzcWFqQBBQh0lhN/9PaWPGCp7CqwZQGAASLNP630ngDMkbC08g2YIpyGsJ8fLXRWFliNHzcfBhZdn5OCAa7BBq/7DQTHoE5ZLCqyLCxWppg7CyhGjTis6wJWzZWG1KMlRJeeWXYnmqsNARoEEvPxCuvDOtMlB+JhjgfR4uMhbPWWJkpMgxB4h4srDIWnFpzPm+38TqRrhXXWJ3b2HOlBctRfISQkYSQ2wkh97If29QUoJQup5QOoZQOpJS+LX42g1I6Q/y9gFLah1LanlIaJf5eZY+G8L+LEFQ3CJbTb3HZ+HVXlqFAEOlLv29IKcLBPG3SlNMoG0QBsDGlGD/vyDSlwWNDShEO5GhvdEnZIwReccIP5Vfhx+2ZMiZjho0pxdifXaH5Hb8IxXWLkho3Zm/LkGnzWvBy368/XIT4rDLNdkzzchEiMRIAmLUtAx6fsVbm8QVorD5YgN0ZxjQICWxyRsPMvevlaMQm5mN7mjbDkgkPjsaP2zPR4NGhId7aywnaxftzsVXHkpLTCHCGn3dkGriQBSIe7trf43OxMUXbuuOFJWO6APDLzixUNeh4GpgQ5KZrQVw21h/WZrxaQhAQGJyeosGu4IXH3N3HsNrEpQYEFB9AcCXruan5fcvwy64srEwyZ+4hXD8W7c3RVWYo1EJw9vZMLEs0P83gn2vx/lxdrwzP4xhmbk4zdQ0C8n27LDFPV2HSGqsvN6ZikYm1Dcj37YoD+cgsqTW9hsGSgCKEvArgc/FnKoD3AFxvmUorws9pMPxAvfRHEuJMtB+eJ98/aw+u/myLTruAr6DeHdi1Ly9OxkYTPziPf8yOw3VfaPvzA9YNUM9pIq8uSZZ86XrgGcTDP8fjxi+3abbjLQ/ehH9t6UHMjzP2UfOM/Ym5+3DL1zsMaSif6/WlBzF7W6YJjcC10xYewO3f6NDwBVx8/IZ6felBU3ctT+ONZQdx17fa50S8EAzhGPurS5Lx/iptdwmbQ36sPlh9BHfrnEU1+gLzHBoc2KovL07GG0u1zyz9GkJwxqY03Ddrj2E/ACCUUxim/5mEmIWJhv3gFYofd2ThH7O1z+14IRgaHBirmEUH8MQ8beuZ0fBzCt7v8Tl46Od47fa8EOT68fzviXhY7xrOY8Cw/EABHvnF+IwTkFsSz8xP0D1PZNPAt99ytASPz9lnqrzySuGT8/bj1q+1zxN53sCQkFOJJ+ftl+03TRrcWnx8zj4DHgeRRoBKdlk9npmfgIo6fW8GIO/Ho7/uxcUfbjRsz8OqBXUrgEsAFFBK7wcwBkCYZSqtCKplY4uo1tMQRZhp9Ay8T16pPVeZBDJYtbDYJBMNGuUmZ2q8a8ywnS+w0JU0ygxcavZoBBh7vYJGSa2xm4FXMIzANqXLRVS+8mKTMwC3xTn3cEJQeYneOQN7eus0Av11KeJ7C/Q0dkl4WBsrj44FBQD5ldo0AkLQ4nxIQHSeAAAgAElEQVRwNIJccpZjZhV4LJ518OvPr9hTOeXGVoGyPQBNrwS/V5W8IbtMpx9QCw8Gs3Mc5RzmmcyHVgi4co+paCj2bbXO+ZXUj6bQUIyVDYePZQFVTyn1A/CKZ0BFAAZYJ3Pi8e3mdGxMKZK5Cm4e11vWxu0NjFRuRT1eWHRANphmG3DWtgysPVgoc43dOK6XrA2/CAurGhCzMFHmZmrwGC/Sn3dkYmVSPnfwT3DZ8O6KfgTuUVLTiOd/T5AJGDNmNW/3MSxNyOMYO3DOgM6yNvy4VNS58dyCBJmbyYyR/B6fgz/25UjMykUIRvXpIKfBzUd1gwfPLUiQuZnMFIbF+3MxPy5bFiQxoGuEbj/q3F48tyBB5mbymozVssQ8zNl1LGClEYJu7eW6mls2vz5M+z0RxdWNEoMzo7EquQA/7ciUzWtEWJBuP9xeP15YlIiCygZpvZuN1frDhfh+a4aMRpCC+8j2gs+Pl/44gOyyOolZmdHYfKQY32xKk9HwKRgivzZ9fopXFicho6RWEh5ae5DXyLenluDLDakyGsrxVVrtry9NxtHCaqkfXg3lqoGbwz2ZZfhk7RHZsyqfix8LSinejj2Ig3lV4GVfWLCc3fJ7dN+xcnywKkUmBLWei6fxv5WHkZhTETjnIgS9OoTr0kjKrcQ7Kw7JaZisxQ9XpyA+q1xGY0QveRgAP76HC6rw5rKDin7YkEgKWE3UjSOERAH4FkA8gBoAu5tM9QSABSm8e/MoAIJ10yZM3l1es3v+9wRsSy3FdWN6Br43Ybqvi26WT/42VqRBEB6sz0heXZyMlckFuGhoN+kzM+3j5cXJAICv/y5E9btckAIYtGi8t/Iw5sfl4KzoTpb7EbNICD//4b6JUj+Umi5/j8/Xp2JBfA6G9QwsVLNFyIItfn3wbJGG2ipwcy6tH7ZmYkF8Dvp0bBugYbKZnpy3HwCw4JFzpH4owfdj7u5sLIjPQfs2IdJnZkz38TmCS2rJ4+dJ/VBq4DwjW5qQh9/iskEldmhOg7mkVj11gfSZ8hK+H+sPF2Hu7myU13okzV9LKaGUgohjwtxxlwwLrEXlHPI0dmeW4dddx5BVWie5rTw+P4JdRHad2+uX3JH3/iCwiOvGBJQ2I+FxMK8KP+3IQkJ2hcza7Ng2ROYlqPf4ECnu5bu+E1xrd5wVyFhRMnZ+LLLL6zBrWyY2phSjW7sw8Rko+nVqK4viq3f70DZUoHHbDMGV/OD5AZ1c2Q9+DCrqPPh2SwYW7c3FuH4dhWfwUwzuHomk3MA5dp3bhyhxed/0leC+e/LSwZr3VMLjo/h6Yxq+35qBa0cFeFZ0lwiZpcUHJtz81Xa4fX48c9kQjoaxEPx8fSo+X5+K+86NBiCs9z4d2yCZO4/nley/f7sLpbVuPDZ1kPSZUimxA0sWFKX0X5TSCjF44TIA/ye6+k56eMRJjs8qVy9cbnMw7Z0/xDXLM2Jgm2xXRpnhJmcCkT/wNnOdKa/dnlZqTEP8PYijYZbLpLw2MadSY5P7Vb/zHqHSGov9EGlkltbJznsAuQUl0eBWaHGNflSdFo3SWreKkWj2gxsrPdeZHg2PjxoyXcYcXYRIWmiuhltLy6Uktwr054PNlcsVcFtpubW0XEpujfson12gH/ASMO04s6ROpQRoKVyyfhhYHh7uwIbRSCuqUdGoc6vdULJ+WJgPgsBYHS2slp1VCjTM+qHPdHk3NuvHofwqS2NV1xj4zEghY+fQBAEF6WBelcoFx59XszFqcKvHQwu84GE0kvOqVMoSPx9aa8xOSLoSdqL4ehNCzgXQD0AUIeQCs2tOBnwn5QzVqia8vM4tJZCxzcFHsWzRyJ2Z/ucBRMfEyj6bJeYMldW6VQu3psGL6JhYzNycJm1OPjFVK7rq7diDKho/78gCIGwqZT9Yst2na49KNPhzEK2cno9WpyA6JlZmis/ZHQiEUDMSiuiYWPxv5WFpUfPClSUk8vhqYyqiY2JlTIgPttBiVtExsXhtSbI0H7ySsDpZTeOHrRmIjomVbRI+sVePRszCRMlVxIfFLz+gjhL7ZWeWkBjNafGL9weisLQUhuiYWDw5b5+kPfLMSCvEet6ebETHxMrOyGIPBIJfPEoaPoqh01fg4Z/jpPXg9lJUi335c586gmvx/lxEx8TKzn1WcYnWjQp3s9vrx5jXV+PeH3ZL69rnp5KGvmhvjoohrkwSksgzuEgtfv3VKM443D4/Jv93HW6fsUOaD0opDhcIofEL4nIkq49h4+FiRMfEIqUgED6/kQspVyp9bp8fUz/YiOs+3yrbnyxZfu7uYyrhsSO9FNExsUjMCUS8bjoS2Kta53NXfboFl320SRJuhBCsOyxc88vOLFU/9maVIzomFnu4pP1NHM/JLFVHu9301TZM+d961HmEcXQRgj/FtTh7eyaUx2lJeZWIjomVRYrykalHCtUpCHd9uxMT31orW7M/ifzn9/gcFY87WigkeK89WCh9x/cpOVcd/fzA7D0Y+ap5QrHVKL7/AdgGYDqA58Sfk/b1F/wkZXEVBBbEy0MiC8RFNmtbprQ5nuXyfl4R3Ws8WI4Iz9gP5VepvmeoEBnszM3pErN6mbvvW7HqfKlvt2QAkGvVfMThD4oERLYhvtyQKvXjXS4p7r2V6qiyz8TkP1672cxFHH6tyLdh2tfXG9OkfnzGJRCyJGge7B68VshXnvhk7VFZe5a7M3t7phRdxMYCAL7RSIpkCgjPlPhEU2VuEhvSeXuyJcY+h0sanauR28GSqHnL5+edWdLvyiogzJm3eH+eJLx4gbZMI0flpx2ZAOTJ1zM2BebgZUUeF6UUjV4/ViUXSjR4QaCVA8QUED5d4sM1gXljrl6eRmW9B5uPFEtjtT0tUAEiLqtcpR0vjBcEI1+Ngl/jzysiAykVrNbdmWUSjUQu1SKlsFrlAVgqhmjv4BjtC9yzK2kAQEZJLQ7kVkpCOJ0ToHmVDbK/gYDg5gXf078FeMPzv6tpHMqvwtGiGomx88pGdYMXCYr0DnZvXrnjcwK1aOw7VoGc8nrJMlJaYfz8AMAO8W8+rP3RXwNRilo0tqeVoqSmUff4YaNibe0V53rRvhyJ//CRk1rzse5wkWG+JIPVM6gbAQyllFpPg25FaEXlaCFF1B58lFqOemKwMrgApLwmn98+jVoNV4YW2ALxN6Ef9RaT5/ZwOUdmZ0EMzHIyO2djiOOqHlg9WGUWg9Vn4hMrjdw0PJgVZ3Vd8dUbrD5XuRiqa5XGYc56ULr/9FAiMkyfRRr8WYbV+SisFq4xy5tj4PeRWY4aA7NemnL2bjVZlCkjVuejKTRY+TKrY9UUGsySbQqNeov8J71YoOH3W48eZSiqasCrS9SGAINVF186gBDTVicJrC50Vmomq7TOVkItELC+zMDcCOV1Hts0tM4qtMA0Tq+f2qahF0qsBJ/NbnXTMh+21X7w7azSYGGxOeXWaPAuQ6s0mHVmp3yVXRoskz/XYj/kNKy1Y+NrVL1CD1YFFPNYaLmnzGD1rIKVGUq1UeorQMMab2AKgJYLzJSGRYWM7VveA2MVusngCrCk/CSdIgNGsCoEGY9LyNEuAGCE0lq3zKuihFULqg7AfkLIOgCSFUUpfcL2E50AVDV4j/t7RJ76bb/ta+wqY49aSBhUwm5I532z7Adj2j30vPs7a0VReVi1UCUaFguv8jDLH1NCL0nUCGYlZJR4TsPlYoasMnvCQMutbAY7NRkBmCZEa2FXunZlED3MMannp4X1h43rJSqhdSZphqUWywwxKN1yVmCWOK9EU4SgWeK8ElaVXR5fbDCuM2iVjy/BcSjkerzQ6PHbFlBW3WkMRnXa9FBhMSqQwaqVxsNqxB6DneKVDFYj3Risuvh4NMVasYumWCt2ka2TJNqSyCi2b63YRVYTLCK7yK04/mPVlD1lF0VN4A22aTRh39qF3X0OsLQL6+3N9qDVMPMfAcyFkAMVD2CO+FmzQAi5khCSQghJJYTEaHxPCCGfid8nWn3FR1P8xnyIsxWc2dNWzVqBhsWzAoYJ/TvapmGW86TElEFdbNOw24/zBnU2b6SiYW8+mkbDXj8mNmE+rJ7xMYzsbX9d2S3COVCRvGwFtY32aPSOamObht1+dGxr/9ShKQVL7aI5YdVWYfVsszkIUsbeHwdEhhmbElaj+C4CcBTAlwC+AnCkuWHmhJAg8X5XARgO4E5CyHBFs6sADBZ/HgLwtZV7KwXUuH5RstwjLSiZ1Zs3jDBsr3RBDekeiYjQIJ3WApTC43+3jDJsr7Tqeke1QaeIUMNrlP346PYxtmh0ighVZaMroezHF3eNM6ahYG6hwS6c0cWYSSr7MePuCYbttRjPsB7tDK9RWnYsGVoPWiWKxvWLMrxGOb5mY6WlKJ070Fj4KtfiB7cZz7nWgfmlZ3bTaBmAsh9m+0PrLPTa0T01Wgag7EfMVcN0WgrQSsS+dUIfw2uU/XjiksE6LQVo7em7J/czvEbZj3+ef4Zhey1B8I/zjK9R9uOus42fSQv/umig4ffKftwwtpdOywCUS+upS43H18yVbzVI4kMAl1NKL6SUXgDgCgAfW7xWD5MApFJK0ymlbgDzANygaHMDgJ/Ely7uhJB/ZbzKod6Az142FDcqyhwpwTPdsX2jcNnwHobtldWkp105zBaNYT3a4XKbNF665kzcONY6jejObXHlSHs0Xrl2OG6w0Y/u7cNw1UjjKVHSePOGEbh+jPFi5w+B24UF2+7HGzeMwPUmG4q/xkWAq0YZ90NpDb109Zm4drR1GgBw7eheqqRQHg2KQ/znrhiKq02eS0njlvG9EWVgXSjLaz1x8SBcPsLe+P7trH7o20nfSmpQKDEPXzBAVaLLjMbfz+6Hwd0i9WkoFIz7zo3GpWfao/F/5/Q3tFqV1tCdk/rhEps07j/vDENviJJf3Ty+t7nCoBKCA1TlyYxwzeieuMQmjUcvGoiLhqrfyq6HS8/sbns+lLAqoEIopVIyDaX0CJof1dcbAH/SlyN+ZrcNAIAQ8hAhJI4QEudVbPLwEJes4rQWGjntuMHjUxXOVEJpFYSHBKlKECnBa+DVDd4m0DDvB0+jtMYtq4xhhUZYsEv2ugItyOsLNpq6ApSLUBgr632vthAwoRqr4CDZKxHMrrHiN1daaVbmw65rTJksGxZshYZ8fJQJoSoaiv0RZnM+AKGCO9EsgSrS8GjRsLcWw0OCDNeWUniENWE+wkKCDPeIMuhI2B9m/VCvdzMPjqq97bFymfITHmHBLtu8ITzYeKyUCA0mps9k5nK1Si2OEPI9IeQi8ec7CGdRzYHWkyvZhJU2woeUzqSUTqSUTgSRdyvMwsDyVkFZrdt0ESpN07BglymjVtIweyY1DeMNC8g3bXWj13RjqGiEuFR1+JQw03pMaQS7TDeg3Sg+rX6YbY5m07AwH3ZpKMv4COuqZcdKaUFZYVZKGmZCUGlBCTTsjVWwi2i68RjUwsP+fFh5Lh6hFva59nq3d55jd+2GBZsrADzcXr99GiH2xqq20Wd7zpWwGuz2KIDHADwBQWhshnAW1RzkAOjL/d0HgLIGjJU2KijPoKwwK/n15gtEzUiCTK/hz1X8lFqwoOwzdqUbymXTurHSD7sHzcr2gsJgb3zNadgfK7s0VGMV4gJMAjPtCnOtsTKzCuzOR1MsKLtjpXRbCZagvfkghGi+3kEPIS5iwUpTC0G7wsPufFhRAHhQSk0VZM31bkN4UKouOm1Ow5w38PBTasFKawEXH6W0kVL6EaX0ZgAPAFjXAlUl9gAYTAg5gxASCuAOqEPZlwC4V4zmmwygklJqmmSgNLGsbA7Z9RaEhzLKLCzE3PTn9yylMF1QWhqimfvNbh6UpgvDpO8tQ8N4rOxG8anmw8JY2aWh1Q+zdaI1VkbWh4pGiDlz06Rh0F7ZPCzInIbWWNkRHkEWBIHd+VCCwv6eIsTYVamE309NFR8ljeAg8z0lp2GuIKvXuz0eJwiP40uDWlD0zXiJJQuKELIRwht0gwHsB1BMCNlEKX3G0pNqgFLqJYQ8DmAVgCAAP1BKkwkhj4jfzwCwHMDVAFIhJAs3qYK6FY2dh9+CBqOmYddKo6ZuEhWNEHOroLmw4g5tNg2bFm2TaFiwoJpPIwju4xzuGxrkMrWCmwtCzBmJFuxkc/gpjvu6ErwSx5uGuRDUgpGrUk2D2hJogCAE7fIfO8IGsG+lNYWGElZdfB0opVWEkAcBzKKUvkoIsZ/yrgCldDkEIcR/NoP7nUJwLTYLbWweUgLmrjEVjVB7PmCbskmgYcEV01wI/Ti+NOweGjcFbUKPP42wEBcaPMeXhstFjvt8AMdfeABNE4J29gnB8R8rQsxdY3rX2YHZuaP2NfaI2G0vCEF7PK65e9AqtWAxvPt2AMuaRbEV0KFtiK2BnWwSrql8MyYAdI0MszUZ5ww0TpDVotErqo0tGuNNcnS0aPTt1MbWWJnlGmnRiO4cYYsh9ulonPSpS8MGszJL+tSi0a9TW1tjFSq21XuqpoyV3nrQs861aAzsFmk4VlrXCDS024dqtB/SPdJw7YaH2GPIWrSH9mhnOFZ2+6GFM3u2b9pY2XAjjuzdwXCs9Ggo34hshNF9ogz7oTcfdhSAsX2jDPeHXj94WLWg3oDgittKKd1DCBkAIXH3pMaCR86RTGurzGrG3RNw4RDjWP924cFoFF/QN/efkxEcREAIscysvr13Is4xSb7kafz8wCSEBLlEP741Gj/cNxET+ncybMPT+P7/JqJNaJAtd+js+8/CmD7GQpCn8eVd49GhTQgiwoItz8fPD0wyrdrB03jv1tHo3j4cHSNCLQvBOQ+ejUEG+TZKGq9eNxzRnSPQp2NbWRFdI8x7aDL6d25r2CYiLBiNXoHGfy4fgjN7tsfQHu1QWqt/3Cusb8HXtuCRc9DTJMk6LNglRXo+cuFAjO8XhfH9OiI+S78OXmhQ4JqFj56LrpFhum0BuQC+95z+OHdgZ5w/uKthPb+2ocFo8Ah9//Ox89ChjbHCwLsXbxjbC1eM6IErRnSXCslqgZ/DpY9PQRuTxHoeUwZ1wR2T+uKaUT2RXaZfnoensezfUywxYYZhPdrhsamDcM2onoaljHgaK54835aA7dYuDC9fOxxXj+qJKoPSa5FhgflY8eT5UuCZFasryEXw6R1jceWIHprJ7Vr90IMlAUUpXQBgAfd3OoBbrFzbmhjTJ0rS5qyeKZklhALC5JWIAzu6TwdEiOU6rDJ2s4RFQGBWjMaZPduji8gUrNK4eJg9GoO7tUM/kYFaFR78q+v1wI/VgK4RkrCx6iY5f7B5YiDfj4FdIyTBbFXbO9dCuadQ7nkHdI2UlBir82FmlQOQJfAO6BopJYQaCVqeOZ0VbayQAPIAogFdI6QEXUNhztHgE071es7TOKNLBK4UE7mN1hV/RjO2r7HSo8SQ7u2kZGYjBhoWHBBIo/p0sEVjRO/2UlJ2kEE/+LU4src9GmP6ROE6MYHdaKwiFbyBwYqgGtu3mTQsWILj+kZJY2X0ahd+rPRgtdRROCHkMULIV4SQH9iPlWtbC706hMtcDWwybjKokrDoX+dqfn7xMDkjZgKJWQNKGkbZ078+eLbm51cpBCNfo6oLp7EyC+rsM/SZ0bf3TtT8XNl3nkY/TrtnzGq4geXy2Z3aJXvuOKuv7G9+fPiFzhi7kfvuvVtGa35+37nRsr95LZW3GtlYGWnjr12nrK4l4OELBsj+DuFoXDA4INDYWBnJqeevHKr5ubLMDi8k+PVgRWH498WDND9/9rIhsr95xeDW8YGyQEY02DcPTjlD9jljPf+5XEGDG4x7z4kO0LAgaPVK9ihp8IrBQ9xcGSk+jIYeD3juCu15AoRqNBINg8lmz3WlTmUOIxqvc+WjeIVaWW4pPET4W+npYbJAb70BwIdc6TN+rJSWN9u3k3SUHuV88Pjq7kDJML4fQ7vLjwMY/zGq5GHV/vwZQA8IJY42QchHsv+ilBMIZTkStnCMtIy+HbVdMMqyMWxgpyrKfrDJMKKh5+aJaiuvscdoKIWjFatggE4xUL1+KIugMhpGQVqDumq7xJTCoK24uYZ0l7e3wnSH6JxvtQ+XG/5swyprCFqxbvTch+0V/QgXte/IsGDZ+Y6VsRrZS1uTVvcjsB1lNAwYO6M7WsfV2qGtsh+Be/GBQIbnXCIjG9dPu1yPcs7ZfAByi8ZoPtj5iXItMo3diAbPaI3WFXuWSTrKnXLO+b0mV3YDv7dTFDtlNCYP0KERru+0ko0bR1vJG1h/9QokR4Tq02gXHugjPzd643v+YLl3gS1L3hpVgncB82tMuRYZ/7loiL4nxqqAGkQpfRlArVjF/BoAxpVOWxnKZF0rZzehOm2Un7cTF5kyhN8K09WjofRVB2go+mHBVWm1H0xLahKNYO2+KjVYtpBVY2WBhp4wVtNw6dAwn48QnTMC5ViFhTAa9teV8nnZJlcGE+htekOmK95MOVbsL9VYhdinwe6tRyNccU+9cxcrh/J6FlAbBdPVpcGtK6WiyK7Rm482qn5YGCsFDTYWynUlMXYFDb29aiWgRK8fVl30PA1lUI1EowmBJXoBOspPmfJqZPVaFVDsNK2CEDISQAcA0RavbRUoM9mlyTBQdfUmVvk5k/wqGuJAG+WH6DE05YKM0KVhrrFb7QdbhLo0DDqiJ2CUNBhT0KehS0J34SrHkDESrQRJgYY+ET3rRDVWejRcVvqhMx8K2k2JnGJasO5YubTnQ0XDQGEICEEd5UrJ2HWEoBEjYnOo11fl2CiFYoAGx3RV97BLw3yslHcKMznzVo6/7nxwY6UWtEI/9HiJMppPTwjygkQ1VoyGjqBswhuNVP1g82GkR1oVUDMJIR0BvAyhusNBAO/Zf8QTByVDtJIUq8fYlRsrMlxbeJhVLjCkoVioTJtT0bCgHekJDz3rRnmQaSWAQdfyCNZmJOp+WAgx1RlPNQ1t68bSWFm10hgNG/0IaLTWBI+uxm4gPNgQ6T2HykprggXF3DR6bVTWpq51Yy5olX3Vt27MlRdlcmyA6eoJD/sWlDJfUhK0Oh4GZRCH3nzw7ZT9CAhBa5aSlUhC5ZCwfavkm9Yo6tBQWWna/Ed2jZUbU0q/o5SWU0o3UUoHUEq78Qm1JyO03nljBj2tRxks0FZ0Nyi1aSshmHo0RvSS02CTp9bYm+4aU+YsBSwoeTtLrjGdNgMVZ1NhelYad73euOkx3WjFOR7b5F5FR/ixaqfj+9cbq96K4A19Ky1wfY/28jMwpsnqjWd3RfswHY2dpzFA8R4txpD1hAd7fxjjDeEW3G+jFNFnwTrCgyFSEcWqZ93wwkMZ5BOkIwQZ72ICiglcXUHLjfUFiiACdm8zDwNzPenOB0fjPEUEKNtTemPFmLTUDwvCQ/kaDb3xVUKSBxakijICVHKbK9Z7c+qmjFecYep5V3hYElCEkO5iNfMV4t/DCSEPNPlJTwCMajztevESxE2/VPW5XvWIWyf0QewTUzBaDE0NDKx+jP/uFy/B7pcuUX2uxxCvHd0LsU9MkV5OZ4Wx73npUux6UYuG9rRePKw7Yp+YIkUYSRaUoh/8Bo6bfil2vqCmoWcVnDuwM5Y/cT5un9hHQUNf0O556VJsj7nYcj/G9I3CiifPl17qZuZGBIAtz0/F1mlTLdMY2r0dVj51Pp4Qo+P03D38fKx66gJseT5AgzFdrcRVAOjbqS1WP30BXrx6mEjD3IL68/HzsPk5NQ09xadruzCsefoC/Pcm4chYn7EHrp/70GRs/M9FGv3QXrvtwoOx9pkL8dHfxgo0LFhQP9x3FjZo0dCzNoNdWP/shZghRohZmY8v7xqPdc9eqKKhtweDCMHG/1yEH/8xyfBZeKviw9vGYO0zgXe3svVuxMg3PXcRFj2qHTGshTduHIE1T3M0xL4b8bgtz0/Fyietv1P2xavPxKqneBraCpmSxnpxfK2EuD992RCsePJ8afz1lHAeVl18syEk6rK3sx0B8JTFa1sFSrORrbV6jw/d24fLQrfNQAjBCC4Si21mZRk2tgEaPD50ax+Obu3USZNGVhZPQ8/FxwRDg8eHru3CVFq40EbvzEPeD5aoqFWUltHoEhmGHhrJn/o0XBjOWYNtdBYh22QNHp/wFl+NV4Qb9ePMnu0l91YbHVcBY5QNHj+i2oaij0aUptGZ4LAe7SWlReliCtAIfN6hbQj6duLD9bUtKKZFBxGCId0D1Q/0aQSesX14iCIlQNsqYM/tIgSDu7eTBHEbHcbO04gMC0Y0Z6mx51NaBYwGBTCoW6RkneklwPKCOiIsWPZWZdYP5f5gNLw+igFdIyWmpic8+OvbhAbJLHq980I2Hw0eH6K7REjzYOVYIDwkCIO6BTwTbB6USh/rR73bh/6dI0wTkXmEBQdhMBeizcZA6dJmfa/3+NC3U1vTt2/zCAlyYSjnYWljkUZnG3w0SNy37JZSP1pAQHWhlM4H4AeEQq8A7NX450AI6UQIWUMIOSr+rxm/KuZbFRFCkuzS8Cmkx7liaaFrTF47zeOW8X00w0LZIlS6lJgJa5RrpVz0fz+7n6aGzT7zKhY6cwX+TZFvxEOpTbP8FaWFqCcEB4sh4fdwOSyq51MwCJaHo+xLm1Bta5MxpwcMXoet7AfLIWmriOiShKBizlnawCMar7Zm06B0VU6/5kwA8nBcoR/aTLd7e2GDPnzhANV3TPgprbSXrxVyr6IiFDR0BFRU2xAEuQj+75z+qu/0giSmXSlYZUpFTM9KiwgLRkRokCqPjaehFB7PiDlWyhwaozPQzhGhuFHjTcfs3kol4zFx7szKXTEQQtA7qo1mHhKbD6Wy9M/zhbkzqybCY0DXCM23ywZxApXHvZOFuRuucOUbycDhPdtr5juyvaek8bezhBwyxoeYpWIkZsf3i5F2PRAAACAASURBVMIYjcRotm89Ch7H3ujNEs+tnPOeO7CzZkk0PeWVh9VSR7WEkM4QLVf26guL12ohBsIrO94lhMSIf0/TaDcbwBcAfrJLQMnYu7cPR8Y7V9uqIP7BbaMBqJNFQ4K0F2HHiFDbNN66cSTeunGkmoZLexFGhAWb0lAKopeuORMviYyXB9OalTTCgoNMaSitgmcvH4pnLhuiDlfVObsJCXKZ01As/semDsK/LhqoERKrTcPlIro0QlwuuH1+lQX14PkD8MCUM3RpKEGIPg096+buyf3x97P7qa7RO/MghCD17asMaSgN81sn9MEt43urrjGy4JNev0KbBlvvivG9dnQvXDOqp631Hjf9Uu350GG6l4/oYXtPbZ021XCslDQuGNLVNo11z1xoSEOp9J09oLNtGrFPTDHuh4LHje0bJaNhperDwkfP1aQRGqSt9A3v1V5Gw8qZuF5xAiYElYo+D6sW1DMQovcGEkK2QRAY/7Z4rRZuAPCj+PuPAG7UakQp3QxAv0iYAay8h2di/46S/18LwgvTAtc8f8UwdIkMxbAe7UUa6oFV0jh3YGfDrGsljacuHYKObUMwvn+U5X5cNLSrbiUBLRqPXDQQ7cODMUVMwtM6pFTSuGJEd1nGvhaj46+579wz0C4sGFeJJWis0Lh+TC9ZlQgtFx9/zR2T+iEyLBg3j7dusd46oQ/unNRP91Beec1N43ojMiwYd07SrnCgReOus/vh5vG9pXtrMQr+mitH9kBkWDDumay2kPRo3H9eNK4Z3TNgeZiM7wVDuqBdeLB0bmeFxiMXDsSlZ3bnaBiv97OiO6FDmxD8a6raYtWj8eQlg3HBkK6W+zGydwd0bBuCpy8z3lM8nrtiKCYP6MRZUMb9GNA1Al0iwxBzlTFv4DH9mjMxrl+UVIXcbN92ax+GHu3D8ep1I1Tt9Gi8ecMIDO/ZXkriNaMRGR6MPh3b4L8366esKmm8d8toDOKKB5vRCAkiiO7cFh/eNkbVjm/PX/PBbWPQv3Pb5ltQhJCzAGRTSvcSQi4E8DCEGnyrIbzttqnozl48SCnNJ4SYF3UzASHkIQAPAUBoj0GI7qxdTYHH7+JB5X+XH7ZEY8rgLoibfhnSioWClAN0qinwmPPPyQCArzemodbCm08nndEJ+165HAWVDQCAwRbcDrPvFw51f9uTbVhkkmFs3ygkvnYFKsVikXoVG3h8c49QPmnNwUJklNSaaoLDe7XHgdevkF5zb1bwFQiUT4rLKkNSbpVp/cRB3SKR9PoVUp6TWWV1QNgcAJBeXINdGWWmEYv9O0cg6fUrpL+tuJpYQMKDP+5BYVWRaeJkr6g2MhpWzg4YY/v33H1IK641jezq1i4cB14L0NAL3ODBGPQLixKx71iFrGyVFjpGhCLh1ctN78uDCZq3Yw9i05FiVTUHJdqHh2DfK/ZoPDZ1EB6bOgifrD0iPGdb4/FtGxqsGURlhAfPH4AHzx+AmZvTAABdIo1phAUHYadGgJMR7jknGvecE405u44BgOYZN48gF8HWaULw0eNz9lmicftZfXH7WX2xeH8uALX7VglCCDaKQTvPzE+wROPGcb1x47jeWHeoEIA6YlYGSqnuD4C9ADqJv18A4XXrtwB4E8DvJteuBZCk8XMDgApF23KD+0QDSDKipfwZOmIMrXd7qVXkVdTRAzkVlttTSumWI8W0rtE6jcLKepqQXW6LxrbUYlrd4LHcvqiqge7NKrNFY0daCa2sd1tuX1LdQOMy7dHYnVFKK2qt0yivbaS7M0pt0YjLLKWlNY2W21fWu+nOtBJbNPZmldGiqgbL7asbPHRbarEtGvuPldPCynrL7WsbPXTrUXs0ErMraH6FdRr1bi/dlFJki0ZSbgXNKa+z3L7R46MbDhfaonEov5IeK6213N7j9dH1h+zRSCmoopklNZbbe31+uu5QAfX7/ZavOVpYRdOLrdPw+/107UF7NNKKqunRwmpbNNYdKqA+n3UamSU19EhBlS0a6w8VUq9gNsdRDV5OqEGSFCEkgVI6Rvz9SwDFlNLXxL/3U0rHWhKZ6vumALiICtZTTwAbKaWaFQ4JIdEAllFK1Qc1Opg4cSKNi4tryqM5cODAgYMTDEJIPKVUVeXaLEgiiBASTIWovUsgutAsXmuEJQD+D8C74v+Lm3EvFeLj42tEIXi6oQOaF7zyV8bp2vfTtd/A6dv3U7HfmgaKmZCZC2ATIaQEQD2ALQBACBmE5g3QuwDmi8m+xwDcJt63F4DvKKVXi3/PBXARgC6EkBwAr1JKv7dw/xQtaXyqgxAyk1L6kHnLUw+na99P134Dp2/fT8V+E0I0XV6GAopS+jYhZB2AngBW04A/0IVmRPFRSkshWGTKz/MAXM39fWdTaZymWNraD9CKOF37frr2Gzh9+37a9NvwDOqvCkJI3OloQTlw4MDBXxF6PNtqHtRfDTNb+wEcOHDgwIFlaPLsU9KCcuDAgQMHf32cqhaUAwcOHDj4i8MRUA4cOHDg4KSEI6AcOHDgwMFJCUdAOXDgwIGDkxKOgHLgwIEDByclHAHlwIEDBw5OSjgCyoEDBw4cnJRwBJQDBw4cODgp4QgoBw4cOHBwUsIRUA4cOHDg4KSEI6AcOHDgwMFJCUdAOXDgwIGDkxLNeSvuSYsuXbrQ6Ojo1n6MkxqsRjAhrfscDhw4cBAfH19CKe2q/PyUFFDR0dGIi9N8QeNJie+3ZmBU7w6YdEanE0bzrLfXori6EZnvXnPCaDpw4ODUwvbUEkS1DcXwXu2bdR9CSJbW546L7yTAm8sO4vZvdpxQmsXVjSeU3smGvIp6+PzOq2YAYENKEbJKa1v7MRz8BXHXd7tw9Wdbjtv9HQHl4LRDUVUDzn13Pd5bebi1H+WkwP2z9uDC9ze29mM4cKBCiwgoQkg1IaRK46eaEFLVEjQcOGgplNa6AQAbU4pb+UkcOHBghBYRUJTSdpTS9ho/7SilzXNOOnDQwnCJkSH+JrxN+uM1R/Dyn0kt/UiG+HNfLi75cCOct187ON1wXFx8hJBuhJB+7KeZ9/qBEFJECDmxXKEZmLUtA4v25lhq63fOQU44XGLkYlME1KfrjuLnnZrnuccNT/22H2nFtfD4nLViB7O3ZWBXemlrP4aDZqBFBRQh5HpCyFEAGQA2AcgEsKKZt50N4Mpm3uOE4vWlB/HM/ARLbT1+/3F+Ggd6+KsYJEygun0tv1ZOZavstaUH8beZO1v7MU4LNHh8x+W+LW1BvQlgMoAjlNIzAFwCYFtzbkgp3QygrAWe7aSEV6EVF1U14L/LD7V6hNnag4XYllrSqs9wvOAVx7YpFlRrgIguSbe3aQIqOa8S035P1LTWHQP+1IbnOCg1Wpjyv/XH5b4tLaA8lNJSAC5CiItSugHA2BamoQlCyEOEkDhCSFxx8V/n8JsXUH4/RcyiA5i5OR17MltXJj/4Uxz+/t2uVqNf3eDBM/P341hpXYvf2ycJqBa/9XGBZEE1UUD9/btd+C0uWwoO4eF1LHhb8Psp5u0+1uS5OB74bN1RRMfEqhSQ/dkVGPzSihOiaJbUqNdWS6ClBVQFISQSwGYAvxJCPgXgbWEamqCUzqSUTqSUTuzaVZWQLGF7agkO5jU/sPDFPw5gYbxwzpSUW6l7llTV4EFJjX7OEe+2+b9Zu1HTcEKG66THvmMVWLQ3F28sS27xezOtUsuCqmrwWHJXnEjXGEHzLKiKOo/ud61tqbcGymvd+OdPcbq5gPFZZWj0aq+BpYl5iFl0AF9tTD2ej6jCd1vSkVpUo/ndF+uFZ6msl8/zgdxKAMCS/XnSZ1uOFuOGL7aeMMuquWhpAXUDgHoATwNYCSANwHUtTKNZaInEsqoGD+bsOoZnFyRgZ3oprv18K37ckanZ9rx312PiW2tR0+jVZAa8BrvlaAl8tHXdTzvTS7EkIc+84XEG63/9cfBts3nQGuLLP9qMYS+vlJQPPXgNGPuna49iZ0sezktnUM0bC+31d/oJqF92ZmHNwUL8sC1D9d2q5ALc8vUOLIjTnv9qUYEsrGqQPvP7KX7bc0xXqClhNzCq0evDW7GHcP0XWzW/bxsWBAAorZUL3Kg2IcIzNwYE17PzE5CQU4mSmkaU1DSittGL6JhYzOLGglKK/y4/pCsQ+XbHGy0qoCiltZRSH6XUSyn9kVL6mejyOylQ22hundS5vViWmKfazBsOF+GnHZkABA2MIa1YmMSUgmrN+7EFPfLVVXjpjwOq75VnUIxuvduHuMwyZJS0fIa/0cK6Y+ZOPDF3X4vTtAs2LsrxsYPvtqRrRtwZnUEViIzn2QXGQS56z0Upxcdrj+AOm4fzRwurdeeFlUtsbKZbScud52vhyMAVB/KPy5q1g+LqRsM1zqyHkCA1+zuUL3hXeAHEIyRImA1+/pcdyMe0hQfw9cY002fLrajHgBeXY/H+XNO2DPVuQfDVubUFYLBL6EeVwvvC1jc/FOzXP/blYuJba6Vnnr09U2qTU16PmZvT8eCPewyfSylnF8RlywRdS6Clo/j4hN0GQoivuYm6hJC5AHYAGEoIySGEPNDUe5XX6ftJ69xeFFQ24K3YQ3h8zj4k5lTIvr9/9h68sjhZbBtYKA0eYbGHBZsP5bw92arPlJFZoeKmqXX7cOuMHZj6wUbVNZRSPDlvHzYf0T9rSymoxv7sCs3vWipcOaWgGtllLXNGVKGYG8ZMrbigCqsa8Pfvdqqe5a3YQ5o5S4y52LVS+WfRi75k68EO/tyXi8s+3oz1h4s0v3eZBEnkVtSjSIeh8tASqmYWVGFVA77dnK7L8LenluCpeftAKQWlFI/+uhdXfbpZ+r6yzoOqBn0XY0sjKbcSZ729FvPj1HuNoUh07WntWTZ/4SFBmteyYeCHjbnWCqvMy4eliwrt3N3HAAhnrUwAsTFUwsyLwPaKR7E+Avfln1/4I61IUCKYtySrtA6vLRH4m1X3n7Ldc78n4vWlBy1daxUtbUHxCbvhAG4B8EUz73knpbQnpTSEUtqHUvp9U+9l5Iu/69tdmPzOOmkBKbURHryAYmZ9mLig7ZrvSqYRKm4aI2svrbgWi/fn4d4fdqNGp90Vn2zGjV9qB1DaCVc2EkBXfLIZ57+3wdJ9VicXIDomFnkV9arvth4twdg31mBbagl+j8/B/LhsuJkFpTOeHp8fMQsTkVFSixmb0rAttRSrkgssPQvb0HY9FPyGVDIDBuU5AI+vN6YhOiYWXsX4bxIVDa0gBiBQcV5PQJ337npM+u8607WnNZZmCsC/5+7D28sPIV3HKrrru134c38eMkpqUS2uRV5Ij3ljNca+vlr6u97tk53xUUrx/qrDSBLPS6xi69ES2R6ZsUkY22Piel2akK97LeMDWhYpezaXTpl/JiwoAuPGWlpxeTFrh/GQUa+txoXvC3vo03VHccYLy1WMX89yYmA8RKl4Nmg8K5tuFnjDK4bMimLrJFhhYfr9FLszyqT7nojzy+Nai49S+ieAi48nDTswElDM2mALs85AQNRzC4a58IjFXBWmpTAoFyNzIbywKOAOVAZZ8ELpio8D2upXG1NVlp8SH65Owa82Ek3550gtqsE93+8ydOHkV9bj0o82YfH+XBmzniNqjIcL1AY1O6/ZnVGG/yxIwPO/J0pM3Oen8Pj8ePGPA7KIvsP51Zi3JxtP/bZf2jBtQgNab6lBYApbB3b3Fz9XPLP/16/x+G2P0D9mLYRymzu9uAZHCqvxP7H2X5lCELE1E6rhchKek8ra8eCFXVKewOT1BJmWi88sio+N49xdxwzbXfzhJjzz237N7/hxHvXaKlz9aeAMuKbRiy83pOHaz7daVu7yK+tx9/e7cM4766Q19u4KeV3FrRqRaz4/xY60UjSISuWCuGzVWDGmq3eexNYAr1jWuYX96BK5fkJ2BSb/d51M6G5IKcKVn2xWnRMBAYuOBTtUKZScejMBJc4hO6N0e/14Yu4+rD5YCEA+/kyIVog0lIq42+vHB6tSAADBroCQbvT6MODF5bj9mx245/tdIt2/mIAihNzM/dxKCHkXwPHvhUVU1AcYw5aj2u4xppXV6iwKn5+i1h2YVLaB6xp9OJRfJXPTKDVlQO7rBdSTrOV9m/jWWhRVB1w4/H1zRYuk0evDeytTcP0X23Q1mwaPD5+vT8U73GY2YwqM6S3en4tLP9qELUdLsCJJrp2W1jTipT8OILusDquTC5FaVIMn5+3HmNdXS+HyjBGEBgVhR1opbp+xQ+X64ZVWiRH4KfZklmHOrmOYvjjgrmNnf1X1HklzZBvK56eY8NZazf5QSvGUyEhDg6y9DCunvA4frzkic7Ww/nh9fiw/UIBpCwVBzhimj1K8uewg6t0+XPzhJlzOKRLFnPD0+vyITRTG86nf9uO7LekoqWmUmJ4wFlRGk8Hnp8jkqpB7fBSvL03G2DdWa2q5mi4+xWcP/hiHh3+OQ3pxDa79fAvSioX7f7fV/Gxh7aHA2n/45ziMf3ON9Hed24tGrw9eP0V6SS3Oe3c9ft2VhfLawBr4eO0RVVX19OIaXPf5VhmzZwy7qsGLJ+fJz0uNqvR/uyUdd367U6rBmF/ZgHdWHJK1YYJJ77zPI1krge/3ZglKIWP+/zdrNwqqGnDt51tR0+gFpRQvLTqAwwXVeHyO8LxKCy06JlbiBRVKAWXg4qOUSnPo9gr/Z5XWYklCHranCYrfmoOF0pkam209Sz+rtFYSbMFBROrTwvjAmdmezHIA2vytpdHSFtR13M8VAKohRPadFCjnLKh7vt+t2YZZRDyDeGzOXun3eo8Pldx95ovRPjWNXjz6Szz+9WugbW2jsebzzaY0lRtOL8S5SPRvT//zgGZ+Ep+H8M7yQ6rvgUDfeFTWewxdE4wpPjkvoB27CJExvsX78/DrrmP4YVuGytr7x6w9svu8vzoFd367E7szy7BBFObMQiAIbNqUAkEAHcqvQkK2wJyCCLD8QD6iY2IlIRPsIhKzqGn04bYZ2/HEPO0gj/dWHsaQ6YHCJnkcg5ofl419x8pl7ZnF9vm6VHy67ihWJxdK33n9FA0eH275ervsmjeXCT54n5/i+60Z+GOf+jC8ok4IZX9g9h5pszO8FXsIE99ai3u59cnG2u31w+vz453lh5CUW4mBLy7HpR8FBF9acQ1mbctEndsnaeH8uSuvDC2Mz0FxdaNkTQCClr/2UCFWJRdiR3opknLl1q5SmTHS7FclF8osxYySWhmTy62oxydrj6KMe77P16eqqqovP5CPA7mV+HZLuvQZ7/JKyq3Ct5sD32kJKObGStOISotTjD9zT369MQ1xmWV4fM5emXLI1nFBVQMopfD7qWStMcuc99SMfHUV1hwsRMeIUBkd3jpRQik8+HHmg7G2p5Zg9OurpXmdH5cNj8+vstAB4OGf4wEE5lB55suwl9sDSblVuPjDTSisasC2tIBFOqBLBABjF9/BvCo8/3sCcsqbd0bdoi8spJTe35L3YyCEXAngUwBBAL6jlL7blPsozz/yK+vRs0Mb2WfM5GVutHq3T9JwAUFwlWlMblW9B5mKpFKj8wgAMkuGQe/sadrCRMy6/yz8slPtamnw+GSH5Ly26/H5pWglrfOqcW+uwX3nRuO160do0u3TsQ38forQYJe0OSvrPbJ7vSEy5cp6DxIUgRnsXIK5p/jvlx/Ix8ToThJT4JklHwLMXGNBLiK5QRgKqxpwVGQ8RwurVQwfCLhIv9KIsvpmUzpeuOpMPP97ouq7C97fIHuhYy63ftxeP3aklSIhRxCekWHCVkrMkZ+laCkcNY1eJOVWYt3hIhlD4BGXpf58f04FHhUVoGWJ6jOWLUcDTKSgqgG3ztiBhy4YIH22MD4Ho3p3QHmdG88uSMCYPh1w33nR0vf3zwpEbWlZW++tSkHMVcPQ4PHhqw2puHCofr6hEhkltarQe0rlEbEMbM36/RRzRNdiqaiAJeVWyvZxSU0j3uYUsvxKdbDI2DfWIPPdaxCsYTErA6f4+brru11we/3o2i4MWaV1GNMnSlKG9h2rQEJOJSLDgqW9UFHnkSx7HsyS4RHkIroWCOMbHp8fryxOQp+ObaXvrvhkM+Y8eDZKa93YmFIsUzrXHy7C1tQSNGoE6rAjDKaLluscdyjPGjNKarE9rQQbDxfhzkl9ER4SJIXg67n4hk5fIVmgcVnleOvGkTh3YBfNtmZoqddtfE4I+Uzvp5n3DgLwJYCrAAwHcCchZHhT7pWuWDxzd6sjfZhm8d7KFFQ3eJBVJp+werdPMxowWSP5V09Alde68ZxOGLPegWhyXhWenKvt4y+obJD82EosiMtBZkktbvl6OzJKtPMamNtRy5I6UliDlxcnwe31Y0yfDgCEs6hqjcis0hq3ikG3EYNHtM5FViUX4sYvtyFb1LLMfO2NXr8q8o73oWfraGsT31qLiTouP8D4cHvvsXIpYq+Ii9K64pPNOJgfmPOOEULOCRsjBp5h9ekoKEO1jV5pc+sxCq1n43OzcjWCTZZy+WvxWeU4VlaH6VwU4887s3DJhxvxiugqTcqrwtO/aa9DLWVmzi7h7HLzkWJ8tj4VLy6yXr85vVgQUDeO7YUI8aywXXiwprafXVaHvcfK8evuY8gTBU5OeR2qGzy49vOteEi0BrSgF2yxK70UVfXqPjFrx+enuOf7XZJ7Cwis2eoGL9YfLsLHa49IAspFgPWHCqUz3/6d26K8zo3D+ep0Ez+lqrB1QvQ9LE/MEaIi92aVY+7ubLwvngkx3PXdLvx77j5NPpRVUqsbrVzb6JVcfEpL88lLBiPIRTSDog7nV6PW7cPkAZ3RvX04ahq9qGn06qZa8O7R9OJa3PXtLslbYhct5eKLAxAPIBzAeABHxZ+xAJqbaTkJQCqlNJ1S6gYwD010GyoXaGqRejHxWsGrS5KxKklYsFeN7AFAWFQVtR50EJPgGAo0wnz5My8eaw4VYoFOIqheVB6gv/ku+mAjdmdol0Z68Y8D+H5rBuKzyjFrW6buvSmlKo2Iucl/FbXYt28ahRvH9kJiToWmu3DTkWJ4/RS3jO+Dn/4xCXec1Vc4d/CpBQtDcXUj1ohMwayCQ1FVo2E1hZJq43Irel4Voyipm7/ajkV7BdeU0l3BGMdZ0R1RIZ6l5FbI18GvXHDBS1efCUBgeGbWNQDM230MA15cLv1tp5xMgYYlAQCZpXVYfkCIdjRy0fDXT+zfEfefF43qRi/+syABi8XKBFb6wHAwrwpF1Y0Y2DUSS/89BWHBLvj8VFNAXfzhJtz81XYsFencd2408ioacKRQO9eQR4pOm7/N3InYA2qrk+235QfyJQu0bWgQwkMCrJEPCjpSWIMObUIwoX9HyQKODAvGhP4dUVnv0dzz6w8XoaTGjdsm9JE+a/T6UePW3uvVjV6c8cJymVtdC1pRn1lldZpjCgCZpbWa+7BdWDCevmwIerQPR5ZGaTFmrfft1BY92ocDENaHUYDNthh5bFxTXX0t9T6oHymlPwIYDGAqpfRzSunnEIrFNrcWX28AvKmTI34mg5VafHxGNQAsP1CAlUkFkhtBiUV7c/Hx2iMAgCtGCAKq3uNFeZ0bPdqHSxF3DCFBRLIYAP2oQS13EkNto1daBOrn1xdePyqCLwDgftF9w5JVjaIYp36wEXcqkks7tg34zUODXBjZuwOG9miPwqpGXQYIABcP64YLhnTFmL5R8FOgsLoRYcHyvJJHLxqous5MQOVX1hsmq2q5Xnno8WOrjDanXG21DO/ZHlMGdUW1qFXqlbU69MaVuGx4dwS7CIqqG2TnmHp4eXGS5VD4cf2i5PR0EsetIr8y0NfQYBcm9O8ISoHf43MkRl+s0ddJ0Z0077dZDErq17ktBnSNxF1n90N5rdtwznZnluG8QZ0xsGsE3D4/bvl6h+z7Ub076FwpgLldzXDP97tkwm/SGZ3w+NRB0t+8G3bTkWJU1ntw8bDuSM6rwi87j2Fcvyh0jghFeZ1bcy3llNfDReRrvt7tU7nz+3Vqi0uGdZP+1lJ6/7+9Mw+TqjoT9/tVdVfv+77SNL3QDd3Q7Pu+C0FABdQIjhoxoCAjcYn7brYZJ2byi9FgJprMkJi4/DTyaGYSk5loFAMKQUQdZTMaZQ000jRn/rhL36q6VV10V9vV3ed9nnqq6t57bt1T99zzLec733Hyrosw3n+oOSh/ZUmmYbm//7fjrlaP9UwVZSS6tvH9h5tpKs9kSGkmBWbf9MnRk2EVnPy0BO5c2DZs0NGQ9GgHSRQDaY7vqea2zuCm9wbVNpJcfMdOniYvLQGAFWP7AbDq8S3c5JLhwYnP66Es2/ADH20+zYEjzeSnJ9hzGixqC9P8Qp3dGmuI6RU2J061kpLgPkkwHKfPKLIDBmKn1Ob7ff/AJTx8QpXhG/7gsxNB4x6ZyW1W4n9eNxkwHiLAz70VSInpyirKMBrzR4eb/R7GjZeO5Po5A9kwu9av3FNb/VMs1Rf5r3V59ORp107RItBt4dRYA7lmWpXdmY673z8T8+JhJYypDO5oLbfaY5eO5MFlht6VmhBnu/dC5Xg8f3gpST4vcV4PRZmJ7D3YHJFQdM5rqchJDnMkXDujxu//DDeJO5D0xDhWjqtg3IAce9sBhyXY3NLK8H5ZQeUCO51ffnUc1wXcUzD+I8tKHZCXCkB2so9jn5/m4yMng9rtd5c32R6Kfjkp5KYmBJ1zRl0B/7R0SNh6janM5smrxoY9BoyxO+c4UfOpVmoL29qem5Iws77t2bpodDmZyT5OtpxxfcYAxg7IsZ8dMJQx5zOxfFQZL39tKo+sGNHu9Vo4I43ritLxeoSXd//NbyrHspFl/OYfJyMC73x8zHWqgrUtO8UXsl0uGVaK1yMUpBv34tsvvhNywv/AwjTivR6+PKafvc0tWCgSoi2g7gf+LCKP6WVqugAAGMBJREFUichjwBvAvZ085z6gzPG9FOhQsrhjJ08ze1ABr9w4ndsWuAcFgNEJL24yjLRVkwew/Y7Zthay79AJ3vvkOFX5qUGDrhOq8vwmcAbe7CcuH01Bmrt15CQnpe2BtDrCUFjXBfhZXsP7ZTGhKpd5DYX2tkALbM6gQh5dGfqBsDqTpSPK7IFa6yHbccDf3VhbkMba6dWcP7zU1mytaztw5KTff2H9B5ayECqi6fHLR/O9C4f5bXNz8YWyOJePDr1WZl56Ig9fMtx136iKbDauHBWyrM/rYXJNHg0lRpCB1Zle8ANDw68tSPM/3pGxIDvZx+HmFr//4/sXDWPzukksH1XGi9dO4g6XgJVnr57A3ecODnlNKQlxLB1Zxuj+wYI1xxQAE6tzmVzTprxZnc2CIcXc/qVB9v0AfwXkxOetQcFEFh6B+xY3sOnKsQwrzyI7JT7omIGFbf/HYLNtZKca1/Tep8fJcwigRy4ZwYIhxfY9HVSczqxBhX4uN4D6ojSq8v3/50AS470M7+du0QWyxaGcNbe0UpmXEvZ452/PHlRoK3OBY7AWo/vnEOf18OCyoYytzOFkyxm/MSjrP5AQGqzP6+Erkyr9hJyTC0eX03pGcbLljB24A5CZ7CMx3ktxRhLfDQgwsrAUk0BFwclY8xjLgtry4aGQ6aCKzefeWZe39h+JKNVcINHOJLERGA38ynyNNV1/neE1oFpE+ouID1gGPHOW18W8B3/PweOnUAoKMxLxeITd98xl+x2z7eOKTY0/2eflnkUNvLxhKjfMHYgvzkN+WgLZKT5ueXoHzS2tVOWn2hMrfXEeUnxeptbmEe/ojALN5YL0BPLNTuFrc2r52RVjXK+3IKOtw104tIT1M2tC1u2FdRPtz06L58mrxuH1COeFsSLWTKsKcr05uWxCfy6b0J8109rcHZV5KfjiPPZ8r5n1BQAk+rxcO7OGb54/BK8pcIrMhvrnPYc43NxCfloCa6dXU1dkPNyWhXT6jGKKS0RYdoqP8VU5QdstrM74txum+AkBi3DGalpCHJnJPtvq+Pb5bdq48VCHfjR8cR4yk308e/UE5jUU2da1xSjzumbWF7BmahVXT6u296UnxXPUFFDJPi/fWNLI7EGF1Bamcd/iRqoL0ujnYi2lJcZz8Zh+DCnLDNpn7I8jNzWBf71oWNC++uJ0Nq+bxMNfHkF/M0R4w+xa+mUbn620Pm7RX9CW1unKyZUUZySSEOex//usZB/LR5XbdXa6hS0GFacHbcs2j3v342N+HaMVjj3atGCbyrLweoRLxlYARhsfVp7JDLPd/fa6KawcV+F63cm+0G27qTzTHlcO5NTpMyEFgZPff20qL62fjIiQmWRc99t/PcY5DUXcfE6dfdyg4nSWjzKUpYVDS6gtTKO5pdUe/2oszeDisW3WRpHj+W80g25unl/HTfPqgtqlpQSmJngZ4WLlWn1Cbmpo4WP9f4Gh8BaLmkrs0PIUh9v0t7vcAx+crte106u5aHQ5Z1ToMfRwRCuKb6D5PgzDpbfXfBWb2zqMUuo0sAbYDOwENimlzmoNBhGxNcK3Hb75eK+H1IQ4uyF/Z6lhrXxpaDFJPi/ljo7C4xEum9Df/j5uQK5tQY2syGLHnXMYXZnDj1aOtKOU9hw8jkfaGlycx8NXpwwgIc7DgsZixg7I4fYFwQGJhen+Lo1rplezdnp10HHv3jOXtMQ2oVSWlcz3LhzGdy5o62wDNV+nELMa+8aVI7nE8YBYpPjiuGV+vV8HnJIQR0NJBidbzpCWGNemsbv4QawxgI3//QGtZxQ3zavj2pk1tmY1qDidzOR41k6v5sGlTXa5exc18NL6SQCkJwZr5BaPrBjBs2smkBjv5UtDgj3JjaWZXDVlgP1/ZKf47IfHysO2emoVf7lzNuc2tQ1r5qT6QmqyEJxkdFh5W8fw3eVNpCUa9S5MT+S62bUUOjqc062KrXsP8x+v7SU/LYELRpbZGQgsnJ3jZRP68/hlo+3vT68ez447ZvtZJdDWcTg7EOuYhDiP7X6e31gEGFq/JQQGlxgCJFT2BMsCu3FuHf9z43R23T2X0ZWG4mDV1SIweAhgrBli7HSbWm7g46da/QRUvmnF3TSvjicuH029KdysdluUkcQvvzqexlJDUFfkprBq8gAGl6QHWa6B+fT+cP1U21V6zbRqvn/xcJ5ePT4og8fnp9umZtQUpLr+J2AEDVTlG/uzHM9VRW4yA00XYU1BKs9dM9HPOk3yeTnS3MLfzPlV/7KsiXyHZ+WBJY325xl1BWy7bZYtoK0AiJfWT+aD+8+xBU9mss9VObH+W7choFWTB/DgsqG2kpntolycN7yUf1o61O952HbbLHxxHnts+0rHVIa7Fg5itWP87tqZNVxrKtjb2sly40a05kGtB74CfNtln6KT6Y6UUs8Dz7d7YBjiPMLpM4oF5gPqZOPKkew91MyYyhzeuGWmX2NzsnpqFQePn+LEqdP0z02xx6C8jrGooWWZ/HDFCC784avsOXiCvLQErptVyz/+fBt5aQlU5Bbx9l2F9g1fOb4/T2094JfY1c3nbjW0pSPKqMxLYdu+w3aurN33zOUXW/YxpTYvSCDVFKRxzbQqSrKSuPPZv/DTy8fwxKsf8sSre6jIMbSiqQPzmVKbx7/90T8FUnyceyddV5TGlg8PMaU2377WSDJt1wR0ICLC1ltnBR03pCzDdqF4PMLFY8oZ1T+Ho80t3PzUdu5aOIgTp1pJS4ynwdQwv7GkkV8EREZ6PcL1cwbag8YD8lLYMHsgFz3yCiMcg/nJPv/HILDzv3paFS/v/tSewxVuHHF+Y5FtObvNu5lUk8cf3/+MU61nQlqvznkvt8wPVmBSEuJYNXkA6/5jKwuGGFGVlkssMd7Lg8uG8qs/72ft9Gpe2PFXv7GAERXZ9tyu9TNrWDaq3NbCrZD3W+fX8/DL77N2RjWft7Ta1oqTnBDatjN/25jKbF55/yBDyjL4t38YZVtvAFX5qaQnxnH05GlbWEGbRZAY72V8VdvcGcsyc7OKCjMS+f9XT+T+X7/tF8VnKUjXzarhmW0HKEhPtMdtLFfVkLJMfr1uIodPnKIoI4lx9/+nLcS33Wp0xHW3vgAYysKjITJqZDo696ayLMZX5XDtjBqm1+UHHWtNN7jFTD6dEhDMMakmj1+vnciqx7cwuSbPT+jPHVzET1750Lay0819HhH7MxiC7aWdH1Ns9gf3LmpgQcByHSk+LwuHtilmbhZU4LQJMJSQabX5vGDmvnQqAl82BamT3NQESrOS/FyPkRIVAaWU+or5PjUa5+sKtt42i+ZTra6m7ujKHCwdNZwfFvw7jIykePYfbiY+QAO2NLK9B5sZ3i+LJcNLWeJwtQVq54Ghn25ukjGmxjq4JD2oEcR7PbYLIRCvR1g/y3BjXTCiDBHhzoWDuWV+vV9n4mYxuC1HAG1WWVZyPBVmpxMq/Pt3G6bY2QEG5If36wee3+LucxsAw1V7blOJa3SWxyM8dGETfzv2eVBG5bLsJO5b3MC0gfkUpCey+555rr9bnp3MweOnbKv0qdXjOXHqNOMG5LJsVDn3PreTvLQE6oqCXVY/XzWWvx45iYhg/W1uCUevnFRJQXoC6zdtCxkS7eauDOTcphImVOe6KjMLh5bYHU9TebDbx0JE/MYwvzSkmK17D7OoqYR/cHgL3MhJDa2ZWzy6YiTvfHyMooykoHua7IujIjeFN/cdoSovlbsWDkJBkDVpYbmvrpocHP1pEfhsW4J1zbRqVk+tQkRsQ7/A4aWwxloB/ueGaXYfkGEqqg9d2MSBw81cMbEypICqLkhlZn0BjSUZTK/LR0RYOyPY6wEwfWABX6dtDpmbQlxXlM7vNgR3p7ctqOe62bX2s3nf4ga+uXkXo/tn+wmKu84dREVOsh3c0lCaQVV+qt8aT/EB7cxt/NAZLOJkSm2eLaAaXYRYIENKM4Mm8UdCVDNJiMj5wAtKqWMicjPGnKi7lFLdvsBQakJcxGGnkTJrUAF/+eho0NwlZ8c+oar9GdT1Rel+g6sZLg22tjCNP9003bVDihRLCHk9gtcTrImuHFfBm/sO88YeoyGFSl66oLGYzTv+yhUTKynMSGRqbR6LhrmPdZVlJVNbkEZxZmLY8S4wIo7+/bW9IZUEEQl7D+c3FtN6RvH6h4dY4RDiIhJSgDt5Yd1EWk639bhDHeM9JZlJfM/FhWIx0iW82s096fEI8xuLWb9pm1+Wh0B+evloP63cjc60BTcuHV/BxWP6RSQgrXsULnw4JSEurIAsTE/kTY4wvjrXT1C6UV2Qxjt3zw17bZZiN6Mun39Z3uRnGVtt/7FLR/L01v0h21ixy3XMb/R3H7tFNMZ7Pfzwksgi8AozEvng/nP42Z/20FCSEZQ1PBxxXg8ZSW3Hl2Yl8+CyNvf4z64YQ2K8h6KMJG4OsL5HVmTz7id/Jys5nkMnWoIU0OyU4PZUkO7expwuS+fnUAwpy+C5tz7is79/Ts5ZtNvo9thwi1Lq5yIyASMX37eA/weMDl+sZ7JkWCn//NLuoAHVBMdA5kwX90ggN51TxzmNRXZ+wGSfl5vPqWNQsb9mkh8iWi1aWOmOKm54DnB3UYExl+WZNRPs7xsvDR3x5vEIz149IeQkWSf3LW7g3kUNZ3HFwXg9EhT5FynJvjgILxMiYvGwUvYfaubyie5WiC/Ow9t3zQmpAACMi0CxiTYigi+EWzcQy3U0oiK4s06K90a0EvIDSxq5eMyRdoWTRXuC0/JElGenBLltLQaXZNiRhB1h191z8LY3VyRCIlGazpaxA0IHFd22oJ7VUwdw0SOvmgLKvx75DkHzy6+O46ev7vFzN/sf29YXhfK0OJlRV0BOSoK9LFGkRFtAWa3yHOD7SqmnReT2jp7MtMhuB+qAUUqp1zt9hVGkLDuZZ9aM9/Otg+EyKM1Kojo/1TWCKZD0xHg/DTwx3svlE0Nr113NA0sauOlX2+3IpM4SiUYORgcZpWe/W8lNTeCOhaFDwiH0gng9hYrcFDZdOdaOyHTyxxunRbQoZlaKj0k1kefza4/5jcW8/+lxv0H6aNOeFyCWSYz3UpqVbEfZBgoWZ/TgsPIsv+CfQAoy2oRZuGhJi8q8VCrzQgechCLaAmq/iPwAmAE8ICIJdC5ScDuwGPhBNC6uK7CiiZzEez38bsNUPBJ6XkMgztU9E7v5IVg6spylI6Ov3Wl6F6Nc5lwB7bomu4okn5fr5wzslt/uSVjzDgPnH4oIz66ZQGsE6Uvy0xJ5dMUIagrSgoI8okm0z3wBMAf4llLqsIgUARs6ejKl1E6IvJOPJbyR+LQcOOsYbg6ORqPRdAYr6tjNs9EQQcCDxfQ6Y/gi0iXiO0K0J+qeAD4BrAGK0xhJYzVnQU93/2g0mtjF8uxFMnYUCdZ53Cbbd5ZoR/HdBowAaoGNQDzwODA+TJmXALcp3V9XSj19Fr/9FYy5WJSX92z3VEKEYzYajUZztlhDCOGCdM6W12+eETRpOxpE+4yLgCaMHHwopQ6ISNiEWUqpGdH4YaXUw8DDACNGjIiZZeY7wtlGumg0Gk2kTB2Yz+sfHqK2MHwuw7Mh2lMeLKItoE4ppZSIKAARiWxmpsYPPQal0Wi6ilWTB7CoqcR1zlesEe2ecJMZxZcpIlcALwGPdPRkIrJIRPYBY4HnRGRzlK4zpomm6a3RaDROvB7pEcIJomxBKaW+JSIzgaMY41C3KqVe7MT5rKzofYqeGLWo0Wg00Sbqo1qmQHoRQES8InKRUuqJaP+ORqPRaHo30VpuI11EbhSRh0RklhisAd7HmBuliQDt2tNoNJo2omVB/QQ4BPwRuBxjcq4PWKiU2hql3+j1/OH6qXxmrvei0Wg0fZ1oCahKpVQDgIg8AnwKlCul3NcT0LiSn57Y5QlhNRqNpqcQLQHVYn1QSrWKyP92p3DasmXL30VkV3f9fjeSAZz9qmC9g75a975ab+i7de+N9a512xgtATVERI6anwVIMr8LoJRS7af0ji67lFKRLc7SixCRh63FI/safbXufbXe0Hfr3hvrLSKuK1VEa0VdnfogNni2uy+gG+mrde+r9Ya+W/c+U29REaRW72mIyOt90YLSaDSankioPru3xjU/3N0XoNFoNJqIce2ze6UFpdFoNJqeT2+1oHo8IjJHRHaJyLsicoO5LVtEXhSR3ea765rMbmXN7beLyH4R2Wq+5n1R9TkbOln3H4nIJyKyPWB7ROW7my6qe8zf947WW0TKROS/RGSniOwQkbWOfb36nrdT95i/5xGhlNKvGHsBXuA9oBJjwvM2oB74BnCDecwNwAORljX33Q5c193166q6m/smAcOA7QHbIyrfS+se0/e9k+29CBhmfk4D3nG09159z9upe0zf80hfMW9BdZElEeua1SjgXaXU+0qpU8C/AwvN14/NY34MnHsWZXsKnak7SqmXgYMuuyIq3810Vd1jnQ7XWyn1kVLKWn/uGLATKDF39+p73k7dewUxLaBExAt8D5iLoVUsF5F6DI3iN0qpauA35vdIyxJJ+W6mBNjr+L7P3FaglPoIjMYJ5AOISLGIPN9OWYs1IvKm6Q6KNcEMnat7OFzLxxhdVXeI7fselXqLSAXGgqmvmpv6zD13qTvE9j2PiJgWUHSdJRHrmpXbehsho1mUUgeUUpaPOVzZ7wMDgKHAR8C3O3ORXURn6t7T6aq6x/p973S9RSQVeBJYp5Q66l4yJumqusf6PY+IWBdQXWVJxLpmtQ8oc3wvBQ4AH4tIEYD5/slZlEUp9bFSqlUpdQb4IYYQjzU6U/dwdLb8F0GX1L0H3PdO1VtE4jE66CeUUr907Or19zxU3XvAPY+IWBdQXWVJxDqvAdUi0l9EfMAy4BnztcI8ZgXw9FmUtRq6xSJgu0v57qYzdQ9HZ8t/EXRJ3XvAfe9wvUVEgEeBnUqp7wTs7tX3PFzde8A9j4zujtII98JY6n2z4/uN5msXUKTaIll2RVrW/Nxu+e5+AfMwonLeA75ubsvBGDPbbb5nm9uLgefDlTW3/wR4C3gT4wEo6u56dkHdf4bh0mjB0E4vC1c+1l5dVPeYv+8drTcwAUPxfBPYar7m9YV73k7dY/6eR/KK6Ym6IhKHceOmA/sxtI0LgZXAZ0qp+83ovGyl1NciKauU2iEi32yvvEaj0Wi6l5gWUADmBLN/xpgv8COl1D0ikgNsAsqBPcD5SqmDIlIMPKJMN59bWXO7a/kvuGoajUajCUPMCyiNRqPR9E1iPUhCo9FoNH0ULaA0Go1GE5PErIAKkeLofDMp4hkRCbnek4g8JiLnfXFXq9FoNJpoE5MCKkyaou3AYuDlbrw8jUaj0XwBxKSAIkSaIqXUTqXUrrM5kYjcKiKvich2EXnYnNyGiPxWRB4QkT+JyDsiMrEL6qHRaDSaDhKrAqq9hKdnw0NKqZFKqcFAEjDfsS9OKTUKWAfc1sHzazQajaYLiFUBFc00RVNF5FUReQuYBgxy7LNyV20BKjp4fo1Go9F0AbEqoEImPHVDRDaaq0Y+H7A9EfhX4DylVANG0sRExyGfm++tQFw0Llyj0Wg00SFWO2U7gSJGmqJlGCmOXFFKXRpilyWMPjVT0p8H/CKaF6rRaDSariEmLSil1GlgDbAZY5XITWYOvUUisg8jEexzIrI5xCnigM+VUocxrKa3gKcwBJ9Go9FoegC9LtWRiHgwBNElSqkd3X09Go1Go+kYMWlBdRQzWex24BUtnDQajaZn0+ssKI1Go9H0DnqVBaXRaDSa3kOPEFAiUiYi/yUiO81cfGvN7dki8qKI7Dbfs8ztOebxfxeRhwLOtVxE3hKRN0XkBRHJ7Y46aTQajSY8PcLFJyJFGEsWvyEiaRgTa8/FWFn3oGNl3Cyl1PUikgI0AYOBwUqpNeZ54jDmU9UrpT4VkW8AJ5RSt3/xtdJoNBpNOHqEBaWU+kgp9Yb5+RhG6HkJsBD4sXnYjzGEFkqp40qpPwAnA04l5ivFzMmXTpgJwBqNRqPpPmJ1om5IRKQCwzp6FShQSn0EhhATkfxwZZVSLSJyFca8qOPAbmB1l16wRqPRaDpEj7CgLMxsEE8C65RSRztQPh64CkPAFQNvAjdG9SI1Go1GExV6jIAyhcuTwBNKKSvJ68fm+JQ1TvVJO6cZCqCUek8Zg2+bgHFddMkajUaj6QQ9QkCZ40WPAjuVUt9x7HoGWGF+XgE83c6p9gP1IpJnfp+JMZ6l0Wg0mhijp0TxTQB+jzF2dMbcfBPGONQmoBzYA5yvlDpolvkAIwjCBxwGZiml/iIiq4C1QAvwIbBSKfXZF1cbjUaj0URCjxBQGo1Go+l79AgXn0aj0Wj6HlpAaTQajSYm0QJKo9FoNDGJFlAajUajiUm0gNJoNBpNTKIFlEaj0WhiEi2gNBqNRhOT/B/1bFHjEWQu6AAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "execution_count": 77, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "decomposition = api.tsa.seasonal_decompose(sensor['userAcceleration.x'],freq=60)\n", + "decomposition.plot()" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "decomposition = api.tsa.seasonal_decompose(sensor['userAcceleration.x'],freq=60)\n", + "decomposition.plot()" ] }, { @@ -165,12 +664,25 @@ }, { "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], + "execution_count": 88, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ "# Your code here:\n", - "\n" + "pd.plotting.lag_plot(sensor['userAcceleration.x']);\n" ] }, { @@ -182,12 +694,26 @@ }, { "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], + "execution_count": 89, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ "# Your code here:\n", - "\n" + "\n", + "pd.plotting.lag_plot(sensor['rotationRate.x']);\n" ] }, { @@ -299,7 +825,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.4" } }, "nbformat": 4, From fcd9ab5f244deb621b196485b3e5a31c4fd31748 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sun, 10 Nov 2019 15:01:38 +0100 Subject: [PATCH 19/30] Tableau project added --- .../Coffee production/Data cleaning.ipynb | 305 + .../cleaned_data/crop_residue_c.csv | 5684 +++++++++++++++++ .../cleaned_data/gross_production_value_c.csv | 1137 ++++ .../cleaned_data/pesticides_usage_c.csv | 3861 +++++++++++ .../cleaned_data/primary_forest_c.csv | 5405 ++++++++++++++++ .../cleaned_data/production_quantity_c.csv | 3976 ++++++++++++ .../original_data/crop_residue.csv | 5684 +++++++++++++++++ .../original_data/gross_production_value.csv | 1137 ++++ .../original_data/pesticides_usage.csv | 3861 +++++++++++ .../original_data/primary_forest.csv | 5405 ++++++++++++++++ .../original_data/production_quantity.csv | 3976 ++++++++++++ .../tableau-project/your-code/README.md | 80 + 12 files changed, 40511 insertions(+) create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/Data cleaning.ipynb create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/crop_residue_c.csv create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/gross_production_value_c.csv create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/pesticides_usage_c.csv create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/primary_forest_c.csv create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/production_quantity_c.csv create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/original_data/crop_residue.csv create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/original_data/gross_production_value.csv create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/original_data/pesticides_usage.csv create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/original_data/primary_forest.csv create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/original_data/production_quantity.csv create mode 100644 module-2_projects/tableau-project/your-code/README.md diff --git a/module-2_projects/tableau-project/your-code/Coffee production/Data cleaning.ipynb b/module-2_projects/tableau-project/your-code/Coffee production/Data cleaning.ipynb new file mode 100644 index 0000000..3238a3a --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/Data cleaning.ipynb @@ -0,0 +1,305 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Data cleaning \n", + "\n", + "In total we collected 5 csv files with data of different aspects of coffee production that we will later explore. All files will be imported in this notebook. We will examine each file and 4 of the files will go through the following data cleaning process with a function:\n", + "\n", + "1. Convert csv file to a dataframe\n", + "2. Drop unncessary columns\n", + "3. Rename columns\n", + "4. Rearrange columns\n", + "5. Export to cleaned csv files\n", + "\n", + "Exception: \n", + "- Data for 'production_quantity' has different column name for country. We will do it seperately without function. " + ] + }, + { + "cell_type": "code", + "execution_count": 95, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Dataframe 1 : production_quantity" + ] + }, + { + "cell_type": "code", + "execution_count": 105, + "metadata": {}, + "outputs": [], + "source": [ + "# Convert csv file to dataframe\n", + "production_quantity = pd.read_csv('./original_data/production_quantity.csv')" + ] + }, + { + "cell_type": "code", + "execution_count": 106, + "metadata": {}, + "outputs": [], + "source": [ + "# Drop unnecessary columns\n", + "to_drop = ['Domain Code','Domain','Country Code','Element Code','Element','Item Code','Item','Year Code','Flag','Flag Description']\n", + "\n", + "production_quantity = production_quantity.drop(to_drop,axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 107, + "metadata": {}, + "outputs": [], + "source": [ + "# Rename columns\n", + "production_quantity = production_quantity.rename({'Value': 'production_quantity'},axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 108, + "metadata": {}, + "outputs": [], + "source": [ + "# Rearrange columns\n", + "production_quantity = production_quantity[['Country','Year','production_quantity','Unit']]" + ] + }, + { + "cell_type": "code", + "execution_count": 113, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryYearproduction_quantityUnit
0Angola19611691000 tonnes
1Angola19621851000 tonnes
2Angola19631681000 tonnes
3Angola19641981000 tonnes
4Angola19652051000 tonnes
...............
3970China2009701000 tonnes
3971China2010501000 tonnes
3972China2011651000 tonnes
3973China2012921000 tonnes
3974China20131171000 tonnes
\n", + "

3975 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " Country Year production_quantity Unit\n", + "0 Angola 1961 169 1000 tonnes\n", + "1 Angola 1962 185 1000 tonnes\n", + "2 Angola 1963 168 1000 tonnes\n", + "3 Angola 1964 198 1000 tonnes\n", + "4 Angola 1965 205 1000 tonnes\n", + "... ... ... ... ...\n", + "3970 China 2009 70 1000 tonnes\n", + "3971 China 2010 50 1000 tonnes\n", + "3972 China 2011 65 1000 tonnes\n", + "3973 China 2012 92 1000 tonnes\n", + "3974 China 2013 117 1000 tonnes\n", + "\n", + "[3975 rows x 4 columns]" + ] + }, + "execution_count": 113, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "production_quantity" + ] + }, + { + "cell_type": "code", + "execution_count": 114, + "metadata": {}, + "outputs": [], + "source": [ + "production_quantity.to_csv(f'./cleaned_data/production_quantity_c.csv')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Dataframes 2-4: gross_production_value, primary_forest, pesticides_usage\n", + "\n", + "- Define a function for cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "metadata": {}, + "outputs": [], + "source": [ + "def csv_to_dataframe(filename):\n", + " df = pd.read_csv(f'./original_data/{filename}.csv')\n", + " to_drop = ['Domain Code','Domain','Area Code','Element Code','Element','Item Code','Item','Year Code','Flag','Flag Description']\n", + " df = (df.drop(to_drop,axis=1)\n", + " .rename({'Area':'Country','Value': f'{filename}'},axis=1)[['Country','Year',f'{filename}','Unit']])\n", + " filename = df.copy()\n", + " return filename\n", + " \n", + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- Save all dataframes first into a dictionary" + ] + }, + { + "cell_type": "code", + "execution_count": 112, + "metadata": {}, + "outputs": [], + "source": [ + "files= ['gross_production_value','primary_forest','pesticides_usage','crop_residue']\n", + "\n", + "df_dict={}\n", + "for file in files:\n", + " csv_to_dataframe(file).to_csv(f'./cleaned_data/{file}_c.csv')\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/crop_residue_c.csv b/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/crop_residue_c.csv new file mode 100644 index 0000000..60e26e0 --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/crop_residue_c.csv @@ -0,0 +1,5684 @@ +,Country,Year,crop_residue,Unit +0,Albania,1961,144872.6789,kg of nutrients +1,Albania,1962,140266.551,kg of nutrients +2,Albania,1963,220659.6536,kg of nutrients +3,Albania,1964,201726.2141,kg of nutrients +4,Albania,1965,132136.7024,kg of nutrients +5,Albania,1966,195221.53,kg of nutrients +6,Albania,1967,211025.5159,kg of nutrients +7,Albania,1968,232694.142,kg of nutrients +8,Albania,1969,198381.7057,kg of nutrients +9,Albania,1970,206450.1101,kg of nutrients +10,Albania,1971,200972.6038,kg of nutrients +11,Albania,1972,188003.104,kg of nutrients +12,Albania,1973,159059.904,kg of nutrients +13,Albania,1974,191681.7056,kg of nutrients +14,Albania,1975,144261.52,kg of nutrients +15,Albania,1976,208993.08800000002,kg of nutrients +16,Albania,1977,237845.392,kg of nutrients +17,Albania,1978,244872.35199999998,kg of nutrients +18,Albania,1979,265953.232,kg of nutrients +19,Albania,1980,259670.736,kg of nutrients +20,Albania,1981,273633.76,kg of nutrients +21,Albania,1982,258744.48,kg of nutrients +22,Albania,1983,246179.488,kg of nutrients +23,Albania,1984,233614.496,kg of nutrients +24,Albania,1985,208484.512,kg of nutrients +25,Albania,1986,241530.91199999998,kg of nutrients +26,Albania,1987,263393.05600000004,kg of nutrients +27,Albania,1988,270837.696,kg of nutrients +28,Albania,1989,301559.808,kg of nutrients +29,Albania,1990,235467.008,kg of nutrients +30,Albania,1991,183331.556,kg of nutrients +31,Albania,1992,281692.1865,kg of nutrients +32,Albania,1993,270264.7369,kg of nutrients +33,Albania,1994,236249.0338,kg of nutrients +34,Albania,1995,271306.9718,kg of nutrients +35,Albania,1996,305565.87,kg of nutrients +36,Albania,1997,266446.21,kg of nutrients +37,Albania,1998,271812.3668,kg of nutrients +38,Albania,1999,302866.94399999996,kg of nutrients +39,Albania,2000,296537.2704,kg of nutrients +40,Albania,2001,250885.6192,kg of nutrients +41,Albania,2002,254985.36,kg of nutrients +42,Albania,2003,220679.0016,kg of nutrients +43,Albania,2004,242743.6928,kg of nutrients +44,Albania,2005,240699.0112,kg of nutrients +45,Albania,2006,236659.9462,kg of nutrients +46,Albania,2007,215195.0656,kg of nutrients +47,Albania,2008,218082.0256,kg of nutrients +48,Albania,2009,221993.056,kg of nutrients +49,Albania,2010,224880.016,kg of nutrients +50,Albania,2011,236747.7216,kg of nutrients +51,Albania,2012,246941.24800000002,kg of nutrients +52,Albania,2013,249083.74399999998,kg of nutrients +53,Algeria,1961,15010.1709,kg of nutrients +54,Algeria,1962,14053.92,kg of nutrients +55,Algeria,1963,19312.3456,kg of nutrients +56,Algeria,1964,22918.7971,kg of nutrients +57,Algeria,1965,18747.9558,kg of nutrients +58,Algeria,1966,16103.3819,kg of nutrients +59,Algeria,1967,14758.283000000001,kg of nutrients +60,Algeria,1968,40372.6816,kg of nutrients +61,Algeria,1969,48192.66099999999,kg of nutrients +62,Algeria,1970,57099.5328,kg of nutrients +63,Algeria,1971,64659.2987,kg of nutrients +64,Algeria,1972,70176.3333,kg of nutrients +65,Algeria,1973,57190.3214,kg of nutrients +66,Algeria,1974,58688.98,kg of nutrients +67,Algeria,1975,44545.0826,kg of nutrients +68,Algeria,1976,28315.013,kg of nutrients +69,Algeria,1977,21104.5255,kg of nutrients +70,Algeria,1978,21147.9038,kg of nutrients +71,Algeria,1979,18304.1522,kg of nutrients +72,Algeria,1980,17631.7757,kg of nutrients +73,Algeria,1981,23614.1839,kg of nutrients +74,Algeria,1982,13857.5037,kg of nutrients +75,Algeria,1983,20348.4938,kg of nutrients +76,Algeria,1984,26106.4116,kg of nutrients +77,Algeria,1985,24734.4466,kg of nutrients +78,Algeria,1986,25654.1536,kg of nutrients +79,Algeria,1987,28654.504,kg of nutrients +80,Algeria,1988,18541.7013,kg of nutrients +81,Algeria,1989,12684.0812,kg of nutrients +82,Algeria,1990,12004.5148,kg of nutrients +83,Algeria,1991,8821.5554,kg of nutrients +84,Algeria,1992,10263.940999999999,kg of nutrients +85,Algeria,1993,10296.2735,kg of nutrients +86,Algeria,1994,9131.5947,kg of nutrients +87,Algeria,1995,5969.406,kg of nutrients +88,Algeria,1996,11806.0855,kg of nutrients +89,Algeria,1997,13730.2434,kg of nutrients +90,Algeria,1998,19297.4438,kg of nutrients +91,Algeria,1999,17761.6841,kg of nutrients +92,Algeria,2000,11674.5667,kg of nutrients +93,Algeria,2001,12543.0136,kg of nutrients +94,Algeria,2002,13283.1057,kg of nutrients +95,Algeria,2003,17225.5442,kg of nutrients +96,Algeria,2004,22924.9994,kg of nutrients +97,Algeria,2005,12388.3903,kg of nutrients +98,Algeria,2006,15822.3035,kg of nutrients +99,Algeria,2007,15073.1909,kg of nutrients +100,Algeria,2008,10527.8971,kg of nutrients +101,Algeria,2009,17965.0262,kg of nutrients +102,Algeria,2010,13364.4904,kg of nutrients +103,Algeria,2011,13947.267,kg of nutrients +104,Algeria,2012,16953.6592,kg of nutrients +105,Algeria,2013,17597.4207,kg of nutrients +106,Angola,1961,1137752.96,kg of nutrients +107,Angola,1962,1153114.0159999998,kg of nutrients +108,Angola,1963,1163354.72,kg of nutrients +109,Angola,1964,1215938.976,kg of nutrients +110,Angola,1965,1193184.4835,kg of nutrients +111,Angola,1966,1213614.688,kg of nutrients +112,Angola,1967,1213883.4752,kg of nutrients +113,Angola,1968,1213883.4752,kg of nutrients +114,Angola,1969,1218499.152,kg of nutrients +115,Angola,1970,1277383.2,kg of nutrients +116,Angola,1971,1251781.44,kg of nutrients +117,Angola,1972,1251781.44,kg of nutrients +118,Angola,1973,1262022.144,kg of nutrients +119,Angola,1974,1262022.144,kg of nutrients +120,Angola,1975,1251781.44,kg of nutrients +121,Angola,1976,1251781.44,kg of nutrients +122,Angola,1977,1226179.68,kg of nutrients +123,Angola,1978,1023724.48,kg of nutrients +124,Angola,1979,1043350.7892,kg of nutrients +125,Angola,1980,1040007.1994,kg of nutrients +126,Angola,1981,1023724.48,kg of nutrients +127,Angola,1982,1098170.88,kg of nutrients +128,Angola,1983,1172617.28,kg of nutrients +129,Angola,1984,1247063.68,kg of nutrients +130,Angola,1985,1247063.68,kg of nutrients +131,Angola,1986,1326630.432,kg of nutrients +132,Angola,1987,1326630.432,kg of nutrients +133,Angola,1988,1167025.152,kg of nutrients +134,Angola,1989,1167025.152,kg of nutrients +135,Angola,1990,1069773.0559999999,kg of nutrients +136,Angola,1991,1167025.152,kg of nutrients +137,Angola,1992,1189359.072,kg of nutrients +138,Angola,1993,1303859.328,kg of nutrients +139,Angola,1994,3152224.704,kg of nutrients +140,Angola,1995,2373195.2,kg of nutrients +141,Angola,1996,1448004.8124,kg of nutrients +142,Angola,1997,1653593.3139,kg of nutrients +143,Angola,1998,2024658.3424,kg of nutrients +144,Angola,1999,1756895.4086,kg of nutrients +145,Angola,2000,1835259.6338,kg of nutrients +146,Angola,2001,2111329.5354,kg of nutrients +147,Angola,2002,2249093.8152,kg of nutrients +148,Angola,2003,2207328.7739,kg of nutrients +149,Angola,2004,2863064.7605,kg of nutrients +150,Angola,2005,3176810.1864,kg of nutrients +151,Angola,2006,2823066.2701,kg of nutrients +152,Angola,2007,3659863.5898,kg of nutrients +153,Angola,2008,3429091.6038,kg of nutrients +154,Angola,2009,6384122.723999999,kg of nutrients +155,Angola,2010,6429414.9945,kg of nutrients +156,Angola,2011,7412366.2432,kg of nutrients +157,Angola,2012,4592711.0527,kg of nutrients +158,Angola,2013,7432805.6617,kg of nutrients +159,Argentina,1961,400723.2592,kg of nutrients +160,Argentina,1962,293715.6672,kg of nutrients +161,Argentina,1963,377993.9085,kg of nutrients +162,Argentina,1964,375704.7755,kg of nutrients +163,Argentina,1965,474933.5835,kg of nutrients +164,Argentina,1966,363508.0301,kg of nutrients +165,Argentina,1967,353498.8901,kg of nutrients +166,Argentina,1968,402337.2962,kg of nutrients +167,Argentina,1969,585338.6472,kg of nutrients +168,Argentina,1970,509717.536,kg of nutrients +169,Argentina,1971,753543.7376,kg of nutrients +170,Argentina,1972,760037.0240000001,kg of nutrients +171,Argentina,1973,959166.8288,kg of nutrients +172,Argentina,1974,1394397.7056,kg of nutrients +173,Argentina,1975,1579550.2448,kg of nutrients +174,Argentina,1976,1967084.3104,kg of nutrients +175,Argentina,1977,2066688.0,kg of nutrients +176,Argentina,1978,1693477.856,kg of nutrients +177,Argentina,1979,2925153.5056,kg of nutrients +178,Argentina,1980,2273722.5919999997,kg of nutrients +179,Argentina,1981,2720755.744,kg of nutrients +180,Argentina,1982,3010603.216,kg of nutrients +181,Argentina,1983,2596739.744,kg of nutrients +182,Argentina,1984,2354817.9976,kg of nutrients +183,Argentina,1985,2439897.6656,kg of nutrients +184,Argentina,1986,2758684.9152,kg of nutrients +185,Argentina,1987,1876454.8123,kg of nutrients +186,Argentina,1988,2154525.6256,kg of nutrients +187,Argentina,1989,1659680.0736,kg of nutrients +188,Argentina,1990,2608257.8974,kg of nutrients +189,Argentina,1991,2648691.4787,kg of nutrients +190,Argentina,1992,2449266.239,kg of nutrients +191,Argentina,1993,1964831.1053,kg of nutrients +192,Argentina,1994,2286248.1212,kg of nutrients +193,Argentina,1995,2863212.9048,kg of nutrients +194,Argentina,1996,2901351.811,kg of nutrients +195,Argentina,1997,3285005.4174,kg of nutrients +196,Argentina,1998,3558158.2654,kg of nutrients +197,Argentina,1999,4143601.0699,kg of nutrients +198,Argentina,2000,3577534.6681,kg of nutrients +199,Argentina,2001,3260220.4827,kg of nutrients +200,Argentina,2002,3335381.2112,kg of nutrients +201,Argentina,2003,2483928.1296,kg of nutrients +202,Argentina,2004,1671861.8459,kg of nutrients +203,Argentina,2005,1928707.7609,kg of nutrients +204,Argentina,2006,3402882.0344,kg of nutrients +205,Argentina,2007,3550769.5452,kg of nutrients +206,Argentina,2008,3622363.5478,kg of nutrients +207,Argentina,2009,3662368.4841,kg of nutrients +208,Argentina,2010,3727238.6254,kg of nutrients +209,Argentina,2011,3734449.3161,kg of nutrients +210,Argentina,2012,4082347.0342,kg of nutrients +211,Argentina,2013,1568160.176,kg of nutrients +212,Armenia,1992,23790.4456,kg of nutrients +213,Armenia,1993,31649.8275,kg of nutrients +214,Armenia,1994,39466.9696,kg of nutrients +215,Armenia,1995,34234.0832,kg of nutrients +216,Armenia,1996,42794.6795,kg of nutrients +217,Armenia,1997,34114.1888,kg of nutrients +218,Armenia,1998,29015.4126,kg of nutrients +219,Armenia,1999,31130.9232,kg of nutrients +220,Armenia,2000,34496.5231,kg of nutrients +221,Armenia,2001,28873.6877,kg of nutrients +222,Armenia,2002,29502.3524,kg of nutrients +223,Armenia,2003,36117.0987,kg of nutrients +224,Armenia,2004,38784.7329,kg of nutrients +225,Armenia,2005,33483.1902,kg of nutrients +226,Armenia,2006,32209.3612,kg of nutrients +227,Armenia,2007,39376.5645,kg of nutrients +228,Armenia,2008,45732.623,kg of nutrients +229,Armenia,2009,42946.8187,kg of nutrients +230,Armenia,2010,34568.4627,kg of nutrients +231,Armenia,2011,39120.1443,kg of nutrients +232,Armenia,2012,38043.9268,kg of nutrients +233,Armenia,2013,39212.2761,kg of nutrients +234,Australia,1961,8311.5111,kg of nutrients +235,Australia,1962,10579.827,kg of nutrients +236,Australia,1963,20395.9135,kg of nutrients +237,Australia,1964,12729.5668,kg of nutrients +238,Australia,1965,10297.3996,kg of nutrients +239,Australia,1966,19914.6004,kg of nutrients +240,Australia,1967,25592.2627,kg of nutrients +241,Australia,1968,34504.9437,kg of nutrients +242,Australia,1969,52163.0852,kg of nutrients +243,Australia,1970,40312.8228,kg of nutrients +244,Australia,1971,95927.0811,kg of nutrients +245,Australia,1972,80054.7075,kg of nutrients +246,Australia,1973,46672.6804,kg of nutrients +247,Australia,1974,38531.663,kg of nutrients +248,Australia,1975,87569.5214,kg of nutrients +249,Australia,1976,91624.2492,kg of nutrients +250,Australia,1977,119231.1249,kg of nutrients +251,Australia,1978,61063.3072,kg of nutrients +252,Australia,1979,39849.3584,kg of nutrients +253,Australia,1980,35690.5345,kg of nutrients +254,Australia,1981,71776.4238,kg of nutrients +255,Australia,1982,187200.5696,kg of nutrients +256,Australia,1983,248644.9923,kg of nutrients +257,Australia,1984,323078.7066,kg of nutrients +258,Australia,1985,402141.727,kg of nutrients +259,Australia,1986,553602.9734,kg of nutrients +260,Australia,1987,379239.8969,kg of nutrients +261,Australia,1988,391176.8505,kg of nutrients +262,Australia,1989,256483.5506,kg of nutrients +263,Australia,1990,307342.4996,kg of nutrients +264,Australia,1991,353892.0296,kg of nutrients +265,Australia,1992,380183.008,kg of nutrients +266,Australia,1993,370300.2208,kg of nutrients +267,Australia,1994,388608.0,kg of nutrients +268,Australia,1995,424766.8704,kg of nutrients +269,Australia,1996,647326.0576,kg of nutrients +270,Australia,1997,517017.184,kg of nutrients +271,Australia,1998,673389.2159999999,kg of nutrients +272,Australia,1999,627777.824,kg of nutrients +273,Australia,2000,684101.696,kg of nutrients +274,Australia,2001,607404.608,kg of nutrients +275,Australia,2002,564713.5168,kg of nutrients +276,Australia,2003,464866.4099,kg of nutrients +277,Australia,2004,547097.9861,kg of nutrients +278,Australia,2005,571993.2192,kg of nutrients +279,Australia,2006,392782.592,kg of nutrients +280,Australia,2007,475993.4051,kg of nutrients +281,Australia,2008,567984.816,kg of nutrients +282,Australia,2009,665235.3105,kg of nutrients +283,Australia,2010,556999.6479999999,kg of nutrients +284,Australia,2011,977304.5029,kg of nutrients +285,Australia,2012,637520.7984,kg of nutrients +286,Australia,2013,462108.64,kg of nutrients +287,Austria,1961,11016.8528,kg of nutrients +288,Austria,1962,9130.9529,kg of nutrients +289,Austria,1963,7659.0655,kg of nutrients +290,Austria,1964,8356.7449,kg of nutrients +291,Austria,1965,8677.8426,kg of nutrients +292,Austria,1966,7482.2467,kg of nutrients +293,Austria,1967,7703.8371,kg of nutrients +294,Austria,1968,7249.1731,kg of nutrients +295,Austria,1969,3751.6172,kg of nutrients +296,Austria,1970,3727.4308,kg of nutrients +297,Austria,1971,3263.8722,kg of nutrients +298,Austria,1972,4558.6765,kg of nutrients +299,Austria,1973,4774.1685,kg of nutrients +300,Austria,1974,4333.4156,kg of nutrients +301,Azerbaijan,1992,58508.2221,kg of nutrients +302,Azerbaijan,1993,56491.6653,kg of nutrients +303,Azerbaijan,1994,64242.8309,kg of nutrients +304,Azerbaijan,1995,54546.7367,kg of nutrients +305,Azerbaijan,1996,31230.2199,kg of nutrients +306,Azerbaijan,1997,32927.9908,kg of nutrients +307,Azerbaijan,1998,37663.0616,kg of nutrients +308,Azerbaijan,1999,43714.692,kg of nutrients +309,Azerbaijan,2000,49187.9111,kg of nutrients +310,Azerbaijan,2001,54331.5502,kg of nutrients +311,Azerbaijan,2002,54668.6882,kg of nutrients +312,Azerbaijan,2003,65356.8162,kg of nutrients +313,Azerbaijan,2004,72672.8998,kg of nutrients +314,Azerbaijan,2005,78848.7803,kg of nutrients +315,Azerbaijan,2006,77115.5003,kg of nutrients +316,Azerbaijan,2007,83897.2715,kg of nutrients +317,Azerbaijan,2008,92785.4195,kg of nutrients +318,Azerbaijan,2009,86016.27,kg of nutrients +319,Azerbaijan,2010,83675.1747,kg of nutrients +320,Azerbaijan,2011,88111.1828,kg of nutrients +321,Azerbaijan,2012,87238.4458,kg of nutrients +322,Azerbaijan,2013,83984.6067,kg of nutrients +323,Bangladesh,1961,767087.9467,kg of nutrients +324,Bangladesh,1962,803239.1185,kg of nutrients +325,Bangladesh,1963,750653.233,kg of nutrients +326,Bangladesh,1964,746810.2731,kg of nutrients +327,Bangladesh,1965,752840.4315,kg of nutrients +328,Bangladesh,1966,899630.4235,kg of nutrients +329,Bangladesh,1967,847864.9741,kg of nutrients +330,Bangladesh,1968,898028.939,kg of nutrients +331,Bangladesh,1969,905116.0692,kg of nutrients +332,Bangladesh,1970,874109.5654,kg of nutrients +333,Bangladesh,1971,842307.787,kg of nutrients +334,Bangladesh,1972,1006108.32,kg of nutrients +335,Bangladesh,1973,1191315.36,kg of nutrients +336,Bangladesh,1974,1428634.88,kg of nutrients +337,Bangladesh,1975,1554284.8,kg of nutrients +338,Bangladesh,1976,1828827.52,kg of nutrients +339,Bangladesh,1977,1891652.48,kg of nutrients +340,Bangladesh,1978,2079183.8080000002,kg of nutrients +341,Bangladesh,1979,1908866.0480000002,kg of nutrients +342,Bangladesh,1980,1823707.168,kg of nutrients +343,Bangladesh,1981,1655713.696,kg of nutrients +344,Bangladesh,1982,1603601.216,kg of nutrients +345,Bangladesh,1983,1555062.6048,kg of nutrients +346,Bangladesh,1984,1463530.3328,kg of nutrients +347,Bangladesh,1985,1354207.9840000002,kg of nutrients +348,Bangladesh,1986,1323829.952,kg of nutrients +349,Bangladesh,1987,1401362.4,kg of nutrients +350,Bangladesh,1988,1357421.7280000001,kg of nutrients +351,Bangladesh,1989,1392361.1678,kg of nutrients +352,Bangladesh,1990,1367591.0106,kg of nutrients +353,Bangladesh,1991,1343608.8186,kg of nutrients +354,Bangladesh,1992,1325790.656,kg of nutrients +355,Bangladesh,1993,1320670.304,kg of nutrients +356,Bangladesh,1994,1341987.072,kg of nutrients +357,Bangladesh,1995,1314714.592,kg of nutrients +358,Bangladesh,1996,1321977.44,kg of nutrients +359,Bangladesh,1997,1318346.0159999998,kg of nutrients +360,Bangladesh,1998,903159.0246,kg of nutrients +361,Bangladesh,1999,915505.0014,kg of nutrients +362,Bangladesh,2000,870015.4874,kg of nutrients +363,Bangladesh,2001,804638.2192,kg of nutrients +364,Bangladesh,2002,769096.3045,kg of nutrients +365,Bangladesh,2003,756479.2,kg of nutrients +366,Bangladesh,2004,531701.1347,kg of nutrients +367,Bangladesh,2005,514527.9106,kg of nutrients +368,Bangladesh,2006,543640.3206,kg of nutrients +369,Bangladesh,2007,568291.4189,kg of nutrients +370,Bangladesh,2008,549457.9804,kg of nutrients +371,Bangladesh,2009,660492.4212,kg of nutrients +372,Bangladesh,2010,687931.4646,kg of nutrients +373,Bangladesh,2011,762253.12,kg of nutrients +374,Bangladesh,2012,761417.76,kg of nutrients +375,Bangladesh,2013,747599.728,kg of nutrients +376,Barbados,1998,1930.6715,kg of nutrients +377,Barbados,1999,1996.7643,kg of nutrients +378,Barbados,2000,2187.5981,kg of nutrients +379,Barbados,2001,2352.8301,kg of nutrients +380,Barbados,2002,2538.5435,kg of nutrients +381,Barbados,2003,3255.7954,kg of nutrients +382,Barbados,2004,1537.6587,kg of nutrients +383,Barbados,2005,2202.9591,kg of nutrients +384,Barbados,2006,2383.5522,kg of nutrients +385,Barbados,2007,1588.1143,kg of nutrients +386,Barbados,2008,1083.5583,kg of nutrients +387,Barbados,2009,1073.3176,kg of nutrients +388,Barbados,2010,1424.1148,kg of nutrients +389,Barbados,2011,1728.2235,kg of nutrients +390,Barbados,2012,1401.6855,kg of nutrients +391,Barbados,2013,716.6708,kg of nutrients +392,Belarus,1992,614303.872,kg of nutrients +393,Belarus,1993,603154.208,kg of nutrients +394,Belarus,1994,573812.832,kg of nutrients +395,Belarus,1995,771147.68,kg of nutrients +396,Belarus,1996,1278430.528,kg of nutrients +397,Belarus,1997,2044492.448,kg of nutrients +398,Belarus,1998,1862886.656,kg of nutrients +399,Belarus,1999,1485902.304,kg of nutrients +400,Belarus,2000,1772187.5359999998,kg of nutrients +401,Belarus,2001,1856891.936,kg of nutrients +402,Belarus,2002,1796425.856,kg of nutrients +403,Belarus,2003,773682.687,kg of nutrients +404,Belarus,2004,909609.9388,kg of nutrients +405,Belarus,2005,892552.3763,kg of nutrients +406,Belarus,2006,780747.816,kg of nutrients +407,Belarus,2007,705564.1788,kg of nutrients +408,Belarus,2008,1020624.2603,kg of nutrients +409,Belarus,2009,1341252.0568,kg of nutrients +410,Belarus,2010,1258746.8248,kg of nutrients +411,Belarus,2011,1235205.1118,kg of nutrients +412,Belarus,2012,1792055.5822,kg of nutrients +413,Belarus,2013,1824254.3126,kg of nutrients +414,Belgium,2000,9122.2784,kg of nutrients +415,Belgium,2001,1768.5344,kg of nutrients +416,Belgium,2002,3537.0688,kg of nutrients +417,Belgium,2003,3969.0309,kg of nutrients +418,Belgium,2004,5228.1657,kg of nutrients +419,Belgium,2005,3656.3906,kg of nutrients +420,Belgium,2006,4382.537,kg of nutrients +421,Belgium,2007,2465.8112,kg of nutrients +422,Belgium,2008,2351.8173,kg of nutrients +423,Belgium,2009,3468.8247,kg of nutrients +424,Belgium,2010,6097.2448,kg of nutrients +425,Belgium,2011,4282.9945,kg of nutrients +426,Belgium,2012,3778.4689,kg of nutrients +427,Belgium,2013,3805.5209999999997,kg of nutrients +428,Belgium-Luxembourg,1961,6915.0041,kg of nutrients +429,Belgium-Luxembourg,1962,6877.4475,kg of nutrients +430,Belgium-Luxembourg,1963,6789.5271,kg of nutrients +431,Belgium-Luxembourg,1964,11132.9539,kg of nutrients +432,Belgium-Luxembourg,1965,9597.0087,kg of nutrients +433,Belgium-Luxembourg,1966,11601.0793,kg of nutrients +434,Belgium-Luxembourg,1967,16300.1125,kg of nutrients +435,Belgium-Luxembourg,1968,8747.8826,kg of nutrients +436,Belgium-Luxembourg,1969,10672.8236,kg of nutrients +437,Belgium-Luxembourg,1970,11300.8781,kg of nutrients +438,Belgium-Luxembourg,1971,12014.793,kg of nutrients +439,Belgium-Luxembourg,1972,12969.6286,kg of nutrients +440,Belgium-Luxembourg,1973,22234.2641,kg of nutrients +441,Belgium-Luxembourg,1974,28542.8116,kg of nutrients +442,Belgium-Luxembourg,1975,30711.8845,kg of nutrients +443,Belgium-Luxembourg,1976,19540.1288,kg of nutrients +444,Belgium-Luxembourg,1977,16122.0609,kg of nutrients +445,Belgium-Luxembourg,1978,20637.8087,kg of nutrients +446,Belgium-Luxembourg,1979,16601.166,kg of nutrients +447,Belgium-Luxembourg,1980,13673.7399,kg of nutrients +448,Belgium-Luxembourg,1981,10671.511999999999,kg of nutrients +449,Belgium-Luxembourg,1982,17881.7603,kg of nutrients +450,Belgium-Luxembourg,1983,14274.617,kg of nutrients +451,Belgium-Luxembourg,1984,12469.63,kg of nutrients +452,Belgium-Luxembourg,1985,16199.6272,kg of nutrients +453,Belgium-Luxembourg,1986,16710.5804,kg of nutrients +454,Belgium-Luxembourg,1987,22064.7295,kg of nutrients +455,Belgium-Luxembourg,1988,17015.0401,kg of nutrients +456,Belgium-Luxembourg,1989,19214.2942,kg of nutrients +457,Belgium-Luxembourg,1990,14390.2558,kg of nutrients +458,Belgium-Luxembourg,1991,15666.73,kg of nutrients +459,Belgium-Luxembourg,1992,12697.7907,kg of nutrients +460,Belgium-Luxembourg,1993,9112.9467,kg of nutrients +461,Belgium-Luxembourg,1994,6258.3567,kg of nutrients +462,Belgium-Luxembourg,1995,7707.7151,kg of nutrients +463,Belgium-Luxembourg,1996,17227.5284,kg of nutrients +464,Belgium-Luxembourg,1997,20128.8463,kg of nutrients +465,Belgium-Luxembourg,1998,13781.9812,kg of nutrients +466,Belgium-Luxembourg,1999,11755.2779,kg of nutrients +467,Belize,1961,2244.8184,kg of nutrients +468,Belize,1962,6571.5821,kg of nutrients +469,Belize,1963,8398.7992,kg of nutrients +470,Belize,1964,10531.9134,kg of nutrients +471,Belize,1965,11177.7446,kg of nutrients +472,Belize,1966,16969.0673,kg of nutrients +473,Belize,1967,10556.2728,kg of nutrients +474,Belize,1968,18613.4238,kg of nutrients +475,Belize,1969,22242.8194,kg of nutrients +476,Belize,1970,34716.1735,kg of nutrients +477,Belize,1971,25144.0556,kg of nutrients +478,Belize,1972,20982.8323,kg of nutrients +479,Belize,1973,21775.232000000004,kg of nutrients +480,Belize,1974,21676.3695,kg of nutrients +481,Belize,1975,20866.9859,kg of nutrients +482,Belize,1976,20093.1113,kg of nutrients +483,Belize,1977,19893.3138,kg of nutrients +484,Belize,1978,19482.8805,kg of nutrients +485,Belize,1979,22071.8319,kg of nutrients +486,Belize,1980,25674.9243,kg of nutrients +487,Belize,1981,31479.6739,kg of nutrients +488,Belize,1982,32290.2998,kg of nutrients +489,Belize,1983,28442.7892,kg of nutrients +490,Belize,1984,20426.6827,kg of nutrients +491,Belize,1985,18843.2862,kg of nutrients +492,Belize,1986,30153.7919,kg of nutrients +493,Belize,1987,38421.8901,kg of nutrients +494,Belize,1988,37602.6338,kg of nutrients +495,Belize,1989,55744.7931,kg of nutrients +496,Belize,1990,42624.718,kg of nutrients +497,Belize,1991,44394.0951,kg of nutrients +498,Belize,1992,45664.71,kg of nutrients +499,Belize,1993,57980.6477,kg of nutrients +500,Belize,1994,53111.759000000005,kg of nutrients +501,Belize,1995,53110.3091,kg of nutrients +502,Belize,1996,57667.2589,kg of nutrients +503,Belize,1997,62601.322,kg of nutrients +504,Belize,1998,60790.6582,kg of nutrients +505,Belize,1999,63400.7262,kg of nutrients +506,Belize,2000,77882.2143,kg of nutrients +507,Belize,2001,88041.5153,kg of nutrients +508,Belize,2002,72598.3069,kg of nutrients +509,Belize,2003,78557.8241,kg of nutrients +510,Belize,2004,64233.6956,kg of nutrients +511,Belize,2005,72242.6497,kg of nutrients +512,Belize,2006,62866.0803,kg of nutrients +513,Belize,2007,63692.7592,kg of nutrients +514,Belize,2008,62401.0372,kg of nutrients +515,Belize,2009,70107.0824,kg of nutrients +516,Belize,2010,115268.8998,kg of nutrients +517,Belize,2011,85892.6816,kg of nutrients +518,Belize,2012,129381.886,kg of nutrients +519,Belize,2013,127255.4591,kg of nutrients +520,Benin,1961,1122724.367,kg of nutrients +521,Benin,1962,853669.79,kg of nutrients +522,Benin,1963,840915.8557,kg of nutrients +523,Benin,1964,549530.9496,kg of nutrients +524,Benin,1965,570314.9589,kg of nutrients +525,Benin,1966,564558.7301,kg of nutrients +526,Benin,1967,762487.0532,kg of nutrients +527,Benin,1968,727807.4368,kg of nutrients +528,Benin,1969,709629.7574,kg of nutrients +529,Benin,1970,756636.113,kg of nutrients +530,Benin,1971,725151.0531,kg of nutrients +531,Benin,1972,599112.9792,kg of nutrients +532,Benin,1973,560252.4,kg of nutrients +533,Benin,1974,476356.9376,kg of nutrients +534,Benin,1975,506527.0091,kg of nutrients +535,Benin,1976,565604.3057,kg of nutrients +536,Benin,1977,625438.841,kg of nutrients +537,Benin,1978,841947.7145,kg of nutrients +538,Benin,1979,785042.6233,kg of nutrients +539,Benin,1980,606821.8255,kg of nutrients +540,Benin,1981,653165.3638,kg of nutrients +541,Benin,1982,682580.7402,kg of nutrients +542,Benin,1983,695461.8641,kg of nutrients +543,Benin,1984,817697.5206,kg of nutrients +544,Benin,1985,750054.2851,kg of nutrients +545,Benin,1986,832742.3358,kg of nutrients +546,Benin,1987,868523.6536,kg of nutrients +547,Benin,1988,873762.0063,kg of nutrients +548,Benin,1989,926209.7924,kg of nutrients +549,Benin,1990,923887.5903,kg of nutrients +550,Benin,1991,1004092.7111,kg of nutrients +551,Benin,1992,1057278.5286,kg of nutrients +552,Benin,1993,978280.3631,kg of nutrients +553,Benin,1994,1059497.3707,kg of nutrients +554,Benin,1995,1021620.1390000001,kg of nutrients +555,Benin,1996,1027220.8752,kg of nutrients +556,Benin,1997,1153084.3206,kg of nutrients +557,Benin,1998,1229803.6218,kg of nutrients +558,Benin,1999,1218237.1426,kg of nutrients +559,Benin,2000,1325107.2108,kg of nutrients +560,Benin,2001,1264088.2734,kg of nutrients +561,Benin,2002,1490784.9567,kg of nutrients +562,Benin,2003,1308299.2561,kg of nutrients +563,Benin,2004,1392647.7721,kg of nutrients +564,Benin,2005,1485549.0004,kg of nutrients +565,Benin,2006,1330970.6174,kg of nutrients +566,Benin,2007,1930611.5029,kg of nutrients +567,Benin,2008,1413742.7164,kg of nutrients +568,Benin,2009,1246184.1659,kg of nutrients +569,Benin,2010,1503238.3983,kg of nutrients +570,Benin,2011,1174278.0905,kg of nutrients +571,Benin,2012,1312488.9782,kg of nutrients +572,Benin,2013,1425385.2866,kg of nutrients +573,Bhutan,1997,8842.671999999999,kg of nutrients +574,Bhutan,1998,8842.671999999999,kg of nutrients +575,Bhutan,1999,9726.9392,kg of nutrients +576,Bhutan,2000,11108.1313,kg of nutrients +577,Bhutan,2001,10381.3193,kg of nutrients +578,Bhutan,2002,11123.2416,kg of nutrients +579,Bhutan,2003,10110.9656,kg of nutrients +580,Bhutan,2004,11504.0002,kg of nutrients +581,Bhutan,2005,16342.7203,kg of nutrients +582,Bhutan,2006,37276.4842,kg of nutrients +583,Bhutan,2007,34506.0624,kg of nutrients +584,Bhutan,2008,34296.9678,kg of nutrients +585,Bhutan,2009,24696.2535,kg of nutrients +586,Bhutan,2010,27648.109,kg of nutrients +587,Bhutan,2011,39319.6559,kg of nutrients +588,Bhutan,2012,31226.2403,kg of nutrients +589,Bhutan,2013,33690.4545,kg of nutrients +590,Bolivia (Plurinational State of),1961,54908.544,kg of nutrients +591,Bolivia (Plurinational State of),1962,55727.8003,kg of nutrients +592,Bolivia (Plurinational State of),1963,79509.8739,kg of nutrients +593,Bolivia (Plurinational State of),1964,81242.8301,kg of nutrients +594,Bolivia (Plurinational State of),1965,81577.8389,kg of nutrients +595,Bolivia (Plurinational State of),1966,81577.8389,kg of nutrients +596,Bolivia (Plurinational State of),1967,80705.171,kg of nutrients +597,Bolivia (Plurinational State of),1968,81672.9742,kg of nutrients +598,Bolivia (Plurinational State of),1969,81665.5296,kg of nutrients +599,Bolivia (Plurinational State of),1970,12005.7792,kg of nutrients +600,Bolivia (Plurinational State of),1971,18567.8816,kg of nutrients +601,Bolivia (Plurinational State of),1972,21080.88,kg of nutrients +602,Bolivia (Plurinational State of),1973,25594.8416,kg of nutrients +603,Bolivia (Plurinational State of),1974,32365.784,kg of nutrients +604,Bolivia (Plurinational State of),1975,34199.3293,kg of nutrients +605,Bolivia (Plurinational State of),1976,34622.7648,kg of nutrients +606,Bolivia (Plurinational State of),1977,32314.5805,kg of nutrients +607,Bolivia (Plurinational State of),1978,51923.0446,kg of nutrients +608,Bolivia (Plurinational State of),1979,46383.3456,kg of nutrients +609,Bolivia (Plurinational State of),1980,48356.6941,kg of nutrients +610,Bolivia (Plurinational State of),1981,77907.8411,kg of nutrients +611,Bolivia (Plurinational State of),1982,84161.8039,kg of nutrients +612,Bolivia (Plurinational State of),1983,57720.8905,kg of nutrients +613,Bolivia (Plurinational State of),1984,100469.36099999999,kg of nutrients +614,Bolivia (Plurinational State of),1985,134782.2971,kg of nutrients +615,Bolivia (Plurinational State of),1986,128609.3193,kg of nutrients +616,Bolivia (Plurinational State of),1987,113320.81599999999,kg of nutrients +617,Bolivia (Plurinational State of),1988,121067.3963,kg of nutrients +618,Bolivia (Plurinational State of),1989,54668.1885,kg of nutrients +619,Bolivia (Plurinational State of),1990,137309.6062,kg of nutrients +620,Bolivia (Plurinational State of),1991,126871.998,kg of nutrients +621,Bolivia (Plurinational State of),1992,130899.3186,kg of nutrients +622,Bolivia (Plurinational State of),1993,88433.9549,kg of nutrients +623,Bolivia (Plurinational State of),1994,105677.3162,kg of nutrients +624,Bolivia (Plurinational State of),1995,163512.141,kg of nutrients +625,Bolivia (Plurinational State of),1996,150532.0008,kg of nutrients +626,Bolivia (Plurinational State of),1997,204012.0976,kg of nutrients +627,Bolivia (Plurinational State of),1998,144841.8523,kg of nutrients +628,Bolivia (Plurinational State of),1999,166602.3584,kg of nutrients +629,Bolivia (Plurinational State of),2000,167486.6256,kg of nutrients +630,Bolivia (Plurinational State of),2001,170139.4272,kg of nutrients +631,Bolivia (Plurinational State of),2002,244685.235,kg of nutrients +632,Bolivia (Plurinational State of),2003,377877.9325,kg of nutrients +633,Bolivia (Plurinational State of),2004,370726.2073,kg of nutrients +634,Bolivia (Plurinational State of),2005,378617.7009,kg of nutrients +635,Bolivia (Plurinational State of),2006,383170.69700000004,kg of nutrients +636,Bolivia (Plurinational State of),2007,419590.2144,kg of nutrients +637,Bolivia (Plurinational State of),2008,377742.7176,kg of nutrients +638,Bolivia (Plurinational State of),2009,419252.8092,kg of nutrients +639,Bolivia (Plurinational State of),2010,828874.7609999999,kg of nutrients +640,Bolivia (Plurinational State of),2011,733760.6058,kg of nutrients +641,Bolivia (Plurinational State of),2012,771335.9671,kg of nutrients +642,Bolivia (Plurinational State of),2013,967342.4192,kg of nutrients +643,Bosnia and Herzegovina,1992,169954.176,kg of nutrients +644,Bosnia and Herzegovina,1993,209180.8568,kg of nutrients +645,Bosnia and Herzegovina,1994,201261.5752,kg of nutrients +646,Bosnia and Herzegovina,1995,170773.4323,kg of nutrients +647,Bosnia and Herzegovina,1996,146407.4752,kg of nutrients +648,Bosnia and Herzegovina,1997,182475.4496,kg of nutrients +649,Bosnia and Herzegovina,1998,150452.7071,kg of nutrients +650,Bosnia and Herzegovina,1999,149551.9969,kg of nutrients +651,Bosnia and Herzegovina,2000,99272.8605,kg of nutrients +652,Bosnia and Herzegovina,2001,122909.9024,kg of nutrients +653,Bosnia and Herzegovina,2002,125571.2085,kg of nutrients +654,Bosnia and Herzegovina,2003,112244.5647,kg of nutrients +655,Bosnia and Herzegovina,2004,146010.8801,kg of nutrients +656,Bosnia and Herzegovina,2005,139641.6936,kg of nutrients +657,Bosnia and Herzegovina,2006,141389.6583,kg of nutrients +658,Bosnia and Herzegovina,2007,122430.0863,kg of nutrients +659,Bosnia and Herzegovina,2008,137591.5745,kg of nutrients +660,Bosnia and Herzegovina,2009,147025.71300000002,kg of nutrients +661,Bosnia and Herzegovina,2010,118752.6572,kg of nutrients +662,Bosnia and Herzegovina,2011,130029.0913,kg of nutrients +663,Bosnia and Herzegovina,2012,114772.4582,kg of nutrients +664,Bosnia and Herzegovina,2013,126854.6865,kg of nutrients +665,Brazil,1961,28144158.7164,kg of nutrients +666,Brazil,1962,28977270.3865,kg of nutrients +667,Brazil,1963,32148719.9566,kg of nutrients +668,Brazil,1964,33294090.6881,kg of nutrients +669,Brazil,1965,36087332.0442,kg of nutrients +670,Brazil,1966,35749418.7181,kg of nutrients +671,Brazil,1967,40221655.5426,kg of nutrients +672,Brazil,1968,39661555.1229,kg of nutrients +673,Brazil,1969,38312983.7758,kg of nutrients +674,Brazil,1970,37266315.0,kg of nutrients +675,Brazil,1971,43067644.836,kg of nutrients +676,Brazil,1972,43266132.588999994,kg of nutrients +677,Brazil,1973,39833461.2129,kg of nutrients +678,Brazil,1974,43386157.3154,kg of nutrients +679,Brazil,1975,42551881.4383,kg of nutrients +680,Brazil,1976,39642164.6075,kg of nutrients +681,Brazil,1977,45606436.7909,kg of nutrients +682,Brazil,1978,45607765.5617,kg of nutrients +683,Brazil,1979,42554825.9601,kg of nutrients +684,Brazil,1980,44646205.9718,kg of nutrients +685,Brazil,1981,49410119.5853,kg of nutrients +686,Brazil,1982,58980626.7988,kg of nutrients +687,Brazil,1983,38348177.2821,kg of nutrients +688,Brazil,1984,53050986.853999995,kg of nutrients +689,Brazil,1985,52625323.0454,kg of nutrients +690,Brazil,1986,52143923.8086,kg of nutrients +691,Brazil,1987,49146084.2155,kg of nutrients +692,Brazil,1988,57269730.7425,kg of nutrients +693,Brazil,1989,50347612.1938,kg of nutrients +694,Brazil,1990,46282842.79,kg of nutrients +695,Brazil,1991,54505380.1479,kg of nutrients +696,Brazil,1992,52652549.1206,kg of nutrients +697,Brazil,1993,41607409.308,kg of nutrients +698,Brazil,1994,57985975.9336,kg of nutrients +699,Brazil,1995,52356262.9071,kg of nutrients +700,Brazil,1996,44571058.537,kg of nutrients +701,Brazil,1997,47312636.9383,kg of nutrients +702,Brazil,1998,35888182.6427,kg of nutrients +703,Brazil,1999,45421760.1022,kg of nutrients +704,Brazil,2000,47903513.3025,kg of nutrients +705,Brazil,2001,38250301.7058,kg of nutrients +706,Brazil,2002,46514691.4682,kg of nutrients +707,Brazil,2003,47360403.0329,kg of nutrients +708,Brazil,2004,44811811.6089,kg of nutrients +709,Brazil,2005,43379259.9415,kg of nutrients +710,Brazil,2006,47739395.463,kg of nutrients +711,Brazil,2007,44430591.7079,kg of nutrients +712,Brazil,2008,45877475.1934,kg of nutrients +713,Brazil,2009,48376410.8988,kg of nutrients +714,Brazil,2010,41662517.492,kg of nutrients +715,Brazil,2011,44935651.9205,kg of nutrients +716,Brazil,2012,34481776.679,kg of nutrients +717,Brazil,2013,35756664.3827,kg of nutrients +718,Bulgaria,1961,2115600.7266,kg of nutrients +719,Bulgaria,1962,1730258.249,kg of nutrients +720,Bulgaria,1963,1891042.2492,kg of nutrients +721,Bulgaria,1964,2252857.1318,kg of nutrients +722,Bulgaria,1965,1699926.7476,kg of nutrients +723,Bulgaria,1966,1794303.6162,kg of nutrients +724,Bulgaria,1967,1519108.9113,kg of nutrients +725,Bulgaria,1968,1273575.0366,kg of nutrients +726,Bulgaria,1969,1343854.3563,kg of nutrients +727,Bulgaria,1970,1159219.4665,kg of nutrients +728,Bulgaria,1971,1120779.7814,kg of nutrients +729,Bulgaria,1972,1016722.8708,kg of nutrients +730,Bulgaria,1973,1086609.5057,kg of nutrients +731,Bulgaria,1974,1089718.2372,kg of nutrients +732,Bulgaria,1975,1065979.5582,kg of nutrients +733,Bulgaria,1976,968768.2712,kg of nutrients +734,Bulgaria,1977,1023715.5715,kg of nutrients +735,Bulgaria,1978,763345.3492,kg of nutrients +736,Bulgaria,1979,674213.4469,kg of nutrients +737,Bulgaria,1980,555077.9042,kg of nutrients +738,Bulgaria,1981,743310.8043,kg of nutrients +739,Bulgaria,1982,739024.946,kg of nutrients +740,Bulgaria,1983,668314.1184,kg of nutrients +741,Bulgaria,1984,638560.0753,kg of nutrients +742,Bulgaria,1985,607872.9653,kg of nutrients +743,Bulgaria,1986,556778.8495,kg of nutrients +744,Bulgaria,1987,461493.7746,kg of nutrients +745,Bulgaria,1988,456578.152,kg of nutrients +746,Bulgaria,1989,558464.9107,kg of nutrients +747,Bulgaria,1990,409762.6625,kg of nutrients +748,Bulgaria,1991,459816.8442,kg of nutrients +749,Bulgaria,1992,429968.4282,kg of nutrients +750,Bulgaria,1993,295797.1017,kg of nutrients +751,Bulgaria,1994,429871.8407,kg of nutrients +752,Bulgaria,1995,577730.3451,kg of nutrients +753,Bulgaria,1996,409769.6207,kg of nutrients +754,Bulgaria,1997,411978.0225,kg of nutrients +755,Bulgaria,1998,410831.12700000004,kg of nutrients +756,Bulgaria,1999,376196.9601,kg of nutrients +757,Bulgaria,2000,275288.0083,kg of nutrients +758,Bulgaria,2001,135486.0536,kg of nutrients +759,Bulgaria,2002,102096.9919,kg of nutrients +760,Bulgaria,2003,148898.791,kg of nutrients +761,Bulgaria,2004,100003.5348,kg of nutrients +762,Bulgaria,2005,115187.5431,kg of nutrients +763,Bulgaria,2006,52176.9264,kg of nutrients +764,Bulgaria,2007,77789.7676,kg of nutrients +765,Bulgaria,2008,27597.8207,kg of nutrients +766,Bulgaria,2009,21235.3083,kg of nutrients +767,Bulgaria,2010,21121.6728,kg of nutrients +768,Bulgaria,2011,12278.8624,kg of nutrients +769,Bulgaria,2012,19782.5215,kg of nutrients +770,Bulgaria,2013,13458.1538,kg of nutrients +771,Burundi,1961,2741055.36,kg of nutrients +772,Burundi,1962,2741055.36,kg of nutrients +773,Burundi,1963,2689851.84,kg of nutrients +774,Burundi,1964,2966753.44,kg of nutrients +775,Burundi,1965,2941151.68,kg of nutrients +776,Burundi,1966,2941151.68,kg of nutrients +777,Burundi,1967,3192451.52,kg of nutrients +778,Burundi,1968,3318101.44,kg of nutrients +779,Burundi,1969,3292499.68,kg of nutrients +780,Burundi,1970,3474318.1024,kg of nutrients +781,Burundi,1971,3542934.1805,kg of nutrients +782,Burundi,1972,3173751.9945,kg of nutrients +783,Burundi,1973,3649464.7061,kg of nutrients +784,Burundi,1974,2979130.9331,kg of nutrients +785,Burundi,1975,3664370.0508,kg of nutrients +786,Burundi,1976,3698123.4112,kg of nutrients +787,Burundi,1977,3805340.064,kg of nutrients +788,Burundi,1978,3424806.0576,kg of nutrients +789,Burundi,1979,3411493.1424,kg of nutrients +790,Burundi,1980,3643847.68,kg of nutrients +791,Burundi,1981,3664329.088,kg of nutrients +792,Burundi,1982,3643847.68,kg of nutrients +793,Burundi,1983,3629867.36,kg of nutrients +794,Burundi,1984,3095164.832,kg of nutrients +795,Burundi,1985,3774617.952,kg of nutrients +796,Burundi,1986,3910508.5760000004,kg of nutrients +797,Burundi,1987,4023869.6512,kg of nutrients +798,Burundi,1988,3974139.0144,kg of nutrients +799,Burundi,1989,2996712.5408,kg of nutrients +800,Burundi,1990,3557391.0848,kg of nutrients +801,Burundi,1991,3965095.0464,kg of nutrients +802,Burundi,1992,4004521.7568,kg of nutrients +803,Burundi,1993,4134852.3,kg of nutrients +804,Burundi,1994,3048743.7208,kg of nutrients +805,Burundi,1995,3791779.7696,kg of nutrients +806,Burundi,1996,3521737.6823,kg of nutrients +807,Burundi,1997,3384535.1927,kg of nutrients +808,Burundi,1998,3417647.8055,kg of nutrients +809,Burundi,1999,2876778.6147,kg of nutrients +810,Burundi,2000,2523117.8178,kg of nutrients +811,Burundi,2001,3135789.7048,kg of nutrients +812,Burundi,2002,3262793.0,kg of nutrients +813,Burundi,2003,3077298.1648,kg of nutrients +814,Burundi,2004,2914307.2767,kg of nutrients +815,Burundi,2005,3147076.4061,kg of nutrients +816,Burundi,2006,2782169.8708,kg of nutrients +817,Burundi,2007,2725719.749,kg of nutrients +818,Burundi,2008,2571728.6807,kg of nutrients +819,Burundi,2009,2699126.3997,kg of nutrients +820,Burundi,2010,2721222.3223,kg of nutrients +821,Burundi,2011,2806696.5743,kg of nutrients +822,Burundi,2012,3591281.7416,kg of nutrients +823,Burundi,2013,3669350.6843,kg of nutrients +824,Cambodia,1961,359507.0347,kg of nutrients +825,Cambodia,1962,340622.191,kg of nutrients +826,Cambodia,1963,474639.04,kg of nutrients +827,Cambodia,1964,427175.136,kg of nutrients +828,Cambodia,1965,448161.6608,kg of nutrients +829,Cambodia,1966,485631.1264,kg of nutrients +830,Cambodia,1967,549756.304,kg of nutrients +831,Cambodia,1968,622393.9104,kg of nutrients +832,Cambodia,1969,571915.3504,kg of nutrients +833,Cambodia,1970,327652.848,kg of nutrients +834,Cambodia,1971,405606.4352,kg of nutrients +835,Cambodia,1972,304523.8272,kg of nutrients +836,Cambodia,1973,315505.536,kg of nutrients +837,Cambodia,1974,310385.184,kg of nutrients +838,Cambodia,1975,285255.2,kg of nutrients +839,Cambodia,1976,322950.17600000004,kg of nutrients +840,Cambodia,1977,348080.16,kg of nutrients +841,Cambodia,1978,295495.904,kg of nutrients +842,Cambodia,1979,210337.02399999998,kg of nutrients +843,Cambodia,1980,170317.76,kg of nutrients +844,Cambodia,1981,397868.352,kg of nutrients +845,Cambodia,1982,367618.016,kg of nutrients +846,Cambodia,1983,400192.64,kg of nutrients +847,Cambodia,1984,342488.032,kg of nutrients +848,Cambodia,1985,397868.352,kg of nutrients +849,Cambodia,1986,275486.272,kg of nutrients +850,Cambodia,1987,333662.656,kg of nutrients +851,Cambodia,1988,440211.904,kg of nutrients +852,Cambodia,1989,265245.568,kg of nutrients +853,Cambodia,1990,247560.224,kg of nutrients +854,Cambodia,1991,267569.856,kg of nutrients +855,Cambodia,1992,250356.288,kg of nutrients +856,Cambodia,1993,210817.1234,kg of nutrients +857,Cambodia,1994,280606.624,kg of nutrients +858,Cambodia,1995,287335.5776,kg of nutrients +859,Cambodia,1996,269634.5907,kg of nutrients +860,Cambodia,1997,282534.8586,kg of nutrients +861,Cambodia,1998,169463.5326,kg of nutrients +862,Cambodia,1999,280601.9475,kg of nutrients +863,Cambodia,2000,247762.348,kg of nutrients +864,Cambodia,2001,289638.69899999996,kg of nutrients +865,Cambodia,2002,384362.189,kg of nutrients +866,Cambodia,2003,485517.4733,kg of nutrients +867,Cambodia,2004,508644.4524,kg of nutrients +868,Cambodia,2005,635361.0727,kg of nutrients +869,Cambodia,2006,868670.0595,kg of nutrients +870,Cambodia,2007,762909.5805,kg of nutrients +871,Cambodia,2008,537158.3944,kg of nutrients +872,Cambodia,2009,597686.0835,kg of nutrients +873,Cambodia,2010,840622.1939,kg of nutrients +874,Cambodia,2011,878846.2892,kg of nutrients +875,Cambodia,2012,849017.4508,kg of nutrients +876,Cambodia,2013,863392.1466,kg of nutrients +877,Cameroon,1961,959518.7840000001,kg of nutrients +878,Cameroon,1962,949278.08,kg of nutrients +879,Cameroon,1963,959518.7840000001,kg of nutrients +880,Cameroon,1964,895313.088,kg of nutrients +881,Cameroon,1965,879952.032,kg of nutrients +882,Cameroon,1966,874831.68,kg of nutrients +883,Cameroon,1967,601396.6621,kg of nutrients +884,Cameroon,1968,664467.9907,kg of nutrients +885,Cameroon,1969,840442.9603,kg of nutrients +886,Cameroon,1970,950408.8844,kg of nutrients +887,Cameroon,1971,1038766.4859,kg of nutrients +888,Cameroon,1972,1091866.8185,kg of nutrients +889,Cameroon,1973,1108423.3026,kg of nutrients +890,Cameroon,1974,1227180.6039,kg of nutrients +891,Cameroon,1975,1329495.68,kg of nutrients +892,Cameroon,1976,1377431.36,kg of nutrients +893,Cameroon,1977,1462590.24,kg of nutrients +894,Cameroon,1978,1540304.48,kg of nutrients +895,Cameroon,1979,1618018.72,kg of nutrients +896,Cameroon,1980,1648269.0559999999,kg of nutrients +897,Cameroon,1981,1665954.4,kg of nutrients +898,Cameroon,1982,1688760.096,kg of nutrients +899,Cameroon,1983,1835833.2832,kg of nutrients +900,Cameroon,1984,998442.8969,kg of nutrients +901,Cameroon,1985,901777.3841,kg of nutrients +902,Cameroon,1986,954248.3344,kg of nutrients +903,Cameroon,1987,706658.7940000001,kg of nutrients +904,Cameroon,1988,1011227.5938,kg of nutrients +905,Cameroon,1989,822807.7482,kg of nutrients +906,Cameroon,1990,978999.2107,kg of nutrients +907,Cameroon,1991,1154092.16,kg of nutrients +908,Cameroon,1992,1279742.08,kg of nutrients +909,Cameroon,1993,1405392.0,kg of nutrients +910,Cameroon,1994,1531041.92,kg of nutrients +911,Cameroon,1995,1656691.84,kg of nutrients +912,Cameroon,1996,1782341.76,kg of nutrients +913,Cameroon,1997,1907991.68,kg of nutrients +914,Cameroon,1998,2033641.6,kg of nutrients +915,Cameroon,1999,2351901.0198,kg of nutrients +916,Cameroon,2000,2419312.7841,kg of nutrients +917,Cameroon,2001,2417284.8171,kg of nutrients +918,Cameroon,2002,2542378.3534,kg of nutrients +919,Cameroon,2003,2622487.1157,kg of nutrients +920,Cameroon,2004,2705123.8003,kg of nutrients +921,Cameroon,2005,2732196.9825,kg of nutrients +922,Cameroon,2006,2855040.2909,kg of nutrients +923,Cameroon,2007,2813831.2108,kg of nutrients +924,Cameroon,2008,2935652.1289999997,kg of nutrients +925,Cameroon,2009,3493793.6869,kg of nutrients +926,Cameroon,2010,3939326.8937,kg of nutrients +927,Cameroon,2011,4532495.8964,kg of nutrients +928,Cameroon,2012,3369113.377,kg of nutrients +929,Cameroon,2013,3751096.7676,kg of nutrients +930,Canada,1961,359580.1563,kg of nutrients +931,Canada,1962,388931.1997,kg of nutrients +932,Canada,1963,419544.1592,kg of nutrients +933,Canada,1964,500936.3899,kg of nutrients +934,Canada,1965,583026.5547,kg of nutrients +935,Canada,1966,713101.833,kg of nutrients +936,Canada,1967,563442.0842,kg of nutrients +937,Canada,1968,486806.5221,kg of nutrients +938,Canada,1969,520041.5442,kg of nutrients +939,Canada,1970,512830.9706,kg of nutrients +940,Canada,1971,673401.0067,kg of nutrients +941,Canada,1972,832672.1574,kg of nutrients +942,Canada,1973,828274.5832,kg of nutrients +943,Canada,1974,979333.0227,kg of nutrients +944,Canada,1975,982220.8806,kg of nutrients +945,Canada,1976,957715.952,kg of nutrients +946,Canada,1977,778166.4704,kg of nutrients +947,Canada,1978,829498.5954,kg of nutrients +948,Canada,1979,675444.3929999999,kg of nutrients +949,Canada,1980,729808.6944,kg of nutrients +950,Canada,1981,662573.2544,kg of nutrients +951,Canada,1982,679982.4512,kg of nutrients +952,Canada,1983,402373.1872,kg of nutrients +953,Canada,1984,457244.9312,kg of nutrients +954,Canada,1985,570525.488,kg of nutrients +955,Canada,1986,539361.4816,kg of nutrients +956,Canada,1987,1063179.1584,kg of nutrients +957,Canada,1988,823312.048,kg of nutrients +958,Canada,1989,695855.5424,kg of nutrients +959,Canada,1990,943090.2336,kg of nutrients +960,Canada,1991,1310587.6597,kg of nutrients +961,Canada,1992,849033.3344,kg of nutrients +962,Canada,1993,1270524.4896,kg of nutrients +963,Canada,1994,1465892.9664,kg of nutrients +964,Canada,1995,1820886.2272,kg of nutrients +965,Canada,1996,1303378.72,kg of nutrients +966,Canada,1997,1543637.0880000002,kg of nutrients +967,Canada,1998,1646828.8512,kg of nutrients +968,Canada,1999,2572691.68,kg of nutrients +969,Canada,2000,2517690.9888,kg of nutrients +970,Canada,2001,2747883.5264,kg of nutrients +971,Canada,2002,3682812.3296,kg of nutrients +972,Canada,2003,2966735.4816,kg of nutrients +973,Canada,2004,2032439.4912,kg of nutrients +974,Canada,2005,2826464.2592,kg of nutrients +975,Canada,2006,3219309.1168,kg of nutrients +976,Canada,2007,2552853.4624,kg of nutrients +977,Canada,2008,2297340.0224,kg of nutrients +978,Canada,2009,2003001.552,kg of nutrients +979,Canada,2010,2245991.5104,kg of nutrients +980,Canada,2011,1386682.88,kg of nutrients +981,Canada,2012,2303592.6368,kg of nutrients +982,Canada,2013,1687074.8768,kg of nutrients +983,Chad,1961,979965.6,kg of nutrients +984,Chad,1962,996741.984,kg of nutrients +985,Chad,1963,986501.28,kg of nutrients +986,Chad,1964,986501.28,kg of nutrients +987,Chad,1965,974408.064,kg of nutrients +988,Chad,1966,997213.76,kg of nutrients +989,Chad,1967,959518.7840000001,kg of nutrients +990,Chad,1968,926944.16,kg of nutrients +991,Chad,1969,895316.5656,kg of nutrients +992,Chad,1970,886453.12,kg of nutrients +993,Chad,1971,891573.4720000001,kg of nutrients +994,Chad,1972,896693.824,kg of nutrients +995,Chad,1973,886453.12,kg of nutrients +996,Chad,1974,896693.824,kg of nutrients +997,Chad,1975,909258.816,kg of nutrients +998,Chad,1976,926944.16,kg of nutrients +999,Chad,1977,901814.176,kg of nutrients +1000,Chad,1978,854350.272,kg of nutrients +1001,Chad,1979,806886.368,kg of nutrients +1002,Chad,1980,759422.464,kg of nutrients +1003,Chad,1981,711958.56,kg of nutrients +1004,Chad,1982,664494.656,kg of nutrients +1005,Chad,1983,617030.752,kg of nutrients +1006,Chad,1984,569566.848,kg of nutrients +1007,Chad,1985,522102.94399999996,kg of nutrients +1008,Chad,1986,474639.04,kg of nutrients +1009,Chad,1987,447184.768,kg of nutrients +1010,Chad,1988,253749.11399999997,kg of nutrients +1011,Chad,1989,332109.0667,kg of nutrients +1012,Chad,1990,275485.4918,kg of nutrients +1013,Chad,1991,251458.7056,kg of nutrients +1014,Chad,1992,338879.672,kg of nutrients +1015,Chad,1993,243539.1881,kg of nutrients +1016,Chad,1994,369725.6587,kg of nutrients +1017,Chad,1995,434222.347,kg of nutrients +1018,Chad,1996,434334.9948,kg of nutrients +1019,Chad,1997,449301.1735,kg of nutrients +1020,Chad,1998,1329252.2031,kg of nutrients +1021,Chad,1999,319242.2264,kg of nutrients +1022,Chad,2000,1367753.3589,kg of nutrients +1023,Chad,2001,1606773.9928,kg of nutrients +1024,Chad,2002,571464.5533,kg of nutrients +1025,Chad,2003,1907690.5706,kg of nutrients +1026,Chad,2004,674799.4097,kg of nutrients +1027,Chad,2005,360657.2739,kg of nutrients +1028,Chad,2006,267943.0912,kg of nutrients +1029,Chad,2007,1174011.2368,kg of nutrients +1030,Chad,2008,1173731.8556,kg of nutrients +1031,Chad,2009,812572.8733,kg of nutrients +1032,Chad,2010,1727792.2684,kg of nutrients +1033,Chad,2011,1559612.2308,kg of nutrients +1034,Chad,2012,2172415.0256,kg of nutrients +1035,Chad,2013,2165578.2208,kg of nutrients +1036,Chile,1961,962182.2061,kg of nutrients +1037,Chile,1962,938813.3965,kg of nutrients +1038,Chile,1963,855299.793,kg of nutrients +1039,Chile,1964,805323.0157,kg of nutrients +1040,Chile,1965,736685.1255,kg of nutrients +1041,Chile,1966,834270.8694,kg of nutrients +1042,Chile,1967,968816.1715,kg of nutrients +1043,Chile,1968,730499.3826,kg of nutrients +1044,Chile,1969,567097.4252,kg of nutrients +1045,Chile,1970,761869.9128,kg of nutrients +1046,Chile,1971,890031.5491,kg of nutrients +1047,Chile,1972,1016107.8420000001,kg of nutrients +1048,Chile,1973,835554.7014,kg of nutrients +1049,Chile,1974,933265.9915,kg of nutrients +1050,Chile,1975,885556.7191,kg of nutrients +1051,Chile,1976,967173.5446,kg of nutrients +1052,Chile,1977,1299788.6298,kg of nutrients +1053,Chile,1978,1405650.7187,kg of nutrients +1054,Chile,1979,1414281.6877,kg of nutrients +1055,Chile,1980,1255460.1005,kg of nutrients +1056,Chile,1981,1584369.3741,kg of nutrients +1057,Chile,1982,1736525.0387,kg of nutrients +1058,Chile,1983,1075397.8477,kg of nutrients +1059,Chile,1984,1111246.1923,kg of nutrients +1060,Chile,1985,1133673.8618,kg of nutrients +1061,Chile,1986,1125579.5759,kg of nutrients +1062,Chile,1987,1053372.9174,kg of nutrients +1063,Chile,1988,1074213.9092,kg of nutrients +1064,Chile,1989,845862.918,kg of nutrients +1065,Chile,1990,956325.7334,kg of nutrients +1066,Chile,1991,1257249.6094,kg of nutrients +1067,Chile,1992,985579.3303,kg of nutrients +1068,Chile,1993,627105.5395,kg of nutrients +1069,Chile,1994,606417.4922,kg of nutrients +1070,Chile,1995,632965.9616,kg of nutrients +1071,Chile,1996,703213.1224,kg of nutrients +1072,Chile,1997,471321.7747,kg of nutrients +1073,Chile,1998,572068.3442,kg of nutrients +1074,Chile,1999,373920.54299999995,kg of nutrients +1075,Chile,2000,460355.9355,kg of nutrients +1076,Chile,2001,574687.9941,kg of nutrients +1077,Chile,2002,440500.4167,kg of nutrients +1078,Chile,2003,437903.7808,kg of nutrients +1079,Chile,2004,447143.4688,kg of nutrients +1080,Chile,2005,403818.8671,kg of nutrients +1081,Chile,2006,448314.1482,kg of nutrients +1082,Chile,2007,180049.4869,kg of nutrients +1083,Chile,2008,193563.3794,kg of nutrients +1084,Chile,2009,269784.8848,kg of nutrients +1085,Chile,2010,220508.0593,kg of nutrients +1086,Chile,2011,216855.4426,kg of nutrients +1087,Chile,2012,105452.9856,kg of nutrients +1088,Chile,2013,179514.1175,kg of nutrients +1089,China,1961,34291532.3468,kg of nutrients +1090,China,1962,41167463.8021,kg of nutrients +1091,China,1963,32351091.7641,kg of nutrients +1092,China,1964,32924923.1257,kg of nutrients +1093,China,1965,33125868.2053,kg of nutrients +1094,China,1966,28088275.0047,kg of nutrients +1095,China,1967,28101307.0903,kg of nutrients +1096,China,1968,26360394.7225,kg of nutrients +1097,China,1969,25623962.9348,kg of nutrients +1098,China,1970,27171841.4385,kg of nutrients +1099,China,1971,22936222.5817,kg of nutrients +1100,China,1972,21946622.2036,kg of nutrients +1101,China,1973,22503132.6405,kg of nutrients +1102,China,1974,21721009.9103,kg of nutrients +1103,China,1975,21716197.9968,kg of nutrients +1104,China,1976,21512259.2284,kg of nutrients +1105,China,1977,21310637.7007,kg of nutrients +1106,China,1978,20182490.4261,kg of nutrients +1107,China,1979,21826744.1877,kg of nutrients +1108,China,1980,21884289.7255,kg of nutrients +1109,China,1981,21860997.6491,kg of nutrients +1110,China,1982,20355858.6551,kg of nutrients +1111,China,1983,20298923.5911,kg of nutrients +1112,China,1984,20732280.9225,kg of nutrients +1113,China,1985,18914305.5156,kg of nutrients +1114,China,1986,18334555.1715,kg of nutrients +1115,China,1987,18079339.0725,kg of nutrients +1116,China,1988,18412739.7729,kg of nutrients +1117,China,1989,16509887.0679,kg of nutrients +1118,China,1990,18314205.9446,kg of nutrients +1119,China,1991,17655224.1718,kg of nutrients +1120,China,1992,17169176.6541,kg of nutrients +1121,China,1993,15431984.699000001,kg of nutrients +1122,China,1994,18209052.5251,kg of nutrients +1123,China,1995,17102835.565,kg of nutrients +1124,China,1996,16887453.2286,kg of nutrients +1125,China,1997,14643156.1389,kg of nutrients +1126,China,1998,16981618.1954,kg of nutrients +1127,China,1999,17266154.0437,kg of nutrients +1128,China,2000,17472250.1084,kg of nutrients +1129,China,2001,19189318.1179,kg of nutrients +1130,China,2002,21256616.5357,kg of nutrients +1131,China,2003,20470614.5107,kg of nutrients +1132,China,2004,17586137.1012,kg of nutrients +1133,China,2005,18375384.2253,kg of nutrients +1134,China,2006,15088181.1546,kg of nutrients +1135,China,2007,15220753.123,kg of nutrients +1136,China,2008,16220537.4101,kg of nutrients +1137,China,2009,14355892.1851,kg of nutrients +1138,China,2010,13637696.1142,kg of nutrients +1139,China,2011,13034085.4647,kg of nutrients +1140,China,2012,11386006.6611,kg of nutrients +1141,China,2013,9886592.1735,kg of nutrients +1142,"China, mainland",1961,33984733.76,kg of nutrients +1143,"China, mainland",1962,40905260.8,kg of nutrients +1144,"China, mainland",1963,32109766.4,kg of nutrients +1145,"China, mainland",1964,32621801.6,kg of nutrients +1146,"China, mainland",1965,32877819.2,kg of nutrients +1147,"China, mainland",1966,27828233.6,kg of nutrients +1148,"China, mainland",1967,27828233.6,kg of nutrients +1149,"China, mainland",1968,26059699.2,kg of nutrients +1150,"China, mainland",1969,25315235.2,kg of nutrients +1151,"China, mainland",1970,26851340.8,kg of nutrients +1152,"China, mainland",1971,22644600.32,kg of nutrients +1153,"China, mainland",1972,21592915.2,kg of nutrients +1154,"China, mainland",1973,22104950.4,kg of nutrients +1155,"China, mainland",1974,21360486.4,kg of nutrients +1156,"China, mainland",1975,21360486.4,kg of nutrients +1157,"China, mainland",1976,21104468.8,kg of nutrients +1158,"China, mainland",1977,20848451.2,kg of nutrients +1159,"China, mainland",1978,19641142.56,kg of nutrients +1160,"China, mainland",1979,21283681.12,kg of nutrients +1161,"China, mainland",1980,21360486.4,kg of nutrients +1162,"China, mainland",1981,21360486.4,kg of nutrients +1163,"China, mainland",1982,19871558.4,kg of nutrients +1164,"China, mainland",1983,19871558.4,kg of nutrients +1165,"China, mainland",1984,20383593.6,kg of nutrients +1166,"China, mainland",1985,18615059.2,kg of nutrients +1167,"China, mainland",1986,18103024.0,kg of nutrients +1168,"China, mainland",1987,17867487.808,kg of nutrients +1169,"China, mainland",1988,18254621.6,kg of nutrients +1170,"China, mainland",1989,16334489.6,kg of nutrients +1171,"China, mainland",1990,18150201.6,kg of nutrients +1172,"China, mainland",1991,17535118.4839,kg of nutrients +1173,"China, mainland",1992,17059508.587,kg of nutrients +1174,"China, mainland",1993,15334008.0,kg of nutrients +1175,"China, mainland",1994,18103024.0,kg of nutrients +1176,"China, mainland",1995,17000135.36,kg of nutrients +1177,"China, mainland",1996,16767706.56,kg of nutrients +1178,"China, mainland",1997,14535120.112,kg of nutrients +1179,"China, mainland",1998,16886435.504,kg of nutrients +1180,"China, mainland",1999,17175603.28,kg of nutrients +1181,"China, mainland",2000,17382148.8,kg of nutrients +1182,"China, mainland",2001,19118004.8,kg of nutrients +1183,"China, mainland",2002,21176057.68,kg of nutrients +1184,"China, mainland",2003,20379896.672000002,kg of nutrients +1185,"China, mainland",2004,17507062.72,kg of nutrients +1186,"China, mainland",2005,18299094.4,kg of nutrients +1187,"China, mainland",2006,15008953.6,kg of nutrients +1188,"China, mainland",2007,15156396.48,kg of nutrients +1189,"China, mainland",2008,16149238.4,kg of nutrients +1190,"China, mainland",2009,14278296.96,kg of nutrients +1191,"China, mainland",2010,13562356.64,kg of nutrients +1192,"China, mainland",2011,12933514.2288,kg of nutrients +1193,"China, mainland",2012,11279831.3408,kg of nutrients +1194,"China, mainland",2013,9783492.704,kg of nutrients +1195,"China, Taiwan Province of",1961,306798.5868,kg of nutrients +1196,"China, Taiwan Province of",1962,262203.0021,kg of nutrients +1197,"China, Taiwan Province of",1963,241325.3641,kg of nutrients +1198,"China, Taiwan Province of",1964,303121.5257,kg of nutrients +1199,"China, Taiwan Province of",1965,248049.0053,kg of nutrients +1200,"China, Taiwan Province of",1966,260041.4047,kg of nutrients +1201,"China, Taiwan Province of",1967,273073.4903,kg of nutrients +1202,"China, Taiwan Province of",1968,300695.5225,kg of nutrients +1203,"China, Taiwan Province of",1969,308727.7348,kg of nutrients +1204,"China, Taiwan Province of",1970,320500.6385,kg of nutrients +1205,"China, Taiwan Province of",1971,291622.2617,kg of nutrients +1206,"China, Taiwan Province of",1972,353707.0036,kg of nutrients +1207,"China, Taiwan Province of",1973,398182.2405,kg of nutrients +1208,"China, Taiwan Province of",1974,360523.5103,kg of nutrients +1209,"China, Taiwan Province of",1975,355711.5968,kg of nutrients +1210,"China, Taiwan Province of",1976,407790.4284,kg of nutrients +1211,"China, Taiwan Province of",1977,462186.5007,kg of nutrients +1212,"China, Taiwan Province of",1978,541347.8661,kg of nutrients +1213,"China, Taiwan Province of",1979,543063.0677,kg of nutrients +1214,"China, Taiwan Province of",1980,523803.3255,kg of nutrients +1215,"China, Taiwan Province of",1981,500511.2491,kg of nutrients +1216,"China, Taiwan Province of",1982,484300.2551,kg of nutrients +1217,"China, Taiwan Province of",1983,427365.1911,kg of nutrients +1218,"China, Taiwan Province of",1984,348687.3225,kg of nutrients +1219,"China, Taiwan Province of",1985,299246.3156,kg of nutrients +1220,"China, Taiwan Province of",1986,231531.1715,kg of nutrients +1221,"China, Taiwan Province of",1987,211851.2645,kg of nutrients +1222,"China, Taiwan Province of",1988,158118.1729,kg of nutrients +1223,"China, Taiwan Province of",1989,175397.4679,kg of nutrients +1224,"China, Taiwan Province of",1990,164004.3446,kg of nutrients +1225,"China, Taiwan Province of",1991,120105.6879,kg of nutrients +1226,"China, Taiwan Province of",1992,109668.0671,kg of nutrients +1227,"China, Taiwan Province of",1993,97976.69900000001,kg of nutrients +1228,"China, Taiwan Province of",1994,106028.5251,kg of nutrients +1229,"China, Taiwan Province of",1995,102700.205,kg of nutrients +1230,"China, Taiwan Province of",1996,119746.6686,kg of nutrients +1231,"China, Taiwan Province of",1997,108036.0269,kg of nutrients +1232,"China, Taiwan Province of",1998,95182.6914,kg of nutrients +1233,"China, Taiwan Province of",1999,90550.7637,kg of nutrients +1234,"China, Taiwan Province of",2000,90101.3084,kg of nutrients +1235,"China, Taiwan Province of",2001,71313.3179,kg of nutrients +1236,"China, Taiwan Province of",2002,80558.8557,kg of nutrients +1237,"China, Taiwan Province of",2003,90717.8387,kg of nutrients +1238,"China, Taiwan Province of",2004,79074.3812,kg of nutrients +1239,"China, Taiwan Province of",2005,76289.8253,kg of nutrients +1240,"China, Taiwan Province of",2006,79227.5546,kg of nutrients +1241,"China, Taiwan Province of",2007,64356.643,kg of nutrients +1242,"China, Taiwan Province of",2008,71299.0101,kg of nutrients +1243,"China, Taiwan Province of",2009,77595.2251,kg of nutrients +1244,"China, Taiwan Province of",2010,75339.4742,kg of nutrients +1245,"China, Taiwan Province of",2011,100571.2359,kg of nutrients +1246,"China, Taiwan Province of",2012,106175.3203,kg of nutrients +1247,"China, Taiwan Province of",2013,103099.4695,kg of nutrients +1248,Colombia,1961,836682.7517,kg of nutrients +1249,Colombia,1962,891514.8422,kg of nutrients +1250,Colombia,1963,784039.6989,kg of nutrients +1251,Colombia,1964,780847.4240000001,kg of nutrients +1252,Colombia,1965,770606.72,kg of nutrients +1253,Colombia,1966,655669.28,kg of nutrients +1254,Colombia,1967,711325.7472,kg of nutrients +1255,Colombia,1968,727474.9856,kg of nutrients +1256,Colombia,1969,709611.3088,kg of nutrients +1257,Colombia,1970,692993.7536,kg of nutrients +1258,Colombia,1971,760528.304,kg of nutrients +1259,Colombia,1972,942670.0512,kg of nutrients +1260,Colombia,1973,939031.7088,kg of nutrients +1261,Colombia,1974,1018804.4672,kg of nutrients +1262,Colombia,1975,1358887.6928,kg of nutrients +1263,Colombia,1976,1098044.4352,kg of nutrients +1264,Colombia,1977,1245603.6768,kg of nutrients +1265,Colombia,1978,1208612.9056,kg of nutrients +1266,Colombia,1979,1219267.8304,kg of nutrients +1267,Colombia,1980,1287684.9184,kg of nutrients +1268,Colombia,1981,1251650.2848,kg of nutrients +1269,Colombia,1982,1208562.2688,kg of nutrients +1270,Colombia,1983,1256366.7936,kg of nutrients +1271,Colombia,1984,1226056.5729999999,kg of nutrients +1272,Colombia,1985,1488410.5243,kg of nutrients +1273,Colombia,1986,1477589.803,kg of nutrients +1274,Colombia,1987,1364553.7336,kg of nutrients +1275,Colombia,1988,1443955.6768,kg of nutrients +1276,Colombia,1989,1496169.4304,kg of nutrients +1277,Colombia,1990,1902042.2608,kg of nutrients +1278,Colombia,1991,1548740.9845,kg of nutrients +1279,Colombia,1992,1558624.9309,kg of nutrients +1280,Colombia,1993,1622717.2733,kg of nutrients +1281,Colombia,1994,1769164.7582,kg of nutrients +1282,Colombia,1995,2080803.3869999999,kg of nutrients +1283,Colombia,1996,1732248.9207,kg of nutrients +1284,Colombia,1997,1706589.5863,kg of nutrients +1285,Colombia,1998,1487975.5726,kg of nutrients +1286,Colombia,1999,1523004.8125,kg of nutrients +1287,Colombia,2000,1499421.1137,kg of nutrients +1288,Colombia,2001,1496046.4463,kg of nutrients +1289,Colombia,2002,1413611.1446,kg of nutrients +1290,Colombia,2003,1494681.0544,kg of nutrients +1291,Colombia,2004,1497361.3883,kg of nutrients +1292,Colombia,2005,1664164.7446,kg of nutrients +1293,Colombia,2006,1596652.0902,kg of nutrients +1294,Colombia,2007,1772670.1989,kg of nutrients +1295,Colombia,2008,1804340.9038,kg of nutrients +1296,Colombia,2009,1669102.3044,kg of nutrients +1297,Colombia,2010,1579187.2069,kg of nutrients +1298,Colombia,2011,1524134.8794,kg of nutrients +1299,Colombia,2012,1582453.0827,kg of nutrients +1300,Colombia,2013,1633334.3362,kg of nutrients +1301,Congo,1961,37785.872,kg of nutrients +1302,Congo,1962,41787.7984,kg of nutrients +1303,Congo,1963,45045.2608,kg of nutrients +1304,Congo,1964,46301.76,kg of nutrients +1305,Congo,1965,48302.7232,kg of nutrients +1306,Congo,1966,50303.6864,kg of nutrients +1307,Congo,1967,51560.1856,kg of nutrients +1308,Congo,1968,53561.1488,kg of nutrients +1309,Congo,1969,55562.112,kg of nutrients +1310,Congo,1970,56818.6112,kg of nutrients +1311,Congo,1971,58819.5744,kg of nutrients +1312,Congo,1972,60076.0736,kg of nutrients +1313,Congo,1973,61332.5728,kg of nutrients +1314,Congo,1974,63333.53599999999,kg of nutrients +1315,Congo,1975,64334.0176,kg of nutrients +1316,Congo,1976,65232.0922,kg of nutrients +1317,Congo,1977,65385.7027,kg of nutrients +1318,Congo,1978,60028.89599999999,kg of nutrients +1319,Congo,1979,42997.12,kg of nutrients +1320,Congo,1980,30776.6194,kg of nutrients +1321,Congo,1981,29246.3952,kg of nutrients +1322,Congo,1982,30246.8768,kg of nutrients +1323,Congo,1983,28990.3776,kg of nutrients +1324,Congo,1984,30246.8768,kg of nutrients +1325,Congo,1985,31503.376,kg of nutrients +1326,Congo,1986,32015.4112,kg of nutrients +1327,Congo,1987,33039.4816,kg of nutrients +1328,Congo,1988,34808.016,kg of nutrients +1329,Congo,1989,36064.5152,kg of nutrients +1330,Congo,1990,37833.0496,kg of nutrients +1331,Congo,1991,40346.047999999995,kg of nutrients +1332,Congo,1992,36808.9792,kg of nutrients +1333,Congo,1993,36458.9016,kg of nutrients +1334,Congo,1994,37594.0858,kg of nutrients +1335,Congo,1995,39094.6692,kg of nutrients +1336,Congo,1996,40822.2407,kg of nutrients +1337,Congo,1997,43568.7624,kg of nutrients +1338,Congo,1998,44541.1839,kg of nutrients +1339,Congo,1999,48072.4833,kg of nutrients +1340,Congo,2000,49241.9365,kg of nutrients +1341,Congo,2001,50201.5774,kg of nutrients +1342,Congo,2002,54901.1649,kg of nutrients +1343,Congo,2003,49165.1312,kg of nutrients +1344,Congo,2004,50769.8143,kg of nutrients +1345,Congo,2005,51241.5783,kg of nutrients +1346,Congo,2006,52166.575999999994,kg of nutrients +1347,Congo,2007,54167.5392,kg of nutrients +1348,Congo,2008,54679.5744,kg of nutrients +1349,Congo,2009,58216.6432,kg of nutrients +1350,Congo,2010,51420.2707,kg of nutrients +1351,Congo,2011,52785.1035,kg of nutrients +1352,Congo,2012,57911.1533,kg of nutrients +1353,Congo,2013,57319.6842,kg of nutrients +1354,Costa Rica,1961,389825.5884,kg of nutrients +1355,Costa Rica,1962,418064.1927,kg of nutrients +1356,Costa Rica,1963,492865.5596,kg of nutrients +1357,Costa Rica,1964,414914.9621,kg of nutrients +1358,Costa Rica,1965,497572.56299999997,kg of nutrients +1359,Costa Rica,1966,408413.7755,kg of nutrients +1360,Costa Rica,1967,356240.5939,kg of nutrients +1361,Costa Rica,1968,262092.9164,kg of nutrients +1362,Costa Rica,1969,361217.2242,kg of nutrients +1363,Costa Rica,1970,284906.3124,kg of nutrients +1364,Costa Rica,1971,219382.5928,kg of nutrients +1365,Costa Rica,1972,337009.0795,kg of nutrients +1366,Costa Rica,1973,255113.0428,kg of nutrients +1367,Costa Rica,1974,334838.4528,kg of nutrients +1368,Costa Rica,1975,339318.7608,kg of nutrients +1369,Costa Rica,1976,288267.3161,kg of nutrients +1370,Costa Rica,1977,252087.7596,kg of nutrients +1371,Costa Rica,1978,287630.6915,kg of nutrients +1372,Costa Rica,1979,244083.505,kg of nutrients +1373,Costa Rica,1980,222686.6094,kg of nutrients +1374,Costa Rica,1981,239220.5256,kg of nutrients +1375,Costa Rica,1982,367280.5232,kg of nutrients +1376,Costa Rica,1983,357735.2089,kg of nutrients +1377,Costa Rica,1984,425095.1684,kg of nutrients +1378,Costa Rica,1985,420537.8843,kg of nutrients +1379,Costa Rica,1986,564179.1447,kg of nutrients +1380,Costa Rica,1987,547854.6051,kg of nutrients +1381,Costa Rica,1988,525465.831,kg of nutrients +1382,Costa Rica,1989,642839.1808,kg of nutrients +1383,Costa Rica,1990,649349.0419,kg of nutrients +1384,Costa Rica,1991,693457.1532,kg of nutrients +1385,Costa Rica,1992,652329.2627,kg of nutrients +1386,Costa Rica,1993,610266.9216,kg of nutrients +1387,Costa Rica,1994,604284.7769,kg of nutrients +1388,Costa Rica,1995,590024.9108,kg of nutrients +1389,Costa Rica,1996,346157.9488,kg of nutrients +1390,Costa Rica,1997,400330.3787,kg of nutrients +1391,Costa Rica,1998,341773.3664,kg of nutrients +1392,Costa Rica,1999,359407.7954,kg of nutrients +1393,Costa Rica,2000,312629.9524,kg of nutrients +1394,Costa Rica,2001,252551.3587,kg of nutrients +1395,Costa Rica,2002,229388.8734,kg of nutrients +1396,Costa Rica,2003,232428.6793,kg of nutrients +1397,Costa Rica,2004,175328.0969,kg of nutrients +1398,Costa Rica,2005,173438.2153,kg of nutrients +1399,Costa Rica,2006,161393.1145,kg of nutrients +1400,Costa Rica,2007,132662.6487,kg of nutrients +1401,Costa Rica,2008,124206.5129,kg of nutrients +1402,Costa Rica,2009,173974.4656,kg of nutrients +1403,Costa Rica,2010,217058.5366,kg of nutrients +1404,Costa Rica,2011,244446.6209,kg of nutrients +1405,Costa Rica,2012,233479.4054,kg of nutrients +1406,Costa Rica,2013,234723.4493,kg of nutrients +1407,Côte d'Ivoire,1997,241059.13600000003,kg of nutrients +1408,Côte d'Ivoire,1998,259080.8666,kg of nutrients +1409,Côte d'Ivoire,1999,267924.6647,kg of nutrients +1410,Côte d'Ivoire,2000,277072.3468,kg of nutrients +1411,Côte d'Ivoire,2001,286523.9131,kg of nutrients +1412,Côte d'Ivoire,2002,295970.359,kg of nutrients +1413,Côte d'Ivoire,2003,305592.7148,kg of nutrients +1414,Côte d'Ivoire,2004,315717.1986,kg of nutrients +1415,Côte d'Ivoire,2005,334806.0099,kg of nutrients +1416,Côte d'Ivoire,2006,343758.0118,kg of nutrients +1417,Côte d'Ivoire,2007,354437.7582,kg of nutrients +1418,Côte d'Ivoire,2008,450275.5065,kg of nutrients +1419,Côte d'Ivoire,2009,455590.256,kg of nutrients +1420,Côte d'Ivoire,2010,457786.4379,kg of nutrients +1421,Côte d'Ivoire,2011,462680.5792,kg of nutrients +1422,Côte d'Ivoire,2012,478602.2014,kg of nutrients +1423,Côte d'Ivoire,2013,494712.271,kg of nutrients +1424,Croatia,1992,126244.8855,kg of nutrients +1425,Croatia,1993,138551.1359,kg of nutrients +1426,Croatia,1994,157258.5749,kg of nutrients +1427,Croatia,1995,161973.7302,kg of nutrients +1428,Croatia,1996,155465.0018,kg of nutrients +1429,Croatia,1997,161096.6029,kg of nutrients +1430,Croatia,1998,151808.5825,kg of nutrients +1431,Croatia,1999,163130.9423,kg of nutrients +1432,Croatia,2000,106446.3155,kg of nutrients +1433,Croatia,2001,137922.5941,kg of nutrients +1434,Croatia,2002,151847.7657,kg of nutrients +1435,Croatia,2003,115185.0576,kg of nutrients +1436,Croatia,2004,68519.4052,kg of nutrients +1437,Croatia,2005,79150.9797,kg of nutrients +1438,Croatia,2006,68178.4113,kg of nutrients +1439,Croatia,2007,45952.3337,kg of nutrients +1440,Croatia,2008,32691.3507,kg of nutrients +1441,Croatia,2009,27090.78,kg of nutrients +1442,Croatia,2010,17901.8583,kg of nutrients +1443,Croatia,2011,14594.2492,kg of nutrients +1444,Croatia,2012,8283.1825,kg of nutrients +1445,Croatia,2013,15744.891000000001,kg of nutrients +1446,Cuba,1961,680424.7747,kg of nutrients +1447,Cuba,1962,680327.488,kg of nutrients +1448,Cuba,1963,637512.16,kg of nutrients +1449,Cuba,1964,599817.184,kg of nutrients +1450,Cuba,1965,574687.2,kg of nutrients +1451,Cuba,1966,564446.496,kg of nutrients +1452,Cuba,1967,559326.144,kg of nutrients +1453,Cuba,1968,416934.43200000003,kg of nutrients +1454,Cuba,1969,311765.92,kg of nutrients +1455,Cuba,1970,316886.272,kg of nutrients +1456,Cuba,1971,316886.272,kg of nutrients +1457,Cuba,1972,369470.528,kg of nutrients +1458,Cuba,1973,179614.91199999998,kg of nutrients +1459,Cuba,1974,159605.28,kg of nutrients +1460,Cuba,1975,132151.008,kg of nutrients +1461,Cuba,1976,127030.656,kg of nutrients +1462,Cuba,1977,216838.112,kg of nutrients +1463,Cuba,1978,236847.74399999998,kg of nutrients +1464,Cuba,1979,241968.09600000002,kg of nutrients +1465,Cuba,1980,339129.6868,kg of nutrients +1466,Cuba,1981,295731.3423,kg of nutrients +1467,Cuba,1982,360136.1263,kg of nutrients +1468,Cuba,1983,353320.3711,kg of nutrients +1469,Cuba,1984,343518.1803,kg of nutrients +1470,Cuba,1985,364511.4866,kg of nutrients +1471,Cuba,1986,361657.0468,kg of nutrients +1472,Cuba,1987,453584.3675,kg of nutrients +1473,Cuba,1988,454918.1997,kg of nutrients +1474,Cuba,1989,474243.3657,kg of nutrients +1475,Cuba,1990,442919.3462,kg of nutrients +1476,Cuba,1991,400508.6261,kg of nutrients +1477,Cuba,1992,836417.1551,kg of nutrients +1478,Cuba,1993,855096.4965,kg of nutrients +1479,Cuba,1994,966835.7170000001,kg of nutrients +1480,Cuba,1995,826427.642,kg of nutrients +1481,Cuba,1996,871616.2248,kg of nutrients +1482,Cuba,1997,960635.4984,kg of nutrients +1483,Cuba,1998,984771.0154,kg of nutrients +1484,Cuba,1999,1081581.9272,kg of nutrients +1485,Cuba,2000,1331355.6477,kg of nutrients +1486,Cuba,2001,1276124.6017,kg of nutrients +1487,Cuba,2002,1295567.7029,kg of nutrients +1488,Cuba,2003,1445215.9186,kg of nutrients +1489,Cuba,2004,1515790.8334,kg of nutrients +1490,Cuba,2005,1249689.5918,kg of nutrients +1491,Cuba,2006,932798.5248,kg of nutrients +1492,Cuba,2007,1121506.9339,kg of nutrients +1493,Cuba,2008,1207217.0742,kg of nutrients +1494,Cuba,2009,1688378.6714,kg of nutrients +1495,Cuba,2010,1250976.2582,kg of nutrients +1496,Cuba,2011,1603501.937,kg of nutrients +1497,Cuba,2012,1569718.4330000002,kg of nutrients +1498,Cuba,2013,1556303.4456,kg of nutrients +1499,Cyprus,1961,16736.9844,kg of nutrients +1500,Cyprus,1962,17742.5864,kg of nutrients +1501,Cyprus,1963,12150.2435,kg of nutrients +1502,Cyprus,1964,18225.9124,kg of nutrients +1503,Cyprus,1965,16548.6259,kg of nutrients +1504,Cyprus,1966,10935.8015,kg of nutrients +1505,Cyprus,1967,9750.9527,kg of nutrients +1506,Cyprus,1968,8543.7699,kg of nutrients +1507,Cyprus,1969,9803.0652,kg of nutrients +1508,Cyprus,1970,7222.0177,kg of nutrients +1509,Cyprus,1971,9173.6644,kg of nutrients +1510,Cyprus,1972,8219.5994,kg of nutrients +1511,Cyprus,1973,5153.4992,kg of nutrients +1512,Cyprus,1974,6204.3446,kg of nutrients +1513,Cyprus,1975,8398.8463,kg of nutrients +1514,Cyprus,1976,7131.5309,kg of nutrients +1515,Cyprus,1977,6018.2286,kg of nutrients +1516,Cyprus,1978,4643.1215,kg of nutrients +1517,Cyprus,1979,3885.0106,kg of nutrients +1518,Cyprus,1980,3739.3509999999997,kg of nutrients +1519,Cyprus,1981,5168.0897,kg of nutrients +1520,Cyprus,1982,5855.022,kg of nutrients +1521,Cyprus,1983,8079.164000000001,kg of nutrients +1522,Cyprus,1984,8687.9795,kg of nutrients +1523,Cyprus,1985,9356.3522,kg of nutrients +1524,Cyprus,1986,12429.6894,kg of nutrients +1525,Cyprus,1987,21703.8046,kg of nutrients +1526,Cyprus,1988,10673.7075,kg of nutrients +1527,Cyprus,1989,12479.811000000002,kg of nutrients +1528,Cyprus,1990,12984.4016,kg of nutrients +1529,Cyprus,1991,10629.0397,kg of nutrients +1530,Cyprus,1992,14655.5926,kg of nutrients +1531,Cyprus,1993,9705.7093,kg of nutrients +1532,Cyprus,1994,8563.0656,kg of nutrients +1533,Cyprus,1995,9391.4115,kg of nutrients +1534,Cyprus,1996,9474.6016,kg of nutrients +1535,Cyprus,1997,4467.6488,kg of nutrients +1536,Cyprus,1998,1681.0166,kg of nutrients +1537,Cyprus,1999,2164.0093,kg of nutrients +1538,Cyprus,2000,2112.8058,kg of nutrients +1539,Cyprus,2001,2201.2325,kg of nutrients +1540,Cyprus,2002,2201.2325,kg of nutrients +1541,Cyprus,2003,2289.6592,kg of nutrients +1542,Cyprus,2004,2143.5279,kg of nutrients +1543,Cyprus,2005,2292.0181,kg of nutrients +1544,Cyprus,2006,2245.9349,kg of nutrients +1545,Cyprus,2007,2174.25,kg of nutrients +1546,Cyprus,2008,2330.6220000000003,kg of nutrients +1547,Cyprus,2009,1920.2579,kg of nutrients +1548,Cyprus,2010,1762.4705,kg of nutrients +1549,Cyprus,2011,1823.0404,kg of nutrients +1550,Cyprus,2012,1569.3816,kg of nutrients +1551,Cyprus,2013,1657.3020000000001,kg of nutrients +1552,Czechia,1993,3055.2148,kg of nutrients +1553,Czechia,1994,3330.5627,kg of nutrients +1554,Czechia,1995,4057.2155,kg of nutrients +1555,Czechia,1996,5003.8358,kg of nutrients +1556,Czechia,1997,4503.1579,kg of nutrients +1557,Czechia,1998,4629.613,kg of nutrients +1558,Czechia,1999,4140.5218,kg of nutrients +1559,Czechia,2000,2907.7373,kg of nutrients +1560,Czechia,2001,2202.2452,kg of nutrients +1561,Czechia,2002,338.3458,kg of nutrients +1562,Czechia,2004,14.9188,kg of nutrients +1563,Czechia,2005,12.565,kg of nutrients +1564,Czechoslovakia,1961,18084.5084,kg of nutrients +1565,Czechoslovakia,1962,16061.1767,kg of nutrients +1566,Czechoslovakia,1963,21700.3609,kg of nutrients +1567,Czechoslovakia,1964,18306.9733,kg of nutrients +1568,Czechoslovakia,1965,26977.7392,kg of nutrients +1569,Czechoslovakia,1966,33787.7919,kg of nutrients +1570,Czechoslovakia,1967,35906.0264,kg of nutrients +1571,Czechoslovakia,1968,22993.5203,kg of nutrients +1572,Czechoslovakia,1969,20317.0511,kg of nutrients +1573,Czechoslovakia,1970,18483.8172,kg of nutrients +1574,Czechoslovakia,1971,23223.178,kg of nutrients +1575,Czechoslovakia,1972,20800.4463,kg of nutrients +1576,Czechoslovakia,1973,23062.3745,kg of nutrients +1577,Czechoslovakia,1974,30273.2175,kg of nutrients +1578,Czechoslovakia,1975,47316.0548,kg of nutrients +1579,Czechoslovakia,1976,22738.7421,kg of nutrients +1580,Czechoslovakia,1977,45220.1859,kg of nutrients +1581,Czechoslovakia,1978,42036.9624,kg of nutrients +1582,Czechoslovakia,1979,50323.0476,kg of nutrients +1583,Czechoslovakia,1980,49989.1899,kg of nutrients +1584,Czechoslovakia,1981,49023.3997,kg of nutrients +1585,Czechoslovakia,1982,58968.2589,kg of nutrients +1586,Czechoslovakia,1983,48652.3033,kg of nutrients +1587,Czechoslovakia,1984,43246.114,kg of nutrients +1588,Czechoslovakia,1985,42679.1606,kg of nutrients +1589,Czechoslovakia,1986,53196.5403,kg of nutrients +1590,Czechoslovakia,1987,45832.4548,kg of nutrients +1591,Czechoslovakia,1988,38192.3987,kg of nutrients +1592,Czechoslovakia,1989,38085.2864,kg of nutrients +1593,Czechoslovakia,1990,34722.297,kg of nutrients +1594,Czechoslovakia,1991,46626.7415,kg of nutrients +1595,Czechoslovakia,1992,51632.3982,kg of nutrients +1596,Democratic People's Republic of Korea,1961,2740882.4,kg of nutrients +1597,Democratic People's Republic of Korea,1962,3084785.76,kg of nutrients +1598,Democratic People's Republic of Korea,1963,3603183.68,kg of nutrients +1599,Democratic People's Republic of Korea,1964,3718121.12,kg of nutrients +1600,Democratic People's Republic of Korea,1965,3555248.0,kg of nutrients +1601,Democratic People's Republic of Korea,1966,3295594.56,kg of nutrients +1602,Democratic People's Republic of Korea,1967,3316075.9680000003,kg of nutrients +1603,Democratic People's Republic of Korea,1968,3336557.376,kg of nutrients +1604,Democratic People's Republic of Korea,1969,3379372.704,kg of nutrients +1605,Democratic People's Republic of Korea,1970,3399854.1119999997,kg of nutrients +1606,Democratic People's Republic of Korea,1971,3420335.52,kg of nutrients +1607,Democratic People's Republic of Korea,1972,3508762.24,kg of nutrients +1608,Democratic People's Republic of Korea,1973,3559965.76,kg of nutrients +1609,Democratic People's Republic of Korea,1974,3648392.48,kg of nutrients +1610,Democratic People's Republic of Korea,1975,3736819.2,kg of nutrients +1611,Democratic People's Republic of Korea,1976,3750799.52,kg of nutrients +1612,Democratic People's Republic of Korea,1977,3802003.04,kg of nutrients +1613,Democratic People's Republic of Korea,1978,3837845.5039999997,kg of nutrients +1614,Democratic People's Republic of Korea,1979,3868095.84,kg of nutrients +1615,Democratic People's Republic of Korea,1980,3890429.76,kg of nutrients +1616,Democratic People's Republic of Korea,1981,3912763.68,kg of nutrients +1617,Democratic People's Republic of Korea,1982,3788022.72,kg of nutrients +1618,Democratic People's Republic of Korea,1983,3839226.24,kg of nutrients +1619,Democratic People's Republic of Korea,1984,3890429.76,kg of nutrients +1620,Democratic People's Republic of Korea,1985,3978856.48,kg of nutrients +1621,Democratic People's Republic of Korea,1986,4082172.48,kg of nutrients +1622,Democratic People's Republic of Korea,1987,4152442.08,kg of nutrients +1623,Democratic People's Republic of Korea,1988,4218534.88,kg of nutrients +1624,Democratic People's Republic of Korea,1989,4244136.64,kg of nutrients +1625,Democratic People's Republic of Korea,1990,4292072.32,kg of nutrients +1626,Democratic People's Republic of Korea,1991,4332563.36,kg of nutrients +1627,Democratic People's Republic of Korea,1992,4156640.8262,kg of nutrients +1628,Democratic People's Republic of Korea,1993,3902903.5937,kg of nutrients +1629,Democratic People's Republic of Korea,1994,4067283.2,kg of nutrients +1630,Democratic People's Republic of Korea,1995,3916031.52,kg of nutrients +1631,Democratic People's Republic of Korea,1996,3764779.84,kg of nutrients +1632,Democratic People's Republic of Korea,1997,3741536.96,kg of nutrients +1633,Democratic People's Republic of Korea,1998,3890429.76,kg of nutrients +1634,Democratic People's Republic of Korea,1999,3887174.7744,kg of nutrients +1635,Democratic People's Republic of Korea,2000,4318583.04,kg of nutrients +1636,Democratic People's Republic of Korea,2001,4292981.28,kg of nutrients +1637,Democratic People's Republic of Korea,2002,4355806.24,kg of nutrients +1638,Democratic People's Republic of Korea,2003,4141729.6,kg of nutrients +1639,Democratic People's Republic of Korea,2004,4318583.04,kg of nutrients +1640,Democratic People's Republic of Korea,2005,4167331.36,kg of nutrients +1641,Democratic People's Republic of Korea,2006,4418631.2,kg of nutrients +1642,Democratic People's Republic of Korea,2007,4141729.6,kg of nutrients +1643,Democratic People's Republic of Korea,2008,4418631.2,kg of nutrients +1644,Democratic People's Republic of Korea,2009,4507057.92,kg of nutrients +1645,Democratic People's Republic of Korea,2010,4542920.4963,kg of nutrients +1646,Democratic People's Republic of Korea,2011,4569882.88,kg of nutrients +1647,Democratic People's Republic of Korea,2012,4167331.36,kg of nutrients +1648,Democratic People's Republic of Korea,2013,4267379.52,kg of nutrients +1649,Democratic Republic of the Congo,1961,1222911.84,kg of nutrients +1650,Democratic Republic of the Congo,1962,1265727.168,kg of nutrients +1651,Democratic Republic of the Congo,1963,1295977.504,kg of nutrients +1652,Democratic Republic of the Congo,1964,1326227.84,kg of nutrients +1653,Democratic Republic of the Congo,1965,1363922.8159999999,kg of nutrients +1654,Democratic Republic of the Congo,1966,1389052.8,kg of nutrients +1655,Democratic Republic of the Congo,1967,1426747.7759999998,kg of nutrients +1656,Democratic Republic of the Congo,1968,1451877.76,kg of nutrients +1657,Democratic Republic of the Congo,1969,1388028.7296,kg of nutrients +1658,Democratic Republic of the Congo,1970,1423904.5344,kg of nutrients +1659,Democratic Republic of the Congo,1971,1485705.424,kg of nutrients +1660,Democratic Republic of the Congo,1972,1511394.6208,kg of nutrients +1661,Democratic Republic of the Congo,1973,1556345.5264,kg of nutrients +1662,Democratic Republic of the Congo,1974,1591062.6464,kg of nutrients +1663,Democratic Republic of the Congo,1975,1630852.9408,kg of nutrients +1664,Democratic Republic of the Congo,1976,1659378.4608,kg of nutrients +1665,Democratic Republic of the Congo,1977,1678222.4896,kg of nutrients +1666,Democratic Republic of the Congo,1978,1677006.2496,kg of nutrients +1667,Democratic Republic of the Congo,1979,1731278.5216,kg of nutrients +1668,Democratic Republic of the Congo,1980,1830676.5728,kg of nutrients +1669,Democratic Republic of the Congo,1981,1884517.3280000002,kg of nutrients +1670,Democratic Republic of the Congo,1982,1937846.0480000002,kg of nutrients +1671,Democratic Republic of the Congo,1983,1996945.2288,kg of nutrients +1672,Democratic Republic of the Congo,1984,2049529.4848,kg of nutrients +1673,Democratic Republic of the Congo,1985,2107372.1664,kg of nutrients +1674,Democratic Republic of the Congo,1986,2202569.2032,kg of nutrients +1675,Democratic Republic of the Congo,1987,2025366.0159999998,kg of nutrients +1676,Democratic Republic of the Congo,1988,2154879.7888,kg of nutrients +1677,Democratic Republic of the Congo,1989,2177772.9216,kg of nutrients +1678,Democratic Republic of the Congo,1990,2421679.6416,kg of nutrients +1679,Democratic Republic of the Congo,1991,3084343.2989,kg of nutrients +1680,Democratic Republic of the Congo,1992,3178400.647,kg of nutrients +1681,Democratic Republic of the Congo,1993,3260896.9439999997,kg of nutrients +1682,Democratic Republic of the Congo,1994,3335385.3622,kg of nutrients +1683,Democratic Republic of the Congo,1995,2080624.3793,kg of nutrients +1684,Democratic Republic of the Congo,1996,2499997.3464,kg of nutrients +1685,Democratic Republic of the Congo,1997,2558802.4908,kg of nutrients +1686,Democratic Republic of the Congo,1998,2614876.0624,kg of nutrients +1687,Democratic Republic of the Congo,1999,2454562.9734,kg of nutrients +1688,Democratic Republic of the Congo,2000,2303508.8211,kg of nutrients +1689,Democratic Republic of the Congo,2001,2161748.5044,kg of nutrients +1690,Democratic Republic of the Congo,2002,2027951.216,kg of nutrients +1691,Democratic Republic of the Congo,2003,2046536.0219,kg of nutrients +1692,Democratic Republic of the Congo,2004,2064473.1442,kg of nutrients +1693,Democratic Republic of the Congo,2005,2082602.9181,kg of nutrients +1694,Democratic Republic of the Congo,2006,2100917.899,kg of nutrients +1695,Democratic Republic of the Congo,2007,2119418.087,kg of nutrients +1696,Democratic Republic of the Congo,2008,2138110.9267,kg of nutrients +1697,Democratic Republic of the Congo,2009,2156991.2977,kg of nutrients +1698,Democratic Republic of the Congo,2010,2175985.6626,kg of nutrients +1699,Democratic Republic of the Congo,2011,4495513.0686,kg of nutrients +1700,Democratic Republic of the Congo,2012,4656644.8909,kg of nutrients +1701,Democratic Republic of the Congo,2013,4658567.2721,kg of nutrients +1702,Djibouti,1990,65331.04,kg of nutrients +1703,Djibouti,1991,67872.6863,kg of nutrients +1704,Djibouti,1992,67787.1427,kg of nutrients +1705,Djibouti,1993,67714.5314,kg of nutrients +1706,Djibouti,1994,67659.159,kg of nutrients +1707,Djibouti,1995,66935.9775,kg of nutrients +1708,Djibouti,1996,67150.4656,kg of nutrients +1709,Djibouti,1997,67394.5909,kg of nutrients +1710,Djibouti,1998,68076.4672,kg of nutrients +1711,Djibouti,1999,71566.3584,kg of nutrients +1712,Djibouti,2000,75056.2496,kg of nutrients +1713,Djibouti,2001,78546.1408,kg of nutrients +1714,Djibouti,2002,81291.568,kg of nutrients +1715,Djibouti,2003,48626.047999999995,kg of nutrients +1716,Djibouti,2004,63823.4317,kg of nutrients +1717,Djibouti,2005,65331.04,kg of nutrients +1718,Djibouti,2006,48626.047999999995,kg of nutrients +1719,Djibouti,2007,59777.5599,kg of nutrients +1720,Djibouti,2008,59704.7745,kg of nutrients +1721,Djibouti,2009,59939.1333,kg of nutrients +1722,Djibouti,2010,51371.4752,kg of nutrients +1723,Djibouti,2011,54908.544,kg of nutrients +1724,Djibouti,2012,72358.0,kg of nutrients +1725,Djibouti,2013,72358.0,kg of nutrients +1726,Dominican Republic,1961,323303.8321,kg of nutrients +1727,Dominican Republic,1962,312029.1688,kg of nutrients +1728,Dominican Republic,1963,313693.2832,kg of nutrients +1729,Dominican Republic,1964,380148.221,kg of nutrients +1730,Dominican Republic,1965,369738.8972,kg of nutrients +1731,Dominican Republic,1966,479019.0518,kg of nutrients +1732,Dominican Republic,1967,372771.6617,kg of nutrients +1733,Dominican Republic,1968,308977.4132,kg of nutrients +1734,Dominican Republic,1969,394224.0686,kg of nutrients +1735,Dominican Republic,1970,336996.357,kg of nutrients +1736,Dominican Republic,1971,389601.0944,kg of nutrients +1737,Dominican Republic,1972,387966.2168,kg of nutrients +1738,Dominican Republic,1973,422328.1955,kg of nutrients +1739,Dominican Republic,1974,535173.3914,kg of nutrients +1740,Dominican Republic,1975,493656.3696,kg of nutrients +1741,Dominican Republic,1976,526566.6883,kg of nutrients +1742,Dominican Republic,1977,496357.2673,kg of nutrients +1743,Dominican Republic,1978,605540.9817,kg of nutrients +1744,Dominican Republic,1979,600003.9786,kg of nutrients +1745,Dominican Republic,1980,634558.4404,kg of nutrients +1746,Dominican Republic,1981,677695.0802,kg of nutrients +1747,Dominican Republic,1982,706819.6424,kg of nutrients +1748,Dominican Republic,1983,772082.2587,kg of nutrients +1749,Dominican Republic,1984,803187.0855,kg of nutrients +1750,Dominican Republic,1985,764767.915,kg of nutrients +1751,Dominican Republic,1986,572951.8114,kg of nutrients +1752,Dominican Republic,1987,737468.554,kg of nutrients +1753,Dominican Republic,1988,781443.152,kg of nutrients +1754,Dominican Republic,1989,754697.91,kg of nutrients +1755,Dominican Republic,1990,679550.4832,kg of nutrients +1756,Dominican Republic,1991,583668.4673,kg of nutrients +1757,Dominican Republic,1992,474026.7219,kg of nutrients +1758,Dominican Republic,1993,521386.6172,kg of nutrients +1759,Dominican Republic,1994,527362.7091,kg of nutrients +1760,Dominican Republic,1995,538291.2278,kg of nutrients +1761,Dominican Republic,1996,504976.3564,kg of nutrients +1762,Dominican Republic,1997,380173.518,kg of nutrients +1763,Dominican Republic,1998,371028.2198,kg of nutrients +1764,Dominican Republic,1999,362997.6201,kg of nutrients +1765,Dominican Republic,2000,343122.6132,kg of nutrients +1766,Dominican Republic,2001,455288.4077,kg of nutrients +1767,Dominican Republic,2002,480847.4277,kg of nutrients +1768,Dominican Republic,2003,424412.82200000004,kg of nutrients +1769,Dominican Republic,2004,344445.0104,kg of nutrients +1770,Dominican Republic,2005,341554.1153,kg of nutrients +1771,Dominican Republic,2006,408212.0761,kg of nutrients +1772,Dominican Republic,2007,396883.3235,kg of nutrients +1773,Dominican Republic,2008,332703.6473,kg of nutrients +1774,Dominican Republic,2009,407917.5091,kg of nutrients +1775,Dominican Republic,2010,441424.2158,kg of nutrients +1776,Dominican Republic,2011,462665.7821,kg of nutrients +1777,Dominican Republic,2012,434748.1052,kg of nutrients +1778,Dominican Republic,2013,499523.604,kg of nutrients +1779,Ecuador,1961,402930.7072,kg of nutrients +1780,Ecuador,1962,435091.552,kg of nutrients +1781,Ecuador,1963,448194.4481,kg of nutrients +1782,Ecuador,1964,548515.8842,kg of nutrients +1783,Ecuador,1965,568178.7616,kg of nutrients +1784,Ecuador,1966,794826.7990000001,kg of nutrients +1785,Ecuador,1967,784796.6197,kg of nutrients +1786,Ecuador,1968,824265.271,kg of nutrients +1787,Ecuador,1969,825899.559,kg of nutrients +1788,Ecuador,1970,819372.4549,kg of nutrients +1789,Ecuador,1971,654201.5017,kg of nutrients +1790,Ecuador,1972,595926.2103,kg of nutrients +1791,Ecuador,1973,657521.5432,kg of nutrients +1792,Ecuador,1974,636068.6962,kg of nutrients +1793,Ecuador,1975,599341.1142,kg of nutrients +1794,Ecuador,1976,669520.9914,kg of nutrients +1795,Ecuador,1977,572362.912,kg of nutrients +1796,Ecuador,1978,387277.231,kg of nutrients +1797,Ecuador,1979,449209.476,kg of nutrients +1798,Ecuador,1980,493041.3326,kg of nutrients +1799,Ecuador,1981,550543.69,kg of nutrients +1800,Ecuador,1982,525627.6944,kg of nutrients +1801,Ecuador,1983,378141.2954,kg of nutrients +1802,Ecuador,1984,463297.659,kg of nutrients +1803,Ecuador,1985,423484.5361,kg of nutrients +1804,Ecuador,1986,424269.4985,kg of nutrients +1805,Ecuador,1987,425802.8427,kg of nutrients +1806,Ecuador,1988,454541.2529,kg of nutrients +1807,Ecuador,1989,560939.7313,kg of nutrients +1808,Ecuador,1990,498001.0858,kg of nutrients +1809,Ecuador,1991,519502.8039,kg of nutrients +1810,Ecuador,1992,527053.3102,kg of nutrients +1811,Ecuador,1993,546722.0675,kg of nutrients +1812,Ecuador,1994,652095.2176,kg of nutrients +1813,Ecuador,1995,599967.314,kg of nutrients +1814,Ecuador,1996,622887.3756,kg of nutrients +1815,Ecuador,1997,642178.4346,kg of nutrients +1816,Ecuador,1998,572679.2433,kg of nutrients +1817,Ecuador,1999,585742.907,kg of nutrients +1818,Ecuador,2000,487909.7301,kg of nutrients +1819,Ecuador,2001,551140.8841,kg of nutrients +1820,Ecuador,2002,552523.1628,kg of nutrients +1821,Ecuador,2003,522027.2258,kg of nutrients +1822,Ecuador,2004,479212.7766,kg of nutrients +1823,Ecuador,2005,587755.3209,kg of nutrients +1824,Ecuador,2006,498382.0357,kg of nutrients +1825,Ecuador,2007,428319.5365,kg of nutrients +1826,Ecuador,2008,412481.8867,kg of nutrients +1827,Ecuador,2009,393921.5667,kg of nutrients +1828,Ecuador,2010,427553.1404,kg of nutrients +1829,Ecuador,2011,469688.9668,kg of nutrients +1830,Ecuador,2012,312526.6802,kg of nutrients +1831,Ecuador,2013,300444.7202,kg of nutrients +1832,Egypt,1961,9610.2059,kg of nutrients +1833,Egypt,1962,16494.2016,kg of nutrients +1834,Egypt,1963,30994.8,kg of nutrients +1835,Egypt,1964,94978.0032,kg of nutrients +1836,Egypt,1965,75357.0528,kg of nutrients +1837,Egypt,1966,70236.7008,kg of nutrients +1838,Egypt,1967,58862.8512,kg of nutrients +1839,Egypt,1968,75357.0528,kg of nutrients +1840,Egypt,1969,80477.4048,kg of nutrients +1841,Egypt,1970,91858.69900000001,kg of nutrients +1842,Egypt,1971,105226.1518,kg of nutrients +1843,Egypt,1972,113473.2526,kg of nutrients +1844,Egypt,1973,105226.1518,kg of nutrients +1845,Egypt,1974,124847.1022,kg of nutrients +1846,Egypt,1975,149595.8493,kg of nutrients +1847,Egypt,1976,149595.8493,kg of nutrients +1848,Egypt,1977,114925.36,kg of nutrients +1849,Egypt,1978,110431.3264,kg of nutrients +1850,Egypt,1979,97918.7677,kg of nutrients +1851,Egypt,1980,87061.819,kg of nutrients +1852,Egypt,1981,75532.4247,kg of nutrients +1853,Egypt,1982,108317.0015,kg of nutrients +1854,Egypt,1983,113465.808,kg of nutrients +1855,Egypt,1984,77350.656,kg of nutrients +1856,Egypt,1985,85448.864,kg of nutrients +1857,Egypt,1986,151574.5632,kg of nutrients +1858,Egypt,1987,218426.7165,kg of nutrients +1859,Egypt,1988,157261.488,kg of nutrients +1860,Egypt,1989,168407.2048,kg of nutrients +1861,Egypt,1990,192512.6871,kg of nutrients +1862,Egypt,1991,252095.8122,kg of nutrients +1863,Egypt,1992,174286.3633,kg of nutrients +1864,Egypt,1993,93547.07199999999,kg of nutrients +1865,Egypt,1994,95479.3443,kg of nutrients +1866,Egypt,1995,116765.6861,kg of nutrients +1867,Egypt,1996,189147.3293,kg of nutrients +1868,Egypt,1997,193612.52800000002,kg of nutrients +1869,Egypt,1998,197289.4,kg of nutrients +1870,Egypt,1999,257249.1569,kg of nutrients +1871,Egypt,2000,253133.7776,kg of nutrients +1872,Egypt,2001,316451.1083,kg of nutrients +1873,Egypt,2002,414589.1356,kg of nutrients +1874,Egypt,2003,429755.0147,kg of nutrients +1875,Egypt,2004,386396.8131,kg of nutrients +1876,Egypt,2005,386355.4131,kg of nutrients +1877,Egypt,2006,413006.0909,kg of nutrients +1878,Egypt,2007,466486.9421,kg of nutrients +1879,Egypt,2008,728204.4359,kg of nutrients +1880,Egypt,2009,511029.8917,kg of nutrients +1881,Egypt,2010,417278.5032,kg of nutrients +1882,Egypt,2011,774822.1004,kg of nutrients +1883,Egypt,2012,553418.1925,kg of nutrients +1884,Egypt,2013,721073.2399,kg of nutrients +1885,El Salvador,1961,213477.7001,kg of nutrients +1886,El Salvador,1962,338882.4666,kg of nutrients +1887,El Salvador,1963,280884.9637,kg of nutrients +1888,El Salvador,1964,222538.6756,kg of nutrients +1889,El Salvador,1965,259819.277,kg of nutrients +1890,El Salvador,1966,275955.0517,kg of nutrients +1891,El Salvador,1967,301088.81,kg of nutrients +1892,El Salvador,1968,344823.084,kg of nutrients +1893,El Salvador,1969,379341.23299999995,kg of nutrients +1894,El Salvador,1970,421881.1535,kg of nutrients +1895,El Salvador,1971,473693.28,kg of nutrients +1896,El Salvador,1972,436567.3343,kg of nutrients +1897,El Salvador,1973,527703.1327,kg of nutrients +1898,El Salvador,1974,555328.9663,kg of nutrients +1899,El Salvador,1975,618843.7047,kg of nutrients +1900,El Salvador,1976,598594.6424,kg of nutrients +1901,El Salvador,1977,564274.7659,kg of nutrients +1902,El Salvador,1978,605000.4979,kg of nutrients +1903,El Salvador,1979,647919.6578,kg of nutrients +1904,El Salvador,1980,590150.2067,kg of nutrients +1905,El Salvador,1981,492661.0547,kg of nutrients +1906,El Salvador,1982,609268.1306,kg of nutrients +1907,El Salvador,1983,635794.2528,kg of nutrients +1908,El Salvador,1984,678654.1788,kg of nutrients +1909,El Salvador,1985,611030.7218,kg of nutrients +1910,El Salvador,1986,708278.7882,kg of nutrients +1911,El Salvador,1987,591140.7729,kg of nutrients +1912,El Salvador,1988,792865.8109,kg of nutrients +1913,El Salvador,1989,704832.9782,kg of nutrients +1914,El Salvador,1990,736095.6358,kg of nutrients +1915,El Salvador,1991,920625.7752,kg of nutrients +1916,El Salvador,1992,906587.7145,kg of nutrients +1917,El Salvador,1993,871618.3312,kg of nutrients +1918,El Salvador,1994,867190.3779,kg of nutrients +1919,El Salvador,1995,713138.6374,kg of nutrients +1920,El Salvador,1996,806566.0866,kg of nutrients +1921,El Salvador,1997,963453.0529,kg of nutrients +1922,El Salvador,1998,819677.9163,kg of nutrients +1923,El Salvador,1999,894377.1448,kg of nutrients +1924,El Salvador,2000,937368.4526,kg of nutrients +1925,El Salvador,2001,1017815.4473,kg of nutrients +1926,El Salvador,2002,1042603.234,kg of nutrients +1927,El Salvador,2003,1051908.9803,kg of nutrients +1928,El Salvador,2004,1079649.4731,kg of nutrients +1929,El Salvador,2005,970319.7386,kg of nutrients +1930,El Salvador,2006,1115136.1797,kg of nutrients +1931,El Salvador,2007,969333.8864,kg of nutrients +1932,El Salvador,2008,1291261.4589,kg of nutrients +1933,El Salvador,2009,1184895.5264,kg of nutrients +1934,El Salvador,2010,1128178.088,kg of nutrients +1935,El Salvador,2011,1058761.0019,kg of nutrients +1936,El Salvador,2012,1420842.0914,kg of nutrients +1937,El Salvador,2013,1495699.0852,kg of nutrients +1938,Eritrea,1993,48715.2909,kg of nutrients +1939,Eritrea,1994,55362.8584,kg of nutrients +1940,Eritrea,1995,44012.3792,kg of nutrients +1941,Eritrea,1996,41034.7281,kg of nutrients +1942,Eritrea,1997,36656.9796,kg of nutrients +1943,Eritrea,1998,11670.6331,kg of nutrients +1944,Eritrea,1999,49249.2428,kg of nutrients +1945,Eritrea,2000,28532.7917,kg of nutrients +1946,Eritrea,2001,53424.9181,kg of nutrients +1947,Eritrea,2002,38586.0659,kg of nutrients +1948,Eritrea,2003,31994.8893,kg of nutrients +1949,Eritrea,2004,25540.6065,kg of nutrients +1950,Eritrea,2005,19775.2315,kg of nutrients +1951,Eritrea,2006,3209.7355,kg of nutrients +1952,Eritrea,2007,684.6741,kg of nutrients +1953,Eritrea,2008,309.7934,kg of nutrients +1954,Eritrea,2009,27119.1911,kg of nutrients +1955,Eritrea,2010,18551.216,kg of nutrients +1956,Eritrea,2011,16682.359,kg of nutrients +1957,Eritrea,2012,13840.9699,kg of nutrients +1958,Eritrea,2013,14258.3084,kg of nutrients +1959,Estonia,1992,1540.7071,kg of nutrients +1960,Estonia,1993,3383.4928,kg of nutrients +1961,Estonia,1994,3213.9803,kg of nutrients +1962,Estonia,1995,3595.6824,kg of nutrients +1963,Estonia,1996,8587.8401,kg of nutrients +1964,Estonia,1997,48731.5801,kg of nutrients +1965,Estonia,1998,14090.3976,kg of nutrients +1966,Estonia,1999,10191.6238,kg of nutrients +1967,Estonia,2000,12198.5722,kg of nutrients +1968,Estonia,2001,10750.4812,kg of nutrients +1969,Estonia,2002,2029.5339999999999,kg of nutrients +1970,Estonia,2003,4864.6995,kg of nutrients +1971,Estonia,2004,1118.6869,kg of nutrients +1972,Estonia,2005,1355.4654,kg of nutrients +1973,Estonia,2006,800.8571,kg of nutrients +1974,Estonia,2007,1234.6716,kg of nutrients +1975,Estonia,2008,1126.2353,kg of nutrients +1976,Estonia,2009,1225.3745,kg of nutrients +1977,Estonia,2010,4701.2287,kg of nutrients +1978,Estonia,2011,1101.9797,kg of nutrients +1979,Estonia,2012,720.7839,kg of nutrients +1980,Estonia,2013,5672.3123,kg of nutrients +1981,Eswatini,1961,20429.1204,kg of nutrients +1982,Eswatini,1962,20009.631999999998,kg of nutrients +1983,Eswatini,1963,14556.1833,kg of nutrients +1984,Eswatini,1964,16290.4164,kg of nutrients +1985,Eswatini,1965,13727.136,kg of nutrients +1986,Eswatini,1966,16501.697,kg of nutrients +1987,Eswatini,1967,17058.6297,kg of nutrients +1988,Eswatini,1968,15489.4556,kg of nutrients +1989,Eswatini,1969,21421.5472,kg of nutrients +1990,Eswatini,1970,21474.9712,kg of nutrients +1991,Eswatini,1971,22560.0707,kg of nutrients +1992,Eswatini,1972,25144.363999999998,kg of nutrients +1993,Eswatini,1973,18975.3555,kg of nutrients +1994,Eswatini,1974,14689.0262,kg of nutrients +1995,Eswatini,1975,18712.39,kg of nutrients +1996,Eswatini,1976,21345.0532,kg of nutrients +1997,Eswatini,1977,19306.3825,kg of nutrients +1998,Eswatini,1978,18697.0606,kg of nutrients +1999,Eswatini,1979,14257.9981,kg of nutrients +2000,Eswatini,1980,10120.7537,kg of nutrients +2001,Eswatini,1981,17683.3943,kg of nutrients +2002,Eswatini,1982,17486.4716,kg of nutrients +2003,Eswatini,1983,13514.1067,kg of nutrients +2004,Eswatini,1984,13664.1852,kg of nutrients +2005,Eswatini,1985,15787.373,kg of nutrients +2006,Eswatini,1986,37541.3654,kg of nutrients +2007,Eswatini,1987,45139.615999999995,kg of nutrients +2008,Eswatini,1988,66502.5967,kg of nutrients +2009,Eswatini,1989,63374.2721,kg of nutrients +2010,Eswatini,1990,63639.0908,kg of nutrients +2011,Eswatini,1991,28757.9488,kg of nutrients +2012,Eswatini,1992,30014.447999999997,kg of nutrients +2013,Eswatini,1993,36296.943999999996,kg of nutrients +2014,Eswatini,1994,41090.512,kg of nutrients +2015,Eswatini,1995,50901.1131,kg of nutrients +2016,Eswatini,1996,53237.824,kg of nutrients +2017,Eswatini,1997,56572.3022,kg of nutrients +2018,Eswatini,1998,55053.53599999999,kg of nutrients +2019,Eswatini,1999,48349.9008,kg of nutrients +2020,Eswatini,2000,42603.3688,kg of nutrients +2021,Eswatini,2001,34434.0544,kg of nutrients +2022,Eswatini,2002,29948.0152,kg of nutrients +2023,Eswatini,2003,25402.4251,kg of nutrients +2024,Eswatini,2004,20576.7109,kg of nutrients +2025,Eswatini,2005,22783.8151,kg of nutrients +2026,Eswatini,2006,30830.4205,kg of nutrients +2027,Eswatini,2007,26511.9374,kg of nutrients +2028,Eswatini,2008,27698.4952,kg of nutrients +2029,Eswatini,2009,29943.6816,kg of nutrients +2030,Eswatini,2010,31688.6272,kg of nutrients +2031,Eswatini,2011,29482.7056,kg of nutrients +2032,Eswatini,2012,27454.272,kg of nutrients +2033,Eswatini,2013,27454.272,kg of nutrients +2034,Ethiopia,1993,604346.0084,kg of nutrients +2035,Ethiopia,1994,937881.5763,kg of nutrients +2036,Ethiopia,1995,1137653.7207,kg of nutrients +2037,Ethiopia,1996,1311825.1134,kg of nutrients +2038,Ethiopia,1997,1272857.1415,kg of nutrients +2039,Ethiopia,1998,1141752.1117,kg of nutrients +2040,Ethiopia,1999,2033554.0962,kg of nutrients +2041,Ethiopia,2000,2383696.4995,kg of nutrients +2042,Ethiopia,2001,3588293.7943,kg of nutrients +2043,Ethiopia,2002,2044581.2707,kg of nutrients +2044,Ethiopia,2003,1953456.3048,kg of nutrients +2045,Ethiopia,2004,2675366.7462,kg of nutrients +2046,Ethiopia,2005,2876329.2741,kg of nutrients +2047,Ethiopia,2006,1927360.1522,kg of nutrients +2048,Ethiopia,2007,2803114.8469,kg of nutrients +2049,Ethiopia,2008,2959080.5083,kg of nutrients +2050,Ethiopia,2009,3674713.4776,kg of nutrients +2051,Ethiopia,2010,3509457.7968,kg of nutrients +2052,Ethiopia,2011,4455129.3914,kg of nutrients +2053,Ethiopia,2012,5102036.2484,kg of nutrients +2054,Ethiopia,2013,4772519.7263,kg of nutrients +2055,Ethiopia PDR,1961,956255.6544,kg of nutrients +2056,Ethiopia PDR,1962,970542.0032,kg of nutrients +2057,Ethiopia PDR,1963,970542.0032,kg of nutrients +2058,Ethiopia PDR,1964,986179.2064,kg of nutrients +2059,Ethiopia PDR,1965,1001816.4096,kg of nutrients +2060,Ethiopia PDR,1966,694307.808,kg of nutrients +2061,Ethiopia PDR,1967,706872.8,kg of nutrients +2062,Ethiopia PDR,1968,714317.44,kg of nutrients +2063,Ethiopia PDR,1969,734327.072,kg of nutrients +2064,Ethiopia PDR,1970,754336.704,kg of nutrients +2065,Ethiopia PDR,1971,766901.696,kg of nutrients +2066,Ethiopia PDR,1972,822282.016,kg of nutrients +2067,Ethiopia PDR,1973,839967.36,kg of nutrients +2068,Ethiopia PDR,1974,812985.1363,kg of nutrients +2069,Ethiopia PDR,1975,674671.512,kg of nutrients +2070,Ethiopia PDR,1976,552268.2278,kg of nutrients +2071,Ethiopia PDR,1977,530206.3702,kg of nutrients +2072,Ethiopia PDR,1978,234352.0416,kg of nutrients +2073,Ethiopia PDR,1979,284889.3491,kg of nutrients +2074,Ethiopia PDR,1980,268900.2253,kg of nutrients +2075,Ethiopia PDR,1981,257265.5035,kg of nutrients +2076,Ethiopia PDR,1982,246737.0551,kg of nutrients +2077,Ethiopia PDR,1983,511225.034,kg of nutrients +2078,Ethiopia PDR,1984,516043.9948,kg of nutrients +2079,Ethiopia PDR,1985,465059.7645,kg of nutrients +2080,Ethiopia PDR,1986,458453.2342,kg of nutrients +2081,Ethiopia PDR,1987,601363.4339,kg of nutrients +2082,Ethiopia PDR,1988,739308.819,kg of nutrients +2083,Ethiopia PDR,1989,1057786.4378,kg of nutrients +2084,Ethiopia PDR,1990,1234990.2035,kg of nutrients +2085,Ethiopia PDR,1991,1499604.7847,kg of nutrients +2086,Ethiopia PDR,1992,636927.0194,kg of nutrients +2087,France,1961,1156000.527,kg of nutrients +2088,France,1962,950222.8832,kg of nutrients +2089,France,1963,1063835.4901,kg of nutrients +2090,France,1964,760827.4990000001,kg of nutrients +2091,France,1965,708680.2614,kg of nutrients +2092,France,1966,704804.8314,kg of nutrients +2093,France,1967,589684.12,kg of nutrients +2094,France,1968,609055.8314,kg of nutrients +2095,France,1969,518729.5211,kg of nutrients +2096,France,1970,563371.8514,kg of nutrients +2097,France,1971,439951.1723,kg of nutrients +2098,France,1972,325411.6434,kg of nutrients +2099,France,1973,314116.9506,kg of nutrients +2100,France,1974,292472.0627,kg of nutrients +2101,France,1975,334384.0199,kg of nutrients +2102,France,1976,273294.8982,kg of nutrients +2103,France,1977,412033.9821,kg of nutrients +2104,France,1978,428072.7616,kg of nutrients +2105,France,1979,310419.776,kg of nutrients +2106,France,1980,282493.728,kg of nutrients +2107,France,1981,262484.096,kg of nutrients +2108,France,1982,290410.144,kg of nutrients +2109,France,1983,196863.072,kg of nutrients +2110,France,1984,149904.2848,kg of nutrients +2111,France,1985,153303.28,kg of nutrients +2112,France,1986,145205.072,kg of nutrients +2113,France,1987,142412.4672,kg of nutrients +2114,France,1988,129847.4752,kg of nutrients +2115,France,1989,105458.496,kg of nutrients +2116,France,1990,73509.5684,kg of nutrients +2117,France,1991,79044.1688,kg of nutrients +2118,France,1992,93773.2321,kg of nutrients +2119,France,1993,81693.47200000001,kg of nutrients +2120,France,1994,73849.2221,kg of nutrients +2121,France,1995,78671.6036,kg of nutrients +2122,France,1996,69455.4334,kg of nutrients +2123,France,1997,71657.7937,kg of nutrients +2124,France,1998,66756.0655,kg of nutrients +2125,France,1999,73681.9008,kg of nutrients +2126,France,2000,67022.7765,kg of nutrients +2127,France,2001,68917.2477,kg of nutrients +2128,France,2002,67224.8166,kg of nutrients +2129,France,2003,70980.0646,kg of nutrients +2130,France,2004,61673.0435,kg of nutrients +2131,France,2005,69824.9993,kg of nutrients +2132,France,2006,63913.3642,kg of nutrients +2133,France,2007,53920.0334,kg of nutrients +2134,France,2008,49219.5577,kg of nutrients +2135,France,2009,39321.672999999995,kg of nutrients +2136,France,2010,63256.1508,kg of nutrients +2137,France,2011,59194.5617,kg of nutrients +2138,France,2012,64606.1499,kg of nutrients +2139,France,2013,68761.0421,kg of nutrients +2140,Georgia,1992,101446.192,kg of nutrients +2141,Georgia,1993,116150.2208,kg of nutrients +2142,Georgia,1994,149984.8032,kg of nutrients +2143,Georgia,1995,168512.4256,kg of nutrients +2144,Georgia,1996,206403.0304,kg of nutrients +2145,Georgia,1997,118717.3152,kg of nutrients +2146,Georgia,1998,116602.9528,kg of nutrients +2147,Georgia,1999,123463.621,kg of nutrients +2148,Georgia,2000,72279.2164,kg of nutrients +2149,Georgia,2001,121897.5566,kg of nutrients +2150,Georgia,2002,131183.9828,kg of nutrients +2151,Georgia,2003,138211.7759,kg of nutrients +2152,Georgia,2004,211401.0872,kg of nutrients +2153,Georgia,2005,187171.6095,kg of nutrients +2154,Georgia,2006,85815.9072,kg of nutrients +2155,Georgia,2007,102153.856,kg of nutrients +2156,Georgia,2008,112253.0272,kg of nutrients +2157,Georgia,2009,91684.1824,kg of nutrients +2158,Georgia,2010,79577.1296,kg of nutrients +2159,Georgia,2011,88750.0448,kg of nutrients +2160,Georgia,2012,92334.2912,kg of nutrients +2161,Georgia,2013,114809.744,kg of nutrients +2162,Germany,1961,115147.1676,kg of nutrients +2163,Germany,1962,138828.7426,kg of nutrients +2164,Germany,1963,146293.0868,kg of nutrients +2165,Germany,1964,96709.3048,kg of nutrients +2166,Germany,1965,70072.7767,kg of nutrients +2167,Germany,1966,76537.1052,kg of nutrients +2168,Germany,1967,73620.1112,kg of nutrients +2169,Germany,1968,49330.6642,kg of nutrients +2170,Germany,1969,61609.0895,kg of nutrients +2171,Germany,1970,67046.3277,kg of nutrients +2172,Germany,1971,78163.4863,kg of nutrients +2173,Germany,1972,43873.3817,kg of nutrients +2174,Germany,1973,44839.2066,kg of nutrients +2175,Germany,1974,44951.4517,kg of nutrients +2176,Germany,1975,49805.58,kg of nutrients +2177,Germany,1976,34875.3158,kg of nutrients +2178,Germany,1977,46702.4642,kg of nutrients +2179,Germany,1978,54417.7056,kg of nutrients +2180,Germany,1979,59436.9717,kg of nutrients +2181,Germany,1980,46327.2035,kg of nutrients +2182,Germany,1981,41868.8173,kg of nutrients +2183,Germany,1982,51710.4547,kg of nutrients +2184,Germany,1983,54702.8541,kg of nutrients +2185,Germany,1984,59736.9432,kg of nutrients +2186,Germany,1985,80832.1458,kg of nutrients +2187,Germany,1986,108718.5867,kg of nutrients +2188,Germany,1987,63522.8963,kg of nutrients +2189,Germany,1988,58766.2402,kg of nutrients +2190,Germany,1989,57773.8354,kg of nutrients +2191,Germany,1990,46944.4668,kg of nutrients +2192,Germany,1991,58773.6848,kg of nutrients +2193,Ghana,2001,1075652.96,kg of nutrients +2194,Ghana,2002,2061351.264,kg of nutrients +2195,Ghana,2003,2162982.7072,kg of nutrients +2196,Ghana,2004,2090388.8192,kg of nutrients +2197,Ghana,2005,2076341.8176,kg of nutrients +2198,Ghana,2006,2232357.184,kg of nutrients +2199,Ghana,2007,1974156.8288,kg of nutrients +2200,Ghana,2008,2298409.7248,kg of nutrients +2201,Ghana,2009,2425906.4896,kg of nutrients +2202,Ghana,2010,2346007.1487,kg of nutrients +2203,Ghana,2011,2569657.2256,kg of nutrients +2204,Ghana,2012,2399517.7984,kg of nutrients +2205,Ghana,2013,2232150.2208,kg of nutrients +2206,Greece,1961,815992.8555,kg of nutrients +2207,Greece,1962,655204.9486,kg of nutrients +2208,Greece,1963,687903.7152,kg of nutrients +2209,Greece,1964,710178.0126,kg of nutrients +2210,Greece,1965,752618.1087,kg of nutrients +2211,Greece,1966,766593.8125,kg of nutrients +2212,Greece,1967,745312.1995,kg of nutrients +2213,Greece,1968,684887.5703,kg of nutrients +2214,Greece,1969,666465.009,kg of nutrients +2215,Greece,1970,676740.291,kg of nutrients +2216,Greece,1971,594654.3648,kg of nutrients +2217,Greece,1972,504101.9561,kg of nutrients +2218,Greece,1973,547137.811,kg of nutrients +2219,Greece,1974,490900.946,kg of nutrients +2220,Greece,1975,524642.0527,kg of nutrients +2221,Greece,1976,510560.3421,kg of nutrients +2222,Greece,1977,489786.1555,kg of nutrients +2223,Greece,1978,487979.0231,kg of nutrients +2224,Greece,1979,512476.8,kg of nutrients +2225,Greece,1980,467632.8941,kg of nutrients +2226,Greece,1981,388355.5005,kg of nutrients +2227,Greece,1982,347686.6944,kg of nutrients +2228,Greece,1983,342226.73799999995,kg of nutrients +2229,Greece,1984,324092.0734,kg of nutrients +2230,Greece,1985,299523.1392,kg of nutrients +2231,Greece,1986,288631.232,kg of nutrients +2232,Greece,1987,278477.9258,kg of nutrients +2233,Greece,1988,251257.1145,kg of nutrients +2234,Greece,1989,247580.5376,kg of nutrients +2235,Greece,1990,230180.5055,kg of nutrients +2236,Greece,1991,251364.7228,kg of nutrients +2237,Greece,1992,233417.4578,kg of nutrients +2238,Greece,1993,222166.6833,kg of nutrients +2239,Greece,1994,203790.8477,kg of nutrients +2240,Greece,1995,208587.7121,kg of nutrients +2241,Greece,1996,220914.8948,kg of nutrients +2242,Greece,1997,209232.6903,kg of nutrients +2243,Greece,1998,201459.1629,kg of nutrients +2244,Greece,1999,207268.1669,kg of nutrients +2245,Greece,2000,195354.6525,kg of nutrients +2246,Greece,2001,192557.0405,kg of nutrients +2247,Greece,2002,186765.775,kg of nutrients +2248,Greece,2003,185833.0117,kg of nutrients +2249,Greece,2004,165007.0364,kg of nutrients +2250,Greece,2005,164317.6765,kg of nutrients +2251,Greece,2006,169498.8592,kg of nutrients +2252,Greece,2007,164263.1579,kg of nutrients +2253,Greece,2008,164826.7422,kg of nutrients +2254,Greece,2009,170600.5708,kg of nutrients +2255,Greece,2010,175065.3613,kg of nutrients +2256,Greece,2011,189249.188,kg of nutrients +2257,Greece,2012,166575.1731,kg of nutrients +2258,Greece,2013,183374.0629,kg of nutrients +2259,Grenada,1961,577.0461,kg of nutrients +2260,Grenada,1962,577.0461,kg of nutrients +2261,Grenada,1963,577.0461,kg of nutrients +2262,Grenada,1964,602.6478,kg of nutrients +2263,Grenada,1965,628.2496,kg of nutrients +2264,Grenada,1966,628.2496,kg of nutrients +2265,Grenada,1967,628.2496,kg of nutrients +2266,Grenada,1968,628.2496,kg of nutrients +2267,Grenada,1969,691.0746,kg of nutrients +2268,Grenada,1970,691.0746,kg of nutrients +2269,Grenada,1971,753.8995,kg of nutrients +2270,Grenada,1972,753.8995,kg of nutrients +2271,Grenada,1973,685.9542,kg of nutrients +2272,Grenada,1974,759.0199,kg of nutrients +2273,Grenada,1975,879.5494,kg of nutrients +2274,Grenada,1976,942.3744,kg of nutrients +2275,Grenada,1977,1020.5604,kg of nutrients +2276,Grenada,1978,759.0199,kg of nutrients +2277,Grenada,1979,628.2496,kg of nutrients +2278,Grenada,1980,628.2496,kg of nutrients +2279,Grenada,1981,628.2496,kg of nutrients +2280,Grenada,1982,628.2496,kg of nutrients +2281,Grenada,1983,628.2496,kg of nutrients +2282,Grenada,1984,628.2496,kg of nutrients +2283,Grenada,1985,928.3941,kg of nutrients +2284,Grenada,1986,753.8995,kg of nutrients +2285,Grenada,1987,816.7245,kg of nutrients +2286,Grenada,1988,816.7245,kg of nutrients +2287,Grenada,1989,1487.3176,kg of nutrients +2288,Grenada,1990,1743.7378,kg of nutrients +2289,Grenada,1991,1623.2083,kg of nutrients +2290,Grenada,1992,1637.5452,kg of nutrients +2291,Grenada,1993,1371.9084,kg of nutrients +2292,Grenada,1994,1266.7399,kg of nutrients +2293,Grenada,1995,1265.0304,kg of nutrients +2294,Grenada,1996,1130.8493,kg of nutrients +2295,Grenada,1997,1151.0627,kg of nutrients +2296,Grenada,1998,1175.1648,kg of nutrients +2297,Grenada,1999,1189.0554,kg of nutrients +2298,Grenada,2000,1193.6742,kg of nutrients +2299,Grenada,2001,1210.1921,kg of nutrients +2300,Grenada,2002,1215.7329,kg of nutrients +2301,Grenada,2003,1221.0184,kg of nutrients +2302,Grenada,2004,1224.6422,kg of nutrients +2303,Grenada,2005,1226.8121,kg of nutrients +2304,Grenada,2006,1229.2282,kg of nutrients +2305,Grenada,2007,1256.4992,kg of nutrients +2306,Grenada,2008,1277.1899,kg of nutrients +2307,Grenada,2009,1317.9609,kg of nutrients +2308,Grenada,2010,1358.4365,kg of nutrients +2309,Grenada,2011,1398.4920000000002,kg of nutrients +2310,Grenada,2012,1410.1098,kg of nutrients +2311,Grenada,2013,1447.3329999999999,kg of nutrients +2312,Guatemala,1961,682901.5008,kg of nutrients +2313,Guatemala,1962,684205.1776,kg of nutrients +2314,Guatemala,1963,810222.1408,kg of nutrients +2315,Guatemala,1964,991103.9296,kg of nutrients +2316,Guatemala,1965,942754.0288,kg of nutrients +2317,Guatemala,1966,840283.7664,kg of nutrients +2318,Guatemala,1967,871601.8912,kg of nutrients +2319,Guatemala,1968,1087346.0069,kg of nutrients +2320,Guatemala,1969,955121.4769,kg of nutrients +2321,Guatemala,1970,1453552.447,kg of nutrients +2322,Guatemala,1971,1651530.8564,kg of nutrients +2323,Guatemala,1972,1044327.1742,kg of nutrients +2324,Guatemala,1973,1216974.4699,kg of nutrients +2325,Guatemala,1974,1073702.8088,kg of nutrients +2326,Guatemala,1975,1621792.3215,kg of nutrients +2327,Guatemala,1976,1390878.3619,kg of nutrients +2328,Guatemala,1977,952679.9876,kg of nutrients +2329,Guatemala,1978,1117940.2079999999,kg of nutrients +2330,Guatemala,1979,827239.7091,kg of nutrients +2331,Guatemala,1980,785961.5811,kg of nutrients +2332,Guatemala,1981,1024976.5632,kg of nutrients +2333,Guatemala,1982,1040867.8336,kg of nutrients +2334,Guatemala,1983,1212905.6624,kg of nutrients +2335,Guatemala,1984,1324205.7094,kg of nutrients +2336,Guatemala,1985,1863683.6446,kg of nutrients +2337,Guatemala,1986,1783202.6298,kg of nutrients +2338,Guatemala,1987,1846885.2668,kg of nutrients +2339,Guatemala,1988,1525102.1277,kg of nutrients +2340,Guatemala,1989,1186755.1923,kg of nutrients +2341,Guatemala,1990,1572862.1937,kg of nutrients +2342,Guatemala,1991,1647985.8909999998,kg of nutrients +2343,Guatemala,1992,1628857.6065,kg of nutrients +2344,Guatemala,1993,1410435.5408,kg of nutrients +2345,Guatemala,1994,1470383.2538,kg of nutrients +2346,Guatemala,1995,1363466.6307,kg of nutrients +2347,Guatemala,1996,1311051.6915,kg of nutrients +2348,Guatemala,1997,1286200.0826,kg of nutrients +2349,Guatemala,1998,1419564.6213,kg of nutrients +2350,Guatemala,1999,1383531.7416,kg of nutrients +2351,Guatemala,2000,1414486.2140000002,kg of nutrients +2352,Guatemala,2001,2460763.1158,kg of nutrients +2353,Guatemala,2002,2470346.1724,kg of nutrients +2354,Guatemala,2003,2537663.3437,kg of nutrients +2355,Guatemala,2004,2577519.3689,kg of nutrients +2356,Guatemala,2005,2570575.1922,kg of nutrients +2357,Guatemala,2006,2602488.3432,kg of nutrients +2358,Guatemala,2007,2659346.9873,kg of nutrients +2359,Guatemala,2008,2728795.4004,kg of nutrients +2360,Guatemala,2009,2765240.5966,kg of nutrients +2361,Guatemala,2010,2823262.7591,kg of nutrients +2362,Guatemala,2011,2857442.6702,kg of nutrients +2363,Guatemala,2012,2922520.5767,kg of nutrients +2364,Guatemala,2013,3001432.4058,kg of nutrients +2365,Haiti,1961,854586.16,kg of nutrients +2366,Haiti,1962,865615.0464,kg of nutrients +2367,Haiti,1963,912054.88,kg of nutrients +2368,Haiti,1964,913078.9504,kg of nutrients +2369,Haiti,1965,907682.4512,kg of nutrients +2370,Haiti,1966,917687.2672,kg of nutrients +2371,Haiti,1967,922295.584,kg of nutrients +2372,Haiti,1968,854350.272,kg of nutrients +2373,Haiti,1969,887160.7840000001,kg of nutrients +2374,Haiti,1970,889720.96,kg of nutrients +2375,Haiti,1971,922295.584,kg of nutrients +2376,Haiti,1972,934860.5759999999,kg of nutrients +2377,Haiti,1973,938956.8576,kg of nutrients +2378,Haiti,1974,924619.872,kg of nutrients +2379,Haiti,1975,859625.9936,kg of nutrients +2380,Haiti,1976,874831.68,kg of nutrients +2381,Haiti,1977,1008590.6728,kg of nutrients +2382,Haiti,1978,988675.6698,kg of nutrients +2383,Haiti,1979,933259.1673,kg of nutrients +2384,Haiti,1980,930080.2781,kg of nutrients +2385,Haiti,1981,927571.3056,kg of nutrients +2386,Haiti,1982,871914.8384,kg of nutrients +2387,Haiti,1983,874475.0144,kg of nutrients +2388,Haiti,1984,876267.1376,kg of nutrients +2389,Haiti,1985,879569.7646,kg of nutrients +2390,Haiti,1986,807724.5035,kg of nutrients +2391,Haiti,1987,905489.3383,kg of nutrients +2392,Haiti,1988,911674.9406,kg of nutrients +2393,Haiti,1989,922330.176,kg of nutrients +2394,Haiti,1990,954904.8,kg of nutrients +2395,Haiti,1991,1032619.04,kg of nutrients +2396,Haiti,1992,1065710.8196,kg of nutrients +2397,Haiti,1993,792031.68,kg of nutrients +2398,Haiti,1994,703070.6588,kg of nutrients +2399,Haiti,1995,473730.08,kg of nutrients +2400,Haiti,1996,782724.1504,kg of nutrients +2401,Haiti,1997,795754.0,kg of nutrients +2402,Haiti,1998,557346.2746,kg of nutrients +2403,Haiti,1999,561449.136,kg of nutrients +2404,Haiti,2000,549416.3088,kg of nutrients +2405,Haiti,2001,545902.8288,kg of nutrients +2406,Haiti,2002,538643.44,kg of nutrients +2407,Haiti,2003,579733.952,kg of nutrients +2408,Haiti,2004,563446.64,kg of nutrients +2409,Haiti,2005,662659.44,kg of nutrients +2410,Haiti,2006,661600.1585,kg of nutrients +2411,Haiti,2007,1162445.76,kg of nutrients +2412,Haiti,2008,1077286.88,kg of nutrients +2413,Haiti,2009,1221272.9709,kg of nutrients +2414,Haiti,2010,1526338.9634,kg of nutrients +2415,Haiti,2011,1559126.295,kg of nutrients +2416,Haiti,2012,1707674.2913,kg of nutrients +2417,Haiti,2013,1866511.6439,kg of nutrients +2418,Honduras,1961,733600.1277,kg of nutrients +2419,Honduras,1962,759827.5937,kg of nutrients +2420,Honduras,1963,828320.6862,kg of nutrients +2421,Honduras,1964,943369.2571,kg of nutrients +2422,Honduras,1965,685598.6206,kg of nutrients +2423,Honduras,1966,791345.0612,kg of nutrients +2424,Honduras,1967,804845.8868,kg of nutrients +2425,Honduras,1968,787210.9036,kg of nutrients +2426,Honduras,1969,769570.8,kg of nutrients +2427,Honduras,1970,752407.1534,kg of nutrients +2428,Honduras,1971,734283.1483,kg of nutrients +2429,Honduras,1972,716648.1651,kg of nutrients +2430,Honduras,1973,636975.8081,kg of nutrients +2431,Honduras,1974,632181.9508,kg of nutrients +2432,Honduras,1975,713297.2829,kg of nutrients +2433,Honduras,1976,717741.4158,kg of nutrients +2434,Honduras,1977,722172.9836,kg of nutrients +2435,Honduras,1978,816817.6223,kg of nutrients +2436,Honduras,1979,716717.4889,kg of nutrients +2437,Honduras,1980,692335.5282,kg of nutrients +2438,Honduras,1981,785201.5036,kg of nutrients +2439,Honduras,1982,537066.2494,kg of nutrients +2440,Honduras,1983,533997.9412,kg of nutrients +2441,Honduras,1984,606188.8788,kg of nutrients +2442,Honduras,1985,701211.3467,kg of nutrients +2443,Honduras,1986,761627.9778,kg of nutrients +2444,Honduras,1987,677252.8951,kg of nutrients +2445,Honduras,1988,855559.5539,kg of nutrients +2446,Honduras,1989,896813.9385,kg of nutrients +2447,Honduras,1990,1067742.8677,kg of nutrients +2448,Honduras,1991,1234406.7726,kg of nutrients +2449,Honduras,1992,772590.109,kg of nutrients +2450,Honduras,1993,903128.9752,kg of nutrients +2451,Honduras,1994,1248637.7095,kg of nutrients +2452,Honduras,1995,703947.2788,kg of nutrients +2453,Honduras,1996,896959.9417,kg of nutrients +2454,Honduras,1997,999499.3528,kg of nutrients +2455,Honduras,1998,958871.7922,kg of nutrients +2456,Honduras,1999,1104724.2034,kg of nutrients +2457,Honduras,2000,1333740.2288,kg of nutrients +2458,Honduras,2001,871947.0443,kg of nutrients +2459,Honduras,2002,1489768.091,kg of nutrients +2460,Honduras,2003,1134019.2246,kg of nutrients +2461,Honduras,2004,1173919.1867,kg of nutrients +2462,Honduras,2005,1319452.3948,kg of nutrients +2463,Honduras,2006,886241.2087,kg of nutrients +2464,Honduras,2007,941668.0608,kg of nutrients +2465,Honduras,2008,998543.6546,kg of nutrients +2466,Honduras,2009,1136347.6166,kg of nutrients +2467,Honduras,2010,1153222.8218,kg of nutrients +2468,Honduras,2011,1248718.8093,kg of nutrients +2469,Honduras,2012,1296878.9678,kg of nutrients +2470,Honduras,2013,1496787.1626,kg of nutrients +2471,Hungary,1961,257196.5116,kg of nutrients +2472,Hungary,1962,335677.8078,kg of nutrients +2473,Hungary,1963,275826.1892,kg of nutrients +2474,Hungary,1964,221170.7313,kg of nutrients +2475,Hungary,1965,272258.7501,kg of nutrients +2476,Hungary,1966,397248.5745,kg of nutrients +2477,Hungary,1967,311972.3172,kg of nutrients +2478,Hungary,1968,147653.0301,kg of nutrients +2479,Hungary,1969,164170.1912,kg of nutrients +2480,Hungary,1970,150388.5684,kg of nutrients +2481,Hungary,1971,145612.9021,kg of nutrients +2482,Hungary,1972,132828.6535,kg of nutrients +2483,Hungary,1973,148809.448,kg of nutrients +2484,Hungary,1974,137442.4425,kg of nutrients +2485,Hungary,1975,163875.5365,kg of nutrients +2486,Hungary,1976,102615.2735,kg of nutrients +2487,Hungary,1977,114295.4404,kg of nutrients +2488,Hungary,1978,136799.9513,kg of nutrients +2489,Hungary,1979,166563.2216,kg of nutrients +2490,Hungary,1980,162567.6579,kg of nutrients +2491,Hungary,1981,142350.5203,kg of nutrients +2492,Hungary,1982,164728.8115,kg of nutrients +2493,Hungary,1983,116368.8474,kg of nutrients +2494,Hungary,1984,131624.085,kg of nutrients +2495,Hungary,1985,134052.55599999998,kg of nutrients +2496,Hungary,1986,194061.6749,kg of nutrients +2497,Hungary,1987,207394.0603,kg of nutrients +2498,Hungary,1988,100943.0572,kg of nutrients +2499,Hungary,1989,67887.3152,kg of nutrients +2500,Hungary,1990,48002.33,kg of nutrients +2501,Hungary,1991,77829.1141,kg of nutrients +2502,Hungary,1992,51070.7419,kg of nutrients +2503,Hungary,1993,48617.5899,kg of nutrients +2504,Hungary,1994,55262.3193,kg of nutrients +2505,Hungary,1995,57150.6002,kg of nutrients +2506,Hungary,1996,61498.3421,kg of nutrients +2507,Hungary,1997,62672.5572,kg of nutrients +2508,Hungary,1998,66023.8589,kg of nutrients +2509,Hungary,1999,63561.3847,kg of nutrients +2510,Hungary,2000,48568.3772,kg of nutrients +2511,Hungary,2001,39586.1471,kg of nutrients +2512,Hungary,2002,38354.4666,kg of nutrients +2513,Hungary,2003,28440.5024,kg of nutrients +2514,Hungary,2004,18165.701,kg of nutrients +2515,Hungary,2005,21569.5148,kg of nutrients +2516,Hungary,2006,16202.9863,kg of nutrients +2517,Hungary,2007,8807.9335,kg of nutrients +2518,Hungary,2008,13364.3675,kg of nutrients +2519,Hungary,2009,8810.4308,kg of nutrients +2520,Hungary,2010,5991.786999999999,kg of nutrients +2521,Hungary,2011,11090.0914,kg of nutrients +2522,Hungary,2012,9745.4643,kg of nutrients +2523,Hungary,2013,8530.7331,kg of nutrients +2524,India,1961,57328240.0914,kg of nutrients +2525,India,1962,59310726.4942,kg of nutrients +2526,India,1963,61759004.2816,kg of nutrients +2527,India,1964,65131931.2448,kg of nutrients +2528,India,1965,61483889.1744,kg of nutrients +2529,India,1966,62599998.288,kg of nutrients +2530,India,1967,66470690.1472,kg of nutrients +2531,India,1968,64688135.4624,kg of nutrients +2532,India,1969,65857592.432,kg of nutrients +2533,India,1970,70373341.408,kg of nutrients +2534,India,1971,66396066.6656,kg of nutrients +2535,India,1972,64720312.5728,kg of nutrients +2536,India,1973,77995310.0096,kg of nutrients +2537,India,1974,73381912.6752,kg of nutrients +2538,India,1975,79311406.5888,kg of nutrients +2539,India,1976,73692511.9616,kg of nutrients +2540,India,1977,76076153.504,kg of nutrients +2541,India,1978,75573356.3552,kg of nutrients +2542,India,1979,70870194.9888,kg of nutrients +2543,India,1980,83313890.0672,kg of nutrients +2544,India,1981,82362182.8928,kg of nutrients +2545,India,1982,79214133.0752,kg of nutrients +2546,India,1983,85774429.8464,kg of nutrients +2547,India,1984,83418715.0144,kg of nutrients +2548,India,1985,86427866.176,kg of nutrients +2549,India,1986,85435105.3632,kg of nutrients +2550,India,1987,81569467.0272,kg of nutrients +2551,India,1988,90823330.7456,kg of nutrients +2552,India,1989,92125619.744,kg of nutrients +2553,India,1990,93804362.7328,kg of nutrients +2554,India,1991,90148726.688,kg of nutrients +2555,India,1992,84921187.1808,kg of nutrients +2556,India,1993,80359731.5744,kg of nutrients +2557,India,1994,77899599.2448,kg of nutrients +2558,India,1995,75933087.248,kg of nutrients +2559,India,1996,80618238.8416,kg of nutrients +2560,India,1997,77806693.8176,kg of nutrients +2561,India,1998,68141480.4352,kg of nutrients +2562,India,1999,59121663.024,kg of nutrients +2563,India,2000,58093051.872,kg of nutrients +2564,India,2001,61692203.6704,kg of nutrients +2565,India,2002,71859279.8496,kg of nutrients +2566,India,2003,90709243.3856,kg of nutrients +2567,India,2004,80151367.3248,kg of nutrients +2568,India,2005,73377640.1216,kg of nutrients +2569,India,2006,80390011.792,kg of nutrients +2570,India,2007,94569383.36,kg of nutrients +2571,India,2008,74969379.52,kg of nutrients +2572,India,2009,57110295.36,kg of nutrients +2573,India,2010,106929561.28,kg of nutrients +2574,India,2011,104062164.16,kg of nutrients +2575,India,2012,86998747.52,kg of nutrients +2576,India,2013,88330039.04,kg of nutrients +2577,Indonesia,1961,3546158.4,kg of nutrients +2578,Indonesia,1962,3612251.2,kg of nutrients +2579,Indonesia,1963,3420508.48,kg of nutrients +2580,Indonesia,1964,3546158.4,kg of nutrients +2581,Indonesia,1965,3697410.08,kg of nutrients +2582,Indonesia,1966,3723011.84,kg of nutrients +2583,Indonesia,1967,3546158.4,kg of nutrients +2584,Indonesia,1968,2935628.736,kg of nutrients +2585,Indonesia,1969,3040797.248,kg of nutrients +2586,Indonesia,1970,3301394.24,kg of nutrients +2587,Indonesia,1971,3637381.184,kg of nutrients +2588,Indonesia,1972,3932877.088,kg of nutrients +2589,Indonesia,1973,4283281.536,kg of nutrients +2590,Indonesia,1974,4782048.496,kg of nutrients +2591,Indonesia,1975,3799869.9648,kg of nutrients +2592,Indonesia,1976,2785723.2,kg of nutrients +2593,Indonesia,1977,3533052.4480000003,kg of nutrients +2594,Indonesia,1978,3825119.4752,kg of nutrients +2595,Indonesia,1979,4260913.024,kg of nutrients +2596,Indonesia,1980,5130624.352,kg of nutrients +2597,Indonesia,1981,4808583.136,kg of nutrients +2598,Indonesia,1982,3981652.5439999998,kg of nutrients +2599,Indonesia,1983,6312079.52,kg of nutrients +2600,Indonesia,1984,6270644.927999999,kg of nutrients +2601,Indonesia,1985,5945842.24,kg of nutrients +2602,Indonesia,1986,5875066.272000001,kg of nutrients +2603,Indonesia,1987,5482249.0879999995,kg of nutrients +2604,Indonesia,1988,6273406.4,kg of nutrients +2605,Indonesia,1989,6752763.2,kg of nutrients +2606,Indonesia,1990,7324541.466,kg of nutrients +2607,Indonesia,1991,6625354.4586,kg of nutrients +2608,Indonesia,1992,8501116.5242,kg of nutrients +2609,Indonesia,1993,7989384.1528,kg of nutrients +2610,Indonesia,1994,7762925.355,kg of nutrients +2611,Indonesia,1995,5538032.0,kg of nutrients +2612,Indonesia,1996,4007557.4602,kg of nutrients +2613,Indonesia,1997,3528756.1209,kg of nutrients +2614,Indonesia,1998,4091047.1054,kg of nutrients +2615,Indonesia,1999,3576041.1644,kg of nutrients +2616,Indonesia,2000,4009876.1656,kg of nutrients +2617,Indonesia,2001,3875697.1317,kg of nutrients +2618,Indonesia,2002,4036966.6041,kg of nutrients +2619,Indonesia,2003,4038172.6432,kg of nutrients +2620,Indonesia,2004,3959323.0687,kg of nutrients +2621,Indonesia,2005,4013645.6883,kg of nutrients +2622,Indonesia,2006,3919877.9171,kg of nutrients +2623,Indonesia,2007,3930847.8359,kg of nutrients +2624,Indonesia,2008,3596796.8324,kg of nutrients +2625,Indonesia,2009,3755868.9349,kg of nutrients +2626,Indonesia,2010,3415518.2086,kg of nutrients +2627,Indonesia,2011,3958532.8108,kg of nutrients +2628,Indonesia,2012,3279477.3663,kg of nutrients +2629,Indonesia,2013,2403465.2718,kg of nutrients +2630,Iran (Islamic Republic of),1961,425919.888,kg of nutrients +2631,Iran (Islamic Republic of),1962,429224.528,kg of nutrients +2632,Iran (Islamic Republic of),1963,432529.16799999995,kg of nutrients +2633,Iran (Islamic Republic of),1964,444814.5536,kg of nutrients +2634,Iran (Islamic Republic of),1965,449143.26399999997,kg of nutrients +2635,Iran (Islamic Republic of),1966,453984.0096,kg of nutrients +2636,Iran (Islamic Republic of),1967,459848.8256,kg of nutrients +2637,Iran (Islamic Republic of),1968,465713.6416,kg of nutrients +2638,Iran (Islamic Republic of),1969,472602.528,kg of nutrients +2639,Iran (Islamic Republic of),1970,480003.4496,kg of nutrients +2640,Iran (Islamic Republic of),1971,466410.92799999996,kg of nutrients +2641,Iran (Islamic Republic of),1972,474198.4557,kg of nutrients +2642,Iran (Islamic Republic of),1973,535191.6,kg of nutrients +2643,Iran (Islamic Republic of),1974,562881.76,kg of nutrients +2644,Iran (Islamic Republic of),1975,597228.3776,kg of nutrients +2645,Iran (Islamic Republic of),1976,618262.08,kg of nutrients +2646,Iran (Islamic Republic of),1977,567196.6336,kg of nutrients +2647,Iran (Islamic Republic of),1978,606289.6416,kg of nutrients +2648,Iran (Islamic Republic of),1979,676468.3456,kg of nutrients +2649,Iran (Islamic Republic of),1980,725276.1856,kg of nutrients +2650,Iran (Islamic Republic of),1981,967308.7552,kg of nutrients +2651,Iran (Islamic Republic of),1982,897285.4208,kg of nutrients +2652,Iran (Islamic Republic of),1983,989363.0688,kg of nutrients +2653,Iran (Islamic Republic of),1984,1037295.2896,kg of nutrients +2654,Iran (Islamic Republic of),1985,1163976.1984,kg of nutrients +2655,Iran (Islamic Republic of),1986,1241512.1056,kg of nutrients +2656,Iran (Islamic Republic of),1987,1326979.5521,kg of nutrients +2657,Iran (Islamic Republic of),1988,1085697.1365,kg of nutrients +2658,Iran (Islamic Republic of),1989,1295893.5264,kg of nutrients +2659,Iran (Islamic Republic of),1990,1539279.5323,kg of nutrients +2660,Iran (Islamic Republic of),1991,1754273.999,kg of nutrients +2661,Iran (Islamic Republic of),1992,2179235.2116,kg of nutrients +2662,Iran (Islamic Republic of),1993,1632941.5514,kg of nutrients +2663,Iran (Islamic Republic of),1994,1161449.4552,kg of nutrients +2664,Iran (Islamic Republic of),1995,1292299.0651,kg of nutrients +2665,Iran (Islamic Republic of),1996,1803168.9518,kg of nutrients +2666,Iran (Islamic Republic of),1997,1494137.8996,kg of nutrients +2667,Iran (Islamic Republic of),1998,1800760.2012,kg of nutrients +2668,Iran (Islamic Republic of),1999,1788970.7788,kg of nutrients +2669,Iran (Islamic Republic of),2000,1742091.2051,kg of nutrients +2670,Iran (Islamic Republic of),2001,1418569.1784,kg of nutrients +2671,Iran (Islamic Republic of),2002,1901815.4655,kg of nutrients +2672,Iran (Islamic Republic of),2003,1982967.3074,kg of nutrients +2673,Iran (Islamic Republic of),2004,1976529.9688,kg of nutrients +2674,Iran (Islamic Republic of),2005,1935329.6765,kg of nutrients +2675,Iran (Islamic Republic of),2006,1790935.5551,kg of nutrients +2676,Iran (Islamic Republic of),2007,1957498.5699,kg of nutrients +2677,Iran (Islamic Republic of),2008,1727239.325,kg of nutrients +2678,Iran (Islamic Republic of),2009,1467054.626,kg of nutrients +2679,Iran (Islamic Republic of),2010,1429219.0939,kg of nutrients +2680,Iran (Islamic Republic of),2011,1754260.8929,kg of nutrients +2681,Iran (Islamic Republic of),2012,1772322.029,kg of nutrients +2682,Iran (Islamic Republic of),2013,1824528.5756,kg of nutrients +2683,Iraq,1961,77107.8496,kg of nutrients +2684,Iraq,1962,84600.53199999999,kg of nutrients +2685,Iraq,1963,94699.7032,kg of nutrients +2686,Iraq,1964,124117.0197,kg of nutrients +2687,Iraq,1965,142975.3269,kg of nutrients +2688,Iraq,1966,131282.3072,kg of nutrients +2689,Iraq,1967,164742.928,kg of nutrients +2690,Iraq,1968,139960.7761,kg of nutrients +2691,Iraq,1969,128266.0681,kg of nutrients +2692,Iraq,1970,159535.53,kg of nutrients +2693,Iraq,1971,133043.3565,kg of nutrients +2694,Iraq,1972,125066.1999,kg of nutrients +2695,Iraq,1973,107642.7615,kg of nutrients +2696,Iraq,1974,151050.2456,kg of nutrients +2697,Iraq,1975,132669.0968,kg of nutrients +2698,Iraq,1976,123497.5108,kg of nutrients +2699,Iraq,1977,87654.6773,kg of nutrients +2700,Iraq,1978,95488.7504,kg of nutrients +2701,Iraq,1979,71430.8792,kg of nutrients +2702,Iraq,1980,70499.4344,kg of nutrients +2703,Iraq,1981,97631.2464,kg of nutrients +2704,Iraq,1982,98701.6296,kg of nutrients +2705,Iraq,1983,51374.9344,kg of nutrients +2706,Iraq,1984,58820.4392,kg of nutrients +2707,Iraq,1985,93676.4976,kg of nutrients +2708,Iraq,1986,100097.0672,kg of nutrients +2709,Iraq,1987,108987.7816,kg of nutrients +2710,Iraq,1988,98378.3048,kg of nutrients +2711,Iraq,1989,72036.4048,kg of nutrients +2712,Iraq,1990,57098.2176,kg of nutrients +2713,Iraq,1991,104599.8158,kg of nutrients +2714,Iraq,1992,107964.576,kg of nutrients +2715,Iraq,1993,116807.248,kg of nutrients +2716,Iraq,1994,110524.752,kg of nutrients +2717,Iraq,1995,108011.7536,kg of nutrients +2718,Iraq,1996,104242.256,kg of nutrients +2719,Iraq,1997,108011.7536,kg of nutrients +2720,Iraq,1998,113084.92800000001,kg of nutrients +2721,Iraq,1999,105676.0184,kg of nutrients +2722,Iraq,2000,112572.8928,kg of nutrients +2723,Iraq,2001,112572.8928,kg of nutrients +2724,Iraq,2002,93075.296,kg of nutrients +2725,Iraq,2003,86225.9492,kg of nutrients +2726,Iraq,2004,101706.3177,kg of nutrients +2727,Iraq,2005,73848.8714,kg of nutrients +2728,Iraq,2006,59338.528,kg of nutrients +2729,Iraq,2007,27645.1651,kg of nutrients +2730,Iraq,2008,20380.2209,kg of nutrients +2731,Iraq,2009,21399.6681,kg of nutrients +2732,Iraq,2010,31967.9905,kg of nutrients +2733,Iraq,2011,34345.4503,kg of nutrients +2734,Iraq,2012,46707.1061,kg of nutrients +2735,Iraq,2013,66266.6874,kg of nutrients +2736,Ireland,1988,49739.0125,kg of nutrients +2737,Ireland,1989,50018.7882,kg of nutrients +2738,Ireland,1990,33353.2752,kg of nutrients +2739,Ireland,1991,33046.4,kg of nutrients +2740,Ireland,1992,59483.52,kg of nutrients +2741,Ireland,1993,120129.18400000001,kg of nutrients +2742,Ireland,1994,113567.0816,kg of nutrients +2743,Ireland,1995,114591.15199999999,kg of nutrients +2744,Ireland,1996,114591.15199999999,kg of nutrients +2745,Ireland,1997,114591.15199999999,kg of nutrients +2746,Ireland,1998,182917.34399999998,kg of nutrients +2747,Ireland,1999,108726.336,kg of nutrients +2748,Ireland,2000,38166.752,kg of nutrients +2749,Ireland,2001,50873.2768,kg of nutrients +2750,Ireland,2002,39655.68,kg of nutrients +2751,Ireland,2003,59483.52,kg of nutrients +2752,Ireland,2004,62602.9088,kg of nutrients +2753,Ireland,2005,91273.4208,kg of nutrients +2754,Ireland,2006,99092.0224,kg of nutrients +2755,Ireland,2007,64509.5168,kg of nutrients +2756,Ireland,2008,57435.3792,kg of nutrients +2757,Ireland,2009,118269.7536,kg of nutrients +2758,Ireland,2010,124646.6048,kg of nutrients +2759,Ireland,2011,81174.2496,kg of nutrients +2760,Ireland,2012,110821.6544,kg of nutrients +2761,Ireland,2013,137817.9872,kg of nutrients +2762,Italy,1961,3684461.7866,kg of nutrients +2763,Italy,1962,3395350.1122,kg of nutrients +2764,Italy,1963,3443143.5749,kg of nutrients +2765,Italy,1964,3278440.9539,kg of nutrients +2766,Italy,1965,2925635.5709,kg of nutrients +2767,Italy,1966,2862115.0357,kg of nutrients +2768,Italy,1967,2788289.643,kg of nutrients +2769,Italy,1968,2559691.2557,kg of nutrients +2770,Italy,1969,2426427.2648,kg of nutrients +2771,Italy,1970,2276408.256,kg of nutrients +2772,Italy,1971,1644706.8822,kg of nutrients +2773,Italy,1972,1307692.5779,kg of nutrients +2774,Italy,1973,1202002.7534,kg of nutrients +2775,Italy,1974,1127274.5096,kg of nutrients +2776,Italy,1975,1066981.4227,kg of nutrients +2777,Italy,1976,1071680.1093,kg of nutrients +2778,Italy,1977,959216.207,kg of nutrients +2779,Italy,1978,919860.9917,kg of nutrients +2780,Italy,1979,815418.5106,kg of nutrients +2781,Italy,1980,746025.3946,kg of nutrients +2782,Italy,1981,728838.1459,kg of nutrients +2783,Italy,1982,723903.1298,kg of nutrients +2784,Italy,1983,696925.1454,kg of nutrients +2785,Italy,1984,690833.0048,kg of nutrients +2786,Italy,1985,597075.7533,kg of nutrients +2787,Italy,1986,573958.4165,kg of nutrients +2788,Italy,1987,510567.3253,kg of nutrients +2789,Italy,1988,489803.4442,kg of nutrients +2790,Italy,1989,402977.3218,kg of nutrients +2791,Italy,1990,355062.2461,kg of nutrients +2792,Italy,1991,343158.1821,kg of nutrients +2793,Italy,1992,323332.7319,kg of nutrients +2794,Italy,1993,339418.714,kg of nutrients +2795,Italy,1994,258135.5173,kg of nutrients +2796,Italy,1995,228745.3474,kg of nutrients +2797,Italy,1996,215815.6969,kg of nutrients +2798,Italy,1997,204306.3246,kg of nutrients +2799,Italy,1998,191720.93,kg of nutrients +2800,Italy,1999,190094.2618,kg of nutrients +2801,Italy,2000,186043.5099,kg of nutrients +2802,Italy,2001,178701.3557,kg of nutrients +2803,Italy,2002,170387.9199,kg of nutrients +2804,Italy,2003,134784.4609,kg of nutrients +2805,Italy,2004,142417.72,kg of nutrients +2806,Italy,2005,161993.4388,kg of nutrients +2807,Italy,2006,127776.8687,kg of nutrients +2808,Italy,2007,106448.5919,kg of nutrients +2809,Italy,2008,106606.4484,kg of nutrients +2810,Italy,2009,107472.2347,kg of nutrients +2811,Italy,2010,119611.2844,kg of nutrients +2812,Italy,2011,108340.7382,kg of nutrients +2813,Italy,2012,106282.0874,kg of nutrients +2814,Italy,2013,99985.5386,kg of nutrients +2815,Jamaica,1961,402.9887,kg of nutrients +2816,Jamaica,1962,415.5537,kg of nutrients +2817,Jamaica,1963,420.67400000000004,kg of nutrients +2818,Jamaica,1964,395.5441,kg of nutrients +2819,Jamaica,1965,362.9694,kg of nutrients +2820,Jamaica,1966,681.2710000000001,kg of nutrients +2821,Jamaica,1967,777.1424,kg of nutrients +2822,Jamaica,1968,784.587,kg of nutrients +2823,Jamaica,1969,1457.0327,kg of nutrients +2824,Jamaica,1970,2280.6955,kg of nutrients +2825,Jamaica,1971,2517.106,kg of nutrients +2826,Jamaica,1972,3056.4571,kg of nutrients +2827,Jamaica,1973,2787.9437,kg of nutrients +2828,Jamaica,1974,3159.7385,kg of nutrients +2829,Jamaica,1975,3138.3136,kg of nutrients +2830,Jamaica,1976,3484.9784,kg of nutrients +2831,Jamaica,1977,2633.8614,kg of nutrients +2832,Jamaica,1978,3044.3293,kg of nutrients +2833,Jamaica,1979,2825.1669,kg of nutrients +2834,Jamaica,1980,2524.1135,kg of nutrients +2835,Jamaica,1981,3035.1013,kg of nutrients +2836,Jamaica,1982,2465.0281,kg of nutrients +2837,Jamaica,1983,2996.4628,kg of nutrients +2838,Jamaica,1984,4164.0635,kg of nutrients +2839,Jamaica,1985,3924.8569,kg of nutrients +2840,Jamaica,1986,2579.9656,kg of nutrients +2841,Jamaica,1987,2658.117,kg of nutrients +2842,Jamaica,1988,1948.9199,kg of nutrients +2843,Jamaica,1989,2124.3579999999997,kg of nutrients +2844,Jamaica,1990,2746.6129,kg of nutrients +2845,Jamaica,1991,2687.4584,kg of nutrients +2846,Jamaica,1992,2963.9228,kg of nutrients +2847,Jamaica,1993,2680.9919,kg of nutrients +2848,Jamaica,1994,2698.2054,kg of nutrients +2849,Jamaica,1995,2425.0435,kg of nutrients +2850,Jamaica,1996,2613.5183,kg of nutrients +2851,Jamaica,1997,2523.2391,kg of nutrients +2852,Jamaica,1998,2284.0325,kg of nutrients +2853,Jamaica,1999,4385.1822,kg of nutrients +2854,Jamaica,2000,3459.0778,kg of nutrients +2855,Jamaica,2001,3274.8143,kg of nutrients +2856,Jamaica,2002,2761.5022,kg of nutrients +2857,Jamaica,2003,2835.0396,kg of nutrients +2858,Jamaica,2004,2613.9901,kg of nutrients +2859,Jamaica,2005,1543.6415,kg of nutrients +2860,Jamaica,2006,1762.3667,kg of nutrients +2861,Jamaica,2007,1392.8616,kg of nutrients +2862,Jamaica,2008,1342.6016,kg of nutrients +2863,Jamaica,2009,1525.9562,kg of nutrients +2864,Jamaica,2010,1457.5391,kg of nutrients +2865,Jamaica,2011,1644.1614,kg of nutrients +2866,Jamaica,2012,1797.2656,kg of nutrients +2867,Jamaica,2013,1732.1164,kg of nutrients +2868,Japan,1961,3279253.7408,kg of nutrients +2869,Japan,1962,2908536.7968,kg of nutrients +2870,Japan,1963,3017671.6864,kg of nutrients +2871,Japan,1964,2420093.2672,kg of nutrients +2872,Japan,1965,2734056.0736,kg of nutrients +2873,Japan,1966,2483302.5664,kg of nutrients +2874,Japan,1967,2780304.9888,kg of nutrients +2875,Japan,1968,2382991.1392,kg of nutrients +2876,Japan,1969,2156622.1952,kg of nutrients +2877,Japan,1970,2409449.0144,kg of nutrients +2878,Japan,1971,2059361.9296,kg of nutrients +2879,Japan,1972,2491661.1712,kg of nutrients +2880,Japan,1973,2225868.976,kg of nutrients +2881,Japan,1974,2044639.648,kg of nutrients +2882,Japan,1975,1693061.4272,kg of nutrients +2883,Japan,1976,1547772.3776,kg of nutrients +2884,Japan,1977,1693887.6608,kg of nutrients +2885,Japan,1978,1404889.3856,kg of nutrients +2886,Japan,1979,1281873.2416,kg of nutrients +2887,Japan,1980,1048119.4208,kg of nutrients +2888,Japan,1981,1039741.6064,kg of nutrients +2889,Japan,1982,1471157.0592,kg of nutrients +2890,Japan,1983,1210793.4528,kg of nutrients +2891,Japan,1984,1577697.1808,kg of nutrients +2892,Japan,1985,1351738.9984,kg of nutrients +2893,Japan,1986,1232597.0848,kg of nutrients +2894,Japan,1987,1305655.8304,kg of nutrients +2895,Japan,1988,1317799.6832,kg of nutrients +2896,Japan,1989,1401853.9744,kg of nutrients +2897,Japan,1990,1432161.8656,kg of nutrients +2898,Japan,1991,1248753.2416,kg of nutrients +2899,Japan,1992,1033537.4208,kg of nutrients +2900,Japan,1993,886765.1104,kg of nutrients +2901,Japan,1994,1092596.3424,kg of nutrients +2902,Japan,1995,1234201.1232,kg of nutrients +2903,Japan,1996,1070592.6656,kg of nutrients +2904,Japan,1997,1022235.8464,kg of nutrients +2905,Japan,1998,971002.4448,kg of nutrients +2906,Japan,1999,952576.0959999999,kg of nutrients +2907,Japan,2000,950578.5920000001,kg of nutrients +2908,Japan,2001,923619.0592,kg of nutrients +2909,Japan,2002,933634.2528,kg of nutrients +2910,Japan,2003,826811.0656,kg of nutrients +2911,Japan,2004,1008165.8816,kg of nutrients +2912,Japan,2005,904098.4992,kg of nutrients +2913,Japan,2006,739153.0240000001,kg of nutrients +2914,Japan,2007,768894.7840000001,kg of nutrients +2915,Japan,2008,800408.5376,kg of nutrients +2916,Japan,2009,671143.2384,kg of nutrients +2917,Japan,2010,708663.3408,kg of nutrients +2918,Japan,2011,661653.9168,kg of nutrients +2919,Japan,2012,742137.7984,kg of nutrients +2920,Japan,2013,734733.4176,kg of nutrients +2921,Kazakhstan,1992,188474.88,kg of nutrients +2922,Kazakhstan,1993,256420.19199999998,kg of nutrients +2923,Kazakhstan,1994,335986.94399999996,kg of nutrients +2924,Kazakhstan,1995,132151.008,kg of nutrients +2925,Kazakhstan,1996,74918.17599999999,kg of nutrients +2926,Kazakhstan,1997,60028.89599999999,kg of nutrients +2927,Kazakhstan,1998,237286.1792,kg of nutrients +2928,Kazakhstan,1999,116527.6416,kg of nutrients +2929,Kazakhstan,2000,153811.856,kg of nutrients +2930,Kazakhstan,2001,147391.2864,kg of nutrients +2931,Kazakhstan,2002,42441.3664,kg of nutrients +2932,Kazakhstan,2003,62824.96,kg of nutrients +2933,Kazakhstan,2004,21407.664,kg of nutrients +2934,Kazakhstan,2005,11076.063999999998,kg of nutrients +2935,Kazakhstan,2006,6257.8157,kg of nutrients +2936,Kazakhstan,2007,6382.1887,kg of nutrients +2937,Kazakhstan,2008,5206.3036,kg of nutrients +2938,Kazakhstan,2009,4305.1216,kg of nutrients +2939,Kazakhstan,2010,5868.8419,kg of nutrients +2940,Kazakhstan,2011,3485.8653,kg of nutrients +2941,Kazakhstan,2012,3844.2899,kg of nutrients +2942,Kazakhstan,2013,3544.6864,kg of nutrients +2943,Kenya,1961,1137752.96,kg of nutrients +2944,Kenya,1962,1137752.96,kg of nutrients +2945,Kenya,1963,1137752.96,kg of nutrients +2946,Kenya,1964,1137752.96,kg of nutrients +2947,Kenya,1965,1137752.96,kg of nutrients +2948,Kenya,1966,1137752.96,kg of nutrients +2949,Kenya,1967,1137752.96,kg of nutrients +2950,Kenya,1968,1137752.96,kg of nutrients +2951,Kenya,1969,1289004.64,kg of nutrients +2952,Kenya,1970,1526324.16,kg of nutrients +2953,Kenya,1971,1852070.4,kg of nutrients +2954,Kenya,1972,1852070.4,kg of nutrients +2955,Kenya,1973,2475602.24,kg of nutrients +2956,Kenya,1974,2778105.6,kg of nutrients +2957,Kenya,1975,2903755.52,kg of nutrients +2958,Kenya,1976,3229501.76,kg of nutrients +2959,Kenya,1977,3578490.88,kg of nutrients +2960,Kenya,1978,3829790.72,kg of nutrients +2961,Kenya,1979,3955440.64,kg of nutrients +2962,Kenya,1980,4304429.76,kg of nutrients +2963,Kenya,1981,4481283.2,kg of nutrients +2964,Kenya,1982,4783786.56,kg of nutrients +2965,Kenya,1983,4481283.2,kg of nutrients +2966,Kenya,1984,5183979.2,kg of nutrients +2967,Kenya,1985,5183979.2,kg of nutrients +2968,Kenya,1986,5509725.44,kg of nutrients +2969,Kenya,1987,5886675.2,kg of nutrients +2970,Kenya,1988,6263624.96,kg of nutrients +2971,Kenya,1989,7139999.2555,kg of nutrients +2972,Kenya,1990,5881454.3752,kg of nutrients +2973,Kenya,1991,6527130.9839,kg of nutrients +2974,Kenya,1992,6686086.1603,kg of nutrients +2975,Kenya,1993,6767452.2637,kg of nutrients +2976,Kenya,1994,6237815.647999999,kg of nutrients +2977,Kenya,1995,7723917.2991,kg of nutrients +2978,Kenya,1996,5973375.2639999995,kg of nutrients +2979,Kenya,1997,6796729.1021,kg of nutrients +2980,Kenya,1998,6587176.2419,kg of nutrients +2981,Kenya,1999,8158279.3006,kg of nutrients +2982,Kenya,2000,7435323.96,kg of nutrients +2983,Kenya,2001,8176512.3184,kg of nutrients +2984,Kenya,2002,9375296.6594,kg of nutrients +2985,Kenya,2003,8873666.7647,kg of nutrients +2986,Kenya,2004,7280727.8372,kg of nutrients +2987,Kenya,2005,9658855.2653,kg of nutrients +2988,Kenya,2006,10133330.8478,kg of nutrients +2989,Kenya,2007,8501526.8206,kg of nutrients +2990,Kenya,2008,6135906.4252,kg of nutrients +2991,Kenya,2009,9534925.239,kg of nutrients +2992,Kenya,2010,7132162.8398,kg of nutrients +2993,Kenya,2011,10676035.4056,kg of nutrients +2994,Kenya,2012,11050627.5846,kg of nutrients +2995,Kenya,2013,11725492.2237,kg of nutrients +2996,Kyrgyzstan,1992,18567.8816,kg of nutrients +2997,Kyrgyzstan,1993,10284.4224,kg of nutrients +2998,Kyrgyzstan,1994,8822.9751,kg of nutrients +2999,Kyrgyzstan,1995,11540.9216,kg of nutrients +3000,Kyrgyzstan,1996,32018.8704,kg of nutrients +3001,Kyrgyzstan,1997,78698.0512,kg of nutrients +3002,Kyrgyzstan,1998,107691.888,kg of nutrients +3003,Kyrgyzstan,1999,112114.9536,kg of nutrients +3004,Kyrgyzstan,2000,168428.448,kg of nutrients +3005,Kyrgyzstan,2001,268163.6608,kg of nutrients +3006,Kyrgyzstan,2002,357361.4814,kg of nutrients +3007,Kyrgyzstan,2003,314415.877,kg of nutrients +3008,Kyrgyzstan,2004,321078.8989,kg of nutrients +3009,Kyrgyzstan,2005,400502.376,kg of nutrients +3010,Kyrgyzstan,2006,545987.1972,kg of nutrients +3011,Kyrgyzstan,2007,666093.3532,kg of nutrients +3012,Kyrgyzstan,2008,636025.9537,kg of nutrients +3013,Kyrgyzstan,2009,635323.8612,kg of nutrients +3014,Kyrgyzstan,2010,523296.6642,kg of nutrients +3015,Kyrgyzstan,2011,709168.4576,kg of nutrients +3016,Kyrgyzstan,2012,763150.7456,kg of nutrients +3017,Kyrgyzstan,2013,879715.1872,kg of nutrients +3018,Lao People's Democratic Republic,1961,20009.631999999998,kg of nutrients +3019,Lao People's Democratic Republic,1962,20009.631999999998,kg of nutrients +3020,Lao People's Democratic Republic,1963,20009.631999999998,kg of nutrients +3021,Lao People's Democratic Republic,1964,20009.631999999998,kg of nutrients +3022,Lao People's Democratic Republic,1965,20009.631999999998,kg of nutrients +3023,Lao People's Democratic Republic,1966,20009.631999999998,kg of nutrients +3024,Lao People's Democratic Republic,1967,20009.631999999998,kg of nutrients +3025,Lao People's Democratic Republic,1968,20009.631999999998,kg of nutrients +3026,Lao People's Democratic Republic,1969,20009.631999999998,kg of nutrients +3027,Lao People's Democratic Republic,1970,20009.631999999998,kg of nutrients +3028,Lao People's Democratic Republic,1971,20009.631999999998,kg of nutrients +3029,Lao People's Democratic Republic,1972,20009.631999999998,kg of nutrients +3030,Lao People's Democratic Republic,1973,20009.631999999998,kg of nutrients +3031,Lao People's Democratic Republic,1974,20009.631999999998,kg of nutrients +3032,Lao People's Democratic Republic,1975,20009.631999999998,kg of nutrients +3033,Lao People's Democratic Republic,1976,19265.168,kg of nutrients +3034,Lao People's Democratic Republic,1977,26292.127999999997,kg of nutrients +3035,Lao People's Democratic Republic,1978,29293.5728,kg of nutrients +3036,Lao People's Democratic Republic,1979,31550.5536,kg of nutrients +3037,Lao People's Democratic Republic,1980,30010.0762,kg of nutrients +3038,Lao People's Democratic Republic,1981,31550.5536,kg of nutrients +3039,Lao People's Democratic Republic,1982,31550.5536,kg of nutrients +3040,Lao People's Democratic Republic,1983,31550.5536,kg of nutrients +3041,Lao People's Democratic Republic,1984,31550.5536,kg of nutrients +3042,Lao People's Democratic Republic,1985,25630.464,kg of nutrients +3043,Lao People's Democratic Republic,1986,24174.9504,kg of nutrients +3044,Lao People's Democratic Republic,1987,40299.2163,kg of nutrients +3045,Lao People's Democratic Republic,1988,35970.2888,kg of nutrients +3046,Lao People's Democratic Republic,1989,52579.8496,kg of nutrients +3047,Lao People's Democratic Republic,1990,40174.5916,kg of nutrients +3048,Lao People's Democratic Republic,1991,34752.8778,kg of nutrients +3049,Lao People's Democratic Republic,1992,42612.0617,kg of nutrients +3050,Lao People's Democratic Republic,1993,34822.4114,kg of nutrients +3051,Lao People's Democratic Republic,1994,27558.0973,kg of nutrients +3052,Lao People's Democratic Republic,1995,36490.2183,kg of nutrients +3053,Lao People's Democratic Republic,1996,18431.2425,kg of nutrients +3054,Lao People's Democratic Republic,1997,22532.5848,kg of nutrients +3055,Lao People's Democratic Republic,1998,24190.9341,kg of nutrients +3056,Lao People's Democratic Republic,1999,20648.1819,kg of nutrients +3057,Lao People's Democratic Republic,2000,15320.6599,kg of nutrients +3058,Lao People's Democratic Republic,2001,31952.4192,kg of nutrients +3059,Lao People's Democratic Republic,2002,40748.7283,kg of nutrients +3060,Lao People's Democratic Republic,2003,41656.4334,kg of nutrients +3061,Lao People's Democratic Republic,2004,28947.9803,kg of nutrients +3062,Lao People's Democratic Republic,2005,40646.428,kg of nutrients +3063,Lao People's Democratic Republic,2006,37684.3923,kg of nutrients +3064,Lao People's Democratic Republic,2007,30886.6374,kg of nutrients +3065,Lao People's Democratic Republic,2008,35226.7963,kg of nutrients +3066,Lao People's Democratic Republic,2009,46801.4341,kg of nutrients +3067,Lao People's Democratic Republic,2010,46275.7645,kg of nutrients +3068,Lao People's Democratic Republic,2011,51959.9845,kg of nutrients +3069,Lao People's Democratic Republic,2012,47047.8432,kg of nutrients +3070,Lao People's Democratic Republic,2013,39117.2261,kg of nutrients +3071,Latvia,1992,6282.496,kg of nutrients +3072,Latvia,1993,8994.2739,kg of nutrients +3073,Latvia,1994,1768.5344,kg of nutrients +3074,Latvia,1995,2280.5696,kg of nutrients +3075,Latvia,1996,9866.7424,kg of nutrients +3076,Latvia,1997,6562.1024,kg of nutrients +3077,Latvia,1998,8842.671999999999,kg of nutrients +3078,Latvia,1999,5538.031999999999,kg of nutrients +3079,Latvia,2000,1768.5344,kg of nutrients +3080,Latvia,2001,1768.5344,kg of nutrients +3081,Latvia,2002,3537.0688,kg of nutrients +3082,Latvia,2003,4049.1040000000003,kg of nutrients +3083,Latvia,2004,8610.2432,kg of nutrients +3084,Latvia,2005,6050.0672,kg of nutrients +3085,Latvia,2006,6282.496,kg of nutrients +3086,Latvia,2007,8842.671999999999,kg of nutrients +3087,Latvia,2008,14660.3104,kg of nutrients +3088,Latvia,2009,20477.9488,kg of nutrients +3089,Latvia,2010,22478.912,kg of nutrients +3090,Latvia,2011,40443.8624,kg of nutrients +3091,Latvia,2012,57758.704000000005,kg of nutrients +3092,Latvia,2013,88056.2176,kg of nutrients +3093,Lebanon,1961,30250.336,kg of nutrients +3094,Lebanon,1962,29088.192000000003,kg of nutrients +3095,Lebanon,1963,29226.2656,kg of nutrients +3096,Lebanon,1964,31739.264,kg of nutrients +3097,Lebanon,1965,36020.7968,kg of nutrients +3098,Lebanon,1966,35802.1754,kg of nutrients +3099,Lebanon,1967,16610.6331,kg of nutrients +3100,Lebanon,1968,16579.3009,kg of nutrients +3101,Lebanon,1969,18816.7438,kg of nutrients +3102,Lebanon,1970,16481.209,kg of nutrients +3103,Lebanon,1971,14002.8328,kg of nutrients +3104,Lebanon,1972,13484.4003,kg of nutrients +3105,Lebanon,1973,11160.9116,kg of nutrients +3106,Lebanon,1974,40144.8256,kg of nutrients +3107,Lebanon,1975,3653.2832,kg of nutrients +3108,Lebanon,1976,2108.0879999999997,kg of nutrients +3109,Lebanon,1977,3653.2832,kg of nutrients +3110,Lebanon,1978,6050.0672,kg of nutrients +3111,Lebanon,1979,10703.832,kg of nutrients +3112,Lebanon,1980,21407.664,kg of nutrients +3113,Lebanon,1981,12844.5984,kg of nutrients +3114,Lebanon,1982,15934.6429,kg of nutrients +3115,Lebanon,1983,21035.432,kg of nutrients +3116,Lebanon,1984,14101.0976,kg of nutrients +3117,Lebanon,1985,21407.664,kg of nutrients +3118,Lebanon,1986,26644.2304,kg of nutrients +3119,Lebanon,1987,31652.7965,kg of nutrients +3120,Lebanon,1988,33433.8613,kg of nutrients +3121,Lebanon,1989,34834.7431,kg of nutrients +3122,Lebanon,1990,34812.34,kg of nutrients +3123,Lebanon,1991,35686.942,kg of nutrients +3124,Lebanon,1992,39043.7637,kg of nutrients +3125,Lebanon,1993,38954.9344,kg of nutrients +3126,Lebanon,1994,39050.8404,kg of nutrients +3127,Lebanon,1995,40639.9328,kg of nutrients +3128,Lebanon,1996,41788.5366,kg of nutrients +3129,Lebanon,1997,10890.8128,kg of nutrients +3130,Lebanon,1998,3537.0688,kg of nutrients +3131,Lebanon,1999,4049.1040000000003,kg of nutrients +3132,Lebanon,2000,981.0475,kg of nutrients +3133,Lebanon,2001,958.7136,kg of nutrients +3134,Lebanon,2002,6850.66,kg of nutrients +3135,Lebanon,2003,2935.6979,kg of nutrients +3136,Lebanon,2004,3566.8474,kg of nutrients +3137,Lebanon,2005,2289.6592,kg of nutrients +3138,Lebanon,2006,2311.9931,kg of nutrients +3139,Lebanon,2007,2267.3253,kg of nutrients +3140,Lebanon,2008,3537.0688,kg of nutrients +3141,Lebanon,2009,2058.8754,kg of nutrients +3142,Lebanon,2010,6418.4151,kg of nutrients +3143,Lebanon,2011,8057.8809,kg of nutrients +3144,Lebanon,2012,7487.3025,kg of nutrients +3145,Lebanon,2013,7956.2498,kg of nutrients +3146,Lesotho,1961,44391.6928,kg of nutrients +3147,Lesotho,1962,44391.6928,kg of nutrients +3148,Lesotho,1963,45415.7632,kg of nutrients +3149,Lesotho,1964,67749.6832,kg of nutrients +3150,Lesotho,1965,49136.9888,kg of nutrients +3151,Lesotho,1966,57664.2119,kg of nutrients +3152,Lesotho,1967,69258.1741,kg of nutrients +3153,Lesotho,1968,81562.0944,kg of nutrients +3154,Lesotho,1969,106729.8712,kg of nutrients +3155,Lesotho,1970,140614.9064,kg of nutrients +3156,Lesotho,1971,147040.288,kg of nutrients +3157,Lesotho,1972,84687.104,kg of nutrients +3158,Lesotho,1973,124706.368,kg of nutrients +3159,Lesotho,1974,185062.048,kg of nutrients +3160,Lesotho,1975,277449.7235,kg of nutrients +3161,Lesotho,1976,265069.2886,kg of nutrients +3162,Lesotho,1977,215840.5634,kg of nutrients +3163,Lesotho,1978,137595.1419,kg of nutrients +3164,Lesotho,1979,118325.4798,kg of nutrients +3165,Lesotho,1980,69865.9261,kg of nutrients +3166,Lesotho,1981,72905.0533,kg of nutrients +3167,Lesotho,1982,125969.2454,kg of nutrients +3168,Lesotho,1983,43238.2579,kg of nutrients +3169,Lesotho,1984,67911.9683,kg of nutrients +3170,Lesotho,1985,66885.2115,kg of nutrients +3171,Lesotho,1986,145484.3457,kg of nutrients +3172,Lesotho,1987,112994.531,kg of nutrients +3173,Lesotho,1988,211608.9895,kg of nutrients +3174,Lesotho,1989,183039.0836,kg of nutrients +3175,Lesotho,1990,76522.6185,kg of nutrients +3176,Lesotho,1991,67302.5485,kg of nutrients +3177,Lesotho,1992,39919.5809,kg of nutrients +3178,Lesotho,1993,42432.7868,kg of nutrients +3179,Lesotho,1994,76045.3644,kg of nutrients +3180,Lesotho,1995,50102.8504,kg of nutrients +3181,Lesotho,1996,108344.9482,kg of nutrients +3182,Lesotho,1997,174865.3612,kg of nutrients +3183,Lesotho,1998,98717.748,kg of nutrients +3184,Lesotho,1999,134136.6337,kg of nutrients +3185,Lesotho,2000,154944.3171,kg of nutrients +3186,Lesotho,2001,132321.2742,kg of nutrients +3187,Lesotho,2002,76231.37299999999,kg of nutrients +3188,Lesotho,2003,102094.4866,kg of nutrients +3189,Lesotho,2004,88536.9853,kg of nutrients +3190,Lesotho,2005,78017.7097,kg of nutrients +3191,Lesotho,2006,210356.4301,kg of nutrients +3192,Lesotho,2007,202953.698,kg of nutrients +3193,Lesotho,2008,107453.0486,kg of nutrients +3194,Lesotho,2009,77031.5698,kg of nutrients +3195,Lesotho,2010,245730.0481,kg of nutrients +3196,Lesotho,2011,167755.1913,kg of nutrients +3197,Lesotho,2012,137863.539,kg of nutrients +3198,Lesotho,2013,157557.7089,kg of nutrients +3199,Libya,1966,3537.0688,kg of nutrients +3200,Libya,1967,3537.0688,kg of nutrients +3201,Libya,1968,3537.0688,kg of nutrients +3202,Libya,1969,2096.6395,kg of nutrients +3203,Libya,1970,2376.8089999999997,kg of nutrients +3204,Libya,1971,2407.9683,kg of nutrients +3205,Libya,1972,2414.9411,kg of nutrients +3206,Libya,1973,2462.8768,kg of nutrients +3207,Libya,1974,2624.841,kg of nutrients +3208,Libya,1975,2162.226,kg of nutrients +3209,Libya,1976,2808.6673,kg of nutrients +3210,Libya,1977,3665.0084,kg of nutrients +3211,Libya,1978,3000.8818,kg of nutrients +3212,Libya,1979,3537.0688,kg of nutrients +3213,Libya,1980,3537.0688,kg of nutrients +3214,Libya,1981,3713.9222,kg of nutrients +3215,Libya,1982,3904.756,kg of nutrients +3216,Libya,1983,3895.4934,kg of nutrients +3217,Libya,1984,3960.6773,kg of nutrients +3218,Libya,1985,4049.1040000000003,kg of nutrients +3219,Libya,1986,3872.2506,kg of nutrients +3220,Libya,1987,3392.8938,kg of nutrients +3221,Libya,1988,3164.8368,kg of nutrients +3222,Libya,1989,3090.3904,kg of nutrients +3223,Libya,1990,3015.9440000000004,kg of nutrients +3224,Libya,1991,3788.5416,kg of nutrients +3225,Libya,1992,4561.1392,kg of nutrients +3226,Libya,1993,5333.7368,kg of nutrients +3227,Libya,1994,6069.1112,kg of nutrients +3228,Libya,1995,6841.7088,kg of nutrients +3229,Libya,1996,7158.1925,kg of nutrients +3230,Libya,1997,7323.4245,kg of nutrients +3231,Libya,1998,7386.2494,kg of nutrients +3232,Libya,1999,7459.7869,kg of nutrients +3233,Libya,2000,7577.0832,kg of nutrients +3234,Libya,2001,7585.8666,kg of nutrients +3235,Libya,2002,7443.596,kg of nutrients +3236,Libya,2003,7309.3786,kg of nutrients +3237,Libya,2004,7374.628000000001,kg of nutrients +3238,Libya,2005,7502.6368,kg of nutrients +3239,Libya,2006,7502.6368,kg of nutrients +3240,Libya,2007,7502.6368,kg of nutrients +3241,Libya,2008,7502.6368,kg of nutrients +3242,Libya,2009,7507.3546,kg of nutrients +3243,Libya,2010,8081.1914,kg of nutrients +3244,Libya,2011,9031.9951,kg of nutrients +3245,Libya,2012,9926.9691,kg of nutrients +3246,Libya,2013,8391.9085,kg of nutrients +3247,Lithuania,1992,3736.6462,kg of nutrients +3248,Lithuania,1993,6770.9424,kg of nutrients +3249,Lithuania,1994,14101.0976,kg of nutrients +3250,Lithuania,1995,21407.664,kg of nutrients +3251,Lithuania,1996,35370.687999999995,kg of nutrients +3252,Lithuania,1997,44957.824,kg of nutrients +3253,Lithuania,1998,47518.0,kg of nutrients +3254,Lithuania,1999,23873.4848,kg of nutrients +3255,Lithuania,2000,24247.4464,kg of nutrients +3256,Lithuania,2001,37371.6512,kg of nutrients +3257,Lithuania,2002,44304.255999999994,kg of nutrients +3258,Lithuania,2003,36441.936,kg of nutrients +3259,Lithuania,2004,44260.5376,kg of nutrients +3260,Lithuania,2005,58732.1376,kg of nutrients +3261,Lithuania,2006,43835.9392,kg of nutrients +3262,Lithuania,2007,18662.2368,kg of nutrients +3263,Lithuania,2008,32298.4768,kg of nutrients +3264,Lithuania,2009,28111.2992,kg of nutrients +3265,Lithuania,2010,32810.512,kg of nutrients +3266,Lithuania,2011,67669.1648,kg of nutrients +3267,Lithuania,2012,88473.8976,kg of nutrients +3268,Lithuania,2013,137389.9296,kg of nutrients +3269,Madagascar,1961,700371.712,kg of nutrients +3270,Madagascar,1962,666853.536,kg of nutrients +3271,Madagascar,1963,717551.7368,kg of nutrients +3272,Madagascar,1964,728172.8976,kg of nutrients +3273,Madagascar,1965,688311.4909,kg of nutrients +3274,Madagascar,1966,681047.8406,kg of nutrients +3275,Madagascar,1967,713294.4846,kg of nutrients +3276,Madagascar,1968,751962.4526,kg of nutrients +3277,Madagascar,1969,787202.8208,kg of nutrients +3278,Madagascar,1970,773859.6486,kg of nutrients +3279,Madagascar,1971,868750.0752,kg of nutrients +3280,Madagascar,1972,830733.3664,kg of nutrients +3281,Madagascar,1973,769768.1474,kg of nutrients +3282,Madagascar,1974,804132.8816,kg of nutrients +3283,Madagascar,1975,855847.307,kg of nutrients +3284,Madagascar,1976,814075.4541,kg of nutrients +3285,Madagascar,1977,687966.3694,kg of nutrients +3286,Madagascar,1978,598264.2461,kg of nutrients +3287,Madagascar,1979,659250.8326,kg of nutrients +3288,Madagascar,1980,617176.9437,kg of nutrients +3289,Madagascar,1981,597608.4774,kg of nutrients +3290,Madagascar,1982,611807.4998,kg of nutrients +3291,Madagascar,1983,621447.3334,kg of nutrients +3292,Madagascar,1984,603901.7448,kg of nutrients +3293,Madagascar,1985,613686.2576,kg of nutrients +3294,Madagascar,1986,705497.3963,kg of nutrients +3295,Madagascar,1987,650509.8611,kg of nutrients +3296,Madagascar,1988,620514.976,kg of nutrients +3297,Madagascar,1989,622567.1427,kg of nutrients +3298,Madagascar,1990,620028.8259,kg of nutrients +3299,Madagascar,1991,1005375.1323,kg of nutrients +3300,Madagascar,1992,1057356.9988,kg of nutrients +3301,Madagascar,1993,1061690.764,kg of nutrients +3302,Madagascar,1994,888701.6,kg of nutrients +3303,Madagascar,1995,984368.5066,kg of nutrients +3304,Madagascar,1996,994522.1528,kg of nutrients +3305,Madagascar,1997,1050272.3312,kg of nutrients +3306,Madagascar,1998,1067454.7296,kg of nutrients +3307,Madagascar,1999,1037773.984,kg of nutrients +3308,Madagascar,2000,997146.3498,kg of nutrients +3309,Madagascar,2001,1002075.868,kg of nutrients +3310,Madagascar,2002,978201.0474,kg of nutrients +3311,Madagascar,2003,1002080.4128,kg of nutrients +3312,Madagascar,2004,976627.5456,kg of nutrients +3313,Madagascar,2005,954082.8426,kg of nutrients +3314,Madagascar,2006,965547.2702,kg of nutrients +3315,Madagascar,2007,974375.443,kg of nutrients +3316,Madagascar,2008,988535.3934,kg of nutrients +3317,Madagascar,2009,1002643.9135,kg of nutrients +3318,Madagascar,2010,1006413.8741,kg of nutrients +3319,Madagascar,2011,1002959.1215,kg of nutrients +3320,Madagascar,2012,1004187.7211,kg of nutrients +3321,Madagascar,2013,1007926.0907,kg of nutrients +3322,Malawi,1961,625418.944,kg of nutrients +3323,Malawi,1962,657993.568,kg of nutrients +3324,Malawi,1963,698012.832,kg of nutrients +3325,Malawi,1964,738032.0959999999,kg of nutrients +3326,Malawi,1965,778051.36,kg of nutrients +3327,Malawi,1966,810625.984,kg of nutrients +3328,Malawi,1967,843200.608,kg of nutrients +3329,Malawi,1968,880986.48,kg of nutrients +3330,Malawi,1969,919516.816,kg of nutrients +3331,Malawi,1970,958047.152,kg of nutrients +3332,Malawi,1971,996577.488,kg of nutrients +3333,Malawi,1972,1015842.656,kg of nutrients +3334,Malawi,1973,1035852.288,kg of nutrients +3335,Malawi,1974,1055861.92,kg of nutrients +3336,Malawi,1975,1092158.864,kg of nutrients +3337,Malawi,1976,1128455.808,kg of nutrients +3338,Malawi,1977,1168475.072,kg of nutrients +3339,Malawi,1978,1188484.7040000001,kg of nutrients +3340,Malawi,1979,1148465.44,kg of nutrients +3341,Malawi,1980,1188484.7040000001,kg of nutrients +3342,Malawi,1981,1221059.328,kg of nutrients +3343,Malawi,1982,1268523.232,kg of nutrients +3344,Malawi,1983,1315987.136,kg of nutrients +3345,Malawi,1984,1373691.744,kg of nutrients +3346,Malawi,1985,1421155.648,kg of nutrients +3347,Malawi,1986,1446285.632,kg of nutrients +3348,Malawi,1987,1471415.616,kg of nutrients +3349,Malawi,1988,1496545.6,kg of nutrients +3350,Malawi,1989,1483980.608,kg of nutrients +3351,Malawi,1990,1551925.92,kg of nutrients +3352,Malawi,1991,1514230.9440000001,kg of nutrients +3353,Malawi,1992,1478860.256,kg of nutrients +3354,Malawi,1993,1529120.2240000002,kg of nutrients +3355,Malawi,1994,1614556.9629,kg of nutrients +3356,Malawi,1995,1651974.08,kg of nutrients +3357,Malawi,1996,1752022.24,kg of nutrients +3358,Malawi,1997,1648159.4178,kg of nutrients +3359,Malawi,1998,1719950.1689,kg of nutrients +3360,Malawi,1999,1312329.7187,kg of nutrients +3361,Malawi,2000,1370022.0031,kg of nutrients +3362,Malawi,2001,2155689.5662,kg of nutrients +3363,Malawi,2002,2102960.0223,kg of nutrients +3364,Malawi,2003,2295207.7965,kg of nutrients +3365,Malawi,2004,1965333.6004,kg of nutrients +3366,Malawi,2005,2180008.108,kg of nutrients +3367,Malawi,2006,2406315.596,kg of nutrients +3368,Malawi,2007,2596525.5783,kg of nutrients +3369,Malawi,2008,2576261.1468,kg of nutrients +3370,Malawi,2009,2879678.5746,kg of nutrients +3371,Malawi,2010,2947202.5605,kg of nutrients +3372,Malawi,2011,2986438.4261,kg of nutrients +3373,Malawi,2012,3266356.4124,kg of nutrients +3374,Malawi,2013,3256562.4479,kg of nutrients +3375,Malta,1961,6743.2114,kg of nutrients +3376,Malta,1962,7762.9791,kg of nutrients +3377,Malta,1963,9473.1863,kg of nutrients +3378,Malta,1964,10256.383,kg of nutrients +3379,Malta,1965,11375.4158,kg of nutrients +3380,Malta,1966,3217.4777,kg of nutrients +3381,Malta,1967,4060.3795,kg of nutrients +3382,Malta,1968,4514.0308,kg of nutrients +3383,Malta,1969,3922.671,kg of nutrients +3384,Malta,1970,3226.4069,kg of nutrients +3385,Malta,1971,4382.0181,kg of nutrients +3386,Malta,1972,3824.8779,kg of nutrients +3387,Malta,1973,3886.7939,kg of nutrients +3388,Malta,1974,4248.3134,kg of nutrients +3389,Malta,1975,4227.3603,kg of nutrients +3390,Malta,1976,6072.7345,kg of nutrients +3391,Malta,1977,4457.7069,kg of nutrients +3392,Malta,1978,4508.945,kg of nutrients +3393,Malta,1979,5109.4069,kg of nutrients +3394,Malta,1980,5934.3938,kg of nutrients +3395,Malta,1981,5561.6208,kg of nutrients +3396,Malta,1982,4528.7596,kg of nutrients +3397,Malta,1983,5264.2032,kg of nutrients +3398,Malta,1984,7725.976,kg of nutrients +3399,Malta,1985,7725.976,kg of nutrients +3400,Malta,1986,6189.8704,kg of nutrients +3401,Malta,1987,6329.5006,kg of nutrients +3402,Malta,1988,6329.5006,kg of nutrients +3403,Malta,1989,6329.5006,kg of nutrients +3404,Malta,1990,5443.3809,kg of nutrients +3405,Malta,1991,6189.8704,kg of nutrients +3406,Malta,1992,5752.2816,kg of nutrients +3407,Malta,1993,4793.568,kg of nutrients +3408,Malta,1994,4455.9217,kg of nutrients +3409,Malta,1995,4491.0646,kg of nutrients +3410,Malta,1996,4049.1040000000003,kg of nutrients +3411,Malta,1997,4193.7316,kg of nutrients +3412,Malta,1998,4057.4245,kg of nutrients +3413,Malta,1999,3810.9208,kg of nutrients +3414,Malta,2000,3591.241,kg of nutrients +3415,Malta,2001,3319.7981,kg of nutrients +3416,Malta,2002,2926.1413,kg of nutrients +3417,Malta,2003,3013.57,kg of nutrients +3418,Malta,2004,2972.989,kg of nutrients +3419,Malta,2005,2954.175,kg of nutrients +3420,Malta,2006,2631.9176,kg of nutrients +3421,Malta,2007,2652.8016,kg of nutrients +3422,Malta,2008,3239.2832,kg of nutrients +3423,Malta,2009,3099.653,kg of nutrients +3424,Malta,2010,3164.8368,kg of nutrients +3425,Malta,2011,2871.5959999999995,kg of nutrients +3426,Malta,2012,3036.828,kg of nutrients +3427,Malta,2013,3036.828,kg of nutrients +3428,Mauritania,1995,43650.687999999995,kg of nutrients +3429,Mauritania,1996,71758.52799999999,kg of nutrients +3430,Mauritania,1997,86556.912,kg of nutrients +3431,Mauritania,1998,100610.832,kg of nutrients +3432,Mauritania,1999,115409.216,kg of nutrients +3433,Mauritania,2000,127385.776,kg of nutrients +3434,Mauritania,2001,113361.0752,kg of nutrients +3435,Mauritania,2002,134262.4394,kg of nutrients +3436,Mauritania,2003,132938.0253,kg of nutrients +3437,Mauritania,2004,127455.1295,kg of nutrients +3438,Mauritania,2005,127393.8155,kg of nutrients +3439,Mauritania,2006,126611.0591,kg of nutrients +3440,Mauritania,2007,124682.6559,kg of nutrients +3441,Mauritania,2008,123112.6414,kg of nutrients +3442,Mauritania,2009,122839.8138,kg of nutrients +3443,Mauritania,2010,128911.104,kg of nutrients +3444,Mauritania,2011,133616.7125,kg of nutrients +3445,Mauritania,2012,137142.8754,kg of nutrients +3446,Mauritania,2013,140720.2281,kg of nutrients +3447,Mexico,1961,15742534.8722,kg of nutrients +3448,Mexico,1962,15816993.0342,kg of nutrients +3449,Mexico,1963,16203956.4414,kg of nutrients +3450,Mexico,1964,20131855.2932,kg of nutrients +3451,Mexico,1965,20160618.3947,kg of nutrients +3452,Mexico,1966,21863939.2976,kg of nutrients +3453,Mexico,1967,19386724.9467,kg of nutrients +3454,Mexico,1968,17718715.3867,kg of nutrients +3455,Mexico,1969,16598191.0716,kg of nutrients +3456,Mexico,1970,17741927.0485,kg of nutrients +3457,Mexico,1971,19513370.557,kg of nutrients +3458,Mexico,1972,17009408.8886,kg of nutrients +3459,Mexico,1973,19084995.7513,kg of nutrients +3460,Mexico,1974,16527976.704000002,kg of nutrients +3461,Mexico,1975,18307867.2631,kg of nutrients +3462,Mexico,1976,13583896.614,kg of nutrients +3463,Mexico,1977,16083359.9092,kg of nutrients +3464,Mexico,1978,16622131.8158,kg of nutrients +3465,Mexico,1979,11107182.4208,kg of nutrients +3466,Mexico,1980,16337677.2145,kg of nutrients +3467,Mexico,1981,21635727.6532,kg of nutrients +3468,Mexico,1982,16713145.4772,kg of nutrients +3469,Mexico,1983,21155651.5368,kg of nutrients +3470,Mexico,1984,17268192.6202,kg of nutrients +3471,Mexico,1985,17938177.0539,kg of nutrients +3472,Mexico,1986,19018056.8773,kg of nutrients +3473,Mexico,1987,18545941.4606,kg of nutrients +3474,Mexico,1988,18912867.5174,kg of nutrients +3475,Mexico,1989,12871861.3981,kg of nutrients +3476,Mexico,1990,22180959.551,kg of nutrients +3477,Mexico,1991,21865750.0305,kg of nutrients +3478,Mexico,1992,13324538.0664,kg of nutrients +3479,Mexico,1993,20543054.9854,kg of nutrients +3480,Mexico,1994,22520017.3998,kg of nutrients +3481,Mexico,1995,21697925.5162,kg of nutrients +3482,Mexico,1996,22157434.8846,kg of nutrients +3483,Mexico,1997,16964944.3642,kg of nutrients +3484,Mexico,1998,22434724.0217,kg of nutrients +3485,Mexico,1999,18143818.5752,kg of nutrients +3486,Mexico,2000,15734135.6851,kg of nutrients +3487,Mexico,2001,18088097.1766,kg of nutrients +3488,Mexico,2002,23225856.7101,kg of nutrients +3489,Mexico,2003,21420125.0688,kg of nutrients +3490,Mexico,2004,18452101.2928,kg of nutrients +3491,Mexico,2005,13623314.4114,kg of nutrients +3492,Mexico,2006,19924446.9721,kg of nutrients +3493,Mexico,2007,16176029.9195,kg of nutrients +3494,Mexico,2008,16958041.599,kg of nutrients +3495,Mexico,2009,14305177.5936,kg of nutrients +3496,Mexico,2010,18056842.9197,kg of nutrients +3497,Mexico,2011,9569972.6883,kg of nutrients +3498,Mexico,2012,17140502.5045,kg of nutrients +3499,Mexico,2013,19693156.1827,kg of nutrients +3500,Montenegro,2006,363.1775,kg of nutrients +3501,Montenegro,2007,591.5674,kg of nutrients +3502,Montenegro,2008,775.9,kg of nutrients +3503,Montenegro,2009,847.585,kg of nutrients +3504,Montenegro,2010,791.2611,kg of nutrients +3505,Montenegro,2011,811.7425,kg of nutrients +3506,Montenegro,2012,831.2804,kg of nutrients +3507,Montenegro,2013,1343.7527,kg of nutrients +3508,Morocco,1961,61288.8544,kg of nutrients +3509,Morocco,1962,51995.4155,kg of nutrients +3510,Morocco,1963,78942.6623,kg of nutrients +3511,Morocco,1964,72148.9392,kg of nutrients +3512,Morocco,1965,62629.0471,kg of nutrients +3513,Morocco,1966,78478.4877,kg of nutrients +3514,Morocco,1967,89303.9091,kg of nutrients +3515,Morocco,1968,102844.224,kg of nutrients +3516,Morocco,1969,57704.608,kg of nutrients +3517,Morocco,1970,45139.615999999995,kg of nutrients +3518,Morocco,1971,57704.608,kg of nutrients +3519,Morocco,1972,28879.9187,kg of nutrients +3520,Morocco,1973,49830.777,kg of nutrients +3521,Morocco,1974,30057.5997,kg of nutrients +3522,Morocco,1975,44343.9485,kg of nutrients +3523,Morocco,1976,17311.3824,kg of nutrients +3524,Morocco,1977,98468.336,kg of nutrients +3525,Morocco,1978,110288.864,kg of nutrients +3526,Morocco,1979,110800.8992,kg of nutrients +3527,Morocco,1980,112801.8624,kg of nutrients +3528,Morocco,1981,97723.87199999999,kg of nutrients +3529,Morocco,1982,91394.1984,kg of nutrients +3530,Morocco,1983,91394.1984,kg of nutrients +3531,Morocco,1984,90137.6992,kg of nutrients +3532,Morocco,1985,90137.6992,kg of nutrients +3533,Morocco,1986,88136.73599999999,kg of nutrients +3534,Morocco,1987,86647.808,kg of nutrients +3535,Morocco,1988,88648.7712,kg of nutrients +3536,Morocco,1989,89905.2704,kg of nutrients +3537,Morocco,1990,90783.8638,kg of nutrients +3538,Morocco,1991,58068.1879,kg of nutrients +3539,Morocco,1992,80009.4512,kg of nutrients +3540,Morocco,1993,98273.4267,kg of nutrients +3541,Morocco,1994,89905.2704,kg of nutrients +3542,Morocco,1995,131152.8117,kg of nutrients +3543,Morocco,1996,130298.496,kg of nutrients +3544,Morocco,1997,162826.7702,kg of nutrients +3545,Morocco,1998,182882.75199999998,kg of nutrients +3546,Morocco,1999,290699.9157,kg of nutrients +3547,Morocco,2000,228413.0,kg of nutrients +3548,Morocco,2001,232670.944,kg of nutrients +3549,Morocco,2002,219253.7577,kg of nutrients +3550,Morocco,2003,187491.0688,kg of nutrients +3551,Morocco,2004,244171.6064,kg of nutrients +3552,Morocco,2005,188003.104,kg of nutrients +3553,Morocco,2006,217841.6506,kg of nutrients +3554,Mozambique,2002,2126430.0768,kg of nutrients +3555,Mozambique,2003,2755155.8688,kg of nutrients +3556,Mozambique,2004,3019969.92,kg of nutrients +3557,Mozambique,2005,3930930.2944,kg of nutrients +3558,Mozambique,2006,4011115.0656,kg of nutrients +3559,Mozambique,2007,4646376.5376,kg of nutrients +3560,Mozambique,2008,4165741.5264,kg of nutrients +3561,Mozambique,2009,4387965.76,kg of nutrients +3562,Mozambique,2010,6357031.3566,kg of nutrients +3563,Mozambique,2011,6076913.5755,kg of nutrients +3564,Mozambique,2012,7323701.0467,kg of nutrients +3565,Mozambique,2013,7231884.7413,kg of nutrients +3566,Myanmar,1961,2744344.6176,kg of nutrients +3567,Myanmar,1962,3029155.7152,kg of nutrients +3568,Myanmar,1963,3860663.4912,kg of nutrients +3569,Myanmar,1964,4101955.0560000003,kg of nutrients +3570,Myanmar,1965,3605819.664,kg of nutrients +3571,Myanmar,1966,3695253.1584,kg of nutrients +3572,Myanmar,1967,3765194.7232,kg of nutrients +3573,Myanmar,1968,3505224.8768,kg of nutrients +3574,Myanmar,1969,3678770.2176,kg of nutrients +3575,Myanmar,1970,3338548.9184,kg of nutrients +3576,Myanmar,1971,3264348.784,kg of nutrients +3577,Myanmar,1972,3556421.4784,kg of nutrients +3578,Myanmar,1973,3555289.216,kg of nutrients +3579,Myanmar,1974,3348604.3712,kg of nutrients +3580,Myanmar,1975,3624295.3984,kg of nutrients +3581,Myanmar,1976,3148759.9839999997,kg of nutrients +3582,Myanmar,1977,3304701.7504,kg of nutrients +3583,Myanmar,1978,3908056.0621,kg of nutrients +3584,Myanmar,1979,4023613.1037,kg of nutrients +3585,Myanmar,1980,4331168.5907,kg of nutrients +3586,Myanmar,1981,4435255.6523,kg of nutrients +3587,Myanmar,1982,4206391.984,kg of nutrients +3588,Myanmar,1983,3950778.5216,kg of nutrients +3589,Myanmar,1984,4918144.8319999995,kg of nutrients +3590,Myanmar,1985,4850586.0672,kg of nutrients +3591,Myanmar,1986,4954539.5904,kg of nutrients +3592,Myanmar,1987,4744880.3488,kg of nutrients +3593,Myanmar,1988,4351952.7648,kg of nutrients +3594,Myanmar,1989,3507310.1119999997,kg of nutrients +3595,Myanmar,1990,4575719.728,kg of nutrients +3596,Myanmar,1991,5874814.4128,kg of nutrients +3597,Myanmar,1992,7866310.2976,kg of nutrients +3598,Myanmar,1993,9525176.7232,kg of nutrients +3599,Myanmar,1994,9794097.4336,kg of nutrients +3600,Myanmar,1995,12075437.3312,kg of nutrients +3601,Myanmar,1996,14814086.6336,kg of nutrients +3602,Myanmar,1997,15047967.855999999,kg of nutrients +3603,Myanmar,1998,15406774.1414,kg of nutrients +3604,Myanmar,1999,18792906.3313,kg of nutrients +3605,Myanmar,2000,19701560.92,kg of nutrients +3606,Myanmar,2001,21122044.4947,kg of nutrients +3607,Myanmar,2002,23086963.551999997,kg of nutrients +3608,Myanmar,2003,24607535.136,kg of nutrients +3609,Myanmar,2004,24957065.216,kg of nutrients +3610,Myanmar,2005,27395859.36,kg of nutrients +3611,Myanmar,2006,30633588.864,kg of nutrients +3612,Myanmar,2007,33288277.568000004,kg of nutrients +3613,Myanmar,2008,36763936.736,kg of nutrients +3614,Myanmar,2009,37523164.16,kg of nutrients +3615,Myanmar,2010,38249816.96,kg of nutrients +3616,Myanmar,2011,39391183.68,kg of nutrients +3617,Myanmar,2012,41313271.2441,kg of nutrients +3618,Myanmar,2013,44961294.414,kg of nutrients +3619,Namibia,2000,103.316,kg of nutrients +3620,Namibia,2001,151.2517,kg of nutrients +3621,Namibia,2002,214.0766,kg of nutrients +3622,Namibia,2003,405.8194,kg of nutrients +3623,Namibia,2004,605.0067,kg of nutrients +3624,Namibia,2005,804.1941,kg of nutrients +3625,Namibia,2006,1010.8261,kg of nutrients +3626,Namibia,2007,1240.7356,kg of nutrients +3627,Namibia,2008,620.3678,kg of nutrients +3628,Namibia,2009,1210.0134,kg of nutrients +3629,Namibia,2010,1298.4402,kg of nutrients +3630,Namibia,2011,1177.8087,kg of nutrients +3631,Namibia,2012,1210.0134,kg of nutrients +3632,Namibia,2013,1121.5867,kg of nutrients +3633,Nepal,1961,141465.456,kg of nutrients +3634,Nepal,1962,147747.952,kg of nutrients +3635,Nepal,1963,151470.272,kg of nutrients +3636,Nepal,1964,157752.768,kg of nutrients +3637,Nepal,1965,159986.16,kg of nutrients +3638,Nepal,1966,163011.1936,kg of nutrients +3639,Nepal,1967,163708.48,kg of nutrients +3640,Nepal,1968,168269.6192,kg of nutrients +3641,Nepal,1969,168919.728,kg of nutrients +3642,Nepal,1970,176273.47199999998,kg of nutrients +3643,Nepal,1971,175202.224,kg of nutrients +3644,Nepal,1972,184044.896,kg of nutrients +3645,Nepal,1973,185207.04,kg of nutrients +3646,Nepal,1974,194049.712,kg of nutrients +3647,Nepal,1975,208012.736,kg of nutrients +3648,Nepal,1976,209174.88,kg of nutrients +3649,Nepal,1977,215457.37600000002,kg of nutrients +3650,Nepal,1978,211825.952,kg of nutrients +3651,Nepal,1979,219179.69600000003,kg of nutrients +3652,Nepal,1980,218852.91199999998,kg of nutrients +3653,Nepal,1981,222902.016,kg of nutrients +3654,Nepal,1982,222902.016,kg of nutrients +3655,Nepal,1983,250356.288,kg of nutrients +3656,Nepal,1984,265245.568,kg of nutrients +3657,Nepal,1985,198896.4339,kg of nutrients +3658,Nepal,1986,263355.7555,kg of nutrients +3659,Nepal,1987,286895.0963,kg of nutrients +3660,Nepal,1988,292039.9498,kg of nutrients +3661,Nepal,1989,271118.4358,kg of nutrients +3662,Nepal,1990,279704.3984,kg of nutrients +3663,Nepal,1991,278285.8909,kg of nutrients +3664,Nepal,1992,261527.6198,kg of nutrients +3665,Nepal,1993,266460.6451,kg of nutrients +3666,Nepal,1994,191437.3668,kg of nutrients +3667,Nepal,1995,269837.3785,kg of nutrients +3668,Nepal,1996,268179.7056,kg of nutrients +3669,Nepal,1997,282532.103,kg of nutrients +3670,Nepal,1998,291725.7204,kg of nutrients +3671,Nepal,1999,297558.6161,kg of nutrients +3672,Nepal,2000,306814.50800000003,kg of nutrients +3673,Nepal,2001,335809.7321,kg of nutrients +3674,Nepal,2002,349239.2584,kg of nutrients +3675,Nepal,2003,352833.5063,kg of nutrients +3676,Nepal,2004,369934.1616,kg of nutrients +3677,Nepal,2005,384965.235,kg of nutrients +3678,Nepal,2006,374908.0209,kg of nutrients +3679,Nepal,2007,373977.268,kg of nutrients +3680,Nepal,2008,376184.7719,kg of nutrients +3681,Nepal,2009,379533.63,kg of nutrients +3682,Nepal,2010,388047.6435,kg of nutrients +3683,Nepal,2011,320223.1341,kg of nutrients +3684,Nepal,2012,319813.5751,kg of nutrients +3685,Nepal,2013,297197.1334,kg of nutrients +3686,Netherlands,1961,75643.1507,kg of nutrients +3687,Netherlands,1962,50306.8085,kg of nutrients +3688,Netherlands,1963,48414.2,kg of nutrients +3689,Netherlands,1964,69825.7574,kg of nutrients +3690,Netherlands,1965,63633.0409,kg of nutrients +3691,Netherlands,1966,66944.2512,kg of nutrients +3692,Netherlands,1967,99973.5097,kg of nutrients +3693,Netherlands,1968,47930.0091,kg of nutrients +3694,Netherlands,1969,59772.9086,kg of nutrients +3695,Netherlands,1970,88138.4104,kg of nutrients +3696,Netherlands,1971,77607.8497,kg of nutrients +3697,Netherlands,1972,59556.8889,kg of nutrients +3698,Netherlands,1973,98815.8009,kg of nutrients +3699,Netherlands,1974,115926.5394,kg of nutrients +3700,Netherlands,1975,114872.4924,kg of nutrients +3701,Netherlands,1976,69745.2132,kg of nutrients +3702,Netherlands,1977,83881.1995,kg of nutrients +3703,Netherlands,1978,90579.8468,kg of nutrients +3704,Netherlands,1979,85042.0032,kg of nutrients +3705,Netherlands,1980,53622.6048,kg of nutrients +3706,Netherlands,1981,73274.6887,kg of nutrients +3707,Netherlands,1982,83355.5674,kg of nutrients +3708,Netherlands,1983,80654.0816,kg of nutrients +3709,Netherlands,1984,64660.7155,kg of nutrients +3710,Netherlands,1985,70343.9382,kg of nutrients +3711,Netherlands,1986,73066.7106,kg of nutrients +3712,Netherlands,1987,31561.86,kg of nutrients +3713,Netherlands,1988,47844.78400000001,kg of nutrients +3714,Netherlands,1989,22805.696,kg of nutrients +3715,Netherlands,1990,42560.014,kg of nutrients +3716,Netherlands,1991,54439.2307,kg of nutrients +3717,Netherlands,1992,47209.2936,kg of nutrients +3718,Netherlands,1993,42047.9788,kg of nutrients +3719,Netherlands,1994,39676.904,kg of nutrients +3720,Netherlands,1995,43792.5726,kg of nutrients +3721,Netherlands,1996,62472.3593,kg of nutrients +3722,Netherlands,1997,44520.757000000005,kg of nutrients +3723,Netherlands,1998,41543.244,kg of nutrients +3724,Netherlands,1999,41794.7168,kg of nutrients +3725,Netherlands,2000,24333.5739,kg of nutrients +3726,Netherlands,2001,36768.72,kg of nutrients +3727,Netherlands,2002,34293.9355,kg of nutrients +3728,Netherlands,2003,52314.1624,kg of nutrients +3729,Netherlands,2004,58478.40900000001,kg of nutrients +3730,Netherlands,2005,28663.0674,kg of nutrients +3731,Netherlands,2006,18208.1138,kg of nutrients +3732,Netherlands,2007,26110.336,kg of nutrients +3733,Netherlands,2008,17964.9504,kg of nutrients +3734,Netherlands,2009,32825.4859,kg of nutrients +3735,Netherlands,2010,47704.2006,kg of nutrients +3736,Netherlands,2011,32150.6814,kg of nutrients +3737,Netherlands,2012,36152.1485,kg of nutrients +3738,Netherlands,2013,40493.078,kg of nutrients +3739,Nicaragua,1961,586397.328,kg of nutrients +3740,Nicaragua,1962,539936.6362,kg of nutrients +3741,Nicaragua,1963,563199.3388,kg of nutrients +3742,Nicaragua,1964,643350.6905,kg of nutrients +3743,Nicaragua,1965,688642.08,kg of nutrients +3744,Nicaragua,1966,737086.3359999999,kg of nutrients +3745,Nicaragua,1967,769987.7440000001,kg of nutrients +3746,Nicaragua,1968,782040.7008,kg of nutrients +3747,Nicaragua,1969,769475.7088,kg of nutrients +3748,Nicaragua,1970,744329.4003,kg of nutrients +3749,Nicaragua,1971,754469.2451,kg of nutrients +3750,Nicaragua,1972,674756.9947,kg of nutrients +3751,Nicaragua,1973,524606.4465,kg of nutrients +3752,Nicaragua,1974,723172.5416,kg of nutrients +3753,Nicaragua,1975,644620.0726,kg of nutrients +3754,Nicaragua,1976,780183.2149,kg of nutrients +3755,Nicaragua,1977,669369.1141,kg of nutrients +3756,Nicaragua,1978,779145.689,kg of nutrients +3757,Nicaragua,1979,544914.687,kg of nutrients +3758,Nicaragua,1980,549591.6792,kg of nutrients +3759,Nicaragua,1981,965556.2465,kg of nutrients +3760,Nicaragua,1982,752364.7046,kg of nutrients +3761,Nicaragua,1983,946447.3504,kg of nutrients +3762,Nicaragua,1984,911130.5376,kg of nutrients +3763,Nicaragua,1985,775691.1964,kg of nutrients +3764,Nicaragua,1986,1045923.4029,kg of nutrients +3765,Nicaragua,1987,677723.8203,kg of nutrients +3766,Nicaragua,1988,1090253.3445,kg of nutrients +3767,Nicaragua,1989,1107038.2161,kg of nutrients +3768,Nicaragua,1990,1204138.1088,kg of nutrients +3769,Nicaragua,1991,1204690.5908,kg of nutrients +3770,Nicaragua,1992,1079649.256,kg of nutrients +3771,Nicaragua,1993,1246422.8948,kg of nutrients +3772,Nicaragua,1994,1216830.8387,kg of nutrients +3773,Nicaragua,1995,1476283.7187,kg of nutrients +3774,Nicaragua,1996,1272556.4723,kg of nutrients +3775,Nicaragua,1997,1367599.61,kg of nutrients +3776,Nicaragua,1998,2167380.6988,kg of nutrients +3777,Nicaragua,1999,2223113.7158,kg of nutrients +3778,Nicaragua,2000,2543889.173,kg of nutrients +3779,Nicaragua,2001,2618453.7489,kg of nutrients +3780,Nicaragua,2002,2865840.2747,kg of nutrients +3781,Nicaragua,2003,3331411.3899,kg of nutrients +3782,Nicaragua,2004,2611585.7472,kg of nutrients +3783,Nicaragua,2005,3096989.6145,kg of nutrients +3784,Nicaragua,2006,2621540.7102,kg of nutrients +3785,Nicaragua,2007,2596619.7068,kg of nutrients +3786,Nicaragua,2008,2685033.1082,kg of nutrients +3787,Nicaragua,2009,2943688.7662,kg of nutrients +3788,Nicaragua,2010,2384028.8716,kg of nutrients +3789,Nicaragua,2011,3441896.2984,kg of nutrients +3790,Nicaragua,2012,3423795.0651,kg of nutrients +3791,Nicaragua,2013,2618033.3138,kg of nutrients +3792,Niger,1990,20009.631999999998,kg of nutrients +3793,Niger,1991,40019.263999999996,kg of nutrients +3794,Niger,1992,60028.89599999999,kg of nutrients +3795,Niger,1993,80038.52799999999,kg of nutrients +3796,Niger,1994,140067.424,kg of nutrients +3797,Niger,1995,144779.7064,kg of nutrients +3798,Niger,1996,161621.314,kg of nutrients +3799,Niger,1997,151154.0019,kg of nutrients +3800,Niger,1998,151922.7216,kg of nutrients +3801,Niger,1999,151384.158,kg of nutrients +3802,Niger,2000,160077.05599999998,kg of nutrients +3803,Niger,2001,164477.6711,kg of nutrients +3804,Niger,2002,180086.688,kg of nutrients +3805,Niger,2003,184833.0784,kg of nutrients +3806,Niger,2004,186089.5776,kg of nutrients +3807,Niger,2005,188602.576,kg of nutrients +3808,Niger,2006,189663.16100000002,kg of nutrients +3809,Niger,2007,216740.9888,kg of nutrients +3810,Niger,2008,227786.48,kg of nutrients +3811,Niger,2009,249143.5072,kg of nutrients +3812,Niger,2010,251144.4704,kg of nutrients +3813,Niger,2011,353752.8064,kg of nutrients +3814,Niger,2012,365293.72799999994,kg of nutrients +3815,Niger,2013,356451.05600000004,kg of nutrients +3816,North Macedonia,1992,115300.0451,kg of nutrients +3817,North Macedonia,1993,97378.2251,kg of nutrients +3818,North Macedonia,1994,108808.3919,kg of nutrients +3819,North Macedonia,1995,108691.9825,kg of nutrients +3820,North Macedonia,1996,109189.9527,kg of nutrients +3821,North Macedonia,1997,127886.0845,kg of nutrients +3822,North Macedonia,1998,121079.7906,kg of nutrients +3823,North Macedonia,1999,129597.927,kg of nutrients +3824,North Macedonia,2000,122291.103,kg of nutrients +3825,North Macedonia,2001,93183.7029,kg of nutrients +3826,North Macedonia,2002,117363.0328,kg of nutrients +3827,North Macedonia,2003,118872.1571,kg of nutrients +3828,North Macedonia,2004,115137.4075,kg of nutrients +3829,North Macedonia,2005,71262.1365,kg of nutrients +3830,North Macedonia,2006,73785.3881,kg of nutrients +3831,North Macedonia,2007,74554.592,kg of nutrients +3832,North Macedonia,2008,75905.3589,kg of nutrients +3833,North Macedonia,2009,74554.592,kg of nutrients +3834,North Macedonia,2010,74554.592,kg of nutrients +3835,North Macedonia,2011,74554.592,kg of nutrients +3836,North Macedonia,2012,74554.592,kg of nutrients +3837,North Macedonia,2013,74554.592,kg of nutrients +3838,Pakistan,1961,1024984.4384,kg of nutrients +3839,Pakistan,1962,951137.5104,kg of nutrients +3840,Pakistan,1963,979481.2384,kg of nutrients +3841,Pakistan,1964,1037374.5568,kg of nutrients +3842,Pakistan,1965,1007727.152,kg of nutrients +3843,Pakistan,1966,978416.9088,kg of nutrients +3844,Pakistan,1967,1236214.3776,kg of nutrients +3845,Pakistan,1968,1001629.9072,kg of nutrients +3846,Pakistan,1969,876088.1792,kg of nutrients +3847,Pakistan,1970,1084471.4176,kg of nutrients +3848,Pakistan,1971,1145618.7392,kg of nutrients +3849,Pakistan,1972,958690.3424,kg of nutrients +3850,Pakistan,1973,1109554.2240000002,kg of nutrients +3851,Pakistan,1974,1125747.1808,kg of nutrients +3852,Pakistan,1975,1251716.9664,kg of nutrients +3853,Pakistan,1976,1129417.2971,kg of nutrients +3854,Pakistan,1977,1177888.869,kg of nutrients +3855,Pakistan,1978,1132176.7267,kg of nutrients +3856,Pakistan,1979,1328932.1012,kg of nutrients +3857,Pakistan,1980,1342922.4544,kg of nutrients +3858,Pakistan,1981,1313180.1682,kg of nutrients +3859,Pakistan,1982,1526256.7255,kg of nutrients +3860,Pakistan,1983,1622707.2498,kg of nutrients +3861,Pakistan,1984,1791239.4848,kg of nutrients +3862,Pakistan,1985,1935305.376,kg of nutrients +3863,Pakistan,1986,1908962.6112,kg of nutrients +3864,Pakistan,1987,1658323.2576,kg of nutrients +3865,Pakistan,1988,1678878.2656,kg of nutrients +3866,Pakistan,1989,2201402.3488,kg of nutrients +3867,Pakistan,1990,2120760.8896,kg of nutrients +3868,Pakistan,1991,1978743.1392,kg of nutrients +3869,Pakistan,1992,2037006.96,kg of nutrients +3870,Pakistan,1993,2231105.5027,kg of nutrients +3871,Pakistan,1994,2292471.5730000003,kg of nutrients +3872,Pakistan,1995,2524322.8706,kg of nutrients +3873,Pakistan,1996,2463288.9571,kg of nutrients +3874,Pakistan,1997,2406178.8192,kg of nutrients +3875,Pakistan,1998,2418082.8832,kg of nutrients +3876,Pakistan,1999,2438887.616,kg of nutrients +3877,Pakistan,2000,2638754.9664,kg of nutrients +3878,Pakistan,2001,2921958.5664,kg of nutrients +3879,Pakistan,2002,3188575.744,kg of nutrients +3880,Pakistan,2003,3114031.5296,kg of nutrients +3881,Pakistan,2004,2715799.5936,kg of nutrients +3882,Pakistan,2005,2477485.8848,kg of nutrients +3883,Pakistan,2006,2657930.4896,kg of nutrients +3884,Pakistan,2007,3071056.416,kg of nutrients +3885,Pakistan,2008,2717151.6992,kg of nutrients +3886,Pakistan,2009,2206591.8848,kg of nutrients +3887,Pakistan,2010,1651788.1252,kg of nutrients +3888,Pakistan,2011,1762516.5880000002,kg of nutrients +3889,Pakistan,2012,1700640.2356,kg of nutrients +3890,Pakistan,2013,1658321.0231,kg of nutrients +3891,Panama,1961,171113.2906,kg of nutrients +3892,Panama,1962,225257.8077,kg of nutrients +3893,Panama,1963,225231.2875,kg of nutrients +3894,Panama,1964,169722.5678,kg of nutrients +3895,Panama,1965,131199.717,kg of nutrients +3896,Panama,1966,199851.8524,kg of nutrients +3897,Panama,1967,199171.0215,kg of nutrients +3898,Panama,1968,169753.6418,kg of nutrients +3899,Panama,1969,155779.6344,kg of nutrients +3900,Panama,1970,157244.9736,kg of nutrients +3901,Panama,1971,117888.3518,kg of nutrients +3902,Panama,1972,106268.6841,kg of nutrients +3903,Panama,1973,92660.4106,kg of nutrients +3904,Panama,1974,107986.0149,kg of nutrients +3905,Panama,1975,140621.7314,kg of nutrients +3906,Panama,1976,144996.6949,kg of nutrients +3907,Panama,1977,132725.5193,kg of nutrients +3908,Panama,1978,131203.2836,kg of nutrients +3909,Panama,1979,98241.8776,kg of nutrients +3910,Panama,1980,85593.5351,kg of nutrients +3911,Panama,1981,72636.7004,kg of nutrients +3912,Panama,1982,74765.2514,kg of nutrients +3913,Panama,1983,93707.7239,kg of nutrients +3914,Panama,1984,87821.8539,kg of nutrients +3915,Panama,1985,115140.8704,kg of nutrients +3916,Panama,1986,105160.4484,kg of nutrients +3917,Panama,1987,85492.2696,kg of nutrients +3918,Panama,1988,92415.4448,kg of nutrients +3919,Panama,1989,105342.8873,kg of nutrients +3920,Panama,1990,104530.0158,kg of nutrients +3921,Panama,1991,94321.7694,kg of nutrients +3922,Panama,1992,120945.5066,kg of nutrients +3923,Panama,1993,121961.2359,kg of nutrients +3924,Panama,1994,129996.5027,kg of nutrients +3925,Panama,1995,121619.6694,kg of nutrients +3926,Panama,1996,109366.5596,kg of nutrients +3927,Panama,1997,94538.4912,kg of nutrients +3928,Panama,1998,71609.3401,kg of nutrients +3929,Panama,1999,85367.5441,kg of nutrients +3930,Panama,2000,79117.003,kg of nutrients +3931,Panama,2001,83077.1364,kg of nutrients +3932,Panama,2002,94530.4902,kg of nutrients +3933,Panama,2003,100257.9185,kg of nutrients +3934,Panama,2004,96290.2242,kg of nutrients +3935,Panama,2005,97049.9359,kg of nutrients +3936,Panama,2006,85164.1078,kg of nutrients +3937,Panama,2007,83944.1429,kg of nutrients +3938,Panama,2008,76389.7867,kg of nutrients +3939,Panama,2009,78977.2315,kg of nutrients +3940,Panama,2010,76803.9817,kg of nutrients +3941,Panama,2011,106157.9418,kg of nutrients +3942,Panama,2012,101376.9167,kg of nutrients +3943,Panama,2013,94397.1343,kg of nutrients +3944,Paraguay,1961,253900.2752,kg of nutrients +3945,Paraguay,1962,252037.3856,kg of nutrients +3946,Paraguay,1963,253900.2752,kg of nutrients +3947,Paraguay,1964,283402.688,kg of nutrients +3948,Paraguay,1965,355346.4672,kg of nutrients +3949,Paraguay,1966,338642.6086,kg of nutrients +3950,Paraguay,1967,355130.1421,kg of nutrients +3951,Paraguay,1968,315505.536,kg of nutrients +3952,Paraguay,1969,289364.3763,kg of nutrients +3953,Paraguay,1970,583544.3874,kg of nutrients +3954,Paraguay,1971,536642.4768,kg of nutrients +3955,Paraguay,1972,475048.981,kg of nutrients +3956,Paraguay,1973,517845.6256,kg of nutrients +3957,Paraguay,1974,498141.7295,kg of nutrients +3958,Paraguay,1975,626624.6894,kg of nutrients +3959,Paraguay,1976,727925.8504,kg of nutrients +3960,Paraguay,1977,765116.843,kg of nutrients +3961,Paraguay,1978,1003506.4386,kg of nutrients +3962,Paraguay,1979,937126.8598,kg of nutrients +3963,Paraguay,1980,890192.2282,kg of nutrients +3964,Paraguay,1981,590387.7044,kg of nutrients +3965,Paraguay,1982,591082.9778,kg of nutrients +3966,Paraguay,1983,612423.9013,kg of nutrients +3967,Paraguay,1984,643149.3356,kg of nutrients +3968,Paraguay,1985,674108.1172,kg of nutrients +3969,Paraguay,1986,448856.1136,kg of nutrients +3970,Paraguay,1987,696763.447,kg of nutrients +3971,Paraguay,1988,709577.3233,kg of nutrients +3972,Paraguay,1989,665694.2065,kg of nutrients +3973,Paraguay,1990,583534.9732,kg of nutrients +3974,Paraguay,1991,557805.9912,kg of nutrients +3975,Paraguay,1992,565607.7126,kg of nutrients +3976,Paraguay,1993,596221.113,kg of nutrients +3977,Paraguay,1994,557199.1805,kg of nutrients +3978,Paraguay,1995,682842.7076,kg of nutrients +3979,Paraguay,1996,624830.066,kg of nutrients +3980,Paraguay,1997,748334.1449,kg of nutrients +3981,Paraguay,1998,630370.1838,kg of nutrients +3982,Paraguay,1999,649369.0803,kg of nutrients +3983,Paraguay,2000,593290.4302,kg of nutrients +3984,Paraguay,2001,735210.7364,kg of nutrients +3985,Paraguay,2002,767422.2151,kg of nutrients +3986,Paraguay,2003,877608.0575,kg of nutrients +3987,Paraguay,2004,881002.3886,kg of nutrients +3988,Paraguay,2005,901411.584,kg of nutrients +3989,Paraguay,2006,991219.04,kg of nutrients +3990,Paraguay,2007,991219.04,kg of nutrients +3991,Paraguay,2008,641118.7078,kg of nutrients +3992,Paraguay,2009,677173.625,kg of nutrients +3993,Paraguay,2010,672340.1584,kg of nutrients +3994,Paraguay,2011,736832.4852,kg of nutrients +3995,Paraguay,2012,600661.8662,kg of nutrients +3996,Paraguay,2013,807864.512,kg of nutrients +3997,Peru,1961,550171.7466,kg of nutrients +3998,Peru,1962,582008.3539,kg of nutrients +3999,Peru,1963,552502.4819,kg of nutrients +4000,Peru,1964,573368.4264,kg of nutrients +4001,Peru,1965,649772.3692,kg of nutrients +4002,Peru,1966,889205.6459,kg of nutrients +4003,Peru,1967,1022975.5794,kg of nutrients +4004,Peru,1968,750851.7779,kg of nutrients +4005,Peru,1969,937177.925,kg of nutrients +4006,Peru,1970,898898.5679,kg of nutrients +4007,Peru,1971,835238.245,kg of nutrients +4008,Peru,1972,824890.7202,kg of nutrients +4009,Peru,1973,832605.9932,kg of nutrients +4010,Peru,1974,853001.9539,kg of nutrients +4011,Peru,1975,822659.3890000001,kg of nutrients +4012,Peru,1976,853112.4635,kg of nutrients +4013,Peru,1977,789744.0286,kg of nutrients +4014,Peru,1978,754027.1122,kg of nutrients +4015,Peru,1979,757854.0848,kg of nutrients +4016,Peru,1980,742590.3913,kg of nutrients +4017,Peru,1981,767165.4011,kg of nutrients +4018,Peru,1982,755418.8573,kg of nutrients +4019,Peru,1983,640826.3356,kg of nutrients +4020,Peru,1984,722860.6954,kg of nutrients +4021,Peru,1985,724508.3139,kg of nutrients +4022,Peru,1986,836496.3766,kg of nutrients +4023,Peru,1987,928694.1001,kg of nutrients +4024,Peru,1988,827202.9407,kg of nutrients +4025,Peru,1989,855085.9099,kg of nutrients +4026,Peru,1990,710883.5061,kg of nutrients +4027,Peru,1991,683995.9755,kg of nutrients +4028,Peru,1992,599507.9698,kg of nutrients +4029,Peru,1993,715886.3786,kg of nutrients +4030,Peru,1994,765239.1117,kg of nutrients +4031,Peru,1995,765791.7837,kg of nutrients +4032,Peru,1996,918103.6268,kg of nutrients +4033,Peru,1997,871212.8482,kg of nutrients +4034,Peru,1998,911931.0642,kg of nutrients +4035,Peru,1999,916047.4055,kg of nutrients +4036,Peru,2000,921825.7547,kg of nutrients +4037,Peru,2001,791951.8424,kg of nutrients +4038,Peru,2002,814894.9739,kg of nutrients +4039,Peru,2003,735883.6141,kg of nutrients +4040,Peru,2004,728154.6249,kg of nutrients +4041,Peru,2005,868825.7831,kg of nutrients +4042,Peru,2006,974206.3823,kg of nutrients +4043,Peru,2007,977950.2598,kg of nutrients +4044,Peru,2008,1015565.8133,kg of nutrients +4045,Peru,2009,1128768.502,kg of nutrients +4046,Peru,2010,1079599.827,kg of nutrients +4047,Peru,2011,1037354.3838,kg of nutrients +4048,Peru,2012,1084857.2333,kg of nutrients +4049,Peru,2013,1103437.7681,kg of nutrients +4050,Philippines,1961,669009.5597,kg of nutrients +4051,Philippines,1962,453248.672,kg of nutrients +4052,Philippines,1963,454849.8959,kg of nutrients +4053,Philippines,1964,402366.2489,kg of nutrients +4054,Philippines,1965,377540.5546,kg of nutrients +4055,Philippines,1966,367095.2124,kg of nutrients +4056,Philippines,1967,307609.8163,kg of nutrients +4057,Philippines,1968,315223.6038,kg of nutrients +4058,Philippines,1969,302027.89,kg of nutrients +4059,Philippines,1970,351416.6946,kg of nutrients +4060,Philippines,1971,357923.1767,kg of nutrients +4061,Philippines,1972,371073.4425,kg of nutrients +4062,Philippines,1973,395548.0781,kg of nutrients +4063,Philippines,1974,361278.4417,kg of nutrients +4064,Philippines,1975,403722.2355,kg of nutrients +4065,Philippines,1976,447594.36299999995,kg of nutrients +4066,Philippines,1977,455235.7086,kg of nutrients +4067,Philippines,1978,469937.6111,kg of nutrients +4068,Philippines,1979,504921.4487,kg of nutrients +4069,Philippines,1980,542828.8939,kg of nutrients +4070,Philippines,1981,381923.2182,kg of nutrients +4071,Philippines,1982,397538.0499,kg of nutrients +4072,Philippines,1983,377158.2556,kg of nutrients +4073,Philippines,1984,380144.984,kg of nutrients +4074,Philippines,1985,393837.5074,kg of nutrients +4075,Philippines,1986,400579.9953,kg of nutrients +4076,Philippines,1987,387898.5026,kg of nutrients +4077,Philippines,1988,409065.5071,kg of nutrients +4078,Philippines,1989,394382.0356,kg of nutrients +4079,Philippines,1990,408904.6941,kg of nutrients +4080,Philippines,1991,383547.2537,kg of nutrients +4081,Philippines,1992,362144.4804,kg of nutrients +4082,Philippines,1993,365840.23299999995,kg of nutrients +4083,Philippines,1994,376586.4307,kg of nutrients +4084,Philippines,1995,395394.525,kg of nutrients +4085,Philippines,1996,400292.9377,kg of nutrients +4086,Philippines,1997,410640.5876,kg of nutrients +4087,Philippines,1998,426246.226,kg of nutrients +4088,Philippines,1999,441936.9415,kg of nutrients +4089,Philippines,2000,435892.3347,kg of nutrients +4090,Philippines,2001,418522.7597,kg of nutrients +4091,Philippines,2002,411850.554,kg of nutrients +4092,Philippines,2003,398215.5342,kg of nutrients +4093,Philippines,2004,405786.3901,kg of nutrients +4094,Philippines,2005,405822.3489,kg of nutrients +4095,Philippines,2006,398895.2516,kg of nutrients +4096,Philippines,2007,439256.1226,kg of nutrients +4097,Philippines,2008,448861.8279,kg of nutrients +4098,Philippines,2009,429597.9214,kg of nutrients +4099,Philippines,2010,436912.1634,kg of nutrients +4100,Philippines,2011,505882.5686,kg of nutrients +4101,Philippines,2012,495902.5415,kg of nutrients +4102,Philippines,2013,490516.4773,kg of nutrients +4103,Poland,1961,196391.296,kg of nutrients +4104,Poland,1962,216400.928,kg of nutrients +4105,Poland,1963,309476.224,kg of nutrients +4106,Poland,1964,359736.19200000004,kg of nutrients +4107,Poland,1965,524024.64,kg of nutrients +4108,Poland,1966,612451.36,kg of nutrients +4109,Poland,1967,489125.72799999994,kg of nutrients +4110,Poland,1968,377893.31200000003,kg of nutrients +4111,Poland,1969,340198.336,kg of nutrients +4112,Poland,1970,307623.712,kg of nutrients +4113,Poland,1971,368124.38399999996,kg of nutrients +4114,Poland,1972,345318.68799999997,kg of nutrients +4115,Poland,1973,295058.72,kg of nutrients +4116,Poland,1974,141010.976,kg of nutrients +4117,Poland,1975,111476.266,kg of nutrients +4118,Poland,1976,124556.0606,kg of nutrients +4119,Poland,1977,230901.7619,kg of nutrients +4120,Poland,1978,336962.1241,kg of nutrients +4121,Poland,1979,398592.6084,kg of nutrients +4122,Poland,1980,386753.8173,kg of nutrients +4123,Poland,1981,328425.2292,kg of nutrients +4124,Poland,1982,188454.4972,kg of nutrients +4125,Poland,1983,236699.6085,kg of nutrients +4126,Poland,1984,324263.4922,kg of nutrients +4127,Poland,1985,330352.1861,kg of nutrients +4128,Poland,1986,309304.4328,kg of nutrients +4129,Poland,1987,308940.193,kg of nutrients +4130,Poland,1988,313643.0843,kg of nutrients +4131,Poland,1989,359118.5864,kg of nutrients +4132,Poland,1990,364467.4841,kg of nutrients +4133,Poland,1991,379791.4626,kg of nutrients +4134,Poland,1992,329597.3261,kg of nutrients +4135,Poland,1993,301883.8717,kg of nutrients +4136,Poland,1994,157302.0342,kg of nutrients +4137,Poland,1995,400382.3182,kg of nutrients +4138,Poland,1996,284738.7849,kg of nutrients +4139,Poland,1997,392307.3502,kg of nutrients +4140,Poland,1998,427185.6284,kg of nutrients +4141,Poland,1999,396485.2049,kg of nutrients +4142,Poland,2000,429950.3705,kg of nutrients +4143,Poland,2001,381177.6862,kg of nutrients +4144,Poland,2002,415565.1592,kg of nutrients +4145,Poland,2003,306738.3526,kg of nutrients +4146,Poland,2004,346474.2132,kg of nutrients +4147,Poland,2005,265544.0535,kg of nutrients +4148,Poland,2006,300913.1422,kg of nutrients +4149,Poland,2007,348246.9965,kg of nutrients +4150,Poland,2008,265240.2666,kg of nutrients +4151,Poland,2009,252142.7109,kg of nutrients +4152,Poland,2010,302505.2052,kg of nutrients +4153,Poland,2011,309266.2336,kg of nutrients +4154,Poland,2012,250124.515,kg of nutrients +4155,Poland,2013,270911.179,kg of nutrients +4156,Portugal,1961,3547932.0481,kg of nutrients +4157,Portugal,1962,3512057.8346,kg of nutrients +4158,Portugal,1963,3483617.7995,kg of nutrients +4159,Portugal,1964,3606318.9451,kg of nutrients +4160,Portugal,1965,3316952.8759,kg of nutrients +4161,Portugal,1966,3455667.0572,kg of nutrients +4162,Portugal,1967,3077377.2127,kg of nutrients +4163,Portugal,1968,2919188.3956,kg of nutrients +4164,Portugal,1969,2904702.7049,kg of nutrients +4165,Portugal,1970,2933826.7394,kg of nutrients +4166,Portugal,1971,2733389.0758,kg of nutrients +4167,Portugal,1972,2673234.7507,kg of nutrients +4168,Portugal,1973,2557577.6668,kg of nutrients +4169,Portugal,1974,2442992.4757,kg of nutrients +4170,Portugal,1975,2488179.6064,kg of nutrients +4171,Portugal,1976,2205823.8136,kg of nutrients +4172,Portugal,1977,2212560.019,kg of nutrients +4173,Portugal,1978,2336465.0611,kg of nutrients +4174,Portugal,1979,2158133.2621,kg of nutrients +4175,Portugal,1980,2265525.7379,kg of nutrients +4176,Portugal,1981,1976159.8594,kg of nutrients +4177,Portugal,1982,2033648.6634,kg of nutrients +4178,Portugal,1983,1919244.1183,kg of nutrients +4179,Portugal,1984,1825671.4026,kg of nutrients +4180,Portugal,1985,1704478.8936,kg of nutrients +4181,Portugal,1986,641803.121,kg of nutrients +4182,Portugal,1987,635250.089,kg of nutrients +4183,Portugal,1988,615028.503,kg of nutrients +4184,Portugal,1989,632668.2864,kg of nutrients +4185,Portugal,1990,599593.6674,kg of nutrients +4186,Portugal,1991,578375.7052,kg of nutrients +4187,Portugal,1992,430038.1127,kg of nutrients +4188,Portugal,1993,280031.2582,kg of nutrients +4189,Portugal,1994,258650.4317,kg of nutrients +4190,Portugal,1995,240344.4837,kg of nutrients +4191,Portugal,1996,219183.3385,kg of nutrients +4192,Portugal,1997,192690.7587,kg of nutrients +4193,Portugal,1998,171718.1796,kg of nutrients +4194,Portugal,1999,126624.3575,kg of nutrients +4195,Portugal,2000,119963.6473,kg of nutrients +4196,Portugal,2001,113635.3795,kg of nutrients +4197,Portugal,2002,106799.6337,kg of nutrients +4198,Portugal,2003,99142.4553,kg of nutrients +4199,Portugal,2004,92194.2223,kg of nutrients +4200,Portugal,2005,71912.8186,kg of nutrients +4201,Portugal,2006,75230.1995,kg of nutrients +4202,Portugal,2007,69436.7034,kg of nutrients +4203,Portugal,2008,52322.3695,kg of nutrients +4204,Portugal,2009,36782.2609,kg of nutrients +4205,Portugal,2010,36579.0005,kg of nutrients +4206,Portugal,2011,36675.8155,kg of nutrients +4207,Portugal,2012,35219.1853,kg of nutrients +4208,Portugal,2013,34933.9647,kg of nutrients +4209,Puerto Rico,1961,54608.8838,kg of nutrients +4210,Puerto Rico,1962,56746.612,kg of nutrients +4211,Puerto Rico,1963,51077.4888,kg of nutrients +4212,Puerto Rico,1964,44006.0715,kg of nutrients +4213,Puerto Rico,1965,44093.9227,kg of nutrients +4214,Puerto Rico,1966,40870.3935,kg of nutrients +4215,Puerto Rico,1967,40870.3935,kg of nutrients +4216,Puerto Rico,1968,7259.3888,kg of nutrients +4217,Puerto Rico,1969,7259.3888,kg of nutrients +4218,Puerto Rico,1970,7259.3888,kg of nutrients +4219,Puerto Rico,1971,7259.3888,kg of nutrients +4220,Puerto Rico,1972,7259.3888,kg of nutrients +4221,Puerto Rico,1973,7259.3888,kg of nutrients +4222,Puerto Rico,1974,7259.3888,kg of nutrients +4223,Puerto Rico,1975,7259.3888,kg of nutrients +4224,Puerto Rico,1976,7259.3888,kg of nutrients +4225,Puerto Rico,1977,7259.3888,kg of nutrients +4226,Puerto Rico,1978,7259.3888,kg of nutrients +4227,Puerto Rico,1979,7259.3888,kg of nutrients +4228,Puerto Rico,1980,7259.3888,kg of nutrients +4229,Puerto Rico,1981,7259.3888,kg of nutrients +4230,Puerto Rico,1982,7259.3888,kg of nutrients +4231,Puerto Rico,1983,7310.5923,kg of nutrients +4232,Puerto Rico,1984,5156.0186,kg of nutrients +4233,Puerto Rico,1985,3927.48,kg of nutrients +4234,Puerto Rico,1986,3303.9482,kg of nutrients +4235,Puerto Rico,1987,2377.913,kg of nutrients +4236,Puerto Rico,1988,1852.0704,kg of nutrients +4237,Puerto Rico,1989,1088.9083,kg of nutrients +4238,Puerto Rico,1990,825.987,kg of nutrients +4239,Puerto Rico,1991,362.9694,kg of nutrients +4240,Puerto Rico,1992,165.1974,kg of nutrients +4241,Puerto Rico,1993,143.1318,kg of nutrients +4242,Puerto Rico,1994,125.1781,kg of nutrients +4243,Puerto Rico,1995,113.4716,kg of nutrients +4244,Puerto Rico,1996,92.6035,kg of nutrients +4245,Puerto Rico,1997,177.7624,kg of nutrients +4246,Puerto Rico,1998,416.0255,kg of nutrients +4247,Puerto Rico,1999,1104.0397,kg of nutrients +4248,Puerto Rico,2000,3011.9056,kg of nutrients +4249,Puerto Rico,2001,1907.8658,kg of nutrients +4250,Puerto Rico,2002,1755.1988,kg of nutrients +4251,Puerto Rico,2003,197.77200000000002,kg of nutrients +4252,Puerto Rico,2004,202.8924,kg of nutrients +4253,Puerto Rico,2005,180.5585,kg of nutrients +4254,Puerto Rico,2006,225.6981,kg of nutrients +4255,Puerto Rico,2007,288.52299999999997,kg of nutrients +4256,Puerto Rico,2008,328.6474,kg of nutrients +4257,Puerto Rico,2009,332.3658,kg of nutrients +4258,Puerto Rico,2010,246.7463,kg of nutrients +4259,Puerto Rico,2011,219.3227,kg of nutrients +4260,Puerto Rico,2012,187.8166,kg of nutrients +4261,Puerto Rico,2013,157.092,kg of nutrients +4262,Republic of Korea,1961,361691.5541,kg of nutrients +4263,Republic of Korea,1962,356481.1363,kg of nutrients +4264,Republic of Korea,1963,367614.4052,kg of nutrients +4265,Republic of Korea,1964,381493.2139,kg of nutrients +4266,Republic of Korea,1965,402302.2,kg of nutrients +4267,Republic of Korea,1966,481718.256,kg of nutrients +4268,Republic of Korea,1967,506039.2781,kg of nutrients +4269,Republic of Korea,1968,548350.2945,kg of nutrients +4270,Republic of Korea,1969,550718.4356,kg of nutrients +4271,Republic of Korea,1970,528344.6317,kg of nutrients +4272,Republic of Korea,1971,482040.5475,kg of nutrients +4273,Republic of Korea,1972,447878.9823,kg of nutrients +4274,Republic of Korea,1973,452344.8824,kg of nutrients +4275,Republic of Korea,1974,484430.6493,kg of nutrients +4276,Republic of Korea,1975,512517.4611,kg of nutrients +4277,Republic of Korea,1976,557458.3445,kg of nutrients +4278,Republic of Korea,1977,566710.934,kg of nutrients +4279,Republic of Korea,1978,437732.8735,kg of nutrients +4280,Republic of Korea,1979,501662.2751,kg of nutrients +4281,Republic of Korea,1980,465327.3226,kg of nutrients +4282,Republic of Korea,1981,526736.6557,kg of nutrients +4283,Republic of Korea,1982,581412.2631,kg of nutrients +4284,Republic of Korea,1983,453841.5288,kg of nutrients +4285,Republic of Korea,1984,388736.7448,kg of nutrients +4286,Republic of Korea,1985,374136.2837,kg of nutrients +4287,Republic of Korea,1986,450219.8259,kg of nutrients +4288,Republic of Korea,1987,517326.7184,kg of nutrients +4289,Republic of Korea,1988,536678.387,kg of nutrients +4290,Republic of Korea,1989,452477.5265,kg of nutrients +4291,Republic of Korea,1990,343623.8846,kg of nutrients +4292,Republic of Korea,1991,369770.2581,kg of nutrients +4293,Republic of Korea,1992,320860.1318,kg of nutrients +4294,Republic of Korea,1993,286820.1222,kg of nutrients +4295,Republic of Korea,1994,228827.75,kg of nutrients +4296,Republic of Korea,1995,267155.2054,kg of nutrients +4297,Republic of Korea,1996,245653.7639,kg of nutrients +4298,Republic of Korea,1997,209025.4352,kg of nutrients +4299,Republic of Korea,1998,201857.1625,kg of nutrients +4300,Republic of Korea,1999,186077.8568,kg of nutrients +4301,Republic of Korea,2000,173939.9553,kg of nutrients +4302,Republic of Korea,2001,169063.6469,kg of nutrients +4303,Republic of Korea,2002,130284.7792,kg of nutrients +4304,Republic of Korea,2003,104281.1021,kg of nutrients +4305,Republic of Korea,2004,108264.2892,kg of nutrients +4306,Republic of Korea,2005,84092.6949,kg of nutrients +4307,Republic of Korea,2006,74144.3633,kg of nutrients +4308,Republic of Korea,2007,90118.5411,kg of nutrients +4309,Republic of Korea,2008,88592.7233,kg of nutrients +4310,Republic of Korea,2009,85319.9691,kg of nutrients +4311,Republic of Korea,2010,74076.1979,kg of nutrients +4312,Republic of Korea,2011,67480.8886,kg of nutrients +4313,Republic of Korea,2012,84197.9297,kg of nutrients +4314,Republic of Korea,2013,123263.3892,kg of nutrients +4315,Republic of Moldova,1992,222018.345,kg of nutrients +4316,Republic of Moldova,1993,300995.4358,kg of nutrients +4317,Republic of Moldova,1994,225568.0582,kg of nutrients +4318,Republic of Moldova,1995,227294.9851,kg of nutrients +4319,Republic of Moldova,1996,230818.3098,kg of nutrients +4320,Republic of Moldova,1997,317766.8982,kg of nutrients +4321,Republic of Moldova,1998,308543.0724,kg of nutrients +4322,Republic of Moldova,1999,318547.332,kg of nutrients +4323,Republic of Moldova,2000,258687.6108,kg of nutrients +4324,Republic of Moldova,2001,417238.2778,kg of nutrients +4325,Republic of Moldova,2002,328489.0279,kg of nutrients +4326,Republic of Moldova,2003,275584.17100000003,kg of nutrients +4327,Republic of Moldova,2004,275267.6241,kg of nutrients +4328,Republic of Moldova,2005,293515.3089,kg of nutrients +4329,Republic of Moldova,2006,283714.9831,kg of nutrients +4330,Republic of Moldova,2007,143870.0946,kg of nutrients +4331,Republic of Moldova,2008,195190.9985,kg of nutrients +4332,Republic of Moldova,2009,153710.9541,kg of nutrients +4333,Republic of Moldova,2010,180508.7855,kg of nutrients +4334,Republic of Moldova,2011,195487.9473,kg of nutrients +4335,Republic of Moldova,2012,132798.7447,kg of nutrients +4336,Republic of Moldova,2013,131726.9064,kg of nutrients +4337,Réunion,1961,8935.2976,kg of nutrients +4338,Réunion,1962,8935.2976,kg of nutrients +4339,Réunion,1963,8935.2976,kg of nutrients +4340,Réunion,1964,8935.2976,kg of nutrients +4341,Réunion,1965,6562.1024,kg of nutrients +4342,Réunion,1966,7562.584,kg of nutrients +4343,Réunion,1967,6562.1024,kg of nutrients +4344,Réunion,1968,6562.1024,kg of nutrients +4345,Réunion,1969,6562.1024,kg of nutrients +4346,Réunion,1970,6562.1024,kg of nutrients +4347,Réunion,1971,7353.744000000001,kg of nutrients +4348,Réunion,1972,6683.7264,kg of nutrients +4349,Réunion,1973,6683.7264,kg of nutrients +4350,Réunion,1974,7353.744000000001,kg of nutrients +4351,Réunion,1975,7353.744000000001,kg of nutrients +4352,Réunion,1976,7353.744000000001,kg of nutrients +4353,Réunion,1977,7353.744000000001,kg of nutrients +4354,Réunion,1978,8335.8734,kg of nutrients +4355,Réunion,1979,7148.9299,kg of nutrients +4356,Réunion,1980,7148.9299,kg of nutrients +4357,Réunion,1981,7338.3829,kg of nutrients +4358,Réunion,1982,2759.9264,kg of nutrients +4359,Réunion,1983,4028.6226,kg of nutrients +4360,Réunion,1984,3690.6794,kg of nutrients +4361,Réunion,1985,3690.6794,kg of nutrients +4362,Réunion,1986,3424.4211,kg of nutrients +4363,Réunion,1987,3337.7777,kg of nutrients +4364,Réunion,1988,3721.8041,kg of nutrients +4365,Réunion,1989,3199.5282,kg of nutrients +4366,Réunion,1990,3840.5503,kg of nutrients +4367,Réunion,1991,4197.525,kg of nutrients +4368,Réunion,1992,4257.0821,kg of nutrients +4369,Réunion,1993,5989.0822,kg of nutrients +4370,Réunion,1994,6217.1392,kg of nutrients +4371,Réunion,1995,6217.1392,kg of nutrients +4372,Réunion,1996,6217.1392,kg of nutrients +4373,Réunion,1997,7399.191999999999,kg of nutrients +4374,Réunion,1998,9027.9232,kg of nutrients +4375,Réunion,1999,13541.8848,kg of nutrients +4376,Réunion,2000,15071.5725,kg of nutrients +4377,Réunion,2001,17384.6034,kg of nutrients +4378,Réunion,2002,19643.4124,kg of nutrients +4379,Réunion,2003,21849.4336,kg of nutrients +4380,Réunion,2004,23944.9454,kg of nutrients +4381,Réunion,2005,20279.6927,kg of nutrients +4382,Réunion,2006,21302.9957,kg of nutrients +4383,Réunion,2007,22229.0359,kg of nutrients +4384,Réunion,2008,23138.4324,kg of nutrients +4385,Réunion,2009,24039.6801,kg of nutrients +4386,Réunion,2010,24944.3523,kg of nutrients +4387,Réunion,2011,25864.5792,kg of nutrients +4388,Réunion,2012,26106.8768,kg of nutrients +4389,Réunion,2013,26618.912,kg of nutrients +4390,Romania,1961,11381470.9536,kg of nutrients +4391,Romania,1962,11218424.7154,kg of nutrients +4392,Romania,1963,12616088.8736,kg of nutrients +4393,Romania,1964,12975823.8144,kg of nutrients +4394,Romania,1965,11663034.2856,kg of nutrients +4395,Romania,1966,11942519.4112,kg of nutrients +4396,Romania,1967,11579991.8656,kg of nutrients +4397,Romania,1968,10347407.624,kg of nutrients +4398,Romania,1969,9405087.9456,kg of nutrients +4399,Romania,1970,9282274.3488,kg of nutrients +4400,Romania,1971,8476017.6288,kg of nutrients +4401,Romania,1972,8653331.216,kg of nutrients +4402,Romania,1973,7079752.9120000005,kg of nutrients +4403,Romania,1974,7481083.4816,kg of nutrients +4404,Romania,1975,6963692.9815,kg of nutrients +4405,Romania,1976,6576946.2688,kg of nutrients +4406,Romania,1977,5535502.1472,kg of nutrients +4407,Romania,1978,5201348.5439,kg of nutrients +4408,Romania,1979,3523094.5519999997,kg of nutrients +4409,Romania,1980,3981667.7056,kg of nutrients +4410,Romania,1981,3624083.3281,kg of nutrients +4411,Romania,1982,4111092.5394,kg of nutrients +4412,Romania,1983,5537799.6639,kg of nutrients +4413,Romania,1984,5656577.68,kg of nutrients +4414,Romania,1985,2226170.2944,kg of nutrients +4415,Romania,1986,2262008.048,kg of nutrients +4416,Romania,1987,1955501.5104,kg of nutrients +4417,Romania,1988,2213164.3648,kg of nutrients +4418,Romania,1989,2205598.9472,kg of nutrients +4419,Romania,1990,830428.8316,kg of nutrients +4420,Romania,1991,579285.5057,kg of nutrients +4421,Romania,1992,556203.6478,kg of nutrients +4422,Romania,1993,503879.2874,kg of nutrients +4423,Romania,1994,428624.5356,kg of nutrients +4424,Romania,1995,436154.0438,kg of nutrients +4425,Romania,1996,497114.6812,kg of nutrients +4426,Romania,1997,474349.7684,kg of nutrients +4427,Romania,1998,452098.898,kg of nutrients +4428,Romania,1999,452516.6876,kg of nutrients +4429,Romania,2000,293600.9255,kg of nutrients +4430,Romania,2001,345445.0511,kg of nutrients +4431,Romania,2002,362712.2073,kg of nutrients +4432,Romania,2003,388784.8924,kg of nutrients +4433,Romania,2004,612235.8732,kg of nutrients +4434,Romania,2005,642871.1460000001,kg of nutrients +4435,Romania,2006,606542.9058,kg of nutrients +4436,Romania,2007,390544.7457,kg of nutrients +4437,Romania,2008,397698.2028,kg of nutrients +4438,Romania,2009,335334.4292,kg of nutrients +4439,Romania,2010,293632.8179,kg of nutrients +4440,Romania,2011,288777.6828,kg of nutrients +4441,Romania,2012,274159.1727,kg of nutrients +4442,Romania,2013,254468.3288,kg of nutrients +4443,Russian Federation,1992,67090.3891,kg of nutrients +4444,Russian Federation,1993,65512.5155,kg of nutrients +4445,Russian Federation,1994,59256.2506,kg of nutrients +4446,Russian Federation,1995,53014.4848,kg of nutrients +4447,Russian Federation,1996,72479.9817,kg of nutrients +4448,Russian Federation,1997,65225.3107,kg of nutrients +4449,Russian Federation,1998,61447.5853,kg of nutrients +4450,Russian Federation,1999,64090.7814,kg of nutrients +4451,Russian Federation,2000,64329.425,kg of nutrients +4452,Russian Federation,2001,68043.6931,kg of nutrients +4453,Russian Federation,2002,63510.1686,kg of nutrients +4454,Russian Federation,2003,95105.3202,kg of nutrients +4455,Russian Federation,2004,103173.9005,kg of nutrients +4456,Russian Federation,2005,99814.031,kg of nutrients +4457,Russian Federation,2006,102738.6706,kg of nutrients +4458,Russian Federation,2007,77872.0134,kg of nutrients +4459,Russian Federation,2008,60145.3548,kg of nutrients +4460,Russian Federation,2009,67779.5449,kg of nutrients +4461,Russian Federation,2010,58427.2143,kg of nutrients +4462,Russian Federation,2011,63674.6797,kg of nutrients +4463,Russian Federation,2012,62714.5106,kg of nutrients +4464,Russian Federation,2013,66898.8444,kg of nutrients +4465,Rwanda,1961,1419286.7784,kg of nutrients +4466,Rwanda,1962,1366722.825,kg of nutrients +4467,Rwanda,1963,1386549.1046,kg of nutrients +4468,Rwanda,1964,1163040.2147,kg of nutrients +4469,Rwanda,1965,1392690.8348,kg of nutrients +4470,Rwanda,1966,1816728.6368,kg of nutrients +4471,Rwanda,1967,1828525.576,kg of nutrients +4472,Rwanda,1968,1758710.1432,kg of nutrients +4473,Rwanda,1969,1956918.0659999999,kg of nutrients +4474,Rwanda,1970,1923169.7869999998,kg of nutrients +4475,Rwanda,1971,1934429.2968,kg of nutrients +4476,Rwanda,1972,1823723.9657,kg of nutrients +4477,Rwanda,1973,1872637.4328,kg of nutrients +4478,Rwanda,1974,1977983.85,kg of nutrients +4479,Rwanda,1975,2201051.4299,kg of nutrients +4480,Rwanda,1976,2347039.2004,kg of nutrients +4481,Rwanda,1977,2466405.2031,kg of nutrients +4482,Rwanda,1978,2471786.1183,kg of nutrients +4483,Rwanda,1979,2698560.8544,kg of nutrients +4484,Rwanda,1980,2842226.7369999997,kg of nutrients +4485,Rwanda,1981,2922110.2464,kg of nutrients +4486,Rwanda,1982,3056064.1821,kg of nutrients +4487,Rwanda,1983,3590787.1525,kg of nutrients +4488,Rwanda,1984,3421070.8576,kg of nutrients +4489,Rwanda,1985,4134388.8096,kg of nutrients +4490,Rwanda,1986,3785827.0038,kg of nutrients +4491,Rwanda,1987,3766583.4448,kg of nutrients +4492,Rwanda,1988,3379838.8128,kg of nutrients +4493,Rwanda,1989,2939458.9536,kg of nutrients +4494,Rwanda,1990,2953155.6523,kg of nutrients +4495,Rwanda,1991,2836385.76,kg of nutrients +4496,Rwanda,1992,2857269.76,kg of nutrients +4497,Rwanda,1993,2190416.224,kg of nutrients +4498,Rwanda,1994,513197.0496,kg of nutrients +4499,Rwanda,1995,1985199.552,kg of nutrients +4500,Rwanda,1996,2753878.0101,kg of nutrients +4501,Rwanda,1997,2460400.6237,kg of nutrients +4502,Rwanda,1998,2537026.3815,kg of nutrients +4503,Rwanda,1999,2418009.0676,kg of nutrients +4504,Rwanda,2000,3583243.7133,kg of nutrients +4505,Rwanda,2001,3800632.1215,kg of nutrients +4506,Rwanda,2002,3929441.6402,kg of nutrients +4507,Rwanda,2003,3879937.1548,kg of nutrients +4508,Rwanda,2004,3392414.9942,kg of nutrients +4509,Rwanda,2005,3352581.8043,kg of nutrients +4510,Rwanda,2006,4104169.4401,kg of nutrients +4511,Rwanda,2007,4351325.4131,kg of nutrients +4512,Rwanda,2008,4082763.0133,kg of nutrients +4513,Rwanda,2009,4246694.9679,kg of nutrients +4514,Rwanda,2010,4053616.1282,kg of nutrients +4515,Rwanda,2011,4240406.1793,kg of nutrients +4516,Rwanda,2012,5789055.497,kg of nutrients +4517,Rwanda,2013,5817441.1245,kg of nutrients +4518,Serbia,2006,395855.7129,kg of nutrients +4519,Serbia,2007,325103.082,kg of nutrients +4520,Serbia,2008,375053.9867,kg of nutrients +4521,Serbia,2009,395103.0079,kg of nutrients +4522,Serbia,2010,372276.6229,kg of nutrients +4523,Serbia,2011,347874.802,kg of nutrients +4524,Serbia,2012,149475.8003,kg of nutrients +4525,Serbia,2013,156634.7808,kg of nutrients +4526,Serbia and Montenegro,1992,552457.056,kg of nutrients +4527,Serbia and Montenegro,1993,423029.6918,kg of nutrients +4528,Serbia and Montenegro,1994,491666.4,kg of nutrients +4529,Serbia and Montenegro,1995,554362.8838,kg of nutrients +4530,Serbia and Montenegro,1996,473981.05600000004,kg of nutrients +4531,Serbia and Montenegro,1997,524531.0079999999,kg of nutrients +4532,Serbia and Montenegro,1998,521069.6074,kg of nutrients +4533,Serbia and Montenegro,1999,555501.9138,kg of nutrients +4534,Serbia and Montenegro,2000,375381.3175,kg of nutrients +4535,Serbia and Montenegro,2001,506004.7766,kg of nutrients +4536,Serbia and Montenegro,2002,490400.1392,kg of nutrients +4537,Serbia and Montenegro,2003,433482.4323,kg of nutrients +4538,Serbia and Montenegro,2004,505505.8599,kg of nutrients +4539,Serbia and Montenegro,2005,473130.5432,kg of nutrients +4540,Slovakia,1993,28061.7252,kg of nutrients +4541,Slovakia,1994,30196.3489,kg of nutrients +4542,Slovakia,1995,22084.7362,kg of nutrients +4543,Slovakia,1996,22817.6825,kg of nutrients +4544,Slovakia,1997,21695.2906,kg of nutrients +4545,Slovakia,1998,22619.5425,kg of nutrients +4546,Slovakia,1999,37073.7714,kg of nutrients +4547,Slovakia,2000,25505.0938,kg of nutrients +4548,Slovakia,2001,5230.0057,kg of nutrients +4549,Slovakia,2002,9180.4644,kg of nutrients +4550,Slovakia,2003,9215.7659,kg of nutrients +4551,Slovakia,2004,8757.1893,kg of nutrients +4552,Slovakia,2005,8263.5188,kg of nutrients +4553,Slovakia,2006,7807.3356,kg of nutrients +4554,Slovakia,2007,7484.3163,kg of nutrients +4555,Slovakia,2008,2300.3371,kg of nutrients +4556,Slovakia,2009,2919.2549,kg of nutrients +4557,Slovakia,2010,3100.1122,kg of nutrients +4558,Slovakia,2011,1260.2042,kg of nutrients +4559,Slovakia,2012,1614.3137,kg of nutrients +4560,Slovakia,2013,839.0584,kg of nutrients +4561,Slovenia,1992,8628.7608,kg of nutrients +4562,Slovenia,1993,8898.9819,kg of nutrients +4563,Slovenia,1994,8834.353000000001,kg of nutrients +4564,Slovenia,1995,11436.9984,kg of nutrients +4565,Slovenia,1996,9642.0791,kg of nutrients +4566,Slovenia,1997,9732.4621,kg of nutrients +4567,Slovenia,1998,8207.4841,kg of nutrients +4568,Slovenia,1999,5701.7228,kg of nutrients +4569,Slovenia,2000,5275.3183,kg of nutrients +4570,Slovenia,2001,5215.692,kg of nutrients +4571,Slovenia,2002,5242.2719,kg of nutrients +4572,Slovenia,2003,5959.3814,kg of nutrients +4573,Slovenia,2004,6586.4618,kg of nutrients +4574,Slovenia,2005,8267.9502,kg of nutrients +4575,Slovenia,2006,5495.9873,kg of nutrients +4576,Slovenia,2007,5561.4478,kg of nutrients +4577,Slovenia,2008,4762.6729,kg of nutrients +4578,Slovenia,2009,5853.3079,kg of nutrients +4579,Slovenia,2010,4824.3247,kg of nutrients +4580,Slovenia,2011,5008.6574,kg of nutrients +4581,Slovenia,2012,4097.2347,kg of nutrients +4582,Slovenia,2013,4760.682,kg of nutrients +4583,Somalia,1961,31409.0208,kg of nutrients +4584,Somalia,1962,11883.8093,kg of nutrients +4585,Somalia,1963,17914.3136,kg of nutrients +4586,Somalia,1964,26686.2192,kg of nutrients +4587,Somalia,1965,58630.864,kg of nutrients +4588,Somalia,1966,66634.7168,kg of nutrients +4589,Somalia,1967,69380.144,kg of nutrients +4590,Somalia,1968,69380.144,kg of nutrients +4591,Somalia,1969,89807.45599999999,kg of nutrients +4592,Somalia,1970,215632.2496,kg of nutrients +4593,Somalia,1971,193668.832,kg of nutrients +4594,Somalia,1972,260303.5488,kg of nutrients +4595,Somalia,1973,163469.1328,kg of nutrients +4596,Somalia,1974,146996.5696,kg of nutrients +4597,Somalia,1975,188090.5408,kg of nutrients +4598,Somalia,1976,196838.8576,kg of nutrients +4599,Somalia,1977,192186.8224,kg of nutrients +4600,Somalia,1978,214008.7072,kg of nutrients +4601,Somalia,1979,165567.9104,kg of nutrients +4602,Somalia,1980,185345.1136,kg of nutrients +4603,Somalia,1981,257332.6112,kg of nutrients +4604,Somalia,1982,277810.56,kg of nutrients +4605,Somalia,1983,267569.856,kg of nutrients +4606,Somalia,1984,364030.3104,kg of nutrients +4607,Somalia,1985,471297.6,kg of nutrients +4608,Somalia,1986,280178.5664,kg of nutrients +4609,Somalia,1987,439453.6032,kg of nutrients +4610,Somalia,1988,342659.4464,kg of nutrients +4611,Somalia,1989,379239.456,kg of nutrients +4612,Somalia,1990,391804.448,kg of nutrients +4613,Somalia,1991,421301.516,kg of nutrients +4614,Somalia,1992,334099.84,kg of nutrients +4615,Somalia,1993,391332.672,kg of nutrients +4616,Somalia,1994,461733.4272,kg of nutrients +4617,Somalia,1995,476019.776,kg of nutrients +4618,Somalia,1996,488584.768,kg of nutrients +4619,Somalia,1997,501149.76,kg of nutrients +4620,Somalia,1998,476019.776,kg of nutrients +4621,Somalia,1999,488584.768,kg of nutrients +4622,Somalia,2000,501149.76,kg of nutrients +4623,Somalia,2001,546053.488,kg of nutrients +4624,Somalia,2002,559679.7664,kg of nutrients +4625,Somalia,2003,573507.76,kg of nutrients +4626,Somalia,2004,593517.392,kg of nutrients +4627,Somalia,2005,599217.1472,kg of nutrients +4628,Somalia,2006,576067.936,kg of nutrients +4629,Somalia,2007,619348.0547,kg of nutrients +4630,Somalia,2008,660394.3251,kg of nutrients +4631,Somalia,2009,690495.1832,kg of nutrients +4632,Somalia,2010,718612.8990000001,kg of nutrients +4633,Somalia,2011,745076.0794,kg of nutrients +4634,Somalia,2012,808267.104,kg of nutrients +4635,Somalia,2013,723580.0,kg of nutrients +4636,South Africa,1961,819957.728,kg of nutrients +4637,South Africa,1962,611473.216,kg of nutrients +4638,South Africa,1963,663585.696,kg of nutrients +4639,South Africa,1964,688715.68,kg of nutrients +4640,South Africa,1965,721762.08,kg of nutrients +4641,South Africa,1966,739919.2,kg of nutrients +4642,South Africa,1967,977745.088,kg of nutrients +4643,South Africa,1968,833466.272,kg of nutrients +4644,South Africa,1969,705020.288,kg of nutrients +4645,South Africa,1970,672445.6640000001,kg of nutrients +4646,South Africa,1971,749250.944,kg of nutrients +4647,South Africa,1972,786474.1440000001,kg of nutrients +4648,South Africa,1973,802744.16,kg of nutrients +4649,South Africa,1974,971244.0,kg of nutrients +4650,South Africa,1975,1139640.064,kg of nutrients +4651,South Africa,1976,1148028.256,kg of nutrients +4652,South Africa,1977,1163423.904,kg of nutrients +4653,South Africa,1978,1322120.2240000002,kg of nutrients +4654,South Africa,1979,1402561.344,kg of nutrients +4655,South Africa,1980,1051282.528,kg of nutrients +4656,South Africa,1981,1050373.568,kg of nutrients +4657,South Africa,1982,958679.0079999999,kg of nutrients +4658,South Africa,1983,859505.2159999999,kg of nutrients +4659,South Africa,1984,998663.68,kg of nutrients +4660,South Africa,1985,944261.5040000001,kg of nutrients +4661,South Africa,1986,1104810.336,kg of nutrients +4662,South Africa,1987,1154598.528,kg of nutrients +4663,South Africa,1988,1069911.424,kg of nutrients +4664,South Africa,1989,1194652.384,kg of nutrients +4665,South Africa,1990,1344051.552,kg of nutrients +4666,South Africa,1991,1090672.763,kg of nutrients +4667,South Africa,1992,540842.2679999999,kg of nutrients +4668,South Africa,1993,663290.0419,kg of nutrients +4669,South Africa,1994,631028.368,kg of nutrients +4670,South Africa,1995,668638.8652,kg of nutrients +4671,South Africa,1996,674733.3441,kg of nutrients +4672,South Africa,1997,616156.384,kg of nutrients +4673,South Africa,1998,504712.092,kg of nutrients +4674,South Africa,1999,871559.4240000001,kg of nutrients +4675,South Africa,2000,903210.9774,kg of nutrients +4676,South Africa,2001,1049487.5418,kg of nutrients +4677,South Africa,2002,636467.511,kg of nutrients +4678,South Africa,2003,688482.7102,kg of nutrients +4679,South Africa,2004,828016.928,kg of nutrients +4680,South Africa,2005,724523.7286,kg of nutrients +4681,South Africa,2006,752905.5152,kg of nutrients +4682,South Africa,2007,580113.6838,kg of nutrients +4683,South Africa,2008,628047.9912,kg of nutrients +4684,South Africa,2009,669292.4266,kg of nutrients +4685,South Africa,2010,595872.6178,kg of nutrients +4686,South Africa,2011,526882.793,kg of nutrients +4687,South Africa,2012,540139.6286,kg of nutrients +4688,South Africa,2013,632459.2624,kg of nutrients +4689,South Sudan,2012,43229.1072,kg of nutrients +4690,South Sudan,2013,38304.8256,kg of nutrients +4691,Spain,1961,2410976.656,kg of nutrients +4692,Spain,1962,2517723.7408,kg of nutrients +4693,Spain,1963,2580704.0704,kg of nutrients +4694,Spain,1964,2321033.3344,kg of nutrients +4695,Spain,1965,2277558.0087,kg of nutrients +4696,Spain,1966,2312665.8976,kg of nutrients +4697,Spain,1967,2248140.9807,kg of nutrients +4698,Spain,1968,2151616.3655,kg of nutrients +4699,Spain,1969,2142897.6374,kg of nutrients +4700,Spain,1970,2028078.1024,kg of nutrients +4701,Spain,1971,2006822.3488,kg of nutrients +4702,Spain,1972,2037214.2176,kg of nutrients +4703,Spain,1973,1920471.4432,kg of nutrients +4704,Spain,1974,1836279.0784,kg of nutrients +4705,Spain,1975,1800766.8576,kg of nutrients +4706,Spain,1976,1712946.5280000002,kg of nutrients +4707,Spain,1977,1524255.264,kg of nutrients +4708,Spain,1978,1619932.2464,kg of nutrients +4709,Spain,1979,1572151.936,kg of nutrients +4710,Spain,1980,1392694.6016,kg of nutrients +4711,Spain,1981,1356535.7312,kg of nutrients +4712,Spain,1982,1265700.7456,kg of nutrients +4713,Spain,1983,1214107.2192,kg of nutrients +4714,Spain,1984,1202481.6797,kg of nutrients +4715,Spain,1985,1129154.9903,kg of nutrients +4716,Spain,1986,1171952.3776,kg of nutrients +4717,Spain,1987,1134799.5304,kg of nutrients +4718,Spain,1988,1022095.2704,kg of nutrients +4719,Spain,1989,949127.4208,kg of nutrients +4720,Spain,1990,883048.4576,kg of nutrients +4721,Spain,1991,823429.0139,kg of nutrients +4722,Spain,1992,636495.6204,kg of nutrients +4723,Spain,1993,566581.2876,kg of nutrients +4724,Spain,1994,562731.6278,kg of nutrients +4725,Spain,1995,540364.7968,kg of nutrients +4726,Spain,1996,546593.1968,kg of nutrients +4727,Spain,1997,342875.8304,kg of nutrients +4728,Spain,1998,288152.5376,kg of nutrients +4729,Spain,1999,264841.0293,kg of nutrients +4730,Spain,2000,160641.699,kg of nutrients +4731,Spain,2001,173368.7523,kg of nutrients +4732,Spain,2002,148358.1343,kg of nutrients +4733,Spain,2003,162710.9247,kg of nutrients +4734,Spain,2004,169184.0153,kg of nutrients +4735,Spain,2005,154875.4238,kg of nutrients +4736,Spain,2006,140133.2379,kg of nutrients +4737,Spain,2007,120090.6544,kg of nutrients +4738,Spain,2008,104619.6768,kg of nutrients +4739,Spain,2009,126883.7541,kg of nutrients +4740,Spain,2010,115681.7068,kg of nutrients +4741,Spain,2011,111943.8277,kg of nutrients +4742,Spain,2012,99847.2004,kg of nutrients +4743,Spain,2013,100617.7504,kg of nutrients +4744,Sri Lanka,1961,56579.5525,kg of nutrients +4745,Sri Lanka,1962,73213.7531,kg of nutrients +4746,Sri Lanka,1963,69455.8232,kg of nutrients +4747,Sri Lanka,1964,61559.4978,kg of nutrients +4748,Sri Lanka,1965,95046.683,kg of nutrients +4749,Sri Lanka,1966,72079.3497,kg of nutrients +4750,Sri Lanka,1967,65955.2762,kg of nutrients +4751,Sri Lanka,1968,84799.8114,kg of nutrients +4752,Sri Lanka,1969,77003.8013,kg of nutrients +4753,Sri Lanka,1970,67088.4939,kg of nutrients +4754,Sri Lanka,1971,49748.4995,kg of nutrients +4755,Sri Lanka,1972,64657.3424,kg of nutrients +4756,Sri Lanka,1973,90452.9722,kg of nutrients +4757,Sri Lanka,1974,123543.5314,kg of nutrients +4758,Sri Lanka,1975,121831.6477,kg of nutrients +4759,Sri Lanka,1976,136005.41199999998,kg of nutrients +4760,Sri Lanka,1977,295243.0968,kg of nutrients +4761,Sri Lanka,1978,283152.933,kg of nutrients +4762,Sri Lanka,1979,236708.5451,kg of nutrients +4763,Sri Lanka,1980,262297.7754,kg of nutrients +4764,Sri Lanka,1981,344612.39,kg of nutrients +4765,Sri Lanka,1982,369314.6395,kg of nutrients +4766,Sri Lanka,1983,485994.0164,kg of nutrients +4767,Sri Lanka,1984,585793.3392,kg of nutrients +4768,Sri Lanka,1985,374590.3582,kg of nutrients +4769,Sri Lanka,1986,384979.1439,kg of nutrients +4770,Sri Lanka,1987,399718.0304,kg of nutrients +4771,Sri Lanka,1988,438756.3757,kg of nutrients +4772,Sri Lanka,1989,389583.1926,kg of nutrients +4773,Sri Lanka,1990,419382.2245,kg of nutrients +4774,Sri Lanka,1991,504652.4171,kg of nutrients +4775,Sri Lanka,1992,481495.89200000005,kg of nutrients +4776,Sri Lanka,1993,382227.6712,kg of nutrients +4777,Sri Lanka,1994,332383.8229,kg of nutrients +4778,Sri Lanka,1995,216651.2821,kg of nutrients +4779,Sri Lanka,1996,220795.5214,kg of nutrients +4780,Sri Lanka,1997,194509.8886,kg of nutrients +4781,Sri Lanka,1998,210225.693,kg of nutrients +4782,Sri Lanka,1999,185055.1958,kg of nutrients +4783,Sri Lanka,2000,156450.2099,kg of nutrients +4784,Sri Lanka,2001,132181.9862,kg of nutrients +4785,Sri Lanka,2002,136594.2326,kg of nutrients +4786,Sri Lanka,2003,143737.0611,kg of nutrients +4787,Sri Lanka,2004,104088.2995,kg of nutrients +4788,Sri Lanka,2005,117849.4976,kg of nutrients +4789,Sri Lanka,2006,105628.77699999999,kg of nutrients +4790,Sri Lanka,2007,108841.8262,kg of nutrients +4791,Sri Lanka,2008,115162.6494,kg of nutrients +4792,Sri Lanka,2009,111215.0243,kg of nutrients +4793,Sri Lanka,2010,136439.0176,kg of nutrients +4794,Sri Lanka,2011,90332.6391,kg of nutrients +4795,Sri Lanka,2012,80831.175,kg of nutrients +4796,Sri Lanka,2013,78280.9631,kg of nutrients +4797,Sudan,2012,77259.76,kg of nutrients +4798,Sudan,2013,81635.648,kg of nutrients +4799,Sudan (former),1961,95045.5238,kg of nutrients +4800,Sudan (former),1962,54453.3758,kg of nutrients +4801,Sudan (former),1963,72990.592,kg of nutrients +4802,Sudan (former),1964,107392.1557,kg of nutrients +4803,Sudan (former),1965,106227.8574,kg of nutrients +4804,Sudan (former),1966,105164.2771,kg of nutrients +4805,Sudan (former),1967,80663.6157,kg of nutrients +4806,Sudan (former),1968,52938.2551,kg of nutrients +4807,Sudan (former),1969,32135.3902,kg of nutrients +4808,Sudan (former),1970,45502.843,kg of nutrients +4809,Sudan (former),1971,45502.843,kg of nutrients +4810,Sudan (former),1972,50623.195,kg of nutrients +4811,Sudan (former),1973,39241.9008,kg of nutrients +4812,Sudan (former),1974,39241.9008,kg of nutrients +4813,Sudan (former),1975,67625.1925,kg of nutrients +4814,Sudan (former),1976,59800.8758,kg of nutrients +4815,Sudan (former),1977,36115.152,kg of nutrients +4816,Sudan (former),1978,89171.18400000001,kg of nutrients +4817,Sudan (former),1979,33972.656,kg of nutrients +4818,Sudan (former),1980,43559.792,kg of nutrients +4819,Sudan (former),1981,39241.9008,kg of nutrients +4820,Sudan (former),1982,22747.6992,kg of nutrients +4821,Sudan (former),1983,36748.9812,kg of nutrients +4822,Sudan (former),1984,33951.9479,kg of nutrients +4823,Sudan (former),1985,22896.592,kg of nutrients +4824,Sudan (former),1986,22896.592,kg of nutrients +4825,Sudan (former),1987,33228.192,kg of nutrients +4826,Sudan (former),1988,30250.336,kg of nutrients +4827,Sudan (former),1989,30250.336,kg of nutrients +4828,Sudan (former),1990,30250.336,kg of nutrients +4829,Sudan (former),1991,30250.336,kg of nutrients +4830,Sudan (former),1992,30250.336,kg of nutrients +4831,Sudan (former),1993,47935.68,kg of nutrients +4832,Sudan (former),1994,139340.256,kg of nutrients +4833,Sudan (former),1995,63983.2032,kg of nutrients +4834,Sudan (former),1996,84737.2992,kg of nutrients +4835,Sudan (former),1997,103225.104,kg of nutrients +4836,Sudan (former),1998,106921.6233,kg of nutrients +4837,Sudan (former),1999,175455.408,kg of nutrients +4838,Sudan (former),2000,268167.12,kg of nutrients +4839,Sudan (former),2001,412355.04,kg of nutrients +4840,Sudan (former),2002,224789.12,kg of nutrients +4841,Sudan (former),2003,93859.7469,kg of nutrients +4842,Sudan (former),2004,118601.0493,kg of nutrients +4843,Sudan (former),2005,128230.6451,kg of nutrients +4844,Sudan (former),2006,133361.7884,kg of nutrients +4845,Sudan (former),2007,136027.1895,kg of nutrients +4846,Sudan (former),2008,144019.8139,kg of nutrients +4847,Sudan (former),2009,107973.224,kg of nutrients +4848,Sudan (former),2010,79517.1159,kg of nutrients +4849,Sudan (former),2011,67740.9905,kg of nutrients +4850,Sweden,1961,31833.6192,kg of nutrients +4851,Sweden,1962,25381.9757,kg of nutrients +4852,Sweden,1963,24628.4221,kg of nutrients +4853,Sweden,1964,11936.7424,kg of nutrients +4854,Sweden,1965,14534.3146,kg of nutrients +4855,Sweden,1966,20745.0123,kg of nutrients +4856,Sweden,1967,16074.4461,kg of nutrients +4857,Sweden,1968,23325.783,kg of nutrients +4858,Sweden,1969,10177.9894,kg of nutrients +4859,Sweden,1970,26015.9808,kg of nutrients +4860,Sweden,1971,24926.5536,kg of nutrients +4861,Sweden,1972,26528.016,kg of nutrients +4862,Sweden,1973,20239.7645,kg of nutrients +4863,Sweden,1974,16381.6672,kg of nutrients +4864,Sweden,1975,13323.6093,kg of nutrients +4865,Sweden,1976,13375.5046,kg of nutrients +4866,Sweden,1977,16158.6739,kg of nutrients +4867,Sweden,1978,18476.8001,kg of nutrients +4868,Sweden,1979,19134.5074,kg of nutrients +4869,Sweden,1980,19506.8652,kg of nutrients +4870,Sweden,1981,14834.1698,kg of nutrients +4871,Sweden,1982,11390.4059,kg of nutrients +4872,Sweden,1983,8457.85,kg of nutrients +4873,Sweden,1984,13057.1213,kg of nutrients +4874,Sweden,1985,16040.2957,kg of nutrients +4875,Sweden,1986,59067.231,kg of nutrients +4876,Sweden,1987,54080.5366,kg of nutrients +4877,Sweden,1988,36113.4158,kg of nutrients +4878,Sweden,1989,34527.324,kg of nutrients +4879,Sweden,1990,34464.845,kg of nutrients +4880,Sweden,1991,36747.0816,kg of nutrients +4881,Sweden,1992,37556.9024,kg of nutrients +4882,Sweden,1993,38441.1696,kg of nutrients +4883,Sweden,1994,38813.4016,kg of nutrients +4884,Sweden,1995,9563.5472,kg of nutrients +4885,Sweden,1996,10331.6,kg of nutrients +4886,Sweden,1997,12891.776000000002,kg of nutrients +4887,Sweden,1998,14892.7392,kg of nutrients +4888,Sweden,1999,12789.758999999998,kg of nutrients +4889,Syrian Arab Republic,1961,16423.8032,kg of nutrients +4890,Syrian Arab Republic,1962,21866.2627,kg of nutrients +4891,Syrian Arab Republic,1963,18772.7995,kg of nutrients +4892,Syrian Arab Republic,1964,23241.5648,kg of nutrients +4893,Syrian Arab Republic,1965,25362.4128,kg of nutrients +4894,Syrian Arab Republic,1966,23465.5141,kg of nutrients +4895,Syrian Arab Republic,1967,30299.7437,kg of nutrients +4896,Syrian Arab Republic,1968,34667.1493,kg of nutrients +4897,Syrian Arab Republic,1969,45282.3941,kg of nutrients +4898,Syrian Arab Republic,1970,32906.047,kg of nutrients +4899,Syrian Arab Republic,1971,37561.5856,kg of nutrients +4900,Syrian Arab Republic,1972,50930.91,kg of nutrients +4901,Syrian Arab Republic,1973,49629.0636,kg of nutrients +4902,Syrian Arab Republic,1974,57744.0826,kg of nutrients +4903,Syrian Arab Republic,1975,69498.61200000001,kg of nutrients +4904,Syrian Arab Republic,1976,97036.0263,kg of nutrients +4905,Syrian Arab Republic,1977,100004.5881,kg of nutrients +4906,Syrian Arab Republic,1978,89517.1445,kg of nutrients +4907,Syrian Arab Republic,1979,61161.9238,kg of nutrients +4908,Syrian Arab Republic,1980,115241.737,kg of nutrients +4909,Syrian Arab Republic,1981,99033.6429,kg of nutrients +4910,Syrian Arab Republic,1982,104722.181,kg of nutrients +4911,Syrian Arab Republic,1983,109649.1328,kg of nutrients +4912,Syrian Arab Republic,1984,96150.9664,kg of nutrients +4913,Syrian Arab Republic,1985,114189.6147,kg of nutrients +4914,Syrian Arab Republic,1986,59838.7313,kg of nutrients +4915,Syrian Arab Republic,1987,104581.6734,kg of nutrients +4916,Syrian Arab Republic,1988,90286.1504,kg of nutrients +4917,Syrian Arab Republic,1989,48912.5728,kg of nutrients +4918,Syrian Arab Republic,1990,29341.7911,kg of nutrients +4919,Syrian Arab Republic,1991,23380.0468,kg of nutrients +4920,Syrian Arab Republic,1992,84213.2554,kg of nutrients +4921,Syrian Arab Republic,1993,74975.7312,kg of nutrients +4922,Syrian Arab Republic,1994,31041.9776,kg of nutrients +4923,Syrian Arab Republic,1995,45887.5392,kg of nutrients +4924,Syrian Arab Republic,1996,35217.2379,kg of nutrients +4925,Syrian Arab Republic,1997,35154.24,kg of nutrients +4926,Syrian Arab Republic,1998,30250.336,kg of nutrients +4927,Syrian Arab Republic,1999,14541.4479,kg of nutrients +4928,Syrian Arab Republic,2000,18775.8281,kg of nutrients +4929,Syrian Arab Republic,2001,18216.7662,kg of nutrients +4930,Syrian Arab Republic,2002,17760.7906,kg of nutrients +4931,Syrian Arab Republic,2003,33601.1158,kg of nutrients +4932,Syrian Arab Republic,2004,28344.0739,kg of nutrients +4933,Syrian Arab Republic,2005,22478.912,kg of nutrients +4934,Syrian Arab Republic,2006,20419.1969,kg of nutrients +4935,Syrian Arab Republic,2007,11702.071000000002,kg of nutrients +4936,Syrian Arab Republic,2008,8821.5804,kg of nutrients +4937,Syrian Arab Republic,2009,11460.1375,kg of nutrients +4938,Syrian Arab Republic,2010,19463.2101,kg of nutrients +4939,Syrian Arab Republic,2011,18354.7419,kg of nutrients +4940,Syrian Arab Republic,2012,8535.3817,kg of nutrients +4941,Syrian Arab Republic,2013,22276.1168,kg of nutrients +4942,Tajikistan,1992,9056.7486,kg of nutrients +4943,Tajikistan,1993,11016.2397,kg of nutrients +4944,Tajikistan,1994,94.9278,kg of nutrients +4945,Tajikistan,1995,10281.9472,kg of nutrients +4946,Tajikistan,1996,2013.4936,kg of nutrients +4947,Tajikistan,1997,954.0304,kg of nutrients +4948,Tajikistan,1998,516.9826,kg of nutrients +4949,Tajikistan,1999,253.6241,kg of nutrients +4950,Tajikistan,2000,2931.5778,kg of nutrients +4951,Tajikistan,2001,10303.7527,kg of nutrients +4952,Tajikistan,2002,8532.0322,kg of nutrients +4953,Tajikistan,2003,19336.3304,kg of nutrients +4954,Tajikistan,2004,16905.8427,kg of nutrients +4955,Tajikistan,2005,28422.6029,kg of nutrients +4956,Tajikistan,2006,27742.2879,kg of nutrients +4957,Tajikistan,2007,23030.3563,kg of nutrients +4958,Tajikistan,2008,41495.2045,kg of nutrients +4959,Tajikistan,2009,50931.8256,kg of nutrients +4960,Tajikistan,2010,59044.0235,kg of nutrients +4961,Tajikistan,2011,82577.371,kg of nutrients +4962,Tajikistan,2012,61787.49,kg of nutrients +4963,Tajikistan,2013,62910.6304,kg of nutrients +4964,Thailand,1961,474190.1536,kg of nutrients +4965,Thailand,1962,640643.6192,kg of nutrients +4966,Thailand,1963,1330086.8352,kg of nutrients +4967,Thailand,1964,1306344.5056,kg of nutrients +4968,Thailand,1965,1519274.1632,kg of nutrients +4969,Thailand,1966,1664701.7280000001,kg of nutrients +4970,Thailand,1967,1591389.3568,kg of nutrients +4971,Thailand,1968,2336627.5552,kg of nutrients +4972,Thailand,1969,2378613.1904,kg of nutrients +4973,Thailand,1970,2439403.4784,kg of nutrients +4974,Thailand,1971,1886524.2528,kg of nutrients +4975,Thailand,1972,2631284.1984,kg of nutrients +4976,Thailand,1973,2851168.568,kg of nutrients +4977,Thailand,1974,2381955.8816,kg of nutrients +4978,Thailand,1975,1713222.0893,kg of nutrients +4979,Thailand,1976,2185051.0799,kg of nutrients +4980,Thailand,1977,3873037.9085,kg of nutrients +4981,Thailand,1978,4113301.0141,kg of nutrients +4982,Thailand,1979,3923151.6385,kg of nutrients +4983,Thailand,1980,4277202.494,kg of nutrients +4984,Thailand,1981,4860789.7099,kg of nutrients +4985,Thailand,1982,4745817.8892,kg of nutrients +4986,Thailand,1983,4815010.188999999,kg of nutrients +4987,Thailand,1984,5397503.2313,kg of nutrients +4988,Thailand,1985,5594950.6586,kg of nutrients +4989,Thailand,1986,5211303.4502,kg of nutrients +4990,Thailand,1987,4626214.6787,kg of nutrients +4991,Thailand,1988,5142912.9767,kg of nutrients +4992,Thailand,1989,5518930.2402,kg of nutrients +4993,Thailand,1990,4738573.9865,kg of nutrients +4994,Thailand,1991,4666647.6991,kg of nutrients +4995,Thailand,1992,3945886.0875,kg of nutrients +4996,Thailand,1993,3720696.752,kg of nutrients +4997,Thailand,1994,3735425.5104,kg of nutrients +4998,Thailand,1995,3675530.1101,kg of nutrients +4999,Thailand,1996,3363406.001,kg of nutrients +5000,Thailand,1997,3059950.8421,kg of nutrients +5001,Thailand,1998,3306533.5116,kg of nutrients +5002,Thailand,1999,3569463.2527,kg of nutrients +5003,Thailand,2000,3240866.0563,kg of nutrients +5004,Thailand,2001,3415813.1709,kg of nutrients +5005,Thailand,2002,3143271.3045,kg of nutrients +5006,Thailand,2003,2636196.8512,kg of nutrients +5007,Thailand,2004,2014053.7284,kg of nutrients +5008,Thailand,2005,1711020.416,kg of nutrients +5009,Thailand,2006,1656159.9799,kg of nutrients +5010,Thailand,2007,1643585.3883,kg of nutrients +5011,Thailand,2008,1516168.2432,kg of nutrients +5012,Thailand,2009,1520221.2480000001,kg of nutrients +5013,Thailand,2010,1572847.8198,kg of nutrients +5014,Thailand,2011,1516229.3064,kg of nutrients +5015,Thailand,2012,1532700.5162,kg of nutrients +5016,Thailand,2013,1461735.2187,kg of nutrients +5017,Timor-Leste,1961,16519.7408,kg of nutrients +5018,Timor-Leste,1962,18288.2752,kg of nutrients +5019,Timor-Leste,1963,20056.8096,kg of nutrients +5020,Timor-Leste,1964,21740.311,kg of nutrients +5021,Timor-Leste,1965,30245.9583,kg of nutrients +5022,Timor-Leste,1966,32741.5827,kg of nutrients +5023,Timor-Leste,1967,27362.2816,kg of nutrients +5024,Timor-Leste,1968,40413.707,kg of nutrients +5025,Timor-Leste,1969,42707.6247,kg of nutrients +5026,Timor-Leste,1970,51672.8333,kg of nutrients +5027,Timor-Leste,1971,52722.5055,kg of nutrients +5028,Timor-Leste,1972,91856.6522,kg of nutrients +5029,Timor-Leste,1973,77776.036,kg of nutrients +5030,Timor-Leste,1974,64903.8229,kg of nutrients +5031,Timor-Leste,1975,65385.136,kg of nutrients +5032,Timor-Leste,1976,65385.136,kg of nutrients +5033,Timor-Leste,1977,66409.2064,kg of nutrients +5034,Timor-Leste,1978,65385.136,kg of nutrients +5035,Timor-Leste,1979,64873.1008,kg of nutrients +5036,Timor-Leste,1980,59102.64,kg of nutrients +5037,Timor-Leste,1981,61848.0672,kg of nutrients +5038,Timor-Leste,1982,56357.2128,kg of nutrients +5039,Timor-Leste,1983,53332.1792,kg of nutrients +5040,Timor-Leste,1984,50772.0032,kg of nutrients +5041,Timor-Leste,1985,46025.6128,kg of nutrients +5042,Timor-Leste,1986,40767.1872,kg of nutrients +5043,Timor-Leste,1987,38719.0464,kg of nutrients +5044,Timor-Leste,1988,40255.152,kg of nutrients +5045,Timor-Leste,1989,35461.584,kg of nutrients +5046,Timor-Leste,1990,33600.3865,kg of nutrients +5047,Timor-Leste,1991,79580.4762,kg of nutrients +5048,Timor-Leste,1992,55975.794,kg of nutrients +5049,Timor-Leste,1993,94257.7426,kg of nutrients +5050,Timor-Leste,1994,80847.6658,kg of nutrients +5051,Timor-Leste,1995,117807.1702,kg of nutrients +5052,Timor-Leste,1996,97973.6211,kg of nutrients +5053,Timor-Leste,1997,90171.5096,kg of nutrients +5054,Timor-Leste,1998,51089.0058,kg of nutrients +5055,Timor-Leste,1999,60264.78400000001,kg of nutrients +5056,Timor-Leste,2000,51422.112,kg of nutrients +5057,Timor-Leste,2001,57704.608,kg of nutrients +5058,Timor-Leste,2002,67709.424,kg of nutrients +5059,Timor-Leste,2003,75771.3342,kg of nutrients +5060,Timor-Leste,2004,80753.3407,kg of nutrients +5061,Timor-Leste,2005,85418.0424,kg of nutrients +5062,Timor-Leste,2006,90755.9695,kg of nutrients +5063,Timor-Leste,2007,91355.0554,kg of nutrients +5064,Timor-Leste,2008,94870.8149,kg of nutrients +5065,Timor-Leste,2009,98307.616,kg of nutrients +5066,Timor-Leste,2010,101640.7003,kg of nutrients +5067,Timor-Leste,2011,104894.619,kg of nutrients +5068,Timor-Leste,2012,112621.8,kg of nutrients +5069,Timor-Leste,2013,115554.20800000001,kg of nutrients +5070,Togo,1961,381563.744,kg of nutrients +5071,Togo,1962,386139.8888,kg of nutrients +5072,Togo,1963,442902.5824,kg of nutrients +5073,Togo,1964,463454.784,kg of nutrients +5074,Togo,1965,503639.2292,kg of nutrients +5075,Togo,1966,494105.3848,kg of nutrients +5076,Togo,1967,543503.9612,kg of nutrients +5077,Togo,1968,570947.584,kg of nutrients +5078,Togo,1969,603050.432,kg of nutrients +5079,Togo,1970,622208.7873,kg of nutrients +5080,Togo,1971,592809.728,kg of nutrients +5081,Togo,1972,370471.7522,kg of nutrients +5082,Togo,1973,378487.8587,kg of nutrients +5083,Togo,1974,396110.1577,kg of nutrients +5084,Togo,1975,411025.0328,kg of nutrients +5085,Togo,1976,412191.1939,kg of nutrients +5086,Togo,1977,401864.4132,kg of nutrients +5087,Togo,1978,448399.929,kg of nutrients +5088,Togo,1979,714151.8488,kg of nutrients +5089,Togo,1980,743515.3085,kg of nutrients +5090,Togo,1981,755910.1955,kg of nutrients +5091,Togo,1982,861541.728,kg of nutrients +5092,Togo,1983,895575.7303,kg of nutrients +5093,Togo,1984,1090469.5578,kg of nutrients +5094,Togo,1985,1000309.0124,kg of nutrients +5095,Togo,1986,1007453.0089,kg of nutrients +5096,Togo,1987,1037841.5598,kg of nutrients +5097,Togo,1988,888742.816,kg of nutrients +5098,Togo,1989,964133.5106,kg of nutrients +5099,Togo,1990,952075.1008,kg of nutrients +5100,Togo,1991,743668.3524,kg of nutrients +5101,Togo,1992,849031.6136,kg of nutrients +5102,Togo,1993,1538205.0761,kg of nutrients +5103,Togo,1994,781120.4174,kg of nutrients +5104,Togo,1995,1109636.9563,kg of nutrients +5105,Togo,1996,1506878.0265,kg of nutrients +5106,Togo,1997,1497661.4540000001,kg of nutrients +5107,Togo,1998,1287259.2719,kg of nutrients +5108,Togo,1999,1240206.2591,kg of nutrients +5109,Togo,2000,1288207.9811,kg of nutrients +5110,Togo,2001,1286262.4416,kg of nutrients +5111,Togo,2002,1429035.6717,kg of nutrients +5112,Togo,2003,1314286.8627,kg of nutrients +5113,Togo,2004,1438363.3669999999,kg of nutrients +5114,Togo,2005,1616892.9808,kg of nutrients +5115,Togo,2006,1682105.418,kg of nutrients +5116,Togo,2007,1659156.4236,kg of nutrients +5117,Togo,2008,1767882.304,kg of nutrients +5118,Togo,2009,1887375.0239,kg of nutrients +5119,Togo,2010,1958087.3618,kg of nutrients +5120,Togo,2011,1933848.6738,kg of nutrients +5121,Togo,2012,2631328.6212,kg of nutrients +5122,Togo,2013,3167270.7292,kg of nutrients +5123,Tunisia,1988,7514.1515,kg of nutrients +5124,Tunisia,1989,12182.2867,kg of nutrients +5125,Tunisia,1990,15049.3379,kg of nutrients +5126,Tunisia,1991,21657.5802,kg of nutrients +5127,Tunisia,1992,22569.807999999997,kg of nutrients +5128,Tunisia,1993,24105.9136,kg of nutrients +5129,Tunisia,1994,11200.3302,kg of nutrients +5130,Tunisia,1995,13774.1406,kg of nutrients +5131,Tunisia,1996,9712.4967,kg of nutrients +5132,Tunisia,1997,10209.6301,kg of nutrients +5133,Tunisia,1998,12075.8538,kg of nutrients +5134,Tunisia,1999,5599.1303,kg of nutrients +5135,Tunisia,2000,9048.6949,kg of nutrients +5136,Tunisia,2001,6908.0408,kg of nutrients +5137,Tunisia,2002,1463.0966,kg of nutrients +5138,Tunisia,2003,3257.4624,kg of nutrients +5139,Tunisia,2004,2103.3702,kg of nutrients +5140,Tunisia,2005,1226.1797,kg of nutrients +5141,Tunisia,2006,2047.4489999999998,kg of nutrients +5142,Tunisia,2007,1987.1558,kg of nutrients +5143,Tunisia,2008,1777.624,kg of nutrients +5144,Tunisia,2009,1975.3614,kg of nutrients +5145,Tunisia,2010,2019.6613,kg of nutrients +5146,Tunisia,2011,1368.1688,kg of nutrients +5147,Tunisia,2012,2159.2915,kg of nutrients +5148,Tunisia,2013,2173.2718,kg of nutrients +5149,Turkey,1961,1534816.128,kg of nutrients +5150,Turkey,1962,1468534.6176,kg of nutrients +5151,Turkey,1963,1462694.0159999998,kg of nutrients +5152,Turkey,1964,1535759.68,kg of nutrients +5153,Turkey,1965,1535759.68,kg of nutrients +5154,Turkey,1966,1510157.92,kg of nutrients +5155,Turkey,1967,1500860.7680000002,kg of nutrients +5156,Turkey,1968,1487824.0,kg of nutrients +5157,Turkey,1969,1525518.976,kg of nutrients +5158,Turkey,1970,1436183.2959999999,kg of nutrients +5159,Turkey,1971,1542767.136,kg of nutrients +5160,Turkey,1972,1595823.168,kg of nutrients +5161,Turkey,1973,1498553.7759999998,kg of nutrients +5162,Turkey,1974,1486915.04,kg of nutrients +5163,Turkey,1975,1493450.72,kg of nutrients +5164,Turkey,1976,1573489.2480000001,kg of nutrients +5165,Turkey,1977,1586054.24,kg of nutrients +5166,Turkey,1978,1539516.592,kg of nutrients +5167,Turkey,1979,1663396.2480000001,kg of nutrients +5168,Turkey,1980,1686102.4,kg of nutrients +5169,Turkey,1981,1600943.52,kg of nutrients +5170,Turkey,1982,1633989.92,kg of nutrients +5171,Turkey,1983,1789418.4,kg of nutrients +5172,Turkey,1984,1671385.907,kg of nutrients +5173,Turkey,1985,1987155.84,kg of nutrients +5174,Turkey,1986,2003802.055,kg of nutrients +5175,Turkey,1987,2414505.0989,kg of nutrients +5176,Turkey,1988,2389750.1106,kg of nutrients +5177,Turkey,1989,2305929.216,kg of nutrients +5178,Turkey,1990,2345225.279,kg of nutrients +5179,Turkey,1991,2418489.1846,kg of nutrients +5180,Turkey,1992,2269097.1043,kg of nutrients +5181,Turkey,1993,2228702.4877,kg of nutrients +5182,Turkey,1994,2134395.216,kg of nutrients +5183,Turkey,1995,2416521.5254,kg of nutrients +5184,Turkey,1996,2460102.091,kg of nutrients +5185,Turkey,1997,2499602.9939,kg of nutrients +5186,Turkey,1998,2472726.2832,kg of nutrients +5187,Turkey,1999,2505644.921,kg of nutrients +5188,Turkey,2000,2482949.6912,kg of nutrients +5189,Turkey,2001,2452330.2438,kg of nutrients +5190,Turkey,2002,2617405.9064,kg of nutrients +5191,Turkey,2003,2482724.9242,kg of nutrients +5192,Turkey,2004,2431997.1472,kg of nutrients +5193,Turkey,2005,2126084.856,kg of nutrients +5194,Turkey,2006,1963176.0363,kg of nutrients +5195,Turkey,2007,1602777.8094,kg of nutrients +5196,Turkey,2008,1520203.1645,kg of nutrients +5197,Turkey,2009,1633220.4688,kg of nutrients +5198,Turkey,2010,1858092.154,kg of nutrients +5199,Turkey,2011,1731019.9876,kg of nutrients +5200,Turkey,2012,1717091.9376,kg of nutrients +5201,Turkey,2013,1628962.6462,kg of nutrients +5202,Uganda,1961,1554284.8,kg of nutrients +5203,Uganda,1962,1554284.8,kg of nutrients +5204,Uganda,1963,1605488.32,kg of nutrients +5205,Uganda,1964,1731138.24,kg of nutrients +5206,Uganda,1965,1782341.76,kg of nutrients +5207,Uganda,1966,1930325.6,kg of nutrients +5208,Uganda,1967,2429151.0719999997,kg of nutrients +5209,Uganda,1968,2880512.64,kg of nutrients +5210,Uganda,1969,2380674.432,kg of nutrients +5211,Uganda,1970,2875392.288,kg of nutrients +5212,Uganda,1971,4553807.904,kg of nutrients +5213,Uganda,1972,3513917.184,kg of nutrients +5214,Uganda,1973,3543085.6,kg of nutrients +5215,Uganda,1974,4042538.2176,kg of nutrients +5216,Uganda,1975,4696316.272,kg of nutrients +5217,Uganda,1976,4963173.0029,kg of nutrients +5218,Uganda,1977,3814320.6661,kg of nutrients +5219,Uganda,1978,4378542.752,kg of nutrients +5220,Uganda,1979,2621837.344,kg of nutrients +5221,Uganda,1980,2348606.176,kg of nutrients +5222,Uganda,1981,3454831.84,kg of nutrients +5223,Uganda,1982,3923372.3839999996,kg of nutrients +5224,Uganda,1983,4570757.248,kg of nutrients +5225,Uganda,1984,4376690.24,kg of nutrients +5226,Uganda,1985,3855987.0098,kg of nutrients +5227,Uganda,1986,4322224.0107,kg of nutrients +5228,Uganda,1987,4307835.968,kg of nutrients +5229,Uganda,1988,5043543.776000001,kg of nutrients +5230,Uganda,1989,5568024.3032,kg of nutrients +5231,Uganda,1990,5712123.3976,kg of nutrients +5232,Uganda,1991,5756089.3917,kg of nutrients +5233,Uganda,1992,6048708.544,kg of nutrients +5234,Uganda,1993,6300951.936000001,kg of nutrients +5235,Uganda,1994,6208716.416,kg of nutrients +5236,Uganda,1995,6463721.28,kg of nutrients +5237,Uganda,1996,5776615.967999999,kg of nutrients +5238,Uganda,1997,5821720.992000001,kg of nutrients +5239,Uganda,1998,6783369.024,kg of nutrients +5240,Uganda,1999,7033725.312000001,kg of nutrients +5241,Uganda,2000,7354351.2,kg of nutrients +5242,Uganda,2001,8058531.712,kg of nutrients +5243,Uganda,2002,8434537.92,kg of nutrients +5244,Uganda,2003,8495004.0,kg of nutrients +5245,Uganda,2004,8374807.84,kg of nutrients +5246,Uganda,2005,8611690.176,kg of nutrients +5247,Uganda,2006,8491528.608,kg of nutrients +5248,Uganda,2007,8704189.92,kg of nutrients +5249,Uganda,2008,9516221.663999999,kg of nutrients +5250,Uganda,2009,9322223.84,kg of nutrients +5251,Uganda,2010,9571671.168,kg of nutrients +5252,Uganda,2011,9555368.8416,kg of nutrients +5253,Uganda,2012,9433158.1017,kg of nutrients +5254,Uganda,2013,9824013.6028,kg of nutrients +5255,Ukraine,1992,425714.9201,kg of nutrients +5256,Ukraine,1993,388134.016,kg of nutrients +5257,Ukraine,1994,357411.904,kg of nutrients +5258,Ukraine,1995,419967.6352,kg of nutrients +5259,Ukraine,1996,420708.64,kg of nutrients +5260,Ukraine,1997,423504.70399999997,kg of nutrients +5261,Ukraine,1998,491450.016,kg of nutrients +5262,Ukraine,1999,473764.672,kg of nutrients +5263,Ukraine,2000,534413.7952,kg of nutrients +5264,Ukraine,2001,801338.2528,kg of nutrients +5265,Ukraine,2002,622985.5072,kg of nutrients +5266,Ukraine,2003,559998.2592,kg of nutrients +5267,Ukraine,2004,435746.3712,kg of nutrients +5268,Ukraine,2005,404610.0384,kg of nutrients +5269,Ukraine,2006,314465.4208,kg of nutrients +5270,Ukraine,2007,308088.5696,kg of nutrients +5271,Ukraine,2008,313023.6704,kg of nutrients +5272,Ukraine,2009,323072.2048,kg of nutrients +5273,Ukraine,2010,315715.0016,kg of nutrients +5274,Ukraine,2011,345877.9008,kg of nutrients +5275,Ukraine,2012,374214.7104,kg of nutrients +5276,Ukraine,2013,373808.5414,kg of nutrients +5277,United Republic of Tanzania,1961,1846443.68,kg of nutrients +5278,United Republic of Tanzania,1962,1939047.2,kg of nutrients +5279,United Republic of Tanzania,1963,2018110.7098,kg of nutrients +5280,United Republic of Tanzania,1964,2223402.6054,kg of nutrients +5281,United Republic of Tanzania,1965,1746896.3555,kg of nutrients +5282,United Republic of Tanzania,1966,2304503.2175,kg of nutrients +5283,United Republic of Tanzania,1967,2585070.2454,kg of nutrients +5284,United Republic of Tanzania,1968,2243502.3724,kg of nutrients +5285,United Republic of Tanzania,1969,2099170.4945,kg of nutrients +5286,United Republic of Tanzania,1970,2618023.0814,kg of nutrients +5287,United Republic of Tanzania,1971,2619603.5016,kg of nutrients +5288,United Republic of Tanzania,1972,2911538.455,kg of nutrients +5289,United Republic of Tanzania,1973,2826950.24,kg of nutrients +5290,United Republic of Tanzania,1974,2601252.16,kg of nutrients +5291,United Republic of Tanzania,1975,2681290.688,kg of nutrients +5292,United Republic of Tanzania,1976,2936295.5519999997,kg of nutrients +5293,United Republic of Tanzania,1977,3608291.3286,kg of nutrients +5294,United Republic of Tanzania,1978,5134605.2479,kg of nutrients +5295,United Republic of Tanzania,1979,5017200.6969,kg of nutrients +5296,United Republic of Tanzania,1980,5002408.0,kg of nutrients +5297,United Republic of Tanzania,1981,5002408.0,kg of nutrients +5298,United Republic of Tanzania,1982,5002408.0,kg of nutrients +5299,United Republic of Tanzania,1983,4911885.0048,kg of nutrients +5300,United Republic of Tanzania,1984,4760243.3184,kg of nutrients +5301,United Republic of Tanzania,1985,4665581.28,kg of nutrients +5302,United Republic of Tanzania,1986,3545076.48,kg of nutrients +5303,United Republic of Tanzania,1987,4139565.3515,kg of nutrients +5304,United Republic of Tanzania,1988,3660430.4629,kg of nutrients +5305,United Republic of Tanzania,1989,4855378.8072,kg of nutrients +5306,United Republic of Tanzania,1990,5132993.1945,kg of nutrients +5307,United Republic of Tanzania,1991,5407940.0764,kg of nutrients +5308,United Republic of Tanzania,1992,5680253.88,kg of nutrients +5309,United Republic of Tanzania,1993,5950014.1721,kg of nutrients +5310,United Republic of Tanzania,1994,6217285.6301,kg of nutrients +5311,United Republic of Tanzania,1995,6482095.2366,kg of nutrients +5312,United Republic of Tanzania,1996,6744522.5583,kg of nutrients +5313,United Republic of Tanzania,1997,7004617.3834,kg of nutrients +5314,United Republic of Tanzania,1998,7262414.1389999995,kg of nutrients +5315,United Republic of Tanzania,1999,7516272.4254,kg of nutrients +5316,United Republic of Tanzania,2000,7769470.6486,kg of nutrients +5317,United Republic of Tanzania,2001,7969373.408,kg of nutrients +5318,United Republic of Tanzania,2002,8006540.1016,kg of nutrients +5319,United Republic of Tanzania,2003,6825779.8685,kg of nutrients +5320,United Republic of Tanzania,2004,8330110.2803,kg of nutrients +5321,United Republic of Tanzania,2005,9868329.2491,kg of nutrients +5322,United Republic of Tanzania,2006,10284526.8207,kg of nutrients +5323,United Republic of Tanzania,2007,11393196.634000001,kg of nutrients +5324,United Republic of Tanzania,2008,8502496.3696,kg of nutrients +5325,United Republic of Tanzania,2009,10425974.1078,kg of nutrients +5326,United Republic of Tanzania,2010,13440320.8922,kg of nutrients +5327,United Republic of Tanzania,2011,8952712.2807,kg of nutrients +5328,United Republic of Tanzania,2012,15561146.4165,kg of nutrients +5329,United Republic of Tanzania,2013,14273301.7111,kg of nutrients +5330,United States of America,1961,8912420.9558,kg of nutrients +5331,United States of America,1962,8518500.4195,kg of nutrients +5332,United States of America,1963,8859057.3722,kg of nutrients +5333,United States of America,1964,8298922.6358,kg of nutrients +5334,United States of America,1965,8387089.2056,kg of nutrients +5335,United States of America,1966,9179159.6205,kg of nutrients +5336,United States of America,1967,7267641.7395,kg of nutrients +5337,United States of America,1968,8339426.4785,kg of nutrients +5338,United States of America,1969,8818274.336000001,kg of nutrients +5339,United States of America,1970,8285875.9789,kg of nutrients +5340,United States of America,1971,7606349.8455,kg of nutrients +5341,United States of America,1972,8307030.4295,kg of nutrients +5342,United States of America,1973,7791706.3082,kg of nutrients +5343,United States of America,1974,9294391.4708,kg of nutrients +5344,United States of America,1975,8467889.0821,kg of nutrients +5345,United States of America,1976,8629292.6177,kg of nutrients +5346,United States of America,1977,7670787.3131,kg of nutrients +5347,United States of America,1978,8779482.9334,kg of nutrients +5348,United States of America,1979,8954204.3654,kg of nutrients +5349,United States of America,1980,11808517.4368,kg of nutrients +5350,United States of America,1981,14445236.4211,kg of nutrients +5351,United States of America,1982,11290488.768,kg of nutrients +5352,United States of America,1983,7036032.1126,kg of nutrients +5353,United States of America,1984,9293405.0534,kg of nutrients +5354,United States of America,1985,9641785.6928,kg of nutrients +5355,United States of America,1986,9836341.7728,kg of nutrients +5356,United States of America,1987,11062054.056,kg of nutrients +5357,United States of America,1988,8547543.8016,kg of nutrients +5358,United States of America,1989,10484952.4522,kg of nutrients +5359,United States of America,1990,13801350.928,kg of nutrients +5360,United States of America,1991,13607907.0176,kg of nutrients +5361,United States of America,1992,9862755.5616,kg of nutrients +5362,United States of America,1993,9952091.3152,kg of nutrients +5363,United States of America,1994,12239500.416,kg of nutrients +5364,United States of America,1995,12840546.72,kg of nutrients +5365,United States of America,1996,11742003.792000001,kg of nutrients +5366,United States of America,1997,12119031.384000001,kg of nutrients +5367,United States of America,1998,12842111.4192,kg of nutrients +5368,United States of America,1999,13339060.7904,kg of nutrients +5369,United States of America,2000,11034892.2373,kg of nutrients +5370,United States of America,2001,8320495.4266,kg of nutrients +5371,United States of America,2002,12279025.2926,kg of nutrients +5372,United States of America,2003,9281787.5547,kg of nutrients +5373,United States of America,2004,7773290.4246,kg of nutrients +5374,United States of America,2005,10771713.9564,kg of nutrients +5375,United States of America,2006,10224483.0082,kg of nutrients +5376,United States of America,2007,10398968.9004,kg of nutrients +5377,United States of America,2008,10290045.0205,kg of nutrients +5378,United States of America,2009,10297673.1122,kg of nutrients +5379,United States of America,2010,12937571.0902,kg of nutrients +5380,United States of America,2011,8138143.6301,kg of nutrients +5381,United States of America,2012,12507534.3053,kg of nutrients +5382,United States of America,2013,9673597.6736,kg of nutrients +5383,Uruguay,1961,41765.304,kg of nutrients +5384,Uruguay,1962,52584.255999999994,kg of nutrients +5385,Uruguay,1963,52584.255999999994,kg of nutrients +5386,Uruguay,1964,51345.1308,kg of nutrients +5387,Uruguay,1965,52584.255999999994,kg of nutrients +5388,Uruguay,1966,34227.9788,kg of nutrients +5389,Uruguay,1967,34063.552,kg of nutrients +5390,Uruguay,1968,35552.48,kg of nutrients +5391,Uruguay,1969,36296.943999999996,kg of nutrients +5392,Uruguay,1970,46825.3946,kg of nutrients +5393,Uruguay,1971,36296.943999999996,kg of nutrients +5394,Uruguay,1972,37041.407999999996,kg of nutrients +5395,Uruguay,1973,40531.2992,kg of nutrients +5396,Uruguay,1974,40531.2992,kg of nutrients +5397,Uruguay,1975,41043.3344,kg of nutrients +5398,Uruguay,1976,45557.295999999995,kg of nutrients +5399,Uruguay,1977,45557.295999999995,kg of nutrients +5400,Uruguay,1978,46813.7952,kg of nutrients +5401,Uruguay,1979,46813.7952,kg of nutrients +5402,Uruguay,1980,46813.7952,kg of nutrients +5403,Uruguay,1981,46813.7952,kg of nutrients +5404,Uruguay,1982,48070.2944,kg of nutrients +5405,Uruguay,1983,48582.3296,kg of nutrients +5406,Uruguay,1984,49838.8288,kg of nutrients +5407,Uruguay,1985,49838.8288,kg of nutrients +5408,Uruguay,1986,51095.328,kg of nutrients +5409,Uruguay,1987,53096.2912,kg of nutrients +5410,Uruguay,1988,49838.8288,kg of nutrients +5411,Uruguay,1989,51839.792,kg of nutrients +5412,Uruguay,1990,57222.7414,kg of nutrients +5413,Uruguay,1991,49838.8288,kg of nutrients +5414,Uruguay,1992,51839.792,kg of nutrients +5415,Uruguay,1993,52840.2736,kg of nutrients +5416,Uruguay,1994,52893.0682,kg of nutrients +5417,Uruguay,1995,53196.8084,kg of nutrients +5418,Uruguay,1996,53840.7552,kg of nutrients +5419,Uruguay,1997,54034.0669,kg of nutrients +5420,Uruguay,1998,54513.5611,kg of nutrients +5421,Uruguay,1999,55097.2544,kg of nutrients +5422,Uruguay,2000,55353.272000000004,kg of nutrients +5423,Uruguay,2001,56353.7536,kg of nutrients +5424,Uruguay,2002,56982.0032,kg of nutrients +5425,Uruguay,2003,57610.2528,kg of nutrients +5426,Uruguay,2004,56982.0032,kg of nutrients +5427,Uruguay,2005,58122.288,kg of nutrients +5428,Uruguay,2006,56982.0032,kg of nutrients +5429,Uruguay,2007,58610.7344,kg of nutrients +5430,Uruguay,2008,59611.21599999999,kg of nutrients +5431,Uruguay,2009,60239.4656,kg of nutrients +5432,Uruguay,2010,59470.9943,kg of nutrients +5433,Uruguay,2011,59256.7603,kg of nutrients +5434,Uruguay,2012,58866.752,kg of nutrients +5435,Uruguay,2013,55609.2896,kg of nutrients +5436,USSR,1961,691983.52,kg of nutrients +5437,USSR,1962,795299.52,kg of nutrients +5438,USSR,1963,882310.912,kg of nutrients +5439,USSR,1964,859068.032,kg of nutrients +5440,USSR,1965,770204.128,kg of nutrients +5441,USSR,1966,715767.36,kg of nutrients +5442,USSR,1967,703674.1440000001,kg of nutrients +5443,USSR,1968,557542.816,kg of nutrients +5444,USSR,1969,545449.6,kg of nutrients +5445,USSR,1970,656210.24,kg of nutrients +5446,USSR,1971,678106.9759999999,kg of nutrients +5447,USSR,1972,634348.096,kg of nutrients +5448,USSR,1973,726514.432,kg of nutrients +5449,USSR,1974,682755.552,kg of nutrients +5450,USSR,1975,600829.92,kg of nutrients +5451,USSR,1976,757201.952,kg of nutrients +5452,USSR,1977,945239.6479999999,kg of nutrients +5453,USSR,1978,853073.312,kg of nutrients +5454,USSR,1979,740897.344,kg of nutrients +5455,USSR,1980,656647.424,kg of nutrients +5456,USSR,1981,613360.32,kg of nutrients +5457,USSR,1982,682720.96,kg of nutrients +5458,USSR,1983,1068128.096,kg of nutrients +5459,USSR,1984,1101174.496,kg of nutrients +5460,USSR,1985,1177036.2240000002,kg of nutrients +5461,USSR,1986,732509.152,kg of nutrients +5462,USSR,1987,702258.816,kg of nutrients +5463,USSR,1988,756258.4,kg of nutrients +5464,USSR,1989,854943.12,kg of nutrients +5465,USSR,1990,622856.56,kg of nutrients +5466,USSR,1991,619896.0,kg of nutrients +5467,Venezuela (Bolivarian Republic of),1961,891841.5615,kg of nutrients +5468,Venezuela (Bolivarian Republic of),1962,690607.0351,kg of nutrients +5469,Venezuela (Bolivarian Republic of),1963,796794.3662,kg of nutrients +5470,Venezuela (Bolivarian Republic of),1964,835928.2538,kg of nutrients +5471,Venezuela (Bolivarian Republic of),1965,843056.4131,kg of nutrients +5472,Venezuela (Bolivarian Republic of),1966,885466.6202,kg of nutrients +5473,Venezuela (Bolivarian Republic of),1967,909565.4446,kg of nutrients +5474,Venezuela (Bolivarian Republic of),1968,938792.8481,kg of nutrients +5475,Venezuela (Bolivarian Republic of),1969,948663.9005,kg of nutrients +5476,Venezuela (Bolivarian Republic of),1970,842706.2994,kg of nutrients +5477,Venezuela (Bolivarian Republic of),1971,893486.1314,kg of nutrients +5478,Venezuela (Bolivarian Republic of),1972,771030.8444,kg of nutrients +5479,Venezuela (Bolivarian Republic of),1973,624622.8886,kg of nutrients +5480,Venezuela (Bolivarian Republic of),1974,769159.1942,kg of nutrients +5481,Venezuela (Bolivarian Republic of),1975,854763.564,kg of nutrients +5482,Venezuela (Bolivarian Republic of),1976,712702.787,kg of nutrients +5483,Venezuela (Bolivarian Republic of),1977,603083.2355,kg of nutrients +5484,Venezuela (Bolivarian Republic of),1978,692562.0918,kg of nutrients +5485,Venezuela (Bolivarian Republic of),1979,648062.4727,kg of nutrients +5486,Venezuela (Bolivarian Republic of),1980,660809.3531,kg of nutrients +5487,Venezuela (Bolivarian Republic of),1981,604844.39,kg of nutrients +5488,Venezuela (Bolivarian Republic of),1982,626845.9597,kg of nutrients +5489,Venezuela (Bolivarian Republic of),1983,620138.7983,kg of nutrients +5490,Venezuela (Bolivarian Republic of),1984,501809.3109,kg of nutrients +5491,Venezuela (Bolivarian Republic of),1985,730471.1474,kg of nutrients +5492,Venezuela (Bolivarian Republic of),1986,771315.3857,kg of nutrients +5493,Venezuela (Bolivarian Republic of),1987,791845.4124,kg of nutrients +5494,Venezuela (Bolivarian Republic of),1988,808666.3354,kg of nutrients +5495,Venezuela (Bolivarian Republic of),1989,843706.5285,kg of nutrients +5496,Venezuela (Bolivarian Republic of),1990,918356.9197,kg of nutrients +5497,Venezuela (Bolivarian Republic of),1991,886285.3509999999,kg of nutrients +5498,Venezuela (Bolivarian Republic of),1992,638922.3868,kg of nutrients +5499,Venezuela (Bolivarian Republic of),1993,501309.6501,kg of nutrients +5500,Venezuela (Bolivarian Republic of),1994,423486.6838,kg of nutrients +5501,Venezuela (Bolivarian Republic of),1995,509898.4485,kg of nutrients +5502,Venezuela (Bolivarian Republic of),1996,474641.12799999997,kg of nutrients +5503,Venezuela (Bolivarian Republic of),1997,473144.6075,kg of nutrients +5504,Venezuela (Bolivarian Republic of),1998,468472.4434,kg of nutrients +5505,Venezuela (Bolivarian Republic of),1999,399895.1289,kg of nutrients +5506,Venezuela (Bolivarian Republic of),2000,362310.6773,kg of nutrients +5507,Venezuela (Bolivarian Republic of),2001,319138.0095,kg of nutrients +5508,Venezuela (Bolivarian Republic of),2002,254448.6121,kg of nutrients +5509,Venezuela (Bolivarian Republic of),2003,403572.4631,kg of nutrients +5510,Venezuela (Bolivarian Republic of),2004,554937.3613,kg of nutrients +5511,Venezuela (Bolivarian Republic of),2005,612176.3036,kg of nutrients +5512,Venezuela (Bolivarian Republic of),2006,264285.428,kg of nutrients +5513,Venezuela (Bolivarian Republic of),2007,527815.1357,kg of nutrients +5514,Venezuela (Bolivarian Republic of),2008,689165.457,kg of nutrients +5515,Venezuela (Bolivarian Republic of),2009,928117.5809999999,kg of nutrients +5516,Venezuela (Bolivarian Republic of),2010,578602.497,kg of nutrients +5517,Venezuela (Bolivarian Republic of),2011,606566.552,kg of nutrients +5518,Venezuela (Bolivarian Republic of),2012,403357.5224,kg of nutrients +5519,Venezuela (Bolivarian Republic of),2013,227621.9921,kg of nutrients +5520,Viet Nam,1961,675508.3992,kg of nutrients +5521,Viet Nam,1962,707316.2253,kg of nutrients +5522,Viet Nam,1963,703347.0288,kg of nutrients +5523,Viet Nam,1964,730172.8304,kg of nutrients +5524,Viet Nam,1965,753739.44,kg of nutrients +5525,Viet Nam,1966,744433.64,kg of nutrients +5526,Viet Nam,1967,853398.9184,kg of nutrients +5527,Viet Nam,1968,749400.7752,kg of nutrients +5528,Viet Nam,1969,681708.224,kg of nutrients +5529,Viet Nam,1970,654253.952,kg of nutrients +5530,Viet Nam,1971,657050.0160000001,kg of nutrients +5531,Viet Nam,1972,669615.0079999999,kg of nutrients +5532,Viet Nam,1973,611910.4,kg of nutrients +5533,Viet Nam,1974,622151.1039999999,kg of nutrients +5534,Viet Nam,1975,507536.9888,kg of nutrients +5535,Viet Nam,1976,686279.7408,kg of nutrients +5536,Viet Nam,1977,836907.7344,kg of nutrients +5537,Viet Nam,1978,903967.0496,kg of nutrients +5538,Viet Nam,1979,828947.6,kg of nutrients +5539,Viet Nam,1980,664600.64,kg of nutrients +5540,Viet Nam,1981,1260606.8159999999,kg of nutrients +5541,Viet Nam,1982,1391377.0880000002,kg of nutrients +5542,Viet Nam,1983,1419107.5072,kg of nutrients +5543,Viet Nam,1984,1547829.6384,kg of nutrients +5544,Viet Nam,1985,1497805.5584,kg of nutrients +5545,Viet Nam,1986,1685020.48,kg of nutrients +5546,Viet Nam,1987,1683720.2624,kg of nutrients +5547,Viet Nam,1988,1677575.84,kg of nutrients +5548,Viet Nam,1989,1713930.3392,kg of nutrients +5549,Viet Nam,1990,1710702.7584,kg of nutrients +5550,Viet Nam,1991,1647888.176,kg of nutrients +5551,Viet Nam,1992,1707489.0144,kg of nutrients +5552,Viet Nam,1993,1895866.08,kg of nutrients +5553,Viet Nam,1994,2040606.2944,kg of nutrients +5554,Viet Nam,1995,2049738.9504,kg of nutrients +5555,Viet Nam,1996,2220187.8656,kg of nutrients +5556,Viet Nam,1997,2399547.3856,kg of nutrients +5557,Viet Nam,1998,2386830.4832,kg of nutrients +5558,Viet Nam,1999,2231981.9712,kg of nutrients +5559,Viet Nam,2000,2299310.5152,kg of nutrients +5560,Viet Nam,2001,2346431.5904,kg of nutrients +5561,Viet Nam,2002,2240915.5392,kg of nutrients +5562,Viet Nam,2003,2324926.1119999997,kg of nutrients +5563,Viet Nam,2004,2352215.8880000003,kg of nutrients +5564,Viet Nam,2005,2210656.0768,kg of nutrients +5565,Viet Nam,2006,2268566.6912,kg of nutrients +5566,Viet Nam,2007,2428077.616,kg of nutrients +5567,Viet Nam,2008,2427310.1888,kg of nutrients +5568,Viet Nam,2009,2308131.4752,kg of nutrients +5569,Viet Nam,2010,2370632.5437,kg of nutrients +5570,Viet Nam,2011,2373883.4856,kg of nutrients +5571,Viet Nam,2012,2198837.8319,kg of nutrients +5572,Viet Nam,2013,2092144.4533,kg of nutrients +5573,Yemen,1988,20652.11,kg of nutrients +5574,Yemen,1989,49114.886,kg of nutrients +5575,Yemen,1990,45255.1628,kg of nutrients +5576,Yemen,1991,27772.029,kg of nutrients +5577,Yemen,1992,65752.9329,kg of nutrients +5578,Yemen,1993,66382.7362,kg of nutrients +5579,Yemen,1994,64245.5585,kg of nutrients +5580,Yemen,1995,66512.0786,kg of nutrients +5581,Yemen,1996,68941.3334,kg of nutrients +5582,Yemen,1997,69369.2792,kg of nutrients +5583,Yemen,1998,73078.5182,kg of nutrients +5584,Yemen,1999,65819.312,kg of nutrients +5585,Yemen,2000,65015.8885,kg of nutrients +5586,Yemen,2001,65994.4733,kg of nutrients +5587,Yemen,2002,62521.4498,kg of nutrients +5588,Yemen,2003,61505.8714,kg of nutrients +5589,Yemen,2004,17995.4775,kg of nutrients +5590,Yemen,2005,17513.5196,kg of nutrients +5591,Yemen,2006,23965.069,kg of nutrients +5592,Yemen,2007,27743.439,kg of nutrients +5593,Yemen,2008,28479.2852,kg of nutrients +5594,Yemen,2009,28679.8879,kg of nutrients +5595,Yemen,2010,29214.625,kg of nutrients +5596,Yemen,2011,29368.2356,kg of nutrients +5597,Yemen,2012,30644.8482,kg of nutrients +5598,Yemen,2013,31882.3851,kg of nutrients +5599,Yugoslav SFR,1961,9216942.9408,kg of nutrients +5600,Yugoslav SFR,1962,9104882.0832,kg of nutrients +5601,Yugoslav SFR,1963,9088065.44,kg of nutrients +5602,Yugoslav SFR,1964,8972690.816,kg of nutrients +5603,Yugoslav SFR,1965,8520316.512,kg of nutrients +5604,Yugoslav SFR,1966,2967995.716,kg of nutrients +5605,Yugoslav SFR,1967,2530666.091,kg of nutrients +5606,Yugoslav SFR,1968,2393550.9359999998,kg of nutrients +5607,Yugoslav SFR,1969,2315937.7061,kg of nutrients +5608,Yugoslav SFR,1970,2282761.3469,kg of nutrients +5609,Yugoslav SFR,1971,2172446.154,kg of nutrients +5610,Yugoslav SFR,1972,2021248.8239,kg of nutrients +5611,Yugoslav SFR,1973,2359077.0625,kg of nutrients +5612,Yugoslav SFR,1974,2148815.0848,kg of nutrients +5613,Yugoslav SFR,1975,2091963.6406,kg of nutrients +5614,Yugoslav SFR,1976,1850165.239,kg of nutrients +5615,Yugoslav SFR,1977,1949932.64,kg of nutrients +5616,Yugoslav SFR,1978,1663699.2959999999,kg of nutrients +5617,Yugoslav SFR,1979,1870240.4,kg of nutrients +5618,Yugoslav SFR,1980,1664352.864,kg of nutrients +5619,Yugoslav SFR,1981,1916652.56,kg of nutrients +5620,Yugoslav SFR,1982,1987593.024,kg of nutrients +5621,Yugoslav SFR,1983,2000158.0159999998,kg of nutrients +5622,Yugoslav SFR,1984,1580022.4256,kg of nutrients +5623,Yugoslav SFR,1985,1560008.8067,kg of nutrients +5624,Yugoslav SFR,1986,2298397.3732,kg of nutrients +5625,Yugoslav SFR,1987,1746516.592,kg of nutrients +5626,Yugoslav SFR,1988,1395810.3759,kg of nutrients +5627,Yugoslav SFR,1989,2201406.1076,kg of nutrients +5628,Yugoslav SFR,1990,1382845.5563,kg of nutrients +5629,Yugoslav SFR,1991,2118878.9891,kg of nutrients +5630,Zimbabwe,1961,315505.536,kg of nutrients +5631,Zimbabwe,1962,336775.1264,kg of nutrients +5632,Zimbabwe,1963,320625.88800000004,kg of nutrients +5633,Zimbabwe,1964,310385.184,kg of nutrients +5634,Zimbabwe,1965,337367.68,kg of nutrients +5635,Zimbabwe,1966,412993.52,kg of nutrients +5636,Zimbabwe,1967,415553.696,kg of nutrients +5637,Zimbabwe,1968,420674.04799999995,kg of nutrients +5638,Zimbabwe,1969,420674.04799999995,kg of nutrients +5639,Zimbabwe,1970,400664.416,kg of nutrients +5640,Zimbabwe,1971,420674.04799999995,kg of nutrients +5641,Zimbabwe,1972,420674.04799999995,kg of nutrients +5642,Zimbabwe,1973,433239.04,kg of nutrients +5643,Zimbabwe,1974,453248.672,kg of nutrients +5644,Zimbabwe,1975,453248.672,kg of nutrients +5645,Zimbabwe,1976,465813.664,kg of nutrients +5646,Zimbabwe,1977,465813.664,kg of nutrients +5647,Zimbabwe,1978,400192.64,kg of nutrients +5648,Zimbabwe,1979,415553.696,kg of nutrients +5649,Zimbabwe,1980,415553.696,kg of nutrients +5650,Zimbabwe,1981,347559.9854,kg of nutrients +5651,Zimbabwe,1982,705312.837,kg of nutrients +5652,Zimbabwe,1983,691983.52,kg of nutrients +5653,Zimbabwe,1984,691983.52,kg of nutrients +5654,Zimbabwe,1985,709668.8640000001,kg of nutrients +5655,Zimbabwe,1986,722233.8559999999,kg of nutrients +5656,Zimbabwe,1987,714317.44,kg of nutrients +5657,Zimbabwe,1988,726882.432,kg of nutrients +5658,Zimbabwe,1989,733164.928,kg of nutrients +5659,Zimbabwe,1990,739447.4240000001,kg of nutrients +5660,Zimbabwe,1991,745729.92,kg of nutrients +5661,Zimbabwe,1992,651492.48,kg of nutrients +5662,Zimbabwe,1993,684538.88,kg of nutrients +5663,Zimbabwe,1994,771153.7977,kg of nutrients +5664,Zimbabwe,1995,636603.2,kg of nutrients +5665,Zimbabwe,1996,140903.0548,kg of nutrients +5666,Zimbabwe,1997,162355.7827,kg of nutrients +5667,Zimbabwe,1998,178326.3666,kg of nutrients +5668,Zimbabwe,1999,156407.7412,kg of nutrients +5669,Zimbabwe,2000,150435.5083,kg of nutrients +5670,Zimbabwe,2001,150558.4188,kg of nutrients +5671,Zimbabwe,2002,149355.2052,kg of nutrients +5672,Zimbabwe,2003,171030.3662,kg of nutrients +5673,Zimbabwe,2004,801288.8503,kg of nutrients +5674,Zimbabwe,2005,463243.5697,kg of nutrients +5675,Zimbabwe,2006,646708.8693,kg of nutrients +5676,Zimbabwe,2007,787638.7492,kg of nutrients +5677,Zimbabwe,2008,653133.9783,kg of nutrients +5678,Zimbabwe,2009,620876.8888,kg of nutrients +5679,Zimbabwe,2010,749530.4559999999,kg of nutrients +5680,Zimbabwe,2011,482487.9864,kg of nutrients +5681,Zimbabwe,2012,495229.5334,kg of nutrients +5682,Zimbabwe,2013,641412.9137,kg of nutrients diff --git a/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/gross_production_value_c.csv b/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/gross_production_value_c.csv new file mode 100644 index 0000000..1f92ea0 --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/gross_production_value_c.csv @@ -0,0 +1,1137 @@ +,Country,Year,gross_production_value,Unit +0,Angola,2010,5.088878,USD +1,Angola,2011,7.161055999999999,USD +2,Angola,2012,9.031824,USD +3,Angola,2013,10.110391,USD +4,Belize,1998,0.137547,USD +5,Belize,1999,0.10142999999999999,USD +6,Belize,2000,0.241148,USD +7,Belize,2001,0.332737,USD +8,Belize,2002,0.337776,USD +9,Belize,2003,0.340752,USD +10,Belize,2004,0.331646,USD +11,Belize,2005,0.073539,USD +12,Belize,2006,0.144496,USD +13,Belize,2007,0.082876,USD +14,Belize,2008,0.152252,USD +15,Belize,2009,0.154052,USD +16,Belize,2010,0.137955,USD +17,Belize,2011,0.151557,USD +18,Belize,2012,0.168377,USD +19,Belize,2013,0.163744,USD +20,Bolivia (Plurinational State of),1991,8.449025,USD +21,Bolivia (Plurinational State of),1992,6.825753999999999,USD +22,Bolivia (Plurinational State of),1993,6.497733,USD +23,Bolivia (Plurinational State of),1994,18.328018,USD +24,Bolivia (Plurinational State of),1995,19.817748,USD +25,Bolivia (Plurinational State of),1996,21.808444,USD +26,Bolivia (Plurinational State of),1997,22.645614000000002,USD +27,Bolivia (Plurinational State of),1998,22.245210999999998,USD +28,Bolivia (Plurinational State of),1999,26.122903,USD +29,Bolivia (Plurinational State of),2000,25.386896,USD +30,Bolivia (Plurinational State of),2001,20.951110999999997,USD +31,Bolivia (Plurinational State of),2002,19.736897,USD +32,Bolivia (Plurinational State of),2003,18.540238000000002,USD +33,Bolivia (Plurinational State of),2004,18.887352,USD +34,Bolivia (Plurinational State of),2005,19.588637,USD +35,Bolivia (Plurinational State of),2006,24.222472,USD +36,Bolivia (Plurinational State of),2007,25.477393,USD +37,Bolivia (Plurinational State of),2008,36.987356,USD +38,Bolivia (Plurinational State of),2009,33.160388,USD +39,Bolivia (Plurinational State of),2010,35.51943,USD +40,Bolivia (Plurinational State of),2011,37.270742,USD +41,Bolivia (Plurinational State of),2012,38.654104,USD +42,Bolivia (Plurinational State of),2013,41.257134,USD +43,Brazil,1991,487.53373600000003,USD +44,Brazil,1992,390.716031,USD +45,Brazil,1993,533.124619,USD +46,Brazil,1994,1648.165117,USD +47,Brazil,1995,1042.981019,USD +48,Brazil,1996,1276.426875,USD +49,Brazil,1997,1536.222937,USD +50,Brazil,1998,1831.2726469999998,USD +51,Brazil,1999,1183.0015560000002,USD +52,Brazil,2000,1288.170969,USD +53,Brazil,2001,696.1910349999999,USD +54,Brazil,2002,808.983063,USD +55,Brazil,2003,855.530248,USD +56,Brazil,2004,1256.659952,USD +57,Brazil,2005,1627.111813,USD +58,Brazil,2006,2074.118882,USD +59,Brazil,2007,2657.611444,USD +60,Brazil,2008,4371.021429,USD +61,Brazil,2009,4644.51049,USD +62,Brazil,2010,7187.406184,USD +63,Brazil,2011,10855.194229,USD +64,Brazil,2012,9209.750164000001,USD +65,Brazil,2013,6897.724447,USD +66,Burundi,1991,82.44194300000001,USD +67,Burundi,1992,78.16300600000001,USD +68,Burundi,1993,42.614507,USD +69,Burundi,1994,73.544155,USD +70,Burundi,1995,61.297858999999995,USD +71,Burundi,1996,64.358677,USD +72,Burundi,1997,48.082114000000004,USD +73,Burundi,1998,38.766675,USD +74,Burundi,1999,46.339217,USD +75,Burundi,2000,94.02226,USD +76,Burundi,2001,73.71085500000001,USD +77,Burundi,2002,612.4609059999999,USD +78,Burundi,2003,31.096753000000003,USD +79,Burundi,2004,239.637215,USD +80,Burundi,2005,59.499626,USD +81,Burundi,2006,287.315909,USD +82,Burundi,2007,5.9090300000000004,USD +83,Burundi,2008,21.184907,USD +84,Burundi,2009,5.003418,USD +85,Burundi,2010,21.928122000000002,USD +86,Burundi,2011,16.303889,USD +87,Burundi,2012,11.503733,USD +88,Burundi,2013,6.765280000000001,USD +89,Cambodia,1991,0.49031199999999997,USD +90,Cambodia,1992,0.320359,USD +91,Cambodia,1993,0.41158199999999995,USD +92,Cambodia,1994,0.441046,USD +93,Cambodia,1995,0.537776,USD +94,Cambodia,1996,0.688812,USD +95,Cambodia,1997,0.936105,USD +96,Cambodia,1998,1.136946,USD +97,Cambodia,1999,1.16754,USD +98,Cambodia,2000,1.06503,USD +99,Cambodia,2001,1.049175,USD +100,Cambodia,2002,1.051052,USD +101,Cambodia,2003,1.0625040000000001,USD +102,Cambodia,2004,1.133218,USD +103,Cambodia,2005,1.220595,USD +104,Cambodia,2006,1.225757,USD +105,Cambodia,2007,1.4775340000000001,USD +106,Cambodia,2008,1.905663,USD +107,Cambodia,2009,1.929499,USD +108,Cambodia,2010,2.073671,USD +109,Cambodia,2011,2.330474,USD +110,Cambodia,2012,2.397785,USD +111,Cambodia,2013,2.4376330000000004,USD +112,Cameroon,1991,67.308525,USD +113,Cameroon,1992,35.985248,USD +114,Cameroon,1993,30.202171999999997,USD +115,Cameroon,1994,53.128513,USD +116,Cameroon,1995,66.713623,USD +117,Cameroon,1996,91.592664,USD +118,Cameroon,1997,46.310465,USD +119,Cameroon,1998,81.067813,USD +120,Cameroon,1999,67.646676,USD +121,Cameroon,2000,42.375008,USD +122,Cameroon,2001,33.37225,USD +123,Cameroon,2002,22.229419,USD +124,Cameroon,2003,37.114643,USD +125,Cameroon,2004,48.40885,USD +126,Cameroon,2005,45.784756,USD +127,Cameroon,2006,36.815957,USD +128,Cameroon,2007,39.389001,USD +129,Cameroon,2008,44.049746,USD +130,Cameroon,2009,42.974312,USD +131,Cameroon,2010,61.281229,USD +132,Cameroon,2011,27.847284000000002,USD +133,Cameroon,2012,35.614734000000006,USD +134,Cameroon,2013,42.933116,USD +135,China,1991,2.892893,USD +136,China,1992,3.413707,USD +137,China,1993,3.8243940000000003,USD +138,China,1994,2.311909,USD +139,China,1995,2.825014,USD +140,China,1996,2.742968,USD +141,China,1997,2.9558720000000003,USD +142,China,1998,5.166513,USD +143,China,1999,7.0254509999999994,USD +144,China,2000,9.323145,USD +145,China,2001,14.572844,USD +146,China,2002,17.046712,USD +147,China,2003,20.778338,USD +148,China,2004,24.847189,USD +149,China,2005,30.91995,USD +150,China,2006,43.834144,USD +151,China,2007,53.614830000000005,USD +152,China,2008,85.01521600000001,USD +153,China,2009,204.223489,USD +154,China,2010,160.283214,USD +155,China,2011,239.316081,USD +156,China,2012,357.32716600000003,USD +157,China,2013,307.349592,USD +158,"China, mainland",1991,2.892893,USD +159,"China, mainland",1992,3.413707,USD +160,"China, mainland",1993,3.8243940000000003,USD +161,"China, mainland",1994,2.311909,USD +162,"China, mainland",1995,2.825014,USD +163,"China, mainland",1996,2.742968,USD +164,"China, mainland",1997,2.9558720000000003,USD +165,"China, mainland",1998,5.166513,USD +166,"China, mainland",1999,7.0254509999999994,USD +167,"China, mainland",2000,9.323145,USD +168,"China, mainland",2001,14.572844,USD +169,"China, mainland",2002,17.046712,USD +170,"China, mainland",2003,20.778338,USD +171,"China, mainland",2004,24.847189,USD +172,"China, mainland",2005,30.91995,USD +173,"China, mainland",2006,43.834144,USD +174,"China, mainland",2007,53.614830000000005,USD +175,"China, mainland",2008,85.01521600000001,USD +176,"China, mainland",2009,204.223489,USD +177,"China, mainland",2010,160.283214,USD +178,"China, mainland",2011,239.316081,USD +179,"China, mainland",2012,357.32716600000003,USD +180,"China, mainland",2013,307.349592,USD +181,Colombia,1991,1170.313022,USD +182,Colombia,1992,1080.5028960000002,USD +183,Colombia,1993,738.803922,USD +184,Colombia,1994,1102.5259529999998,USD +185,Colombia,1995,1471.872319,USD +186,Colombia,1996,1113.4094810000001,USD +187,Colombia,1997,1517.165267,USD +188,Colombia,1998,1401.447561,USD +189,Colombia,1999,847.673194,USD +190,Colombia,2000,858.8700970000001,USD +191,Colombia,2001,688.7628990000001,USD +192,Colombia,2002,663.116269,USD +193,Colombia,2003,611.960164,USD +194,Colombia,2004,742.82258,USD +195,Colombia,2005,1075.8940109999999,USD +196,Colombia,2006,1172.2206039999999,USD +197,Colombia,2007,1369.232078,USD +198,Colombia,2008,1416.36061,USD +199,Colombia,2009,1166.629542,USD +200,Colombia,2010,1733.00309,USD +201,Colombia,2011,2007.355799,USD +202,Colombia,2012,1388.863245,USD +203,Colombia,2013,1345.254536,USD +204,Congo,1991,0.571113,USD +205,Congo,1992,0.6299779999999999,USD +206,Congo,1993,0.609597,USD +207,Congo,1994,0.32167399999999996,USD +208,Congo,1995,0.37001,USD +209,Congo,1996,0.359689,USD +210,Congo,1997,0.263625,USD +211,Congo,1998,0.288159,USD +212,Congo,1999,2.031775,USD +213,Congo,2000,0.468063,USD +214,Congo,2001,0.461804,USD +215,Congo,2002,2.237866,USD +216,Congo,2003,0.550585,USD +217,Congo,2004,0.9446540000000001,USD +218,Congo,2005,1.154509,USD +219,Congo,2006,1.1111309999999999,USD +220,Congo,2007,1.370236,USD +221,Congo,2008,1.3142690000000001,USD +222,Congo,2009,1.43234,USD +223,Congo,2010,1.416369,USD +224,Congo,2011,1.6814759999999997,USD +225,Congo,2012,1.501383,USD +226,Congo,2013,1.679325,USD +227,Cook Islands,1991,0.0043939999999999995,USD +228,Cook Islands,1992,0.010227,USD +229,Cook Islands,1993,0.008232,USD +230,Cook Islands,1994,0.018064,USD +231,Cook Islands,1995,0.049980000000000004,USD +232,Cook Islands,1996,0.05388099999999999,USD +233,Cook Islands,1997,0.06252,USD +234,Cook Islands,1998,0.029809,USD +235,Cook Islands,1999,0.011455,USD +236,Cook Islands,2000,0.012486,USD +237,Cook Islands,2001,0.009101,USD +238,Cook Islands,2002,0.009208,USD +239,Cook Islands,2003,0.0042450000000000005,USD +240,Cook Islands,2005,0.0001,USD +241,Cook Islands,2008,7.4e-05,USD +242,Cook Islands,2009,0.000168,USD +243,Cook Islands,2010,0.000205,USD +244,Cook Islands,2011,0.000234,USD +245,Cook Islands,2012,0.00025299999999999997,USD +246,Cook Islands,2013,0.00031299999999999996,USD +247,Costa Rica,1991,188.76904199999998,USD +248,Costa Rica,1992,180.883141,USD +249,Costa Rica,1993,140.882744,USD +250,Costa Rica,1994,191.250039,USD +251,Costa Rica,1995,152.23334499999999,USD +252,Costa Rica,1996,183.200594,USD +253,Costa Rica,1997,162.309249,USD +254,Costa Rica,1998,148.058535,USD +255,Costa Rica,1999,130.734323,USD +256,Costa Rica,2000,86.716122,USD +257,Costa Rica,2001,78.377021,USD +258,Costa Rica,2002,85.236364,USD +259,Costa Rica,2003,67.587535,USD +260,Costa Rica,2004,74.56270500000001,USD +261,Costa Rica,2005,103.93440799999999,USD +262,Costa Rica,2006,95.71701,USD +263,Costa Rica,2007,126.084946,USD +264,Costa Rica,2008,127.44979599999999,USD +265,Costa Rica,2009,103.29238199999999,USD +266,Costa Rica,2010,126.903278,USD +267,Costa Rica,2011,190.163352,USD +268,Costa Rica,2012,223.04399500000002,USD +269,Costa Rica,2013,95.783452,USD +270,Côte d'Ivoire,1991,274.982666,USD +271,Côte d'Ivoire,1992,225.25820499999998,USD +272,Côte d'Ivoire,1993,98.132317,USD +273,Côte d'Ivoire,1994,138.967268,USD +274,Côte d'Ivoire,1995,273.42087599999996,USD +275,Côte d'Ivoire,1996,229.595625,USD +276,Côte d'Ivoire,1997,267.895914,USD +277,Côte d'Ivoire,1998,274.124101,USD +278,Côte d'Ivoire,1999,259.562036,USD +279,Côte d'Ivoire,2000,169.724757,USD +280,Côte d'Ivoire,2001,98.179498,USD +281,Côte d'Ivoire,2002,61.103235,USD +282,Côte d'Ivoire,2003,56.376979000000006,USD +283,Côte d'Ivoire,2004,103.540276,USD +284,Côte d'Ivoire,2005,109.011323,USD +285,Côte d'Ivoire,2006,148.415506,USD +286,Côte d'Ivoire,2007,159.70301899999998,USD +287,Côte d'Ivoire,2008,240.84691400000003,USD +288,Côte d'Ivoire,2009,122.000228,USD +289,Côte d'Ivoire,2010,75.83646,USD +290,Côte d'Ivoire,2011,30.657781,USD +291,Côte d'Ivoire,2012,96.23625,USD +292,Côte d'Ivoire,2013,87.68162199999999,USD +293,Dominican Republic,1991,77.11764699999999,USD +294,Dominican Republic,1992,58.921528,USD +295,Dominican Republic,1993,44.944594,USD +296,Dominican Republic,1994,65.705698,USD +297,Dominican Republic,1995,85.127475,USD +298,Dominican Republic,1996,77.118128,USD +299,Dominican Republic,1997,80.674962,USD +300,Dominican Republic,1998,107.96595,USD +301,Dominican Republic,1999,54.770136,USD +302,Dominican Republic,2000,64.495734,USD +303,Dominican Republic,2001,28.84855,USD +304,Dominican Republic,2002,36.989945,USD +305,Dominican Republic,2003,34.768759,USD +306,Dominican Republic,2004,42.662709,USD +307,Dominican Republic,2005,71.040379,USD +308,Dominican Republic,2006,59.427977,USD +309,Dominican Republic,2007,68.741579,USD +310,Dominican Republic,2008,62.214668,USD +311,Dominican Republic,2009,72.45646500000001,USD +312,Dominican Republic,2010,56.086206000000004,USD +313,Dominican Republic,2011,62.579191,USD +314,Dominican Republic,2012,81.817764,USD +315,Dominican Republic,2013,58.003751,USD +316,Ecuador,1991,13.539475,USD +317,Ecuador,1992,11.599834,USD +318,Ecuador,1993,15.27793,USD +319,Ecuador,1994,30.291898,USD +320,Ecuador,1995,48.405846000000004,USD +321,Ecuador,1996,32.666589,USD +322,Ecuador,1997,35.797546999999994,USD +323,Ecuador,1998,7.212699000000001,USD +324,Ecuador,1999,15.465257999999999,USD +325,Ecuador,2000,35.335679999999996,USD +326,Ecuador,2001,179.6211,USD +327,Ecuador,2002,16.3275,USD +328,Ecuador,2003,18.155829999999998,USD +329,Ecuador,2004,18.965828,USD +330,Ecuador,2005,42.233175,USD +331,Ecuador,2006,22.346748,USD +332,Ecuador,2007,43.681492,USD +333,Ecuador,2008,29.419194,USD +334,Ecuador,2009,35.997854,USD +335,Ecuador,2010,52.675499,USD +336,Ecuador,2011,32.652879,USD +337,Ecuador,2012,11.649649,USD +338,Ecuador,2013,13.269445000000001,USD +339,El Salvador,1991,156.875894,USD +340,El Salvador,1992,123.622251,USD +341,El Salvador,1993,108.76154,USD +342,El Salvador,1994,304.38903700000003,USD +343,El Salvador,1995,305.094633,USD +344,El Salvador,1996,242.95217000000002,USD +345,El Salvador,1997,338.19966400000004,USD +346,El Salvador,1998,216.862635,USD +347,El Salvador,1999,199.108903,USD +348,El Salvador,2000,110.555581,USD +349,El Salvador,2001,43.046715,USD +350,El Salvador,2002,43.497436,USD +351,El Salvador,2003,45.373719,USD +352,El Salvador,2004,72.53648000000001,USD +353,El Salvador,2005,183.40381599999998,USD +354,El Salvador,2006,207.230232,USD +355,El Salvador,2007,160.278559,USD +356,El Salvador,2008,205.066986,USD +357,El Salvador,2009,134.80016,USD +358,El Salvador,2010,333.425087,USD +359,El Salvador,2011,341.54803799999996,USD +360,El Salvador,2012,255.93854,USD +361,Equatorial Guinea,1991,3.19028,USD +362,Equatorial Guinea,1992,3.116832,USD +363,Equatorial Guinea,1993,2.820312,USD +364,Equatorial Guinea,1994,1.1257110000000001,USD +365,Equatorial Guinea,1995,5.409212999999999,USD +366,Equatorial Guinea,1996,5.864502,USD +367,Equatorial Guinea,1997,4.283247,USD +368,Equatorial Guinea,1998,3.390108,USD +369,Equatorial Guinea,1999,1.9896080000000003,USD +370,Equatorial Guinea,2000,2.4579470000000003,USD +371,Equatorial Guinea,2001,2.046277,USD +372,Equatorial Guinea,2002,2.1521169999999996,USD +373,Equatorial Guinea,2003,3.0110099999999997,USD +374,Equatorial Guinea,2004,3.417881,USD +375,Equatorial Guinea,2005,4.958143,USD +376,Equatorial Guinea,2006,6.466334,USD +377,Equatorial Guinea,2007,7.578089,USD +378,Equatorial Guinea,2008,9.881202,USD +379,Equatorial Guinea,2009,8.602494,USD +380,Equatorial Guinea,2010,8.001199,USD +381,Equatorial Guinea,2011,9.969014999999999,USD +382,Equatorial Guinea,2012,9.488785,USD +383,Equatorial Guinea,2013,9.642053,USD +384,Ethiopia,1993,149.4,USD +385,Ethiopia,1994,196.96248899999998,USD +386,Ethiopia,1995,205.021413,USD +387,Ethiopia,1996,127.451357,USD +388,Ethiopia,1997,127.09443700000001,USD +389,Ethiopia,1998,150.930359,USD +390,Ethiopia,1999,203.97274099999998,USD +391,Ethiopia,2000,202.908918,USD +392,Ethiopia,2001,146.98164599999998,USD +393,Ethiopia,2002,83.289078,USD +394,Ethiopia,2003,84.22625500000001,USD +395,Ethiopia,2004,176.46831699999998,USD +396,Ethiopia,2005,246.89760299999998,USD +397,Ethiopia,2006,397.027655,USD +398,Ethiopia,2007,501.975994,USD +399,Ethiopia,2008,598.3437849999999,USD +400,Ethiopia,2009,522.87878,USD +401,Ethiopia,2010,467.289496,USD +402,Ethiopia,2011,421.009065,USD +403,Ethiopia,2012,416.80181699999997,USD +404,Ethiopia,2013,544.641823,USD +405,Ethiopia PDR,1991,172.759492,USD +406,Ethiopia PDR,1992,127.477552,USD +407,Ghana,1991,1.876871,USD +408,Ghana,1992,1.7140830000000002,USD +409,Ghana,1993,3.576318,USD +410,Ghana,1994,2.66825,USD +411,Ghana,1995,7.155846,USD +412,Ghana,1996,8.708497,USD +413,Ghana,1997,2.3437930000000002,USD +414,Ghana,1998,8.931249000000001,USD +415,Ghana,1999,4.5849400000000005,USD +416,Ghana,2000,1.10677,USD +417,Ghana,2001,0.916767,USD +418,Ghana,2002,1.569701,USD +419,Ghana,2003,1.204181,USD +420,Ghana,2004,1.6603459999999999,USD +421,Ghana,2005,1.986264,USD +422,Ghana,2006,3.075455,USD +423,Ghana,2007,3.7485699999999995,USD +424,Ghana,2008,3.336621,USD +425,Ghana,2009,2.5747299999999997,USD +426,Ghana,2010,1.7404560000000002,USD +427,Ghana,2011,0.777043,USD +428,Ghana,2012,0.691547,USD +429,Ghana,2013,0.78045,USD +430,Guinea,1991,17.90788,USD +431,Guinea,1992,15.966717000000001,USD +432,Guinea,1993,15.070796,USD +433,Guinea,1994,15.358837,USD +434,Guinea,1995,14.121281,USD +435,Guinea,1996,11.329494,USD +436,Guinea,1997,9.244321000000001,USD +437,Guinea,1998,29.343441,USD +438,Guinea,1999,19.707448,USD +439,Guinea,2000,14.476938,USD +440,Guinea,2001,5.83951,USD +441,Guinea,2002,8.075215,USD +442,Guinea,2003,10.138669,USD +443,Guinea,2004,9.959793,USD +444,Guinea,2005,4.801303,USD +445,Guinea,2006,4.193614,USD +446,Guinea,2007,9.278630999999999,USD +447,Guinea,2008,8.802764999999999,USD +448,Guinea,2009,9.161533,USD +449,Guinea,2010,7.252503999999999,USD +450,Guinea,2011,5.976614,USD +451,Guinea,2012,3.750054,USD +452,Guinea,2013,4.20785,USD +453,Honduras,1991,103.94696400000001,USD +454,Honduras,1992,105.975029,USD +455,Honduras,1993,137.546775,USD +456,Honduras,1994,291.792098,USD +457,Honduras,1995,244.376271,USD +458,Honduras,1996,293.43101,USD +459,Honduras,1997,374.889064,USD +460,Honduras,1998,300.23699799999997,USD +461,Honduras,1999,220.921519,USD +462,Honduras,2000,283.07480400000003,USD +463,Honduras,2001,314.434568,USD +464,Honduras,2002,145.468625,USD +465,Honduras,2003,164.346829,USD +466,Honduras,2004,246.02459100000002,USD +467,Honduras,2005,334.05936,USD +468,Honduras,2006,447.731798,USD +469,Honduras,2007,550.263719,USD +470,Honduras,2008,572.934356,USD +471,Honduras,2009,525.3646980000001,USD +472,Honduras,2010,634.037112,USD +473,Honduras,2011,949.366451,USD +474,Honduras,2012,1002.924843,USD +475,Honduras,2013,682.157255,USD +476,India,1991,215.579394,USD +477,India,1992,191.70862,USD +478,India,1993,142.830431,USD +479,India,1994,237.510715,USD +480,India,1995,198.328701,USD +481,India,1996,373.005372,USD +482,India,1997,348.829766,USD +483,India,1998,423.26536,USD +484,India,1999,428.48267300000003,USD +485,India,2000,407.148076,USD +486,India,2001,359.32014100000004,USD +487,India,2002,352.324348,USD +488,India,2003,330.424898,USD +489,India,2004,353.713848,USD +490,India,2005,403.047108,USD +491,India,2006,415.4993,USD +492,India,2007,588.201557,USD +493,India,2008,501.492867,USD +494,India,2009,498.497361,USD +495,India,2010,685.933585,USD +496,India,2011,764.249917,USD +497,India,2012,753.052881,USD +498,India,2013,665.74802,USD +499,Indonesia,1991,444.233705,USD +500,Indonesia,1992,416.38254700000005,USD +501,Indonesia,1993,406.009448,USD +502,Indonesia,1994,649.838639,USD +503,Indonesia,1995,886.6223689999999,USD +504,Indonesia,1996,694.116313,USD +505,Indonesia,1997,572.555534,USD +506,Indonesia,1998,296.110044,USD +507,Indonesia,1999,545.853759,USD +508,Indonesia,2000,508.80857000000003,USD +509,Indonesia,2001,434.210232,USD +510,Indonesia,2002,396.184234,USD +511,Indonesia,2003,438.48843600000004,USD +512,Indonesia,2004,418.17630099999997,USD +513,Indonesia,2005,421.38095400000003,USD +514,Indonesia,2006,585.186053,USD +515,Indonesia,2007,814.8300849999999,USD +516,Indonesia,2008,987.5435269999999,USD +517,Indonesia,2009,920.2111269999999,USD +518,Indonesia,2010,1051.242624,USD +519,Indonesia,2011,1141.1094380000002,USD +520,Indonesia,2012,1207.99625,USD +521,Indonesia,2013,1069.1025710000001,USD +522,Jamaica,1991,2.738625,USD +523,Jamaica,1992,2.999787,USD +524,Jamaica,1993,1.7923490000000002,USD +525,Jamaica,1994,2.438889,USD +526,Jamaica,1995,3.071366,USD +527,Jamaica,1996,3.9385779999999997,USD +528,Jamaica,1997,4.620737,USD +529,Jamaica,1998,2.88045,USD +530,Jamaica,1999,3.626314,USD +531,Jamaica,2000,3.131061,USD +532,Jamaica,2001,4.026117,USD +533,Jamaica,2002,3.904319,USD +534,Jamaica,2003,3.91431,USD +535,Jamaica,2004,3.6024510000000003,USD +536,Jamaica,2005,15.746709,USD +537,Jamaica,2006,22.504943,USD +538,Jamaica,2007,27.306907,USD +539,Jamaica,2008,15.52108,USD +540,Jamaica,2009,17.712611,USD +541,Jamaica,2010,12.260652,USD +542,Jamaica,2011,10.718869,USD +543,Jamaica,2012,9.13589,USD +544,Jamaica,2013,8.959964999999999,USD +545,Kenya,1991,146.178402,USD +546,Kenya,1992,109.77298600000002,USD +547,Kenya,1993,128.00371299999998,USD +548,Kenya,1994,205.668045,USD +549,Kenya,1995,296.162033,USD +550,Kenya,1996,238.666422,USD +551,Kenya,1997,293.937028,USD +552,Kenya,1998,228.84179,USD +553,Kenya,1999,151.373538,USD +554,Kenya,2000,152.138871,USD +555,Kenya,2001,77.49485899999999,USD +556,Kenya,2002,78.842067,USD +557,Kenya,2003,71.036016,USD +558,Kenya,2004,89.251327,USD +559,Kenya,2005,71.106412,USD +560,Kenya,2006,132.892461,USD +561,Kenya,2007,137.87216999999998,USD +562,Kenya,2008,107.59903999999999,USD +563,Kenya,2009,136.44087199999998,USD +564,Kenya,2010,210.32506800000002,USD +565,Kenya,2011,243.00413700000001,USD +566,Kenya,2012,193.53897,USD +567,Kenya,2013,131.28930400000002,USD +568,Lao People's Democratic Republic,1991,9.135098,USD +569,Lao People's Democratic Republic,1992,7.537167999999999,USD +570,Lao People's Democratic Republic,1993,9.151721,USD +571,Lao People's Democratic Republic,1994,11.280111999999999,USD +572,Lao People's Democratic Republic,1995,9.932808999999999,USD +573,Lao People's Democratic Republic,1996,13.641991,USD +574,Lao People's Democratic Republic,1997,18.324814,USD +575,Lao People's Democratic Republic,1998,11.853775,USD +576,Lao People's Democratic Republic,1999,8.947624000000001,USD +577,Lao People's Democratic Republic,2000,13.639435,USD +578,Lao People's Democratic Republic,2001,5.99198,USD +579,Lao People's Democratic Republic,2002,10.085241,USD +580,Lao People's Democratic Republic,2003,8.490734,USD +581,Lao People's Democratic Republic,2004,7.189322,USD +582,Lao People's Democratic Republic,2005,7.899141,USD +583,Lao People's Democratic Republic,2006,8.546502,USD +584,Lao People's Democratic Republic,2007,12.138597,USD +585,Lao People's Democratic Republic,2008,15.975831,USD +586,Lao People's Democratic Republic,2009,19.76074,USD +587,Lao People's Democratic Republic,2010,20.894011,USD +588,Lao People's Democratic Republic,2011,24.612285,USD +589,Lao People's Democratic Republic,2012,43.6227,USD +590,Lao People's Democratic Republic,2013,49.729193,USD +591,Madagascar,1991,45.694033000000005,USD +592,Madagascar,1992,21.427958,USD +593,Madagascar,1993,20.378491,USD +594,Madagascar,1994,187.133079,USD +595,Madagascar,1995,95.648202,USD +596,Madagascar,1996,76.518282,USD +597,Madagascar,1997,54.018104,USD +598,Madagascar,1998,71.672753,USD +599,Madagascar,1999,56.892553,USD +600,Madagascar,2000,22.742879000000002,USD +601,Madagascar,2001,19.490751,USD +602,Madagascar,2002,13.020857000000001,USD +603,Madagascar,2003,23.54191,USD +604,Madagascar,2004,11.3736,USD +605,Madagascar,2005,9.602697000000001,USD +606,Madagascar,2006,52.270740999999994,USD +607,Madagascar,2007,68.42554799999999,USD +608,Madagascar,2008,87.272892,USD +609,Madagascar,2009,111.03861100000002,USD +610,Madagascar,2010,74.41058699999999,USD +611,Madagascar,2011,83.659746,USD +612,Madagascar,2012,72.481581,USD +613,Madagascar,2013,74.714067,USD +614,Malawi,1996,3.3585300000000005,USD +615,Malawi,1997,4.0950050000000005,USD +616,Malawi,1998,3.089283,USD +617,Malawi,1999,3.345276,USD +618,Malawi,2000,3.438285,USD +619,Malawi,2001,5.5879650000000005,USD +620,Malawi,2002,4.2091400000000005,USD +621,Malawi,2003,3.600561,USD +622,Malawi,2004,2.482108,USD +623,Malawi,2005,1.886234,USD +624,Malawi,2006,2.970088,USD +625,Malawi,2007,1.7211310000000002,USD +626,Malawi,2008,1.731277,USD +627,Malawi,2009,11.881295,USD +628,Malawi,2010,8.7138,USD +629,Malawi,2011,7.794786,USD +630,Malawi,2012,5.054683,USD +631,Malawi,2013,2.914466,USD +632,Malaysia,1991,8.569828999999999,USD +633,Malaysia,1992,11.016010000000001,USD +634,Malaysia,1993,13.635160999999998,USD +635,Malaysia,1994,13.704147,USD +636,Malaysia,1995,14.623558,USD +637,Malaysia,1996,19.543372,USD +638,Malaysia,1997,23.382694,USD +639,Malaysia,1998,24.401338,USD +640,Malaysia,1999,31.509210999999997,USD +641,Malaysia,2000,37.558632,USD +642,Malaysia,2001,35.288289,USD +643,Malaysia,2002,37.312211,USD +644,Malaysia,2003,39.410526000000004,USD +645,Malaysia,2004,41.610490999999996,USD +646,Malaysia,2005,42.581804999999996,USD +647,Malaysia,2006,40.206401,USD +648,Malaysia,2007,37.792441,USD +649,Malaysia,2008,48.535322,USD +650,Malaysia,2009,26.350776,USD +651,Malaysia,2010,37.514883000000005,USD +652,Malaysia,2011,46.829106,USD +653,Malaysia,2012,28.702902,USD +654,Malaysia,2013,37.308902,USD +655,Mexico,1991,101.348035,USD +656,Mexico,1992,68.681421,USD +657,Mexico,1993,64.95763199999999,USD +658,Mexico,1994,77.58887299999999,USD +659,Mexico,1995,112.583199,USD +660,Mexico,1996,151.488806,USD +661,Mexico,1997,178.472159,USD +662,Mexico,1998,127.573535,USD +663,Mexico,1999,132.534979,USD +664,Mexico,2000,103.143807,USD +665,Mexico,2001,60.162388,USD +666,Mexico,2002,52.387512,USD +667,Mexico,2003,52.439152,USD +668,Mexico,2004,46.366589000000005,USD +669,Mexico,2005,61.058583,USD +670,Mexico,2006,68.458898,USD +671,Mexico,2007,81.968886,USD +672,Mexico,2008,91.683534,USD +673,Mexico,2009,72.839287,USD +674,Mexico,2010,83.447599,USD +675,Mexico,2011,101.004242,USD +676,Mexico,2012,120.88832,USD +677,Mexico,2013,87.356284,USD +678,Mozambique,1991,0.5587810000000001,USD +679,Mozambique,1992,0.359211,USD +680,Mozambique,1993,0.503325,USD +681,Mozambique,1994,0.364324,USD +682,Mozambique,1995,0.299191,USD +683,Mozambique,1996,0.35749899999999996,USD +684,Mozambique,1997,0.39849,USD +685,Mozambique,1998,0.032724,USD +686,Mozambique,1999,0.293394,USD +687,Mozambique,2000,0.19031700000000001,USD +688,Mozambique,2001,0.204871,USD +689,Mozambique,2002,0.198502,USD +690,Mozambique,2003,0.224649,USD +691,Mozambique,2004,0.243896,USD +692,Mozambique,2005,0.22760500000000003,USD +693,Mozambique,2006,0.225266,USD +694,Mozambique,2007,0.23767399999999997,USD +695,Mozambique,2008,0.319996,USD +696,Mozambique,2009,0.26866999999999996,USD +697,Mozambique,2010,0.196461,USD +698,Mozambique,2011,0.284736,USD +699,Mozambique,2012,0.35896,USD +700,Mozambique,2013,0.332548,USD +701,Nepal,1995,0.04106,USD +702,Nepal,1996,0.042768,USD +703,Nepal,1997,0.0555,USD +704,Nepal,1998,0.069587,USD +705,Nepal,1999,0.056463,USD +706,Nepal,2000,0.089101,USD +707,Nepal,2001,0.100935,USD +708,Nepal,2002,0.160639,USD +709,Nepal,2003,0.22221799999999997,USD +710,Nepal,2004,0.281105,USD +711,Nepal,2005,0.342173,USD +712,Nepal,2006,0.414112,USD +713,Nepal,2007,0.73733,USD +714,Nepal,2008,0.775204,USD +715,Nepal,2009,0.37311700000000003,USD +716,Nepal,2010,0.45256499999999994,USD +717,Nepal,2011,0.586544,USD +718,Nepal,2012,0.5605100000000001,USD +719,Nepal,2013,0.44842600000000005,USD +720,Nicaragua,1991,54.096090000000004,USD +721,Nicaragua,1992,43.365671999999996,USD +722,Nicaragua,1993,44.329812,USD +723,Nicaragua,1994,48.598168,USD +724,Nicaragua,1995,70.02069499999999,USD +725,Nicaragua,1996,56.801021999999996,USD +726,Nicaragua,1997,122.667414,USD +727,Nicaragua,1998,153.53956200000002,USD +728,Nicaragua,1999,131.937489,USD +729,Nicaragua,2000,99.701716,USD +730,Nicaragua,2001,85.881155,USD +731,Nicaragua,2002,86.26538000000001,USD +732,Nicaragua,2003,187.617922,USD +733,Nicaragua,2004,118.672698,USD +734,Nicaragua,2005,209.244596,USD +735,Nicaragua,2006,147.09941899999998,USD +736,Nicaragua,2007,225.92919700000002,USD +737,Nicaragua,2008,238.48669500000003,USD +738,Nicaragua,2009,266.959207,USD +739,Nicaragua,2010,268.278544,USD +740,Nicaragua,2011,385.051382,USD +741,Nicaragua,2012,270.32282000000004,USD +742,Nicaragua,2013,245.69615299999998,USD +743,Nigeria,1991,2.825574,USD +744,Nigeria,1992,5.145493,USD +745,Nigeria,1993,8.474217,USD +746,Nigeria,1994,13.755097,USD +747,Nigeria,1995,6.954302,USD +748,Nigeria,1996,5.1631029999999996,USD +749,Nigeria,1997,3.143869,USD +750,Nigeria,1998,6.836887,USD +751,Nigeria,1999,5.482569,USD +752,Nigeria,2000,4.9900519999999995,USD +753,Nigeria,2001,5.8620410000000005,USD +754,Nigeria,2002,7.262980000000001,USD +755,Nigeria,2003,6.872785,USD +756,Nigeria,2004,6.276541,USD +757,Nigeria,2005,7.711256,USD +758,Nigeria,2006,9.253936,USD +759,Nigeria,2007,4.0708779999999996,USD +760,Nigeria,2008,7.880097,USD +761,Nigeria,2009,2.2797330000000002,USD +762,Nigeria,2010,1.118099,USD +763,Nigeria,2011,1.093551,USD +764,Nigeria,2012,1.0798590000000001,USD +765,Nigeria,2013,0.906818,USD +766,Panama,1991,24.71322,USD +767,Panama,1992,20.66416,USD +768,Panama,1993,23.78021,USD +769,Panama,1994,21.0288,USD +770,Panama,1995,23.87208,USD +771,Panama,1996,16.324997,USD +772,Panama,1997,22.275132,USD +773,Panama,1998,30.291315,USD +774,Panama,1999,28.2564,USD +775,Panama,2000,23.207065,USD +776,Panama,2001,24.434954,USD +777,Panama,2002,17.41531,USD +778,Panama,2003,16.591867999999998,USD +779,Panama,2004,21.800632999999998,USD +780,Panama,2005,18.006457,USD +781,Panama,2006,19.728384,USD +782,Panama,2007,15.65165,USD +783,Panama,2008,19.373096,USD +784,Panama,2009,19.648876,USD +785,Panama,2010,21.0743,USD +786,Panama,2011,17.758726,USD +787,Panama,2012,26.342046999999997,USD +788,Panama,2013,20.779572,USD +789,Paraguay,1991,3.7238230000000003,USD +790,Paraguay,1992,3.556054,USD +791,Paraguay,1993,3.4251519999999998,USD +792,Paraguay,1994,8.14076,USD +793,Paraguay,1995,2.8176189999999997,USD +794,Paraguay,1996,4.842155,USD +795,Paraguay,1997,4.761297,USD +796,Paraguay,1998,3.961612,USD +797,Paraguay,1999,3.056146,USD +798,Paraguay,2000,2.304023,USD +799,Paraguay,2001,1.2341540000000002,USD +800,Paraguay,2002,0.47179,USD +801,Paraguay,2003,0.578167,USD +802,Paraguay,2004,0.6756979999999999,USD +803,Paraguay,2005,0.704116,USD +804,Paraguay,2006,0.805944,USD +805,Paraguay,2007,0.99384,USD +806,Paraguay,2008,0.11421600000000001,USD +807,Paraguay,2009,0.10630799999999999,USD +808,Paraguay,2010,0.199955,USD +809,Paraguay,2011,0.31250700000000003,USD +810,Paraguay,2012,0.203628,USD +811,Paraguay,2013,0.21808400000000003,USD +812,Peru,1991,60.973397999999996,USD +813,Peru,1992,41.668013,USD +814,Peru,1993,45.63613,USD +815,Peru,1994,133.16082,USD +816,Peru,1995,175.94276599999998,USD +817,Peru,1996,146.754457,USD +818,Peru,1997,323.712901,USD +819,Peru,1998,212.944891,USD +820,Peru,1999,178.836916,USD +821,Peru,2000,190.00357,USD +822,Peru,2001,131.49903500000002,USD +823,Peru,2002,113.751628,USD +824,Peru,2003,137.82775,USD +825,Peru,2004,185.799082,USD +826,Peru,2005,265.533095,USD +827,Peru,2006,344.598027,USD +828,Peru,2007,346.06338,USD +829,Peru,2008,472.775633,USD +830,Peru,2009,436.58740199999994,USD +831,Peru,2010,578.827096,USD +832,Peru,2011,1107.5242,USD +833,Peru,2012,768.3673759999999,USD +834,Peru,2013,463.75551500000006,USD +835,Philippines,1991,94.768327,USD +836,Philippines,1992,103.653035,USD +837,Philippines,1993,98.046199,USD +838,Philippines,1994,191.443504,USD +839,Philippines,1995,274.070556,USD +840,Philippines,1996,205.675488,USD +841,Philippines,1997,174.066708,USD +842,Philippines,1998,142.380821,USD +843,Philippines,1999,148.078887,USD +844,Philippines,2000,86.328413,USD +845,Philippines,2001,67.871437,USD +846,Philippines,2002,70.662313,USD +847,Philippines,2003,80.512313,USD +848,Philippines,2004,76.06588,USD +849,Philippines,2005,87.145977,USD +850,Philippines,2006,93.063281,USD +851,Philippines,2007,115.838233,USD +852,Philippines,2008,127.49108400000001,USD +853,Philippines,2009,112.65422,USD +854,Philippines,2010,120.642749,USD +855,Philippines,2011,134.28162,USD +856,Philippines,2012,141.200779,USD +857,Philippines,2013,134.260403,USD +858,Puerto Rico,1991,50.524578000000005,USD +859,Puerto Rico,1992,63.09856800000001,USD +860,Puerto Rico,1993,76.733733,USD +861,Puerto Rico,1994,62.829440000000005,USD +862,Puerto Rico,1995,62.702296999999994,USD +863,Puerto Rico,1996,59.978919999999995,USD +864,Puerto Rico,1997,56.863372,USD +865,Puerto Rico,1998,68.491802,USD +866,Puerto Rico,1999,33.641999999999996,USD +867,Puerto Rico,2000,37.64475,USD +868,Puerto Rico,2001,38.53575,USD +869,Puerto Rico,2002,39.6568,USD +870,Puerto Rico,2003,39.559,USD +871,Puerto Rico,2004,44.763515999999996,USD +872,Puerto Rico,2005,33.879384,USD +873,Puerto Rico,2006,50.488,USD +874,Puerto Rico,2007,49.4667,USD +875,Puerto Rico,2008,41.240190000000005,USD +876,Puerto Rico,2009,36.678835,USD +877,Puerto Rico,2010,36.483534999999996,USD +878,Puerto Rico,2011,30.546508000000003,USD +879,Puerto Rico,2012,28.513890000000004,USD +880,Puerto Rico,2013,26.289794,USD +881,Rwanda,1991,30.032538,USD +882,Rwanda,1992,33.334383,USD +883,Rwanda,1993,24.846293,USD +884,Rwanda,1994,1.343404,USD +885,Rwanda,1995,35.751862,USD +886,Rwanda,1996,14.518259,USD +887,Rwanda,1997,18.886092,USD +888,Rwanda,1998,14.113307,USD +889,Rwanda,1999,16.765029000000002,USD +890,Rwanda,2000,9.542402000000001,USD +891,Rwanda,2001,8.540554,USD +892,Rwanda,2002,5.394513,USD +893,Rwanda,2003,6.419079,USD +894,Rwanda,2004,12.999201,USD +895,Rwanda,2005,16.669276999999997,USD +896,Rwanda,2006,24.168117000000002,USD +897,Rwanda,2007,16.106992,USD +898,Rwanda,2008,24.633141000000002,USD +899,Rwanda,2009,27.270849,USD +900,Rwanda,2010,26.503826,USD +901,Rwanda,2011,31.194840999999997,USD +902,Rwanda,2012,31.162419,USD +903,Rwanda,2013,27.730978000000004,USD +904,Spain,1991,0.07747000000000001,USD +905,Spain,1992,0.059449,USD +906,Spain,1993,0.047826,USD +907,Spain,1994,0.045138,USD +908,Sri Lanka,1991,6.162025,USD +909,Sri Lanka,1992,6.446182,USD +910,Sri Lanka,1993,6.214092,USD +911,Sri Lanka,1994,10.860198,USD +912,Sri Lanka,1995,20.730123000000003,USD +913,Sri Lanka,1996,17.651241,USD +914,Sri Lanka,1997,11.245165,USD +915,Sri Lanka,1998,10.927999,USD +916,Sri Lanka,1999,11.055494,USD +917,Sri Lanka,2000,9.452442999999999,USD +918,Sri Lanka,2001,6.624053999999999,USD +919,Sri Lanka,2002,5.600427,USD +920,Sri Lanka,2003,4.587989,USD +921,Sri Lanka,2004,4.175528,USD +922,Sri Lanka,2005,4.588304,USD +923,Sri Lanka,2006,5.680777,USD +924,Sri Lanka,2007,12.691941,USD +925,Sri Lanka,2008,12.490847,USD +926,Sri Lanka,2009,10.455258,USD +927,Sri Lanka,2010,10.134775999999999,USD +928,Sri Lanka,2011,11.639839,USD +929,Sri Lanka,2012,11.491817,USD +930,Sri Lanka,2013,10.011875,USD +931,Suriname,1991,0.120371,USD +932,Suriname,1992,0.099872,USD +933,Suriname,1993,0.07696,USD +934,Suriname,1994,0.087605,USD +935,Suriname,1995,0.079047,USD +936,Suriname,1996,0.065832,USD +937,Suriname,1997,0.06375,USD +938,Suriname,1998,0.046563,USD +939,Suriname,1999,0.035968,USD +940,Suriname,2000,0.0076040000000000005,USD +941,Suriname,2001,0.003303,USD +942,Suriname,2002,0.0030280000000000003,USD +943,Suriname,2003,0.003714,USD +944,Suriname,2004,0.0034,USD +945,Suriname,2005,0.004856,USD +946,Suriname,2006,0.007223,USD +947,Suriname,2007,0.012995,USD +948,Suriname,2008,0.014703,USD +949,Suriname,2009,0.013616999999999999,USD +950,Suriname,2010,0.013269999999999999,USD +951,Suriname,2011,0.013356,USD +952,Suriname,2012,0.009695,USD +953,Suriname,2013,0.007254999999999999,USD +954,Thailand,1991,45.701739,USD +955,Thailand,1992,59.782830000000004,USD +956,Thailand,1993,68.090638,USD +957,Thailand,1994,79.853662,USD +958,Thailand,1995,196.52793400000002,USD +959,Thailand,1996,127.38747099999999,USD +960,Thailand,1997,82.91660999999999,USD +961,Thailand,1998,120.569607,USD +962,Thailand,1999,70.386439,USD +963,Thailand,2000,48.862382000000004,USD +964,Thailand,2001,60.472795,USD +965,Thailand,2002,33.901953999999996,USD +966,Thailand,2003,41.348357,USD +967,Thailand,2004,42.443613,USD +968,Thailand,2005,42.634496,USD +969,Thailand,2006,45.15064,USD +970,Thailand,2007,73.480878,USD +971,Thailand,2008,90.562507,USD +972,Thailand,2009,112.266103,USD +973,Thailand,2010,88.838563,USD +974,Thailand,2011,98.631007,USD +975,Thailand,2012,92.157515,USD +976,Thailand,2013,87.008167,USD +977,Timor-Leste,2008,17.51125,USD +978,Timor-Leste,2009,15.183,USD +979,Timor-Leste,2010,21.488716,USD +980,Timor-Leste,2011,17.379066,USD +981,Timor-Leste,2012,21.841772,USD +982,Timor-Leste,2013,26.550261,USD +983,Togo,1991,15.446272,USD +984,Togo,1992,4.403233999999999,USD +985,Togo,1993,5.438572,USD +986,Togo,1994,6.68222,USD +987,Togo,1995,15.730792000000001,USD +988,Togo,1996,32.841208,USD +989,Togo,1997,13.433062,USD +990,Togo,1998,24.725185,USD +991,Togo,1999,19.852229,USD +992,Togo,2000,7.4721589999999996,USD +993,Togo,2001,5.925064,USD +994,Togo,2002,3.49102,USD +995,Togo,2003,2.4414990000000003,USD +996,Togo,2004,4.964368,USD +997,Togo,2005,6.811407000000001,USD +998,Togo,2006,8.425288,USD +999,Togo,2007,14.010151,USD +1000,Togo,2008,11.413302999999999,USD +1001,Togo,2009,10.382131,USD +1002,Togo,2010,9.728899,USD +1003,Togo,2011,11.099547,USD +1004,Togo,2012,8.899071000000001,USD +1005,Togo,2013,9.286798,USD +1006,Trinidad and Tobago,1991,1.273793,USD +1007,Trinidad and Tobago,1992,1.090943,USD +1008,Trinidad and Tobago,1993,1.4430290000000001,USD +1009,Trinidad and Tobago,1994,1.456649,USD +1010,Trinidad and Tobago,1995,1.22349,USD +1011,Trinidad and Tobago,1996,0.504166,USD +1012,Trinidad and Tobago,1997,1.501667,USD +1013,Trinidad and Tobago,1998,0.48987299999999995,USD +1014,Trinidad and Tobago,1999,0.6002460000000001,USD +1015,Trinidad and Tobago,2000,0.9379360000000001,USD +1016,Trinidad and Tobago,2001,0.524597,USD +1017,Trinidad and Tobago,2002,0.257488,USD +1018,Trinidad and Tobago,2003,0.57603,USD +1019,Trinidad and Tobago,2004,0.124883,USD +1020,Trinidad and Tobago,2005,0.385626,USD +1021,Trinidad and Tobago,2006,0.905769,USD +1022,Trinidad and Tobago,2007,0.081941,USD +1023,Trinidad and Tobago,2008,0.092842,USD +1024,Trinidad and Tobago,2009,0.213956,USD +1025,Trinidad and Tobago,2010,0.080131,USD +1026,Trinidad and Tobago,2011,0.12059600000000001,USD +1027,Trinidad and Tobago,2012,0.09534400000000001,USD +1028,Trinidad and Tobago,2013,0.09866699999999999,USD +1029,United States of America,1991,3.919728,USD +1030,United States of America,1992,3.264508,USD +1031,United States of America,1993,5.23776,USD +1032,United States of America,1994,9.62988,USD +1033,United States of America,1995,12.96344,USD +1034,United States of America,1996,16.6228,USD +1035,United States of America,1997,21.56164,USD +1036,United States of America,1998,19.7754,USD +1037,United States of America,1999,16.8069,USD +1038,United States of America,2000,23.0759,USD +1039,United States of America,2001,19.605629999999998,USD +1040,United States of America,2002,23.2356,USD +1041,United States of America,2003,24.037679999999998,USD +1042,United States of America,2004,19.87804,USD +1043,United States of America,2005,37.305289,USD +1044,United States of America,2006,31.388279999999998,USD +1045,United States of America,2007,37.4782,USD +1046,United States of America,2008,29.6092,USD +1047,United States of America,2009,31.35115,USD +1048,United States of America,2010,28.58835,USD +1049,United States of America,2011,31.536603000000003,USD +1050,United States of America,2012,41.297225,USD +1051,United States of America,2013,43.399075,USD +1052,Vanuatu,1999,0.03468,USD +1053,Vanuatu,2000,0.043591000000000005,USD +1054,Vanuatu,2001,0.020645,USD +1055,Vanuatu,2002,0.028366000000000002,USD +1056,Vanuatu,2003,0.025832,USD +1057,Vanuatu,2004,0.027988,USD +1058,Vanuatu,2005,0.028193,USD +1059,Vanuatu,2006,0.030824,USD +1060,Vanuatu,2007,0.033395,USD +1061,Vanuatu,2008,0.032566000000000005,USD +1062,Vanuatu,2009,0.031695,USD +1063,Vanuatu,2010,0.062628,USD +1064,Vanuatu,2011,0.133012,USD +1065,Vanuatu,2012,0.117469,USD +1066,Vanuatu,2013,0.13643,USD +1067,Venezuela (Bolivarian Republic of),1991,87.223677,USD +1068,Venezuela (Bolivarian Republic of),1992,81.723519,USD +1069,Venezuela (Bolivarian Republic of),1993,60.650553,USD +1070,Venezuela (Bolivarian Republic of),1994,51.834573999999996,USD +1071,Venezuela (Bolivarian Republic of),1995,201.260402,USD +1072,Venezuela (Bolivarian Republic of),1996,121.480199,USD +1073,Venezuela (Bolivarian Republic of),1997,180.121809,USD +1074,Venezuela (Bolivarian Republic of),1998,131.522663,USD +1075,Venezuela (Bolivarian Republic of),1999,157.72128999999998,USD +1076,Venezuela (Bolivarian Republic of),2000,145.970153,USD +1077,Venezuela (Bolivarian Republic of),2001,112.795446,USD +1078,Venezuela (Bolivarian Republic of),2002,60.770088,USD +1079,Venezuela (Bolivarian Republic of),2003,44.700326000000004,USD +1080,Venezuela (Bolivarian Republic of),2004,97.317297,USD +1081,Venezuela (Bolivarian Republic of),2005,102.126487,USD +1082,Venezuela (Bolivarian Republic of),2006,171.932305,USD +1083,Venezuela (Bolivarian Republic of),2007,186.10804299999998,USD +1084,Venezuela (Bolivarian Republic of),2008,212.955007,USD +1085,Venezuela (Bolivarian Republic of),2009,266.664453,USD +1086,Venezuela (Bolivarian Republic of),2010,316.78139500000003,USD +1087,Venezuela (Bolivarian Republic of),2011,249.81692599999997,USD +1088,Venezuela (Bolivarian Republic of),2012,326.363896,USD +1089,Venezuela (Bolivarian Republic of),2013,328.204223,USD +1090,Viet Nam,1991,52.879477,USD +1091,Viet Nam,1992,45.461131,USD +1092,Viet Nam,1993,62.206487,USD +1093,Viet Nam,1994,87.629498,USD +1094,Viet Nam,1995,126.942408,USD +1095,Viet Nam,1996,216.91394900000003,USD +1096,Viet Nam,1997,260.848471,USD +1097,Viet Nam,1998,218.834367,USD +1098,Viet Nam,1999,278.165735,USD +1099,Viet Nam,2000,397.87551,USD +1100,Viet Nam,2001,185.569269,USD +1101,Viet Nam,2002,119.601018,USD +1102,Viet Nam,2003,94.8781,USD +1103,Viet Nam,2004,95.059342,USD +1104,Viet Nam,2005,306.380133,USD +1105,Viet Nam,2006,391.366329,USD +1106,Viet Nam,2007,1459.165017,USD +1107,Viet Nam,2008,1164.858633,USD +1108,Viet Nam,2009,1220.332148,USD +1109,Viet Nam,2010,1386.6905199999999,USD +1110,Viet Nam,2011,2163.676036,USD +1111,Viet Nam,2012,2100.832164,USD +1112,Viet Nam,2013,2116.903957,USD +1113,Yemen,1991,10.384091999999999,USD +1114,Yemen,1992,16.179605,USD +1115,Yemen,1993,14.899038000000001,USD +1116,Yemen,1994,12.742633,USD +1117,Yemen,1995,13.670677,USD +1118,Yemen,1996,16.184471,USD +1119,Yemen,1997,16.277831,USD +1120,Yemen,1998,19.132925,USD +1121,Yemen,1999,18.4564,USD +1122,Yemen,2000,18.692995,USD +1123,Yemen,2001,18.776121,USD +1124,Yemen,2002,18.288966000000002,USD +1125,Yemen,2003,34.336643,USD +1126,Yemen,2004,37.034065999999996,USD +1127,Yemen,2005,43.804691,USD +1128,Yemen,2006,66.937611,USD +1129,Yemen,2007,74.525012,USD +1130,Yemen,2008,76.325,USD +1131,Yemen,2009,114.845368,USD +1132,Yemen,2010,128.338945,USD +1133,Yemen,2011,156.27183300000002,USD +1134,Yemen,2012,142.446806,USD +1135,Yemen,2013,159.030201,USD diff --git a/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/pesticides_usage_c.csv b/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/pesticides_usage_c.csv new file mode 100644 index 0000000..611be7e --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/pesticides_usage_c.csv @@ -0,0 +1,3861 @@ +,Country,Year,pesticides_usage,Unit +0,Albania,1990,121.0,tonnes +1,Albania,1991,121.0,tonnes +2,Albania,1992,121.0,tonnes +3,Albania,1993,121.0,tonnes +4,Albania,1994,201.0,tonnes +5,Albania,1995,251.0,tonnes +6,Albania,1996,261.89,tonnes +7,Albania,1997,272.78,tonnes +8,Albania,1998,283.68,tonnes +9,Albania,1999,294.57,tonnes +10,Albania,2000,305.46,tonnes +11,Albania,2001,316.35,tonnes +12,Albania,2002,327.25,tonnes +13,Albania,2003,338.14,tonnes +14,Albania,2004,349.03,tonnes +15,Albania,2005,359.92,tonnes +16,Albania,2006,370.82,tonnes +17,Albania,2007,381.71,tonnes +18,Albania,2008,392.6,tonnes +19,Albania,2009,403.49,tonnes +20,Albania,2010,582.93,tonnes +21,Albania,2011,574.62,tonnes +22,Albania,2012,353.05,tonnes +23,Albania,2013,441.53,tonnes +24,Algeria,1990,4684.13,tonnes +25,Algeria,1991,6035.05,tonnes +26,Algeria,1992,2816.84,tonnes +27,Algeria,1993,2650.67,tonnes +28,Algeria,1994,2999.28,tonnes +29,Algeria,1995,5196.29,tonnes +30,Algeria,1996,1131.55,tonnes +31,Algeria,1997,762.82,tonnes +32,Algeria,1998,439.62,tonnes +33,Algeria,1999,1168.83,tonnes +34,Algeria,2000,1673.1,tonnes +35,Algeria,2001,2177.37,tonnes +36,Algeria,2002,2681.64,tonnes +37,Algeria,2003,3185.91,tonnes +38,Algeria,2004,3690.18,tonnes +39,Algeria,2005,2726.44,tonnes +40,Algeria,2006,2419.85,tonnes +41,Algeria,2007,3478.36,tonnes +42,Algeria,2008,5635.95,tonnes +43,Algeria,2009,3084.25,tonnes +44,Algeria,2010,1785.42,tonnes +45,Algeria,2011,7528.05,tonnes +46,Algeria,2012,8896.01,tonnes +47,Algeria,2013,8185.41,tonnes +48,Angola,1990,64.0,tonnes +49,Angola,1991,81.67,tonnes +50,Angola,1992,25.33,tonnes +51,Angola,1993,169.0,tonnes +52,Angola,1994,25.5,tonnes +53,Angola,1995,336.0,tonnes +54,Angola,1996,40.0,tonnes +55,Angola,1997,40.0,tonnes +56,Angola,1998,40.0,tonnes +57,Angola,1999,40.0,tonnes +58,Angola,2000,40.0,tonnes +59,Angola,2001,40.0,tonnes +60,Angola,2002,40.0,tonnes +61,Angola,2003,40.0,tonnes +62,Angola,2004,40.0,tonnes +63,Angola,2005,40.0,tonnes +64,Angola,2006,40.0,tonnes +65,Angola,2007,40.0,tonnes +66,Angola,2008,40.0,tonnes +67,Angola,2009,40.0,tonnes +68,Angola,2010,40.0,tonnes +69,Angola,2011,40.0,tonnes +70,Angola,2012,40.0,tonnes +71,Angola,2013,40.0,tonnes +72,Antigua and Barbuda,1990,7.52,tonnes +73,Antigua and Barbuda,1991,7.52,tonnes +74,Antigua and Barbuda,1992,7.52,tonnes +75,Antigua and Barbuda,1993,7.52,tonnes +76,Antigua and Barbuda,1994,7.52,tonnes +77,Antigua and Barbuda,1995,7.52,tonnes +78,Antigua and Barbuda,1996,7.52,tonnes +79,Antigua and Barbuda,1997,7.52,tonnes +80,Antigua and Barbuda,1998,7.52,tonnes +81,Antigua and Barbuda,1999,7.52,tonnes +82,Antigua and Barbuda,2000,7.52,tonnes +83,Antigua and Barbuda,2001,7.52,tonnes +84,Antigua and Barbuda,2002,7.52,tonnes +85,Antigua and Barbuda,2003,7.52,tonnes +86,Antigua and Barbuda,2004,7.52,tonnes +87,Antigua and Barbuda,2005,7.52,tonnes +88,Antigua and Barbuda,2006,7.52,tonnes +89,Antigua and Barbuda,2007,7.52,tonnes +90,Antigua and Barbuda,2008,7.52,tonnes +91,Antigua and Barbuda,2009,7.52,tonnes +92,Antigua and Barbuda,2010,7.52,tonnes +93,Antigua and Barbuda,2011,39.26,tonnes +94,Antigua and Barbuda,2012,31.5,tonnes +95,Antigua and Barbuda,2013,28.3,tonnes +96,Argentina,1990,26156.0,tonnes +97,Argentina,1991,26156.0,tonnes +98,Argentina,1992,26156.0,tonnes +99,Argentina,1993,26156.0,tonnes +100,Argentina,1994,30195.0,tonnes +101,Argentina,1995,37842.0,tonnes +102,Argentina,1996,54595.0,tonnes +103,Argentina,1997,77691.0,tonnes +104,Argentina,1998,62397.0,tonnes +105,Argentina,1999,73152.15,tonnes +106,Argentina,2000,83907.29,tonnes +107,Argentina,2001,94662.44,tonnes +108,Argentina,2002,105417.59,tonnes +109,Argentina,2003,116172.73,tonnes +110,Argentina,2004,126927.88,tonnes +111,Argentina,2005,137683.03,tonnes +112,Argentina,2006,148438.17,tonnes +113,Argentina,2007,185617.65,tonnes +114,Argentina,2008,202151.41,tonnes +115,Argentina,2009,138831.47,tonnes +116,Argentina,2010,234430.38,tonnes +117,Argentina,2011,219255.93,tonnes +118,Argentina,2012,215405.95,tonnes +119,Argentina,2013,211555.98,tonnes +120,Armenia,1992,8.0,tonnes +121,Armenia,1993,8.0,tonnes +122,Armenia,1994,23.0,tonnes +123,Armenia,1995,23.9,tonnes +124,Armenia,1996,32.0,tonnes +125,Armenia,1997,41.46,tonnes +126,Armenia,1998,50.92,tonnes +127,Armenia,1999,60.38,tonnes +128,Armenia,2000,69.85,tonnes +129,Armenia,2001,79.31,tonnes +130,Armenia,2002,88.77,tonnes +131,Armenia,2003,98.23,tonnes +132,Armenia,2004,204.77,tonnes +133,Armenia,2005,220.51,tonnes +134,Armenia,2006,227.55,tonnes +135,Armenia,2007,241.71,tonnes +136,Armenia,2008,218.2,tonnes +137,Armenia,2009,198.36,tonnes +138,Armenia,2010,278.72,tonnes +139,Armenia,2011,278.72,tonnes +140,Armenia,2012,278.72,tonnes +141,Armenia,2013,278.72,tonnes +142,Australia,1990,17866.0,tonnes +143,Australia,1991,17866.0,tonnes +144,Australia,1992,22234.0,tonnes +145,Australia,1993,23899.0,tonnes +146,Australia,1994,21057.0,tonnes +147,Australia,1995,25598.0,tonnes +148,Australia,1996,31185.0,tonnes +149,Australia,1997,34091.0,tonnes +150,Australia,1998,37215.0,tonnes +151,Australia,1999,34200.0,tonnes +152,Australia,2000,33475.0,tonnes +153,Australia,2001,32710.0,tonnes +154,Australia,2002,26651.0,tonnes +155,Australia,2003,32418.0,tonnes +156,Australia,2004,36276.0,tonnes +157,Australia,2005,34310.0,tonnes +158,Australia,2006,35900.0,tonnes +159,Australia,2007,32446.24,tonnes +160,Australia,2008,42935.38,tonnes +161,Australia,2009,38065.69,tonnes +162,Australia,2010,42169.39,tonnes +163,Australia,2011,47632.98,tonnes +164,Australia,2012,48687.88,tonnes +165,Australia,2013,45177.19,tonnes +166,Austria,1990,4246.0,tonnes +167,Austria,1991,4487.0,tonnes +168,Austria,1992,3897.0,tonnes +169,Austria,1993,3984.0,tonnes +170,Austria,1994,3619.0,tonnes +171,Austria,1995,3402.0,tonnes +172,Austria,1996,3565.0,tonnes +173,Austria,1997,3689.6,tonnes +174,Austria,1998,3340.3,tonnes +175,Austria,1999,3418.6,tonnes +176,Austria,2000,3563.2,tonnes +177,Austria,2001,3132.2,tonnes +178,Austria,2002,3079.2,tonnes +179,Austria,2003,3384.9,tonnes +180,Austria,2004,3301.7,tonnes +181,Austria,2005,3404.0,tonnes +182,Austria,2006,3415.7,tonnes +183,Austria,2007,3526.6,tonnes +184,Austria,2008,4246.7,tonnes +185,Austria,2009,3531.8,tonnes +186,Austria,2010,3692.4,tonnes +187,Austria,2011,3441.5,tonnes +188,Austria,2012,3563.3,tonnes +189,Austria,2013,3108.6,tonnes +190,Azerbaijan,1992,148.68,tonnes +191,Azerbaijan,1993,148.68,tonnes +192,Azerbaijan,1994,148.68,tonnes +193,Azerbaijan,1995,148.68,tonnes +194,Azerbaijan,1996,148.68,tonnes +195,Azerbaijan,1997,148.68,tonnes +196,Azerbaijan,1998,148.68,tonnes +197,Azerbaijan,1999,148.68,tonnes +198,Azerbaijan,2000,148.68,tonnes +199,Azerbaijan,2001,148.68,tonnes +200,Azerbaijan,2002,148.68,tonnes +201,Azerbaijan,2003,148.68,tonnes +202,Azerbaijan,2004,148.68,tonnes +203,Azerbaijan,2005,148.68,tonnes +204,Azerbaijan,2006,148.68,tonnes +205,Azerbaijan,2007,148.68,tonnes +206,Azerbaijan,2008,262.99,tonnes +207,Azerbaijan,2009,316.18,tonnes +208,Azerbaijan,2010,333.85,tonnes +209,Azerbaijan,2011,461.84,tonnes +210,Azerbaijan,2012,516.35,tonnes +211,Azerbaijan,2013,489.8,tonnes +212,Bahamas,1990,452.87,tonnes +213,Bahamas,1991,452.87,tonnes +214,Bahamas,1992,452.87,tonnes +215,Bahamas,1993,452.87,tonnes +216,Bahamas,1994,452.87,tonnes +217,Bahamas,1995,452.87,tonnes +218,Bahamas,1996,452.87,tonnes +219,Bahamas,1997,452.87,tonnes +220,Bahamas,1998,452.87,tonnes +221,Bahamas,1999,452.87,tonnes +222,Bahamas,2000,452.87,tonnes +223,Bahamas,2001,363.18,tonnes +224,Bahamas,2002,325.34,tonnes +225,Bahamas,2003,270.38,tonnes +226,Bahamas,2004,237.73,tonnes +227,Bahamas,2005,292.96,tonnes +228,Bahamas,2006,253.73,tonnes +229,Bahamas,2007,253.73,tonnes +230,Bahamas,2008,253.73,tonnes +231,Bahamas,2009,253.73,tonnes +232,Bahamas,2010,253.73,tonnes +233,Bahamas,2011,253.73,tonnes +234,Bahamas,2012,253.73,tonnes +235,Bahamas,2013,253.73,tonnes +236,Bahrain,1990,14.05,tonnes +237,Bahrain,1991,14.05,tonnes +238,Bahrain,1992,14.05,tonnes +239,Bahrain,1993,14.05,tonnes +240,Bahrain,1994,30.86,tonnes +241,Bahrain,1995,12.46,tonnes +242,Bahrain,1996,12.16,tonnes +243,Bahrain,1997,9.42,tonnes +244,Bahrain,1998,11.15,tonnes +245,Bahrain,1999,12.65,tonnes +246,Bahrain,2000,8.65,tonnes +247,Bahrain,2001,9.2,tonnes +248,Bahrain,2002,0.91,tonnes +249,Bahrain,2003,6.03,tonnes +250,Bahrain,2004,12.24,tonnes +251,Bahrain,2005,12.75,tonnes +252,Bahrain,2006,12.12,tonnes +253,Bahrain,2007,16.25,tonnes +254,Bahrain,2008,10.45,tonnes +255,Bahrain,2009,12.59,tonnes +256,Bahrain,2010,9.84,tonnes +257,Bahrain,2011,9.14,tonnes +258,Bahrain,2012,9.14,tonnes +259,Bahrain,2013,9.14,tonnes +260,Bangladesh,1990,1266.0,tonnes +261,Bangladesh,1991,1287.0,tonnes +262,Bangladesh,1992,1453.0,tonnes +263,Bangladesh,1993,1487.0,tonnes +264,Bangladesh,1994,1594.5,tonnes +265,Bangladesh,1995,1702.0,tonnes +266,Bangladesh,1996,1919.0,tonnes +267,Bangladesh,1997,2035.0,tonnes +268,Bangladesh,1998,2068.0,tonnes +269,Bangladesh,1999,2532.0,tonnes +270,Bangladesh,2000,3170.0,tonnes +271,Bangladesh,2001,3312.12,tonnes +272,Bangladesh,2002,4186.81,tonnes +273,Bangladesh,2003,5446.67,tonnes +274,Bangladesh,2004,6984.41,tonnes +275,Bangladesh,2005,8083.26,tonnes +276,Bangladesh,2006,9408.51,tonnes +277,Bangladesh,2007,10914.45,tonnes +278,Bangladesh,2008,12402.75,tonnes +279,Bangladesh,2009,13755.78,tonnes +280,Bangladesh,2010,13250.83,tonnes +281,Bangladesh,2011,14798.28,tonnes +282,Bangladesh,2012,13289.18,tonnes +283,Bangladesh,2013,15330.16,tonnes +284,Barbados,1990,550.0,tonnes +285,Barbados,1991,550.0,tonnes +286,Barbados,1992,550.0,tonnes +287,Barbados,1993,550.0,tonnes +288,Barbados,1994,514.0,tonnes +289,Barbados,1995,664.0,tonnes +290,Barbados,1996,475.0,tonnes +291,Barbados,1997,168.46,tonnes +292,Barbados,1998,168.46,tonnes +293,Barbados,1999,168.46,tonnes +294,Barbados,2000,168.46,tonnes +295,Barbados,2001,168.46,tonnes +296,Barbados,2002,168.46,tonnes +297,Barbados,2003,168.46,tonnes +298,Barbados,2004,168.46,tonnes +299,Barbados,2005,168.46,tonnes +300,Barbados,2006,168.46,tonnes +301,Barbados,2007,168.46,tonnes +302,Barbados,2008,168.46,tonnes +303,Barbados,2009,168.46,tonnes +304,Barbados,2010,168.46,tonnes +305,Barbados,2011,168.46,tonnes +306,Barbados,2012,168.46,tonnes +307,Barbados,2013,168.46,tonnes +308,Belarus,1992,4896.89,tonnes +309,Belarus,1993,4896.89,tonnes +310,Belarus,1994,4896.89,tonnes +311,Belarus,1995,4896.89,tonnes +312,Belarus,1996,4896.89,tonnes +313,Belarus,1997,4896.89,tonnes +314,Belarus,1998,4896.89,tonnes +315,Belarus,1999,4896.89,tonnes +316,Belarus,2000,4896.89,tonnes +317,Belarus,2001,4896.89,tonnes +318,Belarus,2002,4896.89,tonnes +319,Belarus,2003,4896.89,tonnes +320,Belarus,2004,4896.89,tonnes +321,Belarus,2005,4896.89,tonnes +322,Belarus,2006,4896.89,tonnes +323,Belarus,2007,4896.89,tonnes +324,Belarus,2008,4896.89,tonnes +325,Belarus,2009,4896.89,tonnes +326,Belarus,2010,4896.89,tonnes +327,Belarus,2011,4896.89,tonnes +328,Belarus,2012,5682.01,tonnes +329,Belarus,2013,5479.34,tonnes +330,Belgium,2000,9560.49,tonnes +331,Belgium,2001,8529.07,tonnes +332,Belgium,2002,9204.64,tonnes +333,Belgium,2003,8822.52,tonnes +334,Belgium,2004,9186.39,tonnes +335,Belgium,2005,9776.26,tonnes +336,Belgium,2006,8244.16,tonnes +337,Belgium,2007,6712.05,tonnes +338,Belgium,2008,6516.47,tonnes +339,Belgium,2009,5496.04,tonnes +340,Belgium,2010,4644.53,tonnes +341,Belgium,2011,5740.44,tonnes +342,Belgium,2012,6139.3,tonnes +343,Belgium,2013,5905.6,tonnes +344,Belgium-Luxembourg,1990,9074.21,tonnes +345,Belgium-Luxembourg,1991,9074.21,tonnes +346,Belgium-Luxembourg,1992,9074.21,tonnes +347,Belgium-Luxembourg,1993,9074.21,tonnes +348,Belgium-Luxembourg,1994,8449.91,tonnes +349,Belgium-Luxembourg,1995,9007.08,tonnes +350,Belgium-Luxembourg,1996,8742.92,tonnes +351,Belgium-Luxembourg,1997,8306.6,tonnes +352,Belgium-Luxembourg,1998,9095.89,tonnes +353,Belgium-Luxembourg,1999,8829.62,tonnes +354,Belize,1990,771.0,tonnes +355,Belize,1991,696.0,tonnes +356,Belize,1992,997.0,tonnes +357,Belize,1993,1057.83,tonnes +358,Belize,1994,1118.67,tonnes +359,Belize,1995,1179.5,tonnes +360,Belize,1996,1240.33,tonnes +361,Belize,1997,1301.17,tonnes +362,Belize,1998,1362.0,tonnes +363,Belize,1999,1362.0,tonnes +364,Belize,2000,1296.0,tonnes +365,Belize,2001,1719.0,tonnes +366,Belize,2002,1529.27,tonnes +367,Belize,2003,1339.54,tonnes +368,Belize,2004,1149.81,tonnes +369,Belize,2005,960.08,tonnes +370,Belize,2006,770.35,tonnes +371,Belize,2007,674.53,tonnes +372,Belize,2008,984.03,tonnes +373,Belize,2009,788.62,tonnes +374,Belize,2010,700.39,tonnes +375,Belize,2011,826.58,tonnes +376,Belize,2012,638.28,tonnes +377,Belize,2013,1036.68,tonnes +378,Bhutan,1990,3.92,tonnes +379,Bhutan,1991,4.54,tonnes +380,Bhutan,1992,4.53,tonnes +381,Bhutan,1993,3.39,tonnes +382,Bhutan,1994,24.5,tonnes +383,Bhutan,1995,29.18,tonnes +384,Bhutan,1996,32.33,tonnes +385,Bhutan,1997,2.0,tonnes +386,Bhutan,1998,2.31,tonnes +387,Bhutan,1999,2.4,tonnes +388,Bhutan,2000,3.21,tonnes +389,Bhutan,2001,2.54,tonnes +390,Bhutan,2002,1.87,tonnes +391,Bhutan,2003,5.16,tonnes +392,Bhutan,2004,6.64,tonnes +393,Bhutan,2005,2.09,tonnes +394,Bhutan,2006,5.93,tonnes +395,Bhutan,2007,7.05,tonnes +396,Bhutan,2008,5.82,tonnes +397,Bhutan,2009,5.68,tonnes +398,Bhutan,2010,6.56,tonnes +399,Bhutan,2011,9.07,tonnes +400,Bhutan,2012,7.44,tonnes +401,Bhutan,2013,5.4,tonnes +402,Bolivia (Plurinational State of),1990,2243.34,tonnes +403,Bolivia (Plurinational State of),1991,1456.24,tonnes +404,Bolivia (Plurinational State of),1992,706.97,tonnes +405,Bolivia (Plurinational State of),1993,1066.4,tonnes +406,Bolivia (Plurinational State of),1994,1424.31,tonnes +407,Bolivia (Plurinational State of),1995,1782.22,tonnes +408,Bolivia (Plurinational State of),1996,2140.12,tonnes +409,Bolivia (Plurinational State of),1997,2498.03,tonnes +410,Bolivia (Plurinational State of),1998,2855.94,tonnes +411,Bolivia (Plurinational State of),1999,3213.85,tonnes +412,Bolivia (Plurinational State of),2000,3571.76,tonnes +413,Bolivia (Plurinational State of),2001,3929.66,tonnes +414,Bolivia (Plurinational State of),2002,4287.57,tonnes +415,Bolivia (Plurinational State of),2003,4645.48,tonnes +416,Bolivia (Plurinational State of),2004,6269.53,tonnes +417,Bolivia (Plurinational State of),2005,7143.74,tonnes +418,Bolivia (Plurinational State of),2006,7770.18,tonnes +419,Bolivia (Plurinational State of),2007,8179.42,tonnes +420,Bolivia (Plurinational State of),2008,8869.27,tonnes +421,Bolivia (Plurinational State of),2009,10280.78,tonnes +422,Bolivia (Plurinational State of),2010,11822.61,tonnes +423,Bolivia (Plurinational State of),2011,12384.95,tonnes +424,Bolivia (Plurinational State of),2012,13476.67,tonnes +425,Bolivia (Plurinational State of),2013,16227.45,tonnes +426,Botswana,1990,17.0,tonnes +427,Botswana,1991,19.0,tonnes +428,Botswana,1992,17.0,tonnes +429,Botswana,1993,17.0,tonnes +430,Botswana,1994,17.0,tonnes +431,Botswana,1995,17.0,tonnes +432,Botswana,1996,17.0,tonnes +433,Botswana,1997,17.0,tonnes +434,Botswana,1998,17.0,tonnes +435,Botswana,1999,17.0,tonnes +436,Botswana,2000,17.0,tonnes +437,Botswana,2001,17.0,tonnes +438,Botswana,2002,17.0,tonnes +439,Botswana,2003,17.0,tonnes +440,Botswana,2004,17.0,tonnes +441,Botswana,2005,17.0,tonnes +442,Botswana,2006,17.0,tonnes +443,Botswana,2007,17.0,tonnes +444,Botswana,2008,17.0,tonnes +445,Botswana,2009,17.0,tonnes +446,Botswana,2010,17.0,tonnes +447,Botswana,2011,17.0,tonnes +448,Botswana,2012,17.0,tonnes +449,Botswana,2013,17.0,tonnes +450,Brazil,1990,49695.0,tonnes +451,Brazil,1991,58349.44,tonnes +452,Brazil,1992,67003.89,tonnes +453,Brazil,1993,75658.33,tonnes +454,Brazil,1994,84312.78,tonnes +455,Brazil,1995,92967.22,tonnes +456,Brazil,1996,101621.67,tonnes +457,Brazil,1997,110276.11,tonnes +458,Brazil,1998,118930.56,tonnes +459,Brazil,1999,127585.0,tonnes +460,Brazil,2000,140423.0,tonnes +461,Brazil,2001,151523.0,tonnes +462,Brazil,2002,145552.0,tonnes +463,Brazil,2003,182446.0,tonnes +464,Brazil,2004,214725.0,tonnes +465,Brazil,2005,232232.0,tonnes +466,Brazil,2006,238716.0,tonnes +467,Brazil,2007,304031.0,tonnes +468,Brazil,2008,312637.0,tonnes +469,Brazil,2009,335742.0,tonnes +470,Brazil,2010,342580.0,tonnes +471,Brazil,2011,345026.0,tonnes +472,Brazil,2012,346583.0,tonnes +473,Brazil,2013,367778.0,tonnes +474,Brunei Darussalam,1990,2.1,tonnes +475,Brunei Darussalam,1991,2.1,tonnes +476,Brunei Darussalam,1992,2.1,tonnes +477,Brunei Darussalam,1993,2.1,tonnes +478,Brunei Darussalam,1994,2.1,tonnes +479,Brunei Darussalam,1995,2.1,tonnes +480,Brunei Darussalam,1996,2.1,tonnes +481,Brunei Darussalam,1997,2.1,tonnes +482,Brunei Darussalam,1998,2.1,tonnes +483,Brunei Darussalam,1999,2.1,tonnes +484,Brunei Darussalam,2000,2.1,tonnes +485,Brunei Darussalam,2001,2.1,tonnes +486,Brunei Darussalam,2002,2.1,tonnes +487,Brunei Darussalam,2003,2.1,tonnes +488,Brunei Darussalam,2004,2.1,tonnes +489,Brunei Darussalam,2005,2.1,tonnes +490,Brunei Darussalam,2006,9.92,tonnes +491,Brunei Darussalam,2007,13.65,tonnes +492,Brunei Darussalam,2008,5.98,tonnes +493,Brunei Darussalam,2009,27.93,tonnes +494,Brunei Darussalam,2010,38.49,tonnes +495,Brunei Darussalam,2011,9.06,tonnes +496,Brunei Darussalam,2012,1.62,tonnes +497,Brunei Darussalam,2013,11.97,tonnes +498,Bulgaria,1990,3906.0,tonnes +499,Bulgaria,1991,3906.0,tonnes +500,Bulgaria,1992,3906.0,tonnes +501,Bulgaria,1993,3777.25,tonnes +502,Bulgaria,1994,3648.5,tonnes +503,Bulgaria,1995,3519.75,tonnes +504,Bulgaria,1996,3391.0,tonnes +505,Bulgaria,1997,3262.25,tonnes +506,Bulgaria,1998,3133.5,tonnes +507,Bulgaria,1999,3004.75,tonnes +508,Bulgaria,2000,2876.0,tonnes +509,Bulgaria,2001,2747.25,tonnes +510,Bulgaria,2002,2618.5,tonnes +511,Bulgaria,2003,2489.75,tonnes +512,Bulgaria,2004,2361.0,tonnes +513,Bulgaria,2005,2232.25,tonnes +514,Bulgaria,2006,2103.5,tonnes +515,Bulgaria,2007,1974.75,tonnes +516,Bulgaria,2008,1846.0,tonnes +517,Bulgaria,2009,1717.25,tonnes +518,Bulgaria,2010,1588.5,tonnes +519,Bulgaria,2011,1459.75,tonnes +520,Bulgaria,2012,1331.0,tonnes +521,Bulgaria,2013,1197.0,tonnes +522,Burkina Faso,1990,29.1,tonnes +523,Burkina Faso,1991,29.1,tonnes +524,Burkina Faso,1992,29.1,tonnes +525,Burkina Faso,1993,17.0,tonnes +526,Burkina Faso,1994,6.0,tonnes +527,Burkina Faso,1995,3.04,tonnes +528,Burkina Faso,1996,39.16,tonnes +529,Burkina Faso,1997,75.29,tonnes +530,Burkina Faso,1998,111.41,tonnes +531,Burkina Faso,1999,93.43,tonnes +532,Burkina Faso,2000,75.44,tonnes +533,Burkina Faso,2001,57.46,tonnes +534,Burkina Faso,2002,39.47,tonnes +535,Burkina Faso,2003,21.49,tonnes +536,Burkina Faso,2004,1.28,tonnes +537,Burkina Faso,2005,92.21,tonnes +538,Burkina Faso,2006,109.24,tonnes +539,Burkina Faso,2007,292.05,tonnes +540,Burkina Faso,2008,190.92,tonnes +541,Burkina Faso,2009,132.3,tonnes +542,Burkina Faso,2010,442.89,tonnes +543,Burkina Faso,2011,843.0,tonnes +544,Burkina Faso,2012,843.0,tonnes +545,Burkina Faso,2013,843.0,tonnes +546,Burundi,1990,92.08,tonnes +547,Burundi,1991,92.08,tonnes +548,Burundi,1992,92.08,tonnes +549,Burundi,1993,96.99,tonnes +550,Burundi,1994,84.45,tonnes +551,Burundi,1995,144.2,tonnes +552,Burundi,1996,207.1,tonnes +553,Burundi,1997,117.56,tonnes +554,Burundi,1998,107.29,tonnes +555,Burundi,1999,150.24,tonnes +556,Burundi,2000,109.87,tonnes +557,Burundi,2001,72.58,tonnes +558,Burundi,2002,98.1,tonnes +559,Burundi,2003,263.7,tonnes +560,Burundi,2004,508.26,tonnes +561,Burundi,2005,304.83,tonnes +562,Burundi,2006,190.51,tonnes +563,Burundi,2007,412.66,tonnes +564,Burundi,2008,456.44,tonnes +565,Burundi,2009,177.75,tonnes +566,Burundi,2010,264.53,tonnes +567,Burundi,2011,75.64,tonnes +568,Burundi,2012,98.59,tonnes +569,Burundi,2013,956.06,tonnes +570,Cabo Verde,1990,1.0,tonnes +571,Cabo Verde,1991,1.0,tonnes +572,Cabo Verde,1992,1.0,tonnes +573,Cabo Verde,1993,1.0,tonnes +574,Cabo Verde,1994,2.0,tonnes +575,Cabo Verde,1995,0.68,tonnes +576,Cabo Verde,1996,0.5,tonnes +577,Cabo Verde,1997,1.74,tonnes +578,Cabo Verde,1998,7.03,tonnes +579,Cabo Verde,1999,11.0,tonnes +580,Cabo Verde,2000,7.0,tonnes +581,Cabo Verde,2001,5.0,tonnes +582,Cabo Verde,2002,5.0,tonnes +583,Cabo Verde,2003,5.0,tonnes +584,Cabo Verde,2004,5.0,tonnes +585,Cabo Verde,2005,5.0,tonnes +586,Cabo Verde,2006,5.0,tonnes +587,Cabo Verde,2007,5.0,tonnes +588,Cabo Verde,2008,5.0,tonnes +589,Cabo Verde,2009,5.0,tonnes +590,Cabo Verde,2010,5.0,tonnes +591,Cabo Verde,2011,5.0,tonnes +592,Cabo Verde,2012,5.0,tonnes +593,Cabo Verde,2013,5.0,tonnes +594,Cameroon,1990,914.96,tonnes +595,Cameroon,1991,190.47,tonnes +596,Cameroon,1992,1842.46,tonnes +597,Cameroon,1993,1244.42,tonnes +598,Cameroon,1994,646.39,tonnes +599,Cameroon,1995,48.35,tonnes +600,Cameroon,1996,180.08,tonnes +601,Cameroon,1997,630.12,tonnes +602,Cameroon,1998,258.02,tonnes +603,Cameroon,1999,654.0,tonnes +604,Cameroon,2000,546.0,tonnes +605,Cameroon,2001,687.0,tonnes +606,Cameroon,2002,815.79,tonnes +607,Cameroon,2003,957.36,tonnes +608,Cameroon,2004,849.48,tonnes +609,Cameroon,2005,829.59,tonnes +610,Cameroon,2006,950.22,tonnes +611,Cameroon,2007,918.88,tonnes +612,Cameroon,2008,882.13,tonnes +613,Cameroon,2009,813.77,tonnes +614,Cameroon,2010,1160.63,tonnes +615,Cameroon,2011,1372.47,tonnes +616,Cameroon,2012,1372.47,tonnes +617,Cameroon,2013,1372.47,tonnes +618,Canada,1990,29568.0,tonnes +619,Canada,1991,29477.5,tonnes +620,Canada,1992,29387.0,tonnes +621,Canada,1993,29296.5,tonnes +622,Canada,1994,29206.0,tonnes +623,Canada,1995,32223.4,tonnes +624,Canada,1996,35240.8,tonnes +625,Canada,1997,38258.2,tonnes +626,Canada,1998,41275.6,tonnes +627,Canada,1999,44293.0,tonnes +628,Canada,2000,39667.0,tonnes +629,Canada,2001,38456.0,tonnes +630,Canada,2002,34226.0,tonnes +631,Canada,2003,35596.0,tonnes +632,Canada,2004,36138.0,tonnes +633,Canada,2005,36363.0,tonnes +634,Canada,2006,36572.75,tonnes +635,Canada,2007,45140.03,tonnes +636,Canada,2008,53707.3,tonnes +637,Canada,2009,54529.4,tonnes +638,Canada,2010,61050.0,tonnes +639,Canada,2011,62107.2,tonnes +640,Canada,2012,73508.9,tonnes +641,Canada,2013,81659.8,tonnes +642,Central African Republic,1990,0.04,tonnes +643,Central African Republic,1991,0.04,tonnes +644,Central African Republic,1992,0.04,tonnes +645,Central African Republic,1993,0.25,tonnes +646,Central African Republic,1994,2.16,tonnes +647,Central African Republic,1995,22.87,tonnes +648,Central African Republic,1996,22.87,tonnes +649,Central African Republic,1997,22.87,tonnes +650,Central African Republic,1998,22.87,tonnes +651,Central African Republic,1999,22.87,tonnes +652,Central African Republic,2000,22.87,tonnes +653,Central African Republic,2001,22.87,tonnes +654,Central African Republic,2002,22.87,tonnes +655,Central African Republic,2003,22.87,tonnes +656,Central African Republic,2004,22.87,tonnes +657,Central African Republic,2005,22.87,tonnes +658,Central African Republic,2006,22.87,tonnes +659,Central African Republic,2007,22.87,tonnes +660,Central African Republic,2008,22.87,tonnes +661,Central African Republic,2009,22.87,tonnes +662,Central African Republic,2010,22.87,tonnes +663,Central African Republic,2011,22.87,tonnes +664,Central African Republic,2012,22.87,tonnes +665,Central African Republic,2013,22.87,tonnes +666,Chad,1990,57.0,tonnes +667,Chad,1991,60.0,tonnes +668,Chad,1992,45.0,tonnes +669,Chad,1993,5.0,tonnes +670,Chad,1994,15.0,tonnes +671,Chad,1995,2.0,tonnes +672,Chad,1996,1.0,tonnes +673,Chad,1997,42.0,tonnes +674,Chad,1998,42.0,tonnes +675,Chad,1999,42.0,tonnes +676,Chad,2000,42.0,tonnes +677,Chad,2001,42.0,tonnes +678,Chad,2002,42.0,tonnes +679,Chad,2003,42.0,tonnes +680,Chad,2004,42.0,tonnes +681,Chad,2005,42.0,tonnes +682,Chad,2006,42.0,tonnes +683,Chad,2007,42.0,tonnes +684,Chad,2008,42.0,tonnes +685,Chad,2009,42.0,tonnes +686,Chad,2010,42.0,tonnes +687,Chad,2011,42.0,tonnes +688,Chad,2012,42.0,tonnes +689,Chad,2013,42.0,tonnes +690,Chile,1990,15373.0,tonnes +691,Chile,1991,15373.0,tonnes +692,Chile,1992,15373.0,tonnes +693,Chile,1993,15373.0,tonnes +694,Chile,1994,15373.0,tonnes +695,Chile,1995,15373.0,tonnes +696,Chile,1996,15373.0,tonnes +697,Chile,1997,15373.0,tonnes +698,Chile,1998,15373.0,tonnes +699,Chile,1999,15373.0,tonnes +700,Chile,2000,14264.54,tonnes +701,Chile,2001,13156.09,tonnes +702,Chile,2002,12047.63,tonnes +703,Chile,2003,10939.18,tonnes +704,Chile,2004,9830.72,tonnes +705,Chile,2005,9830.72,tonnes +706,Chile,2006,9830.72,tonnes +707,Chile,2007,9830.72,tonnes +708,Chile,2008,9830.72,tonnes +709,Chile,2009,9830.72,tonnes +710,Chile,2010,9830.72,tonnes +711,Chile,2011,9830.72,tonnes +712,Chile,2012,9830.72,tonnes +713,Chile,2013,9830.72,tonnes +714,China,1990,775408.37,tonnes +715,China,1991,775388.37,tonnes +716,China,1992,809244.37,tonnes +717,China,1993,854860.37,tonnes +718,China,1994,988608.37,tonnes +719,China,1995,1097075.37,tonnes +720,China,1996,1150843.77,tonnes +721,China,1997,1204908.17,tonnes +722,China,1998,1240708.57,tonnes +723,China,1999,1333139.97,tonnes +724,China,2000,1288619.37,tonnes +725,China,2001,1283381.37,tonnes +726,China,2002,1322948.37,tonnes +727,China,2003,1335502.74,tonnes +728,China,2004,1395814.01,tonnes +729,China,2005,1469311.84,tonnes +730,China,2006,1546108.98,tonnes +731,China,2007,1632584.56,tonnes +732,China,2008,1681188.47,tonnes +733,China,2009,1717687.15,tonnes +734,China,2010,1765944.22,tonnes +735,China,2011,1795371.35,tonnes +736,China,2012,1815505.77,tonnes +737,China,2013,1811604.85,tonnes +738,"China, Hong Kong SAR",1990,115.0,tonnes +739,"China, Hong Kong SAR",1991,95.0,tonnes +740,"China, Hong Kong SAR",1992,84.0,tonnes +741,"China, Hong Kong SAR",1993,74.0,tonnes +742,"China, Hong Kong SAR",1994,71.0,tonnes +743,"China, Hong Kong SAR",1995,45.0,tonnes +744,"China, Hong Kong SAR",1996,45.4,tonnes +745,"China, Hong Kong SAR",1997,45.8,tonnes +746,"China, Hong Kong SAR",1998,46.2,tonnes +747,"China, Hong Kong SAR",1999,46.6,tonnes +748,"China, Hong Kong SAR",2000,47.0,tonnes +749,"China, Hong Kong SAR",2001,53.0,tonnes +750,"China, Hong Kong SAR",2002,84.0,tonnes +751,"China, Hong Kong SAR",2003,90.0,tonnes +752,"China, Hong Kong SAR",2004,51.0,tonnes +753,"China, Hong Kong SAR",2005,45.0,tonnes +754,"China, Hong Kong SAR",2006,48.0,tonnes +755,"China, Hong Kong SAR",2007,45.0,tonnes +756,"China, Hong Kong SAR",2008,55.0,tonnes +757,"China, Hong Kong SAR",2009,46.0,tonnes +758,"China, Hong Kong SAR",2010,41.0,tonnes +759,"China, Hong Kong SAR",2011,63.0,tonnes +760,"China, Hong Kong SAR",2012,56.0,tonnes +761,"China, Hong Kong SAR",2013,57.0,tonnes +762,"China, Macao SAR",1990,32.37,tonnes +763,"China, Macao SAR",1991,32.37,tonnes +764,"China, Macao SAR",1992,32.37,tonnes +765,"China, Macao SAR",1993,32.37,tonnes +766,"China, Macao SAR",1994,32.37,tonnes +767,"China, Macao SAR",1995,32.37,tonnes +768,"China, Macao SAR",1996,32.37,tonnes +769,"China, Macao SAR",1997,32.37,tonnes +770,"China, Macao SAR",1998,32.37,tonnes +771,"China, Macao SAR",1999,32.37,tonnes +772,"China, Macao SAR",2000,32.37,tonnes +773,"China, Macao SAR",2001,32.37,tonnes +774,"China, Macao SAR",2002,32.37,tonnes +775,"China, Macao SAR",2003,43.74,tonnes +776,"China, Macao SAR",2004,32.01,tonnes +777,"China, Macao SAR",2005,38.84,tonnes +778,"China, Macao SAR",2006,46.98,tonnes +779,"China, Macao SAR",2007,47.56,tonnes +780,"China, Macao SAR",2008,53.47,tonnes +781,"China, Macao SAR",2009,52.15,tonnes +782,"China, Macao SAR",2010,53.22,tonnes +783,"China, Macao SAR",2011,52.35,tonnes +784,"China, Macao SAR",2012,53.77,tonnes +785,"China, Macao SAR",2013,53.85,tonnes +786,"China, mainland",1990,765307.0,tonnes +787,"China, mainland",1991,765307.0,tonnes +788,"China, mainland",1992,799174.0,tonnes +789,"China, mainland",1993,844800.0,tonnes +790,"China, mainland",1994,978551.0,tonnes +791,"China, mainland",1995,1087044.0,tonnes +792,"China, mainland",1996,1140812.0,tonnes +793,"China, mainland",1997,1195466.0,tonnes +794,"China, mainland",1998,1231699.0,tonnes +795,"China, mainland",1999,1321620.0,tonnes +796,"China, mainland",2000,1279533.0,tonnes +797,"China, mainland",2001,1274820.0,tonnes +798,"China, mainland",2002,1312285.0,tonnes +799,"China, mainland",2003,1325226.0,tonnes +800,"China, mainland",2004,1386028.0,tonnes +801,"China, mainland",2005,1460000.0,tonnes +802,"China, mainland",2006,1537000.0,tonnes +803,"China, mainland",2007,1623000.0,tonnes +804,"China, mainland",2008,1672300.0,tonnes +805,"China, mainland",2009,1709000.0,tonnes +806,"China, mainland",2010,1758000.0,tonnes +807,"China, mainland",2011,1787002.0,tonnes +808,"China, mainland",2012,1806000.0,tonnes +809,"China, mainland",2013,1801862.0,tonnes +810,"China, Taiwan Province of",1990,9954.0,tonnes +811,"China, Taiwan Province of",1991,9954.0,tonnes +812,"China, Taiwan Province of",1992,9954.0,tonnes +813,"China, Taiwan Province of",1993,9954.0,tonnes +814,"China, Taiwan Province of",1994,9954.0,tonnes +815,"China, Taiwan Province of",1995,9954.0,tonnes +816,"China, Taiwan Province of",1996,9954.0,tonnes +817,"China, Taiwan Province of",1997,9364.0,tonnes +818,"China, Taiwan Province of",1998,8931.0,tonnes +819,"China, Taiwan Province of",1999,11441.0,tonnes +820,"China, Taiwan Province of",2000,9007.0,tonnes +821,"China, Taiwan Province of",2001,8476.0,tonnes +822,"China, Taiwan Province of",2002,10547.0,tonnes +823,"China, Taiwan Province of",2003,10143.0,tonnes +824,"China, Taiwan Province of",2004,9703.0,tonnes +825,"China, Taiwan Province of",2005,9228.0,tonnes +826,"China, Taiwan Province of",2006,9014.0,tonnes +827,"China, Taiwan Province of",2007,9492.0,tonnes +828,"China, Taiwan Province of",2008,8780.0,tonnes +829,"China, Taiwan Province of",2009,8589.0,tonnes +830,"China, Taiwan Province of",2010,7850.0,tonnes +831,"China, Taiwan Province of",2011,8254.0,tonnes +832,"China, Taiwan Province of",2012,9396.0,tonnes +833,"China, Taiwan Province of",2013,9632.0,tonnes +834,Colombia,1990,18058.29,tonnes +835,Colombia,1991,16817.0,tonnes +836,Colombia,1992,15305.94,tonnes +837,Colombia,1993,14961.81,tonnes +838,Colombia,1994,17051.34,tonnes +839,Colombia,1995,20156.23,tonnes +840,Colombia,1996,18131.0,tonnes +841,Colombia,1997,16005.0,tonnes +842,Colombia,1998,60687.0,tonnes +843,Colombia,1999,66088.0,tonnes +844,Colombia,2000,75843.01,tonnes +845,Colombia,2001,85515.31,tonnes +846,Colombia,2002,84023.27,tonnes +847,Colombia,2003,88772.16,tonnes +848,Colombia,2004,105514.2,tonnes +849,Colombia,2005,117881.47,tonnes +850,Colombia,2006,98328.65,tonnes +851,Colombia,2007,82439.08,tonnes +852,Colombia,2008,48538.99,tonnes +853,Colombia,2009,51435.15,tonnes +854,Colombia,2010,48618.49,tonnes +855,Colombia,2011,53797.03,tonnes +856,Colombia,2012,48727.73,tonnes +857,Colombia,2013,54563.38,tonnes +858,Comoros,1990,0.7,tonnes +859,Comoros,1991,0.7,tonnes +860,Comoros,1992,0.7,tonnes +861,Comoros,1993,0.7,tonnes +862,Comoros,1994,0.7,tonnes +863,Comoros,1995,0.7,tonnes +864,Comoros,1996,0.7,tonnes +865,Comoros,1997,0.7,tonnes +866,Comoros,1998,0.7,tonnes +867,Comoros,1999,0.7,tonnes +868,Comoros,2000,0.7,tonnes +869,Comoros,2001,0.67,tonnes +870,Comoros,2002,0.64,tonnes +871,Comoros,2003,0.61,tonnes +872,Comoros,2004,0.58,tonnes +873,Comoros,2005,0.55,tonnes +874,Comoros,2006,0.52,tonnes +875,Comoros,2007,0.49,tonnes +876,Comoros,2008,0.27,tonnes +877,Comoros,2009,0.03,tonnes +878,Comoros,2010,0.03,tonnes +879,Comoros,2011,0.03,tonnes +880,Comoros,2012,0.03,tonnes +881,Comoros,2013,0.03,tonnes +882,Congo,1990,27.0,tonnes +883,Congo,1991,29.0,tonnes +884,Congo,1992,35.0,tonnes +885,Congo,1993,41.0,tonnes +886,Congo,1994,11.2,tonnes +887,Congo,1995,12.2,tonnes +888,Congo,1996,14.2,tonnes +889,Congo,1997,13.24,tonnes +890,Congo,1998,12.27,tonnes +891,Congo,1999,11.31,tonnes +892,Congo,2000,10.34,tonnes +893,Congo,2001,9.38,tonnes +894,Congo,2002,8.41,tonnes +895,Congo,2003,7.45,tonnes +896,Congo,2004,6.48,tonnes +897,Congo,2005,5.52,tonnes +898,Congo,2006,4.55,tonnes +899,Congo,2007,3.59,tonnes +900,Congo,2008,2.62,tonnes +901,Congo,2009,1.66,tonnes +902,Congo,2010,0.87,tonnes +903,Congo,2011,0.87,tonnes +904,Congo,2012,0.87,tonnes +905,Congo,2013,0.87,tonnes +906,Cook Islands,1990,1.0,tonnes +907,Cook Islands,1991,1.0,tonnes +908,Cook Islands,1992,1.0,tonnes +909,Cook Islands,1993,1.0,tonnes +910,Cook Islands,1994,0.86,tonnes +911,Cook Islands,1995,0.71,tonnes +912,Cook Islands,1996,0.9,tonnes +913,Cook Islands,1997,1.63,tonnes +914,Cook Islands,1998,1.58,tonnes +915,Cook Islands,1999,1.5,tonnes +916,Cook Islands,2000,1.5,tonnes +917,Cook Islands,2001,1.9,tonnes +918,Cook Islands,2002,2.29,tonnes +919,Cook Islands,2003,2.69,tonnes +920,Cook Islands,2004,2.79,tonnes +921,Cook Islands,2005,3.04,tonnes +922,Cook Islands,2006,3.21,tonnes +923,Cook Islands,2007,3.23,tonnes +924,Cook Islands,2008,3.6,tonnes +925,Cook Islands,2009,3.33,tonnes +926,Cook Islands,2010,3.33,tonnes +927,Cook Islands,2011,3.33,tonnes +928,Cook Islands,2012,3.33,tonnes +929,Cook Islands,2013,3.33,tonnes +930,Costa Rica,1990,1447.15,tonnes +931,Costa Rica,1991,1447.15,tonnes +932,Costa Rica,1992,1447.15,tonnes +933,Costa Rica,1993,1447.15,tonnes +934,Costa Rica,1994,1475.13,tonnes +935,Costa Rica,1995,1503.12,tonnes +936,Costa Rica,1996,2747.79,tonnes +937,Costa Rica,1997,4104.66,tonnes +938,Costa Rica,1998,7898.0,tonnes +939,Costa Rica,1999,16889.0,tonnes +940,Costa Rica,2000,25865.0,tonnes +941,Costa Rica,2001,10704.0,tonnes +942,Costa Rica,2002,11125.01,tonnes +943,Costa Rica,2003,10639.01,tonnes +944,Costa Rica,2004,10990.02,tonnes +945,Costa Rica,2005,10937.02,tonnes +946,Costa Rica,2006,10988.03,tonnes +947,Costa Rica,2007,12746.56,tonnes +948,Costa Rica,2008,13317.0,tonnes +949,Costa Rica,2009,12306.67,tonnes +950,Costa Rica,2010,14241.84,tonnes +951,Costa Rica,2011,12811.25,tonnes +952,Costa Rica,2012,12811.25,tonnes +953,Costa Rica,2013,12811.25,tonnes +954,Côte d'Ivoire,1990,16.0,tonnes +955,Côte d'Ivoire,1991,16.0,tonnes +956,Côte d'Ivoire,1992,16.0,tonnes +957,Côte d'Ivoire,1993,16.0,tonnes +958,Côte d'Ivoire,1994,143.0,tonnes +959,Côte d'Ivoire,1995,134.0,tonnes +960,Côte d'Ivoire,1996,93.0,tonnes +961,Côte d'Ivoire,1997,93.0,tonnes +962,Côte d'Ivoire,1998,93.0,tonnes +963,Côte d'Ivoire,1999,93.0,tonnes +964,Côte d'Ivoire,2000,93.0,tonnes +965,Côte d'Ivoire,2001,93.0,tonnes +966,Côte d'Ivoire,2002,93.0,tonnes +967,Côte d'Ivoire,2003,93.0,tonnes +968,Côte d'Ivoire,2004,93.0,tonnes +969,Côte d'Ivoire,2005,93.0,tonnes +970,Côte d'Ivoire,2006,93.0,tonnes +971,Côte d'Ivoire,2007,93.0,tonnes +972,Côte d'Ivoire,2008,93.0,tonnes +973,Côte d'Ivoire,2009,93.0,tonnes +974,Côte d'Ivoire,2010,93.0,tonnes +975,Côte d'Ivoire,2011,93.0,tonnes +976,Côte d'Ivoire,2012,93.0,tonnes +977,Côte d'Ivoire,2013,93.0,tonnes +978,Croatia,1992,2304.0,tonnes +979,Croatia,1993,2675.33,tonnes +980,Croatia,1994,3046.67,tonnes +981,Croatia,1995,3418.0,tonnes +982,Croatia,1996,3148.0,tonnes +983,Croatia,1997,3026.25,tonnes +984,Croatia,1998,2904.5,tonnes +985,Croatia,1999,2782.75,tonnes +986,Croatia,2000,2661.0,tonnes +987,Croatia,2001,2539.25,tonnes +988,Croatia,2002,2417.5,tonnes +989,Croatia,2003,2295.75,tonnes +990,Croatia,2004,2174.0,tonnes +991,Croatia,2005,2053.0,tonnes +992,Croatia,2006,2150.0,tonnes +993,Croatia,2007,2015.0,tonnes +994,Croatia,2008,2388.0,tonnes +995,Croatia,2009,2070.0,tonnes +996,Croatia,2010,1540.0,tonnes +997,Croatia,2011,1638.74,tonnes +998,Croatia,2012,1737.48,tonnes +999,Croatia,2013,1836.21,tonnes +1000,Cyprus,1990,2184.51,tonnes +1001,Cyprus,1991,1970.71,tonnes +1002,Cyprus,1992,1695.53,tonnes +1003,Cyprus,1993,2044.07,tonnes +1004,Cyprus,1994,2518.2,tonnes +1005,Cyprus,1995,2030.77,tonnes +1006,Cyprus,1996,2417.19,tonnes +1007,Cyprus,1997,2224.09,tonnes +1008,Cyprus,1998,1660.96,tonnes +1009,Cyprus,1999,1097.84,tonnes +1010,Cyprus,2000,534.71,tonnes +1011,Cyprus,2001,627.82,tonnes +1012,Cyprus,2002,975.0,tonnes +1013,Cyprus,2003,720.0,tonnes +1014,Cyprus,2004,650.0,tonnes +1015,Cyprus,2005,620.0,tonnes +1016,Cyprus,2006,812.0,tonnes +1017,Cyprus,2007,495.0,tonnes +1018,Cyprus,2008,447.0,tonnes +1019,Cyprus,2009,707.0,tonnes +1020,Cyprus,2010,620.0,tonnes +1021,Cyprus,2011,567.7,tonnes +1022,Cyprus,2012,727.01,tonnes +1023,Cyprus,2013,886.89,tonnes +1024,Czechia,1993,3545.1,tonnes +1025,Czechia,1994,3593.15,tonnes +1026,Czechia,1995,3757.2,tonnes +1027,Czechia,1996,3631.1,tonnes +1028,Czechia,1997,4085.03,tonnes +1029,Czechia,1998,4351.03,tonnes +1030,Czechia,1999,4242.02,tonnes +1031,Czechia,2000,4533.04,tonnes +1032,Czechia,2001,4649.12,tonnes +1033,Czechia,2002,4977.62,tonnes +1034,Czechia,2003,4590.0,tonnes +1035,Czechia,2004,5318.44,tonnes +1036,Czechia,2005,5384.76,tonnes +1037,Czechia,2006,5693.11,tonnes +1038,Czechia,2007,6194.49,tonnes +1039,Czechia,2008,5440.0,tonnes +1040,Czechia,2009,4759.9,tonnes +1041,Czechia,2010,4957.4,tonnes +1042,Czechia,2011,5306.06,tonnes +1043,Czechia,2012,5345.4,tonnes +1044,Czechia,2013,5146.98,tonnes +1045,Denmark,1990,5650.0,tonnes +1046,Denmark,1991,4628.0,tonnes +1047,Denmark,1992,4566.0,tonnes +1048,Denmark,1993,4103.0,tonnes +1049,Denmark,1994,3922.0,tonnes +1050,Denmark,1995,5043.0,tonnes +1051,Denmark,1996,3672.0,tonnes +1052,Denmark,1997,3679.0,tonnes +1053,Denmark,1998,3623.0,tonnes +1054,Denmark,1999,2867.0,tonnes +1055,Denmark,2000,3174.0,tonnes +1056,Denmark,2001,3311.0,tonnes +1057,Denmark,2002,2868.0,tonnes +1058,Denmark,2003,2954.0,tonnes +1059,Denmark,2004,2899.0,tonnes +1060,Denmark,2005,3246.0,tonnes +1061,Denmark,2006,3212.0,tonnes +1062,Denmark,2007,3336.0,tonnes +1063,Denmark,2008,4145.0,tonnes +1064,Denmark,2009,2836.0,tonnes +1065,Denmark,2010,3894.0,tonnes +1066,Denmark,2011,4249.48,tonnes +1067,Denmark,2012,5716.0,tonnes +1068,Denmark,2013,4118.0,tonnes +1069,Dominican Republic,1990,4971.0,tonnes +1070,Dominican Republic,1991,4971.0,tonnes +1071,Dominican Republic,1992,4971.0,tonnes +1072,Dominican Republic,1993,4971.0,tonnes +1073,Dominican Republic,1994,4971.0,tonnes +1074,Dominican Republic,1995,3449.0,tonnes +1075,Dominican Republic,1996,3493.0,tonnes +1076,Dominican Republic,1997,3846.0,tonnes +1077,Dominican Republic,1998,4375.0,tonnes +1078,Dominican Republic,1999,5398.0,tonnes +1079,Dominican Republic,2000,5082.0,tonnes +1080,Dominican Republic,2001,7182.0,tonnes +1081,Dominican Republic,2002,4018.07,tonnes +1082,Dominican Republic,2003,854.14,tonnes +1083,Dominican Republic,2004,3713.96,tonnes +1084,Dominican Republic,2005,3515.56,tonnes +1085,Dominican Republic,2006,4116.45,tonnes +1086,Dominican Republic,2007,5689.8,tonnes +1087,Dominican Republic,2008,5409.43,tonnes +1088,Dominican Republic,2009,5975.25,tonnes +1089,Dominican Republic,2010,6316.61,tonnes +1090,Dominican Republic,2011,6275.95,tonnes +1091,Dominican Republic,2012,6235.29,tonnes +1092,Dominican Republic,2013,6194.62,tonnes +1093,Ecuador,1990,2537.0,tonnes +1094,Ecuador,1991,2377.0,tonnes +1095,Ecuador,1992,2012.0,tonnes +1096,Ecuador,1993,1844.0,tonnes +1097,Ecuador,1994,2670.0,tonnes +1098,Ecuador,1995,2658.0,tonnes +1099,Ecuador,1996,2407.0,tonnes +1100,Ecuador,1997,7612.0,tonnes +1101,Ecuador,1998,21500.0,tonnes +1102,Ecuador,1999,14216.0,tonnes +1103,Ecuador,2000,17948.0,tonnes +1104,Ecuador,2001,7344.0,tonnes +1105,Ecuador,2002,1306.49,tonnes +1106,Ecuador,2003,30634.53,tonnes +1107,Ecuador,2004,29799.84,tonnes +1108,Ecuador,2005,18391.23,tonnes +1109,Ecuador,2006,7953.42,tonnes +1110,Ecuador,2007,14156.16,tonnes +1111,Ecuador,2008,15396.14,tonnes +1112,Ecuador,2009,9666.87,tonnes +1113,Ecuador,2010,31637.12,tonnes +1114,Ecuador,2011,17529.44,tonnes +1115,Ecuador,2012,11469.74,tonnes +1116,Ecuador,2013,6471.77,tonnes +1117,Egypt,1990,13214.0,tonnes +1118,Egypt,1991,8255.0,tonnes +1119,Egypt,1992,6156.0,tonnes +1120,Egypt,1993,4175.0,tonnes +1121,Egypt,1994,4283.0,tonnes +1122,Egypt,1995,4391.0,tonnes +1123,Egypt,1996,4499.0,tonnes +1124,Egypt,1997,4607.0,tonnes +1125,Egypt,1998,4715.0,tonnes +1126,Egypt,1999,4823.0,tonnes +1127,Egypt,2000,4931.0,tonnes +1128,Egypt,2001,5039.0,tonnes +1129,Egypt,2002,5147.0,tonnes +1130,Egypt,2003,5255.0,tonnes +1131,Egypt,2004,5363.0,tonnes +1132,Egypt,2005,5471.0,tonnes +1133,Egypt,2006,9781.0,tonnes +1134,Egypt,2007,9105.0,tonnes +1135,Egypt,2008,9527.0,tonnes +1136,Egypt,2009,9013.0,tonnes +1137,Egypt,2010,11590.0,tonnes +1138,Egypt,2011,12945.0,tonnes +1139,Egypt,2012,13991.0,tonnes +1140,Egypt,2013,13653.0,tonnes +1141,El Salvador,1990,2524.0,tonnes +1142,El Salvador,1991,4096.0,tonnes +1143,El Salvador,1992,3940.77,tonnes +1144,El Salvador,1993,3785.54,tonnes +1145,El Salvador,1994,3630.31,tonnes +1146,El Salvador,1995,3475.08,tonnes +1147,El Salvador,1996,3319.85,tonnes +1148,El Salvador,1997,3164.62,tonnes +1149,El Salvador,1998,3009.39,tonnes +1150,El Salvador,1999,2854.16,tonnes +1151,El Salvador,2000,2698.93,tonnes +1152,El Salvador,2001,2543.7,tonnes +1153,El Salvador,2002,2388.47,tonnes +1154,El Salvador,2003,2233.24,tonnes +1155,El Salvador,2004,2078.01,tonnes +1156,El Salvador,2005,1922.78,tonnes +1157,El Salvador,2006,2265.72,tonnes +1158,El Salvador,2007,1940.78,tonnes +1159,El Salvador,2008,3899.48,tonnes +1160,El Salvador,2009,3333.88,tonnes +1161,El Salvador,2010,3598.59,tonnes +1162,El Salvador,2011,3231.13,tonnes +1163,El Salvador,2012,2595.16,tonnes +1164,El Salvador,2013,6005.08,tonnes +1165,Eritrea,1993,4.44,tonnes +1166,Eritrea,1994,4.44,tonnes +1167,Eritrea,1995,4.44,tonnes +1168,Eritrea,1996,4.44,tonnes +1169,Eritrea,1997,30.92,tonnes +1170,Eritrea,1998,19.61,tonnes +1171,Eritrea,1999,22.28,tonnes +1172,Eritrea,2000,24.96,tonnes +1173,Eritrea,2001,27.63,tonnes +1174,Eritrea,2002,27.63,tonnes +1175,Eritrea,2003,27.63,tonnes +1176,Eritrea,2004,27.63,tonnes +1177,Eritrea,2005,27.63,tonnes +1178,Eritrea,2006,27.63,tonnes +1179,Eritrea,2007,27.63,tonnes +1180,Eritrea,2008,27.63,tonnes +1181,Eritrea,2009,27.63,tonnes +1182,Eritrea,2010,27.63,tonnes +1183,Eritrea,2011,27.63,tonnes +1184,Eritrea,2012,27.63,tonnes +1185,Eritrea,2013,27.63,tonnes +1186,Estonia,1992,469.0,tonnes +1187,Estonia,1993,170.0,tonnes +1188,Estonia,1994,176.0,tonnes +1189,Estonia,1995,154.0,tonnes +1190,Estonia,1996,133.0,tonnes +1191,Estonia,1997,200.0,tonnes +1192,Estonia,1998,195.0,tonnes +1193,Estonia,1999,187.0,tonnes +1194,Estonia,2000,315.0,tonnes +1195,Estonia,2001,329.0,tonnes +1196,Estonia,2002,331.0,tonnes +1197,Estonia,2003,323.0,tonnes +1198,Estonia,2004,351.0,tonnes +1199,Estonia,2005,386.0,tonnes +1200,Estonia,2006,452.0,tonnes +1201,Estonia,2007,460.0,tonnes +1202,Estonia,2008,551.0,tonnes +1203,Estonia,2009,402.0,tonnes +1204,Estonia,2010,514.0,tonnes +1205,Estonia,2011,460.0,tonnes +1206,Estonia,2012,553.0,tonnes +1207,Estonia,2013,567.0,tonnes +1208,Ethiopia,1993,242.0,tonnes +1209,Ethiopia,1994,242.0,tonnes +1210,Ethiopia,1995,242.0,tonnes +1211,Ethiopia,1996,383.0,tonnes +1212,Ethiopia,1997,383.0,tonnes +1213,Ethiopia,1998,383.0,tonnes +1214,Ethiopia,1999,494.83,tonnes +1215,Ethiopia,2000,606.67,tonnes +1216,Ethiopia,2001,630.0,tonnes +1217,Ethiopia,2002,824.63,tonnes +1218,Ethiopia,2003,1019.25,tonnes +1219,Ethiopia,2004,1213.88,tonnes +1220,Ethiopia,2005,1408.5,tonnes +1221,Ethiopia,2006,2603.1,tonnes +1222,Ethiopia,2007,2593.9,tonnes +1223,Ethiopia,2008,2270.6,tonnes +1224,Ethiopia,2009,3699.2,tonnes +1225,Ethiopia,2010,4128.1,tonnes +1226,Ethiopia,2011,4128.1,tonnes +1227,Ethiopia,2012,4128.1,tonnes +1228,Ethiopia,2013,4128.1,tonnes +1229,Fiji,1990,148.39,tonnes +1230,Fiji,1991,698.98,tonnes +1231,Fiji,1992,135.18,tonnes +1232,Fiji,1993,160.65,tonnes +1233,Fiji,1994,186.13,tonnes +1234,Fiji,1995,211.6,tonnes +1235,Fiji,1996,237.07,tonnes +1236,Fiji,1997,262.54,tonnes +1237,Fiji,1998,288.02,tonnes +1238,Fiji,1999,313.49,tonnes +1239,Fiji,2000,338.96,tonnes +1240,Fiji,2001,364.43,tonnes +1241,Fiji,2002,389.9,tonnes +1242,Fiji,2003,415.38,tonnes +1243,Fiji,2004,440.85,tonnes +1244,Fiji,2005,466.32,tonnes +1245,Fiji,2006,491.79,tonnes +1246,Fiji,2007,517.26,tonnes +1247,Fiji,2008,542.74,tonnes +1248,Fiji,2009,709.7,tonnes +1249,Fiji,2010,689.97,tonnes +1250,Fiji,2011,710.1,tonnes +1251,Fiji,2012,805.54,tonnes +1252,Fiji,2013,769.07,tonnes +1253,Finland,1990,2001.0,tonnes +1254,Finland,1991,1738.0,tonnes +1255,Finland,1992,1372.0,tonnes +1256,Finland,1993,1200.0,tonnes +1257,Finland,1994,1247.0,tonnes +1258,Finland,1995,1041.0,tonnes +1259,Finland,1996,909.0,tonnes +1260,Finland,1997,999.0,tonnes +1261,Finland,1998,1164.0,tonnes +1262,Finland,1999,1139.0,tonnes +1263,Finland,2000,1147.48,tonnes +1264,Finland,2001,1423.27,tonnes +1265,Finland,2002,1620.36,tonnes +1266,Finland,2003,1666.82,tonnes +1267,Finland,2004,1489.12,tonnes +1268,Finland,2005,1431.04,tonnes +1269,Finland,2006,1645.3,tonnes +1270,Finland,2007,1479.45,tonnes +1271,Finland,2008,1621.86,tonnes +1272,Finland,2009,1693.8,tonnes +1273,Finland,2010,1746.71,tonnes +1274,Finland,2011,1707.54,tonnes +1275,Finland,2012,1545.25,tonnes +1276,Finland,2013,1475.39,tonnes +1277,France,1990,97701.0,tonnes +1278,France,1991,103434.0,tonnes +1279,France,1992,85249.0,tonnes +1280,France,1993,91953.0,tonnes +1281,France,1994,89515.0,tonnes +1282,France,1995,84011.0,tonnes +1283,France,1996,97890.0,tonnes +1284,France,1997,109793.0,tonnes +1285,France,1998,107754.0,tonnes +1286,France,1999,114696.0,tonnes +1287,France,2000,97878.0,tonnes +1288,France,2001,99694.0,tonnes +1289,France,2002,82448.0,tonnes +1290,France,2003,74531.0,tonnes +1291,France,2004,76120.5,tonnes +1292,France,2005,78290.0,tonnes +1293,France,2006,71640.5,tonnes +1294,France,2007,77255.0,tonnes +1295,France,2008,78601.0,tonnes +1296,France,2009,63692.0,tonnes +1297,France,2010,61911.0,tonnes +1298,France,2011,61039.0,tonnes +1299,France,2012,63547.59,tonnes +1300,France,2013,66497.29,tonnes +1301,French Polynesia,1990,41.3,tonnes +1302,French Polynesia,1991,41.3,tonnes +1303,French Polynesia,1992,41.3,tonnes +1304,French Polynesia,1993,41.3,tonnes +1305,French Polynesia,1994,41.3,tonnes +1306,French Polynesia,1995,41.3,tonnes +1307,French Polynesia,1996,41.3,tonnes +1308,French Polynesia,1997,41.3,tonnes +1309,French Polynesia,1998,41.3,tonnes +1310,French Polynesia,1999,41.3,tonnes +1311,French Polynesia,2000,41.3,tonnes +1312,French Polynesia,2001,41.3,tonnes +1313,French Polynesia,2002,41.3,tonnes +1314,French Polynesia,2003,44.33,tonnes +1315,French Polynesia,2004,47.35,tonnes +1316,French Polynesia,2005,55.33,tonnes +1317,French Polynesia,2006,45.3,tonnes +1318,French Polynesia,2007,48.64,tonnes +1319,French Polynesia,2008,53.82,tonnes +1320,French Polynesia,2009,45.43,tonnes +1321,French Polynesia,2010,27.73,tonnes +1322,French Polynesia,2011,43.21,tonnes +1323,French Polynesia,2012,29.1,tonnes +1324,French Polynesia,2013,25.7,tonnes +1325,Gambia,1990,34.0,tonnes +1326,Gambia,1991,34.0,tonnes +1327,Gambia,1992,34.0,tonnes +1328,Gambia,1993,20.03,tonnes +1329,Gambia,1994,2.02,tonnes +1330,Gambia,1995,8.04,tonnes +1331,Gambia,1996,8.31,tonnes +1332,Gambia,1997,74.73,tonnes +1333,Gambia,1998,141.16,tonnes +1334,Gambia,1999,207.58,tonnes +1335,Gambia,2000,274.0,tonnes +1336,Gambia,2001,237.0,tonnes +1337,Gambia,2002,250.0,tonnes +1338,Gambia,2003,345.0,tonnes +1339,Gambia,2004,559.0,tonnes +1340,Gambia,2005,813.0,tonnes +1341,Gambia,2006,2061.0,tonnes +1342,Gambia,2007,588.0,tonnes +1343,Gambia,2008,588.0,tonnes +1344,Gambia,2009,588.0,tonnes +1345,Gambia,2010,588.0,tonnes +1346,Gambia,2011,588.0,tonnes +1347,Gambia,2012,588.0,tonnes +1348,Gambia,2013,588.0,tonnes +1349,Germany,1990,31289.0,tonnes +1350,Germany,1991,32006.0,tonnes +1351,Germany,1992,29542.0,tonnes +1352,Germany,1993,25170.0,tonnes +1353,Germany,1994,26330.0,tonnes +1354,Germany,1995,30090.0,tonnes +1355,Germany,1996,31683.0,tonnes +1356,Germany,1997,30414.0,tonnes +1357,Germany,1998,33377.0,tonnes +1358,Germany,1999,30019.0,tonnes +1359,Germany,2000,35273.17,tonnes +1360,Germany,2001,33423.49,tonnes +1361,Germany,2002,34431.72,tonnes +1362,Germany,2003,35539.26,tonnes +1363,Germany,2004,34930.37,tonnes +1364,Germany,2005,36386.27,tonnes +1365,Germany,2006,38540.15,tonnes +1366,Germany,2007,40740.64,tonnes +1367,Germany,2008,43413.01,tonnes +1368,Germany,2009,39289.43,tonnes +1369,Germany,2010,40832.42,tonnes +1370,Germany,2011,43754.35,tonnes +1371,Germany,2012,45522.5,tonnes +1372,Germany,2013,43756.1,tonnes +1373,Ghana,1990,65.8,tonnes +1374,Ghana,1991,65.8,tonnes +1375,Ghana,1992,65.8,tonnes +1376,Ghana,1993,65.8,tonnes +1377,Ghana,1994,65.8,tonnes +1378,Ghana,1995,65.8,tonnes +1379,Ghana,1996,1575.5,tonnes +1380,Ghana,1997,502.0,tonnes +1381,Ghana,1998,297.78,tonnes +1382,Ghana,1999,114.13,tonnes +1383,Ghana,2000,81.63,tonnes +1384,Ghana,2001,82.0,tonnes +1385,Ghana,2002,89.74,tonnes +1386,Ghana,2003,108.67,tonnes +1387,Ghana,2004,127.6,tonnes +1388,Ghana,2005,165.84,tonnes +1389,Ghana,2006,771.0,tonnes +1390,Ghana,2007,119.86,tonnes +1391,Ghana,2008,350.83,tonnes +1392,Ghana,2009,378.97,tonnes +1393,Ghana,2010,378.97,tonnes +1394,Ghana,2011,378.97,tonnes +1395,Ghana,2012,378.97,tonnes +1396,Ghana,2013,378.97,tonnes +1397,Greece,1990,7420.0,tonnes +1398,Greece,1991,7420.0,tonnes +1399,Greece,1992,7869.0,tonnes +1400,Greece,1993,8826.0,tonnes +1401,Greece,1994,6341.0,tonnes +1402,Greece,1995,6663.0,tonnes +1403,Greece,1996,7296.0,tonnes +1404,Greece,1997,9223.0,tonnes +1405,Greece,1998,10702.0,tonnes +1406,Greece,1999,9635.0,tonnes +1407,Greece,2000,10627.0,tonnes +1408,Greece,2001,10725.0,tonnes +1409,Greece,2002,12209.42,tonnes +1410,Greece,2003,11836.84,tonnes +1411,Greece,2004,12650.26,tonnes +1412,Greece,2005,13488.68,tonnes +1413,Greece,2006,7505.3,tonnes +1414,Greece,2007,7345.7,tonnes +1415,Greece,2008,5130.8,tonnes +1416,Greece,2009,3404.4,tonnes +1417,Greece,2010,5607.7,tonnes +1418,Greece,2011,8189.8,tonnes +1419,Greece,2012,8002.2,tonnes +1420,Greece,2013,8081.72,tonnes +1421,Guatemala,1990,12004.33,tonnes +1422,Guatemala,1991,12004.33,tonnes +1423,Guatemala,1992,12004.33,tonnes +1424,Guatemala,1993,12004.33,tonnes +1425,Guatemala,1994,12004.33,tonnes +1426,Guatemala,1995,12004.33,tonnes +1427,Guatemala,1996,12004.33,tonnes +1428,Guatemala,1997,11419.53,tonnes +1429,Guatemala,1998,10834.74,tonnes +1430,Guatemala,1999,10249.94,tonnes +1431,Guatemala,2000,9665.14,tonnes +1432,Guatemala,2001,10025.35,tonnes +1433,Guatemala,2002,10385.57,tonnes +1434,Guatemala,2003,10745.78,tonnes +1435,Guatemala,2004,11966.11,tonnes +1436,Guatemala,2005,13512.61,tonnes +1437,Guatemala,2006,15958.27,tonnes +1438,Guatemala,2007,22890.57,tonnes +1439,Guatemala,2008,18099.47,tonnes +1440,Guatemala,2009,13284.9,tonnes +1441,Guatemala,2010,14906.85,tonnes +1442,Guatemala,2011,16540.71,tonnes +1443,Guatemala,2012,19726.3,tonnes +1444,Guatemala,2013,20489.4,tonnes +1445,Guinea,1990,80.0,tonnes +1446,Guinea,1991,80.0,tonnes +1447,Guinea,1992,80.0,tonnes +1448,Guinea,1993,21.0,tonnes +1449,Guinea,1994,39.0,tonnes +1450,Guinea,1995,153.0,tonnes +1451,Guinea,1996,157.0,tonnes +1452,Guinea,1997,157.0,tonnes +1453,Guinea,1998,181.35,tonnes +1454,Guinea,1999,205.71,tonnes +1455,Guinea,2000,230.06,tonnes +1456,Guinea,2001,254.42,tonnes +1457,Guinea,2002,278.77,tonnes +1458,Guinea,2003,303.13,tonnes +1459,Guinea,2004,327.49,tonnes +1460,Guinea,2005,351.84,tonnes +1461,Guinea,2006,376.19,tonnes +1462,Guinea,2007,400.55,tonnes +1463,Guinea,2008,424.9,tonnes +1464,Guinea,2009,449.26,tonnes +1465,Guinea,2010,556.24,tonnes +1466,Guinea,2011,663.23,tonnes +1467,Guinea,2012,770.21,tonnes +1468,Guinea,2013,877.19,tonnes +1469,Guinea-Bissau,1990,32.0,tonnes +1470,Guinea-Bissau,1991,38.0,tonnes +1471,Guinea-Bissau,1992,4.0,tonnes +1472,Guinea-Bissau,1993,25.0,tonnes +1473,Guinea-Bissau,1994,21.0,tonnes +1474,Guinea-Bissau,1995,17.0,tonnes +1475,Guinea-Bissau,1996,13.0,tonnes +1476,Guinea-Bissau,1997,9.0,tonnes +1477,Guinea-Bissau,1998,5.0,tonnes +1478,Guinea-Bissau,1999,1.0,tonnes +1479,Guinea-Bissau,2000,41.5,tonnes +1480,Guinea-Bissau,2001,82.0,tonnes +1481,Guinea-Bissau,2002,82.0,tonnes +1482,Guinea-Bissau,2003,82.0,tonnes +1483,Guinea-Bissau,2004,82.0,tonnes +1484,Guinea-Bissau,2005,82.0,tonnes +1485,Guinea-Bissau,2006,82.0,tonnes +1486,Guinea-Bissau,2007,82.0,tonnes +1487,Guinea-Bissau,2008,82.0,tonnes +1488,Guinea-Bissau,2009,82.0,tonnes +1489,Guinea-Bissau,2010,82.0,tonnes +1490,Guinea-Bissau,2011,82.0,tonnes +1491,Guinea-Bissau,2012,82.0,tonnes +1492,Guinea-Bissau,2013,82.0,tonnes +1493,Guyana,1990,289.9,tonnes +1494,Guyana,1991,289.9,tonnes +1495,Guyana,1992,289.9,tonnes +1496,Guyana,1993,289.9,tonnes +1497,Guyana,1994,289.9,tonnes +1498,Guyana,1995,289.9,tonnes +1499,Guyana,1996,289.9,tonnes +1500,Guyana,1997,289.9,tonnes +1501,Guyana,1998,289.9,tonnes +1502,Guyana,1999,289.9,tonnes +1503,Guyana,2000,289.9,tonnes +1504,Guyana,2001,289.9,tonnes +1505,Guyana,2002,289.9,tonnes +1506,Guyana,2003,289.9,tonnes +1507,Guyana,2004,289.9,tonnes +1508,Guyana,2005,270.78,tonnes +1509,Guyana,2006,343.12,tonnes +1510,Guyana,2007,246.5,tonnes +1511,Guyana,2008,234.27,tonnes +1512,Guyana,2009,264.47,tonnes +1513,Guyana,2010,211.83,tonnes +1514,Guyana,2011,400.76,tonnes +1515,Guyana,2012,427.73,tonnes +1516,Guyana,2013,358.72,tonnes +1517,Haiti,1990,17.14,tonnes +1518,Haiti,1991,18.86,tonnes +1519,Haiti,1992,11.52,tonnes +1520,Haiti,1993,6.96,tonnes +1521,Haiti,1994,8.58,tonnes +1522,Haiti,1995,12.32,tonnes +1523,Haiti,1996,14.44,tonnes +1524,Haiti,1997,16.35,tonnes +1525,Haiti,1998,23.78,tonnes +1526,Haiti,1999,26.32,tonnes +1527,Haiti,2000,27.85,tonnes +1528,Haiti,2001,27.85,tonnes +1529,Haiti,2002,27.85,tonnes +1530,Haiti,2003,27.85,tonnes +1531,Haiti,2004,27.85,tonnes +1532,Haiti,2005,27.85,tonnes +1533,Haiti,2006,27.85,tonnes +1534,Haiti,2007,27.85,tonnes +1535,Haiti,2008,27.85,tonnes +1536,Haiti,2009,27.85,tonnes +1537,Haiti,2010,27.85,tonnes +1538,Haiti,2011,27.85,tonnes +1539,Haiti,2012,27.85,tonnes +1540,Haiti,2013,27.85,tonnes +1541,Honduras,1990,4576.61,tonnes +1542,Honduras,1991,3368.28,tonnes +1543,Honduras,1992,5965.38,tonnes +1544,Honduras,1993,6768.0,tonnes +1545,Honduras,1994,2550.86,tonnes +1546,Honduras,1995,7800.0,tonnes +1547,Honduras,1996,6464.0,tonnes +1548,Honduras,1997,6980.0,tonnes +1549,Honduras,1998,3495.0,tonnes +1550,Honduras,1999,2387.0,tonnes +1551,Honduras,2000,4376.0,tonnes +1552,Honduras,2001,1156.0,tonnes +1553,Honduras,2002,1784.3,tonnes +1554,Honduras,2003,2412.61,tonnes +1555,Honduras,2004,3040.91,tonnes +1556,Honduras,2005,3669.21,tonnes +1557,Honduras,2006,4297.51,tonnes +1558,Honduras,2007,5283.93,tonnes +1559,Honduras,2008,5130.42,tonnes +1560,Honduras,2009,4344.36,tonnes +1561,Honduras,2010,5736.63,tonnes +1562,Honduras,2011,6324.41,tonnes +1563,Honduras,2012,7194.91,tonnes +1564,Honduras,2013,7194.91,tonnes +1565,Hungary,1990,12756.0,tonnes +1566,Hungary,1991,8069.0,tonnes +1567,Hungary,1992,5777.0,tonnes +1568,Hungary,1993,10197.0,tonnes +1569,Hungary,1994,9574.0,tonnes +1570,Hungary,1995,7715.0,tonnes +1571,Hungary,1996,6946.0,tonnes +1572,Hungary,1997,4445.0,tonnes +1573,Hungary,1998,5280.0,tonnes +1574,Hungary,1999,4598.0,tonnes +1575,Hungary,2000,4151.0,tonnes +1576,Hungary,2001,5458.0,tonnes +1577,Hungary,2002,8249.9,tonnes +1578,Hungary,2003,8742.3,tonnes +1579,Hungary,2004,9955.7,tonnes +1580,Hungary,2005,9689.6,tonnes +1581,Hungary,2006,11535.0,tonnes +1582,Hungary,2007,11188.4,tonnes +1583,Hungary,2008,12092.8,tonnes +1584,Hungary,2009,11151.2,tonnes +1585,Hungary,2010,10305.1,tonnes +1586,Hungary,2011,8473.26,tonnes +1587,Hungary,2012,8141.17,tonnes +1588,Hungary,2013,7744.5,tonnes +1589,Iceland,1990,3.21,tonnes +1590,Iceland,1991,3.21,tonnes +1591,Iceland,1992,3.21,tonnes +1592,Iceland,1993,3.21,tonnes +1593,Iceland,1994,3.21,tonnes +1594,Iceland,1995,3.21,tonnes +1595,Iceland,1996,3.21,tonnes +1596,Iceland,1997,3.21,tonnes +1597,Iceland,1998,3.21,tonnes +1598,Iceland,1999,3.21,tonnes +1599,Iceland,2000,4.18,tonnes +1600,Iceland,2001,4.74,tonnes +1601,Iceland,2002,4.02,tonnes +1602,Iceland,2003,4.01,tonnes +1603,Iceland,2004,6.01,tonnes +1604,Iceland,2005,5.01,tonnes +1605,Iceland,2006,5.0,tonnes +1606,Iceland,2007,5.34,tonnes +1607,Iceland,2008,5.73,tonnes +1608,Iceland,2009,4.37,tonnes +1609,Iceland,2010,2.73,tonnes +1610,Iceland,2011,3.43,tonnes +1611,Iceland,2012,3.14,tonnes +1612,Iceland,2013,2.41,tonnes +1613,India,1990,75000.0,tonnes +1614,India,1991,72133.0,tonnes +1615,India,1992,70791.0,tonnes +1616,India,1993,66388.0,tonnes +1617,India,1994,61357.0,tonnes +1618,India,1995,61257.0,tonnes +1619,India,1996,56114.0,tonnes +1620,India,1997,52279.0,tonnes +1621,India,1998,49157.0,tonnes +1622,India,1999,46195.0,tonnes +1623,India,2000,44957.52,tonnes +1624,India,2001,43720.04,tonnes +1625,India,2002,42482.56,tonnes +1626,India,2003,41245.08,tonnes +1627,India,2004,35113.0,tonnes +1628,India,2005,35342.0,tonnes +1629,India,2006,37423.0,tonnes +1630,India,2007,27422.77,tonnes +1631,India,2008,14485.33,tonnes +1632,India,2009,28707.01,tonnes +1633,India,2010,40093.69,tonnes +1634,India,2011,55540.0,tonnes +1635,India,2012,52980.0,tonnes +1636,India,2013,45620.0,tonnes +1637,Indonesia,1990,2432.0,tonnes +1638,Indonesia,1991,3259.0,tonnes +1639,Indonesia,1992,867.5,tonnes +1640,Indonesia,1993,1597.0,tonnes +1641,Indonesia,1994,1597.0,tonnes +1642,Indonesia,1995,1597.0,tonnes +1643,Indonesia,1996,1597.0,tonnes +1644,Indonesia,1997,1597.0,tonnes +1645,Indonesia,1998,1597.0,tonnes +1646,Indonesia,1999,1597.0,tonnes +1647,Indonesia,2000,1597.0,tonnes +1648,Indonesia,2001,1597.0,tonnes +1649,Indonesia,2002,1597.0,tonnes +1650,Indonesia,2003,1597.0,tonnes +1651,Indonesia,2004,1597.0,tonnes +1652,Indonesia,2005,1597.0,tonnes +1653,Indonesia,2006,1597.0,tonnes +1654,Indonesia,2007,1597.0,tonnes +1655,Indonesia,2008,1597.0,tonnes +1656,Indonesia,2009,1597.0,tonnes +1657,Indonesia,2010,1597.0,tonnes +1658,Indonesia,2011,1597.0,tonnes +1659,Indonesia,2012,1597.0,tonnes +1660,Indonesia,2013,1597.0,tonnes +1661,Iran (Islamic Republic of),1990,10644.0,tonnes +1662,Iran (Islamic Republic of),1991,16349.0,tonnes +1663,Iran (Islamic Republic of),1992,11683.0,tonnes +1664,Iran (Islamic Republic of),1993,9572.0,tonnes +1665,Iran (Islamic Republic of),1994,10324.0,tonnes +1666,Iran (Islamic Republic of),1995,8746.0,tonnes +1667,Iran (Islamic Republic of),1996,5332.0,tonnes +1668,Iran (Islamic Republic of),1997,6307.96,tonnes +1669,Iran (Islamic Republic of),1998,7283.93,tonnes +1670,Iran (Islamic Republic of),1999,8259.89,tonnes +1671,Iran (Islamic Republic of),2000,9235.85,tonnes +1672,Iran (Islamic Republic of),2001,8809.76,tonnes +1673,Iran (Islamic Republic of),2002,9355.71,tonnes +1674,Iran (Islamic Republic of),2003,9854.61,tonnes +1675,Iran (Islamic Republic of),2004,9702.04,tonnes +1676,Iran (Islamic Republic of),2005,7508.01,tonnes +1677,Iran (Islamic Republic of),2006,7921.22,tonnes +1678,Iran (Islamic Republic of),2007,5557.99,tonnes +1679,Iran (Islamic Republic of),2008,2602.28,tonnes +1680,Iran (Islamic Republic of),2009,2308.01,tonnes +1681,Iran (Islamic Republic of),2010,2852.05,tonnes +1682,Iran (Islamic Republic of),2011,3396.1,tonnes +1683,Iran (Islamic Republic of),2012,5733.28,tonnes +1684,Iran (Islamic Republic of),2013,5173.01,tonnes +1685,Iraq,1990,692.0,tonnes +1686,Iraq,1991,692.0,tonnes +1687,Iraq,1992,692.0,tonnes +1688,Iraq,1993,692.0,tonnes +1689,Iraq,1994,692.0,tonnes +1690,Iraq,1995,816.0,tonnes +1691,Iraq,1996,616.0,tonnes +1692,Iraq,1997,848.0,tonnes +1693,Iraq,1998,755.0,tonnes +1694,Iraq,1999,508.0,tonnes +1695,Iraq,2000,548.0,tonnes +1696,Iraq,2001,837.47,tonnes +1697,Iraq,2002,878.68,tonnes +1698,Iraq,2003,853.65,tonnes +1699,Iraq,2004,828.62,tonnes +1700,Iraq,2005,873.01,tonnes +1701,Iraq,2006,824.14,tonnes +1702,Iraq,2007,1062.61,tonnes +1703,Iraq,2008,955.13,tonnes +1704,Iraq,2009,847.66,tonnes +1705,Iraq,2010,740.18,tonnes +1706,Iraq,2011,632.7,tonnes +1707,Iraq,2012,525.23,tonnes +1708,Iraq,2013,417.75,tonnes +1709,Ireland,1990,2014.0,tonnes +1710,Ireland,1991,2014.0,tonnes +1711,Ireland,1992,2014.0,tonnes +1712,Ireland,1993,2014.0,tonnes +1713,Ireland,1994,2014.0,tonnes +1714,Ireland,1995,2152.0,tonnes +1715,Ireland,1996,1577.0,tonnes +1716,Ireland,1997,2201.0,tonnes +1717,Ireland,1998,2257.0,tonnes +1718,Ireland,1999,1930.0,tonnes +1719,Ireland,2000,1942.21,tonnes +1720,Ireland,2001,2333.67,tonnes +1721,Ireland,2002,2614.27,tonnes +1722,Ireland,2003,2719.41,tonnes +1723,Ireland,2004,2978.49,tonnes +1724,Ireland,2005,2624.89,tonnes +1725,Ireland,2006,2766.64,tonnes +1726,Ireland,2007,3083.02,tonnes +1727,Ireland,2008,2790.17,tonnes +1728,Ireland,2009,2268.1,tonnes +1729,Ireland,2010,2529.2,tonnes +1730,Ireland,2011,3664.3,tonnes +1731,Ireland,2012,2925.1,tonnes +1732,Ireland,2013,2950.8,tonnes +1733,Israel,1990,2491.0,tonnes +1734,Israel,1991,2491.0,tonnes +1735,Israel,1992,2491.0,tonnes +1736,Israel,1993,2491.0,tonnes +1737,Israel,1994,2491.0,tonnes +1738,Israel,1995,2491.0,tonnes +1739,Israel,1996,2491.0,tonnes +1740,Israel,1997,2491.0,tonnes +1741,Israel,1998,2491.0,tonnes +1742,Israel,1999,2975.02,tonnes +1743,Israel,2000,3459.04,tonnes +1744,Israel,2001,3943.05,tonnes +1745,Israel,2002,4427.07,tonnes +1746,Israel,2003,4911.09,tonnes +1747,Israel,2004,5395.11,tonnes +1748,Israel,2005,5879.13,tonnes +1749,Israel,2006,6363.14,tonnes +1750,Israel,2007,6847.16,tonnes +1751,Israel,2008,7331.18,tonnes +1752,Israel,2009,6650.0,tonnes +1753,Israel,2010,6753.0,tonnes +1754,Israel,2011,6124.0,tonnes +1755,Israel,2012,6009.0,tonnes +1756,Israel,2013,6005.0,tonnes +1757,Italy,1990,100596.4,tonnes +1758,Italy,1991,88916.6,tonnes +1759,Italy,1992,88227.6,tonnes +1760,Italy,1993,89282.2,tonnes +1761,Italy,1994,81217.6,tonnes +1762,Italy,1995,84153.0,tonnes +1763,Italy,1996,74617.2,tonnes +1764,Italy,1997,84799.0,tonnes +1765,Italy,1998,84117.0,tonnes +1766,Italy,1999,81583.0,tonnes +1767,Italy,2000,79447.0,tonnes +1768,Italy,2001,75978.0,tonnes +1769,Italy,2002,94211.0,tonnes +1770,Italy,2003,86058.0,tonnes +1771,Italy,2004,83810.0,tonnes +1772,Italy,2005,84647.0,tonnes +1773,Italy,2006,74349.0,tonnes +1774,Italy,2007,80454.0,tonnes +1775,Italy,2008,79643.0,tonnes +1776,Italy,2009,74172.0,tonnes +1777,Italy,2010,71613.0,tonnes +1778,Italy,2011,70690.0,tonnes +1779,Italy,2012,61889.0,tonnes +1780,Italy,2013,55633.0,tonnes +1781,Jamaica,1990,1217.44,tonnes +1782,Jamaica,1991,1217.44,tonnes +1783,Jamaica,1992,1217.44,tonnes +1784,Jamaica,1993,1217.44,tonnes +1785,Jamaica,1994,1217.44,tonnes +1786,Jamaica,1995,1258.99,tonnes +1787,Jamaica,1996,1316.11,tonnes +1788,Jamaica,1997,620.7,tonnes +1789,Jamaica,1998,620.7,tonnes +1790,Jamaica,1999,620.7,tonnes +1791,Jamaica,2000,620.7,tonnes +1792,Jamaica,2001,620.7,tonnes +1793,Jamaica,2002,620.7,tonnes +1794,Jamaica,2003,620.7,tonnes +1795,Jamaica,2004,620.7,tonnes +1796,Jamaica,2005,620.7,tonnes +1797,Jamaica,2006,620.7,tonnes +1798,Jamaica,2007,620.7,tonnes +1799,Jamaica,2008,620.7,tonnes +1800,Jamaica,2009,620.7,tonnes +1801,Jamaica,2010,620.7,tonnes +1802,Jamaica,2011,620.7,tonnes +1803,Jamaica,2012,620.7,tonnes +1804,Jamaica,2013,620.7,tonnes +1805,Japan,1990,79821.18,tonnes +1806,Japan,1991,79821.18,tonnes +1807,Japan,1992,79821.18,tonnes +1808,Japan,1993,79821.18,tonnes +1809,Japan,1994,79821.18,tonnes +1810,Japan,1995,79821.18,tonnes +1811,Japan,1996,79821.18,tonnes +1812,Japan,1997,79821.18,tonnes +1813,Japan,1998,79821.18,tonnes +1814,Japan,1999,79821.18,tonnes +1815,Japan,2000,79821.18,tonnes +1816,Japan,2001,78735.45,tonnes +1817,Japan,2002,70262.54,tonnes +1818,Japan,2003,67869.72,tonnes +1819,Japan,2004,64688.88,tonnes +1820,Japan,2005,63829.77,tonnes +1821,Japan,2006,65248.26,tonnes +1822,Japan,2007,61164.07,tonnes +1823,Japan,2008,58750.0,tonnes +1824,Japan,2009,60970.8,tonnes +1825,Japan,2010,55576.0,tonnes +1826,Japan,2011,51796.3,tonnes +1827,Japan,2012,54716.4,tonnes +1828,Japan,2013,52794.3,tonnes +1829,Jordan,1990,734.0,tonnes +1830,Jordan,1991,926.0,tonnes +1831,Jordan,1992,1365.0,tonnes +1832,Jordan,1993,786.0,tonnes +1833,Jordan,1994,773.5,tonnes +1834,Jordan,1995,761.0,tonnes +1835,Jordan,1996,910.0,tonnes +1836,Jordan,1997,875.0,tonnes +1837,Jordan,1998,845.0,tonnes +1838,Jordan,1999,525.0,tonnes +1839,Jordan,2000,553.0,tonnes +1840,Jordan,2001,1419.71,tonnes +1841,Jordan,2002,1566.41,tonnes +1842,Jordan,2003,1319.66,tonnes +1843,Jordan,2004,736.06,tonnes +1844,Jordan,2005,1735.74,tonnes +1845,Jordan,2006,1141.93,tonnes +1846,Jordan,2007,1350.86,tonnes +1847,Jordan,2008,1265.7,tonnes +1848,Jordan,2009,1089.5,tonnes +1849,Jordan,2010,932.8,tonnes +1850,Jordan,2011,1111.9,tonnes +1851,Jordan,2012,708.0,tonnes +1852,Jordan,2013,1010.0,tonnes +1853,Kazakhstan,1992,17182.0,tonnes +1854,Kazakhstan,1993,17182.0,tonnes +1855,Kazakhstan,1994,17182.0,tonnes +1856,Kazakhstan,1995,13536.0,tonnes +1857,Kazakhstan,1996,13047.0,tonnes +1858,Kazakhstan,1997,8112.0,tonnes +1859,Kazakhstan,1998,6416.14,tonnes +1860,Kazakhstan,1999,4720.28,tonnes +1861,Kazakhstan,2000,3024.42,tonnes +1862,Kazakhstan,2001,3007.26,tonnes +1863,Kazakhstan,2002,3361.84,tonnes +1864,Kazakhstan,2003,3606.55,tonnes +1865,Kazakhstan,2004,3802.92,tonnes +1866,Kazakhstan,2005,3666.62,tonnes +1867,Kazakhstan,2006,3926.27,tonnes +1868,Kazakhstan,2007,5575.89,tonnes +1869,Kazakhstan,2008,7044.9,tonnes +1870,Kazakhstan,2009,8716.14,tonnes +1871,Kazakhstan,2010,6283.85,tonnes +1872,Kazakhstan,2011,10656.6,tonnes +1873,Kazakhstan,2012,8674.58,tonnes +1874,Kazakhstan,2013,8738.38,tonnes +1875,Kenya,1990,3469.0,tonnes +1876,Kenya,1991,3469.0,tonnes +1877,Kenya,1992,3469.0,tonnes +1878,Kenya,1993,3469.0,tonnes +1879,Kenya,1994,3469.0,tonnes +1880,Kenya,1995,4607.0,tonnes +1881,Kenya,1996,6344.0,tonnes +1882,Kenya,1997,5172.0,tonnes +1883,Kenya,1998,4114.0,tonnes +1884,Kenya,1999,3056.0,tonnes +1885,Kenya,2000,1998.0,tonnes +1886,Kenya,2001,1578.0,tonnes +1887,Kenya,2002,1578.0,tonnes +1888,Kenya,2003,1578.0,tonnes +1889,Kenya,2004,1578.0,tonnes +1890,Kenya,2005,1578.0,tonnes +1891,Kenya,2006,1578.0,tonnes +1892,Kenya,2007,1578.0,tonnes +1893,Kenya,2008,1578.0,tonnes +1894,Kenya,2009,1578.0,tonnes +1895,Kenya,2010,1578.0,tonnes +1896,Kenya,2011,1578.0,tonnes +1897,Kenya,2012,1578.0,tonnes +1898,Kenya,2013,1578.0,tonnes +1899,Kuwait,1990,14.0,tonnes +1900,Kuwait,1991,14.0,tonnes +1901,Kuwait,1992,14.0,tonnes +1902,Kuwait,1993,14.0,tonnes +1903,Kuwait,1994,14.0,tonnes +1904,Kuwait,1995,14.0,tonnes +1905,Kuwait,1996,18.0,tonnes +1906,Kuwait,1997,20.0,tonnes +1907,Kuwait,1998,32.0,tonnes +1908,Kuwait,1999,32.0,tonnes +1909,Kuwait,2000,32.0,tonnes +1910,Kuwait,2001,32.0,tonnes +1911,Kuwait,2002,32.0,tonnes +1912,Kuwait,2003,32.0,tonnes +1913,Kuwait,2004,32.0,tonnes +1914,Kuwait,2005,32.0,tonnes +1915,Kuwait,2006,32.0,tonnes +1916,Kuwait,2007,32.0,tonnes +1917,Kuwait,2008,32.0,tonnes +1918,Kuwait,2009,32.0,tonnes +1919,Kuwait,2010,32.0,tonnes +1920,Kuwait,2011,32.0,tonnes +1921,Kuwait,2012,32.0,tonnes +1922,Kuwait,2013,32.0,tonnes +1923,Kyrgyzstan,1992,2418.0,tonnes +1924,Kyrgyzstan,1993,2200.86,tonnes +1925,Kyrgyzstan,1994,1983.72,tonnes +1926,Kyrgyzstan,1995,1766.59,tonnes +1927,Kyrgyzstan,1996,1549.45,tonnes +1928,Kyrgyzstan,1997,1332.31,tonnes +1929,Kyrgyzstan,1998,1115.17,tonnes +1930,Kyrgyzstan,1999,898.04,tonnes +1931,Kyrgyzstan,2000,680.9,tonnes +1932,Kyrgyzstan,2001,609.6,tonnes +1933,Kyrgyzstan,2002,733.2,tonnes +1934,Kyrgyzstan,2003,1302.6,tonnes +1935,Kyrgyzstan,2004,1321.3,tonnes +1936,Kyrgyzstan,2005,1081.1,tonnes +1937,Kyrgyzstan,2006,796.0,tonnes +1938,Kyrgyzstan,2007,1026.2,tonnes +1939,Kyrgyzstan,2008,662.8,tonnes +1940,Kyrgyzstan,2009,266.8,tonnes +1941,Kyrgyzstan,2010,350.1,tonnes +1942,Kyrgyzstan,2011,312.9,tonnes +1943,Kyrgyzstan,2012,365.1,tonnes +1944,Kyrgyzstan,2013,341.1,tonnes +1945,Lao People's Democratic Republic,1990,21.0,tonnes +1946,Lao People's Democratic Republic,1991,21.0,tonnes +1947,Lao People's Democratic Republic,1992,21.0,tonnes +1948,Lao People's Democratic Republic,1993,46.0,tonnes +1949,Lao People's Democratic Republic,1994,36.11,tonnes +1950,Lao People's Democratic Republic,1995,26.22,tonnes +1951,Lao People's Democratic Republic,1996,16.33,tonnes +1952,Lao People's Democratic Republic,1997,6.44,tonnes +1953,Lao People's Democratic Republic,1998,2.23,tonnes +1954,Lao People's Democratic Republic,1999,1.76,tonnes +1955,Lao People's Democratic Republic,2000,1.28,tonnes +1956,Lao People's Democratic Republic,2001,1.82,tonnes +1957,Lao People's Democratic Republic,2002,2.35,tonnes +1958,Lao People's Democratic Republic,2003,2.89,tonnes +1959,Lao People's Democratic Republic,2004,3.42,tonnes +1960,Lao People's Democratic Republic,2005,3.96,tonnes +1961,Lao People's Democratic Republic,2006,4.5,tonnes +1962,Lao People's Democratic Republic,2007,0.53,tonnes +1963,Lao People's Democratic Republic,2008,0.07,tonnes +1964,Lao People's Democratic Republic,2009,25.67,tonnes +1965,Lao People's Democratic Republic,2010,1.85,tonnes +1966,Lao People's Democratic Republic,2011,43.81,tonnes +1967,Lao People's Democratic Republic,2012,43.53,tonnes +1968,Lao People's Democratic Republic,2013,125.89,tonnes +1969,Latvia,1992,1005.0,tonnes +1970,Latvia,1993,476.0,tonnes +1971,Latvia,1994,294.0,tonnes +1972,Latvia,1995,358.0,tonnes +1973,Latvia,1996,361.0,tonnes +1974,Latvia,1997,334.0,tonnes +1975,Latvia,1998,369.0,tonnes +1976,Latvia,1999,326.86,tonnes +1977,Latvia,2000,284.72,tonnes +1978,Latvia,2001,367.4,tonnes +1979,Latvia,2002,335.31,tonnes +1980,Latvia,2003,477.63,tonnes +1981,Latvia,2004,594.46,tonnes +1982,Latvia,2005,723.54,tonnes +1983,Latvia,2006,743.57,tonnes +1984,Latvia,2007,1113.49,tonnes +1985,Latvia,2008,1033.0,tonnes +1986,Latvia,2009,881.2,tonnes +1987,Latvia,2010,1027.5,tonnes +1988,Latvia,2011,1070.5,tonnes +1989,Latvia,2012,1396.96,tonnes +1990,Latvia,2013,1250.0,tonnes +1991,Lebanon,1990,1221.0,tonnes +1992,Lebanon,1991,1221.0,tonnes +1993,Lebanon,1992,1221.0,tonnes +1994,Lebanon,1993,1221.0,tonnes +1995,Lebanon,1994,1221.0,tonnes +1996,Lebanon,1995,1221.0,tonnes +1997,Lebanon,1996,1221.0,tonnes +1998,Lebanon,1997,1816.0,tonnes +1999,Lebanon,1998,1816.0,tonnes +2000,Lebanon,1999,1816.0,tonnes +2001,Lebanon,2000,1816.0,tonnes +2002,Lebanon,2001,1816.0,tonnes +2003,Lebanon,2002,1816.0,tonnes +2004,Lebanon,2003,1816.0,tonnes +2005,Lebanon,2004,1816.0,tonnes +2006,Lebanon,2005,1816.0,tonnes +2007,Lebanon,2006,1816.0,tonnes +2008,Lebanon,2007,1816.0,tonnes +2009,Lebanon,2008,1816.0,tonnes +2010,Lebanon,2009,1816.0,tonnes +2011,Lebanon,2010,1816.0,tonnes +2012,Lebanon,2011,1816.0,tonnes +2013,Lebanon,2012,1816.0,tonnes +2014,Lebanon,2013,1816.0,tonnes +2015,Lesotho,1990,0.3,tonnes +2016,Lesotho,1991,0.3,tonnes +2017,Lesotho,1992,0.3,tonnes +2018,Lesotho,1993,0.3,tonnes +2019,Lesotho,1994,0.3,tonnes +2020,Lesotho,1995,0.3,tonnes +2021,Lesotho,1996,0.3,tonnes +2022,Lesotho,1997,0.3,tonnes +2023,Lesotho,1998,0.3,tonnes +2024,Lesotho,1999,0.3,tonnes +2025,Lesotho,2000,0.3,tonnes +2026,Lesotho,2001,0.3,tonnes +2027,Lesotho,2002,0.3,tonnes +2028,Lesotho,2003,0.3,tonnes +2029,Lesotho,2004,0.3,tonnes +2030,Lesotho,2005,0.53,tonnes +2031,Lesotho,2006,5.25,tonnes +2032,Lesotho,2007,35.27,tonnes +2033,Lesotho,2008,37.44,tonnes +2034,Lesotho,2009,77.7,tonnes +2035,Lesotho,2010,80.07,tonnes +2036,Lesotho,2011,175.27,tonnes +2037,Lesotho,2012,271.84,tonnes +2038,Lesotho,2013,62.32,tonnes +2039,Libya,1990,2733.64,tonnes +2040,Libya,1991,2733.64,tonnes +2041,Libya,1992,2733.64,tonnes +2042,Libya,1993,2733.64,tonnes +2043,Libya,1994,2733.64,tonnes +2044,Libya,1995,2733.64,tonnes +2045,Libya,1996,2733.64,tonnes +2046,Libya,1997,2733.64,tonnes +2047,Libya,1998,2733.64,tonnes +2048,Libya,1999,2733.64,tonnes +2049,Libya,2000,2733.64,tonnes +2050,Libya,2001,2733.64,tonnes +2051,Libya,2002,2733.64,tonnes +2052,Libya,2003,2733.64,tonnes +2053,Libya,2004,2733.64,tonnes +2054,Libya,2005,2733.64,tonnes +2055,Libya,2006,1654.17,tonnes +2056,Libya,2007,947.62,tonnes +2057,Libya,2008,974.53,tonnes +2058,Libya,2009,1556.77,tonnes +2059,Libya,2010,606.92,tonnes +2060,Libya,2011,606.92,tonnes +2061,Libya,2012,606.92,tonnes +2062,Libya,2013,606.92,tonnes +2063,Lithuania,1992,1380.0,tonnes +2064,Lithuania,1993,936.0,tonnes +2065,Lithuania,1994,713.0,tonnes +2066,Lithuania,1995,737.0,tonnes +2067,Lithuania,1996,979.0,tonnes +2068,Lithuania,1997,928.0,tonnes +2069,Lithuania,1998,812.0,tonnes +2070,Lithuania,1999,695.0,tonnes +2071,Lithuania,2000,688.06,tonnes +2072,Lithuania,2001,726.09,tonnes +2073,Lithuania,2002,792.62,tonnes +2074,Lithuania,2003,847.22,tonnes +2075,Lithuania,2004,1023.62,tonnes +2076,Lithuania,2005,1048.52,tonnes +2077,Lithuania,2006,1197.02,tonnes +2078,Lithuania,2007,2722.82,tonnes +2079,Lithuania,2008,2723.06,tonnes +2080,Lithuania,2009,2748.8,tonnes +2081,Lithuania,2010,1803.77,tonnes +2082,Lithuania,2011,2062.34,tonnes +2083,Lithuania,2012,2559.9,tonnes +2084,Lithuania,2013,2515.69,tonnes +2085,Luxembourg,2000,154.25,tonnes +2086,Luxembourg,2001,154.25,tonnes +2087,Luxembourg,2002,154.25,tonnes +2088,Luxembourg,2003,154.25,tonnes +2089,Luxembourg,2004,154.25,tonnes +2090,Luxembourg,2005,154.25,tonnes +2091,Luxembourg,2006,154.25,tonnes +2092,Luxembourg,2007,154.25,tonnes +2093,Luxembourg,2008,154.25,tonnes +2094,Luxembourg,2009,154.25,tonnes +2095,Luxembourg,2010,154.25,tonnes +2096,Luxembourg,2011,154.25,tonnes +2097,Luxembourg,2012,154.25,tonnes +2098,Luxembourg,2013,155.19,tonnes +2099,Madagascar,1990,128.41,tonnes +2100,Madagascar,1991,131.0,tonnes +2101,Madagascar,1992,101.15,tonnes +2102,Madagascar,1993,109.41,tonnes +2103,Madagascar,1994,76.27,tonnes +2104,Madagascar,1995,73.15,tonnes +2105,Madagascar,1996,152.01,tonnes +2106,Madagascar,1997,139.9,tonnes +2107,Madagascar,1998,88.26,tonnes +2108,Madagascar,1999,49.53,tonnes +2109,Madagascar,2000,130.46,tonnes +2110,Madagascar,2001,87.59,tonnes +2111,Madagascar,2002,240.9,tonnes +2112,Madagascar,2003,146.87,tonnes +2113,Madagascar,2004,68.16,tonnes +2114,Madagascar,2005,114.51,tonnes +2115,Madagascar,2006,109.39,tonnes +2116,Madagascar,2007,93.88,tonnes +2117,Madagascar,2008,112.25,tonnes +2118,Madagascar,2009,143.9,tonnes +2119,Madagascar,2010,241.89,tonnes +2120,Madagascar,2011,310.49,tonnes +2121,Madagascar,2012,377.81,tonnes +2122,Madagascar,2013,508.0,tonnes +2123,Malawi,1990,171.8,tonnes +2124,Malawi,1991,171.8,tonnes +2125,Malawi,1992,171.8,tonnes +2126,Malawi,1993,171.8,tonnes +2127,Malawi,1994,171.8,tonnes +2128,Malawi,1995,171.8,tonnes +2129,Malawi,1996,171.8,tonnes +2130,Malawi,1997,171.8,tonnes +2131,Malawi,1998,136.11,tonnes +2132,Malawi,1999,125.39,tonnes +2133,Malawi,2000,207.94,tonnes +2134,Malawi,2001,168.02,tonnes +2135,Malawi,2002,128.11,tonnes +2136,Malawi,2003,88.19,tonnes +2137,Malawi,2004,48.28,tonnes +2138,Malawi,2005,295.51,tonnes +2139,Malawi,2006,202.35,tonnes +2140,Malawi,2007,524.46,tonnes +2141,Malawi,2008,624.52,tonnes +2142,Malawi,2009,736.25,tonnes +2143,Malawi,2010,584.12,tonnes +2144,Malawi,2011,553.57,tonnes +2145,Malawi,2012,775.83,tonnes +2146,Malawi,2013,1500.27,tonnes +2147,Malaysia,1990,39406.48,tonnes +2148,Malaysia,1991,39406.48,tonnes +2149,Malaysia,1992,39406.48,tonnes +2150,Malaysia,1993,39406.48,tonnes +2151,Malaysia,1994,39406.48,tonnes +2152,Malaysia,1995,39406.48,tonnes +2153,Malaysia,1996,39406.48,tonnes +2154,Malaysia,1997,39406.48,tonnes +2155,Malaysia,1998,39406.48,tonnes +2156,Malaysia,1999,39406.48,tonnes +2157,Malaysia,2000,39406.48,tonnes +2158,Malaysia,2001,39406.48,tonnes +2159,Malaysia,2002,39406.48,tonnes +2160,Malaysia,2003,39406.48,tonnes +2161,Malaysia,2004,39406.48,tonnes +2162,Malaysia,2005,39406.48,tonnes +2163,Malaysia,2006,39406.48,tonnes +2164,Malaysia,2007,46868.35,tonnes +2165,Malaysia,2008,54821.91,tonnes +2166,Malaysia,2009,52464.19,tonnes +2167,Malaysia,2010,60194.83,tonnes +2168,Malaysia,2011,41562.16,tonnes +2169,Malaysia,2012,49810.48,tonnes +2170,Malaysia,2013,61445.6,tonnes +2171,Maldives,1990,44.33,tonnes +2172,Maldives,1991,44.33,tonnes +2173,Maldives,1992,44.33,tonnes +2174,Maldives,1993,44.33,tonnes +2175,Maldives,1994,44.33,tonnes +2176,Maldives,1995,44.33,tonnes +2177,Maldives,1996,44.33,tonnes +2178,Maldives,1997,44.33,tonnes +2179,Maldives,1998,44.33,tonnes +2180,Maldives,1999,44.33,tonnes +2181,Maldives,2000,44.33,tonnes +2182,Maldives,2001,44.33,tonnes +2183,Maldives,2002,44.33,tonnes +2184,Maldives,2003,44.33,tonnes +2185,Maldives,2004,44.33,tonnes +2186,Maldives,2005,44.33,tonnes +2187,Maldives,2006,44.33,tonnes +2188,Maldives,2007,44.33,tonnes +2189,Maldives,2008,44.33,tonnes +2190,Maldives,2009,44.33,tonnes +2191,Maldives,2010,44.33,tonnes +2192,Maldives,2011,44.33,tonnes +2193,Maldives,2012,66.17,tonnes +2194,Maldives,2013,236.16,tonnes +2195,Mali,1990,247.07,tonnes +2196,Mali,1991,141.05,tonnes +2197,Mali,1992,91.45,tonnes +2198,Mali,1993,86.04,tonnes +2199,Mali,1994,80.63,tonnes +2200,Mali,1995,75.22,tonnes +2201,Mali,1996,69.81,tonnes +2202,Mali,1997,64.4,tonnes +2203,Mali,1998,59.0,tonnes +2204,Mali,1999,53.59,tonnes +2205,Mali,2000,48.18,tonnes +2206,Mali,2001,42.77,tonnes +2207,Mali,2002,37.36,tonnes +2208,Mali,2003,31.95,tonnes +2209,Mali,2004,26.54,tonnes +2210,Mali,2005,21.13,tonnes +2211,Mali,2006,17.34,tonnes +2212,Mali,2007,12.31,tonnes +2213,Mali,2008,19.05,tonnes +2214,Mali,2009,8.44,tonnes +2215,Mali,2010,8.09,tonnes +2216,Mali,2011,6.83,tonnes +2217,Mali,2012,3.75,tonnes +2218,Mali,2013,3.75,tonnes +2219,Malta,1990,326.48,tonnes +2220,Malta,1991,326.48,tonnes +2221,Malta,1992,326.48,tonnes +2222,Malta,1993,326.48,tonnes +2223,Malta,1994,447.26,tonnes +2224,Malta,1995,210.34,tonnes +2225,Malta,1996,154.0,tonnes +2226,Malta,1997,258.38,tonnes +2227,Malta,1998,260.8,tonnes +2228,Malta,1999,138.79,tonnes +2229,Malta,2000,181.92,tonnes +2230,Malta,2001,111.77,tonnes +2231,Malta,2002,113.25,tonnes +2232,Malta,2003,114.73,tonnes +2233,Malta,2004,116.21,tonnes +2234,Malta,2005,117.69,tonnes +2235,Malta,2006,119.17,tonnes +2236,Malta,2007,120.65,tonnes +2237,Malta,2008,121.27,tonnes +2238,Malta,2009,121.89,tonnes +2239,Malta,2010,122.51,tonnes +2240,Malta,2011,123.14,tonnes +2241,Malta,2012,123.76,tonnes +2242,Malta,2013,124.38,tonnes +2243,Mauritania,1990,39.09,tonnes +2244,Mauritania,1991,39.09,tonnes +2245,Mauritania,1992,39.09,tonnes +2246,Mauritania,1993,39.09,tonnes +2247,Mauritania,1994,39.09,tonnes +2248,Mauritania,1995,39.09,tonnes +2249,Mauritania,1996,39.09,tonnes +2250,Mauritania,1997,39.09,tonnes +2251,Mauritania,1998,39.09,tonnes +2252,Mauritania,1999,39.09,tonnes +2253,Mauritania,2000,39.09,tonnes +2254,Mauritania,2001,39.09,tonnes +2255,Mauritania,2002,3.2,tonnes +2256,Mauritania,2003,3.22,tonnes +2257,Mauritania,2004,702.5,tonnes +2258,Mauritania,2005,1.1,tonnes +2259,Mauritania,2006,1.7,tonnes +2260,Mauritania,2007,9.8,tonnes +2261,Mauritania,2008,17.22,tonnes +2262,Mauritania,2009,4.29,tonnes +2263,Mauritania,2010,67.59,tonnes +2264,Mauritania,2011,13.35,tonnes +2265,Mauritania,2012,26.41,tonnes +2266,Mauritania,2013,26.41,tonnes +2267,Mauritius,1990,889.0,tonnes +2268,Mauritius,1991,773.24,tonnes +2269,Mauritius,1992,657.49,tonnes +2270,Mauritius,1993,541.73,tonnes +2271,Mauritius,1994,425.97,tonnes +2272,Mauritius,1995,485.35,tonnes +2273,Mauritius,1996,445.06,tonnes +2274,Mauritius,1997,527.1,tonnes +2275,Mauritius,1998,560.34,tonnes +2276,Mauritius,1999,532.78,tonnes +2277,Mauritius,2000,593.67,tonnes +2278,Mauritius,2001,673.23,tonnes +2279,Mauritius,2002,695.15,tonnes +2280,Mauritius,2003,783.47,tonnes +2281,Mauritius,2004,739.82,tonnes +2282,Mauritius,2005,769.65,tonnes +2283,Mauritius,2006,821.82,tonnes +2284,Mauritius,2007,703.78,tonnes +2285,Mauritius,2008,799.91,tonnes +2286,Mauritius,2009,818.87,tonnes +2287,Mauritius,2010,841.32,tonnes +2288,Mauritius,2011,812.18,tonnes +2289,Mauritius,2012,734.91,tonnes +2290,Mauritius,2013,782.21,tonnes +2291,Mexico,1990,26624.98,tonnes +2292,Mexico,1991,26624.98,tonnes +2293,Mexico,1992,26624.98,tonnes +2294,Mexico,1993,26624.98,tonnes +2295,Mexico,1994,26624.98,tonnes +2296,Mexico,1995,26624.98,tonnes +2297,Mexico,1996,26624.98,tonnes +2298,Mexico,1997,26624.98,tonnes +2299,Mexico,1998,26624.98,tonnes +2300,Mexico,1999,26624.98,tonnes +2301,Mexico,2000,26624.98,tonnes +2302,Mexico,2001,23371.7,tonnes +2303,Mexico,2002,11535.83,tonnes +2304,Mexico,2003,16285.16,tonnes +2305,Mexico,2004,18507.68,tonnes +2306,Mexico,2005,39171.9,tonnes +2307,Mexico,2006,38402.66,tonnes +2308,Mexico,2007,50894.34,tonnes +2309,Mexico,2008,50154.53,tonnes +2310,Mexico,2009,50327.9,tonnes +2311,Mexico,2010,52305.13,tonnes +2312,Mexico,2011,53219.63,tonnes +2313,Mexico,2012,49213.67,tonnes +2314,Mexico,2013,47551.15,tonnes +2315,Montenegro,2006,0.55,tonnes +2316,Montenegro,2007,0.55,tonnes +2317,Montenegro,2008,0.55,tonnes +2318,Montenegro,2009,0.55,tonnes +2319,Montenegro,2010,66.0,tonnes +2320,Montenegro,2011,75.0,tonnes +2321,Montenegro,2012,71.0,tonnes +2322,Montenegro,2013,82.0,tonnes +2323,Morocco,1990,9364.0,tonnes +2324,Morocco,1991,9771.14,tonnes +2325,Morocco,1992,10178.29,tonnes +2326,Morocco,1993,10585.43,tonnes +2327,Morocco,1994,10992.57,tonnes +2328,Morocco,1995,11399.71,tonnes +2329,Morocco,1996,11806.86,tonnes +2330,Morocco,1997,12214.0,tonnes +2331,Morocco,1998,12621.14,tonnes +2332,Morocco,1999,13028.29,tonnes +2333,Morocco,2000,13435.43,tonnes +2334,Morocco,2001,13842.57,tonnes +2335,Morocco,2002,14249.71,tonnes +2336,Morocco,2003,14656.86,tonnes +2337,Morocco,2004,15064.0,tonnes +2338,Morocco,2005,14588.0,tonnes +2339,Morocco,2006,13697.0,tonnes +2340,Morocco,2007,13697.0,tonnes +2341,Morocco,2008,13697.0,tonnes +2342,Morocco,2009,13697.0,tonnes +2343,Morocco,2010,13697.0,tonnes +2344,Morocco,2011,13697.0,tonnes +2345,Morocco,2012,13697.0,tonnes +2346,Morocco,2013,13697.0,tonnes +2347,Mozambique,1990,102.26,tonnes +2348,Mozambique,1991,102.26,tonnes +2349,Mozambique,1992,102.26,tonnes +2350,Mozambique,1993,102.26,tonnes +2351,Mozambique,1994,102.26,tonnes +2352,Mozambique,1995,72.19,tonnes +2353,Mozambique,1996,65.85,tonnes +2354,Mozambique,1997,60.63,tonnes +2355,Mozambique,1998,53.43,tonnes +2356,Mozambique,1999,46.24,tonnes +2357,Mozambique,2000,39.04,tonnes +2358,Mozambique,2001,31.85,tonnes +2359,Mozambique,2002,24.65,tonnes +2360,Mozambique,2003,267.03,tonnes +2361,Mozambique,2004,572.99,tonnes +2362,Mozambique,2005,770.88,tonnes +2363,Mozambique,2006,891.54,tonnes +2364,Mozambique,2007,547.31,tonnes +2365,Mozambique,2008,890.47,tonnes +2366,Mozambique,2009,914.92,tonnes +2367,Mozambique,2010,1187.1,tonnes +2368,Mozambique,2011,766.93,tonnes +2369,Mozambique,2012,766.93,tonnes +2370,Mozambique,2013,766.93,tonnes +2371,Myanmar,1990,209.08,tonnes +2372,Myanmar,1991,114.02,tonnes +2373,Myanmar,1992,151.2,tonnes +2374,Myanmar,1993,160.36,tonnes +2375,Myanmar,1994,190.03,tonnes +2376,Myanmar,1995,264.76,tonnes +2377,Myanmar,1996,137.24,tonnes +2378,Myanmar,1997,145.54,tonnes +2379,Myanmar,1998,282.88,tonnes +2380,Myanmar,1999,420.21,tonnes +2381,Myanmar,2000,557.55,tonnes +2382,Myanmar,2001,694.89,tonnes +2383,Myanmar,2002,949.06,tonnes +2384,Myanmar,2003,858.94,tonnes +2385,Myanmar,2004,1042.39,tonnes +2386,Myanmar,2005,1462.73,tonnes +2387,Myanmar,2006,3872.16,tonnes +2388,Myanmar,2007,3329.67,tonnes +2389,Myanmar,2008,1450.35,tonnes +2390,Myanmar,2009,1114.68,tonnes +2391,Myanmar,2010,3340.09,tonnes +2392,Myanmar,2011,4653.25,tonnes +2393,Myanmar,2012,3050.45,tonnes +2394,Myanmar,2013,2898.2,tonnes +2395,Namibia,1990,42.0,tonnes +2396,Namibia,1991,39.0,tonnes +2397,Namibia,1992,48.0,tonnes +2398,Namibia,1993,56.0,tonnes +2399,Namibia,1994,56.0,tonnes +2400,Namibia,1995,56.0,tonnes +2401,Namibia,1996,56.0,tonnes +2402,Namibia,1997,56.0,tonnes +2403,Namibia,1998,56.0,tonnes +2404,Namibia,1999,56.0,tonnes +2405,Namibia,2000,56.0,tonnes +2406,Namibia,2001,56.0,tonnes +2407,Namibia,2002,56.0,tonnes +2408,Namibia,2003,56.0,tonnes +2409,Namibia,2004,56.0,tonnes +2410,Namibia,2005,56.0,tonnes +2411,Namibia,2006,56.0,tonnes +2412,Namibia,2007,56.0,tonnes +2413,Namibia,2008,56.0,tonnes +2414,Namibia,2009,56.0,tonnes +2415,Namibia,2010,56.0,tonnes +2416,Namibia,2011,56.0,tonnes +2417,Namibia,2012,56.0,tonnes +2418,Namibia,2013,56.0,tonnes +2419,Nepal,1990,60.11,tonnes +2420,Nepal,1991,60.11,tonnes +2421,Nepal,1992,60.11,tonnes +2422,Nepal,1993,60.11,tonnes +2423,Nepal,1994,60.11,tonnes +2424,Nepal,1995,60.11,tonnes +2425,Nepal,1996,70.43,tonnes +2426,Nepal,1997,80.75,tonnes +2427,Nepal,1998,91.07,tonnes +2428,Nepal,1999,101.39,tonnes +2429,Nepal,2000,111.72,tonnes +2430,Nepal,2001,122.04,tonnes +2431,Nepal,2002,132.36,tonnes +2432,Nepal,2003,142.68,tonnes +2433,Nepal,2004,153.0,tonnes +2434,Nepal,2005,127.99,tonnes +2435,Nepal,2006,128.73,tonnes +2436,Nepal,2007,344.06,tonnes +2437,Nepal,2008,353.43,tonnes +2438,Nepal,2009,209.52,tonnes +2439,Nepal,2010,332.01,tonnes +2440,Nepal,2011,342.92,tonnes +2441,Nepal,2012,410.32,tonnes +2442,Nepal,2013,454.53,tonnes +2443,Netherlands,1990,9729.0,tonnes +2444,Netherlands,1991,9338.0,tonnes +2445,Netherlands,1992,9030.0,tonnes +2446,Netherlands,1993,10505.0,tonnes +2447,Netherlands,1994,8646.99,tonnes +2448,Netherlands,1995,12601.97,tonnes +2449,Netherlands,1996,8923.96,tonnes +2450,Netherlands,1997,10568.95,tonnes +2451,Netherlands,1998,11762.94,tonnes +2452,Netherlands,1999,11152.92,tonnes +2453,Netherlands,2000,11382.84,tonnes +2454,Netherlands,2001,9424.73,tonnes +2455,Netherlands,2002,9700.44,tonnes +2456,Netherlands,2003,9550.04,tonnes +2457,Netherlands,2004,10655.4,tonnes +2458,Netherlands,2005,10703.85,tonnes +2459,Netherlands,2006,10461.35,tonnes +2460,Netherlands,2007,12073.15,tonnes +2461,Netherlands,2008,10777.08,tonnes +2462,Netherlands,2009,9857.2,tonnes +2463,Netherlands,2010,9586.03,tonnes +2464,Netherlands,2011,10953.91,tonnes +2465,Netherlands,2012,11348.39,tonnes +2466,Netherlands,2013,10720.17,tonnes +2467,New Caledonia,1990,28.2,tonnes +2468,New Caledonia,1991,28.2,tonnes +2469,New Caledonia,1992,28.2,tonnes +2470,New Caledonia,1993,28.2,tonnes +2471,New Caledonia,1994,28.2,tonnes +2472,New Caledonia,1995,28.2,tonnes +2473,New Caledonia,1996,28.2,tonnes +2474,New Caledonia,1997,28.2,tonnes +2475,New Caledonia,1998,28.2,tonnes +2476,New Caledonia,1999,28.2,tonnes +2477,New Caledonia,2000,28.2,tonnes +2478,New Caledonia,2001,28.2,tonnes +2479,New Caledonia,2002,28.2,tonnes +2480,New Caledonia,2003,28.2,tonnes +2481,New Caledonia,2004,28.2,tonnes +2482,New Caledonia,2005,28.2,tonnes +2483,New Caledonia,2006,28.2,tonnes +2484,New Caledonia,2007,28.2,tonnes +2485,New Caledonia,2008,28.2,tonnes +2486,New Caledonia,2009,28.2,tonnes +2487,New Caledonia,2010,32.6,tonnes +2488,New Caledonia,2011,26.2,tonnes +2489,New Caledonia,2012,26.4,tonnes +2490,New Caledonia,2013,21.79,tonnes +2491,New Zealand,1990,3490.0,tonnes +2492,New Zealand,1991,3490.0,tonnes +2493,New Zealand,1992,3490.0,tonnes +2494,New Zealand,1993,3489.0,tonnes +2495,New Zealand,1994,3515.0,tonnes +2496,New Zealand,1995,3904.0,tonnes +2497,New Zealand,1996,3499.0,tonnes +2498,New Zealand,1997,3249.0,tonnes +2499,New Zealand,1998,3055.16,tonnes +2500,New Zealand,1999,2535.3,tonnes +2501,New Zealand,2000,3634.3,tonnes +2502,New Zealand,2001,3333.2,tonnes +2503,New Zealand,2002,4170.0,tonnes +2504,New Zealand,2003,3891.0,tonnes +2505,New Zealand,2004,4050.0,tonnes +2506,New Zealand,2005,4058.0,tonnes +2507,New Zealand,2006,4388.0,tonnes +2508,New Zealand,2007,4939.0,tonnes +2509,New Zealand,2008,5857.0,tonnes +2510,New Zealand,2009,5086.0,tonnes +2511,New Zealand,2010,5086.0,tonnes +2512,New Zealand,2011,5086.0,tonnes +2513,New Zealand,2012,5086.0,tonnes +2514,New Zealand,2013,5086.0,tonnes +2515,Nicaragua,1990,575.0,tonnes +2516,Nicaragua,1991,575.0,tonnes +2517,Nicaragua,1992,575.0,tonnes +2518,Nicaragua,1993,977.0,tonnes +2519,Nicaragua,1994,799.0,tonnes +2520,Nicaragua,1995,876.0,tonnes +2521,Nicaragua,1996,2041.7,tonnes +2522,Nicaragua,1997,3207.4,tonnes +2523,Nicaragua,1998,4373.1,tonnes +2524,Nicaragua,1999,4097.16,tonnes +2525,Nicaragua,2000,3925.63,tonnes +2526,Nicaragua,2001,3603.5,tonnes +2527,Nicaragua,2002,5715.36,tonnes +2528,Nicaragua,2003,5613.57,tonnes +2529,Nicaragua,2004,4581.73,tonnes +2530,Nicaragua,2005,9391.92,tonnes +2531,Nicaragua,2006,6889.26,tonnes +2532,Nicaragua,2007,9850.26,tonnes +2533,Nicaragua,2008,10173.91,tonnes +2534,Nicaragua,2009,9387.95,tonnes +2535,Nicaragua,2010,12242.19,tonnes +2536,Nicaragua,2011,4932.05,tonnes +2537,Nicaragua,2012,4413.82,tonnes +2538,Nicaragua,2013,4413.82,tonnes +2539,Niger,1990,62.0,tonnes +2540,Niger,1991,62.0,tonnes +2541,Niger,1992,62.0,tonnes +2542,Niger,1993,62.0,tonnes +2543,Niger,1994,62.0,tonnes +2544,Niger,1995,62.0,tonnes +2545,Niger,1996,22.0,tonnes +2546,Niger,1997,34.0,tonnes +2547,Niger,1998,36.0,tonnes +2548,Niger,1999,26.0,tonnes +2549,Niger,2000,62.0,tonnes +2550,Niger,2001,31.0,tonnes +2551,Niger,2002,29.44,tonnes +2552,Niger,2003,27.88,tonnes +2553,Niger,2004,26.31,tonnes +2554,Niger,2005,24.75,tonnes +2555,Niger,2006,21.12,tonnes +2556,Niger,2007,30.57,tonnes +2557,Niger,2008,12.04,tonnes +2558,Niger,2009,7.32,tonnes +2559,Niger,2010,11.49,tonnes +2560,Niger,2011,10.59,tonnes +2561,Niger,2012,21.37,tonnes +2562,Niger,2013,21.37,tonnes +2563,North Macedonia,1992,970.0,tonnes +2564,North Macedonia,1993,659.0,tonnes +2565,North Macedonia,1994,540.0,tonnes +2566,North Macedonia,1995,573.0,tonnes +2567,North Macedonia,1996,556.0,tonnes +2568,North Macedonia,1997,507.0,tonnes +2569,North Macedonia,1998,529.0,tonnes +2570,North Macedonia,1999,412.5,tonnes +2571,North Macedonia,2000,296.0,tonnes +2572,North Macedonia,2001,175.0,tonnes +2573,North Macedonia,2002,240.0,tonnes +2574,North Macedonia,2003,210.0,tonnes +2575,North Macedonia,2004,262.0,tonnes +2576,North Macedonia,2005,149.0,tonnes +2577,North Macedonia,2006,327.0,tonnes +2578,North Macedonia,2007,119.0,tonnes +2579,North Macedonia,2008,85.0,tonnes +2580,North Macedonia,2009,98.0,tonnes +2581,North Macedonia,2010,98.0,tonnes +2582,North Macedonia,2011,98.0,tonnes +2583,North Macedonia,2012,98.0,tonnes +2584,North Macedonia,2013,98.0,tonnes +2585,Norway,1990,1183.0,tonnes +2586,Norway,1991,760.0,tonnes +2587,Norway,1992,767.9,tonnes +2588,Norway,1993,749.0,tonnes +2589,Norway,1994,848.0,tonnes +2590,Norway,1995,913.14,tonnes +2591,Norway,1996,698.25,tonnes +2592,Norway,1997,735.43,tonnes +2593,Norway,1998,934.02,tonnes +2594,Norway,1999,802.02,tonnes +2595,Norway,2000,348.24,tonnes +2596,Norway,2001,512.66,tonnes +2597,Norway,2002,799.19,tonnes +2598,Norway,2003,668.51,tonnes +2599,Norway,2004,827.45,tonnes +2600,Norway,2005,518.94,tonnes +2601,Norway,2006,696.34,tonnes +2602,Norway,2007,722.07,tonnes +2603,Norway,2008,800.9,tonnes +2604,Norway,2009,534.56,tonnes +2605,Norway,2010,698.98,tonnes +2606,Norway,2011,823.96,tonnes +2607,Norway,2012,813.93,tonnes +2608,Norway,2013,761.97,tonnes +2609,Oman,1990,27.74,tonnes +2610,Oman,1991,17.51,tonnes +2611,Oman,1992,112.31,tonnes +2612,Oman,1993,88.92,tonnes +2613,Oman,1994,65.53,tonnes +2614,Oman,1995,68.6,tonnes +2615,Oman,1996,71.67,tonnes +2616,Oman,1997,270.42,tonnes +2617,Oman,1998,283.88,tonnes +2618,Oman,1999,157.33,tonnes +2619,Oman,2000,30.78,tonnes +2620,Oman,2001,52.15,tonnes +2621,Oman,2002,73.52,tonnes +2622,Oman,2003,94.88,tonnes +2623,Oman,2004,116.25,tonnes +2624,Oman,2005,137.62,tonnes +2625,Oman,2006,158.98,tonnes +2626,Oman,2007,180.35,tonnes +2627,Oman,2008,201.72,tonnes +2628,Oman,2009,223.08,tonnes +2629,Oman,2010,244.45,tonnes +2630,Oman,2011,292.3,tonnes +2631,Oman,2012,339.04,tonnes +2632,Oman,2013,439.38,tonnes +2633,Pakistan,1990,5299.0,tonnes +2634,Pakistan,1991,5962.0,tonnes +2635,Pakistan,1992,5518.0,tonnes +2636,Pakistan,1993,4945.0,tonnes +2637,Pakistan,1994,6183.0,tonnes +2638,Pakistan,1995,7681.0,tonnes +2639,Pakistan,1996,11967.0,tonnes +2640,Pakistan,1997,16936.0,tonnes +2641,Pakistan,1998,18406.0,tonnes +2642,Pakistan,1999,20467.0,tonnes +2643,Pakistan,2000,27894.0,tonnes +2644,Pakistan,2001,11871.0,tonnes +2645,Pakistan,2002,10881.83,tonnes +2646,Pakistan,2003,9892.65,tonnes +2647,Pakistan,2004,8903.48,tonnes +2648,Pakistan,2005,7914.31,tonnes +2649,Pakistan,2006,6925.13,tonnes +2650,Pakistan,2007,5935.96,tonnes +2651,Pakistan,2008,4946.79,tonnes +2652,Pakistan,2009,3957.61,tonnes +2653,Pakistan,2010,2968.44,tonnes +2654,Pakistan,2011,1979.27,tonnes +2655,Pakistan,2012,990.09,tonnes +2656,Pakistan,2013,0.92,tonnes +2657,Palestine,1990,1263.43,tonnes +2658,Palestine,1991,1263.43,tonnes +2659,Palestine,1992,1263.43,tonnes +2660,Palestine,1993,1263.43,tonnes +2661,Palestine,1994,1263.43,tonnes +2662,Palestine,1995,1263.43,tonnes +2663,Palestine,1996,1263.43,tonnes +2664,Palestine,1997,1263.43,tonnes +2665,Palestine,1998,1263.43,tonnes +2666,Palestine,1999,1263.43,tonnes +2667,Palestine,2000,1263.43,tonnes +2668,Palestine,2001,1263.43,tonnes +2669,Palestine,2002,1263.43,tonnes +2670,Palestine,2003,1238.78,tonnes +2671,Palestine,2004,1237.54,tonnes +2672,Palestine,2005,1243.3,tonnes +2673,Palestine,2006,1290.78,tonnes +2674,Palestine,2007,1265.82,tonnes +2675,Palestine,2008,1348.14,tonnes +2676,Palestine,2009,1348.14,tonnes +2677,Palestine,2010,1348.14,tonnes +2678,Palestine,2011,1348.14,tonnes +2679,Palestine,2012,1348.14,tonnes +2680,Palestine,2013,1348.14,tonnes +2681,Panama,1990,3305.09,tonnes +2682,Panama,1991,3305.09,tonnes +2683,Panama,1992,3305.09,tonnes +2684,Panama,1993,3305.09,tonnes +2685,Panama,1994,3305.09,tonnes +2686,Panama,1995,3305.09,tonnes +2687,Panama,1996,3305.09,tonnes +2688,Panama,1997,3305.09,tonnes +2689,Panama,1998,1648.08,tonnes +2690,Panama,1999,1309.53,tonnes +2691,Panama,2000,970.97,tonnes +2692,Panama,2001,2786.15,tonnes +2693,Panama,2002,2138.79,tonnes +2694,Panama,2003,2445.72,tonnes +2695,Panama,2004,2587.99,tonnes +2696,Panama,2005,2674.77,tonnes +2697,Panama,2006,2630.67,tonnes +2698,Panama,2007,2237.75,tonnes +2699,Panama,2008,2141.4,tonnes +2700,Panama,2009,2045.04,tonnes +2701,Panama,2010,1948.68,tonnes +2702,Panama,2011,1852.32,tonnes +2703,Panama,2012,1371.35,tonnes +2704,Panama,2013,2477.29,tonnes +2705,Papua New Guinea,1990,121.0,tonnes +2706,Papua New Guinea,1991,121.0,tonnes +2707,Papua New Guinea,1992,121.0,tonnes +2708,Papua New Guinea,1993,172.0,tonnes +2709,Papua New Guinea,1994,176.0,tonnes +2710,Papua New Guinea,1995,105.0,tonnes +2711,Papua New Guinea,1996,105.0,tonnes +2712,Papua New Guinea,1997,105.0,tonnes +2713,Papua New Guinea,1998,105.0,tonnes +2714,Papua New Guinea,1999,105.0,tonnes +2715,Papua New Guinea,2000,105.0,tonnes +2716,Papua New Guinea,2001,105.0,tonnes +2717,Papua New Guinea,2002,105.0,tonnes +2718,Papua New Guinea,2003,105.0,tonnes +2719,Papua New Guinea,2004,105.0,tonnes +2720,Papua New Guinea,2005,105.0,tonnes +2721,Papua New Guinea,2006,105.0,tonnes +2722,Papua New Guinea,2007,105.0,tonnes +2723,Papua New Guinea,2008,105.0,tonnes +2724,Papua New Guinea,2009,105.0,tonnes +2725,Papua New Guinea,2010,105.0,tonnes +2726,Papua New Guinea,2011,105.0,tonnes +2727,Papua New Guinea,2012,105.0,tonnes +2728,Papua New Guinea,2013,105.0,tonnes +2729,Paraguay,1990,3380.0,tonnes +2730,Paraguay,1991,3380.0,tonnes +2731,Paraguay,1992,3380.0,tonnes +2732,Paraguay,1993,5806.8,tonnes +2733,Paraguay,1994,8233.6,tonnes +2734,Paraguay,1995,10660.4,tonnes +2735,Paraguay,1996,13087.2,tonnes +2736,Paraguay,1997,15514.0,tonnes +2737,Paraguay,1998,12196.0,tonnes +2738,Paraguay,1999,5064.93,tonnes +2739,Paraguay,2000,3507.87,tonnes +2740,Paraguay,2001,10583.8,tonnes +2741,Paraguay,2002,11753.73,tonnes +2742,Paraguay,2003,12923.66,tonnes +2743,Paraguay,2004,14093.58,tonnes +2744,Paraguay,2005,15263.51,tonnes +2745,Paraguay,2006,16433.44,tonnes +2746,Paraguay,2007,17603.37,tonnes +2747,Paraguay,2008,18773.3,tonnes +2748,Paraguay,2009,19943.22,tonnes +2749,Paraguay,2010,21113.15,tonnes +2750,Paraguay,2011,22283.08,tonnes +2751,Paraguay,2012,23453.01,tonnes +2752,Paraguay,2013,24667.05,tonnes +2753,Peru,1990,1278.8,tonnes +2754,Peru,1991,1278.8,tonnes +2755,Peru,1992,1278.8,tonnes +2756,Peru,1993,1278.8,tonnes +2757,Peru,1994,1278.8,tonnes +2758,Peru,1995,1278.8,tonnes +2759,Peru,1996,1543.45,tonnes +2760,Peru,1997,1793.6,tonnes +2761,Peru,1998,1855.76,tonnes +2762,Peru,1999,1752.69,tonnes +2763,Peru,2000,2200.44,tonnes +2764,Peru,2001,2959.55,tonnes +2765,Peru,2002,2851.02,tonnes +2766,Peru,2003,2805.71,tonnes +2767,Peru,2004,3084.91,tonnes +2768,Peru,2005,3533.63,tonnes +2769,Peru,2006,4193.59,tonnes +2770,Peru,2007,2883.17,tonnes +2771,Peru,2008,4937.67,tonnes +2772,Peru,2009,4656.01,tonnes +2773,Peru,2010,6170.44,tonnes +2774,Peru,2011,6030.69,tonnes +2775,Peru,2012,7288.63,tonnes +2776,Peru,2013,7091.56,tonnes +2777,Poland,1990,5422.0,tonnes +2778,Poland,1991,5422.0,tonnes +2779,Poland,1992,7363.0,tonnes +2780,Poland,1993,8825.0,tonnes +2781,Poland,1994,9330.0,tonnes +2782,Poland,1995,7136.0,tonnes +2783,Poland,1996,9824.0,tonnes +2784,Poland,1997,9839.71,tonnes +2785,Poland,1998,8981.43,tonnes +2786,Poland,1999,8692.14,tonnes +2787,Poland,2000,9017.86,tonnes +2788,Poland,2001,8968.57,tonnes +2789,Poland,2002,10415.29,tonnes +2790,Poland,2003,7184.0,tonnes +2791,Poland,2004,8726.0,tonnes +2792,Poland,2005,16039.0,tonnes +2793,Poland,2006,17101.0,tonnes +2794,Poland,2007,18721.0,tonnes +2795,Poland,2008,20611.02,tonnes +2796,Poland,2009,18493.03,tonnes +2797,Poland,2010,19449.02,tonnes +2798,Poland,2011,21779.27,tonnes +2799,Poland,2012,21885.99,tonnes +2800,Poland,2013,22204.46,tonnes +2801,Portugal,1990,9357.0,tonnes +2802,Portugal,1991,9357.0,tonnes +2803,Portugal,1992,6117.0,tonnes +2804,Portugal,1993,8985.0,tonnes +2805,Portugal,1994,9580.0,tonnes +2806,Portugal,1995,11815.0,tonnes +2807,Portugal,1996,12457.0,tonnes +2808,Portugal,1997,12825.5,tonnes +2809,Portugal,1998,14389.0,tonnes +2810,Portugal,1999,15411.0,tonnes +2811,Portugal,2000,15470.0,tonnes +2812,Portugal,2001,15503.0,tonnes +2813,Portugal,2002,17574.52,tonnes +2814,Portugal,2003,17128.03,tonnes +2815,Portugal,2004,17015.55,tonnes +2816,Portugal,2005,16402.07,tonnes +2817,Portugal,2006,15726.58,tonnes +2818,Portugal,2007,16682.39,tonnes +2819,Portugal,2008,17080.26,tonnes +2820,Portugal,2009,13984.91,tonnes +2821,Portugal,2010,13774.18,tonnes +2822,Portugal,2011,14024.98,tonnes +2823,Portugal,2012,12444.24,tonnes +2824,Portugal,2013,10126.8,tonnes +2825,Qatar,1990,3.0,tonnes +2826,Qatar,1991,3.0,tonnes +2827,Qatar,1992,3.0,tonnes +2828,Qatar,1993,3.0,tonnes +2829,Qatar,1994,3.0,tonnes +2830,Qatar,1995,4.0,tonnes +2831,Qatar,1996,6.0,tonnes +2832,Qatar,1997,21.5,tonnes +2833,Qatar,1998,37.0,tonnes +2834,Qatar,1999,52.5,tonnes +2835,Qatar,2000,68.0,tonnes +2836,Qatar,2001,68.0,tonnes +2837,Qatar,2002,68.0,tonnes +2838,Qatar,2003,68.0,tonnes +2839,Qatar,2004,68.0,tonnes +2840,Qatar,2005,68.0,tonnes +2841,Qatar,2006,68.0,tonnes +2842,Qatar,2007,68.0,tonnes +2843,Qatar,2008,68.0,tonnes +2844,Qatar,2009,68.0,tonnes +2845,Qatar,2010,68.0,tonnes +2846,Qatar,2011,68.0,tonnes +2847,Qatar,2012,68.0,tonnes +2848,Qatar,2013,68.0,tonnes +2849,Republic of Korea,1990,25082.0,tonnes +2850,Republic of Korea,1991,27476.0,tonnes +2851,Republic of Korea,1992,26718.0,tonnes +2852,Republic of Korea,1993,25999.0,tonnes +2853,Republic of Korea,1994,26184.0,tonnes +2854,Republic of Korea,1995,25845.0,tonnes +2855,Republic of Korea,1996,24620.0,tonnes +2856,Republic of Korea,1997,24819.0,tonnes +2857,Republic of Korea,1998,22103.0,tonnes +2858,Republic of Korea,1999,25837.0,tonnes +2859,Republic of Korea,2000,25684.0,tonnes +2860,Republic of Korea,2001,28218.0,tonnes +2861,Republic of Korea,2002,25844.0,tonnes +2862,Republic of Korea,2003,24610.0,tonnes +2863,Republic of Korea,2004,25323.0,tonnes +2864,Republic of Korea,2005,24506.0,tonnes +2865,Republic of Korea,2006,24076.0,tonnes +2866,Republic of Korea,2007,24262.0,tonnes +2867,Republic of Korea,2008,25368.0,tonnes +2868,Republic of Korea,2009,22790.0,tonnes +2869,Republic of Korea,2010,20431.0,tonnes +2870,Republic of Korea,2011,19131.0,tonnes +2871,Republic of Korea,2012,17438.0,tonnes +2872,Republic of Korea,2013,18708.0,tonnes +2873,Republic of Moldova,1992,2897.0,tonnes +2874,Republic of Moldova,1993,2501.0,tonnes +2875,Republic of Moldova,1994,2553.73,tonnes +2876,Republic of Moldova,1995,2606.45,tonnes +2877,Republic of Moldova,1996,2659.18,tonnes +2878,Republic of Moldova,1997,2711.91,tonnes +2879,Republic of Moldova,1998,2764.64,tonnes +2880,Republic of Moldova,1999,2817.36,tonnes +2881,Republic of Moldova,2000,2870.09,tonnes +2882,Republic of Moldova,2001,2877.1,tonnes +2883,Republic of Moldova,2002,2606.87,tonnes +2884,Republic of Moldova,2003,2715.73,tonnes +2885,Republic of Moldova,2004,2915.4,tonnes +2886,Republic of Moldova,2005,2394.93,tonnes +2887,Republic of Moldova,2006,2466.37,tonnes +2888,Republic of Moldova,2007,2556.03,tonnes +2889,Republic of Moldova,2008,2924.63,tonnes +2890,Republic of Moldova,2009,2308.27,tonnes +2891,Republic of Moldova,2010,2466.13,tonnes +2892,Republic of Moldova,2011,2453.95,tonnes +2893,Republic of Moldova,2012,2316.22,tonnes +2894,Republic of Moldova,2013,2409.25,tonnes +2895,Romania,1990,25255.0,tonnes +2896,Romania,1991,19898.0,tonnes +2897,Romania,1992,15134.0,tonnes +2898,Romania,1993,24252.0,tonnes +2899,Romania,1994,21811.0,tonnes +2900,Romania,1995,20113.0,tonnes +2901,Romania,1996,17425.0,tonnes +2902,Romania,1997,15349.0,tonnes +2903,Romania,1998,13979.0,tonnes +2904,Romania,1999,11280.0,tonnes +2905,Romania,2000,9427.4,tonnes +2906,Romania,2001,7871.1,tonnes +2907,Romania,2002,7875.7,tonnes +2908,Romania,2003,6928.1,tonnes +2909,Romania,2004,6778.2,tonnes +2910,Romania,2005,7565.7,tonnes +2911,Romania,2006,6733.2,tonnes +2912,Romania,2007,6314.0,tonnes +2913,Romania,2008,7193.7,tonnes +2914,Romania,2009,6548.7,tonnes +2915,Romania,2010,7249.2,tonnes +2916,Romania,2011,6582.9,tonnes +2917,Romania,2012,6418.7,tonnes +2918,Romania,2013,6947.9,tonnes +2919,Russian Federation,1992,25961.0,tonnes +2920,Russian Federation,1993,25961.0,tonnes +2921,Russian Federation,1994,25961.0,tonnes +2922,Russian Federation,1995,25961.0,tonnes +2923,Russian Federation,1996,25961.0,tonnes +2924,Russian Federation,1997,25961.0,tonnes +2925,Russian Federation,1998,25961.0,tonnes +2926,Russian Federation,1999,25961.0,tonnes +2927,Russian Federation,2000,25961.0,tonnes +2928,Russian Federation,2001,25961.0,tonnes +2929,Russian Federation,2002,25961.0,tonnes +2930,Russian Federation,2003,25961.0,tonnes +2931,Russian Federation,2004,25961.0,tonnes +2932,Russian Federation,2005,25961.0,tonnes +2933,Russian Federation,2006,25961.0,tonnes +2934,Russian Federation,2007,25961.0,tonnes +2935,Russian Federation,2008,25961.0,tonnes +2936,Russian Federation,2009,25961.0,tonnes +2937,Russian Federation,2010,25961.0,tonnes +2938,Russian Federation,2011,25961.0,tonnes +2939,Russian Federation,2012,25961.0,tonnes +2940,Russian Federation,2013,25961.0,tonnes +2941,Rwanda,1990,157.0,tonnes +2942,Rwanda,1991,107.0,tonnes +2943,Rwanda,1992,97.0,tonnes +2944,Rwanda,1993,127.4,tonnes +2945,Rwanda,1994,157.8,tonnes +2946,Rwanda,1995,188.2,tonnes +2947,Rwanda,1996,218.6,tonnes +2948,Rwanda,1997,249.0,tonnes +2949,Rwanda,1998,157.0,tonnes +2950,Rwanda,1999,152.0,tonnes +2951,Rwanda,2000,147.0,tonnes +2952,Rwanda,2001,72.09,tonnes +2953,Rwanda,2002,106.52,tonnes +2954,Rwanda,2003,140.95,tonnes +2955,Rwanda,2004,159.9,tonnes +2956,Rwanda,2005,223.37,tonnes +2957,Rwanda,2006,289.26,tonnes +2958,Rwanda,2007,398.74,tonnes +2959,Rwanda,2008,322.47,tonnes +2960,Rwanda,2009,1188.41,tonnes +2961,Rwanda,2010,954.75,tonnes +2962,Rwanda,2011,182.59,tonnes +2963,Rwanda,2012,926.6,tonnes +2964,Rwanda,2013,1841.5,tonnes +2965,Saint Kitts and Nevis,1990,10.88,tonnes +2966,Saint Kitts and Nevis,1991,10.88,tonnes +2967,Saint Kitts and Nevis,1992,10.88,tonnes +2968,Saint Kitts and Nevis,1993,10.88,tonnes +2969,Saint Kitts and Nevis,1994,10.88,tonnes +2970,Saint Kitts and Nevis,1995,10.88,tonnes +2971,Saint Kitts and Nevis,1996,10.88,tonnes +2972,Saint Kitts and Nevis,1997,10.88,tonnes +2973,Saint Kitts and Nevis,1998,10.88,tonnes +2974,Saint Kitts and Nevis,1999,10.88,tonnes +2975,Saint Kitts and Nevis,2000,10.88,tonnes +2976,Saint Kitts and Nevis,2001,10.28,tonnes +2977,Saint Kitts and Nevis,2002,11.32,tonnes +2978,Saint Kitts and Nevis,2003,11.92,tonnes +2979,Saint Kitts and Nevis,2004,12.52,tonnes +2980,Saint Kitts and Nevis,2005,12.62,tonnes +2981,Saint Kitts and Nevis,2006,12.57,tonnes +2982,Saint Kitts and Nevis,2007,12.57,tonnes +2983,Saint Kitts and Nevis,2008,14.96,tonnes +2984,Saint Kitts and Nevis,2009,15.08,tonnes +2985,Saint Kitts and Nevis,2010,14.61,tonnes +2986,Saint Kitts and Nevis,2011,14.78,tonnes +2987,Saint Kitts and Nevis,2012,1.99,tonnes +2988,Saint Kitts and Nevis,2013,0.94,tonnes +2989,Saint Lucia,1990,97.0,tonnes +2990,Saint Lucia,1991,97.0,tonnes +2991,Saint Lucia,1992,97.0,tonnes +2992,Saint Lucia,1993,97.0,tonnes +2993,Saint Lucia,1994,97.0,tonnes +2994,Saint Lucia,1995,97.0,tonnes +2995,Saint Lucia,1996,97.0,tonnes +2996,Saint Lucia,1997,97.0,tonnes +2997,Saint Lucia,1998,49.0,tonnes +2998,Saint Lucia,1999,196.0,tonnes +2999,Saint Lucia,2000,196.0,tonnes +3000,Saint Lucia,2001,196.0,tonnes +3001,Saint Lucia,2002,196.0,tonnes +3002,Saint Lucia,2003,196.0,tonnes +3003,Saint Lucia,2004,196.0,tonnes +3004,Saint Lucia,2005,196.0,tonnes +3005,Saint Lucia,2006,196.0,tonnes +3006,Saint Lucia,2007,196.0,tonnes +3007,Saint Lucia,2008,196.0,tonnes +3008,Saint Lucia,2009,196.0,tonnes +3009,Saint Lucia,2010,196.0,tonnes +3010,Saint Lucia,2011,196.0,tonnes +3011,Saint Lucia,2012,196.0,tonnes +3012,Saint Lucia,2013,196.0,tonnes +3013,Samoa,1990,48.07,tonnes +3014,Samoa,1991,48.07,tonnes +3015,Samoa,1992,36.0,tonnes +3016,Samoa,1993,23.53,tonnes +3017,Samoa,1994,48.27,tonnes +3018,Samoa,1995,44.18,tonnes +3019,Samoa,1996,23.66,tonnes +3020,Samoa,1997,29.78,tonnes +3021,Samoa,1998,12.05,tonnes +3022,Samoa,1999,10.02,tonnes +3023,Samoa,2000,6.77,tonnes +3024,Samoa,2001,12.43,tonnes +3025,Samoa,2002,18.08,tonnes +3026,Samoa,2003,23.74,tonnes +3027,Samoa,2004,29.4,tonnes +3028,Samoa,2005,35.06,tonnes +3029,Samoa,2006,40.71,tonnes +3030,Samoa,2007,46.37,tonnes +3031,Samoa,2008,52.03,tonnes +3032,Samoa,2009,57.69,tonnes +3033,Samoa,2010,63.34,tonnes +3034,Samoa,2011,69.0,tonnes +3035,Samoa,2012,74.66,tonnes +3036,Samoa,2013,80.32,tonnes +3037,Saudi Arabia,1990,994.0,tonnes +3038,Saudi Arabia,1991,994.0,tonnes +3039,Saudi Arabia,1992,994.0,tonnes +3040,Saudi Arabia,1993,994.0,tonnes +3041,Saudi Arabia,1994,994.0,tonnes +3042,Saudi Arabia,1995,994.0,tonnes +3043,Saudi Arabia,1996,994.0,tonnes +3044,Saudi Arabia,1997,2516.19,tonnes +3045,Saudi Arabia,1998,2686.24,tonnes +3046,Saudi Arabia,1999,2856.29,tonnes +3047,Saudi Arabia,2000,3026.34,tonnes +3048,Saudi Arabia,2001,3196.4,tonnes +3049,Saudi Arabia,2002,3366.45,tonnes +3050,Saudi Arabia,2003,3536.5,tonnes +3051,Saudi Arabia,2004,3706.55,tonnes +3052,Saudi Arabia,2005,3876.61,tonnes +3053,Saudi Arabia,2006,4046.66,tonnes +3054,Saudi Arabia,2007,4216.71,tonnes +3055,Saudi Arabia,2008,4372.61,tonnes +3056,Saudi Arabia,2009,4528.51,tonnes +3057,Saudi Arabia,2010,4684.4,tonnes +3058,Saudi Arabia,2011,4840.3,tonnes +3059,Saudi Arabia,2012,4996.2,tonnes +3060,Saudi Arabia,2013,5412.5,tonnes +3061,Senegal,1990,384.0,tonnes +3062,Senegal,1991,384.0,tonnes +3063,Senegal,1992,384.0,tonnes +3064,Senegal,1993,357.55,tonnes +3065,Senegal,1994,547.3,tonnes +3066,Senegal,1995,435.31,tonnes +3067,Senegal,1996,411.33,tonnes +3068,Senegal,1997,437.23,tonnes +3069,Senegal,1998,450.71,tonnes +3070,Senegal,1999,470.87,tonnes +3071,Senegal,2000,491.03,tonnes +3072,Senegal,2001,282.02,tonnes +3073,Senegal,2002,328.0,tonnes +3074,Senegal,2003,373.99,tonnes +3075,Senegal,2004,419.97,tonnes +3076,Senegal,2005,465.95,tonnes +3077,Senegal,2006,511.93,tonnes +3078,Senegal,2007,557.92,tonnes +3079,Senegal,2008,603.9,tonnes +3080,Senegal,2009,649.88,tonnes +3081,Senegal,2010,695.86,tonnes +3082,Senegal,2011,741.85,tonnes +3083,Senegal,2012,787.83,tonnes +3084,Senegal,2013,722.53,tonnes +3085,Serbia and Montenegro,1992,1230.37,tonnes +3086,Serbia and Montenegro,1993,1814.21,tonnes +3087,Serbia and Montenegro,1994,1699.42,tonnes +3088,Serbia and Montenegro,1995,1467.01,tonnes +3089,Serbia and Montenegro,1996,1441.12,tonnes +3090,Serbia and Montenegro,1997,1356.57,tonnes +3091,Serbia and Montenegro,1998,1404.18,tonnes +3092,Serbia and Montenegro,1999,1330.17,tonnes +3093,Serbia and Montenegro,2000,1248.34,tonnes +3094,Serbia and Montenegro,2001,1321.53,tonnes +3095,Serbia and Montenegro,2002,1160.73,tonnes +3096,Serbia and Montenegro,2003,1021.33,tonnes +3097,Serbia and Montenegro,2004,1041.89,tonnes +3098,Serbia and Montenegro,2005,1041.89,tonnes +3099,Seychelles,1990,10.29,tonnes +3100,Seychelles,1991,9.06,tonnes +3101,Seychelles,1992,14.15,tonnes +3102,Seychelles,1993,30.77,tonnes +3103,Seychelles,1994,32.85,tonnes +3104,Seychelles,1995,35.69,tonnes +3105,Seychelles,1996,34.73,tonnes +3106,Seychelles,1997,24.31,tonnes +3107,Seychelles,1998,18.75,tonnes +3108,Seychelles,1999,18.75,tonnes +3109,Seychelles,2000,18.75,tonnes +3110,Seychelles,2001,18.75,tonnes +3111,Seychelles,2002,18.75,tonnes +3112,Seychelles,2003,18.75,tonnes +3113,Seychelles,2004,18.75,tonnes +3114,Seychelles,2005,18.75,tonnes +3115,Seychelles,2006,18.75,tonnes +3116,Seychelles,2007,18.75,tonnes +3117,Seychelles,2008,18.75,tonnes +3118,Seychelles,2009,18.75,tonnes +3119,Seychelles,2010,18.75,tonnes +3120,Seychelles,2011,18.75,tonnes +3121,Seychelles,2012,18.75,tonnes +3122,Seychelles,2013,18.75,tonnes +3123,Slovakia,1993,3889.7,tonnes +3124,Slovakia,1994,4158.5,tonnes +3125,Slovakia,1995,6146.9,tonnes +3126,Slovakia,1996,3981.4,tonnes +3127,Slovakia,1997,3247.2,tonnes +3128,Slovakia,1998,3582.5,tonnes +3129,Slovakia,1999,2831.9,tonnes +3130,Slovakia,2000,1457.49,tonnes +3131,Slovakia,2001,1549.87,tonnes +3132,Slovakia,2002,1642.21,tonnes +3133,Slovakia,2003,1515.43,tonnes +3134,Slovakia,2004,1573.03,tonnes +3135,Slovakia,2005,1545.6,tonnes +3136,Slovakia,2006,1586.97,tonnes +3137,Slovakia,2007,1595.47,tonnes +3138,Slovakia,2008,1498.24,tonnes +3139,Slovakia,2009,1654.12,tonnes +3140,Slovakia,2010,1880.75,tonnes +3141,Slovakia,2011,1410.5,tonnes +3142,Slovakia,2012,1563.78,tonnes +3143,Slovakia,2013,1620.28,tonnes +3144,Slovenia,1992,1309.0,tonnes +3145,Slovenia,1993,1112.0,tonnes +3146,Slovenia,1994,944.0,tonnes +3147,Slovenia,1995,987.0,tonnes +3148,Slovenia,1996,953.0,tonnes +3149,Slovenia,1997,1245.0,tonnes +3150,Slovenia,1998,1091.0,tonnes +3151,Slovenia,1999,1133.0,tonnes +3152,Slovenia,2000,1468.0,tonnes +3153,Slovenia,2001,1387.0,tonnes +3154,Slovenia,2002,1181.64,tonnes +3155,Slovenia,2003,1377.08,tonnes +3156,Slovenia,2004,1572.6,tonnes +3157,Slovenia,2005,1397.04,tonnes +3158,Slovenia,2006,1292.68,tonnes +3159,Slovenia,2007,1165.47,tonnes +3160,Slovenia,2008,1226.92,tonnes +3161,Slovenia,2009,1170.18,tonnes +3162,Slovenia,2010,1140.22,tonnes +3163,Slovenia,2011,1126.3,tonnes +3164,Slovenia,2012,1019.01,tonnes +3165,Slovenia,2013,918.96,tonnes +3166,South Africa,1990,16582.0,tonnes +3167,South Africa,1991,16582.0,tonnes +3168,South Africa,1992,16582.0,tonnes +3169,South Africa,1993,16582.0,tonnes +3170,South Africa,1994,16582.0,tonnes +3171,South Africa,1995,18025.0,tonnes +3172,South Africa,1996,19508.0,tonnes +3173,South Africa,1997,21596.0,tonnes +3174,South Africa,1998,24304.0,tonnes +3175,South Africa,1999,26098.8,tonnes +3176,South Africa,2000,26857.0,tonnes +3177,South Africa,2001,26857.0,tonnes +3178,South Africa,2002,26857.0,tonnes +3179,South Africa,2003,26857.0,tonnes +3180,South Africa,2004,26857.0,tonnes +3181,South Africa,2005,26857.0,tonnes +3182,South Africa,2006,26857.0,tonnes +3183,South Africa,2007,26857.0,tonnes +3184,South Africa,2008,26857.0,tonnes +3185,South Africa,2009,26857.0,tonnes +3186,South Africa,2010,26857.0,tonnes +3187,South Africa,2011,26857.0,tonnes +3188,South Africa,2012,26857.0,tonnes +3189,South Africa,2013,26857.0,tonnes +3190,Spain,1990,39562.0,tonnes +3191,Spain,1991,39147.0,tonnes +3192,Spain,1992,31839.0,tonnes +3193,Spain,1993,29408.0,tonnes +3194,Spain,1994,31244.0,tonnes +3195,Spain,1995,27852.0,tonnes +3196,Spain,1996,33236.0,tonnes +3197,Spain,1997,34023.0,tonnes +3198,Spain,1998,35070.0,tonnes +3199,Spain,1999,33614.0,tonnes +3200,Spain,2000,34597.0,tonnes +3201,Spain,2001,35700.0,tonnes +3202,Spain,2002,40727.0,tonnes +3203,Spain,2003,41586.0,tonnes +3204,Spain,2004,47445.0,tonnes +3205,Spain,2005,41017.0,tonnes +3206,Spain,2006,39767.0,tonnes +3207,Spain,2007,39286.0,tonnes +3208,Spain,2008,40719.0,tonnes +3209,Spain,2009,35199.0,tonnes +3210,Spain,2010,39043.0,tonnes +3211,Spain,2011,53549.0,tonnes +3212,Spain,2012,48668.0,tonnes +3213,Spain,2013,54197.0,tonnes +3214,Sri Lanka,1990,1571.33,tonnes +3215,Sri Lanka,1991,1409.15,tonnes +3216,Sri Lanka,1992,2144.31,tonnes +3217,Sri Lanka,1993,1753.2,tonnes +3218,Sri Lanka,1994,1860.7,tonnes +3219,Sri Lanka,1995,1735.5,tonnes +3220,Sri Lanka,1996,1654.41,tonnes +3221,Sri Lanka,1997,1622.4,tonnes +3222,Sri Lanka,1998,1532.41,tonnes +3223,Sri Lanka,1999,1766.91,tonnes +3224,Sri Lanka,2000,1695.71,tonnes +3225,Sri Lanka,2001,1705.05,tonnes +3226,Sri Lanka,2002,1714.39,tonnes +3227,Sri Lanka,2003,1723.73,tonnes +3228,Sri Lanka,2004,1733.07,tonnes +3229,Sri Lanka,2005,1742.41,tonnes +3230,Sri Lanka,2006,1751.75,tonnes +3231,Sri Lanka,2007,1439.8,tonnes +3232,Sri Lanka,2008,1152.39,tonnes +3233,Sri Lanka,2009,1170.36,tonnes +3234,Sri Lanka,2010,1450.54,tonnes +3235,Sri Lanka,2011,1290.31,tonnes +3236,Sri Lanka,2012,1112.8,tonnes +3237,Sri Lanka,2013,1235.31,tonnes +3238,Sudan,2012,2469.47,tonnes +3239,Sudan,2013,2469.47,tonnes +3240,Sudan (former),1990,1643.0,tonnes +3241,Sudan (former),1991,1643.0,tonnes +3242,Sudan (former),1992,1643.0,tonnes +3243,Sudan (former),1993,498.0,tonnes +3244,Sudan (former),1994,1015.0,tonnes +3245,Sudan (former),1995,1302.0,tonnes +3246,Sudan (former),1996,1384.0,tonnes +3247,Sudan (former),1997,1223.0,tonnes +3248,Sudan (former),1998,904.0,tonnes +3249,Sudan (former),1999,585.0,tonnes +3250,Sudan (former),2000,266.0,tonnes +3251,Sudan (former),2001,517.66,tonnes +3252,Sudan (former),2002,769.33,tonnes +3253,Sudan (former),2003,1020.99,tonnes +3254,Sudan (former),2004,1272.66,tonnes +3255,Sudan (former),2005,1524.32,tonnes +3256,Sudan (former),2006,1268.83,tonnes +3257,Sudan (former),2007,1063.38,tonnes +3258,Sudan (former),2008,1364.79,tonnes +3259,Sudan (former),2009,2425.77,tonnes +3260,Sudan (former),2010,2862.47,tonnes +3261,Sudan (former),2011,2862.47,tonnes +3262,Suriname,1990,217.0,tonnes +3263,Suriname,1991,207.0,tonnes +3264,Suriname,1992,197.5,tonnes +3265,Suriname,1993,188.0,tonnes +3266,Suriname,1994,178.5,tonnes +3267,Suriname,1995,169.0,tonnes +3268,Suriname,1996,142.0,tonnes +3269,Suriname,1997,139.0,tonnes +3270,Suriname,1998,151.33,tonnes +3271,Suriname,1999,163.67,tonnes +3272,Suriname,2000,176.0,tonnes +3273,Suriname,2001,268.01,tonnes +3274,Suriname,2002,360.03,tonnes +3275,Suriname,2003,415.86,tonnes +3276,Suriname,2004,337.59,tonnes +3277,Suriname,2005,376.46,tonnes +3278,Suriname,2006,340.36,tonnes +3279,Suriname,2007,397.75,tonnes +3280,Suriname,2008,391.39,tonnes +3281,Suriname,2009,431.83,tonnes +3282,Suriname,2010,477.87,tonnes +3283,Suriname,2011,936.24,tonnes +3284,Suriname,2012,633.92,tonnes +3285,Suriname,2013,537.49,tonnes +3286,Sweden,1990,2310.0,tonnes +3287,Sweden,1991,1841.0,tonnes +3288,Sweden,1992,1497.0,tonnes +3289,Sweden,1993,1466.0,tonnes +3290,Sweden,1994,1962.0,tonnes +3291,Sweden,1995,1225.0,tonnes +3292,Sweden,1996,1529.0,tonnes +3293,Sweden,1997,1534.0,tonnes +3294,Sweden,1998,1555.0,tonnes +3295,Sweden,1999,1602.0,tonnes +3296,Sweden,2000,1721.0,tonnes +3297,Sweden,2001,1789.0,tonnes +3298,Sweden,2002,2198.0,tonnes +3299,Sweden,2003,2549.0,tonnes +3300,Sweden,2004,1353.0,tonnes +3301,Sweden,2005,2132.0,tonnes +3302,Sweden,2006,2220.0,tonnes +3303,Sweden,2007,2157.0,tonnes +3304,Sweden,2008,2352.0,tonnes +3305,Sweden,2009,1935.0,tonnes +3306,Sweden,2010,1982.0,tonnes +3307,Sweden,2011,1781.0,tonnes +3308,Sweden,2012,1814.0,tonnes +3309,Sweden,2013,1620.0,tonnes +3310,Switzerland,1990,2282.0,tonnes +3311,Switzerland,1991,2055.9,tonnes +3312,Switzerland,1992,2018.7,tonnes +3313,Switzerland,1993,1934.5,tonnes +3314,Switzerland,1994,1922.5,tonnes +3315,Switzerland,1995,1826.3,tonnes +3316,Switzerland,1996,1746.3,tonnes +3317,Switzerland,1997,1644.3,tonnes +3318,Switzerland,1998,1563.6,tonnes +3319,Switzerland,1999,1526.6,tonnes +3320,Switzerland,2000,1576.9,tonnes +3321,Switzerland,2001,1561.9,tonnes +3322,Switzerland,2002,1526.6,tonnes +3323,Switzerland,2003,1476.7,tonnes +3324,Switzerland,2004,1390.7,tonnes +3325,Switzerland,2005,1388.3,tonnes +3326,Switzerland,2006,1359.04,tonnes +3327,Switzerland,2007,2099.3,tonnes +3328,Switzerland,2008,2011.47,tonnes +3329,Switzerland,2009,2170.4,tonnes +3330,Switzerland,2010,2059.6,tonnes +3331,Switzerland,2011,2132.14,tonnes +3332,Switzerland,2012,2077.9,tonnes +3333,Switzerland,2013,2098.5,tonnes +3334,Syrian Arab Republic,1990,858.62,tonnes +3335,Syrian Arab Republic,1991,858.62,tonnes +3336,Syrian Arab Republic,1992,858.62,tonnes +3337,Syrian Arab Republic,1993,858.62,tonnes +3338,Syrian Arab Republic,1994,858.62,tonnes +3339,Syrian Arab Republic,1995,858.62,tonnes +3340,Syrian Arab Republic,1996,858.62,tonnes +3341,Syrian Arab Republic,1997,858.62,tonnes +3342,Syrian Arab Republic,1998,1796.14,tonnes +3343,Syrian Arab Republic,1999,2043.3,tonnes +3344,Syrian Arab Republic,2000,1306.25,tonnes +3345,Syrian Arab Republic,2001,1422.24,tonnes +3346,Syrian Arab Republic,2002,1422.24,tonnes +3347,Syrian Arab Republic,2003,1422.24,tonnes +3348,Syrian Arab Republic,2004,1422.24,tonnes +3349,Syrian Arab Republic,2005,1422.24,tonnes +3350,Syrian Arab Republic,2006,1422.24,tonnes +3351,Syrian Arab Republic,2007,1422.24,tonnes +3352,Syrian Arab Republic,2008,1422.24,tonnes +3353,Syrian Arab Republic,2009,1422.24,tonnes +3354,Syrian Arab Republic,2010,1422.24,tonnes +3355,Syrian Arab Republic,2011,1422.24,tonnes +3356,Syrian Arab Republic,2012,1422.24,tonnes +3357,Syrian Arab Republic,2013,1422.24,tonnes +3358,Tajikistan,1992,2280.0,tonnes +3359,Tajikistan,1993,2280.0,tonnes +3360,Tajikistan,1994,714.0,tonnes +3361,Tajikistan,1995,54.0,tonnes +3362,Tajikistan,1996,826.0,tonnes +3363,Tajikistan,1997,751.31,tonnes +3364,Tajikistan,1998,676.63,tonnes +3365,Tajikistan,1999,601.94,tonnes +3366,Tajikistan,2000,527.25,tonnes +3367,Tajikistan,2001,452.56,tonnes +3368,Tajikistan,2002,377.88,tonnes +3369,Tajikistan,2003,303.19,tonnes +3370,Tajikistan,2004,228.5,tonnes +3371,Tajikistan,2005,235.4,tonnes +3372,Tajikistan,2006,241.9,tonnes +3373,Tajikistan,2007,247.9,tonnes +3374,Tajikistan,2008,253.5,tonnes +3375,Tajikistan,2009,258.1,tonnes +3376,Tajikistan,2010,262.1,tonnes +3377,Tajikistan,2011,264.6,tonnes +3378,Tajikistan,2012,264.6,tonnes +3379,Tajikistan,2013,264.6,tonnes +3380,Thailand,1990,18849.0,tonnes +3381,Thailand,1991,18849.0,tonnes +3382,Thailand,1992,18849.0,tonnes +3383,Thailand,1993,18849.0,tonnes +3384,Thailand,1994,20448.0,tonnes +3385,Thailand,1995,24062.0,tonnes +3386,Thailand,1996,21901.0,tonnes +3387,Thailand,1997,23960.0,tonnes +3388,Thailand,1998,19212.0,tonnes +3389,Thailand,1999,22761.0,tonnes +3390,Thailand,2000,20334.0,tonnes +3391,Thailand,2001,30629.67,tonnes +3392,Thailand,2002,40925.33,tonnes +3393,Thailand,2003,51221.0,tonnes +3394,Thailand,2004,88548.0,tonnes +3395,Thailand,2005,43831.0,tonnes +3396,Thailand,2006,41220.0,tonnes +3397,Thailand,2007,66858.0,tonnes +3398,Thailand,2008,65423.0,tonnes +3399,Thailand,2009,67933.0,tonnes +3400,Thailand,2010,68986.0,tonnes +3401,Thailand,2011,87191.0,tonnes +3402,Thailand,2012,69921.0,tonnes +3403,Thailand,2013,8190.5,tonnes +3404,Timor-Leste,1990,0.06,tonnes +3405,Timor-Leste,1991,0.06,tonnes +3406,Timor-Leste,1992,0.06,tonnes +3407,Timor-Leste,1993,0.06,tonnes +3408,Timor-Leste,1994,0.06,tonnes +3409,Timor-Leste,1995,0.06,tonnes +3410,Timor-Leste,1996,0.06,tonnes +3411,Timor-Leste,1997,0.06,tonnes +3412,Timor-Leste,1998,0.06,tonnes +3413,Timor-Leste,1999,0.06,tonnes +3414,Timor-Leste,2000,0.06,tonnes +3415,Timor-Leste,2001,0.06,tonnes +3416,Timor-Leste,2002,0.06,tonnes +3417,Timor-Leste,2003,2.35,tonnes +3418,Timor-Leste,2004,0.91,tonnes +3419,Timor-Leste,2005,0.82,tonnes +3420,Timor-Leste,2006,1.65,tonnes +3421,Timor-Leste,2007,2.47,tonnes +3422,Timor-Leste,2008,1.39,tonnes +3423,Timor-Leste,2009,1.78,tonnes +3424,Timor-Leste,2010,1.78,tonnes +3425,Timor-Leste,2011,1.78,tonnes +3426,Timor-Leste,2012,1.78,tonnes +3427,Timor-Leste,2013,1.78,tonnes +3428,Togo,1990,324.0,tonnes +3429,Togo,1991,213.0,tonnes +3430,Togo,1992,192.0,tonnes +3431,Togo,1993,206.0,tonnes +3432,Togo,1994,203.0,tonnes +3433,Togo,1995,198.0,tonnes +3434,Togo,1996,197.0,tonnes +3435,Togo,1997,228.07,tonnes +3436,Togo,1998,259.13,tonnes +3437,Togo,1999,290.2,tonnes +3438,Togo,2000,321.27,tonnes +3439,Togo,2001,352.34,tonnes +3440,Togo,2002,383.4,tonnes +3441,Togo,2003,414.47,tonnes +3442,Togo,2004,584.76,tonnes +3443,Togo,2005,203.09,tonnes +3444,Togo,2006,268.78,tonnes +3445,Togo,2007,262.45,tonnes +3446,Togo,2008,229.94,tonnes +3447,Togo,2009,172.19,tonnes +3448,Togo,2010,242.01,tonnes +3449,Togo,2011,145.74,tonnes +3450,Togo,2012,341.43,tonnes +3451,Togo,2013,371.9,tonnes +3452,Tonga,1990,11.21,tonnes +3453,Tonga,1991,11.21,tonnes +3454,Tonga,1992,11.21,tonnes +3455,Tonga,1993,11.21,tonnes +3456,Tonga,1994,11.21,tonnes +3457,Tonga,1995,11.21,tonnes +3458,Tonga,1996,11.21,tonnes +3459,Tonga,1997,11.21,tonnes +3460,Tonga,1998,11.21,tonnes +3461,Tonga,1999,11.21,tonnes +3462,Tonga,2000,11.21,tonnes +3463,Tonga,2001,11.21,tonnes +3464,Tonga,2002,11.21,tonnes +3465,Tonga,2003,11.21,tonnes +3466,Tonga,2004,11.21,tonnes +3467,Tonga,2005,11.21,tonnes +3468,Tonga,2006,11.21,tonnes +3469,Tonga,2007,11.21,tonnes +3470,Tonga,2008,11.21,tonnes +3471,Tonga,2009,11.21,tonnes +3472,Tonga,2010,11.21,tonnes +3473,Tonga,2011,11.21,tonnes +3474,Tonga,2012,11.21,tonnes +3475,Tonga,2013,11.21,tonnes +3476,Trinidad and Tobago,1990,328.41,tonnes +3477,Trinidad and Tobago,1991,386.21,tonnes +3478,Trinidad and Tobago,1992,384.63,tonnes +3479,Trinidad and Tobago,1993,313.46,tonnes +3480,Trinidad and Tobago,1994,298.71,tonnes +3481,Trinidad and Tobago,1995,283.95,tonnes +3482,Trinidad and Tobago,1996,269.2,tonnes +3483,Trinidad and Tobago,1997,254.44,tonnes +3484,Trinidad and Tobago,1998,239.69,tonnes +3485,Trinidad and Tobago,1999,224.94,tonnes +3486,Trinidad and Tobago,2000,210.18,tonnes +3487,Trinidad and Tobago,2001,195.43,tonnes +3488,Trinidad and Tobago,2002,180.68,tonnes +3489,Trinidad and Tobago,2003,165.92,tonnes +3490,Trinidad and Tobago,2004,151.17,tonnes +3491,Trinidad and Tobago,2005,136.41,tonnes +3492,Trinidad and Tobago,2006,121.66,tonnes +3493,Trinidad and Tobago,2007,106.91,tonnes +3494,Trinidad and Tobago,2008,92.15,tonnes +3495,Trinidad and Tobago,2009,77.4,tonnes +3496,Trinidad and Tobago,2010,2026.91,tonnes +3497,Trinidad and Tobago,2011,170.35,tonnes +3498,Trinidad and Tobago,2012,2101.23,tonnes +3499,Trinidad and Tobago,2013,856.9,tonnes +3500,Tunisia,1990,909.0,tonnes +3501,Tunisia,1991,909.0,tonnes +3502,Tunisia,1992,909.0,tonnes +3503,Tunisia,1993,909.0,tonnes +3504,Tunisia,1994,909.0,tonnes +3505,Tunisia,1995,909.0,tonnes +3506,Tunisia,1996,909.0,tonnes +3507,Tunisia,1997,909.0,tonnes +3508,Tunisia,1998,915.34,tonnes +3509,Tunisia,1999,921.68,tonnes +3510,Tunisia,2000,928.02,tonnes +3511,Tunisia,2001,934.36,tonnes +3512,Tunisia,2002,940.7,tonnes +3513,Tunisia,2003,947.04,tonnes +3514,Tunisia,2004,953.38,tonnes +3515,Tunisia,2005,959.72,tonnes +3516,Tunisia,2006,966.06,tonnes +3517,Tunisia,2007,972.4,tonnes +3518,Tunisia,2008,978.74,tonnes +3519,Tunisia,2009,985.08,tonnes +3520,Tunisia,2010,985.08,tonnes +3521,Tunisia,2011,985.08,tonnes +3522,Tunisia,2012,985.08,tonnes +3523,Tunisia,2013,985.08,tonnes +3524,Turkey,1990,29918.0,tonnes +3525,Turkey,1991,24343.0,tonnes +3526,Turkey,1992,27110.0,tonnes +3527,Turkey,1993,28042.0,tonnes +3528,Turkey,1994,24219.0,tonnes +3529,Turkey,1995,27350.33,tonnes +3530,Turkey,1996,30326.67,tonnes +3531,Turkey,1997,34431.0,tonnes +3532,Turkey,1998,30162.0,tonnes +3533,Turkey,1999,33089.0,tonnes +3534,Turkey,2000,33471.0,tonnes +3535,Turkey,2001,25539.0,tonnes +3536,Turkey,2002,27928.49,tonnes +3537,Turkey,2003,33095.97,tonnes +3538,Turkey,2004,28859.46,tonnes +3539,Turkey,2005,40367.95,tonnes +3540,Turkey,2006,27464.43,tonnes +3541,Turkey,2007,48715.51,tonnes +3542,Turkey,2008,37640.2,tonnes +3543,Turkey,2009,37651.15,tonnes +3544,Turkey,2010,38554.69,tonnes +3545,Turkey,2011,39534.43,tonnes +3546,Turkey,2012,42610.59,tonnes +3547,Turkey,2013,39440.0,tonnes +3548,Turkmenistan,1992,7663.0,tonnes +3549,Turkmenistan,1993,9712.0,tonnes +3550,Turkmenistan,1994,9712.0,tonnes +3551,Turkmenistan,1995,9712.0,tonnes +3552,Turkmenistan,1996,9712.0,tonnes +3553,Turkmenistan,1997,9712.0,tonnes +3554,Turkmenistan,1998,9712.0,tonnes +3555,Turkmenistan,1999,9712.0,tonnes +3556,Turkmenistan,2000,9712.0,tonnes +3557,Turkmenistan,2001,9712.0,tonnes +3558,Turkmenistan,2002,9712.0,tonnes +3559,Turkmenistan,2003,9712.0,tonnes +3560,Turkmenistan,2004,9712.0,tonnes +3561,Turkmenistan,2005,9712.0,tonnes +3562,Turkmenistan,2006,9712.0,tonnes +3563,Turkmenistan,2007,9712.0,tonnes +3564,Turkmenistan,2008,9712.0,tonnes +3565,Turkmenistan,2009,9712.0,tonnes +3566,Turkmenistan,2010,9712.0,tonnes +3567,Turkmenistan,2011,9712.0,tonnes +3568,Turkmenistan,2012,9712.0,tonnes +3569,Turkmenistan,2013,9712.0,tonnes +3570,Uganda,1990,72.0,tonnes +3571,Uganda,1991,72.0,tonnes +3572,Uganda,1992,72.0,tonnes +3573,Uganda,1993,71.0,tonnes +3574,Uganda,1994,59.0,tonnes +3575,Uganda,1995,88.0,tonnes +3576,Uganda,1996,88.0,tonnes +3577,Uganda,1997,88.0,tonnes +3578,Uganda,1998,88.0,tonnes +3579,Uganda,1999,88.0,tonnes +3580,Uganda,2000,88.0,tonnes +3581,Uganda,2001,88.0,tonnes +3582,Uganda,2002,88.0,tonnes +3583,Uganda,2003,88.0,tonnes +3584,Uganda,2004,88.0,tonnes +3585,Uganda,2005,88.0,tonnes +3586,Uganda,2006,88.0,tonnes +3587,Uganda,2007,88.0,tonnes +3588,Uganda,2008,88.0,tonnes +3589,Uganda,2009,88.0,tonnes +3590,Uganda,2010,88.0,tonnes +3591,Uganda,2011,88.0,tonnes +3592,Uganda,2012,88.0,tonnes +3593,Uganda,2013,88.0,tonnes +3594,Ukraine,1992,66772.0,tonnes +3595,Ukraine,1993,61843.46,tonnes +3596,Ukraine,1994,56914.93,tonnes +3597,Ukraine,1995,51986.39,tonnes +3598,Ukraine,1996,47057.85,tonnes +3599,Ukraine,1997,42129.32,tonnes +3600,Ukraine,1998,37200.78,tonnes +3601,Ukraine,1999,32272.25,tonnes +3602,Ukraine,2000,27343.71,tonnes +3603,Ukraine,2001,22415.17,tonnes +3604,Ukraine,2002,17486.64,tonnes +3605,Ukraine,2003,12558.1,tonnes +3606,Ukraine,2004,15344.4,tonnes +3607,Ukraine,2005,23021.7,tonnes +3608,Ukraine,2006,28832.6,tonnes +3609,Ukraine,2007,36476.0,tonnes +3610,Ukraine,2008,54080.5,tonnes +3611,Ukraine,2009,36444.7,tonnes +3612,Ukraine,2010,62534.6,tonnes +3613,Ukraine,2011,79491.7,tonnes +3614,Ukraine,2012,90814.8,tonnes +3615,Ukraine,2013,86781.8,tonnes +3616,United Kingdom,1990,29517.0,tonnes +3617,United Kingdom,1991,29022.0,tonnes +3618,United Kingdom,1992,31077.0,tonnes +3619,United Kingdom,1993,32387.0,tonnes +3620,United Kingdom,1994,33929.0,tonnes +3621,United Kingdom,1995,33743.0,tonnes +3622,United Kingdom,1996,35579.0,tonnes +3623,United Kingdom,1997,35490.0,tonnes +3624,United Kingdom,1998,35422.0,tonnes +3625,United Kingdom,1999,35537.0,tonnes +3626,United Kingdom,2000,33031.28,tonnes +3627,United Kingdom,2001,32893.1,tonnes +3628,United Kingdom,2002,30995.26,tonnes +3629,United Kingdom,2003,30754.4,tonnes +3630,United Kingdom,2004,31223.91,tonnes +3631,United Kingdom,2005,31415.27,tonnes +3632,United Kingdom,2006,22588.09,tonnes +3633,United Kingdom,2007,22331.7,tonnes +3634,United Kingdom,2008,21596.68,tonnes +3635,United Kingdom,2009,21324.22,tonnes +3636,United Kingdom,2010,16770.87,tonnes +3637,United Kingdom,2011,16401.66,tonnes +3638,United Kingdom,2012,17718.64,tonnes +3639,United Kingdom,2013,17673.46,tonnes +3640,United Republic of Tanzania,1990,20.0,tonnes +3641,United Republic of Tanzania,1991,20.0,tonnes +3642,United Republic of Tanzania,1992,20.0,tonnes +3643,United Republic of Tanzania,1993,20.0,tonnes +3644,United Republic of Tanzania,1994,715.0,tonnes +3645,United Republic of Tanzania,1995,557.0,tonnes +3646,United Republic of Tanzania,1996,7.0,tonnes +3647,United Republic of Tanzania,1997,49.0,tonnes +3648,United Republic of Tanzania,1998,1.0,tonnes +3649,United Republic of Tanzania,1999,1.0,tonnes +3650,United Republic of Tanzania,2000,1.0,tonnes +3651,United Republic of Tanzania,2001,1.0,tonnes +3652,United Republic of Tanzania,2002,1.0,tonnes +3653,United Republic of Tanzania,2003,1.0,tonnes +3654,United Republic of Tanzania,2004,1.0,tonnes +3655,United Republic of Tanzania,2005,1.0,tonnes +3656,United Republic of Tanzania,2006,1.0,tonnes +3657,United Republic of Tanzania,2007,1.0,tonnes +3658,United Republic of Tanzania,2008,1.0,tonnes +3659,United Republic of Tanzania,2009,1.0,tonnes +3660,United Republic of Tanzania,2010,1.0,tonnes +3661,United Republic of Tanzania,2011,1.0,tonnes +3662,United Republic of Tanzania,2012,1.0,tonnes +3663,United Republic of Tanzania,2013,1.0,tonnes +3664,United States of America,1990,400975.93,tonnes +3665,United States of America,1991,384646.39,tonnes +3666,United States of America,1992,400975.9,tonnes +3667,United States of America,1993,391903.86,tonnes +3668,United States of America,1994,425922.68,tonnes +3669,United States of America,1995,423201.53,tonnes +3670,United States of America,1996,433180.36,tonnes +3671,United States of America,1997,434540.76,tonnes +3672,United States of America,1998,424562.11,tonnes +3673,United States of America,1999,433633.96,tonnes +3674,United States of America,2000,430005.21,tonnes +3675,United States of America,2001,411407.94,tonnes +3676,United States of America,2002,416851.04,tonnes +3677,United States of America,2003,417758.24,tonnes +3678,United States of America,2004,425015.71,tonnes +3679,United States of America,2005,388275.15,tonnes +3680,United States of America,2006,392810.67,tonnes +3681,United States of America,2007,400068.15,tonnes +3682,United States of America,2008,379202.92,tonnes +3683,United States of America,2009,358337.7,tonnes +3684,United States of America,2010,374818.2,tonnes +3685,United States of America,2011,391298.7,tonnes +3686,United States of America,2012,407779.2,tonnes +3687,United States of America,2013,407779.2,tonnes +3688,Uruguay,1990,1762.01,tonnes +3689,Uruguay,1991,1762.01,tonnes +3690,Uruguay,1992,2072.03,tonnes +3691,Uruguay,1993,1634.02,tonnes +3692,Uruguay,1994,2272.08,tonnes +3693,Uruguay,1995,2413.02,tonnes +3694,Uruguay,1996,3444.01,tonnes +3695,Uruguay,1997,3362.05,tonnes +3696,Uruguay,1998,4239.03,tonnes +3697,Uruguay,1999,3925.03,tonnes +3698,Uruguay,2000,3650.08,tonnes +3699,Uruguay,2001,4433.04,tonnes +3700,Uruguay,2002,5184.5,tonnes +3701,Uruguay,2003,7455.26,tonnes +3702,Uruguay,2004,9017.73,tonnes +3703,Uruguay,2005,9232.47,tonnes +3704,Uruguay,2006,9143.45,tonnes +3705,Uruguay,2007,14057.2,tonnes +3706,Uruguay,2008,13335.22,tonnes +3707,Uruguay,2009,13475.41,tonnes +3708,Uruguay,2010,14981.18,tonnes +3709,Uruguay,2011,17517.76,tonnes +3710,Uruguay,2012,23506.4,tonnes +3711,Uruguay,2013,19028.6,tonnes +3712,USSR,1990,86200.0,tonnes +3713,USSR,1991,92200.0,tonnes +3714,Vanuatu,1990,147.0,tonnes +3715,Vanuatu,1991,222.0,tonnes +3716,Vanuatu,1992,198.0,tonnes +3717,Vanuatu,1993,131.0,tonnes +3718,Vanuatu,1994,131.0,tonnes +3719,Vanuatu,1995,131.0,tonnes +3720,Vanuatu,1996,131.0,tonnes +3721,Vanuatu,1997,131.0,tonnes +3722,Vanuatu,1998,131.0,tonnes +3723,Vanuatu,1999,131.0,tonnes +3724,Vanuatu,2000,131.0,tonnes +3725,Vanuatu,2001,131.0,tonnes +3726,Vanuatu,2002,131.0,tonnes +3727,Vanuatu,2003,131.0,tonnes +3728,Vanuatu,2004,131.0,tonnes +3729,Vanuatu,2005,131.0,tonnes +3730,Vanuatu,2006,131.0,tonnes +3731,Vanuatu,2007,131.0,tonnes +3732,Vanuatu,2008,131.0,tonnes +3733,Vanuatu,2009,131.0,tonnes +3734,Vanuatu,2010,131.0,tonnes +3735,Vanuatu,2011,131.0,tonnes +3736,Vanuatu,2012,131.0,tonnes +3737,Vanuatu,2013,131.0,tonnes +3738,Venezuela (Bolivarian Republic of),1990,1822.0,tonnes +3739,Venezuela (Bolivarian Republic of),1991,2409.0,tonnes +3740,Venezuela (Bolivarian Republic of),1992,3928.0,tonnes +3741,Venezuela (Bolivarian Republic of),1993,3928.0,tonnes +3742,Venezuela (Bolivarian Republic of),1994,3928.0,tonnes +3743,Venezuela (Bolivarian Republic of),1995,3928.0,tonnes +3744,Venezuela (Bolivarian Republic of),1996,3928.0,tonnes +3745,Venezuela (Bolivarian Republic of),1997,3928.0,tonnes +3746,Venezuela (Bolivarian Republic of),1998,3928.0,tonnes +3747,Venezuela (Bolivarian Republic of),1999,3928.0,tonnes +3748,Venezuela (Bolivarian Republic of),2000,3928.0,tonnes +3749,Venezuela (Bolivarian Republic of),2001,3928.0,tonnes +3750,Venezuela (Bolivarian Republic of),2002,3928.0,tonnes +3751,Venezuela (Bolivarian Republic of),2003,3928.0,tonnes +3752,Venezuela (Bolivarian Republic of),2004,3928.0,tonnes +3753,Venezuela (Bolivarian Republic of),2005,3928.0,tonnes +3754,Venezuela (Bolivarian Republic of),2006,3928.0,tonnes +3755,Venezuela (Bolivarian Republic of),2007,3928.0,tonnes +3756,Venezuela (Bolivarian Republic of),2008,3928.0,tonnes +3757,Venezuela (Bolivarian Republic of),2009,3928.0,tonnes +3758,Venezuela (Bolivarian Republic of),2010,3928.0,tonnes +3759,Venezuela (Bolivarian Republic of),2011,3928.0,tonnes +3760,Venezuela (Bolivarian Republic of),2012,3928.0,tonnes +3761,Venezuela (Bolivarian Republic of),2013,3928.0,tonnes +3762,Viet Nam,1990,20912.0,tonnes +3763,Viet Nam,1991,20912.0,tonnes +3764,Viet Nam,1992,20912.0,tonnes +3765,Viet Nam,1993,20912.0,tonnes +3766,Viet Nam,1994,20912.0,tonnes +3767,Viet Nam,1995,24896.0,tonnes +3768,Viet Nam,1996,32745.0,tonnes +3769,Viet Nam,1997,33019.0,tonnes +3770,Viet Nam,1998,20841.0,tonnes +3771,Viet Nam,1999,16695.0,tonnes +3772,Viet Nam,2000,16502.0,tonnes +3773,Viet Nam,2001,19154.0,tonnes +3774,Viet Nam,2002,19154.0,tonnes +3775,Viet Nam,2003,19154.0,tonnes +3776,Viet Nam,2004,19154.0,tonnes +3777,Viet Nam,2005,19154.0,tonnes +3778,Viet Nam,2006,19154.0,tonnes +3779,Viet Nam,2007,19154.0,tonnes +3780,Viet Nam,2008,19154.0,tonnes +3781,Viet Nam,2009,19154.0,tonnes +3782,Viet Nam,2010,19154.0,tonnes +3783,Viet Nam,2011,19154.0,tonnes +3784,Viet Nam,2012,19154.0,tonnes +3785,Viet Nam,2013,19154.0,tonnes +3786,Yemen,1990,713.28,tonnes +3787,Yemen,1991,713.28,tonnes +3788,Yemen,1992,713.28,tonnes +3789,Yemen,1993,713.28,tonnes +3790,Yemen,1994,713.28,tonnes +3791,Yemen,1995,713.28,tonnes +3792,Yemen,1996,713.28,tonnes +3793,Yemen,1997,713.28,tonnes +3794,Yemen,1998,1182.1,tonnes +3795,Yemen,1999,1237.15,tonnes +3796,Yemen,2000,1289.15,tonnes +3797,Yemen,2001,1576.17,tonnes +3798,Yemen,2002,1863.19,tonnes +3799,Yemen,2003,748.13,tonnes +3800,Yemen,2004,614.12,tonnes +3801,Yemen,2005,786.64,tonnes +3802,Yemen,2006,741.65,tonnes +3803,Yemen,2007,193.69,tonnes +3804,Yemen,2008,79.57,tonnes +3805,Yemen,2009,92.36,tonnes +3806,Yemen,2010,133.85,tonnes +3807,Yemen,2011,109.59,tonnes +3808,Yemen,2012,109.59,tonnes +3809,Yemen,2013,109.59,tonnes +3810,Yugoslav SFR,1990,2575.0,tonnes +3811,Yugoslav SFR,1991,2857.0,tonnes +3812,Zambia,1990,1080.0,tonnes +3813,Zambia,1991,1080.0,tonnes +3814,Zambia,1992,1080.0,tonnes +3815,Zambia,1993,1080.0,tonnes +3816,Zambia,1994,1080.0,tonnes +3817,Zambia,1995,716.0,tonnes +3818,Zambia,1996,1670.0,tonnes +3819,Zambia,1997,1616.4,tonnes +3820,Zambia,1998,1562.8,tonnes +3821,Zambia,1999,1509.2,tonnes +3822,Zambia,2000,1455.6,tonnes +3823,Zambia,2001,1402.0,tonnes +3824,Zambia,2002,1348.4,tonnes +3825,Zambia,2003,1294.8,tonnes +3826,Zambia,2004,1241.2,tonnes +3827,Zambia,2005,1187.6,tonnes +3828,Zambia,2006,1134.0,tonnes +3829,Zambia,2007,1080.4,tonnes +3830,Zambia,2008,1026.8,tonnes +3831,Zambia,2009,973.2,tonnes +3832,Zambia,2010,919.6,tonnes +3833,Zambia,2011,866.0,tonnes +3834,Zambia,2012,812.4,tonnes +3835,Zambia,2013,758.8,tonnes +3836,Zimbabwe,1990,5727.0,tonnes +3837,Zimbabwe,1991,6753.0,tonnes +3838,Zimbabwe,1992,3303.0,tonnes +3839,Zimbabwe,1993,1741.0,tonnes +3840,Zimbabwe,1994,1689.0,tonnes +3841,Zimbabwe,1995,2599.0,tonnes +3842,Zimbabwe,1996,2538.0,tonnes +3843,Zimbabwe,1997,2762.0,tonnes +3844,Zimbabwe,1998,2883.0,tonnes +3845,Zimbabwe,1999,2918.18,tonnes +3846,Zimbabwe,2000,2953.36,tonnes +3847,Zimbabwe,2001,2988.54,tonnes +3848,Zimbabwe,2002,3023.72,tonnes +3849,Zimbabwe,2003,3058.9,tonnes +3850,Zimbabwe,2004,3094.08,tonnes +3851,Zimbabwe,2005,3129.27,tonnes +3852,Zimbabwe,2006,3164.45,tonnes +3853,Zimbabwe,2007,3199.63,tonnes +3854,Zimbabwe,2008,3234.81,tonnes +3855,Zimbabwe,2009,3269.99,tonnes +3856,Zimbabwe,2010,3305.17,tonnes +3857,Zimbabwe,2011,3340.35,tonnes +3858,Zimbabwe,2012,3375.53,tonnes +3859,Zimbabwe,2013,2550.07,tonnes diff --git a/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/primary_forest_c.csv b/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/primary_forest_c.csv new file mode 100644 index 0000000..7fbd3d5 --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/primary_forest_c.csv @@ -0,0 +1,5405 @@ +,Country,Year,primary_forest,Unit +0,Afghanistan,1990,0.0,1000 ha +1,Afghanistan,1991,0.0,1000 ha +2,Afghanistan,1992,0.0,1000 ha +3,Afghanistan,1993,0.0,1000 ha +4,Afghanistan,1994,0.0,1000 ha +5,Afghanistan,1995,0.0,1000 ha +6,Afghanistan,1996,0.0,1000 ha +7,Afghanistan,1997,0.0,1000 ha +8,Afghanistan,1998,0.0,1000 ha +9,Afghanistan,1999,0.0,1000 ha +10,Afghanistan,2000,0.0,1000 ha +11,Afghanistan,2001,0.0,1000 ha +12,Afghanistan,2002,0.0,1000 ha +13,Afghanistan,2003,0.0,1000 ha +14,Afghanistan,2004,0.0,1000 ha +15,Afghanistan,2005,0.0,1000 ha +16,Afghanistan,2006,0.0,1000 ha +17,Afghanistan,2007,0.0,1000 ha +18,Afghanistan,2008,0.0,1000 ha +19,Afghanistan,2009,0.0,1000 ha +20,Afghanistan,2010,0.0,1000 ha +21,Afghanistan,2011,0.0,1000 ha +22,Afghanistan,2012,0.0,1000 ha +23,Afghanistan,2013,0.0,1000 ha +24,Albania,1990,84.8,1000 ha +25,Albania,1991,84.8,1000 ha +26,Albania,1992,84.8,1000 ha +27,Albania,1993,84.8,1000 ha +28,Albania,1994,84.8,1000 ha +29,Albania,1995,84.8,1000 ha +30,Albania,1996,84.8,1000 ha +31,Albania,1997,84.8,1000 ha +32,Albania,1998,84.8,1000 ha +33,Albania,1999,84.8,1000 ha +34,Albania,2000,84.8,1000 ha +35,Albania,2001,84.8,1000 ha +36,Albania,2002,84.8,1000 ha +37,Albania,2003,84.8,1000 ha +38,Albania,2004,84.8,1000 ha +39,Albania,2005,84.8,1000 ha +40,Albania,2006,84.8,1000 ha +41,Albania,2007,84.8,1000 ha +42,Albania,2008,84.8,1000 ha +43,Albania,2009,84.8,1000 ha +44,Albania,2010,84.8,1000 ha +45,Albania,2011,84.8,1000 ha +46,Albania,2012,84.8,1000 ha +47,Albania,2013,84.8,1000 ha +48,Algeria,1990,0.0,1000 ha +49,Algeria,1991,0.0,1000 ha +50,Algeria,1992,0.0,1000 ha +51,Algeria,1993,0.0,1000 ha +52,Algeria,1994,0.0,1000 ha +53,Algeria,1995,0.0,1000 ha +54,Algeria,1996,0.0,1000 ha +55,Algeria,1997,0.0,1000 ha +56,Algeria,1998,0.0,1000 ha +57,Algeria,1999,0.0,1000 ha +58,Algeria,2000,0.0,1000 ha +59,Algeria,2001,0.0,1000 ha +60,Algeria,2002,0.0,1000 ha +61,Algeria,2003,0.0,1000 ha +62,Algeria,2004,0.0,1000 ha +63,Algeria,2005,0.0,1000 ha +64,Algeria,2006,0.0,1000 ha +65,Algeria,2007,0.0,1000 ha +66,Algeria,2008,0.0,1000 ha +67,Algeria,2009,0.0,1000 ha +68,Algeria,2010,0.0,1000 ha +69,Algeria,2011,0.0,1000 ha +70,Algeria,2012,0.0,1000 ha +71,Algeria,2013,0.0,1000 ha +72,American Samoa,1990,0.0,1000 ha +73,American Samoa,1991,0.0,1000 ha +74,American Samoa,1992,0.0,1000 ha +75,American Samoa,1993,0.0,1000 ha +76,American Samoa,1994,0.0,1000 ha +77,American Samoa,1995,0.0,1000 ha +78,American Samoa,1996,0.0,1000 ha +79,American Samoa,1997,0.0,1000 ha +80,American Samoa,1998,0.0,1000 ha +81,American Samoa,1999,0.0,1000 ha +82,American Samoa,2000,0.0,1000 ha +83,American Samoa,2001,0.0,1000 ha +84,American Samoa,2002,0.0,1000 ha +85,American Samoa,2003,0.0,1000 ha +86,American Samoa,2004,0.0,1000 ha +87,American Samoa,2005,0.0,1000 ha +88,American Samoa,2006,0.0,1000 ha +89,American Samoa,2007,0.0,1000 ha +90,American Samoa,2008,0.0,1000 ha +91,American Samoa,2009,0.0,1000 ha +92,American Samoa,2010,0.0,1000 ha +93,American Samoa,2011,0.0,1000 ha +94,American Samoa,2012,0.0,1000 ha +95,American Samoa,2013,0.0,1000 ha +96,Andorra,1990,0.0,1000 ha +97,Andorra,1991,0.0,1000 ha +98,Andorra,1992,0.0,1000 ha +99,Andorra,1993,0.0,1000 ha +100,Andorra,1994,0.0,1000 ha +101,Andorra,1995,0.0,1000 ha +102,Andorra,1996,0.0,1000 ha +103,Andorra,1997,0.0,1000 ha +104,Andorra,1998,0.0,1000 ha +105,Andorra,1999,0.0,1000 ha +106,Andorra,2000,0.0,1000 ha +107,Andorra,2001,0.0,1000 ha +108,Andorra,2002,0.0,1000 ha +109,Andorra,2003,0.0,1000 ha +110,Andorra,2004,0.0,1000 ha +111,Andorra,2005,0.0,1000 ha +112,Andorra,2006,0.0,1000 ha +113,Andorra,2007,0.0,1000 ha +114,Andorra,2008,0.0,1000 ha +115,Andorra,2009,0.0,1000 ha +116,Andorra,2010,0.0,1000 ha +117,Andorra,2011,0.0,1000 ha +118,Andorra,2012,0.0,1000 ha +119,Andorra,2013,0.0,1000 ha +120,Angola,1990,0.0,1000 ha +121,Angola,1991,0.0,1000 ha +122,Angola,1992,0.0,1000 ha +123,Angola,1993,0.0,1000 ha +124,Angola,1994,0.0,1000 ha +125,Angola,1995,0.0,1000 ha +126,Angola,1996,0.0,1000 ha +127,Angola,1997,0.0,1000 ha +128,Angola,1998,0.0,1000 ha +129,Angola,1999,0.0,1000 ha +130,Angola,2000,0.0,1000 ha +131,Angola,2001,0.0,1000 ha +132,Angola,2002,0.0,1000 ha +133,Angola,2003,0.0,1000 ha +134,Angola,2004,0.0,1000 ha +135,Angola,2005,0.0,1000 ha +136,Angola,2006,0.0,1000 ha +137,Angola,2007,0.0,1000 ha +138,Angola,2008,0.0,1000 ha +139,Angola,2009,0.0,1000 ha +140,Angola,2010,0.0,1000 ha +141,Angola,2011,0.0,1000 ha +142,Angola,2012,0.0,1000 ha +143,Angola,2013,0.0,1000 ha +144,Anguilla,1990,0.0,1000 ha +145,Anguilla,1991,0.0,1000 ha +146,Anguilla,1992,0.0,1000 ha +147,Anguilla,1993,0.0,1000 ha +148,Anguilla,1994,0.0,1000 ha +149,Anguilla,1995,0.0,1000 ha +150,Anguilla,1996,0.0,1000 ha +151,Anguilla,1997,0.0,1000 ha +152,Anguilla,1998,0.0,1000 ha +153,Anguilla,1999,0.0,1000 ha +154,Anguilla,2000,0.0,1000 ha +155,Anguilla,2001,0.0,1000 ha +156,Anguilla,2002,0.0,1000 ha +157,Anguilla,2003,0.0,1000 ha +158,Anguilla,2004,0.0,1000 ha +159,Anguilla,2005,0.0,1000 ha +160,Anguilla,2006,0.0,1000 ha +161,Anguilla,2007,0.0,1000 ha +162,Anguilla,2008,0.0,1000 ha +163,Anguilla,2009,0.0,1000 ha +164,Anguilla,2010,0.0,1000 ha +165,Anguilla,2011,0.0,1000 ha +166,Anguilla,2012,0.0,1000 ha +167,Anguilla,2013,0.0,1000 ha +168,Antigua and Barbuda,1990,0.0,1000 ha +169,Antigua and Barbuda,1991,0.0,1000 ha +170,Antigua and Barbuda,1992,0.0,1000 ha +171,Antigua and Barbuda,1993,0.0,1000 ha +172,Antigua and Barbuda,1994,0.0,1000 ha +173,Antigua and Barbuda,1995,0.0,1000 ha +174,Antigua and Barbuda,1996,0.0,1000 ha +175,Antigua and Barbuda,1997,0.0,1000 ha +176,Antigua and Barbuda,1998,0.0,1000 ha +177,Antigua and Barbuda,1999,0.0,1000 ha +178,Antigua and Barbuda,2000,0.0,1000 ha +179,Antigua and Barbuda,2001,0.0,1000 ha +180,Antigua and Barbuda,2002,0.0,1000 ha +181,Antigua and Barbuda,2003,0.0,1000 ha +182,Antigua and Barbuda,2004,0.0,1000 ha +183,Antigua and Barbuda,2005,0.0,1000 ha +184,Antigua and Barbuda,2006,0.0,1000 ha +185,Antigua and Barbuda,2007,0.0,1000 ha +186,Antigua and Barbuda,2008,0.0,1000 ha +187,Antigua and Barbuda,2009,0.0,1000 ha +188,Antigua and Barbuda,2010,0.0,1000 ha +189,Antigua and Barbuda,2011,0.0,1000 ha +190,Antigua and Barbuda,2012,0.0,1000 ha +191,Antigua and Barbuda,2013,0.0,1000 ha +192,Argentina,1990,1738.0,1000 ha +193,Argentina,1991,1738.0,1000 ha +194,Argentina,1992,1738.0,1000 ha +195,Argentina,1993,1738.0,1000 ha +196,Argentina,1994,1738.0,1000 ha +197,Argentina,1995,1738.0,1000 ha +198,Argentina,1996,1738.0,1000 ha +199,Argentina,1997,1738.0,1000 ha +200,Argentina,1998,1738.0,1000 ha +201,Argentina,1999,1738.0,1000 ha +202,Argentina,2000,1738.0,1000 ha +203,Argentina,2001,1738.0,1000 ha +204,Argentina,2002,1738.0,1000 ha +205,Argentina,2003,1738.0,1000 ha +206,Argentina,2004,1738.0,1000 ha +207,Argentina,2005,1738.0,1000 ha +208,Argentina,2006,1738.0,1000 ha +209,Argentina,2007,1738.0,1000 ha +210,Argentina,2008,1738.0,1000 ha +211,Argentina,2009,1738.0,1000 ha +212,Argentina,2010,1738.0,1000 ha +213,Argentina,2011,1738.0,1000 ha +214,Argentina,2012,1738.0,1000 ha +215,Argentina,2013,1738.0,1000 ha +216,Armenia,1992,17.0,1000 ha +217,Armenia,1993,17.0,1000 ha +218,Armenia,1994,17.0,1000 ha +219,Armenia,1995,17.0,1000 ha +220,Armenia,1996,17.0,1000 ha +221,Armenia,1997,17.0,1000 ha +222,Armenia,1998,17.0,1000 ha +223,Armenia,1999,17.0,1000 ha +224,Armenia,2000,17.0,1000 ha +225,Armenia,2001,17.0,1000 ha +226,Armenia,2002,17.0,1000 ha +227,Armenia,2003,17.0,1000 ha +228,Armenia,2004,17.0,1000 ha +229,Armenia,2005,17.0,1000 ha +230,Armenia,2006,17.0,1000 ha +231,Armenia,2007,17.0,1000 ha +232,Armenia,2008,17.0,1000 ha +233,Armenia,2009,17.0,1000 ha +234,Armenia,2010,17.0,1000 ha +235,Armenia,2011,17.0,1000 ha +236,Armenia,2012,17.0,1000 ha +237,Armenia,2013,17.0,1000 ha +238,Aruba,1990,0.0,1000 ha +239,Aruba,1991,0.0,1000 ha +240,Aruba,1992,0.0,1000 ha +241,Aruba,1993,0.0,1000 ha +242,Aruba,1994,0.0,1000 ha +243,Aruba,1995,0.0,1000 ha +244,Aruba,1996,0.0,1000 ha +245,Aruba,1997,0.0,1000 ha +246,Aruba,1998,0.0,1000 ha +247,Aruba,1999,0.0,1000 ha +248,Aruba,2000,0.0,1000 ha +249,Aruba,2001,0.0,1000 ha +250,Aruba,2002,0.0,1000 ha +251,Aruba,2003,0.0,1000 ha +252,Aruba,2004,0.0,1000 ha +253,Aruba,2005,0.0,1000 ha +254,Aruba,2006,0.0,1000 ha +255,Aruba,2007,0.0,1000 ha +256,Aruba,2008,0.0,1000 ha +257,Aruba,2009,0.0,1000 ha +258,Aruba,2010,0.0,1000 ha +259,Aruba,2011,0.0,1000 ha +260,Aruba,2012,0.0,1000 ha +261,Aruba,2013,0.0,1000 ha +262,Australia,1990,5233.0,1000 ha +263,Australia,1991,5233.0,1000 ha +264,Australia,1992,5233.0,1000 ha +265,Australia,1993,5233.0,1000 ha +266,Australia,1994,5233.0,1000 ha +267,Australia,1995,5233.0,1000 ha +268,Australia,1996,5233.0,1000 ha +269,Australia,1997,5233.0,1000 ha +270,Australia,1998,5233.0,1000 ha +271,Australia,1999,5233.0,1000 ha +272,Australia,2000,5233.0,1000 ha +273,Australia,2001,5233.0,1000 ha +274,Australia,2002,5233.0,1000 ha +275,Australia,2003,5233.0,1000 ha +276,Australia,2004,5233.0,1000 ha +277,Australia,2005,5233.0,1000 ha +278,Australia,2006,5194.2,1000 ha +279,Australia,2007,5155.4,1000 ha +280,Australia,2008,5116.6,1000 ha +281,Australia,2009,5077.8,1000 ha +282,Australia,2010,5039.0,1000 ha +283,Australia,2011,5039.0,1000 ha +284,Australia,2012,5039.0,1000 ha +285,Australia,2013,5039.0,1000 ha +286,Austria,1990,114.0,1000 ha +287,Austria,1991,114.0,1000 ha +288,Austria,1992,114.0,1000 ha +289,Austria,1993,114.0,1000 ha +290,Austria,1994,114.0,1000 ha +291,Austria,1995,114.0,1000 ha +292,Austria,1996,114.0,1000 ha +293,Austria,1997,114.0,1000 ha +294,Austria,1998,114.0,1000 ha +295,Austria,1999,114.0,1000 ha +296,Austria,2000,114.0,1000 ha +297,Austria,2001,114.0,1000 ha +298,Austria,2002,114.0,1000 ha +299,Austria,2003,114.0,1000 ha +300,Austria,2004,114.0,1000 ha +301,Austria,2005,114.0,1000 ha +302,Austria,2006,114.0,1000 ha +303,Austria,2007,114.0,1000 ha +304,Austria,2008,114.0,1000 ha +305,Austria,2009,114.0,1000 ha +306,Austria,2010,114.0,1000 ha +307,Austria,2011,114.0,1000 ha +308,Austria,2012,114.0,1000 ha +309,Austria,2013,114.0,1000 ha +310,Azerbaijan,1992,0.0,1000 ha +311,Azerbaijan,1993,0.0,1000 ha +312,Azerbaijan,1994,0.0,1000 ha +313,Azerbaijan,1995,0.0,1000 ha +314,Azerbaijan,1996,0.0,1000 ha +315,Azerbaijan,1997,0.0,1000 ha +316,Azerbaijan,1998,0.0,1000 ha +317,Azerbaijan,1999,0.0,1000 ha +318,Azerbaijan,2000,0.0,1000 ha +319,Azerbaijan,2001,0.0,1000 ha +320,Azerbaijan,2002,0.0,1000 ha +321,Azerbaijan,2003,0.0,1000 ha +322,Azerbaijan,2004,0.0,1000 ha +323,Azerbaijan,2005,0.0,1000 ha +324,Azerbaijan,2006,0.0,1000 ha +325,Azerbaijan,2007,0.0,1000 ha +326,Azerbaijan,2008,0.0,1000 ha +327,Azerbaijan,2009,0.0,1000 ha +328,Azerbaijan,2010,0.0,1000 ha +329,Azerbaijan,2011,0.0,1000 ha +330,Azerbaijan,2012,0.0,1000 ha +331,Azerbaijan,2013,0.0,1000 ha +332,Bahamas,1990,0.0,1000 ha +333,Bahamas,1991,0.0,1000 ha +334,Bahamas,1992,0.0,1000 ha +335,Bahamas,1993,0.0,1000 ha +336,Bahamas,1994,0.0,1000 ha +337,Bahamas,1995,0.0,1000 ha +338,Bahamas,1996,0.0,1000 ha +339,Bahamas,1997,0.0,1000 ha +340,Bahamas,1998,0.0,1000 ha +341,Bahamas,1999,0.0,1000 ha +342,Bahamas,2000,0.0,1000 ha +343,Bahamas,2001,0.0,1000 ha +344,Bahamas,2002,0.0,1000 ha +345,Bahamas,2003,0.0,1000 ha +346,Bahamas,2004,0.0,1000 ha +347,Bahamas,2005,0.0,1000 ha +348,Bahamas,2006,0.0,1000 ha +349,Bahamas,2007,0.0,1000 ha +350,Bahamas,2008,0.0,1000 ha +351,Bahamas,2009,0.0,1000 ha +352,Bahamas,2010,0.0,1000 ha +353,Bahamas,2011,0.0,1000 ha +354,Bahamas,2012,0.0,1000 ha +355,Bahamas,2013,0.0,1000 ha +356,Bahrain,1990,0.0,1000 ha +357,Bahrain,1991,0.0,1000 ha +358,Bahrain,1992,0.0,1000 ha +359,Bahrain,1993,0.0,1000 ha +360,Bahrain,1994,0.0,1000 ha +361,Bahrain,1995,0.0,1000 ha +362,Bahrain,1996,0.0,1000 ha +363,Bahrain,1997,0.0,1000 ha +364,Bahrain,1998,0.0,1000 ha +365,Bahrain,1999,0.0,1000 ha +366,Bahrain,2000,0.0,1000 ha +367,Bahrain,2001,0.0,1000 ha +368,Bahrain,2002,0.0,1000 ha +369,Bahrain,2003,0.0,1000 ha +370,Bahrain,2004,0.0,1000 ha +371,Bahrain,2005,0.0,1000 ha +372,Bahrain,2006,0.0,1000 ha +373,Bahrain,2007,0.0,1000 ha +374,Bahrain,2008,0.0,1000 ha +375,Bahrain,2009,0.0,1000 ha +376,Bahrain,2010,0.0,1000 ha +377,Bahrain,2011,0.0,1000 ha +378,Bahrain,2012,0.0,1000 ha +379,Bahrain,2013,0.0,1000 ha +380,Bangladesh,1990,436.0,1000 ha +381,Bangladesh,1991,436.0,1000 ha +382,Bangladesh,1992,436.0,1000 ha +383,Bangladesh,1993,436.0,1000 ha +384,Bangladesh,1994,436.0,1000 ha +385,Bangladesh,1995,436.0,1000 ha +386,Bangladesh,1996,436.0,1000 ha +387,Bangladesh,1997,436.0,1000 ha +388,Bangladesh,1998,436.0,1000 ha +389,Bangladesh,1999,436.0,1000 ha +390,Bangladesh,2000,436.0,1000 ha +391,Bangladesh,2001,436.0,1000 ha +392,Bangladesh,2002,436.0,1000 ha +393,Bangladesh,2003,436.0,1000 ha +394,Bangladesh,2004,436.0,1000 ha +395,Bangladesh,2005,436.0,1000 ha +396,Bangladesh,2006,436.0,1000 ha +397,Bangladesh,2007,436.0,1000 ha +398,Bangladesh,2008,436.0,1000 ha +399,Bangladesh,2009,436.0,1000 ha +400,Bangladesh,2010,436.0,1000 ha +401,Bangladesh,2011,431.0,1000 ha +402,Bangladesh,2012,426.0,1000 ha +403,Bangladesh,2013,421.0,1000 ha +404,Barbados,1990,0.003,1000 ha +405,Barbados,1991,0.003,1000 ha +406,Barbados,1992,0.003,1000 ha +407,Barbados,1993,0.003,1000 ha +408,Barbados,1994,0.003,1000 ha +409,Barbados,1995,0.003,1000 ha +410,Barbados,1996,0.003,1000 ha +411,Barbados,1997,0.003,1000 ha +412,Barbados,1998,0.003,1000 ha +413,Barbados,1999,0.003,1000 ha +414,Barbados,2000,0.003,1000 ha +415,Barbados,2001,0.003,1000 ha +416,Barbados,2002,0.003,1000 ha +417,Barbados,2003,0.003,1000 ha +418,Barbados,2004,0.003,1000 ha +419,Barbados,2005,0.003,1000 ha +420,Barbados,2006,0.003,1000 ha +421,Barbados,2007,0.003,1000 ha +422,Barbados,2008,0.003,1000 ha +423,Barbados,2009,0.003,1000 ha +424,Barbados,2010,0.003,1000 ha +425,Barbados,2011,0.003,1000 ha +426,Barbados,2012,0.003,1000 ha +427,Barbados,2013,0.003,1000 ha +428,Belarus,1992,400.0,1000 ha +429,Belarus,1993,400.0,1000 ha +430,Belarus,1994,400.0,1000 ha +431,Belarus,1995,400.0,1000 ha +432,Belarus,1996,400.0,1000 ha +433,Belarus,1997,400.0,1000 ha +434,Belarus,1998,400.0,1000 ha +435,Belarus,1999,400.0,1000 ha +436,Belarus,2000,400.0,1000 ha +437,Belarus,2001,400.0,1000 ha +438,Belarus,2002,400.0,1000 ha +439,Belarus,2003,400.0,1000 ha +440,Belarus,2004,400.0,1000 ha +441,Belarus,2005,400.0,1000 ha +442,Belarus,2006,400.0,1000 ha +443,Belarus,2007,400.0,1000 ha +444,Belarus,2008,400.0,1000 ha +445,Belarus,2009,400.0,1000 ha +446,Belarus,2010,400.0,1000 ha +447,Belarus,2011,400.0,1000 ha +448,Belarus,2012,400.0,1000 ha +449,Belarus,2013,400.0,1000 ha +450,Belgium,2000,0.0,1000 ha +451,Belgium,2001,0.0,1000 ha +452,Belgium,2002,0.0,1000 ha +453,Belgium,2003,0.0,1000 ha +454,Belgium,2004,0.0,1000 ha +455,Belgium,2005,0.0,1000 ha +456,Belgium,2006,0.0,1000 ha +457,Belgium,2007,0.0,1000 ha +458,Belgium,2008,0.0,1000 ha +459,Belgium,2009,0.0,1000 ha +460,Belgium,2010,0.0,1000 ha +461,Belgium,2011,0.0,1000 ha +462,Belgium,2012,0.0,1000 ha +463,Belgium,2013,0.0,1000 ha +464,Belgium-Luxembourg,1990,0.0,1000 ha +465,Belgium-Luxembourg,1991,0.0,1000 ha +466,Belgium-Luxembourg,1992,0.0,1000 ha +467,Belgium-Luxembourg,1993,0.0,1000 ha +468,Belgium-Luxembourg,1994,0.0,1000 ha +469,Belgium-Luxembourg,1995,0.0,1000 ha +470,Belgium-Luxembourg,1996,0.0,1000 ha +471,Belgium-Luxembourg,1997,0.0,1000 ha +472,Belgium-Luxembourg,1998,0.0,1000 ha +473,Belgium-Luxembourg,1999,0.0,1000 ha +474,Belize,1990,599.0,1000 ha +475,Belize,1991,599.0,1000 ha +476,Belize,1992,599.0,1000 ha +477,Belize,1993,599.0,1000 ha +478,Belize,1994,599.0,1000 ha +479,Belize,1995,599.0,1000 ha +480,Belize,1996,599.0,1000 ha +481,Belize,1997,599.0,1000 ha +482,Belize,1998,599.0,1000 ha +483,Belize,1999,599.0,1000 ha +484,Belize,2000,599.0,1000 ha +485,Belize,2001,599.0,1000 ha +486,Belize,2002,599.0,1000 ha +487,Belize,2003,599.0,1000 ha +488,Belize,2004,599.0,1000 ha +489,Belize,2005,599.0,1000 ha +490,Belize,2006,599.0,1000 ha +491,Belize,2007,599.0,1000 ha +492,Belize,2008,599.0,1000 ha +493,Belize,2009,599.0,1000 ha +494,Belize,2010,599.0,1000 ha +495,Belize,2011,599.0,1000 ha +496,Belize,2012,599.0,1000 ha +497,Belize,2013,599.0,1000 ha +498,Benin,1990,0.0,1000 ha +499,Benin,1991,0.0,1000 ha +500,Benin,1992,0.0,1000 ha +501,Benin,1993,0.0,1000 ha +502,Benin,1994,0.0,1000 ha +503,Benin,1995,0.0,1000 ha +504,Benin,1996,0.0,1000 ha +505,Benin,1997,0.0,1000 ha +506,Benin,1998,0.0,1000 ha +507,Benin,1999,0.0,1000 ha +508,Benin,2000,0.0,1000 ha +509,Benin,2001,0.0,1000 ha +510,Benin,2002,0.0,1000 ha +511,Benin,2003,0.0,1000 ha +512,Benin,2004,0.0,1000 ha +513,Benin,2005,0.0,1000 ha +514,Benin,2006,0.0,1000 ha +515,Benin,2007,0.0,1000 ha +516,Benin,2008,0.0,1000 ha +517,Benin,2009,0.0,1000 ha +518,Benin,2010,0.0,1000 ha +519,Benin,2011,0.0,1000 ha +520,Benin,2012,0.0,1000 ha +521,Benin,2013,0.0,1000 ha +522,Bermuda,1990,0.0,1000 ha +523,Bermuda,1991,0.0,1000 ha +524,Bermuda,1992,0.0,1000 ha +525,Bermuda,1993,0.0,1000 ha +526,Bermuda,1994,0.0,1000 ha +527,Bermuda,1995,0.0,1000 ha +528,Bermuda,1996,0.0,1000 ha +529,Bermuda,1997,0.0,1000 ha +530,Bermuda,1998,0.0,1000 ha +531,Bermuda,1999,0.0,1000 ha +532,Bermuda,2000,0.0,1000 ha +533,Bermuda,2001,0.0,1000 ha +534,Bermuda,2002,0.0,1000 ha +535,Bermuda,2003,0.0,1000 ha +536,Bermuda,2004,0.0,1000 ha +537,Bermuda,2005,0.0,1000 ha +538,Bermuda,2006,0.0,1000 ha +539,Bermuda,2007,0.0,1000 ha +540,Bermuda,2008,0.0,1000 ha +541,Bermuda,2009,0.0,1000 ha +542,Bermuda,2010,0.0,1000 ha +543,Bermuda,2011,0.0,1000 ha +544,Bermuda,2012,0.0,1000 ha +545,Bermuda,2013,0.0,1000 ha +546,Bhutan,1990,413.0,1000 ha +547,Bhutan,1991,413.0,1000 ha +548,Bhutan,1992,413.0,1000 ha +549,Bhutan,1993,413.0,1000 ha +550,Bhutan,1994,413.0,1000 ha +551,Bhutan,1995,413.0,1000 ha +552,Bhutan,1996,413.0,1000 ha +553,Bhutan,1997,413.0,1000 ha +554,Bhutan,1998,413.0,1000 ha +555,Bhutan,1999,413.0,1000 ha +556,Bhutan,2000,413.0,1000 ha +557,Bhutan,2001,413.0,1000 ha +558,Bhutan,2002,413.0,1000 ha +559,Bhutan,2003,413.0,1000 ha +560,Bhutan,2004,413.0,1000 ha +561,Bhutan,2005,413.0,1000 ha +562,Bhutan,2006,413.0,1000 ha +563,Bhutan,2007,413.0,1000 ha +564,Bhutan,2008,413.0,1000 ha +565,Bhutan,2009,413.0,1000 ha +566,Bhutan,2010,413.0,1000 ha +567,Bhutan,2011,413.0,1000 ha +568,Bhutan,2012,413.0,1000 ha +569,Bhutan,2013,413.0,1000 ha +570,Bolivia (Plurinational State of),1990,40804.0,1000 ha +571,Bolivia (Plurinational State of),1991,40628.2,1000 ha +572,Bolivia (Plurinational State of),1992,40452.4,1000 ha +573,Bolivia (Plurinational State of),1993,40276.6,1000 ha +574,Bolivia (Plurinational State of),1994,40100.8,1000 ha +575,Bolivia (Plurinational State of),1995,39925.0,1000 ha +576,Bolivia (Plurinational State of),1996,39749.2,1000 ha +577,Bolivia (Plurinational State of),1997,39573.4,1000 ha +578,Bolivia (Plurinational State of),1998,39397.6,1000 ha +579,Bolivia (Plurinational State of),1999,39221.8,1000 ha +580,Bolivia (Plurinational State of),2000,39046.0,1000 ha +581,Bolivia (Plurinational State of),2001,38869.6,1000 ha +582,Bolivia (Plurinational State of),2002,38693.2,1000 ha +583,Bolivia (Plurinational State of),2003,38516.8,1000 ha +584,Bolivia (Plurinational State of),2004,38340.4,1000 ha +585,Bolivia (Plurinational State of),2005,38164.0,1000 ha +586,Bolivia (Plurinational State of),2006,37964.0,1000 ha +587,Bolivia (Plurinational State of),2007,37764.0,1000 ha +588,Bolivia (Plurinational State of),2008,37564.0,1000 ha +589,Bolivia (Plurinational State of),2009,37364.0,1000 ha +590,Bolivia (Plurinational State of),2010,37164.0,1000 ha +591,Bolivia (Plurinational State of),2011,36964.0,1000 ha +592,Bolivia (Plurinational State of),2012,36764.0,1000 ha +593,Bolivia (Plurinational State of),2013,36564.0,1000 ha +594,Bosnia and Herzegovina,1992,2.0,1000 ha +595,Bosnia and Herzegovina,1993,2.0,1000 ha +596,Bosnia and Herzegovina,1994,2.0,1000 ha +597,Bosnia and Herzegovina,1995,2.0,1000 ha +598,Bosnia and Herzegovina,1996,2.0,1000 ha +599,Bosnia and Herzegovina,1997,2.0,1000 ha +600,Bosnia and Herzegovina,1998,2.0,1000 ha +601,Bosnia and Herzegovina,1999,2.0,1000 ha +602,Bosnia and Herzegovina,2000,2.0,1000 ha +603,Bosnia and Herzegovina,2001,2.0,1000 ha +604,Bosnia and Herzegovina,2002,2.0,1000 ha +605,Bosnia and Herzegovina,2003,2.0,1000 ha +606,Bosnia and Herzegovina,2004,2.0,1000 ha +607,Bosnia and Herzegovina,2005,2.0,1000 ha +608,Bosnia and Herzegovina,2006,2.0,1000 ha +609,Bosnia and Herzegovina,2007,2.0,1000 ha +610,Bosnia and Herzegovina,2008,2.0,1000 ha +611,Bosnia and Herzegovina,2009,2.0,1000 ha +612,Bosnia and Herzegovina,2010,2.0,1000 ha +613,Bosnia and Herzegovina,2011,2.0,1000 ha +614,Bosnia and Herzegovina,2012,2.0,1000 ha +615,Bosnia and Herzegovina,2013,2.0,1000 ha +616,Botswana,1990,0.0,1000 ha +617,Botswana,1991,0.0,1000 ha +618,Botswana,1992,0.0,1000 ha +619,Botswana,1993,0.0,1000 ha +620,Botswana,1994,0.0,1000 ha +621,Botswana,1995,0.0,1000 ha +622,Botswana,1996,0.0,1000 ha +623,Botswana,1997,0.0,1000 ha +624,Botswana,1998,0.0,1000 ha +625,Botswana,1999,0.0,1000 ha +626,Botswana,2000,0.0,1000 ha +627,Botswana,2001,0.0,1000 ha +628,Botswana,2002,0.0,1000 ha +629,Botswana,2003,0.0,1000 ha +630,Botswana,2004,0.0,1000 ha +631,Botswana,2005,0.0,1000 ha +632,Botswana,2006,0.0,1000 ha +633,Botswana,2007,0.0,1000 ha +634,Botswana,2008,0.0,1000 ha +635,Botswana,2009,0.0,1000 ha +636,Botswana,2010,0.0,1000 ha +637,Botswana,2011,0.0,1000 ha +638,Botswana,2012,0.0,1000 ha +639,Botswana,2013,0.0,1000 ha +640,Brazil,1990,218240.0,1000 ha +641,Brazil,1991,217462.6,1000 ha +642,Brazil,1992,216685.2,1000 ha +643,Brazil,1993,215907.8,1000 ha +644,Brazil,1994,215130.4,1000 ha +645,Brazil,1995,214353.0,1000 ha +646,Brazil,1996,213575.6,1000 ha +647,Brazil,1997,212798.2,1000 ha +648,Brazil,1998,212020.8,1000 ha +649,Brazil,1999,211243.4,1000 ha +650,Brazil,2000,210466.0,1000 ha +651,Brazil,2001,209688.4,1000 ha +652,Brazil,2002,208910.8,1000 ha +653,Brazil,2003,208133.2,1000 ha +654,Brazil,2004,207355.6,1000 ha +655,Brazil,2005,206578.0,1000 ha +656,Brazil,2006,205800.6,1000 ha +657,Brazil,2007,205023.2,1000 ha +658,Brazil,2008,204245.8,1000 ha +659,Brazil,2009,203468.4,1000 ha +660,Brazil,2010,202691.0,1000 ha +661,Brazil,2011,202691.0,1000 ha +662,Brazil,2012,202691.0,1000 ha +663,Brazil,2013,202691.0,1000 ha +664,British Virgin Islands,1990,0.0,1000 ha +665,British Virgin Islands,1991,0.0,1000 ha +666,British Virgin Islands,1992,0.0,1000 ha +667,British Virgin Islands,1993,0.0,1000 ha +668,British Virgin Islands,1994,0.0,1000 ha +669,British Virgin Islands,1995,0.0,1000 ha +670,British Virgin Islands,1996,0.0,1000 ha +671,British Virgin Islands,1997,0.0,1000 ha +672,British Virgin Islands,1998,0.0,1000 ha +673,British Virgin Islands,1999,0.0,1000 ha +674,British Virgin Islands,2000,0.0,1000 ha +675,British Virgin Islands,2001,0.0,1000 ha +676,British Virgin Islands,2002,0.0,1000 ha +677,British Virgin Islands,2003,0.0,1000 ha +678,British Virgin Islands,2004,0.0,1000 ha +679,British Virgin Islands,2005,0.0,1000 ha +680,British Virgin Islands,2006,0.0,1000 ha +681,British Virgin Islands,2007,0.0,1000 ha +682,British Virgin Islands,2008,0.0,1000 ha +683,British Virgin Islands,2009,0.0,1000 ha +684,British Virgin Islands,2010,0.0,1000 ha +685,British Virgin Islands,2011,0.0,1000 ha +686,British Virgin Islands,2012,0.0,1000 ha +687,British Virgin Islands,2013,0.0,1000 ha +688,Brunei Darussalam,1990,313.0,1000 ha +689,Brunei Darussalam,1991,310.5,1000 ha +690,Brunei Darussalam,1992,308.0,1000 ha +691,Brunei Darussalam,1993,305.5,1000 ha +692,Brunei Darussalam,1994,303.0,1000 ha +693,Brunei Darussalam,1995,300.5,1000 ha +694,Brunei Darussalam,1996,298.0,1000 ha +695,Brunei Darussalam,1997,295.5,1000 ha +696,Brunei Darussalam,1998,293.0,1000 ha +697,Brunei Darussalam,1999,290.5,1000 ha +698,Brunei Darussalam,2000,288.0,1000 ha +699,Brunei Darussalam,2001,285.4,1000 ha +700,Brunei Darussalam,2002,282.8,1000 ha +701,Brunei Darussalam,2003,280.2,1000 ha +702,Brunei Darussalam,2004,277.6,1000 ha +703,Brunei Darussalam,2005,275.0,1000 ha +704,Brunei Darussalam,2006,272.6,1000 ha +705,Brunei Darussalam,2007,270.2,1000 ha +706,Brunei Darussalam,2008,267.8,1000 ha +707,Brunei Darussalam,2009,265.4,1000 ha +708,Brunei Darussalam,2010,263.0,1000 ha +709,Brunei Darussalam,2011,263.0,1000 ha +710,Brunei Darussalam,2012,263.0,1000 ha +711,Brunei Darussalam,2013,263.0,1000 ha +712,Bulgaria,1990,157.0,1000 ha +713,Bulgaria,1991,168.3,1000 ha +714,Bulgaria,1992,179.6,1000 ha +715,Bulgaria,1993,190.9,1000 ha +716,Bulgaria,1994,202.2,1000 ha +717,Bulgaria,1995,213.5,1000 ha +718,Bulgaria,1996,224.8,1000 ha +719,Bulgaria,1997,236.1,1000 ha +720,Bulgaria,1998,247.4,1000 ha +721,Bulgaria,1999,258.7,1000 ha +722,Bulgaria,2000,270.0,1000 ha +723,Bulgaria,2001,276.8,1000 ha +724,Bulgaria,2002,283.6,1000 ha +725,Bulgaria,2003,290.4,1000 ha +726,Bulgaria,2004,297.2,1000 ha +727,Bulgaria,2005,304.0,1000 ha +728,Bulgaria,2006,362.6,1000 ha +729,Bulgaria,2007,421.2,1000 ha +730,Bulgaria,2008,479.8,1000 ha +731,Bulgaria,2009,538.4,1000 ha +732,Bulgaria,2010,597.0,1000 ha +733,Bulgaria,2011,597.0,1000 ha +734,Bulgaria,2012,597.0,1000 ha +735,Bulgaria,2013,597.0,1000 ha +736,Burkina Faso,1990,0.0,1000 ha +737,Burkina Faso,1991,0.0,1000 ha +738,Burkina Faso,1992,0.0,1000 ha +739,Burkina Faso,1993,0.0,1000 ha +740,Burkina Faso,1994,0.0,1000 ha +741,Burkina Faso,1995,0.0,1000 ha +742,Burkina Faso,1996,0.0,1000 ha +743,Burkina Faso,1997,0.0,1000 ha +744,Burkina Faso,1998,0.0,1000 ha +745,Burkina Faso,1999,0.0,1000 ha +746,Burkina Faso,2000,0.0,1000 ha +747,Burkina Faso,2001,0.0,1000 ha +748,Burkina Faso,2002,0.0,1000 ha +749,Burkina Faso,2003,0.0,1000 ha +750,Burkina Faso,2004,0.0,1000 ha +751,Burkina Faso,2005,0.0,1000 ha +752,Burkina Faso,2006,0.0,1000 ha +753,Burkina Faso,2007,0.0,1000 ha +754,Burkina Faso,2008,0.0,1000 ha +755,Burkina Faso,2009,0.0,1000 ha +756,Burkina Faso,2010,0.0,1000 ha +757,Burkina Faso,2011,0.0,1000 ha +758,Burkina Faso,2012,0.0,1000 ha +759,Burkina Faso,2013,0.0,1000 ha +760,Burundi,1990,40.0,1000 ha +761,Burundi,1991,40.0,1000 ha +762,Burundi,1992,40.0,1000 ha +763,Burundi,1993,40.0,1000 ha +764,Burundi,1994,40.0,1000 ha +765,Burundi,1995,40.0,1000 ha +766,Burundi,1996,40.0,1000 ha +767,Burundi,1997,40.0,1000 ha +768,Burundi,1998,40.0,1000 ha +769,Burundi,1999,40.0,1000 ha +770,Burundi,2000,40.0,1000 ha +771,Burundi,2001,40.0,1000 ha +772,Burundi,2002,40.0,1000 ha +773,Burundi,2003,40.0,1000 ha +774,Burundi,2004,40.0,1000 ha +775,Burundi,2005,40.0,1000 ha +776,Burundi,2006,40.0,1000 ha +777,Burundi,2007,40.0,1000 ha +778,Burundi,2008,40.0,1000 ha +779,Burundi,2009,40.0,1000 ha +780,Burundi,2010,40.0,1000 ha +781,Burundi,2011,40.0,1000 ha +782,Burundi,2012,40.0,1000 ha +783,Burundi,2013,40.0,1000 ha +784,Cabo Verde,1990,0.0,1000 ha +785,Cabo Verde,1991,0.0,1000 ha +786,Cabo Verde,1992,0.0,1000 ha +787,Cabo Verde,1993,0.0,1000 ha +788,Cabo Verde,1994,0.0,1000 ha +789,Cabo Verde,1995,0.0,1000 ha +790,Cabo Verde,1996,0.0,1000 ha +791,Cabo Verde,1997,0.0,1000 ha +792,Cabo Verde,1998,0.0,1000 ha +793,Cabo Verde,1999,0.0,1000 ha +794,Cabo Verde,2000,0.0,1000 ha +795,Cabo Verde,2001,0.0,1000 ha +796,Cabo Verde,2002,0.0,1000 ha +797,Cabo Verde,2003,0.0,1000 ha +798,Cabo Verde,2004,0.0,1000 ha +799,Cabo Verde,2005,0.0,1000 ha +800,Cabo Verde,2006,0.0,1000 ha +801,Cabo Verde,2007,0.0,1000 ha +802,Cabo Verde,2008,0.0,1000 ha +803,Cabo Verde,2009,0.0,1000 ha +804,Cabo Verde,2010,0.0,1000 ha +805,Cabo Verde,2011,0.0,1000 ha +806,Cabo Verde,2012,0.0,1000 ha +807,Cabo Verde,2013,0.0,1000 ha +808,Cambodia,1990,766.0,1000 ha +809,Cambodia,1991,735.0,1000 ha +810,Cambodia,1992,704.0,1000 ha +811,Cambodia,1993,673.0,1000 ha +812,Cambodia,1994,642.0,1000 ha +813,Cambodia,1995,611.0,1000 ha +814,Cambodia,1996,580.0,1000 ha +815,Cambodia,1997,549.0,1000 ha +816,Cambodia,1998,518.0,1000 ha +817,Cambodia,1999,487.0,1000 ha +818,Cambodia,2000,456.0,1000 ha +819,Cambodia,2001,429.2,1000 ha +820,Cambodia,2002,402.4,1000 ha +821,Cambodia,2003,375.6,1000 ha +822,Cambodia,2004,348.8,1000 ha +823,Cambodia,2005,322.0,1000 ha +824,Cambodia,2006,322.0,1000 ha +825,Cambodia,2007,322.0,1000 ha +826,Cambodia,2008,322.0,1000 ha +827,Cambodia,2009,322.0,1000 ha +828,Cambodia,2010,322.0,1000 ha +829,Cambodia,2011,322.0,1000 ha +830,Cambodia,2012,322.0,1000 ha +831,Cambodia,2013,322.0,1000 ha +832,Cameroon,1990,0.0,1000 ha +833,Cameroon,1991,0.0,1000 ha +834,Cameroon,1992,0.0,1000 ha +835,Cameroon,1993,0.0,1000 ha +836,Cameroon,1994,0.0,1000 ha +837,Cameroon,1995,0.0,1000 ha +838,Cameroon,1996,0.0,1000 ha +839,Cameroon,1997,0.0,1000 ha +840,Cameroon,1998,0.0,1000 ha +841,Cameroon,1999,0.0,1000 ha +842,Cameroon,2000,0.0,1000 ha +843,Cameroon,2001,0.0,1000 ha +844,Cameroon,2002,0.0,1000 ha +845,Cameroon,2003,0.0,1000 ha +846,Cameroon,2004,0.0,1000 ha +847,Cameroon,2005,0.0,1000 ha +848,Cameroon,2006,0.0,1000 ha +849,Cameroon,2007,0.0,1000 ha +850,Cameroon,2008,0.0,1000 ha +851,Cameroon,2009,0.0,1000 ha +852,Cameroon,2010,0.0,1000 ha +853,Cameroon,2011,0.0,1000 ha +854,Cameroon,2012,0.0,1000 ha +855,Cameroon,2013,0.0,1000 ha +856,Canada,1990,206638.0,1000 ha +857,Canada,1991,206610.1,1000 ha +858,Canada,1992,206582.2,1000 ha +859,Canada,1993,206554.3,1000 ha +860,Canada,1994,206526.4,1000 ha +861,Canada,1995,206498.5,1000 ha +862,Canada,1996,206470.6,1000 ha +863,Canada,1997,206442.7,1000 ha +864,Canada,1998,206414.8,1000 ha +865,Canada,1999,206386.9,1000 ha +866,Canada,2000,206359.0,1000 ha +867,Canada,2001,206332.2,1000 ha +868,Canada,2002,206305.4,1000 ha +869,Canada,2003,206278.6,1000 ha +870,Canada,2004,206251.8,1000 ha +871,Canada,2005,206225.0,1000 ha +872,Canada,2006,206192.4,1000 ha +873,Canada,2007,206159.8,1000 ha +874,Canada,2008,206127.2,1000 ha +875,Canada,2009,206094.6,1000 ha +876,Canada,2010,206062.0,1000 ha +877,Canada,2011,206034.4,1000 ha +878,Canada,2012,206006.8,1000 ha +879,Canada,2013,205979.2,1000 ha +880,Cayman Islands,1990,0.0,1000 ha +881,Cayman Islands,1991,0.0,1000 ha +882,Cayman Islands,1992,0.0,1000 ha +883,Cayman Islands,1993,0.0,1000 ha +884,Cayman Islands,1994,0.0,1000 ha +885,Cayman Islands,1995,0.0,1000 ha +886,Cayman Islands,1996,0.0,1000 ha +887,Cayman Islands,1997,0.0,1000 ha +888,Cayman Islands,1998,0.0,1000 ha +889,Cayman Islands,1999,0.0,1000 ha +890,Cayman Islands,2000,0.0,1000 ha +891,Cayman Islands,2001,0.0,1000 ha +892,Cayman Islands,2002,0.0,1000 ha +893,Cayman Islands,2003,0.0,1000 ha +894,Cayman Islands,2004,0.0,1000 ha +895,Cayman Islands,2005,0.0,1000 ha +896,Cayman Islands,2006,0.0,1000 ha +897,Cayman Islands,2007,0.0,1000 ha +898,Cayman Islands,2008,0.0,1000 ha +899,Cayman Islands,2009,0.0,1000 ha +900,Cayman Islands,2010,0.0,1000 ha +901,Cayman Islands,2011,0.0,1000 ha +902,Cayman Islands,2012,0.0,1000 ha +903,Cayman Islands,2013,0.0,1000 ha +904,Central African Republic,1990,3900.0,1000 ha +905,Central African Republic,1991,3823.5,1000 ha +906,Central African Republic,1992,3747.0,1000 ha +907,Central African Republic,1993,3670.5,1000 ha +908,Central African Republic,1994,3594.0,1000 ha +909,Central African Republic,1995,3517.5,1000 ha +910,Central African Republic,1996,3441.0,1000 ha +911,Central African Republic,1997,3364.5,1000 ha +912,Central African Republic,1998,3288.0,1000 ha +913,Central African Republic,1999,3211.5,1000 ha +914,Central African Republic,2000,3135.0,1000 ha +915,Central African Republic,2001,3058.4,1000 ha +916,Central African Republic,2002,2981.8,1000 ha +917,Central African Republic,2003,2905.2,1000 ha +918,Central African Republic,2004,2828.6,1000 ha +919,Central African Republic,2005,2752.0,1000 ha +920,Central African Republic,2006,2675.6,1000 ha +921,Central African Republic,2007,2599.2,1000 ha +922,Central African Republic,2008,2522.8,1000 ha +923,Central African Republic,2009,2446.4,1000 ha +924,Central African Republic,2010,2370.0,1000 ha +925,Central African Republic,2011,2293.6,1000 ha +926,Central African Republic,2012,2217.2,1000 ha +927,Central African Republic,2013,2140.8,1000 ha +928,Chad,1990,0.0,1000 ha +929,Chad,1991,0.0,1000 ha +930,Chad,1992,0.0,1000 ha +931,Chad,1993,0.0,1000 ha +932,Chad,1994,0.0,1000 ha +933,Chad,1995,0.0,1000 ha +934,Chad,1996,0.0,1000 ha +935,Chad,1997,0.0,1000 ha +936,Chad,1998,0.0,1000 ha +937,Chad,1999,0.0,1000 ha +938,Chad,2000,0.0,1000 ha +939,Chad,2001,0.0,1000 ha +940,Chad,2002,0.0,1000 ha +941,Chad,2003,0.0,1000 ha +942,Chad,2004,0.0,1000 ha +943,Chad,2005,0.0,1000 ha +944,Chad,2006,0.0,1000 ha +945,Chad,2007,0.0,1000 ha +946,Chad,2008,0.0,1000 ha +947,Chad,2009,0.0,1000 ha +948,Chad,2010,0.0,1000 ha +949,Chad,2011,0.0,1000 ha +950,Chad,2012,0.0,1000 ha +951,Chad,2013,0.0,1000 ha +952,Channel Islands,1990,0.0,1000 ha +953,Channel Islands,1991,0.0,1000 ha +954,Channel Islands,1992,0.0,1000 ha +955,Channel Islands,1993,0.0,1000 ha +956,Channel Islands,1994,0.0,1000 ha +957,Channel Islands,1995,0.0,1000 ha +958,Channel Islands,1996,0.0,1000 ha +959,Channel Islands,1997,0.0,1000 ha +960,Channel Islands,1998,0.0,1000 ha +961,Channel Islands,1999,0.0,1000 ha +962,Channel Islands,2000,0.0,1000 ha +963,Channel Islands,2001,0.0,1000 ha +964,Channel Islands,2002,0.0,1000 ha +965,Channel Islands,2003,0.0,1000 ha +966,Channel Islands,2004,0.0,1000 ha +967,Channel Islands,2005,0.0,1000 ha +968,Channel Islands,2006,0.0,1000 ha +969,Channel Islands,2007,0.0,1000 ha +970,Channel Islands,2008,0.0,1000 ha +971,Channel Islands,2009,0.0,1000 ha +972,Channel Islands,2010,0.0,1000 ha +973,Channel Islands,2011,0.0,1000 ha +974,Channel Islands,2012,0.0,1000 ha +975,Channel Islands,2013,0.0,1000 ha +976,Chile,1990,4631.0,1000 ha +977,Chile,1991,4621.5,1000 ha +978,Chile,1992,4612.0,1000 ha +979,Chile,1993,4602.5,1000 ha +980,Chile,1994,4593.0,1000 ha +981,Chile,1995,4583.5,1000 ha +982,Chile,1996,4574.0,1000 ha +983,Chile,1997,4564.5,1000 ha +984,Chile,1998,4555.0,1000 ha +985,Chile,1999,4545.5,1000 ha +986,Chile,2000,4536.0,1000 ha +987,Chile,2001,4526.4,1000 ha +988,Chile,2002,4516.8,1000 ha +989,Chile,2003,4507.2,1000 ha +990,Chile,2004,4497.6,1000 ha +991,Chile,2005,4488.0,1000 ha +992,Chile,2006,4478.2,1000 ha +993,Chile,2007,4468.4,1000 ha +994,Chile,2008,4458.6,1000 ha +995,Chile,2009,4448.8,1000 ha +996,Chile,2010,4439.0,1000 ha +997,Chile,2011,4622.2,1000 ha +998,Chile,2012,4805.4,1000 ha +999,Chile,2013,4988.6,1000 ha +1000,China,1990,11646.2,1000 ha +1001,China,1991,11644.82,1000 ha +1002,China,1992,11643.44,1000 ha +1003,China,1993,11642.06,1000 ha +1004,China,1994,11640.68,1000 ha +1005,China,1995,11639.3,1000 ha +1006,China,1996,11637.92,1000 ha +1007,China,1997,11636.54,1000 ha +1008,China,1998,11635.16,1000 ha +1009,China,1999,11633.78,1000 ha +1010,China,2000,11632.4,1000 ha +1011,China,2001,11632.4,1000 ha +1012,China,2002,11632.4,1000 ha +1013,China,2003,11632.4,1000 ha +1014,China,2004,11632.4,1000 ha +1015,China,2005,11632.4,1000 ha +1016,China,2006,11632.4,1000 ha +1017,China,2007,11632.4,1000 ha +1018,China,2008,11632.4,1000 ha +1019,China,2009,11632.4,1000 ha +1020,China,2010,11632.4,1000 ha +1021,China,2011,11632.4,1000 ha +1022,China,2012,11632.4,1000 ha +1023,China,2013,11632.4,1000 ha +1024,"China, mainland",1990,11646.2,1000 ha +1025,"China, mainland",1991,11644.82,1000 ha +1026,"China, mainland",1992,11643.44,1000 ha +1027,"China, mainland",1993,11642.06,1000 ha +1028,"China, mainland",1994,11640.68,1000 ha +1029,"China, mainland",1995,11639.3,1000 ha +1030,"China, mainland",1996,11637.92,1000 ha +1031,"China, mainland",1997,11636.54,1000 ha +1032,"China, mainland",1998,11635.16,1000 ha +1033,"China, mainland",1999,11633.78,1000 ha +1034,"China, mainland",2000,11632.4,1000 ha +1035,"China, mainland",2001,11632.4,1000 ha +1036,"China, mainland",2002,11632.4,1000 ha +1037,"China, mainland",2003,11632.4,1000 ha +1038,"China, mainland",2004,11632.4,1000 ha +1039,"China, mainland",2005,11632.4,1000 ha +1040,"China, mainland",2006,11632.4,1000 ha +1041,"China, mainland",2007,11632.4,1000 ha +1042,"China, mainland",2008,11632.4,1000 ha +1043,"China, mainland",2009,11632.4,1000 ha +1044,"China, mainland",2010,11632.4,1000 ha +1045,"China, mainland",2011,11632.4,1000 ha +1046,"China, mainland",2012,11632.4,1000 ha +1047,"China, mainland",2013,11632.4,1000 ha +1048,Colombia,1990,0.0,1000 ha +1049,Colombia,1991,0.0,1000 ha +1050,Colombia,1992,0.0,1000 ha +1051,Colombia,1993,0.0,1000 ha +1052,Colombia,1994,0.0,1000 ha +1053,Colombia,1995,0.0,1000 ha +1054,Colombia,1996,0.0,1000 ha +1055,Colombia,1997,0.0,1000 ha +1056,Colombia,1998,0.0,1000 ha +1057,Colombia,1999,0.0,1000 ha +1058,Colombia,2000,0.0,1000 ha +1059,Colombia,2001,0.0,1000 ha +1060,Colombia,2002,0.0,1000 ha +1061,Colombia,2003,0.0,1000 ha +1062,Colombia,2004,0.0,1000 ha +1063,Colombia,2005,0.0,1000 ha +1064,Colombia,2006,0.0,1000 ha +1065,Colombia,2007,0.0,1000 ha +1066,Colombia,2008,0.0,1000 ha +1067,Colombia,2009,0.0,1000 ha +1068,Colombia,2010,0.0,1000 ha +1069,Colombia,2011,0.0,1000 ha +1070,Colombia,2012,0.0,1000 ha +1071,Colombia,2013,0.0,1000 ha +1072,Comoros,1990,8.0,1000 ha +1073,Comoros,1991,8.0,1000 ha +1074,Comoros,1992,8.0,1000 ha +1075,Comoros,1993,8.0,1000 ha +1076,Comoros,1994,8.0,1000 ha +1077,Comoros,1995,8.0,1000 ha +1078,Comoros,1996,8.0,1000 ha +1079,Comoros,1997,8.0,1000 ha +1080,Comoros,1998,8.0,1000 ha +1081,Comoros,1999,8.0,1000 ha +1082,Comoros,2000,8.0,1000 ha +1083,Comoros,2001,8.0,1000 ha +1084,Comoros,2002,8.0,1000 ha +1085,Comoros,2003,8.0,1000 ha +1086,Comoros,2004,8.0,1000 ha +1087,Comoros,2005,8.0,1000 ha +1088,Comoros,2006,8.0,1000 ha +1089,Comoros,2007,8.0,1000 ha +1090,Comoros,2008,8.0,1000 ha +1091,Comoros,2009,8.0,1000 ha +1092,Comoros,2010,8.0,1000 ha +1093,Comoros,2011,8.0,1000 ha +1094,Comoros,2012,8.0,1000 ha +1095,Comoros,2013,8.0,1000 ha +1096,Congo,1990,7548.0,1000 ha +1097,Congo,1991,7542.4,1000 ha +1098,Congo,1992,7536.8,1000 ha +1099,Congo,1993,7531.2,1000 ha +1100,Congo,1994,7525.6,1000 ha +1101,Congo,1995,7520.0,1000 ha +1102,Congo,1996,7514.4,1000 ha +1103,Congo,1997,7508.8,1000 ha +1104,Congo,1998,7503.2,1000 ha +1105,Congo,1999,7497.6,1000 ha +1106,Congo,2000,7492.0,1000 ha +1107,Congo,2001,7486.4,1000 ha +1108,Congo,2002,7480.8,1000 ha +1109,Congo,2003,7475.2,1000 ha +1110,Congo,2004,7469.6,1000 ha +1111,Congo,2005,7464.0,1000 ha +1112,Congo,2006,7458.4,1000 ha +1113,Congo,2007,7452.8,1000 ha +1114,Congo,2008,7447.2,1000 ha +1115,Congo,2009,7441.6,1000 ha +1116,Congo,2010,7436.0,1000 ha +1117,Congo,2011,7430.2,1000 ha +1118,Congo,2012,7424.4,1000 ha +1119,Congo,2013,7418.6,1000 ha +1120,Cook Islands,1990,0.0,1000 ha +1121,Cook Islands,1991,0.0,1000 ha +1122,Cook Islands,1992,0.0,1000 ha +1123,Cook Islands,1993,0.0,1000 ha +1124,Cook Islands,1994,0.0,1000 ha +1125,Cook Islands,1995,0.0,1000 ha +1126,Cook Islands,1996,0.0,1000 ha +1127,Cook Islands,1997,0.0,1000 ha +1128,Cook Islands,1998,0.0,1000 ha +1129,Cook Islands,1999,0.0,1000 ha +1130,Cook Islands,2000,0.0,1000 ha +1131,Cook Islands,2001,0.0,1000 ha +1132,Cook Islands,2002,0.0,1000 ha +1133,Cook Islands,2003,0.0,1000 ha +1134,Cook Islands,2004,0.0,1000 ha +1135,Cook Islands,2005,0.0,1000 ha +1136,Cook Islands,2006,0.0,1000 ha +1137,Cook Islands,2007,0.0,1000 ha +1138,Cook Islands,2008,0.0,1000 ha +1139,Cook Islands,2009,0.0,1000 ha +1140,Cook Islands,2010,0.0,1000 ha +1141,Cook Islands,2011,0.0,1000 ha +1142,Cook Islands,2012,0.0,1000 ha +1143,Cook Islands,2013,0.0,1000 ha +1144,Costa Rica,1990,1313.03,1000 ha +1145,Costa Rica,1991,1243.952,1000 ha +1146,Costa Rica,1992,1174.874,1000 ha +1147,Costa Rica,1993,1105.796,1000 ha +1148,Costa Rica,1994,1036.718,1000 ha +1149,Costa Rica,1995,967.64,1000 ha +1150,Costa Rica,1996,898.562,1000 ha +1151,Costa Rica,1997,829.4839999999999,1000 ha +1152,Costa Rica,1998,760.4060000000001,1000 ha +1153,Costa Rica,1999,691.328,1000 ha +1154,Costa Rica,2000,622.25,1000 ha +1155,Costa Rica,2001,748.798,1000 ha +1156,Costa Rica,2002,875.346,1000 ha +1157,Costa Rica,2003,1001.8939999999999,1000 ha +1158,Costa Rica,2004,1128.442,1000 ha +1159,Costa Rica,2005,1254.99,1000 ha +1160,Costa Rica,2006,1267.258,1000 ha +1161,Costa Rica,2007,1279.526,1000 ha +1162,Costa Rica,2008,1291.7939999999999,1000 ha +1163,Costa Rica,2009,1304.062,1000 ha +1164,Costa Rica,2010,1316.33,1000 ha +1165,Costa Rica,2011,1415.944,1000 ha +1166,Costa Rica,2012,1515.558,1000 ha +1167,Costa Rica,2013,1615.172,1000 ha +1168,Côte d'Ivoire,1990,625.0,1000 ha +1169,Côte d'Ivoire,1991,625.0,1000 ha +1170,Côte d'Ivoire,1992,625.0,1000 ha +1171,Côte d'Ivoire,1993,625.0,1000 ha +1172,Côte d'Ivoire,1994,625.0,1000 ha +1173,Côte d'Ivoire,1995,625.0,1000 ha +1174,Côte d'Ivoire,1996,625.0,1000 ha +1175,Côte d'Ivoire,1997,625.0,1000 ha +1176,Côte d'Ivoire,1998,625.0,1000 ha +1177,Côte d'Ivoire,1999,625.0,1000 ha +1178,Côte d'Ivoire,2000,625.0,1000 ha +1179,Côte d'Ivoire,2001,625.0,1000 ha +1180,Côte d'Ivoire,2002,625.0,1000 ha +1181,Côte d'Ivoire,2003,625.0,1000 ha +1182,Côte d'Ivoire,2004,625.0,1000 ha +1183,Côte d'Ivoire,2005,625.0,1000 ha +1184,Côte d'Ivoire,2006,625.0,1000 ha +1185,Côte d'Ivoire,2007,625.0,1000 ha +1186,Côte d'Ivoire,2008,625.0,1000 ha +1187,Côte d'Ivoire,2009,625.0,1000 ha +1188,Côte d'Ivoire,2010,625.0,1000 ha +1189,Côte d'Ivoire,2011,625.0,1000 ha +1190,Côte d'Ivoire,2012,625.0,1000 ha +1191,Côte d'Ivoire,2013,625.0,1000 ha +1192,Croatia,1992,7.0,1000 ha +1193,Croatia,1993,7.0,1000 ha +1194,Croatia,1994,7.0,1000 ha +1195,Croatia,1995,7.0,1000 ha +1196,Croatia,1996,7.0,1000 ha +1197,Croatia,1997,7.0,1000 ha +1198,Croatia,1998,7.0,1000 ha +1199,Croatia,1999,7.0,1000 ha +1200,Croatia,2000,7.0,1000 ha +1201,Croatia,2001,7.0,1000 ha +1202,Croatia,2002,7.0,1000 ha +1203,Croatia,2003,7.0,1000 ha +1204,Croatia,2004,7.0,1000 ha +1205,Croatia,2005,7.0,1000 ha +1206,Croatia,2006,7.0,1000 ha +1207,Croatia,2007,7.0,1000 ha +1208,Croatia,2008,7.0,1000 ha +1209,Croatia,2009,7.0,1000 ha +1210,Croatia,2010,7.0,1000 ha +1211,Croatia,2011,7.0,1000 ha +1212,Croatia,2012,7.0,1000 ha +1213,Croatia,2013,7.0,1000 ha +1214,Cuba,1990,0.0,1000 ha +1215,Cuba,1991,0.0,1000 ha +1216,Cuba,1992,0.0,1000 ha +1217,Cuba,1993,0.0,1000 ha +1218,Cuba,1994,0.0,1000 ha +1219,Cuba,1995,0.0,1000 ha +1220,Cuba,1996,0.0,1000 ha +1221,Cuba,1997,0.0,1000 ha +1222,Cuba,1998,0.0,1000 ha +1223,Cuba,1999,0.0,1000 ha +1224,Cuba,2000,0.0,1000 ha +1225,Cuba,2001,0.0,1000 ha +1226,Cuba,2002,0.0,1000 ha +1227,Cuba,2003,0.0,1000 ha +1228,Cuba,2004,0.0,1000 ha +1229,Cuba,2005,0.0,1000 ha +1230,Cuba,2006,0.0,1000 ha +1231,Cuba,2007,0.0,1000 ha +1232,Cuba,2008,0.0,1000 ha +1233,Cuba,2009,0.0,1000 ha +1234,Cuba,2010,0.0,1000 ha +1235,Cuba,2011,0.0,1000 ha +1236,Cuba,2012,0.0,1000 ha +1237,Cuba,2013,0.0,1000 ha +1238,Cyprus,1990,13.241,1000 ha +1239,Cyprus,1991,13.241,1000 ha +1240,Cyprus,1992,13.241,1000 ha +1241,Cyprus,1993,13.241,1000 ha +1242,Cyprus,1994,13.241,1000 ha +1243,Cyprus,1995,13.241,1000 ha +1244,Cyprus,1996,13.241,1000 ha +1245,Cyprus,1997,13.241,1000 ha +1246,Cyprus,1998,13.241,1000 ha +1247,Cyprus,1999,13.241,1000 ha +1248,Cyprus,2000,13.241,1000 ha +1249,Cyprus,2001,13.241,1000 ha +1250,Cyprus,2002,13.241,1000 ha +1251,Cyprus,2003,13.241,1000 ha +1252,Cyprus,2004,13.241,1000 ha +1253,Cyprus,2005,13.241,1000 ha +1254,Cyprus,2006,13.241,1000 ha +1255,Cyprus,2007,13.241,1000 ha +1256,Cyprus,2008,13.241,1000 ha +1257,Cyprus,2009,13.241,1000 ha +1258,Cyprus,2010,13.241,1000 ha +1259,Cyprus,2011,13.241,1000 ha +1260,Cyprus,2012,13.241,1000 ha +1261,Cyprus,2013,13.241,1000 ha +1262,Czechia,1993,9.0,1000 ha +1263,Czechia,1994,9.0,1000 ha +1264,Czechia,1995,9.0,1000 ha +1265,Czechia,1996,9.0,1000 ha +1266,Czechia,1997,9.0,1000 ha +1267,Czechia,1998,9.0,1000 ha +1268,Czechia,1999,9.0,1000 ha +1269,Czechia,2000,9.0,1000 ha +1270,Czechia,2001,9.0,1000 ha +1271,Czechia,2002,9.0,1000 ha +1272,Czechia,2003,9.0,1000 ha +1273,Czechia,2004,9.0,1000 ha +1274,Czechia,2005,9.0,1000 ha +1275,Czechia,2006,9.2,1000 ha +1276,Czechia,2007,9.4,1000 ha +1277,Czechia,2008,9.6,1000 ha +1278,Czechia,2009,9.8,1000 ha +1279,Czechia,2010,10.0,1000 ha +1280,Czechia,2011,10.0,1000 ha +1281,Czechia,2012,10.0,1000 ha +1282,Czechia,2013,10.0,1000 ha +1283,Czechoslovakia,1990,33.0,1000 ha +1284,Czechoslovakia,1991,33.0,1000 ha +1285,Czechoslovakia,1992,33.0,1000 ha +1286,Democratic People's Republic of Korea,1990,1129.0,1000 ha +1287,Democratic People's Republic of Korea,1991,1111.5,1000 ha +1288,Democratic People's Republic of Korea,1992,1094.0,1000 ha +1289,Democratic People's Republic of Korea,1993,1076.5,1000 ha +1290,Democratic People's Republic of Korea,1994,1059.0,1000 ha +1291,Democratic People's Republic of Korea,1995,1041.5,1000 ha +1292,Democratic People's Republic of Korea,1996,1024.0,1000 ha +1293,Democratic People's Republic of Korea,1997,1006.5,1000 ha +1294,Democratic People's Republic of Korea,1998,989.0,1000 ha +1295,Democratic People's Republic of Korea,1999,971.5,1000 ha +1296,Democratic People's Republic of Korea,2000,954.0,1000 ha +1297,Democratic People's Republic of Korea,2001,936.6,1000 ha +1298,Democratic People's Republic of Korea,2002,919.2,1000 ha +1299,Democratic People's Republic of Korea,2003,901.8,1000 ha +1300,Democratic People's Republic of Korea,2004,884.4,1000 ha +1301,Democratic People's Republic of Korea,2005,867.0,1000 ha +1302,Democratic People's Republic of Korea,2006,849.6,1000 ha +1303,Democratic People's Republic of Korea,2007,832.2,1000 ha +1304,Democratic People's Republic of Korea,2008,814.8,1000 ha +1305,Democratic People's Republic of Korea,2009,797.4,1000 ha +1306,Democratic People's Republic of Korea,2010,780.0,1000 ha +1307,Democratic People's Republic of Korea,2011,764.2,1000 ha +1308,Democratic People's Republic of Korea,2012,748.4,1000 ha +1309,Democratic People's Republic of Korea,2013,732.6,1000 ha +1310,Democratic Republic of the Congo,1990,105189.0,1000 ha +1311,Democratic Republic of the Congo,1991,105115.6,1000 ha +1312,Democratic Republic of the Congo,1992,105042.2,1000 ha +1313,Democratic Republic of the Congo,1993,104968.8,1000 ha +1314,Democratic Republic of the Congo,1994,104895.4,1000 ha +1315,Democratic Republic of the Congo,1995,104822.0,1000 ha +1316,Democratic Republic of the Congo,1996,104748.6,1000 ha +1317,Democratic Republic of the Congo,1997,104675.2,1000 ha +1318,Democratic Republic of the Congo,1998,104601.8,1000 ha +1319,Democratic Republic of the Congo,1999,104528.4,1000 ha +1320,Democratic Republic of the Congo,2000,104455.0,1000 ha +1321,Democratic Republic of the Congo,2001,104381.6,1000 ha +1322,Democratic Republic of the Congo,2002,104308.2,1000 ha +1323,Democratic Republic of the Congo,2003,104234.8,1000 ha +1324,Democratic Republic of the Congo,2004,104161.4,1000 ha +1325,Democratic Republic of the Congo,2005,104088.0,1000 ha +1326,Democratic Republic of the Congo,2006,103947.8,1000 ha +1327,Democratic Republic of the Congo,2007,103807.6,1000 ha +1328,Democratic Republic of the Congo,2008,103667.4,1000 ha +1329,Democratic Republic of the Congo,2009,103527.2,1000 ha +1330,Democratic Republic of the Congo,2010,103387.0,1000 ha +1331,Democratic Republic of the Congo,2011,103246.8,1000 ha +1332,Democratic Republic of the Congo,2012,103106.6,1000 ha +1333,Democratic Republic of the Congo,2013,102966.4,1000 ha +1334,Denmark,1990,30.0,1000 ha +1335,Denmark,1991,30.2,1000 ha +1336,Denmark,1992,30.4,1000 ha +1337,Denmark,1993,30.6,1000 ha +1338,Denmark,1994,30.8,1000 ha +1339,Denmark,1995,31.0,1000 ha +1340,Denmark,1996,31.2,1000 ha +1341,Denmark,1997,31.4,1000 ha +1342,Denmark,1998,31.6,1000 ha +1343,Denmark,1999,31.8,1000 ha +1344,Denmark,2000,32.0,1000 ha +1345,Denmark,2001,31.8,1000 ha +1346,Denmark,2002,31.6,1000 ha +1347,Denmark,2003,31.4,1000 ha +1348,Denmark,2004,31.2,1000 ha +1349,Denmark,2005,31.0,1000 ha +1350,Denmark,2006,31.2,1000 ha +1351,Denmark,2007,31.4,1000 ha +1352,Denmark,2008,31.6,1000 ha +1353,Denmark,2009,31.8,1000 ha +1354,Denmark,2010,32.0,1000 ha +1355,Denmark,2011,32.4,1000 ha +1356,Denmark,2012,32.8,1000 ha +1357,Denmark,2013,33.2,1000 ha +1358,Djibouti,1990,0.0,1000 ha +1359,Djibouti,1991,0.0,1000 ha +1360,Djibouti,1992,0.0,1000 ha +1361,Djibouti,1993,0.0,1000 ha +1362,Djibouti,1994,0.0,1000 ha +1363,Djibouti,1995,0.0,1000 ha +1364,Djibouti,1996,0.0,1000 ha +1365,Djibouti,1997,0.0,1000 ha +1366,Djibouti,1998,0.0,1000 ha +1367,Djibouti,1999,0.0,1000 ha +1368,Djibouti,2000,0.0,1000 ha +1369,Djibouti,2001,0.0,1000 ha +1370,Djibouti,2002,0.0,1000 ha +1371,Djibouti,2003,0.0,1000 ha +1372,Djibouti,2004,0.0,1000 ha +1373,Djibouti,2005,0.0,1000 ha +1374,Djibouti,2006,0.0,1000 ha +1375,Djibouti,2007,0.0,1000 ha +1376,Djibouti,2008,0.0,1000 ha +1377,Djibouti,2009,0.0,1000 ha +1378,Djibouti,2010,0.0,1000 ha +1379,Djibouti,2011,0.0,1000 ha +1380,Djibouti,2012,0.0,1000 ha +1381,Djibouti,2013,0.0,1000 ha +1382,Dominica,1990,28.42,1000 ha +1383,Dominica,1991,28.335,1000 ha +1384,Dominica,1992,28.25,1000 ha +1385,Dominica,1993,28.165,1000 ha +1386,Dominica,1994,28.08,1000 ha +1387,Dominica,1995,27.995,1000 ha +1388,Dominica,1996,27.91,1000 ha +1389,Dominica,1997,27.825,1000 ha +1390,Dominica,1998,27.74,1000 ha +1391,Dominica,1999,27.655,1000 ha +1392,Dominica,2000,27.57,1000 ha +1393,Dominica,2001,27.484,1000 ha +1394,Dominica,2002,27.398000000000003,1000 ha +1395,Dominica,2003,27.311999999999998,1000 ha +1396,Dominica,2004,27.226,1000 ha +1397,Dominica,2005,27.14,1000 ha +1398,Dominica,2006,27.055999999999997,1000 ha +1399,Dominica,2007,26.971999999999998,1000 ha +1400,Dominica,2008,26.888,1000 ha +1401,Dominica,2009,26.804000000000002,1000 ha +1402,Dominica,2010,26.72,1000 ha +1403,Dominica,2011,26.636,1000 ha +1404,Dominica,2012,26.552,1000 ha +1405,Dominica,2013,26.468000000000004,1000 ha +1406,Dominican Republic,1990,0.0,1000 ha +1407,Dominican Republic,1991,0.0,1000 ha +1408,Dominican Republic,1992,0.0,1000 ha +1409,Dominican Republic,1993,0.0,1000 ha +1410,Dominican Republic,1994,0.0,1000 ha +1411,Dominican Republic,1995,0.0,1000 ha +1412,Dominican Republic,1996,0.0,1000 ha +1413,Dominican Republic,1997,0.0,1000 ha +1414,Dominican Republic,1998,0.0,1000 ha +1415,Dominican Republic,1999,0.0,1000 ha +1416,Dominican Republic,2000,0.0,1000 ha +1417,Dominican Republic,2001,0.0,1000 ha +1418,Dominican Republic,2002,0.0,1000 ha +1419,Dominican Republic,2003,0.0,1000 ha +1420,Dominican Republic,2004,0.0,1000 ha +1421,Dominican Republic,2005,0.0,1000 ha +1422,Dominican Republic,2006,0.0,1000 ha +1423,Dominican Republic,2007,0.0,1000 ha +1424,Dominican Republic,2008,0.0,1000 ha +1425,Dominican Republic,2009,0.0,1000 ha +1426,Dominican Republic,2010,0.0,1000 ha +1427,Dominican Republic,2011,0.0,1000 ha +1428,Dominican Republic,2012,0.0,1000 ha +1429,Dominican Republic,2013,0.0,1000 ha +1430,Ecuador,1990,14586.403999999999,1000 ha +1431,Ecuador,1991,14489.9274,1000 ha +1432,Ecuador,1992,14393.4508,1000 ha +1433,Ecuador,1993,14296.9742,1000 ha +1434,Ecuador,1994,14200.4976,1000 ha +1435,Ecuador,1995,14104.021,1000 ha +1436,Ecuador,1996,14007.5444,1000 ha +1437,Ecuador,1997,13911.0678,1000 ha +1438,Ecuador,1998,13814.5912,1000 ha +1439,Ecuador,1999,13718.1146,1000 ha +1440,Ecuador,2000,13621.638,1000 ha +1441,Ecuador,2001,13544.6822,1000 ha +1442,Ecuador,2002,13467.7264,1000 ha +1443,Ecuador,2003,13390.7706,1000 ha +1444,Ecuador,2004,13313.8148,1000 ha +1445,Ecuador,2005,13236.858999999999,1000 ha +1446,Ecuador,2006,13159.903,1000 ha +1447,Ecuador,2007,13082.947,1000 ha +1448,Ecuador,2008,13005.991000000002,1000 ha +1449,Ecuador,2009,12929.035,1000 ha +1450,Ecuador,2010,12852.079,1000 ha +1451,Ecuador,2011,12775.123,1000 ha +1452,Ecuador,2012,12698.167,1000 ha +1453,Ecuador,2013,12621.211000000001,1000 ha +1454,Egypt,1990,0.0,1000 ha +1455,Egypt,1991,0.0,1000 ha +1456,Egypt,1992,0.0,1000 ha +1457,Egypt,1993,0.0,1000 ha +1458,Egypt,1994,0.0,1000 ha +1459,Egypt,1995,0.0,1000 ha +1460,Egypt,1996,0.0,1000 ha +1461,Egypt,1997,0.0,1000 ha +1462,Egypt,1998,0.0,1000 ha +1463,Egypt,1999,0.0,1000 ha +1464,Egypt,2000,0.0,1000 ha +1465,Egypt,2001,0.0,1000 ha +1466,Egypt,2002,0.0,1000 ha +1467,Egypt,2003,0.0,1000 ha +1468,Egypt,2004,0.0,1000 ha +1469,Egypt,2005,0.0,1000 ha +1470,Egypt,2006,0.0,1000 ha +1471,Egypt,2007,0.0,1000 ha +1472,Egypt,2008,0.0,1000 ha +1473,Egypt,2009,0.0,1000 ha +1474,Egypt,2010,0.0,1000 ha +1475,Egypt,2011,0.0,1000 ha +1476,Egypt,2012,0.0,1000 ha +1477,Egypt,2013,0.0,1000 ha +1478,El Salvador,1990,4.8,1000 ha +1479,El Salvador,1991,4.8,1000 ha +1480,El Salvador,1992,4.8,1000 ha +1481,El Salvador,1993,4.8,1000 ha +1482,El Salvador,1994,4.8,1000 ha +1483,El Salvador,1995,4.8,1000 ha +1484,El Salvador,1996,4.8,1000 ha +1485,El Salvador,1997,4.8,1000 ha +1486,El Salvador,1998,4.8,1000 ha +1487,El Salvador,1999,4.8,1000 ha +1488,El Salvador,2000,4.8,1000 ha +1489,El Salvador,2001,4.8,1000 ha +1490,El Salvador,2002,4.8,1000 ha +1491,El Salvador,2003,4.8,1000 ha +1492,El Salvador,2004,4.8,1000 ha +1493,El Salvador,2005,4.8,1000 ha +1494,El Salvador,2006,4.8,1000 ha +1495,El Salvador,2007,4.8,1000 ha +1496,El Salvador,2008,4.8,1000 ha +1497,El Salvador,2009,4.8,1000 ha +1498,El Salvador,2010,4.8,1000 ha +1499,El Salvador,2011,4.8,1000 ha +1500,El Salvador,2012,4.8,1000 ha +1501,El Salvador,2013,4.8,1000 ha +1502,Equatorial Guinea,1990,0.0,1000 ha +1503,Equatorial Guinea,1991,0.0,1000 ha +1504,Equatorial Guinea,1992,0.0,1000 ha +1505,Equatorial Guinea,1993,0.0,1000 ha +1506,Equatorial Guinea,1994,0.0,1000 ha +1507,Equatorial Guinea,1995,0.0,1000 ha +1508,Equatorial Guinea,1996,0.0,1000 ha +1509,Equatorial Guinea,1997,0.0,1000 ha +1510,Equatorial Guinea,1998,0.0,1000 ha +1511,Equatorial Guinea,1999,0.0,1000 ha +1512,Equatorial Guinea,2000,0.0,1000 ha +1513,Equatorial Guinea,2001,0.0,1000 ha +1514,Equatorial Guinea,2002,0.0,1000 ha +1515,Equatorial Guinea,2003,0.0,1000 ha +1516,Equatorial Guinea,2004,0.0,1000 ha +1517,Equatorial Guinea,2005,0.0,1000 ha +1518,Equatorial Guinea,2006,0.0,1000 ha +1519,Equatorial Guinea,2007,0.0,1000 ha +1520,Equatorial Guinea,2008,0.0,1000 ha +1521,Equatorial Guinea,2009,0.0,1000 ha +1522,Equatorial Guinea,2010,0.0,1000 ha +1523,Equatorial Guinea,2011,0.0,1000 ha +1524,Equatorial Guinea,2012,0.0,1000 ha +1525,Equatorial Guinea,2013,0.0,1000 ha +1526,Eritrea,1993,0.0,1000 ha +1527,Eritrea,1994,0.0,1000 ha +1528,Eritrea,1995,0.0,1000 ha +1529,Eritrea,1996,0.0,1000 ha +1530,Eritrea,1997,0.0,1000 ha +1531,Eritrea,1998,0.0,1000 ha +1532,Eritrea,1999,0.0,1000 ha +1533,Eritrea,2000,0.0,1000 ha +1534,Eritrea,2001,0.0,1000 ha +1535,Eritrea,2002,0.0,1000 ha +1536,Eritrea,2003,0.0,1000 ha +1537,Eritrea,2004,0.0,1000 ha +1538,Eritrea,2005,0.0,1000 ha +1539,Eritrea,2006,0.0,1000 ha +1540,Eritrea,2007,0.0,1000 ha +1541,Eritrea,2008,0.0,1000 ha +1542,Eritrea,2009,0.0,1000 ha +1543,Eritrea,2010,0.0,1000 ha +1544,Eritrea,2011,0.0,1000 ha +1545,Eritrea,2012,0.0,1000 ha +1546,Eritrea,2013,0.0,1000 ha +1547,Estonia,1992,41.6,1000 ha +1548,Estonia,1993,42.4,1000 ha +1549,Estonia,1994,43.2,1000 ha +1550,Estonia,1995,44.0,1000 ha +1551,Estonia,1996,44.8,1000 ha +1552,Estonia,1997,45.6,1000 ha +1553,Estonia,1998,46.4,1000 ha +1554,Estonia,1999,47.2,1000 ha +1555,Estonia,2000,48.0,1000 ha +1556,Estonia,2001,48.8,1000 ha +1557,Estonia,2002,49.6,1000 ha +1558,Estonia,2003,50.4,1000 ha +1559,Estonia,2004,51.2,1000 ha +1560,Estonia,2005,52.0,1000 ha +1561,Estonia,2006,52.6,1000 ha +1562,Estonia,2007,53.2,1000 ha +1563,Estonia,2008,53.8,1000 ha +1564,Estonia,2009,54.4,1000 ha +1565,Estonia,2010,55.0,1000 ha +1566,Estonia,2011,55.6,1000 ha +1567,Estonia,2012,56.2,1000 ha +1568,Estonia,2013,56.8,1000 ha +1569,Eswatini,1990,0.0,1000 ha +1570,Eswatini,1991,0.0,1000 ha +1571,Eswatini,1992,0.0,1000 ha +1572,Eswatini,1993,0.0,1000 ha +1573,Eswatini,1994,0.0,1000 ha +1574,Eswatini,1995,0.0,1000 ha +1575,Eswatini,1996,0.0,1000 ha +1576,Eswatini,1997,0.0,1000 ha +1577,Eswatini,1998,0.0,1000 ha +1578,Eswatini,1999,0.0,1000 ha +1579,Eswatini,2000,0.0,1000 ha +1580,Eswatini,2001,0.0,1000 ha +1581,Eswatini,2002,0.0,1000 ha +1582,Eswatini,2003,0.0,1000 ha +1583,Eswatini,2004,0.0,1000 ha +1584,Eswatini,2005,0.0,1000 ha +1585,Eswatini,2006,0.0,1000 ha +1586,Eswatini,2007,0.0,1000 ha +1587,Eswatini,2008,0.0,1000 ha +1588,Eswatini,2009,0.0,1000 ha +1589,Eswatini,2010,0.0,1000 ha +1590,Eswatini,2011,0.0,1000 ha +1591,Eswatini,2012,0.0,1000 ha +1592,Eswatini,2013,0.0,1000 ha +1593,Ethiopia,1993,0.0,1000 ha +1594,Ethiopia,1994,0.0,1000 ha +1595,Ethiopia,1995,0.0,1000 ha +1596,Ethiopia,1996,0.0,1000 ha +1597,Ethiopia,1997,0.0,1000 ha +1598,Ethiopia,1998,0.0,1000 ha +1599,Ethiopia,1999,0.0,1000 ha +1600,Ethiopia,2000,0.0,1000 ha +1601,Ethiopia,2001,0.0,1000 ha +1602,Ethiopia,2002,0.0,1000 ha +1603,Ethiopia,2003,0.0,1000 ha +1604,Ethiopia,2004,0.0,1000 ha +1605,Ethiopia,2005,0.0,1000 ha +1606,Ethiopia,2006,0.0,1000 ha +1607,Ethiopia,2007,0.0,1000 ha +1608,Ethiopia,2008,0.0,1000 ha +1609,Ethiopia,2009,0.0,1000 ha +1610,Ethiopia,2010,0.0,1000 ha +1611,Ethiopia,2011,0.0,1000 ha +1612,Ethiopia,2012,0.0,1000 ha +1613,Ethiopia,2013,0.0,1000 ha +1614,Ethiopia PDR,1990,0.0,1000 ha +1615,Ethiopia PDR,1991,0.0,1000 ha +1616,Ethiopia PDR,1992,0.0,1000 ha +1617,Falkland Islands (Malvinas),1990,0.0,1000 ha +1618,Falkland Islands (Malvinas),1991,0.0,1000 ha +1619,Falkland Islands (Malvinas),1992,0.0,1000 ha +1620,Falkland Islands (Malvinas),1993,0.0,1000 ha +1621,Falkland Islands (Malvinas),1994,0.0,1000 ha +1622,Falkland Islands (Malvinas),1995,0.0,1000 ha +1623,Falkland Islands (Malvinas),1996,0.0,1000 ha +1624,Falkland Islands (Malvinas),1997,0.0,1000 ha +1625,Falkland Islands (Malvinas),1998,0.0,1000 ha +1626,Falkland Islands (Malvinas),1999,0.0,1000 ha +1627,Falkland Islands (Malvinas),2000,0.0,1000 ha +1628,Falkland Islands (Malvinas),2001,0.0,1000 ha +1629,Falkland Islands (Malvinas),2002,0.0,1000 ha +1630,Falkland Islands (Malvinas),2003,0.0,1000 ha +1631,Falkland Islands (Malvinas),2004,0.0,1000 ha +1632,Falkland Islands (Malvinas),2005,0.0,1000 ha +1633,Falkland Islands (Malvinas),2006,0.0,1000 ha +1634,Falkland Islands (Malvinas),2007,0.0,1000 ha +1635,Falkland Islands (Malvinas),2008,0.0,1000 ha +1636,Falkland Islands (Malvinas),2009,0.0,1000 ha +1637,Falkland Islands (Malvinas),2010,0.0,1000 ha +1638,Falkland Islands (Malvinas),2011,0.0,1000 ha +1639,Falkland Islands (Malvinas),2012,0.0,1000 ha +1640,Falkland Islands (Malvinas),2013,0.0,1000 ha +1641,Faroe Islands,1990,0.0,1000 ha +1642,Faroe Islands,1991,0.0,1000 ha +1643,Faroe Islands,1992,0.0,1000 ha +1644,Faroe Islands,1993,0.0,1000 ha +1645,Faroe Islands,1994,0.0,1000 ha +1646,Faroe Islands,1995,0.0,1000 ha +1647,Faroe Islands,1996,0.0,1000 ha +1648,Faroe Islands,1997,0.0,1000 ha +1649,Faroe Islands,1998,0.0,1000 ha +1650,Faroe Islands,1999,0.0,1000 ha +1651,Faroe Islands,2000,0.0,1000 ha +1652,Faroe Islands,2001,0.0,1000 ha +1653,Faroe Islands,2002,0.0,1000 ha +1654,Faroe Islands,2003,0.0,1000 ha +1655,Faroe Islands,2004,0.0,1000 ha +1656,Faroe Islands,2005,0.0,1000 ha +1657,Faroe Islands,2006,0.0,1000 ha +1658,Faroe Islands,2007,0.0,1000 ha +1659,Faroe Islands,2008,0.0,1000 ha +1660,Faroe Islands,2009,0.0,1000 ha +1661,Faroe Islands,2010,0.0,1000 ha +1662,Faroe Islands,2011,0.0,1000 ha +1663,Faroe Islands,2012,0.0,1000 ha +1664,Faroe Islands,2013,0.0,1000 ha +1665,Fiji,1990,489.51300000000003,1000 ha +1666,Fiji,1991,485.0979,1000 ha +1667,Fiji,1992,480.6828,1000 ha +1668,Fiji,1993,476.2677,1000 ha +1669,Fiji,1994,471.8526,1000 ha +1670,Fiji,1995,467.4375,1000 ha +1671,Fiji,1996,463.0224,1000 ha +1672,Fiji,1997,458.6073,1000 ha +1673,Fiji,1998,454.1922,1000 ha +1674,Fiji,1999,449.7771,1000 ha +1675,Fiji,2000,445.36199999999997,1000 ha +1676,Fiji,2001,445.97,1000 ha +1677,Fiji,2002,446.57800000000003,1000 ha +1678,Fiji,2003,447.186,1000 ha +1679,Fiji,2004,447.79400000000004,1000 ha +1680,Fiji,2005,448.402,1000 ha +1681,Fiji,2006,442.7554,1000 ha +1682,Fiji,2007,437.1088,1000 ha +1683,Fiji,2008,431.4622,1000 ha +1684,Fiji,2009,425.8156,1000 ha +1685,Fiji,2010,420.16900000000004,1000 ha +1686,Fiji,2011,418.4176,1000 ha +1687,Fiji,2012,416.6662,1000 ha +1688,Fiji,2013,414.9148,1000 ha +1689,Finland,1990,230.207,1000 ha +1690,Finland,1991,230.207,1000 ha +1691,Finland,1992,230.207,1000 ha +1692,Finland,1993,230.207,1000 ha +1693,Finland,1994,230.207,1000 ha +1694,Finland,1995,230.207,1000 ha +1695,Finland,1996,230.207,1000 ha +1696,Finland,1997,230.207,1000 ha +1697,Finland,1998,230.207,1000 ha +1698,Finland,1999,230.207,1000 ha +1699,Finland,2000,230.207,1000 ha +1700,Finland,2001,230.207,1000 ha +1701,Finland,2002,230.207,1000 ha +1702,Finland,2003,230.207,1000 ha +1703,Finland,2004,230.207,1000 ha +1704,Finland,2005,230.207,1000 ha +1705,Finland,2006,230.207,1000 ha +1706,Finland,2007,230.207,1000 ha +1707,Finland,2008,230.207,1000 ha +1708,Finland,2009,230.207,1000 ha +1709,Finland,2010,230.207,1000 ha +1710,Finland,2011,230.207,1000 ha +1711,Finland,2012,230.207,1000 ha +1712,Finland,2013,230.207,1000 ha +1713,France,1990,0.0,1000 ha +1714,France,1991,0.0,1000 ha +1715,France,1992,0.0,1000 ha +1716,France,1993,0.0,1000 ha +1717,France,1994,0.0,1000 ha +1718,France,1995,0.0,1000 ha +1719,France,1996,0.0,1000 ha +1720,France,1997,0.0,1000 ha +1721,France,1998,0.0,1000 ha +1722,France,1999,0.0,1000 ha +1723,France,2000,0.0,1000 ha +1724,France,2001,0.0,1000 ha +1725,France,2002,0.0,1000 ha +1726,France,2003,0.0,1000 ha +1727,France,2004,0.0,1000 ha +1728,France,2005,0.0,1000 ha +1729,France,2006,0.0,1000 ha +1730,France,2007,0.0,1000 ha +1731,France,2008,0.0,1000 ha +1732,France,2009,0.0,1000 ha +1733,France,2010,0.0,1000 ha +1734,France,2011,0.0,1000 ha +1735,France,2012,0.0,1000 ha +1736,France,2013,0.0,1000 ha +1737,French Guiana,1990,8147.3,1000 ha +1738,French Guiana,1991,8135.1,1000 ha +1739,French Guiana,1992,8122.9,1000 ha +1740,French Guiana,1993,8110.7,1000 ha +1741,French Guiana,1994,8098.5,1000 ha +1742,French Guiana,1995,8086.3,1000 ha +1743,French Guiana,1996,8074.1,1000 ha +1744,French Guiana,1997,8061.9,1000 ha +1745,French Guiana,1998,8049.7,1000 ha +1746,French Guiana,1999,8037.5,1000 ha +1747,French Guiana,2000,8025.3,1000 ha +1748,French Guiana,2001,8013.1,1000 ha +1749,French Guiana,2002,8000.9,1000 ha +1750,French Guiana,2003,7988.7,1000 ha +1751,French Guiana,2004,7976.5,1000 ha +1752,French Guiana,2005,7964.3,1000 ha +1753,French Guiana,2006,7937.7,1000 ha +1754,French Guiana,2007,7911.1,1000 ha +1755,French Guiana,2008,7884.5,1000 ha +1756,French Guiana,2009,7857.9,1000 ha +1757,French Guiana,2010,7831.3,1000 ha +1758,French Guiana,2011,7827.6,1000 ha +1759,French Guiana,2012,7823.9,1000 ha +1760,French Guiana,2013,7820.2,1000 ha +1761,French Polynesia,1990,40.0,1000 ha +1762,French Polynesia,1991,40.0,1000 ha +1763,French Polynesia,1992,40.0,1000 ha +1764,French Polynesia,1993,40.0,1000 ha +1765,French Polynesia,1994,40.0,1000 ha +1766,French Polynesia,1995,40.0,1000 ha +1767,French Polynesia,1996,40.0,1000 ha +1768,French Polynesia,1997,40.0,1000 ha +1769,French Polynesia,1998,40.0,1000 ha +1770,French Polynesia,1999,40.0,1000 ha +1771,French Polynesia,2000,40.0,1000 ha +1772,French Polynesia,2001,40.0,1000 ha +1773,French Polynesia,2002,40.0,1000 ha +1774,French Polynesia,2003,40.0,1000 ha +1775,French Polynesia,2004,40.0,1000 ha +1776,French Polynesia,2005,40.0,1000 ha +1777,French Polynesia,2006,40.0,1000 ha +1778,French Polynesia,2007,40.0,1000 ha +1779,French Polynesia,2008,40.0,1000 ha +1780,French Polynesia,2009,40.0,1000 ha +1781,French Polynesia,2010,40.0,1000 ha +1782,French Polynesia,2011,40.0,1000 ha +1783,French Polynesia,2012,40.0,1000 ha +1784,French Polynesia,2013,40.0,1000 ha +1785,Gabon,1990,20934.0,1000 ha +1786,Gabon,1991,20604.0,1000 ha +1787,Gabon,1992,20274.0,1000 ha +1788,Gabon,1993,19944.0,1000 ha +1789,Gabon,1994,19614.0,1000 ha +1790,Gabon,1995,19284.0,1000 ha +1791,Gabon,1996,18954.0,1000 ha +1792,Gabon,1997,18624.0,1000 ha +1793,Gabon,1998,18294.0,1000 ha +1794,Gabon,1999,17964.0,1000 ha +1795,Gabon,2000,17634.0,1000 ha +1796,Gabon,2001,17304.0,1000 ha +1797,Gabon,2002,16974.0,1000 ha +1798,Gabon,2003,16644.0,1000 ha +1799,Gabon,2004,16314.0,1000 ha +1800,Gabon,2005,15984.0,1000 ha +1801,Gabon,2006,15654.0,1000 ha +1802,Gabon,2007,15324.0,1000 ha +1803,Gabon,2008,14994.0,1000 ha +1804,Gabon,2009,14664.0,1000 ha +1805,Gabon,2010,14334.0,1000 ha +1806,Gabon,2011,14028.0,1000 ha +1807,Gabon,2012,13722.0,1000 ha +1808,Gabon,2013,13416.0,1000 ha +1809,Gambia,1990,1.2,1000 ha +1810,Gambia,1991,1.2,1000 ha +1811,Gambia,1992,1.2,1000 ha +1812,Gambia,1993,1.2,1000 ha +1813,Gambia,1994,1.2,1000 ha +1814,Gambia,1995,1.2,1000 ha +1815,Gambia,1996,1.2,1000 ha +1816,Gambia,1997,1.2,1000 ha +1817,Gambia,1998,1.2,1000 ha +1818,Gambia,1999,1.2,1000 ha +1819,Gambia,2000,1.2,1000 ha +1820,Gambia,2001,1.16,1000 ha +1821,Gambia,2002,1.12,1000 ha +1822,Gambia,2003,1.08,1000 ha +1823,Gambia,2004,1.04,1000 ha +1824,Gambia,2005,1.0,1000 ha +1825,Gambia,2006,0.96,1000 ha +1826,Gambia,2007,0.92,1000 ha +1827,Gambia,2008,0.88,1000 ha +1828,Gambia,2009,0.84,1000 ha +1829,Gambia,2010,0.8,1000 ha +1830,Gambia,2011,0.8,1000 ha +1831,Gambia,2012,0.8,1000 ha +1832,Gambia,2013,0.8,1000 ha +1833,Georgia,1992,500.0,1000 ha +1834,Georgia,1993,500.0,1000 ha +1835,Georgia,1994,500.0,1000 ha +1836,Georgia,1995,500.0,1000 ha +1837,Georgia,1996,500.0,1000 ha +1838,Georgia,1997,500.0,1000 ha +1839,Georgia,1998,500.0,1000 ha +1840,Georgia,1999,500.0,1000 ha +1841,Georgia,2000,500.0,1000 ha +1842,Georgia,2001,500.0,1000 ha +1843,Georgia,2002,500.0,1000 ha +1844,Georgia,2003,500.0,1000 ha +1845,Georgia,2004,500.0,1000 ha +1846,Georgia,2005,500.0,1000 ha +1847,Georgia,2006,500.0,1000 ha +1848,Georgia,2007,500.0,1000 ha +1849,Georgia,2008,500.0,1000 ha +1850,Georgia,2009,500.0,1000 ha +1851,Georgia,2010,500.0,1000 ha +1852,Georgia,2011,500.0,1000 ha +1853,Georgia,2012,500.0,1000 ha +1854,Georgia,2013,500.0,1000 ha +1855,Germany,1990,0.0,1000 ha +1856,Germany,1991,0.0,1000 ha +1857,Germany,1992,0.0,1000 ha +1858,Germany,1993,0.0,1000 ha +1859,Germany,1994,0.0,1000 ha +1860,Germany,1995,0.0,1000 ha +1861,Germany,1996,0.0,1000 ha +1862,Germany,1997,0.0,1000 ha +1863,Germany,1998,0.0,1000 ha +1864,Germany,1999,0.0,1000 ha +1865,Germany,2000,0.0,1000 ha +1866,Germany,2001,0.0,1000 ha +1867,Germany,2002,0.0,1000 ha +1868,Germany,2003,0.0,1000 ha +1869,Germany,2004,0.0,1000 ha +1870,Germany,2005,0.0,1000 ha +1871,Germany,2006,0.0,1000 ha +1872,Germany,2007,0.0,1000 ha +1873,Germany,2008,0.0,1000 ha +1874,Germany,2009,0.0,1000 ha +1875,Germany,2010,0.0,1000 ha +1876,Germany,2011,0.0,1000 ha +1877,Germany,2012,0.0,1000 ha +1878,Germany,2013,0.0,1000 ha +1879,Ghana,1990,395.0,1000 ha +1880,Ghana,1991,395.0,1000 ha +1881,Ghana,1992,395.0,1000 ha +1882,Ghana,1993,395.0,1000 ha +1883,Ghana,1994,395.0,1000 ha +1884,Ghana,1995,395.0,1000 ha +1885,Ghana,1996,395.0,1000 ha +1886,Ghana,1997,395.0,1000 ha +1887,Ghana,1998,395.0,1000 ha +1888,Ghana,1999,395.0,1000 ha +1889,Ghana,2000,395.0,1000 ha +1890,Ghana,2001,395.0,1000 ha +1891,Ghana,2002,395.0,1000 ha +1892,Ghana,2003,395.0,1000 ha +1893,Ghana,2004,395.0,1000 ha +1894,Ghana,2005,395.0,1000 ha +1895,Ghana,2006,395.0,1000 ha +1896,Ghana,2007,395.0,1000 ha +1897,Ghana,2008,395.0,1000 ha +1898,Ghana,2009,395.0,1000 ha +1899,Ghana,2010,395.0,1000 ha +1900,Ghana,2011,395.0,1000 ha +1901,Ghana,2012,395.0,1000 ha +1902,Ghana,2013,395.0,1000 ha +1903,Gibraltar,1990,0.0,1000 ha +1904,Gibraltar,1991,0.0,1000 ha +1905,Gibraltar,1992,0.0,1000 ha +1906,Gibraltar,1993,0.0,1000 ha +1907,Gibraltar,1994,0.0,1000 ha +1908,Gibraltar,1995,0.0,1000 ha +1909,Gibraltar,1996,0.0,1000 ha +1910,Gibraltar,1997,0.0,1000 ha +1911,Gibraltar,1998,0.0,1000 ha +1912,Gibraltar,1999,0.0,1000 ha +1913,Gibraltar,2000,0.0,1000 ha +1914,Gibraltar,2001,0.0,1000 ha +1915,Gibraltar,2002,0.0,1000 ha +1916,Gibraltar,2003,0.0,1000 ha +1917,Gibraltar,2004,0.0,1000 ha +1918,Gibraltar,2005,0.0,1000 ha +1919,Gibraltar,2006,0.0,1000 ha +1920,Gibraltar,2007,0.0,1000 ha +1921,Gibraltar,2008,0.0,1000 ha +1922,Gibraltar,2009,0.0,1000 ha +1923,Gibraltar,2010,0.0,1000 ha +1924,Gibraltar,2011,0.0,1000 ha +1925,Gibraltar,2012,0.0,1000 ha +1926,Gibraltar,2013,0.0,1000 ha +1927,Greece,1990,0.0,1000 ha +1928,Greece,1991,0.0,1000 ha +1929,Greece,1992,0.0,1000 ha +1930,Greece,1993,0.0,1000 ha +1931,Greece,1994,0.0,1000 ha +1932,Greece,1995,0.0,1000 ha +1933,Greece,1996,0.0,1000 ha +1934,Greece,1997,0.0,1000 ha +1935,Greece,1998,0.0,1000 ha +1936,Greece,1999,0.0,1000 ha +1937,Greece,2000,0.0,1000 ha +1938,Greece,2001,0.0,1000 ha +1939,Greece,2002,0.0,1000 ha +1940,Greece,2003,0.0,1000 ha +1941,Greece,2004,0.0,1000 ha +1942,Greece,2005,0.0,1000 ha +1943,Greece,2006,0.0,1000 ha +1944,Greece,2007,0.0,1000 ha +1945,Greece,2008,0.0,1000 ha +1946,Greece,2009,0.0,1000 ha +1947,Greece,2010,0.0,1000 ha +1948,Greece,2011,0.0,1000 ha +1949,Greece,2012,0.0,1000 ha +1950,Greece,2013,0.0,1000 ha +1951,Greenland,1990,0.0,1000 ha +1952,Greenland,1991,0.0,1000 ha +1953,Greenland,1992,0.0,1000 ha +1954,Greenland,1993,0.0,1000 ha +1955,Greenland,1994,0.0,1000 ha +1956,Greenland,1995,0.0,1000 ha +1957,Greenland,1996,0.0,1000 ha +1958,Greenland,1997,0.0,1000 ha +1959,Greenland,1998,0.0,1000 ha +1960,Greenland,1999,0.0,1000 ha +1961,Greenland,2000,0.0,1000 ha +1962,Greenland,2001,0.0,1000 ha +1963,Greenland,2002,0.0,1000 ha +1964,Greenland,2003,0.0,1000 ha +1965,Greenland,2004,0.0,1000 ha +1966,Greenland,2005,0.0,1000 ha +1967,Greenland,2006,0.0,1000 ha +1968,Greenland,2007,0.0,1000 ha +1969,Greenland,2008,0.0,1000 ha +1970,Greenland,2009,0.0,1000 ha +1971,Greenland,2010,0.0,1000 ha +1972,Greenland,2011,0.0,1000 ha +1973,Greenland,2012,0.0,1000 ha +1974,Greenland,2013,0.0,1000 ha +1975,Grenada,1990,2.32,1000 ha +1976,Grenada,1991,2.32,1000 ha +1977,Grenada,1992,2.32,1000 ha +1978,Grenada,1993,2.32,1000 ha +1979,Grenada,1994,2.32,1000 ha +1980,Grenada,1995,2.32,1000 ha +1981,Grenada,1996,2.32,1000 ha +1982,Grenada,1997,2.32,1000 ha +1983,Grenada,1998,2.32,1000 ha +1984,Grenada,1999,2.32,1000 ha +1985,Grenada,2000,2.32,1000 ha +1986,Grenada,2001,2.32,1000 ha +1987,Grenada,2002,2.32,1000 ha +1988,Grenada,2003,2.32,1000 ha +1989,Grenada,2004,2.32,1000 ha +1990,Grenada,2005,2.32,1000 ha +1991,Grenada,2006,2.32,1000 ha +1992,Grenada,2007,2.32,1000 ha +1993,Grenada,2008,2.32,1000 ha +1994,Grenada,2009,2.32,1000 ha +1995,Grenada,2010,2.32,1000 ha +1996,Grenada,2011,2.32,1000 ha +1997,Grenada,2012,2.32,1000 ha +1998,Grenada,2013,2.32,1000 ha +1999,Guadeloupe,1990,35.99,1000 ha +2000,Guadeloupe,1991,35.99,1000 ha +2001,Guadeloupe,1992,35.99,1000 ha +2002,Guadeloupe,1993,35.99,1000 ha +2003,Guadeloupe,1994,35.99,1000 ha +2004,Guadeloupe,1995,35.99,1000 ha +2005,Guadeloupe,1996,35.99,1000 ha +2006,Guadeloupe,1997,35.99,1000 ha +2007,Guadeloupe,1998,35.99,1000 ha +2008,Guadeloupe,1999,35.99,1000 ha +2009,Guadeloupe,2000,35.99,1000 ha +2010,Guadeloupe,2001,35.99,1000 ha +2011,Guadeloupe,2002,35.99,1000 ha +2012,Guadeloupe,2003,35.99,1000 ha +2013,Guadeloupe,2004,35.99,1000 ha +2014,Guadeloupe,2005,35.99,1000 ha +2015,Guadeloupe,2006,35.99,1000 ha +2016,Guadeloupe,2007,35.99,1000 ha +2017,Guadeloupe,2008,35.99,1000 ha +2018,Guadeloupe,2009,35.99,1000 ha +2019,Guadeloupe,2010,35.99,1000 ha +2020,Guadeloupe,2011,35.99,1000 ha +2021,Guadeloupe,2012,35.99,1000 ha +2022,Guadeloupe,2013,35.99,1000 ha +2023,Guam,1990,0.0,1000 ha +2024,Guam,1991,0.0,1000 ha +2025,Guam,1992,0.0,1000 ha +2026,Guam,1993,0.0,1000 ha +2027,Guam,1994,0.0,1000 ha +2028,Guam,1995,0.0,1000 ha +2029,Guam,1996,0.0,1000 ha +2030,Guam,1997,0.0,1000 ha +2031,Guam,1998,0.0,1000 ha +2032,Guam,1999,0.0,1000 ha +2033,Guam,2000,0.0,1000 ha +2034,Guam,2001,0.0,1000 ha +2035,Guam,2002,0.0,1000 ha +2036,Guam,2003,0.0,1000 ha +2037,Guam,2004,0.0,1000 ha +2038,Guam,2005,0.0,1000 ha +2039,Guam,2006,0.0,1000 ha +2040,Guam,2007,0.0,1000 ha +2041,Guam,2008,0.0,1000 ha +2042,Guam,2009,0.0,1000 ha +2043,Guam,2010,0.0,1000 ha +2044,Guam,2011,0.0,1000 ha +2045,Guam,2012,0.0,1000 ha +2046,Guam,2013,0.0,1000 ha +2047,Guatemala,1990,2951.0,1000 ha +2048,Guatemala,1991,2885.1,1000 ha +2049,Guatemala,1992,2819.2,1000 ha +2050,Guatemala,1993,2753.3,1000 ha +2051,Guatemala,1994,2687.4,1000 ha +2052,Guatemala,1995,2621.5,1000 ha +2053,Guatemala,1996,2555.6,1000 ha +2054,Guatemala,1997,2489.7,1000 ha +2055,Guatemala,1998,2423.8,1000 ha +2056,Guatemala,1999,2357.9,1000 ha +2057,Guatemala,2000,2292.0,1000 ha +2058,Guatemala,2001,2224.2,1000 ha +2059,Guatemala,2002,2156.4,1000 ha +2060,Guatemala,2003,2088.6,1000 ha +2061,Guatemala,2004,2020.8,1000 ha +2062,Guatemala,2005,1953.0,1000 ha +2063,Guatemala,2006,1887.8,1000 ha +2064,Guatemala,2007,1822.6,1000 ha +2065,Guatemala,2008,1757.4,1000 ha +2066,Guatemala,2009,1692.2,1000 ha +2067,Guatemala,2010,1627.0,1000 ha +2068,Guatemala,2011,1568.4,1000 ha +2069,Guatemala,2012,1509.8,1000 ha +2070,Guatemala,2013,1451.2,1000 ha +2071,Guinea,1990,63.0,1000 ha +2072,Guinea,1991,63.0,1000 ha +2073,Guinea,1992,63.0,1000 ha +2074,Guinea,1993,63.0,1000 ha +2075,Guinea,1994,63.0,1000 ha +2076,Guinea,1995,63.0,1000 ha +2077,Guinea,1996,63.0,1000 ha +2078,Guinea,1997,63.0,1000 ha +2079,Guinea,1998,63.0,1000 ha +2080,Guinea,1999,63.0,1000 ha +2081,Guinea,2000,63.0,1000 ha +2082,Guinea,2001,63.0,1000 ha +2083,Guinea,2002,63.0,1000 ha +2084,Guinea,2003,63.0,1000 ha +2085,Guinea,2004,63.0,1000 ha +2086,Guinea,2005,63.0,1000 ha +2087,Guinea,2006,63.0,1000 ha +2088,Guinea,2007,63.0,1000 ha +2089,Guinea,2008,63.0,1000 ha +2090,Guinea,2009,63.0,1000 ha +2091,Guinea,2010,63.0,1000 ha +2092,Guinea,2011,63.0,1000 ha +2093,Guinea,2012,63.0,1000 ha +2094,Guinea,2013,63.0,1000 ha +2095,Guinea-Bissau,1990,0.0,1000 ha +2096,Guinea-Bissau,1991,0.0,1000 ha +2097,Guinea-Bissau,1992,0.0,1000 ha +2098,Guinea-Bissau,1993,0.0,1000 ha +2099,Guinea-Bissau,1994,0.0,1000 ha +2100,Guinea-Bissau,1995,0.0,1000 ha +2101,Guinea-Bissau,1996,0.0,1000 ha +2102,Guinea-Bissau,1997,0.0,1000 ha +2103,Guinea-Bissau,1998,0.0,1000 ha +2104,Guinea-Bissau,1999,0.0,1000 ha +2105,Guinea-Bissau,2000,0.0,1000 ha +2106,Guinea-Bissau,2001,0.0,1000 ha +2107,Guinea-Bissau,2002,0.0,1000 ha +2108,Guinea-Bissau,2003,0.0,1000 ha +2109,Guinea-Bissau,2004,0.0,1000 ha +2110,Guinea-Bissau,2005,0.0,1000 ha +2111,Guinea-Bissau,2006,0.0,1000 ha +2112,Guinea-Bissau,2007,0.0,1000 ha +2113,Guinea-Bissau,2008,0.0,1000 ha +2114,Guinea-Bissau,2009,0.0,1000 ha +2115,Guinea-Bissau,2010,0.0,1000 ha +2116,Guinea-Bissau,2011,0.0,1000 ha +2117,Guinea-Bissau,2012,0.0,1000 ha +2118,Guinea-Bissau,2013,0.0,1000 ha +2119,Guyana,1990,9477.0,1000 ha +2120,Guyana,1991,9357.0,1000 ha +2121,Guyana,1992,9237.0,1000 ha +2122,Guyana,1993,9117.0,1000 ha +2123,Guyana,1994,8997.0,1000 ha +2124,Guyana,1995,8877.0,1000 ha +2125,Guyana,1996,8757.0,1000 ha +2126,Guyana,1997,8637.0,1000 ha +2127,Guyana,1998,8517.0,1000 ha +2128,Guyana,1999,8397.0,1000 ha +2129,Guyana,2000,8277.0,1000 ha +2130,Guyana,2001,8157.0,1000 ha +2131,Guyana,2002,8037.0,1000 ha +2132,Guyana,2003,7917.0,1000 ha +2133,Guyana,2004,7797.0,1000 ha +2134,Guyana,2005,7677.0,1000 ha +2135,Guyana,2006,7557.0,1000 ha +2136,Guyana,2007,7437.0,1000 ha +2137,Guyana,2008,7317.0,1000 ha +2138,Guyana,2009,7197.0,1000 ha +2139,Guyana,2010,7077.0,1000 ha +2140,Guyana,2011,6957.0,1000 ha +2141,Guyana,2012,6837.0,1000 ha +2142,Guyana,2013,6717.0,1000 ha +2143,Haiti,1990,0.0,1000 ha +2144,Haiti,1991,0.0,1000 ha +2145,Haiti,1992,0.0,1000 ha +2146,Haiti,1993,0.0,1000 ha +2147,Haiti,1994,0.0,1000 ha +2148,Haiti,1995,0.0,1000 ha +2149,Haiti,1996,0.0,1000 ha +2150,Haiti,1997,0.0,1000 ha +2151,Haiti,1998,0.0,1000 ha +2152,Haiti,1999,0.0,1000 ha +2153,Haiti,2000,0.0,1000 ha +2154,Haiti,2001,0.0,1000 ha +2155,Haiti,2002,0.0,1000 ha +2156,Haiti,2003,0.0,1000 ha +2157,Haiti,2004,0.0,1000 ha +2158,Haiti,2005,0.0,1000 ha +2159,Haiti,2006,0.0,1000 ha +2160,Haiti,2007,0.0,1000 ha +2161,Haiti,2008,0.0,1000 ha +2162,Haiti,2009,0.0,1000 ha +2163,Haiti,2010,0.0,1000 ha +2164,Haiti,2011,0.0,1000 ha +2165,Haiti,2012,0.0,1000 ha +2166,Haiti,2013,0.0,1000 ha +2167,Honduras,1990,457.0,1000 ha +2168,Honduras,1991,457.0,1000 ha +2169,Honduras,1992,457.0,1000 ha +2170,Honduras,1993,457.0,1000 ha +2171,Honduras,1994,457.0,1000 ha +2172,Honduras,1995,457.0,1000 ha +2173,Honduras,1996,457.0,1000 ha +2174,Honduras,1997,457.0,1000 ha +2175,Honduras,1998,457.0,1000 ha +2176,Honduras,1999,457.0,1000 ha +2177,Honduras,2000,457.0,1000 ha +2178,Honduras,2001,457.0,1000 ha +2179,Honduras,2002,457.0,1000 ha +2180,Honduras,2003,457.0,1000 ha +2181,Honduras,2004,457.0,1000 ha +2182,Honduras,2005,457.0,1000 ha +2183,Honduras,2006,457.0,1000 ha +2184,Honduras,2007,457.0,1000 ha +2185,Honduras,2008,457.0,1000 ha +2186,Honduras,2009,457.0,1000 ha +2187,Honduras,2010,457.0,1000 ha +2188,Honduras,2011,457.0,1000 ha +2189,Honduras,2012,457.0,1000 ha +2190,Honduras,2013,457.0,1000 ha +2191,Hungary,1990,0.0,1000 ha +2192,Hungary,1991,0.0,1000 ha +2193,Hungary,1992,0.0,1000 ha +2194,Hungary,1993,0.0,1000 ha +2195,Hungary,1994,0.0,1000 ha +2196,Hungary,1995,0.0,1000 ha +2197,Hungary,1996,0.0,1000 ha +2198,Hungary,1997,0.0,1000 ha +2199,Hungary,1998,0.0,1000 ha +2200,Hungary,1999,0.0,1000 ha +2201,Hungary,2000,0.0,1000 ha +2202,Hungary,2001,0.0,1000 ha +2203,Hungary,2002,0.0,1000 ha +2204,Hungary,2003,0.0,1000 ha +2205,Hungary,2004,0.0,1000 ha +2206,Hungary,2005,0.0,1000 ha +2207,Hungary,2006,0.0,1000 ha +2208,Hungary,2007,0.0,1000 ha +2209,Hungary,2008,0.0,1000 ha +2210,Hungary,2009,0.0,1000 ha +2211,Hungary,2010,0.0,1000 ha +2212,Hungary,2011,0.0,1000 ha +2213,Hungary,2012,0.0,1000 ha +2214,Hungary,2013,0.0,1000 ha +2215,Iceland,1990,0.0,1000 ha +2216,Iceland,1991,0.0,1000 ha +2217,Iceland,1992,0.0,1000 ha +2218,Iceland,1993,0.0,1000 ha +2219,Iceland,1994,0.0,1000 ha +2220,Iceland,1995,0.0,1000 ha +2221,Iceland,1996,0.0,1000 ha +2222,Iceland,1997,0.0,1000 ha +2223,Iceland,1998,0.0,1000 ha +2224,Iceland,1999,0.0,1000 ha +2225,Iceland,2000,0.0,1000 ha +2226,Iceland,2001,0.0,1000 ha +2227,Iceland,2002,0.0,1000 ha +2228,Iceland,2003,0.0,1000 ha +2229,Iceland,2004,0.0,1000 ha +2230,Iceland,2005,0.0,1000 ha +2231,Iceland,2006,0.0,1000 ha +2232,Iceland,2007,0.0,1000 ha +2233,Iceland,2008,0.0,1000 ha +2234,Iceland,2009,0.0,1000 ha +2235,Iceland,2010,0.0,1000 ha +2236,Iceland,2011,0.0,1000 ha +2237,Iceland,2012,0.0,1000 ha +2238,Iceland,2013,0.0,1000 ha +2239,India,1990,15701.0,1000 ha +2240,India,1991,15701.0,1000 ha +2241,India,1992,15701.0,1000 ha +2242,India,1993,15701.0,1000 ha +2243,India,1994,15701.0,1000 ha +2244,India,1995,15701.0,1000 ha +2245,India,1996,15701.0,1000 ha +2246,India,1997,15701.0,1000 ha +2247,India,1998,15701.0,1000 ha +2248,India,1999,15701.0,1000 ha +2249,India,2000,15701.0,1000 ha +2250,India,2001,15701.0,1000 ha +2251,India,2002,15701.0,1000 ha +2252,India,2003,15701.0,1000 ha +2253,India,2004,15701.0,1000 ha +2254,India,2005,15701.0,1000 ha +2255,India,2006,15701.0,1000 ha +2256,India,2007,15701.0,1000 ha +2257,India,2008,15701.0,1000 ha +2258,India,2009,15701.0,1000 ha +2259,India,2010,15701.0,1000 ha +2260,India,2011,15701.0,1000 ha +2261,India,2012,15701.0,1000 ha +2262,India,2013,15701.0,1000 ha +2263,Indonesia,1990,49453.0,1000 ha +2264,Indonesia,1991,49453.0,1000 ha +2265,Indonesia,1992,49453.0,1000 ha +2266,Indonesia,1993,49453.0,1000 ha +2267,Indonesia,1994,49453.0,1000 ha +2268,Indonesia,1995,49453.0,1000 ha +2269,Indonesia,1996,49453.0,1000 ha +2270,Indonesia,1997,49453.0,1000 ha +2271,Indonesia,1998,49453.0,1000 ha +2272,Indonesia,1999,49453.0,1000 ha +2273,Indonesia,2000,49453.0,1000 ha +2274,Indonesia,2001,49224.4,1000 ha +2275,Indonesia,2002,48995.8,1000 ha +2276,Indonesia,2003,48767.2,1000 ha +2277,Indonesia,2004,48538.6,1000 ha +2278,Indonesia,2005,48310.0,1000 ha +2279,Indonesia,2006,48081.4,1000 ha +2280,Indonesia,2007,47852.8,1000 ha +2281,Indonesia,2008,47624.2,1000 ha +2282,Indonesia,2009,47395.6,1000 ha +2283,Indonesia,2010,47167.0,1000 ha +2284,Indonesia,2011,46938.4,1000 ha +2285,Indonesia,2012,46709.8,1000 ha +2286,Indonesia,2013,46481.2,1000 ha +2287,Iran (Islamic Republic of),1990,200.0,1000 ha +2288,Iran (Islamic Republic of),1991,200.0,1000 ha +2289,Iran (Islamic Republic of),1992,200.0,1000 ha +2290,Iran (Islamic Republic of),1993,200.0,1000 ha +2291,Iran (Islamic Republic of),1994,200.0,1000 ha +2292,Iran (Islamic Republic of),1995,200.0,1000 ha +2293,Iran (Islamic Republic of),1996,200.0,1000 ha +2294,Iran (Islamic Republic of),1997,200.0,1000 ha +2295,Iran (Islamic Republic of),1998,200.0,1000 ha +2296,Iran (Islamic Republic of),1999,200.0,1000 ha +2297,Iran (Islamic Republic of),2000,200.0,1000 ha +2298,Iran (Islamic Republic of),2001,200.0,1000 ha +2299,Iran (Islamic Republic of),2002,200.0,1000 ha +2300,Iran (Islamic Republic of),2003,200.0,1000 ha +2301,Iran (Islamic Republic of),2004,200.0,1000 ha +2302,Iran (Islamic Republic of),2005,200.0,1000 ha +2303,Iran (Islamic Republic of),2006,200.0,1000 ha +2304,Iran (Islamic Republic of),2007,200.0,1000 ha +2305,Iran (Islamic Republic of),2008,200.0,1000 ha +2306,Iran (Islamic Republic of),2009,200.0,1000 ha +2307,Iran (Islamic Republic of),2010,200.0,1000 ha +2308,Iran (Islamic Republic of),2011,200.0,1000 ha +2309,Iran (Islamic Republic of),2012,200.0,1000 ha +2310,Iran (Islamic Republic of),2013,200.0,1000 ha +2311,Iraq,1990,0.0,1000 ha +2312,Iraq,1991,0.0,1000 ha +2313,Iraq,1992,0.0,1000 ha +2314,Iraq,1993,0.0,1000 ha +2315,Iraq,1994,0.0,1000 ha +2316,Iraq,1995,0.0,1000 ha +2317,Iraq,1996,0.0,1000 ha +2318,Iraq,1997,0.0,1000 ha +2319,Iraq,1998,0.0,1000 ha +2320,Iraq,1999,0.0,1000 ha +2321,Iraq,2000,0.0,1000 ha +2322,Iraq,2001,0.0,1000 ha +2323,Iraq,2002,0.0,1000 ha +2324,Iraq,2003,0.0,1000 ha +2325,Iraq,2004,0.0,1000 ha +2326,Iraq,2005,0.0,1000 ha +2327,Iraq,2006,0.0,1000 ha +2328,Iraq,2007,0.0,1000 ha +2329,Iraq,2008,0.0,1000 ha +2330,Iraq,2009,0.0,1000 ha +2331,Iraq,2010,0.0,1000 ha +2332,Iraq,2011,0.0,1000 ha +2333,Iraq,2012,0.0,1000 ha +2334,Iraq,2013,0.0,1000 ha +2335,Ireland,1990,0.0,1000 ha +2336,Ireland,1991,0.0,1000 ha +2337,Ireland,1992,0.0,1000 ha +2338,Ireland,1993,0.0,1000 ha +2339,Ireland,1994,0.0,1000 ha +2340,Ireland,1995,0.0,1000 ha +2341,Ireland,1996,0.0,1000 ha +2342,Ireland,1997,0.0,1000 ha +2343,Ireland,1998,0.0,1000 ha +2344,Ireland,1999,0.0,1000 ha +2345,Ireland,2000,0.0,1000 ha +2346,Ireland,2001,0.0,1000 ha +2347,Ireland,2002,0.0,1000 ha +2348,Ireland,2003,0.0,1000 ha +2349,Ireland,2004,0.0,1000 ha +2350,Ireland,2005,0.0,1000 ha +2351,Ireland,2006,0.0,1000 ha +2352,Ireland,2007,0.0,1000 ha +2353,Ireland,2008,0.0,1000 ha +2354,Ireland,2009,0.0,1000 ha +2355,Ireland,2010,0.0,1000 ha +2356,Ireland,2011,0.0,1000 ha +2357,Ireland,2012,0.0,1000 ha +2358,Ireland,2013,0.0,1000 ha +2359,Isle of Man,1990,0.0,1000 ha +2360,Isle of Man,1991,0.0,1000 ha +2361,Isle of Man,1992,0.0,1000 ha +2362,Isle of Man,1993,0.0,1000 ha +2363,Isle of Man,1994,0.0,1000 ha +2364,Isle of Man,1995,0.0,1000 ha +2365,Isle of Man,1996,0.0,1000 ha +2366,Isle of Man,1997,0.0,1000 ha +2367,Isle of Man,1998,0.0,1000 ha +2368,Isle of Man,1999,0.0,1000 ha +2369,Isle of Man,2000,0.0,1000 ha +2370,Isle of Man,2001,0.0,1000 ha +2371,Isle of Man,2002,0.0,1000 ha +2372,Isle of Man,2003,0.0,1000 ha +2373,Isle of Man,2004,0.0,1000 ha +2374,Isle of Man,2005,0.0,1000 ha +2375,Isle of Man,2006,0.0,1000 ha +2376,Isle of Man,2007,0.0,1000 ha +2377,Isle of Man,2008,0.0,1000 ha +2378,Isle of Man,2009,0.0,1000 ha +2379,Isle of Man,2010,0.0,1000 ha +2380,Isle of Man,2011,0.0,1000 ha +2381,Isle of Man,2012,0.0,1000 ha +2382,Isle of Man,2013,0.0,1000 ha +2383,Israel,1990,0.0,1000 ha +2384,Israel,1991,0.0,1000 ha +2385,Israel,1992,0.0,1000 ha +2386,Israel,1993,0.0,1000 ha +2387,Israel,1994,0.0,1000 ha +2388,Israel,1995,0.0,1000 ha +2389,Israel,1996,0.0,1000 ha +2390,Israel,1997,0.0,1000 ha +2391,Israel,1998,0.0,1000 ha +2392,Israel,1999,0.0,1000 ha +2393,Israel,2000,0.0,1000 ha +2394,Israel,2001,0.0,1000 ha +2395,Israel,2002,0.0,1000 ha +2396,Israel,2003,0.0,1000 ha +2397,Israel,2004,0.0,1000 ha +2398,Israel,2005,0.0,1000 ha +2399,Israel,2006,0.0,1000 ha +2400,Israel,2007,0.0,1000 ha +2401,Israel,2008,0.0,1000 ha +2402,Israel,2009,0.0,1000 ha +2403,Israel,2010,0.0,1000 ha +2404,Israel,2011,0.0,1000 ha +2405,Israel,2012,0.0,1000 ha +2406,Israel,2013,0.0,1000 ha +2407,Italy,1990,93.0,1000 ha +2408,Italy,1991,93.0,1000 ha +2409,Italy,1992,93.0,1000 ha +2410,Italy,1993,93.0,1000 ha +2411,Italy,1994,93.0,1000 ha +2412,Italy,1995,93.0,1000 ha +2413,Italy,1996,93.0,1000 ha +2414,Italy,1997,93.0,1000 ha +2415,Italy,1998,93.0,1000 ha +2416,Italy,1999,93.0,1000 ha +2417,Italy,2000,93.0,1000 ha +2418,Italy,2001,93.0,1000 ha +2419,Italy,2002,93.0,1000 ha +2420,Italy,2003,93.0,1000 ha +2421,Italy,2004,93.0,1000 ha +2422,Italy,2005,93.0,1000 ha +2423,Italy,2006,93.0,1000 ha +2424,Italy,2007,93.0,1000 ha +2425,Italy,2008,93.0,1000 ha +2426,Italy,2009,93.0,1000 ha +2427,Italy,2010,93.0,1000 ha +2428,Italy,2011,93.0,1000 ha +2429,Italy,2012,93.0,1000 ha +2430,Italy,2013,93.0,1000 ha +2431,Jamaica,1990,88.9,1000 ha +2432,Jamaica,1991,88.84,1000 ha +2433,Jamaica,1992,88.78,1000 ha +2434,Jamaica,1993,88.72,1000 ha +2435,Jamaica,1994,88.66,1000 ha +2436,Jamaica,1995,88.6,1000 ha +2437,Jamaica,1996,88.54,1000 ha +2438,Jamaica,1997,88.48,1000 ha +2439,Jamaica,1998,88.42,1000 ha +2440,Jamaica,1999,88.36,1000 ha +2441,Jamaica,2000,88.3,1000 ha +2442,Jamaica,2001,88.24,1000 ha +2443,Jamaica,2002,88.18,1000 ha +2444,Jamaica,2003,88.12,1000 ha +2445,Jamaica,2004,88.06,1000 ha +2446,Jamaica,2005,88.0,1000 ha +2447,Jamaica,2006,87.94,1000 ha +2448,Jamaica,2007,87.88,1000 ha +2449,Jamaica,2008,87.82,1000 ha +2450,Jamaica,2009,87.76,1000 ha +2451,Jamaica,2010,87.7,1000 ha +2452,Jamaica,2011,87.66,1000 ha +2453,Jamaica,2012,87.62,1000 ha +2454,Jamaica,2013,87.58,1000 ha +2455,Japan,1990,3764.0,1000 ha +2456,Japan,1991,3793.0,1000 ha +2457,Japan,1992,3822.0,1000 ha +2458,Japan,1993,3851.0,1000 ha +2459,Japan,1994,3880.0,1000 ha +2460,Japan,1995,3909.0,1000 ha +2461,Japan,1996,3938.0,1000 ha +2462,Japan,1997,3967.0,1000 ha +2463,Japan,1998,3996.0,1000 ha +2464,Japan,1999,4025.0,1000 ha +2465,Japan,2000,4054.0,1000 ha +2466,Japan,2001,4133.0,1000 ha +2467,Japan,2002,4212.0,1000 ha +2468,Japan,2003,4291.0,1000 ha +2469,Japan,2004,4370.0,1000 ha +2470,Japan,2005,4449.0,1000 ha +2471,Japan,2006,4513.2,1000 ha +2472,Japan,2007,4577.4,1000 ha +2473,Japan,2008,4641.6,1000 ha +2474,Japan,2009,4705.8,1000 ha +2475,Japan,2010,4770.0,1000 ha +2476,Japan,2011,4797.0,1000 ha +2477,Japan,2012,4824.0,1000 ha +2478,Japan,2013,4851.0,1000 ha +2479,Jordan,1990,0.0,1000 ha +2480,Jordan,1991,0.0,1000 ha +2481,Jordan,1992,0.0,1000 ha +2482,Jordan,1993,0.0,1000 ha +2483,Jordan,1994,0.0,1000 ha +2484,Jordan,1995,0.0,1000 ha +2485,Jordan,1996,0.0,1000 ha +2486,Jordan,1997,0.0,1000 ha +2487,Jordan,1998,0.0,1000 ha +2488,Jordan,1999,0.0,1000 ha +2489,Jordan,2000,0.0,1000 ha +2490,Jordan,2001,0.0,1000 ha +2491,Jordan,2002,0.0,1000 ha +2492,Jordan,2003,0.0,1000 ha +2493,Jordan,2004,0.0,1000 ha +2494,Jordan,2005,0.0,1000 ha +2495,Jordan,2006,0.0,1000 ha +2496,Jordan,2007,0.0,1000 ha +2497,Jordan,2008,0.0,1000 ha +2498,Jordan,2009,0.0,1000 ha +2499,Jordan,2010,0.0,1000 ha +2500,Jordan,2011,0.0,1000 ha +2501,Jordan,2012,0.0,1000 ha +2502,Jordan,2013,0.0,1000 ha +2503,Kazakhstan,1992,0.0,1000 ha +2504,Kazakhstan,1993,0.0,1000 ha +2505,Kazakhstan,1994,0.0,1000 ha +2506,Kazakhstan,1995,0.0,1000 ha +2507,Kazakhstan,1996,0.0,1000 ha +2508,Kazakhstan,1997,0.0,1000 ha +2509,Kazakhstan,1998,0.0,1000 ha +2510,Kazakhstan,1999,0.0,1000 ha +2511,Kazakhstan,2000,0.0,1000 ha +2512,Kazakhstan,2001,0.0,1000 ha +2513,Kazakhstan,2002,0.0,1000 ha +2514,Kazakhstan,2003,0.0,1000 ha +2515,Kazakhstan,2004,0.0,1000 ha +2516,Kazakhstan,2005,0.0,1000 ha +2517,Kazakhstan,2006,0.0,1000 ha +2518,Kazakhstan,2007,0.0,1000 ha +2519,Kazakhstan,2008,0.0,1000 ha +2520,Kazakhstan,2009,0.0,1000 ha +2521,Kazakhstan,2010,0.0,1000 ha +2522,Kazakhstan,2011,0.0,1000 ha +2523,Kazakhstan,2012,0.0,1000 ha +2524,Kazakhstan,2013,0.0,1000 ha +2525,Kenya,1990,0.0,1000 ha +2526,Kenya,1991,0.0,1000 ha +2527,Kenya,1992,0.0,1000 ha +2528,Kenya,1993,0.0,1000 ha +2529,Kenya,1994,0.0,1000 ha +2530,Kenya,1995,0.0,1000 ha +2531,Kenya,1996,0.0,1000 ha +2532,Kenya,1997,0.0,1000 ha +2533,Kenya,1998,0.0,1000 ha +2534,Kenya,1999,0.0,1000 ha +2535,Kenya,2000,0.0,1000 ha +2536,Kenya,2001,0.0,1000 ha +2537,Kenya,2002,0.0,1000 ha +2538,Kenya,2003,0.0,1000 ha +2539,Kenya,2004,0.0,1000 ha +2540,Kenya,2005,0.0,1000 ha +2541,Kenya,2006,0.0,1000 ha +2542,Kenya,2007,0.0,1000 ha +2543,Kenya,2008,0.0,1000 ha +2544,Kenya,2009,0.0,1000 ha +2545,Kenya,2010,0.0,1000 ha +2546,Kenya,2011,0.0,1000 ha +2547,Kenya,2012,0.0,1000 ha +2548,Kenya,2013,0.0,1000 ha +2549,Kiribati,1990,0.0,1000 ha +2550,Kiribati,1991,0.0,1000 ha +2551,Kiribati,1992,0.0,1000 ha +2552,Kiribati,1993,0.0,1000 ha +2553,Kiribati,1994,0.0,1000 ha +2554,Kiribati,1995,0.0,1000 ha +2555,Kiribati,1996,0.0,1000 ha +2556,Kiribati,1997,0.0,1000 ha +2557,Kiribati,1998,0.0,1000 ha +2558,Kiribati,1999,0.0,1000 ha +2559,Kiribati,2000,0.0,1000 ha +2560,Kiribati,2001,0.0,1000 ha +2561,Kiribati,2002,0.0,1000 ha +2562,Kiribati,2003,0.0,1000 ha +2563,Kiribati,2004,0.0,1000 ha +2564,Kiribati,2005,0.0,1000 ha +2565,Kiribati,2006,0.0,1000 ha +2566,Kiribati,2007,0.0,1000 ha +2567,Kiribati,2008,0.0,1000 ha +2568,Kiribati,2009,0.0,1000 ha +2569,Kiribati,2010,0.0,1000 ha +2570,Kiribati,2011,0.0,1000 ha +2571,Kiribati,2012,0.0,1000 ha +2572,Kiribati,2013,0.0,1000 ha +2573,Kuwait,1990,0.0,1000 ha +2574,Kuwait,1991,0.0,1000 ha +2575,Kuwait,1992,0.0,1000 ha +2576,Kuwait,1993,0.0,1000 ha +2577,Kuwait,1994,0.0,1000 ha +2578,Kuwait,1995,0.0,1000 ha +2579,Kuwait,1996,0.0,1000 ha +2580,Kuwait,1997,0.0,1000 ha +2581,Kuwait,1998,0.0,1000 ha +2582,Kuwait,1999,0.0,1000 ha +2583,Kuwait,2000,0.0,1000 ha +2584,Kuwait,2001,0.0,1000 ha +2585,Kuwait,2002,0.0,1000 ha +2586,Kuwait,2003,0.0,1000 ha +2587,Kuwait,2004,0.0,1000 ha +2588,Kuwait,2005,0.0,1000 ha +2589,Kuwait,2006,0.0,1000 ha +2590,Kuwait,2007,0.0,1000 ha +2591,Kuwait,2008,0.0,1000 ha +2592,Kuwait,2009,0.0,1000 ha +2593,Kuwait,2010,0.0,1000 ha +2594,Kuwait,2011,0.0,1000 ha +2595,Kuwait,2012,0.0,1000 ha +2596,Kuwait,2013,0.0,1000 ha +2597,Kyrgyzstan,1992,793.54,1000 ha +2598,Kyrgyzstan,1993,793.61,1000 ha +2599,Kyrgyzstan,1994,793.68,1000 ha +2600,Kyrgyzstan,1995,793.75,1000 ha +2601,Kyrgyzstan,1996,793.82,1000 ha +2602,Kyrgyzstan,1997,793.89,1000 ha +2603,Kyrgyzstan,1998,793.96,1000 ha +2604,Kyrgyzstan,1999,794.03,1000 ha +2605,Kyrgyzstan,2000,794.1,1000 ha +2606,Kyrgyzstan,2001,795.58,1000 ha +2607,Kyrgyzstan,2002,797.06,1000 ha +2608,Kyrgyzstan,2003,798.54,1000 ha +2609,Kyrgyzstan,2004,800.02,1000 ha +2610,Kyrgyzstan,2005,801.5,1000 ha +2611,Kyrgyzstan,2006,767.2,1000 ha +2612,Kyrgyzstan,2007,732.9,1000 ha +2613,Kyrgyzstan,2008,698.6,1000 ha +2614,Kyrgyzstan,2009,664.3,1000 ha +2615,Kyrgyzstan,2010,630.0,1000 ha +2616,Kyrgyzstan,2011,630.0,1000 ha +2617,Kyrgyzstan,2012,630.0,1000 ha +2618,Kyrgyzstan,2013,630.0,1000 ha +2619,Lao People's Democratic Republic,1990,1592.9,1000 ha +2620,Lao People's Democratic Republic,1991,1577.4879999999998,1000 ha +2621,Lao People's Democratic Republic,1992,1562.076,1000 ha +2622,Lao People's Democratic Republic,1993,1546.664,1000 ha +2623,Lao People's Democratic Republic,1994,1531.2520000000002,1000 ha +2624,Lao People's Democratic Republic,1995,1515.84,1000 ha +2625,Lao People's Democratic Republic,1996,1500.4279999999999,1000 ha +2626,Lao People's Democratic Republic,1997,1485.016,1000 ha +2627,Lao People's Democratic Republic,1998,1469.604,1000 ha +2628,Lao People's Democratic Republic,1999,1454.192,1000 ha +2629,Lao People's Democratic Republic,2000,1438.78,1000 ha +2630,Lao People's Democratic Republic,2001,1422.7279999999998,1000 ha +2631,Lao People's Democratic Republic,2002,1406.6760000000002,1000 ha +2632,Lao People's Democratic Republic,2003,1390.624,1000 ha +2633,Lao People's Democratic Republic,2004,1374.5720000000001,1000 ha +2634,Lao People's Democratic Republic,2005,1358.52,1000 ha +2635,Lao People's Democratic Republic,2006,1342.0420000000001,1000 ha +2636,Lao People's Democratic Republic,2007,1325.5639999999999,1000 ha +2637,Lao People's Democratic Republic,2008,1309.086,1000 ha +2638,Lao People's Democratic Republic,2009,1292.608,1000 ha +2639,Lao People's Democratic Republic,2010,1276.13,1000 ha +2640,Lao People's Democratic Republic,2011,1259.65,1000 ha +2641,Lao People's Democratic Republic,2012,1243.17,1000 ha +2642,Lao People's Democratic Republic,2013,1226.69,1000 ha +2643,Latvia,1992,17.0,1000 ha +2644,Latvia,1993,17.0,1000 ha +2645,Latvia,1994,17.0,1000 ha +2646,Latvia,1995,17.0,1000 ha +2647,Latvia,1996,17.0,1000 ha +2648,Latvia,1997,17.0,1000 ha +2649,Latvia,1998,17.0,1000 ha +2650,Latvia,1999,17.0,1000 ha +2651,Latvia,2000,17.0,1000 ha +2652,Latvia,2001,16.8,1000 ha +2653,Latvia,2002,16.6,1000 ha +2654,Latvia,2003,16.4,1000 ha +2655,Latvia,2004,16.2,1000 ha +2656,Latvia,2005,16.0,1000 ha +2657,Latvia,2006,15.8,1000 ha +2658,Latvia,2007,15.6,1000 ha +2659,Latvia,2008,15.4,1000 ha +2660,Latvia,2009,15.2,1000 ha +2661,Latvia,2010,15.0,1000 ha +2662,Latvia,2011,15.2,1000 ha +2663,Latvia,2012,15.4,1000 ha +2664,Latvia,2013,15.6,1000 ha +2665,Lebanon,1990,0.0,1000 ha +2666,Lebanon,1991,0.0,1000 ha +2667,Lebanon,1992,0.0,1000 ha +2668,Lebanon,1993,0.0,1000 ha +2669,Lebanon,1994,0.0,1000 ha +2670,Lebanon,1995,0.0,1000 ha +2671,Lebanon,1996,0.0,1000 ha +2672,Lebanon,1997,0.0,1000 ha +2673,Lebanon,1998,0.0,1000 ha +2674,Lebanon,1999,0.0,1000 ha +2675,Lebanon,2000,0.0,1000 ha +2676,Lebanon,2001,0.0,1000 ha +2677,Lebanon,2002,0.0,1000 ha +2678,Lebanon,2003,0.0,1000 ha +2679,Lebanon,2004,0.0,1000 ha +2680,Lebanon,2005,0.0,1000 ha +2681,Lebanon,2006,0.0,1000 ha +2682,Lebanon,2007,0.0,1000 ha +2683,Lebanon,2008,0.0,1000 ha +2684,Lebanon,2009,0.0,1000 ha +2685,Lebanon,2010,0.0,1000 ha +2686,Lebanon,2011,0.0,1000 ha +2687,Lebanon,2012,0.0,1000 ha +2688,Lebanon,2013,0.0,1000 ha +2689,Lesotho,1990,0.0,1000 ha +2690,Lesotho,1991,0.0,1000 ha +2691,Lesotho,1992,0.0,1000 ha +2692,Lesotho,1993,0.0,1000 ha +2693,Lesotho,1994,0.0,1000 ha +2694,Lesotho,1995,0.0,1000 ha +2695,Lesotho,1996,0.0,1000 ha +2696,Lesotho,1997,0.0,1000 ha +2697,Lesotho,1998,0.0,1000 ha +2698,Lesotho,1999,0.0,1000 ha +2699,Lesotho,2000,0.0,1000 ha +2700,Lesotho,2001,0.0,1000 ha +2701,Lesotho,2002,0.0,1000 ha +2702,Lesotho,2003,0.0,1000 ha +2703,Lesotho,2004,0.0,1000 ha +2704,Lesotho,2005,0.0,1000 ha +2705,Lesotho,2006,0.0,1000 ha +2706,Lesotho,2007,0.0,1000 ha +2707,Lesotho,2008,0.0,1000 ha +2708,Lesotho,2009,0.0,1000 ha +2709,Lesotho,2010,0.0,1000 ha +2710,Lesotho,2011,0.0,1000 ha +2711,Lesotho,2012,0.0,1000 ha +2712,Lesotho,2013,0.0,1000 ha +2713,Liberia,1990,175.0,1000 ha +2714,Liberia,1991,175.0,1000 ha +2715,Liberia,1992,175.0,1000 ha +2716,Liberia,1993,175.0,1000 ha +2717,Liberia,1994,175.0,1000 ha +2718,Liberia,1995,175.0,1000 ha +2719,Liberia,1996,175.0,1000 ha +2720,Liberia,1997,175.0,1000 ha +2721,Liberia,1998,175.0,1000 ha +2722,Liberia,1999,175.0,1000 ha +2723,Liberia,2000,175.0,1000 ha +2724,Liberia,2001,175.0,1000 ha +2725,Liberia,2002,175.0,1000 ha +2726,Liberia,2003,175.0,1000 ha +2727,Liberia,2004,175.0,1000 ha +2728,Liberia,2005,175.0,1000 ha +2729,Liberia,2006,175.0,1000 ha +2730,Liberia,2007,175.0,1000 ha +2731,Liberia,2008,175.0,1000 ha +2732,Liberia,2009,175.0,1000 ha +2733,Liberia,2010,175.0,1000 ha +2734,Liberia,2011,175.0,1000 ha +2735,Liberia,2012,175.0,1000 ha +2736,Liberia,2013,175.0,1000 ha +2737,Libya,1990,0.0,1000 ha +2738,Libya,1991,0.0,1000 ha +2739,Libya,1992,0.0,1000 ha +2740,Libya,1993,0.0,1000 ha +2741,Libya,1994,0.0,1000 ha +2742,Libya,1995,0.0,1000 ha +2743,Libya,1996,0.0,1000 ha +2744,Libya,1997,0.0,1000 ha +2745,Libya,1998,0.0,1000 ha +2746,Libya,1999,0.0,1000 ha +2747,Libya,2000,0.0,1000 ha +2748,Libya,2001,0.0,1000 ha +2749,Libya,2002,0.0,1000 ha +2750,Libya,2003,0.0,1000 ha +2751,Libya,2004,0.0,1000 ha +2752,Libya,2005,0.0,1000 ha +2753,Libya,2006,0.0,1000 ha +2754,Libya,2007,0.0,1000 ha +2755,Libya,2008,0.0,1000 ha +2756,Libya,2009,0.0,1000 ha +2757,Libya,2010,0.0,1000 ha +2758,Libya,2011,0.0,1000 ha +2759,Libya,2012,0.0,1000 ha +2760,Libya,2013,0.0,1000 ha +2761,Liechtenstein,1990,1.5,1000 ha +2762,Liechtenstein,1991,1.5,1000 ha +2763,Liechtenstein,1992,1.5,1000 ha +2764,Liechtenstein,1993,1.5,1000 ha +2765,Liechtenstein,1994,1.5,1000 ha +2766,Liechtenstein,1995,1.5,1000 ha +2767,Liechtenstein,1996,1.5,1000 ha +2768,Liechtenstein,1997,1.5,1000 ha +2769,Liechtenstein,1998,1.5,1000 ha +2770,Liechtenstein,1999,1.5,1000 ha +2771,Liechtenstein,2000,1.5,1000 ha +2772,Liechtenstein,2001,1.5,1000 ha +2773,Liechtenstein,2002,1.5,1000 ha +2774,Liechtenstein,2003,1.5,1000 ha +2775,Liechtenstein,2004,1.5,1000 ha +2776,Liechtenstein,2005,1.5,1000 ha +2777,Liechtenstein,2006,1.5,1000 ha +2778,Liechtenstein,2007,1.5,1000 ha +2779,Liechtenstein,2008,1.5,1000 ha +2780,Liechtenstein,2009,1.5,1000 ha +2781,Liechtenstein,2010,1.5,1000 ha +2782,Liechtenstein,2011,1.5,1000 ha +2783,Liechtenstein,2012,1.5,1000 ha +2784,Liechtenstein,2013,1.5,1000 ha +2785,Lithuania,1992,20.2,1000 ha +2786,Lithuania,1993,20.3,1000 ha +2787,Lithuania,1994,20.4,1000 ha +2788,Lithuania,1995,20.5,1000 ha +2789,Lithuania,1996,20.6,1000 ha +2790,Lithuania,1997,20.7,1000 ha +2791,Lithuania,1998,20.8,1000 ha +2792,Lithuania,1999,20.9,1000 ha +2793,Lithuania,2000,21.0,1000 ha +2794,Lithuania,2001,22.0,1000 ha +2795,Lithuania,2002,23.0,1000 ha +2796,Lithuania,2003,24.0,1000 ha +2797,Lithuania,2004,25.0,1000 ha +2798,Lithuania,2005,26.0,1000 ha +2799,Lithuania,2006,26.0,1000 ha +2800,Lithuania,2007,26.0,1000 ha +2801,Lithuania,2008,26.0,1000 ha +2802,Lithuania,2009,26.0,1000 ha +2803,Lithuania,2010,26.0,1000 ha +2804,Lithuania,2011,26.0,1000 ha +2805,Lithuania,2012,26.0,1000 ha +2806,Lithuania,2013,26.0,1000 ha +2807,Luxembourg,2000,0.0,1000 ha +2808,Luxembourg,2001,0.0,1000 ha +2809,Luxembourg,2002,0.0,1000 ha +2810,Luxembourg,2003,0.0,1000 ha +2811,Luxembourg,2004,0.0,1000 ha +2812,Luxembourg,2005,0.0,1000 ha +2813,Luxembourg,2006,0.0,1000 ha +2814,Luxembourg,2007,0.0,1000 ha +2815,Luxembourg,2008,0.0,1000 ha +2816,Luxembourg,2009,0.0,1000 ha +2817,Luxembourg,2010,0.0,1000 ha +2818,Luxembourg,2011,0.0,1000 ha +2819,Luxembourg,2012,0.0,1000 ha +2820,Luxembourg,2013,0.0,1000 ha +2821,Madagascar,1990,3367.0,1000 ha +2822,Madagascar,1991,3348.2,1000 ha +2823,Madagascar,1992,3329.4,1000 ha +2824,Madagascar,1993,3310.6,1000 ha +2825,Madagascar,1994,3291.8,1000 ha +2826,Madagascar,1995,3273.0,1000 ha +2827,Madagascar,1996,3254.2,1000 ha +2828,Madagascar,1997,3235.4,1000 ha +2829,Madagascar,1998,3216.6,1000 ha +2830,Madagascar,1999,3197.8,1000 ha +2831,Madagascar,2000,3179.0,1000 ha +2832,Madagascar,2001,3170.6,1000 ha +2833,Madagascar,2002,3162.2,1000 ha +2834,Madagascar,2003,3153.8,1000 ha +2835,Madagascar,2004,3145.4,1000 ha +2836,Madagascar,2005,3137.0,1000 ha +2837,Madagascar,2006,3116.8,1000 ha +2838,Madagascar,2007,3096.6,1000 ha +2839,Madagascar,2008,3076.4,1000 ha +2840,Madagascar,2009,3056.2,1000 ha +2841,Madagascar,2010,3036.0,1000 ha +2842,Madagascar,2011,3027.4,1000 ha +2843,Madagascar,2012,3018.8,1000 ha +2844,Madagascar,2013,3010.2,1000 ha +2845,Malawi,1990,1727.0,1000 ha +2846,Malawi,1991,1687.3,1000 ha +2847,Malawi,1992,1647.6,1000 ha +2848,Malawi,1993,1607.9,1000 ha +2849,Malawi,1994,1568.2,1000 ha +2850,Malawi,1995,1528.5,1000 ha +2851,Malawi,1996,1488.8,1000 ha +2852,Malawi,1997,1449.1,1000 ha +2853,Malawi,1998,1409.4,1000 ha +2854,Malawi,1999,1369.7,1000 ha +2855,Malawi,2000,1330.0,1000 ha +2856,Malawi,2001,1290.4,1000 ha +2857,Malawi,2002,1250.8,1000 ha +2858,Malawi,2003,1211.2,1000 ha +2859,Malawi,2004,1171.6,1000 ha +2860,Malawi,2005,1132.0,1000 ha +2861,Malawi,2006,1092.4,1000 ha +2862,Malawi,2007,1052.8,1000 ha +2863,Malawi,2008,1013.2,1000 ha +2864,Malawi,2009,973.6,1000 ha +2865,Malawi,2010,934.0,1000 ha +2866,Malawi,2011,916.2,1000 ha +2867,Malawi,2012,898.4,1000 ha +2868,Malawi,2013,880.6,1000 ha +2869,Malaysia,1990,3820.0,1000 ha +2870,Malaysia,1991,3841.0,1000 ha +2871,Malaysia,1992,3862.0,1000 ha +2872,Malaysia,1993,3883.0,1000 ha +2873,Malaysia,1994,3904.0,1000 ha +2874,Malaysia,1995,3925.0,1000 ha +2875,Malaysia,1996,3946.0,1000 ha +2876,Malaysia,1997,3967.0,1000 ha +2877,Malaysia,1998,3988.0,1000 ha +2878,Malaysia,1999,4009.0,1000 ha +2879,Malaysia,2000,4030.0,1000 ha +2880,Malaysia,2001,4210.0,1000 ha +2881,Malaysia,2002,4390.0,1000 ha +2882,Malaysia,2003,4570.0,1000 ha +2883,Malaysia,2004,4750.0,1000 ha +2884,Malaysia,2005,4930.0,1000 ha +2885,Malaysia,2006,4917.4,1000 ha +2886,Malaysia,2007,4904.8,1000 ha +2887,Malaysia,2008,4892.2,1000 ha +2888,Malaysia,2009,4879.6,1000 ha +2889,Malaysia,2010,4867.0,1000 ha +2890,Malaysia,2011,4901.8,1000 ha +2891,Malaysia,2012,4936.6,1000 ha +2892,Malaysia,2013,4971.4,1000 ha +2893,Maldives,1990,0.0,1000 ha +2894,Maldives,1991,0.0,1000 ha +2895,Maldives,1992,0.0,1000 ha +2896,Maldives,1993,0.0,1000 ha +2897,Maldives,1994,0.0,1000 ha +2898,Maldives,1995,0.0,1000 ha +2899,Maldives,1996,0.0,1000 ha +2900,Maldives,1997,0.0,1000 ha +2901,Maldives,1998,0.0,1000 ha +2902,Maldives,1999,0.0,1000 ha +2903,Maldives,2000,0.0,1000 ha +2904,Maldives,2001,0.0,1000 ha +2905,Maldives,2002,0.0,1000 ha +2906,Maldives,2003,0.0,1000 ha +2907,Maldives,2004,0.0,1000 ha +2908,Maldives,2005,0.0,1000 ha +2909,Maldives,2006,0.0,1000 ha +2910,Maldives,2007,0.0,1000 ha +2911,Maldives,2008,0.0,1000 ha +2912,Maldives,2009,0.0,1000 ha +2913,Maldives,2010,0.0,1000 ha +2914,Maldives,2011,0.0,1000 ha +2915,Maldives,2012,0.0,1000 ha +2916,Maldives,2013,0.0,1000 ha +2917,Mali,1990,0.0,1000 ha +2918,Mali,1991,0.0,1000 ha +2919,Mali,1992,0.0,1000 ha +2920,Mali,1993,0.0,1000 ha +2921,Mali,1994,0.0,1000 ha +2922,Mali,1995,0.0,1000 ha +2923,Mali,1996,0.0,1000 ha +2924,Mali,1997,0.0,1000 ha +2925,Mali,1998,0.0,1000 ha +2926,Mali,1999,0.0,1000 ha +2927,Mali,2000,0.0,1000 ha +2928,Mali,2001,0.0,1000 ha +2929,Mali,2002,0.0,1000 ha +2930,Mali,2003,0.0,1000 ha +2931,Mali,2004,0.0,1000 ha +2932,Mali,2005,0.0,1000 ha +2933,Mali,2006,0.0,1000 ha +2934,Mali,2007,0.0,1000 ha +2935,Mali,2008,0.0,1000 ha +2936,Mali,2009,0.0,1000 ha +2937,Mali,2010,0.0,1000 ha +2938,Mali,2011,0.0,1000 ha +2939,Mali,2012,0.0,1000 ha +2940,Mali,2013,0.0,1000 ha +2941,Malta,1990,0.0,1000 ha +2942,Malta,1991,0.0,1000 ha +2943,Malta,1992,0.0,1000 ha +2944,Malta,1993,0.0,1000 ha +2945,Malta,1994,0.0,1000 ha +2946,Malta,1995,0.0,1000 ha +2947,Malta,1996,0.0,1000 ha +2948,Malta,1997,0.0,1000 ha +2949,Malta,1998,0.0,1000 ha +2950,Malta,1999,0.0,1000 ha +2951,Malta,2000,0.0,1000 ha +2952,Malta,2001,0.0,1000 ha +2953,Malta,2002,0.0,1000 ha +2954,Malta,2003,0.0,1000 ha +2955,Malta,2004,0.0,1000 ha +2956,Malta,2005,0.0,1000 ha +2957,Malta,2006,0.0,1000 ha +2958,Malta,2007,0.0,1000 ha +2959,Malta,2008,0.0,1000 ha +2960,Malta,2009,0.0,1000 ha +2961,Malta,2010,0.0,1000 ha +2962,Malta,2011,0.0,1000 ha +2963,Malta,2012,0.0,1000 ha +2964,Malta,2013,0.0,1000 ha +2965,Marshall Islands,1991,8.186,1000 ha +2966,Marshall Islands,1992,8.186,1000 ha +2967,Marshall Islands,1993,8.186,1000 ha +2968,Marshall Islands,1994,8.186,1000 ha +2969,Marshall Islands,1995,8.186,1000 ha +2970,Marshall Islands,1996,8.186,1000 ha +2971,Marshall Islands,1997,8.186,1000 ha +2972,Marshall Islands,1998,8.186,1000 ha +2973,Marshall Islands,1999,8.186,1000 ha +2974,Marshall Islands,2000,8.186,1000 ha +2975,Marshall Islands,2001,8.186,1000 ha +2976,Marshall Islands,2002,8.186,1000 ha +2977,Marshall Islands,2003,8.186,1000 ha +2978,Marshall Islands,2004,8.186,1000 ha +2979,Marshall Islands,2005,8.186,1000 ha +2980,Marshall Islands,2006,8.186,1000 ha +2981,Marshall Islands,2007,8.186,1000 ha +2982,Marshall Islands,2008,8.186,1000 ha +2983,Marshall Islands,2009,8.186,1000 ha +2984,Marshall Islands,2010,8.186,1000 ha +2985,Marshall Islands,2011,8.186,1000 ha +2986,Marshall Islands,2012,8.186,1000 ha +2987,Marshall Islands,2013,8.186,1000 ha +2988,Martinique,1990,0.0,1000 ha +2989,Martinique,1991,0.0,1000 ha +2990,Martinique,1992,0.0,1000 ha +2991,Martinique,1993,0.0,1000 ha +2992,Martinique,1994,0.0,1000 ha +2993,Martinique,1995,0.0,1000 ha +2994,Martinique,1996,0.0,1000 ha +2995,Martinique,1997,0.0,1000 ha +2996,Martinique,1998,0.0,1000 ha +2997,Martinique,1999,0.0,1000 ha +2998,Martinique,2000,0.0,1000 ha +2999,Martinique,2001,0.0,1000 ha +3000,Martinique,2002,0.0,1000 ha +3001,Martinique,2003,0.0,1000 ha +3002,Martinique,2004,0.0,1000 ha +3003,Martinique,2005,0.0,1000 ha +3004,Martinique,2006,0.0,1000 ha +3005,Martinique,2007,0.0,1000 ha +3006,Martinique,2008,0.0,1000 ha +3007,Martinique,2009,0.0,1000 ha +3008,Martinique,2010,0.0,1000 ha +3009,Martinique,2011,0.0,1000 ha +3010,Martinique,2012,0.0,1000 ha +3011,Martinique,2013,0.0,1000 ha +3012,Mauritania,1990,0.0,1000 ha +3013,Mauritania,1991,0.0,1000 ha +3014,Mauritania,1992,0.0,1000 ha +3015,Mauritania,1993,0.0,1000 ha +3016,Mauritania,1994,0.0,1000 ha +3017,Mauritania,1995,0.0,1000 ha +3018,Mauritania,1996,0.0,1000 ha +3019,Mauritania,1997,0.0,1000 ha +3020,Mauritania,1998,0.0,1000 ha +3021,Mauritania,1999,0.0,1000 ha +3022,Mauritania,2000,0.0,1000 ha +3023,Mauritania,2001,0.0,1000 ha +3024,Mauritania,2002,0.0,1000 ha +3025,Mauritania,2003,0.0,1000 ha +3026,Mauritania,2004,0.0,1000 ha +3027,Mauritania,2005,0.0,1000 ha +3028,Mauritania,2006,0.0,1000 ha +3029,Mauritania,2007,0.0,1000 ha +3030,Mauritania,2008,0.0,1000 ha +3031,Mauritania,2009,0.0,1000 ha +3032,Mauritania,2010,0.0,1000 ha +3033,Mauritania,2011,0.0,1000 ha +3034,Mauritania,2012,0.0,1000 ha +3035,Mauritania,2013,0.0,1000 ha +3036,Mauritius,1990,0.0,1000 ha +3037,Mauritius,1991,0.0,1000 ha +3038,Mauritius,1992,0.0,1000 ha +3039,Mauritius,1993,0.0,1000 ha +3040,Mauritius,1994,0.0,1000 ha +3041,Mauritius,1995,0.0,1000 ha +3042,Mauritius,1996,0.0,1000 ha +3043,Mauritius,1997,0.0,1000 ha +3044,Mauritius,1998,0.0,1000 ha +3045,Mauritius,1999,0.0,1000 ha +3046,Mauritius,2000,0.0,1000 ha +3047,Mauritius,2001,0.0,1000 ha +3048,Mauritius,2002,0.0,1000 ha +3049,Mauritius,2003,0.0,1000 ha +3050,Mauritius,2004,0.0,1000 ha +3051,Mauritius,2005,0.0,1000 ha +3052,Mauritius,2006,0.0,1000 ha +3053,Mauritius,2007,0.0,1000 ha +3054,Mauritius,2008,0.0,1000 ha +3055,Mauritius,2009,0.0,1000 ha +3056,Mauritius,2010,0.0,1000 ha +3057,Mauritius,2011,0.0,1000 ha +3058,Mauritius,2012,0.0,1000 ha +3059,Mauritius,2013,0.0,1000 ha +3060,Mayotte,1990,1.45,1000 ha +3061,Mayotte,1991,1.45,1000 ha +3062,Mayotte,1992,1.45,1000 ha +3063,Mayotte,1993,1.45,1000 ha +3064,Mayotte,1994,1.45,1000 ha +3065,Mayotte,1995,1.45,1000 ha +3066,Mayotte,1996,1.45,1000 ha +3067,Mayotte,1997,1.45,1000 ha +3068,Mayotte,1998,1.45,1000 ha +3069,Mayotte,1999,1.45,1000 ha +3070,Mayotte,2000,1.45,1000 ha +3071,Mayotte,2001,1.45,1000 ha +3072,Mayotte,2002,1.45,1000 ha +3073,Mayotte,2003,1.45,1000 ha +3074,Mayotte,2004,1.45,1000 ha +3075,Mayotte,2005,1.45,1000 ha +3076,Mayotte,2006,1.45,1000 ha +3077,Mayotte,2007,1.45,1000 ha +3078,Mayotte,2008,1.45,1000 ha +3079,Mayotte,2009,1.45,1000 ha +3080,Mayotte,2010,1.45,1000 ha +3081,Mayotte,2011,1.45,1000 ha +3082,Mayotte,2012,1.45,1000 ha +3083,Mayotte,2013,1.45,1000 ha +3084,Mexico,1990,39443.0,1000 ha +3085,Mexico,1991,39029.0,1000 ha +3086,Mexico,1992,38615.0,1000 ha +3087,Mexico,1993,38201.0,1000 ha +3088,Mexico,1994,37787.0,1000 ha +3089,Mexico,1995,37373.0,1000 ha +3090,Mexico,1996,36959.0,1000 ha +3091,Mexico,1997,36545.0,1000 ha +3092,Mexico,1998,36131.0,1000 ha +3093,Mexico,1999,35717.0,1000 ha +3094,Mexico,2000,35303.0,1000 ha +3095,Mexico,2001,35007.6,1000 ha +3096,Mexico,2002,34712.2,1000 ha +3097,Mexico,2003,34416.8,1000 ha +3098,Mexico,2004,34121.4,1000 ha +3099,Mexico,2005,33826.0,1000 ha +3100,Mexico,2006,33694.4,1000 ha +3101,Mexico,2007,33562.8,1000 ha +3102,Mexico,2008,33431.2,1000 ha +3103,Mexico,2009,33299.6,1000 ha +3104,Mexico,2010,33168.0,1000 ha +3105,Mexico,2011,33145.6,1000 ha +3106,Mexico,2012,33123.2,1000 ha +3107,Mexico,2013,33100.8,1000 ha +3108,Micronesia (Federated States of),1991,40.0146,1000 ha +3109,Micronesia (Federated States of),1992,40.4542,1000 ha +3110,Micronesia (Federated States of),1993,40.8938,1000 ha +3111,Micronesia (Federated States of),1994,41.3334,1000 ha +3112,Micronesia (Federated States of),1995,41.773,1000 ha +3113,Micronesia (Federated States of),1996,42.2126,1000 ha +3114,Micronesia (Federated States of),1997,42.6522,1000 ha +3115,Micronesia (Federated States of),1998,43.0918,1000 ha +3116,Micronesia (Federated States of),1999,43.5314,1000 ha +3117,Micronesia (Federated States of),2000,43.971000000000004,1000 ha +3118,Micronesia (Federated States of),2001,44.4106,1000 ha +3119,Micronesia (Federated States of),2002,44.8502,1000 ha +3120,Micronesia (Federated States of),2003,45.2898,1000 ha +3121,Micronesia (Federated States of),2004,45.7294,1000 ha +3122,Micronesia (Federated States of),2005,46.169,1000 ha +3123,Micronesia (Federated States of),2006,46.6086,1000 ha +3124,Micronesia (Federated States of),2007,47.0482,1000 ha +3125,Micronesia (Federated States of),2008,47.4878,1000 ha +3126,Micronesia (Federated States of),2009,47.9274,1000 ha +3127,Micronesia (Federated States of),2010,48.367,1000 ha +3128,Micronesia (Federated States of),2011,48.367,1000 ha +3129,Micronesia (Federated States of),2012,48.367,1000 ha +3130,Micronesia (Federated States of),2013,48.367,1000 ha +3131,Mongolia,1990,12534.0,1000 ha +3132,Mongolia,1991,12452.01,1000 ha +3133,Mongolia,1992,12370.02,1000 ha +3134,Mongolia,1993,12288.03,1000 ha +3135,Mongolia,1994,12206.04,1000 ha +3136,Mongolia,1995,12124.05,1000 ha +3137,Mongolia,1996,12042.06,1000 ha +3138,Mongolia,1997,11960.07,1000 ha +3139,Mongolia,1998,11878.08,1000 ha +3140,Mongolia,1999,11796.09,1000 ha +3141,Mongolia,2000,11714.1,1000 ha +3142,Mongolia,2001,11632.34,1000 ha +3143,Mongolia,2002,11550.58,1000 ha +3144,Mongolia,2003,11468.82,1000 ha +3145,Mongolia,2004,11387.06,1000 ha +3146,Mongolia,2005,11305.3,1000 ha +3147,Mongolia,2006,11651.92,1000 ha +3148,Mongolia,2007,11998.54,1000 ha +3149,Mongolia,2008,12345.16,1000 ha +3150,Mongolia,2009,12691.78,1000 ha +3151,Mongolia,2010,13038.4,1000 ha +3152,Mongolia,2011,12941.04,1000 ha +3153,Mongolia,2012,12843.68,1000 ha +3154,Mongolia,2013,12746.32,1000 ha +3155,Montenegro,2006,109.0,1000 ha +3156,Montenegro,2007,109.0,1000 ha +3157,Montenegro,2008,109.0,1000 ha +3158,Montenegro,2009,109.0,1000 ha +3159,Montenegro,2010,109.0,1000 ha +3160,Montenegro,2011,109.0,1000 ha +3161,Montenegro,2012,109.0,1000 ha +3162,Montenegro,2013,109.0,1000 ha +3163,Montserrat,1990,0.0,1000 ha +3164,Montserrat,1991,0.0,1000 ha +3165,Montserrat,1992,0.0,1000 ha +3166,Montserrat,1993,0.0,1000 ha +3167,Montserrat,1994,0.0,1000 ha +3168,Montserrat,1995,0.0,1000 ha +3169,Montserrat,1996,0.0,1000 ha +3170,Montserrat,1997,0.0,1000 ha +3171,Montserrat,1998,0.0,1000 ha +3172,Montserrat,1999,0.0,1000 ha +3173,Montserrat,2000,0.0,1000 ha +3174,Montserrat,2001,0.0,1000 ha +3175,Montserrat,2002,0.0,1000 ha +3176,Montserrat,2003,0.0,1000 ha +3177,Montserrat,2004,0.0,1000 ha +3178,Montserrat,2005,0.0,1000 ha +3179,Montserrat,2006,0.0,1000 ha +3180,Montserrat,2007,0.0,1000 ha +3181,Montserrat,2008,0.0,1000 ha +3182,Montserrat,2009,0.0,1000 ha +3183,Montserrat,2010,0.0,1000 ha +3184,Montserrat,2011,0.0,1000 ha +3185,Montserrat,2012,0.0,1000 ha +3186,Montserrat,2013,0.0,1000 ha +3187,Morocco,1990,0.0,1000 ha +3188,Morocco,1991,0.0,1000 ha +3189,Morocco,1992,0.0,1000 ha +3190,Morocco,1993,0.0,1000 ha +3191,Morocco,1994,0.0,1000 ha +3192,Morocco,1995,0.0,1000 ha +3193,Morocco,1996,0.0,1000 ha +3194,Morocco,1997,0.0,1000 ha +3195,Morocco,1998,0.0,1000 ha +3196,Morocco,1999,0.0,1000 ha +3197,Morocco,2000,0.0,1000 ha +3198,Morocco,2001,0.0,1000 ha +3199,Morocco,2002,0.0,1000 ha +3200,Morocco,2003,0.0,1000 ha +3201,Morocco,2004,0.0,1000 ha +3202,Morocco,2005,0.0,1000 ha +3203,Morocco,2006,0.0,1000 ha +3204,Morocco,2007,0.0,1000 ha +3205,Morocco,2008,0.0,1000 ha +3206,Morocco,2009,0.0,1000 ha +3207,Morocco,2010,0.0,1000 ha +3208,Morocco,2011,0.0,1000 ha +3209,Morocco,2012,0.0,1000 ha +3210,Morocco,2013,0.0,1000 ha +3211,Mozambique,1990,0.0,1000 ha +3212,Mozambique,1991,0.0,1000 ha +3213,Mozambique,1992,0.0,1000 ha +3214,Mozambique,1993,0.0,1000 ha +3215,Mozambique,1994,0.0,1000 ha +3216,Mozambique,1995,0.0,1000 ha +3217,Mozambique,1996,0.0,1000 ha +3218,Mozambique,1997,0.0,1000 ha +3219,Mozambique,1998,0.0,1000 ha +3220,Mozambique,1999,0.0,1000 ha +3221,Mozambique,2000,0.0,1000 ha +3222,Mozambique,2001,0.0,1000 ha +3223,Mozambique,2002,0.0,1000 ha +3224,Mozambique,2003,0.0,1000 ha +3225,Mozambique,2004,0.0,1000 ha +3226,Mozambique,2005,0.0,1000 ha +3227,Mozambique,2006,0.0,1000 ha +3228,Mozambique,2007,0.0,1000 ha +3229,Mozambique,2008,0.0,1000 ha +3230,Mozambique,2009,0.0,1000 ha +3231,Mozambique,2010,0.0,1000 ha +3232,Mozambique,2011,0.0,1000 ha +3233,Mozambique,2012,0.0,1000 ha +3234,Mozambique,2013,0.0,1000 ha +3235,Myanmar,1990,3192.0,1000 ha +3236,Myanmar,1991,3192.0,1000 ha +3237,Myanmar,1992,3192.0,1000 ha +3238,Myanmar,1993,3192.0,1000 ha +3239,Myanmar,1994,3192.0,1000 ha +3240,Myanmar,1995,3192.0,1000 ha +3241,Myanmar,1996,3192.0,1000 ha +3242,Myanmar,1997,3192.0,1000 ha +3243,Myanmar,1998,3192.0,1000 ha +3244,Myanmar,1999,3192.0,1000 ha +3245,Myanmar,2000,3192.0,1000 ha +3246,Myanmar,2001,3192.0,1000 ha +3247,Myanmar,2002,3192.0,1000 ha +3248,Myanmar,2003,3192.0,1000 ha +3249,Myanmar,2004,3192.0,1000 ha +3250,Myanmar,2005,3192.0,1000 ha +3251,Myanmar,2006,3192.0,1000 ha +3252,Myanmar,2007,3192.0,1000 ha +3253,Myanmar,2008,3192.0,1000 ha +3254,Myanmar,2009,3192.0,1000 ha +3255,Myanmar,2010,3192.0,1000 ha +3256,Myanmar,2011,3192.0,1000 ha +3257,Myanmar,2012,3192.0,1000 ha +3258,Myanmar,2013,3192.0,1000 ha +3259,Namibia,1990,0.0,1000 ha +3260,Namibia,1991,0.0,1000 ha +3261,Namibia,1992,0.0,1000 ha +3262,Namibia,1993,0.0,1000 ha +3263,Namibia,1994,0.0,1000 ha +3264,Namibia,1995,0.0,1000 ha +3265,Namibia,1996,0.0,1000 ha +3266,Namibia,1997,0.0,1000 ha +3267,Namibia,1998,0.0,1000 ha +3268,Namibia,1999,0.0,1000 ha +3269,Namibia,2000,0.0,1000 ha +3270,Namibia,2001,0.0,1000 ha +3271,Namibia,2002,0.0,1000 ha +3272,Namibia,2003,0.0,1000 ha +3273,Namibia,2004,0.0,1000 ha +3274,Namibia,2005,0.0,1000 ha +3275,Namibia,2006,0.0,1000 ha +3276,Namibia,2007,0.0,1000 ha +3277,Namibia,2008,0.0,1000 ha +3278,Namibia,2009,0.0,1000 ha +3279,Namibia,2010,0.0,1000 ha +3280,Namibia,2011,0.0,1000 ha +3281,Namibia,2012,0.0,1000 ha +3282,Namibia,2013,0.0,1000 ha +3283,Nauru,1990,0.0,1000 ha +3284,Nauru,1991,0.0,1000 ha +3285,Nauru,1992,0.0,1000 ha +3286,Nauru,1993,0.0,1000 ha +3287,Nauru,1994,0.0,1000 ha +3288,Nauru,1995,0.0,1000 ha +3289,Nauru,1996,0.0,1000 ha +3290,Nauru,1997,0.0,1000 ha +3291,Nauru,1998,0.0,1000 ha +3292,Nauru,1999,0.0,1000 ha +3293,Nauru,2000,0.0,1000 ha +3294,Nauru,2001,0.0,1000 ha +3295,Nauru,2002,0.0,1000 ha +3296,Nauru,2003,0.0,1000 ha +3297,Nauru,2004,0.0,1000 ha +3298,Nauru,2005,0.0,1000 ha +3299,Nauru,2006,0.0,1000 ha +3300,Nauru,2007,0.0,1000 ha +3301,Nauru,2008,0.0,1000 ha +3302,Nauru,2009,0.0,1000 ha +3303,Nauru,2010,0.0,1000 ha +3304,Nauru,2011,0.0,1000 ha +3305,Nauru,2012,0.0,1000 ha +3306,Nauru,2013,0.0,1000 ha +3307,Nepal,1990,548.0,1000 ha +3308,Nepal,1991,548.0,1000 ha +3309,Nepal,1992,548.0,1000 ha +3310,Nepal,1993,548.0,1000 ha +3311,Nepal,1994,548.0,1000 ha +3312,Nepal,1995,548.0,1000 ha +3313,Nepal,1996,548.0,1000 ha +3314,Nepal,1997,548.0,1000 ha +3315,Nepal,1998,548.0,1000 ha +3316,Nepal,1999,548.0,1000 ha +3317,Nepal,2000,548.0,1000 ha +3318,Nepal,2001,543.6,1000 ha +3319,Nepal,2002,539.2,1000 ha +3320,Nepal,2003,534.8,1000 ha +3321,Nepal,2004,530.4,1000 ha +3322,Nepal,2005,526.0,1000 ha +3323,Nepal,2006,526.0,1000 ha +3324,Nepal,2007,526.0,1000 ha +3325,Nepal,2008,526.0,1000 ha +3326,Nepal,2009,526.0,1000 ha +3327,Nepal,2010,526.0,1000 ha +3328,Nepal,2011,526.0,1000 ha +3329,Nepal,2012,526.0,1000 ha +3330,Nepal,2013,526.0,1000 ha +3331,Netherlands,1990,0.0,1000 ha +3332,Netherlands,1991,0.0,1000 ha +3333,Netherlands,1992,0.0,1000 ha +3334,Netherlands,1993,0.0,1000 ha +3335,Netherlands,1994,0.0,1000 ha +3336,Netherlands,1995,0.0,1000 ha +3337,Netherlands,1996,0.0,1000 ha +3338,Netherlands,1997,0.0,1000 ha +3339,Netherlands,1998,0.0,1000 ha +3340,Netherlands,1999,0.0,1000 ha +3341,Netherlands,2000,0.0,1000 ha +3342,Netherlands,2001,0.0,1000 ha +3343,Netherlands,2002,0.0,1000 ha +3344,Netherlands,2003,0.0,1000 ha +3345,Netherlands,2004,0.0,1000 ha +3346,Netherlands,2005,0.0,1000 ha +3347,Netherlands,2006,0.0,1000 ha +3348,Netherlands,2007,0.0,1000 ha +3349,Netherlands,2008,0.0,1000 ha +3350,Netherlands,2009,0.0,1000 ha +3351,Netherlands,2010,0.0,1000 ha +3352,Netherlands,2011,0.0,1000 ha +3353,Netherlands,2012,0.0,1000 ha +3354,Netherlands,2013,0.0,1000 ha +3355,Netherlands Antilles (former),1990,0.0,1000 ha +3356,Netherlands Antilles (former),1991,0.0,1000 ha +3357,Netherlands Antilles (former),1992,0.0,1000 ha +3358,Netherlands Antilles (former),1993,0.0,1000 ha +3359,Netherlands Antilles (former),1994,0.0,1000 ha +3360,Netherlands Antilles (former),1995,0.0,1000 ha +3361,Netherlands Antilles (former),1996,0.0,1000 ha +3362,Netherlands Antilles (former),1997,0.0,1000 ha +3363,Netherlands Antilles (former),1998,0.0,1000 ha +3364,Netherlands Antilles (former),1999,0.0,1000 ha +3365,Netherlands Antilles (former),2000,0.0,1000 ha +3366,Netherlands Antilles (former),2001,0.0,1000 ha +3367,Netherlands Antilles (former),2002,0.0,1000 ha +3368,Netherlands Antilles (former),2003,0.0,1000 ha +3369,Netherlands Antilles (former),2004,0.0,1000 ha +3370,Netherlands Antilles (former),2005,0.0,1000 ha +3371,Netherlands Antilles (former),2006,0.0,1000 ha +3372,Netherlands Antilles (former),2007,0.0,1000 ha +3373,Netherlands Antilles (former),2008,0.0,1000 ha +3374,Netherlands Antilles (former),2009,0.0,1000 ha +3375,Netherlands Antilles (former),2010,0.0,1000 ha +3376,Netherlands Antilles (former),2011,0.0,1000 ha +3377,Netherlands Antilles (former),2012,0.0,1000 ha +3378,Netherlands Antilles (former),2013,0.0,1000 ha +3379,New Caledonia,1990,431.0,1000 ha +3380,New Caledonia,1991,431.0,1000 ha +3381,New Caledonia,1992,431.0,1000 ha +3382,New Caledonia,1993,431.0,1000 ha +3383,New Caledonia,1994,431.0,1000 ha +3384,New Caledonia,1995,431.0,1000 ha +3385,New Caledonia,1996,431.0,1000 ha +3386,New Caledonia,1997,431.0,1000 ha +3387,New Caledonia,1998,431.0,1000 ha +3388,New Caledonia,1999,431.0,1000 ha +3389,New Caledonia,2000,431.0,1000 ha +3390,New Caledonia,2001,431.0,1000 ha +3391,New Caledonia,2002,431.0,1000 ha +3392,New Caledonia,2003,431.0,1000 ha +3393,New Caledonia,2004,431.0,1000 ha +3394,New Caledonia,2005,431.0,1000 ha +3395,New Caledonia,2006,431.0,1000 ha +3396,New Caledonia,2007,431.0,1000 ha +3397,New Caledonia,2008,431.0,1000 ha +3398,New Caledonia,2009,431.0,1000 ha +3399,New Caledonia,2010,431.0,1000 ha +3400,New Caledonia,2011,431.0,1000 ha +3401,New Caledonia,2012,431.0,1000 ha +3402,New Caledonia,2013,431.0,1000 ha +3403,New Zealand,1990,2144.0,1000 ha +3404,New Zealand,1991,2144.0,1000 ha +3405,New Zealand,1992,2144.0,1000 ha +3406,New Zealand,1993,2144.0,1000 ha +3407,New Zealand,1994,2144.0,1000 ha +3408,New Zealand,1995,2144.0,1000 ha +3409,New Zealand,1996,2144.0,1000 ha +3410,New Zealand,1997,2144.0,1000 ha +3411,New Zealand,1998,2144.0,1000 ha +3412,New Zealand,1999,2144.0,1000 ha +3413,New Zealand,2000,2144.0,1000 ha +3414,New Zealand,2001,2144.0,1000 ha +3415,New Zealand,2002,2144.0,1000 ha +3416,New Zealand,2003,2144.0,1000 ha +3417,New Zealand,2004,2144.0,1000 ha +3418,New Zealand,2005,2144.0,1000 ha +3419,New Zealand,2006,2144.0,1000 ha +3420,New Zealand,2007,2144.0,1000 ha +3421,New Zealand,2008,2144.0,1000 ha +3422,New Zealand,2009,2144.0,1000 ha +3423,New Zealand,2010,2144.0,1000 ha +3424,New Zealand,2011,2147.2,1000 ha +3425,New Zealand,2012,2150.4,1000 ha +3426,New Zealand,2013,2153.6,1000 ha +3427,Nicaragua,1990,1233.988,1000 ha +3428,Nicaragua,1991,1233.988,1000 ha +3429,Nicaragua,1992,1233.988,1000 ha +3430,Nicaragua,1993,1233.988,1000 ha +3431,Nicaragua,1994,1233.988,1000 ha +3432,Nicaragua,1995,1233.988,1000 ha +3433,Nicaragua,1996,1233.988,1000 ha +3434,Nicaragua,1997,1233.988,1000 ha +3435,Nicaragua,1998,1233.988,1000 ha +3436,Nicaragua,1999,1233.988,1000 ha +3437,Nicaragua,2000,1233.988,1000 ha +3438,Nicaragua,2001,1233.988,1000 ha +3439,Nicaragua,2002,1233.988,1000 ha +3440,Nicaragua,2003,1233.988,1000 ha +3441,Nicaragua,2004,1233.988,1000 ha +3442,Nicaragua,2005,1233.988,1000 ha +3443,Nicaragua,2006,1233.988,1000 ha +3444,Nicaragua,2007,1233.988,1000 ha +3445,Nicaragua,2008,1233.988,1000 ha +3446,Nicaragua,2009,1233.988,1000 ha +3447,Nicaragua,2010,1233.988,1000 ha +3448,Nicaragua,2011,1233.9904,1000 ha +3449,Nicaragua,2012,1233.9928,1000 ha +3450,Nicaragua,2013,1233.9952,1000 ha +3451,Niger,1990,220.0,1000 ha +3452,Niger,1991,220.0,1000 ha +3453,Niger,1992,220.0,1000 ha +3454,Niger,1993,220.0,1000 ha +3455,Niger,1994,220.0,1000 ha +3456,Niger,1995,220.0,1000 ha +3457,Niger,1996,220.0,1000 ha +3458,Niger,1997,220.0,1000 ha +3459,Niger,1998,220.0,1000 ha +3460,Niger,1999,220.0,1000 ha +3461,Niger,2000,220.0,1000 ha +3462,Niger,2001,220.0,1000 ha +3463,Niger,2002,220.0,1000 ha +3464,Niger,2003,220.0,1000 ha +3465,Niger,2004,220.0,1000 ha +3466,Niger,2005,220.0,1000 ha +3467,Niger,2006,220.0,1000 ha +3468,Niger,2007,220.0,1000 ha +3469,Niger,2008,220.0,1000 ha +3470,Niger,2009,220.0,1000 ha +3471,Niger,2010,220.0,1000 ha +3472,Niger,2011,220.0,1000 ha +3473,Niger,2012,220.0,1000 ha +3474,Niger,2013,220.0,1000 ha +3475,Nigeria,1990,1556.0,1000 ha +3476,Nigeria,1991,1474.0,1000 ha +3477,Nigeria,1992,1392.0,1000 ha +3478,Nigeria,1993,1310.0,1000 ha +3479,Nigeria,1994,1228.0,1000 ha +3480,Nigeria,1995,1146.0,1000 ha +3481,Nigeria,1996,1064.0,1000 ha +3482,Nigeria,1997,982.0,1000 ha +3483,Nigeria,1998,900.0,1000 ha +3484,Nigeria,1999,818.0,1000 ha +3485,Nigeria,2000,736.0,1000 ha +3486,Nigeria,2001,654.0,1000 ha +3487,Nigeria,2002,572.0,1000 ha +3488,Nigeria,2003,490.0,1000 ha +3489,Nigeria,2004,408.0,1000 ha +3490,Nigeria,2005,326.0,1000 ha +3491,Nigeria,2006,271.6,1000 ha +3492,Nigeria,2007,217.2,1000 ha +3493,Nigeria,2008,162.8,1000 ha +3494,Nigeria,2009,108.4,1000 ha +3495,Nigeria,2010,54.0,1000 ha +3496,Nigeria,2011,47.2,1000 ha +3497,Nigeria,2012,40.4,1000 ha +3498,Nigeria,2013,33.6,1000 ha +3499,Niue,1990,5.6,1000 ha +3500,Niue,1991,5.6,1000 ha +3501,Niue,1992,5.6,1000 ha +3502,Niue,1993,5.6,1000 ha +3503,Niue,1994,5.6,1000 ha +3504,Niue,1995,5.6,1000 ha +3505,Niue,1996,5.6,1000 ha +3506,Niue,1997,5.6,1000 ha +3507,Niue,1998,5.6,1000 ha +3508,Niue,1999,5.6,1000 ha +3509,Niue,2000,5.6,1000 ha +3510,Niue,2001,5.6,1000 ha +3511,Niue,2002,5.6,1000 ha +3512,Niue,2003,5.6,1000 ha +3513,Niue,2004,5.6,1000 ha +3514,Niue,2005,5.6,1000 ha +3515,Niue,2006,5.6,1000 ha +3516,Niue,2007,5.6,1000 ha +3517,Niue,2008,5.6,1000 ha +3518,Niue,2009,5.6,1000 ha +3519,Niue,2010,5.6,1000 ha +3520,Niue,2011,5.6,1000 ha +3521,Niue,2012,5.6,1000 ha +3522,Niue,2013,5.6,1000 ha +3523,Norfolk Island,1990,0.0,1000 ha +3524,Norfolk Island,1991,0.0,1000 ha +3525,Norfolk Island,1992,0.0,1000 ha +3526,Norfolk Island,1993,0.0,1000 ha +3527,Norfolk Island,1994,0.0,1000 ha +3528,Norfolk Island,1995,0.0,1000 ha +3529,Norfolk Island,1996,0.0,1000 ha +3530,Norfolk Island,1997,0.0,1000 ha +3531,Norfolk Island,1998,0.0,1000 ha +3532,Norfolk Island,1999,0.0,1000 ha +3533,Norfolk Island,2000,0.0,1000 ha +3534,Norfolk Island,2001,0.0,1000 ha +3535,Norfolk Island,2002,0.0,1000 ha +3536,Norfolk Island,2003,0.0,1000 ha +3537,Norfolk Island,2004,0.0,1000 ha +3538,Norfolk Island,2005,0.0,1000 ha +3539,Norfolk Island,2006,0.0,1000 ha +3540,Norfolk Island,2007,0.0,1000 ha +3541,Norfolk Island,2008,0.0,1000 ha +3542,Norfolk Island,2009,0.0,1000 ha +3543,Norfolk Island,2010,0.0,1000 ha +3544,Norfolk Island,2011,0.0,1000 ha +3545,Norfolk Island,2012,0.0,1000 ha +3546,Norfolk Island,2013,0.0,1000 ha +3547,North Macedonia,1992,0.0,1000 ha +3548,North Macedonia,1993,0.0,1000 ha +3549,North Macedonia,1994,0.0,1000 ha +3550,North Macedonia,1995,0.0,1000 ha +3551,North Macedonia,1996,0.0,1000 ha +3552,North Macedonia,1997,0.0,1000 ha +3553,North Macedonia,1998,0.0,1000 ha +3554,North Macedonia,1999,0.0,1000 ha +3555,North Macedonia,2000,0.0,1000 ha +3556,North Macedonia,2001,0.0,1000 ha +3557,North Macedonia,2002,0.0,1000 ha +3558,North Macedonia,2003,0.0,1000 ha +3559,North Macedonia,2004,0.0,1000 ha +3560,North Macedonia,2005,0.0,1000 ha +3561,North Macedonia,2006,0.0,1000 ha +3562,North Macedonia,2007,0.0,1000 ha +3563,North Macedonia,2008,0.0,1000 ha +3564,North Macedonia,2009,0.0,1000 ha +3565,North Macedonia,2010,0.0,1000 ha +3566,North Macedonia,2011,0.0,1000 ha +3567,North Macedonia,2012,0.0,1000 ha +3568,North Macedonia,2013,0.0,1000 ha +3569,Northern Mariana Islands,1991,9.9816,1000 ha +3570,Northern Mariana Islands,1992,9.8882,1000 ha +3571,Northern Mariana Islands,1993,9.7948,1000 ha +3572,Northern Mariana Islands,1994,9.7014,1000 ha +3573,Northern Mariana Islands,1995,9.607999999999999,1000 ha +3574,Northern Mariana Islands,1996,9.5146,1000 ha +3575,Northern Mariana Islands,1997,9.4212,1000 ha +3576,Northern Mariana Islands,1998,9.3278,1000 ha +3577,Northern Mariana Islands,1999,9.2344,1000 ha +3578,Northern Mariana Islands,2000,9.141,1000 ha +3579,Northern Mariana Islands,2001,9.0476,1000 ha +3580,Northern Mariana Islands,2002,8.9542,1000 ha +3581,Northern Mariana Islands,2003,8.8608,1000 ha +3582,Northern Mariana Islands,2004,8.7674,1000 ha +3583,Northern Mariana Islands,2005,8.674,1000 ha +3584,Northern Mariana Islands,2006,8.5806,1000 ha +3585,Northern Mariana Islands,2007,8.4872,1000 ha +3586,Northern Mariana Islands,2008,8.3938,1000 ha +3587,Northern Mariana Islands,2009,8.3004,1000 ha +3588,Northern Mariana Islands,2010,8.207,1000 ha +3589,Northern Mariana Islands,2011,8.1136,1000 ha +3590,Northern Mariana Islands,2012,8.0202,1000 ha +3591,Northern Mariana Islands,2013,7.9268,1000 ha +3592,Norway,1990,160.0,1000 ha +3593,Norway,1991,160.0,1000 ha +3594,Norway,1992,160.0,1000 ha +3595,Norway,1993,160.0,1000 ha +3596,Norway,1994,160.0,1000 ha +3597,Norway,1995,160.0,1000 ha +3598,Norway,1996,160.0,1000 ha +3599,Norway,1997,160.0,1000 ha +3600,Norway,1998,160.0,1000 ha +3601,Norway,1999,160.0,1000 ha +3602,Norway,2000,160.0,1000 ha +3603,Norway,2001,160.0,1000 ha +3604,Norway,2002,160.0,1000 ha +3605,Norway,2003,160.0,1000 ha +3606,Norway,2004,160.0,1000 ha +3607,Norway,2005,160.0,1000 ha +3608,Norway,2006,160.0,1000 ha +3609,Norway,2007,160.0,1000 ha +3610,Norway,2008,160.0,1000 ha +3611,Norway,2009,160.0,1000 ha +3612,Norway,2010,160.0,1000 ha +3613,Norway,2011,160.0,1000 ha +3614,Norway,2012,160.0,1000 ha +3615,Norway,2013,160.0,1000 ha +3616,Oman,1990,0.0,1000 ha +3617,Oman,1991,0.0,1000 ha +3618,Oman,1992,0.0,1000 ha +3619,Oman,1993,0.0,1000 ha +3620,Oman,1994,0.0,1000 ha +3621,Oman,1995,0.0,1000 ha +3622,Oman,1996,0.0,1000 ha +3623,Oman,1997,0.0,1000 ha +3624,Oman,1998,0.0,1000 ha +3625,Oman,1999,0.0,1000 ha +3626,Oman,2000,0.0,1000 ha +3627,Oman,2001,0.0,1000 ha +3628,Oman,2002,0.0,1000 ha +3629,Oman,2003,0.0,1000 ha +3630,Oman,2004,0.0,1000 ha +3631,Oman,2005,0.0,1000 ha +3632,Oman,2006,0.0,1000 ha +3633,Oman,2007,0.0,1000 ha +3634,Oman,2008,0.0,1000 ha +3635,Oman,2009,0.0,1000 ha +3636,Oman,2010,0.0,1000 ha +3637,Oman,2011,0.0,1000 ha +3638,Oman,2012,0.0,1000 ha +3639,Oman,2013,0.0,1000 ha +3640,Pacific Islands Trust Territory,1990,57.836000000000006,1000 ha +3641,Pakistan,1990,0.0,1000 ha +3642,Pakistan,1991,0.0,1000 ha +3643,Pakistan,1992,0.0,1000 ha +3644,Pakistan,1993,0.0,1000 ha +3645,Pakistan,1994,0.0,1000 ha +3646,Pakistan,1995,0.0,1000 ha +3647,Pakistan,1996,0.0,1000 ha +3648,Pakistan,1997,0.0,1000 ha +3649,Pakistan,1998,0.0,1000 ha +3650,Pakistan,1999,0.0,1000 ha +3651,Pakistan,2000,0.0,1000 ha +3652,Pakistan,2001,0.0,1000 ha +3653,Pakistan,2002,0.0,1000 ha +3654,Pakistan,2003,0.0,1000 ha +3655,Pakistan,2004,0.0,1000 ha +3656,Pakistan,2005,0.0,1000 ha +3657,Pakistan,2006,0.0,1000 ha +3658,Pakistan,2007,0.0,1000 ha +3659,Pakistan,2008,0.0,1000 ha +3660,Pakistan,2009,0.0,1000 ha +3661,Pakistan,2010,0.0,1000 ha +3662,Pakistan,2011,0.0,1000 ha +3663,Pakistan,2012,0.0,1000 ha +3664,Pakistan,2013,0.0,1000 ha +3665,Palau,1991,0.0,1000 ha +3666,Palau,1992,0.0,1000 ha +3667,Palau,1993,0.0,1000 ha +3668,Palau,1994,0.0,1000 ha +3669,Palau,1995,0.0,1000 ha +3670,Palau,1996,0.0,1000 ha +3671,Palau,1997,0.0,1000 ha +3672,Palau,1998,0.0,1000 ha +3673,Palau,1999,0.0,1000 ha +3674,Palau,2000,0.0,1000 ha +3675,Palau,2001,0.0,1000 ha +3676,Palau,2002,0.0,1000 ha +3677,Palau,2003,0.0,1000 ha +3678,Palau,2004,0.0,1000 ha +3679,Palau,2005,0.0,1000 ha +3680,Palau,2006,0.0,1000 ha +3681,Palau,2007,0.0,1000 ha +3682,Palau,2008,0.0,1000 ha +3683,Palau,2009,0.0,1000 ha +3684,Palau,2010,0.0,1000 ha +3685,Palau,2011,0.0,1000 ha +3686,Palau,2012,0.0,1000 ha +3687,Palau,2013,0.0,1000 ha +3688,Palestine,1990,0.0,1000 ha +3689,Palestine,1991,0.0,1000 ha +3690,Palestine,1992,0.0,1000 ha +3691,Palestine,1993,0.0,1000 ha +3692,Palestine,1994,0.0,1000 ha +3693,Palestine,1995,0.0,1000 ha +3694,Palestine,1996,0.0,1000 ha +3695,Palestine,1997,0.0,1000 ha +3696,Palestine,1998,0.0,1000 ha +3697,Palestine,1999,0.0,1000 ha +3698,Palestine,2000,0.0,1000 ha +3699,Palestine,2001,0.0,1000 ha +3700,Palestine,2002,0.0,1000 ha +3701,Palestine,2003,0.0,1000 ha +3702,Palestine,2004,0.0,1000 ha +3703,Palestine,2005,0.0,1000 ha +3704,Palestine,2006,0.0,1000 ha +3705,Palestine,2007,0.0,1000 ha +3706,Palestine,2008,0.0,1000 ha +3707,Palestine,2009,0.0,1000 ha +3708,Palestine,2010,0.0,1000 ha +3709,Palestine,2011,0.0,1000 ha +3710,Palestine,2012,0.0,1000 ha +3711,Palestine,2013,0.0,1000 ha +3712,Panama,1990,0.0,1000 ha +3713,Panama,1991,0.0,1000 ha +3714,Panama,1992,0.0,1000 ha +3715,Panama,1993,0.0,1000 ha +3716,Panama,1994,0.0,1000 ha +3717,Panama,1995,0.0,1000 ha +3718,Panama,1996,0.0,1000 ha +3719,Panama,1997,0.0,1000 ha +3720,Panama,1998,0.0,1000 ha +3721,Panama,1999,0.0,1000 ha +3722,Panama,2000,0.0,1000 ha +3723,Panama,2001,0.0,1000 ha +3724,Panama,2002,0.0,1000 ha +3725,Panama,2003,0.0,1000 ha +3726,Panama,2004,0.0,1000 ha +3727,Panama,2005,0.0,1000 ha +3728,Panama,2006,0.0,1000 ha +3729,Panama,2007,0.0,1000 ha +3730,Panama,2008,0.0,1000 ha +3731,Panama,2009,0.0,1000 ha +3732,Panama,2010,0.0,1000 ha +3733,Panama,2011,0.0,1000 ha +3734,Panama,2012,0.0,1000 ha +3735,Panama,2013,0.0,1000 ha +3736,Papua New Guinea,1990,31329.0,1000 ha +3737,Papua New Guinea,1991,30779.8,1000 ha +3738,Papua New Guinea,1992,30230.6,1000 ha +3739,Papua New Guinea,1993,29681.4,1000 ha +3740,Papua New Guinea,1994,29132.2,1000 ha +3741,Papua New Guinea,1995,28583.0,1000 ha +3742,Papua New Guinea,1996,28033.8,1000 ha +3743,Papua New Guinea,1997,27484.6,1000 ha +3744,Papua New Guinea,1998,26935.4,1000 ha +3745,Papua New Guinea,1999,26386.2,1000 ha +3746,Papua New Guinea,2000,25837.0,1000 ha +3747,Papua New Guinea,2001,25287.8,1000 ha +3748,Papua New Guinea,2002,24738.6,1000 ha +3749,Papua New Guinea,2003,24189.4,1000 ha +3750,Papua New Guinea,2004,23640.2,1000 ha +3751,Papua New Guinea,2005,23091.0,1000 ha +3752,Papua New Guinea,2006,22541.8,1000 ha +3753,Papua New Guinea,2007,21992.6,1000 ha +3754,Papua New Guinea,2008,21443.4,1000 ha +3755,Papua New Guinea,2009,20894.2,1000 ha +3756,Papua New Guinea,2010,20345.0,1000 ha +3757,Papua New Guinea,2011,19795.8,1000 ha +3758,Papua New Guinea,2012,19246.6,1000 ha +3759,Papua New Guinea,2013,18697.4,1000 ha +3760,Paraguay,1990,1850.0,1000 ha +3761,Paraguay,1991,1850.0,1000 ha +3762,Paraguay,1992,1850.0,1000 ha +3763,Paraguay,1993,1850.0,1000 ha +3764,Paraguay,1994,1850.0,1000 ha +3765,Paraguay,1995,1850.0,1000 ha +3766,Paraguay,1996,1850.0,1000 ha +3767,Paraguay,1997,1850.0,1000 ha +3768,Paraguay,1998,1850.0,1000 ha +3769,Paraguay,1999,1850.0,1000 ha +3770,Paraguay,2000,1850.0,1000 ha +3771,Paraguay,2001,1850.0,1000 ha +3772,Paraguay,2002,1850.0,1000 ha +3773,Paraguay,2003,1850.0,1000 ha +3774,Paraguay,2004,1850.0,1000 ha +3775,Paraguay,2005,1850.0,1000 ha +3776,Paraguay,2006,1856.8,1000 ha +3777,Paraguay,2007,1863.6,1000 ha +3778,Paraguay,2008,1870.4,1000 ha +3779,Paraguay,2009,1877.2,1000 ha +3780,Paraguay,2010,1884.0,1000 ha +3781,Paraguay,2011,1884.0,1000 ha +3782,Paraguay,2012,1884.0,1000 ha +3783,Paraguay,2013,1884.0,1000 ha +3784,Peru,1990,69632.0,1000 ha +3785,Peru,1991,69437.2,1000 ha +3786,Peru,1992,69242.4,1000 ha +3787,Peru,1993,69047.6,1000 ha +3788,Peru,1994,68852.8,1000 ha +3789,Peru,1995,68658.0,1000 ha +3790,Peru,1996,68463.2,1000 ha +3791,Peru,1997,68268.4,1000 ha +3792,Peru,1998,68073.6,1000 ha +3793,Peru,1999,67878.8,1000 ha +3794,Peru,2000,67684.0,1000 ha +3795,Peru,2001,67576.8,1000 ha +3796,Peru,2002,67469.6,1000 ha +3797,Peru,2003,67362.4,1000 ha +3798,Peru,2004,67255.2,1000 ha +3799,Peru,2005,67148.0,1000 ha +3800,Peru,2006,67023.2,1000 ha +3801,Peru,2007,66898.4,1000 ha +3802,Peru,2008,66773.6,1000 ha +3803,Peru,2009,66648.8,1000 ha +3804,Peru,2010,66524.0,1000 ha +3805,Peru,2011,66377.2,1000 ha +3806,Peru,2012,66230.4,1000 ha +3807,Peru,2013,66083.6,1000 ha +3808,Philippines,1990,861.0,1000 ha +3809,Philippines,1991,861.0,1000 ha +3810,Philippines,1992,861.0,1000 ha +3811,Philippines,1993,861.0,1000 ha +3812,Philippines,1994,861.0,1000 ha +3813,Philippines,1995,861.0,1000 ha +3814,Philippines,1996,861.0,1000 ha +3815,Philippines,1997,861.0,1000 ha +3816,Philippines,1998,861.0,1000 ha +3817,Philippines,1999,861.0,1000 ha +3818,Philippines,2000,861.0,1000 ha +3819,Philippines,2001,861.0,1000 ha +3820,Philippines,2002,861.0,1000 ha +3821,Philippines,2003,861.0,1000 ha +3822,Philippines,2004,861.0,1000 ha +3823,Philippines,2005,861.0,1000 ha +3824,Philippines,2006,861.0,1000 ha +3825,Philippines,2007,861.0,1000 ha +3826,Philippines,2008,861.0,1000 ha +3827,Philippines,2009,861.0,1000 ha +3828,Philippines,2010,861.0,1000 ha +3829,Philippines,2011,861.0,1000 ha +3830,Philippines,2012,861.0,1000 ha +3831,Philippines,2013,861.0,1000 ha +3832,Pitcairn Islands,1990,0.0,1000 ha +3833,Pitcairn Islands,1991,0.0,1000 ha +3834,Pitcairn Islands,1992,0.0,1000 ha +3835,Pitcairn Islands,1993,0.0,1000 ha +3836,Pitcairn Islands,1994,0.0,1000 ha +3837,Pitcairn Islands,1995,0.0,1000 ha +3838,Pitcairn Islands,1996,0.0,1000 ha +3839,Pitcairn Islands,1997,0.0,1000 ha +3840,Pitcairn Islands,1998,0.0,1000 ha +3841,Pitcairn Islands,1999,0.0,1000 ha +3842,Pitcairn Islands,2000,0.0,1000 ha +3843,Pitcairn Islands,2001,0.0,1000 ha +3844,Pitcairn Islands,2002,0.0,1000 ha +3845,Pitcairn Islands,2003,0.0,1000 ha +3846,Pitcairn Islands,2004,0.0,1000 ha +3847,Pitcairn Islands,2005,0.0,1000 ha +3848,Pitcairn Islands,2006,0.0,1000 ha +3849,Pitcairn Islands,2007,0.0,1000 ha +3850,Pitcairn Islands,2008,0.0,1000 ha +3851,Pitcairn Islands,2009,0.0,1000 ha +3852,Pitcairn Islands,2010,0.0,1000 ha +3853,Pitcairn Islands,2011,0.0,1000 ha +3854,Pitcairn Islands,2012,0.0,1000 ha +3855,Pitcairn Islands,2013,0.0,1000 ha +3856,Poland,1990,30.0,1000 ha +3857,Poland,1991,32.1,1000 ha +3858,Poland,1992,34.2,1000 ha +3859,Poland,1993,36.3,1000 ha +3860,Poland,1994,38.4,1000 ha +3861,Poland,1995,40.5,1000 ha +3862,Poland,1996,42.6,1000 ha +3863,Poland,1997,44.7,1000 ha +3864,Poland,1998,46.8,1000 ha +3865,Poland,1999,48.9,1000 ha +3866,Poland,2000,51.0,1000 ha +3867,Poland,2001,51.6,1000 ha +3868,Poland,2002,52.2,1000 ha +3869,Poland,2003,52.8,1000 ha +3870,Poland,2004,53.4,1000 ha +3871,Poland,2005,54.0,1000 ha +3872,Poland,2006,54.4,1000 ha +3873,Poland,2007,54.8,1000 ha +3874,Poland,2008,55.2,1000 ha +3875,Poland,2009,55.6,1000 ha +3876,Poland,2010,56.0,1000 ha +3877,Poland,2011,56.6,1000 ha +3878,Poland,2012,57.2,1000 ha +3879,Poland,2013,57.8,1000 ha +3880,Portugal,1990,24.1,1000 ha +3881,Portugal,1991,24.1,1000 ha +3882,Portugal,1992,24.1,1000 ha +3883,Portugal,1993,24.1,1000 ha +3884,Portugal,1994,24.1,1000 ha +3885,Portugal,1995,24.1,1000 ha +3886,Portugal,1996,24.1,1000 ha +3887,Portugal,1997,24.1,1000 ha +3888,Portugal,1998,24.1,1000 ha +3889,Portugal,1999,24.1,1000 ha +3890,Portugal,2000,24.1,1000 ha +3891,Portugal,2001,24.1,1000 ha +3892,Portugal,2002,24.1,1000 ha +3893,Portugal,2003,24.1,1000 ha +3894,Portugal,2004,24.1,1000 ha +3895,Portugal,2005,24.1,1000 ha +3896,Portugal,2006,24.1,1000 ha +3897,Portugal,2007,24.1,1000 ha +3898,Portugal,2008,24.1,1000 ha +3899,Portugal,2009,24.1,1000 ha +3900,Portugal,2010,24.1,1000 ha +3901,Portugal,2011,24.1,1000 ha +3902,Portugal,2012,24.1,1000 ha +3903,Portugal,2013,24.1,1000 ha +3904,Puerto Rico,1990,0.0,1000 ha +3905,Puerto Rico,1991,0.0,1000 ha +3906,Puerto Rico,1992,0.0,1000 ha +3907,Puerto Rico,1993,0.0,1000 ha +3908,Puerto Rico,1994,0.0,1000 ha +3909,Puerto Rico,1995,0.0,1000 ha +3910,Puerto Rico,1996,0.0,1000 ha +3911,Puerto Rico,1997,0.0,1000 ha +3912,Puerto Rico,1998,0.0,1000 ha +3913,Puerto Rico,1999,0.0,1000 ha +3914,Puerto Rico,2000,0.0,1000 ha +3915,Puerto Rico,2001,0.0,1000 ha +3916,Puerto Rico,2002,0.0,1000 ha +3917,Puerto Rico,2003,0.0,1000 ha +3918,Puerto Rico,2004,0.0,1000 ha +3919,Puerto Rico,2005,0.0,1000 ha +3920,Puerto Rico,2006,0.0,1000 ha +3921,Puerto Rico,2007,0.0,1000 ha +3922,Puerto Rico,2008,0.0,1000 ha +3923,Puerto Rico,2009,0.0,1000 ha +3924,Puerto Rico,2010,0.0,1000 ha +3925,Puerto Rico,2011,0.0,1000 ha +3926,Puerto Rico,2012,0.0,1000 ha +3927,Puerto Rico,2013,0.0,1000 ha +3928,Qatar,1990,0.0,1000 ha +3929,Qatar,1991,0.0,1000 ha +3930,Qatar,1992,0.0,1000 ha +3931,Qatar,1993,0.0,1000 ha +3932,Qatar,1994,0.0,1000 ha +3933,Qatar,1995,0.0,1000 ha +3934,Qatar,1996,0.0,1000 ha +3935,Qatar,1997,0.0,1000 ha +3936,Qatar,1998,0.0,1000 ha +3937,Qatar,1999,0.0,1000 ha +3938,Qatar,2000,0.0,1000 ha +3939,Qatar,2001,0.0,1000 ha +3940,Qatar,2002,0.0,1000 ha +3941,Qatar,2003,0.0,1000 ha +3942,Qatar,2004,0.0,1000 ha +3943,Qatar,2005,0.0,1000 ha +3944,Qatar,2006,0.0,1000 ha +3945,Qatar,2007,0.0,1000 ha +3946,Qatar,2008,0.0,1000 ha +3947,Qatar,2009,0.0,1000 ha +3948,Qatar,2010,0.0,1000 ha +3949,Qatar,2011,0.0,1000 ha +3950,Qatar,2012,0.0,1000 ha +3951,Qatar,2013,0.0,1000 ha +3952,Republic of Korea,1990,4277.0,1000 ha +3953,Republic of Korea,1991,4277.0,1000 ha +3954,Republic of Korea,1992,4277.0,1000 ha +3955,Republic of Korea,1993,4277.0,1000 ha +3956,Republic of Korea,1994,4277.0,1000 ha +3957,Republic of Korea,1995,4277.0,1000 ha +3958,Republic of Korea,1996,4277.0,1000 ha +3959,Republic of Korea,1997,4277.0,1000 ha +3960,Republic of Korea,1998,4277.0,1000 ha +3961,Republic of Korea,1999,4277.0,1000 ha +3962,Republic of Korea,2000,4277.0,1000 ha +3963,Republic of Korea,2001,4145.0,1000 ha +3964,Republic of Korea,2002,4013.0,1000 ha +3965,Republic of Korea,2003,3881.0,1000 ha +3966,Republic of Korea,2004,3749.0,1000 ha +3967,Republic of Korea,2005,3617.0,1000 ha +3968,Republic of Korea,2006,3601.6,1000 ha +3969,Republic of Korea,2007,3586.2,1000 ha +3970,Republic of Korea,2008,3570.8,1000 ha +3971,Republic of Korea,2009,3555.4,1000 ha +3972,Republic of Korea,2010,3540.0,1000 ha +3973,Republic of Korea,2011,3524.0,1000 ha +3974,Republic of Korea,2012,3508.0,1000 ha +3975,Republic of Korea,2013,3492.0,1000 ha +3976,Republic of Moldova,1992,0.0,1000 ha +3977,Republic of Moldova,1993,0.0,1000 ha +3978,Republic of Moldova,1994,0.0,1000 ha +3979,Republic of Moldova,1995,0.0,1000 ha +3980,Republic of Moldova,1996,0.0,1000 ha +3981,Republic of Moldova,1997,0.0,1000 ha +3982,Republic of Moldova,1998,0.0,1000 ha +3983,Republic of Moldova,1999,0.0,1000 ha +3984,Republic of Moldova,2000,0.0,1000 ha +3985,Republic of Moldova,2001,0.0,1000 ha +3986,Republic of Moldova,2002,0.0,1000 ha +3987,Republic of Moldova,2003,0.0,1000 ha +3988,Republic of Moldova,2004,0.0,1000 ha +3989,Republic of Moldova,2005,0.0,1000 ha +3990,Republic of Moldova,2006,0.0,1000 ha +3991,Republic of Moldova,2007,0.0,1000 ha +3992,Republic of Moldova,2008,0.0,1000 ha +3993,Republic of Moldova,2009,0.0,1000 ha +3994,Republic of Moldova,2010,0.0,1000 ha +3995,Republic of Moldova,2011,0.0,1000 ha +3996,Republic of Moldova,2012,0.0,1000 ha +3997,Republic of Moldova,2013,0.0,1000 ha +3998,Réunion,1990,55.0,1000 ha +3999,Réunion,1991,55.0,1000 ha +4000,Réunion,1992,55.0,1000 ha +4001,Réunion,1993,55.0,1000 ha +4002,Réunion,1994,55.0,1000 ha +4003,Réunion,1995,55.0,1000 ha +4004,Réunion,1996,55.0,1000 ha +4005,Réunion,1997,55.0,1000 ha +4006,Réunion,1998,55.0,1000 ha +4007,Réunion,1999,55.0,1000 ha +4008,Réunion,2000,55.0,1000 ha +4009,Réunion,2001,55.0,1000 ha +4010,Réunion,2002,55.0,1000 ha +4011,Réunion,2003,55.0,1000 ha +4012,Réunion,2004,55.0,1000 ha +4013,Réunion,2005,55.0,1000 ha +4014,Réunion,2006,55.0,1000 ha +4015,Réunion,2007,55.0,1000 ha +4016,Réunion,2008,55.0,1000 ha +4017,Réunion,2009,55.0,1000 ha +4018,Réunion,2010,55.0,1000 ha +4019,Réunion,2011,55.0,1000 ha +4020,Réunion,2012,55.0,1000 ha +4021,Réunion,2013,55.0,1000 ha +4022,Romania,1990,263.0,1000 ha +4023,Romania,1991,263.0,1000 ha +4024,Romania,1992,263.0,1000 ha +4025,Romania,1993,263.0,1000 ha +4026,Romania,1994,263.0,1000 ha +4027,Romania,1995,263.0,1000 ha +4028,Romania,1996,263.0,1000 ha +4029,Romania,1997,263.0,1000 ha +4030,Romania,1998,263.0,1000 ha +4031,Romania,1999,263.0,1000 ha +4032,Romania,2000,263.0,1000 ha +4033,Romania,2001,263.2,1000 ha +4034,Romania,2002,263.4,1000 ha +4035,Romania,2003,263.6,1000 ha +4036,Romania,2004,263.8,1000 ha +4037,Romania,2005,264.0,1000 ha +4038,Romania,2006,265.0,1000 ha +4039,Romania,2007,266.0,1000 ha +4040,Romania,2008,267.0,1000 ha +4041,Romania,2009,268.0,1000 ha +4042,Romania,2010,269.0,1000 ha +4043,Romania,2011,271.8,1000 ha +4044,Romania,2012,274.6,1000 ha +4045,Romania,2013,277.4,1000 ha +4046,Russian Federation,1992,245006.72,1000 ha +4047,Russian Federation,1993,246647.23,1000 ha +4048,Russian Federation,1994,248287.74,1000 ha +4049,Russian Federation,1995,249928.25,1000 ha +4050,Russian Federation,1996,251568.76,1000 ha +4051,Russian Federation,1997,253209.27,1000 ha +4052,Russian Federation,1998,254849.78,1000 ha +4053,Russian Federation,1999,256490.29,1000 ha +4054,Russian Federation,2000,258130.8,1000 ha +4055,Russian Federation,2001,257598.6,1000 ha +4056,Russian Federation,2002,257066.4,1000 ha +4057,Russian Federation,2003,256534.2,1000 ha +4058,Russian Federation,2004,256002.0,1000 ha +4059,Russian Federation,2005,255469.8,1000 ha +4060,Russian Federation,2006,259044.44,1000 ha +4061,Russian Federation,2007,262619.08,1000 ha +4062,Russian Federation,2008,266193.72,1000 ha +4063,Russian Federation,2009,269768.36,1000 ha +4064,Russian Federation,2010,273343.0,1000 ha +4065,Russian Federation,2011,273217.92,1000 ha +4066,Russian Federation,2012,273092.84,1000 ha +4067,Russian Federation,2013,272967.76,1000 ha +4068,Rwanda,1990,7.0,1000 ha +4069,Rwanda,1991,7.0,1000 ha +4070,Rwanda,1992,7.0,1000 ha +4071,Rwanda,1993,7.0,1000 ha +4072,Rwanda,1994,7.0,1000 ha +4073,Rwanda,1995,7.0,1000 ha +4074,Rwanda,1996,7.0,1000 ha +4075,Rwanda,1997,7.0,1000 ha +4076,Rwanda,1998,7.0,1000 ha +4077,Rwanda,1999,7.0,1000 ha +4078,Rwanda,2000,7.0,1000 ha +4079,Rwanda,2001,7.0,1000 ha +4080,Rwanda,2002,7.0,1000 ha +4081,Rwanda,2003,7.0,1000 ha +4082,Rwanda,2004,7.0,1000 ha +4083,Rwanda,2005,7.0,1000 ha +4084,Rwanda,2006,7.0,1000 ha +4085,Rwanda,2007,7.0,1000 ha +4086,Rwanda,2008,7.0,1000 ha +4087,Rwanda,2009,7.0,1000 ha +4088,Rwanda,2010,7.0,1000 ha +4089,Rwanda,2011,7.0,1000 ha +4090,Rwanda,2012,7.0,1000 ha +4091,Rwanda,2013,7.0,1000 ha +4092,"Saint Helena, Ascension and Tristan da Cunha",1990,0.0,1000 ha +4093,"Saint Helena, Ascension and Tristan da Cunha",1991,0.0,1000 ha +4094,"Saint Helena, Ascension and Tristan da Cunha",1992,0.0,1000 ha +4095,"Saint Helena, Ascension and Tristan da Cunha",1993,0.0,1000 ha +4096,"Saint Helena, Ascension and Tristan da Cunha",1994,0.0,1000 ha +4097,"Saint Helena, Ascension and Tristan da Cunha",1995,0.0,1000 ha +4098,"Saint Helena, Ascension and Tristan da Cunha",1996,0.0,1000 ha +4099,"Saint Helena, Ascension and Tristan da Cunha",1997,0.0,1000 ha +4100,"Saint Helena, Ascension and Tristan da Cunha",1998,0.0,1000 ha +4101,"Saint Helena, Ascension and Tristan da Cunha",1999,0.0,1000 ha +4102,"Saint Helena, Ascension and Tristan da Cunha",2000,0.0,1000 ha +4103,"Saint Helena, Ascension and Tristan da Cunha",2001,0.0,1000 ha +4104,"Saint Helena, Ascension and Tristan da Cunha",2002,0.0,1000 ha +4105,"Saint Helena, Ascension and Tristan da Cunha",2003,0.0,1000 ha +4106,"Saint Helena, Ascension and Tristan da Cunha",2004,0.0,1000 ha +4107,"Saint Helena, Ascension and Tristan da Cunha",2005,0.0,1000 ha +4108,"Saint Helena, Ascension and Tristan da Cunha",2006,0.0,1000 ha +4109,"Saint Helena, Ascension and Tristan da Cunha",2007,0.0,1000 ha +4110,"Saint Helena, Ascension and Tristan da Cunha",2008,0.0,1000 ha +4111,"Saint Helena, Ascension and Tristan da Cunha",2009,0.0,1000 ha +4112,"Saint Helena, Ascension and Tristan da Cunha",2010,0.0,1000 ha +4113,"Saint Helena, Ascension and Tristan da Cunha",2011,0.0,1000 ha +4114,"Saint Helena, Ascension and Tristan da Cunha",2012,0.0,1000 ha +4115,"Saint Helena, Ascension and Tristan da Cunha",2013,0.0,1000 ha +4116,Saint Kitts and Nevis,1990,0.0,1000 ha +4117,Saint Kitts and Nevis,1991,0.0,1000 ha +4118,Saint Kitts and Nevis,1992,0.0,1000 ha +4119,Saint Kitts and Nevis,1993,0.0,1000 ha +4120,Saint Kitts and Nevis,1994,0.0,1000 ha +4121,Saint Kitts and Nevis,1995,0.0,1000 ha +4122,Saint Kitts and Nevis,1996,0.0,1000 ha +4123,Saint Kitts and Nevis,1997,0.0,1000 ha +4124,Saint Kitts and Nevis,1998,0.0,1000 ha +4125,Saint Kitts and Nevis,1999,0.0,1000 ha +4126,Saint Kitts and Nevis,2000,0.0,1000 ha +4127,Saint Kitts and Nevis,2001,0.0,1000 ha +4128,Saint Kitts and Nevis,2002,0.0,1000 ha +4129,Saint Kitts and Nevis,2003,0.0,1000 ha +4130,Saint Kitts and Nevis,2004,0.0,1000 ha +4131,Saint Kitts and Nevis,2005,0.0,1000 ha +4132,Saint Kitts and Nevis,2006,0.0,1000 ha +4133,Saint Kitts and Nevis,2007,0.0,1000 ha +4134,Saint Kitts and Nevis,2008,0.0,1000 ha +4135,Saint Kitts and Nevis,2009,0.0,1000 ha +4136,Saint Kitts and Nevis,2010,0.0,1000 ha +4137,Saint Kitts and Nevis,2011,0.0,1000 ha +4138,Saint Kitts and Nevis,2012,0.0,1000 ha +4139,Saint Kitts and Nevis,2013,0.0,1000 ha +4140,Saint Lucia,1990,18.65,1000 ha +4141,Saint Lucia,1991,18.59,1000 ha +4142,Saint Lucia,1992,18.53,1000 ha +4143,Saint Lucia,1993,18.47,1000 ha +4144,Saint Lucia,1994,18.41,1000 ha +4145,Saint Lucia,1995,18.35,1000 ha +4146,Saint Lucia,1996,18.29,1000 ha +4147,Saint Lucia,1997,18.23,1000 ha +4148,Saint Lucia,1998,18.17,1000 ha +4149,Saint Lucia,1999,18.11,1000 ha +4150,Saint Lucia,2000,18.05,1000 ha +4151,Saint Lucia,2001,17.99,1000 ha +4152,Saint Lucia,2002,17.93,1000 ha +4153,Saint Lucia,2003,17.87,1000 ha +4154,Saint Lucia,2004,17.81,1000 ha +4155,Saint Lucia,2005,17.75,1000 ha +4156,Saint Lucia,2006,17.69,1000 ha +4157,Saint Lucia,2007,17.63,1000 ha +4158,Saint Lucia,2008,17.57,1000 ha +4159,Saint Lucia,2009,17.51,1000 ha +4160,Saint Lucia,2010,17.45,1000 ha +4161,Saint Lucia,2011,17.39,1000 ha +4162,Saint Lucia,2012,17.33,1000 ha +4163,Saint Lucia,2013,17.27,1000 ha +4164,Saint Pierre and Miquelon,1990,0.0,1000 ha +4165,Saint Pierre and Miquelon,1991,0.0,1000 ha +4166,Saint Pierre and Miquelon,1992,0.0,1000 ha +4167,Saint Pierre and Miquelon,1993,0.0,1000 ha +4168,Saint Pierre and Miquelon,1994,0.0,1000 ha +4169,Saint Pierre and Miquelon,1995,0.0,1000 ha +4170,Saint Pierre and Miquelon,1996,0.0,1000 ha +4171,Saint Pierre and Miquelon,1997,0.0,1000 ha +4172,Saint Pierre and Miquelon,1998,0.0,1000 ha +4173,Saint Pierre and Miquelon,1999,0.0,1000 ha +4174,Saint Pierre and Miquelon,2000,0.0,1000 ha +4175,Saint Pierre and Miquelon,2001,0.0,1000 ha +4176,Saint Pierre and Miquelon,2002,0.0,1000 ha +4177,Saint Pierre and Miquelon,2003,0.0,1000 ha +4178,Saint Pierre and Miquelon,2004,0.0,1000 ha +4179,Saint Pierre and Miquelon,2005,0.0,1000 ha +4180,Saint Pierre and Miquelon,2006,0.0,1000 ha +4181,Saint Pierre and Miquelon,2007,0.0,1000 ha +4182,Saint Pierre and Miquelon,2008,0.0,1000 ha +4183,Saint Pierre and Miquelon,2009,0.0,1000 ha +4184,Saint Pierre and Miquelon,2010,0.0,1000 ha +4185,Saint Pierre and Miquelon,2011,0.0,1000 ha +4186,Saint Pierre and Miquelon,2012,0.0,1000 ha +4187,Saint Pierre and Miquelon,2013,0.0,1000 ha +4188,Saint Vincent and the Grenadines,1990,0.0,1000 ha +4189,Saint Vincent and the Grenadines,1991,0.0,1000 ha +4190,Saint Vincent and the Grenadines,1992,0.0,1000 ha +4191,Saint Vincent and the Grenadines,1993,0.0,1000 ha +4192,Saint Vincent and the Grenadines,1994,0.0,1000 ha +4193,Saint Vincent and the Grenadines,1995,0.0,1000 ha +4194,Saint Vincent and the Grenadines,1996,0.0,1000 ha +4195,Saint Vincent and the Grenadines,1997,0.0,1000 ha +4196,Saint Vincent and the Grenadines,1998,0.0,1000 ha +4197,Saint Vincent and the Grenadines,1999,0.0,1000 ha +4198,Saint Vincent and the Grenadines,2000,0.0,1000 ha +4199,Saint Vincent and the Grenadines,2001,0.0,1000 ha +4200,Saint Vincent and the Grenadines,2002,0.0,1000 ha +4201,Saint Vincent and the Grenadines,2003,0.0,1000 ha +4202,Saint Vincent and the Grenadines,2004,0.0,1000 ha +4203,Saint Vincent and the Grenadines,2005,0.0,1000 ha +4204,Saint Vincent and the Grenadines,2006,0.0,1000 ha +4205,Saint Vincent and the Grenadines,2007,0.0,1000 ha +4206,Saint Vincent and the Grenadines,2008,0.0,1000 ha +4207,Saint Vincent and the Grenadines,2009,0.0,1000 ha +4208,Saint Vincent and the Grenadines,2010,0.0,1000 ha +4209,Saint Vincent and the Grenadines,2011,0.0,1000 ha +4210,Saint Vincent and the Grenadines,2012,0.0,1000 ha +4211,Saint Vincent and the Grenadines,2013,0.0,1000 ha +4212,Samoa,1990,0.02,1000 ha +4213,Samoa,1991,0.02,1000 ha +4214,Samoa,1992,0.02,1000 ha +4215,Samoa,1993,0.02,1000 ha +4216,Samoa,1994,0.02,1000 ha +4217,Samoa,1995,0.02,1000 ha +4218,Samoa,1996,0.02,1000 ha +4219,Samoa,1997,0.02,1000 ha +4220,Samoa,1998,0.02,1000 ha +4221,Samoa,1999,0.02,1000 ha +4222,Samoa,2000,0.02,1000 ha +4223,Samoa,2001,0.02,1000 ha +4224,Samoa,2002,0.02,1000 ha +4225,Samoa,2003,0.02,1000 ha +4226,Samoa,2004,0.02,1000 ha +4227,Samoa,2005,0.02,1000 ha +4228,Samoa,2006,0.02,1000 ha +4229,Samoa,2007,0.02,1000 ha +4230,Samoa,2008,0.02,1000 ha +4231,Samoa,2009,0.02,1000 ha +4232,Samoa,2010,0.02,1000 ha +4233,Samoa,2011,0.02,1000 ha +4234,Samoa,2012,0.02,1000 ha +4235,Samoa,2013,0.02,1000 ha +4236,San Marino,1990,0.0,1000 ha +4237,San Marino,1991,0.0,1000 ha +4238,San Marino,1992,0.0,1000 ha +4239,San Marino,1993,0.0,1000 ha +4240,San Marino,1994,0.0,1000 ha +4241,San Marino,1995,0.0,1000 ha +4242,San Marino,1996,0.0,1000 ha +4243,San Marino,1997,0.0,1000 ha +4244,San Marino,1998,0.0,1000 ha +4245,San Marino,1999,0.0,1000 ha +4246,San Marino,2000,0.0,1000 ha +4247,San Marino,2001,0.0,1000 ha +4248,San Marino,2002,0.0,1000 ha +4249,San Marino,2003,0.0,1000 ha +4250,San Marino,2004,0.0,1000 ha +4251,San Marino,2005,0.0,1000 ha +4252,San Marino,2006,0.0,1000 ha +4253,San Marino,2007,0.0,1000 ha +4254,San Marino,2008,0.0,1000 ha +4255,San Marino,2009,0.0,1000 ha +4256,San Marino,2010,0.0,1000 ha +4257,San Marino,2011,0.0,1000 ha +4258,San Marino,2012,0.0,1000 ha +4259,San Marino,2013,0.0,1000 ha +4260,Sao Tome and Principe,1990,27.0,1000 ha +4261,Sao Tome and Principe,1991,27.0,1000 ha +4262,Sao Tome and Principe,1992,27.0,1000 ha +4263,Sao Tome and Principe,1993,27.0,1000 ha +4264,Sao Tome and Principe,1994,27.0,1000 ha +4265,Sao Tome and Principe,1995,27.0,1000 ha +4266,Sao Tome and Principe,1996,27.0,1000 ha +4267,Sao Tome and Principe,1997,27.0,1000 ha +4268,Sao Tome and Principe,1998,27.0,1000 ha +4269,Sao Tome and Principe,1999,27.0,1000 ha +4270,Sao Tome and Principe,2000,27.0,1000 ha +4271,Sao Tome and Principe,2001,27.0,1000 ha +4272,Sao Tome and Principe,2002,27.0,1000 ha +4273,Sao Tome and Principe,2003,27.0,1000 ha +4274,Sao Tome and Principe,2004,27.0,1000 ha +4275,Sao Tome and Principe,2005,27.0,1000 ha +4276,Sao Tome and Principe,2006,27.0,1000 ha +4277,Sao Tome and Principe,2007,27.0,1000 ha +4278,Sao Tome and Principe,2008,27.0,1000 ha +4279,Sao Tome and Principe,2009,27.0,1000 ha +4280,Sao Tome and Principe,2010,27.0,1000 ha +4281,Sao Tome and Principe,2011,27.0,1000 ha +4282,Sao Tome and Principe,2012,27.0,1000 ha +4283,Sao Tome and Principe,2013,27.0,1000 ha +4284,Saudi Arabia,1990,360.0,1000 ha +4285,Saudi Arabia,1991,360.0,1000 ha +4286,Saudi Arabia,1992,360.0,1000 ha +4287,Saudi Arabia,1993,360.0,1000 ha +4288,Saudi Arabia,1994,360.0,1000 ha +4289,Saudi Arabia,1995,360.0,1000 ha +4290,Saudi Arabia,1996,360.0,1000 ha +4291,Saudi Arabia,1997,360.0,1000 ha +4292,Saudi Arabia,1998,360.0,1000 ha +4293,Saudi Arabia,1999,360.0,1000 ha +4294,Saudi Arabia,2000,360.0,1000 ha +4295,Saudi Arabia,2001,360.0,1000 ha +4296,Saudi Arabia,2002,360.0,1000 ha +4297,Saudi Arabia,2003,360.0,1000 ha +4298,Saudi Arabia,2004,360.0,1000 ha +4299,Saudi Arabia,2005,360.0,1000 ha +4300,Saudi Arabia,2006,360.0,1000 ha +4301,Saudi Arabia,2007,360.0,1000 ha +4302,Saudi Arabia,2008,360.0,1000 ha +4303,Saudi Arabia,2009,360.0,1000 ha +4304,Saudi Arabia,2010,360.0,1000 ha +4305,Saudi Arabia,2011,360.0,1000 ha +4306,Saudi Arabia,2012,360.0,1000 ha +4307,Saudi Arabia,2013,360.0,1000 ha +4308,Senegal,1990,1759.0,1000 ha +4309,Senegal,1991,1748.4,1000 ha +4310,Senegal,1992,1737.8,1000 ha +4311,Senegal,1993,1727.2,1000 ha +4312,Senegal,1994,1716.6,1000 ha +4313,Senegal,1995,1706.0,1000 ha +4314,Senegal,1996,1695.4,1000 ha +4315,Senegal,1997,1684.8,1000 ha +4316,Senegal,1998,1674.2,1000 ha +4317,Senegal,1999,1663.6,1000 ha +4318,Senegal,2000,1653.0,1000 ha +4319,Senegal,2001,1642.0,1000 ha +4320,Senegal,2002,1631.0,1000 ha +4321,Senegal,2003,1620.0,1000 ha +4322,Senegal,2004,1609.0,1000 ha +4323,Senegal,2005,1598.0,1000 ha +4324,Senegal,2006,1589.0,1000 ha +4325,Senegal,2007,1580.0,1000 ha +4326,Senegal,2008,1571.0,1000 ha +4327,Senegal,2009,1562.0,1000 ha +4328,Senegal,2010,1553.0,1000 ha +4329,Senegal,2011,1544.0,1000 ha +4330,Senegal,2012,1535.0,1000 ha +4331,Senegal,2013,1526.0,1000 ha +4332,Serbia,2006,1.0,1000 ha +4333,Serbia,2007,1.0,1000 ha +4334,Serbia,2008,1.0,1000 ha +4335,Serbia,2009,1.0,1000 ha +4336,Serbia,2010,1.0,1000 ha +4337,Serbia,2011,1.0,1000 ha +4338,Serbia,2012,1.0,1000 ha +4339,Serbia,2013,1.0,1000 ha +4340,Serbia and Montenegro,1992,110.0,1000 ha +4341,Serbia and Montenegro,1993,110.0,1000 ha +4342,Serbia and Montenegro,1994,110.0,1000 ha +4343,Serbia and Montenegro,1995,110.0,1000 ha +4344,Serbia and Montenegro,1996,110.0,1000 ha +4345,Serbia and Montenegro,1997,110.0,1000 ha +4346,Serbia and Montenegro,1998,110.0,1000 ha +4347,Serbia and Montenegro,1999,110.0,1000 ha +4348,Serbia and Montenegro,2000,110.0,1000 ha +4349,Serbia and Montenegro,2001,110.0,1000 ha +4350,Serbia and Montenegro,2002,110.0,1000 ha +4351,Serbia and Montenegro,2003,110.0,1000 ha +4352,Serbia and Montenegro,2004,110.0,1000 ha +4353,Serbia and Montenegro,2005,110.0,1000 ha +4354,Seychelles,1990,2.0,1000 ha +4355,Seychelles,1991,2.0,1000 ha +4356,Seychelles,1992,2.0,1000 ha +4357,Seychelles,1993,2.0,1000 ha +4358,Seychelles,1994,2.0,1000 ha +4359,Seychelles,1995,2.0,1000 ha +4360,Seychelles,1996,2.0,1000 ha +4361,Seychelles,1997,2.0,1000 ha +4362,Seychelles,1998,2.0,1000 ha +4363,Seychelles,1999,2.0,1000 ha +4364,Seychelles,2000,2.0,1000 ha +4365,Seychelles,2001,2.0,1000 ha +4366,Seychelles,2002,2.0,1000 ha +4367,Seychelles,2003,2.0,1000 ha +4368,Seychelles,2004,2.0,1000 ha +4369,Seychelles,2005,2.0,1000 ha +4370,Seychelles,2006,2.0,1000 ha +4371,Seychelles,2007,2.0,1000 ha +4372,Seychelles,2008,2.0,1000 ha +4373,Seychelles,2009,2.0,1000 ha +4374,Seychelles,2010,2.0,1000 ha +4375,Seychelles,2011,2.0,1000 ha +4376,Seychelles,2012,2.0,1000 ha +4377,Seychelles,2013,2.0,1000 ha +4378,Sierra Leone,1990,224.0,1000 ha +4379,Sierra Leone,1991,217.3,1000 ha +4380,Sierra Leone,1992,210.6,1000 ha +4381,Sierra Leone,1993,203.9,1000 ha +4382,Sierra Leone,1994,197.2,1000 ha +4383,Sierra Leone,1995,190.5,1000 ha +4384,Sierra Leone,1996,183.8,1000 ha +4385,Sierra Leone,1997,177.1,1000 ha +4386,Sierra Leone,1998,170.4,1000 ha +4387,Sierra Leone,1999,163.7,1000 ha +4388,Sierra Leone,2000,157.0,1000 ha +4389,Sierra Leone,2001,152.2,1000 ha +4390,Sierra Leone,2002,147.4,1000 ha +4391,Sierra Leone,2003,142.6,1000 ha +4392,Sierra Leone,2004,137.8,1000 ha +4393,Sierra Leone,2005,133.0,1000 ha +4394,Sierra Leone,2006,129.0,1000 ha +4395,Sierra Leone,2007,125.0,1000 ha +4396,Sierra Leone,2008,121.0,1000 ha +4397,Sierra Leone,2009,117.0,1000 ha +4398,Sierra Leone,2010,113.0,1000 ha +4399,Sierra Leone,2011,107.44,1000 ha +4400,Sierra Leone,2012,101.88,1000 ha +4401,Sierra Leone,2013,96.32,1000 ha +4402,Singapore,1990,0.21,1000 ha +4403,Singapore,1991,0.21,1000 ha +4404,Singapore,1992,0.21,1000 ha +4405,Singapore,1993,0.21,1000 ha +4406,Singapore,1994,0.21,1000 ha +4407,Singapore,1995,0.21,1000 ha +4408,Singapore,1996,0.21,1000 ha +4409,Singapore,1997,0.21,1000 ha +4410,Singapore,1998,0.21,1000 ha +4411,Singapore,1999,0.21,1000 ha +4412,Singapore,2000,0.21,1000 ha +4413,Singapore,2001,0.21,1000 ha +4414,Singapore,2002,0.21,1000 ha +4415,Singapore,2003,0.21,1000 ha +4416,Singapore,2004,0.21,1000 ha +4417,Singapore,2005,0.21,1000 ha +4418,Singapore,2006,0.21,1000 ha +4419,Singapore,2007,0.21,1000 ha +4420,Singapore,2008,0.21,1000 ha +4421,Singapore,2009,0.21,1000 ha +4422,Singapore,2010,0.21,1000 ha +4423,Singapore,2011,0.21,1000 ha +4424,Singapore,2012,0.21,1000 ha +4425,Singapore,2013,0.21,1000 ha +4426,Slovakia,1993,24.0,1000 ha +4427,Slovakia,1994,24.0,1000 ha +4428,Slovakia,1995,24.0,1000 ha +4429,Slovakia,1996,24.0,1000 ha +4430,Slovakia,1997,24.0,1000 ha +4431,Slovakia,1998,24.0,1000 ha +4432,Slovakia,1999,24.0,1000 ha +4433,Slovakia,2000,24.0,1000 ha +4434,Slovakia,2001,24.0,1000 ha +4435,Slovakia,2002,24.0,1000 ha +4436,Slovakia,2003,24.0,1000 ha +4437,Slovakia,2004,24.0,1000 ha +4438,Slovakia,2005,24.0,1000 ha +4439,Slovakia,2006,24.0,1000 ha +4440,Slovakia,2007,24.0,1000 ha +4441,Slovakia,2008,24.0,1000 ha +4442,Slovakia,2009,24.0,1000 ha +4443,Slovakia,2010,24.0,1000 ha +4444,Slovakia,2011,24.0,1000 ha +4445,Slovakia,2012,24.0,1000 ha +4446,Slovakia,2013,24.0,1000 ha +4447,Slovenia,1992,49.8,1000 ha +4448,Slovenia,1993,50.2,1000 ha +4449,Slovenia,1994,50.6,1000 ha +4450,Slovenia,1995,51.0,1000 ha +4451,Slovenia,1996,51.4,1000 ha +4452,Slovenia,1997,51.8,1000 ha +4453,Slovenia,1998,52.2,1000 ha +4454,Slovenia,1999,52.6,1000 ha +4455,Slovenia,2000,53.0,1000 ha +4456,Slovenia,2001,52.2,1000 ha +4457,Slovenia,2002,51.4,1000 ha +4458,Slovenia,2003,50.6,1000 ha +4459,Slovenia,2004,49.8,1000 ha +4460,Slovenia,2005,49.0,1000 ha +4461,Slovenia,2006,49.0,1000 ha +4462,Slovenia,2007,49.0,1000 ha +4463,Slovenia,2008,49.0,1000 ha +4464,Slovenia,2009,49.0,1000 ha +4465,Slovenia,2010,49.0,1000 ha +4466,Slovenia,2011,49.0,1000 ha +4467,Slovenia,2012,49.0,1000 ha +4468,Slovenia,2013,49.0,1000 ha +4469,Solomon Islands,1990,1105.4,1000 ha +4470,Solomon Islands,1991,1105.4,1000 ha +4471,Solomon Islands,1992,1105.4,1000 ha +4472,Solomon Islands,1993,1105.4,1000 ha +4473,Solomon Islands,1994,1105.4,1000 ha +4474,Solomon Islands,1995,1105.4,1000 ha +4475,Solomon Islands,1996,1105.4,1000 ha +4476,Solomon Islands,1997,1105.4,1000 ha +4477,Solomon Islands,1998,1105.4,1000 ha +4478,Solomon Islands,1999,1105.4,1000 ha +4479,Solomon Islands,2000,1105.4,1000 ha +4480,Solomon Islands,2001,1105.4,1000 ha +4481,Solomon Islands,2002,1105.4,1000 ha +4482,Solomon Islands,2003,1105.4,1000 ha +4483,Solomon Islands,2004,1105.4,1000 ha +4484,Solomon Islands,2005,1105.4,1000 ha +4485,Solomon Islands,2006,1105.4,1000 ha +4486,Solomon Islands,2007,1105.4,1000 ha +4487,Solomon Islands,2008,1105.4,1000 ha +4488,Solomon Islands,2009,1105.4,1000 ha +4489,Solomon Islands,2010,1105.4,1000 ha +4490,Solomon Islands,2011,1105.4,1000 ha +4491,Solomon Islands,2012,1105.4,1000 ha +4492,Solomon Islands,2013,1105.4,1000 ha +4493,Somalia,1990,0.0,1000 ha +4494,Somalia,1991,0.0,1000 ha +4495,Somalia,1992,0.0,1000 ha +4496,Somalia,1993,0.0,1000 ha +4497,Somalia,1994,0.0,1000 ha +4498,Somalia,1995,0.0,1000 ha +4499,Somalia,1996,0.0,1000 ha +4500,Somalia,1997,0.0,1000 ha +4501,Somalia,1998,0.0,1000 ha +4502,Somalia,1999,0.0,1000 ha +4503,Somalia,2000,0.0,1000 ha +4504,Somalia,2001,0.0,1000 ha +4505,Somalia,2002,0.0,1000 ha +4506,Somalia,2003,0.0,1000 ha +4507,Somalia,2004,0.0,1000 ha +4508,Somalia,2005,0.0,1000 ha +4509,Somalia,2006,0.0,1000 ha +4510,Somalia,2007,0.0,1000 ha +4511,Somalia,2008,0.0,1000 ha +4512,Somalia,2009,0.0,1000 ha +4513,Somalia,2010,0.0,1000 ha +4514,Somalia,2011,0.0,1000 ha +4515,Somalia,2012,0.0,1000 ha +4516,Somalia,2013,0.0,1000 ha +4517,South Africa,1990,947.0,1000 ha +4518,South Africa,1991,947.0,1000 ha +4519,South Africa,1992,947.0,1000 ha +4520,South Africa,1993,947.0,1000 ha +4521,South Africa,1994,947.0,1000 ha +4522,South Africa,1995,947.0,1000 ha +4523,South Africa,1996,947.0,1000 ha +4524,South Africa,1997,947.0,1000 ha +4525,South Africa,1998,947.0,1000 ha +4526,South Africa,1999,947.0,1000 ha +4527,South Africa,2000,947.0,1000 ha +4528,South Africa,2001,947.0,1000 ha +4529,South Africa,2002,947.0,1000 ha +4530,South Africa,2003,947.0,1000 ha +4531,South Africa,2004,947.0,1000 ha +4532,South Africa,2005,947.0,1000 ha +4533,South Africa,2006,947.0,1000 ha +4534,South Africa,2007,947.0,1000 ha +4535,South Africa,2008,947.0,1000 ha +4536,South Africa,2009,947.0,1000 ha +4537,South Africa,2010,947.0,1000 ha +4538,South Africa,2011,947.0,1000 ha +4539,South Africa,2012,947.0,1000 ha +4540,South Africa,2013,947.0,1000 ha +4541,South Sudan,2011,0.0,1000 ha +4542,South Sudan,2012,0.0,1000 ha +4543,South Sudan,2013,0.0,1000 ha +4544,Spain,1990,0.0,1000 ha +4545,Spain,1991,0.0,1000 ha +4546,Spain,1992,0.0,1000 ha +4547,Spain,1993,0.0,1000 ha +4548,Spain,1994,0.0,1000 ha +4549,Spain,1995,0.0,1000 ha +4550,Spain,1996,0.0,1000 ha +4551,Spain,1997,0.0,1000 ha +4552,Spain,1998,0.0,1000 ha +4553,Spain,1999,0.0,1000 ha +4554,Spain,2000,0.0,1000 ha +4555,Spain,2001,0.0,1000 ha +4556,Spain,2002,0.0,1000 ha +4557,Spain,2003,0.0,1000 ha +4558,Spain,2004,0.0,1000 ha +4559,Spain,2005,0.0,1000 ha +4560,Spain,2006,0.0,1000 ha +4561,Spain,2007,0.0,1000 ha +4562,Spain,2008,0.0,1000 ha +4563,Spain,2009,0.0,1000 ha +4564,Spain,2010,0.0,1000 ha +4565,Spain,2011,0.0,1000 ha +4566,Spain,2012,0.0,1000 ha +4567,Spain,2013,0.0,1000 ha +4568,Sri Lanka,1990,257.0,1000 ha +4569,Sri Lanka,1991,251.0,1000 ha +4570,Sri Lanka,1992,245.0,1000 ha +4571,Sri Lanka,1993,239.0,1000 ha +4572,Sri Lanka,1994,233.0,1000 ha +4573,Sri Lanka,1995,227.0,1000 ha +4574,Sri Lanka,1996,221.0,1000 ha +4575,Sri Lanka,1997,215.0,1000 ha +4576,Sri Lanka,1998,209.0,1000 ha +4577,Sri Lanka,1999,203.0,1000 ha +4578,Sri Lanka,2000,197.0,1000 ha +4579,Sri Lanka,2001,191.0,1000 ha +4580,Sri Lanka,2002,185.0,1000 ha +4581,Sri Lanka,2003,179.0,1000 ha +4582,Sri Lanka,2004,173.0,1000 ha +4583,Sri Lanka,2005,167.0,1000 ha +4584,Sri Lanka,2006,167.0,1000 ha +4585,Sri Lanka,2007,167.0,1000 ha +4586,Sri Lanka,2008,167.0,1000 ha +4587,Sri Lanka,2009,167.0,1000 ha +4588,Sri Lanka,2010,167.0,1000 ha +4589,Sri Lanka,2011,167.0,1000 ha +4590,Sri Lanka,2012,167.0,1000 ha +4591,Sri Lanka,2013,167.0,1000 ha +4592,Sudan,2011,1393.5320000000002,1000 ha +4593,Sudan,2012,1381.3229999999999,1000 ha +4594,Sudan,2013,1369.114,1000 ha +4595,Sudan (former),1990,1649.922,1000 ha +4596,Sudan (former),1991,1637.7129,1000 ha +4597,Sudan (former),1992,1625.5038,1000 ha +4598,Sudan (former),1993,1613.2947,1000 ha +4599,Sudan (former),1994,1601.0856,1000 ha +4600,Sudan (former),1995,1588.8765,1000 ha +4601,Sudan (former),1996,1576.6674,1000 ha +4602,Sudan (former),1997,1564.4583,1000 ha +4603,Sudan (former),1998,1552.2492,1000 ha +4604,Sudan (former),1999,1540.0401,1000 ha +4605,Sudan (former),2000,1527.8310000000001,1000 ha +4606,Sudan (former),2001,1515.622,1000 ha +4607,Sudan (former),2002,1503.4129999999998,1000 ha +4608,Sudan (former),2003,1491.204,1000 ha +4609,Sudan (former),2004,1478.995,1000 ha +4610,Sudan (former),2005,1466.786,1000 ha +4611,Sudan (former),2006,1454.5770000000002,1000 ha +4612,Sudan (former),2007,1442.368,1000 ha +4613,Sudan (former),2008,1430.1589999999999,1000 ha +4614,Sudan (former),2009,1417.95,1000 ha +4615,Sudan (former),2010,1405.741,1000 ha +4616,Suriname,1990,14986.0,1000 ha +4617,Suriname,1991,14961.6,1000 ha +4618,Suriname,1992,14937.2,1000 ha +4619,Suriname,1993,14912.8,1000 ha +4620,Suriname,1994,14888.4,1000 ha +4621,Suriname,1995,14864.0,1000 ha +4622,Suriname,1996,14839.6,1000 ha +4623,Suriname,1997,14815.2,1000 ha +4624,Suriname,1998,14790.8,1000 ha +4625,Suriname,1999,14766.4,1000 ha +4626,Suriname,2000,14742.0,1000 ha +4627,Suriname,2001,14711.6,1000 ha +4628,Suriname,2002,14681.2,1000 ha +4629,Suriname,2003,14650.8,1000 ha +4630,Suriname,2004,14620.4,1000 ha +4631,Suriname,2005,14590.0,1000 ha +4632,Suriname,2006,14556.4,1000 ha +4633,Suriname,2007,14522.8,1000 ha +4634,Suriname,2008,14489.2,1000 ha +4635,Suriname,2009,14455.6,1000 ha +4636,Suriname,2010,14422.0,1000 ha +4637,Suriname,2011,14341.4,1000 ha +4638,Suriname,2012,14260.8,1000 ha +4639,Suriname,2013,14180.2,1000 ha +4640,Sweden,1990,2417.0,1000 ha +4641,Sweden,1991,2417.0,1000 ha +4642,Sweden,1992,2417.0,1000 ha +4643,Sweden,1993,2417.0,1000 ha +4644,Sweden,1994,2417.0,1000 ha +4645,Sweden,1995,2417.0,1000 ha +4646,Sweden,1996,2417.0,1000 ha +4647,Sweden,1997,2417.0,1000 ha +4648,Sweden,1998,2417.0,1000 ha +4649,Sweden,1999,2417.0,1000 ha +4650,Sweden,2000,2417.0,1000 ha +4651,Sweden,2001,2417.0,1000 ha +4652,Sweden,2002,2417.0,1000 ha +4653,Sweden,2003,2417.0,1000 ha +4654,Sweden,2004,2417.0,1000 ha +4655,Sweden,2005,2417.0,1000 ha +4656,Sweden,2006,2417.0,1000 ha +4657,Sweden,2007,2417.0,1000 ha +4658,Sweden,2008,2417.0,1000 ha +4659,Sweden,2009,2417.0,1000 ha +4660,Sweden,2010,2417.0,1000 ha +4661,Sweden,2011,2417.0,1000 ha +4662,Sweden,2012,2417.0,1000 ha +4663,Sweden,2013,2417.0,1000 ha +4664,Switzerland,1990,40.0,1000 ha +4665,Switzerland,1991,40.0,1000 ha +4666,Switzerland,1992,40.0,1000 ha +4667,Switzerland,1993,40.0,1000 ha +4668,Switzerland,1994,40.0,1000 ha +4669,Switzerland,1995,40.0,1000 ha +4670,Switzerland,1996,40.0,1000 ha +4671,Switzerland,1997,40.0,1000 ha +4672,Switzerland,1998,40.0,1000 ha +4673,Switzerland,1999,40.0,1000 ha +4674,Switzerland,2000,40.0,1000 ha +4675,Switzerland,2001,40.0,1000 ha +4676,Switzerland,2002,40.0,1000 ha +4677,Switzerland,2003,40.0,1000 ha +4678,Switzerland,2004,40.0,1000 ha +4679,Switzerland,2005,40.0,1000 ha +4680,Switzerland,2006,40.0,1000 ha +4681,Switzerland,2007,40.0,1000 ha +4682,Switzerland,2008,40.0,1000 ha +4683,Switzerland,2009,40.0,1000 ha +4684,Switzerland,2010,40.0,1000 ha +4685,Switzerland,2011,40.0,1000 ha +4686,Switzerland,2012,40.0,1000 ha +4687,Switzerland,2013,40.0,1000 ha +4688,Syrian Arab Republic,1990,0.0,1000 ha +4689,Syrian Arab Republic,1991,0.0,1000 ha +4690,Syrian Arab Republic,1992,0.0,1000 ha +4691,Syrian Arab Republic,1993,0.0,1000 ha +4692,Syrian Arab Republic,1994,0.0,1000 ha +4693,Syrian Arab Republic,1995,0.0,1000 ha +4694,Syrian Arab Republic,1996,0.0,1000 ha +4695,Syrian Arab Republic,1997,0.0,1000 ha +4696,Syrian Arab Republic,1998,0.0,1000 ha +4697,Syrian Arab Republic,1999,0.0,1000 ha +4698,Syrian Arab Republic,2000,0.0,1000 ha +4699,Syrian Arab Republic,2001,0.0,1000 ha +4700,Syrian Arab Republic,2002,0.0,1000 ha +4701,Syrian Arab Republic,2003,0.0,1000 ha +4702,Syrian Arab Republic,2004,0.0,1000 ha +4703,Syrian Arab Republic,2005,0.0,1000 ha +4704,Syrian Arab Republic,2006,0.0,1000 ha +4705,Syrian Arab Republic,2007,0.0,1000 ha +4706,Syrian Arab Republic,2008,0.0,1000 ha +4707,Syrian Arab Republic,2009,0.0,1000 ha +4708,Syrian Arab Republic,2010,0.0,1000 ha +4709,Syrian Arab Republic,2011,0.0,1000 ha +4710,Syrian Arab Republic,2012,0.0,1000 ha +4711,Syrian Arab Republic,2013,0.0,1000 ha +4712,Tajikistan,1992,297.0,1000 ha +4713,Tajikistan,1993,297.0,1000 ha +4714,Tajikistan,1994,297.0,1000 ha +4715,Tajikistan,1995,297.0,1000 ha +4716,Tajikistan,1996,297.0,1000 ha +4717,Tajikistan,1997,297.0,1000 ha +4718,Tajikistan,1998,297.0,1000 ha +4719,Tajikistan,1999,297.0,1000 ha +4720,Tajikistan,2000,297.0,1000 ha +4721,Tajikistan,2001,297.0,1000 ha +4722,Tajikistan,2002,297.0,1000 ha +4723,Tajikistan,2003,297.0,1000 ha +4724,Tajikistan,2004,297.0,1000 ha +4725,Tajikistan,2005,297.0,1000 ha +4726,Tajikistan,2006,297.0,1000 ha +4727,Tajikistan,2007,297.0,1000 ha +4728,Tajikistan,2008,297.0,1000 ha +4729,Tajikistan,2009,297.0,1000 ha +4730,Tajikistan,2010,297.0,1000 ha +4731,Tajikistan,2011,297.0,1000 ha +4732,Tajikistan,2012,297.0,1000 ha +4733,Tajikistan,2013,297.0,1000 ha +4734,Thailand,1990,6726.0,1000 ha +4735,Thailand,1991,6726.0,1000 ha +4736,Thailand,1992,6726.0,1000 ha +4737,Thailand,1993,6726.0,1000 ha +4738,Thailand,1994,6726.0,1000 ha +4739,Thailand,1995,6726.0,1000 ha +4740,Thailand,1996,6726.0,1000 ha +4741,Thailand,1997,6726.0,1000 ha +4742,Thailand,1998,6726.0,1000 ha +4743,Thailand,1999,6726.0,1000 ha +4744,Thailand,2000,6726.0,1000 ha +4745,Thailand,2001,6726.0,1000 ha +4746,Thailand,2002,6726.0,1000 ha +4747,Thailand,2003,6726.0,1000 ha +4748,Thailand,2004,6726.0,1000 ha +4749,Thailand,2005,6726.0,1000 ha +4750,Thailand,2006,6726.0,1000 ha +4751,Thailand,2007,6726.0,1000 ha +4752,Thailand,2008,6726.0,1000 ha +4753,Thailand,2009,6726.0,1000 ha +4754,Thailand,2010,6726.0,1000 ha +4755,Thailand,2011,6726.0,1000 ha +4756,Thailand,2012,6726.0,1000 ha +4757,Thailand,2013,6726.0,1000 ha +4758,Timor-Leste,1990,0.0,1000 ha +4759,Timor-Leste,1991,0.0,1000 ha +4760,Timor-Leste,1992,0.0,1000 ha +4761,Timor-Leste,1993,0.0,1000 ha +4762,Timor-Leste,1994,0.0,1000 ha +4763,Timor-Leste,1995,0.0,1000 ha +4764,Timor-Leste,1996,0.0,1000 ha +4765,Timor-Leste,1997,0.0,1000 ha +4766,Timor-Leste,1998,0.0,1000 ha +4767,Timor-Leste,1999,0.0,1000 ha +4768,Timor-Leste,2000,0.0,1000 ha +4769,Timor-Leste,2001,0.0,1000 ha +4770,Timor-Leste,2002,0.0,1000 ha +4771,Timor-Leste,2003,0.0,1000 ha +4772,Timor-Leste,2004,0.0,1000 ha +4773,Timor-Leste,2005,0.0,1000 ha +4774,Timor-Leste,2006,0.0,1000 ha +4775,Timor-Leste,2007,0.0,1000 ha +4776,Timor-Leste,2008,0.0,1000 ha +4777,Timor-Leste,2009,0.0,1000 ha +4778,Timor-Leste,2010,0.0,1000 ha +4779,Timor-Leste,2011,0.0,1000 ha +4780,Timor-Leste,2012,0.0,1000 ha +4781,Timor-Leste,2013,0.0,1000 ha +4782,Togo,1990,0.0,1000 ha +4783,Togo,1991,0.0,1000 ha +4784,Togo,1992,0.0,1000 ha +4785,Togo,1993,0.0,1000 ha +4786,Togo,1994,0.0,1000 ha +4787,Togo,1995,0.0,1000 ha +4788,Togo,1996,0.0,1000 ha +4789,Togo,1997,0.0,1000 ha +4790,Togo,1998,0.0,1000 ha +4791,Togo,1999,0.0,1000 ha +4792,Togo,2000,0.0,1000 ha +4793,Togo,2001,0.0,1000 ha +4794,Togo,2002,0.0,1000 ha +4795,Togo,2003,0.0,1000 ha +4796,Togo,2004,0.0,1000 ha +4797,Togo,2005,0.0,1000 ha +4798,Togo,2006,0.0,1000 ha +4799,Togo,2007,0.0,1000 ha +4800,Togo,2008,0.0,1000 ha +4801,Togo,2009,0.0,1000 ha +4802,Togo,2010,0.0,1000 ha +4803,Togo,2011,0.0,1000 ha +4804,Togo,2012,0.0,1000 ha +4805,Togo,2013,0.0,1000 ha +4806,Tokelau,1990,0.0,1000 ha +4807,Tokelau,1991,0.0,1000 ha +4808,Tokelau,1992,0.0,1000 ha +4809,Tokelau,1993,0.0,1000 ha +4810,Tokelau,1994,0.0,1000 ha +4811,Tokelau,1995,0.0,1000 ha +4812,Tokelau,1996,0.0,1000 ha +4813,Tokelau,1997,0.0,1000 ha +4814,Tokelau,1998,0.0,1000 ha +4815,Tokelau,1999,0.0,1000 ha +4816,Tokelau,2000,0.0,1000 ha +4817,Tokelau,2001,0.0,1000 ha +4818,Tokelau,2002,0.0,1000 ha +4819,Tokelau,2003,0.0,1000 ha +4820,Tokelau,2004,0.0,1000 ha +4821,Tokelau,2005,0.0,1000 ha +4822,Tokelau,2006,0.0,1000 ha +4823,Tokelau,2007,0.0,1000 ha +4824,Tokelau,2008,0.0,1000 ha +4825,Tokelau,2009,0.0,1000 ha +4826,Tokelau,2010,0.0,1000 ha +4827,Tokelau,2011,0.0,1000 ha +4828,Tokelau,2012,0.0,1000 ha +4829,Tokelau,2013,0.0,1000 ha +4830,Tonga,1990,4.0,1000 ha +4831,Tonga,1991,4.0,1000 ha +4832,Tonga,1992,4.0,1000 ha +4833,Tonga,1993,4.0,1000 ha +4834,Tonga,1994,4.0,1000 ha +4835,Tonga,1995,4.0,1000 ha +4836,Tonga,1996,4.0,1000 ha +4837,Tonga,1997,4.0,1000 ha +4838,Tonga,1998,4.0,1000 ha +4839,Tonga,1999,4.0,1000 ha +4840,Tonga,2000,4.0,1000 ha +4841,Tonga,2001,4.0,1000 ha +4842,Tonga,2002,4.0,1000 ha +4843,Tonga,2003,4.0,1000 ha +4844,Tonga,2004,4.0,1000 ha +4845,Tonga,2005,4.0,1000 ha +4846,Tonga,2006,4.0,1000 ha +4847,Tonga,2007,4.0,1000 ha +4848,Tonga,2008,4.0,1000 ha +4849,Tonga,2009,4.0,1000 ha +4850,Tonga,2010,4.0,1000 ha +4851,Tonga,2011,4.0,1000 ha +4852,Tonga,2012,4.0,1000 ha +4853,Tonga,2013,4.0,1000 ha +4854,Trinidad and Tobago,1990,62.4,1000 ha +4855,Trinidad and Tobago,1991,62.4,1000 ha +4856,Trinidad and Tobago,1992,62.4,1000 ha +4857,Trinidad and Tobago,1993,62.4,1000 ha +4858,Trinidad and Tobago,1994,62.4,1000 ha +4859,Trinidad and Tobago,1995,62.4,1000 ha +4860,Trinidad and Tobago,1996,62.4,1000 ha +4861,Trinidad and Tobago,1997,62.4,1000 ha +4862,Trinidad and Tobago,1998,62.4,1000 ha +4863,Trinidad and Tobago,1999,62.4,1000 ha +4864,Trinidad and Tobago,2000,62.4,1000 ha +4865,Trinidad and Tobago,2001,62.4,1000 ha +4866,Trinidad and Tobago,2002,62.4,1000 ha +4867,Trinidad and Tobago,2003,62.4,1000 ha +4868,Trinidad and Tobago,2004,62.4,1000 ha +4869,Trinidad and Tobago,2005,62.4,1000 ha +4870,Trinidad and Tobago,2006,62.4,1000 ha +4871,Trinidad and Tobago,2007,62.4,1000 ha +4872,Trinidad and Tobago,2008,62.4,1000 ha +4873,Trinidad and Tobago,2009,62.4,1000 ha +4874,Trinidad and Tobago,2010,62.4,1000 ha +4875,Trinidad and Tobago,2011,62.4,1000 ha +4876,Trinidad and Tobago,2012,62.4,1000 ha +4877,Trinidad and Tobago,2013,62.4,1000 ha +4878,Tunisia,1990,0.0,1000 ha +4879,Tunisia,1991,0.0,1000 ha +4880,Tunisia,1992,0.0,1000 ha +4881,Tunisia,1993,0.0,1000 ha +4882,Tunisia,1994,0.0,1000 ha +4883,Tunisia,1995,0.0,1000 ha +4884,Tunisia,1996,0.0,1000 ha +4885,Tunisia,1997,0.0,1000 ha +4886,Tunisia,1998,0.0,1000 ha +4887,Tunisia,1999,0.0,1000 ha +4888,Tunisia,2000,0.0,1000 ha +4889,Tunisia,2001,0.0,1000 ha +4890,Tunisia,2002,0.0,1000 ha +4891,Tunisia,2003,0.0,1000 ha +4892,Tunisia,2004,0.0,1000 ha +4893,Tunisia,2005,0.0,1000 ha +4894,Tunisia,2006,0.0,1000 ha +4895,Tunisia,2007,0.0,1000 ha +4896,Tunisia,2008,0.0,1000 ha +4897,Tunisia,2009,0.0,1000 ha +4898,Tunisia,2010,0.0,1000 ha +4899,Tunisia,2011,0.0,1000 ha +4900,Tunisia,2012,0.0,1000 ha +4901,Tunisia,2013,0.0,1000 ha +4902,Turkey,1990,826.0,1000 ha +4903,Turkey,1991,827.1,1000 ha +4904,Turkey,1992,828.2,1000 ha +4905,Turkey,1993,829.3,1000 ha +4906,Turkey,1994,830.4,1000 ha +4907,Turkey,1995,831.5,1000 ha +4908,Turkey,1996,832.6,1000 ha +4909,Turkey,1997,833.7,1000 ha +4910,Turkey,1998,834.8,1000 ha +4911,Turkey,1999,835.9,1000 ha +4912,Turkey,2000,837.0,1000 ha +4913,Turkey,2001,841.4,1000 ha +4914,Turkey,2002,845.8,1000 ha +4915,Turkey,2003,850.2,1000 ha +4916,Turkey,2004,854.6,1000 ha +4917,Turkey,2005,859.0,1000 ha +4918,Turkey,2006,863.4,1000 ha +4919,Turkey,2007,867.8,1000 ha +4920,Turkey,2008,872.2,1000 ha +4921,Turkey,2009,876.6,1000 ha +4922,Turkey,2010,881.0,1000 ha +4923,Turkey,2011,887.4,1000 ha +4924,Turkey,2012,893.8,1000 ha +4925,Turkey,2013,900.2,1000 ha +4926,Turkmenistan,1992,104.0,1000 ha +4927,Turkmenistan,1993,104.0,1000 ha +4928,Turkmenistan,1994,104.0,1000 ha +4929,Turkmenistan,1995,104.0,1000 ha +4930,Turkmenistan,1996,104.0,1000 ha +4931,Turkmenistan,1997,104.0,1000 ha +4932,Turkmenistan,1998,104.0,1000 ha +4933,Turkmenistan,1999,104.0,1000 ha +4934,Turkmenistan,2000,104.0,1000 ha +4935,Turkmenistan,2001,104.0,1000 ha +4936,Turkmenistan,2002,104.0,1000 ha +4937,Turkmenistan,2003,104.0,1000 ha +4938,Turkmenistan,2004,104.0,1000 ha +4939,Turkmenistan,2005,104.0,1000 ha +4940,Turkmenistan,2006,104.0,1000 ha +4941,Turkmenistan,2007,104.0,1000 ha +4942,Turkmenistan,2008,104.0,1000 ha +4943,Turkmenistan,2009,104.0,1000 ha +4944,Turkmenistan,2010,104.0,1000 ha +4945,Turkmenistan,2011,104.0,1000 ha +4946,Turkmenistan,2012,104.0,1000 ha +4947,Turkmenistan,2013,104.0,1000 ha +4948,Turks and Caicos Islands,1990,0.0,1000 ha +4949,Turks and Caicos Islands,1991,0.0,1000 ha +4950,Turks and Caicos Islands,1992,0.0,1000 ha +4951,Turks and Caicos Islands,1993,0.0,1000 ha +4952,Turks and Caicos Islands,1994,0.0,1000 ha +4953,Turks and Caicos Islands,1995,0.0,1000 ha +4954,Turks and Caicos Islands,1996,0.0,1000 ha +4955,Turks and Caicos Islands,1997,0.0,1000 ha +4956,Turks and Caicos Islands,1998,0.0,1000 ha +4957,Turks and Caicos Islands,1999,0.0,1000 ha +4958,Turks and Caicos Islands,2000,0.0,1000 ha +4959,Turks and Caicos Islands,2001,0.0,1000 ha +4960,Turks and Caicos Islands,2002,0.0,1000 ha +4961,Turks and Caicos Islands,2003,0.0,1000 ha +4962,Turks and Caicos Islands,2004,0.0,1000 ha +4963,Turks and Caicos Islands,2005,0.0,1000 ha +4964,Turks and Caicos Islands,2006,0.0,1000 ha +4965,Turks and Caicos Islands,2007,0.0,1000 ha +4966,Turks and Caicos Islands,2008,0.0,1000 ha +4967,Turks and Caicos Islands,2009,0.0,1000 ha +4968,Turks and Caicos Islands,2010,0.0,1000 ha +4969,Turks and Caicos Islands,2011,0.0,1000 ha +4970,Turks and Caicos Islands,2012,0.0,1000 ha +4971,Turks and Caicos Islands,2013,0.0,1000 ha +4972,Tuvalu,1990,0.0,1000 ha +4973,Tuvalu,1991,0.0,1000 ha +4974,Tuvalu,1992,0.0,1000 ha +4975,Tuvalu,1993,0.0,1000 ha +4976,Tuvalu,1994,0.0,1000 ha +4977,Tuvalu,1995,0.0,1000 ha +4978,Tuvalu,1996,0.0,1000 ha +4979,Tuvalu,1997,0.0,1000 ha +4980,Tuvalu,1998,0.0,1000 ha +4981,Tuvalu,1999,0.0,1000 ha +4982,Tuvalu,2000,0.0,1000 ha +4983,Tuvalu,2001,0.0,1000 ha +4984,Tuvalu,2002,0.0,1000 ha +4985,Tuvalu,2003,0.0,1000 ha +4986,Tuvalu,2004,0.0,1000 ha +4987,Tuvalu,2005,0.0,1000 ha +4988,Tuvalu,2006,0.0,1000 ha +4989,Tuvalu,2007,0.0,1000 ha +4990,Tuvalu,2008,0.0,1000 ha +4991,Tuvalu,2009,0.0,1000 ha +4992,Tuvalu,2010,0.0,1000 ha +4993,Tuvalu,2011,0.0,1000 ha +4994,Tuvalu,2012,0.0,1000 ha +4995,Tuvalu,2013,0.0,1000 ha +4996,Uganda,1990,0.0,1000 ha +4997,Uganda,1991,0.0,1000 ha +4998,Uganda,1992,0.0,1000 ha +4999,Uganda,1993,0.0,1000 ha +5000,Uganda,1994,0.0,1000 ha +5001,Uganda,1995,0.0,1000 ha +5002,Uganda,1996,0.0,1000 ha +5003,Uganda,1997,0.0,1000 ha +5004,Uganda,1998,0.0,1000 ha +5005,Uganda,1999,0.0,1000 ha +5006,Uganda,2000,0.0,1000 ha +5007,Uganda,2001,0.0,1000 ha +5008,Uganda,2002,0.0,1000 ha +5009,Uganda,2003,0.0,1000 ha +5010,Uganda,2004,0.0,1000 ha +5011,Uganda,2005,0.0,1000 ha +5012,Uganda,2006,0.0,1000 ha +5013,Uganda,2007,0.0,1000 ha +5014,Uganda,2008,0.0,1000 ha +5015,Uganda,2009,0.0,1000 ha +5016,Uganda,2010,0.0,1000 ha +5017,Uganda,2011,0.0,1000 ha +5018,Uganda,2012,0.0,1000 ha +5019,Uganda,2013,0.0,1000 ha +5020,Ukraine,1992,59.0,1000 ha +5021,Ukraine,1993,59.0,1000 ha +5022,Ukraine,1994,59.0,1000 ha +5023,Ukraine,1995,59.0,1000 ha +5024,Ukraine,1996,59.0,1000 ha +5025,Ukraine,1997,59.0,1000 ha +5026,Ukraine,1998,59.0,1000 ha +5027,Ukraine,1999,59.0,1000 ha +5028,Ukraine,2000,59.0,1000 ha +5029,Ukraine,2001,59.0,1000 ha +5030,Ukraine,2002,59.0,1000 ha +5031,Ukraine,2003,59.0,1000 ha +5032,Ukraine,2004,59.0,1000 ha +5033,Ukraine,2005,59.0,1000 ha +5034,Ukraine,2006,59.0,1000 ha +5035,Ukraine,2007,59.0,1000 ha +5036,Ukraine,2008,59.0,1000 ha +5037,Ukraine,2009,59.0,1000 ha +5038,Ukraine,2010,59.0,1000 ha +5039,Ukraine,2011,59.0,1000 ha +5040,Ukraine,2012,59.0,1000 ha +5041,Ukraine,2013,59.0,1000 ha +5042,United Arab Emirates,1990,0.0,1000 ha +5043,United Arab Emirates,1991,0.0,1000 ha +5044,United Arab Emirates,1992,0.0,1000 ha +5045,United Arab Emirates,1993,0.0,1000 ha +5046,United Arab Emirates,1994,0.0,1000 ha +5047,United Arab Emirates,1995,0.0,1000 ha +5048,United Arab Emirates,1996,0.0,1000 ha +5049,United Arab Emirates,1997,0.0,1000 ha +5050,United Arab Emirates,1998,0.0,1000 ha +5051,United Arab Emirates,1999,0.0,1000 ha +5052,United Arab Emirates,2000,0.0,1000 ha +5053,United Arab Emirates,2001,0.0,1000 ha +5054,United Arab Emirates,2002,0.0,1000 ha +5055,United Arab Emirates,2003,0.0,1000 ha +5056,United Arab Emirates,2004,0.0,1000 ha +5057,United Arab Emirates,2005,0.0,1000 ha +5058,United Arab Emirates,2006,0.0,1000 ha +5059,United Arab Emirates,2007,0.0,1000 ha +5060,United Arab Emirates,2008,0.0,1000 ha +5061,United Arab Emirates,2009,0.0,1000 ha +5062,United Arab Emirates,2010,0.0,1000 ha +5063,United Arab Emirates,2011,0.0,1000 ha +5064,United Arab Emirates,2012,0.0,1000 ha +5065,United Arab Emirates,2013,0.0,1000 ha +5066,United Kingdom,1990,0.0,1000 ha +5067,United Kingdom,1991,0.0,1000 ha +5068,United Kingdom,1992,0.0,1000 ha +5069,United Kingdom,1993,0.0,1000 ha +5070,United Kingdom,1994,0.0,1000 ha +5071,United Kingdom,1995,0.0,1000 ha +5072,United Kingdom,1996,0.0,1000 ha +5073,United Kingdom,1997,0.0,1000 ha +5074,United Kingdom,1998,0.0,1000 ha +5075,United Kingdom,1999,0.0,1000 ha +5076,United Kingdom,2000,0.0,1000 ha +5077,United Kingdom,2001,0.0,1000 ha +5078,United Kingdom,2002,0.0,1000 ha +5079,United Kingdom,2003,0.0,1000 ha +5080,United Kingdom,2004,0.0,1000 ha +5081,United Kingdom,2005,0.0,1000 ha +5082,United Kingdom,2006,0.0,1000 ha +5083,United Kingdom,2007,0.0,1000 ha +5084,United Kingdom,2008,0.0,1000 ha +5085,United Kingdom,2009,0.0,1000 ha +5086,United Kingdom,2010,0.0,1000 ha +5087,United Kingdom,2011,0.0,1000 ha +5088,United Kingdom,2012,0.0,1000 ha +5089,United Kingdom,2013,0.0,1000 ha +5090,United Republic of Tanzania,1990,0.0,1000 ha +5091,United Republic of Tanzania,1991,0.0,1000 ha +5092,United Republic of Tanzania,1992,0.0,1000 ha +5093,United Republic of Tanzania,1993,0.0,1000 ha +5094,United Republic of Tanzania,1994,0.0,1000 ha +5095,United Republic of Tanzania,1995,0.0,1000 ha +5096,United Republic of Tanzania,1996,0.0,1000 ha +5097,United Republic of Tanzania,1997,0.0,1000 ha +5098,United Republic of Tanzania,1998,0.0,1000 ha +5099,United Republic of Tanzania,1999,0.0,1000 ha +5100,United Republic of Tanzania,2000,0.0,1000 ha +5101,United Republic of Tanzania,2001,0.0,1000 ha +5102,United Republic of Tanzania,2002,0.0,1000 ha +5103,United Republic of Tanzania,2003,0.0,1000 ha +5104,United Republic of Tanzania,2004,0.0,1000 ha +5105,United Republic of Tanzania,2005,0.0,1000 ha +5106,United Republic of Tanzania,2006,0.0,1000 ha +5107,United Republic of Tanzania,2007,0.0,1000 ha +5108,United Republic of Tanzania,2008,0.0,1000 ha +5109,United Republic of Tanzania,2009,0.0,1000 ha +5110,United Republic of Tanzania,2010,0.0,1000 ha +5111,United Republic of Tanzania,2011,0.0,1000 ha +5112,United Republic of Tanzania,2012,0.0,1000 ha +5113,United Republic of Tanzania,2013,0.0,1000 ha +5114,United States of America,1990,70012.0,1000 ha +5115,United States of America,1991,70241.3,1000 ha +5116,United States of America,1992,70470.6,1000 ha +5117,United States of America,1993,70699.9,1000 ha +5118,United States of America,1994,70929.2,1000 ha +5119,United States of America,1995,71158.5,1000 ha +5120,United States of America,1996,71387.8,1000 ha +5121,United States of America,1997,71617.1,1000 ha +5122,United States of America,1998,71846.4,1000 ha +5123,United States of America,1999,72075.7,1000 ha +5124,United States of America,2000,72305.0,1000 ha +5125,United States of America,2001,72985.8,1000 ha +5126,United States of America,2002,73666.6,1000 ha +5127,United States of America,2003,74347.4,1000 ha +5128,United States of America,2004,75028.2,1000 ha +5129,United States of America,2005,75709.0,1000 ha +5130,United States of America,2006,75626.0,1000 ha +5131,United States of America,2007,75543.0,1000 ha +5132,United States of America,2008,75460.0,1000 ha +5133,United States of America,2009,75377.0,1000 ha +5134,United States of America,2010,75294.0,1000 ha +5135,United States of America,2011,75295.2,1000 ha +5136,United States of America,2012,75296.4,1000 ha +5137,United States of America,2013,75297.6,1000 ha +5138,United States Virgin Islands,1990,0.0,1000 ha +5139,United States Virgin Islands,1991,0.0,1000 ha +5140,United States Virgin Islands,1992,0.0,1000 ha +5141,United States Virgin Islands,1993,0.0,1000 ha +5142,United States Virgin Islands,1994,0.0,1000 ha +5143,United States Virgin Islands,1995,0.0,1000 ha +5144,United States Virgin Islands,1996,0.0,1000 ha +5145,United States Virgin Islands,1997,0.0,1000 ha +5146,United States Virgin Islands,1998,0.0,1000 ha +5147,United States Virgin Islands,1999,0.0,1000 ha +5148,United States Virgin Islands,2000,0.0,1000 ha +5149,United States Virgin Islands,2001,0.0,1000 ha +5150,United States Virgin Islands,2002,0.0,1000 ha +5151,United States Virgin Islands,2003,0.0,1000 ha +5152,United States Virgin Islands,2004,0.0,1000 ha +5153,United States Virgin Islands,2005,0.0,1000 ha +5154,United States Virgin Islands,2006,0.0,1000 ha +5155,United States Virgin Islands,2007,0.0,1000 ha +5156,United States Virgin Islands,2008,0.0,1000 ha +5157,United States Virgin Islands,2009,0.0,1000 ha +5158,United States Virgin Islands,2010,0.0,1000 ha +5159,United States Virgin Islands,2011,0.0,1000 ha +5160,United States Virgin Islands,2012,0.0,1000 ha +5161,United States Virgin Islands,2013,0.0,1000 ha +5162,Uruguay,1990,239.0,1000 ha +5163,Uruguay,1991,244.7,1000 ha +5164,Uruguay,1992,250.4,1000 ha +5165,Uruguay,1993,256.1,1000 ha +5166,Uruguay,1994,261.8,1000 ha +5167,Uruguay,1995,267.5,1000 ha +5168,Uruguay,1996,273.2,1000 ha +5169,Uruguay,1997,278.9,1000 ha +5170,Uruguay,1998,284.6,1000 ha +5171,Uruguay,1999,290.3,1000 ha +5172,Uruguay,2000,296.0,1000 ha +5173,Uruguay,2001,296.0,1000 ha +5174,Uruguay,2002,296.0,1000 ha +5175,Uruguay,2003,296.0,1000 ha +5176,Uruguay,2004,296.0,1000 ha +5177,Uruguay,2005,296.0,1000 ha +5178,Uruguay,2006,297.0,1000 ha +5179,Uruguay,2007,298.0,1000 ha +5180,Uruguay,2008,299.0,1000 ha +5181,Uruguay,2009,300.0,1000 ha +5182,Uruguay,2010,301.0,1000 ha +5183,Uruguay,2011,303.4,1000 ha +5184,Uruguay,2012,305.8,1000 ha +5185,Uruguay,2013,308.2,1000 ha +5186,USSR,1990,244030.1,1000 ha +5187,USSR,1991,245671.58,1000 ha +5188,Uzbekistan,1992,57.0,1000 ha +5189,Uzbekistan,1993,57.0,1000 ha +5190,Uzbekistan,1994,57.0,1000 ha +5191,Uzbekistan,1995,57.0,1000 ha +5192,Uzbekistan,1996,57.0,1000 ha +5193,Uzbekistan,1997,57.0,1000 ha +5194,Uzbekistan,1998,57.0,1000 ha +5195,Uzbekistan,1999,57.0,1000 ha +5196,Uzbekistan,2000,57.0,1000 ha +5197,Uzbekistan,2001,57.0,1000 ha +5198,Uzbekistan,2002,57.0,1000 ha +5199,Uzbekistan,2003,57.0,1000 ha +5200,Uzbekistan,2004,57.0,1000 ha +5201,Uzbekistan,2005,57.0,1000 ha +5202,Uzbekistan,2006,60.0,1000 ha +5203,Uzbekistan,2007,63.0,1000 ha +5204,Uzbekistan,2008,66.0,1000 ha +5205,Uzbekistan,2009,69.0,1000 ha +5206,Uzbekistan,2010,72.0,1000 ha +5207,Uzbekistan,2011,72.2,1000 ha +5208,Uzbekistan,2012,72.4,1000 ha +5209,Uzbekistan,2013,72.6,1000 ha +5210,Vanuatu,1990,0.0,1000 ha +5211,Vanuatu,1991,0.0,1000 ha +5212,Vanuatu,1992,0.0,1000 ha +5213,Vanuatu,1993,0.0,1000 ha +5214,Vanuatu,1994,0.0,1000 ha +5215,Vanuatu,1995,0.0,1000 ha +5216,Vanuatu,1996,0.0,1000 ha +5217,Vanuatu,1997,0.0,1000 ha +5218,Vanuatu,1998,0.0,1000 ha +5219,Vanuatu,1999,0.0,1000 ha +5220,Vanuatu,2000,0.0,1000 ha +5221,Vanuatu,2001,0.0,1000 ha +5222,Vanuatu,2002,0.0,1000 ha +5223,Vanuatu,2003,0.0,1000 ha +5224,Vanuatu,2004,0.0,1000 ha +5225,Vanuatu,2005,0.0,1000 ha +5226,Vanuatu,2006,0.0,1000 ha +5227,Vanuatu,2007,0.0,1000 ha +5228,Vanuatu,2008,0.0,1000 ha +5229,Vanuatu,2009,0.0,1000 ha +5230,Vanuatu,2010,0.0,1000 ha +5231,Vanuatu,2011,0.0,1000 ha +5232,Vanuatu,2012,0.0,1000 ha +5233,Vanuatu,2013,0.0,1000 ha +5234,Venezuela (Bolivarian Republic of),1990,46568.0,1000 ha +5235,Venezuela (Bolivarian Republic of),1991,46568.0,1000 ha +5236,Venezuela (Bolivarian Republic of),1992,46568.0,1000 ha +5237,Venezuela (Bolivarian Republic of),1993,46568.0,1000 ha +5238,Venezuela (Bolivarian Republic of),1994,46568.0,1000 ha +5239,Venezuela (Bolivarian Republic of),1995,46568.0,1000 ha +5240,Venezuela (Bolivarian Republic of),1996,46568.0,1000 ha +5241,Venezuela (Bolivarian Republic of),1997,46568.0,1000 ha +5242,Venezuela (Bolivarian Republic of),1998,46568.0,1000 ha +5243,Venezuela (Bolivarian Republic of),1999,46568.0,1000 ha +5244,Venezuela (Bolivarian Republic of),2000,46568.0,1000 ha +5245,Venezuela (Bolivarian Republic of),2001,46568.0,1000 ha +5246,Venezuela (Bolivarian Republic of),2002,46568.0,1000 ha +5247,Venezuela (Bolivarian Republic of),2003,46568.0,1000 ha +5248,Venezuela (Bolivarian Republic of),2004,46568.0,1000 ha +5249,Venezuela (Bolivarian Republic of),2005,46568.0,1000 ha +5250,Venezuela (Bolivarian Republic of),2006,46568.0,1000 ha +5251,Venezuela (Bolivarian Republic of),2007,46568.0,1000 ha +5252,Venezuela (Bolivarian Republic of),2008,46568.0,1000 ha +5253,Venezuela (Bolivarian Republic of),2009,46568.0,1000 ha +5254,Venezuela (Bolivarian Republic of),2010,46568.0,1000 ha +5255,Venezuela (Bolivarian Republic of),2011,46403.6,1000 ha +5256,Venezuela (Bolivarian Republic of),2012,46239.2,1000 ha +5257,Venezuela (Bolivarian Republic of),2013,46074.8,1000 ha +5258,Viet Nam,1990,384.0,1000 ha +5259,Viet Nam,1991,364.3,1000 ha +5260,Viet Nam,1992,344.6,1000 ha +5261,Viet Nam,1993,324.9,1000 ha +5262,Viet Nam,1994,305.2,1000 ha +5263,Viet Nam,1995,285.5,1000 ha +5264,Viet Nam,1996,265.8,1000 ha +5265,Viet Nam,1997,246.1,1000 ha +5266,Viet Nam,1998,226.4,1000 ha +5267,Viet Nam,1999,206.7,1000 ha +5268,Viet Nam,2000,187.0,1000 ha +5269,Viet Nam,2001,166.6,1000 ha +5270,Viet Nam,2002,146.2,1000 ha +5271,Viet Nam,2003,125.8,1000 ha +5272,Viet Nam,2004,105.4,1000 ha +5273,Viet Nam,2005,85.0,1000 ha +5274,Viet Nam,2006,84.6,1000 ha +5275,Viet Nam,2007,84.2,1000 ha +5276,Viet Nam,2008,83.8,1000 ha +5277,Viet Nam,2009,83.4,1000 ha +5278,Viet Nam,2010,83.0,1000 ha +5279,Viet Nam,2011,83.0,1000 ha +5280,Viet Nam,2012,83.0,1000 ha +5281,Viet Nam,2013,83.0,1000 ha +5282,Wallis and Futuna Islands,1990,0.0,1000 ha +5283,Wallis and Futuna Islands,1991,0.0,1000 ha +5284,Wallis and Futuna Islands,1992,0.0,1000 ha +5285,Wallis and Futuna Islands,1993,0.0,1000 ha +5286,Wallis and Futuna Islands,1994,0.0,1000 ha +5287,Wallis and Futuna Islands,1995,0.0,1000 ha +5288,Wallis and Futuna Islands,1996,0.0,1000 ha +5289,Wallis and Futuna Islands,1997,0.0,1000 ha +5290,Wallis and Futuna Islands,1998,0.0,1000 ha +5291,Wallis and Futuna Islands,1999,0.0,1000 ha +5292,Wallis and Futuna Islands,2000,0.0,1000 ha +5293,Wallis and Futuna Islands,2001,0.0,1000 ha +5294,Wallis and Futuna Islands,2002,0.0,1000 ha +5295,Wallis and Futuna Islands,2003,0.0,1000 ha +5296,Wallis and Futuna Islands,2004,0.0,1000 ha +5297,Wallis and Futuna Islands,2005,0.0,1000 ha +5298,Wallis and Futuna Islands,2006,0.0,1000 ha +5299,Wallis and Futuna Islands,2007,0.0,1000 ha +5300,Wallis and Futuna Islands,2008,0.0,1000 ha +5301,Wallis and Futuna Islands,2009,0.0,1000 ha +5302,Wallis and Futuna Islands,2010,0.0,1000 ha +5303,Wallis and Futuna Islands,2011,0.0,1000 ha +5304,Wallis and Futuna Islands,2012,0.0,1000 ha +5305,Wallis and Futuna Islands,2013,0.0,1000 ha +5306,Western Sahara,1990,0.0,1000 ha +5307,Western Sahara,1991,0.0,1000 ha +5308,Western Sahara,1992,0.0,1000 ha +5309,Western Sahara,1993,0.0,1000 ha +5310,Western Sahara,1994,0.0,1000 ha +5311,Western Sahara,1995,0.0,1000 ha +5312,Western Sahara,1996,0.0,1000 ha +5313,Western Sahara,1997,0.0,1000 ha +5314,Western Sahara,1998,0.0,1000 ha +5315,Western Sahara,1999,0.0,1000 ha +5316,Western Sahara,2000,0.0,1000 ha +5317,Western Sahara,2001,0.0,1000 ha +5318,Western Sahara,2002,0.0,1000 ha +5319,Western Sahara,2003,0.0,1000 ha +5320,Western Sahara,2004,0.0,1000 ha +5321,Western Sahara,2005,0.0,1000 ha +5322,Western Sahara,2006,0.0,1000 ha +5323,Western Sahara,2007,0.0,1000 ha +5324,Western Sahara,2008,0.0,1000 ha +5325,Western Sahara,2009,0.0,1000 ha +5326,Western Sahara,2010,0.0,1000 ha +5327,Western Sahara,2011,0.0,1000 ha +5328,Western Sahara,2012,0.0,1000 ha +5329,Western Sahara,2013,0.0,1000 ha +5330,Yemen,1990,0.0,1000 ha +5331,Yemen,1991,0.0,1000 ha +5332,Yemen,1992,0.0,1000 ha +5333,Yemen,1993,0.0,1000 ha +5334,Yemen,1994,0.0,1000 ha +5335,Yemen,1995,0.0,1000 ha +5336,Yemen,1996,0.0,1000 ha +5337,Yemen,1997,0.0,1000 ha +5338,Yemen,1998,0.0,1000 ha +5339,Yemen,1999,0.0,1000 ha +5340,Yemen,2000,0.0,1000 ha +5341,Yemen,2001,0.0,1000 ha +5342,Yemen,2002,0.0,1000 ha +5343,Yemen,2003,0.0,1000 ha +5344,Yemen,2004,0.0,1000 ha +5345,Yemen,2005,0.0,1000 ha +5346,Yemen,2006,0.0,1000 ha +5347,Yemen,2007,0.0,1000 ha +5348,Yemen,2008,0.0,1000 ha +5349,Yemen,2009,0.0,1000 ha +5350,Yemen,2010,0.0,1000 ha +5351,Yemen,2011,0.0,1000 ha +5352,Yemen,2012,0.0,1000 ha +5353,Yemen,2013,0.0,1000 ha +5354,Yugoslav SFR,1990,168.0,1000 ha +5355,Yugoslav SFR,1991,168.4,1000 ha +5356,Zambia,1990,0.0,1000 ha +5357,Zambia,1991,0.0,1000 ha +5358,Zambia,1992,0.0,1000 ha +5359,Zambia,1993,0.0,1000 ha +5360,Zambia,1994,0.0,1000 ha +5361,Zambia,1995,0.0,1000 ha +5362,Zambia,1996,0.0,1000 ha +5363,Zambia,1997,0.0,1000 ha +5364,Zambia,1998,0.0,1000 ha +5365,Zambia,1999,0.0,1000 ha +5366,Zambia,2000,0.0,1000 ha +5367,Zambia,2001,0.0,1000 ha +5368,Zambia,2002,0.0,1000 ha +5369,Zambia,2003,0.0,1000 ha +5370,Zambia,2004,0.0,1000 ha +5371,Zambia,2005,0.0,1000 ha +5372,Zambia,2006,0.0,1000 ha +5373,Zambia,2007,0.0,1000 ha +5374,Zambia,2008,0.0,1000 ha +5375,Zambia,2009,0.0,1000 ha +5376,Zambia,2010,0.0,1000 ha +5377,Zambia,2011,0.0,1000 ha +5378,Zambia,2012,0.0,1000 ha +5379,Zambia,2013,0.0,1000 ha +5380,Zimbabwe,1990,801.0,1000 ha +5381,Zimbabwe,1991,801.0,1000 ha +5382,Zimbabwe,1992,801.0,1000 ha +5383,Zimbabwe,1993,801.0,1000 ha +5384,Zimbabwe,1994,801.0,1000 ha +5385,Zimbabwe,1995,801.0,1000 ha +5386,Zimbabwe,1996,801.0,1000 ha +5387,Zimbabwe,1997,801.0,1000 ha +5388,Zimbabwe,1998,801.0,1000 ha +5389,Zimbabwe,1999,801.0,1000 ha +5390,Zimbabwe,2000,801.0,1000 ha +5391,Zimbabwe,2001,801.0,1000 ha +5392,Zimbabwe,2002,801.0,1000 ha +5393,Zimbabwe,2003,801.0,1000 ha +5394,Zimbabwe,2004,801.0,1000 ha +5395,Zimbabwe,2005,801.0,1000 ha +5396,Zimbabwe,2006,801.0,1000 ha +5397,Zimbabwe,2007,801.0,1000 ha +5398,Zimbabwe,2008,801.0,1000 ha +5399,Zimbabwe,2009,801.0,1000 ha +5400,Zimbabwe,2010,801.0,1000 ha +5401,Zimbabwe,2011,801.0,1000 ha +5402,Zimbabwe,2012,801.0,1000 ha +5403,Zimbabwe,2013,801.0,1000 ha diff --git a/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/production_quantity_c.csv b/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/production_quantity_c.csv new file mode 100644 index 0000000..ffb9069 --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/cleaned_data/production_quantity_c.csv @@ -0,0 +1,3976 @@ +,Country,Year,production_quantity,Unit +0,Angola,1961,169,1000 tonnes +1,Angola,1962,185,1000 tonnes +2,Angola,1963,168,1000 tonnes +3,Angola,1964,198,1000 tonnes +4,Angola,1965,205,1000 tonnes +5,Angola,1966,226,1000 tonnes +6,Angola,1967,235,1000 tonnes +7,Angola,1968,198,1000 tonnes +8,Angola,1969,215,1000 tonnes +9,Angola,1970,204,1000 tonnes +10,Angola,1971,228,1000 tonnes +11,Angola,1972,225,1000 tonnes +12,Angola,1973,210,1000 tonnes +13,Angola,1974,225,1000 tonnes +14,Angola,1975,180,1000 tonnes +15,Angola,1976,57,1000 tonnes +16,Angola,1977,57,1000 tonnes +17,Angola,1978,34,1000 tonnes +18,Angola,1979,17,1000 tonnes +19,Angola,1980,43,1000 tonnes +20,Angola,1981,21,1000 tonnes +21,Angola,1982,17,1000 tonnes +22,Angola,1983,13,1000 tonnes +23,Angola,1984,15,1000 tonnes +24,Angola,1985,12,1000 tonnes +25,Angola,1986,15,1000 tonnes +26,Angola,1987,9,1000 tonnes +27,Angola,1988,11,1000 tonnes +28,Angola,1989,10,1000 tonnes +29,Angola,1990,5,1000 tonnes +30,Angola,1991,5,1000 tonnes +31,Angola,1992,5,1000 tonnes +32,Angola,1993,5,1000 tonnes +33,Angola,1994,2,1000 tonnes +34,Angola,1995,3,1000 tonnes +35,Angola,1996,3,1000 tonnes +36,Angola,1997,4,1000 tonnes +37,Angola,1998,5,1000 tonnes +38,Angola,1999,3,1000 tonnes +39,Angola,2000,4,1000 tonnes +40,Angola,2001,3,1000 tonnes +41,Angola,2002,1,1000 tonnes +42,Angola,2003,2,1000 tonnes +43,Angola,2004,2,1000 tonnes +44,Angola,2005,4,1000 tonnes +45,Angola,2006,5,1000 tonnes +46,Angola,2007,12,1000 tonnes +47,Angola,2008,4,1000 tonnes +48,Angola,2009,12,1000 tonnes +49,Angola,2010,46,1000 tonnes +50,Angola,2011,49,1000 tonnes +51,Angola,2012,50,1000 tonnes +52,Angola,2013,13,1000 tonnes +53,Belize,1961,0,1000 tonnes +54,Belize,1962,0,1000 tonnes +55,Belize,1963,0,1000 tonnes +56,Belize,1964,0,1000 tonnes +57,Belize,1965,0,1000 tonnes +58,Belize,1966,0,1000 tonnes +59,Belize,1967,0,1000 tonnes +60,Belize,1968,0,1000 tonnes +61,Belize,1969,0,1000 tonnes +62,Belize,1970,0,1000 tonnes +63,Belize,1971,0,1000 tonnes +64,Belize,1972,0,1000 tonnes +65,Belize,1973,0,1000 tonnes +66,Belize,1974,0,1000 tonnes +67,Belize,1975,0,1000 tonnes +68,Belize,1976,0,1000 tonnes +69,Belize,1977,0,1000 tonnes +70,Belize,1978,0,1000 tonnes +71,Belize,1979,0,1000 tonnes +72,Belize,1980,0,1000 tonnes +73,Belize,1981,0,1000 tonnes +74,Belize,1982,0,1000 tonnes +75,Belize,1983,0,1000 tonnes +76,Belize,1984,0,1000 tonnes +77,Belize,1985,0,1000 tonnes +78,Belize,1986,0,1000 tonnes +79,Belize,1987,0,1000 tonnes +80,Belize,1988,0,1000 tonnes +81,Belize,1989,0,1000 tonnes +82,Belize,1990,0,1000 tonnes +83,Belize,1991,0,1000 tonnes +84,Belize,1992,0,1000 tonnes +85,Belize,1993,0,1000 tonnes +86,Belize,1994,0,1000 tonnes +87,Belize,1995,0,1000 tonnes +88,Belize,1996,0,1000 tonnes +89,Belize,1997,0,1000 tonnes +90,Belize,1998,0,1000 tonnes +91,Belize,1999,0,1000 tonnes +92,Belize,2000,0,1000 tonnes +93,Belize,2001,0,1000 tonnes +94,Belize,2002,0,1000 tonnes +95,Belize,2003,0,1000 tonnes +96,Belize,2004,0,1000 tonnes +97,Belize,2005,0,1000 tonnes +98,Belize,2006,0,1000 tonnes +99,Belize,2007,0,1000 tonnes +100,Belize,2008,0,1000 tonnes +101,Belize,2009,0,1000 tonnes +102,Belize,2010,0,1000 tonnes +103,Belize,2011,0,1000 tonnes +104,Belize,2012,0,1000 tonnes +105,Belize,2013,0,1000 tonnes +106,Benin,1961,2,1000 tonnes +107,Benin,1962,2,1000 tonnes +108,Benin,1963,1,1000 tonnes +109,Benin,1964,1,1000 tonnes +110,Benin,1965,1,1000 tonnes +111,Benin,1966,1,1000 tonnes +112,Benin,1967,1,1000 tonnes +113,Benin,1968,1,1000 tonnes +114,Benin,1969,2,1000 tonnes +115,Benin,1970,2,1000 tonnes +116,Benin,1971,2,1000 tonnes +117,Benin,1972,3,1000 tonnes +118,Benin,1973,1,1000 tonnes +119,Benin,1974,0,1000 tonnes +120,Benin,1975,0,1000 tonnes +121,Benin,1976,1,1000 tonnes +122,Benin,1977,1,1000 tonnes +123,Benin,1978,0,1000 tonnes +124,Benin,1979,0,1000 tonnes +125,Benin,1980,0,1000 tonnes +126,Benin,1981,1,1000 tonnes +127,Benin,1982,2,1000 tonnes +128,Benin,1983,1,1000 tonnes +129,Benin,1984,3,1000 tonnes +130,Benin,1985,1,1000 tonnes +131,Benin,1986,1,1000 tonnes +132,Benin,1987,2,1000 tonnes +133,Benin,1988,3,1000 tonnes +134,Benin,1989,1,1000 tonnes +135,Benin,1990,0,1000 tonnes +136,Benin,1991,0,1000 tonnes +137,Benin,1992,0,1000 tonnes +138,Benin,1993,0,1000 tonnes +139,Benin,1994,0,1000 tonnes +140,Benin,1995,0,1000 tonnes +141,Benin,1996,0,1000 tonnes +142,Benin,1997,0,1000 tonnes +143,Benin,1998,0,1000 tonnes +144,Benin,1999,0,1000 tonnes +145,Benin,2000,0,1000 tonnes +146,Benin,2001,0,1000 tonnes +147,Benin,2002,0,1000 tonnes +148,Benin,2003,0,1000 tonnes +149,Benin,2004,0,1000 tonnes +150,Benin,2005,0,1000 tonnes +151,Benin,2006,0,1000 tonnes +152,Benin,2007,0,1000 tonnes +153,Benin,2008,0,1000 tonnes +154,Benin,2009,0,1000 tonnes +155,Benin,2010,0,1000 tonnes +156,Benin,2011,0,1000 tonnes +157,Benin,2012,0,1000 tonnes +158,Benin,2013,0,1000 tonnes +159,Bolivia (Plurinational State of),1961,4,1000 tonnes +160,Bolivia (Plurinational State of),1962,4,1000 tonnes +161,Bolivia (Plurinational State of),1963,4,1000 tonnes +162,Bolivia (Plurinational State of),1964,7,1000 tonnes +163,Bolivia (Plurinational State of),1965,5,1000 tonnes +164,Bolivia (Plurinational State of),1966,8,1000 tonnes +165,Bolivia (Plurinational State of),1967,8,1000 tonnes +166,Bolivia (Plurinational State of),1968,10,1000 tonnes +167,Bolivia (Plurinational State of),1969,10,1000 tonnes +168,Bolivia (Plurinational State of),1970,11,1000 tonnes +169,Bolivia (Plurinational State of),1971,12,1000 tonnes +170,Bolivia (Plurinational State of),1972,13,1000 tonnes +171,Bolivia (Plurinational State of),1973,13,1000 tonnes +172,Bolivia (Plurinational State of),1974,14,1000 tonnes +173,Bolivia (Plurinational State of),1975,15,1000 tonnes +174,Bolivia (Plurinational State of),1976,15,1000 tonnes +175,Bolivia (Plurinational State of),1977,13,1000 tonnes +176,Bolivia (Plurinational State of),1978,13,1000 tonnes +177,Bolivia (Plurinational State of),1979,16,1000 tonnes +178,Bolivia (Plurinational State of),1980,21,1000 tonnes +179,Bolivia (Plurinational State of),1981,21,1000 tonnes +180,Bolivia (Plurinational State of),1982,21,1000 tonnes +181,Bolivia (Plurinational State of),1983,21,1000 tonnes +182,Bolivia (Plurinational State of),1984,22,1000 tonnes +183,Bolivia (Plurinational State of),1985,23,1000 tonnes +184,Bolivia (Plurinational State of),1986,24,1000 tonnes +185,Bolivia (Plurinational State of),1987,25,1000 tonnes +186,Bolivia (Plurinational State of),1988,25,1000 tonnes +187,Bolivia (Plurinational State of),1989,27,1000 tonnes +188,Bolivia (Plurinational State of),1990,24,1000 tonnes +189,Bolivia (Plurinational State of),1991,14,1000 tonnes +190,Bolivia (Plurinational State of),1992,15,1000 tonnes +191,Bolivia (Plurinational State of),1993,13,1000 tonnes +192,Bolivia (Plurinational State of),1994,19,1000 tonnes +193,Bolivia (Plurinational State of),1995,20,1000 tonnes +194,Bolivia (Plurinational State of),1996,22,1000 tonnes +195,Bolivia (Plurinational State of),1997,23,1000 tonnes +196,Bolivia (Plurinational State of),1998,23,1000 tonnes +197,Bolivia (Plurinational State of),1999,27,1000 tonnes +198,Bolivia (Plurinational State of),2000,28,1000 tonnes +199,Bolivia (Plurinational State of),2001,24,1000 tonnes +200,Bolivia (Plurinational State of),2002,25,1000 tonnes +201,Bolivia (Plurinational State of),2003,25,1000 tonnes +202,Bolivia (Plurinational State of),2004,25,1000 tonnes +203,Bolivia (Plurinational State of),2005,25,1000 tonnes +204,Bolivia (Plurinational State of),2006,25,1000 tonnes +205,Bolivia (Plurinational State of),2007,27,1000 tonnes +206,Bolivia (Plurinational State of),2008,27,1000 tonnes +207,Bolivia (Plurinational State of),2009,28,1000 tonnes +208,Bolivia (Plurinational State of),2010,27,1000 tonnes +209,Bolivia (Plurinational State of),2011,28,1000 tonnes +210,Bolivia (Plurinational State of),2012,28,1000 tonnes +211,Bolivia (Plurinational State of),2013,29,1000 tonnes +212,Brazil,1961,2229,1000 tonnes +213,Brazil,1962,2190,1000 tonnes +214,Brazil,1963,1651,1000 tonnes +215,Brazil,1964,1042,1000 tonnes +216,Brazil,1965,2294,1000 tonnes +217,Brazil,1966,1203,1000 tonnes +218,Brazil,1967,1508,1000 tonnes +219,Brazil,1968,1058,1000 tonnes +220,Brazil,1969,1284,1000 tonnes +221,Brazil,1970,755,1000 tonnes +222,Brazil,1971,1551,1000 tonnes +223,Brazil,1972,1496,1000 tonnes +224,Brazil,1973,873,1000 tonnes +225,Brazil,1974,1615,1000 tonnes +226,Brazil,1975,1272,1000 tonnes +227,Brazil,1976,376,1000 tonnes +228,Brazil,1977,975,1000 tonnes +229,Brazil,1978,1268,1000 tonnes +230,Brazil,1979,1333,1000 tonnes +231,Brazil,1980,1061,1000 tonnes +232,Brazil,1981,2032,1000 tonnes +233,Brazil,1982,958,1000 tonnes +234,Brazil,1983,1672,1000 tonnes +235,Brazil,1984,1420,1000 tonnes +236,Brazil,1985,1911,1000 tonnes +237,Brazil,1986,1041,1000 tonnes +238,Brazil,1987,2203,1000 tonnes +239,Brazil,1988,1348,1000 tonnes +240,Brazil,1989,1532,1000 tonnes +241,Brazil,1990,1465,1000 tonnes +242,Brazil,1991,1520,1000 tonnes +243,Brazil,1992,1294,1000 tonnes +244,Brazil,1993,1279,1000 tonnes +245,Brazil,1994,1307,1000 tonnes +246,Brazil,1995,930,1000 tonnes +247,Brazil,1996,1369,1000 tonnes +248,Brazil,1997,1229,1000 tonnes +249,Brazil,1998,1689,1000 tonnes +250,Brazil,1999,1632,1000 tonnes +251,Brazil,2000,1904,1000 tonnes +252,Brazil,2001,1820,1000 tonnes +253,Brazil,2002,2650,1000 tonnes +254,Brazil,2003,1987,1000 tonnes +255,Brazil,2004,2466,1000 tonnes +256,Brazil,2005,2140,1000 tonnes +257,Brazil,2006,2573,1000 tonnes +258,Brazil,2007,2249,1000 tonnes +259,Brazil,2008,2797,1000 tonnes +260,Brazil,2009,2440,1000 tonnes +261,Brazil,2010,2907,1000 tonnes +262,Brazil,2011,2701,1000 tonnes +263,Brazil,2012,3038,1000 tonnes +264,Brazil,2013,2921,1000 tonnes +265,Cabo Verde,1961,0,1000 tonnes +266,Cabo Verde,1962,0,1000 tonnes +267,Cabo Verde,1963,0,1000 tonnes +268,Cabo Verde,1964,0,1000 tonnes +269,Cabo Verde,1965,0,1000 tonnes +270,Cabo Verde,1966,0,1000 tonnes +271,Cabo Verde,1967,0,1000 tonnes +272,Cabo Verde,1968,0,1000 tonnes +273,Cabo Verde,1969,0,1000 tonnes +274,Cabo Verde,1970,0,1000 tonnes +275,Cabo Verde,1971,0,1000 tonnes +276,Cabo Verde,1972,0,1000 tonnes +277,Cabo Verde,1973,0,1000 tonnes +278,Cabo Verde,1974,0,1000 tonnes +279,Cabo Verde,1975,0,1000 tonnes +280,Cabo Verde,1976,0,1000 tonnes +281,Cabo Verde,1977,0,1000 tonnes +282,Cabo Verde,1978,0,1000 tonnes +283,Cabo Verde,1979,0,1000 tonnes +284,Cabo Verde,1980,0,1000 tonnes +285,Cabo Verde,1981,0,1000 tonnes +286,Cabo Verde,1982,0,1000 tonnes +287,Cabo Verde,1983,0,1000 tonnes +288,Cabo Verde,1984,0,1000 tonnes +289,Cabo Verde,1985,0,1000 tonnes +290,Cabo Verde,1986,0,1000 tonnes +291,Cabo Verde,1987,0,1000 tonnes +292,Cabo Verde,1988,0,1000 tonnes +293,Cabo Verde,1989,0,1000 tonnes +294,Cabo Verde,1990,0,1000 tonnes +295,Cabo Verde,1991,0,1000 tonnes +296,Cabo Verde,1992,0,1000 tonnes +297,Cabo Verde,1993,0,1000 tonnes +298,Cabo Verde,1994,0,1000 tonnes +299,Cabo Verde,1995,0,1000 tonnes +300,Cabo Verde,1996,0,1000 tonnes +301,Cabo Verde,1997,0,1000 tonnes +302,Cabo Verde,1998,0,1000 tonnes +303,Cabo Verde,1999,0,1000 tonnes +304,Cabo Verde,2000,0,1000 tonnes +305,Cabo Verde,2001,0,1000 tonnes +306,Cabo Verde,2002,0,1000 tonnes +307,Cabo Verde,2003,0,1000 tonnes +308,Cabo Verde,2004,0,1000 tonnes +309,Cabo Verde,2005,0,1000 tonnes +310,Cabo Verde,2006,0,1000 tonnes +311,Cabo Verde,2007,0,1000 tonnes +312,Cabo Verde,2008,0,1000 tonnes +313,Cabo Verde,2009,0,1000 tonnes +314,Cabo Verde,2010,0,1000 tonnes +315,Cabo Verde,2011,0,1000 tonnes +316,Cabo Verde,2012,0,1000 tonnes +317,Cabo Verde,2013,0,1000 tonnes +318,Cambodia,1961,0,1000 tonnes +319,Cambodia,1962,0,1000 tonnes +320,Cambodia,1963,0,1000 tonnes +321,Cambodia,1964,0,1000 tonnes +322,Cambodia,1965,0,1000 tonnes +323,Cambodia,1966,0,1000 tonnes +324,Cambodia,1967,0,1000 tonnes +325,Cambodia,1968,0,1000 tonnes +326,Cambodia,1969,0,1000 tonnes +327,Cambodia,1970,1,1000 tonnes +328,Cambodia,1971,1,1000 tonnes +329,Cambodia,1972,0,1000 tonnes +330,Cambodia,1973,0,1000 tonnes +331,Cambodia,1974,0,1000 tonnes +332,Cambodia,1975,0,1000 tonnes +333,Cambodia,1976,0,1000 tonnes +334,Cambodia,1977,0,1000 tonnes +335,Cambodia,1978,0,1000 tonnes +336,Cambodia,1979,0,1000 tonnes +337,Cambodia,1980,0,1000 tonnes +338,Cambodia,1981,0,1000 tonnes +339,Cambodia,1982,0,1000 tonnes +340,Cambodia,1983,0,1000 tonnes +341,Cambodia,1984,0,1000 tonnes +342,Cambodia,1985,0,1000 tonnes +343,Cambodia,1986,0,1000 tonnes +344,Cambodia,1987,0,1000 tonnes +345,Cambodia,1988,0,1000 tonnes +346,Cambodia,1989,0,1000 tonnes +347,Cambodia,1990,0,1000 tonnes +348,Cambodia,1991,0,1000 tonnes +349,Cambodia,1992,0,1000 tonnes +350,Cambodia,1993,0,1000 tonnes +351,Cambodia,1994,0,1000 tonnes +352,Cambodia,1995,0,1000 tonnes +353,Cambodia,1996,0,1000 tonnes +354,Cambodia,1997,0,1000 tonnes +355,Cambodia,1998,0,1000 tonnes +356,Cambodia,1999,0,1000 tonnes +357,Cambodia,2000,0,1000 tonnes +358,Cambodia,2001,0,1000 tonnes +359,Cambodia,2002,0,1000 tonnes +360,Cambodia,2003,0,1000 tonnes +361,Cambodia,2004,0,1000 tonnes +362,Cambodia,2005,0,1000 tonnes +363,Cambodia,2006,0,1000 tonnes +364,Cambodia,2007,0,1000 tonnes +365,Cambodia,2008,0,1000 tonnes +366,Cambodia,2009,0,1000 tonnes +367,Cambodia,2010,0,1000 tonnes +368,Cambodia,2011,0,1000 tonnes +369,Cambodia,2012,0,1000 tonnes +370,Cambodia,2013,0,1000 tonnes +371,Cameroon,1961,45,1000 tonnes +372,Cameroon,1962,45,1000 tonnes +373,Cameroon,1963,54,1000 tonnes +374,Cameroon,1964,59,1000 tonnes +375,Cameroon,1965,74,1000 tonnes +376,Cameroon,1966,63,1000 tonnes +377,Cameroon,1967,80,1000 tonnes +378,Cameroon,1968,82,1000 tonnes +379,Cameroon,1969,82,1000 tonnes +380,Cameroon,1970,93,1000 tonnes +381,Cameroon,1971,95,1000 tonnes +382,Cameroon,1972,96,1000 tonnes +383,Cameroon,1973,94,1000 tonnes +384,Cameroon,1974,104,1000 tonnes +385,Cameroon,1975,92,1000 tonnes +386,Cameroon,1976,80,1000 tonnes +387,Cameroon,1977,86,1000 tonnes +388,Cameroon,1978,108,1000 tonnes +389,Cameroon,1979,101,1000 tonnes +390,Cameroon,1980,112,1000 tonnes +391,Cameroon,1981,109,1000 tonnes +392,Cameroon,1982,128,1000 tonnes +393,Cameroon,1983,64,1000 tonnes +394,Cameroon,1984,138,1000 tonnes +395,Cameroon,1985,100,1000 tonnes +396,Cameroon,1986,132,1000 tonnes +397,Cameroon,1987,83,1000 tonnes +398,Cameroon,1988,119,1000 tonnes +399,Cameroon,1989,116,1000 tonnes +400,Cameroon,1990,101,1000 tonnes +401,Cameroon,1991,115,1000 tonnes +402,Cameroon,1992,76,1000 tonnes +403,Cameroon,1993,68,1000 tonnes +404,Cameroon,1994,74,1000 tonnes +405,Cameroon,1995,74,1000 tonnes +406,Cameroon,1996,104,1000 tonnes +407,Cameroon,1997,64,1000 tonnes +408,Cameroon,1998,113,1000 tonnes +409,Cameroon,1999,98,1000 tonnes +410,Cameroon,2000,86,1000 tonnes +411,Cameroon,2001,71,1000 tonnes +412,Cameroon,2002,41,1000 tonnes +413,Cameroon,2003,48,1000 tonnes +414,Cameroon,2004,54,1000 tonnes +415,Cameroon,2005,60,1000 tonnes +416,Cameroon,2006,62,1000 tonnes +417,Cameroon,2007,48,1000 tonnes +418,Cameroon,2008,51,1000 tonnes +419,Cameroon,2009,48,1000 tonnes +420,Cameroon,2010,67,1000 tonnes +421,Cameroon,2011,26,1000 tonnes +422,Cameroon,2012,38,1000 tonnes +423,Cameroon,2013,42,1000 tonnes +424,Central African Republic,1961,8,1000 tonnes +425,Central African Republic,1962,6,1000 tonnes +426,Central African Republic,1963,13,1000 tonnes +427,Central African Republic,1964,8,1000 tonnes +428,Central African Republic,1965,11,1000 tonnes +429,Central African Republic,1966,9,1000 tonnes +430,Central African Republic,1967,8,1000 tonnes +431,Central African Republic,1968,9,1000 tonnes +432,Central African Republic,1969,12,1000 tonnes +433,Central African Republic,1970,11,1000 tonnes +434,Central African Republic,1971,6,1000 tonnes +435,Central African Republic,1972,8,1000 tonnes +436,Central African Republic,1973,10,1000 tonnes +437,Central African Republic,1974,13,1000 tonnes +438,Central African Republic,1975,14,1000 tonnes +439,Central African Republic,1976,14,1000 tonnes +440,Central African Republic,1977,15,1000 tonnes +441,Central African Republic,1978,15,1000 tonnes +442,Central African Republic,1979,16,1000 tonnes +443,Central African Republic,1980,17,1000 tonnes +444,Central African Republic,1981,17,1000 tonnes +445,Central African Republic,1982,17,1000 tonnes +446,Central African Republic,1983,15,1000 tonnes +447,Central African Republic,1984,18,1000 tonnes +448,Central African Republic,1985,13,1000 tonnes +449,Central African Republic,1986,20,1000 tonnes +450,Central African Republic,1987,21,1000 tonnes +451,Central African Republic,1988,24,1000 tonnes +452,Central African Republic,1989,21,1000 tonnes +453,Central African Republic,1990,14,1000 tonnes +454,Central African Republic,1991,18,1000 tonnes +455,Central African Republic,1992,9,1000 tonnes +456,Central African Republic,1993,9,1000 tonnes +457,Central African Republic,1994,15,1000 tonnes +458,Central African Republic,1995,9,1000 tonnes +459,Central African Republic,1996,18,1000 tonnes +460,Central African Republic,1997,15,1000 tonnes +461,Central African Republic,1998,12,1000 tonnes +462,Central African Republic,1999,11,1000 tonnes +463,Central African Republic,2000,13,1000 tonnes +464,Central African Republic,2001,12,1000 tonnes +465,Central African Republic,2002,13,1000 tonnes +466,Central African Republic,2003,6,1000 tonnes +467,Central African Republic,2004,4,1000 tonnes +468,Central African Republic,2005,3,1000 tonnes +469,Central African Republic,2006,2,1000 tonnes +470,Central African Republic,2007,2,1000 tonnes +471,Central African Republic,2008,3,1000 tonnes +472,Central African Republic,2009,4,1000 tonnes +473,Central African Republic,2010,5,1000 tonnes +474,Central African Republic,2011,6,1000 tonnes +475,Central African Republic,2012,7,1000 tonnes +476,Central African Republic,2013,7,1000 tonnes +477,"China, mainland",1961,2,1000 tonnes +478,"China, mainland",1962,2,1000 tonnes +479,"China, mainland",1963,2,1000 tonnes +480,"China, mainland",1964,2,1000 tonnes +481,"China, mainland",1965,3,1000 tonnes +482,"China, mainland",1966,3,1000 tonnes +483,"China, mainland",1967,4,1000 tonnes +484,"China, mainland",1968,4,1000 tonnes +485,"China, mainland",1969,4,1000 tonnes +486,"China, mainland",1970,4,1000 tonnes +487,"China, mainland",1971,4,1000 tonnes +488,"China, mainland",1972,5,1000 tonnes +489,"China, mainland",1973,6,1000 tonnes +490,"China, mainland",1974,6,1000 tonnes +491,"China, mainland",1975,4,1000 tonnes +492,"China, mainland",1976,4,1000 tonnes +493,"China, mainland",1977,4,1000 tonnes +494,"China, mainland",1978,4,1000 tonnes +495,"China, mainland",1979,5,1000 tonnes +496,"China, mainland",1980,5,1000 tonnes +497,"China, mainland",1981,6,1000 tonnes +498,"China, mainland",1982,6,1000 tonnes +499,"China, mainland",1983,6,1000 tonnes +500,"China, mainland",1984,9,1000 tonnes +501,"China, mainland",1985,7,1000 tonnes +502,"China, mainland",1986,8,1000 tonnes +503,"China, mainland",1987,9,1000 tonnes +504,"China, mainland",1988,10,1000 tonnes +505,"China, mainland",1989,8,1000 tonnes +506,"China, mainland",1990,6,1000 tonnes +507,"China, mainland",1991,4,1000 tonnes +508,"China, mainland",1992,4,1000 tonnes +509,"China, mainland",1993,4,1000 tonnes +510,"China, mainland",1994,3,1000 tonnes +511,"China, mainland",1995,3,1000 tonnes +512,"China, mainland",1996,3,1000 tonnes +513,"China, mainland",1997,4,1000 tonnes +514,"China, mainland",1998,6,1000 tonnes +515,"China, mainland",1999,9,1000 tonnes +516,"China, mainland",2000,12,1000 tonnes +517,"China, mainland",2001,17,1000 tonnes +518,"China, mainland",2002,19,1000 tonnes +519,"China, mainland",2003,23,1000 tonnes +520,"China, mainland",2004,22,1000 tonnes +521,"China, mainland",2005,22,1000 tonnes +522,"China, mainland",2006,26,1000 tonnes +523,"China, mainland",2007,26,1000 tonnes +524,"China, mainland",2008,33,1000 tonnes +525,"China, mainland",2009,70,1000 tonnes +526,"China, mainland",2010,50,1000 tonnes +527,"China, mainland",2011,65,1000 tonnes +528,"China, mainland",2012,92,1000 tonnes +529,"China, mainland",2013,117,1000 tonnes +530,"China, Taiwan Province of",1961,0,1000 tonnes +531,"China, Taiwan Province of",1962,0,1000 tonnes +532,"China, Taiwan Province of",1963,0,1000 tonnes +533,"China, Taiwan Province of",1964,0,1000 tonnes +534,"China, Taiwan Province of",1965,0,1000 tonnes +535,"China, Taiwan Province of",1966,0,1000 tonnes +536,"China, Taiwan Province of",1967,0,1000 tonnes +537,"China, Taiwan Province of",1968,0,1000 tonnes +538,"China, Taiwan Province of",1969,0,1000 tonnes +539,"China, Taiwan Province of",1970,0,1000 tonnes +540,"China, Taiwan Province of",1971,0,1000 tonnes +541,"China, Taiwan Province of",1972,0,1000 tonnes +542,"China, Taiwan Province of",1973,0,1000 tonnes +543,"China, Taiwan Province of",1974,0,1000 tonnes +544,"China, Taiwan Province of",1975,0,1000 tonnes +545,"China, Taiwan Province of",1976,0,1000 tonnes +546,"China, Taiwan Province of",1977,0,1000 tonnes +547,"China, Taiwan Province of",1978,0,1000 tonnes +548,"China, Taiwan Province of",1979,0,1000 tonnes +549,"China, Taiwan Province of",1980,0,1000 tonnes +550,"China, Taiwan Province of",1981,0,1000 tonnes +551,"China, Taiwan Province of",1982,0,1000 tonnes +552,"China, Taiwan Province of",1983,0,1000 tonnes +553,"China, Taiwan Province of",1984,0,1000 tonnes +554,"China, Taiwan Province of",1985,0,1000 tonnes +555,"China, Taiwan Province of",1986,0,1000 tonnes +556,"China, Taiwan Province of",1987,0,1000 tonnes +557,"China, Taiwan Province of",1988,0,1000 tonnes +558,"China, Taiwan Province of",1989,0,1000 tonnes +559,"China, Taiwan Province of",1990,0,1000 tonnes +560,"China, Taiwan Province of",1991,0,1000 tonnes +561,"China, Taiwan Province of",1992,0,1000 tonnes +562,"China, Taiwan Province of",1993,0,1000 tonnes +563,"China, Taiwan Province of",1994,0,1000 tonnes +564,"China, Taiwan Province of",1995,0,1000 tonnes +565,"China, Taiwan Province of",1996,0,1000 tonnes +566,"China, Taiwan Province of",1997,0,1000 tonnes +567,"China, Taiwan Province of",1998,0,1000 tonnes +568,"China, Taiwan Province of",1999,0,1000 tonnes +569,"China, Taiwan Province of",2000,0,1000 tonnes +570,"China, Taiwan Province of",2001,0,1000 tonnes +571,"China, Taiwan Province of",2002,0,1000 tonnes +572,"China, Taiwan Province of",2003,0,1000 tonnes +573,"China, Taiwan Province of",2004,0,1000 tonnes +574,"China, Taiwan Province of",2005,0,1000 tonnes +575,"China, Taiwan Province of",2006,0,1000 tonnes +576,"China, Taiwan Province of",2007,0,1000 tonnes +577,"China, Taiwan Province of",2008,0,1000 tonnes +578,"China, Taiwan Province of",2009,0,1000 tonnes +579,"China, Taiwan Province of",2010,0,1000 tonnes +580,"China, Taiwan Province of",2011,0,1000 tonnes +581,"China, Taiwan Province of",2012,0,1000 tonnes +582,"China, Taiwan Province of",2013,0,1000 tonnes +583,Colombia,1961,450,1000 tonnes +584,Colombia,1962,482,1000 tonnes +585,Colombia,1963,450,1000 tonnes +586,Colombia,1964,468,1000 tonnes +587,Colombia,1965,492,1000 tonnes +588,Colombia,1966,492,1000 tonnes +589,Colombia,1967,456,1000 tonnes +590,Colombia,1968,480,1000 tonnes +591,Colombia,1969,474,1000 tonnes +592,Colombia,1970,507,1000 tonnes +593,Colombia,1971,468,1000 tonnes +594,Colombia,1972,432,1000 tonnes +595,Colombia,1973,528,1000 tonnes +596,Colombia,1974,470,1000 tonnes +597,Colombia,1975,513,1000 tonnes +598,Colombia,1976,483,1000 tonnes +599,Colombia,1977,639,1000 tonnes +600,Colombia,1978,683,1000 tonnes +601,Colombia,1979,713,1000 tonnes +602,Colombia,1980,724,1000 tonnes +603,Colombia,1981,782,1000 tonnes +604,Colombia,1982,774,1000 tonnes +605,Colombia,1983,769,1000 tonnes +606,Colombia,1984,808,1000 tonnes +607,Colombia,1985,643,1000 tonnes +608,Colombia,1986,714,1000 tonnes +609,Colombia,1987,652,1000 tonnes +610,Colombia,1988,709,1000 tonnes +611,Colombia,1989,664,1000 tonnes +612,Colombia,1990,845,1000 tonnes +613,Colombia,1991,971,1000 tonnes +614,Colombia,1992,1100,1000 tonnes +615,Colombia,1993,818,1000 tonnes +616,Colombia,1994,722,1000 tonnes +617,Colombia,1995,822,1000 tonnes +618,Colombia,1996,671,1000 tonnes +619,Colombia,1997,642,1000 tonnes +620,Colombia,1998,767,1000 tonnes +621,Colombia,1999,547,1000 tonnes +622,Colombia,2000,637,1000 tonnes +623,Colombia,2001,656,1000 tonnes +624,Colombia,2002,697,1000 tonnes +625,Colombia,2003,694,1000 tonnes +626,Colombia,2004,674,1000 tonnes +627,Colombia,2005,667,1000 tonnes +628,Colombia,2006,725,1000 tonnes +629,Colombia,2007,757,1000 tonnes +630,Colombia,2008,689,1000 tonnes +631,Colombia,2009,469,1000 tonnes +632,Colombia,2010,535,1000 tonnes +633,Colombia,2011,469,1000 tonnes +634,Colombia,2012,462,1000 tonnes +635,Colombia,2013,653,1000 tonnes +636,Congo,1961,1,1000 tonnes +637,Congo,1962,1,1000 tonnes +638,Congo,1963,2,1000 tonnes +639,Congo,1964,2,1000 tonnes +640,Congo,1965,3,1000 tonnes +641,Congo,1966,1,1000 tonnes +642,Congo,1967,1,1000 tonnes +643,Congo,1968,1,1000 tonnes +644,Congo,1969,1,1000 tonnes +645,Congo,1970,1,1000 tonnes +646,Congo,1971,1,1000 tonnes +647,Congo,1972,1,1000 tonnes +648,Congo,1973,1,1000 tonnes +649,Congo,1974,1,1000 tonnes +650,Congo,1975,1,1000 tonnes +651,Congo,1976,2,1000 tonnes +652,Congo,1977,5,1000 tonnes +653,Congo,1978,5,1000 tonnes +654,Congo,1979,3,1000 tonnes +655,Congo,1980,3,1000 tonnes +656,Congo,1981,3,1000 tonnes +657,Congo,1982,3,1000 tonnes +658,Congo,1983,3,1000 tonnes +659,Congo,1984,3,1000 tonnes +660,Congo,1985,3,1000 tonnes +661,Congo,1986,1,1000 tonnes +662,Congo,1987,1,1000 tonnes +663,Congo,1988,2,1000 tonnes +664,Congo,1989,2,1000 tonnes +665,Congo,1990,1,1000 tonnes +666,Congo,1991,1,1000 tonnes +667,Congo,1992,1,1000 tonnes +668,Congo,1993,2,1000 tonnes +669,Congo,1994,2,1000 tonnes +670,Congo,1995,2,1000 tonnes +671,Congo,1996,2,1000 tonnes +672,Congo,1997,1,1000 tonnes +673,Congo,1998,1,1000 tonnes +674,Congo,1999,1,1000 tonnes +675,Congo,2000,2,1000 tonnes +676,Congo,2001,2,1000 tonnes +677,Congo,2002,2,1000 tonnes +678,Congo,2003,2,1000 tonnes +679,Congo,2004,3,1000 tonnes +680,Congo,2005,3,1000 tonnes +681,Congo,2006,3,1000 tonnes +682,Congo,2007,3,1000 tonnes +683,Congo,2008,2,1000 tonnes +684,Congo,2009,3,1000 tonnes +685,Congo,2010,3,1000 tonnes +686,Congo,2011,3,1000 tonnes +687,Congo,2012,3,1000 tonnes +688,Congo,2013,3,1000 tonnes +689,Costa Rica,1961,62,1000 tonnes +690,Costa Rica,1962,55,1000 tonnes +691,Costa Rica,1963,62,1000 tonnes +692,Costa Rica,1964,47,1000 tonnes +693,Costa Rica,1965,58,1000 tonnes +694,Costa Rica,1966,68,1000 tonnes +695,Costa Rica,1967,76,1000 tonnes +696,Costa Rica,1968,69,1000 tonnes +697,Costa Rica,1969,85,1000 tonnes +698,Costa Rica,1970,73,1000 tonnes +699,Costa Rica,1971,89,1000 tonnes +700,Costa Rica,1972,79,1000 tonnes +701,Costa Rica,1973,96,1000 tonnes +702,Costa Rica,1974,84,1000 tonnes +703,Costa Rica,1975,80,1000 tonnes +704,Costa Rica,1976,82,1000 tonnes +705,Costa Rica,1977,87,1000 tonnes +706,Costa Rica,1978,99,1000 tonnes +707,Costa Rica,1979,99,1000 tonnes +708,Costa Rica,1980,106,1000 tonnes +709,Costa Rica,1981,113,1000 tonnes +710,Costa Rica,1982,115,1000 tonnes +711,Costa Rica,1983,124,1000 tonnes +712,Costa Rica,1984,137,1000 tonnes +713,Costa Rica,1985,124,1000 tonnes +714,Costa Rica,1986,128,1000 tonnes +715,Costa Rica,1987,138,1000 tonnes +716,Costa Rica,1988,145,1000 tonnes +717,Costa Rica,1989,157,1000 tonnes +718,Costa Rica,1990,151,1000 tonnes +719,Costa Rica,1991,158,1000 tonnes +720,Costa Rica,1992,168,1000 tonnes +721,Costa Rica,1993,157,1000 tonnes +722,Costa Rica,1994,148,1000 tonnes +723,Costa Rica,1995,150,1000 tonnes +724,Costa Rica,1996,154,1000 tonnes +725,Costa Rica,1997,132,1000 tonnes +726,Costa Rica,1998,152,1000 tonnes +727,Costa Rica,1999,148,1000 tonnes +728,Costa Rica,2000,161,1000 tonnes +729,Costa Rica,2001,150,1000 tonnes +730,Costa Rica,2002,141,1000 tonnes +731,Costa Rica,2003,132,1000 tonnes +732,Costa Rica,2004,126,1000 tonnes +733,Costa Rica,2005,126,1000 tonnes +734,Costa Rica,2006,101,1000 tonnes +735,Costa Rica,2007,121,1000 tonnes +736,Costa Rica,2008,112,1000 tonnes +737,Costa Rica,2009,91,1000 tonnes +738,Costa Rica,2010,97,1000 tonnes +739,Costa Rica,2011,100,1000 tonnes +740,Costa Rica,2012,118,1000 tonnes +741,Costa Rica,2013,71,1000 tonnes +742,Côte d'Ivoire,1961,186,1000 tonnes +743,Côte d'Ivoire,1962,97,1000 tonnes +744,Côte d'Ivoire,1963,195,1000 tonnes +745,Côte d'Ivoire,1964,261,1000 tonnes +746,Côte d'Ivoire,1965,202,1000 tonnes +747,Côte d'Ivoire,1966,273,1000 tonnes +748,Côte d'Ivoire,1967,131,1000 tonnes +749,Côte d'Ivoire,1968,288,1000 tonnes +750,Côte d'Ivoire,1969,210,1000 tonnes +751,Côte d'Ivoire,1970,280,1000 tonnes +752,Côte d'Ivoire,1971,240,1000 tonnes +753,Côte d'Ivoire,1972,269,1000 tonnes +754,Côte d'Ivoire,1973,302,1000 tonnes +755,Côte d'Ivoire,1974,196,1000 tonnes +756,Côte d'Ivoire,1975,270,1000 tonnes +757,Côte d'Ivoire,1976,308,1000 tonnes +758,Côte d'Ivoire,1977,291,1000 tonnes +759,Côte d'Ivoire,1978,196,1000 tonnes +760,Côte d'Ivoire,1979,277,1000 tonnes +761,Côte d'Ivoire,1980,250,1000 tonnes +762,Côte d'Ivoire,1981,367,1000 tonnes +763,Côte d'Ivoire,1982,248,1000 tonnes +764,Côte d'Ivoire,1983,271,1000 tonnes +765,Côte d'Ivoire,1984,85,1000 tonnes +766,Côte d'Ivoire,1985,277,1000 tonnes +767,Côte d'Ivoire,1986,265,1000 tonnes +768,Côte d'Ivoire,1987,270,1000 tonnes +769,Côte d'Ivoire,1988,187,1000 tonnes +770,Côte d'Ivoire,1989,221,1000 tonnes +771,Côte d'Ivoire,1990,285,1000 tonnes +772,Côte d'Ivoire,1991,199,1000 tonnes +773,Côte d'Ivoire,1992,257,1000 tonnes +774,Côte d'Ivoire,1993,139,1000 tonnes +775,Côte d'Ivoire,1994,146,1000 tonnes +776,Côte d'Ivoire,1995,195,1000 tonnes +777,Côte d'Ivoire,1996,168,1000 tonnes +778,Côte d'Ivoire,1997,279,1000 tonnes +779,Côte d'Ivoire,1998,311,1000 tonnes +780,Côte d'Ivoire,1999,307,1000 tonnes +781,Côte d'Ivoire,2000,380,1000 tonnes +782,Côte d'Ivoire,2001,301,1000 tonnes +783,Côte d'Ivoire,2002,182,1000 tonnes +784,Côte d'Ivoire,2003,140,1000 tonnes +785,Côte d'Ivoire,2004,154,1000 tonnes +786,Côte d'Ivoire,2005,230,1000 tonnes +787,Côte d'Ivoire,2006,187,1000 tonnes +788,Côte d'Ivoire,2007,171,1000 tonnes +789,Côte d'Ivoire,2008,173,1000 tonnes +790,Côte d'Ivoire,2009,143,1000 tonnes +791,Côte d'Ivoire,2010,94,1000 tonnes +792,Côte d'Ivoire,2011,32,1000 tonnes +793,Côte d'Ivoire,2012,121,1000 tonnes +794,Côte d'Ivoire,2013,104,1000 tonnes +795,Cuba,1961,37,1000 tonnes +796,Cuba,1962,52,1000 tonnes +797,Cuba,1963,35,1000 tonnes +798,Cuba,1964,32,1000 tonnes +799,Cuba,1965,24,1000 tonnes +800,Cuba,1966,33,1000 tonnes +801,Cuba,1967,34,1000 tonnes +802,Cuba,1968,29,1000 tonnes +803,Cuba,1969,32,1000 tonnes +804,Cuba,1970,20,1000 tonnes +805,Cuba,1971,26,1000 tonnes +806,Cuba,1972,25,1000 tonnes +807,Cuba,1973,21,1000 tonnes +808,Cuba,1974,29,1000 tonnes +809,Cuba,1975,20,1000 tonnes +810,Cuba,1976,27,1000 tonnes +811,Cuba,1977,17,1000 tonnes +812,Cuba,1978,15,1000 tonnes +813,Cuba,1979,23,1000 tonnes +814,Cuba,1980,19,1000 tonnes +815,Cuba,1981,22,1000 tonnes +816,Cuba,1982,29,1000 tonnes +817,Cuba,1983,18,1000 tonnes +818,Cuba,1984,22,1000 tonnes +819,Cuba,1985,24,1000 tonnes +820,Cuba,1986,25,1000 tonnes +821,Cuba,1987,26,1000 tonnes +822,Cuba,1988,29,1000 tonnes +823,Cuba,1989,29,1000 tonnes +824,Cuba,1990,25,1000 tonnes +825,Cuba,1991,23,1000 tonnes +826,Cuba,1992,19,1000 tonnes +827,Cuba,1993,17,1000 tonnes +828,Cuba,1994,17,1000 tonnes +829,Cuba,1995,17,1000 tonnes +830,Cuba,1996,17,1000 tonnes +831,Cuba,1997,20,1000 tonnes +832,Cuba,1998,14,1000 tonnes +833,Cuba,1999,22,1000 tonnes +834,Cuba,2000,17,1000 tonnes +835,Cuba,2001,16,1000 tonnes +836,Cuba,2002,15,1000 tonnes +837,Cuba,2003,15,1000 tonnes +838,Cuba,2004,15,1000 tonnes +839,Cuba,2005,11,1000 tonnes +840,Cuba,2006,8,1000 tonnes +841,Cuba,2007,14,1000 tonnes +842,Cuba,2008,6,1000 tonnes +843,Cuba,2009,8,1000 tonnes +844,Cuba,2010,8,1000 tonnes +845,Cuba,2011,10,1000 tonnes +846,Cuba,2012,8,1000 tonnes +847,Cuba,2013,9,1000 tonnes +848,Dominica,1961,0,1000 tonnes +849,Dominica,1962,0,1000 tonnes +850,Dominica,1963,0,1000 tonnes +851,Dominica,1964,0,1000 tonnes +852,Dominica,1965,0,1000 tonnes +853,Dominica,1966,0,1000 tonnes +854,Dominica,1967,0,1000 tonnes +855,Dominica,1968,0,1000 tonnes +856,Dominica,1969,0,1000 tonnes +857,Dominica,1970,0,1000 tonnes +858,Dominica,1971,0,1000 tonnes +859,Dominica,1972,0,1000 tonnes +860,Dominica,1973,0,1000 tonnes +861,Dominica,1974,0,1000 tonnes +862,Dominica,1975,0,1000 tonnes +863,Dominica,1976,0,1000 tonnes +864,Dominica,1977,0,1000 tonnes +865,Dominica,1978,0,1000 tonnes +866,Dominica,1979,0,1000 tonnes +867,Dominica,1980,0,1000 tonnes +868,Dominica,1981,0,1000 tonnes +869,Dominica,1982,0,1000 tonnes +870,Dominica,1983,0,1000 tonnes +871,Dominica,1984,0,1000 tonnes +872,Dominica,1985,0,1000 tonnes +873,Dominica,1986,0,1000 tonnes +874,Dominica,1987,0,1000 tonnes +875,Dominica,1988,0,1000 tonnes +876,Dominica,1989,0,1000 tonnes +877,Dominica,1990,0,1000 tonnes +878,Dominica,1991,0,1000 tonnes +879,Dominica,1992,0,1000 tonnes +880,Dominica,1993,0,1000 tonnes +881,Dominica,1994,0,1000 tonnes +882,Dominica,1995,0,1000 tonnes +883,Dominica,1996,0,1000 tonnes +884,Dominica,1997,0,1000 tonnes +885,Dominica,1998,0,1000 tonnes +886,Dominica,1999,0,1000 tonnes +887,Dominica,2000,0,1000 tonnes +888,Dominica,2001,0,1000 tonnes +889,Dominica,2002,0,1000 tonnes +890,Dominica,2003,0,1000 tonnes +891,Dominica,2004,0,1000 tonnes +892,Dominica,2005,0,1000 tonnes +893,Dominica,2006,0,1000 tonnes +894,Dominica,2007,0,1000 tonnes +895,Dominica,2008,0,1000 tonnes +896,Dominica,2009,0,1000 tonnes +897,Dominica,2010,0,1000 tonnes +898,Dominica,2011,0,1000 tonnes +899,Dominica,2012,0,1000 tonnes +900,Dominica,2013,0,1000 tonnes +901,Dominican Republic,1961,36,1000 tonnes +902,Dominican Republic,1962,46,1000 tonnes +903,Dominican Republic,1963,45,1000 tonnes +904,Dominican Republic,1964,52,1000 tonnes +905,Dominican Republic,1965,43,1000 tonnes +906,Dominican Republic,1966,45,1000 tonnes +907,Dominican Republic,1967,42,1000 tonnes +908,Dominican Republic,1968,45,1000 tonnes +909,Dominican Republic,1969,44,1000 tonnes +910,Dominican Republic,1970,42,1000 tonnes +911,Dominican Republic,1971,45,1000 tonnes +912,Dominican Republic,1972,45,1000 tonnes +913,Dominican Republic,1973,59,1000 tonnes +914,Dominican Republic,1974,54,1000 tonnes +915,Dominican Republic,1975,52,1000 tonnes +916,Dominican Republic,1976,57,1000 tonnes +917,Dominican Republic,1977,60,1000 tonnes +918,Dominican Republic,1978,43,1000 tonnes +919,Dominican Republic,1979,60,1000 tonnes +920,Dominican Republic,1980,60,1000 tonnes +921,Dominican Republic,1981,52,1000 tonnes +922,Dominican Republic,1982,63,1000 tonnes +923,Dominican Republic,1983,68,1000 tonnes +924,Dominican Republic,1984,72,1000 tonnes +925,Dominican Republic,1985,72,1000 tonnes +926,Dominican Republic,1986,69,1000 tonnes +927,Dominican Republic,1987,67,1000 tonnes +928,Dominican Republic,1988,68,1000 tonnes +929,Dominican Republic,1989,65,1000 tonnes +930,Dominican Republic,1990,59,1000 tonnes +931,Dominican Republic,1991,55,1000 tonnes +932,Dominican Republic,1992,42,1000 tonnes +933,Dominican Republic,1993,38,1000 tonnes +934,Dominican Republic,1994,37,1000 tonnes +935,Dominican Republic,1995,45,1000 tonnes +936,Dominican Republic,1996,42,1000 tonnes +937,Dominican Republic,1997,42,1000 tonnes +938,Dominican Republic,1998,57,1000 tonnes +939,Dominican Republic,1999,35,1000 tonnes +940,Dominican Republic,2000,46,1000 tonnes +941,Dominican Republic,2001,35,1000 tonnes +942,Dominican Republic,2002,37,1000 tonnes +943,Dominican Republic,2003,37,1000 tonnes +944,Dominican Republic,2004,35,1000 tonnes +945,Dominican Republic,2005,40,1000 tonnes +946,Dominican Republic,2006,54,1000 tonnes +947,Dominican Republic,2007,50,1000 tonnes +948,Dominican Republic,2008,48,1000 tonnes +949,Dominican Republic,2009,38,1000 tonnes +950,Dominican Republic,2010,22,1000 tonnes +951,Dominican Republic,2011,27,1000 tonnes +952,Dominican Republic,2012,27,1000 tonnes +953,Dominican Republic,2013,16,1000 tonnes +954,Ecuador,1961,54,1000 tonnes +955,Ecuador,1962,56,1000 tonnes +956,Ecuador,1963,43,1000 tonnes +957,Ecuador,1964,47,1000 tonnes +958,Ecuador,1965,66,1000 tonnes +959,Ecuador,1966,57,1000 tonnes +960,Ecuador,1967,62,1000 tonnes +961,Ecuador,1968,60,1000 tonnes +962,Ecuador,1969,44,1000 tonnes +963,Ecuador,1970,72,1000 tonnes +964,Ecuador,1971,62,1000 tonnes +965,Ecuador,1972,71,1000 tonnes +966,Ecuador,1973,75,1000 tonnes +967,Ecuador,1974,70,1000 tonnes +968,Ecuador,1975,76,1000 tonnes +969,Ecuador,1976,87,1000 tonnes +970,Ecuador,1977,83,1000 tonnes +971,Ecuador,1978,75,1000 tonnes +972,Ecuador,1979,90,1000 tonnes +973,Ecuador,1980,69,1000 tonnes +974,Ecuador,1981,86,1000 tonnes +975,Ecuador,1982,84,1000 tonnes +976,Ecuador,1983,81,1000 tonnes +977,Ecuador,1984,97,1000 tonnes +978,Ecuador,1985,121,1000 tonnes +979,Ecuador,1986,118,1000 tonnes +980,Ecuador,1987,112,1000 tonnes +981,Ecuador,1988,144,1000 tonnes +982,Ecuador,1989,129,1000 tonnes +983,Ecuador,1990,135,1000 tonnes +984,Ecuador,1991,139,1000 tonnes +985,Ecuador,1992,138,1000 tonnes +986,Ecuador,1993,137,1000 tonnes +987,Ecuador,1994,187,1000 tonnes +988,Ecuador,1995,148,1000 tonnes +989,Ecuador,1996,191,1000 tonnes +990,Ecuador,1997,87,1000 tonnes +991,Ecuador,1998,48,1000 tonnes +992,Ecuador,1999,133,1000 tonnes +993,Ecuador,2000,138,1000 tonnes +994,Ecuador,2001,165,1000 tonnes +995,Ecuador,2002,79,1000 tonnes +996,Ecuador,2003,83,1000 tonnes +997,Ecuador,2004,87,1000 tonnes +998,Ecuador,2005,103,1000 tonnes +999,Ecuador,2006,31,1000 tonnes +1000,Ecuador,2007,39,1000 tonnes +1001,Ecuador,2008,37,1000 tonnes +1002,Ecuador,2009,34,1000 tonnes +1003,Ecuador,2010,31,1000 tonnes +1004,Ecuador,2011,50,1000 tonnes +1005,Ecuador,2012,40,1000 tonnes +1006,Ecuador,2013,17,1000 tonnes +1007,El Salvador,1961,123,1000 tonnes +1008,El Salvador,1962,98,1000 tonnes +1009,El Salvador,1963,123,1000 tonnes +1010,El Salvador,1964,123,1000 tonnes +1011,El Salvador,1965,109,1000 tonnes +1012,El Salvador,1966,123,1000 tonnes +1013,El Salvador,1967,145,1000 tonnes +1014,El Salvador,1968,124,1000 tonnes +1015,El Salvador,1969,144,1000 tonnes +1016,El Salvador,1970,129,1000 tonnes +1017,El Salvador,1971,145,1000 tonnes +1018,El Salvador,1972,147,1000 tonnes +1019,El Salvador,1973,127,1000 tonnes +1020,El Salvador,1974,159,1000 tonnes +1021,El Salvador,1975,161,1000 tonnes +1022,El Salvador,1976,139,1000 tonnes +1023,El Salvador,1977,147,1000 tonnes +1024,El Salvador,1978,158,1000 tonnes +1025,El Salvador,1979,186,1000 tonnes +1026,El Salvador,1980,184,1000 tonnes +1027,El Salvador,1981,180,1000 tonnes +1028,El Salvador,1982,175,1000 tonnes +1029,El Salvador,1983,155,1000 tonnes +1030,El Salvador,1984,164,1000 tonnes +1031,El Salvador,1985,149,1000 tonnes +1032,El Salvador,1986,138,1000 tonnes +1033,El Salvador,1987,148,1000 tonnes +1034,El Salvador,1988,120,1000 tonnes +1035,El Salvador,1989,122,1000 tonnes +1036,El Salvador,1990,147,1000 tonnes +1037,El Salvador,1991,149,1000 tonnes +1038,El Salvador,1992,176,1000 tonnes +1039,El Salvador,1993,141,1000 tonnes +1040,El Salvador,1994,141,1000 tonnes +1041,El Salvador,1995,140,1000 tonnes +1042,El Salvador,1996,149,1000 tonnes +1043,El Salvador,1997,124,1000 tonnes +1044,El Salvador,1998,117,1000 tonnes +1045,El Salvador,1999,161,1000 tonnes +1046,El Salvador,2000,114,1000 tonnes +1047,El Salvador,2001,112,1000 tonnes +1048,El Salvador,2002,92,1000 tonnes +1049,El Salvador,2003,81,1000 tonnes +1050,El Salvador,2004,83,1000 tonnes +1051,El Salvador,2005,88,1000 tonnes +1052,El Salvador,2006,85,1000 tonnes +1053,El Salvador,2007,96,1000 tonnes +1054,El Salvador,2008,98,1000 tonnes +1055,El Salvador,2009,77,1000 tonnes +1056,El Salvador,2010,113,1000 tonnes +1057,El Salvador,2011,82,1000 tonnes +1058,El Salvador,2012,89,1000 tonnes +1059,El Salvador,2013,47,1000 tonnes +1060,Ethiopia,1993,180,1000 tonnes +1061,Ethiopia,1994,207,1000 tonnes +1062,Ethiopia,1995,230,1000 tonnes +1063,Ethiopia,1996,230,1000 tonnes +1064,Ethiopia,1997,228,1000 tonnes +1065,Ethiopia,1998,230,1000 tonnes +1066,Ethiopia,1999,217,1000 tonnes +1067,Ethiopia,2000,230,1000 tonnes +1068,Ethiopia,2001,157,1000 tonnes +1069,Ethiopia,2002,160,1000 tonnes +1070,Ethiopia,2003,126,1000 tonnes +1071,Ethiopia,2004,156,1000 tonnes +1072,Ethiopia,2005,172,1000 tonnes +1073,Ethiopia,2006,241,1000 tonnes +1074,Ethiopia,2007,273,1000 tonnes +1075,Ethiopia,2008,260,1000 tonnes +1076,Ethiopia,2009,265,1000 tonnes +1077,Ethiopia,2010,371,1000 tonnes +1078,Ethiopia,2011,377,1000 tonnes +1079,Ethiopia,2012,276,1000 tonnes +1080,Ethiopia,2013,270,1000 tonnes +1081,Ethiopia PDR,1961,127,1000 tonnes +1082,Ethiopia PDR,1962,133,1000 tonnes +1083,Ethiopia PDR,1963,139,1000 tonnes +1084,Ethiopia PDR,1964,170,1000 tonnes +1085,Ethiopia PDR,1965,140,1000 tonnes +1086,Ethiopia PDR,1966,140,1000 tonnes +1087,Ethiopia PDR,1967,155,1000 tonnes +1088,Ethiopia PDR,1968,160,1000 tonnes +1089,Ethiopia PDR,1969,165,1000 tonnes +1090,Ethiopia PDR,1970,170,1000 tonnes +1091,Ethiopia PDR,1971,182,1000 tonnes +1092,Ethiopia PDR,1972,164,1000 tonnes +1093,Ethiopia PDR,1973,180,1000 tonnes +1094,Ethiopia PDR,1974,153,1000 tonnes +1095,Ethiopia PDR,1975,171,1000 tonnes +1096,Ethiopia PDR,1976,179,1000 tonnes +1097,Ethiopia PDR,1977,191,1000 tonnes +1098,Ethiopia PDR,1978,190,1000 tonnes +1099,Ethiopia PDR,1979,188,1000 tonnes +1100,Ethiopia PDR,1980,187,1000 tonnes +1101,Ethiopia PDR,1981,202,1000 tonnes +1102,Ethiopia PDR,1982,202,1000 tonnes +1103,Ethiopia PDR,1983,158,1000 tonnes +1104,Ethiopia PDR,1984,145,1000 tonnes +1105,Ethiopia PDR,1985,155,1000 tonnes +1106,Ethiopia PDR,1986,186,1000 tonnes +1107,Ethiopia PDR,1987,186,1000 tonnes +1108,Ethiopia PDR,1988,190,1000 tonnes +1109,Ethiopia PDR,1989,200,1000 tonnes +1110,Ethiopia PDR,1990,204,1000 tonnes +1111,Ethiopia PDR,1991,210,1000 tonnes +1112,Ethiopia PDR,1992,216,1000 tonnes +1113,Fiji,1961,0,1000 tonnes +1114,Fiji,1962,0,1000 tonnes +1115,Fiji,1963,0,1000 tonnes +1116,Fiji,1964,0,1000 tonnes +1117,Fiji,1965,0,1000 tonnes +1118,Fiji,1966,0,1000 tonnes +1119,Fiji,1967,0,1000 tonnes +1120,Fiji,1968,0,1000 tonnes +1121,Fiji,1969,0,1000 tonnes +1122,Fiji,1970,0,1000 tonnes +1123,Fiji,1971,0,1000 tonnes +1124,Fiji,1972,0,1000 tonnes +1125,Fiji,1973,0,1000 tonnes +1126,Fiji,1974,0,1000 tonnes +1127,Fiji,1975,0,1000 tonnes +1128,Fiji,1976,0,1000 tonnes +1129,Fiji,1977,0,1000 tonnes +1130,Fiji,1978,0,1000 tonnes +1131,Fiji,1979,0,1000 tonnes +1132,Fiji,1980,0,1000 tonnes +1133,Fiji,1981,0,1000 tonnes +1134,Fiji,1982,0,1000 tonnes +1135,Fiji,1983,0,1000 tonnes +1136,Fiji,1984,0,1000 tonnes +1137,Fiji,1985,0,1000 tonnes +1138,Fiji,1986,0,1000 tonnes +1139,Fiji,1987,0,1000 tonnes +1140,Fiji,1988,0,1000 tonnes +1141,Fiji,1989,0,1000 tonnes +1142,Fiji,1990,1,1000 tonnes +1143,Fiji,1991,0,1000 tonnes +1144,Fiji,1992,0,1000 tonnes +1145,Fiji,1993,0,1000 tonnes +1146,Fiji,1994,0,1000 tonnes +1147,Fiji,1995,0,1000 tonnes +1148,Fiji,1996,0,1000 tonnes +1149,Fiji,1997,0,1000 tonnes +1150,Fiji,1998,0,1000 tonnes +1151,Fiji,1999,0,1000 tonnes +1152,Fiji,2000,0,1000 tonnes +1153,Fiji,2001,0,1000 tonnes +1154,Fiji,2002,0,1000 tonnes +1155,Fiji,2003,0,1000 tonnes +1156,Fiji,2004,0,1000 tonnes +1157,Fiji,2005,0,1000 tonnes +1158,Fiji,2006,0,1000 tonnes +1159,Fiji,2007,0,1000 tonnes +1160,Fiji,2008,0,1000 tonnes +1161,Fiji,2009,0,1000 tonnes +1162,Fiji,2010,0,1000 tonnes +1163,Fiji,2011,0,1000 tonnes +1164,Fiji,2012,0,1000 tonnes +1165,Fiji,2013,0,1000 tonnes +1166,French Polynesia,1961,0,1000 tonnes +1167,French Polynesia,1962,0,1000 tonnes +1168,French Polynesia,1963,0,1000 tonnes +1169,French Polynesia,1964,0,1000 tonnes +1170,French Polynesia,1965,0,1000 tonnes +1171,French Polynesia,1966,0,1000 tonnes +1172,French Polynesia,1967,0,1000 tonnes +1173,French Polynesia,1968,0,1000 tonnes +1174,French Polynesia,1969,0,1000 tonnes +1175,French Polynesia,1970,0,1000 tonnes +1176,French Polynesia,1971,0,1000 tonnes +1177,French Polynesia,1972,0,1000 tonnes +1178,French Polynesia,1973,0,1000 tonnes +1179,French Polynesia,1974,0,1000 tonnes +1180,French Polynesia,1975,0,1000 tonnes +1181,French Polynesia,1976,0,1000 tonnes +1182,French Polynesia,1977,0,1000 tonnes +1183,French Polynesia,1978,0,1000 tonnes +1184,French Polynesia,1979,0,1000 tonnes +1185,French Polynesia,1980,0,1000 tonnes +1186,French Polynesia,1981,0,1000 tonnes +1187,French Polynesia,1982,0,1000 tonnes +1188,French Polynesia,1983,0,1000 tonnes +1189,French Polynesia,1984,0,1000 tonnes +1190,French Polynesia,1985,0,1000 tonnes +1191,French Polynesia,1986,0,1000 tonnes +1192,French Polynesia,1987,0,1000 tonnes +1193,French Polynesia,1988,0,1000 tonnes +1194,French Polynesia,1989,0,1000 tonnes +1195,French Polynesia,1990,0,1000 tonnes +1196,French Polynesia,1991,0,1000 tonnes +1197,French Polynesia,1992,0,1000 tonnes +1198,French Polynesia,1993,0,1000 tonnes +1199,French Polynesia,1994,0,1000 tonnes +1200,French Polynesia,1995,0,1000 tonnes +1201,French Polynesia,1996,0,1000 tonnes +1202,French Polynesia,1997,0,1000 tonnes +1203,French Polynesia,1998,0,1000 tonnes +1204,French Polynesia,1999,0,1000 tonnes +1205,French Polynesia,2000,0,1000 tonnes +1206,French Polynesia,2001,0,1000 tonnes +1207,French Polynesia,2002,0,1000 tonnes +1208,French Polynesia,2003,0,1000 tonnes +1209,French Polynesia,2004,0,1000 tonnes +1210,French Polynesia,2005,0,1000 tonnes +1211,French Polynesia,2006,0,1000 tonnes +1212,French Polynesia,2007,0,1000 tonnes +1213,French Polynesia,2008,0,1000 tonnes +1214,French Polynesia,2009,0,1000 tonnes +1215,French Polynesia,2010,0,1000 tonnes +1216,French Polynesia,2011,0,1000 tonnes +1217,French Polynesia,2012,0,1000 tonnes +1218,French Polynesia,2013,0,1000 tonnes +1219,Gabon,1961,1,1000 tonnes +1220,Gabon,1962,3,1000 tonnes +1221,Gabon,1963,1,1000 tonnes +1222,Gabon,1964,1,1000 tonnes +1223,Gabon,1965,1,1000 tonnes +1224,Gabon,1966,1,1000 tonnes +1225,Gabon,1967,1,1000 tonnes +1226,Gabon,1968,1,1000 tonnes +1227,Gabon,1969,1,1000 tonnes +1228,Gabon,1970,1,1000 tonnes +1229,Gabon,1971,1,1000 tonnes +1230,Gabon,1972,1,1000 tonnes +1231,Gabon,1973,1,1000 tonnes +1232,Gabon,1974,1,1000 tonnes +1233,Gabon,1975,0,1000 tonnes +1234,Gabon,1976,0,1000 tonnes +1235,Gabon,1977,0,1000 tonnes +1236,Gabon,1978,1,1000 tonnes +1237,Gabon,1979,0,1000 tonnes +1238,Gabon,1980,1,1000 tonnes +1239,Gabon,1981,1,1000 tonnes +1240,Gabon,1982,2,1000 tonnes +1241,Gabon,1983,1,1000 tonnes +1242,Gabon,1984,1,1000 tonnes +1243,Gabon,1985,1,1000 tonnes +1244,Gabon,1986,1,1000 tonnes +1245,Gabon,1987,2,1000 tonnes +1246,Gabon,1988,2,1000 tonnes +1247,Gabon,1989,2,1000 tonnes +1248,Gabon,1990,0,1000 tonnes +1249,Gabon,1991,0,1000 tonnes +1250,Gabon,1992,0,1000 tonnes +1251,Gabon,1993,0,1000 tonnes +1252,Gabon,1994,0,1000 tonnes +1253,Gabon,1995,0,1000 tonnes +1254,Gabon,1996,0,1000 tonnes +1255,Gabon,1997,0,1000 tonnes +1256,Gabon,1998,0,1000 tonnes +1257,Gabon,1999,0,1000 tonnes +1258,Gabon,2000,0,1000 tonnes +1259,Gabon,2001,0,1000 tonnes +1260,Gabon,2002,0,1000 tonnes +1261,Gabon,2003,0,1000 tonnes +1262,Gabon,2004,0,1000 tonnes +1263,Gabon,2005,0,1000 tonnes +1264,Gabon,2006,0,1000 tonnes +1265,Gabon,2007,0,1000 tonnes +1266,Gabon,2008,0,1000 tonnes +1267,Gabon,2009,0,1000 tonnes +1268,Gabon,2010,0,1000 tonnes +1269,Gabon,2011,0,1000 tonnes +1270,Gabon,2012,0,1000 tonnes +1271,Gabon,2013,0,1000 tonnes +1272,Ghana,1961,2,1000 tonnes +1273,Ghana,1962,4,1000 tonnes +1274,Ghana,1963,3,1000 tonnes +1275,Ghana,1964,7,1000 tonnes +1276,Ghana,1965,2,1000 tonnes +1277,Ghana,1966,9,1000 tonnes +1278,Ghana,1967,4,1000 tonnes +1279,Ghana,1968,6,1000 tonnes +1280,Ghana,1969,5,1000 tonnes +1281,Ghana,1970,7,1000 tonnes +1282,Ghana,1971,7,1000 tonnes +1283,Ghana,1972,8,1000 tonnes +1284,Ghana,1973,4,1000 tonnes +1285,Ghana,1974,2,1000 tonnes +1286,Ghana,1975,4,1000 tonnes +1287,Ghana,1976,6,1000 tonnes +1288,Ghana,1977,4,1000 tonnes +1289,Ghana,1978,2,1000 tonnes +1290,Ghana,1979,2,1000 tonnes +1291,Ghana,1980,2,1000 tonnes +1292,Ghana,1981,2,1000 tonnes +1293,Ghana,1982,2,1000 tonnes +1294,Ghana,1983,1,1000 tonnes +1295,Ghana,1984,1,1000 tonnes +1296,Ghana,1985,1,1000 tonnes +1297,Ghana,1986,1,1000 tonnes +1298,Ghana,1987,1,1000 tonnes +1299,Ghana,1988,0,1000 tonnes +1300,Ghana,1989,1,1000 tonnes +1301,Ghana,1990,1,1000 tonnes +1302,Ghana,1991,2,1000 tonnes +1303,Ghana,1992,2,1000 tonnes +1304,Ghana,1993,4,1000 tonnes +1305,Ghana,1994,3,1000 tonnes +1306,Ghana,1995,4,1000 tonnes +1307,Ghana,1996,6,1000 tonnes +1308,Ghana,1997,3,1000 tonnes +1309,Ghana,1998,8,1000 tonnes +1310,Ghana,1999,4,1000 tonnes +1311,Ghana,2000,2,1000 tonnes +1312,Ghana,2001,1,1000 tonnes +1313,Ghana,2002,1,1000 tonnes +1314,Ghana,2003,1,1000 tonnes +1315,Ghana,2004,1,1000 tonnes +1316,Ghana,2005,1,1000 tonnes +1317,Ghana,2006,2,1000 tonnes +1318,Ghana,2007,2,1000 tonnes +1319,Ghana,2008,2,1000 tonnes +1320,Ghana,2009,2,1000 tonnes +1321,Ghana,2010,1,1000 tonnes +1322,Ghana,2011,1,1000 tonnes +1323,Ghana,2012,1,1000 tonnes +1324,Ghana,2013,1,1000 tonnes +1325,Guatemala,1961,101,1000 tonnes +1326,Guatemala,1962,118,1000 tonnes +1327,Guatemala,1963,104,1000 tonnes +1328,Guatemala,1964,105,1000 tonnes +1329,Guatemala,1965,126,1000 tonnes +1330,Guatemala,1966,106,1000 tonnes +1331,Guatemala,1967,102,1000 tonnes +1332,Guatemala,1968,112,1000 tonnes +1333,Guatemala,1969,119,1000 tonnes +1334,Guatemala,1970,127,1000 tonnes +1335,Guatemala,1971,128,1000 tonnes +1336,Guatemala,1972,143,1000 tonnes +1337,Guatemala,1973,146,1000 tonnes +1338,Guatemala,1974,157,1000 tonnes +1339,Guatemala,1975,139,1000 tonnes +1340,Guatemala,1976,158,1000 tonnes +1341,Guatemala,1977,168,1000 tonnes +1342,Guatemala,1978,170,1000 tonnes +1343,Guatemala,1979,165,1000 tonnes +1344,Guatemala,1980,177,1000 tonnes +1345,Guatemala,1981,194,1000 tonnes +1346,Guatemala,1982,189,1000 tonnes +1347,Guatemala,1983,183,1000 tonnes +1348,Guatemala,1984,197,1000 tonnes +1349,Guatemala,1985,182,1000 tonnes +1350,Guatemala,1986,197,1000 tonnes +1351,Guatemala,1987,193,1000 tonnes +1352,Guatemala,1988,179,1000 tonnes +1353,Guatemala,1989,193,1000 tonnes +1354,Guatemala,1990,202,1000 tonnes +1355,Guatemala,1991,196,1000 tonnes +1356,Guatemala,1992,207,1000 tonnes +1357,Guatemala,1993,209,1000 tonnes +1358,Guatemala,1994,214,1000 tonnes +1359,Guatemala,1995,211,1000 tonnes +1360,Guatemala,1996,240,1000 tonnes +1361,Guatemala,1997,271,1000 tonnes +1362,Guatemala,1998,253,1000 tonnes +1363,Guatemala,1999,294,1000 tonnes +1364,Guatemala,2000,312,1000 tonnes +1365,Guatemala,2001,276,1000 tonnes +1366,Guatemala,2002,222,1000 tonnes +1367,Guatemala,2003,244,1000 tonnes +1368,Guatemala,2004,250,1000 tonnes +1369,Guatemala,2005,248,1000 tonnes +1370,Guatemala,2006,235,1000 tonnes +1371,Guatemala,2007,244,1000 tonnes +1372,Guatemala,2008,248,1000 tonnes +1373,Guatemala,2009,249,1000 tonnes +1374,Guatemala,2010,248,1000 tonnes +1375,Guatemala,2011,265,1000 tonnes +1376,Guatemala,2012,273,1000 tonnes +1377,Guatemala,2013,253,1000 tonnes +1378,Guinea,1961,15,1000 tonnes +1379,Guinea,1962,13,1000 tonnes +1380,Guinea,1963,12,1000 tonnes +1381,Guinea,1964,9,1000 tonnes +1382,Guinea,1965,10,1000 tonnes +1383,Guinea,1966,13,1000 tonnes +1384,Guinea,1967,13,1000 tonnes +1385,Guinea,1968,15,1000 tonnes +1386,Guinea,1969,10,1000 tonnes +1387,Guinea,1970,12,1000 tonnes +1388,Guinea,1971,13,1000 tonnes +1389,Guinea,1972,13,1000 tonnes +1390,Guinea,1973,14,1000 tonnes +1391,Guinea,1974,14,1000 tonnes +1392,Guinea,1975,14,1000 tonnes +1393,Guinea,1976,14,1000 tonnes +1394,Guinea,1977,14,1000 tonnes +1395,Guinea,1978,14,1000 tonnes +1396,Guinea,1979,14,1000 tonnes +1397,Guinea,1980,14,1000 tonnes +1398,Guinea,1981,14,1000 tonnes +1399,Guinea,1982,15,1000 tonnes +1400,Guinea,1983,15,1000 tonnes +1401,Guinea,1984,15,1000 tonnes +1402,Guinea,1985,15,1000 tonnes +1403,Guinea,1986,7,1000 tonnes +1404,Guinea,1987,7,1000 tonnes +1405,Guinea,1988,20,1000 tonnes +1406,Guinea,1989,28,1000 tonnes +1407,Guinea,1990,30,1000 tonnes +1408,Guinea,1991,30,1000 tonnes +1409,Guinea,1992,29,1000 tonnes +1410,Guinea,1993,29,1000 tonnes +1411,Guinea,1994,30,1000 tonnes +1412,Guinea,1995,28,1000 tonnes +1413,Guinea,1996,23,1000 tonnes +1414,Guinea,1997,20,1000 tonnes +1415,Guinea,1998,21,1000 tonnes +1416,Guinea,1999,20,1000 tonnes +1417,Guinea,2000,22,1000 tonnes +1418,Guinea,2001,14,1000 tonnes +1419,Guinea,2002,20,1000 tonnes +1420,Guinea,2003,21,1000 tonnes +1421,Guinea,2004,20,1000 tonnes +1422,Guinea,2005,21,1000 tonnes +1423,Guinea,2006,23,1000 tonnes +1424,Guinea,2007,27,1000 tonnes +1425,Guinea,2008,27,1000 tonnes +1426,Guinea,2009,28,1000 tonnes +1427,Guinea,2010,29,1000 tonnes +1428,Guinea,2011,30,1000 tonnes +1429,Guinea,2012,18,1000 tonnes +1430,Guinea,2013,18,1000 tonnes +1431,Guyana,1961,1,1000 tonnes +1432,Guyana,1962,1,1000 tonnes +1433,Guyana,1963,1,1000 tonnes +1434,Guyana,1964,1,1000 tonnes +1435,Guyana,1965,1,1000 tonnes +1436,Guyana,1966,1,1000 tonnes +1437,Guyana,1967,1,1000 tonnes +1438,Guyana,1968,1,1000 tonnes +1439,Guyana,1969,1,1000 tonnes +1440,Guyana,1970,1,1000 tonnes +1441,Guyana,1971,1,1000 tonnes +1442,Guyana,1972,1,1000 tonnes +1443,Guyana,1973,1,1000 tonnes +1444,Guyana,1974,1,1000 tonnes +1445,Guyana,1975,1,1000 tonnes +1446,Guyana,1976,1,1000 tonnes +1447,Guyana,1977,1,1000 tonnes +1448,Guyana,1978,1,1000 tonnes +1449,Guyana,1979,1,1000 tonnes +1450,Guyana,1980,2,1000 tonnes +1451,Guyana,1981,2,1000 tonnes +1452,Guyana,1982,1,1000 tonnes +1453,Guyana,1983,1,1000 tonnes +1454,Guyana,1984,0,1000 tonnes +1455,Guyana,1985,0,1000 tonnes +1456,Guyana,1986,0,1000 tonnes +1457,Guyana,1987,0,1000 tonnes +1458,Guyana,1988,0,1000 tonnes +1459,Guyana,1989,0,1000 tonnes +1460,Guyana,1990,0,1000 tonnes +1461,Guyana,1991,0,1000 tonnes +1462,Guyana,1992,0,1000 tonnes +1463,Guyana,1993,0,1000 tonnes +1464,Guyana,1994,0,1000 tonnes +1465,Guyana,1995,0,1000 tonnes +1466,Guyana,1996,0,1000 tonnes +1467,Guyana,1997,0,1000 tonnes +1468,Guyana,1998,0,1000 tonnes +1469,Guyana,1999,0,1000 tonnes +1470,Guyana,2000,0,1000 tonnes +1471,Guyana,2001,0,1000 tonnes +1472,Guyana,2002,0,1000 tonnes +1473,Guyana,2003,0,1000 tonnes +1474,Guyana,2004,0,1000 tonnes +1475,Guyana,2005,0,1000 tonnes +1476,Guyana,2006,0,1000 tonnes +1477,Guyana,2007,0,1000 tonnes +1478,Guyana,2008,0,1000 tonnes +1479,Guyana,2009,0,1000 tonnes +1480,Guyana,2010,0,1000 tonnes +1481,Guyana,2011,0,1000 tonnes +1482,Guyana,2012,0,1000 tonnes +1483,Guyana,2013,0,1000 tonnes +1484,Haiti,1961,46,1000 tonnes +1485,Haiti,1962,32,1000 tonnes +1486,Haiti,1963,35,1000 tonnes +1487,Haiti,1964,36,1000 tonnes +1488,Haiti,1965,37,1000 tonnes +1489,Haiti,1966,31,1000 tonnes +1490,Haiti,1967,32,1000 tonnes +1491,Haiti,1968,30,1000 tonnes +1492,Haiti,1969,27,1000 tonnes +1493,Haiti,1970,33,1000 tonnes +1494,Haiti,1971,32,1000 tonnes +1495,Haiti,1972,32,1000 tonnes +1496,Haiti,1973,33,1000 tonnes +1497,Haiti,1974,31,1000 tonnes +1498,Haiti,1975,39,1000 tonnes +1499,Haiti,1976,32,1000 tonnes +1500,Haiti,1977,31,1000 tonnes +1501,Haiti,1978,27,1000 tonnes +1502,Haiti,1979,40,1000 tonnes +1503,Haiti,1980,43,1000 tonnes +1504,Haiti,1981,33,1000 tonnes +1505,Haiti,1982,32,1000 tonnes +1506,Haiti,1983,36,1000 tonnes +1507,Haiti,1984,37,1000 tonnes +1508,Haiti,1985,37,1000 tonnes +1509,Haiti,1986,38,1000 tonnes +1510,Haiti,1987,30,1000 tonnes +1511,Haiti,1988,38,1000 tonnes +1512,Haiti,1989,38,1000 tonnes +1513,Haiti,1990,37,1000 tonnes +1514,Haiti,1991,37,1000 tonnes +1515,Haiti,1992,27,1000 tonnes +1516,Haiti,1993,34,1000 tonnes +1517,Haiti,1994,31,1000 tonnes +1518,Haiti,1995,29,1000 tonnes +1519,Haiti,1996,27,1000 tonnes +1520,Haiti,1997,28,1000 tonnes +1521,Haiti,1998,27,1000 tonnes +1522,Haiti,1999,28,1000 tonnes +1523,Haiti,2000,30,1000 tonnes +1524,Haiti,2001,28,1000 tonnes +1525,Haiti,2002,27,1000 tonnes +1526,Haiti,2003,30,1000 tonnes +1527,Haiti,2004,29,1000 tonnes +1528,Haiti,2005,35,1000 tonnes +1529,Haiti,2006,35,1000 tonnes +1530,Haiti,2007,47,1000 tonnes +1531,Haiti,2008,35,1000 tonnes +1532,Haiti,2009,32,1000 tonnes +1533,Haiti,2010,20,1000 tonnes +1534,Haiti,2011,25,1000 tonnes +1535,Haiti,2012,26,1000 tonnes +1536,Haiti,2013,18,1000 tonnes +1537,Honduras,1961,21,1000 tonnes +1538,Honduras,1962,28,1000 tonnes +1539,Honduras,1963,29,1000 tonnes +1540,Honduras,1964,29,1000 tonnes +1541,Honduras,1965,32,1000 tonnes +1542,Honduras,1966,34,1000 tonnes +1543,Honduras,1967,35,1000 tonnes +1544,Honduras,1968,37,1000 tonnes +1545,Honduras,1969,38,1000 tonnes +1546,Honduras,1970,39,1000 tonnes +1547,Honduras,1971,41,1000 tonnes +1548,Honduras,1972,42,1000 tonnes +1549,Honduras,1973,42,1000 tonnes +1550,Honduras,1974,45,1000 tonnes +1551,Honduras,1975,47,1000 tonnes +1552,Honduras,1976,48,1000 tonnes +1553,Honduras,1977,50,1000 tonnes +1554,Honduras,1978,60,1000 tonnes +1555,Honduras,1979,73,1000 tonnes +1556,Honduras,1980,64,1000 tonnes +1557,Honduras,1981,75,1000 tonnes +1558,Honduras,1982,72,1000 tonnes +1559,Honduras,1983,79,1000 tonnes +1560,Honduras,1984,73,1000 tonnes +1561,Honduras,1985,75,1000 tonnes +1562,Honduras,1986,76,1000 tonnes +1563,Honduras,1987,80,1000 tonnes +1564,Honduras,1988,94,1000 tonnes +1565,Honduras,1989,100,1000 tonnes +1566,Honduras,1990,120,1000 tonnes +1567,Honduras,1991,102,1000 tonnes +1568,Honduras,1992,112,1000 tonnes +1569,Honduras,1993,110,1000 tonnes +1570,Honduras,1994,126,1000 tonnes +1571,Honduras,1995,132,1000 tonnes +1572,Honduras,1996,149,1000 tonnes +1573,Honduras,1997,163,1000 tonnes +1574,Honduras,1998,173,1000 tonnes +1575,Honduras,1999,157,1000 tonnes +1576,Honduras,2000,193,1000 tonnes +1577,Honduras,2001,206,1000 tonnes +1578,Honduras,2002,173,1000 tonnes +1579,Honduras,2003,175,1000 tonnes +1580,Honduras,2004,185,1000 tonnes +1581,Honduras,2005,191,1000 tonnes +1582,Honduras,2006,214,1000 tonnes +1583,Honduras,2007,236,1000 tonnes +1584,Honduras,2008,241,1000 tonnes +1585,Honduras,2009,231,1000 tonnes +1586,Honduras,2010,244,1000 tonnes +1587,Honduras,2011,284,1000 tonnes +1588,Honduras,2012,343,1000 tonnes +1589,Honduras,2013,281,1000 tonnes +1590,India,1961,43,1000 tonnes +1591,India,1962,46,1000 tonnes +1592,India,1963,56,1000 tonnes +1593,India,1964,69,1000 tonnes +1594,India,1965,61,1000 tonnes +1595,India,1966,64,1000 tonnes +1596,India,1967,79,1000 tonnes +1597,India,1968,57,1000 tonnes +1598,India,1969,73,1000 tonnes +1599,India,1970,64,1000 tonnes +1600,India,1971,110,1000 tonnes +1601,India,1972,69,1000 tonnes +1602,India,1973,91,1000 tonnes +1603,India,1974,86,1000 tonnes +1604,India,1975,93,1000 tonnes +1605,India,1976,84,1000 tonnes +1606,India,1977,102,1000 tonnes +1607,India,1978,125,1000 tonnes +1608,India,1979,110,1000 tonnes +1609,India,1980,150,1000 tonnes +1610,India,1981,119,1000 tonnes +1611,India,1982,152,1000 tonnes +1612,India,1983,130,1000 tonnes +1613,India,1984,105,1000 tonnes +1614,India,1985,195,1000 tonnes +1615,India,1986,122,1000 tonnes +1616,India,1987,192,1000 tonnes +1617,India,1988,123,1000 tonnes +1618,India,1989,215,1000 tonnes +1619,India,1990,118,1000 tonnes +1620,India,1991,170,1000 tonnes +1621,India,1992,180,1000 tonnes +1622,India,1993,162,1000 tonnes +1623,India,1994,208,1000 tonnes +1624,India,1995,180,1000 tonnes +1625,India,1996,223,1000 tonnes +1626,India,1997,205,1000 tonnes +1627,India,1998,228,1000 tonnes +1628,India,1999,265,1000 tonnes +1629,India,2000,292,1000 tonnes +1630,India,2001,301,1000 tonnes +1631,India,2002,301,1000 tonnes +1632,India,2003,275,1000 tonnes +1633,India,2004,271,1000 tonnes +1634,India,2005,276,1000 tonnes +1635,India,2006,274,1000 tonnes +1636,India,2007,288,1000 tonnes +1637,India,2008,262,1000 tonnes +1638,India,2009,262,1000 tonnes +1639,India,2010,290,1000 tonnes +1640,India,2011,302,1000 tonnes +1641,India,2012,314,1000 tonnes +1642,India,2013,318,1000 tonnes +1643,Indonesia,1961,103,1000 tonnes +1644,Indonesia,1962,107,1000 tonnes +1645,Indonesia,1963,140,1000 tonnes +1646,Indonesia,1964,118,1000 tonnes +1647,Indonesia,1965,135,1000 tonnes +1648,Indonesia,1966,142,1000 tonnes +1649,Indonesia,1967,153,1000 tonnes +1650,Indonesia,1968,157,1000 tonnes +1651,Indonesia,1969,174,1000 tonnes +1652,Indonesia,1970,185,1000 tonnes +1653,Indonesia,1971,181,1000 tonnes +1654,Indonesia,1972,179,1000 tonnes +1655,Indonesia,1973,150,1000 tonnes +1656,Indonesia,1974,150,1000 tonnes +1657,Indonesia,1975,170,1000 tonnes +1658,Indonesia,1976,193,1000 tonnes +1659,Indonesia,1977,194,1000 tonnes +1660,Indonesia,1978,223,1000 tonnes +1661,Indonesia,1979,274,1000 tonnes +1662,Indonesia,1980,295,1000 tonnes +1663,Indonesia,1981,315,1000 tonnes +1664,Indonesia,1982,281,1000 tonnes +1665,Indonesia,1983,306,1000 tonnes +1666,Indonesia,1984,315,1000 tonnes +1667,Indonesia,1985,311,1000 tonnes +1668,Indonesia,1986,357,1000 tonnes +1669,Indonesia,1987,389,1000 tonnes +1670,Indonesia,1988,391,1000 tonnes +1671,Indonesia,1989,401,1000 tonnes +1672,Indonesia,1990,413,1000 tonnes +1673,Indonesia,1991,428,1000 tonnes +1674,Indonesia,1992,437,1000 tonnes +1675,Indonesia,1993,439,1000 tonnes +1676,Indonesia,1994,450,1000 tonnes +1677,Indonesia,1995,458,1000 tonnes +1678,Indonesia,1996,422,1000 tonnes +1679,Indonesia,1997,427,1000 tonnes +1680,Indonesia,1998,512,1000 tonnes +1681,Indonesia,1999,525,1000 tonnes +1682,Indonesia,2000,555,1000 tonnes +1683,Indonesia,2001,569,1000 tonnes +1684,Indonesia,2002,682,1000 tonnes +1685,Indonesia,2003,664,1000 tonnes +1686,Indonesia,2004,647,1000 tonnes +1687,Indonesia,2005,640,1000 tonnes +1688,Indonesia,2006,682,1000 tonnes +1689,Indonesia,2007,676,1000 tonnes +1690,Indonesia,2008,698,1000 tonnes +1691,Indonesia,2009,683,1000 tonnes +1692,Indonesia,2010,684,1000 tonnes +1693,Indonesia,2011,639,1000 tonnes +1694,Indonesia,2012,691,1000 tonnes +1695,Indonesia,2013,699,1000 tonnes +1696,Jamaica,1961,3,1000 tonnes +1697,Jamaica,1962,2,1000 tonnes +1698,Jamaica,1963,2,1000 tonnes +1699,Jamaica,1964,2,1000 tonnes +1700,Jamaica,1965,2,1000 tonnes +1701,Jamaica,1966,2,1000 tonnes +1702,Jamaica,1967,2,1000 tonnes +1703,Jamaica,1968,2,1000 tonnes +1704,Jamaica,1969,2,1000 tonnes +1705,Jamaica,1970,2,1000 tonnes +1706,Jamaica,1971,1,1000 tonnes +1707,Jamaica,1972,1,1000 tonnes +1708,Jamaica,1973,1,1000 tonnes +1709,Jamaica,1974,1,1000 tonnes +1710,Jamaica,1975,1,1000 tonnes +1711,Jamaica,1976,2,1000 tonnes +1712,Jamaica,1977,1,1000 tonnes +1713,Jamaica,1978,1,1000 tonnes +1714,Jamaica,1979,1,1000 tonnes +1715,Jamaica,1980,2,1000 tonnes +1716,Jamaica,1981,1,1000 tonnes +1717,Jamaica,1982,2,1000 tonnes +1718,Jamaica,1983,2,1000 tonnes +1719,Jamaica,1984,2,1000 tonnes +1720,Jamaica,1985,1,1000 tonnes +1721,Jamaica,1986,2,1000 tonnes +1722,Jamaica,1987,2,1000 tonnes +1723,Jamaica,1988,2,1000 tonnes +1724,Jamaica,1989,1,1000 tonnes +1725,Jamaica,1990,2,1000 tonnes +1726,Jamaica,1991,2,1000 tonnes +1727,Jamaica,1992,2,1000 tonnes +1728,Jamaica,1993,2,1000 tonnes +1729,Jamaica,1994,2,1000 tonnes +1730,Jamaica,1995,3,1000 tonnes +1731,Jamaica,1996,3,1000 tonnes +1732,Jamaica,1997,3,1000 tonnes +1733,Jamaica,1998,2,1000 tonnes +1734,Jamaica,1999,2,1000 tonnes +1735,Jamaica,2000,2,1000 tonnes +1736,Jamaica,2001,3,1000 tonnes +1737,Jamaica,2002,3,1000 tonnes +1738,Jamaica,2003,3,1000 tonnes +1739,Jamaica,2004,2,1000 tonnes +1740,Jamaica,2005,9,1000 tonnes +1741,Jamaica,2006,12,1000 tonnes +1742,Jamaica,2007,15,1000 tonnes +1743,Jamaica,2008,9,1000 tonnes +1744,Jamaica,2009,12,1000 tonnes +1745,Jamaica,2010,9,1000 tonnes +1746,Jamaica,2011,8,1000 tonnes +1747,Jamaica,2012,7,1000 tonnes +1748,Jamaica,2013,7,1000 tonnes +1749,Kenya,1961,28,1000 tonnes +1750,Kenya,1962,50,1000 tonnes +1751,Kenya,1963,41,1000 tonnes +1752,Kenya,1964,41,1000 tonnes +1753,Kenya,1965,39,1000 tonnes +1754,Kenya,1966,57,1000 tonnes +1755,Kenya,1967,48,1000 tonnes +1756,Kenya,1968,40,1000 tonnes +1757,Kenya,1969,52,1000 tonnes +1758,Kenya,1970,58,1000 tonnes +1759,Kenya,1971,60,1000 tonnes +1760,Kenya,1972,62,1000 tonnes +1761,Kenya,1973,71,1000 tonnes +1762,Kenya,1974,70,1000 tonnes +1763,Kenya,1975,66,1000 tonnes +1764,Kenya,1976,80,1000 tonnes +1765,Kenya,1977,101,1000 tonnes +1766,Kenya,1978,84,1000 tonnes +1767,Kenya,1979,75,1000 tonnes +1768,Kenya,1980,91,1000 tonnes +1769,Kenya,1981,100,1000 tonnes +1770,Kenya,1982,87,1000 tonnes +1771,Kenya,1983,86,1000 tonnes +1772,Kenya,1984,119,1000 tonnes +1773,Kenya,1985,94,1000 tonnes +1774,Kenya,1986,114,1000 tonnes +1775,Kenya,1987,105,1000 tonnes +1776,Kenya,1988,129,1000 tonnes +1777,Kenya,1989,117,1000 tonnes +1778,Kenya,1990,104,1000 tonnes +1779,Kenya,1991,86,1000 tonnes +1780,Kenya,1992,85,1000 tonnes +1781,Kenya,1993,75,1000 tonnes +1782,Kenya,1994,80,1000 tonnes +1783,Kenya,1995,95,1000 tonnes +1784,Kenya,1996,98,1000 tonnes +1785,Kenya,1997,69,1000 tonnes +1786,Kenya,1998,54,1000 tonnes +1787,Kenya,1999,68,1000 tonnes +1788,Kenya,2000,101,1000 tonnes +1789,Kenya,2001,52,1000 tonnes +1790,Kenya,2002,52,1000 tonnes +1791,Kenya,2003,55,1000 tonnes +1792,Kenya,2004,48,1000 tonnes +1793,Kenya,2005,45,1000 tonnes +1794,Kenya,2006,48,1000 tonnes +1795,Kenya,2007,53,1000 tonnes +1796,Kenya,2008,42,1000 tonnes +1797,Kenya,2009,54,1000 tonnes +1798,Kenya,2010,42,1000 tonnes +1799,Kenya,2011,36,1000 tonnes +1800,Kenya,2012,46,1000 tonnes +1801,Kenya,2013,40,1000 tonnes +1802,Lao People's Democratic Republic,1961,1,1000 tonnes +1803,Lao People's Democratic Republic,1962,2,1000 tonnes +1804,Lao People's Democratic Republic,1963,2,1000 tonnes +1805,Lao People's Democratic Republic,1964,4,1000 tonnes +1806,Lao People's Democratic Republic,1965,4,1000 tonnes +1807,Lao People's Democratic Republic,1966,4,1000 tonnes +1808,Lao People's Democratic Republic,1967,4,1000 tonnes +1809,Lao People's Democratic Republic,1968,4,1000 tonnes +1810,Lao People's Democratic Republic,1969,3,1000 tonnes +1811,Lao People's Democratic Republic,1970,3,1000 tonnes +1812,Lao People's Democratic Republic,1971,3,1000 tonnes +1813,Lao People's Democratic Republic,1972,2,1000 tonnes +1814,Lao People's Democratic Republic,1973,2,1000 tonnes +1815,Lao People's Democratic Republic,1974,2,1000 tonnes +1816,Lao People's Democratic Republic,1975,2,1000 tonnes +1817,Lao People's Democratic Republic,1976,3,1000 tonnes +1818,Lao People's Democratic Republic,1977,4,1000 tonnes +1819,Lao People's Democratic Republic,1978,3,1000 tonnes +1820,Lao People's Democratic Republic,1979,4,1000 tonnes +1821,Lao People's Democratic Republic,1980,4,1000 tonnes +1822,Lao People's Democratic Republic,1981,5,1000 tonnes +1823,Lao People's Democratic Republic,1982,5,1000 tonnes +1824,Lao People's Democratic Republic,1983,5,1000 tonnes +1825,Lao People's Democratic Republic,1984,6,1000 tonnes +1826,Lao People's Democratic Republic,1985,6,1000 tonnes +1827,Lao People's Democratic Republic,1986,5,1000 tonnes +1828,Lao People's Democratic Republic,1987,5,1000 tonnes +1829,Lao People's Democratic Republic,1988,8,1000 tonnes +1830,Lao People's Democratic Republic,1989,5,1000 tonnes +1831,Lao People's Democratic Republic,1990,5,1000 tonnes +1832,Lao People's Democratic Republic,1991,8,1000 tonnes +1833,Lao People's Democratic Republic,1992,7,1000 tonnes +1834,Lao People's Democratic Republic,1993,8,1000 tonnes +1835,Lao People's Democratic Republic,1994,9,1000 tonnes +1836,Lao People's Democratic Republic,1995,9,1000 tonnes +1837,Lao People's Democratic Republic,1996,10,1000 tonnes +1838,Lao People's Democratic Republic,1997,12,1000 tonnes +1839,Lao People's Democratic Republic,1998,17,1000 tonnes +1840,Lao People's Democratic Republic,1999,18,1000 tonnes +1841,Lao People's Democratic Republic,2000,24,1000 tonnes +1842,Lao People's Democratic Republic,2001,26,1000 tonnes +1843,Lao People's Democratic Republic,2002,32,1000 tonnes +1844,Lao People's Democratic Republic,2003,28,1000 tonnes +1845,Lao People's Democratic Republic,2004,23,1000 tonnes +1846,Lao People's Democratic Republic,2005,25,1000 tonnes +1847,Lao People's Democratic Republic,2006,25,1000 tonnes +1848,Lao People's Democratic Republic,2007,33,1000 tonnes +1849,Lao People's Democratic Republic,2008,39,1000 tonnes +1850,Lao People's Democratic Republic,2009,46,1000 tonnes +1851,Lao People's Democratic Republic,2010,46,1000 tonnes +1852,Lao People's Democratic Republic,2011,52,1000 tonnes +1853,Lao People's Democratic Republic,2012,87,1000 tonnes +1854,Lao People's Democratic Republic,2013,89,1000 tonnes +1855,Liberia,1961,3,1000 tonnes +1856,Liberia,1962,4,1000 tonnes +1857,Liberia,1963,4,1000 tonnes +1858,Liberia,1964,4,1000 tonnes +1859,Liberia,1965,3,1000 tonnes +1860,Liberia,1966,9,1000 tonnes +1861,Liberia,1967,4,1000 tonnes +1862,Liberia,1968,5,1000 tonnes +1863,Liberia,1969,4,1000 tonnes +1864,Liberia,1970,5,1000 tonnes +1865,Liberia,1971,6,1000 tonnes +1866,Liberia,1972,6,1000 tonnes +1867,Liberia,1973,7,1000 tonnes +1868,Liberia,1974,3,1000 tonnes +1869,Liberia,1975,4,1000 tonnes +1870,Liberia,1976,4,1000 tonnes +1871,Liberia,1977,10,1000 tonnes +1872,Liberia,1978,9,1000 tonnes +1873,Liberia,1979,8,1000 tonnes +1874,Liberia,1980,13,1000 tonnes +1875,Liberia,1981,8,1000 tonnes +1876,Liberia,1982,12,1000 tonnes +1877,Liberia,1983,8,1000 tonnes +1878,Liberia,1984,12,1000 tonnes +1879,Liberia,1985,9,1000 tonnes +1880,Liberia,1986,9,1000 tonnes +1881,Liberia,1987,4,1000 tonnes +1882,Liberia,1988,4,1000 tonnes +1883,Liberia,1989,5,1000 tonnes +1884,Liberia,1990,2,1000 tonnes +1885,Liberia,1991,1,1000 tonnes +1886,Liberia,1992,3,1000 tonnes +1887,Liberia,1993,3,1000 tonnes +1888,Liberia,1994,3,1000 tonnes +1889,Liberia,1995,4,1000 tonnes +1890,Liberia,1996,3,1000 tonnes +1891,Liberia,1997,3,1000 tonnes +1892,Liberia,1998,4,1000 tonnes +1893,Liberia,1999,3,1000 tonnes +1894,Liberia,2000,4,1000 tonnes +1895,Liberia,2001,3,1000 tonnes +1896,Liberia,2002,2,1000 tonnes +1897,Liberia,2003,2,1000 tonnes +1898,Liberia,2004,2,1000 tonnes +1899,Liberia,2005,4,1000 tonnes +1900,Liberia,2006,4,1000 tonnes +1901,Liberia,2007,3,1000 tonnes +1902,Liberia,2008,2,1000 tonnes +1903,Liberia,2009,2,1000 tonnes +1904,Liberia,2010,1,1000 tonnes +1905,Liberia,2011,1,1000 tonnes +1906,Liberia,2012,1,1000 tonnes +1907,Liberia,2013,1,1000 tonnes +1908,Madagascar,1961,54,1000 tonnes +1909,Madagascar,1962,73,1000 tonnes +1910,Madagascar,1963,62,1000 tonnes +1911,Madagascar,1964,70,1000 tonnes +1912,Madagascar,1965,66,1000 tonnes +1913,Madagascar,1966,72,1000 tonnes +1914,Madagascar,1967,73,1000 tonnes +1915,Madagascar,1968,71,1000 tonnes +1916,Madagascar,1969,64,1000 tonnes +1917,Madagascar,1970,67,1000 tonnes +1918,Madagascar,1971,58,1000 tonnes +1919,Madagascar,1972,69,1000 tonnes +1920,Madagascar,1973,74,1000 tonnes +1921,Madagascar,1974,81,1000 tonnes +1922,Madagascar,1975,84,1000 tonnes +1923,Madagascar,1976,79,1000 tonnes +1924,Madagascar,1977,92,1000 tonnes +1925,Madagascar,1978,78,1000 tonnes +1926,Madagascar,1979,82,1000 tonnes +1927,Madagascar,1980,80,1000 tonnes +1928,Madagascar,1981,83,1000 tonnes +1929,Madagascar,1982,81,1000 tonnes +1930,Madagascar,1983,81,1000 tonnes +1931,Madagascar,1984,81,1000 tonnes +1932,Madagascar,1985,79,1000 tonnes +1933,Madagascar,1986,82,1000 tonnes +1934,Madagascar,1987,81,1000 tonnes +1935,Madagascar,1988,84,1000 tonnes +1936,Madagascar,1989,88,1000 tonnes +1937,Madagascar,1990,85,1000 tonnes +1938,Madagascar,1991,84,1000 tonnes +1939,Madagascar,1992,80,1000 tonnes +1940,Madagascar,1993,78,1000 tonnes +1941,Madagascar,1994,70,1000 tonnes +1942,Madagascar,1995,68,1000 tonnes +1943,Madagascar,1996,68,1000 tonnes +1944,Madagascar,1997,55,1000 tonnes +1945,Madagascar,1998,60,1000 tonnes +1946,Madagascar,1999,65,1000 tonnes +1947,Madagascar,2000,58,1000 tonnes +1948,Madagascar,2001,65,1000 tonnes +1949,Madagascar,2002,62,1000 tonnes +1950,Madagascar,2003,70,1000 tonnes +1951,Madagascar,2004,68,1000 tonnes +1952,Madagascar,2005,56,1000 tonnes +1953,Madagascar,2006,62,1000 tonnes +1954,Madagascar,2007,56,1000 tonnes +1955,Madagascar,2008,57,1000 tonnes +1956,Madagascar,2009,57,1000 tonnes +1957,Madagascar,2010,58,1000 tonnes +1958,Madagascar,2011,67,1000 tonnes +1959,Madagascar,2012,67,1000 tonnes +1960,Madagascar,2013,64,1000 tonnes +1961,Malawi,1961,0,1000 tonnes +1962,Malawi,1962,0,1000 tonnes +1963,Malawi,1963,0,1000 tonnes +1964,Malawi,1964,0,1000 tonnes +1965,Malawi,1965,0,1000 tonnes +1966,Malawi,1966,0,1000 tonnes +1967,Malawi,1967,0,1000 tonnes +1968,Malawi,1968,0,1000 tonnes +1969,Malawi,1969,0,1000 tonnes +1970,Malawi,1970,0,1000 tonnes +1971,Malawi,1971,0,1000 tonnes +1972,Malawi,1972,0,1000 tonnes +1973,Malawi,1973,0,1000 tonnes +1974,Malawi,1974,1,1000 tonnes +1975,Malawi,1975,1,1000 tonnes +1976,Malawi,1976,1,1000 tonnes +1977,Malawi,1977,1,1000 tonnes +1978,Malawi,1978,1,1000 tonnes +1979,Malawi,1979,1,1000 tonnes +1980,Malawi,1980,1,1000 tonnes +1981,Malawi,1981,1,1000 tonnes +1982,Malawi,1982,1,1000 tonnes +1983,Malawi,1983,1,1000 tonnes +1984,Malawi,1984,2,1000 tonnes +1985,Malawi,1985,3,1000 tonnes +1986,Malawi,1986,4,1000 tonnes +1987,Malawi,1987,5,1000 tonnes +1988,Malawi,1988,4,1000 tonnes +1989,Malawi,1989,7,1000 tonnes +1990,Malawi,1990,6,1000 tonnes +1991,Malawi,1991,8,1000 tonnes +1992,Malawi,1992,8,1000 tonnes +1993,Malawi,1993,4,1000 tonnes +1994,Malawi,1994,5,1000 tonnes +1995,Malawi,1995,5,1000 tonnes +1996,Malawi,1996,5,1000 tonnes +1997,Malawi,1997,5,1000 tonnes +1998,Malawi,1998,4,1000 tonnes +1999,Malawi,1999,4,1000 tonnes +2000,Malawi,2000,4,1000 tonnes +2001,Malawi,2001,4,1000 tonnes +2002,Malawi,2002,3,1000 tonnes +2003,Malawi,2003,3,1000 tonnes +2004,Malawi,2004,2,1000 tonnes +2005,Malawi,2005,1,1000 tonnes +2006,Malawi,2006,2,1000 tonnes +2007,Malawi,2007,1,1000 tonnes +2008,Malawi,2008,1,1000 tonnes +2009,Malawi,2009,6,1000 tonnes +2010,Malawi,2010,4,1000 tonnes +2011,Malawi,2011,4,1000 tonnes +2012,Malawi,2012,6,1000 tonnes +2013,Malawi,2013,6,1000 tonnes +2014,Malaysia,1961,3,1000 tonnes +2015,Malaysia,1962,3,1000 tonnes +2016,Malaysia,1963,3,1000 tonnes +2017,Malaysia,1964,3,1000 tonnes +2018,Malaysia,1965,3,1000 tonnes +2019,Malaysia,1966,3,1000 tonnes +2020,Malaysia,1967,3,1000 tonnes +2021,Malaysia,1968,4,1000 tonnes +2022,Malaysia,1969,4,1000 tonnes +2023,Malaysia,1970,4,1000 tonnes +2024,Malaysia,1971,4,1000 tonnes +2025,Malaysia,1972,4,1000 tonnes +2026,Malaysia,1973,5,1000 tonnes +2027,Malaysia,1974,6,1000 tonnes +2028,Malaysia,1975,6,1000 tonnes +2029,Malaysia,1976,8,1000 tonnes +2030,Malaysia,1977,5,1000 tonnes +2031,Malaysia,1978,6,1000 tonnes +2032,Malaysia,1979,6,1000 tonnes +2033,Malaysia,1980,10,1000 tonnes +2034,Malaysia,1981,10,1000 tonnes +2035,Malaysia,1982,11,1000 tonnes +2036,Malaysia,1983,12,1000 tonnes +2037,Malaysia,1984,12,1000 tonnes +2038,Malaysia,1985,11,1000 tonnes +2039,Malaysia,1986,10,1000 tonnes +2040,Malaysia,1987,12,1000 tonnes +2041,Malaysia,1988,10,1000 tonnes +2042,Malaysia,1989,7,1000 tonnes +2043,Malaysia,1990,7,1000 tonnes +2044,Malaysia,1991,8,1000 tonnes +2045,Malaysia,1992,9,1000 tonnes +2046,Malaysia,1993,11,1000 tonnes +2047,Malaysia,1994,11,1000 tonnes +2048,Malaysia,1995,11,1000 tonnes +2049,Malaysia,1996,15,1000 tonnes +2050,Malaysia,1997,20,1000 tonnes +2051,Malaysia,1998,28,1000 tonnes +2052,Malaysia,1999,35,1000 tonnes +2053,Malaysia,2000,40,1000 tonnes +2054,Malaysia,2001,39,1000 tonnes +2055,Malaysia,2002,39,1000 tonnes +2056,Malaysia,2003,40,1000 tonnes +2057,Malaysia,2004,39,1000 tonnes +2058,Malaysia,2005,40,1000 tonnes +2059,Malaysia,2006,33,1000 tonnes +2060,Malaysia,2007,21,1000 tonnes +2061,Malaysia,2008,23,1000 tonnes +2062,Malaysia,2009,16,1000 tonnes +2063,Malaysia,2010,16,1000 tonnes +2064,Malaysia,2011,15,1000 tonnes +2065,Malaysia,2012,10,1000 tonnes +2066,Malaysia,2013,15,1000 tonnes +2067,Mauritius,1961,0,1000 tonnes +2068,Mauritius,1962,0,1000 tonnes +2069,Mauritius,1963,0,1000 tonnes +2070,Mauritius,1964,0,1000 tonnes +2071,Mauritius,1965,0,1000 tonnes +2072,Mauritius,1966,0,1000 tonnes +2073,Mauritius,1967,0,1000 tonnes +2074,Mauritius,1968,0,1000 tonnes +2075,Mauritius,1969,0,1000 tonnes +2076,Mauritius,1970,0,1000 tonnes +2077,Mauritius,1971,0,1000 tonnes +2078,Mauritius,1972,0,1000 tonnes +2079,Mauritius,1973,0,1000 tonnes +2080,Mauritius,1974,0,1000 tonnes +2081,Mauritius,1975,0,1000 tonnes +2082,Mauritius,1976,0,1000 tonnes +2083,Mauritius,1977,0,1000 tonnes +2084,Mauritius,1978,0,1000 tonnes +2085,Mauritius,1979,0,1000 tonnes +2086,Mauritius,1980,0,1000 tonnes +2087,Mauritius,1981,0,1000 tonnes +2088,Mauritius,1982,0,1000 tonnes +2089,Mauritius,1983,0,1000 tonnes +2090,Mauritius,1984,0,1000 tonnes +2091,Mauritius,1985,0,1000 tonnes +2092,Mauritius,1986,0,1000 tonnes +2093,Mauritius,1987,0,1000 tonnes +2094,Mauritius,1988,0,1000 tonnes +2095,Mauritius,1989,0,1000 tonnes +2096,Mauritius,1990,0,1000 tonnes +2097,Mauritius,1991,0,1000 tonnes +2098,Mauritius,1992,0,1000 tonnes +2099,Mauritius,1993,0,1000 tonnes +2100,Mauritius,1994,0,1000 tonnes +2101,Mauritius,1995,0,1000 tonnes +2102,Mauritius,1996,0,1000 tonnes +2103,Mauritius,1997,0,1000 tonnes +2104,Mauritius,1998,0,1000 tonnes +2105,Mauritius,1999,0,1000 tonnes +2106,Mauritius,2000,0,1000 tonnes +2107,Mauritius,2001,0,1000 tonnes +2108,Mauritius,2002,0,1000 tonnes +2109,Mauritius,2003,0,1000 tonnes +2110,Mauritius,2004,0,1000 tonnes +2111,Mauritius,2005,0,1000 tonnes +2112,Mauritius,2006,0,1000 tonnes +2113,Mauritius,2007,0,1000 tonnes +2114,Mauritius,2008,0,1000 tonnes +2115,Mauritius,2009,0,1000 tonnes +2116,Mauritius,2010,0,1000 tonnes +2117,Mauritius,2011,0,1000 tonnes +2118,Mauritius,2012,0,1000 tonnes +2119,Mauritius,2013,0,1000 tonnes +2120,Mexico,1961,127,1000 tonnes +2121,Mexico,1962,140,1000 tonnes +2122,Mexico,1963,137,1000 tonnes +2123,Mexico,1964,156,1000 tonnes +2124,Mexico,1965,162,1000 tonnes +2125,Mexico,1966,183,1000 tonnes +2126,Mexico,1967,225,1000 tonnes +2127,Mexico,1968,213,1000 tonnes +2128,Mexico,1969,173,1000 tonnes +2129,Mexico,1970,185,1000 tonnes +2130,Mexico,1971,187,1000 tonnes +2131,Mexico,1972,203,1000 tonnes +2132,Mexico,1973,222,1000 tonnes +2133,Mexico,1974,221,1000 tonnes +2134,Mexico,1975,228,1000 tonnes +2135,Mexico,1976,212,1000 tonnes +2136,Mexico,1977,182,1000 tonnes +2137,Mexico,1978,242,1000 tonnes +2138,Mexico,1979,220,1000 tonnes +2139,Mexico,1980,220,1000 tonnes +2140,Mexico,1981,263,1000 tonnes +2141,Mexico,1982,252,1000 tonnes +2142,Mexico,1983,308,1000 tonnes +2143,Mexico,1984,240,1000 tonnes +2144,Mexico,1985,260,1000 tonnes +2145,Mexico,1986,375,1000 tonnes +2146,Mexico,1987,336,1000 tonnes +2147,Mexico,1988,423,1000 tonnes +2148,Mexico,1989,343,1000 tonnes +2149,Mexico,1990,440,1000 tonnes +2150,Mexico,1991,334,1000 tonnes +2151,Mexico,1992,360,1000 tonnes +2152,Mexico,1993,336,1000 tonnes +2153,Mexico,1994,325,1000 tonnes +2154,Mexico,1995,325,1000 tonnes +2155,Mexico,1996,374,1000 tonnes +2156,Mexico,1997,368,1000 tonnes +2157,Mexico,1998,277,1000 tonnes +2158,Mexico,1999,302,1000 tonnes +2159,Mexico,2000,338,1000 tonnes +2160,Mexico,2001,303,1000 tonnes +2161,Mexico,2002,313,1000 tonnes +2162,Mexico,2003,311,1000 tonnes +2163,Mexico,2004,312,1000 tonnes +2164,Mexico,2005,294,1000 tonnes +2165,Mexico,2006,280,1000 tonnes +2166,Mexico,2007,269,1000 tonnes +2167,Mexico,2008,260,1000 tonnes +2168,Mexico,2009,264,1000 tonnes +2169,Mexico,2010,245,1000 tonnes +2170,Mexico,2011,237,1000 tonnes +2171,Mexico,2012,246,1000 tonnes +2172,Mexico,2013,232,1000 tonnes +2173,Mozambique,1961,1,1000 tonnes +2174,Mozambique,1962,1,1000 tonnes +2175,Mozambique,1963,1,1000 tonnes +2176,Mozambique,1964,1,1000 tonnes +2177,Mozambique,1965,1,1000 tonnes +2178,Mozambique,1966,1,1000 tonnes +2179,Mozambique,1967,1,1000 tonnes +2180,Mozambique,1968,1,1000 tonnes +2181,Mozambique,1969,1,1000 tonnes +2182,Mozambique,1970,1,1000 tonnes +2183,Mozambique,1971,1,1000 tonnes +2184,Mozambique,1972,1,1000 tonnes +2185,Mozambique,1973,1,1000 tonnes +2186,Mozambique,1974,1,1000 tonnes +2187,Mozambique,1975,1,1000 tonnes +2188,Mozambique,1976,1,1000 tonnes +2189,Mozambique,1977,1,1000 tonnes +2190,Mozambique,1978,1,1000 tonnes +2191,Mozambique,1979,1,1000 tonnes +2192,Mozambique,1980,1,1000 tonnes +2193,Mozambique,1981,1,1000 tonnes +2194,Mozambique,1982,1,1000 tonnes +2195,Mozambique,1983,1,1000 tonnes +2196,Mozambique,1984,1,1000 tonnes +2197,Mozambique,1985,1,1000 tonnes +2198,Mozambique,1986,1,1000 tonnes +2199,Mozambique,1987,1,1000 tonnes +2200,Mozambique,1988,1,1000 tonnes +2201,Mozambique,1989,1,1000 tonnes +2202,Mozambique,1990,1,1000 tonnes +2203,Mozambique,1991,1,1000 tonnes +2204,Mozambique,1992,1,1000 tonnes +2205,Mozambique,1993,1,1000 tonnes +2206,Mozambique,1994,1,1000 tonnes +2207,Mozambique,1995,1,1000 tonnes +2208,Mozambique,1996,1,1000 tonnes +2209,Mozambique,1997,1,1000 tonnes +2210,Mozambique,1998,1,1000 tonnes +2211,Mozambique,1999,1,1000 tonnes +2212,Mozambique,2000,1,1000 tonnes +2213,Mozambique,2001,1,1000 tonnes +2214,Mozambique,2002,1,1000 tonnes +2215,Mozambique,2003,1,1000 tonnes +2216,Mozambique,2004,1,1000 tonnes +2217,Mozambique,2005,1,1000 tonnes +2218,Mozambique,2006,1,1000 tonnes +2219,Mozambique,2007,1,1000 tonnes +2220,Mozambique,2008,1,1000 tonnes +2221,Mozambique,2009,1,1000 tonnes +2222,Mozambique,2010,1,1000 tonnes +2223,Mozambique,2011,1,1000 tonnes +2224,Mozambique,2012,1,1000 tonnes +2225,Mozambique,2013,1,1000 tonnes +2226,Myanmar,1961,0,1000 tonnes +2227,Myanmar,1962,1,1000 tonnes +2228,Myanmar,1963,2,1000 tonnes +2229,Myanmar,1964,1,1000 tonnes +2230,Myanmar,1965,2,1000 tonnes +2231,Myanmar,1966,1,1000 tonnes +2232,Myanmar,1967,2,1000 tonnes +2233,Myanmar,1968,1,1000 tonnes +2234,Myanmar,1969,1,1000 tonnes +2235,Myanmar,1970,1,1000 tonnes +2236,Myanmar,1971,1,1000 tonnes +2237,Myanmar,1972,1,1000 tonnes +2238,Myanmar,1973,1,1000 tonnes +2239,Myanmar,1974,1,1000 tonnes +2240,Myanmar,1975,1,1000 tonnes +2241,Myanmar,1976,1,1000 tonnes +2242,Myanmar,1977,1,1000 tonnes +2243,Myanmar,1978,1,1000 tonnes +2244,Myanmar,1979,1,1000 tonnes +2245,Myanmar,1980,1,1000 tonnes +2246,Myanmar,1981,1,1000 tonnes +2247,Myanmar,1982,1,1000 tonnes +2248,Myanmar,1983,1,1000 tonnes +2249,Myanmar,1984,1,1000 tonnes +2250,Myanmar,1985,1,1000 tonnes +2251,Myanmar,1986,1,1000 tonnes +2252,Myanmar,1987,1,1000 tonnes +2253,Myanmar,1988,2,1000 tonnes +2254,Myanmar,1989,2,1000 tonnes +2255,Myanmar,1990,1,1000 tonnes +2256,Myanmar,1991,1,1000 tonnes +2257,Myanmar,1992,1,1000 tonnes +2258,Myanmar,1993,1,1000 tonnes +2259,Myanmar,1994,1,1000 tonnes +2260,Myanmar,1995,2,1000 tonnes +2261,Myanmar,1996,2,1000 tonnes +2262,Myanmar,1997,2,1000 tonnes +2263,Myanmar,1998,2,1000 tonnes +2264,Myanmar,1999,2,1000 tonnes +2265,Myanmar,2000,2,1000 tonnes +2266,Myanmar,2001,2,1000 tonnes +2267,Myanmar,2002,2,1000 tonnes +2268,Myanmar,2003,3,1000 tonnes +2269,Myanmar,2004,3,1000 tonnes +2270,Myanmar,2005,4,1000 tonnes +2271,Myanmar,2006,4,1000 tonnes +2272,Myanmar,2007,5,1000 tonnes +2273,Myanmar,2008,6,1000 tonnes +2274,Myanmar,2009,7,1000 tonnes +2275,Myanmar,2010,7,1000 tonnes +2276,Myanmar,2011,8,1000 tonnes +2277,Myanmar,2012,8,1000 tonnes +2278,Myanmar,2013,8,1000 tonnes +2279,Nepal,1961,0,1000 tonnes +2280,Nepal,1962,0,1000 tonnes +2281,Nepal,1963,0,1000 tonnes +2282,Nepal,1964,0,1000 tonnes +2283,Nepal,1965,0,1000 tonnes +2284,Nepal,1966,0,1000 tonnes +2285,Nepal,1967,0,1000 tonnes +2286,Nepal,1968,0,1000 tonnes +2287,Nepal,1969,0,1000 tonnes +2288,Nepal,1970,0,1000 tonnes +2289,Nepal,1971,0,1000 tonnes +2290,Nepal,1972,0,1000 tonnes +2291,Nepal,1973,0,1000 tonnes +2292,Nepal,1974,0,1000 tonnes +2293,Nepal,1975,0,1000 tonnes +2294,Nepal,1976,0,1000 tonnes +2295,Nepal,1977,0,1000 tonnes +2296,Nepal,1978,0,1000 tonnes +2297,Nepal,1979,0,1000 tonnes +2298,Nepal,1980,0,1000 tonnes +2299,Nepal,1981,0,1000 tonnes +2300,Nepal,1982,0,1000 tonnes +2301,Nepal,1983,0,1000 tonnes +2302,Nepal,1984,0,1000 tonnes +2303,Nepal,1985,0,1000 tonnes +2304,Nepal,1986,0,1000 tonnes +2305,Nepal,1987,0,1000 tonnes +2306,Nepal,1988,0,1000 tonnes +2307,Nepal,1989,0,1000 tonnes +2308,Nepal,1990,0,1000 tonnes +2309,Nepal,1991,0,1000 tonnes +2310,Nepal,1992,0,1000 tonnes +2311,Nepal,1993,0,1000 tonnes +2312,Nepal,1994,0,1000 tonnes +2313,Nepal,1995,0,1000 tonnes +2314,Nepal,1996,0,1000 tonnes +2315,Nepal,1997,0,1000 tonnes +2316,Nepal,1998,0,1000 tonnes +2317,Nepal,1999,0,1000 tonnes +2318,Nepal,2000,0,1000 tonnes +2319,Nepal,2001,0,1000 tonnes +2320,Nepal,2002,0,1000 tonnes +2321,Nepal,2003,0,1000 tonnes +2322,Nepal,2004,0,1000 tonnes +2323,Nepal,2005,0,1000 tonnes +2324,Nepal,2006,0,1000 tonnes +2325,Nepal,2007,0,1000 tonnes +2326,Nepal,2008,1,1000 tonnes +2327,Nepal,2009,0,1000 tonnes +2328,Nepal,2010,0,1000 tonnes +2329,Nepal,2011,0,1000 tonnes +2330,Nepal,2012,0,1000 tonnes +2331,Nepal,2013,0,1000 tonnes +2332,New Caledonia,1961,2,1000 tonnes +2333,New Caledonia,1962,2,1000 tonnes +2334,New Caledonia,1963,2,1000 tonnes +2335,New Caledonia,1964,2,1000 tonnes +2336,New Caledonia,1965,2,1000 tonnes +2337,New Caledonia,1966,2,1000 tonnes +2338,New Caledonia,1967,2,1000 tonnes +2339,New Caledonia,1968,1,1000 tonnes +2340,New Caledonia,1969,2,1000 tonnes +2341,New Caledonia,1970,1,1000 tonnes +2342,New Caledonia,1971,1,1000 tonnes +2343,New Caledonia,1972,1,1000 tonnes +2344,New Caledonia,1973,2,1000 tonnes +2345,New Caledonia,1974,1,1000 tonnes +2346,New Caledonia,1975,2,1000 tonnes +2347,New Caledonia,1976,2,1000 tonnes +2348,New Caledonia,1977,1,1000 tonnes +2349,New Caledonia,1978,1,1000 tonnes +2350,New Caledonia,1979,1,1000 tonnes +2351,New Caledonia,1980,1,1000 tonnes +2352,New Caledonia,1981,1,1000 tonnes +2353,New Caledonia,1982,0,1000 tonnes +2354,New Caledonia,1983,0,1000 tonnes +2355,New Caledonia,1984,0,1000 tonnes +2356,New Caledonia,1985,1,1000 tonnes +2357,New Caledonia,1986,0,1000 tonnes +2358,New Caledonia,1987,0,1000 tonnes +2359,New Caledonia,1988,0,1000 tonnes +2360,New Caledonia,1989,0,1000 tonnes +2361,New Caledonia,1990,0,1000 tonnes +2362,New Caledonia,1991,0,1000 tonnes +2363,New Caledonia,1992,0,1000 tonnes +2364,New Caledonia,1993,0,1000 tonnes +2365,New Caledonia,1994,0,1000 tonnes +2366,New Caledonia,1995,0,1000 tonnes +2367,New Caledonia,1996,0,1000 tonnes +2368,New Caledonia,1997,0,1000 tonnes +2369,New Caledonia,1998,0,1000 tonnes +2370,New Caledonia,1999,0,1000 tonnes +2371,New Caledonia,2000,0,1000 tonnes +2372,New Caledonia,2001,0,1000 tonnes +2373,New Caledonia,2002,0,1000 tonnes +2374,New Caledonia,2003,0,1000 tonnes +2375,New Caledonia,2004,0,1000 tonnes +2376,New Caledonia,2005,0,1000 tonnes +2377,New Caledonia,2006,0,1000 tonnes +2378,New Caledonia,2007,0,1000 tonnes +2379,New Caledonia,2008,0,1000 tonnes +2380,New Caledonia,2009,0,1000 tonnes +2381,New Caledonia,2010,0,1000 tonnes +2382,New Caledonia,2011,0,1000 tonnes +2383,New Caledonia,2012,0,1000 tonnes +2384,New Caledonia,2013,0,1000 tonnes +2385,Nicaragua,1961,23,1000 tonnes +2386,Nicaragua,1962,30,1000 tonnes +2387,Nicaragua,1963,26,1000 tonnes +2388,Nicaragua,1964,40,1000 tonnes +2389,Nicaragua,1965,32,1000 tonnes +2390,Nicaragua,1966,25,1000 tonnes +2391,Nicaragua,1967,33,1000 tonnes +2392,Nicaragua,1968,30,1000 tonnes +2393,Nicaragua,1969,34,1000 tonnes +2394,Nicaragua,1970,39,1000 tonnes +2395,Nicaragua,1971,42,1000 tonnes +2396,Nicaragua,1972,35,1000 tonnes +2397,Nicaragua,1973,37,1000 tonnes +2398,Nicaragua,1974,41,1000 tonnes +2399,Nicaragua,1975,49,1000 tonnes +2400,Nicaragua,1976,57,1000 tonnes +2401,Nicaragua,1977,55,1000 tonnes +2402,Nicaragua,1978,65,1000 tonnes +2403,Nicaragua,1979,56,1000 tonnes +2404,Nicaragua,1980,59,1000 tonnes +2405,Nicaragua,1981,61,1000 tonnes +2406,Nicaragua,1982,72,1000 tonnes +2407,Nicaragua,1983,49,1000 tonnes +2408,Nicaragua,1984,51,1000 tonnes +2409,Nicaragua,1985,35,1000 tonnes +2410,Nicaragua,1986,43,1000 tonnes +2411,Nicaragua,1987,39,1000 tonnes +2412,Nicaragua,1988,43,1000 tonnes +2413,Nicaragua,1989,45,1000 tonnes +2414,Nicaragua,1990,28,1000 tonnes +2415,Nicaragua,1991,47,1000 tonnes +2416,Nicaragua,1992,45,1000 tonnes +2417,Nicaragua,1993,42,1000 tonnes +2418,Nicaragua,1994,41,1000 tonnes +2419,Nicaragua,1995,55,1000 tonnes +2420,Nicaragua,1996,50,1000 tonnes +2421,Nicaragua,1997,65,1000 tonnes +2422,Nicaragua,1998,65,1000 tonnes +2423,Nicaragua,1999,92,1000 tonnes +2424,Nicaragua,2000,82,1000 tonnes +2425,Nicaragua,2001,67,1000 tonnes +2426,Nicaragua,2002,60,1000 tonnes +2427,Nicaragua,2003,83,1000 tonnes +2428,Nicaragua,2004,58,1000 tonnes +2429,Nicaragua,2005,95,1000 tonnes +2430,Nicaragua,2006,70,1000 tonnes +2431,Nicaragua,2007,100,1000 tonnes +2432,Nicaragua,2008,76,1000 tonnes +2433,Nicaragua,2009,92,1000 tonnes +2434,Nicaragua,2010,79,1000 tonnes +2435,Nicaragua,2011,104,1000 tonnes +2436,Nicaragua,2012,87,1000 tonnes +2437,Nicaragua,2013,84,1000 tonnes +2438,Nigeria,1961,1,1000 tonnes +2439,Nigeria,1962,2,1000 tonnes +2440,Nigeria,1963,2,1000 tonnes +2441,Nigeria,1964,3,1000 tonnes +2442,Nigeria,1965,3,1000 tonnes +2443,Nigeria,1966,4,1000 tonnes +2444,Nigeria,1967,2,1000 tonnes +2445,Nigeria,1968,2,1000 tonnes +2446,Nigeria,1969,5,1000 tonnes +2447,Nigeria,1970,3,1000 tonnes +2448,Nigeria,1971,4,1000 tonnes +2449,Nigeria,1972,4,1000 tonnes +2450,Nigeria,1973,2,1000 tonnes +2451,Nigeria,1974,2,1000 tonnes +2452,Nigeria,1975,3,1000 tonnes +2453,Nigeria,1976,3,1000 tonnes +2454,Nigeria,1977,3,1000 tonnes +2455,Nigeria,1978,3,1000 tonnes +2456,Nigeria,1979,3,1000 tonnes +2457,Nigeria,1980,4,1000 tonnes +2458,Nigeria,1981,3,1000 tonnes +2459,Nigeria,1982,3,1000 tonnes +2460,Nigeria,1983,3,1000 tonnes +2461,Nigeria,1984,4,1000 tonnes +2462,Nigeria,1985,6,1000 tonnes +2463,Nigeria,1986,1,1000 tonnes +2464,Nigeria,1987,2,1000 tonnes +2465,Nigeria,1988,2,1000 tonnes +2466,Nigeria,1989,3,1000 tonnes +2467,Nigeria,1990,3,1000 tonnes +2468,Nigeria,1991,3,1000 tonnes +2469,Nigeria,1992,3,1000 tonnes +2470,Nigeria,1993,4,1000 tonnes +2471,Nigeria,1994,4,1000 tonnes +2472,Nigeria,1995,3,1000 tonnes +2473,Nigeria,1996,4,1000 tonnes +2474,Nigeria,1997,4,1000 tonnes +2475,Nigeria,1998,4,1000 tonnes +2476,Nigeria,1999,4,1000 tonnes +2477,Nigeria,2000,4,1000 tonnes +2478,Nigeria,2001,4,1000 tonnes +2479,Nigeria,2002,4,1000 tonnes +2480,Nigeria,2003,4,1000 tonnes +2481,Nigeria,2004,5,1000 tonnes +2482,Nigeria,2005,5,1000 tonnes +2483,Nigeria,2006,5,1000 tonnes +2484,Nigeria,2007,3,1000 tonnes +2485,Nigeria,2008,3,1000 tonnes +2486,Nigeria,2009,2,1000 tonnes +2487,Nigeria,2010,2,1000 tonnes +2488,Nigeria,2011,3,1000 tonnes +2489,Nigeria,2012,3,1000 tonnes +2490,Nigeria,2013,2,1000 tonnes +2491,Panama,1961,5,1000 tonnes +2492,Panama,1962,4,1000 tonnes +2493,Panama,1963,5,1000 tonnes +2494,Panama,1964,4,1000 tonnes +2495,Panama,1965,4,1000 tonnes +2496,Panama,1966,5,1000 tonnes +2497,Panama,1967,5,1000 tonnes +2498,Panama,1968,5,1000 tonnes +2499,Panama,1969,5,1000 tonnes +2500,Panama,1970,4,1000 tonnes +2501,Panama,1971,5,1000 tonnes +2502,Panama,1972,5,1000 tonnes +2503,Panama,1973,4,1000 tonnes +2504,Panama,1974,5,1000 tonnes +2505,Panama,1975,5,1000 tonnes +2506,Panama,1976,5,1000 tonnes +2507,Panama,1977,6,1000 tonnes +2508,Panama,1978,6,1000 tonnes +2509,Panama,1979,6,1000 tonnes +2510,Panama,1980,7,1000 tonnes +2511,Panama,1981,7,1000 tonnes +2512,Panama,1982,8,1000 tonnes +2513,Panama,1983,9,1000 tonnes +2514,Panama,1984,11,1000 tonnes +2515,Panama,1985,9,1000 tonnes +2516,Panama,1986,11,1000 tonnes +2517,Panama,1987,10,1000 tonnes +2518,Panama,1988,10,1000 tonnes +2519,Panama,1989,10,1000 tonnes +2520,Panama,1990,12,1000 tonnes +2521,Panama,1991,12,1000 tonnes +2522,Panama,1992,11,1000 tonnes +2523,Panama,1993,10,1000 tonnes +2524,Panama,1994,11,1000 tonnes +2525,Panama,1995,11,1000 tonnes +2526,Panama,1996,10,1000 tonnes +2527,Panama,1997,11,1000 tonnes +2528,Panama,1998,11,1000 tonnes +2529,Panama,1999,12,1000 tonnes +2530,Panama,2000,10,1000 tonnes +2531,Panama,2001,15,1000 tonnes +2532,Panama,2002,11,1000 tonnes +2533,Panama,2003,12,1000 tonnes +2534,Panama,2004,13,1000 tonnes +2535,Panama,2005,13,1000 tonnes +2536,Panama,2006,13,1000 tonnes +2537,Panama,2007,14,1000 tonnes +2538,Panama,2008,13,1000 tonnes +2539,Panama,2009,13,1000 tonnes +2540,Panama,2010,12,1000 tonnes +2541,Panama,2011,10,1000 tonnes +2542,Panama,2012,10,1000 tonnes +2543,Panama,2013,10,1000 tonnes +2544,Paraguay,1961,6,1000 tonnes +2545,Paraguay,1962,6,1000 tonnes +2546,Paraguay,1963,7,1000 tonnes +2547,Paraguay,1964,7,1000 tonnes +2548,Paraguay,1965,6,1000 tonnes +2549,Paraguay,1966,7,1000 tonnes +2550,Paraguay,1967,7,1000 tonnes +2551,Paraguay,1968,7,1000 tonnes +2552,Paraguay,1969,6,1000 tonnes +2553,Paraguay,1970,4,1000 tonnes +2554,Paraguay,1971,6,1000 tonnes +2555,Paraguay,1972,8,1000 tonnes +2556,Paraguay,1973,7,1000 tonnes +2557,Paraguay,1974,8,1000 tonnes +2558,Paraguay,1975,8,1000 tonnes +2559,Paraguay,1976,4,1000 tonnes +2560,Paraguay,1977,6,1000 tonnes +2561,Paraguay,1978,7,1000 tonnes +2562,Paraguay,1979,8,1000 tonnes +2563,Paraguay,1980,8,1000 tonnes +2564,Paraguay,1981,13,1000 tonnes +2565,Paraguay,1982,14,1000 tonnes +2566,Paraguay,1983,15,1000 tonnes +2567,Paraguay,1984,18,1000 tonnes +2568,Paraguay,1985,18,1000 tonnes +2569,Paraguay,1986,19,1000 tonnes +2570,Paraguay,1987,18,1000 tonnes +2571,Paraguay,1988,18,1000 tonnes +2572,Paraguay,1989,18,1000 tonnes +2573,Paraguay,1990,18,1000 tonnes +2574,Paraguay,1991,20,1000 tonnes +2575,Paraguay,1992,5,1000 tonnes +2576,Paraguay,1993,5,1000 tonnes +2577,Paraguay,1994,5,1000 tonnes +2578,Paraguay,1995,4,1000 tonnes +2579,Paraguay,1996,4,1000 tonnes +2580,Paraguay,1997,5,1000 tonnes +2581,Paraguay,1998,5,1000 tonnes +2582,Paraguay,1999,5,1000 tonnes +2583,Paraguay,2000,4,1000 tonnes +2584,Paraguay,2001,3,1000 tonnes +2585,Paraguay,2002,2,1000 tonnes +2586,Paraguay,2003,3,1000 tonnes +2587,Paraguay,2004,3,1000 tonnes +2588,Paraguay,2005,3,1000 tonnes +2589,Paraguay,2006,3,1000 tonnes +2590,Paraguay,2007,3,1000 tonnes +2591,Paraguay,2008,0,1000 tonnes +2592,Paraguay,2009,0,1000 tonnes +2593,Paraguay,2010,0,1000 tonnes +2594,Paraguay,2011,0,1000 tonnes +2595,Paraguay,2012,0,1000 tonnes +2596,Paraguay,2013,0,1000 tonnes +2597,Peru,1961,43,1000 tonnes +2598,Peru,1962,46,1000 tonnes +2599,Peru,1963,49,1000 tonnes +2600,Peru,1964,53,1000 tonnes +2601,Peru,1965,48,1000 tonnes +2602,Peru,1966,52,1000 tonnes +2603,Peru,1967,53,1000 tonnes +2604,Peru,1968,65,1000 tonnes +2605,Peru,1969,68,1000 tonnes +2606,Peru,1970,65,1000 tonnes +2607,Peru,1971,71,1000 tonnes +2608,Peru,1972,70,1000 tonnes +2609,Peru,1973,70,1000 tonnes +2610,Peru,1974,70,1000 tonnes +2611,Peru,1975,65,1000 tonnes +2612,Peru,1976,65,1000 tonnes +2613,Peru,1977,80,1000 tonnes +2614,Peru,1978,88,1000 tonnes +2615,Peru,1979,105,1000 tonnes +2616,Peru,1980,86,1000 tonnes +2617,Peru,1981,79,1000 tonnes +2618,Peru,1982,79,1000 tonnes +2619,Peru,1983,86,1000 tonnes +2620,Peru,1984,83,1000 tonnes +2621,Peru,1985,91,1000 tonnes +2622,Peru,1986,96,1000 tonnes +2623,Peru,1987,99,1000 tonnes +2624,Peru,1988,99,1000 tonnes +2625,Peru,1989,106,1000 tonnes +2626,Peru,1990,81,1000 tonnes +2627,Peru,1991,83,1000 tonnes +2628,Peru,1992,87,1000 tonnes +2629,Peru,1993,86,1000 tonnes +2630,Peru,1994,91,1000 tonnes +2631,Peru,1995,97,1000 tonnes +2632,Peru,1996,107,1000 tonnes +2633,Peru,1997,133,1000 tonnes +2634,Peru,1998,145,1000 tonnes +2635,Peru,1999,167,1000 tonnes +2636,Peru,2000,192,1000 tonnes +2637,Peru,2001,196,1000 tonnes +2638,Peru,2002,213,1000 tonnes +2639,Peru,2003,203,1000 tonnes +2640,Peru,2004,231,1000 tonnes +2641,Peru,2005,189,1000 tonnes +2642,Peru,2006,273,1000 tonnes +2643,Peru,2007,226,1000 tonnes +2644,Peru,2008,274,1000 tonnes +2645,Peru,2009,243,1000 tonnes +2646,Peru,2010,265,1000 tonnes +2647,Peru,2011,332,1000 tonnes +2648,Peru,2012,314,1000 tonnes +2649,Peru,2013,256,1000 tonnes +2650,Philippines,1961,32,1000 tonnes +2651,Philippines,1962,43,1000 tonnes +2652,Philippines,1963,33,1000 tonnes +2653,Philippines,1964,39,1000 tonnes +2654,Philippines,1965,44,1000 tonnes +2655,Philippines,1966,43,1000 tonnes +2656,Philippines,1967,44,1000 tonnes +2657,Philippines,1968,44,1000 tonnes +2658,Philippines,1969,44,1000 tonnes +2659,Philippines,1970,49,1000 tonnes +2660,Philippines,1971,50,1000 tonnes +2661,Philippines,1972,52,1000 tonnes +2662,Philippines,1973,51,1000 tonnes +2663,Philippines,1974,53,1000 tonnes +2664,Philippines,1975,91,1000 tonnes +2665,Philippines,1976,81,1000 tonnes +2666,Philippines,1977,105,1000 tonnes +2667,Philippines,1978,119,1000 tonnes +2668,Philippines,1979,116,1000 tonnes +2669,Philippines,1980,125,1000 tonnes +2670,Philippines,1981,147,1000 tonnes +2671,Philippines,1982,171,1000 tonnes +2672,Philippines,1983,147,1000 tonnes +2673,Philippines,1984,117,1000 tonnes +2674,Philippines,1985,135,1000 tonnes +2675,Philippines,1986,145,1000 tonnes +2676,Philippines,1987,140,1000 tonnes +2677,Philippines,1988,142,1000 tonnes +2678,Philippines,1989,156,1000 tonnes +2679,Philippines,1990,126,1000 tonnes +2680,Philippines,1991,125,1000 tonnes +2681,Philippines,1992,127,1000 tonnes +2682,Philippines,1993,124,1000 tonnes +2683,Philippines,1994,124,1000 tonnes +2684,Philippines,1995,127,1000 tonnes +2685,Philippines,1996,117,1000 tonnes +2686,Philippines,1997,120,1000 tonnes +2687,Philippines,1998,108,1000 tonnes +2688,Philippines,1999,104,1000 tonnes +2689,Philippines,2000,108,1000 tonnes +2690,Philippines,2001,112,1000 tonnes +2691,Philippines,2002,107,1000 tonnes +2692,Philippines,2003,106,1000 tonnes +2693,Philippines,2004,103,1000 tonnes +2694,Philippines,2005,106,1000 tonnes +2695,Philippines,2006,104,1000 tonnes +2696,Philippines,2007,98,1000 tonnes +2697,Philippines,2008,97,1000 tonnes +2698,Philippines,2009,96,1000 tonnes +2699,Philippines,2010,95,1000 tonnes +2700,Philippines,2011,89,1000 tonnes +2701,Philippines,2012,89,1000 tonnes +2702,Philippines,2013,78,1000 tonnes +2703,Rwanda,1961,11,1000 tonnes +2704,Rwanda,1962,10,1000 tonnes +2705,Rwanda,1963,5,1000 tonnes +2706,Rwanda,1964,8,1000 tonnes +2707,Rwanda,1965,10,1000 tonnes +2708,Rwanda,1966,9,1000 tonnes +2709,Rwanda,1967,11,1000 tonnes +2710,Rwanda,1968,12,1000 tonnes +2711,Rwanda,1969,12,1000 tonnes +2712,Rwanda,1970,14,1000 tonnes +2713,Rwanda,1971,15,1000 tonnes +2714,Rwanda,1972,11,1000 tonnes +2715,Rwanda,1973,14,1000 tonnes +2716,Rwanda,1974,14,1000 tonnes +2717,Rwanda,1975,18,1000 tonnes +2718,Rwanda,1976,20,1000 tonnes +2719,Rwanda,1977,21,1000 tonnes +2720,Rwanda,1978,22,1000 tonnes +2721,Rwanda,1979,26,1000 tonnes +2722,Rwanda,1980,23,1000 tonnes +2723,Rwanda,1981,29,1000 tonnes +2724,Rwanda,1982,27,1000 tonnes +2725,Rwanda,1983,34,1000 tonnes +2726,Rwanda,1984,33,1000 tonnes +2727,Rwanda,1985,43,1000 tonnes +2728,Rwanda,1986,41,1000 tonnes +2729,Rwanda,1987,42,1000 tonnes +2730,Rwanda,1988,43,1000 tonnes +2731,Rwanda,1989,31,1000 tonnes +2732,Rwanda,1990,35,1000 tonnes +2733,Rwanda,1991,35,1000 tonnes +2734,Rwanda,1992,39,1000 tonnes +2735,Rwanda,1993,28,1000 tonnes +2736,Rwanda,1994,1,1000 tonnes +2737,Rwanda,1995,22,1000 tonnes +2738,Rwanda,1996,15,1000 tonnes +2739,Rwanda,1997,15,1000 tonnes +2740,Rwanda,1998,14,1000 tonnes +2741,Rwanda,1999,19,1000 tonnes +2742,Rwanda,2000,16,1000 tonnes +2743,Rwanda,2001,18,1000 tonnes +2744,Rwanda,2002,19,1000 tonnes +2745,Rwanda,2003,14,1000 tonnes +2746,Rwanda,2004,20,1000 tonnes +2747,Rwanda,2005,19,1000 tonnes +2748,Rwanda,2006,22,1000 tonnes +2749,Rwanda,2007,15,1000 tonnes +2750,Rwanda,2008,21,1000 tonnes +2751,Rwanda,2009,19,1000 tonnes +2752,Rwanda,2010,19,1000 tonnes +2753,Rwanda,2011,22,1000 tonnes +2754,Rwanda,2012,20,1000 tonnes +2755,Rwanda,2013,18,1000 tonnes +2756,Saint Lucia,1961,0,1000 tonnes +2757,Saint Lucia,1962,0,1000 tonnes +2758,Saint Lucia,1963,0,1000 tonnes +2759,Saint Lucia,1964,0,1000 tonnes +2760,Saint Lucia,1965,0,1000 tonnes +2761,Saint Lucia,1966,0,1000 tonnes +2762,Saint Lucia,1967,0,1000 tonnes +2763,Saint Lucia,1968,0,1000 tonnes +2764,Saint Lucia,1969,0,1000 tonnes +2765,Saint Lucia,1970,0,1000 tonnes +2766,Saint Lucia,1971,0,1000 tonnes +2767,Saint Lucia,1972,0,1000 tonnes +2768,Saint Lucia,1973,0,1000 tonnes +2769,Saint Lucia,1974,0,1000 tonnes +2770,Saint Lucia,1975,0,1000 tonnes +2771,Saint Lucia,1976,0,1000 tonnes +2772,Saint Lucia,1977,0,1000 tonnes +2773,Saint Lucia,1978,0,1000 tonnes +2774,Saint Lucia,1979,0,1000 tonnes +2775,Saint Lucia,1980,0,1000 tonnes +2776,Saint Lucia,1981,0,1000 tonnes +2777,Saint Lucia,1982,0,1000 tonnes +2778,Saint Lucia,1983,0,1000 tonnes +2779,Saint Lucia,1984,0,1000 tonnes +2780,Saint Lucia,1985,0,1000 tonnes +2781,Saint Lucia,1986,0,1000 tonnes +2782,Saint Lucia,1987,0,1000 tonnes +2783,Saint Lucia,1988,0,1000 tonnes +2784,Saint Lucia,1989,0,1000 tonnes +2785,Saint Lucia,1990,0,1000 tonnes +2786,Saint Lucia,1991,0,1000 tonnes +2787,Saint Lucia,1992,0,1000 tonnes +2788,Saint Lucia,1993,0,1000 tonnes +2789,Saint Lucia,1994,0,1000 tonnes +2790,Saint Lucia,1995,0,1000 tonnes +2791,Saint Lucia,1996,0,1000 tonnes +2792,Saint Lucia,1997,0,1000 tonnes +2793,Saint Lucia,1998,0,1000 tonnes +2794,Saint Lucia,1999,0,1000 tonnes +2795,Saint Lucia,2000,0,1000 tonnes +2796,Saint Lucia,2001,0,1000 tonnes +2797,Saint Lucia,2002,0,1000 tonnes +2798,Saint Lucia,2003,0,1000 tonnes +2799,Saint Lucia,2004,0,1000 tonnes +2800,Saint Lucia,2005,0,1000 tonnes +2801,Saint Lucia,2006,0,1000 tonnes +2802,Saint Lucia,2007,0,1000 tonnes +2803,Saint Lucia,2008,0,1000 tonnes +2804,Saint Lucia,2009,0,1000 tonnes +2805,Saint Lucia,2010,0,1000 tonnes +2806,Saint Lucia,2011,0,1000 tonnes +2807,Saint Lucia,2012,0,1000 tonnes +2808,Saint Lucia,2013,0,1000 tonnes +2809,Saint Vincent and the Grenadines,1961,0,1000 tonnes +2810,Saint Vincent and the Grenadines,1962,0,1000 tonnes +2811,Saint Vincent and the Grenadines,1963,0,1000 tonnes +2812,Saint Vincent and the Grenadines,1964,0,1000 tonnes +2813,Saint Vincent and the Grenadines,1965,0,1000 tonnes +2814,Saint Vincent and the Grenadines,1966,0,1000 tonnes +2815,Saint Vincent and the Grenadines,1967,0,1000 tonnes +2816,Saint Vincent and the Grenadines,1968,0,1000 tonnes +2817,Saint Vincent and the Grenadines,1969,0,1000 tonnes +2818,Saint Vincent and the Grenadines,1970,0,1000 tonnes +2819,Saint Vincent and the Grenadines,1971,0,1000 tonnes +2820,Saint Vincent and the Grenadines,1972,0,1000 tonnes +2821,Saint Vincent and the Grenadines,1973,0,1000 tonnes +2822,Saint Vincent and the Grenadines,1974,0,1000 tonnes +2823,Saint Vincent and the Grenadines,1975,0,1000 tonnes +2824,Saint Vincent and the Grenadines,1976,0,1000 tonnes +2825,Saint Vincent and the Grenadines,1977,0,1000 tonnes +2826,Saint Vincent and the Grenadines,1978,0,1000 tonnes +2827,Saint Vincent and the Grenadines,1979,0,1000 tonnes +2828,Saint Vincent and the Grenadines,1980,0,1000 tonnes +2829,Saint Vincent and the Grenadines,1981,0,1000 tonnes +2830,Saint Vincent and the Grenadines,1982,0,1000 tonnes +2831,Saint Vincent and the Grenadines,1983,0,1000 tonnes +2832,Saint Vincent and the Grenadines,1984,0,1000 tonnes +2833,Saint Vincent and the Grenadines,1985,0,1000 tonnes +2834,Saint Vincent and the Grenadines,1986,0,1000 tonnes +2835,Saint Vincent and the Grenadines,1987,0,1000 tonnes +2836,Saint Vincent and the Grenadines,1988,0,1000 tonnes +2837,Saint Vincent and the Grenadines,1989,0,1000 tonnes +2838,Saint Vincent and the Grenadines,1990,0,1000 tonnes +2839,Saint Vincent and the Grenadines,1991,0,1000 tonnes +2840,Saint Vincent and the Grenadines,1992,0,1000 tonnes +2841,Saint Vincent and the Grenadines,1993,0,1000 tonnes +2842,Saint Vincent and the Grenadines,1994,0,1000 tonnes +2843,Saint Vincent and the Grenadines,1995,0,1000 tonnes +2844,Saint Vincent and the Grenadines,1996,0,1000 tonnes +2845,Saint Vincent and the Grenadines,1997,0,1000 tonnes +2846,Saint Vincent and the Grenadines,1998,0,1000 tonnes +2847,Saint Vincent and the Grenadines,1999,0,1000 tonnes +2848,Saint Vincent and the Grenadines,2000,0,1000 tonnes +2849,Saint Vincent and the Grenadines,2001,0,1000 tonnes +2850,Saint Vincent and the Grenadines,2002,0,1000 tonnes +2851,Saint Vincent and the Grenadines,2003,0,1000 tonnes +2852,Saint Vincent and the Grenadines,2004,0,1000 tonnes +2853,Saint Vincent and the Grenadines,2005,0,1000 tonnes +2854,Saint Vincent and the Grenadines,2006,0,1000 tonnes +2855,Saint Vincent and the Grenadines,2007,0,1000 tonnes +2856,Saint Vincent and the Grenadines,2008,0,1000 tonnes +2857,Saint Vincent and the Grenadines,2009,0,1000 tonnes +2858,Saint Vincent and the Grenadines,2010,0,1000 tonnes +2859,Saint Vincent and the Grenadines,2011,0,1000 tonnes +2860,Saint Vincent and the Grenadines,2012,0,1000 tonnes +2861,Saint Vincent and the Grenadines,2013,0,1000 tonnes +2862,Samoa,1961,0,1000 tonnes +2863,Samoa,1962,0,1000 tonnes +2864,Samoa,1963,0,1000 tonnes +2865,Samoa,1964,0,1000 tonnes +2866,Samoa,1965,0,1000 tonnes +2867,Samoa,1966,0,1000 tonnes +2868,Samoa,1967,0,1000 tonnes +2869,Samoa,1968,0,1000 tonnes +2870,Samoa,1969,0,1000 tonnes +2871,Samoa,1970,0,1000 tonnes +2872,Samoa,1971,0,1000 tonnes +2873,Samoa,1972,0,1000 tonnes +2874,Samoa,1973,0,1000 tonnes +2875,Samoa,1974,0,1000 tonnes +2876,Samoa,1975,0,1000 tonnes +2877,Samoa,1976,0,1000 tonnes +2878,Samoa,1977,0,1000 tonnes +2879,Samoa,1978,0,1000 tonnes +2880,Samoa,1979,0,1000 tonnes +2881,Samoa,1980,0,1000 tonnes +2882,Samoa,1981,0,1000 tonnes +2883,Samoa,1982,0,1000 tonnes +2884,Samoa,1983,0,1000 tonnes +2885,Samoa,1984,0,1000 tonnes +2886,Samoa,1985,0,1000 tonnes +2887,Samoa,1986,0,1000 tonnes +2888,Samoa,1987,0,1000 tonnes +2889,Samoa,1988,0,1000 tonnes +2890,Samoa,1989,0,1000 tonnes +2891,Samoa,1990,0,1000 tonnes +2892,Samoa,1991,0,1000 tonnes +2893,Samoa,1992,0,1000 tonnes +2894,Samoa,1993,0,1000 tonnes +2895,Samoa,1994,0,1000 tonnes +2896,Samoa,1995,0,1000 tonnes +2897,Samoa,1996,0,1000 tonnes +2898,Samoa,1997,0,1000 tonnes +2899,Samoa,1998,0,1000 tonnes +2900,Samoa,1999,0,1000 tonnes +2901,Samoa,2000,0,1000 tonnes +2902,Samoa,2001,0,1000 tonnes +2903,Samoa,2002,0,1000 tonnes +2904,Samoa,2003,0,1000 tonnes +2905,Samoa,2004,0,1000 tonnes +2906,Samoa,2005,0,1000 tonnes +2907,Samoa,2006,0,1000 tonnes +2908,Samoa,2007,0,1000 tonnes +2909,Samoa,2008,0,1000 tonnes +2910,Samoa,2009,0,1000 tonnes +2911,Samoa,2010,0,1000 tonnes +2912,Samoa,2011,0,1000 tonnes +2913,Samoa,2012,0,1000 tonnes +2914,Samoa,2013,0,1000 tonnes +2915,Sao Tome and Principe,1961,0,1000 tonnes +2916,Sao Tome and Principe,1962,0,1000 tonnes +2917,Sao Tome and Principe,1963,0,1000 tonnes +2918,Sao Tome and Principe,1964,0,1000 tonnes +2919,Sao Tome and Principe,1965,0,1000 tonnes +2920,Sao Tome and Principe,1966,0,1000 tonnes +2921,Sao Tome and Principe,1967,0,1000 tonnes +2922,Sao Tome and Principe,1968,0,1000 tonnes +2923,Sao Tome and Principe,1969,0,1000 tonnes +2924,Sao Tome and Principe,1970,0,1000 tonnes +2925,Sao Tome and Principe,1971,0,1000 tonnes +2926,Sao Tome and Principe,1972,0,1000 tonnes +2927,Sao Tome and Principe,1973,0,1000 tonnes +2928,Sao Tome and Principe,1974,0,1000 tonnes +2929,Sao Tome and Principe,1975,0,1000 tonnes +2930,Sao Tome and Principe,1976,0,1000 tonnes +2931,Sao Tome and Principe,1977,0,1000 tonnes +2932,Sao Tome and Principe,1978,0,1000 tonnes +2933,Sao Tome and Principe,1979,0,1000 tonnes +2934,Sao Tome and Principe,1980,0,1000 tonnes +2935,Sao Tome and Principe,1981,0,1000 tonnes +2936,Sao Tome and Principe,1982,0,1000 tonnes +2937,Sao Tome and Principe,1983,0,1000 tonnes +2938,Sao Tome and Principe,1984,0,1000 tonnes +2939,Sao Tome and Principe,1985,0,1000 tonnes +2940,Sao Tome and Principe,1986,0,1000 tonnes +2941,Sao Tome and Principe,1987,0,1000 tonnes +2942,Sao Tome and Principe,1988,0,1000 tonnes +2943,Sao Tome and Principe,1989,0,1000 tonnes +2944,Sao Tome and Principe,1990,0,1000 tonnes +2945,Sao Tome and Principe,1991,0,1000 tonnes +2946,Sao Tome and Principe,1992,0,1000 tonnes +2947,Sao Tome and Principe,1993,0,1000 tonnes +2948,Sao Tome and Principe,1994,0,1000 tonnes +2949,Sao Tome and Principe,1995,0,1000 tonnes +2950,Sao Tome and Principe,1996,0,1000 tonnes +2951,Sao Tome and Principe,1997,0,1000 tonnes +2952,Sao Tome and Principe,1998,0,1000 tonnes +2953,Sao Tome and Principe,1999,0,1000 tonnes +2954,Sao Tome and Principe,2000,0,1000 tonnes +2955,Sao Tome and Principe,2001,0,1000 tonnes +2956,Sao Tome and Principe,2002,0,1000 tonnes +2957,Sao Tome and Principe,2003,0,1000 tonnes +2958,Sao Tome and Principe,2004,0,1000 tonnes +2959,Sao Tome and Principe,2005,0,1000 tonnes +2960,Sao Tome and Principe,2006,0,1000 tonnes +2961,Sao Tome and Principe,2007,0,1000 tonnes +2962,Sao Tome and Principe,2008,0,1000 tonnes +2963,Sao Tome and Principe,2009,0,1000 tonnes +2964,Sao Tome and Principe,2010,0,1000 tonnes +2965,Sao Tome and Principe,2011,0,1000 tonnes +2966,Sao Tome and Principe,2012,0,1000 tonnes +2967,Sao Tome and Principe,2013,0,1000 tonnes +2968,Saudi Arabia,1961,0,1000 tonnes +2969,Saudi Arabia,1962,0,1000 tonnes +2970,Saudi Arabia,1963,0,1000 tonnes +2971,Saudi Arabia,1964,0,1000 tonnes +2972,Saudi Arabia,1965,0,1000 tonnes +2973,Saudi Arabia,1966,0,1000 tonnes +2974,Saudi Arabia,1967,0,1000 tonnes +2975,Saudi Arabia,1968,0,1000 tonnes +2976,Saudi Arabia,1969,0,1000 tonnes +2977,Saudi Arabia,1970,0,1000 tonnes +2978,Saudi Arabia,1971,0,1000 tonnes +2979,Saudi Arabia,1972,0,1000 tonnes +2980,Saudi Arabia,1973,0,1000 tonnes +2981,Saudi Arabia,1974,0,1000 tonnes +2982,Saudi Arabia,1975,0,1000 tonnes +2983,Saudi Arabia,1976,0,1000 tonnes +2984,Saudi Arabia,1977,0,1000 tonnes +2985,Saudi Arabia,1978,0,1000 tonnes +2986,Saudi Arabia,1979,0,1000 tonnes +2987,Saudi Arabia,1980,0,1000 tonnes +2988,Saudi Arabia,1981,0,1000 tonnes +2989,Saudi Arabia,1982,0,1000 tonnes +2990,Saudi Arabia,1983,0,1000 tonnes +2991,Saudi Arabia,1984,0,1000 tonnes +2992,Saudi Arabia,1985,0,1000 tonnes +2993,Saudi Arabia,1986,0,1000 tonnes +2994,Saudi Arabia,1987,0,1000 tonnes +2995,Saudi Arabia,1988,0,1000 tonnes +2996,Saudi Arabia,1989,0,1000 tonnes +2997,Saudi Arabia,1990,0,1000 tonnes +2998,Saudi Arabia,1991,0,1000 tonnes +2999,Saudi Arabia,1992,0,1000 tonnes +3000,Saudi Arabia,1993,0,1000 tonnes +3001,Saudi Arabia,1994,0,1000 tonnes +3002,Saudi Arabia,1995,0,1000 tonnes +3003,Saudi Arabia,1996,0,1000 tonnes +3004,Saudi Arabia,1997,0,1000 tonnes +3005,Saudi Arabia,1998,0,1000 tonnes +3006,Saudi Arabia,1999,0,1000 tonnes +3007,Saudi Arabia,2000,0,1000 tonnes +3008,Saudi Arabia,2001,0,1000 tonnes +3009,Saudi Arabia,2002,0,1000 tonnes +3010,Saudi Arabia,2003,0,1000 tonnes +3011,Saudi Arabia,2004,0,1000 tonnes +3012,Saudi Arabia,2005,0,1000 tonnes +3013,Saudi Arabia,2006,0,1000 tonnes +3014,Saudi Arabia,2007,0,1000 tonnes +3015,Saudi Arabia,2008,0,1000 tonnes +3016,Saudi Arabia,2009,0,1000 tonnes +3017,Saudi Arabia,2010,0,1000 tonnes +3018,Saudi Arabia,2011,0,1000 tonnes +3019,Saudi Arabia,2012,0,1000 tonnes +3020,Saudi Arabia,2013,0,1000 tonnes +3021,Sierra Leone,1961,5,1000 tonnes +3022,Sierra Leone,1962,2,1000 tonnes +3023,Sierra Leone,1963,4,1000 tonnes +3024,Sierra Leone,1964,6,1000 tonnes +3025,Sierra Leone,1965,4,1000 tonnes +3026,Sierra Leone,1966,10,1000 tonnes +3027,Sierra Leone,1967,3,1000 tonnes +3028,Sierra Leone,1968,4,1000 tonnes +3029,Sierra Leone,1969,8,1000 tonnes +3030,Sierra Leone,1970,6,1000 tonnes +3031,Sierra Leone,1971,10,1000 tonnes +3032,Sierra Leone,1972,7,1000 tonnes +3033,Sierra Leone,1973,12,1000 tonnes +3034,Sierra Leone,1974,3,1000 tonnes +3035,Sierra Leone,1975,7,1000 tonnes +3036,Sierra Leone,1976,5,1000 tonnes +3037,Sierra Leone,1977,10,1000 tonnes +3038,Sierra Leone,1978,4,1000 tonnes +3039,Sierra Leone,1979,14,1000 tonnes +3040,Sierra Leone,1980,10,1000 tonnes +3041,Sierra Leone,1981,9,1000 tonnes +3042,Sierra Leone,1982,9,1000 tonnes +3043,Sierra Leone,1983,17,1000 tonnes +3044,Sierra Leone,1984,18,1000 tonnes +3045,Sierra Leone,1985,26,1000 tonnes +3046,Sierra Leone,1986,23,1000 tonnes +3047,Sierra Leone,1987,24,1000 tonnes +3048,Sierra Leone,1988,25,1000 tonnes +3049,Sierra Leone,1989,26,1000 tonnes +3050,Sierra Leone,1990,26,1000 tonnes +3051,Sierra Leone,1991,26,1000 tonnes +3052,Sierra Leone,1992,26,1000 tonnes +3053,Sierra Leone,1993,25,1000 tonnes +3054,Sierra Leone,1994,28,1000 tonnes +3055,Sierra Leone,1995,25,1000 tonnes +3056,Sierra Leone,1996,25,1000 tonnes +3057,Sierra Leone,1997,31,1000 tonnes +3058,Sierra Leone,1998,25,1000 tonnes +3059,Sierra Leone,1999,15,1000 tonnes +3060,Sierra Leone,2000,15,1000 tonnes +3061,Sierra Leone,2001,12,1000 tonnes +3062,Sierra Leone,2002,8,1000 tonnes +3063,Sierra Leone,2003,17,1000 tonnes +3064,Sierra Leone,2004,18,1000 tonnes +3065,Sierra Leone,2005,20,1000 tonnes +3066,Sierra Leone,2006,21,1000 tonnes +3067,Sierra Leone,2007,21,1000 tonnes +3068,Sierra Leone,2008,21,1000 tonnes +3069,Sierra Leone,2009,22,1000 tonnes +3070,Sierra Leone,2010,31,1000 tonnes +3071,Sierra Leone,2011,33,1000 tonnes +3072,Sierra Leone,2012,35,1000 tonnes +3073,Sierra Leone,2013,36,1000 tonnes +3074,Spain,1961,0,1000 tonnes +3075,Spain,1962,0,1000 tonnes +3076,Spain,1963,0,1000 tonnes +3077,Spain,1964,0,1000 tonnes +3078,Spain,1965,0,1000 tonnes +3079,Spain,1966,0,1000 tonnes +3080,Spain,1967,0,1000 tonnes +3081,Spain,1968,0,1000 tonnes +3082,Spain,1969,0,1000 tonnes +3083,Spain,1970,0,1000 tonnes +3084,Spain,1971,0,1000 tonnes +3085,Spain,1972,0,1000 tonnes +3086,Spain,1973,0,1000 tonnes +3087,Spain,1974,0,1000 tonnes +3088,Spain,1975,0,1000 tonnes +3089,Spain,1976,0,1000 tonnes +3090,Spain,1977,0,1000 tonnes +3091,Spain,1978,0,1000 tonnes +3092,Spain,1979,0,1000 tonnes +3093,Spain,1980,0,1000 tonnes +3094,Spain,1981,0,1000 tonnes +3095,Spain,1982,0,1000 tonnes +3096,Spain,1983,0,1000 tonnes +3097,Spain,1984,0,1000 tonnes +3098,Spain,1985,0,1000 tonnes +3099,Spain,1986,0,1000 tonnes +3100,Spain,1987,0,1000 tonnes +3101,Spain,1988,0,1000 tonnes +3102,Spain,1989,0,1000 tonnes +3103,Spain,1990,0,1000 tonnes +3104,Spain,1991,0,1000 tonnes +3105,Spain,1992,0,1000 tonnes +3106,Spain,1993,0,1000 tonnes +3107,Spain,1994,0,1000 tonnes +3108,Spain,1995,0,1000 tonnes +3109,Spain,1996,0,1000 tonnes +3110,Spain,1997,0,1000 tonnes +3111,Spain,1998,0,1000 tonnes +3112,Spain,1999,0,1000 tonnes +3113,Spain,2000,0,1000 tonnes +3114,Spain,2001,0,1000 tonnes +3115,Spain,2002,0,1000 tonnes +3116,Spain,2003,0,1000 tonnes +3117,Spain,2004,0,1000 tonnes +3118,Spain,2005,0,1000 tonnes +3119,Spain,2006,0,1000 tonnes +3120,Spain,2007,0,1000 tonnes +3121,Spain,2008,0,1000 tonnes +3122,Spain,2009,0,1000 tonnes +3123,Spain,2010,0,1000 tonnes +3124,Spain,2011,0,1000 tonnes +3125,Spain,2012,0,1000 tonnes +3126,Spain,2013,0,1000 tonnes +3127,Sri Lanka,1961,4,1000 tonnes +3128,Sri Lanka,1962,4,1000 tonnes +3129,Sri Lanka,1963,6,1000 tonnes +3130,Sri Lanka,1964,8,1000 tonnes +3131,Sri Lanka,1965,7,1000 tonnes +3132,Sri Lanka,1966,7,1000 tonnes +3133,Sri Lanka,1967,11,1000 tonnes +3134,Sri Lanka,1968,10,1000 tonnes +3135,Sri Lanka,1969,11,1000 tonnes +3136,Sri Lanka,1970,7,1000 tonnes +3137,Sri Lanka,1971,8,1000 tonnes +3138,Sri Lanka,1972,7,1000 tonnes +3139,Sri Lanka,1973,7,1000 tonnes +3140,Sri Lanka,1974,9,1000 tonnes +3141,Sri Lanka,1975,9,1000 tonnes +3142,Sri Lanka,1976,9,1000 tonnes +3143,Sri Lanka,1977,10,1000 tonnes +3144,Sri Lanka,1978,12,1000 tonnes +3145,Sri Lanka,1979,10,1000 tonnes +3146,Sri Lanka,1980,12,1000 tonnes +3147,Sri Lanka,1981,13,1000 tonnes +3148,Sri Lanka,1982,13,1000 tonnes +3149,Sri Lanka,1983,17,1000 tonnes +3150,Sri Lanka,1984,11,1000 tonnes +3151,Sri Lanka,1985,9,1000 tonnes +3152,Sri Lanka,1986,6,1000 tonnes +3153,Sri Lanka,1987,6,1000 tonnes +3154,Sri Lanka,1988,6,1000 tonnes +3155,Sri Lanka,1989,7,1000 tonnes +3156,Sri Lanka,1990,8,1000 tonnes +3157,Sri Lanka,1991,8,1000 tonnes +3158,Sri Lanka,1992,9,1000 tonnes +3159,Sri Lanka,1993,10,1000 tonnes +3160,Sri Lanka,1994,11,1000 tonnes +3161,Sri Lanka,1995,11,1000 tonnes +3162,Sri Lanka,1996,12,1000 tonnes +3163,Sri Lanka,1997,11,1000 tonnes +3164,Sri Lanka,1998,10,1000 tonnes +3165,Sri Lanka,1999,11,1000 tonnes +3166,Sri Lanka,2000,10,1000 tonnes +3167,Sri Lanka,2001,10,1000 tonnes +3168,Sri Lanka,2002,10,1000 tonnes +3169,Sri Lanka,2003,9,1000 tonnes +3170,Sri Lanka,2004,8,1000 tonnes +3171,Sri Lanka,2005,7,1000 tonnes +3172,Sri Lanka,2006,6,1000 tonnes +3173,Sri Lanka,2007,6,1000 tonnes +3174,Sri Lanka,2008,5,1000 tonnes +3175,Sri Lanka,2009,5,1000 tonnes +3176,Sri Lanka,2010,5,1000 tonnes +3177,Sri Lanka,2011,5,1000 tonnes +3178,Sri Lanka,2012,6,1000 tonnes +3179,Sri Lanka,2013,6,1000 tonnes +3180,Suriname,1961,0,1000 tonnes +3181,Suriname,1962,0,1000 tonnes +3182,Suriname,1963,0,1000 tonnes +3183,Suriname,1964,0,1000 tonnes +3184,Suriname,1965,0,1000 tonnes +3185,Suriname,1966,0,1000 tonnes +3186,Suriname,1967,0,1000 tonnes +3187,Suriname,1968,0,1000 tonnes +3188,Suriname,1969,0,1000 tonnes +3189,Suriname,1970,0,1000 tonnes +3190,Suriname,1971,0,1000 tonnes +3191,Suriname,1972,0,1000 tonnes +3192,Suriname,1973,0,1000 tonnes +3193,Suriname,1974,0,1000 tonnes +3194,Suriname,1975,0,1000 tonnes +3195,Suriname,1976,0,1000 tonnes +3196,Suriname,1977,0,1000 tonnes +3197,Suriname,1978,0,1000 tonnes +3198,Suriname,1979,0,1000 tonnes +3199,Suriname,1980,0,1000 tonnes +3200,Suriname,1981,0,1000 tonnes +3201,Suriname,1982,0,1000 tonnes +3202,Suriname,1983,0,1000 tonnes +3203,Suriname,1984,0,1000 tonnes +3204,Suriname,1985,0,1000 tonnes +3205,Suriname,1986,0,1000 tonnes +3206,Suriname,1987,0,1000 tonnes +3207,Suriname,1988,0,1000 tonnes +3208,Suriname,1989,0,1000 tonnes +3209,Suriname,1990,0,1000 tonnes +3210,Suriname,1991,0,1000 tonnes +3211,Suriname,1992,0,1000 tonnes +3212,Suriname,1993,0,1000 tonnes +3213,Suriname,1994,0,1000 tonnes +3214,Suriname,1995,0,1000 tonnes +3215,Suriname,1996,0,1000 tonnes +3216,Suriname,1997,0,1000 tonnes +3217,Suriname,1998,0,1000 tonnes +3218,Suriname,1999,0,1000 tonnes +3219,Suriname,2000,0,1000 tonnes +3220,Suriname,2001,0,1000 tonnes +3221,Suriname,2002,0,1000 tonnes +3222,Suriname,2003,0,1000 tonnes +3223,Suriname,2004,0,1000 tonnes +3224,Suriname,2005,0,1000 tonnes +3225,Suriname,2006,0,1000 tonnes +3226,Suriname,2007,0,1000 tonnes +3227,Suriname,2008,0,1000 tonnes +3228,Suriname,2009,0,1000 tonnes +3229,Suriname,2010,0,1000 tonnes +3230,Suriname,2011,0,1000 tonnes +3231,Suriname,2012,0,1000 tonnes +3232,Suriname,2013,0,1000 tonnes +3233,Thailand,1961,0,1000 tonnes +3234,Thailand,1962,0,1000 tonnes +3235,Thailand,1963,0,1000 tonnes +3236,Thailand,1964,0,1000 tonnes +3237,Thailand,1965,0,1000 tonnes +3238,Thailand,1966,0,1000 tonnes +3239,Thailand,1967,0,1000 tonnes +3240,Thailand,1968,0,1000 tonnes +3241,Thailand,1969,0,1000 tonnes +3242,Thailand,1970,1,1000 tonnes +3243,Thailand,1971,1,1000 tonnes +3244,Thailand,1972,2,1000 tonnes +3245,Thailand,1973,2,1000 tonnes +3246,Thailand,1974,4,1000 tonnes +3247,Thailand,1975,6,1000 tonnes +3248,Thailand,1976,8,1000 tonnes +3249,Thailand,1977,6,1000 tonnes +3250,Thailand,1978,7,1000 tonnes +3251,Thailand,1979,8,1000 tonnes +3252,Thailand,1980,9,1000 tonnes +3253,Thailand,1981,12,1000 tonnes +3254,Thailand,1982,19,1000 tonnes +3255,Thailand,1983,18,1000 tonnes +3256,Thailand,1984,18,1000 tonnes +3257,Thailand,1985,27,1000 tonnes +3258,Thailand,1986,31,1000 tonnes +3259,Thailand,1987,25,1000 tonnes +3260,Thailand,1988,35,1000 tonnes +3261,Thailand,1989,60,1000 tonnes +3262,Thailand,1990,71,1000 tonnes +3263,Thailand,1991,47,1000 tonnes +3264,Thailand,1992,80,1000 tonnes +3265,Thailand,1993,70,1000 tonnes +3266,Thailand,1994,78,1000 tonnes +3267,Thailand,1995,86,1000 tonnes +3268,Thailand,1996,80,1000 tonnes +3269,Thailand,1997,84,1000 tonnes +3270,Thailand,1998,78,1000 tonnes +3271,Thailand,1999,55,1000 tonnes +3272,Thailand,2000,81,1000 tonnes +3273,Thailand,2001,86,1000 tonnes +3274,Thailand,2002,53,1000 tonnes +3275,Thailand,2003,54,1000 tonnes +3276,Thailand,2004,62,1000 tonnes +3277,Thailand,2005,60,1000 tonnes +3278,Thailand,2006,47,1000 tonnes +3279,Thailand,2007,56,1000 tonnes +3280,Thailand,2008,50,1000 tonnes +3281,Thailand,2009,56,1000 tonnes +3282,Thailand,2010,49,1000 tonnes +3283,Thailand,2011,42,1000 tonnes +3284,Thailand,2012,41,1000 tonnes +3285,Thailand,2013,50,1000 tonnes +3286,Timor-Leste,1961,2,1000 tonnes +3287,Timor-Leste,1962,2,1000 tonnes +3288,Timor-Leste,1963,2,1000 tonnes +3289,Timor-Leste,1964,2,1000 tonnes +3290,Timor-Leste,1965,3,1000 tonnes +3291,Timor-Leste,1966,2,1000 tonnes +3292,Timor-Leste,1967,7,1000 tonnes +3293,Timor-Leste,1968,1,1000 tonnes +3294,Timor-Leste,1969,5,1000 tonnes +3295,Timor-Leste,1970,5,1000 tonnes +3296,Timor-Leste,1971,5,1000 tonnes +3297,Timor-Leste,1972,5,1000 tonnes +3298,Timor-Leste,1973,5,1000 tonnes +3299,Timor-Leste,1974,5,1000 tonnes +3300,Timor-Leste,1975,5,1000 tonnes +3301,Timor-Leste,1976,6,1000 tonnes +3302,Timor-Leste,1977,9,1000 tonnes +3303,Timor-Leste,1978,9,1000 tonnes +3304,Timor-Leste,1979,8,1000 tonnes +3305,Timor-Leste,1980,8,1000 tonnes +3306,Timor-Leste,1981,8,1000 tonnes +3307,Timor-Leste,1982,8,1000 tonnes +3308,Timor-Leste,1983,8,1000 tonnes +3309,Timor-Leste,1984,8,1000 tonnes +3310,Timor-Leste,1985,8,1000 tonnes +3311,Timor-Leste,1986,8,1000 tonnes +3312,Timor-Leste,1987,8,1000 tonnes +3313,Timor-Leste,1988,8,1000 tonnes +3314,Timor-Leste,1989,8,1000 tonnes +3315,Timor-Leste,1990,9,1000 tonnes +3316,Timor-Leste,1991,9,1000 tonnes +3317,Timor-Leste,1992,8,1000 tonnes +3318,Timor-Leste,1993,8,1000 tonnes +3319,Timor-Leste,1994,9,1000 tonnes +3320,Timor-Leste,1995,10,1000 tonnes +3321,Timor-Leste,1996,11,1000 tonnes +3322,Timor-Leste,1997,10,1000 tonnes +3323,Timor-Leste,1998,11,1000 tonnes +3324,Timor-Leste,1999,12,1000 tonnes +3325,Timor-Leste,2000,13,1000 tonnes +3326,Timor-Leste,2001,14,1000 tonnes +3327,Timor-Leste,2002,14,1000 tonnes +3328,Timor-Leste,2003,12,1000 tonnes +3329,Timor-Leste,2004,15,1000 tonnes +3330,Timor-Leste,2005,15,1000 tonnes +3331,Timor-Leste,2006,14,1000 tonnes +3332,Timor-Leste,2007,14,1000 tonnes +3333,Timor-Leste,2008,14,1000 tonnes +3334,Timor-Leste,2009,10,1000 tonnes +3335,Timor-Leste,2010,13,1000 tonnes +3336,Timor-Leste,2011,8,1000 tonnes +3337,Timor-Leste,2012,20,1000 tonnes +3338,Timor-Leste,2013,20,1000 tonnes +3339,Togo,1961,10,1000 tonnes +3340,Togo,1962,12,1000 tonnes +3341,Togo,1963,14,1000 tonnes +3342,Togo,1964,14,1000 tonnes +3343,Togo,1965,14,1000 tonnes +3344,Togo,1966,8,1000 tonnes +3345,Togo,1967,11,1000 tonnes +3346,Togo,1968,17,1000 tonnes +3347,Togo,1969,14,1000 tonnes +3348,Togo,1970,14,1000 tonnes +3349,Togo,1971,6,1000 tonnes +3350,Togo,1972,7,1000 tonnes +3351,Togo,1973,7,1000 tonnes +3352,Togo,1974,8,1000 tonnes +3353,Togo,1975,11,1000 tonnes +3354,Togo,1976,9,1000 tonnes +3355,Togo,1977,10,1000 tonnes +3356,Togo,1978,5,1000 tonnes +3357,Togo,1979,6,1000 tonnes +3358,Togo,1980,10,1000 tonnes +3359,Togo,1981,9,1000 tonnes +3360,Togo,1982,9,1000 tonnes +3361,Togo,1983,6,1000 tonnes +3362,Togo,1984,3,1000 tonnes +3363,Togo,1985,10,1000 tonnes +3364,Togo,1986,8,1000 tonnes +3365,Togo,1987,14,1000 tonnes +3366,Togo,1988,15,1000 tonnes +3367,Togo,1989,12,1000 tonnes +3368,Togo,1990,13,1000 tonnes +3369,Togo,1991,25,1000 tonnes +3370,Togo,1992,6,1000 tonnes +3371,Togo,1993,11,1000 tonnes +3372,Togo,1994,11,1000 tonnes +3373,Togo,1995,12,1000 tonnes +3374,Togo,1996,22,1000 tonnes +3375,Togo,1997,11,1000 tonnes +3376,Togo,1998,20,1000 tonnes +3377,Togo,1999,17,1000 tonnes +3378,Togo,2000,15,1000 tonnes +3379,Togo,2001,17,1000 tonnes +3380,Togo,2002,8,1000 tonnes +3381,Togo,2003,6,1000 tonnes +3382,Togo,2004,9,1000 tonnes +3383,Togo,2005,7,1000 tonnes +3384,Togo,2006,9,1000 tonnes +3385,Togo,2007,9,1000 tonnes +3386,Togo,2008,9,1000 tonnes +3387,Togo,2009,12,1000 tonnes +3388,Togo,2010,12,1000 tonnes +3389,Togo,2011,13,1000 tonnes +3390,Togo,2012,11,1000 tonnes +3391,Togo,2013,11,1000 tonnes +3392,Trinidad and Tobago,1961,3,1000 tonnes +3393,Trinidad and Tobago,1962,4,1000 tonnes +3394,Trinidad and Tobago,1963,4,1000 tonnes +3395,Trinidad and Tobago,1964,4,1000 tonnes +3396,Trinidad and Tobago,1965,4,1000 tonnes +3397,Trinidad and Tobago,1966,3,1000 tonnes +3398,Trinidad and Tobago,1967,3,1000 tonnes +3399,Trinidad and Tobago,1968,5,1000 tonnes +3400,Trinidad and Tobago,1969,3,1000 tonnes +3401,Trinidad and Tobago,1970,2,1000 tonnes +3402,Trinidad and Tobago,1971,4,1000 tonnes +3403,Trinidad and Tobago,1972,3,1000 tonnes +3404,Trinidad and Tobago,1973,3,1000 tonnes +3405,Trinidad and Tobago,1974,2,1000 tonnes +3406,Trinidad and Tobago,1975,4,1000 tonnes +3407,Trinidad and Tobago,1976,3,1000 tonnes +3408,Trinidad and Tobago,1977,3,1000 tonnes +3409,Trinidad and Tobago,1978,3,1000 tonnes +3410,Trinidad and Tobago,1979,2,1000 tonnes +3411,Trinidad and Tobago,1980,2,1000 tonnes +3412,Trinidad and Tobago,1981,2,1000 tonnes +3413,Trinidad and Tobago,1982,2,1000 tonnes +3414,Trinidad and Tobago,1983,1,1000 tonnes +3415,Trinidad and Tobago,1984,1,1000 tonnes +3416,Trinidad and Tobago,1985,2,1000 tonnes +3417,Trinidad and Tobago,1986,1,1000 tonnes +3418,Trinidad and Tobago,1987,2,1000 tonnes +3419,Trinidad and Tobago,1988,1,1000 tonnes +3420,Trinidad and Tobago,1989,1,1000 tonnes +3421,Trinidad and Tobago,1990,2,1000 tonnes +3422,Trinidad and Tobago,1991,1,1000 tonnes +3423,Trinidad and Tobago,1992,1,1000 tonnes +3424,Trinidad and Tobago,1993,1,1000 tonnes +3425,Trinidad and Tobago,1994,1,1000 tonnes +3426,Trinidad and Tobago,1995,1,1000 tonnes +3427,Trinidad and Tobago,1996,0,1000 tonnes +3428,Trinidad and Tobago,1997,1,1000 tonnes +3429,Trinidad and Tobago,1998,0,1000 tonnes +3430,Trinidad and Tobago,1999,0,1000 tonnes +3431,Trinidad and Tobago,2000,1,1000 tonnes +3432,Trinidad and Tobago,2001,0,1000 tonnes +3433,Trinidad and Tobago,2002,0,1000 tonnes +3434,Trinidad and Tobago,2003,1,1000 tonnes +3435,Trinidad and Tobago,2004,0,1000 tonnes +3436,Trinidad and Tobago,2005,0,1000 tonnes +3437,Trinidad and Tobago,2006,1,1000 tonnes +3438,Trinidad and Tobago,2007,0,1000 tonnes +3439,Trinidad and Tobago,2008,0,1000 tonnes +3440,Trinidad and Tobago,2009,0,1000 tonnes +3441,Trinidad and Tobago,2010,0,1000 tonnes +3442,Trinidad and Tobago,2011,0,1000 tonnes +3443,Trinidad and Tobago,2012,0,1000 tonnes +3444,Trinidad and Tobago,2013,0,1000 tonnes +3445,Uganda,1961,94,1000 tonnes +3446,Uganda,1962,119,1000 tonnes +3447,Uganda,1963,158,1000 tonnes +3448,Uganda,1964,172,1000 tonnes +3449,Uganda,1965,152,1000 tonnes +3450,Uganda,1966,154,1000 tonnes +3451,Uganda,1967,166,1000 tonnes +3452,Uganda,1968,133,1000 tonnes +3453,Uganda,1969,247,1000 tonnes +3454,Uganda,1970,202,1000 tonnes +3455,Uganda,1971,176,1000 tonnes +3456,Uganda,1972,184,1000 tonnes +3457,Uganda,1973,213,1000 tonnes +3458,Uganda,1974,199,1000 tonnes +3459,Uganda,1975,199,1000 tonnes +3460,Uganda,1976,137,1000 tonnes +3461,Uganda,1977,156,1000 tonnes +3462,Uganda,1978,121,1000 tonnes +3463,Uganda,1979,103,1000 tonnes +3464,Uganda,1980,135,1000 tonnes +3465,Uganda,1981,98,1000 tonnes +3466,Uganda,1982,162,1000 tonnes +3467,Uganda,1983,148,1000 tonnes +3468,Uganda,1984,146,1000 tonnes +3469,Uganda,1985,144,1000 tonnes +3470,Uganda,1986,160,1000 tonnes +3471,Uganda,1987,167,1000 tonnes +3472,Uganda,1988,151,1000 tonnes +3473,Uganda,1989,169,1000 tonnes +3474,Uganda,1990,129,1000 tonnes +3475,Uganda,1991,147,1000 tonnes +3476,Uganda,1992,110,1000 tonnes +3477,Uganda,1993,145,1000 tonnes +3478,Uganda,1994,198,1000 tonnes +3479,Uganda,1995,181,1000 tonnes +3480,Uganda,1996,288,1000 tonnes +3481,Uganda,1997,220,1000 tonnes +3482,Uganda,1998,205,1000 tonnes +3483,Uganda,1999,252,1000 tonnes +3484,Uganda,2000,143,1000 tonnes +3485,Uganda,2001,197,1000 tonnes +3486,Uganda,2002,210,1000 tonnes +3487,Uganda,2003,151,1000 tonnes +3488,Uganda,2004,170,1000 tonnes +3489,Uganda,2005,158,1000 tonnes +3490,Uganda,2006,133,1000 tonnes +3491,Uganda,2007,175,1000 tonnes +3492,Uganda,2008,212,1000 tonnes +3493,Uganda,2009,196,1000 tonnes +3494,Uganda,2010,167,1000 tonnes +3495,Uganda,2011,191,1000 tonnes +3496,Uganda,2012,186,1000 tonnes +3497,Uganda,2013,223,1000 tonnes +3498,United Republic of Tanzania,1961,33,1000 tonnes +3499,United Republic of Tanzania,1962,35,1000 tonnes +3500,United Republic of Tanzania,1963,41,1000 tonnes +3501,United Republic of Tanzania,1964,44,1000 tonnes +3502,United Republic of Tanzania,1965,56,1000 tonnes +3503,United Republic of Tanzania,1966,67,1000 tonnes +3504,United Republic of Tanzania,1967,50,1000 tonnes +3505,United Republic of Tanzania,1968,51,1000 tonnes +3506,United Republic of Tanzania,1969,52,1000 tonnes +3507,United Republic of Tanzania,1970,46,1000 tonnes +3508,United Republic of Tanzania,1971,50,1000 tonnes +3509,United Republic of Tanzania,1972,52,1000 tonnes +3510,United Republic of Tanzania,1973,55,1000 tonnes +3511,United Republic of Tanzania,1974,59,1000 tonnes +3512,United Republic of Tanzania,1975,62,1000 tonnes +3513,United Republic of Tanzania,1976,43,1000 tonnes +3514,United Republic of Tanzania,1977,50,1000 tonnes +3515,United Republic of Tanzania,1978,51,1000 tonnes +3516,United Republic of Tanzania,1979,48,1000 tonnes +3517,United Republic of Tanzania,1980,48,1000 tonnes +3518,United Republic of Tanzania,1981,66,1000 tonnes +3519,United Republic of Tanzania,1982,53,1000 tonnes +3520,United Republic of Tanzania,1983,52,1000 tonnes +3521,United Republic of Tanzania,1984,57,1000 tonnes +3522,United Republic of Tanzania,1985,46,1000 tonnes +3523,United Republic of Tanzania,1986,55,1000 tonnes +3524,United Republic of Tanzania,1987,58,1000 tonnes +3525,United Republic of Tanzania,1988,46,1000 tonnes +3526,United Republic of Tanzania,1989,49,1000 tonnes +3527,United Republic of Tanzania,1990,53,1000 tonnes +3528,United Republic of Tanzania,1991,46,1000 tonnes +3529,United Republic of Tanzania,1992,56,1000 tonnes +3530,United Republic of Tanzania,1993,60,1000 tonnes +3531,United Republic of Tanzania,1994,34,1000 tonnes +3532,United Republic of Tanzania,1995,42,1000 tonnes +3533,United Republic of Tanzania,1996,52,1000 tonnes +3534,United Republic of Tanzania,1997,44,1000 tonnes +3535,United Republic of Tanzania,1998,38,1000 tonnes +3536,United Republic of Tanzania,1999,47,1000 tonnes +3537,United Republic of Tanzania,2000,48,1000 tonnes +3538,United Republic of Tanzania,2001,58,1000 tonnes +3539,United Republic of Tanzania,2002,66,1000 tonnes +3540,United Republic of Tanzania,2003,52,1000 tonnes +3541,United Republic of Tanzania,2004,72,1000 tonnes +3542,United Republic of Tanzania,2005,95,1000 tonnes +3543,United Republic of Tanzania,2006,34,1000 tonnes +3544,United Republic of Tanzania,2007,49,1000 tonnes +3545,United Republic of Tanzania,2008,43,1000 tonnes +3546,United Republic of Tanzania,2009,62,1000 tonnes +3547,United Republic of Tanzania,2010,40,1000 tonnes +3548,United Republic of Tanzania,2011,61,1000 tonnes +3549,United Republic of Tanzania,2012,66,1000 tonnes +3550,United Republic of Tanzania,2013,71,1000 tonnes +3551,United States of America,1961,3,1000 tonnes +3552,United States of America,1962,5,1000 tonnes +3553,United States of America,1963,2,1000 tonnes +3554,United States of America,1964,4,1000 tonnes +3555,United States of America,1965,3,1000 tonnes +3556,United States of America,1966,3,1000 tonnes +3557,United States of America,1967,2,1000 tonnes +3558,United States of America,1968,2,1000 tonnes +3559,United States of America,1969,1,1000 tonnes +3560,United States of America,1970,2,1000 tonnes +3561,United States of America,1971,1,1000 tonnes +3562,United States of America,1972,1,1000 tonnes +3563,United States of America,1973,1,1000 tonnes +3564,United States of America,1974,1,1000 tonnes +3565,United States of America,1975,1,1000 tonnes +3566,United States of America,1976,1,1000 tonnes +3567,United States of America,1977,1,1000 tonnes +3568,United States of America,1978,1,1000 tonnes +3569,United States of America,1979,1,1000 tonnes +3570,United States of America,1980,1,1000 tonnes +3571,United States of America,1981,1,1000 tonnes +3572,United States of America,1982,0,1000 tonnes +3573,United States of America,1983,1,1000 tonnes +3574,United States of America,1984,1,1000 tonnes +3575,United States of America,1985,1,1000 tonnes +3576,United States of America,1986,1,1000 tonnes +3577,United States of America,1987,1,1000 tonnes +3578,United States of America,1988,1,1000 tonnes +3579,United States of America,1989,1,1000 tonnes +3580,United States of America,1990,1,1000 tonnes +3581,United States of America,1991,1,1000 tonnes +3582,United States of America,1992,1,1000 tonnes +3583,United States of America,1993,1,1000 tonnes +3584,United States of America,1994,2,1000 tonnes +3585,United States of America,1995,2,1000 tonnes +3586,United States of America,1996,2,1000 tonnes +3587,United States of America,1997,3,1000 tonnes +3588,United States of America,1998,3,1000 tonnes +3589,United States of America,1999,4,1000 tonnes +3590,United States of America,2000,4,1000 tonnes +3591,United States of America,2001,4,1000 tonnes +3592,United States of America,2002,3,1000 tonnes +3593,United States of America,2003,4,1000 tonnes +3594,United States of America,2004,3,1000 tonnes +3595,United States of America,2005,4,1000 tonnes +3596,United States of America,2006,3,1000 tonnes +3597,United States of America,2007,3,1000 tonnes +3598,United States of America,2008,4,1000 tonnes +3599,United States of America,2009,4,1000 tonnes +3600,United States of America,2010,4,1000 tonnes +3601,United States of America,2011,3,1000 tonnes +3602,United States of America,2012,3,1000 tonnes +3603,United States of America,2013,3,1000 tonnes +3604,Vanuatu,1961,0,1000 tonnes +3605,Vanuatu,1962,0,1000 tonnes +3606,Vanuatu,1963,0,1000 tonnes +3607,Vanuatu,1964,0,1000 tonnes +3608,Vanuatu,1965,0,1000 tonnes +3609,Vanuatu,1966,0,1000 tonnes +3610,Vanuatu,1967,0,1000 tonnes +3611,Vanuatu,1968,0,1000 tonnes +3612,Vanuatu,1969,0,1000 tonnes +3613,Vanuatu,1970,0,1000 tonnes +3614,Vanuatu,1971,0,1000 tonnes +3615,Vanuatu,1972,0,1000 tonnes +3616,Vanuatu,1973,0,1000 tonnes +3617,Vanuatu,1974,0,1000 tonnes +3618,Vanuatu,1975,0,1000 tonnes +3619,Vanuatu,1976,0,1000 tonnes +3620,Vanuatu,1977,0,1000 tonnes +3621,Vanuatu,1978,0,1000 tonnes +3622,Vanuatu,1979,0,1000 tonnes +3623,Vanuatu,1980,0,1000 tonnes +3624,Vanuatu,1981,0,1000 tonnes +3625,Vanuatu,1982,0,1000 tonnes +3626,Vanuatu,1983,0,1000 tonnes +3627,Vanuatu,1984,0,1000 tonnes +3628,Vanuatu,1985,0,1000 tonnes +3629,Vanuatu,1986,0,1000 tonnes +3630,Vanuatu,1987,0,1000 tonnes +3631,Vanuatu,1988,0,1000 tonnes +3632,Vanuatu,1989,0,1000 tonnes +3633,Vanuatu,1990,0,1000 tonnes +3634,Vanuatu,1991,0,1000 tonnes +3635,Vanuatu,1992,0,1000 tonnes +3636,Vanuatu,1993,0,1000 tonnes +3637,Vanuatu,1994,0,1000 tonnes +3638,Vanuatu,1995,0,1000 tonnes +3639,Vanuatu,1996,0,1000 tonnes +3640,Vanuatu,1997,0,1000 tonnes +3641,Vanuatu,1998,0,1000 tonnes +3642,Vanuatu,1999,0,1000 tonnes +3643,Vanuatu,2000,0,1000 tonnes +3644,Vanuatu,2001,0,1000 tonnes +3645,Vanuatu,2002,0,1000 tonnes +3646,Vanuatu,2003,0,1000 tonnes +3647,Vanuatu,2004,0,1000 tonnes +3648,Vanuatu,2005,0,1000 tonnes +3649,Vanuatu,2006,0,1000 tonnes +3650,Vanuatu,2007,0,1000 tonnes +3651,Vanuatu,2008,0,1000 tonnes +3652,Vanuatu,2009,0,1000 tonnes +3653,Vanuatu,2010,0,1000 tonnes +3654,Vanuatu,2011,0,1000 tonnes +3655,Vanuatu,2012,0,1000 tonnes +3656,Vanuatu,2013,0,1000 tonnes +3657,Venezuela (Bolivarian Republic of),1961,57,1000 tonnes +3658,Venezuela (Bolivarian Republic of),1962,54,1000 tonnes +3659,Venezuela (Bolivarian Republic of),1963,61,1000 tonnes +3660,Venezuela (Bolivarian Republic of),1964,56,1000 tonnes +3661,Venezuela (Bolivarian Republic of),1965,54,1000 tonnes +3662,Venezuela (Bolivarian Republic of),1966,61,1000 tonnes +3663,Venezuela (Bolivarian Republic of),1967,62,1000 tonnes +3664,Venezuela (Bolivarian Republic of),1968,46,1000 tonnes +3665,Venezuela (Bolivarian Republic of),1969,61,1000 tonnes +3666,Venezuela (Bolivarian Republic of),1970,61,1000 tonnes +3667,Venezuela (Bolivarian Republic of),1971,58,1000 tonnes +3668,Venezuela (Bolivarian Republic of),1972,40,1000 tonnes +3669,Venezuela (Bolivarian Republic of),1973,66,1000 tonnes +3670,Venezuela (Bolivarian Republic of),1974,46,1000 tonnes +3671,Venezuela (Bolivarian Republic of),1975,65,1000 tonnes +3672,Venezuela (Bolivarian Republic of),1976,40,1000 tonnes +3673,Venezuela (Bolivarian Republic of),1977,58,1000 tonnes +3674,Venezuela (Bolivarian Republic of),1978,59,1000 tonnes +3675,Venezuela (Bolivarian Republic of),1979,54,1000 tonnes +3676,Venezuela (Bolivarian Republic of),1980,58,1000 tonnes +3677,Venezuela (Bolivarian Republic of),1981,60,1000 tonnes +3678,Venezuela (Bolivarian Republic of),1982,58,1000 tonnes +3679,Venezuela (Bolivarian Republic of),1983,59,1000 tonnes +3680,Venezuela (Bolivarian Republic of),1984,61,1000 tonnes +3681,Venezuela (Bolivarian Republic of),1985,64,1000 tonnes +3682,Venezuela (Bolivarian Republic of),1986,66,1000 tonnes +3683,Venezuela (Bolivarian Republic of),1987,70,1000 tonnes +3684,Venezuela (Bolivarian Republic of),1988,71,1000 tonnes +3685,Venezuela (Bolivarian Republic of),1989,73,1000 tonnes +3686,Venezuela (Bolivarian Republic of),1990,76,1000 tonnes +3687,Venezuela (Bolivarian Republic of),1991,68,1000 tonnes +3688,Venezuela (Bolivarian Republic of),1992,69,1000 tonnes +3689,Venezuela (Bolivarian Republic of),1993,66,1000 tonnes +3690,Venezuela (Bolivarian Republic of),1994,68,1000 tonnes +3691,Venezuela (Bolivarian Republic of),1995,65,1000 tonnes +3692,Venezuela (Bolivarian Republic of),1996,73,1000 tonnes +3693,Venezuela (Bolivarian Republic of),1997,63,1000 tonnes +3694,Venezuela (Bolivarian Republic of),1998,67,1000 tonnes +3695,Venezuela (Bolivarian Republic of),1999,80,1000 tonnes +3696,Venezuela (Bolivarian Republic of),2000,78,1000 tonnes +3697,Venezuela (Bolivarian Republic of),2001,92,1000 tonnes +3698,Venezuela (Bolivarian Republic of),2002,84,1000 tonnes +3699,Venezuela (Bolivarian Republic of),2003,64,1000 tonnes +3700,Venezuela (Bolivarian Republic of),2004,72,1000 tonnes +3701,Venezuela (Bolivarian Republic of),2005,64,1000 tonnes +3702,Venezuela (Bolivarian Republic of),2006,74,1000 tonnes +3703,Venezuela (Bolivarian Republic of),2007,70,1000 tonnes +3704,Venezuela (Bolivarian Republic of),2008,72,1000 tonnes +3705,Venezuela (Bolivarian Republic of),2009,63,1000 tonnes +3706,Venezuela (Bolivarian Republic of),2010,72,1000 tonnes +3707,Venezuela (Bolivarian Republic of),2011,72,1000 tonnes +3708,Venezuela (Bolivarian Republic of),2012,61,1000 tonnes +3709,Venezuela (Bolivarian Republic of),2013,62,1000 tonnes +3710,Viet Nam,1961,4,1000 tonnes +3711,Viet Nam,1962,4,1000 tonnes +3712,Viet Nam,1963,5,1000 tonnes +3713,Viet Nam,1964,6,1000 tonnes +3714,Viet Nam,1965,8,1000 tonnes +3715,Viet Nam,1966,6,1000 tonnes +3716,Viet Nam,1967,7,1000 tonnes +3717,Viet Nam,1968,6,1000 tonnes +3718,Viet Nam,1969,7,1000 tonnes +3719,Viet Nam,1970,7,1000 tonnes +3720,Viet Nam,1971,7,1000 tonnes +3721,Viet Nam,1972,7,1000 tonnes +3722,Viet Nam,1973,7,1000 tonnes +3723,Viet Nam,1974,6,1000 tonnes +3724,Viet Nam,1975,7,1000 tonnes +3725,Viet Nam,1976,10,1000 tonnes +3726,Viet Nam,1977,6,1000 tonnes +3727,Viet Nam,1978,5,1000 tonnes +3728,Viet Nam,1979,5,1000 tonnes +3729,Viet Nam,1980,8,1000 tonnes +3730,Viet Nam,1981,5,1000 tonnes +3731,Viet Nam,1982,5,1000 tonnes +3732,Viet Nam,1983,6,1000 tonnes +3733,Viet Nam,1984,5,1000 tonnes +3734,Viet Nam,1985,12,1000 tonnes +3735,Viet Nam,1986,25,1000 tonnes +3736,Viet Nam,1987,28,1000 tonnes +3737,Viet Nam,1988,42,1000 tonnes +3738,Viet Nam,1989,41,1000 tonnes +3739,Viet Nam,1990,92,1000 tonnes +3740,Viet Nam,1991,100,1000 tonnes +3741,Viet Nam,1992,119,1000 tonnes +3742,Viet Nam,1993,136,1000 tonnes +3743,Viet Nam,1994,180,1000 tonnes +3744,Viet Nam,1995,218,1000 tonnes +3745,Viet Nam,1996,320,1000 tonnes +3746,Viet Nam,1997,421,1000 tonnes +3747,Viet Nam,1998,409,1000 tonnes +3748,Viet Nam,1999,553,1000 tonnes +3749,Viet Nam,2000,803,1000 tonnes +3750,Viet Nam,2001,841,1000 tonnes +3751,Viet Nam,2002,700,1000 tonnes +3752,Viet Nam,2003,794,1000 tonnes +3753,Viet Nam,2004,914,1000 tonnes +3754,Viet Nam,2005,831,1000 tonnes +3755,Viet Nam,2006,985,1000 tonnes +3756,Viet Nam,2007,1251,1000 tonnes +3757,Viet Nam,2008,1056,1000 tonnes +3758,Viet Nam,2009,1058,1000 tonnes +3759,Viet Nam,2010,1106,1000 tonnes +3760,Viet Nam,2011,1277,1000 tonnes +3761,Viet Nam,2012,1565,1000 tonnes +3762,Viet Nam,2013,1461,1000 tonnes +3763,Yemen,1961,6,1000 tonnes +3764,Yemen,1962,6,1000 tonnes +3765,Yemen,1963,6,1000 tonnes +3766,Yemen,1964,6,1000 tonnes +3767,Yemen,1965,6,1000 tonnes +3768,Yemen,1966,5,1000 tonnes +3769,Yemen,1967,4,1000 tonnes +3770,Yemen,1968,4,1000 tonnes +3771,Yemen,1969,5,1000 tonnes +3772,Yemen,1970,5,1000 tonnes +3773,Yemen,1971,5,1000 tonnes +3774,Yemen,1972,4,1000 tonnes +3775,Yemen,1973,4,1000 tonnes +3776,Yemen,1974,4,1000 tonnes +3777,Yemen,1975,4,1000 tonnes +3778,Yemen,1976,4,1000 tonnes +3779,Yemen,1977,5,1000 tonnes +3780,Yemen,1978,5,1000 tonnes +3781,Yemen,1979,4,1000 tonnes +3782,Yemen,1980,4,1000 tonnes +3783,Yemen,1981,4,1000 tonnes +3784,Yemen,1982,4,1000 tonnes +3785,Yemen,1983,4,1000 tonnes +3786,Yemen,1984,5,1000 tonnes +3787,Yemen,1985,5,1000 tonnes +3788,Yemen,1986,5,1000 tonnes +3789,Yemen,1987,5,1000 tonnes +3790,Yemen,1988,6,1000 tonnes +3791,Yemen,1989,7,1000 tonnes +3792,Yemen,1990,7,1000 tonnes +3793,Yemen,1991,5,1000 tonnes +3794,Yemen,1992,8,1000 tonnes +3795,Yemen,1993,9,1000 tonnes +3796,Yemen,1994,8,1000 tonnes +3797,Yemen,1995,9,1000 tonnes +3798,Yemen,1996,11,1000 tonnes +3799,Yemen,1997,10,1000 tonnes +3800,Yemen,1998,11,1000 tonnes +3801,Yemen,1999,11,1000 tonnes +3802,Yemen,2000,11,1000 tonnes +3803,Yemen,2001,12,1000 tonnes +3804,Yemen,2002,11,1000 tonnes +3805,Yemen,2003,12,1000 tonnes +3806,Yemen,2004,10,1000 tonnes +3807,Yemen,2005,11,1000 tonnes +3808,Yemen,2006,17,1000 tonnes +3809,Yemen,2007,18,1000 tonnes +3810,Yemen,2008,19,1000 tonnes +3811,Yemen,2009,19,1000 tonnes +3812,Yemen,2010,19,1000 tonnes +3813,Yemen,2011,19,1000 tonnes +3814,Yemen,2012,20,1000 tonnes +3815,Yemen,2013,20,1000 tonnes +3816,Zambia,1961,0,1000 tonnes +3817,Zambia,1962,0,1000 tonnes +3818,Zambia,1963,0,1000 tonnes +3819,Zambia,1964,0,1000 tonnes +3820,Zambia,1965,0,1000 tonnes +3821,Zambia,1966,0,1000 tonnes +3822,Zambia,1967,0,1000 tonnes +3823,Zambia,1968,0,1000 tonnes +3824,Zambia,1969,0,1000 tonnes +3825,Zambia,1970,0,1000 tonnes +3826,Zambia,1971,0,1000 tonnes +3827,Zambia,1972,0,1000 tonnes +3828,Zambia,1973,0,1000 tonnes +3829,Zambia,1974,0,1000 tonnes +3830,Zambia,1975,0,1000 tonnes +3831,Zambia,1976,0,1000 tonnes +3832,Zambia,1977,0,1000 tonnes +3833,Zambia,1978,0,1000 tonnes +3834,Zambia,1979,0,1000 tonnes +3835,Zambia,1980,0,1000 tonnes +3836,Zambia,1981,0,1000 tonnes +3837,Zambia,1982,0,1000 tonnes +3838,Zambia,1983,0,1000 tonnes +3839,Zambia,1984,0,1000 tonnes +3840,Zambia,1985,0,1000 tonnes +3841,Zambia,1986,1,1000 tonnes +3842,Zambia,1987,1,1000 tonnes +3843,Zambia,1988,1,1000 tonnes +3844,Zambia,1989,2,1000 tonnes +3845,Zambia,1990,1,1000 tonnes +3846,Zambia,1991,2,1000 tonnes +3847,Zambia,1992,2,1000 tonnes +3848,Zambia,1993,2,1000 tonnes +3849,Zambia,1994,2,1000 tonnes +3850,Zambia,1995,1,1000 tonnes +3851,Zambia,1996,2,1000 tonnes +3852,Zambia,1997,2,1000 tonnes +3853,Zambia,1998,3,1000 tonnes +3854,Zambia,1999,3,1000 tonnes +3855,Zambia,2000,5,1000 tonnes +3856,Zambia,2001,6,1000 tonnes +3857,Zambia,2002,6,1000 tonnes +3858,Zambia,2003,6,1000 tonnes +3859,Zambia,2004,5,1000 tonnes +3860,Zambia,2005,5,1000 tonnes +3861,Zambia,2006,5,1000 tonnes +3862,Zambia,2007,5,1000 tonnes +3863,Zambia,2008,6,1000 tonnes +3864,Zambia,2009,5,1000 tonnes +3865,Zambia,2010,7,1000 tonnes +3866,Zambia,2011,6,1000 tonnes +3867,Zambia,2012,7,1000 tonnes +3868,Zambia,2013,7,1000 tonnes +3869,Zimbabwe,1961,0,1000 tonnes +3870,Zimbabwe,1962,0,1000 tonnes +3871,Zimbabwe,1963,0,1000 tonnes +3872,Zimbabwe,1964,0,1000 tonnes +3873,Zimbabwe,1965,0,1000 tonnes +3874,Zimbabwe,1966,0,1000 tonnes +3875,Zimbabwe,1967,0,1000 tonnes +3876,Zimbabwe,1968,0,1000 tonnes +3877,Zimbabwe,1969,0,1000 tonnes +3878,Zimbabwe,1970,1,1000 tonnes +3879,Zimbabwe,1971,1,1000 tonnes +3880,Zimbabwe,1972,1,1000 tonnes +3881,Zimbabwe,1973,2,1000 tonnes +3882,Zimbabwe,1974,3,1000 tonnes +3883,Zimbabwe,1975,3,1000 tonnes +3884,Zimbabwe,1976,5,1000 tonnes +3885,Zimbabwe,1977,4,1000 tonnes +3886,Zimbabwe,1978,5,1000 tonnes +3887,Zimbabwe,1979,5,1000 tonnes +3888,Zimbabwe,1980,5,1000 tonnes +3889,Zimbabwe,1981,5,1000 tonnes +3890,Zimbabwe,1982,6,1000 tonnes +3891,Zimbabwe,1983,8,1000 tonnes +3892,Zimbabwe,1984,11,1000 tonnes +3893,Zimbabwe,1985,11,1000 tonnes +3894,Zimbabwe,1986,13,1000 tonnes +3895,Zimbabwe,1987,12,1000 tonnes +3896,Zimbabwe,1988,13,1000 tonnes +3897,Zimbabwe,1989,15,1000 tonnes +3898,Zimbabwe,1990,14,1000 tonnes +3899,Zimbabwe,1991,12,1000 tonnes +3900,Zimbabwe,1992,5,1000 tonnes +3901,Zimbabwe,1993,4,1000 tonnes +3902,Zimbabwe,1994,9,1000 tonnes +3903,Zimbabwe,1995,8,1000 tonnes +3904,Zimbabwe,1996,12,1000 tonnes +3905,Zimbabwe,1997,9,1000 tonnes +3906,Zimbabwe,1998,10,1000 tonnes +3907,Zimbabwe,1999,10,1000 tonnes +3908,Zimbabwe,2000,9,1000 tonnes +3909,Zimbabwe,2001,8,1000 tonnes +3910,Zimbabwe,2002,8,1000 tonnes +3911,Zimbabwe,2003,10,1000 tonnes +3912,Zimbabwe,2004,6,1000 tonnes +3913,Zimbabwe,2005,4,1000 tonnes +3914,Zimbabwe,2006,3,1000 tonnes +3915,Zimbabwe,2007,2,1000 tonnes +3916,Zimbabwe,2008,1,1000 tonnes +3917,Zimbabwe,2009,1,1000 tonnes +3918,Zimbabwe,2010,1,1000 tonnes +3919,Zimbabwe,2011,1,1000 tonnes +3920,Zimbabwe,2012,1,1000 tonnes +3921,Zimbabwe,2013,1,1000 tonnes +3922,China,1961,2,1000 tonnes +3923,China,1962,2,1000 tonnes +3924,China,1963,2,1000 tonnes +3925,China,1964,2,1000 tonnes +3926,China,1965,3,1000 tonnes +3927,China,1966,3,1000 tonnes +3928,China,1967,4,1000 tonnes +3929,China,1968,4,1000 tonnes +3930,China,1969,4,1000 tonnes +3931,China,1970,4,1000 tonnes +3932,China,1971,4,1000 tonnes +3933,China,1972,5,1000 tonnes +3934,China,1973,6,1000 tonnes +3935,China,1974,6,1000 tonnes +3936,China,1975,4,1000 tonnes +3937,China,1976,4,1000 tonnes +3938,China,1977,4,1000 tonnes +3939,China,1978,4,1000 tonnes +3940,China,1979,5,1000 tonnes +3941,China,1980,5,1000 tonnes +3942,China,1981,6,1000 tonnes +3943,China,1982,6,1000 tonnes +3944,China,1983,6,1000 tonnes +3945,China,1984,9,1000 tonnes +3946,China,1985,7,1000 tonnes +3947,China,1986,8,1000 tonnes +3948,China,1987,9,1000 tonnes +3949,China,1988,10,1000 tonnes +3950,China,1989,8,1000 tonnes +3951,China,1990,6,1000 tonnes +3952,China,1991,4,1000 tonnes +3953,China,1992,4,1000 tonnes +3954,China,1993,4,1000 tonnes +3955,China,1994,3,1000 tonnes +3956,China,1995,3,1000 tonnes +3957,China,1996,3,1000 tonnes +3958,China,1997,4,1000 tonnes +3959,China,1998,6,1000 tonnes +3960,China,1999,9,1000 tonnes +3961,China,2000,12,1000 tonnes +3962,China,2001,17,1000 tonnes +3963,China,2002,19,1000 tonnes +3964,China,2003,23,1000 tonnes +3965,China,2004,22,1000 tonnes +3966,China,2005,22,1000 tonnes +3967,China,2006,26,1000 tonnes +3968,China,2007,26,1000 tonnes +3969,China,2008,33,1000 tonnes +3970,China,2009,70,1000 tonnes +3971,China,2010,50,1000 tonnes +3972,China,2011,65,1000 tonnes +3973,China,2012,92,1000 tonnes +3974,China,2013,117,1000 tonnes diff --git a/module-2_projects/tableau-project/your-code/Coffee production/original_data/crop_residue.csv b/module-2_projects/tableau-project/your-code/Coffee production/original_data/crop_residue.csv new file mode 100644 index 0000000..deb5261 --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/original_data/crop_residue.csv @@ -0,0 +1,5684 @@ +Domain Code,Domain,Area Code,Area,Element Code,Element,Item Code,Item,Year Code,Year,Unit,Value,Flag,Flag Description +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","144872.6789","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","140266.551","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","220659.6536","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","201726.2141","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","132136.7024","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","195221.53","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","211025.5159","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","232694.142","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","198381.7057","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","206450.1101","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","200972.6038","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","188003.104","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","159059.904","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","191681.7056","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","144261.52","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","208993.088","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","237845.392","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","244872.352","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","265953.232","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","259670.736","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","273633.76","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","258744.48","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","246179.488","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","233614.496","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","208484.512","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","241530.912","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","263393.056","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","270837.696","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","301559.808","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","235467.008","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","183331.556","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","281692.1865","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","270264.7369","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","236249.0338","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","271306.9718","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","305565.87","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","266446.21","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","271812.3668","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","302866.944","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","296537.2704","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","250885.6192","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","254985.36","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","220679.0016","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","242743.6928","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","240699.0112","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","236659.9462","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","215195.0656","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","218082.0256","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","221993.056","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","224880.016","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","236747.7216","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","246941.248","Fc","Calculated data" +"GA","Crop Residues","3","Albania","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","249083.744","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","15010.1709","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","14053.92","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","19312.3456","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","22918.7971","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","18747.9558","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","16103.3819","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","14758.283","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","40372.6816","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","48192.661","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","57099.5328","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","64659.2987","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","70176.3333","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","57190.3214","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","58688.98","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","44545.0826","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","28315.013","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","21104.5255","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","21147.9038","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","18304.1522","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","17631.7757","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","23614.1839","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","13857.5037","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","20348.4938","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","26106.4116","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","24734.4466","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","25654.1536","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","28654.504","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","18541.7013","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","12684.0812","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","12004.5148","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","8821.5554","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","10263.941","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","10296.2735","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","9131.5947","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","5969.406","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","11806.0855","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","13730.2434","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","19297.4438","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","17761.6841","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","11674.5667","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","12543.0136","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","13283.1057","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","17225.5442","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","22924.9994","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","12388.3903","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","15822.3035","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","15073.1909","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","10527.8971","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","17965.0262","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","13364.4904","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","13947.267","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","16953.6592","Fc","Calculated data" +"GA","Crop Residues","4","Algeria","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","17597.4207","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","1137752.96","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","1153114.016","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","1163354.72","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","1215938.976","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1193184.4835","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","1213614.688","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","1213883.4752","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","1213883.4752","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","1218499.152","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","1277383.2","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1251781.44","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1251781.44","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1262022.144","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1262022.144","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1251781.44","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1251781.44","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1226179.68","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1023724.48","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1043350.7892","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1040007.1994","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1023724.48","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1098170.88","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1172617.28","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1247063.68","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1247063.68","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1326630.432","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1326630.432","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1167025.152","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1167025.152","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1069773.056","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1167025.152","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1189359.072","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1303859.328","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","3152224.704","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","2373195.2","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1448004.8124","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1653593.3139","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","2024658.3424","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1756895.4086","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1835259.6338","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2111329.5354","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2249093.8152","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2207328.7739","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2863064.7605","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","3176810.1864","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2823066.2701","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","3659863.5898","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","3429091.6038","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","6384122.724","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","6429414.9945","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","7412366.2432","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","4592711.0527","Fc","Calculated data" +"GA","Crop Residues","7","Angola","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","7432805.6617","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","400723.2592","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","293715.6672","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","377993.9085","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","375704.7755","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","474933.5835","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","363508.0301","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","353498.8901","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","402337.2962","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","585338.6472","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","509717.536","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","753543.7376","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","760037.024","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","959166.8288","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1394397.7056","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1579550.2448","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1967084.3104","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","2066688","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1693477.856","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","2925153.5056","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","2273722.592","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","2720755.744","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","3010603.216","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","2596739.744","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","2354817.9976","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","2439897.6656","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","2758684.9152","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1876454.8123","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","2154525.6256","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1659680.0736","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","2608257.8974","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","2648691.4787","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","2449266.239","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1964831.1053","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","2286248.1212","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","2863212.9048","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","2901351.811","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","3285005.4174","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","3558158.2654","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","4143601.0699","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","3577534.6681","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","3260220.4827","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","3335381.2112","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2483928.1296","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1671861.8459","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1928707.7609","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","3402882.0344","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","3550769.5452","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","3622363.5478","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","3662368.4841","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","3727238.6254","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","3734449.3161","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","4082347.0342","Fc","Calculated data" +"GA","Crop Residues","9","Argentina","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1568160.176","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","23790.4456","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","31649.8275","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","39466.9696","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","34234.0832","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","42794.6795","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","34114.1888","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","29015.4126","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","31130.9232","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","34496.5231","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","28873.6877","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","29502.3524","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","36117.0987","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","38784.7329","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","33483.1902","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","32209.3612","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","39376.5645","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","45732.623","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","42946.8187","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","34568.4627","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","39120.1443","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","38043.9268","Fc","Calculated data" +"GA","Crop Residues","1","Armenia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","39212.2761","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","8311.5111","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","10579.827","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","20395.9135","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","12729.5668","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","10297.3996","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","19914.6004","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","25592.2627","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","34504.9437","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","52163.0852","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","40312.8228","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","95927.0811","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","80054.7075","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","46672.6804","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","38531.663","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","87569.5214","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","91624.2492","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","119231.1249","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","61063.3072","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","39849.3584","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","35690.5345","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","71776.4238","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","187200.5696","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","248644.9923","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","323078.7066","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","402141.727","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","553602.9734","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","379239.8969","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","391176.8505","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","256483.5506","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","307342.4996","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","353892.0296","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","380183.008","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","370300.2208","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","388608","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","424766.8704","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","647326.0576","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","517017.184","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","673389.216","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","627777.824","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","684101.696","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","607404.608","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","564713.5168","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","464866.4099","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","547097.9861","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","571993.2192","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","392782.592","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","475993.4051","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","567984.816","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","665235.3105","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","556999.648","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","977304.5029","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","637520.7984","Fc","Calculated data" +"GA","Crop Residues","10","Australia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","462108.64","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","11016.8528","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","9130.9529","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","7659.0655","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","8356.7449","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","8677.8426","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","7482.2467","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","7703.8371","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","7249.1731","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","3751.6172","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","3727.4308","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","3263.8722","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","4558.6765","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","4774.1685","Fc","Calculated data" +"GA","Crop Residues","11","Austria","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","4333.4156","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","58508.2221","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","56491.6653","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","64242.8309","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","54546.7367","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","31230.2199","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","32927.9908","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","37663.0616","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","43714.692","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","49187.9111","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","54331.5502","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","54668.6882","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","65356.8162","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","72672.8998","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","78848.7803","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","77115.5003","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","83897.2715","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","92785.4195","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","86016.27","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","83675.1747","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","88111.1828","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","87238.4458","Fc","Calculated data" +"GA","Crop Residues","52","Azerbaijan","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","83984.6067","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","767087.9467","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","803239.1185","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","750653.233","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","746810.2731","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","752840.4315","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","899630.4235","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","847864.9741","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","898028.939","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","905116.0692","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","874109.5654","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","842307.787","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1006108.32","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1191315.36","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1428634.88","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1554284.8","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1828827.52","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1891652.48","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","2079183.808","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1908866.048","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1823707.168","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1655713.696","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1603601.216","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1555062.6048","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1463530.3328","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1354207.984","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1323829.952","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1401362.4","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1357421.728","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1392361.1678","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1367591.0106","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1343608.8186","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1325790.656","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1320670.304","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1341987.072","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1314714.592","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1321977.44","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1318346.016","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","903159.0246","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","915505.0014","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","870015.4874","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","804638.2192","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","769096.3045","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","756479.2","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","531701.1347","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","514527.9106","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","543640.3206","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","568291.4189","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","549457.9804","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","660492.4212","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","687931.4646","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","762253.12","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","761417.76","Fc","Calculated data" +"GA","Crop Residues","16","Bangladesh","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","747599.728","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1930.6715","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1996.7643","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2187.5981","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2352.8301","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2538.5435","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","3255.7954","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1537.6587","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2202.9591","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2383.5522","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1588.1143","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1083.5583","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1073.3176","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1424.1148","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1728.2235","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1401.6855","Fc","Calculated data" +"GA","Crop Residues","14","Barbados","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","716.6708","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","614303.872","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","603154.208","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","573812.832","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","771147.68","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1278430.528","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","2044492.448","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1862886.656","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1485902.304","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1772187.536","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1856891.936","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1796425.856","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","773682.687","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","909609.9388","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","892552.3763","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","780747.816","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","705564.1788","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1020624.2603","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1341252.0568","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1258746.8248","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1235205.1118","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1792055.5822","Fc","Calculated data" +"GA","Crop Residues","57","Belarus","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1824254.3126","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","9122.2784","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1768.5344","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","3537.0688","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","3969.0309","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","5228.1657","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","3656.3906","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","4382.537","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2465.8112","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2351.8173","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","3468.8247","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","6097.2448","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","4282.9945","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","3778.4689","Fc","Calculated data" +"GA","Crop Residues","255","Belgium","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","3805.521","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","6915.0041","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","6877.4475","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","6789.5271","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","11132.9539","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","9597.0087","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","11601.0793","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","16300.1125","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","8747.8826","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","10672.8236","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","11300.8781","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","12014.793","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","12969.6286","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","22234.2641","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","28542.8116","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","30711.8845","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","19540.1288","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","16122.0609","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","20637.8087","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","16601.166","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","13673.7399","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","10671.512","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","17881.7603","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","14274.617","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","12469.63","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","16199.6272","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","16710.5804","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","22064.7295","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","17015.0401","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","19214.2942","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","14390.2558","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","15666.73","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","12697.7907","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","9112.9467","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","6258.3567","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","7707.7151","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","17227.5284","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","20128.8463","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","13781.9812","Fc","Calculated data" +"GA","Crop Residues","15","Belgium-Luxembourg","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","11755.2779","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","2244.8184","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","6571.5821","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","8398.7992","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","10531.9134","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","11177.7446","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","16969.0673","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","10556.2728","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","18613.4238","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","22242.8194","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","34716.1735","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","25144.0556","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","20982.8323","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","21775.232","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","21676.3695","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","20866.9859","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","20093.1113","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","19893.3138","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","19482.8805","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","22071.8319","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","25674.9243","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","31479.6739","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","32290.2998","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","28442.7892","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","20426.6827","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","18843.2862","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","30153.7919","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","38421.8901","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","37602.6338","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","55744.7931","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","42624.718","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","44394.0951","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","45664.71","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","57980.6477","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","53111.759","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","53110.3091","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","57667.2589","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","62601.322","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","60790.6582","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","63400.7262","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","77882.2143","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","88041.5153","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","72598.3069","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","78557.8241","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","64233.6956","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","72242.6497","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","62866.0803","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","63692.7592","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","62401.0372","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","70107.0824","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","115268.8998","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","85892.6816","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","129381.886","Fc","Calculated data" +"GA","Crop Residues","23","Belize","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","127255.4591","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","1122724.367","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","853669.79","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","840915.8557","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","549530.9496","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","570314.9589","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","564558.7301","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","762487.0532","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","727807.4368","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","709629.7574","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","756636.113","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","725151.0531","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","599112.9792","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","560252.4","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","476356.9376","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","506527.0091","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","565604.3057","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","625438.841","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","841947.7145","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","785042.6233","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","606821.8255","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","653165.3638","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","682580.7402","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","695461.8641","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","817697.5206","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","750054.2851","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","832742.3358","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","868523.6536","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","873762.0063","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","926209.7924","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","923887.5903","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1004092.7111","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1057278.5286","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","978280.3631","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1059497.3707","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1021620.139","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1027220.8752","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1153084.3206","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1229803.6218","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1218237.1426","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1325107.2108","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1264088.2734","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1490784.9567","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1308299.2561","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1392647.7721","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1485549.0004","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1330970.6174","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1930611.5029","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1413742.7164","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1246184.1659","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1503238.3983","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1174278.0905","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1312488.9782","Fc","Calculated data" +"GA","Crop Residues","53","Benin","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1425385.2866","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","8842.672","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","8842.672","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","9726.9392","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","11108.1313","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","10381.3193","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","11123.2416","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","10110.9656","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","11504.0002","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","16342.7203","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","37276.4842","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","34506.0624","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","34296.9678","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","24696.2535","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","27648.109","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","39319.6559","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","31226.2403","Fc","Calculated data" +"GA","Crop Residues","18","Bhutan","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","33690.4545","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","54908.544","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","55727.8003","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","79509.8739","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","81242.8301","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","81577.8389","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","81577.8389","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","80705.171","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","81672.9742","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","81665.5296","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","12005.7792","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","18567.8816","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","21080.88","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","25594.8416","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","32365.784","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","34199.3293","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","34622.7648","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","32314.5805","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","51923.0446","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","46383.3456","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","48356.6941","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","77907.8411","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","84161.8039","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","57720.8905","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","100469.361","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","134782.2971","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","128609.3193","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","113320.816","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","121067.3963","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","54668.1885","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","137309.6062","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","126871.998","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","130899.3186","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","88433.9549","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","105677.3162","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","163512.141","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","150532.0008","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","204012.0976","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","144841.8523","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","166602.3584","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","167486.6256","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","170139.4272","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","244685.235","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","377877.9325","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","370726.2073","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","378617.7009","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","383170.697","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","419590.2144","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","377742.7176","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","419252.8092","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","828874.761","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","733760.6058","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","771335.9671","Fc","Calculated data" +"GA","Crop Residues","19","Bolivia (Plurinational State of)","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","967342.4192","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","169954.176","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","209180.8568","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","201261.5752","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","170773.4323","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","146407.4752","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","182475.4496","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","150452.7071","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","149551.9969","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","99272.8605","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","122909.9024","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","125571.2085","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","112244.5647","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","146010.8801","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","139641.6936","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","141389.6583","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","122430.0863","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","137591.5745","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","147025.713","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","118752.6572","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","130029.0913","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","114772.4582","Fc","Calculated data" +"GA","Crop Residues","80","Bosnia and Herzegovina","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","126854.6865","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","28144158.7164","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","28977270.3865","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","32148719.9566","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","33294090.6881","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","36087332.0442","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","35749418.7181","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","40221655.5426","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","39661555.1229","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","38312983.7758","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","37266315","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","43067644.836","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","43266132.589","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","39833461.2129","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","43386157.3154","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","42551881.4383","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","39642164.6075","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","45606436.7909","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","45607765.5617","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","42554825.9601","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","44646205.9718","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","49410119.5853","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","58980626.7988","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","38348177.2821","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","53050986.854","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","52625323.0454","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","52143923.8086","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","49146084.2155","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","57269730.7425","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","50347612.1938","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","46282842.79","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","54505380.1479","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","52652549.1206","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","41607409.308","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","57985975.9336","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","52356262.9071","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","44571058.537","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","47312636.9383","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","35888182.6427","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","45421760.1022","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","47903513.3025","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","38250301.7058","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","46514691.4682","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","47360403.0329","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","44811811.6089","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","43379259.9415","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","47739395.463","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","44430591.7079","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","45877475.1934","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","48376410.8988","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","41662517.492","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","44935651.9205","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","34481776.679","Fc","Calculated data" +"GA","Crop Residues","21","Brazil","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","35756664.3827","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","2115600.7266","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","1730258.249","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","1891042.2492","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","2252857.1318","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1699926.7476","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","1794303.6162","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","1519108.9113","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","1273575.0366","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","1343854.3563","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","1159219.4665","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1120779.7814","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1016722.8708","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1086609.5057","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1089718.2372","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1065979.5582","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","968768.2712","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1023715.5715","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","763345.3492","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","674213.4469","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","555077.9042","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","743310.8043","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","739024.946","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","668314.1184","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","638560.0753","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","607872.9653","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","556778.8495","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","461493.7746","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","456578.152","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","558464.9107","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","409762.6625","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","459816.8442","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","429968.4282","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","295797.1017","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","429871.8407","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","577730.3451","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","409769.6207","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","411978.0225","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","410831.127","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","376196.9601","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","275288.0083","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","135486.0536","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","102096.9919","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","148898.791","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","100003.5348","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","115187.5431","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","52176.9264","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","77789.7676","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","27597.8207","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","21235.3083","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","21121.6728","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","12278.8624","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","19782.5215","Fc","Calculated data" +"GA","Crop Residues","27","Bulgaria","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","13458.1538","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","2741055.36","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","2741055.36","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","2689851.84","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","2966753.44","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","2941151.68","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","2941151.68","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","3192451.52","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","3318101.44","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","3292499.68","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","3474318.1024","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","3542934.1805","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","3173751.9945","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","3649464.7061","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","2979130.9331","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","3664370.0508","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","3698123.4112","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","3805340.064","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","3424806.0576","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","3411493.1424","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","3643847.68","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","3664329.088","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","3643847.68","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","3629867.36","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","3095164.832","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","3774617.952","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","3910508.576","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","4023869.6512","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","3974139.0144","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","2996712.5408","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","3557391.0848","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","3965095.0464","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","4004521.7568","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","4134852.3","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","3048743.7208","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","3791779.7696","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","3521737.6823","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","3384535.1927","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","3417647.8055","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2876778.6147","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2523117.8178","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","3135789.7048","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","3262793","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","3077298.1648","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2914307.2767","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","3147076.4061","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2782169.8708","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2725719.749","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2571728.6807","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2699126.3997","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","2721222.3223","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","2806696.5743","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","3591281.7416","Fc","Calculated data" +"GA","Crop Residues","29","Burundi","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","3669350.6843","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","359507.0347","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","340622.191","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","474639.04","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","427175.136","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","448161.6608","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","485631.1264","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","549756.304","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","622393.9104","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","571915.3504","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","327652.848","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","405606.4352","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","304523.8272","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","315505.536","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","310385.184","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","285255.2","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","322950.176","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","348080.16","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","295495.904","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","210337.024","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","170317.76","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","397868.352","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","367618.016","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","400192.64","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","342488.032","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","397868.352","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","275486.272","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","333662.656","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","440211.904","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","265245.568","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","247560.224","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","267569.856","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","250356.288","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","210817.1234","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","280606.624","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","287335.5776","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","269634.5907","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","282534.8586","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","169463.5326","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","280601.9475","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","247762.348","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","289638.699","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","384362.189","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","485517.4733","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","508644.4524","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","635361.0727","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","868670.0595","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","762909.5805","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","537158.3944","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","597686.0835","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","840622.1939","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","878846.2892","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","849017.4508","Fc","Calculated data" +"GA","Crop Residues","115","Cambodia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","863392.1466","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","959518.784","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","949278.08","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","959518.784","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","895313.088","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","879952.032","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","874831.68","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","601396.6621","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","664467.9907","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","840442.9603","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","950408.8844","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1038766.4859","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1091866.8185","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1108423.3026","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1227180.6039","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1329495.68","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1377431.36","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1462590.24","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1540304.48","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1618018.72","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1648269.056","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1665954.4","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1688760.096","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1835833.2832","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","998442.8969","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","901777.3841","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","954248.3344","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","706658.794","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1011227.5938","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","822807.7482","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","978999.2107","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1154092.16","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1279742.08","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1405392","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1531041.92","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1656691.84","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1782341.76","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1907991.68","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","2033641.6","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2351901.0198","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2419312.7841","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2417284.8171","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2542378.3534","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2622487.1157","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2705123.8003","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2732196.9825","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2855040.2909","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2813831.2108","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2935652.129","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","3493793.6869","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","3939326.8937","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","4532495.8964","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","3369113.377","Fc","Calculated data" +"GA","Crop Residues","32","Cameroon","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","3751096.7676","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","359580.1563","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","388931.1997","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","419544.1592","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","500936.3899","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","583026.5547","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","713101.833","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","563442.0842","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","486806.5221","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","520041.5442","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","512830.9706","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","673401.0067","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","832672.1574","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","828274.5832","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","979333.0227","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","982220.8806","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","957715.952","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","778166.4704","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","829498.5954","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","675444.393","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","729808.6944","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","662573.2544","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","679982.4512","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","402373.1872","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","457244.9312","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","570525.488","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","539361.4816","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1063179.1584","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","823312.048","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","695855.5424","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","943090.2336","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1310587.6597","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","849033.3344","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1270524.4896","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1465892.9664","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1820886.2272","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1303378.72","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1543637.088","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1646828.8512","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2572691.68","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2517690.9888","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2747883.5264","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","3682812.3296","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2966735.4816","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2032439.4912","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2826464.2592","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","3219309.1168","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2552853.4624","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2297340.0224","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2003001.552","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","2245991.5104","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1386682.88","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","2303592.6368","Fc","Calculated data" +"GA","Crop Residues","33","Canada","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1687074.8768","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","979965.6","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","996741.984","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","986501.28","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","986501.28","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","974408.064","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","997213.76","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","959518.784","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","926944.16","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","895316.5656","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","886453.12","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","891573.472","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","896693.824","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","886453.12","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","896693.824","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","909258.816","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","926944.16","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","901814.176","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","854350.272","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","806886.368","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","759422.464","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","711958.56","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","664494.656","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","617030.752","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","569566.848","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","522102.944","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","474639.04","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","447184.768","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","253749.114","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","332109.0667","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","275485.4918","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","251458.7056","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","338879.672","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","243539.1881","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","369725.6587","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","434222.347","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","434334.9948","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","449301.1735","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1329252.2031","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","319242.2264","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1367753.3589","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1606773.9928","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","571464.5533","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1907690.5706","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","674799.4097","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","360657.2739","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","267943.0912","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1174011.2368","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1173731.8556","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","812572.8733","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1727792.2684","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1559612.2308","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","2172415.0256","Fc","Calculated data" +"GA","Crop Residues","39","Chad","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","2165578.2208","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","962182.2061","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","938813.3965","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","855299.793","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","805323.0157","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","736685.1255","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","834270.8694","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","968816.1715","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","730499.3826","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","567097.4252","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","761869.9128","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","890031.5491","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1016107.842","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","835554.7014","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","933265.9915","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","885556.7191","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","967173.5446","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1299788.6298","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1405650.7187","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1414281.6877","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1255460.1005","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1584369.3741","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1736525.0387","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1075397.8477","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1111246.1923","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1133673.8618","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1125579.5759","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1053372.9174","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1074213.9092","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","845862.918","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","956325.7334","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1257249.6094","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","985579.3303","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","627105.5395","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","606417.4922","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","632965.9616","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","703213.1224","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","471321.7747","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","572068.3442","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","373920.543","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","460355.9355","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","574687.9941","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","440500.4167","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","437903.7808","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","447143.4688","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","403818.8671","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","448314.1482","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","180049.4869","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","193563.3794","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","269784.8848","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","220508.0593","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","216855.4426","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","105452.9856","Fc","Calculated data" +"GA","Crop Residues","40","Chile","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","179514.1175","Fc","Calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","34291532.3468","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","41167463.8021","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","32351091.7641","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","32924923.1257","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","33125868.2053","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","28088275.0047","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","28101307.0903","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","26360394.7225","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","25623962.9348","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","27171841.4385","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","22936222.5817","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","21946622.2036","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","22503132.6405","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","21721009.9103","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","21716197.9968","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","21512259.2284","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","21310637.7007","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","20182490.4261","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","21826744.1877","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","21884289.7255","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","21860997.6491","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","20355858.6551","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","20298923.5911","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","20732280.9225","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","18914305.5156","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","18334555.1715","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","18079339.0725","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","18412739.7729","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","16509887.0679","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","18314205.9446","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","17655224.1718","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","17169176.6541","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","15431984.699","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","18209052.5251","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","17102835.565","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","16887453.2286","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","14643156.1389","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","16981618.1954","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","17266154.0437","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","17472250.1084","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","19189318.1179","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","21256616.5357","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","20470614.5107","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","17586137.1012","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","18375384.2253","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","15088181.1546","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","15220753.123","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","16220537.4101","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","14355892.1851","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","13637696.1142","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","13034085.4647","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","11386006.6611","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","351","China","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","9886592.1735","A","Aggregate, may include official, semi-official, estimated or calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","33984733.76","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","40905260.8","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","32109766.4","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","32621801.6","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","32877819.2","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","27828233.6","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","27828233.6","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","26059699.2","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","25315235.2","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","26851340.8","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","22644600.32","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","21592915.2","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","22104950.4","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","21360486.4","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","21360486.4","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","21104468.8","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","20848451.2","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","19641142.56","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","21283681.12","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","21360486.4","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","21360486.4","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","19871558.4","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","19871558.4","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","20383593.6","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","18615059.2","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","18103024","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","17867487.808","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","18254621.6","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","16334489.6","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","18150201.6","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","17535118.4839","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","17059508.587","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","15334008","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","18103024","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","17000135.36","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","16767706.56","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","14535120.112","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","16886435.504","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","17175603.28","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","17382148.8","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","19118004.8","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","21176057.68","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","20379896.672","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","17507062.72","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","18299094.4","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","15008953.6","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","15156396.48","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","16149238.4","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","14278296.96","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","13562356.64","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","12933514.2288","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","11279831.3408","Fc","Calculated data" +"GA","Crop Residues","41","China, mainland","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","9783492.704","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","306798.5868","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","262203.0021","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","241325.3641","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","303121.5257","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","248049.0053","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","260041.4047","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","273073.4903","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","300695.5225","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","308727.7348","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","320500.6385","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","291622.2617","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","353707.0036","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","398182.2405","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","360523.5103","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","355711.5968","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","407790.4284","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","462186.5007","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","541347.8661","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","543063.0677","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","523803.3255","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","500511.2491","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","484300.2551","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","427365.1911","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","348687.3225","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","299246.3156","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","231531.1715","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","211851.2645","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","158118.1729","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","175397.4679","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","164004.3446","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","120105.6879","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","109668.0671","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","97976.699","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","106028.5251","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","102700.205","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","119746.6686","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","108036.0269","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","95182.6914","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","90550.7637","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","90101.3084","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","71313.3179","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","80558.8557","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","90717.8387","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","79074.3812","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","76289.8253","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","79227.5546","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","64356.643","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","71299.0101","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","77595.2251","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","75339.4742","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","100571.2359","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","106175.3203","Fc","Calculated data" +"GA","Crop Residues","214","China, Taiwan Province of","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","103099.4695","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","836682.7517","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","891514.8422","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","784039.6989","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","780847.424","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","770606.72","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","655669.28","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","711325.7472","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","727474.9856","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","709611.3088","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","692993.7536","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","760528.304","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","942670.0512","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","939031.7088","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1018804.4672","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1358887.6928","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1098044.4352","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1245603.6768","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1208612.9056","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1219267.8304","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1287684.9184","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1251650.2848","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1208562.2688","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1256366.7936","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1226056.573","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1488410.5243","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1477589.803","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1364553.7336","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1443955.6768","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1496169.4304","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1902042.2608","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1548740.9845","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1558624.9309","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1622717.2733","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1769164.7582","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","2080803.387","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1732248.9207","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1706589.5863","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1487975.5726","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1523004.8125","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1499421.1137","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1496046.4463","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1413611.1446","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1494681.0544","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1497361.3883","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1664164.7446","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1596652.0902","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1772670.1989","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1804340.9038","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1669102.3044","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1579187.2069","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1524134.8794","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1582453.0827","Fc","Calculated data" +"GA","Crop Residues","44","Colombia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1633334.3362","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","37785.872","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","41787.7984","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","45045.2608","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","46301.76","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","48302.7232","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","50303.6864","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","51560.1856","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","53561.1488","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","55562.112","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","56818.6112","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","58819.5744","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","60076.0736","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","61332.5728","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","63333.536","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","64334.0176","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","65232.0922","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","65385.7027","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","60028.896","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","42997.12","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","30776.6194","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","29246.3952","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","30246.8768","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","28990.3776","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","30246.8768","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","31503.376","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","32015.4112","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","33039.4816","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","34808.016","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","36064.5152","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","37833.0496","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","40346.048","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","36808.9792","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","36458.9016","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","37594.0858","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","39094.6692","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","40822.2407","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","43568.7624","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","44541.1839","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","48072.4833","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","49241.9365","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","50201.5774","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","54901.1649","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","49165.1312","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","50769.8143","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","51241.5783","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","52166.576","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","54167.5392","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","54679.5744","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","58216.6432","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","51420.2707","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","52785.1035","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","57911.1533","Fc","Calculated data" +"GA","Crop Residues","46","Congo","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","57319.6842","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","389825.5884","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","418064.1927","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","492865.5596","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","414914.9621","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","497572.563","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","408413.7755","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","356240.5939","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","262092.9164","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","361217.2242","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","284906.3124","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","219382.5928","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","337009.0795","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","255113.0428","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","334838.4528","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","339318.7608","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","288267.3161","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","252087.7596","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","287630.6915","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","244083.505","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","222686.6094","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","239220.5256","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","367280.5232","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","357735.2089","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","425095.1684","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","420537.8843","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","564179.1447","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","547854.6051","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","525465.831","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","642839.1808","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","649349.0419","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","693457.1532","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","652329.2627","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","610266.9216","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","604284.7769","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","590024.9108","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","346157.9488","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","400330.3787","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","341773.3664","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","359407.7954","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","312629.9524","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","252551.3587","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","229388.8734","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","232428.6793","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","175328.0969","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","173438.2153","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","161393.1145","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","132662.6487","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","124206.5129","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","173974.4656","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","217058.5366","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","244446.6209","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","233479.4054","Fc","Calculated data" +"GA","Crop Residues","48","Costa Rica","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","234723.4493","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","241059.136","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","259080.8666","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","267924.6647","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","277072.3468","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","286523.9131","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","295970.359","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","305592.7148","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","315717.1986","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","334806.0099","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","343758.0118","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","354437.7582","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","450275.5065","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","455590.256","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","457786.4379","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","462680.5792","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","478602.2014","Fc","Calculated data" +"GA","Crop Residues","107","Côte d'Ivoire","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","494712.271","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","126244.8855","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","138551.1359","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","157258.5749","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","161973.7302","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","155465.0018","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","161096.6029","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","151808.5825","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","163130.9423","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","106446.3155","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","137922.5941","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","151847.7657","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","115185.0576","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","68519.4052","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","79150.9797","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","68178.4113","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","45952.3337","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","32691.3507","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","27090.78","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","17901.8583","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","14594.2492","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","8283.1825","Fc","Calculated data" +"GA","Crop Residues","98","Croatia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","15744.891","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","680424.7747","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","680327.488","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","637512.16","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","599817.184","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","574687.2","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","564446.496","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","559326.144","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","416934.432","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","311765.92","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","316886.272","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","316886.272","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","369470.528","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","179614.912","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","159605.28","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","132151.008","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","127030.656","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","216838.112","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","236847.744","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","241968.096","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","339129.6868","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","295731.3423","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","360136.1263","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","353320.3711","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","343518.1803","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","364511.4866","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","361657.0468","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","453584.3675","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","454918.1997","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","474243.3657","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","442919.3462","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","400508.6261","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","836417.1551","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","855096.4965","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","966835.717","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","826427.642","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","871616.2248","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","960635.4984","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","984771.0154","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1081581.9272","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1331355.6477","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1276124.6017","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1295567.7029","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1445215.9186","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1515790.8334","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1249689.5918","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","932798.5248","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1121506.9339","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1207217.0742","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1688378.6714","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1250976.2582","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1603501.937","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1569718.433","Fc","Calculated data" +"GA","Crop Residues","49","Cuba","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1556303.4456","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","16736.9844","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","17742.5864","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","12150.2435","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","18225.9124","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","16548.6259","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","10935.8015","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","9750.9527","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","8543.7699","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","9803.0652","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","7222.0177","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","9173.6644","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","8219.5994","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","5153.4992","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","6204.3446","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","8398.8463","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","7131.5309","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","6018.2286","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","4643.1215","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","3885.0106","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","3739.351","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","5168.0897","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","5855.022","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","8079.164","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","8687.9795","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","9356.3522","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","12429.6894","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","21703.8046","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","10673.7075","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","12479.811","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","12984.4016","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","10629.0397","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","14655.5926","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","9705.7093","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","8563.0656","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","9391.4115","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","9474.6016","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","4467.6488","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1681.0166","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2164.0093","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2112.8058","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2201.2325","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2201.2325","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2289.6592","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2143.5279","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2292.0181","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2245.9349","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2174.25","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2330.622","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1920.2579","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1762.4705","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1823.0404","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1569.3816","Fc","Calculated data" +"GA","Crop Residues","50","Cyprus","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1657.302","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","3055.2148","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","3330.5627","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","4057.2155","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","5003.8358","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","4503.1579","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","4629.613","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","4140.5218","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2907.7373","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2202.2452","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","338.3458","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","14.9188","Fc","Calculated data" +"GA","Crop Residues","167","Czechia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","12.565","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","18084.5084","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","16061.1767","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","21700.3609","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","18306.9733","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","26977.7392","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","33787.7919","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","35906.0264","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","22993.5203","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","20317.0511","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","18483.8172","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","23223.178","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","20800.4463","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","23062.3745","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","30273.2175","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","47316.0548","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","22738.7421","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","45220.1859","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","42036.9624","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","50323.0476","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","49989.1899","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","49023.3997","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","58968.2589","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","48652.3033","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","43246.114","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","42679.1606","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","53196.5403","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","45832.4548","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","38192.3987","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","38085.2864","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","34722.297","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","46626.7415","Fc","Calculated data" +"GA","Crop Residues","51","Czechoslovakia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","51632.3982","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","2740882.4","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","3084785.76","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","3603183.68","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","3718121.12","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","3555248","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","3295594.56","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","3316075.968","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","3336557.376","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","3379372.704","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","3399854.112","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","3420335.52","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","3508762.24","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","3559965.76","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","3648392.48","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","3736819.2","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","3750799.52","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","3802003.04","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","3837845.504","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","3868095.84","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","3890429.76","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","3912763.68","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","3788022.72","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","3839226.24","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","3890429.76","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","3978856.48","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","4082172.48","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","4152442.08","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","4218534.88","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","4244136.64","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","4292072.32","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","4332563.36","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","4156640.8262","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","3902903.5937","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","4067283.2","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","3916031.52","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","3764779.84","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","3741536.96","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","3890429.76","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","3887174.7744","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","4318583.04","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","4292981.28","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","4355806.24","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","4141729.6","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","4318583.04","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","4167331.36","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","4418631.2","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","4141729.6","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","4418631.2","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","4507057.92","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","4542920.4963","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","4569882.88","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","4167331.36","Fc","Calculated data" +"GA","Crop Residues","116","Democratic People's Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","4267379.52","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","1222911.84","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","1265727.168","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","1295977.504","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","1326227.84","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1363922.816","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","1389052.8","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","1426747.776","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","1451877.76","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","1388028.7296","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","1423904.5344","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1485705.424","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1511394.6208","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1556345.5264","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1591062.6464","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1630852.9408","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1659378.4608","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1678222.4896","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1677006.2496","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1731278.5216","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1830676.5728","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1884517.328","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1937846.048","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1996945.2288","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","2049529.4848","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","2107372.1664","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","2202569.2032","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","2025366.016","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","2154879.7888","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","2177772.9216","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","2421679.6416","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","3084343.2989","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","3178400.647","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","3260896.944","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","3335385.3622","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","2080624.3793","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","2499997.3464","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","2558802.4908","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","2614876.0624","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2454562.9734","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2303508.8211","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2161748.5044","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2027951.216","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2046536.0219","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2064473.1442","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2082602.9181","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2100917.899","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2119418.087","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2138110.9267","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2156991.2977","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","2175985.6626","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","4495513.0686","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","4656644.8909","Fc","Calculated data" +"GA","Crop Residues","250","Democratic Republic of the Congo","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","4658567.2721","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","65331.04","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","67872.6863","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","67787.1427","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","67714.5314","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","67659.159","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","66935.9775","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","67150.4656","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","67394.5909","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","68076.4672","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","71566.3584","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","75056.2496","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","78546.1408","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","81291.568","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","48626.048","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","63823.4317","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","65331.04","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","48626.048","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","59777.5599","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","59704.7745","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","59939.1333","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","51371.4752","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","54908.544","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","72358","Fc","Calculated data" +"GA","Crop Residues","72","Djibouti","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","72358","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","323303.8321","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","312029.1688","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","313693.2832","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","380148.221","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","369738.8972","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","479019.0518","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","372771.6617","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","308977.4132","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","394224.0686","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","336996.357","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","389601.0944","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","387966.2168","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","422328.1955","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","535173.3914","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","493656.3696","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","526566.6883","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","496357.2673","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","605540.9817","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","600003.9786","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","634558.4404","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","677695.0802","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","706819.6424","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","772082.2587","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","803187.0855","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","764767.915","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","572951.8114","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","737468.554","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","781443.152","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","754697.91","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","679550.4832","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","583668.4673","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","474026.7219","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","521386.6172","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","527362.7091","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","538291.2278","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","504976.3564","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","380173.518","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","371028.2198","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","362997.6201","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","343122.6132","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","455288.4077","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","480847.4277","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","424412.822","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","344445.0104","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","341554.1153","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","408212.0761","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","396883.3235","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","332703.6473","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","407917.5091","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","441424.2158","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","462665.7821","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","434748.1052","Fc","Calculated data" +"GA","Crop Residues","56","Dominican Republic","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","499523.604","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","402930.7072","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","435091.552","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","448194.4481","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","548515.8842","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","568178.7616","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","794826.799","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","784796.6197","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","824265.271","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","825899.559","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","819372.4549","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","654201.5017","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","595926.2103","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","657521.5432","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","636068.6962","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","599341.1142","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","669520.9914","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","572362.912","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","387277.231","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","449209.476","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","493041.3326","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","550543.69","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","525627.6944","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","378141.2954","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","463297.659","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","423484.5361","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","424269.4985","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","425802.8427","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","454541.2529","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","560939.7313","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","498001.0858","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","519502.8039","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","527053.3102","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","546722.0675","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","652095.2176","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","599967.314","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","622887.3756","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","642178.4346","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","572679.2433","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","585742.907","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","487909.7301","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","551140.8841","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","552523.1628","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","522027.2258","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","479212.7766","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","587755.3209","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","498382.0357","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","428319.5365","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","412481.8867","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","393921.5667","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","427553.1404","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","469688.9668","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","312526.6802","Fc","Calculated data" +"GA","Crop Residues","58","Ecuador","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","300444.7202","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","9610.2059","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","16494.2016","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","30994.8","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","94978.0032","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","75357.0528","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","70236.7008","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","58862.8512","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","75357.0528","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","80477.4048","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","91858.699","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","105226.1518","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","113473.2526","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","105226.1518","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","124847.1022","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","149595.8493","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","149595.8493","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","114925.36","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","110431.3264","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","97918.7677","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","87061.819","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","75532.4247","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","108317.0015","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","113465.808","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","77350.656","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","85448.864","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","151574.5632","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","218426.7165","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","157261.488","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","168407.2048","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","192512.6871","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","252095.8122","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","174286.3633","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","93547.072","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","95479.3443","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","116765.6861","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","189147.3293","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","193612.528","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","197289.4","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","257249.1569","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","253133.7776","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","316451.1083","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","414589.1356","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","429755.0147","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","386396.8131","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","386355.4131","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","413006.0909","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","466486.9421","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","728204.4359","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","511029.8917","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","417278.5032","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","774822.1004","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","553418.1925","Fc","Calculated data" +"GA","Crop Residues","59","Egypt","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","721073.2399","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","213477.7001","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","338882.4666","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","280884.9637","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","222538.6756","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","259819.277","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","275955.0517","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","301088.81","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","344823.084","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","379341.233","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","421881.1535","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","473693.28","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","436567.3343","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","527703.1327","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","555328.9663","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","618843.7047","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","598594.6424","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","564274.7659","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","605000.4979","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","647919.6578","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","590150.2067","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","492661.0547","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","609268.1306","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","635794.2528","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","678654.1788","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","611030.7218","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","708278.7882","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","591140.7729","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","792865.8109","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","704832.9782","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","736095.6358","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","920625.7752","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","906587.7145","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","871618.3312","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","867190.3779","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","713138.6374","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","806566.0866","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","963453.0529","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","819677.9163","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","894377.1448","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","937368.4526","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1017815.4473","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1042603.234","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1051908.9803","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1079649.4731","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","970319.7386","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1115136.1797","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","969333.8864","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1291261.4589","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1184895.5264","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1128178.088","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1058761.0019","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1420842.0914","Fc","Calculated data" +"GA","Crop Residues","60","El Salvador","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1495699.0852","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","48715.2909","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","55362.8584","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","44012.3792","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","41034.7281","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","36656.9796","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","11670.6331","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","49249.2428","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","28532.7917","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","53424.9181","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","38586.0659","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","31994.8893","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","25540.6065","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","19775.2315","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","3209.7355","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","684.6741","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","309.7934","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","27119.1911","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","18551.216","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","16682.359","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","13840.9699","Fc","Calculated data" +"GA","Crop Residues","178","Eritrea","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","14258.3084","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1540.7071","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","3383.4928","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","3213.9803","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","3595.6824","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","8587.8401","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","48731.5801","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","14090.3976","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","10191.6238","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","12198.5722","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","10750.4812","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2029.534","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","4864.6995","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1118.6869","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1355.4654","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","800.8571","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1234.6716","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1126.2353","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1225.3745","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","4701.2287","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1101.9797","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","720.7839","Fc","Calculated data" +"GA","Crop Residues","63","Estonia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","5672.3123","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","20429.1204","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","14556.1833","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","16290.4164","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","13727.136","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","16501.697","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","17058.6297","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","15489.4556","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","21421.5472","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","21474.9712","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","22560.0707","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","25144.364","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","18975.3555","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","14689.0262","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","18712.39","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","21345.0532","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","19306.3825","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","18697.0606","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","14257.9981","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","10120.7537","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","17683.3943","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","17486.4716","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","13514.1067","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","13664.1852","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","15787.373","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","37541.3654","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","45139.616","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","66502.5967","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","63374.2721","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","63639.0908","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","28757.9488","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","30014.448","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","36296.944","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","41090.512","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","50901.1131","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","53237.824","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","56572.3022","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","55053.536","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","48349.9008","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","42603.3688","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","34434.0544","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","29948.0152","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","25402.4251","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","20576.7109","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","22783.8151","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","30830.4205","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","26511.9374","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","27698.4952","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","29943.6816","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","31688.6272","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","29482.7056","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","27454.272","Fc","Calculated data" +"GA","Crop Residues","209","Eswatini","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","27454.272","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","604346.0084","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","937881.5763","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1137653.7207","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1311825.1134","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1272857.1415","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1141752.1117","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2033554.0962","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2383696.4995","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","3588293.7943","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2044581.2707","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1953456.3048","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2675366.7462","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2876329.2741","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1927360.1522","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2803114.8469","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2959080.5083","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","3674713.4776","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","3509457.7968","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","4455129.3914","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","5102036.2484","Fc","Calculated data" +"GA","Crop Residues","238","Ethiopia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","4772519.7263","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","956255.6544","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","970542.0032","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","970542.0032","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","986179.2064","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1001816.4096","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","694307.808","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","706872.8","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","714317.44","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","734327.072","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","754336.704","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","766901.696","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","822282.016","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","839967.36","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","812985.1363","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","674671.512","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","552268.2278","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","530206.3702","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","234352.0416","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","284889.3491","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","268900.2253","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","257265.5035","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","246737.0551","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","511225.034","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","516043.9948","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","465059.7645","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","458453.2342","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","601363.4339","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","739308.819","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1057786.4378","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1234990.2035","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1499604.7847","Fc","Calculated data" +"GA","Crop Residues","62","Ethiopia PDR","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","636927.0194","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","1156000.527","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","950222.8832","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","1063835.4901","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","760827.499","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","708680.2614","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","704804.8314","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","589684.12","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","609055.8314","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","518729.5211","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","563371.8514","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","439951.1723","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","325411.6434","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","314116.9506","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","292472.0627","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","334384.0199","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","273294.8982","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","412033.9821","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","428072.7616","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","310419.776","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","282493.728","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","262484.096","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","290410.144","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","196863.072","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","149904.2848","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","153303.28","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","145205.072","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","142412.4672","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","129847.4752","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","105458.496","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","73509.5684","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","79044.1688","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","93773.2321","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","81693.472","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","73849.2221","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","78671.6036","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","69455.4334","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","71657.7937","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","66756.0655","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","73681.9008","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","67022.7765","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","68917.2477","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","67224.8166","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","70980.0646","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","61673.0435","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","69824.9993","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","63913.3642","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","53920.0334","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","49219.5577","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","39321.673","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","63256.1508","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","59194.5617","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","64606.1499","Fc","Calculated data" +"GA","Crop Residues","68","France","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","68761.0421","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","101446.192","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","116150.2208","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","149984.8032","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","168512.4256","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","206403.0304","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","118717.3152","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","116602.9528","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","123463.621","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","72279.2164","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","121897.5566","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","131183.9828","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","138211.7759","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","211401.0872","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","187171.6095","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","85815.9072","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","102153.856","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","112253.0272","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","91684.1824","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","79577.1296","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","88750.0448","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","92334.2912","Fc","Calculated data" +"GA","Crop Residues","73","Georgia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","114809.744","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","115147.1676","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","138828.7426","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","146293.0868","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","96709.3048","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","70072.7767","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","76537.1052","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","73620.1112","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","49330.6642","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","61609.0895","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","67046.3277","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","78163.4863","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","43873.3817","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","44839.2066","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","44951.4517","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","49805.58","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","34875.3158","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","46702.4642","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","54417.7056","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","59436.9717","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","46327.2035","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","41868.8173","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","51710.4547","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","54702.8541","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","59736.9432","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","80832.1458","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","108718.5867","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","63522.8963","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","58766.2402","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","57773.8354","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","46944.4668","Fc","Calculated data" +"GA","Crop Residues","79","Germany","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","58773.6848","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1075652.96","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2061351.264","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2162982.7072","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2090388.8192","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2076341.8176","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2232357.184","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1974156.8288","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2298409.7248","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2425906.4896","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","2346007.1487","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","2569657.2256","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","2399517.7984","Fc","Calculated data" +"GA","Crop Residues","81","Ghana","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","2232150.2208","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","815992.8555","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","655204.9486","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","687903.7152","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","710178.0126","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","752618.1087","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","766593.8125","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","745312.1995","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","684887.5703","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","666465.009","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","676740.291","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","594654.3648","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","504101.9561","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","547137.811","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","490900.946","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","524642.0527","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","510560.3421","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","489786.1555","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","487979.0231","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","512476.8","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","467632.8941","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","388355.5005","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","347686.6944","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","342226.738","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","324092.0734","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","299523.1392","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","288631.232","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","278477.9258","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","251257.1145","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","247580.5376","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","230180.5055","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","251364.7228","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","233417.4578","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","222166.6833","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","203790.8477","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","208587.7121","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","220914.8948","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","209232.6903","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","201459.1629","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","207268.1669","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","195354.6525","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","192557.0405","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","186765.775","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","185833.0117","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","165007.0364","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","164317.6765","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","169498.8592","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","164263.1579","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","164826.7422","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","170600.5708","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","175065.3613","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","189249.188","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","166575.1731","Fc","Calculated data" +"GA","Crop Residues","84","Greece","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","183374.0629","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","577.0461","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","577.0461","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","577.0461","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","602.6478","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","628.2496","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","628.2496","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","628.2496","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","628.2496","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","691.0746","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","691.0746","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","753.8995","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","753.8995","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","685.9542","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","759.0199","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","879.5494","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","942.3744","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1020.5604","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","759.0199","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","628.2496","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","628.2496","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","628.2496","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","628.2496","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","628.2496","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","628.2496","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","928.3941","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","753.8995","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","816.7245","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","816.7245","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1487.3176","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1743.7378","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1623.2083","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1637.5452","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1371.9084","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1266.7399","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1265.0304","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1130.8493","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1151.0627","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1175.1648","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1189.0554","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1193.6742","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1210.1921","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1215.7329","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1221.0184","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1224.6422","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1226.8121","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1229.2282","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1256.4992","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1277.1899","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1317.9609","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1358.4365","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1398.492","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1410.1098","Fc","Calculated data" +"GA","Crop Residues","86","Grenada","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1447.333","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","682901.5008","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","684205.1776","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","810222.1408","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","991103.9296","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","942754.0288","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","840283.7664","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","871601.8912","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","1087346.0069","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","955121.4769","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","1453552.447","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1651530.8564","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1044327.1742","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1216974.4699","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1073702.8088","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1621792.3215","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1390878.3619","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","952679.9876","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1117940.208","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","827239.7091","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","785961.5811","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1024976.5632","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1040867.8336","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1212905.6624","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1324205.7094","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1863683.6446","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1783202.6298","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1846885.2668","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1525102.1277","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1186755.1923","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1572862.1937","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1647985.891","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1628857.6065","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1410435.5408","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1470383.2538","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1363466.6307","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1311051.6915","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1286200.0826","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1419564.6213","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1383531.7416","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1414486.214","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2460763.1158","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2470346.1724","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2537663.3437","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2577519.3689","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2570575.1922","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2602488.3432","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2659346.9873","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2728795.4004","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2765240.5966","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","2823262.7591","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","2857442.6702","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","2922520.5767","Fc","Calculated data" +"GA","Crop Residues","89","Guatemala","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","3001432.4058","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","854586.16","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","865615.0464","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","912054.88","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","913078.9504","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","907682.4512","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","917687.2672","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","922295.584","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","854350.272","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","887160.784","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","889720.96","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","922295.584","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","934860.576","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","938956.8576","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","924619.872","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","859625.9936","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","874831.68","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1008590.6728","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","988675.6698","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","933259.1673","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","930080.2781","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","927571.3056","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","871914.8384","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","874475.0144","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","876267.1376","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","879569.7646","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","807724.5035","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","905489.3383","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","911674.9406","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","922330.176","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","954904.8","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1032619.04","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1065710.8196","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","792031.68","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","703070.6588","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","473730.08","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","782724.1504","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","795754","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","557346.2746","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","561449.136","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","549416.3088","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","545902.8288","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","538643.44","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","579733.952","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","563446.64","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","662659.44","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","661600.1585","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1162445.76","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1077286.88","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1221272.9709","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1526338.9634","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1559126.295","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1707674.2913","Fc","Calculated data" +"GA","Crop Residues","93","Haiti","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1866511.6439","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","733600.1277","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","759827.5937","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","828320.6862","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","943369.2571","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","685598.6206","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","791345.0612","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","804845.8868","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","787210.9036","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","769570.8","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","752407.1534","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","734283.1483","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","716648.1651","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","636975.8081","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","632181.9508","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","713297.2829","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","717741.4158","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","722172.9836","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","816817.6223","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","716717.4889","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","692335.5282","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","785201.5036","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","537066.2494","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","533997.9412","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","606188.8788","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","701211.3467","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","761627.9778","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","677252.8951","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","855559.5539","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","896813.9385","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1067742.8677","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1234406.7726","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","772590.109","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","903128.9752","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1248637.7095","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","703947.2788","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","896959.9417","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","999499.3528","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","958871.7922","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1104724.2034","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1333740.2288","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","871947.0443","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1489768.091","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1134019.2246","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1173919.1867","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1319452.3948","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","886241.2087","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","941668.0608","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","998543.6546","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1136347.6166","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1153222.8218","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1248718.8093","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1296878.9678","Fc","Calculated data" +"GA","Crop Residues","95","Honduras","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1496787.1626","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","257196.5116","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","335677.8078","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","275826.1892","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","221170.7313","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","272258.7501","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","397248.5745","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","311972.3172","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","147653.0301","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","164170.1912","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","150388.5684","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","145612.9021","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","132828.6535","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","148809.448","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","137442.4425","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","163875.5365","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","102615.2735","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","114295.4404","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","136799.9513","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","166563.2216","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","162567.6579","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","142350.5203","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","164728.8115","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","116368.8474","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","131624.085","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","134052.556","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","194061.6749","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","207394.0603","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","100943.0572","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","67887.3152","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","48002.33","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","77829.1141","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","51070.7419","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","48617.5899","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","55262.3193","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","57150.6002","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","61498.3421","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","62672.5572","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","66023.8589","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","63561.3847","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","48568.3772","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","39586.1471","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","38354.4666","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","28440.5024","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","18165.701","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","21569.5148","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","16202.9863","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","8807.9335","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","13364.3675","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","8810.4308","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","5991.787","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","11090.0914","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","9745.4643","Fc","Calculated data" +"GA","Crop Residues","97","Hungary","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","8530.7331","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","57328240.0914","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","59310726.4942","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","61759004.2816","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","65131931.2448","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","61483889.1744","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","62599998.288","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","66470690.1472","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","64688135.4624","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","65857592.432","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","70373341.408","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","66396066.6656","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","64720312.5728","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","77995310.0096","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","73381912.6752","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","79311406.5888","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","73692511.9616","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","76076153.504","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","75573356.3552","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","70870194.9888","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","83313890.0672","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","82362182.8928","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","79214133.0752","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","85774429.8464","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","83418715.0144","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","86427866.176","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","85435105.3632","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","81569467.0272","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","90823330.7456","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","92125619.744","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","93804362.7328","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","90148726.688","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","84921187.1808","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","80359731.5744","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","77899599.2448","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","75933087.248","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","80618238.8416","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","77806693.8176","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","68141480.4352","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","59121663.024","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","58093051.872","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","61692203.6704","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","71859279.8496","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","90709243.3856","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","80151367.3248","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","73377640.1216","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","80390011.792","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","94569383.36","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","74969379.52","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","57110295.36","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","106929561.28","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","104062164.16","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","86998747.52","Fc","Calculated data" +"GA","Crop Residues","100","India","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","88330039.04","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","3546158.4","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","3612251.2","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","3420508.48","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","3546158.4","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","3697410.08","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","3723011.84","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","3546158.4","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","2935628.736","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","3040797.248","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","3301394.24","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","3637381.184","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","3932877.088","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","4283281.536","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","4782048.496","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","3799869.9648","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","2785723.2","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","3533052.448","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","3825119.4752","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","4260913.024","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","5130624.352","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","4808583.136","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","3981652.544","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","6312079.52","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","6270644.928","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","5945842.24","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","5875066.272","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","5482249.088","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","6273406.4","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","6752763.2","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","7324541.466","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","6625354.4586","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","8501116.5242","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","7989384.1528","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","7762925.355","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","5538032","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","4007557.4602","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","3528756.1209","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","4091047.1054","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","3576041.1644","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","4009876.1656","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","3875697.1317","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","4036966.6041","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","4038172.6432","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","3959323.0687","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","4013645.6883","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","3919877.9171","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","3930847.8359","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","3596796.8324","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","3755868.9349","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","3415518.2086","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","3958532.8108","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","3279477.3663","Fc","Calculated data" +"GA","Crop Residues","101","Indonesia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","2403465.2718","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","425919.888","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","429224.528","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","432529.168","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","444814.5536","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","449143.264","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","453984.0096","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","459848.8256","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","465713.6416","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","472602.528","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","480003.4496","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","466410.928","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","474198.4557","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","535191.6","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","562881.76","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","597228.3776","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","618262.08","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","567196.6336","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","606289.6416","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","676468.3456","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","725276.1856","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","967308.7552","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","897285.4208","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","989363.0688","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1037295.2896","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1163976.1984","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1241512.1056","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1326979.5521","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1085697.1365","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1295893.5264","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1539279.5323","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1754273.999","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","2179235.2116","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1632941.5514","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1161449.4552","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1292299.0651","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1803168.9518","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1494137.8996","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1800760.2012","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1788970.7788","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1742091.2051","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1418569.1784","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1901815.4655","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1982967.3074","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1976529.9688","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1935329.6765","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1790935.5551","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1957498.5699","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1727239.325","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1467054.626","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1429219.0939","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1754260.8929","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1772322.029","Fc","Calculated data" +"GA","Crop Residues","102","Iran (Islamic Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1824528.5756","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","77107.8496","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","84600.532","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","94699.7032","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","124117.0197","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","142975.3269","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","131282.3072","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","164742.928","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","139960.7761","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","128266.0681","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","159535.53","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","133043.3565","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","125066.1999","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","107642.7615","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","151050.2456","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","132669.0968","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","123497.5108","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","87654.6773","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","95488.7504","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","71430.8792","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","70499.4344","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","97631.2464","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","98701.6296","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","51374.9344","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","58820.4392","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","93676.4976","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","100097.0672","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","108987.7816","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","98378.3048","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","72036.4048","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","57098.2176","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","104599.8158","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","107964.576","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","116807.248","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","110524.752","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","108011.7536","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","104242.256","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","108011.7536","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","113084.928","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","105676.0184","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","112572.8928","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","112572.8928","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","93075.296","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","86225.9492","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","101706.3177","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","73848.8714","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","59338.528","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","27645.1651","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","20380.2209","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","21399.6681","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","31967.9905","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","34345.4503","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","46707.1061","Fc","Calculated data" +"GA","Crop Residues","103","Iraq","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","66266.6874","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","49739.0125","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","50018.7882","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","33353.2752","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","33046.4","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","59483.52","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","120129.184","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","113567.0816","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","114591.152","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","114591.152","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","114591.152","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","182917.344","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","108726.336","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","38166.752","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","50873.2768","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","39655.68","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","59483.52","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","62602.9088","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","91273.4208","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","99092.0224","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","64509.5168","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","57435.3792","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","118269.7536","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","124646.6048","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","81174.2496","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","110821.6544","Fc","Calculated data" +"GA","Crop Residues","104","Ireland","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","137817.9872","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","3684461.7866","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","3395350.1122","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","3443143.5749","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","3278440.9539","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","2925635.5709","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","2862115.0357","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","2788289.643","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","2559691.2557","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","2426427.2648","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","2276408.256","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1644706.8822","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1307692.5779","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1202002.7534","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1127274.5096","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1066981.4227","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1071680.1093","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","959216.207","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","919860.9917","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","815418.5106","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","746025.3946","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","728838.1459","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","723903.1298","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","696925.1454","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","690833.0048","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","597075.7533","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","573958.4165","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","510567.3253","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","489803.4442","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","402977.3218","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","355062.2461","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","343158.1821","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","323332.7319","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","339418.714","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","258135.5173","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","228745.3474","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","215815.6969","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","204306.3246","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","191720.93","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","190094.2618","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","186043.5099","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","178701.3557","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","170387.9199","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","134784.4609","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","142417.72","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","161993.4388","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","127776.8687","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","106448.5919","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","106606.4484","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","107472.2347","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","119611.2844","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","108340.7382","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","106282.0874","Fc","Calculated data" +"GA","Crop Residues","106","Italy","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","99985.5386","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","402.9887","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","415.5537","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","420.674","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","395.5441","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","362.9694","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","681.271","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","777.1424","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","784.587","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","1457.0327","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","2280.6955","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","2517.106","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","3056.4571","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","2787.9437","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","3159.7385","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","3138.3136","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","3484.9784","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","2633.8614","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","3044.3293","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","2825.1669","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","2524.1135","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","3035.1013","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","2465.0281","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","2996.4628","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","4164.0635","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","3924.8569","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","2579.9656","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","2658.117","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1948.9199","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","2124.358","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","2746.6129","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","2687.4584","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","2963.9228","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","2680.9919","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","2698.2054","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","2425.0435","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","2613.5183","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","2523.2391","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","2284.0325","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","4385.1822","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","3459.0778","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","3274.8143","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2761.5022","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2835.0396","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2613.9901","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1543.6415","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1762.3667","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1392.8616","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1342.6016","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1525.9562","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1457.5391","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1644.1614","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1797.2656","Fc","Calculated data" +"GA","Crop Residues","109","Jamaica","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1732.1164","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","3279253.7408","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","2908536.7968","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","3017671.6864","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","2420093.2672","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","2734056.0736","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","2483302.5664","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","2780304.9888","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","2382991.1392","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","2156622.1952","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","2409449.0144","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","2059361.9296","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","2491661.1712","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","2225868.976","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","2044639.648","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1693061.4272","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1547772.3776","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1693887.6608","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1404889.3856","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1281873.2416","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1048119.4208","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1039741.6064","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1471157.0592","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1210793.4528","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1577697.1808","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1351738.9984","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1232597.0848","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1305655.8304","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1317799.6832","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1401853.9744","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1432161.8656","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1248753.2416","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1033537.4208","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","886765.1104","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1092596.3424","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1234201.1232","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1070592.6656","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1022235.8464","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","971002.4448","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","952576.096","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","950578.592","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","923619.0592","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","933634.2528","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","826811.0656","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1008165.8816","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","904098.4992","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","739153.024","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","768894.784","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","800408.5376","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","671143.2384","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","708663.3408","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","661653.9168","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","742137.7984","Fc","Calculated data" +"GA","Crop Residues","110","Japan","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","734733.4176","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","188474.88","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","256420.192","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","335986.944","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","132151.008","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","74918.176","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","60028.896","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","237286.1792","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","116527.6416","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","153811.856","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","147391.2864","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","42441.3664","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","62824.96","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","21407.664","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","11076.064","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","6257.8157","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","6382.1887","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","5206.3036","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","4305.1216","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","5868.8419","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","3485.8653","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","3844.2899","Fc","Calculated data" +"GA","Crop Residues","108","Kazakhstan","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","3544.6864","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","1137752.96","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","1137752.96","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","1137752.96","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","1137752.96","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1137752.96","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","1137752.96","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","1137752.96","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","1137752.96","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","1289004.64","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","1526324.16","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1852070.4","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1852070.4","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","2475602.24","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","2778105.6","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","2903755.52","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","3229501.76","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","3578490.88","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","3829790.72","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","3955440.64","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","4304429.76","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","4481283.2","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","4783786.56","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","4481283.2","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","5183979.2","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","5183979.2","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","5509725.44","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","5886675.2","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","6263624.96","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","7139999.2555","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","5881454.3752","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","6527130.9839","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","6686086.1603","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","6767452.2637","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","6237815.648","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","7723917.2991","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","5973375.264","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","6796729.1021","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","6587176.2419","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","8158279.3006","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","7435323.96","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","8176512.3184","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","9375296.6594","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","8873666.7647","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","7280727.8372","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","9658855.2653","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","10133330.8478","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","8501526.8206","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","6135906.4252","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","9534925.239","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","7132162.8398","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","10676035.4056","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","11050627.5846","Fc","Calculated data" +"GA","Crop Residues","114","Kenya","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","11725492.2237","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","18567.8816","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","10284.4224","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","8822.9751","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","11540.9216","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","32018.8704","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","78698.0512","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","107691.888","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","112114.9536","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","168428.448","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","268163.6608","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","357361.4814","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","314415.877","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","321078.8989","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","400502.376","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","545987.1972","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","666093.3532","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","636025.9537","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","635323.8612","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","523296.6642","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","709168.4576","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","763150.7456","Fc","Calculated data" +"GA","Crop Residues","113","Kyrgyzstan","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","879715.1872","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","19265.168","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","26292.128","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","29293.5728","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","31550.5536","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","30010.0762","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","31550.5536","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","31550.5536","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","31550.5536","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","31550.5536","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","25630.464","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","24174.9504","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","40299.2163","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","35970.2888","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","52579.8496","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","40174.5916","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","34752.8778","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","42612.0617","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","34822.4114","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","27558.0973","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","36490.2183","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","18431.2425","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","22532.5848","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","24190.9341","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","20648.1819","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","15320.6599","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","31952.4192","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","40748.7283","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","41656.4334","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","28947.9803","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","40646.428","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","37684.3923","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","30886.6374","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","35226.7963","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","46801.4341","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","46275.7645","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","51959.9845","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","47047.8432","Fc","Calculated data" +"GA","Crop Residues","120","Lao People's Democratic Republic","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","39117.2261","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","6282.496","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","8994.2739","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1768.5344","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","2280.5696","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","9866.7424","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","6562.1024","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","8842.672","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","5538.032","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1768.5344","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1768.5344","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","3537.0688","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","4049.104","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","8610.2432","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","6050.0672","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","6282.496","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","8842.672","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","14660.3104","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","20477.9488","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","22478.912","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","40443.8624","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","57758.704","Fc","Calculated data" +"GA","Crop Residues","119","Latvia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","88056.2176","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","30250.336","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","29088.192","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","29226.2656","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","31739.264","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","36020.7968","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","35802.1754","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","16610.6331","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","16579.3009","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","18816.7438","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","16481.209","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","14002.8328","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","13484.4003","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","11160.9116","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","40144.8256","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","3653.2832","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","2108.088","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","3653.2832","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","6050.0672","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","10703.832","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","21407.664","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","12844.5984","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","15934.6429","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","21035.432","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","14101.0976","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","21407.664","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","26644.2304","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","31652.7965","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","33433.8613","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","34834.7431","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","34812.34","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","35686.942","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","39043.7637","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","38954.9344","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","39050.8404","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","40639.9328","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","41788.5366","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","10890.8128","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","3537.0688","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","4049.104","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","981.0475","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","958.7136","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","6850.66","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2935.6979","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","3566.8474","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2289.6592","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2311.9931","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2267.3253","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","3537.0688","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2058.8754","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","6418.4151","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","8057.8809","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","7487.3025","Fc","Calculated data" +"GA","Crop Residues","121","Lebanon","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","7956.2498","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","44391.6928","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","44391.6928","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","45415.7632","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","67749.6832","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","49136.9888","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","57664.2119","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","69258.1741","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","81562.0944","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","106729.8712","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","140614.9064","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","147040.288","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","84687.104","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","124706.368","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","185062.048","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","277449.7235","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","265069.2886","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","215840.5634","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","137595.1419","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","118325.4798","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","69865.9261","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","72905.0533","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","125969.2454","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","43238.2579","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","67911.9683","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","66885.2115","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","145484.3457","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","112994.531","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","211608.9895","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","183039.0836","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","76522.6185","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","67302.5485","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","39919.5809","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","42432.7868","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","76045.3644","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","50102.8504","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","108344.9482","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","174865.3612","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","98717.748","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","134136.6337","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","154944.3171","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","132321.2742","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","76231.373","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","102094.4866","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","88536.9853","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","78017.7097","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","210356.4301","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","202953.698","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","107453.0486","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","77031.5698","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","245730.0481","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","167755.1913","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","137863.539","Fc","Calculated data" +"GA","Crop Residues","122","Lesotho","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","157557.7089","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","3537.0688","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","3537.0688","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","3537.0688","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","2096.6395","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","2376.809","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","2407.9683","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","2414.9411","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","2462.8768","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","2624.841","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","2162.226","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","2808.6673","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","3665.0084","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","3000.8818","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","3537.0688","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","3537.0688","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","3713.9222","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","3904.756","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","3895.4934","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","3960.6773","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","4049.104","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","3872.2506","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","3392.8938","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","3164.8368","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","3090.3904","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","3015.944","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","3788.5416","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","4561.1392","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","5333.7368","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","6069.1112","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","6841.7088","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","7158.1925","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","7323.4245","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","7386.2494","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","7459.7869","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","7577.0832","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","7585.8666","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","7443.596","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","7309.3786","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","7374.628","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","7502.6368","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","7502.6368","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","7502.6368","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","7502.6368","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","7507.3546","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","8081.1914","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","9031.9951","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","9926.9691","Fc","Calculated data" +"GA","Crop Residues","124","Libya","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","8391.9085","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","3736.6462","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","6770.9424","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","14101.0976","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","21407.664","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","35370.688","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","44957.824","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","47518","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","23873.4848","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","24247.4464","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","37371.6512","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","44304.256","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","36441.936","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","44260.5376","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","58732.1376","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","43835.9392","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","18662.2368","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","32298.4768","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","28111.2992","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","32810.512","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","67669.1648","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","88473.8976","Fc","Calculated data" +"GA","Crop Residues","126","Lithuania","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","137389.9296","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","700371.712","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","666853.536","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","717551.7368","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","728172.8976","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","688311.4909","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","681047.8406","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","713294.4846","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","751962.4526","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","787202.8208","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","773859.6486","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","868750.0752","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","830733.3664","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","769768.1474","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","804132.8816","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","855847.307","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","814075.4541","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","687966.3694","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","598264.2461","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","659250.8326","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","617176.9437","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","597608.4774","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","611807.4998","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","621447.3334","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","603901.7448","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","613686.2576","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","705497.3963","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","650509.8611","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","620514.976","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","622567.1427","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","620028.8259","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1005375.1323","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1057356.9988","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1061690.764","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","888701.6","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","984368.5066","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","994522.1528","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1050272.3312","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1067454.7296","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1037773.984","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","997146.3498","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1002075.868","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","978201.0474","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1002080.4128","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","976627.5456","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","954082.8426","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","965547.2702","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","974375.443","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","988535.3934","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1002643.9135","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1006413.8741","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1002959.1215","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1004187.7211","Fc","Calculated data" +"GA","Crop Residues","129","Madagascar","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1007926.0907","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","625418.944","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","657993.568","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","698012.832","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","738032.096","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","778051.36","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","810625.984","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","843200.608","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","880986.48","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","919516.816","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","958047.152","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","996577.488","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1015842.656","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1035852.288","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1055861.92","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1092158.864","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1128455.808","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1168475.072","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1188484.704","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1148465.44","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1188484.704","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1221059.328","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1268523.232","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1315987.136","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1373691.744","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1421155.648","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1446285.632","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1471415.616","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1496545.6","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1483980.608","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1551925.92","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1514230.944","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1478860.256","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1529120.224","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1614556.9629","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1651974.08","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1752022.24","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1648159.4178","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1719950.1689","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1312329.7187","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1370022.0031","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2155689.5662","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2102960.0223","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2295207.7965","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1965333.6004","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2180008.108","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2406315.596","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2596525.5783","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2576261.1468","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2879678.5746","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","2947202.5605","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","2986438.4261","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","3266356.4124","Fc","Calculated data" +"GA","Crop Residues","130","Malawi","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","3256562.4479","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","6743.2114","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","7762.9791","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","9473.1863","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","10256.383","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","11375.4158","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","3217.4777","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","4060.3795","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","4514.0308","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","3922.671","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","3226.4069","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","4382.0181","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","3824.8779","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","3886.7939","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","4248.3134","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","4227.3603","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","6072.7345","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","4457.7069","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","4508.945","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","5109.4069","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","5934.3938","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","5561.6208","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","4528.7596","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","5264.2032","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","7725.976","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","7725.976","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","6189.8704","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","6329.5006","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","6329.5006","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","6329.5006","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","5443.3809","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","6189.8704","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","5752.2816","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","4793.568","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","4455.9217","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","4491.0646","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","4049.104","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","4193.7316","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","4057.4245","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","3810.9208","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","3591.241","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","3319.7981","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2926.1413","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","3013.57","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2972.989","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2954.175","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2631.9176","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2652.8016","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","3239.2832","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","3099.653","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","3164.8368","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","2871.596","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","3036.828","Fc","Calculated data" +"GA","Crop Residues","134","Malta","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","3036.828","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","43650.688","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","71758.528","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","86556.912","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","100610.832","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","115409.216","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","127385.776","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","113361.0752","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","134262.4394","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","132938.0253","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","127455.1295","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","127393.8155","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","126611.0591","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","124682.6559","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","123112.6414","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","122839.8138","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","128911.104","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","133616.7125","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","137142.8754","Fc","Calculated data" +"GA","Crop Residues","136","Mauritania","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","140720.2281","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","15742534.8722","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","15816993.0342","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","16203956.4414","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","20131855.2932","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","20160618.3947","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","21863939.2976","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","19386724.9467","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","17718715.3867","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","16598191.0716","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","17741927.0485","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","19513370.557","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","17009408.8886","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","19084995.7513","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","16527976.704","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","18307867.2631","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","13583896.614","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","16083359.9092","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","16622131.8158","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","11107182.4208","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","16337677.2145","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","21635727.6532","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","16713145.4772","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","21155651.5368","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","17268192.6202","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","17938177.0539","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","19018056.8773","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","18545941.4606","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","18912867.5174","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","12871861.3981","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","22180959.551","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","21865750.0305","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","13324538.0664","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","20543054.9854","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","22520017.3998","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","21697925.5162","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","22157434.8846","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","16964944.3642","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","22434724.0217","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","18143818.5752","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","15734135.6851","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","18088097.1766","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","23225856.7101","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","21420125.0688","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","18452101.2928","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","13623314.4114","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","19924446.9721","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","16176029.9195","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","16958041.599","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","14305177.5936","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","18056842.9197","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","9569972.6883","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","17140502.5045","Fc","Calculated data" +"GA","Crop Residues","138","Mexico","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","19693156.1827","Fc","Calculated data" +"GA","Crop Residues","273","Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","363.1775","Fc","Calculated data" +"GA","Crop Residues","273","Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","591.5674","Fc","Calculated data" +"GA","Crop Residues","273","Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","775.9","Fc","Calculated data" +"GA","Crop Residues","273","Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","847.585","Fc","Calculated data" +"GA","Crop Residues","273","Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","791.2611","Fc","Calculated data" +"GA","Crop Residues","273","Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","811.7425","Fc","Calculated data" +"GA","Crop Residues","273","Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","831.2804","Fc","Calculated data" +"GA","Crop Residues","273","Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1343.7527","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","61288.8544","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","51995.4155","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","78942.6623","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","72148.9392","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","62629.0471","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","78478.4877","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","89303.9091","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","102844.224","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","57704.608","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","45139.616","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","57704.608","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","28879.9187","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","49830.777","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","30057.5997","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","44343.9485","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","17311.3824","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","98468.336","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","110288.864","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","110800.8992","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","112801.8624","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","97723.872","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","91394.1984","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","91394.1984","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","90137.6992","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","90137.6992","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","88136.736","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","86647.808","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","88648.7712","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","89905.2704","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","90783.8638","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","58068.1879","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","80009.4512","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","98273.4267","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","89905.2704","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","131152.8117","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","130298.496","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","162826.7702","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","182882.752","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","290699.9157","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","228413","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","232670.944","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","219253.7577","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","187491.0688","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","244171.6064","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","188003.104","Fc","Calculated data" +"GA","Crop Residues","143","Morocco","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","217841.6506","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2126430.0768","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2755155.8688","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","3019969.92","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","3930930.2944","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","4011115.0656","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","4646376.5376","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","4165741.5264","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","4387965.76","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","6357031.3566","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","6076913.5755","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","7323701.0467","Fc","Calculated data" +"GA","Crop Residues","144","Mozambique","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","7231884.7413","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","2744344.6176","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","3029155.7152","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","3860663.4912","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","4101955.056","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","3605819.664","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","3695253.1584","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","3765194.7232","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","3505224.8768","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","3678770.2176","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","3338548.9184","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","3264348.784","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","3556421.4784","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","3555289.216","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","3348604.3712","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","3624295.3984","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","3148759.984","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","3304701.7504","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","3908056.0621","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","4023613.1037","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","4331168.5907","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","4435255.6523","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","4206391.984","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","3950778.5216","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","4918144.832","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","4850586.0672","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","4954539.5904","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","4744880.3488","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","4351952.7648","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","3507310.112","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","4575719.728","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","5874814.4128","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","7866310.2976","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","9525176.7232","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","9794097.4336","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","12075437.3312","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","14814086.6336","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","15047967.856","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","15406774.1414","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","18792906.3313","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","19701560.92","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","21122044.4947","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","23086963.552","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","24607535.136","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","24957065.216","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","27395859.36","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","30633588.864","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","33288277.568","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","36763936.736","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","37523164.16","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","38249816.96","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","39391183.68","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","41313271.2441","Fc","Calculated data" +"GA","Crop Residues","28","Myanmar","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","44961294.414","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","103.316","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","151.2517","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","214.0766","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","405.8194","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","605.0067","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","804.1941","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1010.8261","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1240.7356","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","620.3678","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1210.0134","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1298.4402","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1177.8087","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1210.0134","Fc","Calculated data" +"GA","Crop Residues","147","Namibia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1121.5867","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","141465.456","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","147747.952","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","151470.272","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","157752.768","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","159986.16","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","163011.1936","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","163708.48","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","168269.6192","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","168919.728","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","176273.472","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","175202.224","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","184044.896","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","185207.04","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","194049.712","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","208012.736","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","209174.88","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","215457.376","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","211825.952","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","219179.696","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","218852.912","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","222902.016","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","222902.016","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","250356.288","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","265245.568","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","198896.4339","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","263355.7555","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","286895.0963","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","292039.9498","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","271118.4358","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","279704.3984","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","278285.8909","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","261527.6198","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","266460.6451","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","191437.3668","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","269837.3785","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","268179.7056","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","282532.103","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","291725.7204","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","297558.6161","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","306814.508","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","335809.7321","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","349239.2584","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","352833.5063","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","369934.1616","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","384965.235","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","374908.0209","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","373977.268","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","376184.7719","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","379533.63","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","388047.6435","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","320223.1341","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","319813.5751","Fc","Calculated data" +"GA","Crop Residues","149","Nepal","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","297197.1334","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","75643.1507","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","50306.8085","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","48414.2","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","69825.7574","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","63633.0409","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","66944.2512","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","99973.5097","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","47930.0091","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","59772.9086","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","88138.4104","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","77607.8497","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","59556.8889","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","98815.8009","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","115926.5394","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","114872.4924","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","69745.2132","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","83881.1995","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","90579.8468","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","85042.0032","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","53622.6048","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","73274.6887","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","83355.5674","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","80654.0816","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","64660.7155","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","70343.9382","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","73066.7106","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","31561.86","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","47844.784","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","22805.696","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","42560.014","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","54439.2307","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","47209.2936","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","42047.9788","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","39676.904","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","43792.5726","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","62472.3593","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","44520.757","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","41543.244","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","41794.7168","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","24333.5739","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","36768.72","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","34293.9355","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","52314.1624","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","58478.409","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","28663.0674","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","18208.1138","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","26110.336","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","17964.9504","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","32825.4859","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","47704.2006","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","32150.6814","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","36152.1485","Fc","Calculated data" +"GA","Crop Residues","150","Netherlands","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","40493.078","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","586397.328","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","539936.6362","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","563199.3388","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","643350.6905","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","688642.08","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","737086.336","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","769987.744","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","782040.7008","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","769475.7088","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","744329.4003","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","754469.2451","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","674756.9947","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","524606.4465","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","723172.5416","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","644620.0726","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","780183.2149","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","669369.1141","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","779145.689","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","544914.687","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","549591.6792","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","965556.2465","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","752364.7046","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","946447.3504","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","911130.5376","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","775691.1964","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1045923.4029","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","677723.8203","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1090253.3445","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1107038.2161","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1204138.1088","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1204690.5908","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1079649.256","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1246422.8948","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","1216830.8387","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1476283.7187","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1272556.4723","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1367599.61","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","2167380.6988","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2223113.7158","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2543889.173","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2618453.7489","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2865840.2747","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","3331411.3899","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2611585.7472","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","3096989.6145","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2621540.7102","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2596619.7068","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2685033.1082","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2943688.7662","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","2384028.8716","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","3441896.2984","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","3423795.0651","Fc","Calculated data" +"GA","Crop Residues","157","Nicaragua","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","2618033.3138","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","20009.632","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","40019.264","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","60028.896","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","80038.528","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","140067.424","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","144779.7064","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","161621.314","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","151154.0019","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","151922.7216","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","151384.158","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","160077.056","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","164477.6711","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","180086.688","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","184833.0784","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","186089.5776","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","188602.576","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","189663.161","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","216740.9888","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","227786.48","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","249143.5072","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","251144.4704","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","353752.8064","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","365293.728","Fc","Calculated data" +"GA","Crop Residues","158","Niger","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","356451.056","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","115300.0451","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","97378.2251","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","108808.3919","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","108691.9825","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","109189.9527","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","127886.0845","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","121079.7906","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","129597.927","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","122291.103","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","93183.7029","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","117363.0328","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","118872.1571","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","115137.4075","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","71262.1365","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","73785.3881","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","74554.592","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","75905.3589","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","74554.592","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","74554.592","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","74554.592","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","74554.592","Fc","Calculated data" +"GA","Crop Residues","154","North Macedonia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","74554.592","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","1024984.4384","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","951137.5104","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","979481.2384","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","1037374.5568","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1007727.152","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","978416.9088","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","1236214.3776","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","1001629.9072","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","876088.1792","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","1084471.4176","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1145618.7392","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","958690.3424","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1109554.224","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1125747.1808","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1251716.9664","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1129417.2971","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1177888.869","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1132176.7267","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1328932.1012","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1342922.4544","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1313180.1682","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1526256.7255","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1622707.2498","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1791239.4848","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1935305.376","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1908962.6112","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1658323.2576","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1678878.2656","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","2201402.3488","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","2120760.8896","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1978743.1392","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","2037006.96","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","2231105.5027","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","2292471.573","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","2524322.8706","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","2463288.9571","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","2406178.8192","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","2418082.8832","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2438887.616","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2638754.9664","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2921958.5664","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","3188575.744","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","3114031.5296","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2715799.5936","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2477485.8848","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2657930.4896","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","3071056.416","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2717151.6992","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2206591.8848","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1651788.1252","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1762516.588","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1700640.2356","Fc","Calculated data" +"GA","Crop Residues","165","Pakistan","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1658321.0231","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","171113.2906","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","225257.8077","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","225231.2875","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","169722.5678","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","131199.717","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","199851.8524","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","199171.0215","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","169753.6418","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","155779.6344","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","157244.9736","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","117888.3518","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","106268.6841","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","92660.4106","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","107986.0149","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","140621.7314","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","144996.6949","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","132725.5193","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","131203.2836","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","98241.8776","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","85593.5351","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","72636.7004","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","74765.2514","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","93707.7239","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","87821.8539","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","115140.8704","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","105160.4484","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","85492.2696","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","92415.4448","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","105342.8873","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","104530.0158","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","94321.7694","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","120945.5066","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","121961.2359","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","129996.5027","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","121619.6694","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","109366.5596","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","94538.4912","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","71609.3401","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","85367.5441","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","79117.003","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","83077.1364","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","94530.4902","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","100257.9185","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","96290.2242","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","97049.9359","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","85164.1078","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","83944.1429","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","76389.7867","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","78977.2315","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","76803.9817","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","106157.9418","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","101376.9167","Fc","Calculated data" +"GA","Crop Residues","166","Panama","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","94397.1343","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","253900.2752","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","252037.3856","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","253900.2752","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","283402.688","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","355346.4672","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","338642.6086","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","355130.1421","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","315505.536","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","289364.3763","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","583544.3874","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","536642.4768","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","475048.981","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","517845.6256","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","498141.7295","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","626624.6894","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","727925.8504","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","765116.843","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1003506.4386","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","937126.8598","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","890192.2282","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","590387.7044","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","591082.9778","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","612423.9013","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","643149.3356","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","674108.1172","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","448856.1136","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","696763.447","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","709577.3233","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","665694.2065","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","583534.9732","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","557805.9912","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","565607.7126","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","596221.113","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","557199.1805","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","682842.7076","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","624830.066","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","748334.1449","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","630370.1838","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","649369.0803","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","593290.4302","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","735210.7364","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","767422.2151","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","877608.0575","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","881002.3886","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","901411.584","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","991219.04","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","991219.04","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","641118.7078","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","677173.625","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","672340.1584","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","736832.4852","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","600661.8662","Fc","Calculated data" +"GA","Crop Residues","169","Paraguay","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","807864.512","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","550171.7466","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","582008.3539","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","552502.4819","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","573368.4264","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","649772.3692","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","889205.6459","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","1022975.5794","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","750851.7779","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","937177.925","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","898898.5679","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","835238.245","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","824890.7202","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","832605.9932","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","853001.9539","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","822659.389","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","853112.4635","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","789744.0286","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","754027.1122","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","757854.0848","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","742590.3913","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","767165.4011","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","755418.8573","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","640826.3356","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","722860.6954","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","724508.3139","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","836496.3766","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","928694.1001","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","827202.9407","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","855085.9099","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","710883.5061","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","683995.9755","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","599507.9698","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","715886.3786","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","765239.1117","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","765791.7837","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","918103.6268","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","871212.8482","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","911931.0642","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","916047.4055","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","921825.7547","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","791951.8424","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","814894.9739","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","735883.6141","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","728154.6249","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","868825.7831","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","974206.3823","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","977950.2598","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1015565.8133","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1128768.502","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1079599.827","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1037354.3838","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1084857.2333","Fc","Calculated data" +"GA","Crop Residues","170","Peru","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1103437.7681","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","669009.5597","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","453248.672","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","454849.8959","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","402366.2489","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","377540.5546","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","367095.2124","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","307609.8163","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","315223.6038","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","302027.89","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","351416.6946","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","357923.1767","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","371073.4425","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","395548.0781","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","361278.4417","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","403722.2355","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","447594.363","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","455235.7086","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","469937.6111","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","504921.4487","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","542828.8939","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","381923.2182","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","397538.0499","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","377158.2556","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","380144.984","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","393837.5074","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","400579.9953","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","387898.5026","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","409065.5071","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","394382.0356","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","408904.6941","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","383547.2537","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","362144.4804","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","365840.233","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","376586.4307","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","395394.525","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","400292.9377","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","410640.5876","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","426246.226","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","441936.9415","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","435892.3347","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","418522.7597","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","411850.554","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","398215.5342","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","405786.3901","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","405822.3489","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","398895.2516","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","439256.1226","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","448861.8279","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","429597.9214","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","436912.1634","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","505882.5686","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","495902.5415","Fc","Calculated data" +"GA","Crop Residues","171","Philippines","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","490516.4773","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","196391.296","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","216400.928","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","309476.224","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","359736.192","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","524024.64","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","612451.36","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","489125.728","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","377893.312","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","340198.336","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","307623.712","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","368124.384","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","345318.688","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","295058.72","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","141010.976","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","111476.266","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","124556.0606","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","230901.7619","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","336962.1241","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","398592.6084","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","386753.8173","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","328425.2292","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","188454.4972","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","236699.6085","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","324263.4922","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","330352.1861","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","309304.4328","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","308940.193","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","313643.0843","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","359118.5864","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","364467.4841","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","379791.4626","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","329597.3261","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","301883.8717","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","157302.0342","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","400382.3182","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","284738.7849","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","392307.3502","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","427185.6284","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","396485.2049","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","429950.3705","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","381177.6862","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","415565.1592","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","306738.3526","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","346474.2132","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","265544.0535","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","300913.1422","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","348246.9965","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","265240.2666","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","252142.7109","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","302505.2052","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","309266.2336","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","250124.515","Fc","Calculated data" +"GA","Crop Residues","173","Poland","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","270911.179","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","3547932.0481","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","3512057.8346","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","3483617.7995","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","3606318.9451","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","3316952.8759","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","3455667.0572","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","3077377.2127","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","2919188.3956","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","2904702.7049","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","2933826.7394","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","2733389.0758","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","2673234.7507","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","2557577.6668","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","2442992.4757","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","2488179.6064","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","2205823.8136","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","2212560.019","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","2336465.0611","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","2158133.2621","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","2265525.7379","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1976159.8594","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","2033648.6634","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1919244.1183","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1825671.4026","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1704478.8936","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","641803.121","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","635250.089","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","615028.503","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","632668.2864","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","599593.6674","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","578375.7052","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","430038.1127","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","280031.2582","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","258650.4317","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","240344.4837","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","219183.3385","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","192690.7587","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","171718.1796","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","126624.3575","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","119963.6473","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","113635.3795","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","106799.6337","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","99142.4553","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","92194.2223","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","71912.8186","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","75230.1995","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","69436.7034","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","52322.3695","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","36782.2609","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","36579.0005","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","36675.8155","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","35219.1853","Fc","Calculated data" +"GA","Crop Residues","174","Portugal","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","34933.9647","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","54608.8838","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","56746.612","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","51077.4888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","44006.0715","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","44093.9227","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","40870.3935","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","40870.3935","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","7259.3888","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","7310.5923","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","5156.0186","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","3927.48","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","3303.9482","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","2377.913","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1852.0704","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1088.9083","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","825.987","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","362.9694","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","165.1974","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","143.1318","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","125.1781","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","113.4716","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","92.6035","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","177.7624","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","416.0255","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1104.0397","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","3011.9056","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1907.8658","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1755.1988","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","197.772","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","202.8924","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","180.5585","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","225.6981","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","288.523","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","328.6474","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","332.3658","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","246.7463","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","219.3227","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","187.8166","Fc","Calculated data" +"GA","Crop Residues","177","Puerto Rico","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","157.092","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","361691.5541","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","356481.1363","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","367614.4052","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","381493.2139","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","402302.2","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","481718.256","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","506039.2781","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","548350.2945","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","550718.4356","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","528344.6317","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","482040.5475","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","447878.9823","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","452344.8824","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","484430.6493","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","512517.4611","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","557458.3445","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","566710.934","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","437732.8735","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","501662.2751","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","465327.3226","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","526736.6557","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","581412.2631","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","453841.5288","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","388736.7448","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","374136.2837","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","450219.8259","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","517326.7184","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","536678.387","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","452477.5265","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","343623.8846","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","369770.2581","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","320860.1318","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","286820.1222","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","228827.75","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","267155.2054","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","245653.7639","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","209025.4352","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","201857.1625","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","186077.8568","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","173939.9553","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","169063.6469","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","130284.7792","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","104281.1021","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","108264.2892","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","84092.6949","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","74144.3633","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","90118.5411","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","88592.7233","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","85319.9691","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","74076.1979","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","67480.8886","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","84197.9297","Fc","Calculated data" +"GA","Crop Residues","117","Republic of Korea","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","123263.3892","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","222018.345","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","300995.4358","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","225568.0582","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","227294.9851","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","230818.3098","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","317766.8982","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","308543.0724","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","318547.332","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","258687.6108","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","417238.2778","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","328489.0279","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","275584.171","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","275267.6241","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","293515.3089","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","283714.9831","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","143870.0946","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","195190.9985","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","153710.9541","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","180508.7855","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","195487.9473","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","132798.7447","Fc","Calculated data" +"GA","Crop Residues","146","Republic of Moldova","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","131726.9064","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","8935.2976","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","8935.2976","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","8935.2976","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","8935.2976","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","6562.1024","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","7562.584","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","6562.1024","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","6562.1024","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","6562.1024","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","6562.1024","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","7353.744","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","6683.7264","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","6683.7264","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","7353.744","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","7353.744","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","7353.744","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","7353.744","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","8335.8734","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","7148.9299","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","7148.9299","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","7338.3829","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","2759.9264","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","4028.6226","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","3690.6794","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","3690.6794","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","3424.4211","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","3337.7777","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","3721.8041","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","3199.5282","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","3840.5503","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","4197.525","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","4257.0821","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","5989.0822","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","6217.1392","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","6217.1392","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","6217.1392","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","7399.192","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","9027.9232","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","13541.8848","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","15071.5725","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","17384.6034","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","19643.4124","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","21849.4336","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","23944.9454","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","20279.6927","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","21302.9957","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","22229.0359","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","23138.4324","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","24039.6801","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","24944.3523","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","25864.5792","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","26106.8768","Fc","Calculated data" +"GA","Crop Residues","182","Réunion","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","26618.912","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","11381470.9536","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","11218424.7154","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","12616088.8736","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","12975823.8144","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","11663034.2856","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","11942519.4112","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","11579991.8656","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","10347407.624","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","9405087.9456","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","9282274.3488","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","8476017.6288","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","8653331.216","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","7079752.912","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","7481083.4816","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","6963692.9815","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","6576946.2688","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","5535502.1472","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","5201348.5439","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","3523094.552","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","3981667.7056","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","3624083.3281","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","4111092.5394","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","5537799.6639","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","5656577.68","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","2226170.2944","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","2262008.048","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1955501.5104","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","2213164.3648","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","2205598.9472","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","830428.8316","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","579285.5057","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","556203.6478","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","503879.2874","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","428624.5356","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","436154.0438","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","497114.6812","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","474349.7684","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","452098.898","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","452516.6876","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","293600.9255","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","345445.0511","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","362712.2073","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","388784.8924","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","612235.8732","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","642871.146","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","606542.9058","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","390544.7457","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","397698.2028","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","335334.4292","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","293632.8179","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","288777.6828","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","274159.1727","Fc","Calculated data" +"GA","Crop Residues","183","Romania","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","254468.3288","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","67090.3891","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","65512.5155","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","59256.2506","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","53014.4848","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","72479.9817","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","65225.3107","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","61447.5853","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","64090.7814","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","64329.425","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","68043.6931","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","63510.1686","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","95105.3202","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","103173.9005","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","99814.031","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","102738.6706","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","77872.0134","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","60145.3548","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","67779.5449","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","58427.2143","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","63674.6797","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","62714.5106","Fc","Calculated data" +"GA","Crop Residues","185","Russian Federation","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","66898.8444","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","1419286.7784","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","1366722.825","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","1386549.1046","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","1163040.2147","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1392690.8348","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","1816728.6368","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","1828525.576","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","1758710.1432","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","1956918.066","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","1923169.787","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1934429.2968","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1823723.9657","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1872637.4328","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1977983.85","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","2201051.4299","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","2347039.2004","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","2466405.2031","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","2471786.1183","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","2698560.8544","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","2842226.737","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","2922110.2464","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","3056064.1821","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","3590787.1525","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","3421070.8576","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","4134388.8096","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","3785827.0038","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","3766583.4448","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","3379838.8128","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","2939458.9536","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","2953155.6523","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","2836385.76","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","2857269.76","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","2190416.224","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","513197.0496","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1985199.552","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","2753878.0101","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","2460400.6237","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","2537026.3815","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2418009.0676","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","3583243.7133","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","3800632.1215","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","3929441.6402","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","3879937.1548","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","3392414.9942","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","3352581.8043","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","4104169.4401","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","4351325.4131","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","4082763.0133","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","4246694.9679","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","4053616.1282","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","4240406.1793","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","5789055.497","Fc","Calculated data" +"GA","Crop Residues","184","Rwanda","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","5817441.1245","Fc","Calculated data" +"GA","Crop Residues","272","Serbia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","395855.7129","Fc","Calculated data" +"GA","Crop Residues","272","Serbia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","325103.082","Fc","Calculated data" +"GA","Crop Residues","272","Serbia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","375053.9867","Fc","Calculated data" +"GA","Crop Residues","272","Serbia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","395103.0079","Fc","Calculated data" +"GA","Crop Residues","272","Serbia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","372276.6229","Fc","Calculated data" +"GA","Crop Residues","272","Serbia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","347874.802","Fc","Calculated data" +"GA","Crop Residues","272","Serbia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","149475.8003","Fc","Calculated data" +"GA","Crop Residues","272","Serbia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","156634.7808","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","552457.056","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","423029.6918","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","491666.4","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","554362.8838","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","473981.056","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","524531.008","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","521069.6074","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","555501.9138","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","375381.3175","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","506004.7766","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","490400.1392","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","433482.4323","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","505505.8599","Fc","Calculated data" +"GA","Crop Residues","186","Serbia and Montenegro","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","473130.5432","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","28061.7252","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","30196.3489","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","22084.7362","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","22817.6825","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","21695.2906","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","22619.5425","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","37073.7714","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","25505.0938","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","5230.0057","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","9180.4644","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","9215.7659","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","8757.1893","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","8263.5188","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","7807.3356","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","7484.3163","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2300.3371","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2919.2549","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","3100.1122","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1260.2042","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1614.3137","Fc","Calculated data" +"GA","Crop Residues","199","Slovakia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","839.0584","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","8628.7608","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","8898.9819","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","8834.353","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","11436.9984","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","9642.0791","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","9732.4621","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","8207.4841","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","5701.7228","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","5275.3183","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","5215.692","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","5242.2719","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","5959.3814","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","6586.4618","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","8267.9502","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","5495.9873","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","5561.4478","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","4762.6729","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","5853.3079","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","4824.3247","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","5008.6574","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","4097.2347","Fc","Calculated data" +"GA","Crop Residues","198","Slovenia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","4760.682","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","31409.0208","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","11883.8093","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","17914.3136","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","26686.2192","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","58630.864","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","66634.7168","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","69380.144","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","69380.144","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","89807.456","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","215632.2496","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","193668.832","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","260303.5488","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","163469.1328","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","146996.5696","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","188090.5408","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","196838.8576","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","192186.8224","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","214008.7072","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","165567.9104","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","185345.1136","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","257332.6112","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","277810.56","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","267569.856","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","364030.3104","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","471297.6","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","280178.5664","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","439453.6032","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","342659.4464","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","379239.456","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","391804.448","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","421301.516","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","334099.84","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","391332.672","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","461733.4272","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","476019.776","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","488584.768","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","501149.76","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","476019.776","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","488584.768","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","501149.76","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","546053.488","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","559679.7664","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","573507.76","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","593517.392","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","599217.1472","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","576067.936","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","619348.0547","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","660394.3251","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","690495.1832","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","718612.899","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","745076.0794","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","808267.104","Fc","Calculated data" +"GA","Crop Residues","201","Somalia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","723580","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","819957.728","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","611473.216","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","663585.696","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","688715.68","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","721762.08","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","739919.2","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","977745.088","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","833466.272","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","705020.288","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","672445.664","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","749250.944","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","786474.144","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","802744.16","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","971244","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1139640.064","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1148028.256","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1163423.904","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1322120.224","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1402561.344","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1051282.528","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1050373.568","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","958679.008","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","859505.216","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","998663.68","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","944261.504","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1104810.336","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1154598.528","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1069911.424","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1194652.384","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1344051.552","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1090672.763","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","540842.268","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","663290.0419","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","631028.368","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","668638.8652","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","674733.3441","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","616156.384","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","504712.092","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","871559.424","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","903210.9774","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1049487.5418","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","636467.511","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","688482.7102","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","828016.928","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","724523.7286","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","752905.5152","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","580113.6838","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","628047.9912","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","669292.4266","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","595872.6178","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","526882.793","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","540139.6286","Fc","Calculated data" +"GA","Crop Residues","202","South Africa","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","632459.2624","Fc","Calculated data" +"GA","Crop Residues","277","South Sudan","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","43229.1072","Fc","Calculated data" +"GA","Crop Residues","277","South Sudan","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","38304.8256","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","2410976.656","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","2517723.7408","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","2580704.0704","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","2321033.3344","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","2277558.0087","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","2312665.8976","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","2248140.9807","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","2151616.3655","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","2142897.6374","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","2028078.1024","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","2006822.3488","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","2037214.2176","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1920471.4432","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1836279.0784","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1800766.8576","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1712946.528","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1524255.264","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1619932.2464","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1572151.936","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1392694.6016","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1356535.7312","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1265700.7456","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1214107.2192","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1202481.6797","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1129154.9903","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1171952.3776","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1134799.5304","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1022095.2704","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","949127.4208","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","883048.4576","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","823429.0139","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","636495.6204","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","566581.2876","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","562731.6278","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","540364.7968","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","546593.1968","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","342875.8304","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","288152.5376","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","264841.0293","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","160641.699","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","173368.7523","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","148358.1343","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","162710.9247","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","169184.0153","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","154875.4238","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","140133.2379","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","120090.6544","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","104619.6768","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","126883.7541","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","115681.7068","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","111943.8277","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","99847.2004","Fc","Calculated data" +"GA","Crop Residues","203","Spain","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","100617.7504","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","56579.5525","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","73213.7531","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","69455.8232","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","61559.4978","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","95046.683","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","72079.3497","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","65955.2762","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","84799.8114","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","77003.8013","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","67088.4939","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","49748.4995","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","64657.3424","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","90452.9722","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","123543.5314","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","121831.6477","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","136005.412","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","295243.0968","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","283152.933","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","236708.5451","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","262297.7754","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","344612.39","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","369314.6395","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","485994.0164","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","585793.3392","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","374590.3582","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","384979.1439","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","399718.0304","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","438756.3757","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","389583.1926","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","419382.2245","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","504652.4171","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","481495.892","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","382227.6712","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","332383.8229","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","216651.2821","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","220795.5214","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","194509.8886","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","210225.693","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","185055.1958","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","156450.2099","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","132181.9862","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","136594.2326","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","143737.0611","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","104088.2995","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","117849.4976","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","105628.777","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","108841.8262","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","115162.6494","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","111215.0243","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","136439.0176","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","90332.6391","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","80831.175","Fc","Calculated data" +"GA","Crop Residues","38","Sri Lanka","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","78280.9631","Fc","Calculated data" +"GA","Crop Residues","276","Sudan","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","77259.76","Fc","Calculated data" +"GA","Crop Residues","276","Sudan","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","81635.648","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","95045.5238","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","54453.3758","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","72990.592","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","107392.1557","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","106227.8574","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","105164.2771","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","80663.6157","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","52938.2551","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","32135.3902","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","45502.843","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","45502.843","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","50623.195","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","39241.9008","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","39241.9008","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","67625.1925","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","59800.8758","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","36115.152","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","89171.184","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","33972.656","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","43559.792","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","39241.9008","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","22747.6992","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","36748.9812","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","33951.9479","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","22896.592","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","22896.592","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","33228.192","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","30250.336","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","30250.336","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","30250.336","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","30250.336","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","30250.336","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","47935.68","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","139340.256","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","63983.2032","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","84737.2992","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","103225.104","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","106921.6233","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","175455.408","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","268167.12","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","412355.04","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","224789.12","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","93859.7469","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","118601.0493","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","128230.6451","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","133361.7884","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","136027.1895","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","144019.8139","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","107973.224","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","79517.1159","Fc","Calculated data" +"GA","Crop Residues","206","Sudan (former)","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","67740.9905","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","31833.6192","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","25381.9757","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","24628.4221","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","11936.7424","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","14534.3146","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","20745.0123","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","16074.4461","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","23325.783","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","10177.9894","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","26015.9808","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","24926.5536","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","26528.016","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","20239.7645","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","16381.6672","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","13323.6093","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","13375.5046","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","16158.6739","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","18476.8001","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","19134.5074","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","19506.8652","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","14834.1698","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","11390.4059","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","8457.85","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","13057.1213","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","16040.2957","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","59067.231","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","54080.5366","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","36113.4158","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","34527.324","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","34464.845","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","36747.0816","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","37556.9024","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","38441.1696","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","38813.4016","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","9563.5472","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","10331.6","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","12891.776","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","14892.7392","Fc","Calculated data" +"GA","Crop Residues","210","Sweden","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","12789.759","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","16423.8032","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","21866.2627","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","18772.7995","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","23241.5648","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","25362.4128","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","23465.5141","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","30299.7437","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","34667.1493","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","45282.3941","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","32906.047","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","37561.5856","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","50930.91","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","49629.0636","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","57744.0826","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","69498.612","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","97036.0263","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","100004.5881","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","89517.1445","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","61161.9238","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","115241.737","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","99033.6429","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","104722.181","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","109649.1328","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","96150.9664","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","114189.6147","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","59838.7313","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","104581.6734","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","90286.1504","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","48912.5728","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","29341.7911","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","23380.0468","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","84213.2554","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","74975.7312","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","31041.9776","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","45887.5392","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","35217.2379","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","35154.24","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","30250.336","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","14541.4479","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","18775.8281","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","18216.7662","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","17760.7906","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","33601.1158","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","28344.0739","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","22478.912","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","20419.1969","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","11702.071","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","8821.5804","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","11460.1375","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","19463.2101","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","18354.7419","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","8535.3817","Fc","Calculated data" +"GA","Crop Residues","212","Syrian Arab Republic","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","22276.1168","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","9056.7486","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","11016.2397","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","94.9278","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","10281.9472","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","2013.4936","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","954.0304","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","516.9826","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","253.6241","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2931.5778","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","10303.7527","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","8532.0322","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","19336.3304","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","16905.8427","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","28422.6029","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","27742.2879","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","23030.3563","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","41495.2045","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","50931.8256","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","59044.0235","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","82577.371","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","61787.49","Fc","Calculated data" +"GA","Crop Residues","208","Tajikistan","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","62910.6304","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","474190.1536","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","640643.6192","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","1330086.8352","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","1306344.5056","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1519274.1632","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","1664701.728","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","1591389.3568","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","2336627.5552","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","2378613.1904","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","2439403.4784","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1886524.2528","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","2631284.1984","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","2851168.568","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","2381955.8816","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1713222.0893","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","2185051.0799","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","3873037.9085","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","4113301.0141","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","3923151.6385","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","4277202.494","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","4860789.7099","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","4745817.8892","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","4815010.189","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","5397503.2313","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","5594950.6586","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","5211303.4502","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","4626214.6787","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","5142912.9767","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","5518930.2402","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","4738573.9865","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","4666647.6991","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","3945886.0875","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","3720696.752","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","3735425.5104","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","3675530.1101","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","3363406.001","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","3059950.8421","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","3306533.5116","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","3569463.2527","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","3240866.0563","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","3415813.1709","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","3143271.3045","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2636196.8512","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2014053.7284","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1711020.416","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1656159.9799","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1643585.3883","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1516168.2432","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1520221.248","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1572847.8198","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1516229.3064","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1532700.5162","Fc","Calculated data" +"GA","Crop Residues","216","Thailand","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1461735.2187","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","16519.7408","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","18288.2752","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","20056.8096","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","21740.311","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","30245.9583","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","32741.5827","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","27362.2816","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","40413.707","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","42707.6247","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","51672.8333","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","52722.5055","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","91856.6522","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","77776.036","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","64903.8229","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","65385.136","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","65385.136","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","66409.2064","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","65385.136","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","64873.1008","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","59102.64","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","61848.0672","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","56357.2128","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","53332.1792","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","50772.0032","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","46025.6128","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","40767.1872","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","38719.0464","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","40255.152","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","35461.584","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","33600.3865","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","79580.4762","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","55975.794","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","94257.7426","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","80847.6658","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","117807.1702","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","97973.6211","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","90171.5096","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","51089.0058","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","60264.784","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","51422.112","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","57704.608","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","67709.424","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","75771.3342","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","80753.3407","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","85418.0424","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","90755.9695","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","91355.0554","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","94870.8149","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","98307.616","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","101640.7003","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","104894.619","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","112621.8","Fc","Calculated data" +"GA","Crop Residues","176","Timor-Leste","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","115554.208","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","381563.744","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","386139.8888","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","442902.5824","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","463454.784","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","503639.2292","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","494105.3848","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","543503.9612","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","570947.584","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","603050.432","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","622208.7873","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","592809.728","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","370471.7522","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","378487.8587","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","396110.1577","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","411025.0328","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","412191.1939","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","401864.4132","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","448399.929","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","714151.8488","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","743515.3085","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","755910.1955","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","861541.728","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","895575.7303","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1090469.5578","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1000309.0124","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1007453.0089","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1037841.5598","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","888742.816","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","964133.5106","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","952075.1008","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","743668.3524","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","849031.6136","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1538205.0761","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","781120.4174","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","1109636.9563","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","1506878.0265","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","1497661.454","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","1287259.2719","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","1240206.2591","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","1288207.9811","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","1286262.4416","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1429035.6717","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","1314286.8627","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","1438363.367","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1616892.9808","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1682105.418","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1659156.4236","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1767882.304","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1887375.0239","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1958087.3618","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1933848.6738","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","2631328.6212","Fc","Calculated data" +"GA","Crop Residues","217","Togo","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","3167270.7292","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","7514.1515","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","12182.2867","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","15049.3379","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","21657.5802","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","22569.808","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","24105.9136","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","11200.3302","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","13774.1406","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","9712.4967","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","10209.6301","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","12075.8538","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","5599.1303","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","9048.6949","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","6908.0408","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","1463.0966","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","3257.4624","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2103.3702","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","1226.1797","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2047.449","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1987.1558","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1777.624","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1975.3614","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","2019.6613","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1368.1688","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","2159.2915","Fc","Calculated data" +"GA","Crop Residues","222","Tunisia","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","2173.2718","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","1534816.128","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","1468534.6176","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","1462694.016","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","1535759.68","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1535759.68","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","1510157.92","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","1500860.768","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","1487824","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","1525518.976","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","1436183.296","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","1542767.136","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","1595823.168","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","1498553.776","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","1486915.04","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","1493450.72","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1573489.248","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1586054.24","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1539516.592","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1663396.248","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1686102.4","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1600943.52","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1633989.92","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1789418.4","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1671385.907","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1987155.84","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","2003802.055","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","2414505.0989","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","2389750.1106","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","2305929.216","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","2345225.279","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","2418489.1846","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","2269097.1043","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","2228702.4877","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","2134395.216","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","2416521.5254","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","2460102.091","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","2499602.9939","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","2472726.2832","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2505644.921","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2482949.6912","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2452330.2438","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2617405.9064","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2482724.9242","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2431997.1472","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2126084.856","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","1963176.0363","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","1602777.8094","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","1520203.1645","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","1633220.4688","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","1858092.154","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","1731019.9876","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","1717091.9376","Fc","Calculated data" +"GA","Crop Residues","223","Turkey","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","1628962.6462","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","1554284.8","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","1554284.8","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","1605488.32","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","1731138.24","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1782341.76","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","1930325.6","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","2429151.072","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","2880512.64","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","2380674.432","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","2875392.288","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","4553807.904","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","3513917.184","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","3543085.6","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","4042538.2176","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","4696316.272","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","4963173.0029","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","3814320.6661","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","4378542.752","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","2621837.344","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","2348606.176","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","3454831.84","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","3923372.384","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","4570757.248","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","4376690.24","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","3855987.0098","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","4322224.0107","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","4307835.968","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","5043543.776","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","5568024.3032","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","5712123.3976","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","5756089.3917","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","6048708.544","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","6300951.936","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","6208716.416","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","6463721.28","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","5776615.968","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","5821720.992","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","6783369.024","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","7033725.312","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","7354351.2","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","8058531.712","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","8434537.92","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","8495004","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","8374807.84","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","8611690.176","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","8491528.608","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","8704189.92","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","9516221.664","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","9322223.84","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","9571671.168","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","9555368.8416","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","9433158.1017","Fc","Calculated data" +"GA","Crop Residues","226","Uganda","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","9824013.6028","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","425714.9201","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","388134.016","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","357411.904","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","419967.6352","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","420708.64","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","423504.704","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","491450.016","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","473764.672","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","534413.7952","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","801338.2528","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","622985.5072","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","559998.2592","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","435746.3712","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","404610.0384","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","314465.4208","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","308088.5696","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","313023.6704","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","323072.2048","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","315715.0016","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","345877.9008","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","374214.7104","Fc","Calculated data" +"GA","Crop Residues","230","Ukraine","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","373808.5414","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","1846443.68","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","1939047.2","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","2018110.7098","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","2223402.6054","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","1746896.3555","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","2304503.2175","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","2585070.2454","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","2243502.3724","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","2099170.4945","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","2618023.0814","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","2619603.5016","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","2911538.455","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","2826950.24","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","2601252.16","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","2681290.688","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","2936295.552","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","3608291.3286","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","5134605.2479","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","5017200.6969","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","5002408","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","5002408","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","5002408","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","4911885.0048","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","4760243.3184","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","4665581.28","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","3545076.48","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","4139565.3515","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","3660430.4629","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","4855378.8072","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","5132993.1945","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","5407940.0764","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","5680253.88","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","5950014.1721","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","6217285.6301","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","6482095.2366","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","6744522.5583","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","7004617.3834","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","7262414.139","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","7516272.4254","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","7769470.6486","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","7969373.408","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","8006540.1016","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","6825779.8685","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","8330110.2803","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","9868329.2491","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","10284526.8207","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","11393196.634","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","8502496.3696","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","10425974.1078","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","13440320.8922","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","8952712.2807","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","15561146.4165","Fc","Calculated data" +"GA","Crop Residues","215","United Republic of Tanzania","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","14273301.7111","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","8912420.9558","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","8518500.4195","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","8859057.3722","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","8298922.6358","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","8387089.2056","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","9179159.6205","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","7267641.7395","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","8339426.4785","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","8818274.336","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","8285875.9789","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","7606349.8455","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","8307030.4295","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","7791706.3082","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","9294391.4708","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","8467889.0821","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","8629292.6177","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","7670787.3131","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","8779482.9334","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","8954204.3654","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","11808517.4368","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","14445236.4211","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","11290488.768","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","7036032.1126","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","9293405.0534","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","9641785.6928","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","9836341.7728","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","11062054.056","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","8547543.8016","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","10484952.4522","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","13801350.928","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","13607907.0176","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","9862755.5616","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","9952091.3152","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","12239500.416","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","12840546.72","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","11742003.792","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","12119031.384","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","12842111.4192","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","13339060.7904","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","11034892.2373","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","8320495.4266","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","12279025.2926","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","9281787.5547","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","7773290.4246","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","10771713.9564","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","10224483.0082","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","10398968.9004","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","10290045.0205","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","10297673.1122","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","12937571.0902","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","8138143.6301","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","12507534.3053","Fc","Calculated data" +"GA","Crop Residues","231","United States of America","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","9673597.6736","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","41765.304","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","52584.256","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","52584.256","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","51345.1308","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","52584.256","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","34227.9788","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","34063.552","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","35552.48","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","36296.944","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","46825.3946","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","36296.944","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","37041.408","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","40531.2992","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","40531.2992","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","41043.3344","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","45557.296","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","45557.296","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","46813.7952","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","46813.7952","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","46813.7952","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","46813.7952","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","48070.2944","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","48582.3296","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","49838.8288","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","49838.8288","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","51095.328","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","53096.2912","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","49838.8288","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","51839.792","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","57222.7414","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","49838.8288","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","51839.792","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","52840.2736","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","52893.0682","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","53196.8084","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","53840.7552","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","54034.0669","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","54513.5611","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","55097.2544","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","55353.272","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","56353.7536","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","56982.0032","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","57610.2528","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","56982.0032","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","58122.288","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","56982.0032","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","58610.7344","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","59611.216","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","60239.4656","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","59470.9943","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","59256.7603","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","58866.752","Fc","Calculated data" +"GA","Crop Residues","234","Uruguay","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","55609.2896","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","691983.52","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","795299.52","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","882310.912","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","859068.032","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","770204.128","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","715767.36","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","703674.144","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","557542.816","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","545449.6","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","656210.24","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","678106.976","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","634348.096","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","726514.432","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","682755.552","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","600829.92","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","757201.952","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","945239.648","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","853073.312","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","740897.344","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","656647.424","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","613360.32","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","682720.96","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1068128.096","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1101174.496","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1177036.224","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","732509.152","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","702258.816","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","756258.4","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","854943.12","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","622856.56","Fc","Calculated data" +"GA","Crop Residues","228","USSR","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","619896","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","891841.5615","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","690607.0351","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","796794.3662","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","835928.2538","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","843056.4131","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","885466.6202","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","909565.4446","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","938792.8481","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","948663.9005","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","842706.2994","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","893486.1314","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","771030.8444","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","624622.8886","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","769159.1942","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","854763.564","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","712702.787","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","603083.2355","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","692562.0918","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","648062.4727","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","660809.3531","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","604844.39","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","626845.9597","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","620138.7983","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","501809.3109","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","730471.1474","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","771315.3857","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","791845.4124","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","808666.3354","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","843706.5285","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","918356.9197","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","886285.351","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","638922.3868","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","501309.6501","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","423486.6838","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","509898.4485","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","474641.128","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","473144.6075","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","468472.4434","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","399895.1289","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","362310.6773","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","319138.0095","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","254448.6121","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","403572.4631","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","554937.3613","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","612176.3036","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","264285.428","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","527815.1357","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","689165.457","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","928117.581","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","578602.497","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","606566.552","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","403357.5224","Fc","Calculated data" +"GA","Crop Residues","236","Venezuela (Bolivarian Republic of)","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","227621.9921","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","675508.3992","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","707316.2253","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","703347.0288","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","730172.8304","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","753739.44","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","744433.64","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","853398.9184","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","749400.7752","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","681708.224","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","654253.952","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","657050.016","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","669615.008","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","611910.4","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","622151.104","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","507536.9888","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","686279.7408","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","836907.7344","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","903967.0496","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","828947.6","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","664600.64","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1260606.816","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1391377.088","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","1419107.5072","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1547829.6384","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1497805.5584","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","1685020.48","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1683720.2624","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1677575.84","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","1713930.3392","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1710702.7584","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","1647888.176","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","1707489.0144","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","1895866.08","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","2040606.2944","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","2049738.9504","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","2220187.8656","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","2399547.3856","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","2386830.4832","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","2231981.9712","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","2299310.5152","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","2346431.5904","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","2240915.5392","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","2324926.112","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","2352215.888","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","2210656.0768","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","2268566.6912","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","2428077.616","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","2427310.1888","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","2308131.4752","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","2370632.5437","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","2373883.4856","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","2198837.8319","Fc","Calculated data" +"GA","Crop Residues","237","Viet Nam","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","2092144.4533","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","20652.11","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","49114.886","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","45255.1628","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","27772.029","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","65752.9329","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","66382.7362","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","64245.5585","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","66512.0786","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","68941.3334","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","69369.2792","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","73078.5182","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","65819.312","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","65015.8885","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","65994.4733","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","62521.4498","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","61505.8714","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","17995.4775","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","17513.5196","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","23965.069","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","27743.439","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","28479.2852","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","28679.8879","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","29214.625","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","29368.2356","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","30644.8482","Fc","Calculated data" +"GA","Crop Residues","249","Yemen","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","31882.3851","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","9216942.9408","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","9104882.0832","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","9088065.44","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","8972690.816","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","8520316.512","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","2967995.716","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","2530666.091","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","2393550.936","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","2315937.7061","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","2282761.3469","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","2172446.154","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","2021248.8239","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","2359077.0625","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","2148815.0848","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","2091963.6406","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","1850165.239","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","1949932.64","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","1663699.296","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","1870240.4","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","1664352.864","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","1916652.56","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","1987593.024","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","2000158.016","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","1580022.4256","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","1560008.8067","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","2298397.3732","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","1746516.592","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","1395810.3759","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","2201406.1076","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","1382845.5563","Fc","Calculated data" +"GA","Crop Residues","248","Yugoslav SFR","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","2118878.9891","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1961","1961","kg of nutrients","315505.536","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1962","1962","kg of nutrients","336775.1264","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1963","1963","kg of nutrients","320625.888","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1964","1964","kg of nutrients","310385.184","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1965","1965","kg of nutrients","337367.68","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1966","1966","kg of nutrients","412993.52","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1967","1967","kg of nutrients","415553.696","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1968","1968","kg of nutrients","420674.048","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1969","1969","kg of nutrients","420674.048","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1970","1970","kg of nutrients","400664.416","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1971","1971","kg of nutrients","420674.048","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1972","1972","kg of nutrients","420674.048","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1973","1973","kg of nutrients","433239.04","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1974","1974","kg of nutrients","453248.672","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1975","1975","kg of nutrients","453248.672","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1976","1976","kg of nutrients","465813.664","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1977","1977","kg of nutrients","465813.664","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1978","1978","kg of nutrients","400192.64","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1979","1979","kg of nutrients","415553.696","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1980","1980","kg of nutrients","415553.696","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1981","1981","kg of nutrients","347559.9854","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1982","1982","kg of nutrients","705312.837","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1983","1983","kg of nutrients","691983.52","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1984","1984","kg of nutrients","691983.52","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1985","1985","kg of nutrients","709668.864","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1986","1986","kg of nutrients","722233.856","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1987","1987","kg of nutrients","714317.44","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1988","1988","kg of nutrients","726882.432","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1989","1989","kg of nutrients","733164.928","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1990","1990","kg of nutrients","739447.424","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1991","1991","kg of nutrients","745729.92","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1992","1992","kg of nutrients","651492.48","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1993","1993","kg of nutrients","684538.88","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1994","1994","kg of nutrients","771153.7977","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1995","1995","kg of nutrients","636603.2","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1996","1996","kg of nutrients","140903.0548","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1997","1997","kg of nutrients","162355.7827","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1998","1998","kg of nutrients","178326.3666","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","1999","1999","kg of nutrients","156407.7412","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2000","2000","kg of nutrients","150435.5083","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2001","2001","kg of nutrients","150558.4188","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2002","2002","kg of nutrients","149355.2052","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2003","2003","kg of nutrients","171030.3662","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2004","2004","kg of nutrients","801288.8503","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2005","2005","kg of nutrients","463243.5697","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2006","2006","kg of nutrients","646708.8693","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2007","2007","kg of nutrients","787638.7492","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2008","2008","kg of nutrients","653133.9783","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2009","2009","kg of nutrients","620876.8888","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2010","2010","kg of nutrients","749530.456","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2011","2011","kg of nutrients","482487.9864","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2012","2012","kg of nutrients","495229.5334","Fc","Calculated data" +"GA","Crop Residues","181","Zimbabwe","72392","Residues (Crop residues)","176","Beans, dry","2013","2013","kg of nutrients","641412.9137","Fc","Calculated data" diff --git a/module-2_projects/tableau-project/your-code/Coffee production/original_data/gross_production_value.csv b/module-2_projects/tableau-project/your-code/Coffee production/original_data/gross_production_value.csv new file mode 100644 index 0000000..891de53 --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/original_data/gross_production_value.csv @@ -0,0 +1,1137 @@ +Domain Code,Domain,Area Code,Area,Element Code,Element,Item Code,Item,Year Code,Year,Unit,Value,Flag,Flag Description +"QV","Value of Agricultural Production","7","Angola","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","5.088878","Fc","Calculated data" +"QV","Value of Agricultural Production","7","Angola","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","7.161056","Fc","Calculated data" +"QV","Value of Agricultural Production","7","Angola","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","9.031824","Fc","Calculated data" +"QV","Value of Agricultural Production","7","Angola","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","10.110391","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","0.137547","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","0.10143","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","0.241148","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","0.332737","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","0.337776","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","0.340752","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","0.331646","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","0.073539","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","0.144496","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","0.082876","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","0.152252","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","0.154052","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","0.137955","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","0.151557","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","0.168377","Fc","Calculated data" +"QV","Value of Agricultural Production","23","Belize","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","0.163744","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","8.449025","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","6.825754","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","6.497733","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","18.328018","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","19.817748","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","21.808444","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","22.645614","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","22.245211","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","26.122903","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","25.386896","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","20.951111","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","19.736897","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","18.540238","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","18.887352","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","19.588637","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","24.222472","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","25.477393","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","36.987356","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","33.160388","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","35.51943","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","37.270742","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","38.654104","Fc","Calculated data" +"QV","Value of Agricultural Production","19","Bolivia (Plurinational State of)","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","41.257134","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","487.533736","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","390.716031","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","533.124619","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","1648.165117","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","1042.981019","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","1276.426875","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","1536.222937","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","1831.272647","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","1183.001556","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","1288.170969","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","696.191035","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","808.983063","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","855.530248","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","1256.659952","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","1627.111813","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","2074.118882","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","2657.611444","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","4371.021429","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","4644.51049","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","7187.406184","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","10855.194229","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","9209.750164","Fc","Calculated data" +"QV","Value of Agricultural Production","21","Brazil","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","6897.724447","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","82.441943","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","78.163006","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","42.614507","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","73.544155","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","61.297859","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","64.358677","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","48.082114","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","38.766675","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","46.339217","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","94.02226","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","73.710855","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","612.460906","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","31.096753","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","239.637215","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","59.499626","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","287.315909","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","5.90903","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","21.184907","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","5.003418","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","21.928122","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","16.303889","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","11.503733","Fc","Calculated data" +"QV","Value of Agricultural Production","29","Burundi","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","6.76528","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","0.490312","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","0.320359","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","0.411582","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","0.441046","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","0.537776","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","0.688812","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","0.936105","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","1.136946","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","1.16754","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","1.06503","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","1.049175","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","1.051052","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","1.062504","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","1.133218","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","1.220595","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","1.225757","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","1.477534","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","1.905663","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","1.929499","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","2.073671","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","2.330474","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","2.397785","Fc","Calculated data" +"QV","Value of Agricultural Production","115","Cambodia","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","2.437633","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","67.308525","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","35.985248","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","30.202172","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","53.128513","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","66.713623","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","91.592664","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","46.310465","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","81.067813","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","67.646676","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","42.375008","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","33.37225","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","22.229419","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","37.114643","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","48.40885","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","45.784756","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","36.815957","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","39.389001","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","44.049746","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","42.974312","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","61.281229","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","27.847284","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","35.614734","Fc","Calculated data" +"QV","Value of Agricultural Production","32","Cameroon","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","42.933116","Fc","Calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","2.892893","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","3.413707","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","3.824394","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","2.311909","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","2.825014","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","2.742968","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","2.955872","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","5.166513","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","7.025451","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","9.323145","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","14.572844","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","17.046712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","20.778338","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","24.847189","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","30.91995","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","43.834144","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","53.61483","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","85.015216","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","204.223489","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","160.283214","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","239.316081","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","357.327166","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","351","China","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","307.349592","A","Aggregate, may include official, semi-official, estimated or calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","2.892893","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","3.413707","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","3.824394","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","2.311909","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","2.825014","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","2.742968","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","2.955872","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","5.166513","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","7.025451","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","9.323145","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","14.572844","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","17.046712","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","20.778338","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","24.847189","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","30.91995","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","43.834144","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","53.61483","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","85.015216","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","204.223489","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","160.283214","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","239.316081","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","357.327166","Fc","Calculated data" +"QV","Value of Agricultural Production","41","China, mainland","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","307.349592","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","1170.313022","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","1080.502896","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","738.803922","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","1102.525953","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","1471.872319","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","1113.409481","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","1517.165267","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","1401.447561","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","847.673194","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","858.870097","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","688.762899","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","663.116269","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","611.960164","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","742.82258","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","1075.894011","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","1172.220604","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","1369.232078","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","1416.36061","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","1166.629542","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","1733.00309","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","2007.355799","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","1388.863245","Fc","Calculated data" +"QV","Value of Agricultural Production","44","Colombia","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","1345.254536","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","0.571113","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","0.629978","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","0.609597","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","0.321674","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","0.37001","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","0.359689","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","0.263625","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","0.288159","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","2.031775","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","0.468063","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","0.461804","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","2.237866","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","0.550585","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","0.944654","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","1.154509","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","1.111131","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","1.370236","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","1.314269","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","1.43234","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","1.416369","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","1.681476","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","1.501383","Fc","Calculated data" +"QV","Value of Agricultural Production","46","Congo","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","1.679325","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","0.004394","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","0.010227","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","0.008232","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","0.018064","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","0.04998","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","0.053881","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","0.06252","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","0.029809","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","0.011455","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","0.012486","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","0.009101","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","0.009208","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","0.004245","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","0.0001","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","0.000074","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","0.000168","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","0.000205","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","0.000234","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","0.000253","Fc","Calculated data" +"QV","Value of Agricultural Production","47","Cook Islands","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","0.000313","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","188.769042","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","180.883141","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","140.882744","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","191.250039","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","152.233345","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","183.200594","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","162.309249","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","148.058535","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","130.734323","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","86.716122","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","78.377021","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","85.236364","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","67.587535","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","74.562705","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","103.934408","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","95.71701","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","126.084946","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","127.449796","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","103.292382","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","126.903278","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","190.163352","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","223.043995","Fc","Calculated data" +"QV","Value of Agricultural Production","48","Costa Rica","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","95.783452","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","274.982666","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","225.258205","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","98.132317","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","138.967268","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","273.420876","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","229.595625","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","267.895914","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","274.124101","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","259.562036","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","169.724757","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","98.179498","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","61.103235","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","56.376979","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","103.540276","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","109.011323","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","148.415506","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","159.703019","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","240.846914","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","122.000228","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","75.83646","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","30.657781","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","96.23625","Fc","Calculated data" +"QV","Value of Agricultural Production","107","Côte d'Ivoire","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","87.681622","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","77.117647","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","58.921528","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","44.944594","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","65.705698","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","85.127475","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","77.118128","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","80.674962","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","107.96595","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","54.770136","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","64.495734","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","28.84855","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","36.989945","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","34.768759","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","42.662709","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","71.040379","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","59.427977","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","68.741579","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","62.214668","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","72.456465","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","56.086206","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","62.579191","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","81.817764","Fc","Calculated data" +"QV","Value of Agricultural Production","56","Dominican Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","58.003751","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","13.539475","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","11.599834","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","15.27793","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","30.291898","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","48.405846","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","32.666589","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","35.797547","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","7.212699","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","15.465258","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","35.33568","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","179.6211","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","16.3275","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","18.15583","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","18.965828","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","42.233175","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","22.346748","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","43.681492","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","29.419194","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","35.997854","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","52.675499","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","32.652879","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","11.649649","Fc","Calculated data" +"QV","Value of Agricultural Production","58","Ecuador","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","13.269445","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","156.875894","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","123.622251","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","108.76154","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","304.389037","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","305.094633","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","242.95217","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","338.199664","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","216.862635","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","199.108903","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","110.555581","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","43.046715","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","43.497436","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","45.373719","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","72.53648","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","183.403816","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","207.230232","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","160.278559","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","205.066986","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","134.80016","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","333.425087","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","341.548038","Fc","Calculated data" +"QV","Value of Agricultural Production","60","El Salvador","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","255.93854","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","3.19028","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","3.116832","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","2.820312","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","1.125711","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","5.409213","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","5.864502","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","4.283247","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","3.390108","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","1.989608","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","2.457947","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","2.046277","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","2.152117","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","3.01101","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","3.417881","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","4.958143","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","6.466334","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","7.578089","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","9.881202","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","8.602494","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","8.001199","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","9.969015","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","9.488785","Fc","Calculated data" +"QV","Value of Agricultural Production","61","Equatorial Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","9.642053","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","149.4","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","196.962489","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","205.021413","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","127.451357","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","127.094437","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","150.930359","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","203.972741","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","202.908918","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","146.981646","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","83.289078","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","84.226255","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","176.468317","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","246.897603","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","397.027655","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","501.975994","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","598.343785","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","522.87878","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","467.289496","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","421.009065","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","416.801817","Fc","Calculated data" +"QV","Value of Agricultural Production","238","Ethiopia","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","544.641823","Fc","Calculated data" +"QV","Value of Agricultural Production","62","Ethiopia PDR","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","172.759492","Fc","Calculated data" +"QV","Value of Agricultural Production","62","Ethiopia PDR","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","127.477552","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","1.876871","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","1.714083","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","3.576318","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","2.66825","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","7.155846","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","8.708497","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","2.343793","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","8.931249","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","4.58494","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","1.10677","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","0.916767","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","1.569701","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","1.204181","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","1.660346","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","1.986264","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","3.075455","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","3.74857","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","3.336621","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","2.57473","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","1.740456","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","0.777043","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","0.691547","Fc","Calculated data" +"QV","Value of Agricultural Production","81","Ghana","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","0.78045","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","17.90788","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","15.966717","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","15.070796","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","15.358837","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","14.121281","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","11.329494","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","9.244321","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","29.343441","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","19.707448","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","14.476938","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","5.83951","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","8.075215","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","10.138669","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","9.959793","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","4.801303","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","4.193614","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","9.278631","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","8.802765","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","9.161533","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","7.252504","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","5.976614","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","3.750054","Fc","Calculated data" +"QV","Value of Agricultural Production","90","Guinea","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","4.20785","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","103.946964","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","105.975029","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","137.546775","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","291.792098","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","244.376271","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","293.43101","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","374.889064","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","300.236998","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","220.921519","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","283.074804","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","314.434568","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","145.468625","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","164.346829","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","246.024591","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","334.05936","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","447.731798","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","550.263719","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","572.934356","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","525.364698","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","634.037112","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","949.366451","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","1002.924843","Fc","Calculated data" +"QV","Value of Agricultural Production","95","Honduras","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","682.157255","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","215.579394","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","191.70862","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","142.830431","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","237.510715","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","198.328701","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","373.005372","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","348.829766","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","423.26536","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","428.482673","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","407.148076","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","359.320141","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","352.324348","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","330.424898","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","353.713848","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","403.047108","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","415.4993","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","588.201557","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","501.492867","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","498.497361","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","685.933585","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","764.249917","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","753.052881","Fc","Calculated data" +"QV","Value of Agricultural Production","100","India","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","665.74802","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","444.233705","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","416.382547","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","406.009448","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","649.838639","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","886.622369","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","694.116313","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","572.555534","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","296.110044","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","545.853759","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","508.80857","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","434.210232","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","396.184234","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","438.488436","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","418.176301","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","421.380954","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","585.186053","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","814.830085","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","987.543527","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","920.211127","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","1051.242624","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","1141.109438","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","1207.99625","Fc","Calculated data" +"QV","Value of Agricultural Production","101","Indonesia","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","1069.102571","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","2.738625","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","2.999787","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","1.792349","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","2.438889","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","3.071366","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","3.938578","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","4.620737","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","2.88045","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","3.626314","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","3.131061","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","4.026117","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","3.904319","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","3.91431","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","3.602451","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","15.746709","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","22.504943","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","27.306907","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","15.52108","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","17.712611","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","12.260652","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","10.718869","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","9.13589","Fc","Calculated data" +"QV","Value of Agricultural Production","109","Jamaica","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","8.959965","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","146.178402","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","109.772986","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","128.003713","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","205.668045","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","296.162033","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","238.666422","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","293.937028","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","228.84179","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","151.373538","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","152.138871","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","77.494859","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","78.842067","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","71.036016","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","89.251327","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","71.106412","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","132.892461","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","137.87217","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","107.59904","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","136.440872","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","210.325068","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","243.004137","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","193.53897","Fc","Calculated data" +"QV","Value of Agricultural Production","114","Kenya","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","131.289304","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","9.135098","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","7.537168","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","9.151721","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","11.280112","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","9.932809","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","13.641991","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","18.324814","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","11.853775","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","8.947624","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","13.639435","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","5.99198","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","10.085241","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","8.490734","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","7.189322","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","7.899141","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","8.546502","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","12.138597","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","15.975831","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","19.76074","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","20.894011","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","24.612285","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","43.6227","Fc","Calculated data" +"QV","Value of Agricultural Production","120","Lao People's Democratic Republic","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","49.729193","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","45.694033","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","21.427958","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","20.378491","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","187.133079","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","95.648202","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","76.518282","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","54.018104","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","71.672753","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","56.892553","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","22.742879","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","19.490751","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","13.020857","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","23.54191","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","11.3736","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","9.602697","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","52.270741","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","68.425548","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","87.272892","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","111.038611","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","74.410587","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","83.659746","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","72.481581","Fc","Calculated data" +"QV","Value of Agricultural Production","129","Madagascar","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","74.714067","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","3.35853","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","4.095005","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","3.089283","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","3.345276","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","3.438285","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","5.587965","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","4.20914","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","3.600561","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","2.482108","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","1.886234","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","2.970088","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","1.721131","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","1.731277","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","11.881295","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","8.7138","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","7.794786","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","5.054683","Fc","Calculated data" +"QV","Value of Agricultural Production","130","Malawi","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","2.914466","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","8.569829","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","11.01601","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","13.635161","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","13.704147","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","14.623558","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","19.543372","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","23.382694","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","24.401338","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","31.509211","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","37.558632","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","35.288289","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","37.312211","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","39.410526","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","41.610491","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","42.581805","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","40.206401","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","37.792441","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","48.535322","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","26.350776","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","37.514883","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","46.829106","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","28.702902","Fc","Calculated data" +"QV","Value of Agricultural Production","131","Malaysia","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","37.308902","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","101.348035","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","68.681421","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","64.957632","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","77.588873","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","112.583199","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","151.488806","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","178.472159","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","127.573535","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","132.534979","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","103.143807","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","60.162388","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","52.387512","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","52.439152","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","46.366589","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","61.058583","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","68.458898","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","81.968886","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","91.683534","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","72.839287","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","83.447599","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","101.004242","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","120.88832","Fc","Calculated data" +"QV","Value of Agricultural Production","138","Mexico","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","87.356284","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","0.558781","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","0.359211","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","0.503325","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","0.364324","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","0.299191","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","0.357499","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","0.39849","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","0.032724","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","0.293394","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","0.190317","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","0.204871","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","0.198502","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","0.224649","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","0.243896","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","0.227605","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","0.225266","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","0.237674","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","0.319996","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","0.26867","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","0.196461","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","0.284736","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","0.35896","Fc","Calculated data" +"QV","Value of Agricultural Production","144","Mozambique","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","0.332548","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","0.04106","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","0.042768","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","0.0555","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","0.069587","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","0.056463","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","0.089101","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","0.100935","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","0.160639","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","0.222218","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","0.281105","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","0.342173","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","0.414112","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","0.73733","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","0.775204","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","0.373117","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","0.452565","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","0.586544","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","0.56051","Fc","Calculated data" +"QV","Value of Agricultural Production","149","Nepal","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","0.448426","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","54.09609","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","43.365672","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","44.329812","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","48.598168","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","70.020695","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","56.801022","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","122.667414","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","153.539562","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","131.937489","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","99.701716","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","85.881155","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","86.26538","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","187.617922","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","118.672698","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","209.244596","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","147.099419","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","225.929197","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","238.486695","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","266.959207","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","268.278544","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","385.051382","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","270.32282","Fc","Calculated data" +"QV","Value of Agricultural Production","157","Nicaragua","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","245.696153","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","2.825574","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","5.145493","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","8.474217","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","13.755097","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","6.954302","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","5.163103","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","3.143869","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","6.836887","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","5.482569","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","4.990052","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","5.862041","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","7.26298","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","6.872785","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","6.276541","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","7.711256","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","9.253936","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","4.070878","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","7.880097","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","2.279733","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","1.118099","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","1.093551","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","1.079859","Fc","Calculated data" +"QV","Value of Agricultural Production","159","Nigeria","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","0.906818","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","24.71322","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","20.66416","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","23.78021","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","21.0288","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","23.87208","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","16.324997","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","22.275132","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","30.291315","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","28.2564","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","23.207065","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","24.434954","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","17.41531","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","16.591868","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","21.800633","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","18.006457","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","19.728384","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","15.65165","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","19.373096","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","19.648876","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","21.0743","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","17.758726","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","26.342047","Fc","Calculated data" +"QV","Value of Agricultural Production","166","Panama","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","20.779572","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","3.723823","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","3.556054","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","3.425152","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","8.14076","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","2.817619","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","4.842155","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","4.761297","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","3.961612","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","3.056146","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","2.304023","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","1.234154","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","0.47179","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","0.578167","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","0.675698","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","0.704116","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","0.805944","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","0.99384","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","0.114216","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","0.106308","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","0.199955","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","0.312507","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","0.203628","Fc","Calculated data" +"QV","Value of Agricultural Production","169","Paraguay","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","0.218084","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","60.973398","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","41.668013","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","45.63613","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","133.16082","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","175.942766","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","146.754457","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","323.712901","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","212.944891","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","178.836916","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","190.00357","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","131.499035","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","113.751628","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","137.82775","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","185.799082","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","265.533095","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","344.598027","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","346.06338","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","472.775633","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","436.587402","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","578.827096","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","1107.5242","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","768.367376","Fc","Calculated data" +"QV","Value of Agricultural Production","170","Peru","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","463.755515","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","94.768327","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","103.653035","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","98.046199","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","191.443504","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","274.070556","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","205.675488","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","174.066708","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","142.380821","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","148.078887","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","86.328413","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","67.871437","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","70.662313","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","80.512313","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","76.06588","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","87.145977","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","93.063281","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","115.838233","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","127.491084","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","112.65422","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","120.642749","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","134.28162","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","141.200779","Fc","Calculated data" +"QV","Value of Agricultural Production","171","Philippines","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","134.260403","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","50.524578","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","63.098568","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","76.733733","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","62.82944","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","62.702297","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","59.97892","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","56.863372","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","68.491802","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","33.642","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","37.64475","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","38.53575","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","39.6568","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","39.559","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","44.763516","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","33.879384","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","50.488","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","49.4667","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","41.24019","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","36.678835","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","36.483535","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","30.546508","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","28.51389","Fc","Calculated data" +"QV","Value of Agricultural Production","177","Puerto Rico","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","26.289794","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","30.032538","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","33.334383","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","24.846293","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","1.343404","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","35.751862","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","14.518259","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","18.886092","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","14.113307","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","16.765029","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","9.542402","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","8.540554","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","5.394513","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","6.419079","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","12.999201","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","16.669277","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","24.168117","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","16.106992","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","24.633141","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","27.270849","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","26.503826","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","31.194841","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","31.162419","Fc","Calculated data" +"QV","Value of Agricultural Production","184","Rwanda","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","27.730978","Fc","Calculated data" +"QV","Value of Agricultural Production","203","Spain","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","0.07747","Fc","Calculated data" +"QV","Value of Agricultural Production","203","Spain","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","0.059449","Fc","Calculated data" +"QV","Value of Agricultural Production","203","Spain","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","0.047826","Fc","Calculated data" +"QV","Value of Agricultural Production","203","Spain","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","0.045138","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","6.162025","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","6.446182","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","6.214092","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","10.860198","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","20.730123","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","17.651241","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","11.245165","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","10.927999","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","11.055494","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","9.452443","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","6.624054","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","5.600427","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","4.587989","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","4.175528","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","4.588304","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","5.680777","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","12.691941","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","12.490847","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","10.455258","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","10.134776","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","11.639839","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","11.491817","Fc","Calculated data" +"QV","Value of Agricultural Production","38","Sri Lanka","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","10.011875","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","0.120371","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","0.099872","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","0.07696","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","0.087605","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","0.079047","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","0.065832","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","0.06375","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","0.046563","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","0.035968","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","0.007604","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","0.003303","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","0.003028","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","0.003714","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","0.0034","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","0.004856","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","0.007223","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","0.012995","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","0.014703","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","0.013617","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","0.01327","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","0.013356","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","0.009695","Fc","Calculated data" +"QV","Value of Agricultural Production","207","Suriname","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","0.007255","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","45.701739","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","59.78283","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","68.090638","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","79.853662","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","196.527934","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","127.387471","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","82.91661","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","120.569607","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","70.386439","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","48.862382","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","60.472795","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","33.901954","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","41.348357","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","42.443613","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","42.634496","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","45.15064","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","73.480878","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","90.562507","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","112.266103","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","88.838563","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","98.631007","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","92.157515","Fc","Calculated data" +"QV","Value of Agricultural Production","216","Thailand","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","87.008167","Fc","Calculated data" +"QV","Value of Agricultural Production","176","Timor-Leste","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","17.51125","Fc","Calculated data" +"QV","Value of Agricultural Production","176","Timor-Leste","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","15.183","Fc","Calculated data" +"QV","Value of Agricultural Production","176","Timor-Leste","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","21.488716","Fc","Calculated data" +"QV","Value of Agricultural Production","176","Timor-Leste","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","17.379066","Fc","Calculated data" +"QV","Value of Agricultural Production","176","Timor-Leste","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","21.841772","Fc","Calculated data" +"QV","Value of Agricultural Production","176","Timor-Leste","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","26.550261","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","15.446272","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","4.403234","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","5.438572","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","6.68222","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","15.730792","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","32.841208","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","13.433062","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","24.725185","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","19.852229","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","7.472159","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","5.925064","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","3.49102","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","2.441499","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","4.964368","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","6.811407","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","8.425288","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","14.010151","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","11.413303","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","10.382131","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","9.728899","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","11.099547","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","8.899071","Fc","Calculated data" +"QV","Value of Agricultural Production","217","Togo","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","9.286798","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","1.273793","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","1.090943","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","1.443029","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","1.456649","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","1.22349","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","0.504166","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","1.501667","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","0.489873","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","0.600246","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","0.937936","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","0.524597","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","0.257488","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","0.57603","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","0.124883","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","0.385626","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","0.905769","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","0.081941","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","0.092842","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","0.213956","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","0.080131","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","0.120596","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","0.095344","Fc","Calculated data" +"QV","Value of Agricultural Production","220","Trinidad and Tobago","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","0.098667","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","3.919728","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","3.264508","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","5.23776","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","9.62988","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","12.96344","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","16.6228","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","21.56164","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","19.7754","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","16.8069","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","23.0759","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","19.60563","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","23.2356","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","24.03768","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","19.87804","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","37.305289","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","31.38828","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","37.4782","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","29.6092","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","31.35115","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","28.58835","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","31.536603","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","41.297225","Fc","Calculated data" +"QV","Value of Agricultural Production","231","United States of America","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","43.399075","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","0.03468","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","0.043591","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","0.020645","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","0.028366","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","0.025832","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","0.027988","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","0.028193","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","0.030824","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","0.033395","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","0.032566","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","0.031695","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","0.062628","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","0.133012","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","0.117469","Fc","Calculated data" +"QV","Value of Agricultural Production","155","Vanuatu","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","0.13643","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","87.223677","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","81.723519","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","60.650553","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","51.834574","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","201.260402","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","121.480199","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","180.121809","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","131.522663","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","157.72129","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","145.970153","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","112.795446","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","60.770088","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","44.700326","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","97.317297","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","102.126487","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","171.932305","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","186.108043","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","212.955007","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","266.664453","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","316.781395","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","249.816926","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","326.363896","Fc","Calculated data" +"QV","Value of Agricultural Production","236","Venezuela (Bolivarian Republic of)","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","328.204223","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","52.879477","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","45.461131","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","62.206487","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","87.629498","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","126.942408","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","216.913949","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","260.848471","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","218.834367","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","278.165735","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","397.87551","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","185.569269","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","119.601018","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","94.8781","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","95.059342","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","306.380133","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","391.366329","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","1459.165017","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","1164.858633","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","1220.332148","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","1386.69052","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","2163.676036","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","2100.832164","Fc","Calculated data" +"QV","Value of Agricultural Production","237","Viet Nam","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","2116.903957","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","1991","1991","USD","10.384092","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","1992","1992","USD","16.179605","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","1993","1993","USD","14.899038","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","1994","1994","USD","12.742633","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","1995","1995","USD","13.670677","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","1996","1996","USD","16.184471","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","1997","1997","USD","16.277831","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","1998","1998","USD","19.132925","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","1999","1999","USD","18.4564","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2000","2000","USD","18.692995","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2001","2001","USD","18.776121","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2002","2002","USD","18.288966","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2003","2003","USD","34.336643","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2004","2004","USD","37.034066","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2005","2005","USD","43.804691","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2006","2006","USD","66.937611","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2007","2007","USD","74.525012","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2008","2008","USD","76.325","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2009","2009","USD","114.845368","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2010","2010","USD","128.338945","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2011","2011","USD","156.271833","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2012","2012","USD","142.446806","Fc","Calculated data" +"QV","Value of Agricultural Production","249","Yemen","57","Gross Production Value (current million US$)","656","Coffee, green","2013","2013","USD","159.030201","Fc","Calculated data" diff --git a/module-2_projects/tableau-project/your-code/Coffee production/original_data/pesticides_usage.csv b/module-2_projects/tableau-project/your-code/Coffee production/original_data/pesticides_usage.csv new file mode 100644 index 0000000..f6c7874 --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/original_data/pesticides_usage.csv @@ -0,0 +1,3861 @@ +Domain Code,Domain,Area Code,Area,Element Code,Element,Item Code,Item,Year Code,Year,Unit,Value,Flag,Flag Description +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","121","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","121","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","121","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","121","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","201","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","251","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","261.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","272.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","283.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","294.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","305.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","316.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","327.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","338.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","349.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","359.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","370.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","381.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","392.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","403.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","582.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","574.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","353.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","3","Albania","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","441.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","4684.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","6035.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2816.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","2650.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2999.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","5196.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1131.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","762.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","439.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1168.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1673.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2177.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2681.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","3185.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","3690.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","2726.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","2419.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","3478.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","5635.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","3084.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1785.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","7528.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","8896.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","4","Algeria","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","8185.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","81.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","25.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","169","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","25.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","336","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","7","Angola","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","40","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","7.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","39.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","31.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","8","Antigua and Barbuda","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","28.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","26156","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","26156","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","26156","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","26156","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","30195","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","37842","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","54595","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","77691","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","62397","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","73152.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","83907.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","94662.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","105417.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","116172.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","126927.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","137683.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","148438.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","185617.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","202151.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","138831.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","234430.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","219255.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","215405.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","9","Argentina","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","211555.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","23.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","41.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","50.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","60.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","69.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","79.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","88.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","98.23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","204.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","220.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","227.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","241.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","218.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","198.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","278.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","278.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","278.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","1","Armenia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","278.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","17866","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","17866","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","22234","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","23899","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","21057","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","25598","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","31185","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","34091","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","37215","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","34200","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","33475","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","32710","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","26651","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","32418","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","36276","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","34310","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","35900","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","32446.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","42935.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","38065.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","42169.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","47632.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","48687.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","10","Australia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","45177.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","4246","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","4487","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3897","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3984","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3619","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3402","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3565","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3689.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","3340.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","3418.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3563.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","3132.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","3079.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","3384.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","3301.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3404","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","3415.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","3526.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","4246.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","3531.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","3692.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","3441.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","3563.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","11","Austria","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","3108.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","148.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","262.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","316.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","333.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","461.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","516.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","52","Azerbaijan","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","489.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","452.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","363.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","325.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","270.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","237.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","292.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","253.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","253.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","253.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","253.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","253.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","253.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","253.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","12","Bahamas","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","253.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","14.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","14.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","14.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","14.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","30.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","12.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","12.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","9.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","11.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","12.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","8.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","9.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","0.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","6.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","12.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","12.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","12.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","16.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","10.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","12.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","9.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","9.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","9.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","13","Bahrain","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","9.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1266","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1287","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1453","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1487","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1594.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1702","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1919","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2035","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2068","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2532","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3170","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","3312.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","4186.81","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","5446.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","6984.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","8083.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","9408.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","10914.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","12402.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","13755.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","13250.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","14798.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","13289.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","16","Bangladesh","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","15330.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","550","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","550","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","550","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","550","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","514","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","664","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","475","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","14","Barbados","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","168.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","4896.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","5682.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","57","Belarus","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","5479.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","9560.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","8529.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","9204.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","8822.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","9186.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","9776.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","8244.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","6712.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","6516.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","5496.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","4644.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","5740.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","6139.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","255","Belgium","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","5905.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","15","Belgium-Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","9074.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","15","Belgium-Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","9074.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","15","Belgium-Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","9074.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","15","Belgium-Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","9074.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","15","Belgium-Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","8449.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","15","Belgium-Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","9007.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","15","Belgium-Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","8742.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","15","Belgium-Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","8306.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","15","Belgium-Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","9095.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","15","Belgium-Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","8829.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","771","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","696","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","997","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1057.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1118.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1179.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1240.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1301.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1362","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1362","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1296","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1719","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1529.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1339.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1149.81","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","960.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","770.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","674.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","984.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","788.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","700.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","826.58","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","638.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","23","Belize","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1036.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","3.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","4.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","4.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","24.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","29.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","32.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","5.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","6.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","2.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","5.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","7.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","5.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","5.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","6.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","9.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","7.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","18","Bhutan","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","5.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2243.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1456.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","706.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1066.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1424.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1782.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","2140.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2498.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2855.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","3213.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3571.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","3929.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","4287.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","4645.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","6269.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","7143.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","7770.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","8179.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","8869.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","10280.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","11822.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","12384.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","13476.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","19","Bolivia (Plurinational State of)","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","16227.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","20","Botswana","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","49695","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","58349.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","67003.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","75658.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","84312.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","92967.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","101621.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","110276.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","118930.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","127585","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","140423","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","151523","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","145552","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","182446","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","214725","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","232232","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","238716","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","304031","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","312637","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","335742","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","342580","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","345026","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","346583","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","21","Brazil","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","367778","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","2.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","9.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","13.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","5.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","27.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","38.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","9.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","26","Brunei Darussalam","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","11.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","3906","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","3906","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3906","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3777.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3648.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3519.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3391","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3262.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","3133.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","3004.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","2876","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2747.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2618.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2489.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","2361","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","2232.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","2103.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1974.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1846","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1717.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1588.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1459.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1331","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","27","Bulgaria","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1197","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","29.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","29.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","29.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","39.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","75.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","111.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","93.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","75.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","57.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","39.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","21.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","92.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","109.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","292.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","190.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","132.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","442.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","843","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","843","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","233","Burkina Faso","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","843","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","92.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","92.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","92.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","96.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","84.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","144.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","207.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","117.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","107.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","150.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","109.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","72.58","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","98.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","263.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","508.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","304.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","190.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","412.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","456.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","177.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","264.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","75.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","98.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","29","Burundi","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","956.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","0.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","0.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","7.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","35","Cabo Verde","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","914.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","190.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1842.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1244.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","646.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","48.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","180.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","630.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","258.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","654","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","546","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","687","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","815.79","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","957.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","849.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","829.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","950.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","918.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","882.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","813.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1160.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1372.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1372.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","32","Cameroon","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1372.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","29568","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","29477.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","29387","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","29296.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","29206","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","32223.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","35240.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","38258.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","41275.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","44293","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","39667","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","38456","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","34226","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","35596","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","36138","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","36363","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","36572.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","45140.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","53707.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","54529.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","61050","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","62107.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","73508.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","33","Canada","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","81659.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","0.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","0.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","0.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","0.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","37","Central African Republic","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","22.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","60","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","39","Chad","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","15373","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","15373","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","15373","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","15373","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","15373","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","15373","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","15373","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","15373","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","15373","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","15373","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","14264.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","13156.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","12047.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","10939.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","9830.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","9830.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","9830.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","9830.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","9830.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","9830.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","9830.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","9830.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","9830.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","40","Chile","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","9830.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","775408.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","775388.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","809244.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","854860.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","988608.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1097075.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1150843.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1204908.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1240708.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1333139.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1288619.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1283381.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1322948.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1335502.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1395814.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1469311.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1546108.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1632584.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1681188.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1717687.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1765944.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1795371.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1815505.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","351","China","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1811604.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","115","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","45.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","45.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","46.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","46.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","90","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","96","China, Hong Kong SAR","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","32.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","43.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","32.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","38.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","46.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","47.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","53.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","52.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","53.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","52.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","53.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","128","China, Macao SAR","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","53.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","765307","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","765307","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","799174","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","844800","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","978551","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1087044","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1140812","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1195466","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1231699","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1321620","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1279533","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1274820","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1312285","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1325226","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1386028","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1460000","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1537000","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1623000","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1672300","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1709000","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1758000","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1787002","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1806000","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","41","China, mainland","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1801862","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","9954","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","9954","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","9954","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","9954","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","9954","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","9954","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","9954","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","9364","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","8931","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","11441","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","9007","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","8476","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","10547","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","10143","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","9703","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","9228","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","9014","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","9492","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","8780","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","8589","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","7850","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","8254","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","9396","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","214","China, Taiwan Province of","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","9632","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","18058.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","16817","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","15305.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","14961.81","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","17051.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","20156.23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","18131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","16005","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","60687","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","66088","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","75843.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","85515.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","84023.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","88772.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","105514.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","117881.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","98328.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","82439.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","48538.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","51435.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","48618.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","53797.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","48727.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","44","Colombia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","54563.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","0.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","0.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","0.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","0.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","0.58","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","0.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","0.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","0.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","0.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","0.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","0.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","0.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","0.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","45","Comoros","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","0.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","11.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","12.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","14.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","13.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","12.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","11.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","10.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","9.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","8.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","7.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","6.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","5.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","4.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","3.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","2.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","0.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","0.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","0.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","46","Congo","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","0.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","0.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","0.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","0.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1.58","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","2.79","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","3.23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","3.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","3.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","3.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","3.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","3.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","47","Cook Islands","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","3.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1447.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1447.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1447.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1447.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1475.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1503.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","2747.79","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","4104.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","7898","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","16889","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","25865","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","10704","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","11125.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","10639.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","10990.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","10937.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","10988.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","12746.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","13317","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","12306.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","14241.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","12811.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","12811.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","48","Costa Rica","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","12811.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","143","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","134","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","107","Côte d'Ivoire","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2304","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","2675.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3046.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3418","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3148","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3026.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2904.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2782.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","2661","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2539.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2417.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2295.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","2174","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","2053","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","2150","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","2015","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","2388","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","2070","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1540","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1638.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1737.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","98","Croatia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1836.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2184.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1970.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1695.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","2044.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2518.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","2030.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","2417.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2224.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1660.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1097.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","534.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","627.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","975","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","720","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","650","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","620","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","812","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","495","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","447","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","707","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","620","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","567.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","727.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","50","Cyprus","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","886.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3545.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3593.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3757.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3631.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","4085.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","4351.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","4242.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","4533.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","4649.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","4977.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","4590","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","5318.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","5384.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","5693.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","6194.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","5440","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","4759.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","4957.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","5306.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","5345.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","167","Czechia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","5146.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","5650","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","4628","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","4566","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","4103","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3922","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","5043","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3672","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3679","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","3623","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2867","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3174","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","3311","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2868","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2954","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","2899","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3246","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","3212","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","3336","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","4145","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","2836","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","3894","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","4249.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","5716","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","54","Denmark","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","4118","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","4971","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","4971","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","4971","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","4971","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","4971","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3449","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3493","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3846","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","4375","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","5398","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","5082","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","7182","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","4018.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","854.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","3713.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3515.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","4116.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","5689.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","5409.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","5975.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","6316.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","6275.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","6235.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","56","Dominican Republic","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","6194.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2537","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","2377","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2012","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1844","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2670","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","2658","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","2407","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","7612","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","21500","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","14216","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","17948","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","7344","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1306.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","30634.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","29799.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","18391.23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","7953.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","14156.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","15396.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","9666.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","31637.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","17529.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","11469.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","58","Ecuador","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","6471.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","13214","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","8255","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","6156","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","4175","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","4283","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","4391","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","4499","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","4607","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","4715","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","4823","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","4931","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","5039","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","5147","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","5255","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","5363","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","5471","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","9781","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","9105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","9527","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","9013","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","11590","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","12945","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","13991","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","59","Egypt","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","13653","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2524","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","4096","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3940.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3785.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3630.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3475.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3319.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3164.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","3009.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2854.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","2698.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2543.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2388.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2233.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","2078.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1922.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","2265.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1940.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","3899.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","3333.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","3598.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","3231.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","2595.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","60","El Salvador","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","6005.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","4.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","4.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","4.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","4.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","30.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","19.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","22.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","24.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","178","Eritrea","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","27.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","469","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","170","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","176","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","133","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","200","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","195","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","187","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","315","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","329","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","331","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","323","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","351","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","386","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","452","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","460","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","551","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","402","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","514","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","460","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","553","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","63","Estonia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","567","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","242","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","242","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","242","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","383","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","383","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","383","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","494.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","606.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","630","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","824.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1019.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1213.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1408.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","2603.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","2593.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","2270.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","3699.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","4128.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","4128.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","4128.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","238","Ethiopia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","4128.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","148.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","698.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","135.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","160.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","186.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","211.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","237.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","262.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","288.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","313.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","338.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","364.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","389.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","415.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","440.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","466.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","491.79","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","517.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","542.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","709.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","689.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","710.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","805.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","66","Fiji","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","769.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2001","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1738","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1372","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1200","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1247","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1041","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","909","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","999","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1164","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1139","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1147.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1423.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1620.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1666.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1489.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1431.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1645.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1479.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1621.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1693.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1746.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1707.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1545.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","67","Finland","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1475.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","97701","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","103434","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","85249","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","91953","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","89515","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","84011","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","97890","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","109793","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","107754","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","114696","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","97878","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","99694","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","82448","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","74531","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","76120.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","78290","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","71640.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","77255","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","78601","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","63692","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","61911","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","61039","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","63547.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","68","France","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","66497.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","41.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","47.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","55.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","45.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","48.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","53.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","45.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","27.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","43.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","29.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","70","French Polynesia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","25.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","20.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","8.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","8.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","74.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","141.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","207.58","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","274","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","237","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","250","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","345","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","559","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","813","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","2061","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","588","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","588","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","588","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","588","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","588","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","588","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","75","Gambia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","588","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","31289","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","32006","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","29542","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","25170","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","26330","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","30090","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","31683","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","30414","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","33377","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","30019","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","35273.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","33423.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","34431.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","35539.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","34930.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","36386.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","38540.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","40740.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","43413.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","39289.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","40832.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","43754.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","45522.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","79","Germany","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","43756.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","65.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","65.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","65.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","65.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","65.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","65.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1575.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","502","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","297.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","114.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","81.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","89.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","108.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","127.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","165.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","771","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","119.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","350.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","378.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","378.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","378.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","378.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","81","Ghana","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","378.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","7420","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","7420","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","7869","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","8826","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","6341","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","6663","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","7296","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","9223","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","10702","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","9635","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","10627","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","10725","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","12209.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","11836.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","12650.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","13488.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","7505.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","7345.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","5130.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","3404.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","5607.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","8189.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","8002.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","84","Greece","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","8081.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","12004.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","12004.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","12004.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","12004.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","12004.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","12004.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","12004.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","11419.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","10834.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","10249.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","9665.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","10025.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","10385.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","10745.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","11966.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","13512.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","15958.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","22890.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","18099.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","13284.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","14906.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","16540.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","19726.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","89","Guatemala","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","20489.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","80","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","80","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","80","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","153","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","157","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","157","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","181.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","205.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","230.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","254.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","278.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","303.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","327.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","351.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","376.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","400.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","424.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","449.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","556.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","663.23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","770.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","90","Guinea","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","877.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","41.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","175","Guinea-Bissau","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","289.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","270.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","343.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","246.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","234.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","264.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","211.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","400.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","427.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","91","Guyana","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","358.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","17.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","18.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","11.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","6.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","8.58","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","12.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","14.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","16.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","23.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","26.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","93","Haiti","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","27.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","4576.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","3368.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","5965.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","6768","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2550.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","7800","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","6464","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","6980","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","3495","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2387","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","4376","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1156","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1784.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2412.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","3040.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3669.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","4297.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","5283.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","5130.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","4344.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","5736.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","6324.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","7194.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","95","Honduras","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","7194.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","12756","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","8069","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","5777","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","10197","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","9574","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","7715","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","6946","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","4445","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","5280","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","4598","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","4151","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","5458","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","8249.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","8742.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","9955.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","9689.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","11535","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","11188.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","12092.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","11151.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","10305.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","8473.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","8141.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","97","Hungary","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","7744.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","3.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","4.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","4.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","4.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","4.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","6.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","5.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","5.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","5.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","4.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","2.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","3.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","3.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","99","Iceland","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","2.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","75000","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","72133","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","70791","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","66388","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","61357","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","61257","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","56114","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","52279","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","49157","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","46195","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","44957.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","43720.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","42482.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","41245.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","35113","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","35342","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","37423","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","27422.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","14485.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","28707.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","40093.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","55540","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","52980","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","100","India","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","45620","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2432","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","3259","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","867.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","101","Indonesia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","10644","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","16349","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","11683","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","9572","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","10324","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","8746","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","5332","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","6307.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","7283.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","8259.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","9235.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","8809.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","9355.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","9854.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","9702.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","7508.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","7921.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","5557.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","2602.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","2308.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","2852.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","3396.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","5733.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","102","Iran (Islamic Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","5173.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","692","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","692","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","692","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","692","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","692","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","616","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","848","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","755","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","508","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","548","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","837.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","878.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","853.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","828.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","873.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","824.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1062.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","955.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","847.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","740.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","632.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","525.23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","103","Iraq","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","417.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2014","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","2014","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2014","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","2014","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2014","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","2152","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1577","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2201","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2257","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1930","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1942.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2333.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2614.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2719.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","2978.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","2624.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","2766.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","3083.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","2790.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","2268.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","2529.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","3664.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","2925.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","104","Ireland","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","2950.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2491","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","2491","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2491","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","2491","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2491","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","2491","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","2491","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2491","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2491","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2975.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3459.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","3943.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","4427.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","4911.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","5395.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","5879.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","6363.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","6847.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","7331.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","6650","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","6753","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","6124","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","6009","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","105","Israel","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","6005","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","100596.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","88916.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","88227.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","89282.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","81217.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","84153","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","74617.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","84799","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","84117","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","81583","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","79447","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","75978","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","94211","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","86058","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","83810","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","84647","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","74349","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","80454","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","79643","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","74172","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","71613","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","70690","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","61889","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","106","Italy","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","55633","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1217.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1217.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1217.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1217.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1217.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1258.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1316.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","109","Jamaica","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","620.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","79821.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","78735.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","70262.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","67869.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","64688.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","63829.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","65248.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","61164.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","58750","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","60970.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","55576","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","51796.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","54716.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","110","Japan","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","52794.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","734","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","926","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1365","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","786","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","773.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","761","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","910","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","875","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","845","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","525","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","553","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1419.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1566.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1319.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","736.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1735.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1141.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1350.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1265.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1089.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","932.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1111.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","708","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","112","Jordan","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1010","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","17182","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","17182","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","17182","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","13536","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","13047","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","8112","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","6416.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","4720.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3024.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","3007.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","3361.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","3606.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","3802.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3666.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","3926.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","5575.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","7044.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","8716.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","6283.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","10656.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","8674.58","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","108","Kazakhstan","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","8738.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","3469","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","3469","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3469","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3469","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3469","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","4607","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","6344","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","5172","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","4114","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","3056","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1998","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","114","Kenya","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1578","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","20","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","118","Kuwait","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2418","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","2200.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1983.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1766.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1549.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1332.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1115.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","898.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","680.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","609.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","733.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1302.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1321.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1081.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","796","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1026.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","662.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","266.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","350.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","312.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","365.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","113","Kyrgyzstan","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","341.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","36.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","26.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","16.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","6.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2.23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","3.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","4.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","0.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","0.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","25.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","43.81","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","43.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","120","Lao People's Democratic Republic","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","125.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1005","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","476","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","294","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","358","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","361","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","334","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","369","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","326.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","284.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","367.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","335.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","477.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","594.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","723.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","743.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1113.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1033","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","881.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1027.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1070.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1396.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","119","Latvia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1250","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1221","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1221","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1221","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1221","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1221","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1221","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1221","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","121","Lebanon","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1816","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","0.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","0.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","5.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","35.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","37.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","77.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","80.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","175.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","271.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","122","Lesotho","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","62.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","2733.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1654.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","947.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","974.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1556.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","606.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","606.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","606.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","124","Libya","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","606.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1380","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","936","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","713","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","737","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","979","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","812","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","695","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","688.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","726.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","792.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","847.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1023.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1048.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1197.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","2722.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","2723.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","2748.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1803.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","2062.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","2559.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","126","Lithuania","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","2515.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","154.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","256","Luxembourg","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","155.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","128.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","101.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","109.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","76.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","73.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","152.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","139.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","88.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","49.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","130.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","87.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","240.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","146.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","68.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","114.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","109.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","93.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","112.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","143.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","241.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","310.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","377.81","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","129","Madagascar","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","508","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","171.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","171.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","171.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","171.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","171.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","171.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","171.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","171.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","136.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","125.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","207.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","168.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","128.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","88.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","48.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","295.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","202.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","524.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","624.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","736.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","584.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","553.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","775.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","130","Malawi","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1500.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","39406.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","46868.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","54821.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","52464.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","60194.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","41562.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","49810.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","131","Malaysia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","61445.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","44.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","66.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","132","Maldives","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","236.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","247.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","141.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","91.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","86.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","80.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","75.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","69.81","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","64.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","53.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","48.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","42.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","37.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","31.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","26.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","21.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","17.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","12.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","19.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","8.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","8.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","6.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","3.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","133","Mali","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","3.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","326.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","326.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","326.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","326.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","447.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","210.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","258.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","260.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","138.79","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","181.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","111.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","113.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","114.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","116.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","117.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","119.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","120.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","121.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","121.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","122.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","123.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","123.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","134","Malta","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","124.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","39.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","3.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","3.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","702.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","9.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","17.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","4.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","67.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","13.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","26.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","136","Mauritania","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","26.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","889","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","773.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","657.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","541.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","425.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","485.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","445.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","527.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","560.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","532.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","593.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","673.23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","695.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","783.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","739.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","769.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","821.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","703.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","799.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","818.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","841.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","812.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","734.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","137","Mauritius","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","782.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","26624.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","23371.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","11535.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","16285.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","18507.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","39171.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","38402.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","50894.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","50154.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","50327.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","52305.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","53219.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","49213.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","138","Mexico","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","47551.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","273","Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","0.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","273","Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","0.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","273","Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","0.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","273","Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","0.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","273","Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","273","Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","273","Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","273","Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","9364","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","9771.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","10178.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","10585.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","10992.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","11399.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","11806.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","12214","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","12621.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","13028.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","13435.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","13842.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","14249.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","14656.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","15064","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","14588","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","13697","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","13697","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","13697","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","13697","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","13697","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","13697","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","13697","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","143","Morocco","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","13697","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","102.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","102.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","102.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","102.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","102.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","72.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","65.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","60.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","53.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","46.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","39.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","31.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","24.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","267.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","572.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","770.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","891.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","547.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","890.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","914.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1187.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","766.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","766.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","144","Mozambique","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","766.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","209.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","114.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","151.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","160.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","190.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","264.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","137.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","145.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","282.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","420.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","557.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","694.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","949.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","858.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1042.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1462.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","3872.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","3329.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1450.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1114.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","3340.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","4653.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","3050.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","28","Myanmar","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","2898.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","147","Namibia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","60.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","60.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","60.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","60.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","60.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","60.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","70.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","80.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","91.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","101.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","111.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","122.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","132.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","142.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","153","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","127.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","128.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","344.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","353.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","209.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","332.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","342.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","410.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","149","Nepal","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","454.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","9729","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","9338","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","9030","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","10505","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","8646.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","12601.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","8923.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","10568.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","11762.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","11152.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","11382.84","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","9424.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","9700.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","9550.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","10655.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","10703.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","10461.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","12073.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","10777.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","9857.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","9586.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","10953.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","11348.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","150","Netherlands","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","10720.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","28.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","32.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","26.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","26.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","153","New Caledonia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","21.79","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","3490","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","3490","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3490","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3489","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3515","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3904","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3499","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3249","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","3055.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2535.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3634.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","3333.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","4170","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","3891","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","4050","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","4058","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","4388","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","4939","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","5857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","5086","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","5086","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","5086","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","5086","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","156","New Zealand","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","5086","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","575","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","575","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","575","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","977","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","799","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","876","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","2041.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3207.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","4373.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","4097.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3925.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","3603.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","5715.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","5613.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","4581.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","9391.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","6889.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","9850.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","10173.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","9387.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","12242.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","4932.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","4413.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","157","Nicaragua","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","4413.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","29.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","27.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","26.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","24.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","21.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","30.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","12.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","7.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","11.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","10.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","21.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","158","Niger","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","21.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","970","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","659","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","540","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","573","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","556","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","507","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","529","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","412.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","296","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","175","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","240","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","210","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","262","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","149","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","327","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","119","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","154","North Macedonia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1183","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","760","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","767.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","749","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","848","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","913.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","698.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","735.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","934.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","802.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","348.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","512.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","799.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","668.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","827.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","518.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","696.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","722.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","800.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","534.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","698.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","823.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","813.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","162","Norway","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","761.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","27.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","17.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","112.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","88.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","65.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","68.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","71.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","270.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","283.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","157.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","30.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","52.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","73.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","94.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","116.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","137.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","158.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","180.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","201.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","223.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","244.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","292.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","339.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","221","Oman","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","439.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","5299","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","5962","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","5518","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","4945","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","6183","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","7681","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","11967","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","16936","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","18406","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","20467","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","27894","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","11871","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","10881.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","9892.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","8903.48","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","7914.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","6925.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","5935.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","4946.79","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","3957.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","2968.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1979.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","990.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","165","Pakistan","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","0.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1263.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1238.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1237.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1243.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1290.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1265.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1348.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1348.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1348.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1348.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1348.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","299","Palestine","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1348.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","3305.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","3305.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3305.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3305.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3305.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3305.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3305.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3305.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1648.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1309.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","970.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2786.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2138.79","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2445.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","2587.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","2674.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","2630.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","2237.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","2141.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","2045.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1948.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1852.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1371.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","166","Panama","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","2477.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","121","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","121","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","121","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","172","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","176","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","168","Papua New Guinea","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","105","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","3380","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","3380","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3380","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","5806.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","8233.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","10660.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","13087.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","15514","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","12196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","5064.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3507.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","10583.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","11753.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","12923.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","14093.58","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","15263.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","16433.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","17603.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","18773.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","19943.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","21113.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","22283.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","23453.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","169","Paraguay","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","24667.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1278.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1278.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1278.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1278.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1278.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1278.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1543.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1793.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1855.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1752.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","2200.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2959.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2851.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2805.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","3084.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3533.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","4193.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","2883.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","4937.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","4656.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","6170.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","6030.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","7288.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","170","Peru","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","7091.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","5422","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","5422","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","7363","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","8825","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","9330","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","7136","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","9824","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","9839.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","8981.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","8692.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","9017.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","8968.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","10415.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","7184","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","8726","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","16039","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","17101","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","18721","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","20611.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","18493.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","19449.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","21779.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","21885.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","173","Poland","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","22204.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","9357","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","9357","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","6117","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","8985","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","9580","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","11815","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","12457","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","12825.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","14389","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","15411","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","15470","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","15503","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","17574.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","17128.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","17015.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","16402.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","15726.58","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","16682.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","17080.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","13984.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","13774.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","14024.98","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","12444.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","174","Portugal","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","10126.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","21.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","52.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","179","Qatar","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","25082","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","27476","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","26718","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","25999","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","26184","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","25845","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","24620","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","24819","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","22103","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","25837","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","25684","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","28218","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","25844","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","24610","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","25323","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","24506","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","24076","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","24262","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","25368","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","22790","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","20431","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","19131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","17438","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","117","Republic of Korea","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","18708","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2897","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","2501","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2553.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","2606.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","2659.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2711.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2764.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2817.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","2870.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2877.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2606.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2715.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","2915.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","2394.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","2466.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","2556.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","2924.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","2308.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","2466.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","2453.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","2316.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","146","Republic of Moldova","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","2409.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","25255","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","19898","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","15134","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","24252","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","21811","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","20113","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","17425","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","15349","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","13979","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","11280","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","9427.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","7871.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","7875.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","6928.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","6778.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","7565.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","6733.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","6314","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","7193.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","6548.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","7249.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","6582.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","6418.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","183","Romania","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","6947.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","185","Russian Federation","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","25961","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","157","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","107","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","127.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","157.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","188.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","218.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","249","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","157","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","152","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","147","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","72.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","106.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","140.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","159.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","223.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","289.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","398.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","322.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1188.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","954.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","182.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","926.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","184","Rwanda","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1841.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","10.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","10.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","11.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","11.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","12.52","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","12.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","12.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","12.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","14.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","15.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","14.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","14.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","188","Saint Kitts and Nevis","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","0.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","189","Saint Lucia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","196","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","48.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","48.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","23.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","48.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","44.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","23.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","29.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","12.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","10.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","6.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","12.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","18.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","23.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","29.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","35.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","40.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","46.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","52.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","57.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","63.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","74.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","244","Samoa","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","80.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","994","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","994","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","994","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","994","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","994","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","994","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","994","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2516.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2686.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2856.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3026.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","3196.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","3366.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","3536.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","3706.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3876.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","4046.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","4216.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","4372.61","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","4528.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","4684.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","4840.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","4996.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","194","Saudi Arabia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","5412.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","384","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","384","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","384","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","357.55","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","547.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","435.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","411.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","437.23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","450.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","470.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","491.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","282.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","328","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","373.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","419.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","465.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","511.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","557.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","603.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","649.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","695.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","741.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","787.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","195","Senegal","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","722.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1230.37","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1814.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1699.42","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1467.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1441.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1356.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1404.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1330.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1248.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1321.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1160.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1021.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1041.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","186","Serbia and Montenegro","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1041.89","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","10.29","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","9.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","14.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","30.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","32.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","35.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","34.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","24.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","196","Seychelles","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","18.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3889.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","4158.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","6146.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3981.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3247.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","3582.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2831.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1457.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1549.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1642.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1515.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1573.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1545.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1586.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1595.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1498.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1654.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1880.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1410.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1563.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","199","Slovakia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1620.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1309","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1112","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","944","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","987","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","953","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1245","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1091","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1133","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1468","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1387","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1181.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1377.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1572.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1397.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1292.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1165.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1226.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1170.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1140.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1126.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1019.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","198","Slovenia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","918.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","16582","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","16582","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","16582","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","16582","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","16582","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","18025","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","19508","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","21596","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","24304","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","26098.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","202","South Africa","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","26857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","39562","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","39147","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","31839","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","29408","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","31244","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","27852","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","33236","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","34023","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","35070","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","33614","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","34597","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","35700","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","40727","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","41586","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","47445","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","41017","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","39767","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","39286","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","40719","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","35199","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","39043","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","53549","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","48668","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","203","Spain","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","54197","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1571.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1409.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2144.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1753.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1860.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1735.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1654.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1622.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1532.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1766.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1695.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1705.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1714.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1723.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1733.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1742.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1751.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1439.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1152.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1170.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1450.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1290.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1112.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","38","Sri Lanka","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1235.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","276","Sudan","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","2469.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","276","Sudan","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","2469.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1643","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1643","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1643","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","498","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1015","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1302","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1384","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1223","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","904","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","585","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","266","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","517.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","769.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1020.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1272.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1524.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1268.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1063.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1364.79","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","2425.77","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","2862.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","206","Sudan (former)","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","2862.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","217","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","207","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","197.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","188","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","178.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","169","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","142","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","139","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","151.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","163.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","176","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","268.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","360.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","415.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","337.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","376.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","340.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","397.75","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","391.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","431.83","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","477.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","936.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","633.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","207","Suriname","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","537.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2310","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1841","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1497","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1466","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1962","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1225","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1529","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1534","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1555","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1602","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1721","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1789","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","2198","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2549","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1353","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","2132","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","2220","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","2157","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","2352","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1935","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1982","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1781","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1814","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","210","Sweden","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1620","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2282","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","2055.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2018.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1934.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1922.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","1826.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1746.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1644.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1563.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1526.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1576.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1561.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1526.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1476.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1390.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1388.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1359.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","2099.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","2011.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","2170.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","2059.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","2132.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","2077.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","211","Switzerland","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","2098.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","858.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","858.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","858.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","858.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","858.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","858.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","858.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","858.62","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1796.14","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2043.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1306.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","212","Syrian Arab Republic","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1422.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2280","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","2280","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","714","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","826","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","751.31","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","676.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","601.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","527.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","452.56","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","377.88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","303.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","228.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","235.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","241.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","247.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","253.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","258.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","262.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","264.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","264.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","208","Tajikistan","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","264.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","18849","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","18849","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","18849","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","18849","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","20448","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","24062","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","21901","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","23960","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","19212","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","22761","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","20334","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","30629.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","40925.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","51221","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","88548","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","43831","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","41220","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","66858","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","65423","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","67933","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","68986","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","87191","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","69921","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","216","Thailand","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","8190.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","0.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","2.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","0.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","0.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","2.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","176","Timor-Leste","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","324","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","213","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","192","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","206","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","203","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","198","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","197","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","228.07","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","259.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","290.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","321.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","352.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","383.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","414.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","584.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","203.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","268.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","262.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","229.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","172.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","242.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","145.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","341.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","217","Togo","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","371.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","219","Tonga","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","11.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","328.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","386.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","384.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","313.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","298.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","283.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","269.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","254.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","239.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","224.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","210.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","195.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","180.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","165.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","151.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","136.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","121.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","106.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","92.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","77.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","2026.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","170.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","2101.23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","220","Trinidad and Tobago","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","856.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","909","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","909","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","909","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","909","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","909","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","909","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","909","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","909","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","915.34","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","921.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","928.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","934.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","940.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","947.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","953.38","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","959.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","966.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","972.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","978.74","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","985.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","985.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","985.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","985.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","222","Tunisia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","985.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","29918","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","24343","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","27110","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","28042","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","24219","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","27350.33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","30326.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","34431","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","30162","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","33089","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","33471","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","25539","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","27928.49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","33095.97","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","28859.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","40367.95","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","27464.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","48715.51","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","37640.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","37651.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","38554.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","39534.43","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","42610.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","223","Turkey","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","39440","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","7663","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","213","Turkmenistan","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","9712","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","226","Uganda","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","88","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","66772","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","61843.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","56914.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","51986.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","47057.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","42129.32","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","37200.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","32272.25","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","27343.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","22415.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","17486.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","12558.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","15344.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","23021.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","28832.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","36476","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","54080.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","36444.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","62534.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","79491.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","90814.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","230","Ukraine","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","86781.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","29517","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","29022","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","31077","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","32387","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","33929","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","33743","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","35579","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","35490","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","35422","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","35537","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","33031.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","32893.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","30995.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","30754.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","31223.91","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","31415.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","22588.09","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","22331.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","21596.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","21324.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","16770.87","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","16401.66","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","17718.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","229","United Kingdom","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","17673.46","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","20","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","20","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","20","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","20","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","715","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","557","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","49","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","215","United Republic of Tanzania","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","400975.93","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","384646.39","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","400975.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","391903.86","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","425922.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","423201.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","433180.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","434540.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","424562.11","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","433633.96","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","430005.21","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","411407.94","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","416851.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","417758.24","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","425015.71","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","388275.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","392810.67","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","400068.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","379202.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","358337.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","374818.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","391298.7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","407779.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","231","United States of America","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","407779.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1762.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1762.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","2072.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1634.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","2272.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","2413.02","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3444.01","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3362.05","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","4239.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","3925.03","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3650.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","4433.04","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","5184.5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","7455.26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","9017.73","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","9232.47","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","9143.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","14057.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","13335.22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","13475.41","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","14981.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","17517.76","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","23506.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","234","Uruguay","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","19028.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","228","USSR","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","86200","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","228","USSR","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","92200","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","147","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","222","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","198","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","155","Vanuatu","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","131","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1822","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","2409","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","236","Venezuela (Bolivarian Republic of)","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","3928","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","20912","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","20912","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","20912","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","20912","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","20912","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","24896","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","32745","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","33019","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","20841","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","16695","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","16502","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","237","Viet Nam","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","19154","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","713.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","713.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","713.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","713.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","713.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","713.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","713.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","713.28","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1182.1","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1237.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1289.15","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1576.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1863.19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","748.13","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","614.12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","786.64","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","741.65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","193.69","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","79.57","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","92.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","133.85","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","109.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","109.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","249","Yemen","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","109.59","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","248","Yugoslav SFR","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","2575","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","248","Yugoslav SFR","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","2857","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","1080","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","1080","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","1080","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1080","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1080","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","716","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","1670","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","1616.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","1562.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","1509.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","1455.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","1402","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","1348.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","1294.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","1241.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","1187.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","1134","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","1080.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","1026.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","973.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","919.6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","866","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","812.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","251","Zambia","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","758.8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","1990","1990","tonnes","5727","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","1991","1991","tonnes","6753","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","1992","1992","tonnes","3303","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","1993","1993","tonnes","1741","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","1994","1994","tonnes","1689","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","1995","1995","tonnes","2599","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","1996","1996","tonnes","2538","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","1997","1997","tonnes","2762","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","1998","1998","tonnes","2883","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","1999","1999","tonnes","2918.18","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2000","2000","tonnes","2953.36","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2001","2001","tonnes","2988.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2002","2002","tonnes","3023.72","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2003","2003","tonnes","3058.9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2004","2004","tonnes","3094.08","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2005","2005","tonnes","3129.27","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2006","2006","tonnes","3164.45","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2007","2007","tonnes","3199.63","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2008","2008","tonnes","3234.81","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2009","2009","tonnes","3269.99","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2010","2010","tonnes","3305.17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2011","2011","tonnes","3340.35","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2012","2012","tonnes","3375.53","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RP","Pesticides Use","181","Zimbabwe","5157","Agricultural Use","1357","Pesticides (total)","2013","2013","tonnes","2550.07","A","Aggregate, may include official, semi-official, estimated or calculated data" diff --git a/module-2_projects/tableau-project/your-code/Coffee production/original_data/primary_forest.csv b/module-2_projects/tableau-project/your-code/Coffee production/original_data/primary_forest.csv new file mode 100644 index 0000000..3ae6745 --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/original_data/primary_forest.csv @@ -0,0 +1,5405 @@ +Domain Code,Domain,Area Code,Area,Element Code,Element,Item Code,Item,Year Code,Year,Unit,Value,Flag,Flag Description +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","2","Afghanistan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","1990","1990","1000 ha","84.8","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","1991","1991","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","1992","1992","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","1993","1993","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","1994","1994","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","1995","1995","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","1996","1996","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","1997","1997","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","1998","1998","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","1999","1999","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2000","2000","1000 ha","84.8","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2001","2001","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2002","2002","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2003","2003","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2004","2004","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2005","2005","1000 ha","84.8","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2006","2006","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2007","2007","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2008","2008","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2009","2009","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2010","2010","1000 ha","84.8","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2011","2011","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2012","2012","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","3","Albania","5110","Area","6714","Primary Forest","2013","2013","1000 ha","84.8","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","4","Algeria","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","5","American Samoa","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","6","Andorra","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","7","Angola","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","258","Anguilla","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","8","Antigua and Barbuda","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1738","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1738","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1738","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1738","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","9","Argentina","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1738","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","17","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","17","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","17","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","1","Armenia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","22","Aruba","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","5233","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","5233","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","5194.2","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","5155.4","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","5116.6","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","5077.8","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","5039","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","5039","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","5039","Fm","Manual Estimation" +"RL","Land Use","10","Australia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","5039","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","1990","1990","1000 ha","114","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","1991","1991","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","1992","1992","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","1993","1993","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","1994","1994","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","1995","1995","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","1996","1996","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","1997","1997","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","1998","1998","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","1999","1999","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2000","2000","1000 ha","114","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2001","2001","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2002","2002","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2003","2003","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2004","2004","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2005","2005","1000 ha","114","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2006","2006","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2007","2007","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2008","2008","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2009","2009","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2010","2010","1000 ha","114","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2011","2011","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2012","2012","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","11","Austria","5110","Area","6714","Primary Forest","2013","2013","1000 ha","114","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","52","Azerbaijan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","12","Bahamas","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","13","Bahrain","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","1990","1990","1000 ha","436","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","1991","1991","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","1992","1992","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","1993","1993","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","1994","1994","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","1995","1995","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","1996","1996","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","1997","1997","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","1998","1998","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","1999","1999","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2000","2000","1000 ha","436","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2001","2001","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2002","2002","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2003","2003","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2004","2004","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2005","2005","1000 ha","436","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2006","2006","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2007","2007","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2008","2008","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2009","2009","1000 ha","436","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2010","2010","1000 ha","436","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2011","2011","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2012","2012","1000 ha","426","Fm","Manual Estimation" +"RL","Land Use","16","Bangladesh","5110","Area","6714","Primary Forest","2013","2013","1000 ha","421","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0.003","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0.003","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0.003","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0.003","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","14","Barbados","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0.003","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","1992","1992","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","1993","1993","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","1994","1994","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","1995","1995","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","1996","1996","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","1997","1997","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","1998","1998","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","1999","1999","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2000","2000","1000 ha","400","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2001","2001","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2002","2002","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2003","2003","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2004","2004","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2005","2005","1000 ha","400","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2006","2006","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2007","2007","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2008","2008","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2009","2009","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2010","2010","1000 ha","400","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2011","2011","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2012","2012","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","57","Belarus","5110","Area","6714","Primary Forest","2013","2013","1000 ha","400","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","255","Belgium","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","15","Belgium-Luxembourg","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","15","Belgium-Luxembourg","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","15","Belgium-Luxembourg","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","15","Belgium-Luxembourg","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","15","Belgium-Luxembourg","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","15","Belgium-Luxembourg","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","15","Belgium-Luxembourg","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","15","Belgium-Luxembourg","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","15","Belgium-Luxembourg","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","15","Belgium-Luxembourg","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","1990","1990","1000 ha","599","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","1991","1991","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","1992","1992","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","1993","1993","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","1994","1994","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","1995","1995","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","1996","1996","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","1997","1997","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","1998","1998","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","1999","1999","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2000","2000","1000 ha","599","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2001","2001","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2002","2002","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2003","2003","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2004","2004","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2005","2005","1000 ha","599","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2006","2006","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2007","2007","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2008","2008","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2009","2009","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2010","2010","1000 ha","599","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2011","2011","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2012","2012","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","23","Belize","5110","Area","6714","Primary Forest","2013","2013","1000 ha","599","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","53","Benin","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","17","Bermuda","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","1990","1990","1000 ha","413","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","1991","1991","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","413","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","413","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","413","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","18","Bhutan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","413","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","1990","1990","1000 ha","40804","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","1991","1991","1000 ha","40628.2","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","1992","1992","1000 ha","40452.4","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","1993","1993","1000 ha","40276.6","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","1994","1994","1000 ha","40100.8","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","1995","1995","1000 ha","39925","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","1996","1996","1000 ha","39749.2","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","1997","1997","1000 ha","39573.4","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","1998","1998","1000 ha","39397.6","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","1999","1999","1000 ha","39221.8","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2000","2000","1000 ha","39046","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2001","2001","1000 ha","38869.6","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2002","2002","1000 ha","38693.2","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2003","2003","1000 ha","38516.8","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2004","2004","1000 ha","38340.4","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2005","2005","1000 ha","38164","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2006","2006","1000 ha","37964","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2007","2007","1000 ha","37764","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2008","2008","1000 ha","37564","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2009","2009","1000 ha","37364","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2010","2010","1000 ha","37164","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2011","2011","1000 ha","36964","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2012","2012","1000 ha","36764","Fm","Manual Estimation" +"RL","Land Use","19","Bolivia (Plurinational State of)","5110","Area","6714","Primary Forest","2013","2013","1000 ha","36564","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","1992","1992","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","1993","1993","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","1994","1994","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","1995","1995","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","1996","1996","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","1997","1997","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","1998","1998","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","1999","1999","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2000","2000","1000 ha","2","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2001","2001","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2002","2002","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2003","2003","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2004","2004","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2005","2005","1000 ha","2","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2006","2006","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2007","2007","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2008","2008","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2009","2009","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2010","2010","1000 ha","2","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2011","2011","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2012","2012","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","80","Bosnia and Herzegovina","5110","Area","6714","Primary Forest","2013","2013","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","20","Botswana","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","1990","1990","1000 ha","218240","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","1991","1991","1000 ha","217462.6","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","1992","1992","1000 ha","216685.2","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","1993","1993","1000 ha","215907.8","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","1994","1994","1000 ha","215130.4","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","1995","1995","1000 ha","214353","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","1996","1996","1000 ha","213575.6","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","1997","1997","1000 ha","212798.2","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","1998","1998","1000 ha","212020.8","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","1999","1999","1000 ha","211243.4","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2000","2000","1000 ha","210466","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2001","2001","1000 ha","209688.4","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2002","2002","1000 ha","208910.8","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2003","2003","1000 ha","208133.2","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2004","2004","1000 ha","207355.6","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2005","2005","1000 ha","206578","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2006","2006","1000 ha","205800.6","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2007","2007","1000 ha","205023.2","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2008","2008","1000 ha","204245.8","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2009","2009","1000 ha","203468.4","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2010","2010","1000 ha","202691","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2011","2011","1000 ha","202691","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2012","2012","1000 ha","202691","Fm","Manual Estimation" +"RL","Land Use","21","Brazil","5110","Area","6714","Primary Forest","2013","2013","1000 ha","202691","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","239","British Virgin Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","1990","1990","1000 ha","313","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","1991","1991","1000 ha","310.5","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","1992","1992","1000 ha","308","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","1993","1993","1000 ha","305.5","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","1994","1994","1000 ha","303","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","1995","1995","1000 ha","300.5","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","1996","1996","1000 ha","298","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","1997","1997","1000 ha","295.5","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","1998","1998","1000 ha","293","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","1999","1999","1000 ha","290.5","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2000","2000","1000 ha","288","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2001","2001","1000 ha","285.4","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2002","2002","1000 ha","282.8","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2003","2003","1000 ha","280.2","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2004","2004","1000 ha","277.6","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2005","2005","1000 ha","275","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2006","2006","1000 ha","272.6","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2007","2007","1000 ha","270.2","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2008","2008","1000 ha","267.8","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2009","2009","1000 ha","265.4","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2010","2010","1000 ha","263","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2011","2011","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2012","2012","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","26","Brunei Darussalam","5110","Area","6714","Primary Forest","2013","2013","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","1990","1990","1000 ha","157","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","1991","1991","1000 ha","168.3","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","1992","1992","1000 ha","179.6","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","1993","1993","1000 ha","190.9","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","1994","1994","1000 ha","202.2","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","1995","1995","1000 ha","213.5","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","1996","1996","1000 ha","224.8","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","1997","1997","1000 ha","236.1","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","1998","1998","1000 ha","247.4","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","1999","1999","1000 ha","258.7","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2000","2000","1000 ha","270","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2001","2001","1000 ha","276.8","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2002","2002","1000 ha","283.6","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2003","2003","1000 ha","290.4","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2004","2004","1000 ha","297.2","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2005","2005","1000 ha","304","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2006","2006","1000 ha","362.6","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2007","2007","1000 ha","421.2","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2008","2008","1000 ha","479.8","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2009","2009","1000 ha","538.4","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2010","2010","1000 ha","597","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2011","2011","1000 ha","597","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2012","2012","1000 ha","597","Fm","Manual Estimation" +"RL","Land Use","27","Bulgaria","5110","Area","6714","Primary Forest","2013","2013","1000 ha","597","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","233","Burkina Faso","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","1990","1990","1000 ha","40","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","1991","1991","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","1992","1992","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","1993","1993","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","1994","1994","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","1995","1995","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","1996","1996","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","1997","1997","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","1998","1998","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","1999","1999","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2000","2000","1000 ha","40","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2001","2001","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2002","2002","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2003","2003","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2004","2004","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2005","2005","1000 ha","40","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2006","2006","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2007","2007","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2008","2008","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2009","2009","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2010","2010","1000 ha","40","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2011","2011","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2012","2012","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","29","Burundi","5110","Area","6714","Primary Forest","2013","2013","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","35","Cabo Verde","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","766","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","735","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","704","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","673","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","642","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","611","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","580","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","549","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","518","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","487","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","456","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","429.2","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","402.4","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","375.6","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","348.8","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","322","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","322","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","322","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","322","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","322","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","322","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","322","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","322","Fm","Manual Estimation" +"RL","Land Use","115","Cambodia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","322","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","32","Cameroon","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","1990","1990","1000 ha","206638","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","1991","1991","1000 ha","206610.1","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","1992","1992","1000 ha","206582.2","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","1993","1993","1000 ha","206554.3","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","1994","1994","1000 ha","206526.4","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","1995","1995","1000 ha","206498.5","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","1996","1996","1000 ha","206470.6","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","1997","1997","1000 ha","206442.7","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","1998","1998","1000 ha","206414.8","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","1999","1999","1000 ha","206386.9","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2000","2000","1000 ha","206359","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2001","2001","1000 ha","206332.2","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2002","2002","1000 ha","206305.4","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2003","2003","1000 ha","206278.6","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2004","2004","1000 ha","206251.8","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2005","2005","1000 ha","206225","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2006","2006","1000 ha","206192.4","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2007","2007","1000 ha","206159.8","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2008","2008","1000 ha","206127.2","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2009","2009","1000 ha","206094.6","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2010","2010","1000 ha","206062","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2011","2011","1000 ha","206034.4","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2012","2012","1000 ha","206006.8","Fm","Manual Estimation" +"RL","Land Use","33","Canada","5110","Area","6714","Primary Forest","2013","2013","1000 ha","205979.2","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","36","Cayman Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","1990","1990","1000 ha","3900","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","1991","1991","1000 ha","3823.5","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","1992","1992","1000 ha","3747","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","1993","1993","1000 ha","3670.5","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","1994","1994","1000 ha","3594","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","1995","1995","1000 ha","3517.5","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","1996","1996","1000 ha","3441","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","1997","1997","1000 ha","3364.5","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","1998","1998","1000 ha","3288","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","1999","1999","1000 ha","3211.5","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2000","2000","1000 ha","3135","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2001","2001","1000 ha","3058.4","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2002","2002","1000 ha","2981.8","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2003","2003","1000 ha","2905.2","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2004","2004","1000 ha","2828.6","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2005","2005","1000 ha","2752","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2006","2006","1000 ha","2675.6","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2007","2007","1000 ha","2599.2","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2008","2008","1000 ha","2522.8","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2009","2009","1000 ha","2446.4","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2010","2010","1000 ha","2370","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2011","2011","1000 ha","2293.6","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2012","2012","1000 ha","2217.2","Fm","Manual Estimation" +"RL","Land Use","37","Central African Republic","5110","Area","6714","Primary Forest","2013","2013","1000 ha","2140.8","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","39","Chad","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","259","Channel Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","1990","1990","1000 ha","4631","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","1991","1991","1000 ha","4621.5","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","1992","1992","1000 ha","4612","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","1993","1993","1000 ha","4602.5","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","1994","1994","1000 ha","4593","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","1995","1995","1000 ha","4583.5","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","1996","1996","1000 ha","4574","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","1997","1997","1000 ha","4564.5","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","1998","1998","1000 ha","4555","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","1999","1999","1000 ha","4545.5","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2000","2000","1000 ha","4536","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2001","2001","1000 ha","4526.4","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2002","2002","1000 ha","4516.8","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2003","2003","1000 ha","4507.2","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2004","2004","1000 ha","4497.6","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2005","2005","1000 ha","4488","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2006","2006","1000 ha","4478.2","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2007","2007","1000 ha","4468.4","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2008","2008","1000 ha","4458.6","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2009","2009","1000 ha","4448.8","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2010","2010","1000 ha","4439","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2011","2011","1000 ha","4622.2","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2012","2012","1000 ha","4805.4","Fm","Manual Estimation" +"RL","Land Use","40","Chile","5110","Area","6714","Primary Forest","2013","2013","1000 ha","4988.6","Fm","Manual Estimation" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","1990","1990","1000 ha","11646.2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","1991","1991","1000 ha","11644.82","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","1992","1992","1000 ha","11643.44","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","1993","1993","1000 ha","11642.06","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","1994","1994","1000 ha","11640.68","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","1995","1995","1000 ha","11639.3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","1996","1996","1000 ha","11637.92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","1997","1997","1000 ha","11636.54","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","1998","1998","1000 ha","11635.16","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","1999","1999","1000 ha","11633.78","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2000","2000","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2001","2001","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2002","2002","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2003","2003","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2004","2004","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2005","2005","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2006","2006","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2007","2007","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2008","2008","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2009","2009","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2010","2010","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2011","2011","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2012","2012","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","351","China","5110","Area","6714","Primary Forest","2013","2013","1000 ha","11632.4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","1990","1990","1000 ha","11646.2","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","1991","1991","1000 ha","11644.82","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","1992","1992","1000 ha","11643.44","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","1993","1993","1000 ha","11642.06","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","1994","1994","1000 ha","11640.68","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","1995","1995","1000 ha","11639.3","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","1996","1996","1000 ha","11637.92","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","1997","1997","1000 ha","11636.54","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","1998","1998","1000 ha","11635.16","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","1999","1999","1000 ha","11633.78","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2000","2000","1000 ha","11632.4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2001","2001","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2002","2002","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2003","2003","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2004","2004","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2005","2005","1000 ha","11632.4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2006","2006","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2007","2007","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2008","2008","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2009","2009","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2010","2010","1000 ha","11632.4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2011","2011","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2012","2012","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","41","China, mainland","5110","Area","6714","Primary Forest","2013","2013","1000 ha","11632.4","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","44","Colombia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","1990","1990","1000 ha","8","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","1991","1991","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","1992","1992","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","1993","1993","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","1994","1994","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","1995","1995","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","1996","1996","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","1997","1997","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","1998","1998","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","1999","1999","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2000","2000","1000 ha","8","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2001","2001","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2002","2002","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2003","2003","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2004","2004","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2005","2005","1000 ha","8","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2006","2006","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2007","2007","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2008","2008","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2009","2009","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2010","2010","1000 ha","8","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2011","2011","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2012","2012","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","45","Comoros","5110","Area","6714","Primary Forest","2013","2013","1000 ha","8","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","1990","1990","1000 ha","7548","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","1991","1991","1000 ha","7542.4","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","1992","1992","1000 ha","7536.8","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","1993","1993","1000 ha","7531.2","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","1994","1994","1000 ha","7525.6","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","1995","1995","1000 ha","7520","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","1996","1996","1000 ha","7514.4","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","1997","1997","1000 ha","7508.8","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","1998","1998","1000 ha","7503.2","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","1999","1999","1000 ha","7497.6","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2000","2000","1000 ha","7492","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2001","2001","1000 ha","7486.4","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2002","2002","1000 ha","7480.8","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2003","2003","1000 ha","7475.2","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2004","2004","1000 ha","7469.6","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2005","2005","1000 ha","7464","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2006","2006","1000 ha","7458.4","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2007","2007","1000 ha","7452.8","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2008","2008","1000 ha","7447.2","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2009","2009","1000 ha","7441.6","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2010","2010","1000 ha","7436","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2011","2011","1000 ha","7430.2","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2012","2012","1000 ha","7424.4","Fm","Manual Estimation" +"RL","Land Use","46","Congo","5110","Area","6714","Primary Forest","2013","2013","1000 ha","7418.6","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","47","Cook Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1313.03","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1243.952","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1174.874","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1105.796","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1036.718","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","1995","1995","1000 ha","967.64","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","1996","1996","1000 ha","898.562","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","1997","1997","1000 ha","829.484","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","1998","1998","1000 ha","760.406","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","1999","1999","1000 ha","691.328","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2000","2000","1000 ha","622.25","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2001","2001","1000 ha","748.798","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2002","2002","1000 ha","875.346","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1001.894","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1128.442","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1254.99","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1267.258","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1279.526","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1291.794","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1304.062","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1316.33","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1415.944","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1515.558","Fm","Manual Estimation" +"RL","Land Use","48","Costa Rica","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1615.172","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","1990","1990","1000 ha","625","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","1991","1991","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","1992","1992","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","1993","1993","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","1994","1994","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","1995","1995","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","1996","1996","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","1997","1997","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","1998","1998","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","1999","1999","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2000","2000","1000 ha","625","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2001","2001","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2002","2002","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2003","2003","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2004","2004","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2005","2005","1000 ha","625","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2006","2006","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2007","2007","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2008","2008","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2009","2009","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2010","2010","1000 ha","625","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2011","2011","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2012","2012","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","107","Côte d'Ivoire","5110","Area","6714","Primary Forest","2013","2013","1000 ha","625","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","7","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","7","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","7","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","98","Croatia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","49","Cuba","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","1990","1990","1000 ha","13.241","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","1991","1991","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","1992","1992","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","1993","1993","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","1994","1994","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","1995","1995","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","1996","1996","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","1997","1997","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","1998","1998","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","1999","1999","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2000","2000","1000 ha","13.241","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2001","2001","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2002","2002","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2003","2003","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2004","2004","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2005","2005","1000 ha","13.241","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2006","2006","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2007","2007","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2008","2008","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2009","2009","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2010","2010","1000 ha","13.241","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2011","2011","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2012","2012","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","50","Cyprus","5110","Area","6714","Primary Forest","2013","2013","1000 ha","13.241","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","9","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","9","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","9.2","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","9.4","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","9.6","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","9.8","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","10","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","10","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","10","Fm","Manual Estimation" +"RL","Land Use","167","Czechia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","10","Fm","Manual Estimation" +"RL","Land Use","51","Czechoslovakia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","33","Fm","Manual Estimation" +"RL","Land Use","51","Czechoslovakia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","33","Fm","Manual Estimation" +"RL","Land Use","51","Czechoslovakia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","33","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1129","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1111.5","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1094","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1076.5","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1059","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1041.5","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1024","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1006.5","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","1998","1998","1000 ha","989","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","1999","1999","1000 ha","971.5","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2000","2000","1000 ha","954","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2001","2001","1000 ha","936.6","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2002","2002","1000 ha","919.2","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2003","2003","1000 ha","901.8","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2004","2004","1000 ha","884.4","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2005","2005","1000 ha","867","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2006","2006","1000 ha","849.6","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2007","2007","1000 ha","832.2","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2008","2008","1000 ha","814.8","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2009","2009","1000 ha","797.4","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2010","2010","1000 ha","780","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2011","2011","1000 ha","764.2","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2012","2012","1000 ha","748.4","Fm","Manual Estimation" +"RL","Land Use","116","Democratic People's Republic of Korea","5110","Area","6714","Primary Forest","2013","2013","1000 ha","732.6","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","1990","1990","1000 ha","105189","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","1991","1991","1000 ha","105115.6","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","1992","1992","1000 ha","105042.2","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","1993","1993","1000 ha","104968.8","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","1994","1994","1000 ha","104895.4","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","1995","1995","1000 ha","104822","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","1996","1996","1000 ha","104748.6","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","1997","1997","1000 ha","104675.2","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","1998","1998","1000 ha","104601.8","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","1999","1999","1000 ha","104528.4","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2000","2000","1000 ha","104455","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2001","2001","1000 ha","104381.6","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2002","2002","1000 ha","104308.2","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2003","2003","1000 ha","104234.8","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2004","2004","1000 ha","104161.4","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2005","2005","1000 ha","104088","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2006","2006","1000 ha","103947.8","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2007","2007","1000 ha","103807.6","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2008","2008","1000 ha","103667.4","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2009","2009","1000 ha","103527.2","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2010","2010","1000 ha","103387","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2011","2011","1000 ha","103246.8","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2012","2012","1000 ha","103106.6","Fm","Manual Estimation" +"RL","Land Use","250","Democratic Republic of the Congo","5110","Area","6714","Primary Forest","2013","2013","1000 ha","102966.4","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","1990","1990","1000 ha","30","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","1991","1991","1000 ha","30.2","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","1992","1992","1000 ha","30.4","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","1993","1993","1000 ha","30.6","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","1994","1994","1000 ha","30.8","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","1995","1995","1000 ha","31","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","1996","1996","1000 ha","31.2","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","1997","1997","1000 ha","31.4","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","1998","1998","1000 ha","31.6","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","1999","1999","1000 ha","31.8","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2000","2000","1000 ha","32","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2001","2001","1000 ha","31.8","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2002","2002","1000 ha","31.6","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2003","2003","1000 ha","31.4","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2004","2004","1000 ha","31.2","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2005","2005","1000 ha","31","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2006","2006","1000 ha","31.2","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2007","2007","1000 ha","31.4","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2008","2008","1000 ha","31.6","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2009","2009","1000 ha","31.8","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2010","2010","1000 ha","32","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2011","2011","1000 ha","32.4","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2012","2012","1000 ha","32.8","Fm","Manual Estimation" +"RL","Land Use","54","Denmark","5110","Area","6714","Primary Forest","2013","2013","1000 ha","33.2","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","72","Djibouti","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","1990","1990","1000 ha","28.42","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","1991","1991","1000 ha","28.335","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","1992","1992","1000 ha","28.25","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","1993","1993","1000 ha","28.165","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","1994","1994","1000 ha","28.08","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","1995","1995","1000 ha","27.995","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","1996","1996","1000 ha","27.91","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","1997","1997","1000 ha","27.825","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","1998","1998","1000 ha","27.74","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","1999","1999","1000 ha","27.655","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2000","2000","1000 ha","27.57","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2001","2001","1000 ha","27.484","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2002","2002","1000 ha","27.398","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2003","2003","1000 ha","27.312","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2004","2004","1000 ha","27.226","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2005","2005","1000 ha","27.14","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2006","2006","1000 ha","27.056","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2007","2007","1000 ha","26.972","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2008","2008","1000 ha","26.888","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2009","2009","1000 ha","26.804","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2010","2010","1000 ha","26.72","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2011","2011","1000 ha","26.636","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2012","2012","1000 ha","26.552","Fm","Manual Estimation" +"RL","Land Use","55","Dominica","5110","Area","6714","Primary Forest","2013","2013","1000 ha","26.468","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","56","Dominican Republic","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","1990","1990","1000 ha","14586.404","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","1991","1991","1000 ha","14489.9274","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","1992","1992","1000 ha","14393.4508","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","1993","1993","1000 ha","14296.9742","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","1994","1994","1000 ha","14200.4976","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","1995","1995","1000 ha","14104.021","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","1996","1996","1000 ha","14007.5444","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","1997","1997","1000 ha","13911.0678","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","1998","1998","1000 ha","13814.5912","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","1999","1999","1000 ha","13718.1146","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2000","2000","1000 ha","13621.638","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2001","2001","1000 ha","13544.6822","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2002","2002","1000 ha","13467.7264","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2003","2003","1000 ha","13390.7706","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2004","2004","1000 ha","13313.8148","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2005","2005","1000 ha","13236.859","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2006","2006","1000 ha","13159.903","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2007","2007","1000 ha","13082.947","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2008","2008","1000 ha","13005.991","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2009","2009","1000 ha","12929.035","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2010","2010","1000 ha","12852.079","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2011","2011","1000 ha","12775.123","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2012","2012","1000 ha","12698.167","Fm","Manual Estimation" +"RL","Land Use","58","Ecuador","5110","Area","6714","Primary Forest","2013","2013","1000 ha","12621.211","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","59","Egypt","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","1990","1990","1000 ha","4.8","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","1991","1991","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","1992","1992","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","1993","1993","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","1994","1994","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","1995","1995","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","1996","1996","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","1997","1997","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","1998","1998","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","1999","1999","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2000","2000","1000 ha","4.8","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2001","2001","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2002","2002","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2003","2003","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2004","2004","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2005","2005","1000 ha","4.8","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2006","2006","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2007","2007","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2008","2008","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2009","2009","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2010","2010","1000 ha","4.8","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2011","2011","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2012","2012","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","60","El Salvador","5110","Area","6714","Primary Forest","2013","2013","1000 ha","4.8","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","61","Equatorial Guinea","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","178","Eritrea","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","41.6","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","42.4","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","43.2","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","44","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","44.8","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","45.6","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","46.4","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","47.2","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","48","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","48.8","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","49.6","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","50.4","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","51.2","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","52","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","52.6","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","53.2","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","53.8","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","54.4","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","55","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","55.6","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","56.2","Fm","Manual Estimation" +"RL","Land Use","63","Estonia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","56.8","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","209","Eswatini","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","238","Ethiopia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","62","Ethiopia PDR","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","62","Ethiopia PDR","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","62","Ethiopia PDR","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","65","Falkland Islands (Malvinas)","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","64","Faroe Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","1990","1990","1000 ha","489.513","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","1991","1991","1000 ha","485.0979","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","1992","1992","1000 ha","480.6828","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","1993","1993","1000 ha","476.2677","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","1994","1994","1000 ha","471.8526","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","1995","1995","1000 ha","467.4375","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","1996","1996","1000 ha","463.0224","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","1997","1997","1000 ha","458.6073","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","1998","1998","1000 ha","454.1922","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","1999","1999","1000 ha","449.7771","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2000","2000","1000 ha","445.362","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2001","2001","1000 ha","445.97","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2002","2002","1000 ha","446.578","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2003","2003","1000 ha","447.186","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2004","2004","1000 ha","447.794","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2005","2005","1000 ha","448.402","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2006","2006","1000 ha","442.7554","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2007","2007","1000 ha","437.1088","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2008","2008","1000 ha","431.4622","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2009","2009","1000 ha","425.8156","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2010","2010","1000 ha","420.169","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2011","2011","1000 ha","418.4176","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2012","2012","1000 ha","416.6662","Fm","Manual Estimation" +"RL","Land Use","66","Fiji","5110","Area","6714","Primary Forest","2013","2013","1000 ha","414.9148","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","1990","1990","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","1991","1991","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","1992","1992","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","1993","1993","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","1994","1994","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","1995","1995","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","1996","1996","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","1997","1997","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","1998","1998","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","1999","1999","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2000","2000","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2001","2001","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2002","2002","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2003","2003","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2004","2004","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2005","2005","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2006","2006","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2007","2007","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2008","2008","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2009","2009","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2010","2010","1000 ha","230.207","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2011","2011","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2012","2012","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","67","Finland","5110","Area","6714","Primary Forest","2013","2013","1000 ha","230.207","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","68","France","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","1990","1990","1000 ha","8147.3","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","1991","1991","1000 ha","8135.1","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","1992","1992","1000 ha","8122.9","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","1993","1993","1000 ha","8110.7","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","1994","1994","1000 ha","8098.5","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","1995","1995","1000 ha","8086.3","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","1996","1996","1000 ha","8074.1","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","1997","1997","1000 ha","8061.9","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","1998","1998","1000 ha","8049.7","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","1999","1999","1000 ha","8037.5","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2000","2000","1000 ha","8025.3","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2001","2001","1000 ha","8013.1","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2002","2002","1000 ha","8000.9","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2003","2003","1000 ha","7988.7","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2004","2004","1000 ha","7976.5","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2005","2005","1000 ha","7964.3","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2006","2006","1000 ha","7937.7","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2007","2007","1000 ha","7911.1","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2008","2008","1000 ha","7884.5","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2009","2009","1000 ha","7857.9","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2010","2010","1000 ha","7831.3","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2011","2011","1000 ha","7827.6","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2012","2012","1000 ha","7823.9","Fm","Manual Estimation" +"RL","Land Use","69","French Guiana","5110","Area","6714","Primary Forest","2013","2013","1000 ha","7820.2","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","40","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","40","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","70","French Polynesia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","1990","1990","1000 ha","20934","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","1991","1991","1000 ha","20604","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","1992","1992","1000 ha","20274","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","1993","1993","1000 ha","19944","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","1994","1994","1000 ha","19614","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","1995","1995","1000 ha","19284","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","1996","1996","1000 ha","18954","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","1997","1997","1000 ha","18624","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","1998","1998","1000 ha","18294","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","1999","1999","1000 ha","17964","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2000","2000","1000 ha","17634","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2001","2001","1000 ha","17304","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2002","2002","1000 ha","16974","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2003","2003","1000 ha","16644","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2004","2004","1000 ha","16314","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2005","2005","1000 ha","15984","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2006","2006","1000 ha","15654","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2007","2007","1000 ha","15324","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2008","2008","1000 ha","14994","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2009","2009","1000 ha","14664","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2010","2010","1000 ha","14334","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2011","2011","1000 ha","14028","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2012","2012","1000 ha","13722","Fm","Manual Estimation" +"RL","Land Use","74","Gabon","5110","Area","6714","Primary Forest","2013","2013","1000 ha","13416","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1.2","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1.2","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1.2","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1.2","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1.2","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1.2","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1.2","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1.2","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1.2","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1.2","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1.2","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1.16","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1.12","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1.08","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1.04","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0.96","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0.92","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0.88","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0.84","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0.8","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0.8","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0.8","Fm","Manual Estimation" +"RL","Land Use","75","Gambia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0.8","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","500","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","500","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","500","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","73","Georgia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","500","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","79","Germany","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","1990","1990","1000 ha","395","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","1991","1991","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","1992","1992","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","1993","1993","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","1994","1994","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","1995","1995","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","1996","1996","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","1997","1997","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","1998","1998","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","1999","1999","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2000","2000","1000 ha","395","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2001","2001","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2002","2002","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2003","2003","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2004","2004","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2005","2005","1000 ha","395","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2006","2006","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2007","2007","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2008","2008","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2009","2009","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2010","2010","1000 ha","395","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2011","2011","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2012","2012","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","81","Ghana","5110","Area","6714","Primary Forest","2013","2013","1000 ha","395","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","82","Gibraltar","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","84","Greece","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","85","Greenland","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","1990","1990","1000 ha","2.32","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","1991","1991","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","1992","1992","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","1993","1993","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","1994","1994","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","1995","1995","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","1996","1996","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","1997","1997","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","1998","1998","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","1999","1999","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2000","2000","1000 ha","2.32","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2001","2001","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2002","2002","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2003","2003","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2004","2004","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2005","2005","1000 ha","2.32","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2006","2006","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2007","2007","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2008","2008","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2009","2009","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2010","2010","1000 ha","2.32","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2011","2011","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2012","2012","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","86","Grenada","5110","Area","6714","Primary Forest","2013","2013","1000 ha","2.32","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","1990","1990","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","1991","1991","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","1992","1992","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","1993","1993","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","1994","1994","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","1995","1995","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","1996","1996","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","1997","1997","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","1998","1998","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","1999","1999","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2000","2000","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2001","2001","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2002","2002","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2003","2003","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2004","2004","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2005","2005","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2006","2006","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2007","2007","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2008","2008","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2009","2009","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2010","2010","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2011","2011","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2012","2012","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","87","Guadeloupe","5110","Area","6714","Primary Forest","2013","2013","1000 ha","35.99","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","88","Guam","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","1990","1990","1000 ha","2951","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","1991","1991","1000 ha","2885.1","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","1992","1992","1000 ha","2819.2","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","1993","1993","1000 ha","2753.3","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","1994","1994","1000 ha","2687.4","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","1995","1995","1000 ha","2621.5","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","1996","1996","1000 ha","2555.6","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","1997","1997","1000 ha","2489.7","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","1998","1998","1000 ha","2423.8","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","1999","1999","1000 ha","2357.9","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2000","2000","1000 ha","2292","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2001","2001","1000 ha","2224.2","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2002","2002","1000 ha","2156.4","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2003","2003","1000 ha","2088.6","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2004","2004","1000 ha","2020.8","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1953","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1887.8","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1822.6","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1757.4","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1692.2","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1627","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1568.4","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1509.8","Fm","Manual Estimation" +"RL","Land Use","89","Guatemala","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1451.2","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","1990","1990","1000 ha","63","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","1991","1991","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","1992","1992","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","1993","1993","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","1994","1994","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","1995","1995","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","1996","1996","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","1997","1997","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","1998","1998","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","1999","1999","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2000","2000","1000 ha","63","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2001","2001","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2002","2002","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2003","2003","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2004","2004","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2005","2005","1000 ha","63","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2006","2006","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2007","2007","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2008","2008","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2009","2009","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2010","2010","1000 ha","63","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2011","2011","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2012","2012","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","90","Guinea","5110","Area","6714","Primary Forest","2013","2013","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","175","Guinea-Bissau","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","1990","1990","1000 ha","9477","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","1991","1991","1000 ha","9357","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","1992","1992","1000 ha","9237","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","1993","1993","1000 ha","9117","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","1994","1994","1000 ha","8997","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","1995","1995","1000 ha","8877","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","1996","1996","1000 ha","8757","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","1997","1997","1000 ha","8637","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","1998","1998","1000 ha","8517","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","1999","1999","1000 ha","8397","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2000","2000","1000 ha","8277","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2001","2001","1000 ha","8157","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2002","2002","1000 ha","8037","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2003","2003","1000 ha","7917","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2004","2004","1000 ha","7797","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2005","2005","1000 ha","7677","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2006","2006","1000 ha","7557","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2007","2007","1000 ha","7437","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2008","2008","1000 ha","7317","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2009","2009","1000 ha","7197","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2010","2010","1000 ha","7077","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2011","2011","1000 ha","6957","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2012","2012","1000 ha","6837","Fm","Manual Estimation" +"RL","Land Use","91","Guyana","5110","Area","6714","Primary Forest","2013","2013","1000 ha","6717","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","93","Haiti","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","1990","1990","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","1991","1991","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","1992","1992","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","1993","1993","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","1994","1994","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","1995","1995","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","1996","1996","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","1997","1997","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","1998","1998","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","1999","1999","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2000","2000","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2001","2001","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2002","2002","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2003","2003","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2004","2004","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2005","2005","1000 ha","457","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2006","2006","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2007","2007","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2008","2008","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2009","2009","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2010","2010","1000 ha","457","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2011","2011","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2012","2012","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","95","Honduras","5110","Area","6714","Primary Forest","2013","2013","1000 ha","457","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","97","Hungary","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","99","Iceland","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","1990","1990","1000 ha","15701","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","1991","1991","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","1992","1992","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","1993","1993","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","1994","1994","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","1995","1995","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","1996","1996","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","1997","1997","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","1998","1998","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","1999","1999","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2000","2000","1000 ha","15701","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2001","2001","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2002","2002","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2003","2003","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2004","2004","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2005","2005","1000 ha","15701","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2006","2006","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2007","2007","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2008","2008","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2009","2009","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2010","2010","1000 ha","15701","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2011","2011","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2012","2012","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","100","India","5110","Area","6714","Primary Forest","2013","2013","1000 ha","15701","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","49453","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","49453","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","49453","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","49453","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","49453","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","49453","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","49453","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","49453","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","49453","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","49453","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","49453","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","49224.4","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","48995.8","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","48767.2","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","48538.6","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","48310","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","48081.4","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","47852.8","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","47624.2","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","47395.6","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","47167","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","46938.4","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","46709.8","Fm","Manual Estimation" +"RL","Land Use","101","Indonesia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","46481.2","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","1990","1990","1000 ha","200","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","1991","1991","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","1992","1992","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","1993","1993","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","1994","1994","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","1995","1995","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","1996","1996","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","1997","1997","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","1998","1998","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","1999","1999","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2000","2000","1000 ha","200","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2001","2001","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2002","2002","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2003","2003","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2004","2004","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2005","2005","1000 ha","200","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2006","2006","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2007","2007","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2008","2008","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2009","2009","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2010","2010","1000 ha","200","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2011","2011","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2012","2012","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","102","Iran (Islamic Republic of)","5110","Area","6714","Primary Forest","2013","2013","1000 ha","200","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","103","Iraq","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","104","Ireland","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","264","Isle of Man","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","105","Israel","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","1990","1990","1000 ha","93","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","1991","1991","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","1992","1992","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","1993","1993","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","1994","1994","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","1995","1995","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","1996","1996","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","1997","1997","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","1998","1998","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","1999","1999","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2000","2000","1000 ha","93","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2001","2001","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2002","2002","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2003","2003","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2004","2004","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2005","2005","1000 ha","93","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2006","2006","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2007","2007","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2008","2008","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2009","2009","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2010","2010","1000 ha","93","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2011","2011","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2012","2012","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","106","Italy","5110","Area","6714","Primary Forest","2013","2013","1000 ha","93","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","1990","1990","1000 ha","88.9","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","1991","1991","1000 ha","88.84","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","1992","1992","1000 ha","88.78","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","1993","1993","1000 ha","88.72","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","1994","1994","1000 ha","88.66","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","1995","1995","1000 ha","88.6","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","1996","1996","1000 ha","88.54","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","1997","1997","1000 ha","88.48","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","1998","1998","1000 ha","88.42","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","1999","1999","1000 ha","88.36","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2000","2000","1000 ha","88.3","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2001","2001","1000 ha","88.24","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2002","2002","1000 ha","88.18","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2003","2003","1000 ha","88.12","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2004","2004","1000 ha","88.06","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2005","2005","1000 ha","88","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2006","2006","1000 ha","87.94","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2007","2007","1000 ha","87.88","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2008","2008","1000 ha","87.82","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2009","2009","1000 ha","87.76","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2010","2010","1000 ha","87.7","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2011","2011","1000 ha","87.66","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2012","2012","1000 ha","87.62","Fm","Manual Estimation" +"RL","Land Use","109","Jamaica","5110","Area","6714","Primary Forest","2013","2013","1000 ha","87.58","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","1990","1990","1000 ha","3764","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","1991","1991","1000 ha","3793","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","3822","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","3851","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","3880","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","3909","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","3938","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","3967","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","3996","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","4025","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","4054","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","4133","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","4212","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","4291","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","4370","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","4449","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","4513.2","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","4577.4","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","4641.6","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","4705.8","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","4770","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","4797","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","4824","Fm","Manual Estimation" +"RL","Land Use","110","Japan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","4851","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","112","Jordan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","108","Kazakhstan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","114","Kenya","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","83","Kiribati","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","118","Kuwait","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","793.54","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","793.61","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","793.68","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","793.75","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","793.82","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","793.89","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","793.96","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","794.03","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","794.1","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","795.58","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","797.06","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","798.54","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","800.02","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","801.5","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","767.2","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","732.9","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","698.6","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","664.3","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","630","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","630","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","630","Fm","Manual Estimation" +"RL","Land Use","113","Kyrgyzstan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","630","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1592.9","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1577.488","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1562.076","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1546.664","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1531.252","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1515.84","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1500.428","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1485.016","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1469.604","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1454.192","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1438.78","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1422.728","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1406.676","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1390.624","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1374.572","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1358.52","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1342.042","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1325.564","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1309.086","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1292.608","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1276.13","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1259.65","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1243.17","Fm","Manual Estimation" +"RL","Land Use","120","Lao People's Democratic Republic","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1226.69","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","17","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","17","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","16.8","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","16.6","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","16.4","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","16.2","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","16","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","15.8","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","15.6","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","15.4","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","15.2","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","15","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","15.2","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","15.4","Fm","Manual Estimation" +"RL","Land Use","119","Latvia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","15.6","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","121","Lebanon","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","122","Lesotho","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","175","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","175","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","175","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","175","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","123","Liberia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","175","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","124","Libya","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1.5","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1.5","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1.5","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1.5","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","125","Liechtenstein","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1.5","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","1992","1992","1000 ha","20.2","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","1993","1993","1000 ha","20.3","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","1994","1994","1000 ha","20.4","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","1995","1995","1000 ha","20.5","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","1996","1996","1000 ha","20.6","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","1997","1997","1000 ha","20.7","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","1998","1998","1000 ha","20.8","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","1999","1999","1000 ha","20.9","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2000","2000","1000 ha","21","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2001","2001","1000 ha","22","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2002","2002","1000 ha","23","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2003","2003","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2004","2004","1000 ha","25","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2005","2005","1000 ha","26","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2006","2006","1000 ha","26","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2007","2007","1000 ha","26","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2008","2008","1000 ha","26","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2009","2009","1000 ha","26","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2010","2010","1000 ha","26","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2011","2011","1000 ha","26","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2012","2012","1000 ha","26","Fm","Manual Estimation" +"RL","Land Use","126","Lithuania","5110","Area","6714","Primary Forest","2013","2013","1000 ha","26","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","256","Luxembourg","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","1990","1990","1000 ha","3367","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","1991","1991","1000 ha","3348.2","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","1992","1992","1000 ha","3329.4","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","1993","1993","1000 ha","3310.6","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","1994","1994","1000 ha","3291.8","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","1995","1995","1000 ha","3273","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","1996","1996","1000 ha","3254.2","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","1997","1997","1000 ha","3235.4","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","1998","1998","1000 ha","3216.6","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","1999","1999","1000 ha","3197.8","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2000","2000","1000 ha","3179","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2001","2001","1000 ha","3170.6","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2002","2002","1000 ha","3162.2","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2003","2003","1000 ha","3153.8","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2004","2004","1000 ha","3145.4","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2005","2005","1000 ha","3137","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2006","2006","1000 ha","3116.8","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2007","2007","1000 ha","3096.6","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2008","2008","1000 ha","3076.4","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2009","2009","1000 ha","3056.2","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2010","2010","1000 ha","3036","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2011","2011","1000 ha","3027.4","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2012","2012","1000 ha","3018.8","Fm","Manual Estimation" +"RL","Land Use","129","Madagascar","5110","Area","6714","Primary Forest","2013","2013","1000 ha","3010.2","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1727","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1687.3","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1647.6","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1607.9","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1568.2","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1528.5","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1488.8","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1449.1","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1409.4","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1369.7","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1330","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1290.4","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1250.8","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1211.2","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1171.6","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1132","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1092.4","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1052.8","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1013.2","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2009","2009","1000 ha","973.6","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2010","2010","1000 ha","934","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2011","2011","1000 ha","916.2","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2012","2012","1000 ha","898.4","Fm","Manual Estimation" +"RL","Land Use","130","Malawi","5110","Area","6714","Primary Forest","2013","2013","1000 ha","880.6","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","3820","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","3841","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","3862","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","3883","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","3904","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","3925","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","3946","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","3967","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","3988","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","4009","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","4030","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","4210","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","4390","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","4570","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","4750","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","4930","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","4917.4","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","4904.8","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","4892.2","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","4879.6","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","4867","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","4901.8","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","4936.6","Fm","Manual Estimation" +"RL","Land Use","131","Malaysia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","4971.4","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","132","Maldives","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","133","Mali","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","134","Malta","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","8.186","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","8.186","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","8.186","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","127","Marshall Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","8.186","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","135","Martinique","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","136","Mauritania","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","137","Mauritius","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1.45","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1.45","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1.45","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1.45","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","270","Mayotte","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1.45","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","1990","1990","1000 ha","39443","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","1991","1991","1000 ha","39029","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","1992","1992","1000 ha","38615","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","1993","1993","1000 ha","38201","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","1994","1994","1000 ha","37787","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","1995","1995","1000 ha","37373","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","1996","1996","1000 ha","36959","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","1997","1997","1000 ha","36545","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","1998","1998","1000 ha","36131","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","1999","1999","1000 ha","35717","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2000","2000","1000 ha","35303","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2001","2001","1000 ha","35007.6","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2002","2002","1000 ha","34712.2","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2003","2003","1000 ha","34416.8","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2004","2004","1000 ha","34121.4","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2005","2005","1000 ha","33826","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2006","2006","1000 ha","33694.4","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2007","2007","1000 ha","33562.8","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2008","2008","1000 ha","33431.2","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2009","2009","1000 ha","33299.6","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2010","2010","1000 ha","33168","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2011","2011","1000 ha","33145.6","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2012","2012","1000 ha","33123.2","Fm","Manual Estimation" +"RL","Land Use","138","Mexico","5110","Area","6714","Primary Forest","2013","2013","1000 ha","33100.8","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","1991","1991","1000 ha","40.0146","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","1992","1992","1000 ha","40.4542","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","1993","1993","1000 ha","40.8938","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","1994","1994","1000 ha","41.3334","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","1995","1995","1000 ha","41.773","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","1996","1996","1000 ha","42.2126","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","1997","1997","1000 ha","42.6522","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","1998","1998","1000 ha","43.0918","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","1999","1999","1000 ha","43.5314","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2000","2000","1000 ha","43.971","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2001","2001","1000 ha","44.4106","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2002","2002","1000 ha","44.8502","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2003","2003","1000 ha","45.2898","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2004","2004","1000 ha","45.7294","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2005","2005","1000 ha","46.169","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2006","2006","1000 ha","46.6086","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2007","2007","1000 ha","47.0482","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2008","2008","1000 ha","47.4878","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2009","2009","1000 ha","47.9274","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2010","2010","1000 ha","48.367","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2011","2011","1000 ha","48.367","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2012","2012","1000 ha","48.367","Fm","Manual Estimation" +"RL","Land Use","145","Micronesia (Federated States of)","5110","Area","6714","Primary Forest","2013","2013","1000 ha","48.367","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","12534","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","12452.01","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","12370.02","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","12288.03","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","12206.04","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","12124.05","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","12042.06","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","11960.07","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","11878.08","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","11796.09","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","11714.1","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","11632.34","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","11550.58","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","11468.82","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","11387.06","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","11305.3","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","11651.92","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","11998.54","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","12345.16","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","12691.78","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","13038.4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","12941.04","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","12843.68","Fm","Manual Estimation" +"RL","Land Use","141","Mongolia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","12746.32","Fm","Manual Estimation" +"RL","Land Use","273","Montenegro","5110","Area","6714","Primary Forest","2006","2006","1000 ha","109","Fm","Manual Estimation" +"RL","Land Use","273","Montenegro","5110","Area","6714","Primary Forest","2007","2007","1000 ha","109","Fm","Manual Estimation" +"RL","Land Use","273","Montenegro","5110","Area","6714","Primary Forest","2008","2008","1000 ha","109","Fm","Manual Estimation" +"RL","Land Use","273","Montenegro","5110","Area","6714","Primary Forest","2009","2009","1000 ha","109","Fm","Manual Estimation" +"RL","Land Use","273","Montenegro","5110","Area","6714","Primary Forest","2010","2010","1000 ha","109","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","273","Montenegro","5110","Area","6714","Primary Forest","2011","2011","1000 ha","109","Fm","Manual Estimation" +"RL","Land Use","273","Montenegro","5110","Area","6714","Primary Forest","2012","2012","1000 ha","109","Fm","Manual Estimation" +"RL","Land Use","273","Montenegro","5110","Area","6714","Primary Forest","2013","2013","1000 ha","109","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","142","Montserrat","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","143","Morocco","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","144","Mozambique","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","1990","1990","1000 ha","3192","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","1991","1991","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","1992","1992","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","1993","1993","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","1994","1994","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","1995","1995","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","1996","1996","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","1997","1997","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","1998","1998","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","1999","1999","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2000","2000","1000 ha","3192","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2001","2001","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2002","2002","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2003","2003","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2004","2004","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2005","2005","1000 ha","3192","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2006","2006","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2007","2007","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2008","2008","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2009","2009","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2010","2010","1000 ha","3192","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2011","2011","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2012","2012","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","28","Myanmar","5110","Area","6714","Primary Forest","2013","2013","1000 ha","3192","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","147","Namibia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","148","Nauru","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","1990","1990","1000 ha","548","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","1991","1991","1000 ha","548","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","1992","1992","1000 ha","548","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","1993","1993","1000 ha","548","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","1994","1994","1000 ha","548","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","1995","1995","1000 ha","548","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","1996","1996","1000 ha","548","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","1997","1997","1000 ha","548","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","1998","1998","1000 ha","548","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","1999","1999","1000 ha","548","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2000","2000","1000 ha","548","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2001","2001","1000 ha","543.6","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2002","2002","1000 ha","539.2","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2003","2003","1000 ha","534.8","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2004","2004","1000 ha","530.4","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2005","2005","1000 ha","526","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2006","2006","1000 ha","526","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2007","2007","1000 ha","526","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2008","2008","1000 ha","526","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2009","2009","1000 ha","526","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2010","2010","1000 ha","526","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2011","2011","1000 ha","526","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2012","2012","1000 ha","526","Fm","Manual Estimation" +"RL","Land Use","149","Nepal","5110","Area","6714","Primary Forest","2013","2013","1000 ha","526","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","150","Netherlands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","151","Netherlands Antilles (former)","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","431","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","431","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","431","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","431","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","153","New Caledonia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","431","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","1990","1990","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","1991","1991","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","1992","1992","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","1993","1993","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","1994","1994","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","1995","1995","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","1996","1996","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","1997","1997","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","1998","1998","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","1999","1999","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2000","2000","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2001","2001","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2002","2002","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2003","2003","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2004","2004","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2005","2005","1000 ha","2144","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2006","2006","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2007","2007","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2008","2008","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2009","2009","1000 ha","2144","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2010","2010","1000 ha","2144","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2011","2011","1000 ha","2147.2","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2012","2012","1000 ha","2150.4","Fm","Manual Estimation" +"RL","Land Use","156","New Zealand","5110","Area","6714","Primary Forest","2013","2013","1000 ha","2153.6","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1233.988","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1233.988","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1233.9904","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1233.9928","Fm","Manual Estimation" +"RL","Land Use","157","Nicaragua","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1233.9952","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","1990","1990","1000 ha","220","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","1991","1991","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","1992","1992","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","1993","1993","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","1994","1994","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","1995","1995","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","1996","1996","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","1997","1997","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","1998","1998","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","1999","1999","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2000","2000","1000 ha","220","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2001","2001","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2002","2002","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2003","2003","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2004","2004","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2005","2005","1000 ha","220","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2006","2006","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2007","2007","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2008","2008","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2009","2009","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2010","2010","1000 ha","220","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2011","2011","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2012","2012","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","158","Niger","5110","Area","6714","Primary Forest","2013","2013","1000 ha","220","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1556","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1474","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1392","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1310","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1228","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1146","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1064","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","1997","1997","1000 ha","982","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","1998","1998","1000 ha","900","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","1999","1999","1000 ha","818","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2000","2000","1000 ha","736","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2001","2001","1000 ha","654","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2002","2002","1000 ha","572","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2003","2003","1000 ha","490","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2004","2004","1000 ha","408","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2005","2005","1000 ha","326","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2006","2006","1000 ha","271.6","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2007","2007","1000 ha","217.2","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2008","2008","1000 ha","162.8","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2009","2009","1000 ha","108.4","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2010","2010","1000 ha","54","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2011","2011","1000 ha","47.2","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2012","2012","1000 ha","40.4","Fm","Manual Estimation" +"RL","Land Use","159","Nigeria","5110","Area","6714","Primary Forest","2013","2013","1000 ha","33.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","1990","1990","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","1991","1991","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","1992","1992","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","1993","1993","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","1994","1994","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","1995","1995","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","1996","1996","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","1997","1997","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","1998","1998","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","1999","1999","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2000","2000","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2001","2001","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2002","2002","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2003","2003","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2004","2004","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2005","2005","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2006","2006","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2007","2007","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2008","2008","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2009","2009","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2010","2010","1000 ha","5.6","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2011","2011","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2012","2012","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","160","Niue","5110","Area","6714","Primary Forest","2013","2013","1000 ha","5.6","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","161","Norfolk Island","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","154","North Macedonia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","9.9816","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","9.8882","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","9.7948","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","9.7014","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","9.608","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","9.5146","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","9.4212","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","9.3278","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","9.2344","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","9.141","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","9.0476","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","8.9542","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","8.8608","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","8.7674","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","8.674","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","8.5806","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","8.4872","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","8.3938","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","8.3004","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","8.207","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","8.1136","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","8.0202","Fm","Manual Estimation" +"RL","Land Use","163","Northern Mariana Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","7.9268","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","1990","1990","1000 ha","160","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","1991","1991","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","1992","1992","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","1993","1993","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","1994","1994","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","1995","1995","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","1996","1996","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","1997","1997","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","1998","1998","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","1999","1999","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2000","2000","1000 ha","160","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2001","2001","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2002","2002","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2003","2003","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2004","2004","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2005","2005","1000 ha","160","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2006","2006","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2007","2007","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2008","2008","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2009","2009","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2010","2010","1000 ha","160","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2011","2011","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2012","2012","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","162","Norway","5110","Area","6714","Primary Forest","2013","2013","1000 ha","160","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","221","Oman","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","164","Pacific Islands Trust Territory","5110","Area","6714","Primary Forest","1990","1990","1000 ha","57.836","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","165","Pakistan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","180","Palau","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","299","Palestine","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","166","Panama","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","1990","1990","1000 ha","31329","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","1991","1991","1000 ha","30779.8","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","1992","1992","1000 ha","30230.6","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","1993","1993","1000 ha","29681.4","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","1994","1994","1000 ha","29132.2","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","1995","1995","1000 ha","28583","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","1996","1996","1000 ha","28033.8","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","1997","1997","1000 ha","27484.6","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","1998","1998","1000 ha","26935.4","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","1999","1999","1000 ha","26386.2","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2000","2000","1000 ha","25837","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2001","2001","1000 ha","25287.8","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2002","2002","1000 ha","24738.6","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2003","2003","1000 ha","24189.4","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2004","2004","1000 ha","23640.2","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2005","2005","1000 ha","23091","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2006","2006","1000 ha","22541.8","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2007","2007","1000 ha","21992.6","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2008","2008","1000 ha","21443.4","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2009","2009","1000 ha","20894.2","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2010","2010","1000 ha","20345","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2011","2011","1000 ha","19795.8","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2012","2012","1000 ha","19246.6","Fm","Manual Estimation" +"RL","Land Use","168","Papua New Guinea","5110","Area","6714","Primary Forest","2013","2013","1000 ha","18697.4","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1850","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1850","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1850","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1850","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1856.8","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1863.6","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1870.4","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1877.2","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1884","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1884","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1884","Fm","Manual Estimation" +"RL","Land Use","169","Paraguay","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1884","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","1990","1990","1000 ha","69632","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","1991","1991","1000 ha","69437.2","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","1992","1992","1000 ha","69242.4","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","1993","1993","1000 ha","69047.6","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","1994","1994","1000 ha","68852.8","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","1995","1995","1000 ha","68658","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","1996","1996","1000 ha","68463.2","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","1997","1997","1000 ha","68268.4","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","1998","1998","1000 ha","68073.6","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","1999","1999","1000 ha","67878.8","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2000","2000","1000 ha","67684","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2001","2001","1000 ha","67576.8","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2002","2002","1000 ha","67469.6","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2003","2003","1000 ha","67362.4","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2004","2004","1000 ha","67255.2","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2005","2005","1000 ha","67148","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2006","2006","1000 ha","67023.2","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2007","2007","1000 ha","66898.4","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2008","2008","1000 ha","66773.6","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2009","2009","1000 ha","66648.8","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2010","2010","1000 ha","66524","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2011","2011","1000 ha","66377.2","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2012","2012","1000 ha","66230.4","Fm","Manual Estimation" +"RL","Land Use","170","Peru","5110","Area","6714","Primary Forest","2013","2013","1000 ha","66083.6","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","1990","1990","1000 ha","861","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","1991","1991","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","1992","1992","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","1993","1993","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","1994","1994","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","1995","1995","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","1996","1996","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","1997","1997","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","1998","1998","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","1999","1999","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2000","2000","1000 ha","861","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2001","2001","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2002","2002","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2003","2003","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2004","2004","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2005","2005","1000 ha","861","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2006","2006","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2007","2007","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2008","2008","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2009","2009","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2010","2010","1000 ha","861","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2011","2011","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2012","2012","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","171","Philippines","5110","Area","6714","Primary Forest","2013","2013","1000 ha","861","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","172","Pitcairn Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","1990","1990","1000 ha","30","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","1991","1991","1000 ha","32.1","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","1992","1992","1000 ha","34.2","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","1993","1993","1000 ha","36.3","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","1994","1994","1000 ha","38.4","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","1995","1995","1000 ha","40.5","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","1996","1996","1000 ha","42.6","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","1997","1997","1000 ha","44.7","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","1998","1998","1000 ha","46.8","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","1999","1999","1000 ha","48.9","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2000","2000","1000 ha","51","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2001","2001","1000 ha","51.6","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2002","2002","1000 ha","52.2","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2003","2003","1000 ha","52.8","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2004","2004","1000 ha","53.4","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2005","2005","1000 ha","54","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2006","2006","1000 ha","54.4","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2007","2007","1000 ha","54.8","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2008","2008","1000 ha","55.2","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2009","2009","1000 ha","55.6","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2010","2010","1000 ha","56","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2011","2011","1000 ha","56.6","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2012","2012","1000 ha","57.2","Fm","Manual Estimation" +"RL","Land Use","173","Poland","5110","Area","6714","Primary Forest","2013","2013","1000 ha","57.8","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","1990","1990","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","1991","1991","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","1992","1992","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","1993","1993","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","1994","1994","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","1995","1995","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","1996","1996","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","1997","1997","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","1998","1998","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","1999","1999","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2000","2000","1000 ha","24.1","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2001","2001","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2002","2002","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2003","2003","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2004","2004","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2005","2005","1000 ha","24.1","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2006","2006","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2007","2007","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2008","2008","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2009","2009","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2010","2010","1000 ha","24.1","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2011","2011","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2012","2012","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","174","Portugal","5110","Area","6714","Primary Forest","2013","2013","1000 ha","24.1","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","177","Puerto Rico","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","179","Qatar","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","1990","1990","1000 ha","4277","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","1991","1991","1000 ha","4277","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","1992","1992","1000 ha","4277","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","1993","1993","1000 ha","4277","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","1994","1994","1000 ha","4277","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","1995","1995","1000 ha","4277","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","1996","1996","1000 ha","4277","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","1997","1997","1000 ha","4277","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","1998","1998","1000 ha","4277","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","1999","1999","1000 ha","4277","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2000","2000","1000 ha","4277","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2001","2001","1000 ha","4145","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2002","2002","1000 ha","4013","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2003","2003","1000 ha","3881","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2004","2004","1000 ha","3749","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2005","2005","1000 ha","3617","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2006","2006","1000 ha","3601.6","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2007","2007","1000 ha","3586.2","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2008","2008","1000 ha","3570.8","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2009","2009","1000 ha","3555.4","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2010","2010","1000 ha","3540","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2011","2011","1000 ha","3524","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2012","2012","1000 ha","3508","Fm","Manual Estimation" +"RL","Land Use","117","Republic of Korea","5110","Area","6714","Primary Forest","2013","2013","1000 ha","3492","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","146","Republic of Moldova","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","1990","1990","1000 ha","55","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","1991","1991","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","1992","1992","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","1993","1993","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","1994","1994","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","1995","1995","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","1996","1996","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","1997","1997","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","1998","1998","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","1999","1999","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2000","2000","1000 ha","55","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2001","2001","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2002","2002","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2003","2003","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2004","2004","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2005","2005","1000 ha","55","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2006","2006","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2007","2007","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2008","2008","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2009","2009","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2010","2010","1000 ha","55","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2011","2011","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2012","2012","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","182","Réunion","5110","Area","6714","Primary Forest","2013","2013","1000 ha","55","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","1990","1990","1000 ha","263","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","1991","1991","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","1992","1992","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","1993","1993","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","1994","1994","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","1995","1995","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","1996","1996","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","1997","1997","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","1998","1998","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","1999","1999","1000 ha","263","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2000","2000","1000 ha","263","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2001","2001","1000 ha","263.2","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2002","2002","1000 ha","263.4","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2003","2003","1000 ha","263.6","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2004","2004","1000 ha","263.8","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2005","2005","1000 ha","264","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2006","2006","1000 ha","265","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2007","2007","1000 ha","266","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2008","2008","1000 ha","267","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2009","2009","1000 ha","268","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2010","2010","1000 ha","269","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2011","2011","1000 ha","271.8","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2012","2012","1000 ha","274.6","Fm","Manual Estimation" +"RL","Land Use","183","Romania","5110","Area","6714","Primary Forest","2013","2013","1000 ha","277.4","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","1992","1992","1000 ha","245006.72","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","1993","1993","1000 ha","246647.23","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","1994","1994","1000 ha","248287.74","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","1995","1995","1000 ha","249928.25","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","1996","1996","1000 ha","251568.76","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","1997","1997","1000 ha","253209.27","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","1998","1998","1000 ha","254849.78","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","1999","1999","1000 ha","256490.29","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2000","2000","1000 ha","258130.8","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2001","2001","1000 ha","257598.6","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2002","2002","1000 ha","257066.4","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2003","2003","1000 ha","256534.2","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2004","2004","1000 ha","256002","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2005","2005","1000 ha","255469.8","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2006","2006","1000 ha","259044.44","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2007","2007","1000 ha","262619.08","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2008","2008","1000 ha","266193.72","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2009","2009","1000 ha","269768.36","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2010","2010","1000 ha","273343","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2011","2011","1000 ha","273217.92","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2012","2012","1000 ha","273092.84","Fm","Manual Estimation" +"RL","Land Use","185","Russian Federation","5110","Area","6714","Primary Forest","2013","2013","1000 ha","272967.76","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","1990","1990","1000 ha","7","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","1991","1991","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","1992","1992","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","1993","1993","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","1994","1994","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","1995","1995","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","1996","1996","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","1997","1997","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","1998","1998","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","1999","1999","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2000","2000","1000 ha","7","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2001","2001","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2002","2002","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2003","2003","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2004","2004","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2005","2005","1000 ha","7","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2006","2006","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2007","2007","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2008","2008","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2009","2009","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2010","2010","1000 ha","7","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2011","2011","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2012","2012","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","184","Rwanda","5110","Area","6714","Primary Forest","2013","2013","1000 ha","7","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","187","Saint Helena, Ascension and Tristan da Cunha","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","188","Saint Kitts and Nevis","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","18.65","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","18.59","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","18.53","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","18.47","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","18.41","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","18.35","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","18.29","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","18.23","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","18.17","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","18.11","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","18.05","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","17.99","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","17.93","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","17.87","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","17.81","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","17.75","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","17.69","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","17.63","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","17.57","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","17.51","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","17.45","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","17.39","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","17.33","Fm","Manual Estimation" +"RL","Land Use","189","Saint Lucia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","17.27","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","190","Saint Pierre and Miquelon","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","191","Saint Vincent and the Grenadines","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0.02","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0.02","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0.02","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","244","Samoa","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0.02","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","192","San Marino","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","1990","1990","1000 ha","27","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","1991","1991","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","1992","1992","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","1993","1993","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","1994","1994","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","1995","1995","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","1996","1996","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","1997","1997","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","1998","1998","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","1999","1999","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2000","2000","1000 ha","27","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2001","2001","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2002","2002","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2003","2003","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2004","2004","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2005","2005","1000 ha","27","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2006","2006","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2007","2007","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2008","2008","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2009","2009","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2010","2010","1000 ha","27","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2011","2011","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2012","2012","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","193","Sao Tome and Principe","5110","Area","6714","Primary Forest","2013","2013","1000 ha","27","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","360","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","360","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","360","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","360","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","194","Saudi Arabia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","360","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1759","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1748.4","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1737.8","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1727.2","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1716.6","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1706","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1695.4","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1684.8","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1674.2","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1663.6","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1653","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1642","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1631","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1620","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1609","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1598","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1589","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1580","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1571","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1562","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1553","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1544","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1535","Fm","Manual Estimation" +"RL","Land Use","195","Senegal","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1526","Fm","Manual Estimation" +"RL","Land Use","272","Serbia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1","Fm","Manual Estimation" +"RL","Land Use","272","Serbia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1","Fm","Manual Estimation" +"RL","Land Use","272","Serbia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1","Fm","Manual Estimation" +"RL","Land Use","272","Serbia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1","Fm","Manual Estimation" +"RL","Land Use","272","Serbia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","272","Serbia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1","Fm","Manual Estimation" +"RL","Land Use","272","Serbia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1","Fm","Manual Estimation" +"RL","Land Use","272","Serbia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","1992","1992","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","1993","1993","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","1994","1994","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","1995","1995","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","1996","1996","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","1997","1997","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","1998","1998","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","1999","1999","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","2000","2000","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","2001","2001","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","2002","2002","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","2003","2003","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","2004","2004","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","186","Serbia and Montenegro","5110","Area","6714","Primary Forest","2005","2005","1000 ha","110","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","1990","1990","1000 ha","2","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","1991","1991","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","1992","1992","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","1993","1993","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","1994","1994","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","1995","1995","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","1996","1996","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","1997","1997","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","1998","1998","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","1999","1999","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2000","2000","1000 ha","2","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2001","2001","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2002","2002","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2003","2003","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2004","2004","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2005","2005","1000 ha","2","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2006","2006","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2007","2007","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2008","2008","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2009","2009","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2010","2010","1000 ha","2","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2011","2011","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2012","2012","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","196","Seychelles","5110","Area","6714","Primary Forest","2013","2013","1000 ha","2","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","1990","1990","1000 ha","224","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","1991","1991","1000 ha","217.3","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","1992","1992","1000 ha","210.6","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","1993","1993","1000 ha","203.9","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","1994","1994","1000 ha","197.2","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","1995","1995","1000 ha","190.5","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","1996","1996","1000 ha","183.8","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","1997","1997","1000 ha","177.1","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","1998","1998","1000 ha","170.4","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","1999","1999","1000 ha","163.7","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2000","2000","1000 ha","157","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2001","2001","1000 ha","152.2","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2002","2002","1000 ha","147.4","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2003","2003","1000 ha","142.6","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2004","2004","1000 ha","137.8","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2005","2005","1000 ha","133","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2006","2006","1000 ha","129","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2007","2007","1000 ha","125","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2008","2008","1000 ha","121","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2009","2009","1000 ha","117","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2010","2010","1000 ha","113","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2011","2011","1000 ha","107.44","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2012","2012","1000 ha","101.88","Fm","Manual Estimation" +"RL","Land Use","197","Sierra Leone","5110","Area","6714","Primary Forest","2013","2013","1000 ha","96.32","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0.21","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0.21","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0.21","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0.21","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","200","Singapore","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0.21","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","24","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","24","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","24","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","199","Slovakia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","24","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","49.8","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","50.2","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","50.6","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","51","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","51.4","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","51.8","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","52.2","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","52.6","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","53","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","52.2","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","51.4","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","50.6","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","49.8","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","49","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","49","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","49","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","49","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","49","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","49","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","49","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","49","Fm","Manual Estimation" +"RL","Land Use","198","Slovenia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","49","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1105.4","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1105.4","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1105.4","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1105.4","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","25","Solomon Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1105.4","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","201","Somalia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","1990","1990","1000 ha","947","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","1991","1991","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","1992","1992","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","1993","1993","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","1994","1994","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","1995","1995","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","1996","1996","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","1997","1997","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","1998","1998","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","1999","1999","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2000","2000","1000 ha","947","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2001","2001","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2002","2002","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2003","2003","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2004","2004","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2005","2005","1000 ha","947","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2006","2006","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2007","2007","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2008","2008","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2009","2009","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2010","2010","1000 ha","947","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2011","2011","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2012","2012","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","202","South Africa","5110","Area","6714","Primary Forest","2013","2013","1000 ha","947","Fm","Manual Estimation" +"RL","Land Use","277","South Sudan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","277","South Sudan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","277","South Sudan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","203","Spain","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","1990","1990","1000 ha","257","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","1991","1991","1000 ha","251","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","1992","1992","1000 ha","245","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","1993","1993","1000 ha","239","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","1994","1994","1000 ha","233","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","1995","1995","1000 ha","227","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","1996","1996","1000 ha","221","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","1997","1997","1000 ha","215","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","1998","1998","1000 ha","209","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","1999","1999","1000 ha","203","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2000","2000","1000 ha","197","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2001","2001","1000 ha","191","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2002","2002","1000 ha","185","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2003","2003","1000 ha","179","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2004","2004","1000 ha","173","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2005","2005","1000 ha","167","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2006","2006","1000 ha","167","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2007","2007","1000 ha","167","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2008","2008","1000 ha","167","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2009","2009","1000 ha","167","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2010","2010","1000 ha","167","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2011","2011","1000 ha","167","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2012","2012","1000 ha","167","Fm","Manual Estimation" +"RL","Land Use","38","Sri Lanka","5110","Area","6714","Primary Forest","2013","2013","1000 ha","167","Fm","Manual Estimation" +"RL","Land Use","276","Sudan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","1393.532","Fm","Manual Estimation" +"RL","Land Use","276","Sudan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","1381.323","Fm","Manual Estimation" +"RL","Land Use","276","Sudan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","1369.114","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","1990","1990","1000 ha","1649.922","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","1991","1991","1000 ha","1637.7129","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","1992","1992","1000 ha","1625.5038","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","1993","1993","1000 ha","1613.2947","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","1994","1994","1000 ha","1601.0856","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","1995","1995","1000 ha","1588.8765","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","1996","1996","1000 ha","1576.6674","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","1997","1997","1000 ha","1564.4583","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","1998","1998","1000 ha","1552.2492","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","1999","1999","1000 ha","1540.0401","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2000","2000","1000 ha","1527.831","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2001","2001","1000 ha","1515.622","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2002","2002","1000 ha","1503.413","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2003","2003","1000 ha","1491.204","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2004","2004","1000 ha","1478.995","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2005","2005","1000 ha","1466.786","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2006","2006","1000 ha","1454.577","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2007","2007","1000 ha","1442.368","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2008","2008","1000 ha","1430.159","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2009","2009","1000 ha","1417.95","Fm","Manual Estimation" +"RL","Land Use","206","Sudan (former)","5110","Area","6714","Primary Forest","2010","2010","1000 ha","1405.741","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","1990","1990","1000 ha","14986","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","1991","1991","1000 ha","14961.6","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","1992","1992","1000 ha","14937.2","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","1993","1993","1000 ha","14912.8","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","1994","1994","1000 ha","14888.4","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","1995","1995","1000 ha","14864","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","1996","1996","1000 ha","14839.6","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","1997","1997","1000 ha","14815.2","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","1998","1998","1000 ha","14790.8","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","1999","1999","1000 ha","14766.4","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2000","2000","1000 ha","14742","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2001","2001","1000 ha","14711.6","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2002","2002","1000 ha","14681.2","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2003","2003","1000 ha","14650.8","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2004","2004","1000 ha","14620.4","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2005","2005","1000 ha","14590","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2006","2006","1000 ha","14556.4","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2007","2007","1000 ha","14522.8","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2008","2008","1000 ha","14489.2","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2009","2009","1000 ha","14455.6","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2010","2010","1000 ha","14422","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2011","2011","1000 ha","14341.4","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2012","2012","1000 ha","14260.8","Fm","Manual Estimation" +"RL","Land Use","207","Suriname","5110","Area","6714","Primary Forest","2013","2013","1000 ha","14180.2","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","1990","1990","1000 ha","2417","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","1991","1991","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","1992","1992","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","1993","1993","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","1994","1994","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","1995","1995","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","1996","1996","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","1997","1997","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","1998","1998","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","1999","1999","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2000","2000","1000 ha","2417","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2001","2001","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2002","2002","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2003","2003","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2004","2004","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2005","2005","1000 ha","2417","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2006","2006","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2007","2007","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2008","2008","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2009","2009","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2010","2010","1000 ha","2417","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2011","2011","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2012","2012","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","210","Sweden","5110","Area","6714","Primary Forest","2013","2013","1000 ha","2417","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","1990","1990","1000 ha","40","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","1991","1991","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","1992","1992","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","1993","1993","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","1994","1994","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","1995","1995","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","1996","1996","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","1997","1997","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","1998","1998","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","1999","1999","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2000","2000","1000 ha","40","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2001","2001","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2002","2002","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2003","2003","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2004","2004","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2005","2005","1000 ha","40","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2006","2006","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2007","2007","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2008","2008","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2009","2009","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2010","2010","1000 ha","40","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2011","2011","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2012","2012","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","211","Switzerland","5110","Area","6714","Primary Forest","2013","2013","1000 ha","40","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","212","Syrian Arab Republic","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","297","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","297","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","297","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","208","Tajikistan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","1990","1990","1000 ha","6726","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","1991","1991","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","1992","1992","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","1993","1993","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","1994","1994","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","1995","1995","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","1996","1996","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","1997","1997","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","1998","1998","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","1999","1999","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2000","2000","1000 ha","6726","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2001","2001","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2002","2002","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2003","2003","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2004","2004","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2005","2005","1000 ha","6726","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2006","2006","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2007","2007","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2008","2008","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2009","2009","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2010","2010","1000 ha","6726","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2011","2011","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2012","2012","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","216","Thailand","5110","Area","6714","Primary Forest","2013","2013","1000 ha","6726","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","176","Timor-Leste","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","217","Togo","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","218","Tokelau","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","1990","1990","1000 ha","4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","1991","1991","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","1992","1992","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","1993","1993","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","1994","1994","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","1995","1995","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","1996","1996","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","1997","1997","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","1998","1998","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","1999","1999","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2000","2000","1000 ha","4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2001","2001","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2002","2002","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2003","2003","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2004","2004","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2005","2005","1000 ha","4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2006","2006","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2007","2007","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2008","2008","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2009","2009","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2010","2010","1000 ha","4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2011","2011","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2012","2012","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","219","Tonga","5110","Area","6714","Primary Forest","2013","2013","1000 ha","4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","1990","1990","1000 ha","62.4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","1991","1991","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","1992","1992","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","1993","1993","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","1994","1994","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","1995","1995","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","1996","1996","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","1997","1997","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","1998","1998","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","1999","1999","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2000","2000","1000 ha","62.4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2001","2001","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2002","2002","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2003","2003","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2004","2004","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2005","2005","1000 ha","62.4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2006","2006","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2007","2007","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2008","2008","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2009","2009","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2010","2010","1000 ha","62.4","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2011","2011","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2012","2012","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","220","Trinidad and Tobago","5110","Area","6714","Primary Forest","2013","2013","1000 ha","62.4","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","222","Tunisia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","1990","1990","1000 ha","826","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","1991","1991","1000 ha","827.1","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","1992","1992","1000 ha","828.2","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","1993","1993","1000 ha","829.3","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","1994","1994","1000 ha","830.4","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","1995","1995","1000 ha","831.5","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","1996","1996","1000 ha","832.6","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","1997","1997","1000 ha","833.7","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","1998","1998","1000 ha","834.8","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","1999","1999","1000 ha","835.9","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2000","2000","1000 ha","837","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2001","2001","1000 ha","841.4","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2002","2002","1000 ha","845.8","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2003","2003","1000 ha","850.2","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2004","2004","1000 ha","854.6","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2005","2005","1000 ha","859","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2006","2006","1000 ha","863.4","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2007","2007","1000 ha","867.8","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2008","2008","1000 ha","872.2","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2009","2009","1000 ha","876.6","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2010","2010","1000 ha","881","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2011","2011","1000 ha","887.4","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2012","2012","1000 ha","893.8","Fm","Manual Estimation" +"RL","Land Use","223","Turkey","5110","Area","6714","Primary Forest","2013","2013","1000 ha","900.2","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","104","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","104","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","104","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","213","Turkmenistan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","104","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","224","Turks and Caicos Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","227","Tuvalu","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","226","Uganda","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","1992","1992","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","1993","1993","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","1994","1994","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","1995","1995","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","1996","1996","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","1997","1997","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","1998","1998","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","1999","1999","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2000","2000","1000 ha","59","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2001","2001","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2002","2002","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2003","2003","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2004","2004","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2005","2005","1000 ha","59","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2006","2006","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2007","2007","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2008","2008","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2009","2009","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2010","2010","1000 ha","59","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2011","2011","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2012","2012","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","230","Ukraine","5110","Area","6714","Primary Forest","2013","2013","1000 ha","59","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","225","United Arab Emirates","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","229","United Kingdom","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","215","United Republic of Tanzania","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","1990","1990","1000 ha","70012","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","1991","1991","1000 ha","70241.3","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","1992","1992","1000 ha","70470.6","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","1993","1993","1000 ha","70699.9","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","1994","1994","1000 ha","70929.2","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","1995","1995","1000 ha","71158.5","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","1996","1996","1000 ha","71387.8","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","1997","1997","1000 ha","71617.1","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","1998","1998","1000 ha","71846.4","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","1999","1999","1000 ha","72075.7","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2000","2000","1000 ha","72305","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2001","2001","1000 ha","72985.8","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2002","2002","1000 ha","73666.6","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2003","2003","1000 ha","74347.4","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2004","2004","1000 ha","75028.2","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2005","2005","1000 ha","75709","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2006","2006","1000 ha","75626","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2007","2007","1000 ha","75543","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2008","2008","1000 ha","75460","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2009","2009","1000 ha","75377","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2010","2010","1000 ha","75294","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2011","2011","1000 ha","75295.2","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2012","2012","1000 ha","75296.4","Fm","Manual Estimation" +"RL","Land Use","231","United States of America","5110","Area","6714","Primary Forest","2013","2013","1000 ha","75297.6","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","240","United States Virgin Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","1990","1990","1000 ha","239","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","1991","1991","1000 ha","244.7","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","1992","1992","1000 ha","250.4","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","1993","1993","1000 ha","256.1","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","1994","1994","1000 ha","261.8","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","1995","1995","1000 ha","267.5","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","1996","1996","1000 ha","273.2","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","1997","1997","1000 ha","278.9","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","1998","1998","1000 ha","284.6","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","1999","1999","1000 ha","290.3","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2000","2000","1000 ha","296","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2001","2001","1000 ha","296","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2002","2002","1000 ha","296","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2003","2003","1000 ha","296","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2004","2004","1000 ha","296","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2005","2005","1000 ha","296","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2006","2006","1000 ha","297","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2007","2007","1000 ha","298","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2008","2008","1000 ha","299","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2009","2009","1000 ha","300","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2010","2010","1000 ha","301","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2011","2011","1000 ha","303.4","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2012","2012","1000 ha","305.8","Fm","Manual Estimation" +"RL","Land Use","234","Uruguay","5110","Area","6714","Primary Forest","2013","2013","1000 ha","308.2","Fm","Manual Estimation" +"RL","Land Use","228","USSR","5110","Area","6714","Primary Forest","1990","1990","1000 ha","244030.1","Fm","Manual Estimation" +"RL","Land Use","228","USSR","5110","Area","6714","Primary Forest","1991","1991","1000 ha","245671.58","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","1992","1992","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","1993","1993","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","1994","1994","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","1995","1995","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","1996","1996","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","1997","1997","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","1998","1998","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","1999","1999","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2000","2000","1000 ha","57","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2001","2001","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2002","2002","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2003","2003","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2004","2004","1000 ha","57","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2005","2005","1000 ha","57","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2006","2006","1000 ha","60","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2007","2007","1000 ha","63","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2008","2008","1000 ha","66","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2009","2009","1000 ha","69","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2010","2010","1000 ha","72","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2011","2011","1000 ha","72.2","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2012","2012","1000 ha","72.4","Fm","Manual Estimation" +"RL","Land Use","235","Uzbekistan","5110","Area","6714","Primary Forest","2013","2013","1000 ha","72.6","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","155","Vanuatu","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","1990","1990","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","1991","1991","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","1992","1992","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","1993","1993","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","1994","1994","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","1995","1995","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","1996","1996","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","1997","1997","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","1998","1998","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","1999","1999","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2000","2000","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2001","2001","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2002","2002","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2003","2003","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2004","2004","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2005","2005","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2006","2006","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2007","2007","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2008","2008","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2009","2009","1000 ha","46568","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2010","2010","1000 ha","46568","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2011","2011","1000 ha","46403.6","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2012","2012","1000 ha","46239.2","Fm","Manual Estimation" +"RL","Land Use","236","Venezuela (Bolivarian Republic of)","5110","Area","6714","Primary Forest","2013","2013","1000 ha","46074.8","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","1990","1990","1000 ha","384","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","1991","1991","1000 ha","364.3","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","1992","1992","1000 ha","344.6","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","1993","1993","1000 ha","324.9","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","1994","1994","1000 ha","305.2","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","1995","1995","1000 ha","285.5","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","1996","1996","1000 ha","265.8","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","1997","1997","1000 ha","246.1","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","1998","1998","1000 ha","226.4","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","1999","1999","1000 ha","206.7","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2000","2000","1000 ha","187","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2001","2001","1000 ha","166.6","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2002","2002","1000 ha","146.2","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2003","2003","1000 ha","125.8","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2004","2004","1000 ha","105.4","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2005","2005","1000 ha","85","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2006","2006","1000 ha","84.6","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2007","2007","1000 ha","84.2","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2008","2008","1000 ha","83.8","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2009","2009","1000 ha","83.4","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2010","2010","1000 ha","83","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2011","2011","1000 ha","83","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2012","2012","1000 ha","83","Fm","Manual Estimation" +"RL","Land Use","237","Viet Nam","5110","Area","6714","Primary Forest","2013","2013","1000 ha","83","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","243","Wallis and Futuna Islands","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","205","Western Sahara","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","E","Expert sources from FAO (including other divisions)" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","249","Yemen","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","248","Yugoslav SFR","5110","Area","6714","Primary Forest","1990","1990","1000 ha","168","Fm","Manual Estimation" +"RL","Land Use","248","Yugoslav SFR","5110","Area","6714","Primary Forest","1991","1991","1000 ha","168.4","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","1990","1990","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","1991","1991","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","1992","1992","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","1993","1993","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","1994","1994","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","1995","1995","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","1996","1996","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","1997","1997","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","1998","1998","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","1999","1999","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2000","2000","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2001","2001","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2002","2002","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2003","2003","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2004","2004","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2005","2005","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2006","2006","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2007","2007","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2008","2008","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2009","2009","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2010","2010","1000 ha","0","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2011","2011","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2012","2012","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","251","Zambia","5110","Area","6714","Primary Forest","2013","2013","1000 ha","0","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","1990","1990","1000 ha","801","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","1991","1991","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","1992","1992","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","1993","1993","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","1994","1994","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","1995","1995","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","1996","1996","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","1997","1997","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","1998","1998","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","1999","1999","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2000","2000","1000 ha","801","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2001","2001","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2002","2002","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2003","2003","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2004","2004","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2005","2005","1000 ha","801","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2006","2006","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2007","2007","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2008","2008","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2009","2009","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2010","2010","1000 ha","801","Q","Official data reported on FAO Questionnaires from countries" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2011","2011","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2012","2012","1000 ha","801","Fm","Manual Estimation" +"RL","Land Use","181","Zimbabwe","5110","Area","6714","Primary Forest","2013","2013","1000 ha","801","Fm","Manual Estimation" diff --git a/module-2_projects/tableau-project/your-code/Coffee production/original_data/production_quantity.csv b/module-2_projects/tableau-project/your-code/Coffee production/original_data/production_quantity.csv new file mode 100644 index 0000000..7ea6aa1 --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/original_data/production_quantity.csv @@ -0,0 +1,3976 @@ +Domain Code,Domain,Country Code,Country,Element Code,Element,Item Code,Item,Year Code,Year,Unit,Value,Flag,Flag Description +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","169","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","185","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","168","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","198","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","205","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","226","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","235","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","198","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","215","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","204","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","228","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","225","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","210","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","225","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","180","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","34","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","49","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","7","Angola","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","23","Belize","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","53","Benin","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","16","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","24","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","24","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","24","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","19","Bolivia (Plurinational State of)","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","2229","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","2190","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","1651","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","1042","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","2294","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","1203","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","1508","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","1058","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","1284","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","755","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1551","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","1496","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","873","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","1615","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","1272","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","376","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","975","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","1268","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","1333","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","1061","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","2032","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","958","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","1672","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","1420","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","1911","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1041","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","2203","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","1348","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","1532","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","1465","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","1520","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","1294","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","1279","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","1307","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","930","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","1369","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","1229","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","1689","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","1632","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","1904","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","1820","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","2650","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","1987","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","2466","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","2140","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","2573","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","2249","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","2797","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","2440","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","2907","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","2701","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","3038","S","Standardized data" +"FBS","Food Balance Sheets","21","Brazil","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","2921","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","35","Cabo Verde","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","115","Cambodia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","59","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","74","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","63","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","82","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","82","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","93","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","95","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","96","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","94","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","104","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","92","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","108","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","101","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","112","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","109","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","128","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","64","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","138","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","100","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","132","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","83","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","119","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","116","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","101","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","115","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","76","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","74","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","74","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","104","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","64","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","113","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","98","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","71","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","41","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","51","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","67","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","38","S","Standardized data" +"FBS","Food Balance Sheets","32","Cameroon","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","16","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","24","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","37","Central African Republic","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","92","S","Standardized data" +"FBS","Food Balance Sheets","41","China, mainland","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","117","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","214","China, Taiwan Province of","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","450","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","482","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","450","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","468","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","492","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","492","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","456","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","480","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","474","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","507","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","468","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","432","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","528","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","470","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","513","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","483","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","639","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","683","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","713","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","724","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","782","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","774","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","769","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","808","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","643","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","714","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","652","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","709","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","664","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","845","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","971","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","1100","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","818","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","722","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","822","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","671","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","642","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","767","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","547","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","637","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","656","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","697","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","694","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","674","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","667","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","725","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","757","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","689","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","469","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","535","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","469","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","462","S","Standardized data" +"FBS","Food Balance Sheets","44","Colombia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","653","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","46","Congo","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","55","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","47","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","76","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","69","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","85","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","73","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","89","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","79","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","96","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","84","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","82","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","87","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","99","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","99","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","106","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","113","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","115","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","124","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","137","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","124","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","128","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","138","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","145","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","157","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","151","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","158","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","168","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","157","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","148","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","150","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","154","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","132","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","152","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","148","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","161","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","150","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","141","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","132","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","126","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","126","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","101","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","121","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","112","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","91","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","97","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","100","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","118","S","Standardized data" +"FBS","Food Balance Sheets","48","Costa Rica","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","71","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","186","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","97","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","195","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","261","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","202","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","273","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","131","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","288","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","210","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","280","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","240","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","269","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","302","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","196","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","270","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","308","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","291","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","196","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","277","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","250","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","367","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","248","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","271","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","85","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","277","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","265","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","270","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","187","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","221","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","285","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","199","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","257","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","139","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","146","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","195","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","168","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","279","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","311","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","307","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","380","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","301","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","182","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","140","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","154","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","230","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","187","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","171","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","173","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","143","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","94","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","121","S","Standardized data" +"FBS","Food Balance Sheets","107","Côte d'Ivoire","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","104","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","24","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","34","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","24","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","16","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","49","Cuba","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","55","Dominica","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","36","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","44","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","59","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","63","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","69","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","67","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","59","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","55","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","38","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","38","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","56","Dominican Republic","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","16","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","56","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","47","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","66","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","44","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","71","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","75","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","76","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","87","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","83","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","75","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","90","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","69","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","84","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","81","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","97","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","121","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","118","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","112","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","144","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","129","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","135","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","139","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","138","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","137","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","187","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","148","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","191","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","87","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","133","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","138","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","165","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","79","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","83","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","87","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","103","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","31","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","34","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","31","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","58","Ecuador","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","123","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","98","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","123","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","123","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","109","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","123","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","145","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","124","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","144","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","129","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","145","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","147","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","127","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","159","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","161","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","139","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","147","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","158","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","186","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","184","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","180","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","175","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","155","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","164","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","149","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","138","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","148","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","120","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","122","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","147","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","149","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","176","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","141","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","141","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","140","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","149","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","124","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","117","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","161","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","114","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","112","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","92","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","81","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","83","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","88","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","85","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","96","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","98","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","77","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","113","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","82","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","89","S","Standardized data" +"FBS","Food Balance Sheets","60","El Salvador","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","47","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","180","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","207","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","230","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","230","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","228","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","230","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","217","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","230","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","157","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","160","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","126","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","156","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","172","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","241","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","273","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","260","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","265","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","371","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","377","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","276","S","Standardized data" +"FBS","Food Balance Sheets","238","Ethiopia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","270","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","127","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","133","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","139","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","170","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","140","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","140","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","155","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","160","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","165","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","170","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","182","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","164","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","180","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","153","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","171","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","179","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","191","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","190","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","188","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","187","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","202","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","202","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","158","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","145","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","155","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","186","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","186","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","190","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","200","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","204","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","210","S","Standardized data" +"FBS","Food Balance Sheets","62","Ethiopia PDR","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","216","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","66","Fiji","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","70","French Polynesia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","74","Gabon","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","81","Ghana","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","101","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","118","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","104","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","105","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","126","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","106","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","102","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","112","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","119","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","127","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","128","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","143","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","146","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","157","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","139","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","158","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","168","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","170","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","165","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","177","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","194","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","189","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","183","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","197","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","182","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","197","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","193","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","179","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","193","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","202","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","196","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","207","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","209","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","214","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","211","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","240","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","271","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","253","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","294","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","312","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","276","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","222","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","244","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","250","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","248","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","235","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","244","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","248","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","249","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","248","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","265","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","273","S","Standardized data" +"FBS","Food Balance Sheets","89","Guatemala","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","253","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","30","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","30","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","30","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","30","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","90","Guinea","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","91","Guyana","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","36","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","31","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","30","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","31","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","31","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","36","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","38","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","30","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","38","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","38","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","34","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","31","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","30","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","30","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","47","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","93","Haiti","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","34","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","38","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","41","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","47","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","73","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","64","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","75","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","79","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","73","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","75","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","76","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","94","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","100","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","120","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","102","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","112","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","110","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","126","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","132","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","149","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","163","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","173","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","157","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","193","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","206","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","173","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","175","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","185","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","191","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","214","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","236","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","241","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","231","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","244","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","284","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","343","S","Standardized data" +"FBS","Food Balance Sheets","95","Honduras","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","281","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","56","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","69","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","61","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","64","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","79","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","73","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","64","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","110","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","69","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","91","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","93","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","84","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","102","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","125","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","110","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","150","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","119","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","152","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","130","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","105","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","195","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","122","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","192","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","123","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","215","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","118","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","170","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","180","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","162","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","208","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","180","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","223","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","205","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","228","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","265","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","292","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","301","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","301","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","275","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","271","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","276","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","274","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","288","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","262","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","262","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","290","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","302","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","314","S","Standardized data" +"FBS","Food Balance Sheets","100","India","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","318","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","103","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","107","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","140","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","118","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","135","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","142","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","153","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","157","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","174","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","185","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","181","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","179","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","150","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","150","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","170","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","193","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","194","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","223","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","274","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","295","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","315","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","281","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","306","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","315","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","311","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","357","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","389","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","391","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","401","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","413","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","428","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","437","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","439","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","450","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","458","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","422","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","427","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","512","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","525","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","555","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","569","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","682","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","664","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","647","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","640","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","682","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","676","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","698","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","683","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","684","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","639","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","691","S","Standardized data" +"FBS","Food Balance Sheets","101","Indonesia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","699","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","109","Jamaica","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","41","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","41","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","71","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","66","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","101","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","84","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","75","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","91","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","100","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","87","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","119","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","94","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","114","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","105","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","129","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","117","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","104","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","85","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","75","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","95","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","98","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","69","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","101","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","55","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","53","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","36","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","114","Kenya","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","24","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","87","S","Standardized data" +"FBS","Food Balance Sheets","120","Lao People's Democratic Republic","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","89","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","123","Liberia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","73","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","66","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","73","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","71","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","64","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","67","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","69","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","74","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","81","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","84","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","79","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","92","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","78","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","82","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","83","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","81","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","81","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","81","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","79","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","82","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","81","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","84","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","88","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","85","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","84","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","78","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","55","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","56","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","56","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","67","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","67","S","Standardized data" +"FBS","Food Balance Sheets","129","Madagascar","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","64","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","130","Malawi","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","16","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","16","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","131","Malaysia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","137","Mauritius","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","127","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","140","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","137","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","156","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","162","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","183","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","225","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","213","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","173","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","185","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","187","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","203","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","222","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","221","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","228","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","212","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","182","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","242","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","220","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","220","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","263","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","252","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","308","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","240","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","260","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","375","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","336","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","423","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","343","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","440","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","334","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","360","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","336","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","325","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","325","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","374","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","368","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","277","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","302","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","338","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","303","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","313","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","311","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","312","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","294","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","280","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","269","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","260","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","264","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","245","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","237","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","246","S","Standardized data" +"FBS","Food Balance Sheets","138","Mexico","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","232","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","144","Mozambique","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","28","Myanmar","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","149","Nepal","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","153","New Caledonia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","30","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","30","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","34","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","37","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","41","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","49","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","55","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","56","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","59","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","61","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","49","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","51","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","47","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","45","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","41","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","55","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","92","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","82","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","67","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","83","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","95","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","100","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","76","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","92","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","79","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","104","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","87","S","Standardized data" +"FBS","Food Balance Sheets","157","Nicaragua","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","84","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","159","Nigeria","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","166","Panama","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","169","Paraguay","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","49","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","53","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","53","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","71","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","88","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","105","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","79","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","79","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","83","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","91","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","96","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","99","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","99","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","106","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","81","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","83","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","87","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","91","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","97","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","107","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","133","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","145","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","167","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","192","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","196","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","213","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","203","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","231","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","189","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","273","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","226","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","274","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","243","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","265","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","332","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","314","S","Standardized data" +"FBS","Food Balance Sheets","170","Peru","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","256","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","32","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","44","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","44","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","44","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","44","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","49","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","51","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","53","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","91","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","81","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","105","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","119","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","116","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","125","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","147","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","171","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","147","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","117","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","135","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","145","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","140","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","142","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","156","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","126","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","125","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","127","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","124","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","124","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","127","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","117","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","120","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","108","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","104","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","108","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","112","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","107","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","106","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","103","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","106","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","104","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","98","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","97","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","96","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","95","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","89","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","89","S","Standardized data" +"FBS","Food Balance Sheets","171","Philippines","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","78","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","29","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","34","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","41","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","31","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","39","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","16","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","184","Rwanda","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","189","Saint Lucia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","191","Saint Vincent and the Grenadines","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","244","Samoa","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","193","Sao Tome and Principe","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","194","Saudi Arabia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","23","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","24","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","26","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","31","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","21","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","31","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","197","Sierra Leone","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","36","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","203","Spain","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","38","Sri Lanka","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","207","Suriname","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","27","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","31","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","71","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","47","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","78","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","84","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","78","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","55","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","81","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","86","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","53","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","47","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","56","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","56","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","49","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","41","S","Standardized data" +"FBS","Food Balance Sheets","216","Thailand","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","176","Timor-Leste","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","22","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","217","Togo","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","220","Trinidad and Tobago","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","94","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","119","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","158","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","172","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","152","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","154","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","166","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","133","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","247","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","202","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","176","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","184","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","213","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","199","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","199","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","137","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","156","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","121","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","103","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","135","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","98","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","162","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","148","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","146","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","144","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","160","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","167","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","151","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","169","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","129","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","147","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","110","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","145","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","198","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","181","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","288","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","220","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","205","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","252","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","143","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","197","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","210","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","151","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","170","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","158","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","133","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","175","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","212","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","196","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","167","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","191","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","186","S","Standardized data" +"FBS","Food Balance Sheets","226","Uganda","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","223","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","33","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","35","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","41","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","44","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","56","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","67","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","51","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","55","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","59","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","50","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","51","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","66","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","53","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","55","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","49","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","53","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","56","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","34","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","44","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","38","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","47","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","48","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","66","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","52","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","95","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","34","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","49","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","43","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","61","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","66","S","Standardized data" +"FBS","Food Balance Sheets","215","United Republic of Tanzania","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","71","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","231","United States of America","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","155","Vanuatu","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","57","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","61","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","56","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","61","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","61","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","61","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","66","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","46","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","40","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","59","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","54","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","60","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","58","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","59","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","61","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","64","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","66","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","71","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","73","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","76","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","69","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","66","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","68","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","65","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","73","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","63","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","67","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","80","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","78","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","92","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","84","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","64","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","64","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","74","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","70","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","63","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","72","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","61","S","Standardized data" +"FBS","Food Balance Sheets","236","Venezuela (Bolivarian Republic of)","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","62","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","25","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","28","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","42","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","41","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","92","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","100","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","119","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","136","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","180","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","218","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","320","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","421","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","409","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","553","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","803","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","841","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","700","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","794","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","914","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","831","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","985","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","1251","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","1056","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","1058","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","1106","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","1277","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","1565","S","Standardized data" +"FBS","Food Balance Sheets","237","Viet Nam","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","1461","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","17","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","18","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","19","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","249","Yemen","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","20","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","251","Zambia","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","7","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","0","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","11","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","13","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","15","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","14","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","5","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","12","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","9","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","8","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","10","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","6","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","4","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","3","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","2","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","181","Zimbabwe","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","1","S","Standardized data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1961","1961","1000 tonnes","2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1962","1962","1000 tonnes","2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1963","1963","1000 tonnes","2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1964","1964","1000 tonnes","2","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1965","1965","1000 tonnes","3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1966","1966","1000 tonnes","3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1967","1967","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1968","1968","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1969","1969","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1970","1970","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1971","1971","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1972","1972","1000 tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1973","1973","1000 tonnes","6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1974","1974","1000 tonnes","6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1975","1975","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1976","1976","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1977","1977","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1978","1978","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1979","1979","1000 tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1980","1980","1000 tonnes","5","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1981","1981","1000 tonnes","6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1982","1982","1000 tonnes","6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1983","1983","1000 tonnes","6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1984","1984","1000 tonnes","9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1985","1985","1000 tonnes","7","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1986","1986","1000 tonnes","8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1987","1987","1000 tonnes","9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1988","1988","1000 tonnes","10","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1989","1989","1000 tonnes","8","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1990","1990","1000 tonnes","6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1991","1991","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1992","1992","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1993","1993","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1994","1994","1000 tonnes","3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1995","1995","1000 tonnes","3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1996","1996","1000 tonnes","3","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1997","1997","1000 tonnes","4","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1998","1998","1000 tonnes","6","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","1999","1999","1000 tonnes","9","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2000","2000","1000 tonnes","12","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2001","2001","1000 tonnes","17","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2002","2002","1000 tonnes","19","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2003","2003","1000 tonnes","23","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2004","2004","1000 tonnes","22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2005","2005","1000 tonnes","22","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2006","2006","1000 tonnes","26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2007","2007","1000 tonnes","26","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2008","2008","1000 tonnes","33","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2009","2009","1000 tonnes","70","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2010","2010","1000 tonnes","50","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2011","2011","1000 tonnes","65","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2012","2012","1000 tonnes","92","A","Aggregate, may include official, semi-official, estimated or calculated data" +"FBS","Food Balance Sheets","351","China","5511","Production","2630","Coffee and products","2013","2013","1000 tonnes","117","A","Aggregate, may include official, semi-official, estimated or calculated data" diff --git a/module-2_projects/tableau-project/your-code/README.md b/module-2_projects/tableau-project/your-code/README.md new file mode 100644 index 0000000..bef6ed7 --- /dev/null +++ b/module-2_projects/tableau-project/your-code/README.md @@ -0,0 +1,80 @@ +# Project: Business Intelligence with Tableau + +# Data Exploration: Coffee Production Environmental Impact + +## Overview + +["Coffee is a beverage that puts one to sleep when not drank."](https://www.thebaristalife.com/blogs/blog/barista-lifes-top-117-coffee-quotes) - [Alphonse Allais](https://en.wikipedia.org/wiki/Alphonse_Allais). + +Over 2.25 billion cups of coffee are consumed in the world every day. As a popular beverage and important commidity, a simple cup of coffee is affecting daily life of people as well as our planet. + +In this project, we will explore some data on coffeee production environmental impact collected from The Food and Agriculture Organization of the United Nations (FAO) database. FAO provides open resources to a variety of food and agriculture data for over 245 countries from 1961 to the most recent year available, which provides us a single source of data to examine the following aspects relateed to coffee production: + +1. Coffee production quantity + - Data from 1961 to 2013 (latest avaiable year) is collected. Throughout the past few decades, the forms of growing coffee have changed to maximize the harvest and in recent years new method to tackle the production wastes have been introduced. Therefore we will look into the data with a wide time range. +2. Gross Coffee Production Values + - the value of production at the point of sale (i.e. where it passes out of the Agriculture sector of the economy). This gives us some insight on the development of coffee market price throughout the years which is partially affected by coffee supply/production. +3. Size of Primary Forest Area + - Size of naturally regenerated forest of native species, where there are no clearly visible indications of human activities and the ecological processes are not significantly disturbed. We will explore the impact on forest size from the change of coffee cultivation method. +4. Pesticide use + - Agrochemical usage increases human chemical exposure and contributes in contamination waterways. We will examine the development of such usage along with coffee production trend. +5. Crop residue amount + - The process of separating the coffee beans from the coffee cherries generates enormous volumes of waste material in the form of pulp, residual matter, and parchment. These agricultural wastes also contributes in Greenhouse gas (GHG) emission, e.g. direct and indirect nitrous oxide (N2O) emissions from nitrogen (N) of the residue. We will examine the change of crop residue amount with coffee production. + + + +## Dataset dimenions +1. Coffee production quantity + Number of records: 3,975 + Period: 1961-2013 + Unit: 1000 Tonnes +2. Gross Coffee Production Values + Number of records: 1,047 + Period: 1991-2013 + Unit: USD/Tonnes +3. Size of Primary Forest Area + Number of records: 1,776 + Period: 1961-2013 + Unit: Ha (Converted to sq. km in Tableau) +4. Pesticide use + Number of records: 1,533 + Period: 1990-2013 + Unit: Tonnes +5. Crop residue amount + Number of records: 2,612 + Period: 1961-2013 + Unit: kg (Converted to 1000 Tonnes in Tableau) + + + +## Approaches + +1. **Define topic** + There are data of thousands of food products to select from in FAO database. The initial idea was to explore global food source and utilizations however the choices of food products are too wide and diversed, and hence it would be hard to find unified indexes that are suitable for different products. + Once COFFFE is selected, we decided to explore the enviornmental factors of the coffee production and also listed the different aspects we would like to inspect. +2. **Identify data required for findings and extract data** + With the 5 defined areas that we selected, we dipped deeper into different databases in FAO to extract required data. + Data was downloaded as .csv files from datasets under different categories in FAO pages. Links are provided in the bottom. +3. **Understand dataset structure & Examine columns** + Examine csv files and understand each column. Read through column and values descriptions found in FAO website and ensure correct interpretions. +4. **Data Cleaning** + Data is relatively clean and therefore tasks focused on reshaping and combining dataframes. Detail please see jupyter notebook in Coffee Production folder. +5. **Basic plotting followed by visaul optimization** + Import cleaned dataframes into Tableau and join dataframes. Add Calculated Fields for unit conversion. Start with making basic plotting and later on trying out different visualization tools to optimize the results. +6. **Add captions and annotations to complete storytelling process** + Group all worksheets into a story and descibe observations. + + + +## Data sources +*[The Food and Agriculture Organization of the United Nations](http://www.fao.org/home/en) +*[Food Balance sheet](http://www.fao.org/faostat/en/#data/FBS) +*[Value of Agricultural Production](http://www.fao.org/faostat/en/#data/QV) +*[Land Use](http://www.fao.org/faostat/en/#data/RL) +*[Pesticides Use](http://www.fao.org/faostat/en/#data/RP) +*[Crop Residues](http://www.fao.org/faostat/en/#data/GA) + + + +## Inspiration +*[The Environmental Impact of Coffee Production: What’s Your Coffee Costing The Planet?](https://www.sustainablebusinesstoolkit.com/environmental-impact-coffee-trade/) \ No newline at end of file From 89cd7c601a7e3d713b7bc687b1f587b708a7fd3b Mon Sep 17 00:00:00 2001 From: ivywsip <55704409+ivywsip@users.noreply.github.com> Date: Sun, 10 Nov 2019 16:45:39 +0100 Subject: [PATCH 20/30] Update README.md --- module-2_projects/tableau-project/your-code/README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/module-2_projects/tableau-project/your-code/README.md b/module-2_projects/tableau-project/your-code/README.md index bef6ed7..698fee1 100644 --- a/module-2_projects/tableau-project/your-code/README.md +++ b/module-2_projects/tableau-project/your-code/README.md @@ -1,6 +1,7 @@ # Project: Business Intelligence with Tableau -# Data Exploration: Coffee Production Environmental Impact + +## Data Exploration: Coffee Production Environmental Impact ## Overview @@ -24,9 +25,9 @@ In this project, we will explore some data on coffeee production environmental i ## Dataset dimenions -1. Coffee production quantity - Number of records: 3,975 - Period: 1961-2013 +1. Coffee production quantity\n + Number of records: 3,975\n + Period: 1961-2013\n Unit: 1000 Tonnes 2. Gross Coffee Production Values Number of records: 1,047 @@ -77,4 +78,4 @@ In this project, we will explore some data on coffeee production environmental i ## Inspiration -*[The Environmental Impact of Coffee Production: What’s Your Coffee Costing The Planet?](https://www.sustainablebusinesstoolkit.com/environmental-impact-coffee-trade/) \ No newline at end of file +*[The Environmental Impact of Coffee Production: What’s Your Coffee Costing The Planet?](https://www.sustainablebusinesstoolkit.com/environmental-impact-coffee-trade/) From bab7a3737b0dd0042bdf40d21a13ac05b376cb33 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sun, 10 Nov 2019 16:50:18 +0100 Subject: [PATCH 21/30] Tableau project updated --- .../tableau-project/your-code/README.md | 56 ++++++++++--------- 1 file changed, 29 insertions(+), 27 deletions(-) diff --git a/module-2_projects/tableau-project/your-code/README.md b/module-2_projects/tableau-project/your-code/README.md index bef6ed7..0f68c04 100644 --- a/module-2_projects/tableau-project/your-code/README.md +++ b/module-2_projects/tableau-project/your-code/README.md @@ -1,8 +1,10 @@ # Project: Business Intelligence with Tableau +Tableau publish: (https://public.tableau.com/profile/ivy.ip#!/vizhome/TableauProject-CoffeeProduction/Forest) -# Data Exploration: Coffee Production Environmental Impact -## Overview +## Data Exploration: Coffee Production Environmental Impact + +### Overview ["Coffee is a beverage that puts one to sleep when not drank."](https://www.thebaristalife.com/blogs/blog/barista-lifes-top-117-coffee-quotes) - [Alphonse Allais](https://en.wikipedia.org/wiki/Alphonse_Allais). @@ -23,50 +25,50 @@ In this project, we will explore some data on coffeee production environmental i -## Dataset dimenions +### Dataset dimenions 1. Coffee production quantity - Number of records: 3,975 - Period: 1961-2013 - Unit: 1000 Tonnes + - Number of records: 3,975 + - Period: 1961-2013 + - Unit: 1000 Tonnes 2. Gross Coffee Production Values - Number of records: 1,047 - Period: 1991-2013 - Unit: USD/Tonnes + - Number of records: 1,047 + - Period: 1991-2013 + - Unit: USD/Tonnes 3. Size of Primary Forest Area - Number of records: 1,776 - Period: 1961-2013 - Unit: Ha (Converted to sq. km in Tableau) + - Number of records: 1,776 + - Period: 1961-2013 + - Unit: Ha (Converted to sq. km in Tableau) 4. Pesticide use - Number of records: 1,533 - Period: 1990-2013 - Unit: Tonnes + - Number of records: 1,533 + - Period: 1990-2013 + - Unit: Tonnes 5. Crop residue amount - Number of records: 2,612 - Period: 1961-2013 - Unit: kg (Converted to 1000 Tonnes in Tableau) + - Number of records: 2,612 + - Period: 1961-2013 + - Unit: kg (Converted to 1000 Tonnes in Tableau) -## Approaches +### Approaches 1. **Define topic** - There are data of thousands of food products to select from in FAO database. The initial idea was to explore global food source and utilizations however the choices of food products are too wide and diversed, and hence it would be hard to find unified indexes that are suitable for different products. + - There are data of thousands of food products to select from in FAO database. The initial idea was to explore global food source and utilizations however the choices of food products are too wide and diversed, and hence it would be hard to find unified indexes that are suitable for different products. Once COFFFE is selected, we decided to explore the enviornmental factors of the coffee production and also listed the different aspects we would like to inspect. 2. **Identify data required for findings and extract data** - With the 5 defined areas that we selected, we dipped deeper into different databases in FAO to extract required data. + - With the 5 defined areas that we selected, we dipped deeper into different databases in FAO to extract required data. Data was downloaded as .csv files from datasets under different categories in FAO pages. Links are provided in the bottom. 3. **Understand dataset structure & Examine columns** - Examine csv files and understand each column. Read through column and values descriptions found in FAO website and ensure correct interpretions. + - Examine csv files and understand each column. Read through column and values descriptions found in FAO website and ensure correct interpretions. 4. **Data Cleaning** - Data is relatively clean and therefore tasks focused on reshaping and combining dataframes. Detail please see jupyter notebook in Coffee Production folder. + - Data is relatively clean and therefore tasks focused on reshaping and combining dataframes. Detail please see jupyter notebook in Coffee Production folder. 5. **Basic plotting followed by visaul optimization** - Import cleaned dataframes into Tableau and join dataframes. Add Calculated Fields for unit conversion. Start with making basic plotting and later on trying out different visualization tools to optimize the results. + - Import cleaned dataframes into Tableau and join dataframes. Add Calculated Fields for unit conversion. Start with making basic plotting and later on trying out different visualization tools to optimize the results. 6. **Add captions and annotations to complete storytelling process** - Group all worksheets into a story and descibe observations. + - Group all worksheets into a story and descibe observations. -## Data sources +### Data sources *[The Food and Agriculture Organization of the United Nations](http://www.fao.org/home/en) *[Food Balance sheet](http://www.fao.org/faostat/en/#data/FBS) *[Value of Agricultural Production](http://www.fao.org/faostat/en/#data/QV) @@ -76,5 +78,5 @@ In this project, we will explore some data on coffeee production environmental i -## Inspiration +### Inspiration *[The Environmental Impact of Coffee Production: What’s Your Coffee Costing The Planet?](https://www.sustainablebusinesstoolkit.com/environmental-impact-coffee-trade/) \ No newline at end of file From 1b973c0363cfbc58d7194077dbdbcf561c7574cd Mon Sep 17 00:00:00 2001 From: ivywsip <55704409+ivywsip@users.noreply.github.com> Date: Sun, 10 Nov 2019 17:00:34 +0100 Subject: [PATCH 22/30] Update Read.md Added Tableau link --- .../tableau-project/your-code/README.md | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/module-2_projects/tableau-project/your-code/README.md b/module-2_projects/tableau-project/your-code/README.md index 698fee1..acf5850 100644 --- a/module-2_projects/tableau-project/your-code/README.md +++ b/module-2_projects/tableau-project/your-code/README.md @@ -1,5 +1,5 @@ # Project: Business Intelligence with Tableau - +Tableau Public: https://public.tableau.com/profile/ivy.ip#!/vizhome/TableauProject-CoffeeProduction/Story ## Data Exploration: Coffee Production Environmental Impact @@ -9,7 +9,7 @@ Over 2.25 billion cups of coffee are consumed in the world every day. As a popular beverage and important commidity, a simple cup of coffee is affecting daily life of people as well as our planet. -In this project, we will explore some data on coffeee production environmental impact collected from The Food and Agriculture Organization of the United Nations (FAO) database. FAO provides open resources to a variety of food and agriculture data for over 245 countries from 1961 to the most recent year available, which provides us a single source of data to examine the following aspects relateed to coffee production: +In this project, we will explore some data on coffee production environmental impact collected from The Food and Agriculture Organization of the United Nations (FAO) database. FAO provides open resources to a variety of food and agriculture data for over 245 countries from 1961 to the most recent year available, which provides us a single source of data to examine the following aspects relateed to coffee production: 1. Coffee production quantity - Data from 1961 to 2013 (latest avaiable year) is collected. Throughout the past few decades, the forms of growing coffee have changed to maximize the harvest and in recent years new method to tackle the production wastes have been introduced. Therefore we will look into the data with a wide time range. @@ -26,44 +26,44 @@ In this project, we will explore some data on coffeee production environmental i ## Dataset dimenions 1. Coffee production quantity\n - Number of records: 3,975\n - Period: 1961-2013\n - Unit: 1000 Tonnes + - Number of records: 3,975\n + - Period: 1961-2013\n + - Unit: 1000 Tonnes 2. Gross Coffee Production Values - Number of records: 1,047 - Period: 1991-2013 - Unit: USD/Tonnes + - Number of records: 1,047 + - Period: 1991-2013 + - Unit: USD/Tonnes 3. Size of Primary Forest Area - Number of records: 1,776 - Period: 1961-2013 - Unit: Ha (Converted to sq. km in Tableau) + - Number of records: 1,776 + - Period: 1961-2013 + - Unit: Ha (Converted to sq. km in Tableau) 4. Pesticide use - Number of records: 1,533 - Period: 1990-2013 - Unit: Tonnes + - Number of records: 1,533 + - Period: 1990-2013 + - Unit: Tonnes 5. Crop residue amount - Number of records: 2,612 - Period: 1961-2013 - Unit: kg (Converted to 1000 Tonnes in Tableau) + - Number of records: 2,612 + - Period: 1961-2013 + - Unit: kg (Converted to 1000 Tonnes in Tableau) ## Approaches 1. **Define topic** - There are data of thousands of food products to select from in FAO database. The initial idea was to explore global food source and utilizations however the choices of food products are too wide and diversed, and hence it would be hard to find unified indexes that are suitable for different products. - Once COFFFE is selected, we decided to explore the enviornmental factors of the coffee production and also listed the different aspects we would like to inspect. + - There are data of thousands of food products to select from in FAO database. The initial idea was to explore global food source and utilizations however the choices of food products are too wide and diversed, and hence it would be hard to find unified indexes that are suitable for different products. + - Once COFFFE is selected, we decided to explore the enviornmental factors of the coffee production and also listed the different aspects we would like to inspect. 2. **Identify data required for findings and extract data** - With the 5 defined areas that we selected, we dipped deeper into different databases in FAO to extract required data. - Data was downloaded as .csv files from datasets under different categories in FAO pages. Links are provided in the bottom. + - With the 5 defined areas that we selected, we dipped deeper into different databases in FAO to extract required data. + - Data was downloaded as .csv files from datasets under different categories in FAO pages. Links are provided in the bottom. 3. **Understand dataset structure & Examine columns** - Examine csv files and understand each column. Read through column and values descriptions found in FAO website and ensure correct interpretions. + - Examine csv files and understand each column. Read through column and values descriptions found in FAO website and ensure correct interpretions. 4. **Data Cleaning** - Data is relatively clean and therefore tasks focused on reshaping and combining dataframes. Detail please see jupyter notebook in Coffee Production folder. + - Data is relatively clean and therefore tasks focused on reshaping and combining dataframes. Detail please see jupyter notebook in Coffee Production folder. 5. **Basic plotting followed by visaul optimization** - Import cleaned dataframes into Tableau and join dataframes. Add Calculated Fields for unit conversion. Start with making basic plotting and later on trying out different visualization tools to optimize the results. + - Import cleaned dataframes into Tableau and join dataframes. Add Calculated Fields for unit conversion. Start with making basic plotting and later on trying out different visualization tools to optimize the results. 6. **Add captions and annotations to complete storytelling process** - Group all worksheets into a story and descibe observations. + - Group all worksheets into a story and descibe observations. From 1233bb61f371d589b7b131efdbdacd09457aa8ca Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sun, 17 Nov 2019 16:33:44 +0100 Subject: [PATCH 23/30] Added project --- .../your-code/main.ipynb | 728 ++- .../your-code/main.txt | 1 + .../your_code/main.ipynb | 2105 ++++++- .../your_code/main.ipynb | 26 +- .../lab-regression-analysis/your-code.ipynb | 1411 ++++- .../your-code/main.ipynb | 4978 ++++++++--------- .../your-code/main.ipynb | 155 +- .../your-code/Statistic Analysis.ipynb | 2160 +++++++ .../your-code/data_description.txt | 523 ++ .../your-code/train.csv | 1461 +++++ 10 files changed, 10734 insertions(+), 2814 deletions(-) create mode 100644 module-2_projects/statistical-analysis-project/your-code/Statistic Analysis.ipynb create mode 100644 module-2_projects/statistical-analysis-project/your-code/data_description.txt create mode 100644 module-2_projects/statistical-analysis-project/your-code/train.csv diff --git a/module-2_labs/lab-hypothesis-testing/your-code/main.ipynb b/module-2_labs/lab-hypothesis-testing/your-code/main.ipynb index 4128c1e..96d2bfd 100644 --- a/module-2_labs/lab-hypothesis-testing/your-code/main.ipynb +++ b/module-2_labs/lab-hypothesis-testing/your-code/main.ipynb @@ -16,7 +16,9 @@ "metadata": {}, "outputs": [], "source": [ - "# import numpy and pandas\n" + "# import numpy and pandas\n", + "import numpy as np\n", + "import pandas as pd" ] }, { @@ -30,7 +32,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -48,11 +50,131 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameJob TitlesDepartmentFull or Part-TimeSalary or HourlyTypical HoursAnnual SalaryHourly Rate
0AARON, JEFFERY MSERGEANTPOLICEFSalaryNaN101442.0NaN
1AARON, KARINAPOLICE OFFICER (ASSIGNED AS DETECTIVE)POLICEFSalaryNaN94122.0NaN
2AARON, KIMBERLEI RCHIEF CONTRACT EXPEDITERGENERAL SERVICESFSalaryNaN101592.0NaN
3ABAD JR, VICENTE MCIVIL ENGINEER IVWATER MGMNTFSalaryNaN110064.0NaN
4ABASCAL, REECE ETRAFFIC CONTROL AIDE-HOURLYOEMCPHourly20.0NaN19.86
\n", + "
" + ], + "text/plain": [ + " Name Job Titles \\\n", + "0 AARON, JEFFERY M SERGEANT \n", + "1 AARON, KARINA POLICE OFFICER (ASSIGNED AS DETECTIVE) \n", + "2 AARON, KIMBERLEI R CHIEF CONTRACT EXPEDITER \n", + "3 ABAD JR, VICENTE M CIVIL ENGINEER IV \n", + "4 ABASCAL, REECE E TRAFFIC CONTROL AIDE-HOURLY \n", + "\n", + " Department Full or Part-Time Salary or Hourly Typical Hours \\\n", + "0 POLICE F Salary NaN \n", + "1 POLICE F Salary NaN \n", + "2 GENERAL SERVICES F Salary NaN \n", + "3 WATER MGMNT F Salary NaN \n", + "4 OEMC P Hourly 20.0 \n", + "\n", + " Annual Salary Hourly Rate \n", + "0 101442.0 NaN \n", + "1 94122.0 NaN \n", + "2 101592.0 NaN \n", + "3 110064.0 NaN \n", + "4 NaN 19.86 " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "salaries.head()" ] }, { @@ -64,11 +186,31 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Name 0\n", + "Job Titles 0\n", + "Department 0\n", + "Full or Part-Time 0\n", + "Salary or Hourly 0\n", + "Typical Hours 25161\n", + "Annual Salary 8022\n", + "Hourly Rate 25161\n", + "dtype: int64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "salaries.isnull().sum()" ] }, { @@ -80,12 +222,25 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Salary 25161\n", + "Hourly 8022\n", + "Name: Salary or Hourly, dtype: int64" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "salaries['Salary or Hourly'].value_counts()\n" ] }, { @@ -104,11 +259,58 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "POLICE 13414\n", + "FIRE 4641\n", + "STREETS & SAN 2198\n", + "OEMC 2102\n", + "WATER MGMNT 1879\n", + "AVIATION 1629\n", + "TRANSPORTN 1140\n", + "PUBLIC LIBRARY 1015\n", + "GENERAL SERVICES 980\n", + "FAMILY & SUPPORT 615\n", + "FINANCE 560\n", + "HEALTH 488\n", + "CITY COUNCIL 411\n", + "LAW 407\n", + "BUILDINGS 269\n", + "COMMUNITY DEVELOPMENT 207\n", + "BUSINESS AFFAIRS 171\n", + "COPA 116\n", + "BOARD OF ELECTION 107\n", + "DoIT 99\n", + "PROCUREMENT 92\n", + "INSPECTOR GEN 87\n", + "MAYOR'S OFFICE 85\n", + "CITY CLERK 84\n", + "ANIMAL CONTRL 81\n", + "HUMAN RESOURCES 79\n", + "CULTURAL AFFAIRS 65\n", + "BUDGET & MGMT 46\n", + "ADMIN HEARNG 39\n", + "DISABILITIES 28\n", + "TREASURER 22\n", + "HUMAN RELATIONS 16\n", + "BOARD OF ETHICS 8\n", + "POLICE BOARD 2\n", + "LICENSE APPL COMM 1\n", + "Name: Department, dtype: int64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "salaries['Department'].value_counts()" ] }, { @@ -122,11 +324,47 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 7, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "32.78855771628024" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "from scipy import stats \n", + "salaries.head()\n", + "salaries[salaries['Salary or Hourly']=='Hourly']['Hourly Rate'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Ttest_1sampResult(statistic=20.6198057854942, pvalue=4.3230240486229894e-92)" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "stats.ttest_1samp(salaries[salaries['Salary or Hourly']=='Hourly']['Hourly Rate'],30)\n", + "#To prove if the mean of the population = 30. Asssume there is no difference and see how likely it happens by chance. \n", + "#Result: With p value, we can claim that the population mean is not 30." ] }, { @@ -140,11 +378,23 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 9, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Ttest_1sampResult(statistic=3.081997005712994, pvalue=0.0020603403550965137)" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "stats.ttest_1samp(salaries[(salaries['Department']=='POLICE')&(salaries['Salary or Hourly']=='Salary')]['Annual Salary'],86000)\n" ] }, { @@ -156,11 +406,267 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 10, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Salary or HourlyHourlySalary
Department
STREETS & SAN1862336
WATER MGMNT1513366
OEMC1273829
AVIATION1082547
GENERAL SERVICES765215
TRANSPORTN725415
PUBLIC LIBRARY299716
FAMILY & SUPPORT287328
CITY COUNCIL64347
FINANCE44516
LAW40367
ANIMAL CONTRL1962
POLICE1013404
MAYOR'S OFFICE877
BUSINESS AFFAIRS7164
CULTURAL AFFAIRS758
COMMUNITY DEVELOPMENT4203
HUMAN RESOURCES475
HEALTH3485
PROCUREMENT290
FIRE24639
BUDGET & MGMT244
HUMAN RELATIONS016
INSPECTOR GEN087
DoIT099
LICENSE APPL COMM01
DISABILITIES028
COPA0116
CITY CLERK084
POLICE BOARD02
BUILDINGS0269
BOARD OF ETHICS08
BOARD OF ELECTION0107
TREASURER022
ADMIN HEARNG039
\n", + "
" + ], + "text/plain": [ + "Salary or Hourly Hourly Salary\n", + "Department \n", + "STREETS & SAN 1862 336\n", + "WATER MGMNT 1513 366\n", + "OEMC 1273 829\n", + "AVIATION 1082 547\n", + "GENERAL SERVICES 765 215\n", + "TRANSPORTN 725 415\n", + "PUBLIC LIBRARY 299 716\n", + "FAMILY & SUPPORT 287 328\n", + "CITY COUNCIL 64 347\n", + "FINANCE 44 516\n", + "LAW 40 367\n", + "ANIMAL CONTRL 19 62\n", + "POLICE 10 13404\n", + "MAYOR'S OFFICE 8 77\n", + "BUSINESS AFFAIRS 7 164\n", + "CULTURAL AFFAIRS 7 58\n", + "COMMUNITY DEVELOPMENT 4 203\n", + "HUMAN RESOURCES 4 75\n", + "HEALTH 3 485\n", + "PROCUREMENT 2 90\n", + "FIRE 2 4639\n", + "BUDGET & MGMT 2 44\n", + "HUMAN RELATIONS 0 16\n", + "INSPECTOR GEN 0 87\n", + "DoIT 0 99\n", + "LICENSE APPL COMM 0 1\n", + "DISABILITIES 0 28\n", + "COPA 0 116\n", + "CITY CLERK 0 84\n", + "POLICE BOARD 0 2\n", + "BUILDINGS 0 269\n", + "BOARD OF ETHICS 0 8\n", + "BOARD OF ELECTION 0 107\n", + "TREASURER 0 22\n", + "ADMIN HEARNG 0 39" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "pd.crosstab(salaries['Department'],salaries['Salary or Hourly']).sort_values(by='Hourly',ascending=False)" ] }, { @@ -172,11 +678,26 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "Ttest_1sampResult(statistic=-9.567447887848152, pvalue=3.3378530564707717e-21)" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "stats.ttest_1samp(salaries[(salaries['Department']=='STREETS & SAN')&\n", + " (salaries['Salary or Hourly']=='Hourly')]['Hourly Rate'],35)\n", + "# t-value is negative, meaning that mean is lower than 35. p value is very small so we can claim that it is likely that \n", + "# the hourly wage is highly different from 35. " ] }, { @@ -200,11 +721,49 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 12, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(32.52345834987168, 33.053657082688794)" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "df = salaries[salaries['Salary or Hourly']=='Hourly']['Hourly Rate']\n", + "mean = salaries[salaries['Salary or Hourly']=='Hourly']['Hourly Rate'].mean()\n", + "sem = stats.sem(salaries[salaries['Salary or Hourly']=='Hourly']['Hourly Rate'])\n", + "stats.t.interval(0.95,len(df),loc=mean,scale=sem)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(32.52345834987168, 33.053657082688794)" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = salaries[salaries['Salary or Hourly']=='Hourly']['Hourly Rate']\n", + "mean = salaries[salaries['Salary or Hourly']=='Hourly']['Hourly Rate'].mean()\n", + "sem = stats.sem(salaries[salaries['Salary or Hourly']=='Hourly']['Hourly Rate'])\n", + "stats.t.interval(0.95,len(df),loc=mean,scale=sem)" ] }, { @@ -216,11 +775,26 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "(86526.99656823902, 87047.00301206384)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here:\n" + "# Your code here:\n", + "df = salaries[salaries['Salary or Hourly']=='Salary']['Annual Salary']\n", + "mean = salaries[salaries['Salary or Hourly']=='Salary']['Annual Salary'].mean()\n", + "sem = stats.sem(salaries[salaries['Salary or Hourly']=='Salary']['Annual Salary'])\n", + "stats.t.interval(0.95,len(df),loc=mean,scale=sem)" ] }, { @@ -238,12 +812,96 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.24175029382515142" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Your code here:\n", + "from statsmodels.stats.proportion import proportions_ztest\n", + "len(salaries[salaries['Salary or Hourly']=='Hourly'])/len(salaries)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(-3.5099964213703005, 0.0004481127249057967)" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "proportions_ztest(len(salaries[salaries['Salary or Hourly']=='Hourly']),len(salaries),0.25)" + ] + }, + { + "cell_type": "code", + "execution_count": null, "metadata": {}, "outputs": [], "source": [ - "# Your code here:\n" + "\n" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -262,7 +920,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.3" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-intro-to-bi-and-tableau/your-code/main.txt b/module-2_labs/lab-intro-to-bi-and-tableau/your-code/main.txt index e69de29..b6e8bfb 100644 --- a/module-2_labs/lab-intro-to-bi-and-tableau/your-code/main.txt +++ b/module-2_labs/lab-intro-to-bi-and-tableau/your-code/main.txt @@ -0,0 +1 @@ +https://public.tableau.com/profile/ivy.ip#!/vizhome/LabIntroductiontoBIandTableau_15730399210740/NumberofRecords?publish=yes \ No newline at end of file diff --git a/module-2_labs/lab-pivot-table-and-correlation/your_code/main.ipynb b/module-2_labs/lab-pivot-table-and-correlation/your_code/main.ipynb index d8904d1..dccee02 100644 --- a/module-2_labs/lab-pivot-table-and-correlation/your_code/main.ipynb +++ b/module-2_labs/lab-pivot-table-and-correlation/your_code/main.ipynb @@ -21,13 +21,15 @@ }, { "cell_type": "code", - "execution_count": 1, - "metadata": { - "collapsed": true - }, + "execution_count": 187, + "metadata": {}, "outputs": [], "source": [ - "# import libraries here" + "# import libraries here\n", + "import pandas as pd\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns" ] }, { @@ -46,13 +48,156 @@ }, { "cell_type": "code", - "execution_count": 2, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameDepartmentEducationGenderTitleYearsSalary
0JoseITBachelorManalyst135
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
3SoniaHRBachelorFanalyst435
4SamuelSalesMasterMassociate355
5EvaSalesBachelorFassociate255
6CarlosITMasterMVP870
7PedroITPhdMassociate760
8AnaHRMasterFVP870
\n", + "
" + ], + "text/plain": [ + " Name Department Education Gender Title Years Salary\n", + "0 Jose IT Bachelor M analyst 1 35\n", + "1 Maria IT Master F analyst 2 30\n", + "2 David HR Master M analyst 2 30\n", + "3 Sonia HR Bachelor F analyst 4 35\n", + "4 Samuel Sales Master M associate 3 55\n", + "5 Eva Sales Bachelor F associate 2 55\n", + "6 Carlos IT Master M VP 8 70\n", + "7 Pedro IT Phd M associate 7 60\n", + "8 Ana HR Master F VP 8 70" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "employee = pd.read_csv('Employee.csv')\n", + "employee" ] }, { @@ -65,24 +210,87 @@ }, { "cell_type": "code", - "execution_count": 3, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here-1st way" + "execution_count": 198, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DepartmentHRITSales
Salary45.048.7555.0
\n", + "
" + ], + "text/plain": [ + "Department HR IT Sales\n", + "Salary 45.0 48.75 55.0" + ] + }, + "execution_count": 198, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here-1st way\n", + "# table = pd.pivot_table(df, values='D', index=['A', 'B'],\n", + "# ... columns=['C'], aggfunc=np.sum)\n", + "\n", + "pd.pivot_table(employee, values='Salary',columns =['Department'],aggfunc=np.mean)" ] }, { "cell_type": "code", - "execution_count": 4, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here-2nd way" + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Department\n", + "HR 45.00\n", + "IT 48.75\n", + "Sales 55.00\n", + "Name: Salary, dtype: float64" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here-2nd way\n", + "employee.groupby('Department')['Salary'].mean()" ] }, { @@ -94,13 +302,89 @@ }, { "cell_type": "code", - "execution_count": 5, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Salary
DepartmentHRITSales
Title
VP70.070.0NaN
analyst32.532.5NaN
associateNaN60.055.0
\n", + "
" + ], + "text/plain": [ + " Salary \n", + "Department HR IT Sales\n", + "Title \n", + "VP 70.0 70.0 NaN\n", + "analyst 32.5 32.5 NaN\n", + "associate NaN 60.0 55.0" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "pd.pivot_table(employee, values=['Salary'],index=['Title'],columns=['Department'],aggfunc=np.mean)" ] }, { @@ -113,13 +397,140 @@ }, { "cell_type": "code", - "execution_count": 6, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 207, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Salary
Years123478
DepartmentTitle
HRVPNaNNaNNaNNaNNaN70.0
analystNaN30.0NaN35.0NaNNaN
ITVPNaNNaNNaNNaNNaN70.0
analyst35.030.0NaNNaNNaNNaN
associateNaNNaNNaNNaN60.0NaN
SalesassociateNaN55.055.0NaNNaNNaN
\n", + "
" + ], + "text/plain": [ + " Salary \n", + "Years 1 2 3 4 7 8\n", + "Department Title \n", + "HR VP NaN NaN NaN NaN NaN 70.0\n", + " analyst NaN 30.0 NaN 35.0 NaN NaN\n", + "IT VP NaN NaN NaN NaN NaN 70.0\n", + " analyst 35.0 30.0 NaN NaN NaN NaN\n", + " associate NaN NaN NaN NaN 60.0 NaN\n", + "Sales associate NaN 55.0 55.0 NaN NaN NaN" + ] + }, + "execution_count": 207, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "pd.pivot_table(employee, values=['Salary'],index=['Department','Title'],columns=['Years'],aggfunc=np.mean)" ] }, { @@ -131,13 +542,107 @@ }, { "cell_type": "code", - "execution_count": 7, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 204, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameSalary
DepartmentHRITSalesHRITSales
Title
VP1.01.0NaN70.070.0NaN
analyst2.02.0NaN32.532.5NaN
associateNaN1.02.0NaN60.055.0
\n", + "
" + ], + "text/plain": [ + " Name Salary \n", + "Department HR IT Sales HR IT Sales\n", + "Title \n", + "VP 1.0 1.0 NaN 70.0 70.0 NaN\n", + "analyst 2.0 2.0 NaN 32.5 32.5 NaN\n", + "associate NaN 1.0 2.0 NaN 60.0 55.0" + ] + }, + "execution_count": 204, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "pd.pivot_table(employee, values=['Name','Salary'],index=['Title']\n", + " ,columns=['Department'],aggfunc={ 'Name':'count',\n", + " 'Salary':np.mean})" ] }, { @@ -149,13 +654,149 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 36, "metadata": { - "collapsed": false + "scrolled": true }, - "outputs": [], - "source": [ - "# your answer here" + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/ironhack/lib/python3.7/site-packages/pandas/core/reshape/pivot.py:56: FutureWarning: Sorting because non-concatenation axis is not aligned. A future version\n", + "of pandas will change to not sort by default.\n", + "\n", + "To accept the future behavior, pass 'sort=False'.\n", + "\n", + "To retain the current behavior and silence the warning, pass 'sort=True'.\n", + "\n", + " return concat(pieces, keys=keys, axis=1)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
medianminmaxstd
SalarySalarySalarySalary
DepartmentHRITSalesHRITSalesHRITSalesHRITSales
VP70.070.0NaN70.070.0NaN70.070.0NaNNaNNaNNaN
analyst32.532.5NaN30.030.0NaN35.035.0NaN3.5355343.535534NaN
associateNaN60.055.0NaN60.055.0NaN60.055.0NaNNaN0.0
\n", + "
" + ], + "text/plain": [ + " median min max std \\\n", + " Salary Salary Salary Salary \n", + "Department HR IT Sales HR IT Sales HR IT Sales HR \n", + "VP 70.0 70.0 NaN 70.0 70.0 NaN 70.0 70.0 NaN NaN \n", + "analyst 32.5 32.5 NaN 30.0 30.0 NaN 35.0 35.0 NaN 3.535534 \n", + "associate NaN 60.0 55.0 NaN 60.0 55.0 NaN 60.0 55.0 NaN \n", + "\n", + " \n", + " \n", + "Department IT Sales \n", + "VP NaN NaN \n", + "analyst 3.535534 NaN \n", + "associate NaN 0.0 " + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "pd.pivot_table(employee, values=['Salary'],index=['Title']\n", + " ,columns=['Department'],aggfunc=[np.median,min,max,np.std])" ] }, { @@ -167,13 +808,169 @@ }, { "cell_type": "code", - "execution_count": 9, - "metadata": { - "collapsed": false - }, + "execution_count": 168, + "metadata": {}, "outputs": [], "source": [ - "# your answer here" + "# your answer here\n", + "# There is no difference on Salary of each job position among departments\n", + "\n", + "pivot = pd.pivot_table(employee, values=['Salary'],index=['Title']\n", + " ,columns=['Department'],aggfunc=[np.median,min,max,np.std])\n", + "\n", + "stats=['median','min','max','std']\n", + "rows =['VP','analyst','associate']\n", + "columns = ['HR','IT','Sales']\n", + "\n", + "for s in stats:\n", + " for r in rows:\n", + " for c in columns:\n", + " if pd.isnull(pivot.at[r,(s,'Salary',c)]):\n", + " pivot.at[r,(s,'Salary',c)]=pivot.at[r,(s,'Salary','IT')]" + ] + }, + { + "cell_type": "code", + "execution_count": 170, + "metadata": {}, + "outputs": [], + "source": [ + "rows =['VP','analyst','associate']\n", + "columns = ['HR','IT','Sales']\n", + "\n", + "for r in rows:\n", + " for c in columns:\n", + " if pd.isnull(pivot.at[r,('std','Salary',c)]):\n", + " pivot.at[r,(s,'Salary',c)]=0" + ] + }, + { + "cell_type": "code", + "execution_count": 171, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
medianminmaxstd
SalarySalarySalarySalary
DepartmentHRITSalesHRITSalesHRITSalesHRITSales
VP70.070.070.070.070.070.070.070.070.00.0000000.0000000.000000
analyst32.532.532.530.030.030.035.035.035.03.5355343.5355343.535534
associate60.060.055.060.060.055.060.060.055.00.0000000.0000000.000000
\n", + "
" + ], + "text/plain": [ + " median min max std \\\n", + " Salary Salary Salary Salary \n", + "Department HR IT Sales HR IT Sales HR IT Sales HR \n", + "VP 70.0 70.0 70.0 70.0 70.0 70.0 70.0 70.0 70.0 0.000000 \n", + "analyst 32.5 32.5 32.5 30.0 30.0 30.0 35.0 35.0 35.0 3.535534 \n", + "associate 60.0 60.0 55.0 60.0 60.0 55.0 60.0 60.0 55.0 0.000000 \n", + "\n", + " \n", + " \n", + "Department IT Sales \n", + "VP 0.000000 0.000000 \n", + "analyst 3.535534 3.535534 \n", + "associate 0.000000 0.000000 " + ] + }, + "execution_count": 171, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pivot" ] }, { @@ -185,13 +982,68 @@ }, { "cell_type": "code", - "execution_count": 10, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 181, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DepartmentHRITSales
Salary135195110
Title342
\n", + "
" + ], + "text/plain": [ + "Department HR IT Sales\n", + "Salary 135 195 110\n", + "Title 3 4 2" + ] + }, + "execution_count": 181, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "pd.pivot_table(employee, values=['Title','Salary']\n", + " ,columns=['Department'],aggfunc={ 'Title':np.size,\n", + " 'Salary':np.sum})" ] }, { @@ -203,13 +1055,107 @@ }, { "cell_type": "code", - "execution_count": 11, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 172, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SalaryYears
DepartmentHRITSalesHRITSales
Title
VP70.070.0NaN8.08.0NaN
analyst32.532.5NaN6.03.0NaN
associateNaN60.055.0NaN7.05.0
\n", + "
" + ], + "text/plain": [ + " Salary Years \n", + "Department HR IT Sales HR IT Sales\n", + "Title \n", + "VP 70.0 70.0 NaN 8.0 8.0 NaN\n", + "analyst 32.5 32.5 NaN 6.0 3.0 NaN\n", + "associate NaN 60.0 55.0 NaN 7.0 5.0" + ] + }, + "execution_count": 172, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "pd.pivot_table(employee, values=['Years','Salary'],index=['Title'],\n", + " columns=['Department'],aggfunc={ 'Years':np.sum,\n", + " 'Salary':np.mean})" ] }, { @@ -225,22 +1171,139 @@ }, { "cell_type": "code", - "execution_count": 12, - "metadata": { - "collapsed": false - }, + "execution_count": 96, + "metadata": {}, "outputs": [], "source": [ "# your answer here--Your custom function here\n", - " " + "\n", + "def mean_salary_without_max(department):\n", + " emp_c=employee.copy()\n", + " emp_c=emp_c.drop(emp_c[(emp_c['Department']==department) & \n", + " (emp_c['Salary']==pd.pivot_table(emp_c, values=['Salary'],\n", + " columns=['Department'],aggfunc=max)[department][0])].index)\n", + " return pd.pivot_table(emp_c,values=['Salary'],columns=['Department'],aggfunc=np.mean)\n", + " \n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 208, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DepartmentHRITSales
Salary45.041.66666755.0
\n", + "
" + ], + "text/plain": [ + "Department HR IT Sales\n", + "Salary 45.0 41.666667 55.0" + ] + }, + "execution_count": 208, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "mean_salary_without_max('IT')" + ] + }, + { + "cell_type": "code", + "execution_count": 89, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DepartmentHRITSales
Salary45.048.7555.0
\n", + "
" + ], + "text/plain": [ + "Department HR IT Sales\n", + "Salary 45.0 48.75 55.0" + ] + }, + "execution_count": 89, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# For comparison\n", + "pd.pivot_table(employee,values=['Salary'],columns=['Department'],aggfunc=np.mean)" ] }, { "cell_type": "code", "execution_count": 13, - "metadata": { - "collapsed": false - }, + "metadata": {}, "outputs": [], "source": [ "# your answer here" @@ -262,14 +1325,14 @@ }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 99, "metadata": { - "collapsed": false, "scrolled": true }, "outputs": [], "source": [ - "# your answer here" + "# your answer here\n", + "fitbit = pd.read_csv('Fitbit.csv')" ] }, { @@ -282,24 +1345,263 @@ }, { "cell_type": "code", - "execution_count": 15, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 100, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Date object\n", + "Calorie burned int64\n", + "Steps int64\n", + "Distance float64\n", + "Floors int64\n", + "Minutes Sedentary float64\n", + "Minutes Lightly Active int64\n", + "Minutes Fairly Active int64\n", + "Minutes Very Active int64\n", + "Activity Calories int64\n", + "MinutesOfSleep int64\n", + "MinutesOfBeingAwake int64\n", + "NumberOfAwakings int64\n", + "LengthOfRestInMinutes int64\n", + "dtype: object" + ] + }, + "execution_count": 100, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "fitbit.dtypes" ] }, { "cell_type": "code", - "execution_count": 16, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 101, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Calorie burnedStepsDistanceFloorsMinutes SedentaryMinutes Lightly ActiveMinutes Fairly ActiveMinutes Very ActiveActivity CaloriesMinutesOfSleepMinutesOfBeingAwakeNumberOfAwakingsLengthOfRestInMinutes
count367.000000367.000000367.000000367.000000367.000000367.000000367.000000367.000000367.000000367.000000367.000000367.000000367.000000
mean2741.50136210121.5885568.54912811.724796563.934482236.40599526.16348835.7220712044.147139290.47956428.00817416.196185321.343324
std916.3070365594.8362253.40988110.337370294.79314586.53137620.31945631.0066822041.267168154.75232818.54141510.757622170.786726
min179.0000000.0000000.0000000.0000001.0020000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.000000
25%2698.0000006730.5000006.1550005.000000520.000000179.0000008.00000010.5000001218.500000224.00000014.0000007.000000248.000000
50%2974.00000010413.0000008.29000011.000000663.000000226.00000024.00000029.0000001553.000000337.00000029.00000016.000000370.000000
75%3233.00000013916.50000010.56000016.000000756.500000290.00000041.50000054.0000001927.500000400.50000041.50000024.000000440.500000
max4351.00000026444.00000020.450000101.000000998.000000472.000000101.000000153.0000009830.000000553.00000078.00000045.000000607.000000
\n", + "
" + ], + "text/plain": [ + " Calorie burned Steps Distance Floors \\\n", + "count 367.000000 367.000000 367.000000 367.000000 \n", + "mean 2741.501362 10121.588556 8.549128 11.724796 \n", + "std 916.307036 5594.836225 3.409881 10.337370 \n", + "min 179.000000 0.000000 0.000000 0.000000 \n", + "25% 2698.000000 6730.500000 6.155000 5.000000 \n", + "50% 2974.000000 10413.000000 8.290000 11.000000 \n", + "75% 3233.000000 13916.500000 10.560000 16.000000 \n", + "max 4351.000000 26444.000000 20.450000 101.000000 \n", + "\n", + " Minutes Sedentary Minutes Lightly Active Minutes Fairly Active \\\n", + "count 367.000000 367.000000 367.000000 \n", + "mean 563.934482 236.405995 26.163488 \n", + "std 294.793145 86.531376 20.319456 \n", + "min 1.002000 0.000000 0.000000 \n", + "25% 520.000000 179.000000 8.000000 \n", + "50% 663.000000 226.000000 24.000000 \n", + "75% 756.500000 290.000000 41.500000 \n", + "max 998.000000 472.000000 101.000000 \n", + "\n", + " Minutes Very Active Activity Calories MinutesOfSleep \\\n", + "count 367.000000 367.000000 367.000000 \n", + "mean 35.722071 2044.147139 290.479564 \n", + "std 31.006682 2041.267168 154.752328 \n", + "min 0.000000 0.000000 0.000000 \n", + "25% 10.500000 1218.500000 224.000000 \n", + "50% 29.000000 1553.000000 337.000000 \n", + "75% 54.000000 1927.500000 400.500000 \n", + "max 153.000000 9830.000000 553.000000 \n", + "\n", + " MinutesOfBeingAwake NumberOfAwakings LengthOfRestInMinutes \n", + "count 367.000000 367.000000 367.000000 \n", + "mean 28.008174 16.196185 321.343324 \n", + "std 18.541415 10.757622 170.786726 \n", + "min 0.000000 0.000000 0.000000 \n", + "25% 14.000000 7.000000 248.000000 \n", + "50% 29.000000 16.000000 370.000000 \n", + "75% 41.500000 24.000000 440.500000 \n", + "max 78.000000 45.000000 607.000000 " + ] + }, + "execution_count": 101, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "fitbit.describe()" ] }, { @@ -311,13 +1613,23 @@ }, { "cell_type": "code", - "execution_count": 17, - "metadata": { - "collapsed": false - }, - "outputs": [], + "execution_count": 105, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.5714518481062608" + ] + }, + "execution_count": 105, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "fitbit['Minutes Very Active'].corr(fitbit['Steps'])" ] }, { @@ -332,13 +1644,27 @@ }, { "cell_type": "code", - "execution_count": 18, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 109, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# your answer here\n", + "\n", + "fig, ax = plt.subplots(figsize=(10,6))\n", + "plt.scatter(x=fitbit['Minutes Very Active'], y=fitbit['Steps']);" ] }, { @@ -356,7 +1682,8 @@ }, "outputs": [], "source": [ - "# your comment here" + "# your comment here\n", + "# Minute Very Active is postively correlated with Steps" ] }, { @@ -368,13 +1695,23 @@ }, { "cell_type": "code", - "execution_count": 20, - "metadata": { - "collapsed": false - }, - "outputs": [], + "execution_count": 110, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.07690608062990091" + ] + }, + "execution_count": 110, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "fitbit['Minutes Sedentary'].corr(fitbit['Steps'])" ] }, { @@ -386,13 +1723,27 @@ }, { "cell_type": "code", - "execution_count": 21, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 111, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# your answer here\n", + "\n", + "fig, ax = plt.subplots(figsize=(10,6))\n", + "plt.scatter(x=fitbit['Minutes Sedentary'], y=fitbit['Steps']);" ] }, { @@ -403,7 +1754,8 @@ }, "outputs": [], "source": [ - "# Your comment here" + "# Your comment here\n", + "# The two variables are not correlated " ] }, { @@ -415,13 +1767,23 @@ }, { "cell_type": "code", - "execution_count": 23, - "metadata": { - "collapsed": false - }, - "outputs": [], + "execution_count": 112, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.1309856595083638" + ] + }, + "execution_count": 112, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here" + "# your answer here\n", + "fitbit['MinutesOfSleep'].corr(fitbit['Steps'])" ] }, { @@ -433,13 +1795,26 @@ }, { "cell_type": "code", - "execution_count": 24, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 113, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAmMAAAFlCAYAAACnee/9AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3df5Bd5X3n+c9XrWvSwrFbxNgFFwiUQ2AsU0ZFF6FK/xh5x2KHAD3YHvBMYqrWtUy5nBrjdWnTpFxB7MRFZzUx3kx2XMuMXcaxY4PBaYsIRnEsUqlSGXArLRbLoA0TCKihDA6IONDgVuvZP+690u3T59zz454fzznn/apSqfvcvvee85xf3/M83+d5zDknAAAAVGND1SsAAADQZgRjAAAAFSIYAwAAqBDBGAAAQIUIxgAAACpEMAYAAFChjVWvQFbvete73Pnnn1/1agAAAMQ6ePDgz5xzZ4a9Vttg7Pzzz9fCwkLVqwEAABDLzP4h6jWaKQEAACpEMAYAAFAhgjEAAIAKEYwBAABUiGAMAACgQgRjAAAAFSIYAwAAqBDBGAAAQIUIxgAAACpU2xH4AQD5ml9c0u59R/TCsWWdPTWpnTsu0szWbtWrBTQewRgAQPOLS7r1u09oeWVVkrR0bFm3fvcJSSIgAwpGMyUAQLv3HTkZiA0sr6xq974jFa0R0B4EYwAAvXBsOdVyAPkhGAMA6OypyVTLAeSHYAwAoJ07LtJkZ2LNssnOhHbuuKiiNQLagwR+AMDJJH16UwLlIxgDAEjqBWQEX0D5aKYEAACoEMEYAABAhWimBACUhlH+gfUIxgAApWCUfyAcwRgAIHdhNWCjRvknGEObEYwBAHIVVQMWDMQGGOUfbUcCPwAgV1E1YBNmoX/PKP9oO4IxAECuomq6Vp1jlH8gRGwwZmbnmtnDZvakmR02s8/0l+8ysyUzO9T/96+G3nOrmT1tZkfMbMfQ8svM7In+a39s1ntMMrPTzOye/vJHzez8/DcVAFCGqJqu7tSk7rj+EnWnJmVDv5MvhrZLkjN2XNLnnHN/a2a/LOmgmX2//9qdzrn/NPzHZvY+STdK2iLpbEl/ZWa/7pxblfRlSTdLekTSg5KukvSQpE9KetU592tmdqOkP5R0w/ibBwAo284dF63LERvUgDHKP7BebM2Yc+5F59zf9n/+uaQnJY06k66T9G3n3FvOuWckPS3pcjM7S9I7nHM/dM45SV+XNDP0nrv7P98n6UODWjMAQL3MbO1SAwakkKo3Zb/5cKukRyVtk/Q7ZvYJSQvq1Z69ql6g9sjQ2472l630fw4uV///5yXJOXfczF6T9CuSfpZucwAAPqAGDEgucQK/mb1d0v2SbnHO/ZN6TY7vlXSppBcl/dHgT0Pe7kYsH/We4DrcbGYLZrbw8ssvJ111AAAAbyUKxsyso14g9k3n3HclyTn3U+fcqnPuhKT/Kuny/p8flXTu0NvPkfRCf/k5IcvXvMfMNkp6p6RXguvhnLvLOTftnJs+88wzk20hAACAx5L0pjRJX5H0pHPui0PLzxr6s38t6cf9n/dIurHfQ/ICSRdKesw596Kkn5vZFf3P/ISk7w2956b+zx+VtL+fVwYAANBoSXLGtkn6bUlPmNmh/rLfk/RxM7tUvebEZyX9e0lyzh02s3sl/US9npif7veklKRPSfqapEn1elE+1F/+FUl/amZPq1cjduN4mwUAAFAPVtcKqOnpabewsFD1agAAAMQys4POuemw1xiBHwAAoEIEYwAAABUiGAMAAKgQwRgAAECFCMYAAAAqRDAGAABQIYIxAACAChGMAQAAVIhgDAAAoEIEYwAAABUiGAMAAKhQkonC0TLzi0vave+IXji2rLOnJrVzx0Wa2dqterWAzDimAfiMYAxrzC8u6dbvPqHllVVJ0tKxZd363SckiZsXaoljGoDvaKbEGrv3HTl50xpYXlnV7n1HKlojYDwc0wB8RzCGNV44tpxqOeA7jmkAviMYwxpnT02mWg74jmMagO8IxrDGzh0XabIzsWbZZGdCO3dcVNEaAePhmAbgOxL4scYgoZmeZ2gKjmkAvjPnXNXrkMn09LRbWFioejUAAABimdlB59x02Gs0UwIAAFSIYAwAAKBCBGMAAAAVIhgDAACoEL0pAQDwAHOothfBGAAAFWMO1XajmRIAgIoxh2q7UTMGAAE0F6FszKHabtSMAcCQQXPR0rFlOZ1qLppfXKp61dBgzKHabgRjADCE5iJUgTlU241mSgAYQnMRqsAcqu1GMAYAQ86emtRSSOBFcxGKNrO1S/DVUjRTAsCQOjYXzS8uadvcfl0wu1fb5vaT3wbUDDVjADDE5+aisF6ekhifCqg5c85VvQ6ZTE9Pu4WFhapXAwBKERwUVOrV2J22cYOOLa+s+/vu1KQOzG4vcxUBjGBmB51z02GvUTMGADUQ1cszuGyADgdAfZAzBgA1kDa4osMBUB8EYwBQA1HB1eZNndp1OACwFsEYANRAVC/P267Zojuuv0TdqUmZerlid1x/Ccn7QI2QMwYANRDXy5PgC6gvgjEAqAkGBQWaiWZKAACAChGMAQAAVIhgDAAAoEIEYwAAABUiGAMAAKgQvSkBAKmETVhOL89ysQ+ahWAMADzn0403OGH50rFl3frdJyQ1e6wz9gGKFNtMaWbnmtnDZvakmR02s8/0l59hZt83s7/r/7956D23mtnTZnbEzHYMLb/MzJ7ov/bHZmb95aeZ2T395Y+a2fn5byoA1M/gxrt0bFlOp26884tLlaxP1ITlu/cdqWR9ysA+QNGS5Iwdl/Q559y/kHSFpE+b2fskzUr6gXPuQkk/6P+u/ms3Stoi6SpJ/8XMBnN4fFnSzZIu7P+7qr/8k5Jedc79mqQ7Jf1hDtsGALXn2403asLypBOZzy8uadvcfl0wu1fb5vZXFtCkUdY+SFo24+4D+Cc2GHPOveic+9v+zz+X9KSkrqTrJN3d/7O7Jc30f75O0redc285556R9LSky83sLEnvcM790DnnJH098J7BZ90n6UODWjMAaDPfbrxRE5ZHLR/mWw1TUmXsgzRlM84+gJ9S9absNx9ulfSopPc4516UegGbpHf3/6wr6fmhtx3tL+v2fw4uX/Me59xxSa9J+pU06wYATeTbjTdswnJTL3iIq+nyrZYvqTL2QZqyiZo0fueOi3JbH5QrcTBmZm+XdL+kW5xz/zTqT0OWuRHLR70nuA43m9mCmS28/PLLcasMALXn2413ZmtXd1x/ibr9QMR06mIdV9PlWy1fUmXsgzRlM7wPTFJ3alJ3XH8Jyfs1lqg3pZl11AvEvumc+25/8U/N7Czn3Iv9JsiX+suPSjp36O3nSHqhv/yckOXD7zlqZhslvVPSK8H1cM7dJekuSZqenl4XrAFA0wxusL705Bus08zWrrbN7ddSIFgY1OaErd/ZU5Pr/n6w3Gdl7IO0ZcOk8c0SG4z1c7e+IulJ59wXh17aI+kmSXP9/783tPzPzOyLks5WL1H/Mefcqpn93MyuUK+Z8xOS/nPgs34o6aOS9vfzygCg9Xy98aat6dq546I1QzJI9WleK3of1LlsML4kNWPbJP22pCfM7FB/2e+pF4Tda2aflPScpI9JknPusJndK+kn6vXE/LRzbnB0fUrS1yRNSnqo/0/qBXt/amZPq1cjduOY2wUAKFiW2hzJr1o+X1A27WZ1rYCanp52CwsLVa8GALRWcPBRqVebU4f8JZ8GcUU7mNlB59x02GuMwA8AyKSutTmMYA/fEIwBQMvkWSvkaz7bKKOGkajbtqAZCMYAoK8NTVfUCtV3iA00F8EYAKg9QUrZtUI+BrhZh9jwcVvQDKlG4AeApqrr6PBplVkr5Ov0R1kGcS1zW+o4fyfGQzAGAGpP01WZ0yv5GuBmGcG+zMnCfQxgUSyaKQFA9R0dPq0yBxf1OcBN2/GgrG2hc0E7UTMGAPJvDsiilDmvoW+TnI+jrG3xOYBFcagZAwDVd8ysLMoajmJULVzdkuHLqlFsSw0t1iIYA4C+Oo6Z5bOoAFdS7XqulhWsM0dlOzEdEgCgVNvm9ofW/nSnJnVgdnsFa+SXutUaSvVc57IxHRIAwBvkRY1WtxratozRVyQS+AEApWpSYj/8HcKkTgjGQjDgHgAUpy09V9uCms7x0UwZQHUrABSrTT1X24AeoOMjGAtgwD2gXUg8rkbd8qJGSXMMNfF4owfo+AjGAqhuBdqDmnCMK80x1NTjjZrO8RGMBVDdCrQHNeH5amKtT5w0x1CTj7cm1XRWgQT+ABJLgfagJjw/bZ3gOs0xxPGGKNSMBVDdijpoYw1EEepeE17EcZD1M5ta6xNXHmmOobofbygOwVgIqltRhaQ3wabmnVShzonHRRwH43xmE2t9kpRHmmOozscbikUzJeCBNE08DLCYn5mtXd1x/SXqTk3K1JuO547rL6lFUFvEcTDOZ/o+kGuW8SOTlEeaY6jOxxuKRc0Y4IE0TTxNrIGoUl1rwos4Dsb5TJ9rfbLW+CUtjzTHUF2PNxSLYCwE+TgoW5qbIHknyTT9PC7iOEj7mcEy/shlXT381MvelXnWfDbONZSFZsqAtvYIQrXSNPHQ4zdeG87jIo6DNJ8ZVsb3H1zSzh0X6Zm5q3VgdrsXgZiUvcaPcw1lIRgLIB8HVUhz0SfvJF4bzuMijoM0n1mnMs6az8a5hrKYc67qdchkenraLSws5P65F8zuVViJmKRn5q7O/fuAgaY3q5WJ87h4dSrjYM6Y1FtPp16AxbmGMpjZQefcdNhr5IwFkCOAqpDYmx/O4+LVqYyHx49cOrZ8MhCT4qcvGvWAxAMU8kIzZQA5AkD9tek8zjJkQx6qKONxtnVma1cHZrerOzW5rkYvrHk1Lu+wDXmJKA81YwGMwA+k51sNQVvO46IGfk1SbmWXcV7bmjSZP64HZlNnHEA1CMZC0FwEJOfrjABtOI/zDgjS7ssyyzivbU3avBoXtDHeH/JEM2WIqqr9gTqqU6+6psk7IPB5X+a1rUmbV+N6YPo+4wDqhWAsgDwAIB1qCKqTd0Dg874cZ1uHH7B37zuij1zWjR2uIi5ou/LiM2WB72lqXiKKRzAW4POTIeAjagiqk3cSfdQ+22BW+QNp1m3NOjjtqDHG5heXdP/BpTUdAUzSRy5rftM4ikHOWIDPT4aAj3yek7Dp8k6iD9uXkrTqXGF5gEV3GBgn1ywqJy7sM52kh596eeTnAVEIxgLqNHYO4IO29Fz0VZ5J9IPP+dy9j2s1MCB4ET0Fy+gw4NuE6kAYmikD2jQ+EZCXwRhOvs1JiPRmtnZ1ImJmlryDjTLSQopoRqdpHnkjGAtgLjIAbVd0sDFIqA9rhZDyDfqqnlAdSIJmyhBtGJ8IaDPfBqn1TZF5gGHzRAblWcNURDM6TfPIGxOFA2iVsGBgsjNBDXjAuAFr1PtH1YhJ7As0FxOFA0BfnqPWN7mGbZwWglGJ+aOaILsNKsMmHxvIH8FYiLqfRHVff7RTWcdtXj3hfJ0GqkhJ99GogDeqx3p3alIHZrcXtu5lauOxgfGQwB9Q9xH4677+aKcyj9u8ktPbNkB0mn00KuBtQ/J7244NjI9gLKDuJ1Hd1x/tVOZxm1cw0LaxptLso1EBb9U91suYe7htxwbGRzNlQN1PorqvP9qpzOM2r55wRQ8Q7Vu6QZp9tHPHRdr5nce1cuJUB7HOBjsZ8FbVY72s5kMGD0da1IwF1H0wv7qvf9uU8ZReB2Udt4Py/uw9hyRJd95waeZBaotsbvMx3SD1PgrOoh38vQJl1cC2oSkW+SIYC6j7SVT39W8TH2+4VRl13OYVsOZd3kU2t/mYbpDm2rJ73xGtrK4dNmll1VWeLlFWDWzVTbGon9hmSjP7qqTflPSSc+79/WW7JP2vkgazov6ec+7B/mu3SvqkpFVJ/8E5t6+//DJJX5M0KelBSZ9xzjkzO03S1yVdJukfJd3gnHs2p+1Lre6D+dV9/dskzyEW6i7quJWUW7NSEeVdVHObj+kGaa4tPq6/VG7zIYOHI40kOWNfk/Qn6gVMw+50zv2n4QVm9j5JN0raIulsSX9lZr/unFuV9GVJN0t6RL1g7CpJD6kXuL3qnPs1M7tR0h9KuiHzFuWg7idR3de/LXy9YVUl7LjdNrc/twCqTuXta85R0muLr+sfNrOASbry4jOrWylACZopnXN/I+mVhJ93naRvO+fecs49I+lpSZeb2VmS3uGc+6HrDfn/dUkzQ++5u//zfZI+ZGYeZBcAxSK/L16eAVSdyrvu6Qa+rv/M1q4+cll3Tfqak3T/waVWpgfAH+PkjP2Omf2/ZvZVM9vcX9aV9PzQ3xztL+v2fw4uX/Me59xxSa9J+pUx1mtsn59/Qu+99UGdP7tX7731QX1+/okqVwcN5esNyyd5BlB1Ku+65xz5vP4PP/WygpMAVp2PB2Qd2uLLkv6jeg8V/1HSH0n6XxTeX8aNWK6Y19Yws5vVa+rUeeedl26NE/r8/BP6xiPPnfx91bmTv//BzCWFfCfaify+eHlOWF238q57uoGv61+n5mq0R6ZgzDn308HPZvZfJf1F/9ejks4d+tNzJL3QX35OyPLh9xw1s42S3qmIZlHn3F2S7pJ6E4VnWfc433r0+cjlBGPIm683LF/kHUBR3vA1nw3tlikYM7OznHMv9n/915J+3P95j6Q/M7MvqpfAf6Gkx5xzq2b2czO7QtKjkj4h6T8PvecmST+U9FFJ+/t5ZZVYjfjqqOUAikUA1W55D34bVtva2WB64xfHdcHs3rG+I+m6+jagL6qXZGiLb0n6oKR3mdlRSbdJ+qCZXapec+Kzkv69JDnnDpvZvZJ+Ium4pE/3e1JK0qd0amiLh/r/JOkrkv7UzJ5Wr0bsxjw2DACQj6qChyJGzA/Wtr5zsqPXf3Fcr76xMtZ3JF1XJhFHGKuwEmos09PTbmFhIffPPX92b+Rrz85dnfv3AYDPgsGD1MvbKyMhf9vc/tAmRanXKSCPoDDqO7pTkzowuz33z8nr+1A/ZnbQOTcd9hpzUwKAB+YXl3T7A4dP1tBMTXa069otpdaWhNWAVTk4cVQgNngtrkYpSY1eXgn9ST+HDgQIQzAGoLHqkpszv7iknfc9vmYKoWPLK9r5ncclpW++yrLdUc1nwUBsIK/gIWpd5xeXZIroWt83KihM2hyYV0J/0s+hAwHCMDclgEYKm4vylnsOaev/8ZeVDfAZNc9m2FyOkrRyIv18jlnn4IyqAZuIGIM7j+Bh1Lru3ndkZCA2EBUUJp3fM6/x55J+Tp3Gu0N5qBkD0EhhN2NJevWNlUoSpkfV1IyqZUpbA5W1WTHqe1ad02RnIpex3tKsa9LtjgoKkzYH5jV8yqj5VbfN7V+z7I7rL6lFjS3KQzAWMGEWOoxF1NMhgB7fmgRH3cyLyHmK2/5RgUdU05WUvgYqa05S1Dp0h3LH8tq3g7KK2ubB94zKGZNGB4VpmgPzGj4l+DlRAfgd11+iA7PbT5bDZ+85pN37jlR+zqA6BGMBjDOGIN+CjKKMs50+dtePu5nnmTCdZPtHBUl33nDpupwxqTf+VdoaqKw5SaNmO8hzrLew3plh6xo1Htjbf2mjjr2xEnuM5jl7Q1ZxTaW+nTOoDsFYQHfE0yHax8cgowjjbmeVPe6ihN2Mh+WZMJ1k+0cFSYO/ietNmSRgzhqElDVdVFTzcXBdx12frO/P8+FrVADu4zmD6hCMBfjwNAV/tOWCOe52+thdf7Deu/Yc1rHllTWv5X1OJ9n+uGtLXO1T0oB5nCCmjNkORh0TwbHDxl2ftO/P++FrVADu4znTRr60fBCMBdRtMmEUqy0XzHG309fu+oObcdEX3CTbP+61JU3A7PMUUqNy0/Ia9HTU/h71Wt4PX6MC8KicuarPmTbxqeWDYCyEzxcylMvXICNv426n7zXKRZ/TSbd/nPVoyoNBWFmZejfCbXP7c+kcEHWDlUbnaeVdxnEBuM/nTBv41PJBMAaM4HuQkZeo7bzy4jPXdcsPu0i1vUa5jO1vyoPBcFktHVteM7BrHjUTcUnzo26+45ZxVK0b54yffHrAYW5KIIYvOQVFC27nlRefqfsPLlUyJ2FT5dljVcp/f5R9rBcxT+MFs3tDB4sdDE4U9dozc1ePVcZVzuGJbMqeJ5S5KVNqy80XybSl2Tq4ndvm9ntThd8ESfNT4mpXiro2VZE/U0TNRFzt1qjXxiljn5q8kIxPLR8EYwE+JfQBVfKpCr8Jktys464/WR8MkjxgVhFMFNH0GneDjbv5Zi1jzpf68ampmGAsgKcboKcpOUq+SHKzLuL6k/QBM20wkUcLQhE1E0lusEXcfDlf6smXlg+CsQCeboAen6rwmyDJzbqI60/SAC9NMJFXC0JRNROjbrB5zyYwWPepTR11NphWTpzKSuN88Zdv6UgEYwE83QA9vlTh+3bRzCpJcFvE9SdpgJcm+M6zBs+Xmom0ggHpq2+sqDNhmprs6LXl+OmaUB0f05EIxgKoDahOU266TVL1jbKsi2YZx16S4LaI60/SAC9N8J21Bq+qc7yI7w0LSFdWnU4/baMO3fbhsT4bxfIxHYlgLMCX2oC28fFJBdUr46JZ5rEXF9wWcf1JE+AlDb6z1OBVdY4X9b2ktNSXj/uOYCxE1bUBbeTjkwqqV8ZF07djL+/rT5YAL246odffOr7uPXE1eFWVc1HfS0pLffm47wjG4AUfn1RQrrAAoIyLZhuOvTQBXprphAY2b+rotmu2jPyOqPIcTINUVEtEUfuXlJb68nHfEYyFIHdptCLKx8cnlaaow/EcFQB85LLuulkAJOn1t45rfnGJIQkKkHY6IUna9LaN6/ZF8Lib2tTRq2+srHvvYF5KKb4JMcuxXNT+JaWlvnzcdwRjAfOLS9p53+NaWe11T146tqyd9z0uidwlqbj8Cx+fVJqgLrl4UQHAw0+9rDuuv0S3P3B4zY382PJKbtuR9dirQ5CbRZaapOBrYcddZ4OpM2Enr60DwemJopoQsx7LRV5b8mhSbupx5Dvf0pE2VL0Cvrn9gcPrLhYrq063P3C4ojXyS9xTc1YzW7u64/pL1J2alKk3Nxhzuo2vqP01v7ikbXP7dcHsXm2b26/5xaWxPm9UADCztatNb1v/3JjHdkjZjr1BYLB0bFlOpwKDccvBB1E1RmdPTY58bVhoT8MTTqe/baOmJjux6xB2PGQ9ln2+ttTxOMr73EcPNWMBYdXoo5a3TZH5Nb49qTRBEfuriNq2uKakovO60h57eSWF+1grknY6oUEz47a5/SfXP2q/DMbfOrY8+noaFvSNk3Pm67XFt84jcYo494s4B3w8r+JQM4ZUkj4ZI14ZT5hF7K8iatt27rhIk52JNcuGAwDfjrs8gkNfa0VG1SQNvyb1ArFBO8Lw+o/aX3FlNBzcDZdF1GcO/t6nMkyqbp1H8j73izgHfD2v4hCMBURVoSepWm+DuJsmkinrglHE/iriBhLXlOTbcZdHcJjkxhYXsBcV0M9s7erA7HY9M3e1DsxuX1OrMHitOzUZme81an+NKqOo4E4KPwaG/354HW6551AtmtB8e8iIk/e5H3UO7NpzOPNxXVRqRtEIxgJ2XbtFnQ22Zllng2nXtVsqWiO/+Jx/USdlXTCK2F9F3UDiAoBxtyPPwCWP4DDuxhYXsFddAxCX5xe1v6LKbmqyExncSeHHQPDvh9WhRsS3h4w4eZ/7UcfQseWVzMd13WobB8gZC/Cxy6tvfM2/qJMyLxh576+qer6Osx1557rkcZ2Iy5OLyyeqOt8obv2j9ldU2X32nkOh3zN8TgQ/c9vc/tB1GPA5/0qq3/0m73M/6hgKSrMf6zpUDcFYCIINFK2uFwxpvBtIksTasuYRHPdGPe51Iu7GFhewF9U5I2nZj3NjDiu73fuOhJ4TU5s6kQn6YesQ5HuNSJ3uN3kHj0n230DS/VjXYZIIxkLUsScG6qWuF4yBLDeQJLVTbZpHMO7GFhWwD4KTqCa6rAF92rJPcmMeN7jrTJj++c3jJ3uzB2cDGATZE2ZadeElMk55cB9YL8/gMewYeuMXx0NHL0i6H+tW2zhgLuIA9t309LRbWFjI/XODFySpd5MkLwp5a9vFPqpJqTs1qQOz2xP/TVHf7Zuwa1FnwiTXG7MrzDjXqrzLKMu1NHhOvP7W8dBhMDZv6ujNlRNry2aDSaY140RmLY/5xSXt/M7ja8q5s8G0+2MfaPQ56oM878G+XWPN7KBzbjrsNWrGAqrOw0B71Kl5Ig9JaqeaPI9g2htD2BN+VHAiSRNm6xLe0yirp9yoa2lwm6OqCsJqTlZOOE1NdnT6aRvHvvnu2nN4XcC7csJp157DrTpnq5BXzVZdZh8ZIBgLiEomTJJkCCBakjy5qucRLOpJOumNIez7h2ulLpjdG/kdg2a6rDedvMs+S3AXViuSxmvLKzp024czvXdYVMAbN1ht3flSk5THg2rdKlYIxgKicg8mzEL+GkBSSWqnqpxHsMgn6SQ3hiTfX0Tvs4GyesqNCu7CyilosjOh0zZuCA2M8soPa6O61STF8TFPdBTGGQuISgKNWg7UXVlzzSUZK6zKceyKHPstyY0hyfeHjUuV9juj5F32WcbQGrXOw+u069otuY3PFTZeW5TNm5o7+HddB0uNUrcBdakZC+hGPM11Pd2BwDjKfhpO0vxQVS5dkU/SSWqJ4uZeHG4yyrP32bCie8rFNXtNbeqEbsvmTR0t/v765sc8mtSS1MZJvc4Tt13T3MG/61aTFMeHPNE0CMYC6rYDgXHULa+iSEWO/ZbkujKqCTIYJAfzzHy9ZqUN7qIaIMKW5xU4jgo2uv25NH3oiVe0Oo99GKZuQ1wQjAXUbQcC42ja0/CwtMnIReerSaOvK3EDYEYFyU26Zr0WkSAftTwPUUGIz8OeFKGJFRF16rFOMAa0WNOehgeyNL8WHdTE3RiGvz+qhiwYJAcDzjtvuLQ2N58wWY/HqMA7SUDexCAkiyYF9XXEoK8B84tL2nnf42sGDuxMmHZ/lMH+0DxNHeS4joO8Dkuy/nkMqurbzTR8PrMAACAASURBVDbrNoW95yOXdXX/waU1y02SU68ch7fd93JBMzDoawq3P3B4TSAm9UZ0vv0BBvtD8zT1abjuza9JamvS5vuV3VkjS4CT5XjctedwaDl869Hn1/WCH/wWloNX92Me9UYwFhDWk2fUcqDuqroRFVkbUffm1yRBSdqAs8zOGuMEfmmOx/nFpciBWOOGI2prRxX4iWAMQOmKrqVpQh5QXFCSNuBMM3TGuOLGrEoShCcJ1scdAytpTSnNmCgag74GTE2GD+oXtRxAekUPMFnl4LFlSTuo6qhawUEwnNeAv6MCv+AAq2HfGzYQa9jfjdvsnKSmNOm6ZFHWgMvwHzVjAbuu3aKd33l8zSSxnQ2mXdc2d7A/oGxpm9iy5h81KfgKSptflXXojCxlH1VrN5jMPO57kzapJp0eSjqVvD+QtKa0qObdpk0/FERtYjrUjAXMbO1q98c+sOaJevfH6EkJ5CnNVCVF1kzU3czWrg7Mbtczc1frwOz22KEzBrWFUcKGzshS9lG1dlF5XMHvTRqsJ50eyiTdecOlmWpKi+oM0rTph4ZxzqYXWzNmZl+V9JuSXnLOvb+/7AxJ90g6X9Kzkv6Nc+7V/mu3SvqkpFVJ/8E5t6+//DJJX5M0KelBSZ9xzjkzO03S1yVdJukfJd3gnHs2ty3MoOlP1EDV0uR0MUtAfgbXtqihM4LBcNayj6q1ixpDLfi9SfPhgt+zwSw04Dt7ajLzdb2oziB5BHm+1j5xzqaXpJnya5L+RL2AaWBW0g+cc3NmNtv//XfN7H2SbpS0RdLZkv7KzH7dObcq6cuSbpb0iHrB2FWSHlIvcHvVOfdrZnajpD+UdEMeG5fV5+efONktesJMH/+Nc/UHM5dUuUpAo6RpYitjmApfb2p5CW7flRefqXt+9Py68RSDwfA4ZR8V/CQJwtME68PfU8TUUEV1BkkT5IUdn5K8beas+9AyVYgNxpxzf2Nm5wcWXyfpg/2f75b015J+t7/82865tyQ9Y2ZPS7rczJ6V9A7n3A8lycy+LmlGvWDsOkm7+p91n6Q/MTNzFY1G+/n5J/SNR547+fuqcyd/JyAD8pO0pqLoYSrakLsT3L57Hls/BpdCrrh5l33SIDzr+HdFjJtX1Fh8SYO8qOPztI0bvK19qvvQMlXImsD/Hufci5LknHvRzN7dX95Vr+Zr4Gh/2Ur/5+DywXue73/WcTN7TdKvSPpZxnUbyzeHArHgcoIxoHxFD1PR9CaVsO0b7qA0vCy4zUWUfdIgPGuzYhFpJkV9phQe5A3XhIU1vS6vrEZ2xPCh9qkJQ8uULe/elBayzI1YPuo96z/c7Gb1mjp13nnnZVm/WFHVcfWcNAqov6JnCRg1DMP84lLtA7I0N+fg3zZ1hgZfhAV5wZqwuMFrg6Jqn8psiue4SS9rMPZTMzurXyt2lqSX+suPSjp36O/OkfRCf/k5IcuH33PUzDZKeqekV8K+1Dl3l6S7pN7clBnXHUDNBG9ag/GZ8rjQjxoeoQnNlWmGfwi7kQdvrIPefnUuE5+F1WSG2bypozdXTiSqfaqiKZ6OcOlkHdpij6Sb+j/fJOl7Q8tvNLPTzOwCSRdKeqzfpPlzM7vCzEzSJwLvGXzWRyXtrypfDID/knSbTzOY5qjhEeKGGqjDoJ1h29fZYOpMrG2UiLuR+zRMQR3KPaskNZmTnQndds2WxAMbFz2MRpP3R1mSDG3xLfWS9d9lZkcl3SZpTtK9ZvZJSc9J+pgkOecOm9m9kn4i6bikT/d7UkrSp3RqaIuH+v8k6SuS/rSf7P+Ker0xASBUXI5X2lqAwbJb7jkU+n1RtUpF1zbk1awU1WQUtiztjbyqOU3LruUps4lv1IC5J5xb9/1VjpUmNb8DTFmS9Kb8eMRLH4r4+y9I+kLI8gVJ7w9Z/qb6wZwPtr33DB34H+tbSbe994wK1gZAUNyNJUvwMLO1GzkGlkmhuWNFBilhN7hb7jmk2x84rNuu2ZL686OajKq+kWdRdnBYdrARlfw+znReRfZu9C1YrytG4A/42PR563oUWH85gOrFjd6fNXjYueOiyN5EYc05RQYpUXlDr76xUnoTYZrZEspQdnBY9kj5RcyrmnYe0zR8C9brimAsYPe+I+t6TkZdjIEBcibKE3djyRo8zGztRvaaDruxFBmkjLqRlT1lTpE38izKCA6Hz+eoZuoig40001wl/by8A7wB34L1uiIYC4g68ZL2RkL7+Jjg3GRxN5ZxgoeoeRvDbixFBilxN7Iyax1GlXcVDyFFB4fB8zlK3YKNvAO8Ad+C9brKe5wxoHXImVirjGTnUd3mxxnjKO00PFm/J8t6DEsSCOS5H5KMh1VW4nbRY1glGVqCYOMUxhTLB8EYMCZyJk7xpWfVOKO3S8lvLEWNpTT4zF17DuvY8sqa15IEAmXshyofQpKUe9ZgNO687RJsrMOYYuMjGAuYCJl6YrAczZX1wj2/uBQ6XYlUv2aMPDShljCPG0setVKD9cjyWWXsB58fQsYJRkcNktudmtSB2e35riwggrF1Pv4b566ZKHx4OapRdLNX1gv34H1hgVhbmzF8vkGXJe9aqSzBYRn7wefJoMcJRnfuuChyzDnfjuMyxz9DsUjgD/iDmUv0W1ecd7ImbMJMv3XFeUwSXpEykuOzdl2Pyi2ZMMutp1LdjNuzqgm9UvMYCmHcciijh5vPidvjBKMzW7vavKkT+poPgeYAHYeahWAMXitjjJ+sF+6o108418pATBrvBt2Um8u4tVJ5lENegdKooLDI4RLGNW4wets1W7wNNAfKHv8MxaKZMuDz80+saaZcde7k79SOlc/n5hafm2mqMk7Pqibkm0njHxd5lEMePdySNLf6mridpldsmDr0ECQloFkIxgK+GZIvNlhOMFa+MgKerBfucS/4TZX1Bt2Um8u4x0VcOSTNExo3UMorOK4irymPYMrXQHPgnZOddT1tpXY/DNYZwVhA1CB/owb/Q3HKCHiyXrjr8PRcJ02paRz3uIgqhw1mOn92r0ynrkdFDh2SR3Bc5VAnVQZTeQSgoz5jfnFJr//i+Lr3dDZY6x8G64pgDF4rK+AZZ1wqgq98lBF4l1VLM85xETXg66DXbvDBsKim3DyC46Y0PacRF4AmOQbjPmP3viNaWV1fRfD2X9rY2HJtOoIxeI+Apx2KDrx9GZA2TrAcosaxG1ZEU24ewXGW2rWiAuayAvG4xPokx2BcEBtVfsfeWN9siXogGAPgjaSBt68DoSaRZN2Hy+GC2b2xn1lEU24ewXHa2rWiAuYyA/FRAWjSYzAuiG1Kkz5OIRhDozEoYvNkvbH60EEgy7qPGhFeKrbTyKjgOMm5lbZ2bdeew4UEzGUG4qMCpaTHYFywReeh5mGcMTRWU8atwlpZx1cqYyDUOFnWPWzMsMHkbGnH9sprUN2k51aascjmF5dCewdK4wfMZQbio8Z4S3oMxo0T5/MYb8iGmrGA0982odd/sX5U9dPfNhHy1/CZL81SyFfWG6sPtQlZ1j2vXLo8m+rSnFtJm55HBaTjBsxlNuvF7a8kx2CSfV5ULq0vrQm+rEdZCMYC3ggJxEYth798aJZC/rLeWH0YimScdR93PfN8OCni3Br13nED5rID8aj9leYYrKLjki+dXMLWY+d9j2vXnsN6bXmlkcEZwVgA44w1B0muzTTOjbXqnrlV1s7lGUAVcW5FfebmTZ2x95kPgfjwuvgaRPjSmhC2Hiur7mQztq89ocdBMBawwaQTIZHXBlu/DH7zoVkK+fPpxppWles+KoBK2yRUxLl15cVn6puPPLfmwXeyM6HbrtmS+TOH+RwE+cKX1oQk39e0lBOCsYDTNm7Q8sqJ0OWoF19u2m3LfShDmhtr0vKvw4Cw44gKoK68+MzUTVN5n1vzi0u6/+DSmkDMJH3kMgKoMvnSmhDXg3igSSknBGMBb4YEYqOWw29VPw37koPRVknLvw37KSqAyto0lee5FbYOTtLDT72cy+cjGV9aE6JmoQjKGiT6+IBMMBYQNfnqOyc7FawN6s6XHIy2Slr+bdlPYQHUZ+85FPq3ZdY6pG0e8/Fm2gS+tCYE12NqU0f//OZxrQzlEGUNEn198CIYC7CI3LCo5cAovuRglCnsRilVc4FPWv5t3E8DPjRNpVkHX2+mTVF1a0LUeuQVgPv64EUwFhA1txdzfiELH250ZQrtkv6dxyXTyYmNy7x5Ji3/tu2nYT40TaVZB19vpihWXkGirw9eZKUHTHbCiyRqOZLJa+TvuokbSbtpQrukn3AnA7GBJCPm5yFp+bdtPw3zYTT3NOvg680U9eDDTBxhqBkLWD4enqgftRzx2tysEJWDIUnb5vY3LuclzQ2xjJtn0hwYX3JlquJD01TSdWhzLSbG50NNcBiCsQAXMbpr1HLEa3uzQljuQ1OD06Rd0gd/W4akN/mqAxKS0nviyiGPmyll3V6+PngRjAVMmGk1JPKaIIM/M5oV1mpycBp2o+xssDU5Y5IfT6K+mF9c0u0PHNarQ3mpTQrQkxgER0vHlmU6NeNJWDmMezNt8sMQkqn6wSsMwVjAx3/jXH3jkedClyMbmhXWanJwOqpZ1rcn0SpFBR/DmhKgxwkGR8GyCCuHcW6meT8MUcuGPBCMBUz/6hn61mPPa3VoPJOJDabpXz2jwrWqN1/b6KvS9OA0bpLktosLPoY1IUCPExYcBS0dW9YFs3tzCXbyfBgKq2X77D2HdMs9h9QlMEMKBGMBu/cdWROISdLqCdeKJ9Si+NpGXxWC03bbtedwbPAx0JQAfZSkQZBTPk2KSR6GktZ2Rc0coKF1XfiHV/TwUy9z7cNIBGMBTW5CqpKPbfRVIThtr/nFpdAZPsK0JUBP0+lDGr/5Nu5hKE1OWdx9YXlldc3k5+SnIQrBWMDUps6aRNrh5ViLXInsCE7bKenYalOTHe26dksrjpGw4Cgqj25gnIfjuIehNDllSQLJJDlwAMFYwJsRzQdRy9smTa8nAGvFBRHdqUldefGZevipl/XZew5p974jjX/Imdna1cI/vKJvPfq8Vp3ThJk+/hvn6g9mLtG2uf2F5FeOehhK0zqSdELrpN+B9mJY+YDllYhBXyOWt8mg+n5wcYx64gMQLiqI2Lypo2fnrtbOHRfp/oNLWjq2vCZHqskzVswvLun+g0snhxRadU73H1zS/OJSJTMjpBmhfXjmAKlXozcsakCkNuQCIh2CMSSWpNcTT3xAtKjg4rZrtkga3UTWVHHbfNrGU7epzZs6hU/VlDYAnNna1YHZ7Xp27mrdecOla6Z0+ndXnNfaabaQDs2UAZsjcsY2kzOWKNDiiQ+IFpev1MYORFHbNqgVHA7U3iyhhWKcDjZhzZ/Tv3oGubWIRTAWcNs1W7TzvsfXjBbembCTT65tFpesyhMfEC3Y4eXOGy5NnBDe5IecqG2eMItNpC+qE1GeHWzorIMkaKYMmNna1e6PfmBNVfPuj36Ak0nh1feDnIju1GThzQdAXQ3nW47KBasiR6pqUdscNi2ddKomLWmZAnVgrqYzYE9PT7uFhYWqV6N1GM6i+djH+YvqFShp3UjtbSz/4PycU5MdmSk0ZaQ7NakDs9sjy3TwOuqvaeeCmR10zk2HvUYzJVKhyr3ZmES5GKNyvoJl3NZzbDgf7NjyijobTJ0Ji5xgvo35dW3StmsRzZTACPOLS9o2t18XzO7Vtrn9jW8CGac3X9vKKo24nK+m95iME3bcrZxwOv1tG9ekjAynQqQZggL107aexdSMARHa9mQmZa9taGNZpZFkcNA21+hEbftryys6dNuHQ19jjtdma1vNJzVjQIS2PZlJ2Wsb2lhWaQQHBw3T5hqdLMddsEwHvS937ztCrWwDtK3mk2AMiNC2JzMpe2++NpZVWoPBQb90w6Wt6zEZJ+txN7O1e/K9g96X9Kpshrb1LB4rGDOzZ83sCTM7ZGYL/WVnmNn3zezv+v9vHvr7W83saTM7YmY7hpZf1v+cp83sj80sahaJUpD7Aql9T2bS2tqGsDydKG0sq6yylnGTjVMm1Mo2U9vOk7GGtjCzZyVNO+d+NrTs/5T0inNuzsxmJW12zv2umb1P0rckXS7pbEl/JenXnXOrZvaYpM9IekTSg5L+2Dn30KjvLmpoi2Dui9SLxpt8ECAcx0JylBWqcsHs3nXz5Eq9MRCfmbu67NUBIo0a2qKIZsrrJN3d//luSTNDy7/tnHvLOfeMpKclXW5mZ0l6h3Puh64XGX596D2l4ykLA217MhsHZYWqUCuLJhi3N6WT9Jdm5iT9P865uyS9xzn3oiQ55140s3f3/7arXs3XwNH+spX+z8HllSD3BcPaOuZTFpQVqkCvSjTBuMHYNufcC/2A6/tm9tSIvw3LA3Mjlq//ALObJd0sSeedd17adU2kjXPDAUBdjTOxN+CLsYIx59wL/f9fMrM/Vy8f7Kdmdla/VuwsSS/1//yopHOH3n6OpBf6y88JWR72fXdJukvq5YyNs+5ReMoCgHppcq1s06YEQrjMOWNmdrqZ/fLgZ0kflvRjSXsk3dT/s5skfa//8x5JN5rZaWZ2gaQLJT3Wb9L8uZld0e9F+Ymh95SO3BcAgA+YDL09xqkZe4+kP++PQrFR0p855/67mf1I0r1m9klJz0n6mCQ55w6b2b2SfiLpuKRPO+cG1U+fkvQ1SZOSHur/q0yTn7IANAe1Js02qkMZ+7lZMgdjzrm/l/SBkOX/KOlDEe/5gqQvhCxfkPT+rOsCAG3DFFTNR4ey9mAEfgCoIYbhaT6G7WgPgjEAqCFqTZqvbVMCtRnBGADUELUmzUeHsvYYd5wxAMAYsibhMwxPO9ChrB0IxgCgIuMk4TPYKdAcBGMAUJFxhy6g1iRensN/MJQIikIwBgAVIQm/WHkM/zEIwJaOLct0aq4+hhJBnkjgB4CKkIRfrHGH/xgeAV9aP2kyQ4kgLwRjAFARhi4o1rg1j2HBXNbPAkYhGAOAijB0QbHGrXlMEmhRi4k8kDMGABUiCb844w7/cfbU5MkmyjDUYiIv1IwBACoxv7ikbXP7dcHsXm2b26/5xaVcP3/cmsewZmTr/08tJvJEzRgAoHRlTXQ+Ts0jY7mhLARjAFAwxqdab9wx1spCMzLKQDAGAAUqqwaobhhjDTiFnDEAKNC4Y101FWOsAacQjAFAgagBCscYa8ApBGMAUCBqgMIxxhpwCjljAFCgcce6ajKS44EegjEAKBDDIwCIQzAGAAWjBgjAKARjAIBWYdw3+IZgDADQGoz7Bh/RmxIA0BqM+wYfEYwBAFqDcd/gI4IxAEBrMO4bfETOGABUgCTyauQ57hv7EHkhGAMaiJuE38pKIuc4WC+vcd/oCIA8mXOu6nXIZHp62i0sLFS9GoB3gjcJqffkz1Qz/tg2t19LITlK3alJHZjdnst3cBwUq4x9iGYxs4POuemw18gZCzG/uKRtc/t1wexebZvbr/nFpapXCUiM3mL+KyOJnOOgWHQEQJ5opgyg6hl1x03Cf2dPTYbWquSZRN6U4yCuqbWqptgy9iHag5qxAJ4mUXf0FvPfzh0XabIzsWZZ3pOHN+E4GDwcLx1bltOph+NBa0Xc60Wsz6DV5PW3jqszYWteZwJ4ZEUwFtCUp0m0Vxk3eoxnZmtXd1x/ibpTkzL18ozyzuVqwnEQ93Bc5sNzMPA7trwiOWnzpk5h+xDtQTNlAFXPqLu8eouhWEVPHl7FcZB3k2Hcw3HU60vHljW/uJTrtoYFfisnnDa9baMWf//DuX0P2olgLODKi8/UNx55LnQ5UBdF3+hRD2UeB0Xk28Y9HEe9LinxdycNIGk1QZFopgz4i8dfTLXcZ/QKBTBQ5PVgfnFJn7v38dybDOOaWsNeT/Ldg7I4f3avbrnnUKKcsybk4MFf1IwFHFteSbXcV/QKrQ4Dba7V9PKoavvmF5e0a8/hddemqcmOdl27ZV2Pw6KuB4PPXo0Ys3KcmqO4ptbB/7fccyjxd4eNvzZsEMQFyyXPkfur1PTzsa6oGWuopImt1J7lq+zeXb5renlUtX3zi0va+Z3HQx8Sjy2vaOd3Hl+zDkUmuod99rBxa45mtna1c8dFOntqUi8cW9bufUfWbNvM1q66KWqt4tZXCg/iyuh0UbSmn491Rs1YQyXJb6D2LH+3P3A48qbXxjIdFQRUUR551wpUtX279x3Ryono2VNWTrg16zAq0X3b3P6xymNUzVcecz6+c7Kj139xXCur7uQ6B69TaWqtktTUOfVG2A+WR91zMX07H3EKwVhDJekVmvbEHFwgl44ta8JMq86pSzX3SfOLS3r1jfDm7LYm+fqU9FzEw0dV25fk84f/Jup6YNLJ5VnLI+qzJ8wy1RwF91NY7V/wOjWqOTMYgE9t6kSep8Oa+HDq0/mItWimbKgkYwylOTGHq7clncwPoZr7lFFNPm1N8vUp6bmIprqqti/J5w//Tdj1wNSrARqWpTyirjV/9G8+kCmISdKMKK2/Ts1s7erA7HY9M3e1DsxuPxmIBZvl/vnN9YO1RmnagN8+nY9Yi2CsoZLkN6Q5MUddIJt2wcpq1NNl3ZJ88+LTwKNF1ApUtX07d1ykzobogKKzwdasQ9j1IKqRM648gnmmknLNpUq6P5IEEFFjg53+to0n88wmbHRgVpdaoyT5vz6dj1iLZsoGi8tvyDPPoi4XrCJFNddMTXYa08yRlk8D0BYxoHNV2zf4/KS9KQfvGV62bW5/6vKIauq94/pLdGB2e+btCX5/1NhhA6ZkDzhR16VjyyvryihLeVQpbV7d8M8+nI9Yi2CsxdKcmHEXSF8vWGWKCm53XbulwrWqni9Jz0UNTVDV9o37vVnKo4wE8LD1CnJKlseVZlDYOg1dkSWvbsCX8xFrEYwFbI5I7ty8qVPB2hQv6Yk56gLp6wWrbDx1+o39s1aW8igjATxu7DCpVzOWZLqjUdetNJ0AfJM1rw7+IhgLuO2aLdp53+Mnq3slqTNhuu0aajck0ZsyBk+dfmP/rJW2PMqau3dma/fktSaMkxLVxqUdFLYux0eeeXXwA8FYQJ2ejspWlwsVgGzixmErsykvrrkyaUAyKrCra7CSJK+OFot6oTclALTc/OKSLr39L2PnaSxzFPrBd0X1dkwTSDWtF2HY9nQ2mDZv6tR2doC2Mxcxn1jZzOwqSf+XpAlJ/805Nzfq76enp93CwkLu6zG/uBRapf2lGy7lwAbQOHFzNXanJnPrKZlF2PpNdiZSBxtNm5Nx1PY0bVubwswOOuemQ1/zIRgzswlJ/5+kfynpqKQfSfq4c+4nUe8pKhh77617tRpSJBMm/Y87rs79+wCgSlFDOgyYpGfmqr32EVwkl1fwivyNCsZ8yRm7XNLTzrm/lyQz+7ak6yRFBmNFCQvERi0HgDqLy73yIa+KfNXkmH+ynnzJGetKen7o96P9ZWuY2c1mtmBmCy+//HJpKwcATTUq2KpzXlVbMf9kPfkSjIVlaK6ri3LO3eWcm3bOTZ955pklrBYANFtYMrjUG1uRpq36Yf7JevIlGDsq6dyh38+R9EIVK3Lhu09PtRwA6iysh+SXbrhUi7//YQKxGmpaz9G28CWBf6N6CfwfkrSkXgL/v3XOHY56T1EJ/JL0L7/41/q7l14/+fuF7z5d3//fPljIdwEAkCc6PPjJ+96UkmRm/0rSl9Qb2uKrzrkvjPr7IoMxAACAPNWhN6Wccw9KerDq9QAAACiTLzljAAAArUQwBgAAUCGCMQAAgAoRjAEAAFSIYAwAAKBCBGMAAAAVIhgDAACoEMEYAABAhQjGAAAAKuTNdEhpmdnLkv6h4K95l6SfFfwdOIXyLhflXS7KuzyUdbko72R+1Tl3ZtgLtQ3GymBmC1HzSCF/lHe5KO9yUd7loazLRXmPj2ZKAACAChGMAQAAVIhgbLS7ql6BlqG8y0V5l4vyLg9lXS7Ke0zkjAEAAFSImjEAAIAKEYxFMLOrzOyImT1tZrNVr08TmNlXzewlM/vx0LIzzOz7ZvZ3/f83D712a7/8j5jZjmrWup7M7Fwze9jMnjSzw2b2mf5yyrsAZvZLZvaYmT3eL+/b+8sp74KY2YSZLZrZX/R/p6wLYmbPmtkTZnbIzBb6yyjvHBGMhTCzCUn/t6T/WdL7JH3czN5X7Vo1wtckXRVYNivpB865CyX9oP+7+uV9o6Qt/ff8l/5+QTLHJX3OOfcvJF0h6dP9MqW8i/GWpO3OuQ9IulTSVWZ2hSjvIn1G0pNDv1PWxbrSOXfp0BAWlHeOCMbCXS7paefc3zvnfiHp25Kuq3idas859zeSXgksvk7S3f2f75Y0M7T82865t5xzz0h6Wr39ggSccy865/62//PP1btpdUV5F8L1/HP/107/nxPlXQgzO0fS1ZL+29BiyrpclHeOCMbCdSU9P/T70f4y5O89zrkXpV4AIend/eXsg5yY2fmStkp6VJR3YfrNZockvSTp+845yrs4X5L0v0s6MbSMsi6Ok/SXZnbQzG7uL6O8c7Sx6hXwlIUso9tpudgHOTCzt0u6X9Itzrl/Mgsr1t6fhiyjvFNwzq1KutTMpiT9uZm9f8SfU94ZmdlvSnrJOXfQzD6Y5C0hyyjrdLY5514ws3dL+r6ZPTXibynvDKgZC3dU0rlDv58j6YWK1qXpfmpmZ0lS//+X+svZB2Mys456gdg3nXPf7S+mvAvmnDsm6a/Vy5ehvPO3TdK1Zvaseikk283sG6KsC+Oce6H//0uS/ly9ZkfKO0cEY+F+JOlCM7vAzN6mXjLinorXqan2SLqp//NNkr43tPxGMzvNzC6QdKGkxypYv1qyXhXYVyQ96Zz74tBLlHcBzOzMfo2YzGxS0v8k6SlR3rlzzt3qnDvHOXe+etfm/c653xJlXQgzO93Mfnnws6QPU/yzngAAAMRJREFUS/qxKO9c0UwZwjl33Mx+R9I+SROSvuqcO1zxatWemX1L0gclvcvMjkq6TdKcpHvN7JOSnpP0MUlyzh02s3sl/US9noGf7jcDIZltkn5b0hP9PCZJ+j1R3kU5S9Ld/V5jGyTd65z7CzP7oSjvsnBsF+M96jW7S72Y4c+cc//dzH4kyjs3jMAPAABQIZopAQAAKkQwBgAAUCGCMQAAgAoRjAEAAFSIYAwAAKBCBGMAAAAVIhgDAACoEMEYAABAhf5/drI65qhF4uUAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# your answer here\n", + "fig, ax = plt.subplots(figsize=(10,6))\n", + "plt.scatter(x=fitbit['MinutesOfSleep'], y=fitbit['Steps']);" ] }, { @@ -452,24 +1827,156 @@ }, { "cell_type": "code", - "execution_count": 25, - "metadata": { - "collapsed": false - }, + "execution_count": 123, + "metadata": {}, "outputs": [], "source": [ - "# your answer here" + "# your answer here\n", + "column= ['Calorie burned', 'Steps','Floors','Minutes Sedentary','Minutes Very Active', 'MinutesOfSleep']\n", + "cor_fit = fitbit[column].corr(method ='pearson')" ] }, { "cell_type": "code", - "execution_count": 26, - "metadata": { - "collapsed": false - }, - "outputs": [], + "execution_count": 191, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Calorie burnedStepsFloorsMinutes SedentaryMinutes Very ActiveMinutesOfSleep
Calorie burned1.0000000.2553050.1307570.1253530.1978810.011485
Steps0.2553051.0000000.3065110.0769060.5714520.130986
Floors0.1307570.3065111.0000000.0578120.3995030.069464
Minutes Sedentary0.1253530.0769060.0578121.0000000.1059630.204242
Minutes Very Active0.1978810.5714520.3995030.1059631.0000000.108018
MinutesOfSleep0.0114850.1309860.0694640.2042420.1080181.000000
\n", + "
" + ], + "text/plain": [ + " Calorie burned Steps Floors Minutes Sedentary \\\n", + "Calorie burned 1.000000 0.255305 0.130757 0.125353 \n", + "Steps 0.255305 1.000000 0.306511 0.076906 \n", + "Floors 0.130757 0.306511 1.000000 0.057812 \n", + "Minutes Sedentary 0.125353 0.076906 0.057812 1.000000 \n", + "Minutes Very Active 0.197881 0.571452 0.399503 0.105963 \n", + "MinutesOfSleep 0.011485 0.130986 0.069464 0.204242 \n", + "\n", + " Minutes Very Active MinutesOfSleep \n", + "Calorie burned 0.197881 0.011485 \n", + "Steps 0.571452 0.130986 \n", + "Floors 0.399503 0.069464 \n", + "Minutes Sedentary 0.105963 0.204242 \n", + "Minutes Very Active 1.000000 0.108018 \n", + "MinutesOfSleep 0.108018 1.000000 " + ] + }, + "execution_count": 191, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Print cor_fit\n", + "cor_fit" + ] + }, + { + "cell_type": "code", + "execution_count": 192, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "#Print cor_fit" + "sns.heatmap(cor_fit);" ] }, { @@ -482,13 +1989,29 @@ }, { "cell_type": "code", - "execution_count": 27, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 125, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 125, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# your answer here\n", + "cor_fit['Steps'].sort_values" ] }, { @@ -507,24 +2030,167 @@ }, { "cell_type": "code", - "execution_count": 28, - "metadata": { - "collapsed": false - }, + "execution_count": 126, + "metadata": {}, "outputs": [], "source": [ - "# your answer here" + "# your answer here\n", + "time_grades = pd.read_csv('Time_Grades.csv')" ] }, { "cell_type": "code", - "execution_count": 29, - "metadata": { - "collapsed": true - }, - "outputs": [], - "source": [ - "#Print time_grades" + "execution_count": 127, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameStudy timeGrade
0Jose44
1Maria97
2David89
3Sonia107
4Samuel209
5Eva53
6Carlos127
7Pedro65
8Ana189
9Gervasio73
10Gemma78
11Alicia117
12Jonathan21
13Cristina138
14Pilar32
\n", + "
" + ], + "text/plain": [ + " Name Study time Grade\n", + "0 Jose 4 4\n", + "1 Maria 9 7\n", + "2 David 8 9\n", + "3 Sonia 10 7\n", + "4 Samuel 20 9\n", + "5 Eva 5 3\n", + "6 Carlos 12 7\n", + "7 Pedro 6 5\n", + "8 Ana 18 9\n", + "9 Gervasio 7 3\n", + "10 Gemma 7 8\n", + "11 Alicia 11 7\n", + "12 Jonathan 2 1\n", + "13 Cristina 13 8\n", + "14 Pilar 3 2" + ] + }, + "execution_count": 127, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Print time_grades\n", + "time_grades" ] }, { @@ -536,13 +2202,25 @@ }, { "cell_type": "code", - "execution_count": 30, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 131, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# your answer here\n", + "time_grades.hist(bins=5);" ] }, { @@ -554,24 +2232,44 @@ }, { "cell_type": "code", - "execution_count": 31, - "metadata": { - "collapsed": false - }, - "outputs": [], + "execution_count": 134, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.7980456073578858" + ] + }, + "execution_count": 134, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# your answer here-Pearson " + "# your answer here-Pearson \n", + "time_grades['Study time'].corr(time_grades['Grade'],method='pearson')" ] }, { "cell_type": "code", - "execution_count": 32, - "metadata": { - "collapsed": false - }, - "outputs": [], + "execution_count": 136, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.819658753036942" + ] + }, + "execution_count": 136, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "## your answer here-Spearman" + "## your answer here-Spearman\n", + "time_grades['Study time'].corr(time_grades['Grade'],method='spearman')" ] }, { @@ -583,13 +2281,26 @@ }, { "cell_type": "code", - "execution_count": 33, - "metadata": { - "collapsed": false - }, - "outputs": [], - "source": [ - "# your answer here" + "execution_count": 194, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# your answer here\n", + "fig,ax = plt.subplots(figsize=(10,6)) \n", + "plt.scatter(x=time_grades['Study time'], y=time_grades['Grade']);\n" ] }, { @@ -600,7 +2311,8 @@ }, "outputs": [], "source": [ - "#your comment here" + "#your comment here\n", + "um....." ] }, { @@ -618,7 +2330,8 @@ }, "outputs": [], "source": [ - "#your comment here" + "#your comment here\n", + "NO....." ] } ], @@ -639,7 +2352,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.0" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-probability-distribution/your_code/main.ipynb b/module-2_labs/lab-probability-distribution/your_code/main.ipynb index aa5b7ad..d894544 100644 --- a/module-2_labs/lab-probability-distribution/your_code/main.ipynb +++ b/module-2_labs/lab-probability-distribution/your_code/main.ipynb @@ -12,11 +12,15 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ - "# Import your libraries\n" + "# Import your libraries\n", + "import pandas as pd\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "import scipy.stats as stats" ] }, { @@ -40,29 +44,29 @@ }, { "cell_type": "code", - "execution_count": 112, + "execution_count": 3, "metadata": {}, "outputs": [ { "name": "stderr", "output_type": "stream", "text": [ - "/usr/local/lib/python3.7/site-packages/scipy/stats/stats.py:1394: UserWarning: kurtosistest only valid for n>=20 ... continuing anyway, n=10\n", + "/Users/ivyip/miniconda3/envs/ironhack/lib/python3.7/site-packages/scipy/stats/stats.py:1450: UserWarning: kurtosistest only valid for n>=20 ... continuing anyway, n=10\n", " \"anyway, n=%i\" % int(n))\n" ] }, { "data": { "text/plain": [ - "0 (0.23349439272475625, 0.8898101119651654)\n", - "1 (1.0356615846904733, 0.5958115862525835)\n", - "2 (1.8172735178882062, 0.4030733357826316)\n", - "3 (5.6079568200949685, 0.06056861586664984)\n", - "4 (2.993150960224296, 0.2238955836754518)\n", + "0 (6.00405442290536, 0.049686241685705325)\n", + "1 (1.7713141590847779, 0.4124430763148228)\n", + "2 (0.397378139631932, 0.8198047557522408)\n", + "3 (0.8382330232238275, 0.6576275695558433)\n", + "4 (1.4624456447141632, 0.4813200611541615)\n", "dtype: object" ] }, - "execution_count": 112, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } @@ -399,7 +403,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.6" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-regression-analysis/your-code.ipynb b/module-2_labs/lab-regression-analysis/your-code.ipynb index f0fadb4..f7149f8 100644 --- a/module-2_labs/lab-regression-analysis/your-code.ipynb +++ b/module-2_labs/lab-regression-analysis/your-code.ipynb @@ -52,11 +52,35 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "import statsmodels.api as sm" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# Your code here. \n", + "student_data = pd.DataFrame({'Age': [17,51,27,21,36,48,19,26,54,30], \n", + " 'Tardies': [10,1,5,9,4,2,9,6,0,3]})" + ] + }, + { + "cell_type": "code", + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ - "# Your code here. " + "student_data = student_data.sort_values('Age').reset_index(drop=True)" ] }, { @@ -68,11 +92,25 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 4, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# Your code here." + "# Your code here.\n", + "plt.scatter(x=student_data['Age'],y=student_data['Tardies']);" ] }, { @@ -84,11 +122,112 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 5, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
AgeTardies
01710
1199
2219
3266
4275
5303
6364
7482
8511
9540
\n", + "
" + ], + "text/plain": [ + " Age Tardies\n", + "0 17 10\n", + "1 19 9\n", + "2 21 9\n", + "3 26 6\n", + "4 27 5\n", + "5 30 3\n", + "6 36 4\n", + "7 48 2\n", + "8 51 1\n", + "9 54 0" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your response here. " + "# Your response here. \n", + "# Tardies drops with the increase of age. \n", + "student_data" ] }, { @@ -100,11 +239,25 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "-45.56666666666667 -0.9391626886887123\n" + ] + } + ], "source": [ - "# Your response here." + "# Your response here\n", + "cov=student_data['Age'].cov(student_data['Tardies'])\n", + "corr=student_data['Age'].corr(student_data['Tardies'])\n", + "\n", + "print(cov,corr)\n", + "\n", + "#Age and Tardies are negatively correlated " ] }, { @@ -116,11 +269,449 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ - "# Your response here." + "# Your response here.\n", + "student = student_data.copy()" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns.regplot(data=student,\n", + " x='Age',\n", + " y='Tardies');" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/ironhack/lib/python3.7/site-packages/numpy/core/fromnumeric.py:2495: FutureWarning: Method .ptp is deprecated and will be removed in a future version. Use numpy.ptp instead.\n", + " return ptp(axis=axis, out=out, **kwargs)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
constAgeTardies
01.01710
11.0199
21.0219
31.0266
41.0275
51.0303
61.0364
71.0482
81.0511
91.0540
\n", + "
" + ], + "text/plain": [ + " const Age Tardies\n", + "0 1.0 17 10\n", + "1 1.0 19 9\n", + "2 1.0 21 9\n", + "3 1.0 26 6\n", + "4 1.0 27 5\n", + "5 1.0 30 3\n", + "6 1.0 36 4\n", + "7 1.0 48 2\n", + "8 1.0 51 1\n", + "9 1.0 54 0" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "student = sm.add_constant(student)\n", + "student" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "y = student ['Tardies']\n", + "x = student [['const','Age']]\n", + "lin_reg = sm.OLS(y,x).fit()\n" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/ironhack/lib/python3.7/site-packages/scipy/stats/stats.py:1450: UserWarning: kurtosistest only valid for n>=20 ... continuing anyway, n=10\n", + " \"anyway, n=%i\" % int(n))\n" + ] + }, + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "
OLS Regression Results
Dep. Variable: Tardies R-squared: 0.882
Model: OLS Adj. R-squared: 0.867
Method: Least Squares F-statistic: 59.81
Date: Wed, 13 Nov 2019 Prob (F-statistic): 5.57e-05
Time: 18:13:27 Log-Likelihood: -15.622
No. Observations: 10 AIC: 35.24
Df Residuals: 8 BIC: 35.85
Df Model: 1
Covariance Type: nonrobust
\n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "
coef std err t P>|t| [0.025 0.975]
const 12.8888 1.111 11.605 0.000 10.328 15.450
Age -0.2428 0.031 -7.734 0.000 -0.315 -0.170
\n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "
Omnibus: 3.949 Durbin-Watson: 0.968
Prob(Omnibus): 0.139 Jarque-Bera (JB): 1.714
Skew: -1.014 Prob(JB): 0.424
Kurtosis: 3.069 Cond. No. 96.4


Warnings:
[1] Standard Errors assume that the covariance matrix of the errors is correctly specified." + ], + "text/plain": [ + "\n", + "\"\"\"\n", + " OLS Regression Results \n", + "==============================================================================\n", + "Dep. Variable: Tardies R-squared: 0.882\n", + "Model: OLS Adj. R-squared: 0.867\n", + "Method: Least Squares F-statistic: 59.81\n", + "Date: Wed, 13 Nov 2019 Prob (F-statistic): 5.57e-05\n", + "Time: 18:13:27 Log-Likelihood: -15.622\n", + "No. Observations: 10 AIC: 35.24\n", + "Df Residuals: 8 BIC: 35.85\n", + "Df Model: 1 \n", + "Covariance Type: nonrobust \n", + "==============================================================================\n", + " coef std err t P>|t| [0.025 0.975]\n", + "------------------------------------------------------------------------------\n", + "const 12.8888 1.111 11.605 0.000 10.328 15.450\n", + "Age -0.2428 0.031 -7.734 0.000 -0.315 -0.170\n", + "==============================================================================\n", + "Omnibus: 3.949 Durbin-Watson: 0.968\n", + "Prob(Omnibus): 0.139 Jarque-Bera (JB): 1.714\n", + "Skew: -1.014 Prob(JB): 0.424\n", + "Kurtosis: 3.069 Cond. No. 96.4\n", + "==============================================================================\n", + "\n", + "Warnings:\n", + "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n", + "\"\"\"" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lin_reg.summary()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 8.760850\n", + "1 8.275209\n", + "2 7.789567\n", + "3 6.575463\n", + "4 6.332643\n", + "5 5.604180\n", + "6 4.147256\n", + "7 1.233406\n", + "8 0.504944\n", + "9 -0.223518\n", + "dtype: float64" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Tardies = 12.8888 + ti * (-0.2428)\n", + "lin_reg.predict(student[['const','Age']])" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
constAgeTardiesreg
01.017108.7612
11.01998.2756
21.02197.7900
31.02666.5760
41.02756.3332
51.03035.6048
61.03644.1480
71.04821.2344
81.05110.5060
91.0540-0.2224
\n", + "
" + ], + "text/plain": [ + " const Age Tardies reg\n", + "0 1.0 17 10 8.7612\n", + "1 1.0 19 9 8.2756\n", + "2 1.0 21 9 7.7900\n", + "3 1.0 26 6 6.5760\n", + "4 1.0 27 5 6.3332\n", + "5 1.0 30 3 5.6048\n", + "6 1.0 36 4 4.1480\n", + "7 1.0 48 2 1.2344\n", + "8 1.0 51 1 0.5060\n", + "9 1.0 54 0 -0.2224" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "student = student.assign(reg=12.8888+student['Age']*-0.2428)\n", + "student" ] }, { @@ -132,11 +723,27 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# Your code here." + "# Your code here.\n", + "fig, ax = plt.subplots(figsize=(7,4))\n", + "plt.scatter(x=student['Age'],y=student['Tardies'])\n", + "plt.plot(student['Age'],student['reg'],color='r');" ] }, { @@ -148,7 +755,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 15, "metadata": {}, "outputs": [], "source": [ @@ -165,11 +772,181 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 16, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
MakeModelYearEngine DisplacementCylindersTransmissionDrivetrainVehicle ClassFuel TypeFuel Barrels/YearCity MPGHighway MPGCombined MPGCO2 Emission Grams/MileFuel Cost/Year
0AM GeneralDJ Po Vehicle 2WD19842.54.0Automatic 3-spd2-Wheel DriveSpecial Purpose Vehicle 2WDRegular19.388824181717522.7647061950
1AM GeneralFJ8c Post Office19844.26.0Automatic 3-spd2-Wheel DriveSpecial Purpose Vehicle 2WDRegular25.354615131313683.6153852550
2AM GeneralPost Office DJ5 2WD19852.54.0Automatic 3-spdRear-Wheel DriveSpecial Purpose Vehicle 2WDRegular20.600625161716555.4375002100
3AM GeneralPost Office DJ8 2WD19854.26.0Automatic 3-spdRear-Wheel DriveSpecial Purpose Vehicle 2WDRegular25.354615131313683.6153852550
4ASC IncorporatedGNX19873.86.0Automatic 4-spdRear-Wheel DriveMidsize CarsPremium20.600625142116555.4375002550
\n", + "
" + ], + "text/plain": [ + " Make Model Year Engine Displacement \\\n", + "0 AM General DJ Po Vehicle 2WD 1984 2.5 \n", + "1 AM General FJ8c Post Office 1984 4.2 \n", + "2 AM General Post Office DJ5 2WD 1985 2.5 \n", + "3 AM General Post Office DJ8 2WD 1985 4.2 \n", + "4 ASC Incorporated GNX 1987 3.8 \n", + "\n", + " Cylinders Transmission Drivetrain Vehicle Class \\\n", + "0 4.0 Automatic 3-spd 2-Wheel Drive Special Purpose Vehicle 2WD \n", + "1 6.0 Automatic 3-spd 2-Wheel Drive Special Purpose Vehicle 2WD \n", + "2 4.0 Automatic 3-spd Rear-Wheel Drive Special Purpose Vehicle 2WD \n", + "3 6.0 Automatic 3-spd Rear-Wheel Drive Special Purpose Vehicle 2WD \n", + "4 6.0 Automatic 4-spd Rear-Wheel Drive Midsize Cars \n", + "\n", + " Fuel Type Fuel Barrels/Year City MPG Highway MPG Combined MPG \\\n", + "0 Regular 19.388824 18 17 17 \n", + "1 Regular 25.354615 13 13 13 \n", + "2 Regular 20.600625 16 17 16 \n", + "3 Regular 25.354615 13 13 13 \n", + "4 Premium 20.600625 14 21 16 \n", + "\n", + " CO2 Emission Grams/Mile Fuel Cost/Year \n", + "0 522.764706 1950 \n", + "1 683.615385 2550 \n", + "2 555.437500 2100 \n", + "3 683.615385 2550 \n", + "4 555.437500 2550 " + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Import any libraries you may need & the data" + "# Import any libraries you may need & the dataa\n", + "vehicles = pd.read_csv('vehicles.csv')\n", + "vehicles.head()" ] }, { @@ -183,11 +960,222 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 17, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
YearEngine DisplacementCylindersFuel Barrels/YearCity MPGHighway MPGCombined MPGCO2 Emission Grams/MileFuel Cost/Year
Year1.0000000.0378760.082469-0.2210840.1618180.2672590.204751-0.222300-0.091913
Engine Displacement0.0378761.0000000.9018580.789752-0.740317-0.715039-0.7467820.8035200.769678
Cylinders0.0824690.9018581.0000000.739517-0.703866-0.650287-0.6986480.7523930.778153
Fuel Barrels/Year-0.2210840.7897520.7395171.000000-0.877752-0.909664-0.9097430.9861890.916208
City MPG0.161818-0.740317-0.703866-0.8777521.0000000.9238560.985457-0.894139-0.858645
Highway MPG0.267259-0.715039-0.650287-0.9096640.9238561.0000000.969392-0.926405-0.851404
Combined MPG0.204751-0.746782-0.698648-0.9097430.9854570.9693921.000000-0.926229-0.875185
CO2 Emission Grams/Mile-0.2223000.8035200.7523930.986189-0.894139-0.926405-0.9262291.0000000.930865
Fuel Cost/Year-0.0919130.7696780.7781530.916208-0.858645-0.851404-0.8751850.9308651.000000
\n", + "
" + ], + "text/plain": [ + " Year Engine Displacement Cylinders \\\n", + "Year 1.000000 0.037876 0.082469 \n", + "Engine Displacement 0.037876 1.000000 0.901858 \n", + "Cylinders 0.082469 0.901858 1.000000 \n", + "Fuel Barrels/Year -0.221084 0.789752 0.739517 \n", + "City MPG 0.161818 -0.740317 -0.703866 \n", + "Highway MPG 0.267259 -0.715039 -0.650287 \n", + "Combined MPG 0.204751 -0.746782 -0.698648 \n", + "CO2 Emission Grams/Mile -0.222300 0.803520 0.752393 \n", + "Fuel Cost/Year -0.091913 0.769678 0.778153 \n", + "\n", + " Fuel Barrels/Year City MPG Highway MPG \\\n", + "Year -0.221084 0.161818 0.267259 \n", + "Engine Displacement 0.789752 -0.740317 -0.715039 \n", + "Cylinders 0.739517 -0.703866 -0.650287 \n", + "Fuel Barrels/Year 1.000000 -0.877752 -0.909664 \n", + "City MPG -0.877752 1.000000 0.923856 \n", + "Highway MPG -0.909664 0.923856 1.000000 \n", + "Combined MPG -0.909743 0.985457 0.969392 \n", + "CO2 Emission Grams/Mile 0.986189 -0.894139 -0.926405 \n", + "Fuel Cost/Year 0.916208 -0.858645 -0.851404 \n", + "\n", + " Combined MPG CO2 Emission Grams/Mile Fuel Cost/Year \n", + "Year 0.204751 -0.222300 -0.091913 \n", + "Engine Displacement -0.746782 0.803520 0.769678 \n", + "Cylinders -0.698648 0.752393 0.778153 \n", + "Fuel Barrels/Year -0.909743 0.986189 0.916208 \n", + "City MPG 0.985457 -0.894139 -0.858645 \n", + "Highway MPG 0.969392 -0.926405 -0.851404 \n", + "Combined MPG 1.000000 -0.926229 -0.875185 \n", + "CO2 Emission Grams/Mile -0.926229 1.000000 0.930865 \n", + "Fuel Cost/Year -0.875185 0.930865 1.000000 " + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your response here. " + "# Your response here.\n", + "vehicles.corr()\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAdwAAAFzCAYAAACU6bjOAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzdeZwcVbn/8c93JoEEwqKC7Igsyk6AAKLIvooIKLKISkDhhwJuVxEVEXC5XvEqCChEhHAV2WQRkX0JYRNIICQERPZdBEQIEMgy398f5zSpNLP0ZKaqO53n/XrVa7prOU/VZNJPn1OnzpFtQgghhFCujmafQAghhLAgiIQbQgghVCASbgghhFCBSLghhBBCBSLhhhBCCBWIhBtCCCFUIBJuG1Byi6RdCuv2lnRVM88rhBDCHIrncNuDpHWBC4ENgU5gErCz7UcGUOYQ27MG6RRDCGGBFgm3jUj6GfA6sCgwzfYPJR0AHAYsBNwGHG67S9IYYCNgOHC+7eNzGU8DpwM7AyfavrAJlxJCCG1nSLNPIAyq44C7gRnAqFzr3RP4sO1ZOcnuC/wROMr2vyUNAW6U9Cfb9+dyXrf9kWZcQAghtKtIuG3E9uuSzgdes/2WpO2BTYAJkiDVZp/Ku+8n6Qukv4HlgbWBWsI9v6cYkg4BDgHoXPHDG3cs9cFSrqUnr9z+60rj1Uyf2VV5zMXuv6bymABPr7ZdU+I+99qMpsRdctjQpsRd44kbKo+pFav9/1o0ZIW1NJDjF9rwoIabY2fcc+aAYpUlEm776coLgIAzbX+/uIOkNYCvApva/o+kPwDDCru83lPhtscAY6B//wFCCGEg1NHZ7FMYsOil3N6uA/aWtBSApPdIWhlYHJgGvCppOWCnJp5jCCH0SR2dDS+tKmq4bcz2FEnHAddJ6gBmAocCE0jNx/cBjwK3Nu8sQwihb62cSBsVCbfN2D627v0fSZ2k6n2uh+NXLOG0QghhQCLhhhBCCBXoHLpQs09hwCLhhhBCaHlRww0hhBAqEAk3hBBCqIA65v+HaiLhhhBCaHlRww0hhBAqEAk3hBBCqEBH9FIOIYQQyhc13LBAa8ZEAkts/uXKYwIsvuIHKo+55ErVxwQ44eIPNSXusGHN+Th6dnpzpnzebc/jK485dOF/VB6z5u8nrTWg4yPhhhBCCBXoiIQbQgghlC9quCGEEEIFOoZEp6kQQgihdFHDDSGEECrQDgl3/h8rK4QQQttTZ2fDS0PlSTtLelDSw5KO6mb7EpL+IuleSVMlHTjQa4gabgghhJY3mDVcSZ3AqcAOwNPAXZIus31/YbfDgPtt7yZpaeBBSefYnjGvcSPhhhBCaHmD3KS8KfCw7UcBJJ0H7A4UE66BxSQJGAH8GxjQQ9uRcEMIIbS8ziGNpytJhwCHFFaNsT2m8H4F4KnC+6eBzeqKOQW4DHgWWAzYx3ZXf865XtPu4UqaLWlSYXlHG3o/yrptkM7pWEnP5PN5SNLFktYubD+j+L4f5Y6WdMpgnGPZ8rku3+zzCCGEInWo4cX2GNujCsuY+uK6CeG69zsBk4DlgZHAKZIWH8g1NLOGO932yMEoyPaHB6Oc7Je2fw4gaR/gBknr2X7B9hcHMU6rGg3cR/pWF0IILSG17A6ap4GVCu9X5J2feQcCP7Vt4GFJjwFrAnfOa9CW66Us6XFJx0m6W9IUSWvm9UtLujavP13SE5KWytteyz+3ljRO0p8k/V3SObn9HUkbS7pJ0kRJV0tarq9zsX0+cA3wmVzGOEmjJHVKGivpvnyOXy9sP1HSbXnbpt1c326S7pB0j6TrJC2T14+QdFYub7KkT+X1O0q6PV/3hZJGFH5PP8nbJkjaKF/XI5IOLcT7lqS7cpnH5XWrSHpA0m9z77trJA2XtBcwCjgn1/KHz+u/YwghDKaODjW8NOAuYA1J75e0ELAvqfm46ElgO4D8Of1B4NEBXcNADh6g4XVNyvsUtr1oeyPgN8A387ofADfk9ZcAK/dQ7obA14C1gVWBj0gaCpwM7GV7Y+BM4McNnufdpG81RSOBFWyva3s94KzCtkVzjfvLOU69W4AP2d4QOA84Mq//PvCK7fVsr0+qWS8FHA1sn697AvCNQllP2d4cuBkYC+wFfAg4HlKyBtYgdRAYCWwsact87BrAqbbXAf4DfMr2n3KM/W2PtD29wd9RCCGUqj9Nyn2xPQs4HLgaeAC4wPZUSYcWKiw/BD4saQpwPfBt2y8O5BpatUn54vxzIvDJ/HoLYE8A21dJermHY++0/TSApEnAKqSEsi5wba7wdgLPNXie3f3rPQqsKulk4K+kWnDNufkcx0taXNKSdceuCJyfa9gLAY/l9duTvmWRj39Z0sdJXxxuzee9EHB7oazaN7IpwAjb04Bpkt7McXfMyz15vxGkRPsk8JjtSXn9RNLvqU/Fzggnn3IKX/jCFxo5LIQQBqSRRNoftq8Arqhbd1rh9bOkz89B06q9lN/KP2cz5xwb/W2/VXhdO17A1Fwb7K8NSbW+t+VkuAHppvphwN7AQbXNdcfXvz8Z+IXtyyRtDRyb16ubfQVca3u/Hs6tdq1dzH3dXcy57v+2ffpchUqr8M7fU0PNx7nzwRiA6W++WX++IYRQis7OlrsD2m/z0xXcQkpstabSd/Xj2AeBpSVtno8fKmmdvg7K91F3JNdaC+uXAjpsX0RqCt6osHmfvM8WpCbiV+qKXQJ4Jr8+oLD+GlITRy3Gu4C/kZrEV8/rFpHUn0lSrwYOKtz3XUHSe/s4ZhqpC3wIIbSMwWxSbpZm1nCH5ybfmqts9/Zo0HHAufle702kJuFpjQSyPSN3CPqVpCVI130iMLWb3b8u6bPAoqTeutvafqFunxWAsyTVvrB8p7DtZaXHlBZnTq236FjgQknPkBLq+/P6HwGnSrqPVOM8zvbFkkbn614473c00NAs0ravkbQWcHtukn4N+GwuvydjgdMkTQc2j/u4IYRW0GBnqJam1OO59eWEM9v2rFxT/c1gPVY0WCSNA75pe0Jf+7aDZjQpL7H5l6sOCcDiK/anYWFwLLlS9TEBTrj4+02JO2xYc77/vz59QIMHzbNv73l85TGHLty8OtbfT9p9QBlz5HevaPjzZtJPPtaS2blV7+F2Z2XgglyrnAEc3OTzCSGEUBEN7nO4TTHfJFzbD5E6MLUs21s3+xxCCKEddQ6Zn7ocdW++SbghhBAWXK3cGapRkXBDCCG0vI5oUg4hhBDKFzXcEEIIoQKRcEMIIYQKtMNzuJFwQwghtLyOzki4YQE2fWZX5TGbMQAFwKtPNzS416Babq31Ko8JMHzRhZoSd5GlmjMbZMfLbzYl7rBFqv89z5rZ2yBzrS1quCGEEEIF4h5uCCGEUIEYaSqEEEKoQDQphxBCCBWIJuUQQgihAgvFWMohhBBC+TqjhhtCCCGULxJuCCGEUIFIuCGEEEIFhkTCDSGEEMrXDp2m5v8rmE9IWlbSeZIekXS/pCskdTtOoaStJV2eX39C0lH9jDVW0l6Dcd4hhNAKOjs6Gl5aVdRwK6A0RMolwNm2983rRgLLAL0O0mv7MuCyks9viO1ZZcYIIYSBiHu4oVHbADNtn1ZbYXuSpN9LerftPwNIOgc4H3i1tp+k0cAo24dLGpu3jQKWBY60/aec0E8GtgUeA1Q4fmPgF8AI4EVgtO3nJI0DbgM+Alwm6UngB8Bs4BXbW5bymwghhHnQDgm3deve7WVdYGI3688ADgSQtATwYeCKPspaDtgC+Djw07xuT+CDwHrAwbkcJA0lJeK9bG8MnAn8uFDWkra3sv2/wDHATrY3AD7RU3BJh0iaIGnC2Wed2cephhDC4OjsUMNLq4oabhPZvknSqZLeC3wSuMj2rD4G6b7Udhdwv6Rl8rotgXNtzwaelXRDXv9BUrK/NpfZCTxXKOv8wutbgbGSLgAu7uWcxwBjAP497Q03eKkhhDAgnTF5QWjQVKCnTky/B/YH9gUOaqCstwqvi3+B3SU/AVNtb95DWa+/fbB9qKTNgF2BSZJG2n6pgfMJIYTSRS/l0KgbgIUlHVxbIWkTSVsBY4GvAdieOo/ljwf2ldQpaTnSPWOAB4GlJW2eYw6VtE53BUhazfYdto8h3etdaR7PJYQQBt2QDjW8tKqo4VbAtiXtCZyYH/F5E3gc+Jrt5yU9AFw6gBCXkDpMTSH1er4px52RHw/6Vb5HPAQ4kVTjrneCpDVIteLrgXsHcD4hhDCoWvnebKMi4VbE9rPA3vXrJS0CrAGcW9h3HDAuvx5LqgVje3RdmSPyTwOH9xB3Eukeb/36revef7LBSwkhhMq1Q8KNJuUmkrQ98HfgZNuvNPt8QgihVUUv5TAgtq8DVm72eYQQQqtr5UTaqEi4IYQQWl479FKOhBtCCKHltUMNd/7/yhBCCKHtDfY9XEk7S3pQ0sO9TRCTH+GcPRgTwkQNN4QQQssbzBqupE7gVGAH4GngLkmX2b6/m/3+B7h6MOJGDTeEEELLG+Qa7qbAw7YftT0DOA/YvZv9jgAuAv41GNcQNdwwzxa7/5rKYy65UrdTCJduubXWa0rcB6+9qPKY459+te+dSvDa4/9pStxmefimUmfd7NaiSzdzALk9BnT00MGd53YF4KnC+6eBzYo7SFqBNDHMtsAmgxE0arghtKhmJNsQWlWnGl+Ks5rl5ZC64rqrBtePR38i8O08KcygiBpuCCGEltfRj3u4xVnNevA0c48XvyLwbN0+o4Dz8kxrSwEfkzTL9jwPwxsJN4QQQssb5On57gLWkPR+4BnSbG2fKe5g+/2115LGApcPJNlCJNwQQgjzgY5BTLh53vHDSb2PO4EzbU+VdGjeftqgBSuIhBtCCKHldQ7yuBe2rwCuqFvXbaKtnzhmXkXCDSGE0PKGdM7/fXwj4YYQQmh5g13DbYZIuCGEEFreYN7DbZZIuCGEEFpeO0xeEAk3hBBCy2uHGu78fxe6IM/oMKmwrDKP5YyTNKqH9Q/msh/oZvSSQSNptKRTGthvoqQ/SvpSYd1mkiZLii9UIYS20J+RplpVu30gT7c9suQY+9ueIOndwCOSxubBr/skqbM4TJikIbZnzeuJ5C8UzwBfB26X9CfgJeAU4MsDKXswzi+EEAbL0DbopTz/X0Ef6muKki6XtHV+vaOk2yXdLelCSSP6UfQI4HVgdi7rN3nMzqmSjivEe1zSMZJuAT6da8k/kXQT8FVJS0u6SNJdeflIN9fwaUn3SbpX0vjCpl2Aq2w/D/wc+BlwKDDZ9i352F0K13i+pEXz+uNyvPsknaY8fpmkWyT9OMc5vB+/jxBCKE2HGl9aVbsl3OGF5uRLettR0lLA0cD2tjcCJgDfaCDGOZImAw8CPyzUWL9nexSwPrCVpPULx7xpewvb5+X3S9reyvb/AicBv7S9CfAp4IxuYh4D7GR7A+AThfU7A1fl16cBawPfAo7M1/he4Chgu3yNk4Gv5v1PyjHXA5bIZdUsbntL2yfWn0hxUPAzLq1+tqAQwoKpU2p4aVULcpPyh0gJ6tZcuVsIuL2B42pNyksDt0m6yvYTwN75nu4QYLlc9uR8zPl1ZRTfbw+srTl/JItLWqxu/1uBsZIuAC4GkLQQsKLtRwFsd0k6HRhl+6V83IfzedxWuMZb8rbtJH0LGEYamHsicGXeVvti8A7FQcFn3nFp/ewaIYRQinboNNVuCbc7s5i7Jj8s/xRwre395qVQ2y9IuhvYTFIH8E1gE9sv54GuhxV2f73u8OL7DmBz29OLOxQSMLYPlbQZsCswSdJIYCRzkmdNV17eLobU5Py5urIXId3n3cj2M5J+1Mf5hhBCU7XBLdy2a1LuzuPASEkdklYCNs3r/wZ8RNLqkJKQpIZnN89Ja0PgEWBxUpJ6RdIypHurjbqGwr3SnEzrY61m+w7bxwAvkqaV2pk5NdKe3EZq3l41l7OopDWA4aTE/GKuTX+qH+cbQgiVG9rR0fDSqhaEGu6twGPAFOA+4G54u4Y6GjhX0sJ536OBf/RR3jmSpgMLA2NtTwSQdA8wFXg0x2zUV4BT833hIcB4UsenohNyohRwPXAv8FvSvd0e2X5e0heA83MTNMB3bf9V0tmk38cTwB39ON8QQqhcOzQpy47bcPMbSSsCv7Xdn5r0oGvGPdy1zu7qe6cSDB+xcN87DbIHr72o8pgA37z/pqbEfW1Wc/5tm+X0kdtXHnPRpVfqe6eS/PuqYwaUMSc985+GP29GrrBkS2bnBaGG23ZsP03/mq1DCGG+1g413Ei4IYQQWl4b5NtIuCGEEFpfB/N/xo2EG0IIoeW1w2NBkXBDCCG0vGhSDiGEECoQTcohhBBCBaKGGxZoT6+2XeUxT7j4Q5XHBBi+6EJ971SC8U+/2pS4P197q8pjNusZ0TdeerYpcY+YfH1T4i4+pFk3Q3sdp6dPrTwLUKMi4YbQohakZBuq0bxkO3CtPAtQoyLhhhBCaHltkG8j4YYQQmh982/dfI5IuCGEEFqe2qCKGwk3hBBCy4tOUyGEEEIF2qCCGwk3hBBC64teyiGEEEIFokk5hBBCqEAb5NtIuCGEEFpfO9Rw2+HRpvmKpGUlnSfpEUn3S7pC0gckLS/pT3mfkZI+1s9yR0uypO0K6/bM6/bK78dJelDSvZJulfTBvH6IpJ9IekjSpLx8bzCvO4QQBkJSw0urioRbIaW/hEuAcbZXs7028F1gGdvP2t4r7zoS6FfCzaYA+xXe7wvcW7fP/rY3AM4GTsjrfgQsD6xneyTwUWDoPMQPIYRSdKjxpVVFwq3WNsBM26fVVtieZPtmSatIuk/SQsDxwD65prlPrnkuDSCpQ9LDkpbqpvybgU0lDZU0AlgdmNTDuYwHVpe0CHAwcITtN/M5TbN97GBddAghDFSn1PDSquIebrXWBSb2toPtGZKOAUbZPhxA0prA/sCJwPbAvbZf7O5w4DpgJ2AJ4DLg/T2E2o1UI14deNL2tP5fTgghVKOF82jDooY7fzgT+Hx+fRBwVi/7nkdqSt4XOLeb7edImgR8BPhm/UZJB+aa9VOS3jFfmqRDJE2QNOHc/+vtNEIIYfDIbnhpqDxp59yn5WFJR3WzXZJ+lbdPlrTRQK8harjVmgrs1ededWw/Jel5SdsCm5Fquz3te6ekdYHptv/RTQeC/W1PqL2R9BKwsqTFclPyWcBZku4DOrspfwwwBuCxF6c19pcdQggD5a5BK0pSJ3AqsAPwNHCXpMts31/YbRdgjbxsBvwm/5xnUcOt1g3AwpIOrq2QtImk+glIpwGL1a07A/gDcIHt2X3E+Q6pM1afbL8B/A44RdKwfE6dQHNmXA8hhG7IXQ0vDdgUeNj2o7ZnkFoGd6/bZ3fg/5z8DVhS0nIDuYZIuBWybWBPYIf8WNBU4Fjg2bpdbwTWrnWayusuA0bQe3NyLc6Vtm/sx6l9D3gOuE/SPaTOV2d3c14hhNAcXbMbX/q2AvBU4f3TeV1/9+mXaFKumO1ngb172Lxu3uffwCZ12zYgdZb6ew/ljgXGdrN+dOH11j0cOxM4Ki8hhNB6+tGkLOkQ4JDCqjH5dtjbu3QXob6YBvbpl0i484F8Q/9L9HLvNoQQ2lmDTcXA3H1NevA0UOwUuiLvbNFrZJ9+iSbl+YDtn9p+n+1bmn0uIYTQFO5qfOnbXcAakt6fxz7Yl3Tbrugy4PO5t/KHgFdsPzeQS4gabgghhNY3iL2Ubc+SdDhwNelpjDNtT5V0aN5+GnAFacS/h4E3gAMHGjcSbgghhNY3iAkXwPYVpKRaXFccBdDAYYMZMxJuCCGElqfZs5p9CgMWCTeEEELrG+QabjNEwg0hhND6GhyysZVFwg0hhND6ooYbFmTPvTaj8pjDhjXnT3aRpYZXHvO1x/9TeUyARZd+x5wVlXj9haf63qkEQ4aNaErc12ZVn0AWHzL/Pgnan+dwW1Uk3BBCCK0vEm4IIYRQga7opRxCCCGULpqUQwghhCp0RcINIYQQyhePBYUQQggViCblEEIIoXyKTlMhhBBCBaKGG0IIIVSga3azz2DA5t9hR0oi6bW696MlnZJfHyrp830c//b+VZI0VtIbkhYrrDtJkiUtld/PljRJ0n2SLpS0SF6/jKQ/SnpU0kRJt0vas+prCCGEnrirq+GlVUXC7Qfbp9n+v2afRy8eBnYHkNQBbAM8U9g+3fZI2+sCM4BDJQm4FBhve1XbGwP7AitWe+ohhNCLrtmNLy0qEm4/SDpW0jfz600kTc61wRMk3VfYdXlJV0l6SNLP8v57S/pFfv1VSY/m16tJuiW/PkbSXbkGOkbJapLuLpzDGpIm9nCK5wL75NdbA7cCPfU0uBlYHdgWmFE38fITtk/u1y8nhBDKFAm3LQ3Pza6TJE0Cju9hv7OAQ21vDtT/C48kJb71gH0krQSMBz6at38UeEnSCsAWpOQHcIrtTXINdDjwcduPAK9IGpn3ORAY28M5PQQsLeldwH7Aed3tJGkIsAswBVgHuLu7/UIIoVV45syGl1YVCfedas2uI22PBI6p30HSksBitm/Lq/5Yt8v1tl+x/SZwP/A+2/8ERuR7rCvlY7YkJd9awt1G0h2SppBqnuvk9WcAB0rqJCXy+nhFF5OahDcrlFszPH+JmAA8Cfyum2s7VdK9ku7qrnBJh0iaIGnCn/94di+nEUIIg6gNarjRS3neqI/tbxVez2bO7/l2Ug31QVIyPAjYHPgvScOAXwOjbD8l6VhgWD7uIuAHwA3ARNsv9RL7PFKN9WzbXekW7dum5y8Rcy5Emgp8qvbe9mG5k9WE7gq3PQYYA3Db4y/N/0O/hBDmC27hRNqoqOHOA9svA9MkfSiv2rfBQ8cD38w/7yF1anrL9ivMSa4vShoB7FWI9yZwNfAbUlN2b+f2JPA9UvJuxA3AMElfKqxbpMFjQwihGl1djS8tKmq48+4LwG8lvQ6MA15p4JibSc3J423PlvQU8HcA2/+R9FvSfdXHgfom3XOATwLX9BXE9ukNXgO2LWkP4JeSjgReAF4Hvt1oGSGEULZ2qOFGwq1je0Td+7HkTkq2jy1smmp7fQBJR5GbYIv75/cfL7x+hEJztO0d62IdDRzdw6ltAZxpu9u/Otuje1i/SuH1iB72eY7Ga+khhFC9SLgLtF0lfYf0O3wCGF1WIEmXAKuROlKFEMICp5V7HzcqEu48sn0+cH5FsWLUpxDCgi1quCGEEEIFIuGGEEII5WvlMZIbFQk3hBBC64sabgghhFA+z4pOUyGEEEL5ooYbQgghVCASbliQLTlsaOUxn53e02yD5ep4+c2mxG2GN156tilxhwzrdlyW0s1687WmxG2GN7vm3+HPPTsSbgghhFC+6KUcQgghVCCalEMIIYTydUUv5RBCCKF8nj3/NynHfLghhBBanmd3NbwMhKR3S7pW0kP557t62bdT0j2SLm+k7Ei4IYQQWp67uhpeBugo4HrbawDX5/c9+SrwQKMFR8INIYTQ8qqq4QK7A2fn12cDe3S3k6QVgV2BMxotOO7hhhBCaHmzZ1TWaWoZ288B2H5O0nt72O9E4EhgsUYLjoQbQgih5fWnqVjSIcAhhVVjbI8pbL8OWLabQ7/XYPkfB/5le6KkrRs9rwWySVnSspLOk/SIpPslXSHpA4NQ7lhJe3WzfpSkXw20/FzWaEmn9LDekrYrrNszr9srvx8n6UFJ90q6VdIH8/ohkn6SOwlMyktDf3ghhFCF/jQp2x5je1RhGTNXWfb2ttftZvkz8Lyk5QDyz391czofAT4h6XHgPGBbSX/o6xoWuIQrScAlwDjbq9leG/gusExZMW1PsP2VssovmALsV3i/L3Bv3T77296AdG/ihLzuR8DywHq2RwIfBaoftzGEEHpQ4T3cy4AD8usDgD+/41zs79he0fYqpM/ZG2x/tq+CF7iEC2wDzLR9Wm2F7Um2b1ZygqT7JE2RtA+ApK0l3STpAkn/kPRTSftLujPvt1qh/O0l3Zz3+3jh+Mvz62MlnZlrm49KejsRS/psLnOSpNMldeb1B+bybiJ9s+rJzcCmkoZKGgGsDkzqYd/xwOqSFgEOBo6w/Wb+fUyzfWx/fqkhhFCmCnsp/xTYQdJDwA75PZKWl3TFQApeEO/hrgtM7GHbJ4GRwAbAUsBdksbnbRsAawH/Bh4FzrC9qaSvAkcAX8v7rQJsBawG3Chp9W7irElK/IsBD0r6DSk57gN8xPZMSb8G9pd0LXAcsDHwCnAjcE8P52/gOmAnYAnSN7X397DvbqQa8erAk7an9bBfCCE0XVdFA1/YfgnYrpv1zwIf62b9OGBcI2UviDXc3mwBnGt7tu3ngZuATfK2u2w/Z/st4BHgmrx+CinJ1lxgu8v2Q6TEvGY3cf5q+y3bL5LuDyxD+gfemJTkJ+X3qwKbkZq/X7A9Azi/j2s4j9TEsS9wbjfbz8nlfwT4Zv3GXJueJOkpSSt1s/0QSRMkTbjg92f1cSohhDA4umbManhpVQtiDXcq8I6OTZl6Oe6twuuuwvsu5v491s9/1d18WMWyZufjBZxt+ztznZC0Rw9ldMv2nZLWBabb/ke6ZT2X/W1PKJT/ErCypMVyU/JZwFmS7gM6uyl/DDAG4P5/vjr/zvUVQpivDEJTcdMtiDXcG4CFJR1cWyFpE0lbke5r7pOH61oa2BK4s5/lf1pSR76vuyrwYIPHXQ/sVXvmKw8v9j7gDmBrSe+RNBT4dANlfYfUEaxPtt8AfgecImlYjt0JLNTgeYcQQukq7DRVmgWuhmvbkvYETpR0FPAm8DjpHux4YHNSz14DR9r+p6TumoV78iCpKXoZ4FDbb3ZTy+zuvO6XdDRwjaQOYCZwmO2/SToWuB14DribbmqedWVd2Y/zhfTs2Q+B+yRNA6aTejE3ZybyEEKo08qJtFGyo1UwzJtmNCnfv8HmVYcEYLElFq485l8febnymACnj9y+KXE7FxrelLiz3nytKXEPmnRD5THfvVCv39VL9ZO3Hum75tGLx799QMOfN6v8z9kDilWWBa6GG0IIYf7TDjXcSLghhBBaXtfMmIA+hBBCKF3UcEMIIYQKRMINIVOcwZEAACAASURBVIQQKlDVSFNlioQbQgih5bXDwBeRcEMIIbS8rhmzm30KAxYJN4QQQsuLJuWwQFvjieof3N9tz+MrjwkwbJHqR7p8+KbLKo8JcMTk65sS97VZ8/8Han+cOXLbymMu8p7lK49Z85MBHu+u+X+Qpki4IYQQWl7X7Ei4IYQQQunisaAQQgihAo4abgghhFC+2dFLOYQQQihfV3SaCiGEEMoXTcohhBBCBeI53BBCCKECUcMNIYQQKtAOCbejrx0kLSvpPEmPSLpf0hWSPpC3rSPpBkn/kPSQpO9LUt62v6TJeblN0gY9lP+4pCmSJuXlV/25AEm39Wf/fMzxkrbv73E9lLWppHH5+u+W9FdJ6w1G2f04h6GSJubXlvT7wrYhkl6QdHl+/wlJR+XXx0r6ZpXnGkII82L2zNkNL62q1xpuTp6XAGfb3jevGwksI+kp4DLgS7avkbQIcBHwZeBU4DFgK9svS9oFGANs1kOobWy/OC8XYPvD83DMMfMSq56kZYALgM/Yvi2v2wJYDZhSt+8Q27MGI243tgBqXzxeB9aVNNz2dGAH4JnajrYvI/27hRDCfKMdRprqq4a7DTDT9mm1FbYn2b4Z+Axwq+1r8vo3gMOBo/L722y/nA/7G7Bif04s1xp/KWm8pAckbSLp4lyT/FFhv9fyz+XyvpMk3Sfpo5I6JY3N76dI+nred6ykvfLr7STdk7efKWnhvP5xScflWusUSWt2c5qHk76MvF3Ltn2L7UsLcX4h6Ubgf3Jt+LYc7zZJH8z7jZZ0qaS/SHpM0uGSvpH3+5ukd+f9vpJbGSZLOq9wHjsDVxbeXwnsml/vB5xb+H2NlnRKN7/v1SRdJWmipJt7uN4QQmgKz+5qeGlVfSXcdYGJPWxbp36b7UeAEZIWr9v3C8ydEOrdWGhS/nph/QzbWwKnAX8GDsvnNFrSe+rK+Axwte2RwAbAJGAksILtdW2vB5xVPEDSMGAssE/ePgT4UmGXF21vBPwG6K7pdR3g7l6uC+ADwPa2/wv4O7Cl7Q2BY5h7PO918zVsCvwYeCPvdzvw+bzPUcCGttcHDi0cuw0wrvD+PGDffH3rA3f0cY6QWiCOsL0x6Vp/3cAxIYRQCc92w0ur6vMebi8E9HRlb6+XtA0p4X67l7K2sT0yL78srK81fU4Bptp+zvZbwKPASnVl3AUcKOlYYD3b0/J+q0o6WdLOwKt1x3wQeMz2P/L7s4EtC9svzj8nAqv0cv4ASLoj18ZPKqy+0HbtpsISwIWS7gN+SUrYNTfanmb7BeAV4C+Fa6/FngycI+mzwKwcc3ng37mFAQDbk/Mx+wFXNHDeI4AP53ObBJwOLNfDvodImiBpwhmXXtNX0SGEMCi6ZrvhpVX1lXCnAhv3sm1UcYWkVYHXcrJD0vrAGcDutl+ah/N7K//sKryuvZ/r/rPt8aRk+Qzwe0mfz03aG5Bqf4flc5nrlBuMP7s+XjYV2KhwDpsB3ycl1prXC69/SEqs6wK7AcO6iQVzX2/xWncl3R/fGJgoaQiwC3B1N+d2GfBzCs3JvegA/lP40jPS9lrd7Wh7jO1Rtkd9cY8dGyg6hBAGrh06TfWVcG8AFpZ0cG1Fvpe6FXAOsEWtt6+k4cCvgJ/l9yuTaoifK9QgSyPpfcC/bP8W+B2wkaSlgA7bF5ES4UZ1h/0dWEXS6vn954Cb+hH2VFLzdrHj1iK97L8Eczowje5HHCR1ACvZvhE4ElgSGME779/WnAkcb3tKN9vmYvtV4DFJn86xpB56lYcQQjO0Q5Nyr72UbVvSnsCJ+VGSN4HHga/Zni5pd+BkSacCncDvgVqHnGOA9wC/Tp2dmWV7VH2M7EZJta8lk21/vof9erM18C1JM4HXSPc9VwDOyskK4Dt11/empANJTalDSM3Sp9Eg2/+UtA+pQ9QKwL+AF4GeZkn/GXC2pG+Qvsz0RyfwB0lLkGrmvwSmAWvY/ns35/Y0cFL9+l7sD/xG0tHAUNJ94Hv7eY4hhFCKVu4M1SjZrfttIPQuP4L0WduH9rlzCWbecWnlfzxrntWc5qJhiyxUecyHb2rO01tHTL6+KXFfmzX/f6D2x5kjt6085iLvWb7ymDX/ue5Hfd3C69VfV1q/4c+bXZ+aPKBYZYmRpuZjtm8Bbmn2eYQQQtlauam4UZFwQwghtLyuNmiNjYQbQgih5c2I+XBDCCGE8s1ugxruQAa+CCGEECox240vAyHp3ZKuzcMIXyvpXT3s93VJU/PQwefmkf16FQk3hBBCy5ttN7wM0FHA9bbXAK7P7+eSHwP9CjAqD2TUCezbV8GRcEMIIbS8qmq4wO6kYX7JP/foYb8hwPA8hsMiwLN9FRz3cEMIIbS8Cu/hLmP7OQDbz0l6b/0Otp+R9HPgSWA6cE1t5rzeRMIN80wrfrDymEMXLn2U0G7NasL4rIsuXT8/RzUWH9Kchq9mxX2zSb1fmzEIxRsv9VkJa1kz+jEuiqRDgEMKq8bYHlPYfh2wbDeHfq/B8t9Fqgm/H/gPabTCz9r+Q2/HRcINIYTQ8vpTw83JdUwv27fvaZuk5yUtl2u3y5GG7K23PWmmuRfyMReTZlzrNeHGPdwQQggtr8J7uJcBB+TXB5DmYq/3JPAhSYsoTRawHfBAXwVHwg0hhNDyKuyl/FNgB0kPATvk90haXtIVALbvAP4E3E2as7yDXmrUNdGkHEIIoeVVNZRynrt9u27WPwt8rPD+B8AP+lN2JNwQQggtL4Z2DCGEECrQDkM7RsINIYTQ8tphtuRIuCGEEFpe1HBDCCGECrTB/PORcEMIIbS+dqjhxnO4gKTZkiYVllXmsZxxkkZ1s36opJ/m6Z7uk3SnpF3mofzRkpavW7efpO9J+oek4YX1f5XU5+wVIYQwP5jR5YaXVhU13GS67ZEllv9DYDlgXdtvSVoG2GoeyhkN3Mfcs1LsDPwKWIw0DujRkvYAhto+byAnLWmI7VkDKSOEEAZDOzQpRw23B7k2eUrh/eWSts6vd5R0u6S7JV0oaUQv5SwCHAwcYfstANvP274gb99P0pRc8/2fvK5T0ti8bkqe6HgvYBRwTq6FD89Dio0kjXZyPPBpSSNJI6Mclssakcu6U9I9knbL61eTdHNeN1HSZnn99pKuk3QecM9g/k5DCGFeVTjSVHlsL/ALMBuYlJdL8rrRwCmFfS4HtgaWAsYDi+b13waOya/HkSYkLpa9PnBPD3GXJ43JuTSpteEG0tyLGwPXFvZbsrvygY2A/yu83w14FTi2sO5nwL759buAfwDDSPM3Dsvr1wTuyK+3B14DVu7hnA8BJuTlkAH8zuf52PkpZsRt35gRN5b+LlHDTabbHpmXPfvY90PA2sCtkiaRBrd+3zzG3QQYZ/sFp6bbc4AtgUeBVSWdLGlnUhLtzs7AlbU3tv9Cmirq14V9dgS+l8/1RlKyXRlYGPidpPuA8/I11dxu+8nuAtoeY3tUXvocO7QXh/S9y6BrRsyI274xI27ol7iH27NZzN3kPiz/FKn2uV+D5TwMrCxpMdvT6rapuwNsvyxpA2AnUtPw3sBB3ey6I/CpunVdzP2MuIA9bD8yV2DpR8BTwGeBoaRabc3rvV5RCCGEfosabs8eB0ZK6pC0ErBpXv834COSVod0j1bSB3oqxPYbwO+AX0laKB+znKTPAncAW0laSlInsB9wk6SlgA7bFwHfJzUdA0wjdY5C0hLAEKeBtntzNfCV2htJG+aXSwDPObUTHUAPyT+EEMLgiITbs1uBx0hTL/2c1DEJpwmHRwPnSppMSsBr9lHW0cALwP25CfdS4AXbzwHfITX13gvcbfvPwArAuNwMPDbvQ359Wl7/CeC6Bq7jOGCR3PlqKnBsXn8K8EVJfyM1ib/VQFmDaSDN0fNTzIjbvjEjbugX5RvhYT4j6QzgDNt/a/a5hBBC6Fsk3BBCCKEC0aQcQgghVCASbihdHsijvjd1FXEXbmRdO8i/46/0vWcIoVki4YbS2Z4NfK0JoW9vcF2pJL1L0vplxsi/48q/1BRJWkHSynkp5ZFDSbtLOqzw/g5Jj+ZlrzJi9nAepV9rXbwPSLo+d7pE0vqSji45Zqeke8uMsaCJhBuqcrWkr+VHohavLWUEkrSspI2B4ZI2lLRRXrYmjbBVujyRxeKS3k3qgX6WpF+UHPZmSSdJ2jx/IK9fZqKX9B1JxxRW3U4ake0a4FslhT0SuKzwfmHSADJbA18qKWazrrXot6SnFWYC2J4MlDo5Sf4Sd7+kFcqMsyCJgS9CVf5f/vlfhXUmjXo12HYiPbq1IlBMctOA75YQrztL2H5V0heBs2z/ID9GVqbahBgbFdaZNHpZGT4NfLTw/iXbG+Znym8C/ruEmAvZfqrw/pb8LPpLkhYtIV5NM661aBHbd6bh099WxcQiSwEPSLqdwoA4tj9ZQey2Ewk3VML2ShXGOhs4W9Kn8uAhzTBE0nKkUcK+V0VA2x/te69Bj1kcleykvG62ClNFDrJ31cU/vPB26ZJi1mJVfa1FL0pajfQFitx8/lwFcX9aQYwFRiTcUBlJa5LGbK4Nk4ntP5YY8nJJnwFWofC3bvv4EmPWHEca5esW23dJWhV4qOygknYC1mHu3/FPSgo3QtJQ27VmzrH5HBYGSrldANwh6WDbvy2ulPT/gDtLignNudaiw0iDTqwp6RnSoDyfLTuo7evLjrEgiYQbKpE7eOxIGpXralKz7y1AmQn3z8ArwEQqHEkrNzOuZPvt+6e2H6XkTk2Sfg0sSWpCPivHK3NglD8Bp0s6PA9hSm7WPSVvK8PXgUvzF6m787qNSfdy9ygpJjTnWt+W/362zzE7uhmXvRSSNgFOBtYi/Y4FvGW7ii8ZbScGvgiVkDSFPHev7Q1yc+vptj9RYsz7bK9bVvl9xL7R9jYVx5xse31J9+bf8WLARbZ3LCleJ/Bj4IvAE6QP45VIY4cfnWfAKoWkbUk1eYCptm8oK1aO15RrlfSN3rbbLrUjnqS7SDXp80jjyY8mfZk8prfjQveihhuqMj3f75qVE8E/gVVLjnmbpPVsTyk5Tk+xTwHOZ+7OJnf3fMiATc8/35S0LPASqTm9FLkX61GSjgNWz6sftj29l8MGRNIw4NAcbwrwuzITe00zrjVbrOTy+9Jh+0FJQ3Jz+m8l3QZEwp0HkXBDVe6RtCRwJmny+leZ0yRYli2A0ZIeIzUpC3CxqbdEH84/i/eLDWxbYswr8+/458AkYDbwf2UFk7RGjrUaKfl9s4IEdDbp0ZibgV1ITZ2lP+PdpGvF9nFlx+jD60qznN0r6SekjlojmnxO861oUg6VU5racPGSa3tIel93620/UWbcVpB7zg63/e8SY9xMSujjSbNXbV724yKSptheL78eAtxpe6M+DhuMuJVfa457pO2fSTqZ3EO5yHapo4vlzn7Pkjrh/RdpWs9TbP+jzLjtKmq4oTKS9gVWs/1jSStJ2tj2xLLi2X5C0hbAGrbPkrQ0FX07l7QM8BNgedu7SFqb9CH9uxJjDifV9t5n+9A8GtJmtq8sKeRihd7CJ0gqu8UC8sAPALZn1T2XWqZmXCvAA/nnhIrizcX2o7mGu5Tt7zfjHNpJ1HBDJfL9zKHAlrbXyiMwXW17kxJj/gAYBXzQ9gckLQ9caPsjZcUsxL6S1FP4e7kD0xDgnlrtrKSY55KaOz9je11JiwC32t6wpHh/B/YjNdUDnAN8pva+jBYMSbOZc09cwHDgDebcLihr9LLKr7UVSNqVNHjMQrbfL2kk8APbezb51OZLkXBDJSTdbXsjSffUEkCtN22JMScBG5J6RtdiTq7iHq6ku2xvUne9k2yPLDHmBNujqoopaRzdNHNmtl3m/epKNetaJV3W2/Yye/nn+BOB7YAbC39TU8r84tjOokk5VGWmpA7mjJTzHqCr5JgzbFtSLWaZQ//Vez1fYy32h0jPBJdpRu7FW4v5fmBGWcFsb11W2T3JLSM9KuuedTOuNdsceAo4F7iDOTXsqsy0/Z+6pvuopc2jSLihKqcCFwFL50cr9iaNxlSmCySdDiwp6WDgINIg8FX4BmmQ/dUk3UoadrDs2WyOB64CVpR0Nmls5S+UFUxSr52GbF9cQtgXgaeZM45wMROYkh41a9K1AiwL7EBqzv4M8FfgXNtTS4pX7wFJewMd+QvcVyl3MJW2Fk3KoVSSrgC+bPtxSesA25M+JK+zfV8F8XcgjXAl0j3ja8uOWYg9BPhgjv1gbVjAEuJ02O7Kr5cmPZIk4Dbb/yojZo7VRXr8aFJtVWGzbR9UQsyTSDMD3Uqq9d3iCj7EmnGt3ZzDwqTEewJwvO2TK4i5KOmZ29rgKVfn2G+UHbsdRcINpcrfjn9Een7yZ2UlnT7OYXHmHku5zEdlKq8J5XvVX7Jd6Vy/kvYE9iENBPFnUs3r4QriipR09yONfnQN8Bvbj5UYsynXmmMvDOxKut5VSC0nZ9p+psSYe9u+oKzyF1SRcEPpCt+SdwZ+T+HebZlD0ykNaH88aQSmLub0ZC1thCtJZ+WX7yXVNGtDDm4DjCvj2U1Jm5HGu70XONL2y4Mdo4/4iwK7kxLSe0g9s2+qIO6SpDlhfwh813UTGpQUs9JrzbcG1gWuBM6rolUox72c9CX1y07jOIdBEPdwQxVmkh7lWJg0VF3ZnaVqvgmsY/vFiuJh+0B4+wNrbdvP5ffLke5jlxHzjpx0DwUm5EeSil9qSh0cAXiT1CHsVdL8xsN6333e1SW8pYGLgY089xy5ZarsWrPPkf7vfAD4SqHzUqmPQdn+uKQ9gL9K+iPwG+b+myqtlaidRcINpZK0M+k5vstIH4xV3vt5hPSMZjOsUku22fOkD82yvBvYBHiBNDtS6V9qJG3DnGbd64CTbJc9QMO/SNMcngs8TOootYnSrDaldV5q0rViu6PsGL3EvjQPizqe1Pmu1hxaWue0dhdNyqFUeUi8QyvsVVmMvSFp8Ik7KEzPV0GNrzbQxxqkxGBS0+fDto8oIdahwLdInWlOr6ITUY7bBUwmTbNo6h4XKeP3LGlsfZy5Q5bTeakZ15rjTiB1ELuSdEvizTLidBN3YeBoUs/6b9m+vIq47S4Sbmhbku4kfUBOYe7msLMriv9J4KP57Xjbl5QU5w/A122/UEb5vcQ9oLftVf2eq9Csa8093bcg9X/YhjQD1NXAlS5xPGNJD5Ie4/uhK5ikYUERCTe0LUm32f5w33vO33It6GnSM7hX2X68uWcUypL7AuxCSsBrALfb/nIJcb5LSur3DHbZC7JIuKFtSfoxabLwvzB3k3LpHT5y7fZ/SL2VRflj/b6POR/EK5Bq9lcCN9l+q7djw/wlj9g2AniNNCHGrSXE2Jf0t7QBqff7lcA1VfeAbzeRcEPbyh0+6pX6WFAh9sPAbrYf6HPnwY89lNSUvTPpedUXbO9a9XmEwZN7Ch9KmuN4ImmavF/YPqGC2BuS/pZ2BDpJncausn1n2bHbTSTcEEog6VZXMCtRL/HfBaxke7KkFUoeJOHdVT8mkpvRzwL+uCDUumqTUEjaH9gY+DYwseyJOCQtXGwhyYPIfII069chZcZuR/FYUGhbeXq6bwAr2z5E0hqkqfqq6HE5QdL5wKXM3Zxd1pi7tRltPkH6fz0JeEHSTba/UVbM7I482tVZpPt+VXyL3xc4ELirkHyvKSu2epgAvqaCnu9Dc8vFHqQJ4GfWJuUo2e3ARrU3tl+V9A3bG/VyTOhB057xCqECZ5Fmy6l1nHqaNMxkFRYnPQO8I7BbXj5ecswlbL8KfBI4y/bGpLGry/YBYAxpkIaHJf1EUpnPHGP7Ydvfy7H/CJwJPCnpuL5mFJpHE0hNucNICeihvIwkNfOW7XTgcWBRYHy+Z/9qWcEkLStpY2C4pA0lbZSXrYFFyorb7qJJObQtdT8/bKlz8DaTpCmkBH82acjBu1TR/L+Fc9gG+AMpMdwLHFXWGM+S1ifVcj9GelTmHNIjNJ9zeXMA3wjsWBsTPNc6r7G9TRnx+jiXIbZn9b3nPJV9ADAaGAXcxZzJGqYBY8tsqWln0aQc2tkMScOZMz/sahSad8sg6UjbP+upCbLkpsfjSYnnlpxsVyXVwkqlNO/vZ0k13OeBI0gji40ELgTeX0LMicB/gN+Rknrt3/UOSWXeO1+eNDxp7Z71iLyuVHnc6M+TJi8ofm6X8veUnys+W9KnbF9URowFUSTc0M5+QHo2dSVJ5wAfIX1rL1OtV3Lpw/7Vs30hKcHV3j8KfKqC0LeTJqXYw/bThfUTJJ1WUsxP9zSofhkTRBT8FLgn13QhzTl8bInxaq4gzUM71yAuFVgxd5SaRppLeiPSF5xrKjyHthFNyqGt5drXh0hNYn+rciKDqjS7Q093U7lJ+nT+AlBm3F2BdShMIGD7+DJj5rjLApvlt3fY/mcFMe9uRkel2i0YSTsBhwHfJ/UPiE5T8yBquKFt5TlMb7D91/x+SUl72L60xJh/offk94kSwlZem65zFFA/d+p3KNS2B1uuOS9CGu7wDNKYv6U/F6o0Xc/2wKq2j5e0sqRNK3gm9feSDgYup9pBXGr3bj9GSrT3qjBlUeifqOGGtlV7drFu3dsdqEqKuVVv213NPLGL2n69gji7kD6I9wbOL2xanDQ14aYlxp5se/3CzxHAxbZ3LCtmjlubpm5b22vl552vsb1JyXEPA35Mum/99qw9ZQ/iojS/8wqk+/AbkAa+GJd7wId+ihpuaGfdPfZW6t98LaFK+jhwhe3K7rdJ2pzUiWgEsLKkDYD/V8ZYu9mzpNr1J0iPzNRMA75eUsya2oD6b0hanjSo/6B3zurGZrY3knQPgO2XJS1UQdxvAKs34ZbIF0id3x61/Ua+RXNgxefQNiLhhnY2QdIvSBO/m9R7dmLvhwyafYGTJF1EaoqrYojHE4GdSD2Eyc1/W5YVzPa9wL2Szinr8ZReXJ577p4A3E369/1tBXFnSupkTs/3pammE9NUmjC3s+0uSSsCn8ktyTfZ/kvV59Euokk5tC1Ji5I6eWxPuhd1DfCjKppbc/zFSZOWH0j6gD4LONf2tJLi3WF7s6qeO5Z0ge298/O/xQ+S2kQNlTz/qzR36zDbr1QQa39gH1Jv3bNJ946PrqCD2CWkDmI3UuHczpJ+CmxCesYZ0t/zBNvfKTNuu4qEG0KJJC1Fekb1a6RHhlYHfmX75BJi/Qn4BXAKqWf2V4BRtvcd7Fg53nK2n8ujHr2D7SfKiJtj3wyMB24Gbi3rS0wPsdcEtiN9sbi+itYL9TAfr0uec1jSZGBk7dZIrt3fU+VgKu0kEm5oW7m570je+ejIthXE3g04CFiN9Izq2bb/lcd3fsB2t0lqgDGXAk5i7hr9V22/NNixcrzVgWVcNz2cpI8Cz9p+pIy4OcaqpFGlPkr6cvEWcLPtsu8d15LOMhRuydl+suy4zZAT7ta13tB52MxxkXDnTdzDDe3sHFLv2Y+TpjY7AHihzIA5CS0LfBr4pe3xef1HJS1m+xFJB5UQt5M0pOH+g112L04EvtvN+ul5225lBbb9qKTppLGyZ5AeD1qrrHg1ko4gDajyPGkMZZGa08uetWcN4L+BtZn7y2PZU03+N3MG+hCwJemRrzAPooYb2pakibY3Lo4nrDR7Tq+P7gww5uXAd21Prls/CviB7dKSkKRxtrcuq/xu4t1ne90etk2xvV6JsR8BXiRNXHAzMKmKHuFK8xxvVlarQS9xbyEl+l+SvsgcSPr8/kEFsZcj3ccVFQ300a5itqDQzmbmn89J2lVpIu0VS465Sn2yBbA9gTQObplulXRKrk3XZncpc0SgYb1sG15iXIBfAU+SOvF8BTggj5VdtqeA0jtndWO47etJSfYJ28cCpd0akbSTpL0AbD9n+zLbfwa2k7RDWXHbXTQph3b2I0lLAP8FnEwakKHse3zNTEK1aQiLwxua8j6Y75J0sO25HseR9AVKfvzK9kmkx65GkGp7x5K+THWWGRd4FBgn6a/M3Vv4FyXHfVNSB/CQpMOBZ4D3lhjvOLq/JXA9cAlwbYmx21Y0KYcwiCSdSxpOsrsktKPtfUqK2wHsVT+mcZkkLUP68J3BnAQ7ClgI2LPMpkdJ/0vqNDWCNHnCzaROU91OaDCIcbttwrV9XMlxNyH1cl8S+CHpy+MJtv9WUrwep3XsbVvoXSTc0HaaOZh/k5PQeNulDXTRS9xtgNq93Km2b6gg5qeB8bafLztWs+UOcT+1/a0KY/6DNDznrLr1Q4H7ba9R1bm0k0i4oe309MxiTdnPLuZzaEYS+j6ph/D5wNuDe1QwwH1TSFoBeB9zP54zvqRYJ9r+Wk+TU5Q0KUUx/g3Adq7oAzsPeLEMcHhtoJg8kMyvgBdtf7uK82g3kXBD28sjPrnKwRGaQdJj3awufYD7ZsgJYV/gftLjOZCutZTEJ2lj2xN7mpyi7EkpchP6GqQZmIpfpi4uKd4Q4EfAF4HaACYr///27j9Y07Ku4/j7AwOBgQRomMZvBpQFF2FxEdYEnEI0M0LCYaAowsYYw5gwNE2cZpzCKLAGJLJlLKUYYdVJWShhy6V0f8ES27gOIKgTSig/VpZaFj79cd2P++yzZxfO2XPf9/Nc+3nNnDn3j3O4vo475/vc131d3y+lVveHbT+7td+NrUvCjWo1W3EWAntStjQ8Afym7a7qKUdLJK0FXmv7/17wh2d/7F2BV1OedNfa3tDBmAunuGzbs76ne2Tc3SnV0QDut/3Mtn4+ti0JN6rVVMm5yPZXm/MFwDU1L/iQdBRbFkf4dH8RtUPSrcBZtn/U8bhvAz4JPED5EHcwpSPTrV3GEZMp24KiZusGyRbA9lJJ1U4rNytoT6Yk3C8DpwNLgWoS7tCCuPXAPZK+QofF/IErgVNs39/EcyjwJaCVhCtpDnCo7S82538Bu+8LqQAADBZJREFU7NXc/ivbq9oYN9qRhBs1WybpOuBGyh/psyl7KI8FqPCP1TspTcLvtv0bzYrpv+k5ptm2ovm+kqYNYcceHSTbxoPAoy2O9yeU8ooDp1E6YL0E+CPgl1scO2ZZEm7U7Jjm++jeyRNptyBEX55x6V+6sVko9ihQ1YKpLlaYT0XSrzSHayR9GbiJ8m/oLGB5i0P/jO1/Hzp/yvbNTUy/3dagL1ShrMIPq51Iwo1q2T6l7xg6tkKlKfv1lCfAHwHL+g2pHVP04IVScnEFpefxbNc6Hq669H1gsFr5f4C9Z3msYXsOn9g+Yei0zUpTV27jXo0fVjuRRVNRLUkXU1Ypr6MkoWOBy2zf3mtgHZB0EPDSqeo610DSFZTtQJ9tLr2LsojpSWBBm00iutR06bnM9tdHrp9AKYZxci+BxYwk4Ua1JK22PVfSacBFlHdfC223WdC/F82+yedsW9L+wHzgAdt39xxaKyTdZfukqa612alI0sHAeymNKIYLbrS1//f1lEImNwCDadzjKK0mz7bd6gxG07/5EuAA2+9u2gQeYfuf2hy3VukWFDVT8/2tlES7euhaNSRdSHlf+3Bz/BXKAqp/kFRrRaA9JM0fnDSJaY/mdOPUvzIrPg88RGmGceXQVyuahDqf0pTh/OZrJ+CEtpNtYyGlTOmgMcZ3KQUxYgbyhBvVaooFvIqyV3Iu5Y/WEtvH9RrYLJO0hlLIf09KgfsDbT/WPJ0stz2n1wBb0BTz/1tKkhXwFKUq0hrgbW01cZD0ddvzX/gn6yBphe15ku62/brm2mrbc/uObRJl0VTU7ALKSuUHba+XtC+llVttNth+HHhc0v22HwNo/je3XgWpD7aXA0c37Rdl+4mh2212TLq62e98O5vv/6111e6GptqU4cf7jjuv7lWLJNyojqRX2/4Gm7YFHSJVN5M8bHdJr6NMNe7aHKv52lZ/3okj6Vzbfy/pkpHrQCd9aY8GzqOs0n2+uVbzqt2PAIuB/SV9BjiJMq0dM5CEGzW6BHg3U79bq/GP4yPAINF8b+h4cF6Tn2y+77nNn2rPGcAhXdRPHge2/1nSKuAEyge4iwczKDF9eYcbEfEiSfpH4L2226wuNdW4hwOXsmU7wlY/PEqasr9yW20Qa5eEG1Vq3teeQ+nqAmUx0Wdr7Q27o5D0iW3db7uWsqQlwGsp1aWG3+G23Q93NaVpwko2tSOk7c5XTf/fgd2A1wMr2070tcqUclRH0muAO4DbgLspU2HHAx+UdGrzfjcm03CC+Shblu1sW9fjDWy0fW3Xg44WEGn2eF/RdRy1yBNuVEfS54CbRreGSDoTOMf2mf1EFrNpeKtKx+PuR/kAB7Csi+llSZdT9lovYvMn605nbFRWp93bVmGR2iXhRnUkrbV9xHTvTaodtdC8pFVdVw2T9KvAx4EllJmTNwKX2v5cy+N+a4rLtt1qc4qhdohQVsEfAzxk+9w2x61VppSjRk/P8N6kSqH57vwhcPzgqVbSy4F/AVpNuLYPbvO/vw0rho43AjfavqunWCZeEm7U6KdH92k2BLy862DatiN1RZK0jk1PXC+R9NTgFuWJ76Uth7DTyBTyD+igRK6kXYD3AINVw0uA62w/29J4B9j+dl/tEGuVhBs1up6t79OsrSH7j+0IheZt97X/dmCxpNuAG5vzs4FbOxj3WmAX4Jrm/Lzm2m+1NN7nKd21kHRz1j3MjrzDjahEs0d0JfBrto9qSvL9h+1jXuBXYxqaZvQLKE/V/2Z7UQdjblG/uM2axiO1k3tZnFajdAuKqMehtq8AngWw/QwVdkfqg6TDJJ0EYPsW25fY/j3gB0194bY9NzyOpEMY2o/bAm/lOLZDppQj6pFC8+25CvjgFNfXN/fabnh/KXCnpAcpH6IOpN1GHHOb9+Oi1Oru+l15lTKlHFEJST8PfAg4ktLN5iTgfNtL+oyrBpLus33UVu611vB+ZJyfAI6gJL1v2M6HqQmThBvVagoUfAx4pe3TJR0JvMH2p3oOrTVNSctBofmvpdD87GjaHh423XuzMO6ptu9o3htvwfYtbYwb7cg73KjZDZTyjq9szr8JvK+3aFrWFJqfA6yjNGQ/cmvF52Palku6cPSipAvYvNzkbHtT8/3tU3z9YovjRgvyhBvVkrTc9vEjKy7vqXXVbgrNt6eZLVkEbGBTgp0H7AqcYbu2NojRgiyaipo93UyxDhYRnQA82W9I7Umh+fbY/j5woqRTgMG73C/ZvqOL8SVdDCykzF5cT9kje5nt27sYP2ZHnnCjWk2N4b+k/IG8j1Jl6p227+01sI6k0Hw9BntuJZ0GXAR8GFjYdS3p2D55wo1q2V4l6U1sWtm5tq1SeONgK4XmV/cXUcyiwX7qt1IS7ermA1VMkDzhRtUknQgcxNCHS9uf7i2gFkn69aHTjZSuLik0XwFJC4FXAQcDc4GdgSW2j+s1sJiWJNyolqS/Aw4F7mFTVR7b/t3+opp9g0LzfccR7ZE0mLF40PYTkvYBfnZHeT1Si0wpR83mAUe6/k+VKTRfvzcA99h+WtK5lP+/r+45ppim7MONmt0HvKLvIDow/C6v1Ybk0ZtrgfWS5gLvBx4Gqnw1UrM84UbNXgb8l6RlDNUUtv1L/YXUihSar99G25b0DuBq258aeWcfEyAJN2p2ed8BdCSF5uu3TtIHgHOBn5O0M6U/bkyQLJqKiBhzkl4BnAMst/1VSQcAJ9e64r5WSbhRHUlLbS+QtI7Np1jzxBcRvUnCjYgYU/nwWJck3KhWs1dx1Lqaq01FxPhKwo1qSXoI2B94nPJE8FPAI8CjwIW222yrFjGrJO1N+fc8XDVtVX8RxXRllXLUbDGwyPZtAJJ+AXgLcBNwDTC/x9giXjRJfwycDzwIPN9cNpDWixMkT7hRLUkrbM+b6lrNfXGjPpLWAkfb3tB3LDFzqTQVNfuhpD+QdGDz9X7g8WYP4/Mv9MsRY+Q+yiuRmGB5wo1qSXoZ8BFgAeUd7lLgo5Qm9AfYvr/H8CJeNEnzgC9QEm/NVdOqloQbETHmJK0BrgP+k6HZGdv/2ltQMW1ZNBXVknQ48Pts2Q83C01i0jxm+xN9BxHbJ0+4US1Jq4FPAivZ1A+XbAeKSSPpzylTyV9k8ynlbAuaIEm4US1JK20f13ccEdtL0p1TXHZmayZLEm5US9LllCIXi9j8qeCHfcUUETuuJNyolqRvTXHZttOkPSaCpKtsv685vtj21UP3brB9fm/BxbQl4UZEjClJq2wfO3o81XmMvxS+iOo0BS4Gx2eN3PtY9xFFzJi2chwTKAk3avSuoeMPjNx7S5eBRGynnSTtLWnfoeN9mk5YO/cdXExP9uFGjbb1VJCnhJgke1G2tQ3+3Q5vA8r7wAmThBs18laOpzqPGFu2D+o7hpg9WTQV1ZH0HPA05algd2D94Bawm+1d+ootInZcSbgREREdyKKpiIiIDiThRkREdCAJNyJiTEk6WtLXJH1H0l9L2nvo3rI+Y4vpS8KNiBhf1wKXA0cD3wSWSjq0uZfFfxMm24IiIsbXHrYXN8d/JmklsFjSeWSL28RJwo2IGF+StJftJwFs3ynpTOBmYJ9+Q4vpypRyRMT4+lPgNcMXbN8LvBm4pZeIYsayDzciYgJI2oPSXvLpvmOJmckTbkTEGJP0HknfBh4GviPpYUm/03dcMX1JuBERY0rSh4C3Ayfb3tf2PsApwOnNvZggmVKOiBhTktYCc23/78j13YHVtg/vJ7KYiTzhRkSMsdFk21x7Bni+h3BiOyThRkSMr+9KevPoRUmnAo/0EE9sh0wpR0SMKUlzgC8ASymN6A0cD5wEvMP2mh7Di2lKwo2IGGOSdgPOAeZQejqvAT4z1VRzjLck3IiIMSXpMGA/23eNXH8j8N+2H+gnspiJvMONiBhfVwHrprj+THMvJkgSbkTE+DqoKeW4GdsrgIO6Dye2RxJuRMT42m0b93bvLIqYFUm4ERHja7mkC0cvSrqAsmo5JkgWTUVEjClJ+wGLgA1sSrDzgF2BM2x/r6/YYvqScCMixpykU4CjmtM1tu/oM56YmSTciIiIDuQdbkRERAeScCMiIjqQhBsREdGBJNyIiIgOJOFGRER04P8Bnfpo2w9RvTwAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "corr = vehicles.corr()\n", + "sns.heatmap(corr, xticklabels = corr.columns, yticklabels = corr.columns, cmap = 'RdBu');\n", + "#It seems Fuel Barrels/Year has the strongest correlation with CO2 Emission while the manufacture year has the least. " ] }, { @@ -199,11 +1187,131 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "
OLS Regression Results
Dep. Variable: CO2 Emission Grams/Mile R-squared: 0.981
Model: OLS Adj. R-squared: 0.981
Method: Least Squares F-statistic: 3.687e+05
Date: Wed, 13 Nov 2019 Prob (F-statistic): 0.00
Time: 18:13:29 Log-Likelihood: -1.5173e+05
No. Observations: 35952 AIC: 3.035e+05
Df Residuals: 35946 BIC: 3.035e+05
Df Model: 5
Covariance Type: nonrobust
\n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "
coef std err t P>|t| [0.025 0.975]
const 769.8883 19.392 39.702 0.000 731.880 807.897
Year -0.3206 0.010 -33.060 0.000 -0.340 -0.302
Cylinders 1.8788 0.083 22.598 0.000 1.716 2.042
Fuel Barrels/Year 19.0529 0.061 311.600 0.000 18.933 19.173
Combined MPG -3.0404 0.042 -71.645 0.000 -3.124 -2.957
Fuel Cost/Year 0.0323 0.000 67.025 0.000 0.031 0.033
\n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "
Omnibus: 71055.645 Durbin-Watson: 0.747
Prob(Omnibus): 0.000 Jarque-Bera (JB): 246941260.782
Skew: 15.902 Prob(JB): 0.00
Kurtosis: 407.766 Cond. No. 6.20e+05


Warnings:
[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.
[2] The condition number is large, 6.2e+05. This might indicate that there are
strong multicollinearity or other numerical problems." + ], + "text/plain": [ + "\n", + "\"\"\"\n", + " OLS Regression Results \n", + "===================================================================================\n", + "Dep. Variable: CO2 Emission Grams/Mile R-squared: 0.981\n", + "Model: OLS Adj. R-squared: 0.981\n", + "Method: Least Squares F-statistic: 3.687e+05\n", + "Date: Wed, 13 Nov 2019 Prob (F-statistic): 0.00\n", + "Time: 18:13:29 Log-Likelihood: -1.5173e+05\n", + "No. Observations: 35952 AIC: 3.035e+05\n", + "Df Residuals: 35946 BIC: 3.035e+05\n", + "Df Model: 5 \n", + "Covariance Type: nonrobust \n", + "=====================================================================================\n", + " coef std err t P>|t| [0.025 0.975]\n", + "-------------------------------------------------------------------------------------\n", + "const 769.8883 19.392 39.702 0.000 731.880 807.897\n", + "Year -0.3206 0.010 -33.060 0.000 -0.340 -0.302\n", + "Cylinders 1.8788 0.083 22.598 0.000 1.716 2.042\n", + "Fuel Barrels/Year 19.0529 0.061 311.600 0.000 18.933 19.173\n", + "Combined MPG -3.0404 0.042 -71.645 0.000 -3.124 -2.957\n", + "Fuel Cost/Year 0.0323 0.000 67.025 0.000 0.031 0.033\n", + "==============================================================================\n", + "Omnibus: 71055.645 Durbin-Watson: 0.747\n", + "Prob(Omnibus): 0.000 Jarque-Bera (JB): 246941260.782\n", + "Skew: 15.902 Prob(JB): 0.00\n", + "Kurtosis: 407.766 Cond. No. 6.20e+05\n", + "==============================================================================\n", + "\n", + "Warnings:\n", + "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n", + "[2] The condition number is large, 6.2e+05. This might indicate that there are\n", + "strong multicollinearity or other numerical problems.\n", + "\"\"\"" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your response here. " + "# Your response here. \n", + "# Using OLS regression \n", + "\n", + "vehicles = sm.add_constant(vehicles)\n", + "y=vehicles['CO2 Emission Grams/Mile']\n", + "x=vehicles[['const','Year','Cylinders','Fuel Barrels/Year','Combined MPG','Fuel Cost/Year']]\n", + "lin_reg = sm.OLS(y,x).fit()\n", + "lin_reg.summary()" ] }, { @@ -215,11 +1323,11 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "metadata": {}, "outputs": [], "source": [ - "# Your response here. " + "# Your response here. \n" ] }, { @@ -257,11 +1365,101 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 65, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
num_invitednum_attend
011
132
244
364
485
597
6118
71413
\n", + "
" + ], + "text/plain": [ + " num_invited num_attend\n", + "0 1 1\n", + "1 3 2\n", + "2 4 4\n", + "3 6 4\n", + "4 8 5\n", + "5 9 7\n", + "6 11 8\n", + "7 14 13" + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your code here. " + "# Your code here. \n", + "data = {'num_invited' :[1,3,4,6,8,9,11,14], 'num_attend' : [1,2,4,4,5,7,8,13]}\n", + "df = pd.DataFrame(data)\n", + "df" ] }, { @@ -273,11 +1471,33 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 66, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# Your code here." + "# Your code here.\n", + "\n", + "df = sm.add_constant(df)\n", + "y = df['num_attend']\n", + "x = df[['const','num_invited']]\n", + "lin_reg=sm.OLS(y,x).fit()\n", + "\n", + "df = df.assign(reg=lin_reg.predict(df[['const','num_invited']]))\n", + "plt.scatter(x=df['num_invited'],y=df['num_attend'])\n", + "plt.plot(df['num_invited'],df['reg'],color='r');\n" ] }, { @@ -289,11 +1509,44 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 67, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " OLS Regression Results \n", + "==============================================================================\n", + "Dep. Variable: num_attend R-squared: 0.932\n", + "Model: OLS Adj. R-squared: 0.920\n", + "Method: Least Squares F-statistic: 81.81\n", + "Date: Wed, 13 Nov 2019 Prob (F-statistic): 0.000102\n", + "Time: 18:39:07 Log-Likelihood: -10.800\n", + "No. Observations: 8 AIC: 25.60\n", + "Df Residuals: 6 BIC: 25.76\n", + "Df Model: 1 \n", + "Covariance Type: nonrobust \n", + "===============================================================================\n", + " coef std err t P>|t| [0.025 0.975]\n", + "-------------------------------------------------------------------------------\n", + "const -0.4394 0.759 -0.579 0.584 -2.297 1.418\n", + "num_invited 0.8485 0.094 9.045 0.000 0.619 1.078\n", + "==============================================================================\n", + "Omnibus: 0.556 Durbin-Watson: 1.867\n", + "Prob(Omnibus): 0.757 Jarque-Bera (JB): 0.514\n", + "Skew: 0.261 Prob(JB): 0.773\n", + "Kurtosis: 1.873 Cond. No. 16.3\n", + "==============================================================================\n", + "\n", + "Warnings:\n", + "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" + ] + } + ], "source": [ - "# Your response here. " + "# Your response here. \n", + "print(lin_reg.summary())\n" ] }, { @@ -305,11 +1558,33 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 68, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ - "# Your response here. " + "# Your response here. \n", + "df_no_outlier = df.drop(df[df['num_invited']==14].index)\n", + "\n", + "df_no_outlier = sm.add_constant(df_no_outlier)\n", + "y = df_no_outlier['num_attend']\n", + "x = df_no_outlier[['const','num_invited']]\n", + "lin_reg_2=sm.OLS(y,x).fit()\n", + "df = df.assign(reg=lin_reg_2.predict(df_no_outlier[['const','num_invited']]))\n", + "plt.scatter(x=df_no_outlier['num_invited'],y=df_no_outlier['num_attend'])\n", + "plt.plot(df_no_outlier['num_invited'],df_no_outlier['reg'],color='r');" ] }, { @@ -321,12 +1596,60 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 70, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " OLS Regression Results \n", + "==============================================================================\n", + "Dep. Variable: num_attend R-squared: 0.943\n", + "Model: OLS Adj. R-squared: 0.932\n", + "Method: Least Squares F-statistic: 83.31\n", + "Date: Wed, 13 Nov 2019 Prob (F-statistic): 0.000264\n", + "Time: 18:39:38 Log-Likelihood: -5.7771\n", + "No. Observations: 7 AIC: 15.55\n", + "Df Residuals: 5 BIC: 15.45\n", + "Df Model: 1 \n", + "Covariance Type: nonrobust \n", + "===============================================================================\n", + " coef std err t P>|t| [0.025 0.975]\n", + "-------------------------------------------------------------------------------\n", + "const 0.3233 0.513 0.630 0.556 -0.996 1.642\n", + "num_invited 0.6842 0.075 9.127 0.000 0.492 0.877\n", + "==============================================================================\n", + "Omnibus: nan Durbin-Watson: 2.689\n", + "Prob(Omnibus): nan Jarque-Bera (JB): 0.379\n", + "Skew: 0.284 Prob(JB): 0.827\n", + "Kurtosis: 2.012 Cond. No. 14.5\n", + "==============================================================================\n", + "\n", + "Warnings:\n", + "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/ironhack/lib/python3.7/site-packages/statsmodels/stats/stattools.py:71: ValueWarning: omni_normtest is not valid with less than 8 observations; 7 samples were given.\n", + " \"samples were given.\" % int(n), ValueWarning)\n" + ] + } + ], "source": [ - "# Your response here. " + "# Your response here. \n", + "print(lin_reg_2.summary())" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -345,7 +1668,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.8" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_labs/lab-subsetting-and-descriptive-stats/your-code/main.ipynb b/module-2_labs/lab-subsetting-and-descriptive-stats/your-code/main.ipynb index 0406d5f..c3ec931 100644 --- a/module-2_labs/lab-subsetting-and-descriptive-stats/your-code/main.ipynb +++ b/module-2_labs/lab-subsetting-and-descriptive-stats/your-code/main.ipynb @@ -21,10 +21,8 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 63, "metadata": {}, -======= "execution_count": 1, "metadata": { "collapsed": true, @@ -32,14 +30,13 @@ "outputs_hidden": true } }, ->>>>>>> upstream/master "outputs": [], "source": [ - "# import libraries here\n", - "\n", - "import pandas as pd\n", - "import numpy as np \n", - "import seaborn as sns\n" + "# import libraries here", + "", + "import pandas as pd", + "import numpy as np ", + "import seaborn as sns" ] }, { @@ -53,17 +50,15 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### In this challenge we will use the `Temp_States.csv` file. \n", - "\n", + "#### In this challenge we will use the `Temp_States.csv` file. ", + "", "#### First import it into a data frame called `temp`." ] }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 8, "metadata": {}, -======= "execution_count": 2, "metadata": { "collapsed": true, @@ -71,11 +66,10 @@ "outputs_hidden": true } }, ->>>>>>> upstream/master "outputs": [], "source": [ - "# your answer here\n", - "\n", + "# your answer here", + "", "temp = pd.read_csv('Temp_States.csv')" ] }, @@ -95,14 +89,14 @@ "name": "stdout", "output_type": "stream", "text": [ - " City State Temperature\n", - "0 NYC New York 19.444444\n", - "1 Albany New York 9.444444\n", - "2 Buffalo New York 3.333333\n", - "3 Hartford Connecticut 17.222222\n", - "4 Bridgeport Connecticut 14.444444\n", - "5 Treton New Jersey 22.222222\n", - "6 Newark New Jersey 20.000000\n" + " City State Temperature", + "0 NYC New York 19.444444", + "1 Albany New York 9.444444", + "2 Buffalo New York 3.333333", + "3 Hartford Connecticut 17.222222", + "4 Bridgeport Connecticut 14.444444", + "5 Treton New Jersey 22.222222", + "6 Newark New Jersey 20.000000" ] } ], @@ -125,9 +119,9 @@ { "data": { "text/plain": [ - "City object\n", - "State object\n", - "Temperature float64\n", + "City object", + "State object", + "Temperature float64", "dtype: object" ] }, @@ -137,7 +131,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "temp.dtypes" ] }, @@ -156,56 +150,56 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
CityStateTemperature
0NYCNew York19.444444
1AlbanyNew York9.444444
2BuffaloNew York3.333333
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
CityStateTemperature
0NYCNew York19.444444
1AlbanyNew York9.444444
2BuffaloNew York3.333333
", "
" ], "text/plain": [ - " City State Temperature\n", - "0 NYC New York 19.444444\n", - "1 Albany New York 9.444444\n", + " City State Temperature", + "0 NYC New York 19.444444", + "1 Albany New York 9.444444", "2 Buffalo New York 3.333333" ] }, @@ -215,7 +209,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "temp[temp['State']=='New York']" ] }, @@ -234,43 +228,43 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Temperature
State
New York10.740741
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Temperature
State
New York10.740741
", "
" ], "text/plain": [ - " Temperature\n", - "State \n", + " Temperature", + "State ", "New York 10.740741" ] }, @@ -280,7 +274,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "temp[temp['State']=='New York'].groupby('State').mean()" ] }, @@ -299,63 +293,63 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
CityStateTemperature
0NYCNew York19.444444
3HartfordConnecticut17.222222
5TretonNew Jersey22.222222
6NewarkNew Jersey20.000000
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
CityStateTemperature
0NYCNew York19.444444
3HartfordConnecticut17.222222
5TretonNew Jersey22.222222
6NewarkNew Jersey20.000000
", "
" ], "text/plain": [ - " City State Temperature\n", - "0 NYC New York 19.444444\n", - "3 Hartford Connecticut 17.222222\n", - "5 Treton New Jersey 22.222222\n", + " City State Temperature", + "0 NYC New York 19.444444", + "3 Hartford Connecticut 17.222222", + "5 Treton New Jersey 22.222222", "6 Newark New Jersey 20.000000" ] }, @@ -365,7 +359,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "temp.loc[temp['Temperature']>15]" ] }, @@ -384,10 +378,10 @@ { "data": { "text/plain": [ - "0 NYC\n", - "3 Hartford\n", - "5 Treton\n", - "6 Newark\n", + "0 NYC", + "3 Hartford", + "5 Treton", + "6 Newark", "Name: City, dtype: object" ] }, @@ -397,7 +391,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "temp.loc[temp['Temperature']>15]['City']" ] }, @@ -405,8 +399,8 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### We want to know which cities have a temperature above 15 degrees Celcius and below 20 degrees Celcius\n", - "\n", + "#### We want to know which cities have a temperature above 15 degrees Celcius and below 20 degrees Celcius", + "", "*Hint: First write the condition then select the rows.*" ] }, @@ -418,8 +412,8 @@ { "data": { "text/plain": [ - "0 NYC\n", - "3 Hartford\n", + "0 NYC", + "3 Hartford", "Name: City, dtype: object" ] }, @@ -429,7 +423,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "temp.loc[(temp['Temperature']>15) & (temp['Temperature']<20)]['City']" ] }, @@ -437,8 +431,8 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### Find the mean and the standard deviation of the temperature of each state.\n", - "\n", + "#### Find the mean and the standard deviation of the temperature of each state.", + "", "*Hint: Use functions from Data Manipulation lesson*" ] }, @@ -450,53 +444,53 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Temperature
State
Connecticut1.964186
New Jersey1.571348
New York8.133404
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Temperature
State
Connecticut1.964186
New Jersey1.571348
New York8.133404
", "
" ], "text/plain": [ - " Temperature\n", - "State \n", - "Connecticut 1.964186\n", - "New Jersey 1.571348\n", + " Temperature", + "State ", + "Connecticut 1.964186", + "New Jersey 1.571348", "New York 8.133404" ] }, @@ -506,9 +500,9 @@ } ], "source": [ - "# your answer here\n", - "temp.groupby('State').mean()\n", - "temp.groupby('State').std()\n" + "# your answer here", + "temp.groupby('State').mean()", + "temp.groupby('State').std()" ] }, { @@ -527,10 +521,8 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 27, "metadata": {}, -======= "execution_count": 11, "metadata": { "collapsed": true, @@ -538,11 +530,10 @@ "outputs_hidden": true } }, ->>>>>>> upstream/master "outputs": [], "source": [ - "# your answer here\n", - "\n", + "# your answer here", + "", "employee = pd.read_csv('employee.csv')" ] }, @@ -561,13 +552,13 @@ { "data": { "text/plain": [ - "Name object\n", - "Department object\n", - "Education object\n", - "Gender object\n", - "Title object\n", - "Years int64\n", - "Salary int64\n", + "Name object", + "Department object", + "Education object", + "Gender object", + "Title object", + "Years int64", + "Salary int64", "dtype: object" ] }, @@ -577,7 +568,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.dtypes" ] }, @@ -605,7 +596,7 @@ }, { "data": { - "image/png": "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\n", + "image/png": "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", "text/plain": [ "
" ] @@ -617,7 +608,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee['Years'].plot(kind='hist')" ] }, @@ -638,7 +629,7 @@ }, { "data": { - "image/png": "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\n", + "image/png": "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", "text/plain": [ "
" ] @@ -650,7 +641,7 @@ } ], "source": [ - "employee['Salary'].plot(kind='hist')\n", + "employee['Salary'].plot(kind='hist')", "#The distribution of the Salary are not evenly distributed. There are a huge gap between lowest and highest salary. " ] }, @@ -678,7 +669,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee['Salary'].mean()" ] }, @@ -706,7 +697,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee['Salary'].max()" ] }, @@ -734,7 +725,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee['Salary'].min()" ] }, @@ -753,61 +744,61 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameDepartmentEducationGenderTitleYearsSalary
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
NameDepartmentEducationGenderTitleYearsSalary
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
", "
" ], "text/plain": [ - " Name Department Education Gender Title Years Salary\n", - "1 Maria IT Master F analyst 2 30\n", + " Name Department Education Gender Title Years Salary", + "1 Maria IT Master F analyst 2 30", "2 David HR Master M analyst 2 30" ] }, @@ -817,7 +808,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.loc[employee['Salary']==employee['Salary'].min()]" ] }, @@ -836,50 +827,50 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameDepartmentEducationGenderTitleYearsSalary
2DavidHRMasterManalyst230
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
NameDepartmentEducationGenderTitleYearsSalary
2DavidHRMasterManalyst230
", "
" ], "text/plain": [ - " Name Department Education Gender Title Years Salary\n", + " Name Department Education Gender Title Years Salary", "2 David HR Master M analyst 2 30" ] }, @@ -889,7 +880,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.loc[employee['Name']=='David']" ] }, @@ -908,7 +899,7 @@ { "data": { "text/plain": [ - "2 30\n", + "2 30", "Name: Salary, dtype: int64" ] }, @@ -918,7 +909,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.loc[employee['Name']=='David']['Salary']" ] }, @@ -937,72 +928,72 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameDepartmentEducationGenderTitleYearsSalary
4SamuelSalesMasterMassociate355
5EvaSalesBachelorFassociate255
7PedroITPhdMassociate760
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
NameDepartmentEducationGenderTitleYearsSalary
4SamuelSalesMasterMassociate355
5EvaSalesBachelorFassociate255
7PedroITPhdMassociate760
", "
" ], "text/plain": [ - " Name Department Education Gender Title Years Salary\n", - "4 Samuel Sales Master M associate 3 55\n", - "5 Eva Sales Bachelor F associate 2 55\n", + " Name Department Education Gender Title Years Salary", + "4 Samuel Sales Master M associate 3 55", + "5 Eva Sales Bachelor F associate 2 55", "7 Pedro IT Phd M associate 7 60" ] }, @@ -1012,7 +1003,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.loc[employee['Title']=='associate']" ] }, @@ -1020,8 +1011,8 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### Print the first 3 rows of your dataframe\n", - "\n", + "#### Print the first 3 rows of your dataframe", + "", "##### Tip : There are 2 ways to do it. Do it both ways" ] }, @@ -1033,72 +1024,72 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameDepartmentEducationGenderTitleYearsSalary
0JoseITBachelorManalyst135
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
NameDepartmentEducationGenderTitleYearsSalary
0JoseITBachelorManalyst135
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
", "
" ], "text/plain": [ - " Name Department Education Gender Title Years Salary\n", - "0 Jose IT Bachelor M analyst 1 35\n", - "1 Maria IT Master F analyst 2 30\n", + " Name Department Education Gender Title Years Salary", + "0 Jose IT Bachelor M analyst 1 35", + "1 Maria IT Master F analyst 2 30", "2 David HR Master M analyst 2 30" ] }, @@ -1108,7 +1099,7 @@ } ], "source": [ - "# your answer here- 1 method\n", + "# your answer here- 1 method", "employee.head(3)" ] }, @@ -1120,72 +1111,72 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameDepartmentEducationGenderTitleYearsSalary
0JoseITBachelorManalyst135
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
NameDepartmentEducationGenderTitleYearsSalary
0JoseITBachelorManalyst135
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
", "
" ], "text/plain": [ - " Name Department Education Gender Title Years Salary\n", - "0 Jose IT Bachelor M analyst 1 35\n", - "1 Maria IT Master F analyst 2 30\n", + " Name Department Education Gender Title Years Salary", + "0 Jose IT Bachelor M analyst 1 35", + "1 Maria IT Master F analyst 2 30", "2 David HR Master M analyst 2 30" ] }, @@ -1195,7 +1186,7 @@ } ], "source": [ - "# your answer here- 2nd method\n", + "# your answer here- 2nd method", "employee.iloc[:3]" ] }, @@ -1214,50 +1205,50 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameDepartmentEducationGenderTitleYearsSalary
7PedroITPhdMassociate760
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
NameDepartmentEducationGenderTitleYearsSalary
7PedroITPhdMassociate760
", "
" ], "text/plain": [ - " Name Department Education Gender Title Years Salary\n", + " Name Department Education Gender Title Years Salary", "7 Pedro IT Phd M associate 7 60" ] }, @@ -1267,7 +1258,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.loc[(employee['Title']=='associate')&(employee['Salary']>55)]" ] }, @@ -1286,13 +1277,13 @@ { "data": { "text/plain": [ - "Years\n", - "1 35.000000\n", - "2 38.333333\n", - "3 55.000000\n", - "4 35.000000\n", - "7 60.000000\n", - "8 70.000000\n", + "Years", + "1 35.000000", + "2 38.333333", + "3 55.000000", + "4 35.000000", + "7 60.000000", + "8 70.000000", "Name: Salary, dtype: float64" ] }, @@ -1302,7 +1293,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.groupby('Years')['Salary'].mean()" ] }, @@ -1321,10 +1312,10 @@ { "data": { "text/plain": [ - "Title\n", - "VP 70.000000\n", - "analyst 32.500000\n", - "associate 56.666667\n", + "Title", + "VP 70.000000", + "analyst 32.500000", + "associate 56.666667", "Name: Salary, dtype: float64" ] }, @@ -1334,7 +1325,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.groupby('Title')['Salary'].mean()" ] }, @@ -1342,8 +1333,8 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### Show a visual summary of the data using boxplot. What Are the First and Third Quartiles? Comment your results.\n", - "##### * Hint : Quantiles vs Quartiles*\n", + "#### Show a visual summary of the data using boxplot. What Are the First and Third Quartiles? Comment your results.", + "##### * Hint : Quantiles vs Quartiles*", "##### - `In Probability and Statistics, quantiles are cut points dividing the range of a probability distribution into continuous intervals with equal probabilities. When division is into four parts the values of the variate corresponding to 25%, 50% and 75% of the total distribution are called quartiles.`" ] }, @@ -1355,82 +1346,82 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
YearsSalary
count9.0000009.000000
mean4.11111148.888889
std2.80376716.541194
min1.00000030.000000
25%2.00000035.000000
50%3.00000055.000000
75%7.00000060.000000
max8.00000070.000000
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
YearsSalary
count9.0000009.000000
mean4.11111148.888889
std2.80376716.541194
min1.00000030.000000
25%2.00000035.000000
50%3.00000055.000000
75%7.00000060.000000
max8.00000070.000000
", "
" ], "text/plain": [ - " Years Salary\n", - "count 9.000000 9.000000\n", - "mean 4.111111 48.888889\n", - "std 2.803767 16.541194\n", - "min 1.000000 30.000000\n", - "25% 2.000000 35.000000\n", - "50% 3.000000 55.000000\n", - "75% 7.000000 60.000000\n", + " Years Salary", + "count 9.000000 9.000000", + "mean 4.111111 48.888889", + "std 2.803767 16.541194", + "min 1.000000 30.000000", + "25% 2.000000 35.000000", + "50% 3.000000 55.000000", + "75% 7.000000 60.000000", "max 8.000000 70.000000" ] }, @@ -1450,7 +1441,7 @@ "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAAXAAAAD4CAYAAAD1jb0+AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAOjklEQVR4nO3db6yedX3H8feHoqEYCXS0zUlZ1+EhmuwB1d0hMySLijhEI5KMBRNZpyaHJzRdskTxGcYnZsFg1ywkxWAa/2wjZARCHLOp4YHJgp4zK6tSxxlBbantAXHqyiTCdw/O1Xl2erfnOu25z31+6/uV3Lnv63eu69yfEPjkl9+5Ln6pKiRJ7blo3AEkSefGApekRlngktQoC1ySGmWBS1KjLl7NL7vyyitr27Ztq/mVktS8mZmZF6tq4+LxVS3wbdu2MT09vZpfKUnNS/KjYeMuoUhSoyxwSWqUBS5JjbLAJalRFrgkNWrJAk/y1iQHF7x+keQvk2xIsj/Js937FasRWJI0b8kCr6ofVtX2qtoO/CFwEngEuBs4UFXXAAe6Y0nSKlnufeA3AP9RVT9Kcgvwrm58H/Ak8KmVi6ZR2rNnD7Ozs+OOsSYcPXoUgC1btow5ydowOTnJzp07xx1DPSy3wG8H/q77vLmqjgFU1bEkm4ZdkGQKmALYunXrueaURuaVV14ZdwTpnKTvhg5J3gi8APxBVR1P8vOqunzBz1+uqrOugw8Gg/JJTK01u3btAmD37t1jTiINl2SmqgaLx5dzF8r7gX+tquPd8fEkE90vnwBOnH9MSVJfyynwj/Db5ROAx4Ad3ecdwKMrFUqStLReBZ7kUuBG4B8XDH8OuDHJs93PPrfy8SRJZ9Lrj5hVdRL4nUVjLzF/V4okaQx8ElOSGmWBS1KjLHBJapQFLkmNssAlqVEWuCQ1ygKXpEZZ4JLUKAtckhplgUtSoyxwSWqUBS5JjbLAJalRFrgkNcoCl6RGWeCS1Ki+O/JcnuThJIeTPJPknUnuSXI0ycHudfOow0qSfqvXjjzAbuCJqvrTbnf6S4E/Ae6rqntHlk6SdEZLFniSy4A/Bv4CoKpeBV5NMtpkkqSz6rOEcjUwB3wpyXeTfDHJm7qf3ZXk6SQPJrli2MVJppJMJ5mem5tbqdySdMHrU+AXA+8A7q+qtwP/BdwN3A+8BdgOHAM+P+ziqtpbVYOqGmzcuHFlUkuSehX4EeBIVT3VHT8MvKOqjlfVa1X1OvAAcN2oQkqSTrdkgVfVT4GfJHlrN3QD8IMkEwtOuxU4NIJ8kqQz6HsXyk7gq90dKM8BHwP+Jsl2oIDngTtHklCSNFSvAq+qg8Bg0fAdKx9HktSXT2JKUqMscElqlAUuSY2ywCWpURa4JDXKApekRlngktQoC1ySGmWBS1KjLHBJapQFLkmNssAlqVEWuCQ1ygKXpEZZ4JLUKAtckhrVq8CTXJ7k4SSHkzyT5J1JNiTZn+TZ7n3orvSSpNHoOwPfDTxRVW8DrgWeYX5n+gNVdQ1woDuWJK2SVNXZT0guA74HXF0LTk7yQ+BdVXWs2+D4yap665l+D8BgMKjp6ekViH1u9uzZw+zs7Ni+X2vTqX8nJicnx5xEa83k5CQ7d+4cdwySzFTV4m0te+2JeTUwB3wpybXADLAL2FxVxwC6Et90hi+eAqYAtm7deo7xV8bs7CwHDz3Da5duGGsOrS0XvTo/L5l57viYk2gtWXfyZ+OOsKQ+BX4x8A5gZ1U9lWQ3y1guqaq9wF6Yn4GfU8oV9NqlG3jlbTePO4akNW794a+PO8KS+qyBHwGOVNVT3fHDzBf68W7phO79xGgiSpKGWbLAq+qnwE+SnFrfvgH4AfAYsKMb2wE8OpKEkqSh+iyhAOwEvprkjcBzwMeYL/+HknwC+DFw22giSpKG6VXgVXUQOO0voMzPxiVJY+CTmJLUKAtckhplgUtSoyxwSWqUBS5JjbLAJalRFrgkNcoCl6RGWeCS1CgLXJIaZYFLUqMscElqlAUuSY2ywCWpURa4JDWqV4EneT7JvyU5mGS6G7snydFu7GASN5qUpFXUd0cegHdX1YuLxu6rqntXMpAkqZ/lFHjzjh49yrqT/9nEbtOSxmvdyZc4evQ3445xVn3XwAv4RpKZJFMLxu9K8nSSB5NcMezCJFNJppNMz83NnXdgSdK8vjPw66vqhSSbgP1JDgP3A59lvtw/C3we+PjiC6tqL7AXYDAY1IqkPkdbtmzhp7++mFfe5nK9pLNbf/jrbNmyedwxzqrXDLyqXujeTwCPANdV1fGqeq2qXgceAK4bXUxJ0mJLFniSNyV586nPwPuAQ0kmFpx2K3BoNBElScP0WULZDDyS5NT5X6uqJ5J8Ocl25pdQngfuHFlKSdJplizwqnoOuHbI+B0jSSRJ6sUnMSWpURa4JDXKApekRlngktQoC1ySGmWBS1KjLHBJapQFLkmNssAlqVEWuCQ1ygKXpEZZ4JLUKAtckhplgUtSoyxwSWqUBS5Jjeq1qXGS54FfAq8Bv6mqQZINwD8A25jfkefPqurl0cSUJC22nBn4u6tqe1UNuuO7gQNVdQ1woDuWJK2S81lCuQXY133eB3z4/ONIkvrqW+AFfCPJTJKpbmxzVR0D6N43DbswyVSS6STTc3Nz559YkgT0XAMHrq+qF5JsAvYnOdz3C6pqL7AXYDAY1DlklCQN0WsGXlUvdO8ngEeA64DjSSYAuvcTowopSTrdkgWe5E1J3nzqM/A+4BDwGLCjO20H8OioQkqSTtdnCWUz8EiSU+d/raqeSPId4KEknwB+DNw2upiSpMWWLPCqeg64dsj4S8ANowglSVqaT2JKUqMscElqlAUuSY2ywCWpURa4JDXKApekRlngktQoC1ySGmWBS1KjLHBJapQFLkmNssAlqVEWuCQ1ygKXpEZZ4JLUKAtckhrVu8CTrEvy3SSPd8f3JDma5GD3unl0MSVJi/XdlR5gF/AMcNmCsfuq6t6VjSRJ6qPXDDzJVcAHgC+ONo4kqa++SyhfAD4JvL5o/K4kTyd5MMkVwy5MMpVkOsn03Nzc+WSVJC2wZIEn+SBwoqpmFv3ofuAtwHbgGPD5YddX1d6qGlTVYOPGjeebV5LU6bMGfj3woe6PlJcAlyX5SlV99NQJSR4AHh9RRknSEEvOwKvq01V1VVVtA24HvllVH00yseC0W4FDI8ooSRpiOXehLPbXSbYDBTwP3LkiiSRJvSyrwKvqSeDJ7vMdI8gjSerJJzElqVEWuCQ1ygKXpEZZ4JLUKAtckhplgUtSoyxwSWqUBS5JjbLAJalRFrgkNcoCl6RGWeCS1CgLXJIaZYFLUqMscElqVO8CT7IuyXeTPN4db0iyP8mz3fvQTY0lSaOxnBn4LuCZBcd3Aweq6hrgQHcsSVolvQo8yVXAB4AvLhi+BdjXfd4HfHhlo0mSzqbvDPwLwCeB1xeMba6qYwDd+6ZhFyaZSjKdZHpubu68wkqSfmvJAk/yQeBEVc2cyxdU1d6qGlTVYOPGjefyKyRJQ/TZ1Ph64ENJbgYuAS5L8hXgeJKJqjqWZAI4McqgkqT/a8kZeFV9uqquqqptwO3AN6vqo8BjwI7utB3AoyNLKUk6zfncB/454MYkzwI3dseSpFXSZwnlf1XVk8CT3eeXgBtWPpIkqQ+fxJSkRlngktQoC1ySGmWBS1KjLHBJapQFLkmNssAlqVEWuCQ1ygKXpEZZ4JLUKAtckhplgUtSoyxwSWqUBS5JjbLAJalRFrgkNarPpsaXJPl2ku8l+X6Sz3Tj9yQ5muRg97p59HElSaf02ZHn18B7qupXSd4AfCvJP3U/u6+q7h1dPEnSmSxZ4FVVwK+6wzd0rxplqFFad/JnrD/89XHH0Bpy0X//AoDXL7lszEm0lqw7+TNg87hjnFWvPTGTrANmgEngb6vqqSTvB+5K8ufANPBXVfXykGungCmArVu3rljwczE5OTnW79faNDv7SwAmr17b/7FqtW1e852R+Ql2z5OTy4FHgJ3AHPAi87PxzwITVfXxs10/GAxqenr63NNKI7Br1y4Adu/ePeYk0nBJZqpqsHh8WXehVNXPmd+V/qaqOl5Vr1XV68ADwHUrklSS1Eufu1A2djNvkqwH3gscTjKx4LRbgUOjiShJGqbPGvgEsK9bB78IeKiqHk/y5STbmV9CeR64c3QxJUmL9bkL5Wng7UPG7xhJIklSLz6JKUmNssAlqVEWuCQ1ygKXpEZZ4JLUKAtckhplgUtSoyxwSWqUBS5JjbLAJalRFrgkNcoCl6RGWeCS1CgLXJIaZYFLUqMscElqVJ8t1S5J8u0k30vy/SSf6cY3JNmf5Nnu/YrRx5UkndJnBv5r4D1VdS2wHbgpyR8BdwMHquoa4EB3LElaJX22VCvgV93hG7pXAbcA7+rG9zG/W/2nVjyhRmLPnj3Mzs6OO8aacOqfw65du8acZG2YnJxk586d446hHnqtgSdZl+QgcALYX1VPAZur6hhA977pDNdOJZlOMj03N7dSuaUVs379etavXz/uGNKyZX6C3fPk5HLgEWAn8K2qunzBz16uqrOugw8Gg5qenj7XrJJ0QUoyU1WDxePLugulqn7O/FLJTcDxJBPdL59gfnYuSVolfe5C2djNvEmyHngvcBh4DNjRnbYDeHRUISVJp1vyj5jABLAvyTrmC/+hqno8yb8ADyX5BPBj4LYR5pQkLdLnLpSngbcPGX8JuGEUoSRJS/NJTElqlAUuSY2ywCWpURa4JDVqWQ/ynPeXJXPAj1btC6X+rgReHHcI6Qx+r6o2Lh5c1QKX1qok08OedJPWMpdQJKlRFrgkNcoCl+btHXcAablcA5ekRjkDl6RGWeCS1CgLXBe8JDcl+WGS2STu7apmuAauC1r3v0n+d+BG4AjwHeAjVfWDsQaTenAGrgvddcBsVT1XVa8Cf8/8ht3SmmeB60K3BfjJguMj3Zi05lngutBlyJjrimqCBa4L3RHgdxccXwW8MKYs0rJY4LrQfQe4JsnvJ3kjcDvzG3ZLa16fTY2l/7eq6jdJ7gL+GVgHPFhV3x9zLKkXbyOUpEa5hCJJjbLAJalRFrgkNcoCl6RGWeCS1CgLXJIaZYFLUqP+B7aIldRSUVReAAAAAElFTkSuQmCC\n", + "image/png": "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", "text/plain": [ "
" ] @@ -1462,7 +1453,7 @@ } ], "source": [ - "# draw boxplot here\n", + "# draw boxplot here", "sns.boxplot(data=employee['Salary']);" ] }, @@ -1474,83 +1465,83 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameDepartmentEducationGenderTitleYearsSalary
0JoseITBachelorManalyst135
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
3SoniaHRBachelorFanalyst435
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
NameDepartmentEducationGenderTitleYearsSalary
0JoseITBachelorManalyst135
1MariaITMasterFanalyst230
2DavidHRMasterManalyst230
3SoniaHRBachelorFanalyst435
", "
" ], "text/plain": [ - " Name Department Education Gender Title Years Salary\n", - "0 Jose IT Bachelor M analyst 1 35\n", - "1 Maria IT Master F analyst 2 30\n", - "2 David HR Master M analyst 2 30\n", + " Name Department Education Gender Title Years Salary", + "0 Jose IT Bachelor M analyst 1 35", + "1 Maria IT Master F analyst 2 30", + "2 David HR Master M analyst 2 30", "3 Sonia HR Bachelor F analyst 4 35" ] }, @@ -1560,9 +1551,9 @@ } ], "source": [ - "# print first quartile here\n", - "(employee.loc\n", - " [(employee['Salary']>=employee.describe().loc['min']['Salary'])&\n", + "# print first quartile here", + "(employee.loc", + " [(employee['Salary']>=employee.describe().loc['min']['Salary'])&", " (employee['Salary']<=employee.describe().loc['25%']['Salary'])])" ] }, @@ -1574,72 +1565,72 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameDepartmentEducationGenderTitleYearsSalary
4SamuelSalesMasterMassociate355
5EvaSalesBachelorFassociate255
7PedroITPhdMassociate760
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
NameDepartmentEducationGenderTitleYearsSalary
4SamuelSalesMasterMassociate355
5EvaSalesBachelorFassociate255
7PedroITPhdMassociate760
", "
" ], "text/plain": [ - " Name Department Education Gender Title Years Salary\n", - "4 Samuel Sales Master M associate 3 55\n", - "5 Eva Sales Bachelor F associate 2 55\n", + " Name Department Education Gender Title Years Salary", + "4 Samuel Sales Master M associate 3 55", + "5 Eva Sales Bachelor F associate 2 55", "7 Pedro IT Phd M associate 7 60" ] }, @@ -1649,9 +1640,9 @@ } ], "source": [ - "# print third quartile here\n", - "(employee.loc\n", - " [(employee['Salary']>=employee.describe().loc['50%']['Salary'])&\n", + "# print third quartile here", + "(employee.loc", + " [(employee['Salary']>=employee.describe().loc['50%']['Salary'])&", " (employee['Salary']<=employee.describe().loc['75%']['Salary'])])" ] }, @@ -1670,9 +1661,9 @@ { "data": { "text/plain": [ - "Gender\n", - "F 47.5\n", - "M 50.0\n", + "Gender", + "F 47.5", + "M 50.0", "Name: Salary, dtype: float64" ] }, @@ -1682,7 +1673,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.groupby('Gender')['Salary'].mean()" ] }, @@ -1690,8 +1681,8 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### Find the minimum, mean and the maximum of all numeric columns for each Department.\n", - "\n", + "#### Find the minimum, mean and the maximum of all numeric columns for each Department.", + "", "##### Hint: Use functions from Data Manipulation lesson" ] }, @@ -1703,78 +1694,78 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
NameEducationGenderTitleYearsSalary
Department
HRAnaBachelorFVP230
ITCarlosBachelorFVP130
SalesEvaBachelorFassociate255
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
NameEducationGenderTitleYearsSalary
Department
HRAnaBachelorFVP230
ITCarlosBachelorFVP130
SalesEvaBachelorFassociate255
", "
" ], "text/plain": [ - " Name Education Gender Title Years Salary\n", - "Department \n", - "HR Ana Bachelor F VP 2 30\n", - "IT Carlos Bachelor F VP 1 30\n", + " Name Education Gender Title Years Salary", + "Department ", + "HR Ana Bachelor F VP 2 30", + "IT Carlos Bachelor F VP 1 30", "Sales Eva Bachelor F associate 2 55" ] }, @@ -1784,7 +1775,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.groupby('Department').min()" ] }, @@ -1792,10 +1783,10 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "### Bonus Question\n", - "\n", - "#### For each department, compute the difference between the maximal salary and the minimal salary.\n", - "\n", + "### Bonus Question", + "", + "#### For each department, compute the difference between the maximal salary and the minimal salary.", + "", "##### * Hint: try using `agg` or `apply` and `lambda`*" ] }, @@ -1807,10 +1798,10 @@ { "data": { "text/plain": [ - "Department\n", - "HR 40\n", - "IT 40\n", - "Sales 0\n", + "Department", + "HR 40", + "IT 40", + "Sales 0", "Name: Salary, dtype: int64" ] }, @@ -1820,7 +1811,7 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "employee.groupby('Department')['Salary'].apply(lambda x: max(x)-min(x))" ] }, @@ -1840,10 +1831,8 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 102, "metadata": {}, -======= "execution_count": null, "metadata": { "collapsed": true, @@ -1851,10 +1840,9 @@ "outputs_hidden": true } }, ->>>>>>> upstream/master "outputs": [], "source": [ - "# your answer here\n", + "# your answer here", "orders = pd.read_csv('Orders.zip')" ] }, @@ -1874,20 +1862,20 @@ { "data": { "text/plain": [ - "Unnamed: 0 int64\n", - "InvoiceNo int64\n", - "StockCode object\n", - "year int64\n", - "month int64\n", - "day int64\n", - "hour int64\n", - "Description object\n", - "Quantity int64\n", - "InvoiceDate object\n", - "UnitPrice float64\n", - "CustomerID int64\n", - "Country object\n", - "amount_spent float64\n", + "Unnamed: 0 int64", + "InvoiceNo int64", + "StockCode object", + "year int64", + "month int64", + "day int64", + "hour int64", + "Description object", + "Quantity int64", + "InvoiceDate object", + "UnitPrice float64", + "CustomerID int64", + "Country object", + "amount_spent float64", "dtype: object" ] }, @@ -1897,9 +1885,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.dtypes" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -1910,186 +1897,184 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 107, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Unnamed: 0InvoiceNoyearmonthdayhourQuantityUnitPriceCustomerIDamount_spent
count397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000
mean278465.221859560617.1266452010.9342597.6125373.61455512.72824713.0218233.11617415294.31517122.394749
std152771.36830313106.1676950.2478293.4165271.9282742.273535180.42021022.0967881713.169877309.055588
min0.000000536365.0000002010.0000001.0000001.0000006.0000001.0000000.00000012346.0000000.000000
25%148333.750000549234.0000002011.0000005.0000002.00000011.0000002.0000001.25000013969.0000004.680000
50%284907.500000561893.0000002011.0000008.0000003.00000013.0000006.0000001.95000015159.00000011.800000
75%410079.250000572090.0000002011.00000011.0000005.00000014.00000012.0000003.75000016795.00000019.800000
max541908.000000581587.0000002011.00000012.0000007.00000020.00000080995.0000008142.75000018287.000000168469.600000
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Unnamed: 0InvoiceNoyearmonthdayhourQuantityUnitPriceCustomerIDamount_spent
count397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000397924.000000
mean278465.221859560617.1266452010.9342597.6125373.61455512.72824713.0218233.11617415294.31517122.394749
std152771.36830313106.1676950.2478293.4165271.9282742.273535180.42021022.0967881713.169877309.055588
min0.000000536365.0000002010.0000001.0000001.0000006.0000001.0000000.00000012346.0000000.000000
25%148333.750000549234.0000002011.0000005.0000002.00000011.0000002.0000001.25000013969.0000004.680000
50%284907.500000561893.0000002011.0000008.0000003.00000013.0000006.0000001.95000015159.00000011.800000
75%410079.250000572090.0000002011.00000011.0000005.00000014.00000012.0000003.75000016795.00000019.800000
max541908.000000581587.0000002011.00000012.0000007.00000020.00000080995.0000008142.75000018287.000000168469.600000
", "
" ], "text/plain": [ - " Unnamed: 0 InvoiceNo year month \\\n", - "count 397924.000000 397924.000000 397924.000000 397924.000000 \n", - "mean 278465.221859 560617.126645 2010.934259 7.612537 \n", - "std 152771.368303 13106.167695 0.247829 3.416527 \n", - "min 0.000000 536365.000000 2010.000000 1.000000 \n", - "25% 148333.750000 549234.000000 2011.000000 5.000000 \n", - "50% 284907.500000 561893.000000 2011.000000 8.000000 \n", - "75% 410079.250000 572090.000000 2011.000000 11.000000 \n", - "max 541908.000000 581587.000000 2011.000000 12.000000 \n", - "\n", - " day hour Quantity UnitPrice \\\n", - "count 397924.000000 397924.000000 397924.000000 397924.000000 \n", - "mean 3.614555 12.728247 13.021823 3.116174 \n", - "std 1.928274 2.273535 180.420210 22.096788 \n", - "min 1.000000 6.000000 1.000000 0.000000 \n", - "25% 2.000000 11.000000 2.000000 1.250000 \n", - "50% 3.000000 13.000000 6.000000 1.950000 \n", - "75% 5.000000 14.000000 12.000000 3.750000 \n", - "max 7.000000 20.000000 80995.000000 8142.750000 \n", - "\n", - " CustomerID amount_spent \n", - "count 397924.000000 397924.000000 \n", - "mean 15294.315171 22.394749 \n", - "std 1713.169877 309.055588 \n", - "min 12346.000000 0.000000 \n", - "25% 13969.000000 4.680000 \n", - "50% 15159.000000 11.800000 \n", - "75% 16795.000000 19.800000 \n", + " Unnamed: 0 InvoiceNo year month \\", + "count 397924.000000 397924.000000 397924.000000 397924.000000 ", + "mean 278465.221859 560617.126645 2010.934259 7.612537 ", + "std 152771.368303 13106.167695 0.247829 3.416527 ", + "min 0.000000 536365.000000 2010.000000 1.000000 ", + "25% 148333.750000 549234.000000 2011.000000 5.000000 ", + "50% 284907.500000 561893.000000 2011.000000 8.000000 ", + "75% 410079.250000 572090.000000 2011.000000 11.000000 ", + "max 541908.000000 581587.000000 2011.000000 12.000000 ", + "", + " day hour Quantity UnitPrice \\", + "count 397924.000000 397924.000000 397924.000000 397924.000000 ", + "mean 3.614555 12.728247 13.021823 3.116174 ", + "std 1.928274 2.273535 180.420210 22.096788 ", + "min 1.000000 6.000000 1.000000 0.000000 ", + "25% 2.000000 11.000000 2.000000 1.250000 ", + "50% 3.000000 13.000000 6.000000 1.950000 ", + "75% 5.000000 14.000000 12.000000 3.750000 ", + "max 7.000000 20.000000 80995.000000 8142.750000 ", + "", + " CustomerID amount_spent ", + "count 397924.000000 397924.000000 ", + "mean 15294.315171 22.394749 ", + "std 1713.169877 309.055588 ", + "min 12346.000000 0.000000 ", + "25% 13969.000000 4.680000 ", + "50% 15159.000000 11.800000 ", + "75% 16795.000000 19.800000 ", "max 18287.000000 168469.600000 " ] }, @@ -2099,9 +2084,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.describe()" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -2112,7 +2096,6 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { @@ -2139,7 +2122,6 @@ "output_type": "execute_result" } ], -======= "execution_count": null, "metadata": { "collapsed": true, @@ -2148,9 +2130,8 @@ } }, "outputs": [], ->>>>>>> upstream/master "source": [ - "# your answer here\n", + "# your answer here", "orders['UnitPrice'].mean()" ] }, @@ -2163,7 +2144,6 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 111, "metadata": {}, "outputs": [ @@ -2178,7 +2158,6 @@ "output_type": "execute_result" } ], -======= "execution_count": null, "metadata": { "collapsed": true, @@ -2187,15 +2166,13 @@ } }, "outputs": [], ->>>>>>> upstream/master "source": [ - "# your answer here\n", + "# your answer here", "orders['UnitPrice'].max()" ] }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 110, "metadata": {}, "outputs": [ @@ -2210,7 +2187,6 @@ "output_type": "execute_result" } ], -======= "execution_count": null, "metadata": { "collapsed": true, @@ -2219,9 +2195,8 @@ } }, "outputs": [], ->>>>>>> upstream/master "source": [ - "# your answer here\n", + "# your answer here", "orders['UnitPrice'].min()" ] }, @@ -2234,280 +2209,279 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 112, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
4250642153694422383201012512lunch bag suki design702010-12-03 12:20:001.6512557Spain115.50
4251642253694422384201012512lunch bag pink polkadot1002010-12-03 12:20:001.4512557Spain145.00
4252642353694420727201012512lunch bag black skull.602010-12-03 12:20:001.6512557Spain99.00
4253642453694420725201012512lunch bag red retrospot702010-12-03 12:20:001.6512557Spain115.50
4254642553694420728201012512lunch bag cars blue1002010-12-03 12:20:001.4512557Spain145.00
.............................................
39473353527158119323291201112317dolly girl childrens cup22011-12-07 17:05:001.2517097Spain2.50
39473453527258119385232D201112317set/3 decoupage stacking tins12011-12-07 17:05:004.9517097Spain4.95
39473553527358119322721201112317set of 3 cake tins sketchbook22011-12-07 17:05:001.9517097Spain3.90
39473653527458119323241201112317treasure tin gymkhana design12011-12-07 17:05:002.0817097Spain2.08
39473753527558119323247201112317biscuit tin 50's christmas12011-12-07 17:05:002.8917097Spain2.89
\n", - "

2485 rows × 14 columns

\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
4250642153694422383201012512lunch bag suki design702010-12-03 12:20:001.6512557Spain115.50
4251642253694422384201012512lunch bag pink polkadot1002010-12-03 12:20:001.4512557Spain145.00
4252642353694420727201012512lunch bag black skull.602010-12-03 12:20:001.6512557Spain99.00
4253642453694420725201012512lunch bag red retrospot702010-12-03 12:20:001.6512557Spain115.50
4254642553694420728201012512lunch bag cars blue1002010-12-03 12:20:001.4512557Spain145.00
.............................................
39473353527158119323291201112317dolly girl childrens cup22011-12-07 17:05:001.2517097Spain2.50
39473453527258119385232D201112317set/3 decoupage stacking tins12011-12-07 17:05:004.9517097Spain4.95
39473553527358119322721201112317set of 3 cake tins sketchbook22011-12-07 17:05:001.9517097Spain3.90
39473653527458119323241201112317treasure tin gymkhana design12011-12-07 17:05:002.0817097Spain2.08
39473753527558119323247201112317biscuit tin 50's christmas12011-12-07 17:05:002.8917097Spain2.89
", + "

2485 rows × 14 columns

", "
" ], "text/plain": [ - " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", - "4250 6421 536944 22383 2010 12 5 12 \n", - "4251 6422 536944 22384 2010 12 5 12 \n", - "4252 6423 536944 20727 2010 12 5 12 \n", - "4253 6424 536944 20725 2010 12 5 12 \n", - "4254 6425 536944 20728 2010 12 5 12 \n", - "... ... ... ... ... ... ... ... \n", - "394733 535271 581193 23291 2011 12 3 17 \n", - "394734 535272 581193 85232D 2011 12 3 17 \n", - "394735 535273 581193 22721 2011 12 3 17 \n", - "394736 535274 581193 23241 2011 12 3 17 \n", - "394737 535275 581193 23247 2011 12 3 17 \n", - "\n", - " Description Quantity InvoiceDate \\\n", - "4250 lunch bag suki design 70 2010-12-03 12:20:00 \n", - "4251 lunch bag pink polkadot 100 2010-12-03 12:20:00 \n", - "4252 lunch bag black skull. 60 2010-12-03 12:20:00 \n", - "4253 lunch bag red retrospot 70 2010-12-03 12:20:00 \n", - "4254 lunch bag cars blue 100 2010-12-03 12:20:00 \n", - "... ... ... ... \n", - "394733 dolly girl childrens cup 2 2011-12-07 17:05:00 \n", - "394734 set/3 decoupage stacking tins 1 2011-12-07 17:05:00 \n", - "394735 set of 3 cake tins sketchbook 2 2011-12-07 17:05:00 \n", - "394736 treasure tin gymkhana design 1 2011-12-07 17:05:00 \n", - "394737 biscuit tin 50's christmas 1 2011-12-07 17:05:00 \n", - "\n", - " UnitPrice CustomerID Country amount_spent \n", - "4250 1.65 12557 Spain 115.50 \n", - "4251 1.45 12557 Spain 145.00 \n", - "4252 1.65 12557 Spain 99.00 \n", - "4253 1.65 12557 Spain 115.50 \n", - "4254 1.45 12557 Spain 145.00 \n", - "... ... ... ... ... \n", - "394733 1.25 17097 Spain 2.50 \n", - "394734 4.95 17097 Spain 4.95 \n", - "394735 1.95 17097 Spain 3.90 \n", - "394736 2.08 17097 Spain 2.08 \n", - "394737 2.89 17097 Spain 2.89 \n", - "\n", + " Unnamed: 0 InvoiceNo StockCode year month day hour \\", + "4250 6421 536944 22383 2010 12 5 12 ", + "4251 6422 536944 22384 2010 12 5 12 ", + "4252 6423 536944 20727 2010 12 5 12 ", + "4253 6424 536944 20725 2010 12 5 12 ", + "4254 6425 536944 20728 2010 12 5 12 ", + "... ... ... ... ... ... ... ... ", + "394733 535271 581193 23291 2011 12 3 17 ", + "394734 535272 581193 85232D 2011 12 3 17 ", + "394735 535273 581193 22721 2011 12 3 17 ", + "394736 535274 581193 23241 2011 12 3 17 ", + "394737 535275 581193 23247 2011 12 3 17 ", + "", + " Description Quantity InvoiceDate \\", + "4250 lunch bag suki design 70 2010-12-03 12:20:00 ", + "4251 lunch bag pink polkadot 100 2010-12-03 12:20:00 ", + "4252 lunch bag black skull. 60 2010-12-03 12:20:00 ", + "4253 lunch bag red retrospot 70 2010-12-03 12:20:00 ", + "4254 lunch bag cars blue 100 2010-12-03 12:20:00 ", + "... ... ... ... ", + "394733 dolly girl childrens cup 2 2011-12-07 17:05:00 ", + "394734 set/3 decoupage stacking tins 1 2011-12-07 17:05:00 ", + "394735 set of 3 cake tins sketchbook 2 2011-12-07 17:05:00 ", + "394736 treasure tin gymkhana design 1 2011-12-07 17:05:00 ", + "394737 biscuit tin 50's christmas 1 2011-12-07 17:05:00 ", + "", + " UnitPrice CustomerID Country amount_spent ", + "4250 1.65 12557 Spain 115.50 ", + "4251 1.45 12557 Spain 145.00 ", + "4252 1.65 12557 Spain 99.00 ", + "4253 1.65 12557 Spain 115.50 ", + "4254 1.45 12557 Spain 145.00 ", + "... ... ... ... ... ", + "394733 1.25 17097 Spain 2.50 ", + "394734 4.95 17097 Spain 4.95 ", + "394735 1.95 17097 Spain 3.90 ", + "394736 2.08 17097 Spain 2.08 ", + "394737 2.89 17097 Spain 2.89 ", + "", "[2485 rows x 14 columns]" ] }, @@ -2517,9 +2491,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.loc[orders['Country']=='Spain']" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -2530,20 +2503,18 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "#### How many customers do we have in Spain?\n", + "#### How many customers do we have in Spain?", "##### Hint : Use value_counts()" ] }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 136, "metadata": {}, "outputs": [ @@ -2558,7 +2529,6 @@ "output_type": "execute_result" } ], -======= "execution_count": null, "metadata": { "collapsed": true, @@ -2567,9 +2537,8 @@ } }, "outputs": [], ->>>>>>> upstream/master "source": [ - "# your answer here\n", + "# your answer here", "orders.loc[orders['Country']=='Spain']['CustomerID'].value_counts().count()" ] }, @@ -2582,280 +2551,279 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 119, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
46465363712208620101239paper chain kit 50's christmas802010-12-01 09:00:002.5513748United Kingdom204.00
83835363762173320101239red hanging heart t-light holder642010-12-01 09:32:002.5515291United Kingdom163.20
96965363782121220101239pack of 72 retrospot cake cases1202010-12-01 09:37:000.4214688United Kingdom50.40
10210253637885071B20101239red charlie+lola personal doorsign962010-12-01 09:37:000.3814688United Kingdom36.48
17417653638685099C20101239jumbo bag baroque black white1002010-12-01 09:57:001.6516029United Kingdom165.00
.............................................
39772054170258156623404201112511home sweet home blackboard1442011-12-09 11:50:003.2618102United Kingdom469.44
39772154170358156721417201112511cockle shell dish842011-12-09 11:56:000.7916626United Kingdom66.36
39772954171158156721326201112511aged glass silver t-light holder1442011-12-09 11:56:000.5516626United Kingdom79.20
39776154174658157123167201112512small ceramic top storage jar962011-12-09 12:00:000.6915311United Kingdom66.24
39788254186758158420832201112512red flock love heart photo frame722011-12-09 12:25:000.7213777United Kingdom51.84
\n", - "

11609 rows × 14 columns

\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
46465363712208620101239paper chain kit 50's christmas802010-12-01 09:00:002.5513748United Kingdom204.00
83835363762173320101239red hanging heart t-light holder642010-12-01 09:32:002.5515291United Kingdom163.20
96965363782121220101239pack of 72 retrospot cake cases1202010-12-01 09:37:000.4214688United Kingdom50.40
10210253637885071B20101239red charlie+lola personal doorsign962010-12-01 09:37:000.3814688United Kingdom36.48
17417653638685099C20101239jumbo bag baroque black white1002010-12-01 09:57:001.6516029United Kingdom165.00
.............................................
39772054170258156623404201112511home sweet home blackboard1442011-12-09 11:50:003.2618102United Kingdom469.44
39772154170358156721417201112511cockle shell dish842011-12-09 11:56:000.7916626United Kingdom66.36
39772954171158156721326201112511aged glass silver t-light holder1442011-12-09 11:56:000.5516626United Kingdom79.20
39776154174658157123167201112512small ceramic top storage jar962011-12-09 12:00:000.6915311United Kingdom66.24
39788254186758158420832201112512red flock love heart photo frame722011-12-09 12:25:000.7213777United Kingdom51.84
", + "

11609 rows × 14 columns

", "
" ], "text/plain": [ - " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", - "46 46 536371 22086 2010 12 3 9 \n", - "83 83 536376 21733 2010 12 3 9 \n", - "96 96 536378 21212 2010 12 3 9 \n", - "102 102 536378 85071B 2010 12 3 9 \n", - "174 176 536386 85099C 2010 12 3 9 \n", - "... ... ... ... ... ... ... ... \n", - "397720 541702 581566 23404 2011 12 5 11 \n", - "397721 541703 581567 21417 2011 12 5 11 \n", - "397729 541711 581567 21326 2011 12 5 11 \n", - "397761 541746 581571 23167 2011 12 5 12 \n", - "397882 541867 581584 20832 2011 12 5 12 \n", - "\n", - " Description Quantity InvoiceDate \\\n", - "46 paper chain kit 50's christmas 80 2010-12-01 09:00:00 \n", - "83 red hanging heart t-light holder 64 2010-12-01 09:32:00 \n", - "96 pack of 72 retrospot cake cases 120 2010-12-01 09:37:00 \n", - "102 red charlie+lola personal doorsign 96 2010-12-01 09:37:00 \n", - "174 jumbo bag baroque black white 100 2010-12-01 09:57:00 \n", - "... ... ... ... \n", - "397720 home sweet home blackboard 144 2011-12-09 11:50:00 \n", - "397721 cockle shell dish 84 2011-12-09 11:56:00 \n", - "397729 aged glass silver t-light holder 144 2011-12-09 11:56:00 \n", - "397761 small ceramic top storage jar 96 2011-12-09 12:00:00 \n", - "397882 red flock love heart photo frame 72 2011-12-09 12:25:00 \n", - "\n", - " UnitPrice CustomerID Country amount_spent \n", - "46 2.55 13748 United Kingdom 204.00 \n", - "83 2.55 15291 United Kingdom 163.20 \n", - "96 0.42 14688 United Kingdom 50.40 \n", - "102 0.38 14688 United Kingdom 36.48 \n", - "174 1.65 16029 United Kingdom 165.00 \n", - "... ... ... ... ... \n", - "397720 3.26 18102 United Kingdom 469.44 \n", - "397721 0.79 16626 United Kingdom 66.36 \n", - "397729 0.55 16626 United Kingdom 79.20 \n", - "397761 0.69 15311 United Kingdom 66.24 \n", - "397882 0.72 13777 United Kingdom 51.84 \n", - "\n", + " Unnamed: 0 InvoiceNo StockCode year month day hour \\", + "46 46 536371 22086 2010 12 3 9 ", + "83 83 536376 21733 2010 12 3 9 ", + "96 96 536378 21212 2010 12 3 9 ", + "102 102 536378 85071B 2010 12 3 9 ", + "174 176 536386 85099C 2010 12 3 9 ", + "... ... ... ... ... ... ... ... ", + "397720 541702 581566 23404 2011 12 5 11 ", + "397721 541703 581567 21417 2011 12 5 11 ", + "397729 541711 581567 21326 2011 12 5 11 ", + "397761 541746 581571 23167 2011 12 5 12 ", + "397882 541867 581584 20832 2011 12 5 12 ", + "", + " Description Quantity InvoiceDate \\", + "46 paper chain kit 50's christmas 80 2010-12-01 09:00:00 ", + "83 red hanging heart t-light holder 64 2010-12-01 09:32:00 ", + "96 pack of 72 retrospot cake cases 120 2010-12-01 09:37:00 ", + "102 red charlie+lola personal doorsign 96 2010-12-01 09:37:00 ", + "174 jumbo bag baroque black white 100 2010-12-01 09:57:00 ", + "... ... ... ... ", + "397720 home sweet home blackboard 144 2011-12-09 11:50:00 ", + "397721 cockle shell dish 84 2011-12-09 11:56:00 ", + "397729 aged glass silver t-light holder 144 2011-12-09 11:56:00 ", + "397761 small ceramic top storage jar 96 2011-12-09 12:00:00 ", + "397882 red flock love heart photo frame 72 2011-12-09 12:25:00 ", + "", + " UnitPrice CustomerID Country amount_spent ", + "46 2.55 13748 United Kingdom 204.00 ", + "83 2.55 15291 United Kingdom 163.20 ", + "96 0.42 14688 United Kingdom 50.40 ", + "102 0.38 14688 United Kingdom 36.48 ", + "174 1.65 16029 United Kingdom 165.00 ", + "... ... ... ... ... ", + "397720 3.26 18102 United Kingdom 469.44 ", + "397721 0.79 16626 United Kingdom 66.36 ", + "397729 0.55 16626 United Kingdom 79.20 ", + "397761 0.69 15311 United Kingdom 66.24 ", + "397882 0.72 13777 United Kingdom 51.84 ", + "", "[11609 rows x 14 columns]" ] }, @@ -2865,9 +2833,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.loc[orders['Quantity']>50]" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -2878,7 +2845,6 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { @@ -2890,157 +2856,156 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 121, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
4250642153694422383201012512lunch bag suki design702010-12-03 12:20:001.6512557Spain115.5
4251642253694422384201012512lunch bag pink polkadot1002010-12-03 12:20:001.4512557Spain145.0
4252642353694420727201012512lunch bag black skull.602010-12-03 12:20:001.6512557Spain99.0
4253642453694420725201012512lunch bag red retrospot702010-12-03 12:20:001.6512557Spain115.5
4254642553694420728201012512lunch bag cars blue1002010-12-03 12:20:001.4512557Spain145.0
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
4250642153694422383201012512lunch bag suki design702010-12-03 12:20:001.6512557Spain115.5
4251642253694422384201012512lunch bag pink polkadot1002010-12-03 12:20:001.4512557Spain145.0
4252642353694420727201012512lunch bag black skull.602010-12-03 12:20:001.6512557Spain99.0
4253642453694420725201012512lunch bag red retrospot702010-12-03 12:20:001.6512557Spain115.5
4254642553694420728201012512lunch bag cars blue1002010-12-03 12:20:001.4512557Spain145.0
", "
" ], "text/plain": [ - " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", - "4250 6421 536944 22383 2010 12 5 12 \n", - "4251 6422 536944 22384 2010 12 5 12 \n", - "4252 6423 536944 20727 2010 12 5 12 \n", - "4253 6424 536944 20725 2010 12 5 12 \n", - "4254 6425 536944 20728 2010 12 5 12 \n", - "\n", - " Description Quantity InvoiceDate UnitPrice \\\n", - "4250 lunch bag suki design 70 2010-12-03 12:20:00 1.65 \n", - "4251 lunch bag pink polkadot 100 2010-12-03 12:20:00 1.45 \n", - "4252 lunch bag black skull. 60 2010-12-03 12:20:00 1.65 \n", - "4253 lunch bag red retrospot 70 2010-12-03 12:20:00 1.65 \n", - "4254 lunch bag cars blue 100 2010-12-03 12:20:00 1.45 \n", - "\n", - " CustomerID Country amount_spent \n", - "4250 12557 Spain 115.5 \n", - "4251 12557 Spain 145.0 \n", - "4252 12557 Spain 99.0 \n", - "4253 12557 Spain 115.5 \n", + " Unnamed: 0 InvoiceNo StockCode year month day hour \\", + "4250 6421 536944 22383 2010 12 5 12 ", + "4251 6422 536944 22384 2010 12 5 12 ", + "4252 6423 536944 20727 2010 12 5 12 ", + "4253 6424 536944 20725 2010 12 5 12 ", + "4254 6425 536944 20728 2010 12 5 12 ", + "", + " Description Quantity InvoiceDate UnitPrice \\", + "4250 lunch bag suki design 70 2010-12-03 12:20:00 1.65 ", + "4251 lunch bag pink polkadot 100 2010-12-03 12:20:00 1.45 ", + "4252 lunch bag black skull. 60 2010-12-03 12:20:00 1.65 ", + "4253 lunch bag red retrospot 70 2010-12-03 12:20:00 1.65 ", + "4254 lunch bag cars blue 100 2010-12-03 12:20:00 1.45 ", + "", + " CustomerID Country amount_spent ", + "4250 12557 Spain 115.5 ", + "4251 12557 Spain 145.0 ", + "4252 12557 Spain 99.0 ", + "4253 12557 Spain 115.5 ", "4254 12557 Spain 145.0 " ] }, @@ -3050,9 +3015,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.loc[(orders['Quantity']>50)&(orders['Country']=='Spain')].head()" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -3063,7 +3027,6 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { @@ -3075,157 +3038,156 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 122, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
6914930253719722841201012714round cake tin vintage green12010-12-05 14:02:000.012647Germany0.0
225393357653926322580201012414advent calendar gingham sack42010-12-16 14:36:000.016560United Kingdom0.0
253794008953972222423201012213regency cakestand 3 tier102010-12-21 13:45:000.014911EIRE0.0
29080470685403722209020111416paper bunting retrospot242011-01-06 16:41:000.013081United Kingdom0.0
29082470705403722255320111416plasters in tin skulls242011-01-06 16:41:000.013081United Kingdom0.0
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
6914930253719722841201012714round cake tin vintage green12010-12-05 14:02:000.012647Germany0.0
225393357653926322580201012414advent calendar gingham sack42010-12-16 14:36:000.016560United Kingdom0.0
253794008953972222423201012213regency cakestand 3 tier102010-12-21 13:45:000.014911EIRE0.0
29080470685403722209020111416paper bunting retrospot242011-01-06 16:41:000.013081United Kingdom0.0
29082470705403722255320111416plasters in tin skulls242011-01-06 16:41:000.013081United Kingdom0.0
", "
" ], "text/plain": [ - " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", - "6914 9302 537197 22841 2010 12 7 14 \n", - "22539 33576 539263 22580 2010 12 4 14 \n", - "25379 40089 539722 22423 2010 12 2 13 \n", - "29080 47068 540372 22090 2011 1 4 16 \n", - "29082 47070 540372 22553 2011 1 4 16 \n", - "\n", - " Description Quantity InvoiceDate UnitPrice \\\n", - "6914 round cake tin vintage green 1 2010-12-05 14:02:00 0.0 \n", - "22539 advent calendar gingham sack 4 2010-12-16 14:36:00 0.0 \n", - "25379 regency cakestand 3 tier 10 2010-12-21 13:45:00 0.0 \n", - "29080 paper bunting retrospot 24 2011-01-06 16:41:00 0.0 \n", - "29082 plasters in tin skulls 24 2011-01-06 16:41:00 0.0 \n", - "\n", - " CustomerID Country amount_spent \n", - "6914 12647 Germany 0.0 \n", - "22539 16560 United Kingdom 0.0 \n", - "25379 14911 EIRE 0.0 \n", - "29080 13081 United Kingdom 0.0 \n", + " Unnamed: 0 InvoiceNo StockCode year month day hour \\", + "6914 9302 537197 22841 2010 12 7 14 ", + "22539 33576 539263 22580 2010 12 4 14 ", + "25379 40089 539722 22423 2010 12 2 13 ", + "29080 47068 540372 22090 2011 1 4 16 ", + "29082 47070 540372 22553 2011 1 4 16 ", + "", + " Description Quantity InvoiceDate UnitPrice \\", + "6914 round cake tin vintage green 1 2010-12-05 14:02:00 0.0 ", + "22539 advent calendar gingham sack 4 2010-12-16 14:36:00 0.0 ", + "25379 regency cakestand 3 tier 10 2010-12-21 13:45:00 0.0 ", + "29080 paper bunting retrospot 24 2011-01-06 16:41:00 0.0 ", + "29082 plasters in tin skulls 24 2011-01-06 16:41:00 0.0 ", + "", + " CustomerID Country amount_spent ", + "6914 12647 Germany 0.0 ", + "22539 16560 United Kingdom 0.0 ", + "25379 14911 EIRE 0.0 ", + "29080 13081 United Kingdom 0.0 ", "29082 13081 United Kingdom 0.0 " ] }, @@ -3235,9 +3197,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.loc[orders['UnitPrice']==0].head()" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -3248,14 +3209,13 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "#### Select all orders that are 'lunch bag'\n", + "#### Select all orders that are 'lunch bag'", "#### Hint: Use string functions" ] }, @@ -3268,150 +3228,150 @@ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
93935363782072520101239lunch bag red retrospot102010-12-01 09:37:001.6514688United Kingdom16.50
1721745363852266220101239lunch bag dolly girl design102010-12-01 09:56:001.6517420United Kingdom16.50
35436353640122662201012311lunch bag dolly girl design12010-12-01 11:21:001.6515862United Kingdom1.65
35936853640120725201012311lunch bag red retrospot12010-12-01 11:21:001.6515862United Kingdom1.65
36036953640122382201012311lunch bag spaceboy design22010-12-01 11:21:001.6515862United Kingdom3.30
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
93935363782072520101239lunch bag red retrospot102010-12-01 09:37:001.6514688United Kingdom16.50
1721745363852266220101239lunch bag dolly girl design102010-12-01 09:56:001.6517420United Kingdom16.50
35436353640122662201012311lunch bag dolly girl design12010-12-01 11:21:001.6515862United Kingdom1.65
35936853640120725201012311lunch bag red retrospot12010-12-01 11:21:001.6515862United Kingdom1.65
36036953640122382201012311lunch bag spaceboy design22010-12-01 11:21:001.6515862United Kingdom3.30
", "
" ], "text/plain": [ - " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", - "93 93 536378 20725 2010 12 3 9 \n", - "172 174 536385 22662 2010 12 3 9 \n", - "354 363 536401 22662 2010 12 3 11 \n", - "359 368 536401 20725 2010 12 3 11 \n", - "360 369 536401 22382 2010 12 3 11 \n", - "\n", - " Description Quantity InvoiceDate UnitPrice \\\n", - "93 lunch bag red retrospot 10 2010-12-01 09:37:00 1.65 \n", - "172 lunch bag dolly girl design 10 2010-12-01 09:56:00 1.65 \n", - "354 lunch bag dolly girl design 1 2010-12-01 11:21:00 1.65 \n", - "359 lunch bag red retrospot 1 2010-12-01 11:21:00 1.65 \n", - "360 lunch bag spaceboy design 2 2010-12-01 11:21:00 1.65 \n", - "\n", - " CustomerID Country amount_spent \n", - "93 14688 United Kingdom 16.50 \n", - "172 17420 United Kingdom 16.50 \n", - "354 15862 United Kingdom 1.65 \n", - "359 15862 United Kingdom 1.65 \n", + " Unnamed: 0 InvoiceNo StockCode year month day hour \\", + "93 93 536378 20725 2010 12 3 9 ", + "172 174 536385 22662 2010 12 3 9 ", + "354 363 536401 22662 2010 12 3 11 ", + "359 368 536401 20725 2010 12 3 11 ", + "360 369 536401 22382 2010 12 3 11 ", + "", + " Description Quantity InvoiceDate UnitPrice \\", + "93 lunch bag red retrospot 10 2010-12-01 09:37:00 1.65 ", + "172 lunch bag dolly girl design 10 2010-12-01 09:56:00 1.65 ", + "354 lunch bag dolly girl design 1 2010-12-01 11:21:00 1.65 ", + "359 lunch bag red retrospot 1 2010-12-01 11:21:00 1.65 ", + "360 lunch bag spaceboy design 2 2010-12-01 11:21:00 1.65 ", + "", + " CustomerID Country amount_spent ", + "93 14688 United Kingdom 16.50 ", + "172 17420 United Kingdom 16.50 ", + "354 15862 United Kingdom 1.65 ", + "359 15862 United Kingdom 1.65 ", "360 15862 United Kingdom 3.30 " ] }, @@ -3421,9 +3381,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.loc[orders['Description'].str.contains('lunch bag')].head()" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -3434,7 +3393,6 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { @@ -3446,157 +3404,156 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 125, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
26340426785400152072520111211lunch bag red retrospot102011-01-04 11:40:001.6513319United Kingdom16.50
26341426795400152072620111211lunch bag woodland102011-01-04 11:40:001.6513319United Kingdom16.50
26512428515400232238220111212lunch bag spaceboy design22011-01-04 12:58:001.6515039United Kingdom3.30
26513428525400232072620111212lunch bag woodland12011-01-04 12:58:001.6515039United Kingdom1.65
26860436165400982238420111215lunch bag pink polkadot12011-01-04 15:50:001.6516241United Kingdom1.65
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
26340426785400152072520111211lunch bag red retrospot102011-01-04 11:40:001.6513319United Kingdom16.50
26341426795400152072620111211lunch bag woodland102011-01-04 11:40:001.6513319United Kingdom16.50
26512428515400232238220111212lunch bag spaceboy design22011-01-04 12:58:001.6515039United Kingdom3.30
26513428525400232072620111212lunch bag woodland12011-01-04 12:58:001.6515039United Kingdom1.65
26860436165400982238420111215lunch bag pink polkadot12011-01-04 15:50:001.6516241United Kingdom1.65
", "
" ], "text/plain": [ - " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", - "26340 42678 540015 20725 2011 1 2 11 \n", - "26341 42679 540015 20726 2011 1 2 11 \n", - "26512 42851 540023 22382 2011 1 2 12 \n", - "26513 42852 540023 20726 2011 1 2 12 \n", - "26860 43616 540098 22384 2011 1 2 15 \n", - "\n", - " Description Quantity InvoiceDate UnitPrice \\\n", - "26340 lunch bag red retrospot 10 2011-01-04 11:40:00 1.65 \n", - "26341 lunch bag woodland 10 2011-01-04 11:40:00 1.65 \n", - "26512 lunch bag spaceboy design 2 2011-01-04 12:58:00 1.65 \n", - "26513 lunch bag woodland 1 2011-01-04 12:58:00 1.65 \n", - "26860 lunch bag pink polkadot 1 2011-01-04 15:50:00 1.65 \n", - "\n", - " CustomerID Country amount_spent \n", - "26340 13319 United Kingdom 16.50 \n", - "26341 13319 United Kingdom 16.50 \n", - "26512 15039 United Kingdom 3.30 \n", - "26513 15039 United Kingdom 1.65 \n", + " Unnamed: 0 InvoiceNo StockCode year month day hour \\", + "26340 42678 540015 20725 2011 1 2 11 ", + "26341 42679 540015 20726 2011 1 2 11 ", + "26512 42851 540023 22382 2011 1 2 12 ", + "26513 42852 540023 20726 2011 1 2 12 ", + "26860 43616 540098 22384 2011 1 2 15 ", + "", + " Description Quantity InvoiceDate UnitPrice \\", + "26340 lunch bag red retrospot 10 2011-01-04 11:40:00 1.65 ", + "26341 lunch bag woodland 10 2011-01-04 11:40:00 1.65 ", + "26512 lunch bag spaceboy design 2 2011-01-04 12:58:00 1.65 ", + "26513 lunch bag woodland 1 2011-01-04 12:58:00 1.65 ", + "26860 lunch bag pink polkadot 1 2011-01-04 15:50:00 1.65 ", + "", + " CustomerID Country amount_spent ", + "26340 13319 United Kingdom 16.50 ", + "26341 13319 United Kingdom 16.50 ", + "26512 15039 United Kingdom 3.30 ", + "26513 15039 United Kingdom 1.65 ", "26860 16241 United Kingdom 1.65 " ] }, @@ -3606,9 +3563,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.loc[(orders['Description'].str.contains('lunch bag')) & (orders['year']==2011)].head()" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -3619,7 +3575,6 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { @@ -3631,24 +3586,23 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 126, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "15.00 20082\n", - "19.80 11033\n", - "17.70 9174\n", - "16.50 8490\n", - "10.20 8028\n", - " ... \n", - "176.28 1\n", - "61.95 1\n", - "17.73 1\n", - "308.89 1\n", - "77.50 1\n", + "15.00 20082", + "19.80 11033", + "17.70 9174", + "16.50 8490", + "10.20 8028", + " ... ", + "176.28 1", + "61.95 1", + "17.73 1", + "308.89 1", + "77.50 1", "Name: amount_spent, Length: 2811, dtype: int64" ] }, @@ -3658,9 +3612,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders['amount_spent'].value_counts()" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -3671,7 +3624,6 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { @@ -3683,157 +3635,156 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 127, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
1994752854215619042207520118186 ribbons elegant christmas962011-08-01 08:30:001.4517941United Kingdom139.20
19947628542256190485049E2011818scandinavian reds ribbons1562011-08-01 08:30:001.0617941United Kingdom165.36
199477285423561905213852011819ivory hanging decoration heart242011-08-01 09:31:000.8514947United Kingdom20.40
19947828542456190584970L2011819single heart zinc t-light holder122011-08-01 09:31:000.9514947United Kingdom11.40
19947928542556190584970S2011819hanging heart zinc t-light holder122011-08-01 09:31:000.8514947United Kingdom10.20
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
1994752854215619042207520118186 ribbons elegant christmas962011-08-01 08:30:001.4517941United Kingdom139.20
19947628542256190485049E2011818scandinavian reds ribbons1562011-08-01 08:30:001.0617941United Kingdom165.36
199477285423561905213852011819ivory hanging decoration heart242011-08-01 09:31:000.8514947United Kingdom20.40
19947828542456190584970L2011819single heart zinc t-light holder122011-08-01 09:31:000.9514947United Kingdom11.40
19947928542556190584970S2011819hanging heart zinc t-light holder122011-08-01 09:31:000.8514947United Kingdom10.20
", "
" ], "text/plain": [ - " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", - "199475 285421 561904 22075 2011 8 1 8 \n", - "199476 285422 561904 85049E 2011 8 1 8 \n", - "199477 285423 561905 21385 2011 8 1 9 \n", - "199478 285424 561905 84970L 2011 8 1 9 \n", - "199479 285425 561905 84970S 2011 8 1 9 \n", - "\n", - " Description Quantity InvoiceDate \\\n", - "199475 6 ribbons elegant christmas 96 2011-08-01 08:30:00 \n", - "199476 scandinavian reds ribbons 156 2011-08-01 08:30:00 \n", - "199477 ivory hanging decoration heart 24 2011-08-01 09:31:00 \n", - "199478 single heart zinc t-light holder 12 2011-08-01 09:31:00 \n", - "199479 hanging heart zinc t-light holder 12 2011-08-01 09:31:00 \n", - "\n", - " UnitPrice CustomerID Country amount_spent \n", - "199475 1.45 17941 United Kingdom 139.20 \n", - "199476 1.06 17941 United Kingdom 165.36 \n", - "199477 0.85 14947 United Kingdom 20.40 \n", - "199478 0.95 14947 United Kingdom 11.40 \n", + " Unnamed: 0 InvoiceNo StockCode year month day hour \\", + "199475 285421 561904 22075 2011 8 1 8 ", + "199476 285422 561904 85049E 2011 8 1 8 ", + "199477 285423 561905 21385 2011 8 1 9 ", + "199478 285424 561905 84970L 2011 8 1 9 ", + "199479 285425 561905 84970S 2011 8 1 9 ", + "", + " Description Quantity InvoiceDate \\", + "199475 6 ribbons elegant christmas 96 2011-08-01 08:30:00 ", + "199476 scandinavian reds ribbons 156 2011-08-01 08:30:00 ", + "199477 ivory hanging decoration heart 24 2011-08-01 09:31:00 ", + "199478 single heart zinc t-light holder 12 2011-08-01 09:31:00 ", + "199479 hanging heart zinc t-light holder 12 2011-08-01 09:31:00 ", + "", + " UnitPrice CustomerID Country amount_spent ", + "199475 1.45 17941 United Kingdom 139.20 ", + "199476 1.06 17941 United Kingdom 165.36 ", + "199477 0.85 14947 United Kingdom 20.40 ", + "199478 0.95 14947 United Kingdom 11.40 ", "199479 0.85 14947 United Kingdom 10.20 " ] }, @@ -3843,9 +3794,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.loc[(orders['month']==8)].head()" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -3856,14 +3806,13 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { "cell_type": "markdown", "metadata": {}, "source": [ - "#### Select how many orders are made by countries in the month of August\n", + "#### Select how many orders are made by countries in the month of August", "##### Hint: Use value_counts()" ] }, @@ -3876,29 +3825,29 @@ { "data": { "text/plain": [ - "United Kingdom 23105\n", - "Germany 795\n", - "EIRE 593\n", - "France 569\n", - "Netherlands 280\n", - "Switzerland 267\n", - "Spain 252\n", - "Belgium 194\n", - "Israel 171\n", - "Channel Islands 140\n", - "Australia 107\n", - "Italy 95\n", - "Austria 88\n", - "Norway 77\n", - "Finland 61\n", - "Malta 55\n", - "Portugal 41\n", - "Sweden 40\n", - "Unspecified 23\n", - "Iceland 22\n", - "Poland 17\n", - "Denmark 16\n", - "Canada 5\n", + "United Kingdom 23105", + "Germany 795", + "EIRE 593", + "France 569", + "Netherlands 280", + "Switzerland 267", + "Spain 252", + "Belgium 194", + "Israel 171", + "Channel Islands 140", + "Australia 107", + "Italy 95", + "Austria 88", + "Norway 77", + "Finland 61", + "Malta 55", + "Portugal 41", + "Sweden 40", + "Unspecified 23", + "Iceland 22", + "Poland 17", + "Denmark 16", + "Canada 5", "Name: Country, dtype: int64" ] }, @@ -3908,9 +3857,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.loc[(orders['month']==8)]['Country'].value_counts()" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -3921,7 +3869,6 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { @@ -3933,51 +3880,50 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 130, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "Country\n", - "Australia 116.895620\n", - "Austria 25.624824\n", - "Bahrain 32.258824\n", - "Belgium 20.283772\n", - "Brazil 35.737500\n", - "Canada 24.280662\n", - "Channel Islands 27.340160\n", - "Cyprus 22.134169\n", - "Czech Republic 33.069600\n", - "Denmark 49.882474\n", - "EIRE 36.687745\n", - "European Community 21.670833\n", - "Finland 32.913985\n", - "France 25.056827\n", - "Germany 25.311562\n", - "Greece 32.831172\n", - "Iceland 23.681319\n", - "Israel 29.119718\n", - "Italy 23.064960\n", - "Japan 116.561900\n", - "Lebanon 37.641778\n", - "Lithuania 47.458857\n", - "Malta 24.335625\n", - "Netherlands 120.798282\n", - "Norway 33.736418\n", - "Poland 22.226212\n", - "Portugal 22.872702\n", - "RSA 17.281207\n", - "Saudi Arabia 16.213333\n", - "Singapore 95.852658\n", - "Spain 24.779521\n", - "Sweden 85.096075\n", - "Switzerland 30.642752\n", - "USA 20.002179\n", - "United Arab Emirates 27.974706\n", - "United Kingdom 20.625073\n", - "Unspecified 10.930615\n", + "Country", + "Australia 116.895620", + "Austria 25.624824", + "Bahrain 32.258824", + "Belgium 20.283772", + "Brazil 35.737500", + "Canada 24.280662", + "Channel Islands 27.340160", + "Cyprus 22.134169", + "Czech Republic 33.069600", + "Denmark 49.882474", + "EIRE 36.687745", + "European Community 21.670833", + "Finland 32.913985", + "France 25.056827", + "Germany 25.311562", + "Greece 32.831172", + "Iceland 23.681319", + "Israel 29.119718", + "Italy 23.064960", + "Japan 116.561900", + "Lebanon 37.641778", + "Lithuania 47.458857", + "Malta 24.335625", + "Netherlands 120.798282", + "Norway 33.736418", + "Poland 22.226212", + "Portugal 22.872702", + "RSA 17.281207", + "Saudi Arabia 16.213333", + "Singapore 95.852658", + "Spain 24.779521", + "Sweden 85.096075", + "Switzerland 30.642752", + "USA 20.002179", + "United Arab Emirates 27.974706", + "United Kingdom 20.625073", + "Unspecified 10.930615", "Name: amount_spent, dtype: float64" ] }, @@ -3987,9 +3933,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.groupby('Country')['amount_spent'].mean()" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -4000,7 +3945,6 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { @@ -4012,77 +3956,76 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 134, "metadata": {}, "outputs": [ { "data": { "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
3974515404215814832384320111259paper craft , little birdie809952011-12-09 09:15:002.0816446United Kingdom168469.6
\n", + "
", + "", + "", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + " ", + "
Unnamed: 0InvoiceNoStockCodeyearmonthdayhourDescriptionQuantityInvoiceDateUnitPriceCustomerIDCountryamount_spent
3974515404215814832384320111259paper craft , little birdie809952011-12-09 09:15:002.0816446United Kingdom168469.6
", "
" ], "text/plain": [ - " Unnamed: 0 InvoiceNo StockCode year month day hour \\\n", - "397451 540421 581483 23843 2011 12 5 9 \n", - "\n", - " Description Quantity InvoiceDate UnitPrice \\\n", - "397451 paper craft , little birdie 80995 2011-12-09 09:15:00 2.08 \n", - "\n", - " CustomerID Country amount_spent \n", + " Unnamed: 0 InvoiceNo StockCode year month day hour \\", + "397451 540421 581483 23843 2011 12 5 9 ", + "", + " Description Quantity InvoiceDate UnitPrice \\", + "397451 paper craft , little birdie 80995 2011-12-09 09:15:00 2.08 ", + "", + " CustomerID Country amount_spent ", "397451 16446 United Kingdom 168469.6 " ] }, @@ -4092,9 +4035,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.loc[orders['amount_spent']==orders['amount_spent'].max()]" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -4105,7 +4047,6 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] }, { @@ -4117,16 +4058,15 @@ }, { "cell_type": "code", -<<<<<<< HEAD "execution_count": 135, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "year\n", - "2010 21.892733\n", - "2011 22.430074\n", + "year", + "2010 21.892733", + "2011 22.430074", "Name: amount_spent, dtype: float64" ] }, @@ -4136,9 +4076,8 @@ } ], "source": [ - "# your answer here\n", + "# your answer here", "orders.groupby('year')['amount_spent'].mean()" -======= "execution_count": null, "metadata": { "collapsed": true, @@ -4149,7 +4088,6 @@ "outputs": [], "source": [ "# your answer here" ->>>>>>> upstream/master ] } ], @@ -4170,12 +4108,8 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", -<<<<<<< HEAD "version": "3.7.4" -======= "version": "3.7.3" ->>>>>>> upstream/master - } }, "nbformat": 4, "nbformat_minor": 4 diff --git a/module-2_labs/lab-two-sample-hypothesis-tests/your-code/main.ipynb b/module-2_labs/lab-two-sample-hypothesis-tests/your-code/main.ipynb index 1812d57..f5a235f 100644 --- a/module-2_labs/lab-two-sample-hypothesis-tests/your-code/main.ipynb +++ b/module-2_labs/lab-two-sample-hypothesis-tests/your-code/main.ipynb @@ -17,7 +17,8 @@ "outputs": [], "source": [ "# import numpy and pandas\n", - "\n" + "import pandas as pd\n", + "import numpy as np\n" ] }, { @@ -33,7 +34,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ @@ -51,12 +52,154 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 3, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
#NameType 1Type 2TotalHPAttackDefenseSp. AtkSp. DefSpeedGenerationLegendary
01BulbasaurGrassPoison3184549496565451False
12IvysaurGrassPoison4056062638080601False
23VenusaurGrassPoison525808283100100801False
33VenusaurMega VenusaurGrassPoison62580100123122120801False
44CharmanderFireNaN3093952436050651False
\n", + "
" + ], + "text/plain": [ + " # Name Type 1 Type 2 Total HP Attack Defense \\\n", + "0 1 Bulbasaur Grass Poison 318 45 49 49 \n", + "1 2 Ivysaur Grass Poison 405 60 62 63 \n", + "2 3 Venusaur Grass Poison 525 80 82 83 \n", + "3 3 VenusaurMega Venusaur Grass Poison 625 80 100 123 \n", + "4 4 Charmander Fire NaN 309 39 52 43 \n", + "\n", + " Sp. Atk Sp. Def Speed Generation Legendary \n", + "0 65 65 45 1 False \n", + "1 80 80 60 1 False \n", + "2 100 100 80 1 False \n", + "3 122 120 80 1 False \n", + "4 60 50 65 1 False " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Your code here:\n", - "\n" + "pokemon.head()\n" ] }, { @@ -366,7 +509,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.3" + "version": "3.7.4" } }, "nbformat": 4, diff --git a/module-2_projects/statistical-analysis-project/your-code/Statistic Analysis.ipynb b/module-2_projects/statistical-analysis-project/your-code/Statistic Analysis.ipynb new file mode 100644 index 0000000..d1f5a2d --- /dev/null +++ b/module-2_projects/statistical-analysis-project/your-code/Statistic Analysis.ipynb @@ -0,0 +1,2160 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Statistical Analysis - House pricing\n", + "\n", + " - Goal: Find the most important factors contributing in Housing Sales Price and create model for prediction\n", + "\n", + "### Approach\n", + "1. Examine dataset and columns' interpretations\n", + "2. Data cleaning and Manipulations\n", + "3. Data Exploration\n", + "4. Modeling\n", + "5. Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import matplotlib.pyplot as plt\n", + "import seaborn as sns\n", + "import statsmodels.api as sm\n", + "import scipy.stats as stats\n", + "from sklearn.impute import SimpleImputer\n", + "\n", + "\n", + "\n", + "pd.set_option('display.max_rows',500)\n", + "pd.set_option('display.max_columns',500)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IdMSSubClassMSZoningLotFrontageLotAreaStreetAlleyLotShapeLandContourUtilitiesLotConfigLandSlopeNeighborhoodCondition1Condition2BldgTypeHouseStyleOverallQualOverallCondYearBuiltYearRemodAddRoofStyleRoofMatlExterior1stExterior2ndMasVnrTypeMasVnrAreaExterQualExterCondFoundationBsmtQualBsmtCondBsmtExposureBsmtFinType1BsmtFinSF1BsmtFinType2BsmtFinSF2BsmtUnfSFTotalBsmtSFHeatingHeatingQCCentralAirElectrical1stFlrSF2ndFlrSFLowQualFinSFGrLivAreaBsmtFullBathBsmtHalfBathFullBathHalfBathBedroomAbvGrKitchenAbvGrKitchenQualTotRmsAbvGrdFunctionalFireplacesFireplaceQuGarageTypeGarageYrBltGarageFinishGarageCarsGarageAreaGarageQualGarageCondPavedDriveWoodDeckSFOpenPorchSFEnclosedPorch3SsnPorchScreenPorchPoolAreaPoolQCFenceMiscFeatureMiscValMoSoldYrSoldSaleTypeSaleConditionSalePrice
0160RL65.08450PaveNaNRegLvlAllPubInsideGtlCollgCrNormNorm1Fam2Story7520032003GableCompShgVinylSdVinylSdBrkFace196.0GdTAPConcGdTANoGLQ706Unf0150856GasAExYSBrkr85685401710102131Gd8Typ0NaNAttchd2003.0RFn2548TATAY0610000NaNNaNNaN022008WDNormal208500
1220RL80.09600PaveNaNRegLvlAllPubFR2GtlVeenkerFeedrNorm1Fam1Story6819761976GableCompShgMetalSdMetalSdNone0.0TATACBlockGdTAGdALQ978Unf02841262GasAExYSBrkr1262001262012031TA6Typ1TAAttchd1976.0RFn2460TATAY29800000NaNNaNNaN052007WDNormal181500
2360RL68.011250PaveNaNIR1LvlAllPubInsideGtlCollgCrNormNorm1Fam2Story7520012002GableCompShgVinylSdVinylSdBrkFace162.0GdTAPConcGdTAMnGLQ486Unf0434920GasAExYSBrkr92086601786102131Gd6Typ1TAAttchd2001.0RFn2608TATAY0420000NaNNaNNaN092008WDNormal223500
3470RL60.09550PaveNaNIR1LvlAllPubCornerGtlCrawforNormNorm1Fam2Story7519151970GableCompShgWd SdngWd ShngNone0.0TATABrkTilTAGdNoALQ216Unf0540756GasAGdYSBrkr96175601717101031Gd7Typ1GdDetchd1998.0Unf3642TATAY035272000NaNNaNNaN022006WDAbnorml140000
4560RL84.014260PaveNaNIR1LvlAllPubFR2GtlNoRidgeNormNorm1Fam2Story8520002000GableCompShgVinylSdVinylSdBrkFace350.0GdTAPConcGdTAAvGLQ655Unf04901145GasAExYSBrkr1145105302198102141Gd9Typ1TAAttchd2000.0RFn3836TATAY192840000NaNNaNNaN0122008WDNormal250000
\n", + "
" + ], + "text/plain": [ + " Id MSSubClass MSZoning LotFrontage LotArea Street Alley LotShape \\\n", + "0 1 60 RL 65.0 8450 Pave NaN Reg \n", + "1 2 20 RL 80.0 9600 Pave NaN Reg \n", + "2 3 60 RL 68.0 11250 Pave NaN IR1 \n", + "3 4 70 RL 60.0 9550 Pave NaN IR1 \n", + "4 5 60 RL 84.0 14260 Pave NaN IR1 \n", + "\n", + " LandContour Utilities LotConfig LandSlope Neighborhood Condition1 \\\n", + "0 Lvl AllPub Inside Gtl CollgCr Norm \n", + "1 Lvl AllPub FR2 Gtl Veenker Feedr \n", + "2 Lvl AllPub Inside Gtl CollgCr Norm \n", + "3 Lvl AllPub Corner Gtl Crawfor Norm \n", + "4 Lvl AllPub FR2 Gtl NoRidge Norm \n", + "\n", + " Condition2 BldgType HouseStyle OverallQual OverallCond YearBuilt \\\n", + "0 Norm 1Fam 2Story 7 5 2003 \n", + "1 Norm 1Fam 1Story 6 8 1976 \n", + "2 Norm 1Fam 2Story 7 5 2001 \n", + "3 Norm 1Fam 2Story 7 5 1915 \n", + "4 Norm 1Fam 2Story 8 5 2000 \n", + "\n", + " YearRemodAdd RoofStyle RoofMatl Exterior1st Exterior2nd MasVnrType \\\n", + "0 2003 Gable CompShg VinylSd VinylSd BrkFace \n", + "1 1976 Gable CompShg MetalSd MetalSd None \n", + "2 2002 Gable CompShg VinylSd VinylSd BrkFace \n", + "3 1970 Gable CompShg Wd Sdng Wd Shng None \n", + "4 2000 Gable CompShg VinylSd VinylSd BrkFace \n", + "\n", + " MasVnrArea ExterQual ExterCond Foundation BsmtQual BsmtCond BsmtExposure \\\n", + "0 196.0 Gd TA PConc Gd TA No \n", + "1 0.0 TA TA CBlock Gd TA Gd \n", + "2 162.0 Gd TA PConc Gd TA Mn \n", + "3 0.0 TA TA BrkTil TA Gd No \n", + "4 350.0 Gd TA PConc Gd TA Av \n", + "\n", + " BsmtFinType1 BsmtFinSF1 BsmtFinType2 BsmtFinSF2 BsmtUnfSF TotalBsmtSF \\\n", + "0 GLQ 706 Unf 0 150 856 \n", + "1 ALQ 978 Unf 0 284 1262 \n", + "2 GLQ 486 Unf 0 434 920 \n", + "3 ALQ 216 Unf 0 540 756 \n", + "4 GLQ 655 Unf 0 490 1145 \n", + "\n", + " Heating HeatingQC CentralAir Electrical 1stFlrSF 2ndFlrSF LowQualFinSF \\\n", + "0 GasA Ex Y SBrkr 856 854 0 \n", + "1 GasA Ex Y SBrkr 1262 0 0 \n", + "2 GasA Ex Y SBrkr 920 866 0 \n", + "3 GasA Gd Y SBrkr 961 756 0 \n", + "4 GasA Ex Y SBrkr 1145 1053 0 \n", + "\n", + " GrLivArea BsmtFullBath BsmtHalfBath FullBath HalfBath BedroomAbvGr \\\n", + "0 1710 1 0 2 1 3 \n", + "1 1262 0 1 2 0 3 \n", + "2 1786 1 0 2 1 3 \n", + "3 1717 1 0 1 0 3 \n", + "4 2198 1 0 2 1 4 \n", + "\n", + " KitchenAbvGr KitchenQual TotRmsAbvGrd Functional Fireplaces FireplaceQu \\\n", + "0 1 Gd 8 Typ 0 NaN \n", + "1 1 TA 6 Typ 1 TA \n", + "2 1 Gd 6 Typ 1 TA \n", + "3 1 Gd 7 Typ 1 Gd \n", + "4 1 Gd 9 Typ 1 TA \n", + "\n", + " GarageType GarageYrBlt GarageFinish GarageCars GarageArea GarageQual \\\n", + "0 Attchd 2003.0 RFn 2 548 TA \n", + "1 Attchd 1976.0 RFn 2 460 TA \n", + "2 Attchd 2001.0 RFn 2 608 TA \n", + "3 Detchd 1998.0 Unf 3 642 TA \n", + "4 Attchd 2000.0 RFn 3 836 TA \n", + "\n", + " GarageCond PavedDrive WoodDeckSF OpenPorchSF EnclosedPorch 3SsnPorch \\\n", + "0 TA Y 0 61 0 0 \n", + "1 TA Y 298 0 0 0 \n", + "2 TA Y 0 42 0 0 \n", + "3 TA Y 0 35 272 0 \n", + "4 TA Y 192 84 0 0 \n", + "\n", + " ScreenPorch PoolArea PoolQC Fence MiscFeature MiscVal MoSold YrSold \\\n", + "0 0 0 NaN NaN NaN 0 2 2008 \n", + "1 0 0 NaN NaN NaN 0 5 2007 \n", + "2 0 0 NaN NaN NaN 0 9 2008 \n", + "3 0 0 NaN NaN NaN 0 2 2006 \n", + "4 0 0 NaN NaN NaN 0 12 2008 \n", + "\n", + " SaleType SaleCondition SalePrice \n", + "0 WD Normal 208500 \n", + "1 WD Normal 181500 \n", + "2 WD Normal 223500 \n", + "3 WD Abnorml 140000 \n", + "4 WD Normal 250000 " + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv('train.csv')\n", + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 1. Explore data frame and examine columns" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(1460, 81)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Dataframe dimention: 1460 records with 81 columns including dependent variables 'SalePrice'\n", + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "object 43\n", + "int64 35\n", + "float64 3\n", + "dtype: int64" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Half of the columns seem to be categorical data. \n", + "df.dtypes.value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IdMSSubClassLotFrontageLotAreaOverallQualOverallCondYearBuiltYearRemodAddMasVnrAreaBsmtFinSF1BsmtFinSF2BsmtUnfSFTotalBsmtSF1stFlrSF2ndFlrSFLowQualFinSFGrLivAreaBsmtFullBathBsmtHalfBathFullBathHalfBathBedroomAbvGrKitchenAbvGrTotRmsAbvGrdFireplacesGarageYrBltGarageCarsGarageAreaWoodDeckSFOpenPorchSFEnclosedPorch3SsnPorchScreenPorchPoolAreaMiscValMoSoldYrSoldSalePrice
count1460.0000001460.0000001201.0000001460.0000001460.0000001460.0000001460.0000001460.0000001452.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001379.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.0000001460.000000
mean730.50000056.89726070.04995810516.8280826.0993155.5753421971.2678081984.865753103.685262443.63972646.549315567.2404111057.4294521162.626712346.9924665.8445211515.4636990.4253420.0575341.5650680.3828772.8664381.0465756.5178080.6130141978.5061641.767123472.98013794.24452146.66027421.9541103.40958915.0609592.75890443.4890416.3219182007.815753180921.195890
std421.61000942.30057124.2847529981.2649321.3829971.11279930.20290420.645407181.066207456.098091161.319273441.866955438.705324386.587738436.52843648.623081525.4803830.5189110.2387530.5509160.5028850.8157780.2203381.6253930.64466624.6897250.747315213.804841125.33879466.25602861.11914929.31733155.75741540.177307496.1230242.7036261.32809579442.502883
min1.00000020.00000021.0000001300.0000001.0000001.0000001872.0000001950.0000000.0000000.0000000.0000000.0000000.000000334.0000000.0000000.000000334.0000000.0000000.0000000.0000000.0000000.0000000.0000002.0000000.0000001900.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000000.0000001.0000002006.00000034900.000000
25%365.75000020.00000059.0000007553.5000005.0000005.0000001954.0000001967.0000000.0000000.0000000.000000223.000000795.750000882.0000000.0000000.0000001129.5000000.0000000.0000001.0000000.0000002.0000001.0000005.0000000.0000001961.0000001.000000334.5000000.0000000.0000000.0000000.0000000.0000000.0000000.0000005.0000002007.000000129975.000000
50%730.50000050.00000069.0000009478.5000006.0000005.0000001973.0000001994.0000000.000000383.5000000.000000477.500000991.5000001087.0000000.0000000.0000001464.0000000.0000000.0000002.0000000.0000003.0000001.0000006.0000001.0000001980.0000002.000000480.0000000.00000025.0000000.0000000.0000000.0000000.0000000.0000006.0000002008.000000163000.000000
75%1095.25000070.00000080.00000011601.5000007.0000006.0000002000.0000002004.000000166.000000712.2500000.000000808.0000001298.2500001391.250000728.0000000.0000001776.7500001.0000000.0000002.0000001.0000003.0000001.0000007.0000001.0000002002.0000002.000000576.000000168.00000068.0000000.0000000.0000000.0000000.0000000.0000008.0000002009.000000214000.000000
max1460.000000190.000000313.000000215245.00000010.0000009.0000002010.0000002010.0000001600.0000005644.0000001474.0000002336.0000006110.0000004692.0000002065.000000572.0000005642.0000003.0000002.0000003.0000002.0000008.0000003.00000014.0000003.0000002010.0000004.0000001418.000000857.000000547.000000552.000000508.000000480.000000738.00000015500.00000012.0000002010.000000755000.000000
\n", + "
" + ], + "text/plain": [ + " Id MSSubClass LotFrontage LotArea OverallQual \\\n", + "count 1460.000000 1460.000000 1201.000000 1460.000000 1460.000000 \n", + "mean 730.500000 56.897260 70.049958 10516.828082 6.099315 \n", + "std 421.610009 42.300571 24.284752 9981.264932 1.382997 \n", + "min 1.000000 20.000000 21.000000 1300.000000 1.000000 \n", + "25% 365.750000 20.000000 59.000000 7553.500000 5.000000 \n", + "50% 730.500000 50.000000 69.000000 9478.500000 6.000000 \n", + "75% 1095.250000 70.000000 80.000000 11601.500000 7.000000 \n", + "max 1460.000000 190.000000 313.000000 215245.000000 10.000000 \n", + "\n", + " OverallCond YearBuilt YearRemodAdd MasVnrArea BsmtFinSF1 \\\n", + "count 1460.000000 1460.000000 1460.000000 1452.000000 1460.000000 \n", + "mean 5.575342 1971.267808 1984.865753 103.685262 443.639726 \n", + "std 1.112799 30.202904 20.645407 181.066207 456.098091 \n", + "min 1.000000 1872.000000 1950.000000 0.000000 0.000000 \n", + "25% 5.000000 1954.000000 1967.000000 0.000000 0.000000 \n", + "50% 5.000000 1973.000000 1994.000000 0.000000 383.500000 \n", + "75% 6.000000 2000.000000 2004.000000 166.000000 712.250000 \n", + "max 9.000000 2010.000000 2010.000000 1600.000000 5644.000000 \n", + "\n", + " BsmtFinSF2 BsmtUnfSF TotalBsmtSF 1stFlrSF 2ndFlrSF \\\n", + "count 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 \n", + "mean 46.549315 567.240411 1057.429452 1162.626712 346.992466 \n", + "std 161.319273 441.866955 438.705324 386.587738 436.528436 \n", + "min 0.000000 0.000000 0.000000 334.000000 0.000000 \n", + "25% 0.000000 223.000000 795.750000 882.000000 0.000000 \n", + "50% 0.000000 477.500000 991.500000 1087.000000 0.000000 \n", + "75% 0.000000 808.000000 1298.250000 1391.250000 728.000000 \n", + "max 1474.000000 2336.000000 6110.000000 4692.000000 2065.000000 \n", + "\n", + " LowQualFinSF GrLivArea BsmtFullBath BsmtHalfBath FullBath \\\n", + "count 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 \n", + "mean 5.844521 1515.463699 0.425342 0.057534 1.565068 \n", + "std 48.623081 525.480383 0.518911 0.238753 0.550916 \n", + "min 0.000000 334.000000 0.000000 0.000000 0.000000 \n", + "25% 0.000000 1129.500000 0.000000 0.000000 1.000000 \n", + "50% 0.000000 1464.000000 0.000000 0.000000 2.000000 \n", + "75% 0.000000 1776.750000 1.000000 0.000000 2.000000 \n", + "max 572.000000 5642.000000 3.000000 2.000000 3.000000 \n", + "\n", + " HalfBath BedroomAbvGr KitchenAbvGr TotRmsAbvGrd Fireplaces \\\n", + "count 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 \n", + "mean 0.382877 2.866438 1.046575 6.517808 0.613014 \n", + "std 0.502885 0.815778 0.220338 1.625393 0.644666 \n", + "min 0.000000 0.000000 0.000000 2.000000 0.000000 \n", + "25% 0.000000 2.000000 1.000000 5.000000 0.000000 \n", + "50% 0.000000 3.000000 1.000000 6.000000 1.000000 \n", + "75% 1.000000 3.000000 1.000000 7.000000 1.000000 \n", + "max 2.000000 8.000000 3.000000 14.000000 3.000000 \n", + "\n", + " GarageYrBlt GarageCars GarageArea WoodDeckSF OpenPorchSF \\\n", + "count 1379.000000 1460.000000 1460.000000 1460.000000 1460.000000 \n", + "mean 1978.506164 1.767123 472.980137 94.244521 46.660274 \n", + "std 24.689725 0.747315 213.804841 125.338794 66.256028 \n", + "min 1900.000000 0.000000 0.000000 0.000000 0.000000 \n", + "25% 1961.000000 1.000000 334.500000 0.000000 0.000000 \n", + "50% 1980.000000 2.000000 480.000000 0.000000 25.000000 \n", + "75% 2002.000000 2.000000 576.000000 168.000000 68.000000 \n", + "max 2010.000000 4.000000 1418.000000 857.000000 547.000000 \n", + "\n", + " EnclosedPorch 3SsnPorch ScreenPorch PoolArea MiscVal \\\n", + "count 1460.000000 1460.000000 1460.000000 1460.000000 1460.000000 \n", + "mean 21.954110 3.409589 15.060959 2.758904 43.489041 \n", + "std 61.119149 29.317331 55.757415 40.177307 496.123024 \n", + "min 0.000000 0.000000 0.000000 0.000000 0.000000 \n", + "25% 0.000000 0.000000 0.000000 0.000000 0.000000 \n", + "50% 0.000000 0.000000 0.000000 0.000000 0.000000 \n", + "75% 0.000000 0.000000 0.000000 0.000000 0.000000 \n", + "max 552.000000 508.000000 480.000000 738.000000 15500.000000 \n", + "\n", + " MoSold YrSold SalePrice \n", + "count 1460.000000 1460.000000 1460.000000 \n", + "mean 6.321918 2007.815753 180921.195890 \n", + "std 2.703626 1.328095 79442.502883 \n", + "min 1.000000 2006.000000 34900.000000 \n", + "25% 5.000000 2007.000000 129975.000000 \n", + "50% 6.000000 2008.000000 163000.000000 \n", + "75% 8.000000 2009.000000 214000.000000 \n", + "max 12.000000 2010.000000 755000.000000 " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYwAAAK7CAYAAADhrrjCAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzdeXxU1dnA8d+TnZ0EwpYQJuyrIIQdFUEBba22briBYKVSu2m1lb5trfq21qWl+raKG4uouCBVtCLiSoWwy74GCSQQSCABEiBkO+8f90SHmGUSJrmZyfP9fO6HO+fec+eZO2GeufecOUeMMSillFJVCXE7AKWUUoFBE4ZSSimfaMJQSinlE00YSimlfKIJQymllE80YSillPKJJgylvIjISBHZIyJ5InKNn4+dKiKX+fOYXsfOE5HOtXFspUppwlC1yn5IFohI6zLlG0XEiIjHncgq9DDwT2NMU2PMO2U3isgoEVkpIidEJFtEVojIYH8GICIee27y7JIqIg9UVsfG+7UfnjtCRI6KSNPzPZYKPpowVF3YB9xU+kBE+gGN3AunUp2AbeVtEJHmwPvA/wExQBzwEHC2lmJpaYxpinPu/igiE8qJKczPz3kxsNEYk+fn45ZLHPo5FCD0jVJ1YT4wyevxZOBl7x1EJFJEnhSRAyJyRERmiUgjuy1aRN4XkSwRybHr8V51PxeRR+y3/VwR+ajsFU2Z57pTRFLsFcJiEelgy/cCnYH37Df7yDJVuwMYYxYYY4qNMWeMMR8ZYzbb+l1E5FMROWa/pb8qIi0riCFERB4Qkb12/zdFJKa8fY0xyThJrK+ta0TkbhHZA+zxKutq1xuJyN9EZL+9EvrS61wOs1dIx0Vkk4iMLvN0VwIfiMj1IrK+TMy/FpF3/PR+/VlEVgCn7TlXAUAThqoLq4DmItJLREKBG4FXyuzzGM4H8gCgK8639z/abSHAHJxv/wnAGeCfZerfDEwB2gARwH3lBSIiY4BHgRuA9sB+4HUAY0wX4ABwlb3FU/bKYTdQLCLzROQKEYkue3h77A5AL6Aj8KfyTwm/AK4BLrH75wD/KideEZGRQB/gK69N1wBDgd7lHPtJYBAwAudK6DdAiYjEAf8B/teW3we8LSKxXnWvtPssBhJFpJfXtltxkj+c//t1GzANaIbzHqhAYIzRRZdaW4BU4DLg9zgfphOAZUAYYAAPzgftKaCLV73hwL4KjjkAyPF6/Dnwe6/HPwU+rKDuS8DjXo+bAoWAxzveSl5PL2AukA4U4Xywtq1g32uAr8qeC7u+Axjrta29jSPMnhMDHMdJJDuAX3jta4AxZZ7L4Hxwh+B8QPcvJ57fAvPLlC0FJtv1zsBer23PAn+2631sLJF+er8edvtvU5fqL/6+/6lUReYDy4FEytyOAmKBxsB6ESktEyAUQEQaAzNxkk3pt/pmIhJqjCm2jw97He80TiIoTwdgQ+kDY0yeiBzD+YacWtWLMMbsAG63cfXEuVL6B3CTiLQBngYuwvnmHILzIVueTsC/RaTEq6wYaOv1uLUxpqiC+mkVlLcGooC9FTzn9SJylVdZOPCZXf8e8IHXtnnAAhH5Pc4VwZvGmLP2dZ7v+1VR/Koe01tSqk4YY/bjNH5fCSwqs/kozrfiPsaYlnZpYZwGX4BfAz2AocaY5jgNs+B8SFXXIZwPTucAIk2AVsDB6h7IGLMT52qjry16FOeb/gU2zlsriTENuMLr9bY0xkQZY3yNo6Jhpo8C+UCXCp5zfpnnbGKM+avdXno7qvT1rQIKcBLgzXx7O8of75cOkx2ANGGounQHzq2UU96FxpgS4AVgpv32iojEich4u0sznA+o47Zh+MHziOE1YIqIDLCN2n8BVhtjUquqKCI9bcNvvH3cEacH0yqvOPNsnHHA/ZUcbhbwZxHpZI8VKyJX1/RFlbLncjbwdxHpICKhIjLcvtZXgKtEZLwtjxKR0SISbxush+DcLvL2Mk77Q5Ex5kuv56ir90vVI5owVJ0xxuw1xqyrYPNvgRRglYicBD7G+ZYKzi2fRjjfbFcBH55HDJ8AfwDeBjJwvolP9LF6Lk5D82oROWVj2YrzjRqcLrYDgRM439TLXkl5ewqn/eMjEcm1xxparRdTsfuALcBaIBungTrEGJMGXA38DsjCueK4H+dzYCyQbIzJL3Os+ThXUPPLlNfJ+6XqFzFGrwyVauhE5BlgqzHmmTLljYBMYKAxZo8rwal6Qxu9lVIAG4H3yimfDqzVZKFArzCUUhUQkVSchuprjDFfVbG7agA0YSillPKJNnorpZTySdC1YbRu3dp4PB63w1BKqYCyfv36o8aY2Mr2CbqE4fF4WLeuop6bSimlyiMiVY7ppbeklFJK+UQThlJKKZ9owlBKKeUTTRhKKaV8oglDKaWUT6pMGCIyW0QyRWSrV9kAEVklIhtFZJ2IDPHadoGIJIvINhHZIiJRtnyQfZwiIk+LHUjfTvX4hi1fLSIer2NNFpE9dpnszxeulFKqeny5wpiLMxGKt8eBh4wxA3CmZXwcvpmQ/hXgLmNMH2A0zixi4MzeNQ3oZpfSY96BMxtXV5xJVx6zxyodFnkozrDLD5YzJaZySUmJ4bXVB0jLPu12KEqpOlJlwjDGLMcZIvmcYqC5XW+BMykNwDhgszFmk617zBhTLCLtgebGmGTjjEXyMs70leAMtzzPri8Extqrj/HAMmNMtjEmB2daz7KJS7mgoKiEX76xkd/9ewsPLt7mdjhKqTpS0x/u/QpYKiJP4iSdEba8O2BEZCnOtJuvG2Mex5n+Mt2rfrotw/6bBmCMKRKREzgzoH1TXk6dc4jINJyrFxISEmr4kpQvzhQUM/3V9Xy+K4v+8S34dGcmX2fl0Tm2ohlRlVLBoqaN3tOBe4wxHYF7gJdseRgwCrjF/vtDERlL+dNUlo56WNG2yuqcW2jM88aYJGNMUmxspb9sV+fhxOlCbn1pNct3Z/HXH/XjxcmDiQgNYe7KVLdDU0rVgZomjMl8O5vYWzhtDOBcBXxhjDlqjDmNM6H8QFse71U/nm9vY6UDHeGbNpAWOLfAvikvp46qY5kn87nx+WS2pJ/gXzcPZOKQBGKbRXJV/w4sXJ/OiTOFVR9EKRXQapowDgGX2PUxQOnkKkuBC0Sksf3wvwTYbozJAHJFZJhtn5gEvGvrLMZJQADXAZ/ado6lwDgRibaN3eNsmapjB46d5rpZyRzIPs3s2wdzRb/232ybMtLD6YJi3lybVskRlFLBoMo2DBFZgNPbqbWIpOP0XLoTeMomhXxs+4ExJkdE/o4zl7ABPjDG/MceajpOj6tGwBK7gHM7a76IpOBcWUy0x8oWkUfssQAeNsaUbXxXtWzn4ZNMemkNBcUlvHbnMAZ0bHnO9r5xLRiaGMPclalMGekhLFR/2qNUsAq6CZSSkpKMjlbrH+v35zBlzhoaR4Qx/44hdGvbrNz9Ptx6mLteWc+ztww85+pDKRU4RGS9MSapsn3066Aq1xe7s7j1xdW0ahrJW3cNrzBZAFzeuy3x0Y2YsyK17gJUStU5TRjqO97bdIgfz1tLYusmvPmT4XSMaVzp/qEhwu0jPKxJzWZL+ok6ilIpVdc0YahzvLJqP794/Ssu7BjN6z8ZRmyzSJ/q3TC4I00iQpmzYl8tR6iUcosmDAWAMYZ/fZbC79/ZypgebXj5jiE0jwr3uX7zqHCuT+rIe5sPkZmbX4uRKqXcoglDUVJi+PN/dvDE0l388MI4Zt02iKjw0GofZ/IID0UlhldWHaiFKJVSbtOE0cAVFZdw/8LNvPjlPm4f4eFv1/cnvIZdYxNbN2FMjza8umo/+YXFfo5UKeU2TRgNWH5hMdNf3cDbG9K59/LuPHhVb0JCyhuRxXdTRyVy7FQB723SH+UrFWw0YTRQufmF3D5nDcu2H+Hhq/vwi7HdsFOUnJcRXVrRo20zZq9IJdh+46NUQ6cJowE6lneWm19YzbrUHJ6aOIBJwz1+O7aIMGWkhx0ZJ1n1tf4wX6lgogmjgTl4/AzXP5fM7iO5vDApiasHlDti/Hm55sI4ohuHaxdbpYKMJowGJCUzj+ueXUlW7lle+fFQLu3ZplaeJyo8lFuGdmLZjiMcOKYz8ikVLDRhNBCb049zw3PJFBYb3pg2nMGemFp9vtuGdyJUROfKUCqIaMJoAFbuPcpNz6+icUQoC+8aTu8OzauudJ7aNo/iexe05811aeTm61wZSgUDTRhBbum2w9w+ey1x0Y14e/oIPK2b1NlzTxmZSN7ZIhauT696Z6VUvacJI4i9uS6N6a+sp09cc978yXDaNo+q0+cf0LElgzpFM3dlKsUl2sVWqUCnCSNIvfjfr/nNws2M7NqaV+4YSsvGEa7EMWWkh/3HTvPpzkxXnl8p5T+aMIKMMYYnlu7kf/+zg+/1a8+Lk5NoElnlxIq1ZkKfdnRoEaVdbJUKApowgkhxieF/3tnKvz7by01DEnj6pguJDKv+IIL+FBYawqQRHlbuPcaOjJOuxqKUOj+aMIJEQVEJv3j9K15bfYCfju7CX37Yl9DzHBfKXyYO7khUeIheZSgV4DRhBIHTBUXcMW8t/9mcwf9c2YvfTOjpl3Gh/KVl4wiuHRjPOxsPcSzvrNvhKKVqSBNGgDt+uoBbXlzNipSjPH7dBdx5cWe3QyrXlJEeCopKeG21zpWhVKDShBHAjpzM58bnVrHt4EmeuWUQNyR1dDukCnVt04yLu8fy8qr9FBSVuB2OUqoGNGEEqNSjp7hu1krSc04zd8pgJvRt53ZIVZo60kNW7lk+2JLhdihKqRrQhBGAth86yXWzksnLL+K1O4cxomtrt0PyycXdYukS24TZK/bpXBlKBSBNGAFmXWo2Nz6fTHio8NZdw+nfsaXbIfksJES4fWQim9NPsH5/jtvhKKWqSRNGAPlsZya3vrSa2KaRLJw+gq5tmrkdUrVdOzCO5lFhzFmR6nYoSqlq0oQRIN7deJA7X15H1zZNefOu4cS1bOR2SDXSOCKMm4YmsGRrBuk5OleGUoFEE0YAmJ+cyq/e2MigTtEsuHMYrZtGuh3SeZk03IOIMD95v9uhKKWqQRNGPWaM4amP9/CHd7cxtmdb5k0dQrOocLfDOm9xLRsxoU87Fqw5wOmCIrfDUUr5SBNGPVVSYnjove3M/Hg31w6MZ9atA4kKd3dcKH+aOsrDyfwi3t5w0O1QlFI+0oRRDxUWl3DfW5uYuzKVqSMTeeK6CwgLDa63amBCNP3jWzBnxT5KdK4MpQJClZ9CIjJbRDJFZKtX2QARWSUiG0VknYgMKVMnQUTyROQ+r7JBIrJFRFJE5Gmxgx2JSKSIvGHLV4uIx6vOZBHZY5fJ/njB9V1+YTHTX1nPoq8Oct+47vzh+70IqSeDCPqTiDBlZCJfZ53iiz1ZboejlPKBL19b5wITypQ9DjxkjBkA/NE+9jYTWFKm7FlgGtDNLqXHvAPIMcZ0tfUeAxCRGOBBYCgwBHhQRKJ9iDdgncwvZNLsNXyyM5NHrunLz8Z0q1eDCPrblf3a06ZZpHaxVSpAVJkwjDHLgeyyxUBzu94COFS6QUSuAb4GtnmVtQeaG2OSjfMT35eBa+zmq4F5dn0hMNZefYwHlhljso0xOcAyvpu4gsbRvLPc9PwqNuzP4amJF3LbsE5uh1TrIsJCmDS8E8t3Z7HnSK7b4SilqlDTG+O/Ap4QkTTgSWAGgIg0AX4LPFRm/zgg3etxui0r3ZYGYIwpAk4ArbzLy6kTVNJzTnP9rGT2ZuXx4uQkftC/g9sh1ZmbhiQQERbCnJWpboeilKpCTRPGdOAeY0xH4B7gJVv+EDDTGJNXZv/y7quYKrZVVufcg4tMs20p67KyAut++J4juVz3bDLH8s7y6o+HMrpHG7dDqlOtmkbywwFxLNqQzvHTBW6Ho5SqRE0TxmRgkV1/C6eNAZz2hsdFJBXnKuR3IvIznKuDeK/68Xx7Gysd6AggImE4t7iyvcvLqXMOY8zzxpgkY0xSbGxsDV9S3duYdpzrn0um2Bje+MlwBnWKcTskV0wZ5SG/sIQFa9Kq3lkp5ZqaJoxDwCV2fQywB8AYc5ExxmOM8QD/AP5ijPmnMSYDyBWRYbZ9YhLwrq2/GCcBAVwHfGrbOZYC40Qk2jZ2j7NlQeHLPUe5+YVVNI8KZ+Fdw+nVvnnVlYJUz3bNGdGlFS8np1JYrHNlKFVf+dKtdgGQDPQQkXQRuQO4E/ibiGwC/oLT+6kq04EXgRRgL9/2onoJaCUiKcC9wAMAxphs4BFgrV0etmUB78OtGUydu5aEmMYsvGs4nVo1cTsk100dmUjGiXyWbjvsdihKqQpIsM1LkJSUZNatW+d2GBV6Y+0BZizawoCOLZlz+xBaNA78oT78oaTEcOnfPqdVkwgW/XSk2+Eo1eCIyHpjTFJl+wTXz4fruee+2Mtv397CRd1ieeXHQzVZeAkJEW4f4WHDgeNsTDvudjhKqXJowqgDxhgeXbKDR5fs5PsXtOeFSUk0jghzO6x65/qkjjSLDGPOin1uh6KUKocmjFpWXGKYsWgLz33xNbcMTeCpiRcSEaanvTxNI8O4YXBH/rM5g8Mn8t0ORylVhn5y1aKzRcX87LUNvL42jZ+P6cr/XtOX0CAcF8qfJg/3UGwM81eluh2KUqoMTRi15NTZIu6Yu44lWw/zh+/35tfjegT1uFD+ktCqMZf3astrqw+QX1jsdjhKKS+aMGpBzqkCbn5xNclfH+PJ6/tzx6hEt0MKKFNHJZJzupB3vtK5MpSqTzRh+NnhE/nc8FwyOzJOMuvWQVw3KL7qSuocQxNj6N2+ObNX7CPYun0rFcg0YfjRvqOnuPbZlWScyGfelCFc3rut2yEFJGeuDA+7j+Sxcu8xt8NRSlmaMPxk68ETXD9rJWcKi1lw5zCGd2nldkgB7ar+HWjdNILZX2oXW6XqC00YfrD662Pc9PwqIkJDeOuu4fSLb+F2SAEvKjyUW4Z24pOdmew7esrtcJRSaMI4b5/sOMKk2Wto0zyShdNH0CW2qdshBY1bhiUQHirM1R/yKVUvaMI4D//+Kp1p89fTo10z3rprBB1aNnI7pKDSplkUV/XvwFvr0zlxptDtcJRq8DRh1NCcFfu4541NDPHE8Nqdw4hpEuF2SEFp6shEThcU89Y6nStDKbdpwqgmYwwzl+3mofe2M653W+ZMGUzTSB0Xqrb0jWvBEE8Mc1emUlyiXWyVcpMmjGooKTH8afE2nvpkD9cPiueZWwYSFR7qdlhBb+ooD+k5Z1i2/YjboSjVoGnC8FFhcQn3vLmRecn7ufOiRB6/7gLCQvX01YXLe7cjProRs7XxWylX6SeeD84UFDPt5XW8u/EQv5nQg99d2UvHhapDoSHC5OEe1uzLZuvBE26Ho1SDpQmjCifOFDJp9mo+353FX37Yj5+O7qrJwgU3DO5I44hQ5qxIdTsUpRosTRiVyMzNZ+Lzq9iYdpz/u+lCbh6a4HZIDVaLRuFcPyie9zYdIjNX58pQyg2aMCqQln2a62clk3r0FC9OHsz3L+jgdkgN3uQRHgqKS3h11QG3Q1GqQdKEUY5dh3O59tmVHD9dyKt3DuWS7rFuh6SAzrFNGdOzDa+u3s/ZIp0rQ6m6pgmjjA0HcrjhuWQA3vzJcAYmRLsckfI2dWQiR/MKeG9ThtuhKNXgaMLwsnx3Fre8sJqWjcN5e/oIerRr5nZIqoyRXVvRvW1TZn+pc2UoVdc0YVgpmXncMW8tnVo15q27htMxprHbIalyOHNlJLI94yRr9mW7HY5SDYomDKtLbBMevKoPb/xkOG2aRbkdjqrEDy+MI7pxuP6QT6k6pgnDEhFuHdaJFo3C3Q5FVSEqPJSbhybw0fYjHDh22u1wlGowNGGogHTbMA+hIsxLTnU7FKUaDE0YKiC1axHFlf3a8+baNPLOFrkdjlINgiYMFbCmjkok92wRC3WuDKXqhCYMFbAGdGzJhQktmbsylRKdK0OpWqcJQwW0qSMTST12ms92ZbodilJBr8qEISKzRSRTRLZ6lQ0QkVUislFE1onIEFt+uYisF5Et9t8xXnUG2fIUEXla7JCvIhIpIm/Y8tUi4vGqM1lE9thlsj9fuAoOE/q2o32LKO1iq1Qd8OUKYy4woUzZ48BDxpgBwB/tY4CjwFXGmH7AZGC+V51ngWlAN7uUHvMOIMcY0xWYCTwGICIxwIPAUGAI8KCI6Dgd6hzhoSHcNrwTK1KOsfPwSbfDUSqoVZkwjDHLgbI/qTVAc7veAjhk9/3KGHPIlm8DouwVRHuguTEm2TjjObwMXGP3uxqYZ9cXAmPt1cd4YJkxJtsYkwMs47uJSyluGpxAVHgIc3WuDKVqVU3bMH4FPCEiacCTwIxy9rkW+MoYcxaIA9K9tqXbMuy/aQDGmCLgBNDKu7ycOkp9I7pJBD8aGM+irw5yLO+s2+EoFbRqmjCmA/cYYzoC9wAveW8UkT44t5Z+UlpUzjFMFdsqq3MOEZlm21LWZWVl+RC+CjZTRngoKCphwRqdK0Op2lLThDEZWGTX38JpYwBAROKBfwOTjDF7bXE6EO9VPx57G8tu62jrhuHc4sr2Li+nzjmMMc8bY5KMMUmxsTp3RUPUrW0zLurWmvmr9lNQVOJ2OEoFpZomjEPAJXZ9DLAHQERaAv8BZhhjVpTubIzJAHJFZJhtn5gEvGs3L8ZJQADXAZ/ado6lwDgRibaN3eNsmVLlmjoqkSMnz7Jkq86VoVRt8KVb7QIgGeghIukicgdwJ/A3EdkE/AWn9xPAz4CuwB9sl9uNItLGbpsOvAikAHuBJbb8JaCViKQA9wIPABhjsoFHgLV2ediWKVWuS7rF0jm2ic6VoVQtkWD7j5WUlGTWrVvndhjKJfOTU/nDu9t4e/oIBnXSXthK+UpE1htjkirbR3/prYLKjwbG0zwqTH/Ip1Qt0IShgkqTyDBuGpLAh1sPc/D4GbfDUSqoaMJQQee24Z0wxvBycqrboSgVVDRhqKATH92YCX3b8fqaNE4X6FwZSvmLJgwVlKaOTOTEmUIWbTjodihKBQ1NGCooDeoUTb+4FsxZsU/nylDKTzRhqKAkIkwd5WFv1in+m3LU7XCUCgqaMFTQ+l6/DsQ2i2T2l9rFVil/0IShglZEWAi3DevEF7uzSMnMczscpQKeJgwV1G4emkBEWAhzV+pVhlLnSxOGCmqtm0ZyzYAOvL3+IMdPF7gdjlIBTROGCnpTRiZyprCY19emVb2zUqpCmjBU0OvVvjnDO7fi5ZWpFBXrXBlK1ZQmDNUgTB2VyKET+SzddsTtUJQKWJowVIMwpmcbOrVqrKPYKnUeNGGoBiE0RJg83MP6/TlsSjvudjhKBSRNGKrBuD4pnqaRYczRqwylakQThmowmkWFc0NSR97fnMGRk/luh6NUwNGEoRqU20d4KDaG+cn73Q5FqYCjCUM1KAmtGnNZr7a8tuYA+YXFboejVEDRhKEanKkjE8k+VcC7G3WuDKWqQxOGanCGdY6hZ7tmzP4yFWN0rgylfKUJQzU4zlwZiew6kkvy3mNuh6NUwNCEoRqkH/TvQKsmEfpDPqWqQROGapCiwkO5ZWgCn+zMJPXoKbfDUSogaMJQDdatwzoRFiLMXZnqdihKBQRNGKrBatM8iqsu6MBb69I4mV/odjhK1XuaMFSDNmVkIqcKinlT58pQqkqaMFSD1i++BYM90cxLTqW4RLvYKlUZTRiqwZs6MpG07DN8vEPnylCqMpowVIN3ee+2xLVsxOwvtYutUpWpMmGIyGwRyRSRrV5lA0RklYhsFJF1IjLEa9sMEUkRkV0iMt6rfJCIbLHbnhYRseWRIvKGLV8tIh6vOpNFZI9dJvvrRSvlLSw0hMkjOrF6XzbbDp1wOxyl6i1frjDmAhPKlD0OPGSMGQD80T5GRHoDE4E+ts4zIhJq6zwLTAO62aX0mHcAOcaYrsBM4DF7rBjgQWAoMAR4UESiq/8SlarajUkJNI4IZc6KVLdDUareqjJhGGOWA9lli4Hmdr0FcMiuXw28bow5a4zZB6QAQ0SkPdDcGJNsnMF7Xgau8aozz64vBMbaq4/xwDJjTLYxJgdYxncTl1J+0aJxONcNimfxxkNk5Z51Oxyl6qWatmH8CnhCRNKAJ4EZtjwO8O6fmG7L4ux62fJz6hhjioATQKtKjqVUrZg8wkNBcQmvrta5MpQqT00TxnTgHmNMR+Ae4CVbLuXsayopr2mdc4jINNuWsi4rK6vSwJWqSJfYplzaI5ZXVh3gbJHOlaFUWTVNGJOBRXb9LZw2BnCuAjp67RePc7sq3a6XLT+njoiE4dziyq7kWN9hjHneGJNkjEmKjY2t4UtSCqaOSuRo3lne35ThdihK1Ts1TRiHgEvs+hhgj11fDEy0PZ8ScRq31xhjMoBcERlm2ycmAe961SntAXUd8Klt51gKjBORaNvYPc6WKVVrRnVtTbc2TZm9Yp/OlaFUGWFV7SAiC4DRQGsRScfpuXQn8JS9IsjH6f2EMWabiLwJbAeKgLuNMaXX9tNxelw1ApbYBZzbWfNFJAXnymKiPVa2iDwCrLX7PWyMKdv4rpRfiQhTRibyu39vYW1qDkMSY9wOSal6Q4LtW1RSUpJZt26d22GoAHamoJjhf/2EYYmtmHXbILfDUapOiMh6Y0xSZfvoL72VKqNRRCg3DUngo+2HScs+7XY4StUbmjCUKsek4Z0QEV5OTnU7FKXqDU0YSpWjfYtGXNmvPa+vTSPvbJHb4ShVL2jCUKoCU0Z6yM0v4u316VXvrFQDoAlDqQoMTIhmQMeWzF2ZSonOlaGUJgylKjN1VCL7jp7i892ZbofSoOTmF/Ls53uZu2If+YX6q/v6osrfYSjVkF3Rtx3tmkcx+8tUxvRs63Y4Qa+gqIQFaw7w1Cd7yD5VAMDzy7/mnsu786OB8YSGlDdikKoreoWhVCXCQ0O4bXgnvkw5yu4juW6HE7SMMfxncwbjZn7Bg4u30b1tUxb/bCSv/Xgosc0iuX/hZq54ajkfbz+iv8B3kSYMpapw85AEIsNCmLNCZ+SrDau/PsYPn41cHccAACAASURBVFnJ3a9tICIshDm3D2bBncO4IL4lI7q25p27R/LMLQMpLDb8+OV13PBcMuv366APbtBfeivlgxmLtrBoQzrJM8YS0yTC7XCCwp4juTz24U4+3pFJu+ZR3DuuO9dWctupsLiEN9el8Y+P95CVe5bLe7flN+N70K1tszqOPDj58ktvTRhK+WD3kVzGzVzO/eN7cPelXd0OJ6AdOZnPzGW7eXNdGk0iwrhrdBemjkykUURo1ZWB0wVFzFmRyqzP93KqoIhrB8Zzz+Xd6dCyUS1HHtw0YSjlR7e9tJrdR3L58rdjCA/Vu7nVlZtfyPPLv+aF/35NcYnh1mGd+PmYbjW+Yss5VcC/Pkvh5eT9IHD7CA8/Hd2Flo31CrAmNGEo5Uef7cxkyty1PDVxAFcP0MkffVXa8+npT/Zw7FQBV/XvwP3jepDQqrFfjp+ec5qZy/aw6Kt0mkaGMX10F6aM8P2KRTk0YSjlRyUlhsv+/gXNGoXz7t0j3Q6n3jPG8MGWwzyxdCepx04zrHMMM67oRf+OLWvl+XYePskTH+7ik52ZtG0eya8u6871g+IJ06tBn+hotUr5UUiIcPtID5vSjrPhQI7b4dRrFfV8qq1kAdCzXXNeun0wb/5kOHEtGzFj0RbG/WM5H27N0K64fqJXGEpVw6mzRQx79BMu6R7LP28e6HY49U5KZi5/XbKLj3cccXo+Xd6dawfV/Q/ujDEs236Ex5fuIiUzjwEdW/LAFT0Z1rlVncYRSHy5wtBfeitVDU0iw5g4uCOzV6Ry6PgZ7ZljHTmZzz8+3s0ba52eT/eP71Gtnk/+JiKM69OOMT3bsGjDQf6+bDcTn1/F6B6x/GZ8T3p3aO5KXIFOrzCUqqa07NNc8sRn/OSSLvx2Qk+3w3FVac+nF/+7j6KSkvPu+VRb8guLmbcylX99lkLu2SKuGRDHvZd3p2OMfxreg4E2eitVS6a/sp6Ve4+xasbYBtkbp2zPp+9f0J77x/egU6smbodWqROnC3n2i73MWbEPY+CWYQn87NKutGoa6XZortOEoVQtWbMvmxueS+bPP+zLLUM7uR1OnTHGsGTrYR7/0On5NDQxht9dWXs9n2pLxokzPPXxHt5cl0bjiDCmXdyZO0Yl0iSy4d6l14ShVC0xxnDVP78kv7CEZfdcjEjwj6K6Zl82f/lgBxvTjtO9bVMeuKInl/ZoE9CvPSUzlyeW7mLptiO0bhrJL8d2ZeKQhAb5w0ztVqtULRERpo5MJCUzj//uOep2OLUqJTOXH89zBv3LOHGGx6+9gCW/vJgxPdsGdLIA6NqmGc/dlsTb00fQObYJf3h3G5f9/Qve23RIJ80qh15hKFVDZ4uKGfnXz+gb15y5U4a4HY7fefd8ahzh/ILazZ5Ptc0Yw+e7snjsw53sPJxL37jmPDChF6O6tXY7tDqh3WqVqkWRYaHcNqwTMz/ezd6sPLrENnU7JL8o2/Np0nAPPx8T/A3DIsKlPdtwcfdY3t14kL99tJtbX1rNqK6t+e2EnvSLb+F2iK7TKwylzsPRvLOMePRTbhzckUeu6et2OOelsNjOdvdxYPV8qi1ni4p5ZdUB/vnpHnJOF/L9C9pz37geeFoH5/nQKwylalnrppFcPaADC9enc9+4HrRoHO52SNVW2vPpiaW72Hf0FEMTY3jpyl4MCLCeT/4WGRbKHaMSuT4pnhfsFdeHWw9z05AEfj62K22aRbkdYp3TRm+lztOUkYmcKSzm9bUH3A6l2tbsy+ZHz67kp69uIDxUmH17Eq9PG9bgk4W35lHh/HpcD764fzQTh3RkwZoDjH7ic/7+0S5y8wvdDq9O6S0ppfxg4vPJpGWf4Yv7RwfE6KjeYz61bR7Jry/v4cqYT4Fo39FTPPnRLv6zOYOYJhH87NKu3DIsgciwwO4MoL/DUKqOfLTtMNPmr+eZWwZyZb/2bodTocyT+cz8eA9vrD3QIHo+1abN6cf565KdrNx7jPjoRtx7eXeuHhAXsElXE4ZSdaS4xDD6yc9o2yyKhdNHuB3Od+SdLeL5L/bygu35dMvQTg2i51NtM8bw3z1HeezDnWw7dJKe7Zrx2yt6Mrp7bMD9RkUbvZWqI6Ehwu0jEnnk/e1sTj/OBfH1ow1Aez7VLhHh4u6xjOramve3ZPDk0l1MmbOWoYkxPHBFTy5MiHY7RL/SKwyl/CQ3v5Dhj37K5b3bMvPGAa7GUl7Ppxna86nWFRSV8PpaZ1DGo3kFTOjTjvvG96Brm/r/Gx2/DA0iIrNFJFNEtnqVvSEiG+2SKiIbbXm4iMwTkS0iskNEZnjVGWTLU0TkabHXayISaY+XIiKrRcTjVWeyiOyxy+TqnwKl6k6zqHCuGxTP+5sPkXky37U4vHs+hYUIL03Wnk91JSIshEnDPXxx/6Xcc1l3/rsni/H/WM6MRZs5fMK9vwl/8aU7x1xggneBMeZGY8wAY8wA4G1gkd10PRBpjOkHDAJ+4pUAngWmAd3sUnrMO4AcY0xXYCbwGICIxAAPAkOBIcCDIhJc13cq6Nw+wkNRieGVVfvr/LlTMnO582VnzKdDx8/w2LX9WPLLixjbK/DHfAo0TSLD+OVl3fjiN5dy27BOLFyfziVPfMZfl+zkxOnA7YpbZcIwxiwHssvbZq8SbgAWlO4ONBGRMKARUACcFJH2QHNjTLJx7oG9DFxj61wNzLPrC4Gx9rjjgWXGmGxjTA6wjDKJS6n6xtO6CWN7tuWV1QfILyyuk+fMPJnvzF89cznJe49x//gefH7fpdw4OCEguvgGs9ZNI/nTD/rwyb2juaJvO55bvpeLn/iM577YW2d/H/50vn9NFwFHjDF77OOFwCkgAzgAPGmMyQbigHSveum2DPtvGoAxpgg4AbTyLi+nzjlEZJqIrBORdVlZWef5kpQ6P1NHesg+VcDijYdq9Xnyzhbx92W7ueSJz3lrXZq9FTKauy/tqt1k65mEVo35x8QLef/noxjQsSWPLtnJpU9+zpvr0igOoFFxzzdh3MS3Vxfg3DoqBjoAicCvRaQzUN71cOlZqmhbZXXOLTTmeWNMkjEmKTY21tfYlaoVw7u0ome7ZsxesY/a6FRSWFzC/ORURj/xGU9/socxvdrw8b2X8Kcf9NFusvVcnw4tmDd1CK/dOZQ2zSL5zcLNTPjHcj7adrhW/lb8rcYJw952+hHwhlfxzcCHxphCY0wmsAJIwrk6iPfaLx4o/fqVDnT0OmYLnFtg35SXU0epeqt0roydh3NJ/vqY345rjGHJlgzGzVzOH97dRufYprxz90j+dfPAoB0QL1iN6NKad+4eyTO3DKS4xDBt/nqum5XM2tRy7/7XG+dzhXEZsNMY432r6QAwRhxNgGF2nwwgV0SG2faJScC7ts5ioLQH1HXAp7adYykwTkSibWP3OFumVL33gwEdiGkSwewvU/1yvLWpTs+n6V49n97Qnk8BTUS4sl97lt5zMX/5YT/Ssk9z/axkfjxvLbsO57odXrmq/OGeiCwARgOtRSQdeNAY8xIwkXNvRwH8C5gDbMW5pTTHGLPZbpuO0+OqEbDELgAvAfNFJAXnymIigDEmW0QeAdba/R627SFK1XtR4aHcMjSBf36Wwv5jp2r8Q7mUzDwe+3Any7Y7Yz49dm0/rh0Yr43ZQSQ8NISbhybwwwvjmL1iH7O+2MuEp5bzowvjuXdcd+JaNnI7xG/oD/eUqiVHTuYz6rFPuXVYJx68qk+16paO+fTmujQahYfqmE8NSM6pAp75PIV5K/eDwOThnfjp6K5EN4mo1efVsaSUctk9b2xk2fYjJM8YQ7OoqufKyDtbxPPLv+aF5V9TWFzCrcN0zKeG6uDxM8xctpu3N6TTNCKMu0Z3YcpID40jamdEJ00YSrlsc/pxfvDPFfzx+72ZOiqxwv0Ki0t4fc0BnrJDSnzvgvbcH8Szuynf7TqcyxNLd/LxjkzaNIvkl5d144akjoT7+bakJgyl6oHrnl1JZu5ZPrtv9HeGvjbG8OHWwzxux3wakhjDjCActE6dv7Wp2fx1yU7W78+hc+sm3De+B1f0bee3X/H7ZSwppdT5mToqkQPZp/lkx5FzytemZnNtOT2fNFmo8gz2xLDwruG8MCmJ0BDhp69u4Jp/rWDl3qN1FoNeYShVy4qKS7jkic/pGNOI16cNP6fnU5tmkdx7eXeuG6Q9n5TviksMb29IZ+ay3WScyOfi7rH8dkIP+nRoUeNj6i0ppeqJ577Yy6NLdvL9C9qzZOthGoWHctclnZk6KrHWGjFV8MsvLObl5FT+9dleTpwp5NqB8Tx5/QU1uk2lEygpVU9MHJzAU5/s4cOth7lNez4pP4kKD2XaxV24cXACs77YS0FRSa2OTKxXGErVke2HTtI0MoyEVo3dDkWp79ArDKXqkd4dmrsdglLnRVvZlFJK+UQThlJKKZ9owlBKKeUTTRhKKaV8oglDKaWUTzRhKKWU8knQ/Q5DRLKA/edxiNZA3Q3O4juNq3o0rurRuKonGOPqZIyJrWyHoEsY50tE1lX14xU3aFzVo3FVj8ZVPQ01Lr0lpZRSyieaMJRSSvlEE8Z3Pe92ABXQuKpH46oejat6GmRc2oahlFLKJ3qFoZRSyieaMJRSSvnGGBM0C9AR+AzYAWwDfmnLY4BlwB77b7RXnRlACrALGO9VHoFzP3A3sBO4toLnLLe+m3EBHuAMsNEus2ozLqCZ13NtxOkH/g+3z5evcdX1+bLlNwFbgM3Ah0Brt8+Xr3G5dL5utDFtAx6v5DOgrs9XlXHV1vkCWtn984B/ljnWIPs+pgBPY5sfanK+ztm/qh0CaQHaAwPtejOcD9XewOPAA7b8AeAxu94b2AREAonAXiDUbnsI+F+7HlLBf5wK67sclwfYWpfnq8xx1wMX14fz5WNcdXq+cOahySx972z9P7l9vqoRV12fr1bAASDW7jcPGFsPzpevcdXW+WoCjALu4rsJYw0wHBBgCXBFTc/XOXWqehGBvADvApfjZM/2Xm/KLrs+A5jhtf9SYLhdTwOaVHH8Cuu7HJdPf6D+jMurrJuN8TvfaNw4Xz7GVafnCwgHsoBO9j/0LGCa2+erGnHV9fkaDHzsVX4b8Ew9OF++xlUr58trv9vxShh2n51ej28CnvPH+QraNgwR8QAXAquBtsaYDAD7bxu7WxzOh0ipdCBORFrax4+IyAYReUtE2pbzNOXWrwdxASSKyFci8oWIXFRZTOcbV5lD3QS8YexfYBl1er6qERfU4fkyxhQC03FuGRzC+ab3UjlPU6fnqxpxQd3+faUAPUXEIyJhwDU4t2/Kquu/L1/jgto5XxWJszGWjbe8/ap1voIyYYhIU+Bt4FfGmJOV7VpOmcG5NI8HVhhjBgLJwJPVqO92XBlAgjHmQuBe4DURqXB+UD/E5W0isOA86rsRV52eLxEJx/lgvhDogHMPfIav9etBXHV6vowxOTauN4D/AqlAka/160FctXW+qhXveez3jaBLGPaP/m3gVWPMIlt8RETa2+3tce7TgpNRvb8RxON8szoGnAb+bcvfAgaW83QV1Xc1LmPMWWPMMbu+HufeZPdajKv0WP2BMPuc5anr8+VTXC6crwH2ufbaK543gRHlPF1dny+f4nLj78sY854xZqgxZjjOLZo95Txdnf99+RJXLZ6viqTbGL8Tbzn7+XS+vF9M0Cw4GfNlyvSEAZ7g3Eajx+16H85t9PmabxuXXwfGmG/vEb5VzvNVWN/luGK99u8MHARiajMuu/2vwEOVvD91fr58jKtOzxfOt/cMvm0sfQT4m9vnqxpx1fnfF9DG/huN09Oou9vnqxpx1cr58tp+O99t9F4LDOPbRu8ra3q+zqlT2cZAW3B6DBicS+nSLmxX4vRm+AQn+3/i/WYB/4OT8Xfh1ZMAp+FvuT3WJziXlAA/AB6uqr6bcQHX4nTL2wRsAK6q7bjstq+BnmXKXD1fvsTlxvnC6dmywx7rPaBVfThfvsTl0vlaAGy3y8T68vflS1y1fL5SgWycrrXpQG9bngRstTH/k29H9aj2+fJedGgQpZRSPgm6NgyllFK1QxOGUkopn2jCUEop5RNNGEoppXyiCUMppZRPNGEopZTyiSYMpZRSPtGEoRokERkpIntEJE9ErvHzsVNF5DJ/HtPr2Hki0rk2ju0GEbldRL50Ow7lG00Yyi/sh2SBiLQuU75RRIwdfbM+eRhnOIWmxph3ym4UkVEislJETohItoisEJHB/gzAjnJqbBLIs+fwgcrq2Hi/9sNzR4jIUTvQXZ3wer1hdfWcyr80YSh/2oczjDgAItIPaOReOJXqhDNcw3fYkUTfB/4PZ7azOJyJq87WUiwtjTFNcc7dH0VkQjkx+ftD9mJgozEmz8/HVUFME4byp/nAJK/Hk3EGU/uGiESKyJMickBEjojILBFpZLdFi8j7IpIlIjl2Pd6r7uci8oj9tp8rIh+VvaIp81x3ikiKvUJYLCIdbPlenEHg3rPf7CPLVO0OYIxZYIwpNsacMcZ8ZIzZbOt3EZFPReSY/Zb+qnw7V0nZGEJE5AER2Wv3f1NEYsrb1xiTjJPE+tq6RkTuFpE92FFQbVlXu95IRP4mIvvtldCXXudymL1COi4im0RkdJmnuxL4wOu8/q/dP09E3hORVvZ1nRSRtd5XiCIywpadsP+O8NpW2Xu03P573D7PcK96T9r3fJ+IXFHe+VH1QFWDTemiiy8LziBol+EMYtYLZ/TTNJxv8gbw2P3+ASzG+ebeDGeAu0fttlY4A7U1ttveAt7xeo7P+XZo6Eb28V8riGcMzhzeA3FG4/w/YHnZeCuo2xxnKPl5wBV4ze1st3fFmQktEmck0uV4jTDqfWzgV8AqnKGjI4HngAV2m4dv5zkRYCTO8PVj7XaDM4dzDNDIq6yrXf+XPQdx9nyPsM8RZ+O/EudL4eX2caxXjDuBHl7nNQXoArTAGUhvt30/w3CS/hy7bwyQgzO7XBjOVVEO3w5SWOF75P16veK4HSgE7rSvYTrOENvlzkGti8v/z90OQJfgWPg2YfweeBSYYD/swuyHhMd+KJ4CunjVGw7sq+CYA4Acr8efA7/3evxT4MMK6r6E1zDQQFP7weTxjreS19MLmIszAmgRTpJrW8G+1wBflT0Xdn0HXvM840yfWWjPS+kH6HH7obsD+IXXvgY7lH2Zsq42EZwB+pcTz2+B+WXKlgKT7XpnYG+Z8/o/Xo//BizxenwVzu0rbKJYU+bYycDtVb1HlSSMFK/Hje0+7dz+m9blu4s2Pil/m4/zjTuRMrejcL6NNwbWi3wz2ZfgfLNERBoDM3GSTbTd3kxEQo0xxfbxYa/jncZJBOXpgDOUNADGmDwROYbz7Tu1qhdhjNmB82GGiPQEXsG5OrpJRNoATwMX4VwJheB84JenE/BvESnxKisGvKfWbW2MKW+mNjh3Ck1vrYEonG/z5T3n9SJylVdZOPCZXf8e9naUlyNe62fKeVx6njsA+8vU3c+5U3v6+h59Z39jzGn7t1FnjfHKd9qGofzKGLMfp/H7SmBRmc1HcT58+hhjWtqlhXEafAF+DfQAhhpjmuM0zEL5U0lW5RDOB6dzAJEmOLe8Dlb3QMaYnThXG31t0aM434IvsHHeWkmMaTjzDLT0WqKMMb7GUdH8A0eBfJzbSOU95/wyz9nEGPNXu/1K4D8+Pn9Z55xXKwHfzqvOpRDgNGGo2nAHzq2UU96FxpgS4AVgpv2WjojEich4u0sznIRy3DYMP3geMbwGTBGRAbZR+y/AamNMalUVRaSniPy6tMFdRDri3Ktf5RVnno0zDri/ksPNAv4sIp3ssWJF5OqavqhS9lzOBv4uIh1EJFREhtvX+gpwlYiMt+VRIjJaROJto/gQnFtHNfEB0F1EbhaRMBG5EeiN06usKllACc4tMRWANGEovzPOnNDrKtj8W5wG1lUichL4GOeqApxbPo1wvj2vAj48jxg+Af6AMz9yBs438Yk+Vs8FhgKrReSUjWUrzhUQOF1sBwIncL6pl72S8vYUTvvHRyKSa481tFovpmL3AVtwpuPMBh4DQowxacDVwO9wPqTTcJJaCDAWSDbG5NfkCY0zN/X3cc7FMeA3wPeNMUd9qHsa+DOwwvbeGlaTGJR7dMY9pRoQEXkG2GqMecbtWFTg0UZvpRqWjThdmZWqNr3CUEop5RNtw1BKKeUTTRhKKaV8EnRtGK1btzYej8ftMJRSKqCsX7/+qDEmtrJ9gi5heDwe1q2rqEenUkqp8ohI2V/wf4feklJKKeUTTRhKKaV8oglDKaWUTzRhKKWU8okmDKWUUj7RhKGUcs2Rk/kcOn7G7TCUjzRhKKVcM23+eu56Zb3bYSgfBd3vMJRSgWHf0VNsSjuOCJw4U0iLRuFuh6SqUOUVhojMFpFMEdnqVdZfRJJFZIuIvCcizW25R0TOiMhGu8zyqjPI7p8iIk+LnYdRRCJF5A1bvlpEPF51JovIHrtM9ucLV0q5a/HGQwAYAxv2VzTDrapPfLklNRdnjmVvLwIPGGP6Af/m3BnH9hpjBtjlLq/yZ4FpQDe7lB7zDiDHGNMVZz7nxwC8ZlwbijND2IMiEo1SKuAZY1i86SD9O7YkLERYm5rtdkjKB1UmDGPMcpzZvLz1AJbb9WXAtZUdQ0TaA82NMcnGGU/9ZeAau/lqYJ5dXwiMtVcf44FlxphsY0yOfZ6yiUspFYC2Z5xkb9YpbkiKp09cC00YAaKmjd5bgR/Y9euBjl7bEkXkKxH5QkQusmVxQLrXPum2rHRbGoAxpghn2stW3uXl1DmHiEwTkXUisi4rK6uGL0kpVVcWbzpEWIhwZd/2DPFEsyntBPmFxW6HpapQ04QxFbhbRNYDzYACW54BJBhjLgTuBV6z7RtSzjFKZ26qaFtldc4tNOZ5Y0ySMSYpNrbSwRaVUi4rKTG8vymDi7vHEt0kgsGeGAqKS9icfsLt0FQVapQwjDE7jTHjjDGDgAXAXlt+1k4SjzFmvS3vjnN1EO91iHjgkF1Px16hiEgY0ALnFtg35eXUUUoFqA0Hcjh4/Aw/6N8BgMGeGAC9LRUAapQwRKSN/TcE+D0wyz6OFZFQu94Zp3H7a2NMBpArIsNs+8Qk4F17uMVAaQ+o64BPbTvHUmCciETbxu5xtkwpFcAWbzpEVHgIl/duC0B0kwi6tWnKmn2aMOq7Kn+HISILgNFAaxFJx+m51FRE7ra7LALm2PWLgYdFpAgoBu4yxpT+FUzH6XHVCFhiF4CXgPkikoJzZTERwBiTLSKPAGvtfg97HUspFYCKikv4YEsGY3u1pUnktx8/gxNjeG/jIYpLDKEh5d2NVvVBlQnDGHNTBZueKmfft4G3KzjOOqBvOeX5OA3n5dWZDcyuKkalVGBYufcYR/MKvrkdVWqIJ4bXVh9gR8ZJ+sa1cCk6VRUdGkQpVWcWbzpEs6gwRvc4t3PK4ERtxwgEmjCUUnUiv7CYpVsPM6FPOyLDQs/ZFteyEXEtG2nCqOc0YSil6sTnu7LIPVvEDwZ0KHf7YE80a/bl4PR5UfWRJgylVJ1YvOkgrZtGMLxzq3K3J3liOJp3ltRjp+s4MuUrTRhKqVqXm1/IJzsy+V6/9oSFlv+xM6S0HUO719ZbmjCUUrVu2fYjnC0qqfB2FEDX2Ka0bByu7Rj1mCYMpVStW7zpEHEtGzEwoeIBp0NChKROMZow6jFNGEqpWpV9qoAv9xzlqv4dsNPgVGhIYjSpx06TmZtfR9Gp6tCEoZSqVR9syaCoxHznx3rl+WZcqX06oVJ9pAlDKVWrFm86RNc2TenVvlmV+/aNa0Gj8FC9LVVPacJQStWajBNnWJuazQ98uB0FEB4awoUJLXUgwnpKE4ZSqta8vykDY/DpdlSpwZ4Ydhw+ycn8wlqMTNWEJgylVK1ZvOkQF8S3wNO6ic91hiTGYAys36/tGPWNJgylVK3Yd/QUWw6eqNbVBcCFCS0JC5GA/wFfUXEJe47kuh2GX2nCUErVisUbDyEC37+gegmjcUQYfeJaBHzD94I1B7h85nI+25Xpdih+owlDKeV3xhgWbzrIEE8M7VpEVbv+EE80m9JOkF9YXAvR1Y0Ptx0G4IG3N3PidHC0x2jCUEr53faMk+zNOlXpUCCVGeyJoaC4hM3pJ/wcWd04mV/I6q+zGd0jlqN5BTz0/ja3Q/ILTRhKKb9bvOkQYSHClX3b16h+kiewJ1T6YlcWRSWGn4/pyk9Hd2HRhoMs237E7bDOmyYMpZRflZQY3t+UwUXdWhPdJKJGx4hpEkHXNk0DNmF8vOMIMU0iGNAxmp+P6UbPds2YsWgLOacK3A7tvGjCUEr51YYDORw8fqbGt6NKDfbEsD41h+KSwJpQqbC4hM92ZjKmZxtCQ4SIsBD+dkN/jp8u4I+LA/vWlCYMpZRfLd50iMiwEC7v3e68jjMkMZrcs0XsPHzST5HVjXWpOZzML+KyXm2/KevToQW/GNuN9zYd4oMtGS5Gd340YSil/KaouIQPtmRwWa+2NI0MO69jfTsQYWDdlvp4xxEiQkO4qFvrc8qnj+5Cv7gW/P6drRzNO+tSdOdHE4ZSym9W7j3G0bwCrqrmj/XKEx/dmA4tolibGji/+DbG8PGOI4zo2oomZRJmeGgIT17fn7z8Iv7wztaAnLtcE4ZSym8WbzpEs8gwRveI9cvxBifGsCY1O2A+XPdm5bH/2Olzbkd569GuGb+6vBtLth5m8aZDdRzd+dOEoZTyi/zCYpZuPcz4vu2ICg/1yzEHe2LIyj3L/mOn/XK82rZsu/Or7rG92lS4z7SLOjOgY0v++O42Mk8G1kRRmjCUUn7x+a4scs8WVXvsqMoMSXTaMdYESPfaT3YcoW9cc9q3aFThPmGhTq+p/MJifvfvLQFz9QSaMJRSfvLepkO0UZK+7wAAIABJREFUbhrBiC6t/HbMrrFNadk4PCAavo/lnWX9gZwKb0d56xLblPvH9+DjHZks2nCwDqLzjyoThojMFpFMEdnqVdZfRJJFZIuIvCcizb22zRCRFBHZJSLjvcoH2f1TRORpsbOpiEikiLxhy1eLiMerzmQR2WOXyf560Uop/8o7W8THO45wZb/2hIX673toSIiQ1CkmIH7A9+nOTIzBp4QBMGVkIoM90fzpvW1knDhTy9H5hy/v7FxgQpmyF4EHjDH9gH8D9wOISG9gItDH1nlGREpvZj4LTAO62aX0mHcAOcaYrsBM4DF7rBjgQWAoMAR4UESiq/8SlVK1bdn2w5wtKvHr7ahSQxKjST12mszc+n2//5MdmbRrHkWfDs2r3hkIDRGeuK4/RcWGB94OjFtTVSYMY8xyoGx67wEs/3/27jw8yvJq/Pj3ZIcAWUhCQggk7EvYNCCKS0REwLV1Q2urbd/62trW9W217dtFa3/V1rW7rVbt665U0eICKm6gGJCwBQhLICEhK4QQyH5+f8wTjRiSSTIzzyScz3XNxXDPs5zJdua57/Pct/N8GXCx8/xC4BlVrVfVXcB2YKaIpACDVHWVer4qTwAXtdnncef5C8BZztXHOcAyVa1S1f3OeY5OXMaYILBkXTGpsf04YbjvP9N9fj9G8JbX1jU2815+OWdNSPJqKdpW6QnR3LZgPO9uK+fZTwr9GKFvdPfacSNwgfP8UiDNeZ4KtH3XRU5bqvP86PYv7KOqTUA1MLiDY32JiFwrIjkiklNeXt7Nt2SM6Y79tQ28n1/BeVNTCAnx/o+ltzJTY4gKDwnqbqmPdlZyuKGZuRO9645q6+uzRnDyyMH8+j95FO0P7mqw7iaMbwHXi8gaYCDQOqNWez8t2kF7d/f5YqPqw6qapapZiYm+qf82xnhn6cYSmlrUL91R4LnhbXpaXFAnjOV5pfSPCOXkkV0f8A8JEe65ZAqqyo9fXE9LEM+d1a2EoapbVHWeqp4IPA3scF4q4vOrDYBhQLHTPqyd9i/sIyJhQAyeLrBjHcsYE0SWrCtmVGI0E1O867vvjhkZ8eSVHKSmLvgWIlJV3sor47QxCd2+/yQtvj8/OXcCH26v5MnVe3wcoe90K2GISJLzbwjwM+CvzktLgEVO5VMGnsHt1apaAtSIyCxnfOIbwMtt9mmtgLoEeNsZ53gDmCcicc5g9zynzRgTJPZV17G6oIoLpqZ2qe++q2amx9OisGZ38I1jbCo+SEl1ndfVUcdy5czhnDYmgf+3NI89QXqjojdltU8Dq4BxIlIkIt8GrhCRbcAWPJ/6/wmgqpuA54DNwOvA9arausbid/FUV23Hc0XymtP+CDBYRLYDNwO3OceqAu4EPnEedzhtxpgg8er6YlTp8VTmnZk+PJbQEAnKbqnleaWIwJzxx7672xsiwt0XTyFUhFtfyA3KrqlOp5NU1SuO8dKDx9j+LuCudtpzgMx22uvwDJy3d6xHgUc7i9EY444lucVMTo0hIyHar+eJjgwjc+igoKyUWp5XygnD4xg8ILLHxxoa24//PX8iP3phPY+tLOBbp2b4IELfsTu9jTHdsquilvVF1X4b7D7ajPR41hUdoL6pufONA6Sk+ggb9x7scXdUW5eeOIwzxyVyzxtb2Fl+yGfH9QVLGMaYbnkltxgROG9q99bt7qoZGfE0NLWwvqg6IOfzxlt5nskGz57Ys+6otkSE3148hYjQEG59PjeoVhy0hGGM6TJVZUluMTPS4zucaM+XWm/gWx1E80otzytlxOD+jEoc4NPjDhkUxa8unMTaPQf4x/s7fXrsnrCEYYzpsrySGraXHQpYdxRAfHQEo5MGBM3Ad219Eyt3VDJ3whC/VIhdNC2VeROHcO+ybeSX1vj8+N1hCcMY02VLcosJCxEWTg5Md1SrGenxrCnYHxTdNO/nV9DQ1OLT8Yu2RIS7vjKZ6IhQbn0+l6bmFr+cpyssYRhjuqSlRXklt5hTxyQQHx0R0HPPzIijpr6JLfsOBvS87VmeV8qgqDCy0v03J2riwEjuvCiT3KJq/vae+11TljCMMV2yds9+9h44EtDuqFafT0TobrdUc4vyzpYyzhyfRLgPp3Nvz3lThnLu5BQeWL6NvBJ3E6UlDGNMlyzJLSYyLIR5k5IDfu5hcf0ZGhPFJy7f8b2ucD+VtQ1+64462p0XZRLTL5xbnsul0cWuKUsYxhivNTW3sHRDCWdNSGJAZKf3/fpFVno8n+yqcnX9iGWbywgLEc4YF5jJTuOjI/j1RZPZXHKQP769PSDnbI8lDGOM11buqKTiUIMr3VGtZmTEU1ZTz54q9+ZbeiuvlJNGxjMoKjxg55yfmcxF04byp3e2s3GvO/eiWMIwxnhtSW4xAyPDyB7nuxvVumqmy/dj7K6sJb/sEGeND0x3VFu/vGAS8dER3PJcrit3vFvCMMZ4pa6xmTc27mPepORuT+PtC2OSBhDTL9y1+zGWO3d3B2r8oq3Y/hH89uLJbC2t4aG38gN+fksYxhivrNhaTk19k99npu1MSIgwIz2OTwrcGfhevrmUcUMGMnxwf1fOP2f8EC49cRh/WbGDdYUHAnpuSxjGGK+8klvM4OgIZo/q+qpyvjYjPZ5dFbWU1dQF9LzVhxtZXVDFWRPc65ID+N/zJzJkUBS3PLeOusbAdU1ZwjDGdOpQfRPL80pZODmFMD/fd+CNGRmecYycAF9lrNhWRnOLdmvtbl8aFBXO3RdPYUd5Lfct2xaw87r/nTfGBL1lm/dR39TiendUq8yhMUSFhwR84Ht5XhkJAyKYNiw2oOdtz+ljE7li5nD+/v5OcgI0nmMJwxjTqSXrihkaE8WJw/03DUZXRISFMD0tLqAD343NLazYWsac8UmEhPhvOdqu+Om5Exga049bn8/lSIP/u6YsYRhjOrS/toH38ys4f+rQoPlDCZ5uqbySg9TUNQbkfJ/sqqKmrsmV6qhjGRAZxu8unUJB5WHufn2L389nCcMY06GlG0toalHOd/FmvfbMTI+nRWFNgKYJWZZXSmRYCKeOSQjI+bx1yqgErj55BI+tLOCjnZV+PZclDGNMh5asK2ZkYjSThg5yO5QvmD48ltAQCcjAt6qyPK+U2aMT6B/hzpQoHfnxgvGMGNyfn720kRY/Tv0efO/cGPOZIw3NXPuvHEYmRHPN7AwyEqIDev591XWsLqjihrPG+GWRoJ6Ijgwjc+ggVgdgHCO/7BCFVUf47hmj/X6u7ugfEcYfrphO/4hQv3YbWsIwJoi9tG4v7+dXsGpHJU98tJuzxifxrdkZnDxqcED+gL+6vhhVXJ07qiMz0uN54qPd1Dc1Exnmv7vPl20uBXD9/ouOTAlA5ZZ1SRkTpFSVxz4sYNLQQay8fQ4/mDOGT/cc4Mp/fMyCB9/nuU8K/X7T1pLcYjJTBzHSx2tW+0pWejwNTS1sKPLvZHzL80qZMiyGIYOi/HqeYGcJw5ggtWpnJVtLa7jmlHSSBkZx89lj+fC2OdxzyRQAfvTiemb/9m3ue3MrZQd9f8fzropa1hdVB+3VBcAMZ7U7f3ZLldfUs67wQFBVR7nFuqSMCVKPfVhAfHTEF6qTosJDuSwrjUtPHMaqnZU8+kEBf3hnO395dwfnTxnKt07NIDM1xifnfyW3GPCs+BasBg+IZFRitGcFvmz/nOOdLWWoBnd3VKBYwjAmCBVWHWZ5XinfzR7V7sywIsIpoxI4ZVQCBRW1PLaygOdzCln86V5mZsTzrdkZnD1xCKHdHABVVZbkFjMzPZ6hsf16+nb8amZGPK+uL6G5Rbv9fjuyPK+UoTFRTEwJrioxN1iXlDFB6F8f7UZEuGrWiE63TU+I5pcXTGLVT87iZ+dOoPjAEa77vzWc8bt3+Mf7OznYjRvb8kpq2F52iPODZCqQjsxIj6emromt+2p8fuy6xmbez69g7sQhQVcl5oZOE4aIPCoiZSKysU3bNBH5SETWiUiOiMx02tNF5IjTvk5E/tpmnxNFZIOIbBeRh8T56otIpIg867R/LCLpbfa5WkTyncfVvnzjxgSrww1NPLN6D/Mzk0mJ8f7T/aCocP7rtJG8+z9n8terTmRobD9+/Z88Tv7NW/xyySYKKmq9PtaS3GJCQ4SFmYFft7urZjgLKvljmpCVOyo40tjMWTZ+AXh3hfEYMP+otnuAX6nqNODnzv9b7VDVac7jujbtfwGuBcY4j9ZjfhvYr6qjgfuBuwFEJB74BXASMBP4hYgEx0Q2xvjRS58Wc7CuiW+ekt6t/UNDhPmZyTz33yfzyvdP5ZxJyTz58W7OvHcF//V4Dit3VHS4Hraq8kpuMaeOTmDwgMhuvovAGRbXj5SYKL8MfC/PKyM6IpRZI+N9fuzeqNOEoarvAUd/JxRo7dCLAYo7OoaIpACDVHWVen5SnwAucl6+EHjcef4CcJZz9XEOsExVq1R1P7CMLycuY/oUVeWxlbvITB3EiSN6/vlo8rAY7rt8Gh/+eA4/OHM0a/fs58q/O2W5Oe2X5a7ds5+9B44EdXVUWyLCjPR4PtlV1WEi7KqWFuWtvFLOGJfo13s8epPujmHcCPxORAqB3wO3t3ktQ0Q+FZF3ReQ0py0VKGqzTZHT1vpaIYCqNgHVwOC27e3s8wUicq3TNZZTXl7ezbdkjPtW7ahkW+khrjklw6d95kmDorh53jhW3jaHey52ynJfcMpyl237wkJES9YVExkWwrxJvacbZkZGPGU19eypOuyzY24srqb0YL0ra3cHq+4mjO8CN6lqGnAT8IjTXgIMV9XpwM3AUyIyCGjvJ7/1o8CxXutony82qj6sqlmqmpWYmNiFt2FMcPnnygIGR0dw3pQUvxw/KjyUy2ak8doNp/HUf53E9OGx/OHtfE797Tvc8lwu64sO8J8NJcwZn8TAqHC/xOAPM51xDF+uj7E8r4wQgTPHWzltq+6W1V4N3OA8fx74B4Cq1gP1zvM1IrIDGIvn6mBYm/2H8Xk3VhGQBhSJSBieLq4qpz37qH1WdDNeY4Jeaynt988c3W4prS+JCKeMTuCU0Qnsqqjl8ZUFPJdTyItrPR0BvaU7qtWYpAHE9Asnp2A/l2al+eSYyzeXkjUinvjoCJ8cry/o7hVGMXCG83wOkA8gIokiEuo8H4lncHunqpYANSIyyxmf+AbwsrP/EjwJCOAS4G1nnOMNYJ6IxDmD3fOcNmP6pCdWFRAqwtdO6ryU1pcyWstybz+Lny6cwFdPSO11n6pDQoQZ6b5bUGnvgSNsLjloN+sdpdMrDBF5Gs8n/QQRKcJTufQd4EHniqAOT/UTwOnAHSLSBDQD16lq63fwu3gqrvoBrzkP8HRn/UtEtuO5slgEoKpVInIn8Imz3R1tjmVMn1Jb38QznxQyPzOZ5Bh35iuK6RfOd04f6cq5fWFGejzL88oor6kncWDPqrvezvNMNuj22t3BptOEoapXHOOlE9vZ9kXgxWMcJwfIbKe9Drj0GPs8CjzaWYzG9Hb//nQvNXVNfHN2utuh9FpZzjhGTkEVCyb3bAxoWV4ZIxOiGRWkky66xe70NsZlqsrjKwuYnBrDCUGyZnZvNDk1hqjwkB7fj3GovomPdlRad1Q7LGEY47KVOyrJLzvENaek2/QTPRARFsK0tNgej2O8v62chuYWm522HZYwjHHZPz8sIGFABOdN9U8p7fFkZno8m4sPUtON+bNaLcsrJbZ/uE9unOxrLGEY46I9lYd5a0spV84cbncT+8CMjHhaFNbuOdCt/ZtblHe2lHHmuCTCQu3P49HsK2KMiz4rpfViVlrTuROGxxEaIp71Mbph7Z797D/caN1Rx2AJwxiX1NY38WxOIQsnpxz3S3/6SnRkGJOGDur2wPfyzaWEhwqnj03wcWR9gyUMR3lNPdf8czW5hd27lA12i9cW8fK6vW6HYdpY7JTSXmOltD41Iz2edYUHqG/q+nrny/NKmTVycK+aFiWQLGE4IkJD2LqvhhufXUdtfZPb4fjUmt1V3Pp8Lr96ZTNNzS1uh2NwZqX9cBdThsUwPS3W7XD6lBnp8TQ0tbChqLpL++0sP8SO8lrrjuqAJQxHTP9w7r98GgWVtdzxyma3w/GZg3WN3PDMOsJDQ6iqbfDLmgGm6z7YXsGO8lorpfWDGeme6qZPCvZ3ab+38soAW7u7I5Yw2pg1cjDfPWMUz+YU8tqGErfD8Ymfv7SRkuo6/nnNDPqFh/Lahn1uh2SAx5xS2nP9NCvt8WzwgEhGJUZ3+X6M5XmljE8eyLC4/n6KrPezhHGUm84ey9RhMdy2eAPFB464HU6PvPTpXl5aV8wNZ43hlNEJZI9L5PVN+2hp8d0iM6brdlfW8vbWMq48aYSV0vrJzIx4cgqqvP5Z31/bQM7u/Zxtc0d1yBLGUcJDQ3hg0XQam1u4+bl1NPfSP66FVYf535c2kjUiju9ljwJgweQUymvqWbOna5fqxreeWLWbUBGuOmm426H0WTPS4zlY18TW0hqvtl+xrYzmFrW1uzthCaMdGQnR/PL8SXy0s4qH39vpdjhd1tTcwo3PrgPg/sunfXYD0pzxSUSEhVi3lItq65t47pNCzp2SQpKV0vrNDGciQm+7pZbnlZE4MJIpqTH+DKvXs4RxDJdmDWPh5GTufXMr64t6V6ntH9/Zzprd+/n1VzJJi/+8P3ZAZBinj0nktY0l1i3lksVri6ipb+KaU9LdDqVPGxbXj+RBUV6twNfQ1MK7W8uZOyGJkBArQOiIJYxjEBF+85XJJA6M5IZn1nG4oXeU2q7ZXcVDb+Xz1empXDjty0ugL8hMpqS6jtxelgT7gpYW5bGVBUxNi2W6zUrrVyLCjIx4PimowrMe27F9vKuSQ/VNtna3FyxhdCC2fwT3XdZ7Sm1rnBLa1Lh+/OrCSe1uM3fCEMJDhdc3WrdUoLWW0n7Tri4CYmZ6HKUH6yms6rh45a28MqLCQ5g92u7u7owljE6cPGow150ximc+Cf5S25+/vImS6joeuHz6Me9UjekfzuzRCSzdWNLpJy/jW4+tLCBxYCQLe7i4j/HOjAzPOEZH9x6pKss2l3Lq6ET6RVjFWmcsYXjhprljmeKU2pZUB2ep7cvr9vLvT/fywzljOp2WeUFmMoVVR9hUfDBA0ZldFbW8vaWMK2cOJyLMfu0CYWzSQGL6hXc4EeGWfTXsPXCEuXaznlfsJ9cLEWEhPLhoOg1NLdz8bG7QDRgXVh3mZ//2lNBef+aoTrc/e2IyoSHCaxuD+4qpL3liVQHhocLXrJQ2YEJChKwRcR1WSr3lrN09xxKGVyxheCkjIZpfXjCRVTsrefj94Cm1PVYJbUfioyOYNTKe1zbss26pADhU38TzOUWcO9lKaQNtRkY8OytqKa+pb/f1ZXllTEuLJWmgfV+8YQmjCy7LSmNBZjK/f2Nrlyc285djldB2ZkFmCjsratlWesiP0RnwlNIeqm/imtkZbody3Gm9HyOnnauMspo6cgsPWHdUF1jC6AIR4f99dTIJAyK54ZlPXS+1bS2h/coxSmg7Mm/SEERgaZAP5Pd2raW009JimWaz0gbc5NQYosJD2p2I8G1nssG5Nh2I1yxhdFFs/wjuu3wquyprufNV90pta+oaufFZTwntHccooe1I0sAoZqTHW3mtn72/vYKd5bV809a8cEVEWAjT0mLbHcdYnldKamw/xg0Z6EJkvZMljG44ZVQC/336KJ5eXejaH9yfv7yJ4gMdl9B2ZmFmMltLa9hRbt1S/vLYh7tIHBjJgkwrpXXLzPR4NhVXc6jNOjdHGpr5YHsFZ08cYtPLd4EljG66+eyxTE6N4bbF69lXXRfQc7eW0P5gzuhOS2g7Mt/5I2ZXGf6xq6KWd7aWc9VJI6yU1kUzMuJpUVi7+/NuqQ+3V1DX2GKLJXWR/RR3k6fUdhr1jS3c8vy6gJXati2h/f6Zo3t0rOSYKE4YHmvjGH7y+EpPKe2VVkrrqunD4wgNkS90Sy3PK2VgZBgznZv7jHcsYfTAyMQB/OL8iXy4vZK/B6DUtjsltJ1ZkJnCpuKD7Kk83ONjmc/V1DXywpoizpsylMSBkW6Hc1wbEBnGxJRBn01E2NKivLWljNPHJdqVXxd1+tUSkUdFpExENrZpmyYiH4nIOhHJEZGZbV67XUS2i8hWETmnTfuJIrLBee0hcToORSRSRJ512j8WkfQ2+1wtIvnO42pfvWlfunxGGvMnJfP7N7eyca9/S23/9M6ObpXQdmR+ZjKA3cTnYy+ucUppbd6ooDAjPZ51hQeob2pm/d5qymvqOdu6o7rMm/T6GDD/qLZ7gF+p6jTg587/EZGJwCJgkrPPn0WkdYKWvwDXAmOcR+sxvw3sV9XRwP3A3c6x4oFfACcBM4FfiEjQTfEpIvz24skMjo7kh34stV2zez8Pvd29EtqOpMX3Z8qwGJbaOIbPtLQoj6/azfThsUy1UtqgMDMjjvqmFjburWb55lJCQ4TscYluh9XrdJowVPU94OiaNAUGOc9jgGLn+YXAM6par6q7gO3ATBFJAQap6ir13Fr8BHBRm30ed56/AJzlXH2cAyxT1SpV3Q8s48uJKyh4ZrWdyq6KWu58Nc/nx/eU0H5KSkzUMWeh7Yn5mcnkFh5gby9fkjZYvJdfzq6KWru6CCJZzg18q3ftZ3leKVkj4ojtH+FyVL1PdzvwbgR+JyKFwO+B2532VKCwzXZFTluq8/zo9i/so6pNQDUwuINjBaVTRidw7ekjeXr1Hp9XHbWW0D64aBqDullC25EFVi3lU4+tLCDJSmmDSsKASEYmRvPyur1s2Vdja3d3U3cTxneBm1Q1DbgJeMRpb6+gWTto7+4+XyAi1zpjKTnl5eUdBu5Pt5w97rNS29KDvim1/WIJrX8qOjISohmfPJDXbRyjx3aWH2LF1nKummWltMFmZno8W/Z51vi2tbu7p7s/0VcDi53nz+MZYwDPVUBam+2G4emuKnKeH93+hX1EJAxPF1dVB8f6ElV9WFWzVDUrMdG9fsmIsBAecEptb36u56W2rSW0J/qghLYzCyenkLN7P2U+SnTHqydW7SYiNIQrZlopbbBpnVdqVGI0GQnRLkfTO3U3YRQDZzjP5wD5zvMlwCKn8ikDz+D2alUtAWpEZJYzPvEN4OU2+7RWQF0CvO2Mc7wBzBOROGewe57TFtRGJQ7g506p7T8+6H6pbVNzCzc5JbQP+KiEtiMLMpNRhTc2WbdUd9XUNfJ8TiHnTU2xUtog1HrPhd2s131hnW0gIk8D2UCCiBThqVz6DvCgc0VQh6f6CVXdJCLPAZuBJuB6VW12DvVdPBVX/YDXnAd4urP+JSLb8VxZLHKOVSUidwKfONvdoaqdr+geBBbNSGPF1jJ+98ZWThmVQGZqTJeP8ad3dpCzez8PXD7NZyW0HRkzZCCjkwawdMM+vn5yut/P1xe9sKaI2oZmvnmKzUobjNLi+/P3b2QxM91u1usu6WvrIWRlZWlOTo7bYbC/toH5D77HgMgwXv3BaV1a/nHN7v1c9rdVnD8lhQcWTfdjlF9035tb+eM72/nkp3MZPMA+IXdFS4sy594VxEdHsPh7s90Ox5guE5E1qprV0TY2KucncdER3HfZNHZW1HLnf7yf1bZtCe0dF2X6McIvm5+ZQovCm5tLA3revuDdbeUUVB62NS9Mn2YJw49mj07g2tNG8tTHe3jTy7GBn7+8ib37j/ithLYjE1IGkj64v80t1Q3/XFnAkEGRLHDunDemL7KE4We3zBtHZuogfvxi56W2n5fQjvFbCW1HRIT5mSms2lHJgcMNAT9/b7Wj/BDvbfPMShvu5+IEY9xkP91+5pnVdjpHGpu55bncY5bati2h/cEc/5bQdmTh5GSaWpRl1i3ltSdWFnhKaW1WWtPHWcIIgFGJA/j5eZP4YHsFj3yw60uvB7qEtiOTU2NIje1nd3176aAzK+35U4eSYIUCpo+zhBEgV8xM45xJQ7jnjS1sKv7irLatJbR3XuS7WWi7S0RYkJnM+/kVHKxrdDWW3uCFHE8prc0bZY4HljACRET47VenEB8dwQ+f/pQjDZ7bU1pnob1w2lAumh4cU2UtmJxCQ3MLb+eVuR1KUPPMSltA1og4Jg/r+r02xvQ2ljACKC46gnsvncaO8lp+/Z/NXyihvTPAJbQdmZ4Wy5BBkbZGRidWbCtjd+Vhrpmd7nYoxgREp3d6G986dYxnVtuH39vJhr3V7N1/hOf+++SAl9B2JCREWJCZwtOr91Bb30R0pP2YtOefHxaQPCiKcyZZKa05PtgVhgtunTeOSUMHsb6omh/MGfPZXP3BZH5mMvVNLazY6t7sv8Fse1kN7+dXcNWs4VZKa44b9pPugoiwEP729RP52bkTXC2h7ciM9HgSBkSw1Lql2vX4yt1EhNmstOb4YgnDJcPi+vNfp410tYS2I6EhwrxJybyzpYy6xubOdziOHKxr5MW1RVwwdajNuWWOK8H518oEhYWZKRxuaObdbdYt1dbzOUUctlJacxyyhGGO6aSR8cT1D+c1m1vqM3sPHOEPb+dzUkZ8t6atN6Y3s4Rhjik8NISzJw7hrbwy6pusW6qhqYXvP7WWpmbl7ounuB2OMQFnCcN0aMHkFGrqm/hwe4Xbobjunte38OmeA9xzyRTSbYlPcxyyhGE6NHtUAgOjwnhtw/E9t9Sbm/bxjw92cfXJI1g4OcXtcIxxhSUM06GIsBDOnjCENzeX0tjc4nY4riisOsytz+cyZVgMPzl3gtvhGOMaSximU/Mzk6k+0shHOyvdDiXgWsctFPjTlScQGeb9UrvG9DWWMEynTh+bSHREKEuPw26p3yzNI7eomt9dMtX1mYSNcZslDNOpqPBQ5kwYwpub9tF8jAWg+qLXNpTw2MoCvjU7g/m29KoxljCMdxZkJlO3X/ppAAAgAElEQVRZ28DqXVVuhxIQuytr+dEL65maFsttC8a7HY4xQcEShvFK9rhEosJDjospz+sam7n+qbWEhAh/unI6EWH2a2IMWMIwXuofEUb22CRe37jvmOuS9xV3/SePjXsPcu+lUxkWZ+MWxrSyhGG8tmByMmU19azds9/tUPzmldxi/vXRbq49fSRzJw5xOxxjgoolDOO1OeOTiAgN4bWNfbNaaldFLbcv3sAJw2P5n3PGuR2OMUHHEobx2sCocE4fm8DrG/eh2re6peoam/nek2sJCxX+eOUJtiiSMe3o9LdCRB4VkTIR2dim7VkRWec8CkRkndOeLiJH2rz21zb7nCgiG0Rku4g8JCLitEc6x9suIh+LSHqbfa4WkXzncbUv37jpngWZKew9cIT1RdVuh+JTv3plM3klB7n/smkMje3ndjjGBCVvPkY9Bsxv26Cql6vqNFWdBrwILG7z8o7W11T1ujbtfwGuBcY4j9ZjfhvYr6qjgfuBuwFEJB74BXASMBP4hYjEdfH9GR+bO2EIYSHSp1bie3ndXp5evYfrzhjFmeOT3A7HmKDVacJQ1feAdovvnauEy4CnOzqGiKQAg1R1lXr6Mp4ALnJevhB43Hn+AnCWc9xzgGWqWqWq+4FlHJW4TODF9A9n9ugEXtvQN7qltpcd4vbFG5iRHset88a6HY4xQa2nHbWnAaWqmt+mLUNEPhWRd0XkNKctFShqs02R09b6WiGAqjYB1cDgtu3t7GNctCAzmT1Vh9lcctDtUHrkSEMz1z+5lqjwUP5wxQlBu1yuMcGip78hV/DFq4sSYLiqTgduBp4SkUGAtLNv68fTY73W0T5fICLXikiOiOSUl9tyov42b1IyoSHS66c8/8WSjWwrq+H+y6eRHBPldjjGBL1uJwwRCQO+Cjzb2qaq9apa6TxfA+wAxuK5OhjWZvdhQLHzvAhIa3PMGDxdYJ+1t7PPF6jqw6qapapZiYmJ3X1Lxkvx0RGclBHP0o0lvbZb6sU1RTyXU8T12aM5Y6z9zBjjjZ5cYcwFtqjqZ11NIpIoIqHO85F4Brd3qmoJUCMis5zxiW8ALzu7LQFaK6AuAd52xjneAOaJSJwz2D3PaTNBYMHkFHaW15JfdsjtULosv7SGn720kZMy4rlx7hi3wzGm1/CmrPZpYBUwTkSKROTbzkuL+PJg9+nAehHJxTOAfZ2qtg6Yfxf4B7Adz5XHa077I8BgEdmOpxvrNgBnvzuBT5zHHW2OZVx2zqQhiNDruqUONzTxvSfXEh0Zyh+umG7jFsZ0gfTWLoVjycrK0pycHLfDOC5c9tdVHKxr5PUbT3c7FK+oKrc8n8u/P93L/337JGaPTnA7JGOChoisUdWsjraxj1em2xZMTmbLvhp2lveObqnnc4pYvHYvP5wzxpKFMd1gCcN0W+uiQr1hbqkt+w7yvy9vZPbowfzwLBu3MKY7LGGYbkuJ6cf04bFBv0bGoXrPuMWgfuE8cPl0QkPaq9g2xnTGEobpkQWZyWzce5DCqsNuh9IuVeWn/95AQUUtDy2aTuLASLdDMqbXsoRhemRBZgpA0F5lPL26kJfXFXPT3LGcPGqw2+EY06tZwjA9khbfn8mpMUE5jrGpuJpfvrKJ08YkcP2Zo90Ox5hezxKG6bH5mcl8uucAxQeOuB3KZ2rqGrn+ybXE9Q/ngcunEWLjFsb0mCUM02MLnGqp14PkKkNVuW3xBgr3H+EPV5zA4AE2bmGML1jCMD02MnEA45MHBk3C+L+PdvOf9SXcMm8sMzPi3Q7HmD7DEobxiQWZKXyyu4qymjpX49hQVM2dr+Zx5rhErjt9lKuxGNPXWMIwPrFgcjKq8MamUtdiOFjXyPVPrWXwgAjuvczGLYzxNUsYxifGJA1gVGI0r21wp7xWVfnR8+spPnCEP145nfjoCFfiMKYvs4RhfEJEWDg5hY93VVF5qD7g539sZQGvb9rHj+aP48QRNm5hjD9YwjA+Mz8zmeYWZdlm/3dLqSqFVYd5dX0xd/1nM79ZmsfcCUl857SRfj+3McerMLcDMH3HxJRBjBjcn6Ub97Fo5nCfHruqtoHcogPkFnoe64uqqaxtACAiLISTMgbz+0un4lmfyxjjD5YwjM+ICPMzk3nk/V1UH24kpn94t45zuKGJjXsPepJDkedRWHXEOYdnvGTO+CSmpsUydVgs45IHEhFmF8vG+JslDONTCzNT+Nu7O1mWV8olJw7rdPvG5ha27qthfVH1ZwliW2kNLc66Xqmx/ZiaFsNVJ41galosmakxDIi0H1tj3GC/ecanpgyLITW2H69vLPlSwlBVdlceJrfoAOucbqWNe6upb2oBILZ/OFOHxTJvUjJTh8UwZViszS5rTBCxhGF8qrVb6l+rdrOz/BA7ymtZ3yZBVB9pBCAqPITJqTFcNctz5TBtWCxp8f1sDMKYIGYJw/jcwsnJPPLBLubc+y4AoSHC2CEDWTg5manDYpkyLJaxQwYQFmrjDsb0JpYwjM9NT4vjf84ZR2RYCNPSYpk0NIZ+EaFuh2WM6SFLGMbnQkLE1p8wpg+yPgFjjDFesYRhjDHGK5YwjDHGeMUShjHGGK9YwjDGGOMVSxjGGGO8YgnDGGOMV0RV3Y7Bp0SkHNjtdhxeSgAq3A7Cj/ry+7P31nv15ffXk/c2QlUTO9qgzyWM3kREclQ1y+04/KUvvz97b71XX35//n5v1iVljDHGK5YwjDHGeMUShrsedjsAP+vL78/eW+/Vl9+fX9+bjWEYY4zxil1hGGOM8YolDBeISJqIvCMieSKySURucDsmXxORUBH5VERedTsWXxORWBF5QUS2ON/Dk92OyVdE5CbnZ3KjiDwtIlFux9RdIvKoiJSJyMY2bfEiskxE8p1/49yMsSeO8f5+5/xcrheRf4tIrC/PaQnDHU3ALao6AZgFXC8iE12OydduAPLcDsJPHgReV9XxwFT6yPsUkVTgh0CWqmYCocAid6PqkceA+Ue13Qa8papjgLec//dWj/Hl97cMyFTVKcA24HZfntAShgtUtURV1zrPa/D8wUl1NyrfEZFhwLnAP9yOxddEZBBwOvAIgKo2qOoBd6PyqTCgn4iEAf2BYpfj6TZVfQ+oOqr5QuBx5/njwEUBDcqH2nt/qvqmqjY5//0IGObLc1rCcJmIpAPTgY/djcSnHgB+BLS4HYgfjATKgX86XW7/EJFot4PyBVXdC/we2AOUANWq+qa7UfncEFUtAc8HNyDJ5Xj86VvAa748oCUMF4nIAOBF4EZVPeh2PL4gIucBZaq6xu1Y/CQMOAH4i6pOB2rp3d0an3H68y8EMoChQLSIXOVuVKY7ROSneLq+n/TlcS1huEREwvEkiydVdbHb8fjQbOACESkAngHmiMj/uRuSTxUBRaraekX4Ap4E0hfMBXaparmqNgKLgVNcjsnXSkUkBcD5t8zleHxORK4GzgO+pj6+b8IShgtERPD0geep6n1ux+NLqnq7qg5T1XQ8A6Zvq2qf+ZSqqvuAQhEZ5zSdBWx2MSRf2gPMEpH+zs/oWfSRAf02lgBXO8+vBl52MRafE5H5wI+BC1T1sK+PbwnDHbOBr+P59L3OeSx0OyjjtR8AT4rIemAa8BuX4/EJ56rpBWAtsAHP34dee1e0iDwNrALGiUiRiHwb+C1wtojkA2c7/++VjvH+/ggMBJY5f1f+6tNz2p3exhhjvGFXGMYYY7xiCcMYY4xXLGEYY4zxiiUMY4wxXrGEYYwxxiuWMIwxxnjFEoYxxhivWMIwxw0R+YqIFIrIIRGZ3s7rKiKj3YjNX0QkW0SKOnj9MRH5dSBj8paIFIjIXLfjMJ+zhGG6TESuFJEc5w9viYi8JiKnBuC8Pf2D/nvg+6o6QFU/9VVcfY2I/EREAnr3ejAnLvM5SximS0TkZjzTl/8GGAIMB/6MZ5bTYDcC2OR2EL3AQmCp20GY4GMJw3hNRGKAO4DrVXWxqtaqaqOqvqKq/+NsEykiD4hIsfN4QEQindeuEZEPjjrmZ1cNzqfMP4nIf0SkRkQ+FpFRzmvvObvkOlc2l7cTX4iI/ExEdjtLVz4hIjFOTIfwrCCXKyI7Onibc53lO/c7sUhHx3Ze+1K3T9vuFBGZ6VyRHRSRUhG5r812s0RkpYgcEJFcEcnu4Ov/YxHZ63xttorIWZ19zds5xnQRWesc41kg6qjX44CxwKrW9yUiP3Lec4mIXCQiC0Vkm4hUichP2uzb0fe+9Vi3tDnWN53XrgW+BvzI+d6+0iakaeJZbrRaRJ6VXrxkbJ+gqvawh1cPPMtBNgFhHWxzB56VvpKARGAlcKfz2jXAB0dtr8Bo5/ljeFYQm4ln3YkngWfa2/YY5/4WsB3PIkcD8EzP/a8u7K/Aq0AsniuncmB+Z8cGsvFMed72WAXAXOf5KuDrzvMBwCzneSpQiecTfQieyfAqgcR2YhsHFAJDnf+nA6O8+Jp/FhsQAewGbgLCgUuARuDXbc6zCHi6zb5NwM+d7b/jfE2ewjPB3SSgDhjpZRxNzjbhzns+DMS1+d7/up2v4Wo8a3PE45k59zq3fw+O54ddYZiuGAxU6OdLQLbna8AdqlqmquXAr/DMzOutxaq62jnHk3hmg/XW14D7VHWnqh7Cs57xIvEsN+qt36rqAVXdA7zT5vw9OXYjMFpEElT1kKp+5LRfBSxV1aWq2qKqy4AcPH9Mj9YMRAITRSRcVQtUtfVKyduv+Sw8f6wfUM+V4QvAJ0dtcy5f7I5qBO5Sz/oYzwAJwIOqWqOqm/B08U3xMo5G5/VGVV0KHMKTCDvykKoWq2oV8Apd+3kwPmYJw3RFJZDQyR/JoXg+xbba7bR5a1+b54fxfCL3VnvnDsMz1tLT8/fk2N/G082zRUQ+Ec+qhOAZU7nU6Y46ICIHgFOBlKMPoKrbgRuBXwJlIvKMiLR+Xb39mg8F9qqqHrUt4Ol2w3OV83qb1ytVtdl5fsT5t7TN60fo+GvUNo7Koz5sePP97cnPg/ExSximK1bh6YK4qINtivH8IWw13GkDz3Km/VtfEJFkH8fX3rmb+OIfOH8c++j3FYqnSwYAVc1X1SvwdNXcDbwgnnXAC/F0a8W2eUSrartrNKjqU6p6qhOHOsc6VmzFfFkJkNo6LtNm21YzgALn6qA7vI2jPbbOQi9gCcN4TVWr8fRn/8kZ/OwvIuEiskBE7nE2exr4mYgkikiCs33rEq25wCQRmeYMXv6yiyGU4hlDOJangZtEJEM866X/Bni2ky40b3V07G1AlIicK56ld3+Gp/sIABG5SkQSVbUFOOA0N+P5upwvIueISKiIRDmDw8OOPrmIjBOROc4gch2eT/atn/w7+pq3tQpPkvuhiISJyFfxjBe1Oro7qqu8jaM9nX1vTRCwhGG6RD1Lyt6M549iOZ5Pyd8HXnI2+TWefvj1eFZtW+u0oarb8Ax6LgfygS9UTHnhl8DjTvfNZe28/ijwL+A9YBeeP6w/6OI5juWYx3YS6feAfwB78VxxtK2amg9sciq1HgQWqWqdqhbiKUf+CZ9/Lf+H9n8vI/GsDleBp5smydkPOviat6WqDcBX8RQf7AcuxzN436qn5bRexXEMj+AZnzkgIi91urVxha24Z4xBRIYA6/BUYdkfBdMuu8IwxgDEADdbsjAdsSsMY4wxXrErDGOMMV6xhGGMMcYrXbkDtldISEjQ9PR0t8MwxpheZc2aNRWqmtjRNn0uYaSnp5OTk+N2GMYY06uIyO7OtrEuKWOMMV6xhGGMMcYrljCMMcZ4xRKGMcYYr1jCMMYY4xVLGMZ0UVNzCy0tNkOCOf4ENGGISJqIvCMieSKySURucNp/6axVvM55LGyzz+0ist1Zw/icQMZrzNGaW5SrHvmYU+9+m6UbSrCpdczxJNBXGE3ALao6Ac9ykdeLyETntftVdZrzWArgvLYIz9rB84E/O4vTGOOKf60q4KOdVYgI33tyLV9/ZDXby2rcDsuYgAhowlDVElVd6zyvwbOoe2oHu1wIPKOq9aq6C9jOFxd8MSZgCqsOc88bW8kel8i7/5PNHRdOYn3RAeY/8D7/b2keh+p9sU6TMcHLtTEMEUkHpgMfO03fF5H1IvKoiMQ5bal4FpVpVUQ7CUZErhWRHBHJKS/v7uqSxhybqnL74g0IcNdXJhMWGsI3Tk7n7Vuz+eoJqfztvZ2cde8KXl6317qpTJ/lSsJwlrh8EbhRVQ8CfwFGAdPwrDt8b+um7ez+pd9GVX1YVbNUNSsxscOpUIzplufXFPHB9gpuWziB1Nh+n7UnDIjknkum8u/vnULSwChueGYdix7+iK37rJvK9D0BTxjOmscvAk+q6mIAVS1V1WZnzeO/83m3UxGQ1mb3YXi/qLwxPlF2sI5fv7qZmRnxfG3m8Ha3mT48jpeun81vvjKZraU1LHzofX71yiYO1jUGOFpj/CfQVVKCZ+3ePGdt6Nb2lDabfQXY6DxfAiwSkUgRyQDGAKsDFa8xqsrPXtpIfVMLd188hZCQ9i56PUJDhCtPGs47t2SzaEYaj60sYM7vV/DCmiIrwzV9QqCvMGYDXwfmHFVCe4+IbBCR9cCZwE0AqroJeA7YDLwOXK+qzQGO2RzHlm7Yx5ubS7n57LFkJER7tU9cdAR3fWUyS64/lWFx/bn1+Vwu/dsqNhVX+zlaY/yrzy3RmpWVpTa9ufGF/bUNnH3/u6TE9OPf3zuFsNCuf75qaVFeWFvE3a9tYf/hBr520ghumTeW2P4RfojYmO4TkTWqmtXRNnantzHHcOermzlwuJF7LpnSrWQBEBIiXJaVxtu3ZvONk9N58uPdzLn3XZ5Zvce6qUyvYwnDmHa8s6WMxZ/u5XvZo5iQMqjHx4vpF84vL5jEqz84jVGJ0dy2eANf+fOH5BYe8EG0xgSGJQxjjlJT18hP/72BMUkDuH7OaJ8ee+LQQTz33yfzwOXTKK6u46I/f8jti9dTVdvg0/MY4w+WMIw5yt2vb6HkYB33XDKFyDDfz0QjIlw0PZW3bzmDb8/O4LmcIs78/Qr+9dFumq2bygQxSxjGtPHxzkr+76M9fGt2BtOHx3W+Qw8MjArnZ+dN5LUbTmNiyiD+96WNXPDHD1ize79fz2tMd1nCMMZR19jMbYs3MDy+P7fMGxuw844dMpCnvnMSf7xyOpWHGrj4Lyu55blcymvqAxaDMd6whGGM4/5l29hVUctvvzqZ/hFhAT23iHDelKG8dcsZfDd7FEty9zLn9yt49INdNDW3BDQWY47FEoYxwPqiA/z9/Z1cMTONU0YnuBZHdGQYP54/ntdvPJ1pw2O549XNnPvQB+ypPOxaTMa0soRhjnsNTS386IX1JA6M5PaFE9wOB4BRiQN44lsz+dvXT6SgspZ/rtzldkjGWMIw5q/v7mDLvhruumgyg6LC3Q7nMyLCOZOSOXnUYN7datP2G/dZwjDHtW2lNfzh7XwumDqUuROHuB1Ou7LHJrKzota6pYzrLGGY41Zzi/KjF9YzMCqcX5w/sfMdXHLGuCQAVmwrczkSc7yzhGGOW//8cBfrCg/wi/MnMnhApNvhHFNGQjQjBvdnhXVLGZcFej2MNBF5R0TyRGSTiNzgtP9ORLY4S7T+W0RinfZ0ETnSZir0vwYyXtN37a6s5fdvbmXuhCQumDrU7XA6lT02kZU7KqhrtNn9jXsCfYXRBNyiqhOAWcD1IjIRWAZkquoUYBtwe5t9dqjqNOdxXYDjNX2QqnLbixsIDwnh1xdNxrOuV3DLHpdEXWMLq3dVuR2KOY4FNGGoaomqrnWe1wB5QKqqvqmqTc5mH+FZitUYv3jmk0JW7azkJ+dOIDkmyu1wvDJr5GAiwkKsW8q4yrUxDBFJB6YDHx/10reA19r8P0NEPhWRd0XktGMc61oRyRGRnPJy+4Uyx7avuo7f/CePk0cOZtGMtM53CBL9IkKZNXIw79rAt3GRKwlDRAYALwI3qurBNu0/xdNt9aTTVAIMV9XpwM3AUyLypcUJVPVhVc1S1azExET/vwHTK3nW595AY0sLv724d3RFtZU9NpEd5bUUVll5rXFHwBOGiITjSRZPquriNu1XA+cBX1Nn3VhVrVfVSuf5GmAHELhZ4UyfsiS3mOV5Zdw6bxwjBnu3PncwyR7n+TC0YptdRRt3BLpKSoBHgDxVva9N+3zgx8AFqnq4TXuiiIQ6z0cCY4CdgYzZ9A2Vh+r51SubmZYWyzdnZ7gdTrdkJESTFt+Pd7dat5RxR2Cn5ITZwNeBDSKyzmn7CfAQEAksc7oJPnIqok4H7hCRJqAZuE5VrUzEdNmvXtlMTZ1nfe7QkN7VFdVKRMgem8SLa4uob2r2y+JOxnQkoAlDVT8A2vttXXqM7V/E031lTLct31zKktxibpo7lrFDBrodTo9kj0vkXx/t5pNd+zl1jHuz6prjk93pbfq0g3WN/OyljYxPHsh3s0e5HU6PnTxqMBGhIaywbinjAksYpk/7f0u3UFZTx90XTyEirPf/uPePCOOkkfE28G1c0ft/g4w5hpU7Knh69R6+c9pIpqbFuh2Oz5wxNpHtZYco2m/ltSawLGGYPulwQxO3vbiB9MH9uensvlWJnd06e63d9W0CzBKG6ZPue3Mbe6oOc/fFU4gK71vVRKMSoxkW1493rVvKBJglDNPnfLpnP49+uIurZg3npJGD3Q7H50SEM8YmsnJ7BQ1NLW6HY44jljBMn1Lf1MyPXlhP8qAofjx/vNvh+E32uCRqG5rJKbDbkkzgWMIwfcqf3tlBftkh7vrqZAYG0frcvnZKa3mtdUuZALKEYfqMvJKD/Pmd7Xx1eipnOgPDfVV0ZBgzMuLsfgwTUJYwTJ/Q1NzCj19cT2z/cP73vOBdn9uXsscmsa30EMUHjrgdijlOWMIwfcIjH+xifVE1v7ogk7joCLfDCYjPZq+18loTIJYwTK9XUFHLfcu2MW/iEBZOTnY7nIAZnTSA1Nh+1i1lAibQ05unicg7IpInIptE5AanPV5ElolIvvNvXJt9bheR7SKyVUTOCWS8pnf43ZtbCQsRfn1RZq9bFKknRIQzxiXyoZXXmgAJ9BVGE3CLqk4AZgHXi8hE4DbgLVUdA7zl/B/ntUXAJGA+8OfW9TGMAdiy7yBLN5TwzdkZJA3qHetz+1L22ERqG5pZs3u/26GY40BAE4aqlqjqWud5DZAHpAIXAo87mz0OXOQ8vxB4xll5bxewHZgZyJhNcHtweT4DIsL4r9N656JIPXXK6ATCQ4UVtta3CQDXxjBEJB2YDnwMDFHVEvAkFaC1JjIVKGyzW5HTZgybiw/y2sZ9fPPUDGL7Hx8D3UcbEBlG1oh43rWBbxMAriQMERmAZ2GkG1X1YEebttOm7RzvWhHJEZGc8nL7xTlePLB8GwOjwvj2qcfn1UWr7HGJbNlXQ0m1ldca/wp4whCRcDzJ4klVXew0l4pIivN6CtB6fV0EpLXZfRhQfPQxVfVhVc1S1azExET/BW+Cxsa91by5uZT/OnUkMf367h3d3midvdauMoy/BbpKSoBHgDxVva/NS0uAq53nVwMvt2lfJCKRIpIBjAFWBypeE7weWL6NmH7hfPPUdLdDcd3YIQNIiYmy+zGM3wV0TW9gNvB1YIOIrHPafgL8FnhORL4N7AEuBVDVTSLyHLAZT4XV9araHOCYTZDJLTzA8rwybp03lkF9eL4ob4kI2eMSeTW3hMbmFsJD7fYq4x8BTRiq+gHtj0sAnHWMfe4C7vJbUKbXeWD5NmL7h3PN7ON77KKtM8Ym8fTqQtbs3s+sPjiluwkO9lHE9Cpr9+znna3lXHv6SAZEBvoCOXjNHj2YsBCxbinjV5YwTK/ywPJ84qMjuPrkdLdDCSoDo8I5cUScrcJn/MoShuk11uyu4r1t5Vx3xkii7eriS7LHJZFXcpDSg3Vuh2L6KEsYpte4f1k+CQMiuGrWCLdDCUqts9daea3xF0sYplf4eGclH2yv4LozRtE/wq4u2jM+eSDJg6JsmhDjN5YwTK9w//JtJA6MtKuLDogIZ4xN5P38CpqabfZa43uWMEzQW7mjgo92VvG97FFEhdtkxR3JHpdITV0Ta/cccDsU0wdZwjBBTVV5YFk+QwZFcsXM4W6HE/Rmj0lwymutW8r4niUME9RW7qhkdUEV15852q4uvDAoKpwTRsTZ/RjGLyxhmKClqty3bBspMVFcPiOt8x0MAGeMTWRzyUHKrLzW+JglDBO03s+vYM3u/Vx/5mgiw+zqwlufldfaTXzGxyxhmKDUenWRGtuPy7Ls6qIrJqYMImlgJCssYRgfs4RhgtKKbeWsKzzA9+eMJiLMfky74rPy2m3lVl5rfCrQ62E8KiJlIrKxTduzIrLOeRS0TnsuIukicqTNa38NZKzGParK/cu2kRbfj0tOHOZ2OL1S9rgkDtY1sa7QymuN7wT6ltnHgD8CT7Q2qOrlrc9F5F6gus32O1R1WsCiM0Hhrbwy1hdVc8/FU2xth246dUwCoc7stVnp8W6HY/qIgP42qup7QFV7rzmr8V0GPB3ImExwUVXuX76NEYP785UTUt0Op9eK6RfOCcNjbZoQ41PB9PHtNKBUVfPbtGWIyKci8q6InHasHUXkWhHJEZGc8nIb6OvN3txcyqbig/xwzhi7uuih7HFJbNx7kLIaK681vhFMv5FX8MWrixJguKpOB24GnhKRQe3tqKoPq2qWqmYlJiYGIFTjDy0tygPL88lIiObCaUPdDqfXO2Os53fhvW0VLkdi+oqgSBgiEgZ8FXi2tU1V61W10nm+BtgBjHUnQhMIb2zaR17JQW44awxhdnXRYxNTBpEwINKmCTE+Eyy/lXOBLapa1NogIokiEuo8HwmMAXa6FJ/xs9ari1GJ0Zw/1a4ufCEk5PPZa5tb1O1wTB8Q6LLap4FVwEXW1ZgAAB1pSURBVDgRKRKRbzsvLeLLg92nA+tFJBd4AbhOVdsdMDe939KNJWwtreGGuWMJDRG3w+kzssclUn2k0cprjU8EtKxWVa84Rvs17bS9CLzo75iM+5pblAeX5zMmaQDnTk5xO5w+5bQxCYQIvLu1jBNHxLkdjunlgqVLyhzHXl1fTH7ZIW60qwufi+0fwfThcTZNiPEJSxjGVc0tyoNv5TM+eSALMpPdDqdPyh6byPqiaioO1bsdiunlLGEYVy3J3cvO8lpunDuGELu68IvscUkAvGdXGaaHLGEY1zQ1t/Dg8nwmpgxi3kS7uvCXSUMHkTAgwhZVMj1mCcO45qV1xRRUHrarCz8LCRFOH5PIe/nlVl5resQShnFFY3MLD72VT2bqIM6eOMTtcPq8M8YlcuBwI7lFVl5rus8ShnHFv9fuZU/VYW6aOxbPvJPGn04fk+iU11q3lOk+Sxgm4BqaWnjo7XymDothzvgkt8M5LsRFRzA1LdbKa02PWMIwAffi2iKK9h/hprPt6iKQsscmsb7oAJVWXmu6yRKGCaj6pmb++PZ2pg+P/Ww2VRMY2eMSUYX38232WtM9ljBMQD2XU8TeA0e42a4uAm5yagzx0RE2e63pNksYJmDqGpv58zvbyRoRx6mjE9wO57jjKa9N4L38ClqsvNZ0gyUMEzDPflJISXWdXV24KHtcElW1DazfW+12KKYXCvT05o+KSJmIbGzT9ksR2Ssi65zHwjav3S4i20Vkq4icE8hYjW/VNTbz5xXbmZkRz8mjBrsdznHr9LGJiGDdUqZbAn2F8Rgwv532+1V1mvNYCiAiE/GskzHJ2efPrQsqmd7nqY/3UHqw3q4uXBYfHcGUYbE2TYjploAmDFV9D/B2EaQLgWecpVp3AduBmX4LzvjNkYZm/vLuDk4ZNZhZI+3qwm3ZYxPJLTrA/toGt0MxvUywjGF8X0TWO11Wrau8pAKFbbYpctq+RESuFZEcEckpL7dPTsHmyY93U15Tz01n25LswaC1vPa9fPtdMV0TDAnjL8AoYBpQAtzrtLfXb9FuaYeqPqyqWaqalZhotf3B5HBDE399dwenjUlgRnq82+EYYMqwWOL6h9s0IabLXE8Yqlqqqs2q2gL8nc+7nYqAtDabDgOKAx2f6Zl/rdpNxaEGbpxrVxfBIjREOH1sIu9uK7fyWtMlricMEWm7iPNXgNYKqiXAIhGJFJEMYAywOtDxme6rrW/ib+/t5IyxibaedJDJHpdIZW0DG4utvNZ4LyyQJxORp4FsIEFEioBfANkiMg1Pd1MB8N8AqrpJRJ4DNgNNwPWq2hzIeE3PPL6qgKraBhu7CEKnjfF03a7YWs6UYbEuR2N6i4AmDFW9op3mRzrY/i7gLv9FZPylpq6Rh9/byZzxSUxLsz9IwSZhQCRThsWwYmsZPzxrjNvhmF7C9S4p0zc9vrKAA4cbucnGLoJW9thE1hUe4MBhK6813rGEYXyusOow/7+9O4+Psjr7P/65sickISzZCDtkIYCyRBaRALKI6CPy0Fo3pMID1mpFsS1in7bqT1t3LRUXUDZF1IIWsIJERKCIYIJsCYQlbCEhC0gWQrbJef7IwC9lkQCTuWcm1/v1ymtmzmzfGyZz5T73uc+ZtS6LYV0i6d66qdVx1EUMio+gxsA6nb1W1ZMWDOVQhaUV3DdnMyLC9FEJVsdRP6FHmzDCdHitugxaMJTDlFZUc//c78ktOs2cXybRKTzY6kjqJ3h7CQNjdXitqj8tGMohKqpt/Or9NDJyi3nznl70bqcn6bmDwXHhFJZWkJFbbHUU5Qa0YKirVlNjePyTbfx7XyEvjr2GGxMirY6k6ik57szwWp29Vl2aFgx1VYwxPL08nc+35/LkqATG9m5tdSR1GcJD/OkWE6qz16p60YKhrsrfv97H/I2HmJzckcnJnayOo67A4LgIthz+kaKyKqujKBenBUNdsYWbDvFqyh7+u1cMT4zUEVHuanB8ODUG1u/TvQz107RgqCuycmcuf/znTm5MiOCFsdfg5aWLIrmrHm3CCA3w0W4pdUlaMNRl+3Z/IY8s2krPts2YeXcvfL31Y+TOfLy9GKiz16p60N90dVl2Hi1i8oI02rcM4r3xSQT66aq5nmBwXDgFJRXsOqbDa9XFObVg2FfUyxeRnXXaXhKR3fYV9z4TkTB7e3sROS0iW+0/bzszqzrfoeOn+OXc7wkN8GH+hD6EBflZHUk5yKD4/z97rVIX4+w9jHnAyHPaUoBuxphrgD3A9Dr37TfG9LD//MpJGdUF5JeUM+69zdhqalgwsS/RTQOtjqQcKCIkgK6tQnWaEPWTnFowjDHrgBPntK0yxlTbb35H7cp6yoUUl1fxyznfU1hawdz7+9A5Qqf88ESD4sJJO/wjRad1eK26MFc7hjEBWFHndgcR+UFE1orIQKtCNWblVTYmzU9lT14Jb9/bW9e28GCD4yOw1Rg27NPZa9WFuUzBEJE/ULuy3kJ7Uy7Q1hjTE5gKfCgioRd57mQRSRWR1IIC3aV2FFuN4dGPtrLpwAleuePas9NIKM/Uq20YIQE+Ok2IuiiXKBgiMh64FbjHGGMAjDEVxpjj9utpwH7ggqvxGGNmGWOSjDFJ4eH6peYIxhj+9587WZl+jD/dmsjoHjFWR1INzMfbi4GxLVm7pwD7r6FS/8HygiEiI4FpwG3GmLI67eEi4m2/3hGIBbKsSdn4vJayh0WbD/PQkE5MuKGD1XGUkwzrEklecQWrd+lehjqfs4fVLgI2AvEiki0iE4E3gBAg5Zzhs8nAdhHZBiwGfmWMOXHBF1YONW/DAWZ8vY87r2vDb0fEWx1HOdF/XduK9i2CePHL3dj0JD51Dh9nvpkx5q4LNL93kccuAZY0bCJ1ruXbcnj68wxGJEby7O3dENEpPxoTX28vfndTAg99uIUlW7K5I6mN1ZGUC7G8S0q5jvV7C5j6yVaua9ecGXf1xEen/GiURnWP4trWTXktZQ/lVTar4ygXot8ICoBtR07ywPtpdAoPZvb4JAJ8dcqPxkpEeOLmLuQWlTP/24NWx1EuRAuGYn9BKffP+54WwX4smNCHpoG+VkdSFuvfqQWD48OZuWYfJ8sqrY6jXIQWjEYur7ic+97bjAALJvQlIjTA6kjKRUwbmUBJRTVvfbPf6ijKRWjBaMSKyqq4773NnCyrZN79fejQsonVkZQL6RIdypieMcz99iA5J09bHUe5AC0YjdTpShsT53/PgcJTzL4vie6tm1odSbmgqcPjwMCrKXusjqJcgBaMRqjaVsPDH24h7fCPvH5nD67v3NLqSMpFtW4WxH3927FkSza7da2MRk8LRiNjjGH6pztYvTufZ0Z3Y1T3aKsjKRf30JDOBPv78NLKTKujKItpwWhkXliZyT/SspkyNJZx/dpZHUe5gWZN/HhwcCdW785nU9Zxq+MoC2nBaETeXZ/F22v3c0/ftjw6LNbqOMqNTBjQgajQAP66YrdOTNiIacFoJJZuPcqz/9rFqO5RPDNap/xQlyfA15vHhsey9chJvkw/ZnUcZREtGI1Afkk5f/hsJ33aN+e1X/TA20uLhbp8Y3u1pnNEMC+uzKTKVmN1HGUBLRiNwAsrMqmotvH82O74++iUH+rK+Hh7MW1kAlmFp/gk9YjVcZQFnD29+RwRyReRnXXamotIiojstV82q3PfdBHZJyKZInKTM7N6irRDP7JkSzYTb+hIx3Bdi1tdnWFdIkhq14zXv9pLWWW11XGUkzl7D2MeMPKctieA1caYWGC1/TYikgjcCXS1P+fNMwsqqfqx1RieWpZOZKg/v7mxs9VxlAcQEaaPSqCgpIL31h+wOo5yMqcWDGPMOuDcRZBGA/Pt1+cDt9dp/8i+VOsBYB/QxylBPcQnqUfYcbSIJ0d1oYm/U5c+UR6sd7vmjEiM5J11WRwvrbA6jnIiVziGEWmMyQWwX0bY22OAuh2l2fa284jIZBFJFZHUgoKCBg3rLk6WVfLiyt30ad+c265tZXUc5WF+PzKesspq/v71PqujKCdyhYJxMRcaynPBAeDGmFnGmCRjTFJ4eHgDx3IPr6bsoeh0FU/d1lWH0CqH6xwRwh1JbVi46RCHj5dZHUc5iSsUjDwRiQawX55ZfT4bqLs+ZGsgx8nZ3FJGTjEffHeIe/u1I7FVqNVxlId6dFgc3l7CKyk6ZUhj4QoFYxkw3n59PLC0TvudIuIvIh2AWGCzBfncijG1B7qbBvrWzjSqVAOJahrAhAEdWLo1h51Hi6yOo5zA2cNqFwEbgXgRyRaRicDzwHAR2QsMt9/GGJMOfAJkACuBh4wxusDwJSzblsPmgyf43U0JhAX5WR1HebgHBnUiLMiXF1butjqKcgKnDp0xxtx1kbuGXuTxzwHPNVwiz3Kqopq/fLGLbjGh/OK6Npd+glJXqWmgLw8P6cyz/9rF+r0FDIzVY4iezBW6pJSDvLFmH3nFFTx9Wzed/kM5zbj+7YgJC+T5FbupqdGJCT2ZFgwPkVVQyrvrsxjbqzW92zW79BOUchB/H28eHxFHek4xy7fruBRPpgXDAxhjeObzDPx9vJl2c7zVcVQjdHuPGLpEh/Lyqkwqq3ViQk+lBcMDrN6VzzeZBTw6LJaIkACr46hGyMtLmDYyniMnTrNw0yGr41zQ0ZOneWTRDzy9PJ2N+49TrTPuXjadL8LNlVfZeObzDDpHBDP++vZWx1GN2KC4cK7v1IK/f72Pn/VuTUiAr9WRztp84AQPfpDG6Sob1TWGuRsO0izIl6FdIhmRGElyXDgBvjpV3aVowXBz767P4vCJMj6Y2Bdfb91hVNYREaaNTGD0zA3MXpfF1BGu0T364abD/HnZTto0C+LjB/oT3TSAdXsKWJWRx6r0YyxOyybQ15vkuJaMSIxiaJcIHZJ+EVow3FjOydPMXLOfkV2juCG2pdVxlOLaNmHcck00s9cf4N5+7YgIta6LtMpWwzPLM3j/u0MMigtnxl09aRpYu9dzc/dobu4eTZWthk1ZJ1iVcYxV6Xl8mZ6Ht5fQt0PtBIvDu0YRExZo2Ta4GvG09XmTkpJMamqq1TGc4qEPt/BVRh5fTR1Em+ZBVsdRCoCDhacY9upafnFdG54b092SDMdLK/j1wi1sOnCCB5I78vuRCZccam6MYXt20dnisTe/FIBuMaHclBjFiK5RxEUGe+zcbCKSZoxJ+snHaMFwT9/uL+Tu2Zt4bFgcU4bFWh1Hqf/wp6U7WbjpMCmPJTt94a6MnGImLUiloLSCF8Z2Z0zP1lf0OlkFpWe7rbYcPglAuxZB3NQ1ihGJkfRs28yjznfSguGhqmw13DJjPWWVNr6aOkgP1imXU1BSweCX1pAcF85b9/Z22vuu2JHL1E+2ERrow6xxSVzbJswhr5tfXE7KrjxWpefx7f5CqmyGlsF+DE+MZERiFP07tXD738P6FAw9huGG3t94iD15pbwzrrfbf0iVZwoP8WdSckde/2ovWw7/SK+2DXsyaU2N4fXVe5mxei8924bxzr29HXr8JCI0gHv6tuOevu0oKa/im8wCvkw/xvJtuSzafIQmft4Mjo9gRNdIhiREEOpCI8QcSfcw3ExhaQVDXv6GHm3CWDChj8f2pyr3V1pRzeCX1tAxPJiPJ/drsM9qaUU1j3+ylS/T8/h579Y8O6Yb/j7O+UOqotrGxv3HWZWRR0pGHgUlFfh6C/06tmBE1yhuSoy09MD/5dAuKQ/0+8Xb+HTLUVY+mkznCOf2DSt1uRZsPMiflqYz55dJ3JgQ6fDXP3y8jEkLUtlXUMofRnXh/gHtLfsjqqbG8MORk2cPmh8oPIWPlzA5uSOPDI11+d4AtyoYIhIPfFynqSPwJyAMmAScWXv1SWPMFxd7HU8uGFuPnOT2mRuYnNyRJ0d1sTqOUpdUZath+Ktr8ffx5ospAx16kPjbfYX8+sMtGAMz7+7lUkPLjTHsyy/lnXVZLE7Lpm3zIJ4b082lZ/OtT8FwmTO9jDGZxpgexpgeQG+gDPjMfvdrZ+77qWLhyWpqDH9eupOIEH9+c2Nnq+MoVS++3l789qZ4MvNK+HRLtkNe0xjDvA0HGDdnMxEh/ix7eIBLFQuoPYkxNjKEl39+LYsm9cPHSxj33mYe/egHCksrrI53xVymYJxjKLDfGOOak9JYYHFaNtuyi5g+KsGlplxQ6lJGdYvmmtZNeTVlD+VVV7cGWkW1jSeW7OCp5RncmBDBp78eQLsWTRyUtGH079SCL6YMZMrQWL7YcYyhr6zl4+8Pu+VU8K5aMO4EFtW5/bCIbBeROSJy3nALEZksIqkiklpQUHDu3W6v6HQVL6zcTVK7ZtzeI8bqOEpdFi8v4YmbE8gtKmfBxoNX/Dr5JeXcPXsTH6ce4ZEbO/POvb0J9nePgZ4Bvt48NjyOL6YMJD4qhGlLdnDnrO/Yl19idbTL4nIFQ0T8gNuAf9ib3gI6AT2AXOCVc59jjJlljEkyxiSFh7tuH+GVei1lDyfKKnnqtq46Kkq5pes7tWRQXDgz1+ynqKzqsp+/Pfsko9/YQEZOMTPv7sXUEfF4ueFJc50jgvloUj9eHHsNmXkl3Py39Q7Z83IWlysYwM3AFmNMHoAxJs8YYzPG1ACzgT6WpnOyzGMlvP/dIe7u05ZuMU2tjqPUFZs2MoHi8ireXLvvsp63dOtRfv72RrxEWPxgf265JrqBEjqHl5dwx3VtWP34IG7pHs2M1XsZ9bf1fLu/0Opol+SKBeMu6nRHiUjdT8cYYKfTE1nEGMOfl+0kJMCH37rIzJ9KXanEVqGM6RHD3A0HyTl5+pKPt9UY/rpiF1M+2kqPNmEse3gAXVt5zh9NLYP9ef3Onrw/sQ82Y7h79iYe/2QbJ05VWh3tolyqYIhIEDAc+LRO84siskNEtgNDgMcsCWeBf+3I5busEzw+Ip5mTXS6ZeX+HhseB6a2m/WnFJ2uYuL873lnbRb39mvLB//TlxbB/k5K6VwDY8P58tFkHhrSiaVbjzL0lW9YkpaNq5zyUJfLnIfhKJ5yHkZZZTVDX1lLsyA/lv/mBo+a5Ew1bs9+nsGcDQdYMSWZ+KiQ8+7fX1DKpAWpHD5extOju3JP33YWpLRG5rESnvxsB2mHfuT6Ti14bkx3OrR0zigwtzoPQ/2nN9fsJ7eonGdGd9VioTzKQ0M608TPh5e+3H3efWsy87l95gaKyqr4cFK/RlUsAOKjQvjHA/15bkw3dhwt4qbX1zFj9V4qql3joLgWDBd0sPAUs9ZlMaZnDEntm1sdRymHatbEj18N7sRXu/LZfOAEUHu87p21+5kw73vaNAti6cMD6NOhcX72vbyEe/q2Y/XjgxiRGMmrKXu4Zca/z/5bWZrN6gDqfP/v8wx8vYXpNydYHUWpBjFhQAciQ/3564pdnK608djHW/nrit2M6h7N4gf707qZLggWERLAG3f3Yu7913G60sYd72zkiSXbOVlm3UFxLRguZs3ufFbvzueRobFuM8ulUpcr0M+bx4bF8cPhkwx7dS1Lt+Xwu5vieeOungT5ucfJeM4yJD6ClKnJPJDckX+kZdf+e209aslBcS0YLqSi2sbTy9PpGN6E+wd0sDqOUg3qZ71bExsRTNHpKmaPS+KhIZ31xNSLCPLzYfqoLix/+AZimgUx5aOt3DdnM4eOn3JqDh0l5ULe/GYfL67MZMGEPiTHed4Z60qd63hpBbYao3vTl8FWY/jgu0O89GUmVbYapgyLZdLAjvh6X93f/zpKyo0cKyrnja/3MSIxUouFajRaBPtrsbhM3l7C+Ovb89XUQQyJj+DFlZncOuPfpB36scHfWwtGHVbubf3li13Yagx/vDXRsgxKKfcR1TSAt8f1ZvZ9SRSXV/Gzt7/lj//c2aCz4OrRJbuyymoGvrCG+KgQurYKJbFVKInRTekY3uSqd/Uu5bus4yzblsMjQ2Np01xHhyil6m94YiT9O7XgtZQ9nK6yNeikjFow7E5X2hieGElGbjHzNx6isroGAD8fL+IjQ0iMDqVrTCiJ0aEkRIc6bFrlalsNTy1LJyYskAcHdXLIayqlGpdgfx/+eGtig/eSaMGwaxHsz/NjrwFqv8SzCk+RkVNMek4RGbnFrMo4xsepR84+vn2LIBJbhdK1VVMSo2v3SCJC/C97lMfCTYfZfayEt+7pRaCfa6/5q5RybQ09ykwLxgX4eHsRFxlCXGQIt/esXbDIGMOx4nIycoprf3KL2Xm0mC92HDv7vBZN/Gq7slrV7ol0bRVKh5bBF53a43hpBa+syuSGzi0Z2S3KKdumlFJXSgtGPYkI0U0DiW4ayNAukWfbi8ur2J1bQoZ9TyQjt5i5/z5Ipa22SyvA14v4qNricWZPJCEqhCA/H15elUlZpY2nbkvU8edKKZfnUgVDRA4CJYANqDbGJIlIc+BjoD1wELjDGNPw48fqKTTAlz4dmv/HvDeV1TXsLyg9uyeSkVPMv7bn8uGmwwCIQIeWTThQeIqJAzrQOeL8GTuVUsrVuFTBsBtijKm79NQTwGpjzPMi8oT99jRrotWPn48XXaJD6RIdylh7mzGGnKJy0o8WnS0iMWGBPDIs1tKsSilVX65YMM41Ghhsvz4f+AYXLxgXIiLEhAUSExbIiK56vEIp5X5c7cQ9A6wSkTQRmWxvizTG5ALYLyPOfZKITBaRVBFJLSgocGJcpZRqPFxtD2OAMSZHRCKAFBE5f4WVCzDGzAJmQe1cUg0ZUCmlGiuX2sMwxuTYL/OBz4A+QJ6IRAPYL/OtS6iUUo2XyxQMEWkiIiFnrgMjgJ3AMmC8/WHjgaXWJFRKqcbNlbqkIoHP7Ocj+AAfGmNWisj3wCciMhE4DPzcwoxKKdVouUzBMMZkAddeoP04MNT5iZRSStXlMl1SSimlXJvHrbgnIgXAIatz1FNLoPCSj3Jfnrx9um3uy5O372q2rZ0x5idXb/O4guFORCT1UksiujNP3j7dNvflydvX0NumXVJKKaXqRQuGUkqpetGCYa1ZVgdoYJ68fbpt7suTt69Bt02PYSillKoX3cNQSilVL1owlFJK1YsWDAuISBsRWSMiu0QkXUSmWJ3J0UTEW0R+EJHPrc7iaCISJiKLRWS3/f+wv9WZHEVEHrN/JneKyCIRCbA605USkTkiki8iO+u0NReRFBHZa79sZmXGq3GR7XvJ/rncLiKfiUiYI99TC4Y1qoHHjTFdgH7AQyKSaHEmR5sC7LI6RAP5G7DSGJNA7XQ2HrGdIhIDPAIkGWO6Ad7AndamuirzgJHntJ1ZwTMWWG2/7a7mcf72pQDdjDHXAHuA6Y58Qy0YFjDG5Bpjttivl1D7hRNjbSrHEZHWwC3Au1ZncTQRCQWSgfcAjDGVxpiT1qZyKB8gUER8gCAgx+I8V8wYsw44cU7zaGpX7sR+ebtTQznQhbbPGLPKGFNtv/kd0NqR76kFw2Ii0h7oCWyyNolDvQ78HqixOkgD6AgUAHPtXW7v2qfjd3vGmKPAy9TOCp0LFBljVlmbyuEuuYKnB5kArHDkC2rBsJCIBANLgEeNMcVW53EEEbkVyDfGpFmdpYH4AL2At4wxPYFTuHe3xln2/vzRQAegFdBERO61NpW6EiLyB2q7vhc68nW1YFhERHypLRYLjTGfWp3HgQYAt4nIQeAj4EYR+cDaSA6VDWQbY87sES6mtoB4gmHAAWNMgTGmCvgUuN7iTI7m8St4ish44FbgHuPgE+20YFhAaleJeg/YZYx51eo8jmSMmW6MaW2MaU/tAdOvjTEe81eqMeYYcERE4u1NQ4EMCyM50mGgn4gE2T+jQ/GQA/p1ePQKniIyEpgG3GaMKXP062vBsMYAYBy1f31vtf+MsjqUqrffAAtFZDvQA/iLxXkcwr7XtBjYAuyg9vvBbafREJFFwEYgXkSy7at2Pg8MF5G9wHD7bbd0ke17AwgBUuzfK2879D11ahCllFL1oXsYSiml6kULhlJKqXrRgqGUUqpetGAopZSqFy0YSiml6kULhlJKqXrRgqGUUqpe/g/UmGWwJep/PwAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Trend of SalePrice\n", + "\n", + "fig, axes = plt.subplots(nrows=3,ncols=1,figsize=(6,12),)\n", + "axes[0].plot(df.groupby('YrSold')['SalePrice'].mean());\n", + "axes[0].set_title('Mean of SalePrice/year');\n", + "axes[1].plot(df.groupby('MoSold')['SalePrice'].mean());\n", + "axes[1].set_title('Mean of SalePrice/month');\n", + "axes[2].plot(df.groupby('MoSold')['SalePrice'].count());\n", + "axes[2].set_title('Count of house sold/month');" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Findings: \n", + "- Avg. SalePrice went down since 2007 \n", + "- Avg. SalePrice were higher in the second half of the year \n", + "- High Season for buying houses was from around May to Aug" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2. Data Cleaning & Manipulations\n", + "1. Missing Data\n", + "2. Convert data types\n", + "3. Distribution of dependent variable\n", + "4. Outliers" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2.1 Missing Values" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "PoolQC 0.995205\n", + "MiscFeature 0.963014\n", + "Alley 0.937671\n", + "Fence 0.807534\n", + "FireplaceQu 0.472603\n", + "LotFrontage 0.177397\n", + "GarageYrBlt 0.055479\n", + "GarageType 0.055479\n", + "GarageFinish 0.055479\n", + "GarageQual 0.055479\n", + "GarageCond 0.055479\n", + "BsmtFinType2 0.026027\n", + "BsmtExposure 0.026027\n", + "BsmtFinType1 0.025342\n", + "BsmtCond 0.025342\n", + "BsmtQual 0.025342\n", + "MasVnrArea 0.005479\n", + "MasVnrType 0.005479\n", + "Electrical 0.000685\n", + "dtype: float64" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "(df.isnull().sum()[df.isnull().sum()>0]/len(df)).sort_values(ascending=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##### Looking into each column and determine how to handle the missing values: \n", + "- Drop columns \n", + "- Set to 0 / Set to mean \n", + "- Impute categorical data: Set to 'None' / Set to most frequent category\n", + "- Remove rows" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "# Drop: 'Id'(duplicated as index),'PoolQC', 'MiscFeature', 'Alley', 'Fence', 'FireplaceQu'\n", + "# High proportions of houses do not have the above features as value is NaN. \n", + "to_drop = ['Id','PoolQC', 'MiscFeature', 'Alley', 'Fence', 'FireplaceQu']\n", + "\n", + "df = df.drop(to_drop,axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/ironhack/lib/python3.7/site-packages/ipykernel_launcher.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \"\"\"\n", + "/Users/ivyip/miniconda3/envs/ironhack/lib/python3.7/site-packages/ipykernel_launcher.py:6: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n" + ] + }, + { + "data": { + "text/plain": [ + "MasVnrArea 0\n", + "LotFrontage 0\n", + "dtype: int64" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Set to 0:\n", + "# 'LotFrontage': Meaning the house has no access to street\n", + "# 'MasVnrArea': Meaning no Masonry veneer area\n", + "\n", + "df['LotFrontage'][df['LotFrontage'].isnull()==True] = 0\n", + "df['MasVnrArea'][df['MasVnrArea'].isnull()==True] = 0\n", + "\n", + "#Check\n", + "df[['MasVnrArea','LotFrontage']].isnull().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/ironhack/lib/python3.7/site-packages/ipykernel_launcher.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " import sys\n" + ] + } + ], + "source": [ + "# Set to 'None': Represent no Garage/Basement/Masonry veneer area\n", + "# 'GarageType', GarageFinish', 'BsmtFinType2', 'BsmtExposure','BsmtFinType1','MasVnrType'\n", + "\n", + "none_cols = ['GarageType', 'GarageFinish', 'BsmtFinType2', 'BsmtExposure','BsmtFinType1','MasVnrType']\n", + " \n", + "for col in none_cols:\n", + " df[col][df[col].isnull()==True] = 'None'" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/ironhack/lib/python3.7/site-packages/ipykernel_launcher.py:4: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " after removing the cwd from sys.path.\n" + ] + } + ], + "source": [ + "# Set to mean: Set the value to mean therefore it will not affect distribution of this column. \n", + "# - 'GarageYrBlt'\n", + "\n", + "df['GarageYrBlt'][df['GarageYrBlt'].isnull()]=df['GarageYrBlt'].mean()" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "TA 1311\n", + "Fa 48\n", + "Gd 14\n", + "Po 3\n", + "Ex 3\n", + "Name: GarageQual, dtype: int64" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Imputation: 'GarageQual','GarageCond','BsmtCond', 'BsmtQual'\n", + "# - Quality or condition categorical value will later be converted to numeric values for plotting and modeling. \n", + "# Therefore we need to select a category to replace the NaN values.\n", + "# - Assign NaN values to the most popular category in the column \n", + "\n", + "# Check current value counts:\n", + "df['GarageQual'].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "TA 1392\n", + "Fa 48\n", + "Gd 14\n", + "Po 3\n", + "Ex 3\n", + "Name: GarageQual, dtype: int64" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "imputer = SimpleImputer(strategy=\"most_frequent\")\n", + "df[['GarageQual','GarageCond','BsmtCond', 'BsmtQual']] = imputer.fit_transform(df[['GarageQual','GarageCond','BsmtCond', 'BsmtQual']])\n", + "\n", + "# Check new value counts:\n", + "df['GarageQual'].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# Remove rows:'Electrical'\n", + "# Considering the missing values of electrical system type is very low. Remove those records with missing values.\n", + "\n", + "df = df.drop(df.loc[df['Electrical'].isnull()==True].index)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 75\n", + "dtype: int64" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.isnull().sum().value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2. 2 Convert data types" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "# Convert data type 'object' to 'category' for plotting\n", + "for col in df.select_dtypes('object'):\n", + " df[col] = df[col].astype('category')" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "# A few columns with categorical values can be converted to numeric as they are with ordinal scale\n", + "# Convert into numeric values\n", + "\n", + "ord_cols = ['ExterQual','ExterCond','BsmtQual','BsmtCond','HeatingQC','KitchenQual','GarageQual','GarageCond']\n", + "\n", + "ord_scale = {'Ex': 5,\n", + " 'Gd':4,\n", + " 'TA':3,\n", + " 'Fa':2,\n", + " 'Po':1}\n", + "\n", + "for col in ord_cols:\n", + " df.replace({col:ord_scale},inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "df[ord_cols] = df[ord_cols].astype(int)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2.3 Distribution of dependent variable" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Distribution of dependent variable - SalePrice\n", + "sns.distplot(df['SalePrice'], fit=stats.norm);" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Distribution of SalePrice is slightly right skewed which may not be optimal for regression model\n", + "# Attempt to adjust skewed distribution with log function\n", + "sns.distplot(np.log(df['SalePrice']), fit=stats.norm);" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "# Logarithm of SalePrice fits normal distribution and therefore will be better to be used for linear regression\n", + "# Add a column \n", + "df = df.assign(sp_log=np.log(df['SalePrice']))" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 1459.000000\n", + "mean 12.024048\n", + "std 0.399589\n", + "min 10.460242\n", + "25% 11.774905\n", + "50% 12.001505\n", + "75% 12.273731\n", + "max 13.534473\n", + "Name: sp_log, dtype: float64" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['sp_log'].describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2.4 Outliers\n", + "- Plot to visualize observations and find outliers (Numerical variables only)\n", + "- We will focus on variables that are highly related to SalePrice" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "46" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Number of Numeric independent variables : 47 - 2 (SalePrice & sp_log) = 45\n", + "len(df.select_dtypes(np.number).columns)" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "OverallQual 0.817368\n", + "GrLivArea 0.700941\n", + "GarageCars 0.680645\n", + "ExterQual 0.678956\n", + "KitchenQual 0.668011\n", + "BsmtQual 0.657218\n", + "GarageArea 0.650916\n", + "TotalBsmtSF 0.612642\n", + "1stFlrSF 0.597218\n", + "FullBath 0.594891\n", + "YearBuilt 0.586827\n", + "YearRemodAdd 0.565822\n", + "TotRmsAbvGrd 0.534436\n", + "GarageYrBlt 0.500682\n", + "Name: sp_log, dtype: float64" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Select the column whose correlation coefficient with SalePrice is more than 0.5\n", + "df.corr()['sp_log'][abs(df.corr()['sp_log'])>0.5].sort_values(ascending=False)[2:]" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['OverallQual',\n", + " 'GrLivArea',\n", + " 'GarageCars',\n", + " 'ExterQual',\n", + " 'KitchenQual',\n", + " 'BsmtQual',\n", + " 'GarageArea',\n", + " 'TotalBsmtSF',\n", + " '1stFlrSF',\n", + " 'FullBath',\n", + " 'YearBuilt',\n", + " 'YearRemodAdd',\n", + " 'TotRmsAbvGrd',\n", + " 'GarageYrBlt']" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# In total 14 cols\n", + "corr_cols = list(df.corr()['sp_log'][abs(df.corr()['sp_log'])>0.5].sort_values(ascending=False)[2:].index)\n", + "corr_cols" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Visualize observations (SalePrice with Corr_cols) \n", + "# Check outliers\n", + "fig, ax = plt.subplots (nrows=7,ncols=2,figsize = (16,30))\n", + "\n", + "i=0\n", + "for row in range(0,7):\n", + " for col in range(0,2):\n", + " sns.regplot(data=df,x=corr_cols[i], y='sp_log', ax=ax[row,col]);\n", + " i+=1" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "- The following observations have high value on features but unexpectedly low selling price. \n", + "- We will remove those outliers to improve accuracy of regression model " + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [], + "source": [ + "# GriLivArea: the two biggest values with more than 4000 sqft\n", + "df = df.drop(df.nlargest(2,'GrLivArea').index)" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "# GarageArea: the biggest 4 values with more than 1200 sqft\n", + "df = df.drop(df.nlargest(4,'GarageArea').index)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [], + "source": [ + "# TotalBsmtSF: the biggest value with more than 6000 sqft\n", + "df = df.drop(df.nlargest(1,'TotalBsmtSF').index)" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "# 1stFlrSF: the biggest 4 values with more than 4000 sqft\n", + "df = df.drop(df.nlargest(1,'1stFlrSF').index)" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [], + "source": [ + "# TotrmsAbuGrd: the highest number with more than 14 rooms above ground\n", + "df = df.drop(df.nlargest(1,'TotRmsAbvGrd').index)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 3. Data Exploration\n", + "\n", + "Visualizations:\n", + "1. Categorical Variables: Boxplot\n", + "2. Numeric Variables: Heatmap" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 3.1 *Categorical Variables*" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "30" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Number of categorical independent variables : 30\n", + "len(df.select_dtypes('category').columns)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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5FUpXW97zz33ZJzOVnNz89DgXDU1NUW9NVApe9e73pUwfdZZZ41qO83NzaqpCcrTYr6+tUXZCwAAQJXo7u7W3r17tWnTpoLuZ+/everu7i7oPoDRSnU96OLFiyOJJVbEppvOVn19vaZMmaLt27fruOOO08SJE/MRXtlbsWJFwvTy5ct1/fXX57yd+vp6NTU1ac2aNWpqaira60sLMQAAAIC8KqXrbc8444yE6dmzZ49qO729vdq5c6ckaefOnZFfG10qtm/fnnE6F83NzZo5c2ZRW99pIQYAAMijadOmqb+/X6effnpB97Np0yZNmzatoPsARquxsVF33nmn+vv7I7/eNrknxWh7VrS3tyfcvinKVu9SMnXqVO3YsWNoeix5qb6+Xtdcc00+wsoaLcQAAAAA8iqq60FTiS/WpNEXxKXU6l1KTjrppITpN77xjRFFMjoUxAAAAADyqr6+XnPmzJEkzZkzJ9LrbSdMmJBxOluMMp3aww8/nHG61FEQAwAAACiY0Q5ilS+xVt1009kqpVbvUtLY2JjwupTbiQKuIQYAAACQV729vdq4caMk6b777tMnPvGJyFqJzz//fN1+++0J09lavny5urq6hqZjxf1RRx2lb37zm5KCLsOLFi3KU7TlI/ba9PX1DY0o7u7atm2bli5dWjavCwUxAAAAUIWSi71427ZtkyQtXbo05fKRip1Suu1Sc3Oz1q1bp76+PtXV1Y2pZbempkY1NTU69thj8xhheaurq1Ntba36+/s1ceJE1dXVRR1STiiIAQAAgCrU1dWlx5/erLr64cv6g8GU9fQLm4ct6+sdedupBqCKqiCur6/XvHnztGbNGs2bNy+nlurkoj92gmDZsmV5jbEcxb82n//85/X73/9e1113Xdndn5mCGAAAAKhSdfVSw6W5XePb81Mf8TGldNslKWgl3r59O9f9FkhdXZ1OPvnksiuGJQbVAgAAAJBnpTYA1R/+8Adt27ZNL730UqRxoPTQQgwAACpea2urOjs7Uy6L3ZN02rRpKZfPmDFDS5YsKVhsQCWJvy65lAag+sY3vqH9+/fr61//um688cai7z/5eu3YvZGnTp0qqXoH5ioFtBADAICqduDAAR04cCDqMICKUyoDUHV2dg4VoDt27Eg7kFgxHTx4UAcPHow6DIgWYlSJTC0Dudi6daskjbmlgNYGACiu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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# With boxplot, we can visualize the distributions of categorical variables\n", + "cat_cols = list(df.select_dtypes('category').columns)\n", + "cat_cols[0]\n", + "\n", + "fig, ax = plt.subplots (nrows=10,ncols=3,figsize = (16,60))\n", + "\n", + "i=0\n", + "for row in range(0,10):\n", + " for col in range(0,3):\n", + " sns.boxplot(data=df,x=cat_cols[i], y='sp_log', ax=ax[row,col]);\n", + " i+=1" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Have a closer look on some variables that we intuitively believe have more impant on SalePrice\n", + "\n", + "fig, ax = plt.subplots (nrows=3,ncols=1,figsize = (10,20))\n", + "# MSZoning - What type of area is the house located? \n", + "sns.boxplot(data=df,y='MSZoning', x='sp_log',orient='h',ax=ax[0]);\n", + "# Neighborhood - In which neghborhood of Ames city is the house located? \n", + "sns.boxplot(data=df,y='Neighborhood', x='sp_log',orient='h',ax=ax[1]);\n", + "# HouseStyle - What kind of house is that? \n", + "sns.boxplot(data=df,y='HouseStyle', x='sp_log',orient='h',ax=ax[2]);\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Observed Patterns / Hypothesis:\n", + "- SalePrice for housing in Commercial zone is more likely to be cheaper\n", + "- Houses from Northridge Heights, Stone Brook and Northridge tends to be more expensive \n", + "- Difference in HouseStyle tends to have not much impact on SalePrice" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 3.2 *Numeric variables*" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Heatmap: find out correlations among different variables and SalePrice\n", + "# Focusing the 14 variables that are most related to SalePrice\n", + "\n", + "fig, ax = plt.subplots(figsize=(10,7))\n", + "sns.heatmap(df[corr_cols+['sp_log']].corr());" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##### *Multicollinearity*\n", + "- From the heatmap, we can detect multicollinearity among the independent variables. Suspected pairs: \n", + "\n", + "1) 'TotalBsmtSF' and '1stFlrSF'\n", + " - Their correlation coef seems to be over 0.8, meaning that they are highly correlated\n", + " - Drop 1stFlrSF as it is slightly less correlated to SalePrice\n", + "2) 'GrLivArea' and 'TotRmsAbvGrd'\n", + " - Correlation Coef is also over 0.8\n", + " - Correlation makes sense for this pair as when Living Area above ground increase, more rooms can be fitted. \n", + " - Drop TotRmsAbvGrd since GrLivArea is more correlated to SalePrice\n", + "3) 'YearBuilt' and 'GarageYrBlt'\n", + " - Correlation Coef is over 0.8\n", + " - The building year of the house and garage are close to each other\n", + " - Drop GarageYrBlt as it is less correlated to SalePrice\n", + "4) 'GarageCars' and 'GarageArea'\n", + " - Correlation Coef is over 0.8\n", + " - They are basically both describing the size of garage just with different scales\n", + " - Drop GarageArea " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "to_drop = ['1stFlrSF','TotRmsAbvGrd','GarageYrBlt','GarageCars']\n", + "corr_cols_final = [col for col in corr_cols if col not in to_drop]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "corr_cols_final" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4. Modeling\n", + "- with OLS regression" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df = sm.add_constant(df)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "y = df['sp_log']\n", + "x = df[['const']+corr_cols_final]\n", + "lin_reg = sm.OLS(y,x).fit()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "lin_reg.summary()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### *p-values*\n", + "- p-value for each term tests the null hypothesis that the coef is equal to zero (no effect). \n", + "- Assuming level of significance = 5%, p-values in most of the terms are lower than 0.05\n", + "- Good indication to reject the null hypothesis. " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Modification:\n", + "# Remove 'ExterQual' in the model which have high p-value and therefore are more likely to have no impact on SalePrice\n", + "corr_cols_final.remove('ExterQual')\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Second Trial:\n", + "y = df['sp_log']\n", + "x = df[['const']+corr_cols_final]\n", + "lin_reg2 = sm.OLS(y,x).fit()\n", + "lin_reg2.summary()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 5. Summary:\n", + "\n", + "Top 10 factors affecting Housing sale price:\n", + "\n", + "Positive correlated: Saleprice increases when those factors increase:\n", + " - Overall Quality of the house\n", + " - Living Area above ground\n", + " - Quality of the kitchen\n", + " - Quality of basement\n", + " - Size of Garage\n", + " - Size of Basement\n", + " - year built\n", + " - year remodeled\n", + "Negative correlated: Saleprice decrease when this factor increases:\n", + " - Number of Full Bathrooms (Suprisingly)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-2_projects/statistical-analysis-project/your-code/data_description.txt b/module-2_projects/statistical-analysis-project/your-code/data_description.txt new file mode 100644 index 0000000..cba0710 --- /dev/null +++ b/module-2_projects/statistical-analysis-project/your-code/data_description.txt @@ -0,0 +1,523 @@ +MSSubClass: Identifies the type of dwelling involved in the sale. + + 20 1-STORY 1946 & NEWER ALL STYLES + 30 1-STORY 1945 & OLDER + 40 1-STORY W/FINISHED ATTIC ALL AGES + 45 1-1/2 STORY - UNFINISHED ALL AGES + 50 1-1/2 STORY FINISHED ALL AGES + 60 2-STORY 1946 & NEWER + 70 2-STORY 1945 & OLDER + 75 2-1/2 STORY ALL AGES + 80 SPLIT OR MULTI-LEVEL + 85 SPLIT FOYER + 90 DUPLEX - ALL STYLES AND AGES + 120 1-STORY PUD (Planned Unit Development) - 1946 & NEWER + 150 1-1/2 STORY PUD - ALL AGES + 160 2-STORY PUD - 1946 & NEWER + 180 PUD - MULTILEVEL - INCL SPLIT LEV/FOYER + 190 2 FAMILY CONVERSION - ALL STYLES AND AGES + +MSZoning: Identifies the general zoning classification of the sale. + + A Agriculture + C Commercial + FV Floating Village Residential + I Industrial + RH Residential High Density + RL Residential Low Density + RP Residential Low Density Park + RM Residential Medium Density + +LotFrontage: Linear feet of street connected to property + +LotArea: Lot size in square feet + +Street: Type of road access to property + + Grvl Gravel + Pave Paved + +Alley: Type of alley access to property + + Grvl Gravel + Pave Paved + NA No alley access + +LotShape: General shape of property + + Reg Regular + IR1 Slightly irregular + IR2 Moderately Irregular + IR3 Irregular + +LandContour: Flatness of the property + + Lvl Near Flat/Level + Bnk Banked - Quick and significant rise from street grade to building + HLS Hillside - Significant slope from side to side + Low Depression + +Utilities: Type of utilities available + + AllPub All public Utilities (E,G,W,& S) + NoSewr Electricity, Gas, and Water (Septic Tank) + NoSeWa Electricity and Gas Only + ELO Electricity only + +LotConfig: Lot configuration + + Inside Inside lot + Corner Corner lot + CulDSac Cul-de-sac + FR2 Frontage on 2 sides of property + FR3 Frontage on 3 sides of property + +LandSlope: Slope of property + + Gtl Gentle slope + Mod Moderate Slope + Sev Severe Slope + +Neighborhood: Physical locations within Ames city limits + + Blmngtn Bloomington Heights + Blueste Bluestem + BrDale Briardale + BrkSide Brookside + ClearCr Clear Creek + CollgCr College Creek + Crawfor Crawford + Edwards Edwards + Gilbert Gilbert + IDOTRR Iowa DOT and Rail Road + MeadowV Meadow Village + Mitchel Mitchell + Names North Ames + NoRidge Northridge + NPkVill Northpark Villa + NridgHt Northridge Heights + NWAmes Northwest Ames + OldTown Old Town + SWISU South & West of Iowa State University + Sawyer Sawyer + SawyerW Sawyer West + Somerst Somerset + StoneBr Stone Brook + Timber Timberland + Veenker Veenker + +Condition1: Proximity to various conditions + + Artery Adjacent to arterial street + Feedr Adjacent to feeder street + Norm Normal + RRNn Within 200' of North-South Railroad + RRAn Adjacent to North-South Railroad + PosN Near positive off-site feature--park, greenbelt, etc. + PosA Adjacent to postive off-site feature + RRNe Within 200' of East-West Railroad + RRAe Adjacent to East-West Railroad + +Condition2: Proximity to various conditions (if more than one is present) + + Artery Adjacent to arterial street + Feedr Adjacent to feeder street + Norm Normal + RRNn Within 200' of North-South Railroad + RRAn Adjacent to North-South Railroad + PosN Near positive off-site feature--park, greenbelt, etc. + PosA Adjacent to postive off-site feature + RRNe Within 200' of East-West Railroad + RRAe Adjacent to East-West Railroad + +BldgType: Type of dwelling + + 1Fam Single-family Detached + 2FmCon Two-family Conversion; originally built as one-family dwelling + Duplx Duplex + TwnhsE Townhouse End Unit + TwnhsI Townhouse Inside Unit + +HouseStyle: Style of dwelling + + 1Story One story + 1.5Fin One and one-half story: 2nd level finished + 1.5Unf One and one-half story: 2nd level unfinished + 2Story Two story + 2.5Fin Two and one-half story: 2nd level finished + 2.5Unf Two and one-half story: 2nd level unfinished + SFoyer Split Foyer + SLvl Split Level + +OverallQual: Rates the overall material and finish of the house + + 10 Very Excellent + 9 Excellent + 8 Very Good + 7 Good + 6 Above Average + 5 Average + 4 Below Average + 3 Fair + 2 Poor + 1 Very Poor + +OverallCond: Rates the overall condition of the house + + 10 Very Excellent + 9 Excellent + 8 Very Good + 7 Good + 6 Above Average + 5 Average + 4 Below Average + 3 Fair + 2 Poor + 1 Very Poor + +YearBuilt: Original construction date + +YearRemodAdd: Remodel date (same as construction date if no remodeling or additions) + +RoofStyle: Type of roof + + Flat Flat + Gable Gable + Gambrel Gabrel (Barn) + Hip Hip + Mansard Mansard + Shed Shed + +RoofMatl: Roof material + + ClyTile Clay or Tile + CompShg Standard (Composite) Shingle + Membran Membrane + Metal Metal + Roll Roll + Tar&Grv Gravel & Tar + WdShake Wood Shakes + WdShngl Wood Shingles + +Exterior1st: Exterior covering on house + + AsbShng Asbestos Shingles + AsphShn Asphalt Shingles + BrkComm Brick Common + BrkFace Brick Face + CBlock Cinder Block + CemntBd Cement Board + HdBoard Hard Board + ImStucc Imitation Stucco + MetalSd Metal Siding + Other Other + Plywood Plywood + PreCast PreCast + Stone Stone + Stucco Stucco + VinylSd Vinyl Siding + Wd Sdng Wood Siding + WdShing Wood Shingles + +Exterior2nd: Exterior covering on house (if more than one material) + + AsbShng Asbestos Shingles + AsphShn Asphalt Shingles + BrkComm Brick Common + BrkFace Brick Face + CBlock Cinder Block + CemntBd Cement Board + HdBoard Hard Board + ImStucc Imitation Stucco + MetalSd Metal Siding + Other Other + Plywood Plywood + PreCast PreCast + Stone Stone + Stucco Stucco + VinylSd Vinyl Siding + Wd Sdng Wood Siding + WdShing Wood Shingles + +MasVnrType: Masonry veneer type + + BrkCmn Brick Common + BrkFace Brick Face + CBlock Cinder Block + None None + Stone Stone + +MasVnrArea: Masonry veneer area in square feet + +ExterQual: Evaluates the quality of the material on the exterior + + Ex Excellent + Gd Good + TA Average/Typical + Fa Fair + Po Poor + +ExterCond: Evaluates the present condition of the material on the exterior + + Ex Excellent + Gd Good + TA Average/Typical + Fa Fair + Po Poor + +Foundation: Type of foundation + + BrkTil Brick & Tile + CBlock Cinder Block + PConc Poured Contrete + Slab Slab + Stone Stone + Wood Wood + +BsmtQual: Evaluates the height of the basement + + Ex Excellent (100+ inches) + Gd Good (90-99 inches) + TA Typical (80-89 inches) + Fa Fair (70-79 inches) + Po Poor (<70 inches + NA No Basement + +BsmtCond: Evaluates the general condition of the basement + + Ex Excellent + Gd Good + TA Typical - slight dampness allowed + Fa Fair - dampness or some cracking or settling + Po Poor - Severe cracking, settling, or wetness + NA No Basement + +BsmtExposure: Refers to walkout or garden level walls + + Gd Good Exposure + Av Average Exposure (split levels or foyers typically score average or above) + Mn Mimimum Exposure + No No Exposure + NA No Basement + +BsmtFinType1: Rating of basement finished area + + GLQ Good Living Quarters + ALQ Average Living Quarters + BLQ Below Average Living Quarters + Rec Average Rec Room + LwQ Low Quality + Unf Unfinshed + NA No Basement + +BsmtFinSF1: Type 1 finished square feet + +BsmtFinType2: Rating of basement finished area (if multiple types) + + GLQ Good Living Quarters + ALQ Average Living Quarters + BLQ Below Average Living Quarters + Rec Average Rec Room + LwQ Low Quality + Unf Unfinshed + NA No Basement + +BsmtFinSF2: Type 2 finished square feet + +BsmtUnfSF: Unfinished square feet of basement area + +TotalBsmtSF: Total square feet of basement area + +Heating: Type of heating + + Floor Floor Furnace + GasA Gas forced warm air furnace + GasW Gas hot water or steam heat + Grav Gravity furnace + OthW Hot water or steam heat other than gas + Wall Wall furnace + +HeatingQC: Heating quality and condition + + Ex Excellent + Gd Good + TA Average/Typical + Fa Fair + Po Poor + +CentralAir: Central air conditioning + + N No + Y Yes + +Electrical: Electrical system + + SBrkr Standard Circuit Breakers & Romex + FuseA Fuse Box over 60 AMP and all Romex wiring (Average) + FuseF 60 AMP Fuse Box and mostly Romex wiring (Fair) + FuseP 60 AMP Fuse Box and mostly knob & tube wiring (poor) + Mix Mixed + +1stFlrSF: First Floor square feet + +2ndFlrSF: Second floor square feet + +LowQualFinSF: Low quality finished square feet (all floors) + +GrLivArea: Above grade (ground) living area square feet + +BsmtFullBath: Basement full bathrooms + +BsmtHalfBath: Basement half bathrooms + +FullBath: Full bathrooms above grade + +HalfBath: Half baths above grade + +Bedroom: Bedrooms above grade (does NOT include basement bedrooms) + +Kitchen: Kitchens above grade + +KitchenQual: Kitchen quality + + Ex Excellent + Gd Good + TA Typical/Average + Fa Fair + Po Poor + +TotRmsAbvGrd: Total rooms above grade (does not include bathrooms) + +Functional: Home functionality (Assume typical unless deductions are warranted) + + Typ Typical Functionality + Min1 Minor Deductions 1 + Min2 Minor Deductions 2 + Mod Moderate Deductions + Maj1 Major Deductions 1 + Maj2 Major Deductions 2 + Sev Severely Damaged + Sal Salvage only + +Fireplaces: Number of fireplaces + +FireplaceQu: Fireplace quality + + Ex Excellent - Exceptional Masonry Fireplace + Gd Good - Masonry Fireplace in main level + TA Average - Prefabricated Fireplace in main living area or Masonry Fireplace in basement + Fa Fair - Prefabricated Fireplace in basement + Po Poor - Ben Franklin Stove + NA No Fireplace + +GarageType: Garage location + + 2Types More than one type of garage + Attchd Attached to home + Basment Basement Garage + BuiltIn Built-In (Garage part of house - typically has room above garage) + CarPort Car Port + Detchd Detached from home + NA No Garage + +GarageYrBlt: Year garage was built + +GarageFinish: Interior finish of the garage + + Fin Finished + RFn Rough Finished + Unf Unfinished + NA No Garage + +GarageCars: Size of garage in car capacity + +GarageArea: Size of garage in square feet + +GarageQual: Garage quality + + Ex Excellent + Gd Good + TA Typical/Average + Fa Fair + Po Poor + NA No Garage + +GarageCond: Garage condition + + Ex Excellent + Gd Good + TA Typical/Average + Fa Fair + Po Poor + NA No Garage + +PavedDrive: Paved driveway + + Y Paved + P Partial Pavement + N Dirt/Gravel + +WoodDeckSF: Wood deck area in square feet + +OpenPorchSF: Open porch area in square feet + +EnclosedPorch: Enclosed porch area in square feet + +3SsnPorch: Three season porch area in square feet + +ScreenPorch: Screen porch area in square feet + +PoolArea: Pool area in square feet + +PoolQC: Pool quality + + Ex Excellent + Gd Good + TA Average/Typical + Fa Fair + NA No Pool + +Fence: Fence quality + + GdPrv Good Privacy + MnPrv Minimum Privacy + GdWo Good Wood + MnWw Minimum Wood/Wire + NA No Fence + +MiscFeature: Miscellaneous feature not covered in other categories + + Elev Elevator + Gar2 2nd Garage (if not described in garage section) + Othr Other + Shed Shed (over 100 SF) + TenC Tennis Court + NA None + +MiscVal: $Value of miscellaneous feature + +MoSold: Month Sold (MM) + +YrSold: Year Sold (YYYY) + +SaleType: Type of sale + + WD Warranty Deed - Conventional + CWD Warranty Deed - Cash + VWD Warranty Deed - VA Loan + New Home just constructed and sold + COD Court Officer Deed/Estate + Con Contract 15% Down payment regular terms + ConLw Contract Low Down payment and low interest + ConLI Contract Low Interest + ConLD Contract Low Down + Oth Other + +SaleCondition: Condition of sale + + Normal Normal Sale + Abnorml Abnormal Sale - trade, foreclosure, short sale + AdjLand Adjoining Land Purchase + Alloca Allocation - two linked properties with separate deeds, typically condo with a garage unit + Family Sale between family members + Partial Home was not completed when last assessed (associated with New Homes) diff --git a/module-2_projects/statistical-analysis-project/your-code/train.csv b/module-2_projects/statistical-analysis-project/your-code/train.csv new file mode 100644 index 0000000..d68e0d7 --- /dev/null +++ b/module-2_projects/statistical-analysis-project/your-code/train.csv @@ -0,0 +1,1461 @@ +Id,MSSubClass,MSZoning,LotFrontage,LotArea,Street,Alley,LotShape,LandContour,Utilities,LotConfig,LandSlope,Neighborhood,Condition1,Condition2,BldgType,HouseStyle,OverallQual,OverallCond,YearBuilt,YearRemodAdd,RoofStyle,RoofMatl,Exterior1st,Exterior2nd,MasVnrType,MasVnrArea,ExterQual,ExterCond,Foundation,BsmtQual,BsmtCond,BsmtExposure,BsmtFinType1,BsmtFinSF1,BsmtFinType2,BsmtFinSF2,BsmtUnfSF,TotalBsmtSF,Heating,HeatingQC,CentralAir,Electrical,1stFlrSF,2ndFlrSF,LowQualFinSF,GrLivArea,BsmtFullBath,BsmtHalfBath,FullBath,HalfBath,BedroomAbvGr,KitchenAbvGr,KitchenQual,TotRmsAbvGrd,Functional,Fireplaces,FireplaceQu,GarageType,GarageYrBlt,GarageFinish,GarageCars,GarageArea,GarageQual,GarageCond,PavedDrive,WoodDeckSF,OpenPorchSF,EnclosedPorch,3SsnPorch,ScreenPorch,PoolArea,PoolQC,Fence,MiscFeature,MiscVal,MoSold,YrSold,SaleType,SaleCondition,SalePrice +1,60,RL,65,8450,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,196,Gd,TA,PConc,Gd,TA,No,GLQ,706,Unf,0,150,856,GasA,Ex,Y,SBrkr,856,854,0,1710,1,0,2,1,3,1,Gd,8,Typ,0,NA,Attchd,2003,RFn,2,548,TA,TA,Y,0,61,0,0,0,0,NA,NA,NA,0,2,2008,WD,Normal,208500 +2,20,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Veenker,Feedr,Norm,1Fam,1Story,6,8,1976,1976,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,Gd,TA,Gd,ALQ,978,Unf,0,284,1262,GasA,Ex,Y,SBrkr,1262,0,0,1262,0,1,2,0,3,1,TA,6,Typ,1,TA,Attchd,1976,RFn,2,460,TA,TA,Y,298,0,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,181500 +3,60,RL,68,11250,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2001,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,162,Gd,TA,PConc,Gd,TA,Mn,GLQ,486,Unf,0,434,920,GasA,Ex,Y,SBrkr,920,866,0,1786,1,0,2,1,3,1,Gd,6,Typ,1,TA,Attchd,2001,RFn,2,608,TA,TA,Y,0,42,0,0,0,0,NA,NA,NA,0,9,2008,WD,Normal,223500 +4,70,RL,60,9550,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Crawfor,Norm,Norm,1Fam,2Story,7,5,1915,1970,Gable,CompShg,Wd Sdng,Wd Shng,None,0,TA,TA,BrkTil,TA,Gd,No,ALQ,216,Unf,0,540,756,GasA,Gd,Y,SBrkr,961,756,0,1717,1,0,1,0,3,1,Gd,7,Typ,1,Gd,Detchd,1998,Unf,3,642,TA,TA,Y,0,35,272,0,0,0,NA,NA,NA,0,2,2006,WD,Abnorml,140000 +5,60,RL,84,14260,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,BrkFace,350,Gd,TA,PConc,Gd,TA,Av,GLQ,655,Unf,0,490,1145,GasA,Ex,Y,SBrkr,1145,1053,0,2198,1,0,2,1,4,1,Gd,9,Typ,1,TA,Attchd,2000,RFn,3,836,TA,TA,Y,192,84,0,0,0,0,NA,NA,NA,0,12,2008,WD,Normal,250000 +6,50,RL,85,14115,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,1.5Fin,5,5,1993,1995,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,Wood,Gd,TA,No,GLQ,732,Unf,0,64,796,GasA,Ex,Y,SBrkr,796,566,0,1362,1,0,1,1,1,1,TA,5,Typ,0,NA,Attchd,1993,Unf,2,480,TA,TA,Y,40,30,0,320,0,0,NA,MnPrv,Shed,700,10,2009,WD,Normal,143000 +7,20,RL,75,10084,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,Stone,186,Gd,TA,PConc,Ex,TA,Av,GLQ,1369,Unf,0,317,1686,GasA,Ex,Y,SBrkr,1694,0,0,1694,1,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2004,RFn,2,636,TA,TA,Y,255,57,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,307000 +8,60,RL,NA,10382,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NWAmes,PosN,Norm,1Fam,2Story,7,6,1973,1973,Gable,CompShg,HdBoard,HdBoard,Stone,240,TA,TA,CBlock,Gd,TA,Mn,ALQ,859,BLQ,32,216,1107,GasA,Ex,Y,SBrkr,1107,983,0,2090,1,0,2,1,3,1,TA,7,Typ,2,TA,Attchd,1973,RFn,2,484,TA,TA,Y,235,204,228,0,0,0,NA,NA,Shed,350,11,2009,WD,Normal,200000 +9,50,RM,51,6120,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1.5Fin,7,5,1931,1950,Gable,CompShg,BrkFace,Wd Shng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,952,952,GasA,Gd,Y,FuseF,1022,752,0,1774,0,0,2,0,2,2,TA,8,Min1,2,TA,Detchd,1931,Unf,2,468,Fa,TA,Y,90,0,205,0,0,0,NA,NA,NA,0,4,2008,WD,Abnorml,129900 +10,190,RL,50,7420,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,BrkSide,Artery,Artery,2fmCon,1.5Unf,5,6,1939,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,GLQ,851,Unf,0,140,991,GasA,Ex,Y,SBrkr,1077,0,0,1077,1,0,1,0,2,2,TA,5,Typ,2,TA,Attchd,1939,RFn,1,205,Gd,TA,Y,0,4,0,0,0,0,NA,NA,NA,0,1,2008,WD,Normal,118000 +11,20,RL,70,11200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1965,1965,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,Rec,906,Unf,0,134,1040,GasA,Ex,Y,SBrkr,1040,0,0,1040,1,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1965,Unf,1,384,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,2,2008,WD,Normal,129500 +12,60,RL,85,11924,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,9,5,2005,2006,Hip,CompShg,WdShing,Wd Shng,Stone,286,Ex,TA,PConc,Ex,TA,No,GLQ,998,Unf,0,177,1175,GasA,Ex,Y,SBrkr,1182,1142,0,2324,1,0,3,0,4,1,Ex,11,Typ,2,Gd,BuiltIn,2005,Fin,3,736,TA,TA,Y,147,21,0,0,0,0,NA,NA,NA,0,7,2006,New,Partial,345000 +13,20,RL,NA,12968,Pave,NA,IR2,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,6,1962,1962,Hip,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,737,Unf,0,175,912,GasA,TA,Y,SBrkr,912,0,0,912,1,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1962,Unf,1,352,TA,TA,Y,140,0,0,0,176,0,NA,NA,NA,0,9,2008,WD,Normal,144000 +14,20,RL,91,10652,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,Stone,306,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1494,1494,GasA,Ex,Y,SBrkr,1494,0,0,1494,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2006,RFn,3,840,TA,TA,Y,160,33,0,0,0,0,NA,NA,NA,0,8,2007,New,Partial,279500 +15,20,RL,NA,10920,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1960,1960,Hip,CompShg,MetalSd,MetalSd,BrkFace,212,TA,TA,CBlock,TA,TA,No,BLQ,733,Unf,0,520,1253,GasA,TA,Y,SBrkr,1253,0,0,1253,1,0,1,1,2,1,TA,5,Typ,1,Fa,Attchd,1960,RFn,1,352,TA,TA,Y,0,213,176,0,0,0,NA,GdWo,NA,0,5,2008,WD,Normal,157000 +16,45,RM,51,6120,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,BrkSide,Norm,Norm,1Fam,1.5Unf,7,8,1929,2001,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,832,832,GasA,Ex,Y,FuseA,854,0,0,854,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1991,Unf,2,576,TA,TA,Y,48,112,0,0,0,0,NA,GdPrv,NA,0,7,2007,WD,Normal,132000 +17,20,RL,NA,11241,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,7,1970,1970,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,180,TA,TA,CBlock,TA,TA,No,ALQ,578,Unf,0,426,1004,GasA,Ex,Y,SBrkr,1004,0,0,1004,1,0,1,0,2,1,TA,5,Typ,1,TA,Attchd,1970,Fin,2,480,TA,TA,Y,0,0,0,0,0,0,NA,NA,Shed,700,3,2010,WD,Normal,149000 +18,90,RL,72,10791,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,Duplex,1Story,4,5,1967,1967,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,1296,0,0,1296,0,0,2,0,2,2,TA,6,Typ,0,NA,CarPort,1967,Unf,2,516,TA,TA,Y,0,0,0,0,0,0,NA,NA,Shed,500,10,2006,WD,Normal,90000 +19,20,RL,66,13695,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,RRAe,Norm,1Fam,1Story,5,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,TA,TA,No,GLQ,646,Unf,0,468,1114,GasA,Ex,Y,SBrkr,1114,0,0,1114,1,0,1,1,3,1,Gd,6,Typ,0,NA,Detchd,2004,Unf,2,576,TA,TA,Y,0,102,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,159000 +20,20,RL,70,7560,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1958,1965,Hip,CompShg,BrkFace,Plywood,None,0,TA,TA,CBlock,TA,TA,No,LwQ,504,Unf,0,525,1029,GasA,TA,Y,SBrkr,1339,0,0,1339,0,0,1,0,3,1,TA,6,Min1,0,NA,Attchd,1958,Unf,1,294,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,5,2009,COD,Abnorml,139000 +21,60,RL,101,14215,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,1Fam,2Story,8,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,380,Gd,TA,PConc,Ex,TA,Av,Unf,0,Unf,0,1158,1158,GasA,Ex,Y,SBrkr,1158,1218,0,2376,0,0,3,1,4,1,Gd,9,Typ,1,Gd,BuiltIn,2005,RFn,3,853,TA,TA,Y,240,154,0,0,0,0,NA,NA,NA,0,11,2006,New,Partial,325300 +22,45,RM,57,7449,Pave,Grvl,Reg,Bnk,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Unf,7,7,1930,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,637,637,GasA,Ex,Y,FuseF,1108,0,0,1108,0,0,1,0,3,1,Gd,6,Typ,1,Gd,Attchd,1930,Unf,1,280,TA,TA,N,0,0,205,0,0,0,NA,GdPrv,NA,0,6,2007,WD,Normal,139400 +23,20,RL,75,9742,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,8,5,2002,2002,Hip,CompShg,VinylSd,VinylSd,BrkFace,281,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1777,1777,GasA,Ex,Y,SBrkr,1795,0,0,1795,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2002,RFn,2,534,TA,TA,Y,171,159,0,0,0,0,NA,NA,NA,0,9,2008,WD,Normal,230000 +24,120,RM,44,4224,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,TwnhsE,1Story,5,7,1976,1976,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,PConc,Gd,TA,No,GLQ,840,Unf,0,200,1040,GasA,TA,Y,SBrkr,1060,0,0,1060,1,0,1,0,3,1,TA,6,Typ,1,TA,Attchd,1976,Unf,2,572,TA,TA,Y,100,110,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,129900 +25,20,RL,NA,8246,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,8,1968,2001,Gable,CompShg,Plywood,Plywood,None,0,TA,Gd,CBlock,TA,TA,Mn,Rec,188,ALQ,668,204,1060,GasA,Ex,Y,SBrkr,1060,0,0,1060,1,0,1,0,3,1,Gd,6,Typ,1,TA,Attchd,1968,Unf,1,270,TA,TA,Y,406,90,0,0,0,0,NA,MnPrv,NA,0,5,2010,WD,Normal,154000 +26,20,RL,110,14230,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,Stone,640,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1566,1566,GasA,Ex,Y,SBrkr,1600,0,0,1600,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2007,RFn,3,890,TA,TA,Y,0,56,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,256300 +27,20,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1951,2000,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,Mn,BLQ,234,Rec,486,180,900,GasA,TA,Y,SBrkr,900,0,0,900,0,1,1,0,3,1,Gd,5,Typ,0,NA,Detchd,2005,Unf,2,576,TA,TA,Y,222,32,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,134800 +28,20,RL,98,11478,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2007,2008,Gable,CompShg,VinylSd,VinylSd,Stone,200,Gd,TA,PConc,Ex,TA,No,GLQ,1218,Unf,0,486,1704,GasA,Ex,Y,SBrkr,1704,0,0,1704,1,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2008,RFn,3,772,TA,TA,Y,0,50,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,306000 +29,20,RL,47,16321,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1957,1997,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,Gd,BLQ,1277,Unf,0,207,1484,GasA,TA,Y,SBrkr,1600,0,0,1600,1,0,1,0,2,1,TA,6,Typ,2,Gd,Attchd,1957,RFn,1,319,TA,TA,Y,288,258,0,0,0,0,NA,NA,NA,0,12,2006,WD,Normal,207500 +30,30,RM,60,6324,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,BrkSide,Feedr,RRNn,1Fam,1Story,4,6,1927,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,520,520,GasA,Fa,N,SBrkr,520,0,0,520,0,0,1,0,1,1,Fa,4,Typ,0,NA,Detchd,1920,Unf,1,240,Fa,TA,Y,49,0,87,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,68500 +31,70,C (all),50,8500,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Feedr,Norm,1Fam,2Story,4,4,1920,1950,Gambrel,CompShg,BrkFace,BrkFace,None,0,TA,Fa,BrkTil,TA,TA,No,Unf,0,Unf,0,649,649,GasA,TA,N,SBrkr,649,668,0,1317,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1920,Unf,1,250,TA,Fa,N,0,54,172,0,0,0,NA,MnPrv,NA,0,7,2008,WD,Normal,40000 +32,20,RL,NA,8544,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,6,1966,2006,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1228,1228,GasA,Gd,Y,SBrkr,1228,0,0,1228,0,0,1,1,3,1,Gd,6,Typ,0,NA,Attchd,1966,Unf,1,271,TA,TA,Y,0,65,0,0,0,0,NA,MnPrv,NA,0,6,2008,WD,Normal,149350 +33,20,RL,85,11049,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,8,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,TA,Av,Unf,0,Unf,0,1234,1234,GasA,Ex,Y,SBrkr,1234,0,0,1234,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2007,RFn,2,484,TA,TA,Y,0,30,0,0,0,0,NA,NA,NA,0,1,2008,WD,Normal,179900 +34,20,RL,70,10552,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1959,1959,Hip,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,TA,TA,No,Rec,1018,Unf,0,380,1398,GasA,Gd,Y,SBrkr,1700,0,0,1700,0,1,1,1,4,1,Gd,6,Typ,1,Gd,Attchd,1959,RFn,2,447,TA,TA,Y,0,38,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,165500 +35,120,RL,60,7313,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,9,5,2005,2005,Hip,CompShg,MetalSd,MetalSd,BrkFace,246,Ex,TA,PConc,Ex,TA,No,GLQ,1153,Unf,0,408,1561,GasA,Ex,Y,SBrkr,1561,0,0,1561,1,0,2,0,2,1,Ex,6,Typ,1,Gd,Attchd,2005,Fin,2,556,TA,TA,Y,203,47,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,277500 +36,60,RL,108,13418,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,8,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,Stone,132,Gd,TA,PConc,Ex,TA,Av,Unf,0,Unf,0,1117,1117,GasA,Ex,Y,SBrkr,1132,1320,0,2452,0,0,3,1,4,1,Gd,9,Typ,1,Gd,BuiltIn,2004,Fin,3,691,TA,TA,Y,113,32,0,0,0,0,NA,NA,NA,0,9,2006,WD,Normal,309000 +37,20,RL,112,10859,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,5,1994,1995,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1097,1097,GasA,Ex,Y,SBrkr,1097,0,0,1097,0,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1995,Unf,2,672,TA,TA,Y,392,64,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,145000 +38,20,RL,74,8532,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1954,1990,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,650,TA,TA,CBlock,TA,TA,No,Rec,1213,Unf,0,84,1297,GasA,Gd,Y,SBrkr,1297,0,0,1297,0,1,1,0,3,1,TA,5,Typ,1,TA,Attchd,1954,Fin,2,498,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,153000 +39,20,RL,68,7922,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1953,2007,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,TA,TA,No,GLQ,731,Unf,0,326,1057,GasA,TA,Y,SBrkr,1057,0,0,1057,1,0,1,0,3,1,Gd,5,Typ,0,NA,Detchd,1953,Unf,1,246,TA,TA,Y,0,52,0,0,0,0,NA,NA,NA,0,1,2010,WD,Abnorml,109000 +40,90,RL,65,6040,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,Duplex,1Story,4,5,1955,1955,Gable,CompShg,AsbShng,Plywood,None,0,TA,TA,PConc,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,N,FuseP,1152,0,0,1152,0,0,2,0,2,2,Fa,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,AdjLand,82000 +41,20,RL,84,8658,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1965,1965,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,101,TA,TA,CBlock,TA,TA,No,Rec,643,Unf,0,445,1088,GasA,Ex,Y,SBrkr,1324,0,0,1324,0,0,2,0,3,1,TA,6,Typ,1,TA,Attchd,1965,RFn,2,440,TA,TA,Y,0,138,0,0,0,0,NA,GdWo,NA,0,12,2006,WD,Abnorml,160000 +42,20,RL,115,16905,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,5,6,1959,1959,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,TA,TA,Gd,BLQ,967,Unf,0,383,1350,GasA,Gd,Y,SBrkr,1328,0,0,1328,0,1,1,1,2,1,TA,5,Typ,2,Gd,Attchd,1959,RFn,1,308,TA,TA,P,0,104,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,170000 +43,85,RL,NA,9180,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,SawyerW,Norm,Norm,1Fam,SFoyer,5,7,1983,1983,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,Av,ALQ,747,LwQ,93,0,840,GasA,Gd,Y,SBrkr,884,0,0,884,1,0,1,0,2,1,Gd,5,Typ,0,NA,Attchd,1983,RFn,2,504,TA,Gd,Y,240,0,0,0,0,0,NA,MnPrv,NA,0,12,2007,WD,Normal,144000 +44,20,RL,NA,9200,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,6,1975,1980,Hip,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,Gd,TA,Av,LwQ,280,BLQ,491,167,938,GasA,TA,Y,SBrkr,938,0,0,938,1,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1977,Unf,1,308,TA,TA,Y,145,0,0,0,0,0,NA,MnPrv,NA,0,7,2008,WD,Normal,130250 +45,20,RL,70,7945,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1959,1959,Gable,CompShg,BrkFace,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,ALQ,179,BLQ,506,465,1150,GasA,Ex,Y,FuseA,1150,0,0,1150,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1959,RFn,1,300,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,141000 +46,120,RL,61,7658,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,9,5,2005,2005,Hip,CompShg,MetalSd,MetalSd,BrkFace,412,Ex,TA,PConc,Ex,TA,No,GLQ,456,Unf,0,1296,1752,GasA,Ex,Y,SBrkr,1752,0,0,1752,1,0,2,0,2,1,Ex,6,Typ,1,Gd,Attchd,2005,RFn,2,576,TA,TA,Y,196,82,0,0,0,0,NA,NA,NA,0,2,2010,WD,Normal,319900 +47,50,RL,48,12822,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Mitchel,Norm,Norm,1Fam,1.5Fin,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,TA,No,GLQ,1351,Unf,0,83,1434,GasA,Ex,Y,SBrkr,1518,631,0,2149,1,0,1,1,1,1,Gd,6,Typ,1,Ex,Attchd,2003,RFn,2,670,TA,TA,Y,168,43,0,0,198,0,NA,NA,NA,0,8,2009,WD,Abnorml,239686 +48,20,FV,84,11096,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,24,Unf,0,1632,1656,GasA,Ex,Y,SBrkr,1656,0,0,1656,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2006,RFn,3,826,TA,TA,Y,0,146,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,249700 +49,190,RM,33,4456,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,2fmCon,2Story,4,5,1920,2008,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,736,736,GasA,Gd,Y,SBrkr,736,716,0,1452,0,0,2,0,2,3,TA,8,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,102,0,0,0,NA,NA,NA,0,6,2009,New,Partial,113000 +50,20,RL,66,7742,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,7,1966,1966,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,BLQ,763,Unf,0,192,955,GasA,Ex,Y,SBrkr,955,0,0,955,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1966,Unf,1,386,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,1,2007,WD,Normal,127000 +51,60,RL,NA,13869,Pave,NA,IR2,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,6,1997,1997,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Av,GLQ,182,Unf,0,612,794,GasA,Gd,Y,SBrkr,794,676,0,1470,0,1,2,0,3,1,TA,6,Typ,0,NA,Attchd,1997,Fin,2,388,TA,TA,Y,0,75,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,177000 +52,50,RM,52,6240,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,6,6,1934,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,816,816,GasA,TA,Y,SBrkr,816,0,360,1176,0,0,1,0,3,1,TA,6,Typ,1,Gd,Detchd,1985,Unf,2,528,TA,TA,Y,112,0,0,0,0,0,NA,MnPrv,Shed,400,9,2006,WD,Normal,114500 +53,90,RM,110,8472,Grvl,NA,IR2,Bnk,AllPub,Corner,Mod,IDOTRR,RRNn,Norm,Duplex,1Story,5,5,1963,1963,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Fa,TA,CBlock,Gd,TA,Gd,LwQ,104,GLQ,712,0,816,GasA,TA,N,SBrkr,816,0,0,816,1,0,1,0,2,1,TA,5,Typ,0,NA,CarPort,1963,Unf,2,516,TA,TA,Y,106,0,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,110000 +54,20,RL,68,50271,Pave,NA,IR1,Low,AllPub,Inside,Gtl,Veenker,Norm,Norm,1Fam,1Story,9,5,1981,1987,Gable,WdShngl,WdShing,Wd Shng,None,0,Gd,TA,CBlock,Ex,TA,Gd,GLQ,1810,Unf,0,32,1842,GasA,Gd,Y,SBrkr,1842,0,0,1842,2,0,0,1,0,1,Gd,5,Typ,1,Gd,Attchd,1981,Fin,3,894,TA,TA,Y,857,72,0,0,0,0,NA,NA,NA,0,11,2006,WD,Normal,385000 +55,80,RL,60,7134,Pave,NA,Reg,Bnk,AllPub,Inside,Mod,NAmes,Norm,Norm,1Fam,SLvl,5,5,1955,1955,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,384,Unf,0,0,384,GasA,TA,Y,SBrkr,1360,0,0,1360,0,0,1,0,3,1,TA,6,Min1,1,TA,Detchd,1962,Unf,2,572,TA,TA,Y,0,50,0,0,0,0,NA,MnPrv,NA,0,2,2007,WD,Normal,130000 +56,20,RL,100,10175,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1964,1964,Gable,CompShg,HdBoard,Plywood,BrkFace,272,TA,TA,CBlock,TA,TA,No,BLQ,490,Unf,0,935,1425,GasA,Gd,Y,SBrkr,1425,0,0,1425,0,0,2,0,3,1,TA,7,Typ,1,Gd,Attchd,1964,RFn,2,576,TA,TA,Y,0,0,0,407,0,0,NA,NA,NA,0,7,2008,WD,Normal,180500 +57,160,FV,24,2645,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,Twnhs,2Story,8,5,1999,2000,Gable,CompShg,MetalSd,MetalSd,BrkFace,456,Gd,TA,PConc,Gd,TA,No,GLQ,649,Unf,0,321,970,GasA,Ex,Y,SBrkr,983,756,0,1739,1,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,1999,Fin,2,480,TA,TA,Y,115,0,0,0,0,0,NA,NA,NA,0,8,2009,WD,Abnorml,172500 +58,60,RL,89,11645,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,860,860,GasA,Ex,Y,SBrkr,860,860,0,1720,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2004,RFn,2,565,TA,TA,Y,0,70,0,0,0,0,NA,NA,NA,0,8,2006,WD,Normal,196500 +59,60,RL,66,13682,Pave,NA,IR2,HLS,AllPub,CulDSac,Gtl,StoneBr,Norm,Norm,1Fam,2Story,10,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,BrkFace,1031,Ex,TA,PConc,Ex,TA,Gd,Unf,0,Unf,0,1410,1410,GasA,Ex,Y,SBrkr,1426,1519,0,2945,0,0,3,1,3,1,Gd,10,Typ,1,Gd,BuiltIn,2006,Fin,3,641,TA,TA,Y,192,0,37,0,0,0,NA,NA,NA,0,10,2006,New,Partial,438780 +60,20,RL,60,7200,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,7,1972,1972,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,Av,ALQ,632,Unf,0,148,780,GasA,Ex,Y,SBrkr,780,0,0,780,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1973,Unf,1,352,TA,TA,Y,196,0,0,0,0,0,NA,MnPrv,NA,0,1,2008,WD,Normal,124900 +61,20,RL,63,13072,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,RRAe,Norm,1Fam,1Story,6,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,ALQ,941,Unf,0,217,1158,GasA,Ex,Y,SBrkr,1158,0,0,1158,1,0,1,1,3,1,Gd,5,Typ,0,NA,Detchd,2006,Unf,2,576,TA,TA,Y,0,50,0,0,0,0,NA,NA,NA,0,5,2006,New,Partial,158000 +62,75,RM,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,2.5Unf,5,7,1920,1996,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,Fa,No,Unf,0,Unf,0,530,530,GasA,TA,N,SBrkr,581,530,0,1111,0,0,1,0,3,1,Fa,6,Typ,0,NA,Detchd,1935,Unf,1,288,TA,TA,N,0,0,144,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,101000 +63,120,RL,44,6442,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,178,Gd,TA,PConc,Gd,Gd,Mn,GLQ,24,Unf,0,1346,1370,GasA,Ex,Y,SBrkr,1370,0,0,1370,0,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2006,RFn,2,484,TA,TA,Y,120,49,0,0,0,0,NA,NA,NA,0,10,2007,WD,Normal,202500 +64,70,RM,50,10300,Pave,NA,IR1,Bnk,AllPub,Inside,Gtl,OldTown,RRAn,Feedr,1Fam,2Story,7,6,1921,1950,Gable,CompShg,Stucco,Stucco,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,576,576,GasA,Gd,Y,SBrkr,902,808,0,1710,0,0,2,0,3,1,TA,9,Typ,0,NA,Detchd,1990,Unf,2,480,TA,TA,Y,12,11,64,0,0,0,NA,GdPrv,NA,0,4,2010,WD,Normal,140000 +65,60,RL,NA,9375,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,1997,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,573,TA,TA,PConc,Gd,TA,No,GLQ,739,Unf,0,318,1057,GasA,Ex,Y,SBrkr,1057,977,0,2034,1,0,2,1,3,1,Gd,8,Typ,0,NA,Attchd,1998,RFn,2,645,TA,TA,Y,576,36,0,0,0,0,NA,GdPrv,NA,0,2,2009,WD,Normal,219500 +66,60,RL,76,9591,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,8,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,344,Gd,TA,PConc,Ex,TA,Av,Unf,0,Unf,0,1143,1143,GasA,Ex,Y,SBrkr,1143,1330,0,2473,0,0,2,1,4,1,Gd,9,Typ,1,Gd,BuiltIn,2004,RFn,3,852,TA,TA,Y,192,151,0,0,0,0,NA,NA,NA,0,10,2007,WD,Normal,317000 +67,20,RL,NA,19900,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,PosA,Norm,1Fam,1Story,7,5,1970,1989,Gable,CompShg,Plywood,Plywood,BrkFace,287,TA,TA,CBlock,Gd,TA,Gd,GLQ,912,Unf,0,1035,1947,GasA,TA,Y,SBrkr,2207,0,0,2207,1,0,2,0,3,1,TA,7,Min1,1,Gd,Attchd,1970,RFn,2,576,TA,TA,Y,301,0,0,0,0,0,NA,NA,NA,0,7,2010,WD,Normal,180000 +68,20,RL,72,10665,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,167,Gd,TA,PConc,Gd,TA,Av,GLQ,1013,Unf,0,440,1453,GasA,Ex,Y,SBrkr,1479,0,0,1479,1,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2003,RFn,2,558,TA,TA,Y,144,29,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,226000 +69,30,RM,47,4608,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Artery,Norm,1Fam,1Story,4,6,1945,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,Unf,0,Unf,0,747,747,GasA,TA,Y,SBrkr,747,0,0,747,0,0,1,0,2,1,TA,4,Typ,0,NA,Attchd,1945,Unf,1,220,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,80000 +70,50,RL,81,15593,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,ClearCr,Norm,Norm,1Fam,1.5Fin,7,4,1953,1953,Gable,CompShg,BrkFace,AsbShng,None,0,Gd,TA,CBlock,TA,TA,No,BLQ,603,Unf,0,701,1304,GasW,TA,Y,SBrkr,1304,983,0,2287,0,0,2,0,3,1,TA,7,Typ,1,TA,Attchd,1953,Fin,2,667,TA,TA,Y,0,21,114,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,225000 +71,20,RL,95,13651,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,7,6,1973,1973,Gable,CompShg,Plywood,Plywood,BrkFace,1115,TA,Gd,CBlock,Gd,TA,Gd,ALQ,1880,Unf,0,343,2223,GasA,Ex,Y,SBrkr,2223,0,0,2223,1,0,2,0,3,1,TA,8,Typ,2,Gd,Attchd,1973,Fin,2,516,TA,TA,Y,300,0,0,0,0,0,NA,NA,NA,0,2,2007,WD,Normal,244000 +72,20,RL,69,7599,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Mitchel,Norm,Norm,1Fam,1Story,4,6,1982,2006,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,565,Unf,0,280,845,GasA,TA,Y,SBrkr,845,0,0,845,1,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1987,Unf,2,360,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,129500 +73,60,RL,74,10141,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,40,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,832,832,GasA,Gd,Y,SBrkr,885,833,0,1718,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1998,Fin,2,427,TA,TA,Y,0,94,0,0,291,0,NA,NA,NA,0,12,2009,WD,Normal,185000 +74,20,RL,85,10200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1954,2003,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,104,TA,TA,CBlock,TA,TA,No,ALQ,320,BLQ,362,404,1086,GasA,Gd,Y,SBrkr,1086,0,0,1086,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1989,Unf,2,490,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,5,2010,WD,Normal,144900 +75,50,RM,60,5790,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,2Story,3,6,1915,1950,Gambrel,CompShg,VinylSd,VinylSd,None,0,Gd,Gd,CBlock,Fa,TA,No,Unf,0,Unf,0,840,840,GasA,Gd,N,SBrkr,840,765,0,1605,0,0,2,0,3,2,TA,8,Typ,0,NA,Detchd,1915,Unf,1,379,TA,TA,Y,0,0,202,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,107400 +76,180,RM,21,1596,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,Twnhs,SLvl,4,5,1973,1973,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,Gd,TA,Gd,GLQ,462,Unf,0,0,462,GasA,TA,Y,SBrkr,526,462,0,988,1,0,1,0,2,1,TA,5,Typ,0,NA,BuiltIn,1973,Unf,1,297,TA,TA,Y,120,101,0,0,0,0,NA,GdWo,NA,0,11,2009,WD,Normal,91000 +77,20,RL,NA,8475,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,7,1956,1956,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,228,Unf,0,724,952,GasA,Ex,Y,FuseA,952,0,0,952,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1956,Unf,1,283,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,135750 +78,50,RM,50,8635,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,5,5,1948,2001,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,BLQ,336,GLQ,41,295,672,GasA,TA,Y,SBrkr,1072,213,0,1285,1,0,1,0,2,1,TA,6,Min1,0,NA,Detchd,1948,Unf,1,240,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,1,2008,WD,Normal,127000 +79,90,RL,72,10778,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,Duplex,1Story,4,5,1968,1968,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1768,1768,GasA,TA,N,SBrkr,1768,0,0,1768,0,0,2,0,4,2,TA,8,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,136500 +80,50,RM,60,10440,Pave,Grvl,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,2Story,5,6,1910,1981,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,440,440,GasA,Gd,Y,SBrkr,682,548,0,1230,0,0,1,1,2,1,TA,5,Typ,0,NA,Detchd,1966,Unf,2,440,TA,TA,Y,74,0,128,0,0,0,NA,MnPrv,NA,0,5,2009,WD,Normal,110000 +81,60,RL,100,13000,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,2Story,6,6,1968,1968,Gable,CompShg,VinylSd,VinylSd,BrkFace,576,TA,Gd,CBlock,Gd,TA,No,Rec,448,Unf,0,448,896,GasA,TA,Y,SBrkr,1182,960,0,2142,0,0,2,1,4,1,Gd,8,Typ,1,Gd,Attchd,1968,Fin,1,509,TA,TA,Y,0,72,0,0,252,0,NA,NA,NA,0,6,2009,WD,Normal,193500 +82,120,RM,32,4500,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Mitchel,Norm,Norm,TwnhsE,1Story,6,5,1998,1998,Hip,CompShg,VinylSd,VinylSd,BrkFace,443,TA,Gd,PConc,Ex,Gd,No,GLQ,1201,Unf,0,36,1237,GasA,Ex,Y,SBrkr,1337,0,0,1337,1,0,2,0,2,1,TA,5,Typ,0,NA,Attchd,1998,Fin,2,405,TA,TA,Y,0,199,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,153500 +83,20,RL,78,10206,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,Stone,468,TA,TA,PConc,Gd,TA,No,GLQ,33,Unf,0,1530,1563,GasA,Ex,Y,SBrkr,1563,0,0,1563,0,0,2,0,3,1,Gd,6,Typ,1,Gd,Attchd,2007,RFn,3,758,TA,TA,Y,144,99,0,0,0,0,NA,NA,NA,0,10,2008,WD,Normal,245000 +84,20,RL,80,8892,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1960,1960,Gable,CompShg,MetalSd,MetalSd,BrkCmn,66,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1065,1065,GasA,Gd,Y,SBrkr,1065,0,0,1065,0,0,1,1,3,1,TA,6,Typ,0,NA,Detchd,1974,Unf,2,461,TA,TA,Y,74,0,0,0,0,0,NA,NA,NA,0,7,2007,COD,Normal,126500 +85,80,RL,NA,8530,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,SLvl,7,5,1995,1996,Gable,CompShg,HdBoard,HdBoard,BrkFace,22,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,384,384,GasA,Gd,Y,SBrkr,804,670,0,1474,0,0,2,1,3,1,TA,7,Typ,1,TA,BuiltIn,1995,Fin,2,400,TA,TA,Y,120,72,0,0,0,0,NA,NA,Shed,700,5,2009,WD,Normal,168500 +86,60,RL,121,16059,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1991,1992,Hip,CompShg,HdBoard,HdBoard,BrkFace,284,Gd,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,1288,1288,GasA,Ex,Y,SBrkr,1301,1116,0,2417,0,0,2,1,4,1,Gd,9,Typ,1,TA,Attchd,1991,Unf,2,462,TA,TA,Y,127,82,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,260000 +87,60,RL,122,11911,Pave,NA,IR2,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,684,684,GasA,Ex,Y,SBrkr,684,876,0,1560,0,0,2,1,3,1,Gd,6,Typ,1,Gd,BuiltIn,2005,Fin,2,400,TA,TA,Y,100,38,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,174000 +88,160,FV,40,3951,Pave,Pave,Reg,Lvl,AllPub,Corner,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,6,5,2009,2009,Gable,CompShg,VinylSd,VinylSd,Stone,76,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,612,612,GasA,Ex,Y,SBrkr,612,612,0,1224,0,0,2,1,2,1,Gd,4,Typ,0,NA,Detchd,2009,RFn,2,528,TA,TA,Y,0,234,0,0,0,0,NA,NA,NA,0,6,2009,New,Partial,164500 +89,50,C (all),105,8470,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,IDOTRR,Feedr,Feedr,1Fam,1.5Fin,3,2,1915,1982,Hip,CompShg,Plywood,Plywood,None,0,Fa,Fa,CBlock,TA,Fa,No,Unf,0,Unf,0,1013,1013,GasA,TA,N,SBrkr,1013,0,513,1526,0,0,1,0,2,1,Fa,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,156,0,0,0,NA,MnPrv,NA,0,10,2009,ConLD,Abnorml,85000 +90,20,RL,60,8070,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,4,5,1994,1995,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,GLQ,588,Unf,0,402,990,GasA,Ex,Y,SBrkr,990,0,0,990,1,0,1,0,3,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,123600 +91,20,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,5,1950,1950,Gable,CompShg,BrkFace,Wd Sdng,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,FuseA,1040,0,0,1040,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1950,Unf,2,420,TA,TA,Y,0,29,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,109900 +92,20,RL,85,8500,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,3,1961,1961,Hip,CompShg,HdBoard,HdBoard,BrkCmn,203,TA,TA,CBlock,TA,TA,No,Rec,600,Unf,0,635,1235,GasA,TA,Y,SBrkr,1235,0,0,1235,0,0,1,0,2,1,TA,6,Typ,0,NA,Attchd,1961,Unf,2,480,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,12,2006,WD,Abnorml,98600 +93,30,RL,80,13360,Pave,Grvl,IR1,HLS,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1Story,5,7,1921,2006,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,BrkTil,Gd,TA,No,ALQ,713,Unf,0,163,876,GasA,Ex,Y,SBrkr,964,0,0,964,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1921,Unf,2,432,TA,TA,Y,0,0,44,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,163500 +94,190,C (all),60,7200,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,2fmCon,2.5Unf,6,6,1910,1998,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,Fa,Mn,Rec,1046,Unf,0,168,1214,GasW,Ex,N,SBrkr,1260,1031,0,2291,0,1,2,0,4,2,TA,9,Typ,1,Gd,Detchd,1900,Unf,2,506,TA,TA,Y,0,0,0,0,99,0,NA,NA,NA,0,11,2007,WD,Normal,133900 +95,60,RL,69,9337,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,6,5,1997,1997,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,PConc,Gd,TA,No,GLQ,648,Unf,0,176,824,GasA,Ex,Y,SBrkr,905,881,0,1786,1,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,1997,RFn,2,684,TA,TA,Y,0,162,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,204750 +96,60,RL,NA,9765,Pave,NA,IR2,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,8,1993,1993,Gable,CompShg,VinylSd,VinylSd,BrkFace,68,Ex,Gd,PConc,Gd,Gd,No,ALQ,310,Unf,0,370,680,GasA,Gd,Y,SBrkr,680,790,0,1470,0,0,2,1,3,1,TA,6,Typ,1,TA,BuiltIn,1993,Fin,2,420,TA,TA,Y,232,63,0,0,0,0,NA,NA,Shed,480,4,2009,WD,Normal,185000 +97,20,RL,78,10264,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,BrkFace,183,Gd,TA,PConc,Gd,TA,Av,ALQ,1162,Unf,0,426,1588,GasA,Ex,Y,SBrkr,1588,0,0,1588,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,1999,RFn,2,472,TA,TA,Y,158,29,0,0,0,0,NA,NA,NA,0,8,2006,WD,Normal,214000 +98,20,RL,73,10921,Pave,NA,Reg,HLS,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,5,1965,1965,Hip,CompShg,HdBoard,HdBoard,BrkFace,48,TA,TA,CBlock,TA,TA,No,Rec,520,Unf,0,440,960,GasA,TA,Y,FuseF,960,0,0,960,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1965,Fin,1,432,TA,TA,P,120,0,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,94750 +99,30,RL,85,10625,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,5,1920,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,ALQ,108,Unf,0,350,458,GasA,Fa,N,SBrkr,835,0,0,835,0,0,1,0,2,1,TA,5,Typ,0,NA,Basment,1920,Unf,1,366,Fa,TA,Y,0,0,77,0,0,0,NA,NA,Shed,400,5,2010,COD,Abnorml,83000 +100,20,RL,77,9320,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,5,1959,1959,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,569,Unf,0,381,950,GasA,Fa,Y,SBrkr,1225,0,0,1225,1,0,1,1,3,1,TA,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,352,0,0,0,0,0,NA,NA,Shed,400,1,2010,WD,Normal,128950 +101,20,RL,NA,10603,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,7,1977,2001,Gable,CompShg,Plywood,Plywood,BrkFace,28,TA,TA,PConc,TA,TA,Mn,ALQ,1200,Unf,0,410,1610,GasA,Gd,Y,SBrkr,1610,0,0,1610,1,0,2,0,3,1,Gd,6,Typ,2,TA,Attchd,1977,RFn,2,480,TA,TA,Y,168,68,0,0,0,0,NA,NA,NA,0,2,2010,WD,Normal,205000 +102,60,RL,77,9206,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,6,5,1985,1985,Gable,CompShg,HdBoard,HdBoard,BrkFace,336,Gd,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,741,741,GasA,TA,Y,SBrkr,977,755,0,1732,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1985,Fin,2,476,TA,TA,Y,192,46,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,178000 +103,90,RL,64,7018,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,SawyerW,Norm,Norm,Duplex,1Story,5,5,1979,1979,Gable,CompShg,HdBoard,HdBoard,None,0,TA,Fa,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,1535,0,0,1535,0,0,2,0,4,2,TA,8,Typ,0,NA,Attchd,1979,Unf,2,410,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Alloca,118964 +104,20,RL,94,10402,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2009,2009,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1226,1226,GasA,Ex,Y,SBrkr,1226,0,0,1226,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2009,RFn,3,740,TA,TA,Y,0,36,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,198900 +105,50,RM,NA,7758,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Fin,7,4,1931,1950,Gable,CompShg,Stucco,Stucco,BrkFace,600,TA,Fa,PConc,TA,TA,No,LwQ,224,Unf,0,816,1040,GasA,Ex,Y,FuseF,1226,592,0,1818,0,0,1,1,4,1,TA,7,Typ,2,TA,Detchd,1951,Unf,1,240,TA,TA,Y,0,0,0,0,184,0,NA,NA,NA,0,6,2007,WD,Normal,169500 +106,60,FV,75,9375,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,8,5,2003,2004,Hip,CompShg,VinylSd,VinylSd,BrkFace,768,Gd,TA,PConc,Ex,TA,No,Unf,0,Unf,0,1053,1053,GasA,Ex,Y,SBrkr,1053,939,0,1992,0,0,2,1,3,1,Gd,9,Typ,1,Gd,Attchd,2003,RFn,2,648,TA,TA,Y,140,45,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,250000 +107,30,RM,60,10800,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,4,7,1885,1995,Mansard,CompShg,VinylSd,VinylSd,None,0,TA,TA,BrkTil,Fa,TA,No,Unf,0,Unf,0,641,641,GasA,Gd,Y,SBrkr,1047,0,0,1047,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1954,Unf,1,273,Fa,Fa,N,0,0,0,0,0,0,NA,NA,Shed,450,8,2007,WD,Normal,100000 +108,20,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,5,1948,1950,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,104,BLQ,169,516,789,GasA,Ex,Y,SBrkr,789,0,0,789,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1948,Unf,1,250,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2008,WD,Partial,115000 +109,50,RM,85,8500,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,IDOTRR,Artery,Norm,1Fam,1.5Fin,5,7,1919,2005,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,793,793,GasW,TA,N,FuseF,997,520,0,1517,0,0,2,0,3,1,Fa,7,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,144,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,115000 +110,20,RL,105,11751,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,6,1977,1977,Hip,CompShg,Plywood,Plywood,BrkFace,480,TA,TA,CBlock,Gd,TA,No,BLQ,705,Unf,0,1139,1844,GasA,Ex,Y,SBrkr,1844,0,0,1844,0,0,2,0,3,1,TA,7,Typ,1,TA,Attchd,1977,RFn,2,546,TA,TA,Y,0,122,0,0,0,0,NA,MnPrv,NA,0,1,2010,COD,Normal,190000 +111,50,RL,75,9525,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,6,4,1954,1972,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,Fa,No,Rec,444,Unf,0,550,994,GasA,Gd,Y,SBrkr,1216,639,0,1855,0,0,2,0,4,1,TA,7,Typ,0,NA,Attchd,1954,Unf,1,325,TA,TA,Y,182,0,0,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,136900 +112,80,RL,NA,7750,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,SLvl,7,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,GLQ,250,Unf,0,134,384,GasA,Ex,Y,SBrkr,774,656,0,1430,0,0,2,1,3,1,TA,7,Typ,1,TA,BuiltIn,2000,Fin,2,400,TA,TA,Y,180,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,180000 +113,60,RL,77,9965,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,Stone,220,Gd,TA,PConc,Ex,TA,Av,GLQ,984,Unf,0,280,1264,GasA,Ex,Y,SBrkr,1282,1414,0,2696,1,0,2,1,4,1,Ex,10,Typ,1,Gd,BuiltIn,2007,Fin,3,792,TA,TA,Y,120,184,0,0,168,0,NA,NA,NA,0,10,2007,New,Partial,383970 +114,20,RL,NA,21000,Pave,NA,Reg,Bnk,AllPub,Corner,Gtl,Crawfor,Norm,Norm,1Fam,1Story,6,5,1953,1953,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,184,TA,Gd,CBlock,Gd,TA,Mn,ALQ,35,Rec,869,905,1809,GasA,TA,Y,SBrkr,2259,0,0,2259,1,0,2,0,3,1,Gd,7,Typ,2,Gd,Basment,1953,Unf,2,450,TA,TA,Y,166,120,192,0,0,0,NA,MnPrv,NA,0,10,2007,COD,Abnorml,217000 +115,70,RL,61,7259,Pave,NA,IR1,Lvl,AllPub,Inside,Mod,Crawfor,Norm,Norm,1Fam,2Story,6,8,1945,2002,Gambrel,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,ALQ,774,LwQ,150,104,1028,GasA,Ex,Y,SBrkr,1436,884,0,2320,1,0,2,1,3,1,Gd,9,Typ,1,TA,Detchd,1945,Unf,1,180,TA,TA,Y,224,0,0,0,0,0,NA,MnPrv,NA,0,7,2007,WD,Normal,259500 +116,160,FV,34,3230,Pave,Pave,Reg,Lvl,AllPub,Corner,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,6,5,1999,1999,Gable,CompShg,MetalSd,MetalSd,BrkFace,1129,TA,TA,PConc,Gd,TA,No,GLQ,419,Unf,0,310,729,GasA,Gd,Y,SBrkr,729,729,0,1458,0,0,2,1,2,1,TA,5,Typ,1,Fa,Detchd,1999,Unf,2,440,TA,TA,Y,0,32,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,176000 +117,20,RL,NA,11616,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1962,1962,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,116,TA,TA,CBlock,TA,TA,No,LwQ,170,BLQ,670,252,1092,GasA,TA,Y,SBrkr,1092,0,0,1092,0,1,1,0,3,1,TA,6,Typ,1,Po,Attchd,1962,Unf,1,288,TA,TA,Y,0,20,144,0,0,0,NA,NA,NA,0,9,2009,WD,Normal,139000 +118,20,RL,74,8536,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1125,1125,GasA,Gd,Y,SBrkr,1125,0,0,1125,0,0,1,1,2,1,TA,5,Typ,0,NA,Attchd,2007,Unf,2,430,TA,TA,Y,80,64,0,0,0,0,NA,NA,NA,0,4,2007,New,Partial,155000 +119,60,RL,90,12376,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,SawyerW,Norm,Norm,1Fam,2Story,7,5,1990,1990,Hip,CompShg,Plywood,Plywood,None,0,TA,TA,PConc,Gd,TA,Mn,GLQ,1470,Unf,0,203,1673,GasA,Gd,Y,SBrkr,1699,1523,0,3222,1,0,3,0,5,1,Gd,11,Typ,2,TA,Attchd,1990,Unf,3,594,TA,TA,Y,367,0,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,320000 +120,60,RL,65,8461,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,6,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,728,728,GasA,Ex,Y,SBrkr,728,728,0,1456,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2005,Fin,2,390,TA,TA,Y,0,24,0,0,0,0,NA,NA,NA,0,7,2006,New,Partial,163990 +121,80,RL,NA,21453,Pave,NA,IR1,Low,AllPub,CulDSac,Sev,ClearCr,Norm,Norm,1Fam,SLvl,6,5,1969,1969,Flat,Metal,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,Gd,ALQ,938,Unf,0,0,938,GasA,Ex,Y,SBrkr,988,0,0,988,1,0,1,0,1,1,TA,4,Typ,2,TA,Attchd,1969,Unf,2,540,TA,TA,Y,0,130,0,130,0,0,NA,NA,NA,0,10,2006,WD,Normal,180000 +122,50,RM,50,6060,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Fin,4,5,1939,1950,Gable,CompShg,AsbShng,AsbShng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,732,732,GasA,Gd,Y,SBrkr,772,351,0,1123,0,0,1,0,3,1,TA,4,Typ,0,NA,Detchd,1979,Unf,1,264,TA,TA,P,0,0,140,0,0,0,NA,MnPrv,NA,0,6,2007,WD,Normal,100000 +123,20,RL,75,9464,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,7,1958,1958,Hip,CompShg,MetalSd,MetalSd,BrkFace,135,TA,Gd,CBlock,TA,TA,No,BLQ,570,Unf,0,510,1080,GasA,Gd,Y,SBrkr,1080,0,0,1080,0,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1958,Unf,1,288,TA,TA,Y,0,0,0,0,130,0,NA,NA,NA,0,6,2008,WD,Normal,136000 +124,120,RL,55,7892,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,TwnhsE,1Story,6,5,1993,1993,Gable,CompShg,Plywood,Plywood,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,300,Unf,0,899,1199,GasA,Ex,Y,SBrkr,1199,0,0,1199,0,0,2,0,2,1,Gd,5,Typ,0,NA,Attchd,1993,RFn,2,530,TA,TA,Y,0,63,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,153900 +125,20,RL,48,17043,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,5,1979,1998,Gable,CompShg,HdBoard,HdBoard,None,0,TA,Gd,CBlock,Gd,Fa,No,Unf,0,Unf,0,1362,1362,GasA,TA,Y,SBrkr,1586,0,0,1586,0,0,2,0,3,1,TA,7,Typ,1,TA,Attchd,1979,Unf,2,435,TA,TA,Y,192,0,0,0,0,0,NA,NA,NA,0,1,2009,WD,Normal,181000 +126,190,RM,60,6780,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,2fmCon,1.5Fin,6,8,1935,1982,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Fa,CBlock,TA,TA,Av,GLQ,490,Unf,0,30,520,GasA,Gd,N,SBrkr,520,0,234,754,1,0,1,0,2,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,53,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,84500 +127,120,RL,NA,4928,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NPkVill,Norm,Norm,TwnhsE,1Story,6,5,1976,1976,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,120,Unf,0,958,1078,GasA,TA,Y,SBrkr,958,0,0,958,0,0,2,0,2,1,TA,5,Typ,1,TA,Attchd,1977,RFn,2,440,TA,TA,Y,0,205,0,0,0,0,NA,NA,NA,0,2,2007,WD,Normal,128000 +128,45,RM,55,4388,Pave,NA,IR1,Bnk,AllPub,Inside,Gtl,OldTown,Feedr,Norm,1Fam,1.5Unf,5,7,1930,1950,Gable,CompShg,WdShing,Wd Sdng,None,0,TA,Gd,BrkTil,TA,TA,No,LwQ,116,Unf,0,556,672,GasA,Ex,Y,SBrkr,840,0,0,840,0,0,1,0,3,1,TA,5,Typ,1,TA,NA,NA,NA,0,0,NA,NA,N,0,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,87000 +129,60,RL,69,7590,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,PosN,Norm,1Fam,2Story,6,5,1966,1966,Gable,CompShg,VinylSd,VinylSd,BrkFace,266,TA,TA,CBlock,TA,TA,No,BLQ,512,Unf,0,148,660,GasA,TA,Y,SBrkr,660,688,0,1348,0,0,1,1,3,1,TA,6,Typ,1,Fa,Attchd,1966,RFn,2,453,TA,TA,Y,188,108,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,155000 +130,20,RL,69,8973,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1958,1991,Gable,CompShg,Plywood,Plywood,BrkFace,85,TA,TA,CBlock,TA,TA,No,Rec,567,BLQ,28,413,1008,GasA,TA,Y,FuseA,1053,0,0,1053,0,1,1,1,3,1,Ex,6,Typ,0,NA,2Types,1998,RFn,2,750,TA,TA,Y,0,80,0,180,0,0,NA,MnWw,NA,0,7,2006,WD,Abnorml,150000 +131,60,RL,88,14200,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,2Story,7,6,1966,1966,Gable,CompShg,MetalSd,MetalSd,BrkFace,309,TA,TA,CBlock,TA,TA,No,Rec,445,Unf,0,479,924,GasA,Ex,Y,SBrkr,1216,941,0,2157,0,0,2,1,4,1,Gd,8,Typ,2,Gd,Attchd,1966,Fin,2,487,TA,TA,Y,105,66,0,0,0,0,NA,GdPrv,NA,0,5,2006,WD,Normal,226000 +132,60,RL,NA,12224,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,BrkFace,40,Gd,TA,PConc,Gd,TA,No,GLQ,695,Unf,0,297,992,GasA,Ex,Y,SBrkr,1022,1032,0,2054,1,0,2,1,3,1,Gd,7,Typ,1,TA,BuiltIn,2000,RFn,2,390,TA,TA,Y,24,48,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,244000 +133,20,RL,75,7388,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1959,2002,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,405,Unf,0,658,1063,GasA,Gd,Y,SBrkr,1327,0,0,1327,1,0,1,0,3,1,Gd,7,Typ,0,NA,Detchd,1974,Unf,2,624,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,150750 +134,20,RL,NA,6853,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,8,5,2001,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,136,Gd,TA,PConc,Ex,TA,No,GLQ,1005,Unf,0,262,1267,GasA,Ex,Y,SBrkr,1296,0,0,1296,1,0,2,0,2,1,Gd,6,Typ,0,NA,Attchd,2001,Fin,2,471,TA,TA,Y,192,25,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,220000 +135,20,RL,78,10335,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,6,1968,1993,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,Rec,570,Unf,0,891,1461,GasA,Gd,Y,SBrkr,1721,0,0,1721,0,0,2,1,3,1,TA,7,Min1,1,TA,Attchd,1968,RFn,2,440,TA,TA,Y,0,96,180,0,0,0,NA,MnPrv,NA,0,7,2006,WD,Normal,180000 +136,20,RL,80,10400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,7,6,1970,1970,Hip,CompShg,Plywood,Plywood,BrkFace,288,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,1304,1304,GasA,Gd,Y,SBrkr,1682,0,0,1682,0,0,2,0,3,1,TA,7,Typ,1,Gd,Attchd,1970,Unf,2,530,TA,TA,Y,98,0,0,0,0,0,NA,MnPrv,NA,0,5,2008,WD,Normal,174000 +137,20,RL,NA,10355,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1967,1967,Gable,CompShg,MetalSd,MetalSd,BrkFace,196,TA,TA,CBlock,TA,TA,No,BLQ,695,Unf,0,519,1214,GasA,TA,Y,SBrkr,1214,0,0,1214,0,0,2,0,3,1,TA,5,Typ,1,Fa,Attchd,1967,RFn,1,318,TA,TA,Y,0,111,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,143000 +138,90,RL,82,11070,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,Duplex,1Story,7,5,1988,1989,Gable,CompShg,VinylSd,VinylSd,BrkFace,70,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1907,1907,GasA,Gd,Y,SBrkr,1959,0,0,1959,0,0,3,0,5,2,TA,9,Typ,0,NA,2Types,1989,Unf,3,766,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Family,171000 +139,60,RL,73,9066,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,1999,2000,Gable,CompShg,VinylSd,VinylSd,BrkFace,320,Gd,TA,PConc,Gd,TA,Mn,GLQ,668,Unf,0,336,1004,GasA,Ex,Y,SBrkr,1004,848,0,1852,0,0,2,1,3,1,Gd,7,Typ,2,TA,Attchd,1999,Fin,3,660,TA,TA,Y,224,106,0,0,0,0,NA,GdPrv,NA,0,12,2008,WD,Normal,230000 +140,60,RL,65,15426,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,6,5,1997,1997,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,GLQ,821,Unf,0,107,928,GasA,Ex,Y,SBrkr,928,836,0,1764,1,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,1997,RFn,2,470,TA,TA,Y,276,99,0,0,0,0,NA,MnPrv,NA,0,8,2009,WD,Normal,231500 +141,20,RL,70,10500,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,5,1971,1971,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,ALQ,432,Unf,0,432,864,GasA,TA,Y,SBrkr,864,0,0,864,0,0,1,0,3,1,TA,5,Typ,1,Po,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2010,ConLI,Normal,115000 +142,20,RL,78,11645,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,1300,Unf,0,434,1734,GasA,Ex,Y,SBrkr,1734,0,0,1734,1,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2005,Fin,2,660,TA,TA,Y,160,24,0,0,0,0,NA,NA,NA,0,1,2006,WD,Normal,260000 +143,50,RL,71,8520,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Artery,Norm,1Fam,1.5Fin,5,4,1952,1952,Gable,CompShg,BrkFace,Wd Sdng,None,0,TA,Fa,CBlock,TA,TA,No,Rec,507,Unf,0,403,910,GasA,Fa,Y,SBrkr,910,475,0,1385,0,0,2,0,4,1,TA,6,Typ,0,NA,Detchd,2000,Unf,2,720,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,6,2010,WD,Normal,166000 +144,20,RL,78,10335,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,BrkFace,183,Gd,TA,PConc,Gd,TA,Gd,GLQ,679,Unf,0,811,1490,GasA,Ex,Y,SBrkr,1501,0,0,1501,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,1999,RFn,2,577,TA,TA,Y,144,29,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,204000 +145,90,RM,70,9100,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,RRAe,Norm,Duplex,1Story,5,5,1963,1963,Gable,CompShg,HdBoard,HdBoard,BrkFace,336,TA,TA,CBlock,TA,TA,No,Rec,1332,Unf,0,396,1728,GasA,TA,Y,SBrkr,1728,0,0,1728,1,0,2,0,6,2,TA,10,Typ,0,NA,Detchd,1963,Unf,2,504,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2006,ConLI,Abnorml,125000 +146,160,RM,24,2522,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,Twnhs,2Story,6,5,2004,2006,Gable,CompShg,VinylSd,VinylSd,Stone,50,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,970,970,GasA,Ex,Y,SBrkr,970,739,0,1709,0,0,2,0,3,1,Gd,7,Maj1,0,NA,Detchd,2004,Unf,2,380,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,130000 +147,30,RM,51,6120,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,BrkSide,Norm,Norm,1Fam,1Story,5,7,1931,1993,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,BLQ,209,Unf,0,506,715,GasA,TA,Y,FuseA,875,0,0,875,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1931,Unf,1,180,Fa,TA,Y,48,0,0,0,0,0,NA,NA,NA,0,11,2009,WD,Normal,105000 +148,60,RL,NA,9505,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2001,2001,Gable,CompShg,VinylSd,VinylSd,BrkFace,180,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,884,884,GasA,Ex,Y,SBrkr,884,1151,0,2035,0,0,2,1,3,1,Gd,8,Typ,1,Gd,BuiltIn,2001,Fin,2,434,TA,TA,Y,144,48,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,222500 +149,20,RL,63,7500,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,1Story,7,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,120,TA,TA,PConc,Gd,TA,No,GLQ,680,Unf,0,400,1080,GasA,Ex,Y,SBrkr,1080,0,0,1080,1,0,1,0,3,1,Gd,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,141000 +150,50,RM,NA,6240,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,5,4,1936,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,Gd,TA,No,Unf,0,Unf,0,896,896,GasA,Gd,Y,FuseA,896,448,0,1344,0,0,1,0,3,1,TA,7,Typ,0,NA,Detchd,1936,Unf,1,240,Fa,TA,Y,200,114,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,115000 +151,20,RL,120,10356,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,6,1975,1975,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,Av,BLQ,716,Unf,0,253,969,GasA,TA,Y,SBrkr,969,0,0,969,0,0,1,1,3,1,TA,5,Typ,0,NA,Attchd,1975,Unf,2,440,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,1,2007,WD,Normal,122000 +152,20,RL,107,13891,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2007,2008,Hip,CompShg,VinylSd,VinylSd,Stone,436,Gd,TA,PConc,Ex,TA,Gd,GLQ,1400,Unf,0,310,1710,GasA,Ex,Y,SBrkr,1710,0,0,1710,1,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2007,RFn,3,866,TA,TA,Y,0,102,0,0,0,0,NA,NA,NA,0,1,2008,New,Partial,372402 +153,60,RL,NA,14803,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NWAmes,Norm,Norm,1Fam,2Story,6,5,1971,1971,Gable,CompShg,HdBoard,HdBoard,BrkFace,252,TA,TA,CBlock,TA,TA,No,Rec,416,Unf,0,409,825,GasA,Gd,Y,SBrkr,1097,896,0,1993,0,0,2,1,4,1,TA,8,Typ,1,Gd,Attchd,1971,RFn,2,495,TA,TA,Y,0,66,0,0,0,0,NA,GdWo,NA,0,6,2006,WD,Normal,190000 +154,20,RL,NA,13500,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,1Story,6,7,1960,1975,Flat,CompShg,BrkFace,Plywood,None,0,TA,TA,CBlock,Gd,TA,Gd,BLQ,429,ALQ,1080,93,1602,GasA,Gd,Y,SBrkr,1252,0,0,1252,1,0,1,0,1,1,TA,4,Typ,1,Gd,Attchd,1960,RFn,2,564,TA,TA,Y,409,0,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,235000 +155,30,RM,84,11340,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,1Story,6,5,1923,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,1200,1200,GasA,TA,Y,FuseA,1200,0,0,1200,0,0,1,0,4,1,TA,7,Typ,0,NA,Detchd,1923,Unf,1,312,Fa,Fa,Y,0,0,228,0,0,0,NA,NA,NA,0,3,2006,WD,Family,125000 +156,50,RL,60,9600,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Artery,Norm,1Fam,1.5Fin,6,5,1924,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,572,572,Grav,Fa,N,FuseF,572,524,0,1096,0,0,1,0,2,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,8,128,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,79000 +157,20,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1950,1950,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,FuseF,1040,0,0,1040,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1950,Unf,2,625,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,109500 +158,60,RL,92,12003,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Timber,Norm,Norm,1Fam,2Story,8,5,2009,2010,Gable,CompShg,VinylSd,VinylSd,BrkFace,84,Gd,TA,PConc,Ex,TA,No,Unf,0,Unf,0,774,774,GasA,Ex,Y,SBrkr,774,1194,0,1968,0,0,2,1,4,1,Ex,8,Typ,1,Gd,BuiltIn,2009,Fin,3,680,TA,TA,Y,0,75,0,0,0,0,NA,NA,NA,0,5,2010,New,Partial,269500 +159,60,FV,100,12552,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,222,Unf,0,769,991,GasA,Ex,Y,SBrkr,991,956,0,1947,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2004,RFn,2,678,TA,TA,Y,0,136,0,0,0,0,NA,GdWo,NA,0,5,2010,WD,Normal,254900 +160,60,RL,134,19378,Pave,NA,IR1,HLS,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,456,Gd,TA,PConc,Gd,TA,Mn,GLQ,57,Unf,0,1335,1392,GasA,Ex,Y,SBrkr,1392,1070,0,2462,1,0,2,1,4,1,Gd,9,Typ,1,Gd,Attchd,2006,RFn,2,576,TA,TA,Y,239,132,0,168,0,0,NA,NA,NA,0,3,2006,New,Partial,320000 +161,20,RL,NA,11120,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Veenker,Norm,Norm,1Fam,1Story,6,6,1984,1984,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,PConc,Gd,TA,No,BLQ,660,Unf,0,572,1232,GasA,TA,Y,SBrkr,1232,0,0,1232,0,0,2,0,3,1,TA,6,Typ,0,NA,Attchd,1984,Unf,2,516,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,162500 +162,60,RL,110,13688,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,9,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,664,Gd,TA,PConc,Ex,TA,Av,GLQ,1016,Unf,0,556,1572,GasA,Ex,Y,SBrkr,1572,1096,0,2668,1,0,2,1,3,1,Ex,10,Typ,2,Gd,BuiltIn,2003,Fin,3,726,TA,TA,Y,400,0,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,412500 +163,20,RL,95,12182,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,1Fam,1Story,7,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,226,Gd,TA,PConc,Gd,TA,Mn,BLQ,1201,Unf,0,340,1541,GasA,Ex,Y,SBrkr,1541,0,0,1541,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2005,RFn,2,532,TA,TA,Y,0,70,0,0,0,0,NA,NA,NA,0,5,2010,New,Partial,220000 +164,45,RL,55,5500,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Unf,4,6,1956,1956,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,882,882,GasA,Ex,Y,SBrkr,882,0,0,882,0,0,1,0,1,1,TA,4,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,4,2007,WD,Normal,103200 +165,40,RM,40,5400,Pave,Pave,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,1Story,6,7,1926,2004,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,BrkTil,TA,TA,Mn,LwQ,370,Unf,0,779,1149,GasA,Gd,Y,FuseA,1149,467,0,1616,0,0,2,0,3,1,Gd,5,Typ,0,NA,Detchd,1926,Unf,1,216,TA,TA,Y,0,0,183,0,0,0,NA,NA,NA,0,10,2007,WD,Normal,152000 +166,190,RL,62,10106,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,2fmCon,1.5Fin,5,7,1940,1999,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,BrkTil,TA,TA,No,ALQ,351,Rec,181,112,644,GasA,Gd,Y,SBrkr,808,547,0,1355,1,0,2,0,4,2,TA,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,140,0,0,0,0,0,NA,NA,NA,0,9,2008,WD,Normal,127500 +167,20,RL,NA,10708,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,1Story,5,5,1955,1993,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,CBlock,TA,TA,No,LwQ,379,BLQ,768,470,1617,GasA,Ex,Y,FuseA,1867,0,0,1867,1,0,1,0,2,1,TA,7,Typ,3,Gd,Attchd,1955,Fin,1,303,TA,TA,Y,476,0,0,0,142,0,NA,GdWo,NA,0,11,2009,COD,Normal,190000 +168,60,RL,86,10562,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,8,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,Stone,300,Gd,TA,PConc,Ex,TA,No,GLQ,1288,Unf,0,294,1582,GasA,Ex,Y,SBrkr,1610,551,0,2161,1,0,1,1,3,1,Ex,8,Typ,1,Gd,Attchd,2007,Fin,3,789,TA,TA,Y,178,120,0,0,0,0,NA,NA,NA,0,11,2007,New,Partial,325624 +169,60,RL,62,8244,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,840,840,GasA,Ex,Y,SBrkr,840,880,0,1720,0,0,2,1,3,1,Gd,7,Typ,1,Gd,Attchd,2004,Fin,2,440,TA,TA,Y,100,48,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,183500 +170,20,RL,NA,16669,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Timber,Norm,Norm,1Fam,1Story,8,6,1981,1981,Hip,WdShake,Plywood,Plywood,BrkFace,653,Gd,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,1686,1686,GasA,TA,Y,SBrkr,1707,0,0,1707,0,0,2,1,2,1,TA,6,Typ,1,TA,Attchd,1981,RFn,2,511,TA,TA,Y,574,64,0,0,0,0,NA,NA,NA,0,1,2006,WD,Normal,228000 +171,50,RM,NA,12358,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,OldTown,Feedr,Norm,1Fam,1.5Fin,5,6,1941,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,360,Unf,0,360,720,GasA,TA,Y,SBrkr,854,0,528,1382,0,0,1,1,2,1,TA,7,Typ,0,NA,Detchd,1991,Unf,2,660,TA,TA,Y,237,0,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,128500 +172,20,RL,141,31770,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1960,1960,Hip,CompShg,BrkFace,Plywood,Stone,112,TA,TA,CBlock,TA,Gd,Gd,BLQ,639,Unf,0,441,1080,GasA,Fa,Y,SBrkr,1656,0,0,1656,1,0,1,0,3,1,TA,7,Typ,2,Gd,Attchd,1960,Fin,2,528,TA,TA,P,210,62,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,215000 +173,160,RL,44,5306,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,TwnhsE,2Story,7,7,1987,1987,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,Gd,PConc,Gd,Gd,No,GLQ,495,Rec,215,354,1064,GasA,Gd,Y,SBrkr,1064,703,0,1767,1,0,2,0,2,1,Gd,5,Typ,1,TA,Attchd,1987,RFn,2,504,Gd,TA,Y,441,35,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,239000 +174,20,RL,80,10197,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1961,1961,Gable,CompShg,WdShing,Wd Shng,BrkCmn,491,TA,TA,CBlock,TA,TA,No,ALQ,288,Rec,374,700,1362,GasA,TA,Y,SBrkr,1362,0,0,1362,1,0,1,1,3,1,TA,6,Typ,1,TA,Attchd,1961,Unf,2,504,TA,TA,Y,0,20,0,0,0,0,NA,NA,NA,0,6,2008,COD,Normal,163000 +175,20,RL,47,12416,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,6,5,1986,1986,Gable,CompShg,VinylSd,Plywood,Stone,132,TA,TA,CBlock,Gd,Fa,No,ALQ,1398,LwQ,208,0,1606,GasA,TA,Y,SBrkr,1651,0,0,1651,1,0,2,0,3,1,TA,7,Min2,1,TA,Attchd,1986,Fin,2,616,TA,TA,Y,192,0,0,0,0,0,NA,NA,NA,0,11,2008,WD,Normal,184000 +176,20,RL,84,12615,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,6,7,1950,2001,Gable,CompShg,WdShing,Wd Shng,None,0,TA,TA,CBlock,TA,Gd,Av,ALQ,477,Unf,0,725,1202,GasA,TA,Y,SBrkr,2158,0,0,2158,1,0,2,0,4,1,Gd,7,Typ,1,Gd,Attchd,1950,Unf,2,576,TA,TA,Y,0,29,39,0,0,0,NA,MnPrv,NA,0,6,2007,WD,Normal,243000 +177,60,RL,97,10029,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,ClearCr,Norm,Norm,1Fam,2Story,6,5,1988,1989,Gable,CompShg,Plywood,Plywood,BrkFace,268,Gd,TA,PConc,Gd,TA,No,GLQ,831,Unf,0,320,1151,GasA,TA,Y,SBrkr,1164,896,0,2060,0,1,2,1,4,1,TA,8,Typ,1,TA,Attchd,1988,Unf,2,521,TA,TA,Y,0,228,0,0,192,0,NA,NA,NA,0,9,2007,WD,Normal,211000 +178,50,RL,NA,13650,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1.5Fin,5,5,1958,1958,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,Gd,CBlock,TA,TA,No,ALQ,57,BLQ,441,554,1052,GasA,Ex,Y,SBrkr,1252,668,0,1920,1,0,2,0,4,1,Gd,8,Typ,1,Gd,Attchd,1958,Unf,2,451,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,172500 +179,20,RL,63,17423,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,StoneBr,Norm,Norm,1Fam,1Story,9,5,2008,2009,Hip,CompShg,VinylSd,VinylSd,Stone,748,Ex,TA,PConc,Ex,TA,No,GLQ,1904,Unf,0,312,2216,GasA,Ex,Y,SBrkr,2234,0,0,2234,1,0,2,0,1,1,Ex,9,Typ,1,Gd,Attchd,2009,Fin,3,1166,TA,TA,Y,0,60,0,0,0,0,NA,NA,NA,0,7,2009,New,Partial,501837 +180,30,RM,60,8520,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,6,1923,2006,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,CBlock,TA,TA,No,Unf,0,Unf,0,968,968,GasA,TA,Y,SBrkr,968,0,0,968,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1935,Unf,2,480,Fa,TA,N,0,0,184,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,100000 +181,160,FV,NA,2117,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,Twnhs,2Story,6,5,2000,2000,Gable,CompShg,MetalSd,MetalSd,BrkFace,456,Gd,TA,PConc,Gd,TA,No,GLQ,436,Unf,0,320,756,GasA,Ex,Y,SBrkr,769,756,0,1525,0,0,2,1,3,1,Gd,5,Typ,1,TA,Detchd,2000,Unf,2,440,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,177000 +182,70,RL,54,7588,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2Story,7,6,1920,1950,Gable,CompShg,Stucco,Stucco,None,0,TA,TA,BrkTil,Fa,TA,No,LwQ,352,Unf,0,441,793,GasA,Gd,Y,SBrkr,901,901,0,1802,0,0,1,1,4,1,TA,9,Typ,1,Gd,Detchd,1920,Unf,1,216,Fa,TA,Y,0,0,40,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,200100 +183,20,RL,60,9060,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Artery,Norm,1Fam,1Story,5,6,1957,2006,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,98,TA,TA,PConc,NA,NA,NA,NA,0,NA,0,0,0,GasA,Ex,Y,SBrkr,1340,0,0,1340,0,0,1,0,3,1,TA,7,Typ,1,Gd,Attchd,1957,RFn,1,252,TA,TA,Y,116,0,0,180,0,0,NA,MnPrv,NA,0,6,2007,WD,Normal,120000 +184,50,RM,63,11426,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1362,1362,GasA,Ex,Y,SBrkr,1362,720,0,2082,0,0,2,1,3,1,Gd,6,Mod,0,NA,Detchd,2003,Unf,2,484,TA,TA,N,280,238,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,200000 +185,50,RL,92,7438,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,BrkSide,RRAn,Feedr,1Fam,1.5Fin,5,8,1908,1991,Gable,CompShg,AsbShng,Plywood,None,0,TA,TA,PConc,Fa,TA,No,Unf,0,Unf,0,504,504,GasA,Gd,Y,SBrkr,936,316,0,1252,0,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1986,Unf,2,576,TA,TA,Y,104,0,0,0,0,0,NA,MnPrv,NA,0,6,2006,WD,Normal,127000 +186,75,RM,90,22950,Pave,NA,IR2,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,2.5Fin,10,9,1892,1993,Gable,WdShngl,Wd Sdng,Wd Sdng,None,0,Gd,Gd,BrkTil,TA,TA,Mn,Unf,0,Unf,0,1107,1107,GasA,Ex,Y,SBrkr,1518,1518,572,3608,0,0,2,1,4,1,Ex,12,Typ,2,TA,Detchd,1993,Unf,3,840,Ex,TA,Y,0,260,0,0,410,0,NA,GdPrv,NA,0,6,2006,WD,Normal,475000 +187,80,RL,NA,9947,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Mitchel,Norm,Norm,1Fam,SLvl,7,5,1990,1991,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,Gd,TA,Av,GLQ,611,Unf,0,577,1188,GasA,Ex,Y,SBrkr,1217,0,0,1217,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,1990,Unf,2,497,TA,TA,Y,168,27,0,0,0,0,NA,GdPrv,NA,0,6,2009,WD,Normal,173000 +188,50,RL,60,10410,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,5,7,1916,1987,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Fa,TA,No,Unf,0,Unf,0,660,660,GasA,Ex,Y,SBrkr,808,704,144,1656,0,0,2,1,3,1,TA,8,Min2,0,NA,Detchd,1916,Unf,1,180,Fa,Fa,N,0,0,0,140,0,0,NA,MnPrv,NA,0,8,2009,WD,Normal,135000 +189,90,RL,64,7018,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,SawyerW,Feedr,Norm,Duplex,SFoyer,5,5,1979,1979,Gable,CompShg,Plywood,Plywood,Stone,275,TA,TA,CBlock,Gd,TA,Av,GLQ,1086,Unf,0,0,1086,GasA,TA,Y,SBrkr,1224,0,0,1224,2,0,0,2,2,2,TA,6,Typ,2,TA,Detchd,1979,Unf,2,528,TA,TA,Y,120,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Alloca,153337 +190,120,RL,41,4923,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,TwnhsE,1Story,8,5,2001,2002,Gable,CompShg,CemntBd,CmentBd,None,0,Gd,TA,PConc,Ex,TA,Av,GLQ,1153,Unf,0,440,1593,GasA,Ex,Y,SBrkr,1593,0,0,1593,1,0,1,1,0,1,Ex,5,Typ,1,Gd,Attchd,2001,Fin,2,682,TA,TA,Y,0,120,0,0,224,0,NA,NA,NA,0,8,2008,WD,Normal,286000 +191,70,RL,70,10570,Pave,NA,Reg,Bnk,AllPub,Inside,Mod,Crawfor,Norm,Norm,1Fam,2Story,8,8,1932,1994,Hip,CompShg,BrkFace,BrkFace,None,0,Gd,TA,CBlock,Gd,Gd,No,Rec,297,Unf,0,556,853,GasA,TA,Y,SBrkr,1549,1178,0,2727,0,0,2,1,3,1,Gd,10,Maj1,2,TA,Detchd,1932,Unf,2,440,TA,TA,Y,0,74,0,0,0,0,NA,NA,NA,0,12,2007,WD,Normal,315000 +192,60,RL,NA,7472,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NAmes,Norm,Norm,1Fam,2Story,7,9,1972,2004,Gable,CompShg,HdBoard,HdBoard,BrkFace,138,TA,TA,CBlock,TA,TA,No,ALQ,626,Unf,0,99,725,GasA,Gd,Y,SBrkr,725,754,0,1479,1,0,1,1,4,1,Gd,7,Typ,0,NA,Attchd,1972,Fin,2,484,TA,TA,Y,0,32,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,184000 +193,20,RL,68,9017,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,560,Unf,0,871,1431,GasA,Ex,Y,SBrkr,1431,0,0,1431,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,1999,Fin,2,666,TA,TA,Y,0,35,0,0,0,0,NA,NA,NA,0,9,2009,WD,Normal,192000 +194,160,RM,24,2522,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,Twnhs,2Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,Stone,50,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,970,970,GasA,Ex,Y,SBrkr,970,739,0,1709,0,0,2,0,3,1,Gd,7,Maj1,0,NA,Detchd,2004,Unf,2,380,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,130000 +195,20,RL,60,7180,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,7,1972,1972,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,Av,ALQ,390,Unf,0,474,864,GasA,TA,Y,SBrkr,864,0,0,864,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1989,Unf,1,352,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,127000 +196,160,RL,24,2280,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NPkVill,Norm,Norm,Twnhs,2Story,6,6,1976,1976,Gable,CompShg,Plywood,Brk Cmn,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,566,Unf,0,289,855,GasA,TA,Y,SBrkr,855,601,0,1456,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1976,Unf,2,440,TA,TA,Y,87,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,148500 +197,20,RL,79,9416,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,7,5,2007,2007,Hip,CompShg,CemntBd,CmentBd,Stone,205,Ex,TA,PConc,Ex,TA,No,GLQ,1126,Unf,0,600,1726,GasA,Ex,Y,SBrkr,1726,0,0,1726,1,0,2,0,3,1,Ex,8,Typ,1,Gd,Attchd,2007,Fin,3,786,TA,TA,Y,171,138,0,0,266,0,NA,NA,NA,0,9,2007,New,Partial,311872 +198,75,RL,174,25419,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Artery,Norm,1Fam,2Story,8,4,1918,1990,Gable,CompShg,Stucco,Stucco,None,0,Gd,Gd,PConc,TA,TA,No,GLQ,1036,LwQ,184,140,1360,GasA,Gd,Y,SBrkr,1360,1360,392,3112,1,1,2,0,4,1,Gd,8,Typ,1,Ex,Detchd,1918,Unf,2,795,TA,TA,Y,0,16,552,0,0,512,Ex,GdPrv,NA,0,3,2006,WD,Abnorml,235000 +199,75,RM,92,5520,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,2.5Fin,6,6,1912,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,755,755,GasA,Ex,Y,SBrkr,929,929,371,2229,0,0,1,0,5,1,TA,8,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,198,30,0,0,0,NA,MnPrv,NA,0,7,2009,WD,Abnorml,104000 +200,20,RL,76,9591,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2004,2005,Hip,CompShg,VinylSd,VinylSd,BrkFace,262,Gd,TA,PConc,Ex,TA,Av,GLQ,1088,Unf,0,625,1713,GasA,Ex,Y,SBrkr,1713,0,0,1713,1,0,2,0,3,1,Ex,7,Typ,1,Gd,Attchd,2004,Fin,3,856,TA,TA,Y,0,26,0,0,170,0,NA,NA,NA,0,1,2009,WD,Normal,274900 +201,20,RM,80,8546,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1121,1121,GasA,Ex,Y,SBrkr,1121,0,0,1121,0,0,2,0,2,1,TA,5,Typ,0,NA,Attchd,2003,RFn,2,440,TA,TA,Y,132,64,0,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,140000 +202,20,RL,75,10125,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,1Story,6,6,1977,1977,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,641,LwQ,279,276,1196,GasA,TA,Y,SBrkr,1279,0,0,1279,0,1,2,0,3,1,TA,6,Typ,2,Fa,Detchd,1980,Unf,2,473,TA,TA,Y,238,83,0,0,0,0,NA,MnPrv,NA,0,2,2008,WD,Normal,171500 +203,50,RL,50,7000,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Artery,Norm,1Fam,1.5Fin,6,6,1924,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,BrkTil,Fa,TA,No,LwQ,617,Unf,0,0,617,GasA,Gd,Y,SBrkr,865,445,0,1310,0,0,2,0,2,1,TA,6,Min1,0,NA,Attchd,1924,Unf,1,398,TA,TA,Y,0,0,126,0,0,0,NA,NA,NA,0,5,2006,COD,Normal,112000 +204,120,RM,NA,4438,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,TwnhsE,1Story,6,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,205,Gd,TA,PConc,Gd,TA,Av,GLQ,662,Unf,0,186,848,GasA,Ex,Y,SBrkr,848,0,0,848,1,0,1,0,1,1,Gd,3,Typ,1,Gd,Attchd,2004,RFn,2,420,TA,TA,Y,149,0,0,0,0,0,NA,NA,NA,0,1,2008,WD,Normal,149000 +205,50,RM,50,3500,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,5,7,1947,1950,Gable,CompShg,AsbShng,AsbShng,None,0,TA,TA,CBlock,TA,TA,No,LwQ,312,Unf,0,408,720,GasA,TA,Y,SBrkr,720,564,0,1284,0,0,1,1,2,1,TA,5,Typ,0,NA,Detchd,1948,Unf,1,240,TA,TA,Y,0,35,0,0,0,0,NA,MnWw,NA,0,4,2009,WD,Normal,110000 +206,20,RL,99,11851,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,1Story,7,5,1990,1990,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1424,1424,GasA,Ex,Y,SBrkr,1442,0,0,1442,0,0,2,0,3,1,TA,5,Typ,0,NA,Attchd,1990,RFn,2,500,TA,TA,Y,0,34,0,508,0,0,NA,NA,NA,0,5,2009,WD,Normal,180500 +207,20,RL,40,13673,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Sawyer,RRAe,Norm,1Fam,1Story,5,5,1962,1962,Gable,CompShg,HdBoard,HdBoard,None,0,TA,Gd,CBlock,TA,TA,No,Unf,0,Unf,0,1140,1140,GasA,TA,Y,SBrkr,1696,0,0,1696,0,0,1,1,3,1,TA,8,Min2,1,TA,Attchd,1962,RFn,1,349,TA,TA,Y,0,30,0,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,143900 +208,20,RL,NA,12493,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,5,1960,1960,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,No,ALQ,419,Rec,306,375,1100,GasA,TA,Y,SBrkr,1100,0,0,1100,1,0,1,0,3,1,TA,6,Typ,1,Po,Attchd,1960,RFn,1,312,TA,TA,Y,355,0,0,0,0,0,NA,GdWo,NA,0,4,2008,WD,Normal,141000 +209,60,RL,NA,14364,Pave,NA,IR1,Low,AllPub,Inside,Mod,SawyerW,Norm,Norm,1Fam,2Story,7,5,1988,1989,Gable,CompShg,Plywood,Plywood,BrkFace,128,Gd,TA,CBlock,Gd,TA,Gd,GLQ,1065,Unf,0,92,1157,GasA,Ex,Y,SBrkr,1180,882,0,2062,1,0,2,1,3,1,TA,7,Typ,1,Gd,Attchd,1988,Fin,2,454,TA,TA,Y,60,55,0,0,154,0,NA,NA,NA,0,4,2007,WD,Normal,277000 +210,20,RL,75,8250,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,7,1964,1964,Hip,CompShg,HdBoard,HdBoard,Stone,260,TA,TA,CBlock,Gd,TA,No,Rec,787,Unf,0,305,1092,GasA,Ex,Y,SBrkr,1092,0,0,1092,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1964,RFn,2,504,TA,Gd,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,7,2008,WD,Normal,145000 +211,30,RL,67,5604,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,6,1925,1950,Gable,CompShg,Stucco,Stucco,None,0,TA,TA,CBlock,TA,TA,No,Rec,468,Unf,0,396,864,GasA,TA,N,FuseA,864,0,0,864,1,0,1,0,2,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,96,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,98000 +212,20,RL,83,10420,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,6,5,2009,2009,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Mn,GLQ,36,Unf,0,1176,1212,GasA,Ex,Y,SBrkr,1212,0,0,1212,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2009,RFn,2,460,TA,TA,Y,100,22,0,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,186000 +213,60,FV,72,8640,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2009,2009,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,GLQ,822,Unf,0,78,900,GasA,Ex,Y,SBrkr,932,920,0,1852,1,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,2009,RFn,2,644,TA,TA,Y,168,108,0,0,0,0,NA,NA,NA,0,7,2009,New,Partial,252678 +214,20,RL,43,13568,Pave,NA,IR2,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,5,1995,1995,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,ALQ,716,Unf,0,274,990,GasA,Ex,Y,SBrkr,990,0,0,990,0,1,1,0,3,1,TA,5,Typ,0,NA,Attchd,1996,Unf,2,576,TA,TA,Y,224,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,156000 +215,60,RL,NA,10900,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,CollgCr,Norm,Norm,1Fam,2Story,6,7,1977,1977,Gable,CompShg,HdBoard,HdBoard,BrkFace,153,TA,TA,CBlock,Gd,TA,No,GLQ,378,Unf,0,311,689,GasA,Ex,Y,SBrkr,689,703,0,1392,0,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1977,Fin,1,299,TA,TA,Y,0,36,0,0,0,0,NA,MnPrv,Shed,450,3,2010,WD,Normal,161750 +216,20,RL,72,10011,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1957,1996,Gable,CompShg,HdBoard,HdBoard,BrkFace,64,TA,TA,CBlock,TA,TA,No,BLQ,360,Unf,0,710,1070,GasA,TA,Y,SBrkr,1236,0,0,1236,0,1,1,0,2,1,Gd,6,Min1,1,Fa,Attchd,1957,Unf,1,447,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,5,2006,WD,Normal,134450 +217,20,RL,65,8450,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,266,Gd,TA,PConc,Gd,TA,Mn,GLQ,946,Unf,0,490,1436,GasA,Ex,Y,SBrkr,1436,0,0,1436,1,0,2,0,3,1,Gd,8,Typ,0,NA,Attchd,2004,Unf,2,484,TA,TA,Y,139,98,0,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,210000 +218,70,RM,57,9906,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,4,4,1925,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,686,686,GasA,Fa,N,SBrkr,810,518,0,1328,0,0,1,0,3,1,TA,8,Typ,0,NA,Detchd,1940,Unf,1,210,TA,TA,Y,0,172,60,0,0,0,NA,NA,NA,0,9,2006,WD,Family,107000 +219,50,RL,NA,15660,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Crawfor,Norm,Norm,1Fam,1.5Fin,7,9,1939,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,312,Gd,Gd,CBlock,TA,TA,No,BLQ,341,Unf,0,457,798,GasA,Ex,Y,SBrkr,1137,817,0,1954,0,1,1,1,3,1,Gd,8,Typ,2,TA,Attchd,1939,Unf,2,431,TA,TA,Y,0,119,150,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,311500 +220,120,RL,43,3010,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,16,Gd,TA,PConc,Gd,TA,Av,GLQ,16,Unf,0,1232,1248,GasA,Ex,Y,SBrkr,1248,0,0,1248,0,0,2,0,2,1,Gd,5,Typ,0,NA,Attchd,2005,Fin,2,438,TA,TA,Y,108,0,0,0,0,0,NA,NA,NA,0,3,2006,New,Partial,167240 +221,20,RL,73,8990,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Mn,Unf,0,Unf,0,1498,1498,GasA,Ex,Y,SBrkr,1498,0,0,1498,0,0,2,0,2,1,Gd,5,Typ,0,NA,Attchd,2006,RFn,2,675,TA,TA,Y,351,33,0,0,0,0,NA,NA,NA,0,4,2006,New,Partial,204900 +222,60,RL,NA,8068,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1010,1010,GasA,Ex,Y,SBrkr,1010,1257,0,2267,0,0,2,1,4,1,Gd,8,Typ,1,TA,BuiltIn,2002,RFn,2,390,TA,TA,Y,120,46,0,0,0,0,NA,NA,NA,0,12,2009,ConLI,Normal,200000 +223,60,RL,85,11475,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,RRAn,Norm,1Fam,2Story,6,6,1975,1975,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,550,Unf,0,163,713,GasA,TA,Y,SBrkr,811,741,0,1552,1,0,2,1,3,1,TA,6,Typ,1,TA,Attchd,1975,RFn,2,434,TA,TA,Y,209,208,0,0,0,0,NA,MnPrv,NA,0,2,2006,WD,Normal,179900 +224,20,RL,70,10500,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,6,1971,1971,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,ALQ,524,LwQ,180,160,864,GasA,Gd,Y,SBrkr,864,0,0,864,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1989,Unf,2,576,TA,TA,Y,216,0,0,0,0,0,NA,NA,NA,0,3,2009,WD,Abnorml,97000 +225,20,RL,103,13472,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,10,5,2003,2003,Hip,CompShg,VinylSd,VinylSd,BrkFace,922,Ex,TA,PConc,Ex,TA,Gd,GLQ,56,Unf,0,2336,2392,GasA,Ex,Y,SBrkr,2392,0,0,2392,0,0,2,0,3,1,Ex,8,Typ,1,Ex,Attchd,2003,Fin,3,968,TA,TA,Y,248,105,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,386250 +226,160,RM,21,1680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,5,5,1971,1971,Gable,CompShg,HdBoard,HdBoard,BrkFace,142,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,630,630,GasA,TA,Y,SBrkr,630,672,0,1302,0,0,2,1,3,1,TA,6,Typ,0,NA,Detchd,1991,Unf,1,280,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2009,COD,Abnorml,112000 +227,60,RL,82,9950,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,7,5,1995,1995,Gable,CompShg,VinylSd,VinylSd,BrkFace,290,Gd,TA,PConc,Gd,TA,No,GLQ,565,Unf,0,638,1203,GasA,Ex,Y,SBrkr,1214,1306,0,2520,0,0,2,1,4,1,Gd,9,Typ,1,TA,Attchd,1995,RFn,3,721,TA,TA,Y,224,114,0,0,0,0,NA,NA,NA,0,6,2007,WD,Abnorml,290000 +228,160,RM,21,1869,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,6,6,1970,1970,Gable,CompShg,HdBoard,HdBoard,BrkFace,127,TA,TA,CBlock,TA,TA,No,Rec,321,Unf,0,162,483,GasA,TA,Y,SBrkr,483,504,0,987,0,0,1,1,2,1,TA,5,Typ,0,NA,Detchd,1987,Unf,1,280,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,9,2008,WD,Normal,106000 +229,20,RL,70,8521,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,5,5,1967,1967,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,ALQ,842,Unf,0,70,912,GasA,TA,Y,SBrkr,912,0,0,912,0,0,1,0,3,1,TA,5,Typ,1,Fa,Detchd,1974,Unf,1,336,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,5,2010,WD,Normal,125000 +230,120,RL,43,3182,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,16,Gd,TA,PConc,Gd,TA,Av,GLQ,16,Unf,0,1357,1373,GasA,Ex,Y,SBrkr,1555,0,0,1555,0,0,2,0,2,1,Gd,7,Typ,1,TA,Attchd,2005,Fin,2,430,TA,TA,Y,143,20,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,192500 +231,20,RL,73,8760,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1959,1959,Hip,CompShg,MetalSd,MetalSd,BrkFace,220,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1194,1194,GasA,TA,Y,SBrkr,1194,0,0,1194,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1959,RFn,1,312,TA,TA,Y,0,0,120,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,148000 +232,60,RL,174,15138,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1995,1996,Gable,CompShg,VinylSd,VinylSd,BrkFace,506,Gd,TA,PConc,Gd,TA,No,GLQ,689,Unf,0,773,1462,GasA,Ex,Y,SBrkr,1490,1304,0,2794,1,0,2,1,4,1,Ex,9,Typ,1,TA,Attchd,1995,Fin,3,810,TA,TA,Y,0,146,202,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,403000 +233,160,RM,21,1680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,6,5,1972,1972,Gable,CompShg,HdBoard,HdBoard,BrkFace,297,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,483,483,GasA,TA,Y,SBrkr,483,504,0,987,0,0,1,1,2,1,TA,5,Typ,1,Po,Attchd,1972,Unf,1,288,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,94500 +234,20,RL,75,10650,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,6,1976,1976,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,Gd,Av,LwQ,182,ALQ,712,0,894,GasA,TA,Y,SBrkr,894,0,0,894,1,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1976,Unf,1,308,TA,TA,Y,365,0,0,0,0,0,NA,MnPrv,NA,0,2,2010,WD,Normal,128200 +235,60,RL,NA,7851,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,NA,NA,Gd,TA,PConc,Gd,TA,No,GLQ,625,Unf,0,235,860,GasA,Ex,Y,SBrkr,860,1100,0,1960,1,0,2,1,4,1,Gd,8,Typ,2,TA,BuiltIn,2002,Fin,2,440,TA,TA,Y,288,48,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,216500 +236,160,RM,21,1680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,TwnhsE,2Story,6,3,1971,1971,Gable,CompShg,HdBoard,HdBoard,BrkFace,604,TA,TA,CBlock,TA,TA,No,ALQ,358,Unf,0,125,483,GasA,TA,Y,SBrkr,483,504,0,987,0,0,1,1,2,1,TA,5,Typ,0,NA,Detchd,1971,Unf,1,264,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,89500 +237,20,RL,65,8773,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,98,Gd,TA,PConc,Gd,TA,Av,GLQ,24,Unf,0,1390,1414,GasA,Ex,Y,SBrkr,1414,0,0,1414,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2004,RFn,2,494,TA,TA,Y,132,105,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,185500 +238,60,RL,NA,9453,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,SawyerW,RRNe,Norm,1Fam,2Story,7,7,1993,2003,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,No,BLQ,402,Unf,0,594,996,GasA,Ex,Y,SBrkr,1014,730,0,1744,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,1993,RFn,2,457,TA,TA,Y,370,70,0,238,0,0,NA,NA,NA,0,2,2010,WD,Normal,194500 +239,20,RL,93,12030,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2007,2007,Hip,CompShg,VinylSd,VinylSd,BrkFace,254,Ex,TA,PConc,Ex,TA,No,Unf,0,Unf,0,1694,1694,GasA,Ex,Y,SBrkr,1694,0,0,1694,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2007,Fin,3,818,TA,TA,Y,168,228,0,0,0,0,NA,NA,NA,0,12,2007,New,Partial,318000 +240,50,RL,52,8741,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,6,4,1945,1950,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,Fa,No,LwQ,94,Unf,0,641,735,GasA,TA,Y,FuseA,798,689,0,1487,0,0,1,1,3,1,TA,7,Typ,1,Gd,Detchd,1949,Unf,1,220,TA,TA,Y,0,140,0,0,0,0,NA,MnPrv,NA,0,4,2010,WD,Normal,113000 +241,20,FV,75,9000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2008,2008,Gable,CompShg,VinylSd,VinylSd,Stone,36,Gd,TA,PConc,Gd,TA,Av,GLQ,1078,Unf,0,488,1566,GasA,Ex,Y,SBrkr,1566,0,0,1566,1,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2008,RFn,2,750,TA,TA,Y,144,168,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,262500 +242,30,RM,40,3880,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,9,1945,1997,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,TA,TA,No,ALQ,329,Unf,0,357,686,GasA,Gd,Y,SBrkr,866,0,0,866,0,0,1,0,2,1,Gd,4,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,58,42,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,110500 +243,50,RM,63,5000,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,5,4,1900,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,540,540,GasA,Gd,N,FuseA,889,551,0,1440,0,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1940,Unf,1,352,Fa,TA,Y,0,0,77,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,79000 +244,160,RL,75,10762,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,SawyerW,Norm,Norm,TwnhsE,2Story,6,6,1980,1980,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,626,626,GasA,TA,Y,SBrkr,626,591,0,1217,0,0,1,1,3,1,TA,6,Typ,1,TA,Attchd,1980,RFn,1,288,TA,TA,Y,0,28,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,120000 +245,60,RL,NA,8880,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,7,5,1994,2002,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,695,Unf,0,253,948,GasA,Ex,Y,SBrkr,1222,888,0,2110,1,0,2,1,3,1,Gd,8,Typ,2,Fa,Attchd,1994,RFn,2,463,TA,TA,Y,0,130,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,205000 +246,20,RL,80,10400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,7,5,1988,1988,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,102,TA,TA,CBlock,Gd,TA,Av,GLQ,929,Unf,0,916,1845,GasA,Gd,Y,SBrkr,1872,0,0,1872,0,1,2,0,3,1,TA,6,Typ,1,TA,Attchd,1988,Fin,2,604,TA,TA,Y,197,39,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,241500 +247,190,RM,69,9142,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,2fmCon,2Story,6,8,1910,1950,Gable,CompShg,AsbShng,AsbShng,None,0,TA,Fa,Stone,Fa,TA,No,Unf,0,Unf,0,1020,1020,GasA,Gd,N,FuseP,908,1020,0,1928,0,0,2,0,4,2,Fa,9,Typ,0,NA,Detchd,1910,Unf,1,440,Po,Po,Y,0,60,112,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,137000 +248,20,RL,75,11310,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1954,1954,Hip,CompShg,Wd Sdng,BrkFace,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1367,1367,GasA,Ex,Y,SBrkr,1375,0,0,1375,0,0,1,0,2,1,TA,5,Typ,1,TA,Attchd,1954,Unf,2,451,TA,TA,Y,0,30,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,140000 +249,60,RL,72,11317,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,101,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,840,840,GasA,Ex,Y,SBrkr,840,828,0,1668,0,0,2,1,3,1,Gd,8,Typ,0,NA,Attchd,2003,RFn,2,500,TA,TA,Y,144,68,0,0,0,0,NA,NA,NA,0,9,2007,WD,Normal,180000 +250,50,RL,NA,159000,Pave,NA,IR2,Low,AllPub,CulDSac,Sev,ClearCr,Norm,Norm,1Fam,1.5Fin,6,7,1958,2006,Gable,CompShg,Wd Sdng,HdBoard,BrkCmn,472,Gd,TA,CBlock,Gd,TA,Gd,Rec,697,Unf,0,747,1444,GasA,Gd,Y,SBrkr,1444,700,0,2144,0,1,2,0,4,1,Gd,7,Typ,2,TA,Attchd,1958,Fin,2,389,TA,TA,Y,0,98,0,0,0,0,NA,NA,Shed,500,6,2007,WD,Normal,277000 +251,30,RL,55,5350,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1Story,3,2,1940,1966,Gable,CompShg,Wd Sdng,Plywood,None,0,TA,Po,CBlock,TA,TA,No,Unf,0,Unf,0,728,728,GasA,Ex,Y,SBrkr,1306,0,0,1306,0,0,1,0,3,1,Fa,6,Mod,0,NA,NA,NA,NA,0,0,NA,NA,Y,263,0,0,0,0,0,NA,GdWo,Shed,450,5,2010,WD,Normal,76500 +252,120,RM,44,4750,Pave,NA,IR1,HLS,AllPub,Inside,Mod,Crawfor,Norm,Norm,TwnhsE,1Story,8,5,2006,2007,Hip,CompShg,VinylSd,VinylSd,Stone,481,Gd,TA,PConc,Gd,TA,Gd,GLQ,1573,Unf,0,0,1573,GasA,Ex,Y,SBrkr,1625,0,0,1625,1,1,2,0,2,1,Gd,5,Typ,1,Gd,Attchd,2006,Fin,2,538,TA,TA,Y,123,0,0,0,153,0,NA,NA,NA,0,12,2007,WD,Family,235000 +253,60,RL,65,8366,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,6,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,798,798,GasA,Ex,Y,SBrkr,798,842,0,1640,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2004,RFn,2,520,TA,TA,Y,138,45,0,0,0,0,NA,NA,NA,0,12,2008,WD,Normal,173000 +254,80,RL,85,9350,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,6,7,1964,1991,Hip,CompShg,HdBoard,HdBoard,BrkFace,108,TA,TA,CBlock,Gd,TA,Gd,LwQ,270,ALQ,580,452,1302,GasA,Ex,Y,SBrkr,1302,0,0,1302,0,1,2,0,3,1,Gd,7,Min1,0,NA,Attchd,1964,RFn,1,309,TA,TA,Y,333,0,0,0,0,0,NA,MnPrv,NA,0,10,2007,CWD,Normal,158000 +255,20,RL,70,8400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1957,1957,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,Rec,922,Unf,0,392,1314,GasA,TA,Y,SBrkr,1314,0,0,1314,1,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1957,RFn,1,294,TA,TA,Y,250,0,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,145000 +256,60,RL,66,8738,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,BrkFace,302,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,975,975,GasA,Ex,Y,SBrkr,1005,1286,0,2291,0,0,2,1,4,1,Gd,8,Typ,1,TA,BuiltIn,1999,Fin,2,429,TA,TA,Y,192,0,0,0,0,0,NA,NA,NA,0,2,2006,WD,Normal,230000 +257,60,FV,64,8791,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,6,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Rec,503,Unf,0,361,864,GasA,Ex,Y,SBrkr,864,864,0,1728,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2003,RFn,2,673,TA,TA,Y,216,56,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,207500 +258,20,RL,68,8814,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,180,Gd,TA,PConc,Gd,TA,No,GLQ,1334,Unf,0,270,1604,GasA,Ex,Y,SBrkr,1604,0,0,1604,1,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2006,RFn,2,660,TA,TA,Y,123,110,0,0,0,0,NA,NA,NA,0,3,2009,WD,Abnorml,220000 +259,60,RL,80,12435,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2001,2001,Gable,CompShg,VinylSd,VinylSd,BrkFace,172,Gd,TA,PConc,Gd,TA,No,GLQ,361,Unf,0,602,963,GasA,Ex,Y,SBrkr,963,829,0,1792,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,2001,RFn,2,564,TA,TA,Y,0,96,0,245,0,0,NA,NA,NA,0,5,2008,WD,Normal,231500 +260,20,RM,70,12702,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,5,1956,1956,Gable,CompShg,BrkFace,BrkFace,None,0,TA,TA,PConc,NA,NA,NA,NA,0,NA,0,0,0,GasA,Gd,Y,FuseA,882,0,0,882,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1956,Unf,1,308,TA,TA,Y,0,45,0,0,0,0,NA,NA,NA,0,12,2008,WD,Normal,97000 +261,80,RL,120,19296,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Artery,Norm,1Fam,SLvl,6,5,1962,1962,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,399,TA,TA,CBlock,TA,TA,Gd,Rec,672,ALQ,690,0,1362,GasA,TA,Y,SBrkr,1382,0,0,1382,1,0,1,0,3,1,TA,6,Typ,1,TA,Attchd,1991,Unf,2,884,TA,TA,Y,0,0,252,0,0,0,NA,GdWo,NA,0,5,2009,WD,Normal,176000 +262,60,RL,69,9588,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,2007,2007,Gable,CompShg,CemntBd,CmentBd,Stone,270,Gd,TA,PConc,Ex,TA,No,Unf,0,Unf,0,1482,1482,GasA,Ex,Y,SBrkr,1482,1092,0,2574,0,0,2,1,3,1,Ex,10,Typ,1,Gd,BuiltIn,2007,Fin,3,868,TA,TA,Y,0,148,0,0,0,0,NA,NA,NA,0,11,2007,New,Partial,276000 +263,80,RL,88,8471,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Sawyer,Norm,Norm,1Fam,SLvl,6,7,1977,1995,Gable,CompShg,HdBoard,Plywood,BrkFace,46,TA,TA,CBlock,Gd,Gd,Av,ALQ,506,Unf,0,0,506,GasA,TA,Y,SBrkr,1212,0,0,1212,1,0,1,0,3,1,TA,6,Typ,1,TA,Attchd,1978,Unf,2,492,TA,TA,Y,292,12,0,0,0,0,NA,GdWo,NA,0,7,2006,WD,Normal,151000 +264,50,RM,50,5500,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,5,7,1929,2001,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,LwQ,234,ALQ,692,0,926,GasA,TA,Y,SBrkr,926,0,390,1316,1,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1974,Unf,2,484,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,130000 +265,30,RM,30,5232,Pave,Grvl,IR3,Bnk,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1Story,5,5,1925,2004,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Fa,TA,No,Unf,0,Unf,0,680,680,GasA,Gd,N,FuseP,764,0,0,764,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1965,Unf,2,504,TA,TA,N,0,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,73000 +266,20,RL,78,12090,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,6,1981,1981,Gable,CompShg,MetalSd,MetalSd,BrkFace,210,TA,Gd,CBlock,Gd,TA,No,GLQ,588,LwQ,228,606,1422,GasA,TA,Y,SBrkr,1422,0,0,1422,0,0,2,0,3,1,Gd,7,Typ,1,TA,Attchd,1981,Fin,2,576,TA,TA,Y,276,0,0,0,0,0,NA,GdPrv,NA,0,6,2008,WD,Normal,175500 +267,60,RL,70,11207,Pave,NA,IR1,HLS,AllPub,FR2,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1997,1997,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Av,GLQ,714,Unf,0,88,802,GasA,Gd,Y,SBrkr,802,709,0,1511,1,0,2,1,3,1,TA,8,Typ,1,TA,Attchd,1997,Fin,2,413,TA,TA,Y,95,75,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,185000 +268,75,RL,60,8400,Pave,NA,Reg,Bnk,AllPub,Inside,Mod,SWISU,Norm,Norm,1Fam,2.5Fin,5,8,1939,1997,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,No,LwQ,378,Unf,0,342,720,GasA,Ex,Y,SBrkr,1052,720,420,2192,0,0,2,1,4,1,Gd,8,Typ,1,Gd,Detchd,1939,Unf,1,240,TA,TA,Y,262,24,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,179500 +269,30,RM,71,6900,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1Story,5,6,1940,1955,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,403,Rec,125,212,740,GasA,Ex,Y,SBrkr,778,0,0,778,0,0,1,0,2,1,TA,4,Typ,1,Gd,Detchd,1966,Fin,1,924,Ex,Ex,Y,0,25,0,0,0,0,NA,NA,NA,0,2,2008,WD,Normal,120500 +270,20,RL,NA,7917,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,6,7,1976,1976,Hip,CompShg,HdBoard,HdBoard,BrkFace,174,TA,Gd,CBlock,TA,Gd,No,BLQ,751,Unf,0,392,1143,GasA,TA,Y,SBrkr,1113,0,0,1113,1,0,1,1,3,1,TA,6,Typ,1,Fa,Attchd,1987,RFn,1,504,TA,Gd,Y,370,30,0,0,0,0,NA,GdPrv,NA,0,5,2007,WD,Normal,148000 +271,60,FV,84,10728,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Mn,Unf,0,Unf,0,1095,1095,GasA,Gd,Y,SBrkr,1095,844,0,1939,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2006,RFn,3,1053,TA,TA,Y,192,51,0,0,0,0,NA,NA,NA,0,8,2006,New,Partial,266000 +272,20,RL,73,39104,Pave,NA,IR1,Low,AllPub,CulDSac,Sev,ClearCr,Norm,Norm,1Fam,1Story,7,7,1954,2005,Flat,Membran,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,Gd,LwQ,226,GLQ,1063,96,1385,GasA,Ex,Y,SBrkr,1363,0,0,1363,1,0,1,0,2,1,TA,5,Mod,2,TA,Attchd,1954,Unf,2,439,TA,TA,Y,81,0,0,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,241500 +273,60,RL,92,11764,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,7,1999,2007,Gable,CompShg,VinylSd,VinylSd,BrkFace,348,Gd,TA,PConc,Gd,TA,No,GLQ,524,Unf,0,628,1152,GasA,Ex,Y,SBrkr,1164,1106,0,2270,0,0,2,1,4,1,Gd,9,Typ,1,Gd,Attchd,1999,Fin,3,671,TA,TA,Y,132,57,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,290000 +274,20,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Feedr,Norm,1Fam,1Story,6,6,1958,1988,Hip,CompShg,Wd Sdng,Wd Sdng,BrkCmn,183,TA,TA,CBlock,TA,TA,No,Rec,620,LwQ,620,0,1240,GasA,Gd,Y,SBrkr,1632,0,0,1632,1,0,2,0,3,1,TA,6,Min1,1,Gd,Attchd,1958,RFn,1,338,TA,TA,Y,289,0,0,0,0,0,NA,MnPrv,NA,0,4,2009,WD,Normal,139000 +275,20,RL,76,8314,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Mitchel,Norm,Norm,1Fam,1Story,5,7,1982,1982,Gable,CompShg,HdBoard,ImStucc,None,0,TA,TA,CBlock,TA,TA,Gd,ALQ,546,Unf,0,270,816,GasA,TA,Y,SBrkr,816,0,0,816,0,0,1,0,2,1,TA,5,Typ,0,NA,Attchd,1982,Unf,1,264,TA,TA,Y,168,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,124500 +276,50,RL,55,7264,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,7,7,1925,2007,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,Gd,BrkTil,TA,TA,No,Unf,0,Unf,0,952,952,GasW,Gd,N,SBrkr,952,596,0,1548,0,0,2,1,3,1,Ex,5,Typ,0,NA,Detchd,1978,Unf,2,672,TA,TA,Y,74,0,0,0,144,0,NA,NA,NA,0,10,2009,WD,Normal,205000 +277,20,RL,129,9196,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,1Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,TA,No,Unf,0,Unf,0,1560,1560,GasA,Ex,Y,SBrkr,1560,0,0,1560,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2003,Fin,2,573,TA,TA,Y,100,150,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,201000 +278,20,RL,140,19138,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,1Story,4,5,1951,1951,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,LwQ,120,Unf,0,744,864,GasA,Ex,Y,SBrkr,864,0,0,864,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1951,Unf,2,400,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,141000 +279,20,RL,107,14450,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,9,5,2006,2007,Gable,CompShg,CemntBd,CmentBd,BrkFace,315,Ex,TA,PConc,Ex,TA,Gd,Unf,0,Unf,0,2121,2121,GasA,Ex,Y,SBrkr,2121,0,0,2121,0,0,2,1,3,1,Ex,8,Typ,1,Ex,Attchd,2007,Fin,3,732,TA,TA,Y,124,98,0,0,142,0,NA,NA,NA,0,5,2007,New,Partial,415298 +280,60,RL,83,10005,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,2Story,7,5,1977,1977,Hip,CompShg,Plywood,Plywood,BrkFace,299,TA,TA,CBlock,Gd,TA,No,BLQ,392,Unf,0,768,1160,GasA,Ex,Y,SBrkr,1156,866,0,2022,0,0,2,1,4,1,TA,8,Typ,1,TA,Attchd,1977,Fin,2,505,TA,TA,Y,288,117,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,192000 +281,60,RL,82,11287,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,7,6,1989,1989,Gable,CompShg,Plywood,Plywood,BrkFace,340,Gd,TA,CBlock,Gd,TA,Av,GLQ,421,Unf,0,386,807,GasA,Gd,Y,SBrkr,1175,807,0,1982,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1989,Fin,2,575,TA,TA,Y,0,84,0,196,0,0,NA,NA,NA,0,1,2007,WD,Normal,228500 +282,20,FV,60,7200,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,6,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,68,Gd,TA,PConc,Gd,TA,No,GLQ,905,Unf,0,357,1262,GasA,Gd,Y,SBrkr,1262,0,0,1262,0,0,2,0,2,1,Gd,5,Typ,0,NA,Attchd,2006,Fin,2,572,TA,TA,Y,0,120,0,0,0,0,NA,NA,NA,0,5,2006,New,Partial,185000 +283,120,RL,34,5063,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,Twnhs,1Story,7,5,2007,2008,Gable,CompShg,VinylSd,VinylSd,Stone,166,Gd,TA,PConc,Gd,TA,No,GLQ,904,Unf,0,410,1314,GasA,Ex,Y,SBrkr,1314,0,0,1314,1,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2008,RFn,2,626,TA,TA,Y,172,62,0,0,0,0,NA,NA,NA,0,4,2009,ConLw,Normal,207500 +284,20,RL,74,9612,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Feedr,Norm,1Fam,1Story,8,5,2008,2009,Gable,CompShg,VinylSd,VinylSd,Stone,72,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1468,1468,GasA,Ex,Y,SBrkr,1468,0,0,1468,0,0,2,0,3,1,Gd,6,Typ,1,Gd,Attchd,2008,Fin,3,898,TA,TA,Y,210,150,0,0,0,0,NA,NA,NA,0,12,2009,New,Partial,244600 +285,120,RL,50,8012,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,TwnhsE,1Story,6,5,1992,1992,Gable,CompShg,Plywood,ImStucc,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,430,Unf,0,1145,1575,GasA,Gd,Y,SBrkr,1575,0,0,1575,1,0,2,0,2,1,Gd,5,Typ,0,NA,Attchd,1992,RFn,2,529,TA,TA,Y,0,0,52,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,179200 +286,160,FV,35,4251,Pave,Pave,IR1,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,7,5,2006,2007,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,625,625,GasA,Ex,Y,SBrkr,625,625,0,1250,0,0,2,1,2,1,Gd,5,Typ,0,NA,Detchd,2006,RFn,2,528,TA,TA,Y,0,54,0,0,0,0,NA,NA,NA,0,6,2007,New,Partial,164700 +287,50,RL,77,9786,Pave,NA,IR1,Bnk,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1.5Fin,6,7,1962,1981,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,600,Unf,0,312,912,GasA,TA,Y,SBrkr,1085,649,0,1734,0,0,1,1,3,1,Gd,7,Typ,1,Gd,Attchd,1962,RFn,2,440,TA,TA,Y,0,0,0,0,128,0,NA,GdPrv,NA,0,6,2006,WD,Normal,159000 +288,20,RL,NA,8125,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,4,1971,1971,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,BLQ,614,Unf,0,244,858,GasA,TA,Y,SBrkr,858,0,0,858,0,0,1,0,3,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,88000 +289,20,RL,NA,9819,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1967,1967,Gable,CompShg,MetalSd,MetalSd,BrkFace,31,TA,Gd,CBlock,TA,TA,No,BLQ,450,Unf,0,432,882,GasA,TA,Y,SBrkr,900,0,0,900,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1970,Unf,1,280,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,2,2010,WD,Normal,122000 +290,70,RL,60,8730,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,RRAn,Norm,1Fam,2Story,6,7,1915,2003,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,698,698,GasA,Ex,Y,FuseA,698,698,0,1396,0,0,1,0,3,1,TA,7,Typ,0,NA,Detchd,2003,Unf,1,384,TA,TA,Y,0,0,0,0,259,0,NA,NA,NA,0,7,2007,WD,Normal,153575 +291,60,RL,120,15611,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1079,1079,GasA,Ex,Y,SBrkr,1079,840,0,1919,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2006,RFn,2,685,Gd,TA,Y,0,51,0,0,0,0,NA,NA,NA,0,7,2006,New,Partial,233230 +292,190,RL,55,5687,Pave,Grvl,Reg,Bnk,AllPub,Inside,Gtl,SWISU,Norm,Norm,2fmCon,2Story,5,6,1912,2000,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Fa,PConc,TA,Fa,No,Rec,210,Unf,0,570,780,GasA,Ex,N,SBrkr,936,780,0,1716,1,0,2,0,6,1,Fa,9,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,184,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,135900 +293,50,RL,60,11409,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,5,4,1949,2008,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,LwQ,292,Unf,0,476,768,GasA,Gd,Y,SBrkr,1148,568,0,1716,0,0,1,1,3,1,TA,8,Min2,1,Gd,Attchd,1949,Unf,1,281,TA,TA,Y,0,0,0,0,160,0,NA,NA,NA,0,1,2009,WD,Normal,131000 +294,60,RL,NA,16659,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NWAmes,PosA,Norm,1Fam,2Story,7,7,1977,1994,Gable,CompShg,Plywood,Plywood,BrkFace,34,TA,TA,CBlock,TA,TA,No,ALQ,795,Unf,0,0,795,GasA,Fa,Y,SBrkr,1468,795,0,2263,1,0,2,1,3,1,Gd,9,Typ,1,TA,Attchd,1977,Fin,2,539,TA,TA,Y,0,250,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,235000 +295,20,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1953,1953,Hip,CompShg,HdBoard,HdBoard,Stone,238,TA,TA,CBlock,TA,TA,No,GLQ,1285,Unf,0,131,1416,GasA,TA,Y,SBrkr,1644,0,0,1644,1,0,1,0,3,1,TA,7,Typ,2,Gd,Attchd,1953,Fin,2,418,TA,TA,Y,110,0,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,167000 +296,80,RL,37,7937,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Mitchel,Norm,Norm,1Fam,SLvl,6,6,1984,1984,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,Av,GLQ,819,Unf,0,184,1003,GasA,TA,Y,SBrkr,1003,0,0,1003,1,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1984,Unf,2,588,TA,TA,Y,120,0,0,0,0,0,NA,GdPrv,NA,0,3,2006,WD,Normal,142500 +297,50,RM,75,13710,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Fin,5,5,1950,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,BLQ,420,Unf,0,490,910,GasA,TA,Y,FuseA,910,648,0,1558,0,0,1,1,4,1,TA,6,Typ,0,NA,Attchd,1950,Unf,1,282,TA,TA,Y,289,0,0,0,0,0,NA,MnPrv,NA,0,6,2007,WD,Normal,152000 +298,60,FV,66,7399,Pave,Pave,IR1,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,1997,1998,Hip,CompShg,VinylSd,VinylSd,BrkFace,1600,Gd,TA,PConc,Gd,TA,No,BLQ,649,Unf,0,326,975,GasA,Ex,Y,SBrkr,975,975,0,1950,0,0,2,1,3,1,Gd,7,Typ,1,TA,Detchd,1997,RFn,2,576,TA,TA,Y,0,10,0,0,198,0,NA,NA,NA,0,6,2007,WD,Normal,239000 +299,60,RL,90,11700,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,2Story,6,6,1968,1968,Mansard,CompShg,HdBoard,AsphShn,BrkFace,365,Gd,TA,CBlock,TA,TA,No,ALQ,384,Rec,175,143,702,GasA,Gd,Y,SBrkr,1041,702,0,1743,0,1,1,2,3,1,TA,7,Typ,1,Gd,Attchd,1968,Unf,2,539,TA,TA,Y,224,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,175000 +300,20,RL,80,14000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1Story,6,8,1950,2004,Gable,CompShg,HdBoard,HdBoard,None,0,TA,Gd,CBlock,TA,TA,No,Unf,0,Unf,0,1092,1092,GasA,Ex,Y,SBrkr,1152,0,0,1152,0,1,1,0,3,1,Gd,6,Typ,1,Gd,Attchd,1950,Unf,1,300,TA,TA,Y,0,36,0,0,0,0,NA,GdPrv,NA,0,8,2009,WD,Family,158500 +301,190,RL,90,15750,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Crawfor,Norm,Norm,2fmCon,1Story,5,5,1953,1953,Hip,CompShg,MetalSd,MetalSd,BrkFace,56,TA,TA,CBlock,TA,TA,Mn,BLQ,841,Unf,0,324,1165,GasA,TA,Y,SBrkr,1336,0,0,1336,1,0,1,0,2,1,TA,5,Typ,2,Gd,Attchd,1953,Unf,1,375,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,157000 +302,60,RL,66,16226,Pave,NA,IR3,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,1998,1999,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,281,Unf,0,747,1028,GasA,Ex,Y,SBrkr,1210,1242,0,2452,0,0,2,1,4,1,Gd,9,Typ,1,TA,BuiltIn,1998,Fin,2,683,TA,TA,Y,208,50,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,267000 +303,20,RL,118,13704,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2001,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,150,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1541,1541,GasA,Ex,Y,SBrkr,1541,0,0,1541,0,0,2,0,3,1,Gd,6,Typ,1,TA,Attchd,2001,RFn,3,843,TA,TA,Y,468,81,0,0,0,0,NA,NA,NA,0,1,2006,WD,Normal,205000 +304,20,RL,70,9800,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,7,1972,1972,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,TA,TA,No,ALQ,894,Unf,0,0,894,GasA,TA,Y,SBrkr,894,0,0,894,1,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1975,Unf,2,552,TA,TA,Y,256,0,0,0,0,0,NA,GdWo,NA,0,7,2006,WD,Abnorml,149900 +305,75,RM,87,18386,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2.5Fin,7,9,1880,2002,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,1470,1470,GasA,Ex,Y,SBrkr,1675,1818,0,3493,0,0,3,0,3,1,Gd,10,Typ,1,Ex,Attchd,2003,Unf,3,870,TA,TA,Y,302,0,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,295000 +306,20,RL,80,10386,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,8,5,2004,2005,Gable,CompShg,CemntBd,CmentBd,Stone,246,Gd,TA,PConc,Gd,TA,No,GLQ,1464,Unf,0,536,2000,GasA,Ex,Y,SBrkr,2000,0,0,2000,1,0,2,0,3,1,Gd,8,Typ,0,NA,Attchd,2004,Fin,3,888,TA,TA,Y,168,0,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,305900 +307,60,RL,116,13474,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Feedr,Norm,1Fam,2Story,7,5,1990,1991,Gable,CompShg,HdBoard,Plywood,BrkFace,246,Gd,TA,CBlock,Gd,TA,No,ALQ,700,Unf,0,0,700,GasA,Gd,Y,SBrkr,1122,1121,0,2243,1,0,2,1,4,1,Gd,8,Typ,1,TA,Attchd,1990,RFn,3,746,TA,TA,Y,127,44,224,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,225000 +308,50,RM,NA,7920,Pave,Grvl,IR1,Lvl,AllPub,Inside,Gtl,IDOTRR,Artery,Norm,1Fam,1.5Fin,6,7,1920,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Fa,CBlock,TA,TA,No,Unf,0,Unf,0,319,319,GasA,TA,Y,FuseA,1035,371,0,1406,0,0,1,0,3,1,Fa,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,144,0,0,0,0,NA,MnPrv,NA,0,3,2008,WD,Normal,89500 +309,30,RL,NA,12342,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,5,1940,1950,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,262,Unf,0,599,861,GasA,Ex,Y,SBrkr,861,0,0,861,0,0,1,0,1,1,TA,4,Typ,0,NA,Detchd,1961,Unf,2,539,TA,TA,Y,158,0,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,82500 +310,20,RL,90,12378,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,9,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,TA,Gd,GLQ,1274,Unf,0,622,1896,GasA,Ex,Y,SBrkr,1944,0,0,1944,1,0,2,0,3,1,Ex,8,Typ,3,Ex,Attchd,2003,Fin,3,708,TA,TA,Y,208,175,0,0,0,0,NA,NA,NA,0,11,2006,WD,Normal,360000 +311,60,RL,NA,7685,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1993,1994,Gable,CompShg,HdBoard,HdBoard,BrkFace,112,TA,TA,PConc,Gd,TA,No,ALQ,518,Unf,0,179,697,GasA,Gd,Y,SBrkr,697,804,0,1501,0,0,2,1,3,1,Gd,6,Typ,1,TA,Attchd,1993,Fin,2,420,TA,TA,Y,190,63,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,165600 +312,20,RL,50,8000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1948,2002,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,TA,TA,No,ALQ,680,Unf,0,292,972,GasA,Ex,Y,SBrkr,972,0,0,972,1,0,1,0,2,1,TA,5,Typ,1,Gd,Detchd,1948,Unf,1,240,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,132000 +313,190,RM,65,7800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,2fmCon,1.5Fin,5,7,1939,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,Gd,TA,Mn,Rec,507,Unf,0,286,793,GasA,TA,Y,SBrkr,793,325,0,1118,1,0,1,0,3,1,TA,5,Typ,1,Gd,Detchd,1939,Unf,2,410,TA,TA,Y,0,0,0,0,271,0,NA,MnPrv,NA,0,5,2006,WD,Normal,119900 +314,20,RL,150,215245,Pave,NA,IR3,Low,AllPub,Inside,Sev,Timber,Norm,Norm,1Fam,1Story,7,5,1965,1965,Hip,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,Gd,TA,Gd,ALQ,1236,Rec,820,80,2136,GasW,TA,Y,SBrkr,2036,0,0,2036,2,0,2,0,3,1,TA,8,Typ,2,Gd,Attchd,1965,RFn,2,513,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,375000 +315,70,RM,60,9600,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,7,7,1925,1990,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,Gd,No,LwQ,16,Unf,0,712,728,GasA,Ex,Y,SBrkr,832,809,0,1641,0,1,1,1,3,1,Ex,6,Typ,1,Gd,Detchd,1925,Unf,2,546,Fa,TA,Y,0,0,234,0,0,0,NA,NA,NA,0,8,2006,WD,Normal,178000 +316,60,RL,71,7795,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,425,Unf,0,291,716,GasA,Ex,Y,SBrkr,716,716,0,1432,1,0,2,1,3,1,Gd,6,Typ,1,Gd,Attchd,2004,Fin,2,432,TA,TA,Y,100,51,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,188500 +317,60,RL,94,13005,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NWAmes,Norm,Norm,1Fam,2Story,7,7,1980,1980,Gable,CompShg,CemntBd,CmentBd,BrkFace,278,Gd,TA,CBlock,Gd,TA,No,GLQ,692,Unf,0,153,845,GasA,TA,Y,SBrkr,1153,1200,0,2353,1,0,2,1,4,1,Ex,10,Typ,1,TA,Attchd,1983,RFn,2,484,TA,TA,Y,288,195,0,0,0,0,NA,GdPrv,NA,0,8,2009,WD,Normal,260000 +318,60,FV,75,9000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1088,1088,GasA,Ex,Y,SBrkr,1088,871,0,1959,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2006,RFn,3,1025,TA,TA,Y,208,46,0,0,0,0,NA,NA,NA,0,12,2007,WD,Normal,270000 +319,60,RL,90,9900,Pave,NA,Reg,Low,AllPub,Inside,Mod,NoRidge,Norm,Norm,1Fam,2Story,7,5,1993,1993,Gable,CompShg,HdBoard,HdBoard,BrkFace,256,Gd,TA,PConc,Gd,TA,Gd,GLQ,987,Unf,0,360,1347,GasA,Ex,Y,SBrkr,1372,1274,0,2646,1,0,2,1,4,1,Gd,9,Typ,1,TA,Attchd,1993,RFn,3,656,TA,TA,Y,340,60,144,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,260000 +320,80,RL,NA,14115,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,SLvl,7,5,1980,1980,Gable,CompShg,Plywood,Plywood,BrkFace,225,TA,TA,CBlock,Gd,TA,Av,GLQ,1036,Unf,0,336,1372,GasA,TA,Y,SBrkr,1472,0,0,1472,1,0,2,0,3,1,TA,6,Typ,2,TA,Attchd,1980,Unf,2,588,TA,TA,Y,233,48,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,187500 +321,60,RL,111,16259,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,1Fam,2Story,9,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,370,TA,TA,PConc,Ex,Gd,Av,Unf,0,Unf,0,1249,1249,GasA,Ex,Y,SBrkr,1249,1347,0,2596,0,0,3,1,4,1,Gd,9,Typ,0,NA,Attchd,2006,RFn,3,840,TA,TA,Y,240,154,0,0,0,0,NA,NA,NA,0,9,2006,New,Partial,342643 +322,60,RL,99,12099,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,8,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,388,Gd,TA,PConc,Ex,TA,Av,GLQ,970,Unf,0,166,1136,GasA,Ex,Y,SBrkr,1136,1332,0,2468,1,0,2,1,4,1,Gd,10,Typ,1,Gd,BuiltIn,2004,Fin,3,872,TA,TA,Y,184,154,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,354000 +323,60,RL,86,10380,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,7,5,1986,1987,Gable,CompShg,Plywood,Plywood,BrkFace,172,Gd,TA,CBlock,TA,TA,Gd,LwQ,28,ALQ,1474,0,1502,GasA,Ex,Y,SBrkr,1553,1177,0,2730,1,0,2,1,4,1,Gd,8,Typ,1,TA,Attchd,1987,Fin,2,576,TA,TA,Y,201,96,0,0,0,0,NA,MnPrv,NA,0,8,2007,WD,Normal,301000 +324,20,RM,49,5820,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,3,8,1955,2005,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,TA,TA,No,ALQ,256,Unf,0,906,1162,GasA,Ex,Y,SBrkr,1163,0,0,1163,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1955,Unf,1,220,Fa,TA,Y,142,98,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,126175 +325,80,RL,96,11275,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,PosN,Norm,1Fam,SLvl,7,7,1967,2007,Mansard,WdShake,Wd Sdng,Wd Sdng,BrkFace,300,Gd,Gd,CBlock,Gd,TA,No,Unf,0,Unf,0,710,710,GasA,Ex,Y,SBrkr,1898,1080,0,2978,0,0,2,1,5,1,Gd,11,Typ,1,Gd,BuiltIn,1961,Fin,2,564,TA,TA,Y,240,0,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,242000 +326,45,RM,50,5000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,RRAe,Norm,1Fam,1.5Unf,5,6,1941,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,Av,BLQ,116,Unf,0,604,720,GasA,Po,N,FuseF,803,0,0,803,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1941,Unf,2,360,TA,TA,Y,0,0,244,0,0,0,NA,NA,NA,0,12,2007,WD,Normal,87000 +327,120,RL,32,10846,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Veenker,Norm,Norm,TwnhsE,1Story,8,5,1993,1993,Gable,CompShg,BrkFace,BrkFace,None,0,Gd,TA,PConc,Gd,TA,Gd,GLQ,1619,Unf,0,100,1719,GasA,Ex,Y,SBrkr,1719,0,0,1719,2,0,1,1,1,1,Gd,6,Typ,2,Gd,Attchd,1993,Fin,2,473,TA,TA,Y,122,30,0,0,0,0,NA,NA,NA,0,5,2008,Con,Normal,324000 +328,20,RL,80,11600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1960,1960,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,175,TA,TA,CBlock,TA,TA,No,Rec,565,Unf,0,818,1383,GasA,TA,Y,SBrkr,1383,0,0,1383,0,0,1,1,3,1,TA,7,Typ,0,NA,Attchd,1960,RFn,1,292,TA,TA,Y,0,45,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,145250 +329,75,RL,NA,11888,Pave,Pave,IR1,Bnk,AllPub,Inside,Gtl,BrkSide,PosN,Norm,1Fam,2.5Unf,6,6,1916,1994,Gable,CompShg,Wd Sdng,Wd Shng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,844,844,GasA,Gd,N,FuseA,1445,689,0,2134,0,0,2,0,5,1,Gd,10,Typ,0,NA,Detchd,1930,Unf,2,441,TA,TA,Y,0,60,268,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,214500 +330,70,RM,60,6402,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,IDOTRR,Norm,Norm,1Fam,2Story,5,5,1920,1950,Gable,CompShg,Wd Sdng,Wd Shng,None,0,TA,TA,PConc,TA,TA,Mn,Unf,0,Unf,0,596,596,GasA,TA,N,SBrkr,596,596,0,1192,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1920,Unf,1,189,Fa,Fa,N,0,0,137,0,0,0,NA,GdWo,NA,0,7,2009,WD,Normal,78000 +331,90,RL,NA,10624,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,Duplex,1Story,5,4,1964,1964,Gable,CompShg,HdBoard,HdBoard,BrkFace,84,TA,TA,CBlock,TA,TA,No,GLQ,40,Rec,264,1424,1728,GasA,TA,Y,SBrkr,1728,0,0,1728,0,1,2,0,6,2,TA,10,Typ,0,NA,Detchd,2002,Unf,1,352,TA,TA,Y,155,0,0,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,119000 +332,20,RL,70,8176,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1958,1992,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,846,Unf,0,210,1056,GasA,Fa,Y,SBrkr,1056,0,0,1056,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1958,RFn,1,308,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,139000 +333,20,RL,85,10655,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,296,Gd,TA,PConc,Gd,TA,No,GLQ,1124,NA,479,1603,3206,GasA,Ex,Y,SBrkr,1629,0,0,1629,1,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2003,RFn,3,880,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,284000 +334,120,RM,59,8198,Pave,NA,Reg,Lvl,AllPub,FR3,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,Stone,146,Gd,TA,PConc,Gd,TA,Av,GLQ,720,Unf,0,638,1358,GasA,Ex,Y,SBrkr,1358,0,0,1358,1,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2004,RFn,2,484,TA,TA,Y,192,30,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,207000 +335,60,RL,59,9042,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Gd,GLQ,828,Unf,0,115,943,GasA,Gd,Y,SBrkr,943,695,0,1638,1,0,2,1,3,1,TA,7,Typ,2,TA,Attchd,1998,Fin,2,472,TA,TA,Y,100,38,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,192000 +336,190,RL,NA,164660,Grvl,NA,IR1,HLS,AllPub,Corner,Sev,Timber,Norm,Norm,2fmCon,1.5Fin,5,6,1965,1965,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,Gd,ALQ,1249,BLQ,147,103,1499,GasA,Ex,Y,SBrkr,1619,167,0,1786,2,0,2,0,3,1,TA,7,Typ,2,Gd,Attchd,1965,Fin,2,529,TA,TA,Y,670,0,0,0,0,0,NA,NA,Shed,700,8,2008,WD,Normal,228950 +337,20,RL,86,14157,Pave,NA,IR1,HLS,AllPub,Corner,Gtl,StoneBr,Norm,Norm,1Fam,1Story,9,5,2005,2006,Hip,CompShg,VinylSd,VinylSd,Stone,200,Gd,TA,PConc,Ex,TA,Gd,GLQ,1249,Unf,0,673,1922,GasA,Ex,Y,SBrkr,1922,0,0,1922,1,0,2,0,3,1,Gd,8,Typ,1,Gd,Attchd,2005,Fin,3,676,TA,TA,Y,178,51,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,377426 +338,20,RL,70,9135,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2002,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,113,Gd,TA,PConc,Gd,TA,Av,GLQ,810,Unf,0,726,1536,GasA,Ex,Y,SBrkr,1536,0,0,1536,1,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2002,RFn,2,532,TA,TA,Y,192,74,0,0,0,0,NA,NA,NA,0,12,2008,WD,Normal,214000 +339,20,RL,91,14145,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NWAmes,Norm,Norm,1Fam,1Story,7,7,1984,1998,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,CBlock,Gd,TA,Mn,ALQ,213,Unf,0,995,1208,GasA,Ex,Y,SBrkr,1621,0,0,1621,1,0,2,0,3,1,Gd,8,Typ,0,NA,Attchd,1984,RFn,2,440,TA,TA,Y,108,45,0,0,0,0,NA,NA,Shed,400,5,2006,WD,Normal,202500 +340,20,RL,66,12400,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Feedr,Norm,1Fam,1Story,6,7,1958,1998,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,176,TA,TA,CBlock,TA,Fa,No,Rec,585,Unf,0,630,1215,GasA,TA,Y,FuseA,1215,0,0,1215,0,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1958,Unf,1,297,TA,TA,Y,0,0,0,0,234,0,NA,NA,NA,0,6,2009,WD,Normal,155000 +341,60,RL,85,14191,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,2Story,8,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,967,967,GasA,Ex,Y,SBrkr,993,915,0,1908,0,0,2,1,4,1,Gd,9,Typ,0,NA,Attchd,2002,Fin,2,431,TA,TA,Y,135,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,202900 +342,20,RH,60,8400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Feedr,Norm,1Fam,1Story,4,4,1950,1950,Gable,CompShg,Wd Sdng,AsbShng,None,0,Fa,Fa,CBlock,TA,Fa,No,Unf,0,Unf,0,721,721,GasA,Gd,Y,SBrkr,841,0,0,841,0,0,1,0,2,1,TA,4,Typ,0,NA,CarPort,1950,Unf,1,294,TA,TA,N,250,0,24,0,0,0,NA,NA,NA,0,9,2009,WD,Normal,82000 +343,90,RL,NA,8544,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,Duplex,1Story,3,4,1949,1950,Gable,CompShg,Stucco,Stucco,BrkFace,340,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,Wall,Fa,N,FuseA,1040,0,0,1040,0,0,2,0,2,2,TA,6,Typ,0,NA,Detchd,1949,Unf,2,400,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,87500 +344,120,RL,63,8849,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,9,5,2005,2005,Hip,CompShg,MetalSd,MetalSd,BrkFace,616,Ex,TA,PConc,Ex,TA,No,GLQ,28,Unf,0,1656,1684,GasA,Ex,Y,SBrkr,1684,0,0,1684,0,0,2,0,2,1,Ex,6,Typ,1,Ex,Attchd,2005,RFn,2,564,TA,TA,Y,495,72,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,266000 +345,160,RM,36,2592,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,TwnhsE,2Story,5,3,1976,1976,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,Gd,TA,No,Rec,129,BLQ,232,175,536,GasA,TA,Y,SBrkr,536,576,0,1112,0,0,1,1,3,1,TA,4,Typ,0,NA,Attchd,1976,Unf,1,336,TA,TA,Y,182,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,85000 +346,50,RL,65,6435,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,RRAn,Norm,1Fam,1.5Fin,6,5,1939,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,972,972,GasA,Gd,Y,SBrkr,972,605,0,1577,0,0,1,0,3,1,Fa,6,Typ,1,Gd,Detchd,1939,Unf,1,312,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,140200 +347,20,RL,NA,12772,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,8,1960,1998,Hip,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,Mn,BLQ,498,Unf,0,460,958,GasA,TA,Y,SBrkr,958,0,0,958,0,0,1,0,2,1,TA,5,Typ,0,NA,Attchd,1960,RFn,1,301,TA,TA,Y,0,0,0,0,0,0,NA,NA,Gar2,15500,4,2007,WD,Normal,151500 +348,20,RL,NA,17600,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1960,1960,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,30,TA,TA,CBlock,TA,TA,No,BLQ,1270,Unf,0,208,1478,GasA,Ex,Y,FuseA,1478,0,0,1478,1,0,2,0,3,1,TA,6,Typ,2,Gd,Attchd,1960,Unf,2,498,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,12,2009,WD,Normal,157500 +349,160,RL,36,2448,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,Twnhs,2Story,7,5,2003,2004,Gable,CompShg,VinylSd,Wd Shng,Stone,106,Gd,TA,PConc,Gd,TA,No,GLQ,573,Unf,0,191,764,GasA,Ex,Y,SBrkr,764,862,0,1626,1,0,2,1,2,1,Gd,6,Typ,0,NA,BuiltIn,2003,RFn,2,474,TA,TA,Y,0,27,0,0,0,0,NA,NA,NA,0,10,2008,WD,Normal,154000 +350,60,RL,56,20431,Pave,NA,IR2,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,9,5,2005,2006,Hip,CompShg,CemntBd,CmentBd,BrkFace,870,Ex,TA,PConc,Ex,TA,No,GLQ,1410,Unf,0,438,1848,GasA,Ex,Y,SBrkr,1848,880,0,2728,1,0,2,1,4,1,Ex,10,Typ,2,Ex,Attchd,2006,Fin,3,706,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2006,New,Partial,437154 +351,120,RL,68,7820,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,9,5,2007,2007,Hip,CompShg,MetalSd,MetalSd,BrkFace,362,Ex,TA,PConc,Ex,TA,No,Unf,0,Unf,0,1869,1869,GasA,Ex,Y,SBrkr,1869,0,0,1869,0,0,2,0,2,1,Ex,6,Typ,1,Gd,Attchd,2007,RFn,2,617,TA,TA,Y,210,54,0,0,0,0,NA,NA,NA,0,12,2007,New,Partial,318061 +352,120,RL,NA,5271,Pave,NA,IR1,Low,AllPub,Inside,Mod,ClearCr,Norm,Norm,1Fam,1Story,7,5,1986,1986,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,Gd,TA,Gd,GLQ,1082,Unf,0,371,1453,GasA,Gd,Y,SBrkr,1453,0,0,1453,1,0,1,1,2,1,Gd,6,Typ,1,TA,Attchd,1986,RFn,2,445,TA,TA,Y,0,80,0,0,184,0,NA,NA,NA,0,12,2006,WD,Abnorml,190000 +353,50,RL,60,9084,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Artery,Norm,1Fam,1.5Fin,5,6,1941,1950,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,Fa,Mn,LwQ,236,Rec,380,0,616,GasA,TA,N,SBrkr,616,495,0,1111,0,1,1,0,3,1,TA,5,Typ,0,NA,Detchd,1941,Unf,1,200,TA,Fa,Y,48,0,0,0,0,0,NA,NA,NA,0,3,2008,ConLw,Normal,95000 +354,30,RM,60,8520,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,6,8,1928,2003,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,BrkTil,TA,TA,No,Unf,0,Unf,0,624,624,GasA,Gd,Y,SBrkr,720,0,0,720,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,2005,Unf,2,484,TA,TA,Y,106,0,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,105900 +355,50,RL,60,8400,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1.5Fin,6,5,1940,2000,Gable,CompShg,Wd Sdng,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,LwQ,388,Unf,0,552,940,GasA,Ex,Y,SBrkr,1192,403,0,1595,0,0,1,0,2,1,TA,6,Typ,2,Gd,Attchd,1940,Unf,1,240,TA,TA,Y,0,0,108,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,140000 +356,20,RL,105,11249,Pave,NA,IR2,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,6,5,1995,1995,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,Gd,PConc,Gd,Gd,No,ALQ,334,BLQ,544,322,1200,GasA,Ex,Y,SBrkr,1200,0,0,1200,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,1995,RFn,2,521,TA,TA,Y,0,26,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,177500 +357,20,RL,NA,9248,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,1Story,6,6,1992,1992,Gable,CompShg,HdBoard,HdBoard,BrkFace,106,TA,TA,PConc,Gd,TA,No,GLQ,560,Unf,0,598,1158,GasA,Gd,Y,SBrkr,1167,0,0,1167,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,1992,RFn,2,400,TA,TA,Y,120,26,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,173000 +358,120,RM,44,4224,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,TwnhsE,1Story,5,5,1976,1976,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,PConc,Gd,TA,No,ALQ,874,Unf,0,268,1142,GasA,TA,Y,SBrkr,1142,0,0,1142,1,0,1,1,3,1,TA,6,Typ,1,Po,Attchd,1976,Fin,2,528,TA,TA,Y,536,90,0,0,0,0,NA,MnPrv,NA,0,8,2007,WD,Normal,134000 +359,80,RL,92,6930,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,SLvl,5,4,1958,1958,Hip,CompShg,Wd Sdng,ImStucc,BrkFace,120,TA,TA,CBlock,TA,TA,Av,BLQ,300,Rec,294,468,1062,GasA,Ex,Y,FuseF,1352,0,0,1352,0,1,1,0,3,1,Gd,6,Min2,0,NA,BuiltIn,1958,Unf,1,288,TA,TA,Y,168,0,294,0,0,0,NA,NA,NA,0,7,2006,WD,Abnorml,130000 +360,60,RL,78,12011,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,530,Gd,TA,PConc,Gd,TA,Av,GLQ,956,Unf,0,130,1086,GasA,Ex,Y,SBrkr,1086,838,0,1924,1,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1998,RFn,2,592,TA,TA,Y,208,75,0,0,374,0,NA,NA,NA,0,6,2006,WD,Normal,280000 +361,85,RL,NA,7540,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Mitchel,Norm,Norm,1Fam,SFoyer,6,6,1978,1978,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,Gd,TA,Av,GLQ,773,Unf,0,115,888,GasA,Ex,Y,SBrkr,912,0,0,912,1,0,1,0,2,1,TA,5,Typ,1,TA,Attchd,1978,RFn,2,470,TA,TA,Y,0,0,0,0,192,0,NA,MnPrv,NA,0,6,2007,WD,Normal,156000 +362,50,RL,NA,9144,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,5,5,1940,1982,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,399,Unf,0,484,883,GasA,Gd,Y,SBrkr,988,517,0,1505,1,0,1,0,3,1,TA,8,Typ,0,NA,Detchd,1940,Unf,1,240,TA,TA,N,0,0,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,145000 +363,85,RL,64,7301,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,SFoyer,7,5,2003,2003,Gable,CompShg,HdBoard,HdBoard,BrkFace,500,Gd,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,Ex,Y,SBrkr,495,1427,0,1922,0,0,3,0,4,1,Gd,7,Typ,1,Ex,BuiltIn,2003,RFn,2,672,TA,TA,Y,0,0,177,0,0,0,NA,NA,NA,0,7,2009,ConLD,Normal,198500 +364,160,RM,21,1680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,6,8,1972,2007,Gable,CompShg,HdBoard,HdBoard,BrkFace,510,TA,TA,CBlock,TA,TA,No,ALQ,162,Unf,0,321,483,GasA,Gd,Y,SBrkr,483,504,0,987,0,0,1,1,2,1,Gd,5,Typ,0,NA,Detchd,1972,Unf,1,264,TA,TA,Y,250,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,118000 +365,60,RL,NA,18800,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,NWAmes,Norm,Norm,1Fam,2Story,6,5,1976,1976,Gable,CompShg,HdBoard,HdBoard,BrkFace,120,TA,TA,PConc,Gd,TA,Mn,GLQ,712,Unf,0,84,796,GasA,TA,Y,SBrkr,790,784,0,1574,1,0,2,1,3,1,TA,6,Typ,1,TA,Attchd,1976,Fin,2,566,TA,TA,Y,306,111,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,190000 +366,70,RM,59,10690,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,2Story,5,7,1920,1997,Hip,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,TA,Fa,No,Rec,456,Unf,0,216,672,GasA,Gd,Y,FuseA,672,672,0,1344,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1964,Unf,1,468,TA,Fa,Y,0,128,218,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,147000 +367,20,RL,NA,9500,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1963,1963,Gable,CompShg,Plywood,Plywood,BrkFace,247,TA,TA,CBlock,Gd,TA,No,BLQ,609,Unf,0,785,1394,GasA,Gd,Y,SBrkr,1394,0,0,1394,1,0,1,1,3,1,TA,6,Typ,2,Gd,Attchd,1963,RFn,2,514,TA,TA,Y,0,76,0,0,185,0,NA,NA,NA,0,7,2009,WD,Normal,159000 +368,80,RL,101,9150,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,SLvl,6,5,1962,1962,Gable,Tar&Grv,Plywood,Plywood,BrkFace,305,TA,TA,CBlock,Gd,TA,Gd,GLQ,371,Unf,0,728,1099,GasA,Gd,Y,SBrkr,1431,0,0,1431,0,1,1,0,3,1,TA,6,Typ,1,Gd,Basment,1962,RFn,1,296,TA,TA,Y,64,110,0,0,0,0,NA,NA,NA,0,12,2008,WD,Normal,165000 +369,20,RL,78,7800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1954,1954,Gable,CompShg,HdBoard,HdBoard,BrkFace,200,TA,TA,PConc,TA,TA,No,LwQ,540,Unf,0,728,1268,GasA,Gd,Y,SBrkr,1268,0,0,1268,0,0,1,0,2,1,TA,7,Typ,1,Gd,Attchd,1954,Fin,1,244,TA,TA,Y,0,98,0,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,132000 +370,20,RL,NA,9830,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1959,2006,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,CBlock,TA,TA,No,ALQ,72,Rec,258,733,1063,GasA,Ex,Y,SBrkr,1287,0,0,1287,1,0,1,0,3,1,Gd,7,Typ,1,Gd,Detchd,1997,Fin,2,576,TA,TA,Y,364,17,0,0,182,0,NA,NA,NA,0,3,2010,WD,Normal,162000 +371,60,RL,NA,8121,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,953,953,GasA,Ex,Y,SBrkr,953,711,0,1664,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,2000,RFn,2,460,TA,TA,Y,100,40,0,0,0,0,NA,NA,NA,0,1,2006,WD,Normal,172400 +372,50,RL,80,17120,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,ClearCr,Feedr,Norm,1Fam,1.5Fin,4,4,1959,1959,Gable,CompShg,WdShing,Plywood,None,0,TA,TA,CBlock,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,1120,468,0,1588,0,0,2,0,4,1,TA,7,Min2,1,Gd,Detchd,1991,Fin,2,680,TA,TA,N,0,59,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,134432 +373,120,RL,50,7175,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,TwnhsE,1Story,6,5,1984,1984,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,623,LwQ,121,0,744,GasA,TA,Y,SBrkr,752,0,0,752,1,0,1,0,2,1,TA,4,Typ,0,NA,Attchd,1984,Unf,1,264,TA,TA,Y,353,0,0,0,90,0,NA,MnPrv,NA,0,2,2010,WD,Normal,125000 +374,20,RL,79,10634,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1953,1953,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,PConc,TA,TA,No,BLQ,428,LwQ,180,0,608,GasA,TA,Y,SBrkr,1319,0,0,1319,1,0,1,0,3,1,TA,5,Min2,0,NA,Attchd,1953,Unf,1,270,TA,TA,Y,66,0,0,0,0,0,NA,GdWo,NA,0,11,2009,WD,Normal,123000 +375,60,RL,65,8200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,847,847,GasA,Ex,Y,SBrkr,847,1081,0,1928,0,0,2,1,4,1,Gd,8,Typ,1,Gd,BuiltIn,2003,Fin,2,434,TA,TA,Y,100,48,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,219500 +376,30,RL,NA,10020,Pave,NA,IR1,Low,AllPub,Inside,Sev,Edwards,Norm,Norm,1Fam,1Story,1,1,1922,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Fa,Fa,BrkTil,Fa,Po,Gd,BLQ,350,Unf,0,333,683,GasA,Gd,N,FuseA,904,0,0,904,1,0,0,1,1,1,Fa,4,Maj1,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,61000 +377,85,RL,57,8846,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,SFoyer,5,5,1996,1996,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,298,Unf,0,572,870,GasA,Ex,Y,SBrkr,914,0,0,914,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1998,Unf,2,576,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,148000 +378,60,FV,102,11143,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Somerst,Norm,Norm,1Fam,2Story,8,5,2004,2005,Gable,CompShg,CemntBd,CmentBd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1580,1580,GasA,Ex,Y,SBrkr,1580,886,0,2466,0,0,3,0,4,1,Gd,8,Typ,1,Gd,Attchd,2004,RFn,2,610,TA,TA,Y,159,214,0,0,0,0,NA,NA,NA,0,12,2007,WD,Normal,340000 +379,20,RL,88,11394,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,StoneBr,Norm,Norm,1Fam,1Story,9,2,2010,2010,Hip,CompShg,VinylSd,VinylSd,Stone,350,Gd,TA,PConc,Ex,TA,Av,GLQ,1445,Unf,0,411,1856,GasA,Ex,Y,SBrkr,1856,0,0,1856,1,0,1,1,1,1,Ex,8,Typ,1,Ex,Attchd,2010,Fin,3,834,TA,TA,Y,113,0,0,0,0,0,NA,NA,NA,0,6,2010,New,Partial,394432 +380,60,RL,60,8123,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,RRAn,Norm,1Fam,2Story,6,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,BrkFace,16,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,982,982,GasA,Ex,Y,SBrkr,1007,793,0,1800,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,2000,Fin,2,463,TA,TA,Y,100,63,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,179000 +381,50,RL,50,5000,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1.5Fin,5,6,1924,1950,Gable,CompShg,BrkFace,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,LwQ,218,Unf,0,808,1026,GasA,TA,Y,SBrkr,1026,665,0,1691,0,0,2,0,3,1,Gd,6,Typ,1,Gd,Detchd,1924,Unf,1,308,TA,TA,Y,0,0,242,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,127000 +382,20,FV,60,7200,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,Gd,No,Unf,0,Unf,0,1293,1293,GasA,Ex,Y,SBrkr,1301,0,0,1301,1,0,2,0,2,1,Gd,5,Typ,1,Gd,Attchd,2006,RFn,2,572,TA,TA,Y,216,121,0,0,0,0,NA,NA,NA,0,8,2006,New,Partial,187750 +383,60,RL,79,9245,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,939,939,GasA,Ex,Y,SBrkr,939,858,0,1797,0,0,2,1,3,1,Gd,8,Typ,0,NA,Attchd,2006,RFn,2,639,TA,TA,Y,144,53,0,0,0,0,NA,NA,NA,0,4,2007,WD,Normal,213500 +384,45,RH,60,9000,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,SawyerW,Norm,Norm,1Fam,1.5Unf,6,3,1928,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Fa,Fa,No,Unf,0,Unf,0,784,784,GasA,TA,N,FuseA,784,0,0,784,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1950,Unf,2,360,Fa,Fa,N,0,0,91,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,76000 +385,60,RL,NA,53107,Pave,NA,IR2,Low,AllPub,Corner,Mod,ClearCr,Feedr,Norm,1Fam,2Story,6,5,1992,1992,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,985,Unf,0,595,1580,GasA,Ex,Y,SBrkr,1079,874,0,1953,1,0,2,1,3,1,Gd,9,Typ,2,Fa,Attchd,1992,Fin,2,501,TA,TA,Y,216,231,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,240000 +386,120,RL,43,3182,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,8,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,16,Gd,TA,PConc,Gd,TA,No,GLQ,24,Unf,0,1232,1256,GasA,Ex,Y,SBrkr,1269,0,0,1269,0,0,2,0,2,1,Gd,6,Typ,1,TA,Attchd,2004,Fin,2,430,TA,TA,Y,146,20,0,0,144,0,NA,NA,NA,0,4,2010,WD,Normal,192000 +387,50,RL,58,8410,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Edwards,Feedr,Norm,1Fam,1.5Fin,5,3,1910,1996,Gambrel,CompShg,Wd Sdng,VinylSd,None,0,TA,Fa,PConc,TA,TA,No,Unf,0,Unf,0,658,658,GasA,TA,Y,SBrkr,658,526,0,1184,0,0,1,0,5,1,TA,8,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,151,0,0,0,0,NA,NA,NA,0,5,2006,WD,AdjLand,81000 +388,80,RL,72,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,SLvl,6,6,1976,1976,Hip,CompShg,MetalSd,MetalSd,BrkFace,255,TA,TA,CBlock,TA,TA,Av,ALQ,631,Unf,0,410,1041,GasA,Ex,Y,SBrkr,1125,0,0,1125,1,0,1,0,3,1,TA,6,Typ,1,Fa,Detchd,1977,Unf,1,352,TA,TA,Y,296,0,0,0,0,0,NA,GdWo,NA,0,10,2009,WD,Abnorml,125000 +389,20,RL,93,9382,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,1999,2000,Gable,CompShg,VinylSd,VinylSd,BrkFace,125,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1468,1468,GasA,Ex,Y,SBrkr,1479,0,0,1479,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,1999,RFn,2,577,TA,TA,Y,120,25,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,191000 +390,60,RL,96,12474,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,10,5,2007,2008,Gable,CompShg,VinylSd,VinylSd,Stone,272,Ex,TA,PConc,Ex,TA,Av,GLQ,1280,Unf,0,402,1682,GasA,Ex,Y,SBrkr,1742,590,0,2332,1,0,2,1,3,1,Ex,9,Typ,1,Ex,BuiltIn,2008,Fin,3,846,TA,TA,Y,196,134,0,0,0,0,NA,NA,NA,0,8,2008,New,Partial,426000 +391,50,RL,50,8405,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,5,8,1900,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,Gd,No,Rec,241,BLQ,391,229,861,GasA,Ex,Y,SBrkr,961,406,0,1367,1,0,1,0,4,1,TA,7,Typ,0,NA,Detchd,1978,Unf,1,384,TA,TA,Y,0,130,112,0,0,0,NA,MnPrv,NA,0,4,2008,WD,Normal,119000 +392,60,RL,71,12209,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Mitchel,Norm,Norm,1Fam,2Story,6,5,2001,2002,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Ex,TA,No,ALQ,690,Unf,0,114,804,GasA,Ex,Y,SBrkr,804,1157,0,1961,1,0,2,1,3,1,Gd,7,Typ,1,TA,BuiltIn,2001,Fin,2,560,TA,TA,Y,125,192,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,215000 +393,20,RL,NA,8339,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1959,1959,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,882,0,0,882,0,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1959,RFn,1,294,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,Shed,1200,7,2007,WD,Normal,106500 +394,30,RL,NA,7446,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,BrkSide,Feedr,Norm,1Fam,1Story,4,5,1941,1950,Gable,CompShg,WdShing,Wd Shng,None,0,TA,TA,CBlock,TA,TA,No,Rec,266,Unf,0,522,788,GasA,TA,Y,FuseA,788,0,0,788,0,0,1,0,2,1,TA,4,Typ,2,TA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,4,2006,WD,Abnorml,100000 +395,50,RL,60,10134,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,5,6,1940,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,735,735,GasA,Gd,Y,FuseA,735,299,0,1034,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1940,Unf,1,240,TA,TA,Y,0,39,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,109000 +396,20,RL,68,9571,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,6,1956,1956,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,Av,BLQ,739,Unf,0,405,1144,GasA,TA,Y,SBrkr,1144,0,0,1144,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1956,Unf,1,596,TA,TA,Y,44,0,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,129000 +397,20,RL,60,7200,Pave,NA,Reg,Low,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,5,1972,1972,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,Av,Rec,777,Unf,0,117,894,GasA,TA,Y,SBrkr,894,0,0,894,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1985,RFn,2,600,TA,TA,Y,215,0,0,0,0,0,NA,NA,NA,0,9,2009,WD,Normal,123000 +398,60,RL,69,7590,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,PosN,Norm,1Fam,2Story,5,5,1962,1962,Gable,CompShg,VinylSd,VinylSd,BrkFace,288,TA,TA,CBlock,TA,TA,No,ALQ,540,Unf,0,324,864,GasA,TA,Y,SBrkr,876,936,0,1812,0,0,2,0,4,1,TA,8,Typ,1,TA,Attchd,1962,RFn,1,264,TA,TA,Y,0,168,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,169500 +399,30,RM,60,8967,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,IDOTRR,Norm,Norm,1Fam,1Story,5,2,1920,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Fa,BrkTil,Fa,Po,No,Unf,0,Unf,0,961,961,GasA,Gd,Y,Mix,1077,0,0,1077,0,0,1,0,2,1,TA,6,Maj2,0,NA,Detchd,1920,Unf,1,338,Po,Po,N,0,0,0,0,0,0,NA,NA,NA,0,11,2007,WD,Abnorml,67000 +400,60,FV,65,8125,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2006,2007,Gable,CompShg,CemntBd,CmentBd,Stone,100,Gd,TA,PConc,Gd,TA,No,GLQ,812,Unf,0,280,1092,GasA,Ex,Y,SBrkr,1112,438,0,1550,1,0,2,0,2,1,Gd,7,Typ,0,NA,Attchd,2007,Fin,2,438,TA,TA,Y,0,168,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,241000 +401,120,RL,38,14963,Pave,NA,IR2,Lvl,AllPub,Inside,Gtl,Veenker,Norm,Norm,TwnhsE,1Story,8,5,1996,1996,Gable,CompShg,BrkFace,BrkFace,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,786,Unf,0,474,1260,GasA,Ex,Y,SBrkr,1288,0,0,1288,1,0,1,1,1,1,Ex,4,Typ,2,Gd,Attchd,1996,Fin,2,500,TA,TA,Y,120,30,0,0,224,0,NA,NA,NA,0,12,2008,WD,Normal,245500 +402,20,RL,65,8767,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,24,Unf,0,1286,1310,GasA,Ex,Y,SBrkr,1310,0,0,1310,0,0,2,0,3,1,Gd,6,Typ,1,Gd,Attchd,2005,Fin,2,400,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,New,Partial,164990 +403,30,RL,60,10200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,8,1940,1997,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,672,672,GasA,Ex,Y,SBrkr,672,0,0,672,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1940,Unf,1,240,TA,TA,N,168,0,0,0,0,0,NA,GdPrv,NA,0,8,2008,WD,Normal,108000 +404,60,RL,93,12090,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1998,1998,Hip,CompShg,VinylSd,VinylSd,BrkFace,650,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1141,1141,GasA,Gd,Y,SBrkr,1165,1098,0,2263,0,0,2,1,4,1,Gd,10,Typ,1,TA,BuiltIn,1998,Fin,2,420,TA,TA,Y,144,123,0,0,0,0,NA,NA,NA,0,7,2006,WD,Abnorml,258000 +405,60,RL,NA,10364,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1995,1996,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,806,806,GasA,Gd,Y,SBrkr,806,766,0,1572,0,0,2,1,3,1,TA,7,Typ,1,TA,BuiltIn,1995,Fin,2,373,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,168000 +406,20,RL,NA,9991,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,4,4,1976,1993,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,BLQ,1116,Unf,0,165,1281,GasA,Ex,Y,SBrkr,1620,0,0,1620,1,0,2,0,3,1,TA,8,Min1,1,TA,Attchd,1993,Unf,2,490,TA,TA,Y,120,78,0,0,0,0,NA,GdWo,NA,0,6,2009,WD,Normal,150000 +407,50,RL,51,10480,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1.5Fin,6,5,1936,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,1064,1064,GasA,Ex,Y,FuseA,1166,0,473,1639,0,0,1,0,3,1,TA,6,Maj2,0,NA,Detchd,1936,Unf,1,240,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,115000 +408,70,RL,63,15576,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2Story,6,7,1915,1976,Gable,CompShg,Wd Sdng,Plywood,None,0,TA,TA,BrkTil,Gd,TA,No,Unf,0,Unf,0,840,840,GasA,Ex,Y,SBrkr,840,840,0,1680,0,0,2,0,4,1,TA,8,Typ,0,NA,Attchd,1960,Unf,1,308,TA,TA,Y,0,0,160,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,177000 +409,60,RL,109,14154,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,1Fam,2Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,350,Gd,TA,PConc,Ex,Gd,No,Unf,0,Unf,0,1063,1063,GasA,Ex,Y,SBrkr,1071,1101,0,2172,0,0,2,1,3,1,Gd,9,Typ,1,Gd,Attchd,2006,RFn,3,947,TA,TA,Y,192,62,0,0,0,0,NA,NA,NA,0,8,2007,New,Partial,280000 +410,60,FV,85,10800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,8,5,2007,2008,Gable,CompShg,VinylSd,VinylSd,Stone,100,Gd,TA,PConc,Ex,TA,No,GLQ,789,Unf,0,245,1034,GasA,Ex,Y,SBrkr,1050,1028,0,2078,1,0,2,1,3,1,Ex,8,Typ,1,Gd,Attchd,2008,Fin,3,836,TA,TA,Y,0,102,0,0,0,0,NA,NA,NA,0,4,2008,New,Partial,339750 +411,20,RL,68,9571,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,3,1958,1958,Gable,CompShg,BrkComm,Brk Cmn,None,0,TA,Fa,CBlock,TA,Fa,No,Unf,0,Unf,0,1276,1276,GasA,TA,Y,FuseA,1276,0,0,1276,0,0,1,0,3,1,TA,5,Mod,0,NA,Attchd,1958,Unf,1,350,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2009,COD,Abnorml,60000 +412,190,RL,100,34650,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,Gilbert,Norm,Norm,2fmCon,1Story,5,5,1955,1955,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,Mn,Rec,1056,Unf,0,0,1056,GasA,TA,N,SBrkr,1056,0,0,1056,1,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1955,Fin,2,572,TA,TA,Y,264,0,0,0,0,0,NA,NA,NA,0,1,2006,WD,Normal,145000 +413,20,FV,NA,4403,Pave,NA,IR2,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,7,5,2009,2009,Gable,CompShg,MetalSd,MetalSd,Stone,432,Ex,TA,PConc,Ex,TA,Av,GLQ,578,Unf,0,892,1470,GasA,Ex,Y,SBrkr,1478,0,0,1478,1,0,2,1,2,1,Gd,7,Typ,1,Gd,Attchd,2009,Fin,2,484,TA,TA,Y,0,144,0,0,0,0,NA,NA,NA,0,6,2010,New,Partial,222000 +414,30,RM,56,8960,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1Story,5,6,1927,1950,Gable,CompShg,WdShing,Wd Shng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1008,1008,GasA,Gd,Y,FuseA,1028,0,0,1028,0,0,1,0,2,1,TA,5,Typ,1,Gd,Detchd,1927,Unf,2,360,TA,TA,Y,0,0,130,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,115000 +415,60,RL,59,11228,Pave,NA,IR2,Lvl,AllPub,CulDSac,Gtl,SawyerW,Norm,Norm,1Fam,2Story,7,5,1993,1993,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,BLQ,50,GLQ,531,499,1080,GasA,Ex,Y,SBrkr,1080,1017,0,2097,0,1,2,1,3,1,Gd,9,Typ,1,TA,Attchd,1993,Unf,3,678,TA,TA,Y,196,187,0,0,0,0,NA,NA,NA,0,12,2008,WD,Normal,228000 +416,20,RL,73,8899,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,1Story,7,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,24,Unf,0,1316,1340,GasA,Ex,Y,SBrkr,1340,0,0,1340,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2007,Fin,2,396,TA,TA,Y,100,30,0,0,0,0,NA,NA,NA,0,8,2007,New,Partial,181134 +417,60,RL,74,7844,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,2Story,6,7,1978,1978,Hip,CompShg,HdBoard,HdBoard,BrkFace,203,TA,TA,CBlock,TA,TA,No,ALQ,209,Unf,0,463,672,GasA,TA,Y,SBrkr,672,728,0,1400,0,0,1,1,3,1,TA,6,Typ,1,TA,Attchd,1978,Fin,2,440,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,149500 +418,70,RL,86,22420,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Crawfor,Feedr,Norm,1Fam,2Story,6,6,1918,1950,Hip,CompShg,Wd Sdng,Stucco,None,0,TA,TA,BrkTil,Gd,TA,No,BLQ,1128,Unf,0,242,1370,GasW,TA,N,FuseA,1370,1254,0,2624,1,0,2,1,4,1,TA,10,Typ,1,Gd,Detchd,1918,Unf,3,864,TA,TA,N,0,0,0,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,239000 +419,50,RL,60,8160,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,5,6,1940,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,ALQ,312,Unf,0,444,756,GasA,Fa,N,FuseF,756,378,0,1134,1,0,1,1,3,1,TA,7,Typ,0,NA,Detchd,1940,Unf,1,240,TA,TA,P,0,0,0,0,0,0,NA,NA,NA,0,4,2007,WD,AdjLand,126000 +420,20,RL,65,8450,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1968,1968,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,775,Unf,0,281,1056,GasA,Ex,Y,SBrkr,1056,0,0,1056,1,0,1,0,3,1,TA,6,Typ,1,Fa,Attchd,1968,Unf,1,304,TA,TA,Y,0,85,184,0,0,0,NA,NA,NA,0,7,2010,WD,Normal,142000 +421,90,RM,78,7060,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,Duplex,SFoyer,7,5,1997,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,200,TA,Gd,PConc,Gd,Gd,Gd,GLQ,1309,Unf,0,35,1344,GasA,Ex,Y,SBrkr,1344,0,0,1344,2,0,2,0,2,2,TA,8,Typ,0,NA,Attchd,1997,Fin,4,784,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2008,WD,Alloca,206300 +422,20,RL,NA,16635,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,7,1977,2000,Gable,CompShg,CemntBd,CmentBd,Stone,126,Gd,TA,CBlock,Gd,TA,No,ALQ,1246,Unf,0,356,1602,GasA,Gd,Y,SBrkr,1602,0,0,1602,0,1,2,0,3,1,Gd,8,Typ,1,TA,Attchd,1977,Fin,2,529,TA,TA,Y,240,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,215000 +423,20,RL,100,21750,Pave,NA,Reg,HLS,AllPub,Inside,Mod,Mitchel,Artery,Norm,1Fam,1Story,5,5,1954,1954,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,988,988,GasA,Ex,Y,FuseA,988,0,0,988,0,0,1,0,2,1,TA,4,Typ,0,NA,Attchd,1954,RFn,2,520,TA,TA,N,0,0,0,0,0,0,NA,NA,NA,0,2,2008,WD,Normal,113000 +424,60,RL,80,9200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,473,Gd,TA,PConc,Gd,TA,No,GLQ,986,Unf,0,484,1470,GasA,Gd,Y,SBrkr,1470,1160,0,2630,1,0,2,1,4,1,Gd,8,Typ,1,TA,Attchd,1998,Fin,3,696,TA,TA,Y,0,66,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,315000 +425,20,RL,72,9000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1956,1956,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,74,TA,TA,CBlock,Gd,TA,No,LwQ,616,Unf,0,580,1196,GasA,Gd,Y,FuseA,1196,0,0,1196,1,0,1,0,2,1,TA,6,Typ,1,Gd,Attchd,1956,RFn,1,297,TA,TA,Y,0,44,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,139000 +426,60,RM,60,3378,Pave,Grvl,Reg,HLS,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,7,8,1946,1992,Gable,CompShg,HdBoard,HdBoard,None,0,TA,Gd,CBlock,TA,TA,No,Unf,0,Unf,0,651,651,GasA,Gd,Y,SBrkr,707,682,0,1389,0,0,1,1,3,1,TA,6,Typ,2,Gd,Detchd,1947,Unf,1,240,TA,TA,P,0,0,126,0,0,0,NA,NA,NA,0,9,2009,WD,Normal,135000 +427,80,RL,NA,12800,Pave,NA,Reg,Low,AllPub,Inside,Mod,SawyerW,Norm,Norm,1Fam,SLvl,7,5,1989,1989,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,145,Gd,TA,PConc,Gd,TA,Gd,GLQ,1518,Unf,0,0,1518,GasA,Gd,Y,SBrkr,1644,0,0,1644,1,1,2,0,2,1,Gd,5,Typ,1,TA,Attchd,1989,Fin,2,569,TA,TA,Y,80,0,0,0,396,0,NA,NA,NA,0,8,2009,WD,Normal,275000 +428,20,RL,77,8593,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,6,1957,1957,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,288,Unf,0,619,907,GasA,Ex,Y,SBrkr,907,0,0,907,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1964,Unf,1,352,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,109008 +429,20,RL,64,6762,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,BrkFace,108,Gd,TA,PConc,Gd,TA,No,GLQ,664,Unf,0,544,1208,GasA,Ex,Y,SBrkr,1208,0,0,1208,1,0,2,0,2,1,Gd,6,Typ,0,NA,Attchd,2007,RFn,2,628,TA,TA,Y,105,54,0,0,0,0,NA,NA,NA,0,9,2007,New,Partial,195400 +430,20,RL,130,11457,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Timber,Norm,Norm,1Fam,1Story,6,5,1988,1988,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,Mn,GLQ,1005,Unf,0,387,1392,GasA,TA,Y,SBrkr,1412,0,0,1412,1,0,2,0,3,1,Gd,6,Typ,1,TA,Attchd,1988,Unf,2,576,TA,TA,Y,0,0,169,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,175000 +431,160,RM,21,1680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,6,5,1971,1971,Gable,CompShg,HdBoard,HdBoard,BrkFace,232,TA,TA,CBlock,TA,TA,No,ALQ,387,Unf,0,96,483,GasA,TA,Y,SBrkr,483,504,0,987,0,0,1,1,2,1,TA,4,Typ,0,NA,Detchd,1971,Unf,1,264,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2008,COD,Abnorml,85400 +432,50,RM,60,5586,Pave,NA,IR1,Bnk,AllPub,Inside,Gtl,OldTown,Feedr,Norm,1Fam,1.5Fin,6,7,1920,1998,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,901,901,GasA,Gd,Y,SBrkr,1088,110,0,1198,0,0,1,0,4,1,TA,7,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,98,0,0,0,0,NA,MnPrv,NA,0,9,2008,ConLD,Abnorml,79900 +433,160,RM,24,1920,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,TwnhsE,2Story,5,5,1971,1971,Gable,CompShg,HdBoard,HdBoard,BrkFace,376,TA,TA,CBlock,TA,TA,No,ALQ,471,Unf,0,294,765,GasA,Ex,Y,SBrkr,765,600,0,1365,1,0,1,1,2,1,TA,6,Min1,0,NA,Detchd,1971,Unf,2,440,TA,TA,Y,240,36,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,122500 +434,60,RL,100,10839,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1997,1998,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,926,926,GasA,Ex,Y,SBrkr,926,678,0,1604,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1997,Fin,2,470,TA,TA,Y,0,36,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,181000 +435,180,RM,21,1890,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,Twnhs,SFoyer,4,7,1972,1972,Gable,CompShg,CemntBd,CmentBd,None,0,TA,Gd,CBlock,Gd,TA,Av,ALQ,495,Unf,0,135,630,GasA,Gd,Y,SBrkr,630,0,0,630,1,0,1,0,1,1,TA,3,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,88,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,81000 +436,60,RL,43,10667,Pave,NA,IR2,Lvl,AllPub,CulDSac,Gtl,CollgCr,PosN,Norm,1Fam,2Story,7,6,1996,1996,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,385,ALQ,344,70,799,GasA,Ex,Y,SBrkr,827,834,0,1661,1,0,2,1,3,1,Gd,6,Typ,1,TA,Attchd,1996,RFn,2,550,TA,TA,Y,158,61,0,0,0,0,NA,NA,NA,0,4,2009,ConLw,Normal,212000 +437,50,RM,40,4400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,6,8,1920,1950,Gable,CompShg,Stucco,Stucco,None,0,TA,TA,BrkTil,Fa,TA,No,Unf,0,Unf,0,648,648,GasA,TA,Y,FuseA,734,384,0,1118,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1990,Unf,2,440,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,116000 +438,45,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Unf,6,7,1926,2004,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,PConc,TA,TA,No,Unf,0,Unf,0,884,884,GasA,Gd,Y,SBrkr,904,0,0,904,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1926,Unf,1,180,TA,TA,Y,0,0,105,0,0,0,NA,NA,NA,0,1,2009,WD,Normal,119000 +439,30,RL,40,4280,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1Story,5,6,1913,2002,Gable,CompShg,WdShing,Stucco,None,0,TA,TA,PConc,TA,TA,No,LwQ,365,Unf,0,75,440,GasA,TA,N,SBrkr,694,0,0,694,0,0,1,0,2,1,Gd,4,Typ,1,Gd,Detchd,1990,Unf,1,352,Gd,TA,P,0,0,34,0,0,0,NA,MnPrv,NA,0,3,2007,WD,Normal,90350 +440,50,RL,67,12354,Pave,Grvl,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,6,8,1920,2000,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,Fa,Mn,Unf,0,Unf,0,684,684,GasA,Gd,Y,SBrkr,684,512,0,1196,0,0,1,0,3,1,Gd,7,Typ,0,NA,Detchd,2005,Unf,2,528,TA,TA,Y,0,46,0,0,0,0,NA,GdPrv,Shed,800,8,2009,ConLI,Normal,110000 +441,20,RL,105,15431,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,10,5,2008,2008,Hip,CompShg,VinylSd,VinylSd,Stone,200,Ex,TA,PConc,Ex,TA,Gd,GLQ,1767,ALQ,539,788,3094,GasA,Ex,Y,SBrkr,2402,0,0,2402,1,0,2,0,2,1,Ex,10,Typ,2,Gd,Attchd,2008,Fin,3,672,TA,TA,Y,0,72,0,0,170,0,NA,NA,NA,0,4,2009,WD,Normal,555000 +442,90,RL,92,12108,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,Duplex,1Story,4,4,1955,1955,Gable,CompShg,VinylSd,VinylSd,BrkFace,270,TA,TA,CBlock,TA,TA,No,ALQ,133,Unf,0,1307,1440,GasA,TA,N,FuseF,1440,0,0,1440,0,0,2,0,4,2,Fa,8,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,9,2008,WD,Normal,118000 +443,50,RM,52,6240,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,5,7,1930,1992,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,1078,1078,GasA,TA,Y,SBrkr,1128,445,0,1573,0,0,2,0,3,1,TA,8,Typ,1,Gd,Detchd,1930,Unf,2,360,TA,TA,P,0,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,162900 +444,120,RL,53,3922,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2006,2007,Gable,CompShg,WdShing,Wd Shng,BrkFace,72,Gd,TA,PConc,Ex,TA,Av,Unf,0,Unf,0,1258,1258,GasA,Ex,Y,SBrkr,1258,0,0,1258,0,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2007,Fin,3,648,TA,TA,Y,144,16,0,0,0,0,NA,NA,NA,0,6,2007,New,Partial,172500 +445,60,RL,70,8750,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,1994,1995,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,Gd,PConc,Gd,TA,No,GLQ,642,Unf,0,273,915,GasA,Ex,Y,SBrkr,933,975,0,1908,1,0,2,1,4,1,Gd,8,Typ,1,TA,Attchd,1994,Unf,2,493,TA,TA,Y,144,133,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,210000 +446,20,RL,73,9855,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,6,5,1956,1956,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1436,1436,GasA,Fa,Y,SBrkr,1689,0,0,1689,0,0,1,0,3,1,TA,7,Typ,1,Gd,Attchd,1956,Unf,2,480,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,11,2009,COD,Normal,127500 +447,20,RL,137,16492,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,PosA,Norm,1Fam,1Story,6,6,1966,2002,Gable,CompShg,BrkFace,Plywood,None,0,Gd,TA,CBlock,TA,TA,No,ALQ,247,Rec,713,557,1517,GasA,Ex,Y,SBrkr,1888,0,0,1888,0,0,2,1,2,1,Gd,6,Mod,1,Gd,Attchd,1966,Fin,2,578,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,190000 +448,60,RL,NA,11214,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,1998,1999,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,930,930,GasA,Gd,Y,SBrkr,956,930,0,1886,0,0,2,1,4,1,Gd,10,Typ,1,TA,Attchd,1998,Fin,2,431,TA,TA,Y,89,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,199900 +449,50,RM,50,8600,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Fin,6,6,1937,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,780,780,GasA,TA,Y,SBrkr,780,596,0,1376,0,0,2,0,3,1,TA,7,Typ,1,Gd,Detchd,1937,Unf,1,198,TA,TA,N,0,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,119500 +450,50,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,3,7,1948,2002,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,ALQ,331,Unf,0,318,649,GasA,Ex,Y,SBrkr,679,504,0,1183,0,0,1,1,2,1,TA,6,Typ,0,NA,Detchd,1981,Unf,1,308,TA,TA,Y,0,176,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,120000 +451,30,RM,70,5684,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,6,8,1930,2005,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,813,813,GasA,Ex,Y,FuseA,813,0,0,813,0,0,1,0,2,1,Gd,5,Typ,0,NA,Detchd,1932,Unf,1,270,Fa,Fa,N,0,113,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,110000 +452,20,RL,62,70761,Pave,NA,IR1,Low,AllPub,Inside,Mod,ClearCr,Norm,Norm,1Fam,1Story,7,5,1975,1975,Gable,WdShngl,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,Gd,ALQ,655,Unf,0,878,1533,GasA,TA,Y,SBrkr,1533,0,0,1533,1,0,2,0,2,1,Gd,5,Typ,2,TA,Attchd,1975,Unf,2,576,TA,TA,Y,200,54,0,0,0,0,NA,NA,NA,0,12,2006,WD,Normal,280000 +453,60,RL,NA,9303,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Timber,Norm,Norm,1Fam,2Story,6,5,1996,1997,Hip,CompShg,VinylSd,VinylSd,BrkFace,42,Gd,TA,PConc,Ex,TA,No,ALQ,742,Unf,0,130,872,GasA,Ex,Y,SBrkr,888,868,0,1756,1,0,2,1,3,1,TA,7,Typ,0,NA,Attchd,1996,Fin,2,422,TA,TA,Y,144,122,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,204000 +454,60,FV,75,9000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,8,5,2008,2008,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,768,768,GasA,Ex,Y,SBrkr,786,804,0,1590,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2008,RFn,2,676,TA,TA,Y,0,30,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,210000 +455,90,RL,63,9297,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,Duplex,1Story,5,5,1976,1976,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,1606,Unf,0,122,1728,GasA,TA,Y,SBrkr,1728,0,0,1728,2,0,2,0,4,2,TA,8,Typ,0,NA,Detchd,1976,Unf,2,560,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Family,188000 +456,20,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,7,6,1973,1973,Hip,CompShg,HdBoard,HdBoard,BrkFace,320,TA,TA,CBlock,TA,TA,No,ALQ,916,Unf,0,326,1242,GasA,Fa,Y,SBrkr,1242,0,0,1242,0,0,1,1,3,1,TA,6,Typ,1,TA,Attchd,1973,Unf,2,528,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,9,2007,WD,Normal,175500 +457,70,RM,34,4571,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,5,5,1916,1950,Gable,CompShg,AsbShng,AsbShng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,624,624,GasA,Fa,N,SBrkr,624,720,0,1344,0,0,1,0,4,1,TA,7,Typ,0,NA,Detchd,1916,Unf,3,513,Fa,Fa,Y,0,0,96,0,0,0,NA,NA,NA,0,5,2008,COD,Abnorml,98000 +458,20,RL,NA,53227,Pave,NA,IR1,Low,AllPub,CulDSac,Mod,ClearCr,Norm,Norm,1Fam,1Story,4,6,1954,1994,Flat,Tar&Grv,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,Gd,BLQ,1116,Unf,0,248,1364,GasA,Ex,Y,SBrkr,1663,0,0,1663,1,0,1,0,2,1,Gd,6,Min1,2,Gd,Attchd,1954,Fin,2,529,TA,TA,Y,224,137,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,256000 +459,70,RM,NA,5100,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,8,7,1925,1996,Hip,CompShg,Stucco,Wd Shng,None,0,TA,Gd,PConc,TA,TA,No,Unf,0,Unf,0,588,588,GasA,Fa,Y,SBrkr,833,833,0,1666,0,0,1,0,3,1,Gd,7,Typ,1,Gd,Detchd,1925,Unf,1,228,TA,TA,Y,192,63,0,0,0,0,NA,MnPrv,NA,0,6,2008,WD,Normal,161000 +460,50,RL,NA,7015,Pave,NA,IR1,Bnk,AllPub,Corner,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,5,4,1950,1950,Gable,CompShg,MetalSd,MetalSd,BrkCmn,161,TA,TA,CBlock,TA,TA,No,LwQ,185,Unf,0,524,709,GasA,TA,Y,SBrkr,979,224,0,1203,1,0,1,0,3,1,Gd,5,Typ,1,TA,Detchd,1950,Unf,1,352,TA,TA,Y,0,0,248,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,110000 +461,60,FV,75,8004,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Somerst,RRAn,Norm,1Fam,2Story,8,5,2009,2009,Gable,CompShg,VinylSd,VinylSd,Stone,110,Gd,TA,PConc,Gd,TA,No,GLQ,544,Unf,0,288,832,GasA,Ex,Y,SBrkr,832,1103,0,1935,1,0,2,1,3,1,TA,8,Typ,0,NA,BuiltIn,2009,Fin,2,552,TA,TA,Y,0,150,0,0,0,0,NA,NA,NA,0,12,2009,New,Partial,263435 +462,70,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Feedr,Norm,1Fam,2Story,7,9,1936,2007,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,Gd,PConc,Gd,Gd,No,ALQ,350,BLQ,210,0,560,GasA,Ex,Y,SBrkr,575,560,0,1135,1,0,1,0,3,1,Gd,6,Typ,0,NA,Detchd,1971,RFn,2,576,TA,TA,Y,256,0,0,0,0,0,NA,MnPrv,NA,0,4,2009,WD,Normal,155000 +463,20,RL,60,8281,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1965,1965,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,553,BLQ,311,0,864,GasA,Gd,Y,SBrkr,864,0,0,864,0,0,1,0,3,1,TA,5,Typ,1,Po,Detchd,1965,Unf,1,360,TA,TA,Y,0,0,236,0,0,0,NA,GdWo,NA,0,12,2009,WD,Normal,62383 +464,70,RL,74,11988,Pave,NA,IR1,HLS,AllPub,Inside,Mod,Crawfor,Norm,Norm,1Fam,2Story,6,7,1934,1995,Hip,CompShg,Stucco,Stucco,None,0,TA,TA,CBlock,TA,TA,No,LwQ,326,Unf,0,389,715,GasA,Fa,Y,FuseA,849,811,0,1660,0,0,1,1,3,1,TA,6,Typ,1,Gd,Detchd,1939,Unf,1,240,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,188700 +465,20,RL,60,8430,Pave,NA,Reg,HLS,AllPub,Inside,Mod,CollgCr,Norm,Norm,1Fam,1Story,5,5,1978,1978,Gable,CompShg,HdBoard,HdBoard,BrkFace,136,TA,TA,CBlock,Gd,TA,No,Rec,616,Unf,0,424,1040,GasA,TA,Y,SBrkr,1040,0,0,1040,0,0,2,0,3,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,124000 +466,120,RM,NA,3072,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2004,2004,Hip,CompShg,VinylSd,VinylSd,BrkFace,18,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1375,1375,GasA,Ex,Y,SBrkr,1414,0,0,1414,0,0,2,0,2,1,Gd,6,Typ,1,TA,Attchd,2004,Fin,2,398,TA,TA,Y,144,20,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,178740 +467,20,RL,85,10628,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,7,5,1970,1970,Flat,Tar&Grv,Plywood,Plywood,None,0,TA,Gd,CBlock,TA,Gd,Gd,GLQ,778,Unf,0,499,1277,GasA,TA,Y,SBrkr,1277,0,0,1277,1,0,1,0,2,1,TA,5,Typ,1,Po,Attchd,1970,Unf,2,526,TA,TA,Y,0,0,0,0,176,0,NA,GdWo,NA,0,4,2007,WD,Normal,167000 +468,70,RL,79,9480,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Artery,Norm,1Fam,2Story,5,7,1942,1995,Gable,CompShg,MetalSd,MetalSd,Stone,224,TA,TA,CBlock,TA,TA,No,LwQ,386,Unf,0,342,728,GasA,Ex,Y,SBrkr,888,756,0,1644,0,0,1,1,3,1,Gd,7,Typ,2,Gd,Attchd,1942,Unf,1,312,TA,TA,Y,168,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,146500 +469,20,RL,98,11428,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,248,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1626,1626,GasA,Ex,Y,SBrkr,1634,0,0,1634,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2006,RFn,3,866,TA,TA,Y,0,44,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,250000 +470,60,RL,76,9291,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,SawyerW,RRNe,Norm,1Fam,2Story,6,5,1993,1993,Gable,CompShg,HdBoard,HdBoard,BrkFace,120,Gd,TA,PConc,Gd,TA,No,GLQ,426,Unf,0,406,832,GasA,Ex,Y,SBrkr,832,878,0,1710,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,1993,RFn,2,506,TA,TA,Y,144,70,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,187000 +471,120,RL,NA,6820,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,StoneBr,Norm,Norm,TwnhsE,1Story,8,5,1985,1985,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,368,BLQ,1120,0,1488,GasA,TA,Y,SBrkr,1502,0,0,1502,1,0,1,1,1,1,Gd,4,Typ,0,NA,Attchd,1985,RFn,2,528,TA,TA,Y,0,54,0,0,140,0,NA,NA,NA,0,6,2010,WD,Normal,212000 +472,60,RL,92,11952,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,PosA,Norm,1Fam,2Story,7,6,1977,1977,Mansard,WdShake,WdShing,Plywood,None,0,TA,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,808,808,GasA,TA,Y,SBrkr,1161,808,0,1969,0,0,2,1,3,1,TA,8,Typ,1,Gd,Attchd,1977,RFn,2,534,TA,TA,Y,0,0,0,0,276,0,NA,NA,NA,0,11,2007,WD,Normal,190000 +473,180,RM,35,3675,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,TwnhsE,SLvl,6,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,80,TA,TA,PConc,Gd,TA,Gd,GLQ,459,Unf,0,88,547,GasA,Ex,Y,SBrkr,1072,0,0,1072,1,0,1,0,2,1,TA,5,Typ,0,NA,Basment,2005,RFn,2,525,TA,TA,Y,0,28,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,148000 +474,20,RL,110,14977,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,BrkFace,304,Gd,TA,PConc,Ex,TA,Gd,GLQ,1350,Unf,0,626,1976,GasA,Ex,Y,SBrkr,1976,0,0,1976,1,0,2,0,2,1,Gd,7,Typ,1,Ex,Attchd,2006,RFn,3,908,TA,TA,Y,250,63,0,0,0,0,NA,NA,NA,0,7,2007,New,Partial,440000 +475,120,RL,41,5330,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,TwnhsE,1Story,8,5,2000,2000,Gable,CompShg,CemntBd,CmentBd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,1196,Unf,0,298,1494,GasA,Ex,Y,SBrkr,1652,0,0,1652,1,0,2,0,2,1,Ex,6,Typ,0,NA,Attchd,2000,RFn,2,499,TA,TA,Y,96,48,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,251000 +476,20,RL,80,8480,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,6,1963,1963,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,GLQ,630,Unf,0,340,970,GasA,TA,Y,SBrkr,970,0,0,970,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1996,Unf,2,624,TA,TA,Y,0,24,0,0,192,0,NA,NA,NA,0,7,2007,WD,Normal,132500 +477,20,RL,75,13125,Pave,NA,Reg,Lvl,AllPub,Inside,Mod,CollgCr,Norm,Norm,1Fam,1Story,6,5,1997,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,215,TA,TA,PConc,Gd,TA,Gd,GLQ,994,Unf,0,484,1478,GasA,Ex,Y,SBrkr,1493,0,0,1493,1,0,2,0,3,1,Gd,7,Typ,1,TA,Attchd,1997,Fin,2,508,TA,TA,Y,140,39,0,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,208900 +478,60,RL,105,13693,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,9,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,BrkFace,772,Ex,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,2153,2153,GasA,Ex,Y,SBrkr,2069,574,0,2643,0,0,2,1,3,1,Ex,9,Typ,1,Gd,BuiltIn,2006,Fin,3,694,TA,TA,Y,414,84,0,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,380000 +479,20,RL,79,10637,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,8,5,2007,2008,Hip,CompShg,VinylSd,VinylSd,Stone,336,Gd,TA,PConc,Ex,TA,Gd,GLQ,1288,Unf,0,417,1705,GasA,Ex,Y,SBrkr,1718,0,0,1718,1,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2007,RFn,3,826,TA,TA,Y,208,44,0,0,0,0,NA,NA,NA,0,9,2009,WD,Normal,297000 +480,30,RM,50,5925,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,4,7,1937,2000,Hip,CompShg,Stucco,Stucco,BrkCmn,435,TA,TA,BrkTil,Fa,TA,No,Rec,168,Unf,0,739,907,GasA,TA,Y,SBrkr,1131,0,0,1131,0,0,1,0,2,1,TA,7,Typ,0,NA,Detchd,1995,Unf,2,672,TA,TA,Y,0,72,0,0,0,0,NA,MnPrv,NA,0,3,2007,WD,Alloca,89471 +481,20,RL,98,16033,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,NridgHt,Norm,Norm,1Fam,1Story,9,5,2004,2005,Hip,CompShg,VinylSd,VinylSd,BrkFace,378,Gd,TA,PConc,Ex,TA,Gd,GLQ,1261,Unf,0,572,1833,GasA,Ex,Y,SBrkr,1850,0,0,1850,1,0,2,0,3,1,Gd,8,Typ,1,Gd,Attchd,2004,Fin,3,772,TA,TA,Y,519,112,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,326000 +482,20,RL,72,11846,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,9,5,2003,2004,Hip,CompShg,VinylSd,VinylSd,BrkFace,562,Gd,TA,PConc,Ex,TA,Gd,GLQ,1567,Unf,0,225,1792,GasA,Ex,Y,SBrkr,1792,0,0,1792,1,0,2,0,2,1,Ex,6,Typ,1,Gd,Attchd,2003,Fin,3,874,TA,TA,Y,206,49,0,0,0,0,NA,NA,NA,0,8,2006,WD,Normal,374000 +483,70,RM,50,2500,Pave,Pave,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,2Story,7,8,1915,2005,Gable,CompShg,Stucco,Stucco,None,0,Gd,TA,PConc,TA,TA,No,ALQ,299,Unf,0,611,910,GasA,Ex,Y,SBrkr,916,910,0,1826,1,0,1,1,4,1,Ex,7,Min2,1,Gd,Attchd,1915,Unf,1,164,Fa,Fa,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,155000 +484,120,RM,32,4500,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Mitchel,Norm,Norm,Twnhs,1Story,6,5,1998,1998,Hip,CompShg,VinylSd,VinylSd,BrkFace,116,TA,TA,PConc,Ex,TA,No,GLQ,897,Unf,0,319,1216,GasA,Ex,Y,SBrkr,1216,0,0,1216,1,0,2,0,2,1,TA,5,Typ,0,NA,Attchd,1998,Unf,2,402,TA,TA,Y,0,125,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,164000 +485,20,RL,NA,7758,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,7,1962,2001,Gable,CompShg,HdBoard,Plywood,None,0,TA,Gd,CBlock,TA,TA,No,ALQ,588,Unf,0,411,999,GasA,Gd,Y,SBrkr,999,0,0,999,1,0,1,0,3,1,Gd,6,Typ,0,NA,Detchd,1963,Unf,1,264,TA,TA,Y,0,132,0,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,132500 +486,20,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1950,2007,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,CBlock,TA,TA,No,ALQ,607,Unf,0,506,1113,GasA,Gd,Y,SBrkr,1113,0,0,1113,0,0,1,0,3,1,Gd,5,Typ,1,Gd,Attchd,1950,Unf,1,264,TA,TA,Y,0,80,120,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,147000 +487,20,RL,79,10289,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1965,1965,Hip,CompShg,MetalSd,MetalSd,BrkFace,168,TA,TA,CBlock,TA,TA,No,ALQ,836,Unf,0,237,1073,GasA,TA,Y,SBrkr,1073,0,0,1073,1,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1965,RFn,2,515,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,156000 +488,20,RL,70,12243,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,5,6,1971,1971,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,Av,ALQ,998,Unf,0,486,1484,GasA,Gd,Y,SBrkr,1484,0,0,1484,0,0,2,0,3,1,TA,7,Typ,1,TA,Attchd,1971,Unf,2,487,TA,TA,Y,224,0,0,0,180,0,NA,NA,NA,0,2,2007,WD,Normal,175000 +489,190,RL,60,10800,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,2fmCon,1.5Fin,5,4,1900,1970,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Fa,CBlock,TA,Fa,No,BLQ,664,Unf,0,290,954,GasA,TA,N,FuseA,1766,648,0,2414,0,0,2,0,3,2,TA,10,Mod,1,Gd,Attchd,1970,Unf,2,520,TA,Fa,N,142,0,0,0,0,0,NA,NA,NA,0,5,2006,ConLD,Normal,160000 +490,180,RM,21,1526,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,Twnhs,SFoyer,4,8,1970,2002,Gable,CompShg,CemntBd,CmentBd,None,0,TA,Gd,CBlock,Gd,TA,Av,GLQ,515,Unf,0,115,630,GasA,TA,Y,SBrkr,630,0,0,630,1,0,1,0,1,1,Gd,3,Typ,0,NA,Attchd,1970,Unf,1,286,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,86000 +491,160,RM,NA,2665,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,TwnhsE,2Story,5,6,1976,1976,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,PConc,Gd,TA,Mn,Unf,0,Unf,0,264,264,GasA,TA,Y,SBrkr,616,688,0,1304,0,0,1,1,3,1,TA,4,Typ,1,Gd,BuiltIn,1976,Fin,1,336,TA,TA,Y,141,24,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,115000 +492,50,RL,79,9490,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Artery,Norm,1Fam,1.5Fin,6,7,1941,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,BLQ,403,Rec,165,238,806,GasA,TA,Y,FuseA,958,620,0,1578,1,0,1,0,3,1,Fa,5,Typ,2,TA,Attchd,1941,Unf,1,240,TA,TA,Y,0,0,32,0,0,0,NA,MnPrv,NA,0,8,2006,WD,Normal,133000 +493,60,RL,105,15578,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,728,728,GasA,Gd,Y,SBrkr,728,728,0,1456,0,0,2,1,3,1,TA,8,Typ,0,NA,Attchd,2006,RFn,2,429,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2006,New,Partial,172785 +494,20,RL,70,7931,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1960,1960,Gable,CompShg,BrkFace,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,BLQ,374,LwQ,532,363,1269,GasA,TA,Y,FuseA,1269,0,0,1269,0,0,1,1,3,1,TA,6,Typ,1,Fa,Detchd,1964,Unf,1,308,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,155000 +495,30,RM,50,5784,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1Story,5,8,1938,1996,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,Fa,TA,No,Unf,0,Unf,0,190,190,GasA,Gd,Y,FuseA,886,0,0,886,0,0,1,0,2,1,TA,4,Typ,0,NA,Attchd,1938,Unf,1,273,TA,TA,Y,144,20,80,0,0,0,NA,NA,NA,0,12,2009,WD,Normal,91300 +496,30,C (all),60,7879,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1Story,4,5,1920,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,495,Unf,0,225,720,GasA,TA,N,FuseA,720,0,0,720,0,0,1,0,2,1,TA,4,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,523,115,0,0,0,NA,GdWo,NA,0,11,2009,WD,Abnorml,34900 +497,20,RL,NA,12692,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,1Story,8,5,1992,1993,Hip,CompShg,BrkFace,BrkFace,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,1231,Unf,0,1969,3200,GasA,Ex,Y,SBrkr,3228,0,0,3228,1,0,3,0,4,1,Gd,10,Typ,1,Gd,Attchd,1992,RFn,2,546,TA,TA,Y,264,75,291,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,430000 +498,50,RL,60,9120,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,7,6,1925,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,PConc,TA,TA,No,Rec,329,Unf,0,697,1026,GasA,Ex,Y,SBrkr,1133,687,0,1820,1,0,2,0,4,1,TA,8,Typ,0,NA,Detchd,1925,Unf,1,240,TA,TA,N,0,100,0,0,0,0,NA,GdPrv,NA,0,6,2008,WD,Normal,184000 +499,20,RL,65,7800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,7,1967,2004,Hip,CompShg,HdBoard,HdBoard,BrkFace,89,TA,TA,PConc,TA,TA,No,ALQ,450,Unf,0,414,864,GasA,Ex,Y,SBrkr,899,0,0,899,0,0,1,0,3,1,Gd,5,Typ,0,NA,Attchd,1967,Fin,1,288,TA,TA,Y,64,0,0,0,0,0,NA,MnPrv,NA,0,6,2009,WD,Normal,130000 +500,20,RL,70,7535,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1958,1985,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,111,LwQ,279,522,912,GasA,Fa,Y,SBrkr,912,0,0,912,0,1,1,0,2,1,TA,5,Typ,0,NA,Attchd,1958,Fin,1,297,TA,TA,Y,12,285,0,0,0,0,NA,MnWw,Shed,480,6,2007,WD,Normal,120000 +501,160,RM,21,1890,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,6,5,1973,1973,Gable,CompShg,HdBoard,HdBoard,BrkFace,285,TA,TA,CBlock,TA,TA,No,BLQ,356,Unf,0,316,672,GasA,TA,Y,SBrkr,672,546,0,1218,0,0,1,1,3,1,TA,7,Typ,0,NA,Detchd,1973,Unf,1,264,TA,TA,Y,144,28,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,113000 +502,60,FV,75,9803,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,400,Unf,0,466,866,GasA,Gd,Y,SBrkr,866,902,0,1768,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2005,RFn,2,603,TA,TA,Y,0,108,0,0,0,0,NA,NA,NA,0,2,2008,WD,Normal,226700 +503,20,RL,70,9170,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Feedr,Norm,1Fam,1Story,5,7,1965,1965,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,698,GLQ,96,420,1214,GasA,Ex,Y,SBrkr,1214,0,0,1214,1,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1965,Unf,2,461,Fa,Fa,Y,0,0,184,0,0,0,NA,GdPrv,Shed,400,4,2007,WD,Normal,140000 +504,20,RL,100,15602,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1Story,7,8,1959,1997,Gable,CompShg,BrkFace,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,ALQ,1247,Unf,0,254,1501,GasA,TA,Y,SBrkr,1801,0,0,1801,1,0,2,0,1,1,TA,6,Typ,2,TA,Attchd,1959,Fin,2,484,TA,TA,Y,0,54,0,0,161,0,NA,GdWo,NA,0,3,2010,WD,Normal,289000 +505,160,RL,24,2308,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NPkVill,Norm,Norm,TwnhsE,2Story,6,5,1974,1974,Gable,CompShg,Plywood,Brk Cmn,None,0,TA,TA,CBlock,TA,TA,No,ALQ,257,Rec,495,103,855,GasA,TA,Y,SBrkr,855,467,0,1322,0,1,2,1,3,1,TA,6,Typ,1,Fa,Attchd,1974,Unf,2,440,TA,TA,Y,260,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,147000 +506,90,RM,60,7596,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,Duplex,2Story,5,5,1952,1952,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,360,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,960,960,GasA,Gd,Y,SBrkr,960,1000,0,1960,0,0,2,0,4,2,TA,10,Typ,0,NA,Detchd,1952,Unf,2,400,TA,TA,N,0,0,0,0,0,0,NA,NA,NA,0,7,2009,COD,Normal,124500 +507,60,RL,80,9554,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,8,5,1993,1994,Gable,CompShg,VinylSd,VinylSd,BrkFace,125,Gd,TA,PConc,Gd,TA,No,GLQ,380,Unf,0,397,777,GasA,Ex,Y,SBrkr,1065,846,0,1911,0,0,2,1,3,1,Gd,8,Typ,1,TA,Attchd,1993,RFn,2,471,TA,TA,Y,182,81,0,0,0,0,NA,NA,NA,0,9,2006,WD,Normal,215000 +508,20,FV,75,7862,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,6,5,2009,2009,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,27,Unf,0,1191,1218,GasA,Ex,Y,SBrkr,1218,0,0,1218,0,0,2,0,2,1,Gd,4,Typ,0,NA,Attchd,2009,Fin,2,676,TA,TA,Y,0,102,0,0,0,0,NA,NA,NA,0,9,2009,New,Partial,208300 +509,70,RM,60,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,7,9,1928,2005,Gambrel,CompShg,MetalSd,MetalSd,None,0,TA,Ex,BrkTil,TA,TA,No,Rec,141,Unf,0,548,689,GasA,Ex,Y,SBrkr,689,689,0,1378,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Detchd,1928,Unf,2,360,TA,TA,N,0,0,116,0,0,0,NA,NA,NA,0,10,2008,WD,Normal,161000 +510,20,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1959,1959,Gable,CompShg,MetalSd,MetalSd,BrkFace,132,TA,TA,CBlock,TA,TA,No,ALQ,991,Unf,0,50,1041,GasA,Ex,Y,SBrkr,1041,0,0,1041,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1959,RFn,1,270,TA,TA,Y,224,88,0,0,0,0,NA,MnPrv,NA,0,7,2009,WD,Normal,124500 +511,20,RL,75,14559,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1951,2000,Hip,CompShg,Wd Sdng,Wd Sdng,BrkCmn,70,Gd,TA,CBlock,TA,TA,No,BLQ,650,Rec,180,178,1008,GasA,Ex,Y,SBrkr,1363,0,0,1363,1,0,1,0,2,1,TA,6,Min1,2,TA,CarPort,1951,Unf,1,288,TA,TA,Y,324,42,0,0,168,0,NA,NA,Shed,2000,6,2009,WD,Normal,164900 +512,120,RL,40,6792,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,Stone,94,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1368,1368,GasA,Ex,Y,SBrkr,1368,0,0,1368,0,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2005,RFn,2,474,TA,TA,Y,132,35,0,0,0,0,NA,NA,NA,0,3,2006,New,Partial,202665 +513,20,RL,70,9100,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Feedr,Norm,1Fam,1Story,5,5,1958,1958,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,521,LwQ,174,169,864,GasA,TA,Y,SBrkr,864,0,0,864,1,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1964,Unf,2,624,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,129900 +514,20,RL,71,9187,Pave,NA,Reg,Bnk,AllPub,Corner,Gtl,Mitchel,Norm,Norm,1Fam,1Story,6,5,1983,1983,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,PConc,TA,TA,No,ALQ,336,Unf,0,748,1084,GasA,TA,Y,SBrkr,1080,0,0,1080,0,0,1,1,3,1,TA,5,Typ,0,NA,Attchd,1983,Unf,2,484,TA,TA,Y,120,0,158,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,134000 +515,45,RL,55,10594,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1.5Unf,5,5,1926,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,768,768,Grav,Fa,N,SBrkr,789,0,0,789,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1926,Unf,1,200,Po,Po,Y,0,0,112,0,0,0,NA,MnPrv,NA,0,6,2007,WD,Normal,96500 +516,20,RL,94,12220,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,10,5,2009,2009,Hip,CompShg,CemntBd,CmentBd,BrkFace,305,Ex,TA,CBlock,Ex,TA,No,GLQ,1436,Unf,0,570,2006,GasA,Ex,Y,SBrkr,2020,0,0,2020,1,0,2,1,3,1,Ex,9,Typ,1,Gd,Attchd,2009,Fin,3,900,TA,TA,Y,156,54,0,0,0,0,NA,NA,NA,0,9,2009,New,Partial,402861 +517,80,RL,NA,10448,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NWAmes,Norm,Norm,1Fam,SLvl,6,6,1972,1972,Gable,CompShg,HdBoard,HdBoard,BrkFace,333,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,689,689,GasA,TA,Y,SBrkr,1378,741,0,2119,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1972,RFn,2,583,TA,TA,Y,0,104,0,0,0,0,NA,GdPrv,NA,0,8,2009,COD,Abnorml,158000 +518,60,RL,79,10208,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,7,5,1996,1997,Gable,CompShg,VinylSd,VinylSd,BrkFace,921,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1264,1264,GasA,Ex,Y,SBrkr,1277,1067,0,2344,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1996,RFn,3,889,TA,TA,Y,220,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,265000 +519,60,RL,NA,9531,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,2Story,6,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Mn,GLQ,706,Unf,0,88,794,GasA,Ex,Y,SBrkr,882,914,0,1796,1,0,2,1,3,1,TA,7,Typ,0,NA,Attchd,1998,RFn,2,546,TA,TA,Y,0,36,0,0,0,0,NA,MnPrv,NA,0,5,2007,WD,Normal,211000 +520,70,RL,53,10918,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2Story,7,9,1926,2004,Gambrel,CompShg,MetalSd,MetalSd,None,0,Gd,TA,BrkTil,Gd,TA,No,Unf,0,Unf,0,1276,1276,GasA,Ex,Y,SBrkr,1276,804,0,2080,0,0,1,1,3,1,Gd,9,Typ,2,Gd,Detchd,1926,Unf,1,282,TA,TA,Y,0,0,0,0,145,0,NA,MnPrv,NA,0,6,2009,WD,Normal,234000 +521,190,RL,60,10800,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,2fmCon,2Story,4,7,1900,2000,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,N,FuseA,694,600,0,1294,0,0,2,0,3,2,TA,7,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,220,114,210,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,106250 +522,20,RL,90,11988,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Feedr,Norm,1Fam,1Story,6,6,1957,1957,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,777,Unf,0,467,1244,GasA,Ex,Y,FuseA,1244,0,0,1244,0,0,1,1,3,1,TA,6,Typ,2,Gd,Attchd,1957,Unf,1,336,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,150000 +523,50,RM,50,5000,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,BrkSide,Feedr,Norm,1Fam,1.5Fin,6,7,1947,1950,Gable,CompShg,CemntBd,CmentBd,None,0,TA,Gd,CBlock,TA,TA,No,ALQ,399,Unf,0,605,1004,GasA,Ex,Y,SBrkr,1004,660,0,1664,0,0,2,0,3,1,TA,7,Typ,2,Gd,Detchd,1950,Unf,2,420,TA,TA,Y,0,24,36,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,159000 +524,60,RL,130,40094,Pave,NA,IR1,Bnk,AllPub,Inside,Gtl,Edwards,PosN,PosN,1Fam,2Story,10,5,2007,2008,Hip,CompShg,CemntBd,CmentBd,Stone,762,Ex,TA,PConc,Ex,TA,Gd,GLQ,2260,Unf,0,878,3138,GasA,Ex,Y,SBrkr,3138,1538,0,4676,1,0,3,1,3,1,Ex,11,Typ,1,Gd,BuiltIn,2007,Fin,3,884,TA,TA,Y,208,406,0,0,0,0,NA,NA,NA,0,10,2007,New,Partial,184750 +525,60,RL,95,11787,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,7,5,1996,1997,Gable,CompShg,VinylSd,VinylSd,BrkFace,594,Gd,TA,PConc,Gd,TA,No,GLQ,719,Unf,0,660,1379,GasA,Ex,Y,SBrkr,1383,1015,0,2398,1,0,2,1,3,1,Gd,8,Typ,1,TA,Attchd,1996,Fin,3,834,TA,TA,Y,239,60,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,315750 +526,20,FV,62,7500,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,7,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1257,1257,GasA,Ex,Y,SBrkr,1266,0,0,1266,0,0,2,0,3,1,Gd,6,Typ,1,TA,Attchd,2005,Unf,2,453,TA,TA,Y,38,144,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,176000 +527,20,RL,70,13300,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1956,2000,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,Gd,TA,No,Rec,377,Unf,0,551,928,GasA,TA,Y,SBrkr,928,0,0,928,0,0,1,0,2,1,TA,4,Typ,0,NA,Attchd,1956,Unf,1,252,TA,TA,Y,261,0,156,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,132000 +528,60,RL,67,14948,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,9,5,2008,2008,Hip,CompShg,VinylSd,VinylSd,Stone,268,Ex,TA,PConc,Ex,TA,Av,GLQ,1330,Unf,0,122,1452,GasA,Ex,Y,SBrkr,1476,1237,0,2713,1,0,2,1,3,1,Ex,11,Typ,1,Gd,Attchd,2008,Fin,3,858,TA,TA,Y,126,66,0,0,0,0,NA,NA,NA,0,11,2008,New,Partial,446261 +529,30,RL,58,9098,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,7,1920,2002,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,Mn,ALQ,348,Unf,0,180,528,GasA,Ex,Y,SBrkr,605,0,0,605,1,0,1,0,2,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,144,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,86000 +530,20,RL,NA,32668,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Crawfor,Norm,Norm,1Fam,1Story,6,3,1957,1975,Hip,CompShg,Wd Sdng,Stone,NA,NA,Gd,TA,PConc,TA,TA,No,Rec,1219,Unf,0,816,2035,GasA,TA,Y,SBrkr,2515,0,0,2515,1,0,3,0,4,2,TA,9,Maj1,2,TA,Attchd,1975,RFn,2,484,TA,TA,Y,0,0,200,0,0,0,NA,NA,NA,0,3,2007,WD,Alloca,200624 +531,80,RL,85,10200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,SLvl,6,5,1988,1989,Gable,CompShg,HdBoard,HdBoard,BrkFace,219,Gd,TA,CBlock,Gd,TA,Av,GLQ,783,Unf,0,678,1461,GasA,Ex,Y,SBrkr,1509,0,0,1509,1,0,2,0,3,1,Gd,5,Typ,1,Fa,Attchd,1988,RFn,2,600,TA,TA,Y,224,0,0,0,0,0,NA,NA,NA,0,8,2008,WD,Abnorml,175000 +532,70,RM,60,6155,Pave,NA,IR1,Lvl,AllPub,FR3,Gtl,BrkSide,RRNn,Feedr,1Fam,2Story,6,8,1920,1999,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Fa,Fa,Mn,Unf,0,Unf,0,611,611,GasA,Ex,Y,SBrkr,751,611,0,1362,0,0,2,0,3,1,TA,6,Typ,0,NA,Detchd,1920,Fin,2,502,TA,Fa,Y,0,0,84,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,128000 +533,20,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1955,2007,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,Ex,Y,SBrkr,827,0,0,827,0,0,1,0,2,1,TA,5,Mod,1,Po,Detchd,1967,Unf,1,392,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,107500 +534,20,RL,50,5000,Pave,NA,Reg,Low,AllPub,Inside,Mod,BrkSide,Norm,Norm,1Fam,1Story,1,3,1946,1950,Gable,CompShg,VinylSd,VinylSd,None,0,Fa,Fa,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,Fa,N,FuseF,334,0,0,334,0,0,1,0,1,1,Fa,2,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,0,0,0,0,NA,NA,NA,0,1,2007,WD,Normal,39300 +535,60,RL,74,9056,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,8,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,Gd,Av,Unf,0,Unf,0,707,707,GasA,Ex,Y,SBrkr,707,707,0,1414,0,0,2,1,3,1,Gd,6,Typ,1,Gd,Attchd,2004,Fin,2,403,TA,TA,Y,100,35,0,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,178000 +536,190,RL,70,7000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,2fmCon,2Story,5,7,1910,1991,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,Gd,TA,Gd,GLQ,969,Unf,0,148,1117,GasA,TA,Y,SBrkr,820,527,0,1347,1,0,1,0,3,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,85,0,148,0,0,0,NA,NA,NA,0,1,2008,WD,Normal,107500 +537,60,RL,57,8924,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,1998,1999,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,880,880,GasA,Ex,Y,SBrkr,880,844,0,1724,0,0,2,1,3,1,Gd,8,Typ,0,NA,Attchd,1998,Fin,2,527,TA,TA,Y,120,155,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,188000 +538,20,RL,NA,12735,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,5,1972,1972,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,600,Unf,0,264,864,GasA,TA,Y,SBrkr,864,0,0,864,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1980,Unf,2,576,TA,TA,Y,216,0,0,0,0,0,NA,MnWw,NA,0,4,2008,COD,Normal,111250 +539,20,RL,NA,11553,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1968,1968,Hip,CompShg,Plywood,Plywood,BrkFace,188,TA,TA,CBlock,TA,TA,No,BLQ,673,Unf,0,378,1051,GasA,TA,Y,SBrkr,1159,0,0,1159,0,0,1,1,3,1,TA,7,Typ,1,Fa,Attchd,1968,Unf,1,336,TA,TA,Y,466,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,158000 +540,20,RL,NA,11423,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,8,5,2001,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,479,Gd,TA,PConc,Gd,TA,Av,GLQ,1358,Unf,0,223,1581,GasA,Ex,Y,SBrkr,1601,0,0,1601,1,0,2,0,3,1,Gd,6,Typ,1,TA,Attchd,2001,RFn,2,670,TA,TA,Y,180,0,0,0,0,0,NA,MnPrv,Shed,2000,5,2010,WD,Normal,272000 +541,20,RL,85,14601,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,9,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,BrkFace,584,Ex,TA,PConc,Ex,TA,Av,GLQ,1260,Unf,0,578,1838,GasA,Ex,Y,SBrkr,1838,0,0,1838,1,0,2,0,2,1,Ex,8,Typ,1,Gd,Attchd,2006,Fin,3,765,TA,TA,Y,270,68,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,315000 +542,60,RL,NA,11000,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,BrkFace,72,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,969,969,GasA,Ex,Y,SBrkr,997,1288,0,2285,0,0,2,1,4,1,Gd,8,Typ,1,TA,BuiltIn,2000,Fin,3,648,TA,TA,Y,0,56,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,248000 +543,20,RL,78,10140,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,RRAn,Norm,1Fam,1Story,7,5,1998,1999,Hip,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,TA,No,LwQ,144,GLQ,1127,379,1650,GasA,Ex,Y,SBrkr,1680,0,0,1680,1,0,2,0,3,1,Gd,7,Maj1,1,TA,Attchd,1998,Fin,2,583,TA,TA,Y,78,73,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,213250 +544,120,RH,34,4058,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,TwnhsE,SFoyer,7,5,1998,1998,Gable,CompShg,MetalSd,MetalSd,BrkFace,182,TA,TA,PConc,Gd,TA,Av,GLQ,584,LwQ,139,0,723,GasA,Ex,Y,SBrkr,767,0,0,767,1,0,1,0,1,1,TA,4,Typ,0,NA,Attchd,1998,Fin,1,367,TA,TA,Y,120,40,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,133000 +545,60,RL,58,17104,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,Gd,Av,GLQ,554,Unf,0,100,654,GasA,Ex,Y,SBrkr,664,832,0,1496,1,0,2,1,3,1,Gd,7,Typ,1,Gd,Attchd,2006,RFn,2,426,TA,TA,Y,100,24,0,0,0,0,NA,NA,NA,0,9,2006,New,Partial,179665 +546,50,RL,NA,13837,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NWAmes,Norm,Norm,1Fam,1.5Fin,7,5,1988,1988,Gable,CompShg,HdBoard,HdBoard,BrkFace,178,Gd,Gd,PConc,Gd,Gd,No,GLQ,1002,LwQ,202,0,1204,GasA,Gd,Y,SBrkr,1377,806,0,2183,0,0,2,1,4,1,Gd,9,Typ,0,NA,Attchd,1988,Unf,3,786,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,2,2006,WD,Normal,229000 +547,50,RL,70,8737,Pave,NA,IR1,Bnk,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,6,7,1923,1950,Gable,CompShg,BrkFace,Wd Sdng,None,0,TA,TA,BrkTil,Gd,TA,No,Rec,300,Unf,0,765,1065,GasA,Ex,Y,FuseA,915,720,0,1635,0,0,1,1,3,1,TA,6,Typ,1,Gd,Detchd,1950,Unf,2,440,TA,TA,Y,0,38,0,144,0,0,NA,NA,NA,0,5,2007,WD,Normal,210000 +548,85,RL,54,7244,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,SFoyer,5,7,1970,1970,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,Gd,TA,Av,ALQ,619,Unf,0,149,768,GasA,Ex,Y,SBrkr,768,0,0,768,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1987,Unf,2,624,TA,TA,Y,104,0,0,0,0,0,NA,NA,NA,0,4,2007,WD,Normal,129500 +549,20,RM,49,8235,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,OldTown,Feedr,RRNn,1Fam,1Story,5,7,1955,1995,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,LwQ,180,Rec,645,0,825,GasA,TA,Y,SBrkr,825,0,0,825,1,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1963,RFn,2,720,TA,TA,Y,140,50,0,0,0,0,NA,MnPrv,NA,0,6,2008,WD,Normal,125000 +550,60,FV,75,9375,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,912,912,GasA,Ex,Y,SBrkr,912,1182,0,2094,0,0,2,1,4,1,Gd,8,Typ,1,Gd,BuiltIn,2003,Fin,2,615,TA,TA,Y,182,182,0,0,0,0,NA,NA,NA,0,11,2009,WD,Normal,263000 +551,120,RL,53,4043,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NPkVill,Norm,Norm,TwnhsE,1Story,6,6,1977,1977,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,559,Unf,0,510,1069,GasA,TA,Y,SBrkr,1069,0,0,1069,0,0,2,0,2,1,TA,4,Typ,0,NA,Attchd,1977,RFn,2,440,TA,TA,Y,0,55,0,0,200,0,NA,NA,NA,0,10,2008,COD,Abnorml,140000 +552,20,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,6,1957,1957,Hip,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,TA,TA,No,Rec,308,Unf,0,620,928,GasA,Gd,Y,FuseA,928,0,0,928,0,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1957,Fin,1,288,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,112500 +553,20,RL,87,11146,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,250,Gd,TA,PConc,Ex,TA,Av,Unf,0,Unf,0,1709,1709,GasA,Ex,Y,SBrkr,1717,0,0,1717,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2006,RFn,3,908,TA,TA,Y,169,39,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,255500 +554,20,RL,67,8777,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Feedr,Norm,1Fam,1Story,4,5,1949,2003,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,NA,NA,NA,NA,0,NA,0,0,0,GasA,Ex,Y,SBrkr,1126,0,0,1126,0,0,2,0,2,1,Gd,5,Typ,0,NA,Detchd,2002,Fin,2,520,TA,TA,N,0,96,0,0,0,0,NA,MnPrv,NA,0,5,2009,WD,Normal,108000 +555,60,RL,85,10625,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,7,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,292,Gd,TA,PConc,Gd,TA,No,GLQ,866,Unf,0,132,998,GasA,Ex,Y,SBrkr,1006,1040,0,2046,1,0,2,1,3,1,Gd,8,Typ,1,Gd,BuiltIn,2003,RFn,3,871,TA,TA,Y,320,62,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,284000 +556,45,RM,58,6380,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Unf,5,6,1922,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,Fa,No,Unf,0,Unf,0,993,993,GasA,TA,Y,FuseA,1048,0,0,1048,0,0,1,0,2,1,TA,5,Typ,1,Gd,Detchd,1922,Unf,1,280,TA,TA,Y,0,0,116,0,0,0,NA,NA,NA,0,8,2006,WD,Normal,113000 +557,20,RL,69,14850,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1957,1957,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,895,Unf,0,197,1092,GasA,TA,Y,FuseA,1092,0,0,1092,1,0,1,0,2,1,TA,6,Typ,1,TA,Attchd,1957,Fin,1,299,TA,TA,Y,268,0,0,0,122,0,NA,MnWw,NA,0,5,2006,WD,Normal,141000 +558,50,C (all),60,11040,Pave,NA,Reg,Low,AllPub,Inside,Mod,IDOTRR,Norm,Norm,1Fam,1.5Fin,4,6,1920,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,637,Unf,0,0,637,GasA,Gd,Y,SBrkr,897,439,0,1336,0,0,1,1,3,1,TA,7,Typ,0,NA,CarPort,1994,Unf,1,570,TA,TA,Y,0,47,120,0,0,0,NA,NA,NA,0,9,2006,COD,Normal,108000 +559,60,RL,57,21872,Pave,NA,IR2,HLS,AllPub,FR2,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,1996,1997,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,Gd,TA,Gd,GLQ,604,Unf,0,125,729,GasA,Ex,Y,SBrkr,729,717,0,1446,0,1,2,1,3,1,TA,6,Typ,1,TA,Attchd,1996,Unf,2,406,TA,TA,Y,264,22,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,175000 +560,120,RL,NA,3196,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,18,Gd,TA,PConc,Gd,TA,Gd,Unf,0,Unf,0,1374,1374,GasA,Ex,Y,SBrkr,1557,0,0,1557,0,0,2,0,2,1,Gd,7,Typ,1,TA,Attchd,2003,Fin,2,420,TA,TA,Y,143,20,0,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,234000 +561,20,RL,NA,11341,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,6,1957,1996,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,180,TA,TA,CBlock,Gd,TA,No,ALQ,1302,Unf,0,90,1392,GasA,TA,Y,SBrkr,1392,0,0,1392,1,0,1,1,3,1,TA,5,Mod,1,Gd,Detchd,1957,Unf,2,528,TA,TA,Y,0,0,0,0,95,0,NA,NA,NA,0,5,2010,WD,Normal,121500 +562,20,RL,77,10010,Pave,NA,Reg,Lvl,AllPub,Inside,Mod,Mitchel,Norm,Norm,1Fam,1Story,5,5,1974,1975,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,Av,ALQ,1071,LwQ,123,195,1389,GasA,Gd,Y,SBrkr,1389,0,0,1389,1,0,1,0,2,1,TA,6,Typ,1,TA,Attchd,1975,RFn,2,418,TA,TA,Y,240,38,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,170000 +563,30,RL,63,13907,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,6,1940,1969,Gable,CompShg,WdShing,Wd Shng,None,0,TA,TA,CBlock,TA,TA,No,BLQ,290,Unf,0,706,996,GasA,Ex,Y,SBrkr,996,0,0,996,1,0,1,0,3,1,TA,6,Typ,1,Gd,NA,NA,NA,0,0,NA,NA,Y,144,0,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,108000 +564,50,RL,66,21780,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,6,7,1918,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Gd,TA,Mn,Unf,0,Unf,0,1163,1163,GasA,Ex,Y,SBrkr,1163,511,0,1674,0,0,2,0,4,1,TA,8,Typ,1,Gd,Detchd,1955,Fin,2,396,TA,TA,N,72,36,0,0,144,0,NA,NA,NA,0,7,2008,WD,Normal,185000 +565,60,RL,NA,13346,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NoRidge,Norm,Norm,1Fam,2Story,7,5,1992,2000,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,728,Unf,0,367,1095,GasA,Ex,Y,SBrkr,1166,1129,0,2295,1,0,2,1,4,1,Gd,9,Typ,1,TA,Attchd,1992,RFn,2,590,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,268000 +566,70,RL,66,6858,Pave,NA,Reg,Bnk,AllPub,Corner,Gtl,SWISU,Norm,Norm,1Fam,2Story,6,4,1915,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,806,806,GasA,TA,N,FuseF,841,806,0,1647,1,0,1,1,4,1,Fa,6,Typ,0,NA,Detchd,1920,Unf,1,216,TA,TA,Y,0,66,136,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,128000 +567,60,RL,77,11198,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,1Fam,2Story,9,5,2005,2007,Hip,CompShg,VinylSd,VinylSd,BrkFace,245,Gd,TA,PConc,Gd,Gd,No,Unf,0,Unf,0,1122,1122,GasA,Ex,Y,SBrkr,1134,1370,0,2504,0,0,2,1,4,1,Ex,11,Typ,1,Gd,BuiltIn,2005,Fin,3,656,TA,TA,Y,144,39,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,325000 +568,20,RL,70,10171,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,168,Gd,TA,PConc,Gd,TA,No,GLQ,2,Unf,0,1515,1517,GasA,Ex,Y,SBrkr,1535,0,0,1535,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2004,RFn,2,532,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,214000 +569,50,RL,79,12327,Pave,NA,IR1,Low,AllPub,Inside,Mod,SawyerW,Norm,Norm,1Fam,1.5Fin,8,8,1983,2009,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,CBlock,Gd,TA,Gd,GLQ,1441,Unf,0,55,1496,GasA,Ex,Y,SBrkr,1496,636,0,2132,1,0,1,1,1,1,Gd,5,Min2,1,Gd,BuiltIn,1983,Fin,2,612,Gd,TA,Y,349,40,0,0,0,0,NA,NA,NA,0,9,2009,WD,Normal,316600 +570,90,RL,NA,7032,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,Duplex,SFoyer,5,5,1979,1979,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,Gd,TA,Gd,GLQ,943,Unf,0,0,943,GasA,TA,Y,SBrkr,943,0,0,943,1,0,1,0,2,1,TA,4,Typ,2,TA,Detchd,1979,Unf,2,600,TA,TA,Y,42,0,0,0,0,0,NA,NA,NA,0,12,2006,WD,Normal,135960 +571,90,RL,74,13101,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,Duplex,1Story,5,5,1965,1965,Gable,CompShg,HdBoard,HdBoard,BrkFace,108,TA,TA,CBlock,TA,TA,No,LwQ,231,Unf,0,1497,1728,GasA,TA,Y,SBrkr,1728,0,0,1728,0,0,2,0,6,2,TA,10,Typ,0,NA,Detchd,1987,Unf,2,576,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2008,WD,Normal,142600 +572,20,RL,60,7332,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1959,1959,Gable,CompShg,WdShing,Wd Shng,BrkFace,207,TA,TA,CBlock,TA,TA,No,BLQ,414,Unf,0,450,864,GasA,Ex,Y,SBrkr,864,0,0,864,1,0,1,0,2,1,Gd,4,Typ,0,NA,Attchd,1959,Unf,1,288,TA,TA,Y,168,0,0,0,0,0,NA,NA,NA,0,10,2006,WD,Abnorml,120000 +573,60,RL,83,13159,Pave,NA,IR1,HLS,AllPub,Corner,Gtl,Timber,Norm,Norm,1Fam,2Story,7,5,2009,2009,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Ex,TA,Av,Unf,0,Unf,0,846,846,GasA,Gd,Y,SBrkr,846,846,0,1692,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2009,RFn,2,650,TA,TA,Y,208,114,0,0,0,0,NA,NA,NA,0,7,2009,New,Partial,224500 +574,80,RL,76,9967,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,SLvl,7,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,384,384,GasA,Ex,Y,SBrkr,774,656,0,1430,0,0,2,1,3,1,TA,8,Typ,1,TA,BuiltIn,2000,RFn,2,400,TA,TA,Y,100,0,0,0,0,0,NA,NA,NA,0,12,2007,WD,Normal,170000 +575,80,RL,70,10500,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NAmes,Norm,Norm,1Fam,SLvl,5,7,1971,2005,Gambrel,CompShg,MetalSd,AsphShn,BrkFace,82,TA,TA,CBlock,TA,TA,Av,ALQ,349,Unf,0,23,372,GasA,TA,Y,SBrkr,576,533,0,1109,0,1,1,0,3,1,TA,5,Typ,0,NA,BuiltIn,1971,Unf,1,288,TA,TA,Y,35,0,0,0,0,0,NA,GdWo,NA,0,12,2007,WD,Normal,139000 +576,50,RL,80,8480,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1.5Fin,5,5,1947,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,442,Unf,0,390,832,GasA,TA,Y,SBrkr,832,384,0,1216,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1947,Unf,1,336,TA,TA,Y,158,0,102,0,0,0,NA,NA,NA,0,10,2008,COD,Abnorml,118500 +577,50,RL,52,6292,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1.5Fin,7,7,1928,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,861,861,GasA,Gd,Y,SBrkr,877,600,0,1477,0,1,2,0,3,1,TA,6,Typ,1,Gd,Detchd,1928,Unf,1,216,TA,TA,Y,0,50,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,145000 +578,80,RL,96,11777,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,SLvl,5,6,1966,1966,Gable,CompShg,VinylSd,VinylSd,BrkFace,97,TA,TA,CBlock,TA,TA,Av,LwQ,328,ALQ,551,285,1164,GasA,Ex,Y,SBrkr,1320,0,0,1320,1,0,1,0,3,1,TA,6,Typ,2,Fa,Attchd,1966,RFn,2,564,TA,TA,Y,160,68,240,0,0,0,NA,NA,NA,0,5,2006,WD,Abnorml,164500 +579,160,FV,34,3604,Pave,Pave,Reg,Lvl,AllPub,Corner,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,7,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,689,689,GasA,Ex,Y,SBrkr,703,689,0,1392,0,0,2,0,2,1,Gd,5,Typ,0,NA,Detchd,2007,Unf,2,540,TA,TA,Y,0,102,0,0,0,0,NA,NA,NA,0,2,2008,WD,Abnorml,146000 +580,50,RM,81,12150,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,5,5,1954,1954,Gable,CompShg,MetalSd,MetalSd,BrkFace,335,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,1050,1050,GasA,Ex,N,FuseF,1050,745,0,1795,0,0,2,0,4,1,TA,7,Typ,0,NA,Attchd,1954,Unf,1,352,Fa,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2008,WD,Normal,131500 +581,20,RL,NA,14585,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1960,1987,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,85,TA,TA,CBlock,TA,TA,No,BLQ,594,Rec,219,331,1144,GasA,Ex,Y,SBrkr,1429,0,0,1429,0,1,1,0,3,1,Gd,7,Typ,2,Gd,Attchd,1960,Unf,2,572,TA,TA,Y,216,110,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,181900 +582,20,RL,98,12704,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2008,2009,Hip,CompShg,VinylSd,VinylSd,BrkFace,306,Ex,TA,PConc,Ex,TA,No,Unf,0,Unf,0,2042,2042,GasA,Ex,Y,SBrkr,2042,0,0,2042,0,0,2,1,3,1,Ex,8,Typ,1,Gd,Attchd,2009,RFn,3,1390,TA,TA,Y,0,90,0,0,0,0,NA,NA,NA,0,8,2009,New,Partial,253293 +583,90,RL,81,11841,Grvl,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,Duplex,SFoyer,6,5,1990,1990,Gable,CompShg,HdBoard,HdBoard,BrkFace,104,TA,Gd,CBlock,Gd,TA,Av,GLQ,816,Unf,0,0,816,GasA,TA,Y,SBrkr,816,0,0,816,1,0,1,0,3,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,32,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,118500 +584,75,RM,75,13500,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,PosA,1Fam,2.5Unf,10,9,1893,2000,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Ex,Ex,BrkTil,TA,TA,No,Unf,0,Unf,0,1237,1237,GasA,Gd,Y,SBrkr,1521,1254,0,2775,0,0,3,1,3,1,Gd,9,Typ,1,Gd,Detchd,1988,Unf,2,880,Gd,TA,Y,105,502,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,325000 +585,50,RM,51,6120,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,4,7,1935,1995,Gable,CompShg,AsbShng,AsbShng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,884,884,GasA,Ex,Y,SBrkr,989,584,0,1573,0,0,1,0,3,1,Gd,6,Typ,0,NA,Detchd,1935,Unf,1,240,TA,TA,Y,0,0,54,0,120,0,NA,NA,NA,0,7,2009,WD,Normal,133000 +586,20,RL,88,11443,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,8,5,2005,2006,Hip,CompShg,VinylSd,VinylSd,BrkFace,208,Gd,TA,PConc,Ex,TA,Gd,GLQ,1460,Unf,0,408,1868,GasA,Ex,Y,SBrkr,2028,0,0,2028,1,0,2,0,2,1,Gd,7,Typ,2,Gd,Attchd,2005,RFn,3,880,TA,TA,Y,326,66,0,0,0,0,NA,NA,NA,0,3,2006,New,Partial,369900 +587,30,RL,55,10267,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,RRAn,Norm,1Fam,1Story,6,7,1918,2000,Gable,CompShg,Stucco,Wd Shng,None,0,TA,Gd,BrkTil,TA,Gd,Mn,Rec,210,ALQ,606,0,816,GasA,Ex,Y,SBrkr,838,0,0,838,1,0,1,0,2,1,Fa,5,Typ,0,NA,Detchd,1961,Fin,1,275,TA,TA,N,0,0,112,0,0,0,NA,MnWw,NA,0,5,2008,WD,Normal,130000 +588,85,RL,74,8740,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,SFoyer,5,6,1982,1982,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,Av,ALQ,672,Unf,0,168,840,GasA,TA,Y,SBrkr,860,0,0,860,1,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1996,Unf,2,528,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,137000 +589,20,RL,65,25095,Pave,NA,IR1,Low,AllPub,Inside,Sev,ClearCr,Norm,Norm,1Fam,1Story,5,8,1968,2003,Flat,Tar&Grv,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,Gd,GLQ,1324,Unf,0,113,1437,GasA,Ex,Y,SBrkr,1473,0,0,1473,2,0,1,0,1,1,Ex,5,Typ,2,Gd,Attchd,1968,Unf,1,452,TA,TA,Y,0,48,0,0,60,0,NA,NA,NA,0,6,2009,WD,Partial,143000 +590,40,RM,50,9100,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,RRAn,Feedr,1Fam,1Story,5,6,1930,1960,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,742,742,GasA,TA,Y,FuseA,779,0,156,935,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1988,Unf,1,308,TA,TA,P,0,0,0,0,0,0,NA,NA,Shed,600,8,2008,WD,Normal,79500 +591,60,RL,64,8320,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,490,Unf,0,280,770,GasA,Ex,Y,SBrkr,770,812,0,1582,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2004,RFn,2,520,TA,TA,Y,0,45,0,0,0,0,NA,NA,NA,0,9,2008,WD,Normal,185900 +592,60,RL,97,13478,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,1Fam,2Story,10,5,2008,2008,Gable,CompShg,CemntBd,CmentBd,Stone,420,Ex,TA,PConc,Ex,TA,Gd,GLQ,1338,Unf,0,384,1722,GasA,Ex,Y,SBrkr,1728,568,0,2296,1,0,2,1,3,1,Ex,10,Typ,1,Gd,BuiltIn,2008,RFn,3,842,TA,TA,Y,382,274,0,0,0,0,NA,NA,NA,0,6,2009,ConLI,Normal,451950 +593,20,RL,60,6600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,1Story,5,8,1982,2003,Gable,CompShg,HdBoard,HdBoard,None,0,TA,Gd,PConc,TA,Gd,No,GLQ,816,Unf,0,0,816,GasA,Ex,Y,SBrkr,816,0,0,816,1,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1985,Fin,2,816,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,138000 +594,120,RM,NA,4435,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,TwnhsE,1Story,6,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,170,Gd,TA,PConc,Gd,TA,Av,GLQ,685,Unf,0,163,848,GasA,Ex,Y,SBrkr,848,0,0,848,1,0,1,0,1,1,Gd,4,Typ,0,NA,Attchd,2003,Fin,2,420,TA,TA,Y,140,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,140000 +595,20,RL,88,7990,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,6,1975,1975,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,924,924,GasA,TA,Y,SBrkr,924,0,0,924,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1981,Unf,1,280,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,4,2008,WD,Normal,110000 +596,20,RL,69,11302,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,1Fam,1Story,8,5,2005,2006,Gable,CompShg,VinylSd,Other,BrkFace,238,Gd,TA,PConc,Gd,TA,Gd,GLQ,1422,Unf,0,392,1814,GasA,Ex,Y,SBrkr,1826,0,0,1826,1,0,2,0,3,1,Gd,7,Typ,1,TA,Attchd,2005,Fin,3,758,TA,TA,Y,180,75,0,0,120,0,NA,NA,NA,0,8,2006,New,Partial,319000 +597,70,RM,60,3600,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,6,7,1910,1993,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,684,684,GasA,Ex,N,FuseA,684,684,0,1368,0,0,1,0,3,1,TA,7,Typ,0,NA,Detchd,1930,Unf,1,216,TA,Fa,N,0,158,0,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,114504 +598,120,RL,53,3922,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,BrkFace,72,Gd,TA,PConc,Ex,TA,Av,Unf,0,Unf,0,1258,1258,GasA,Ex,Y,SBrkr,1402,0,0,1402,0,2,0,2,2,1,Gd,7,Typ,1,Gd,Attchd,2006,Fin,3,648,TA,TA,Y,120,16,0,0,0,0,NA,NA,NA,0,2,2007,New,Partial,194201 +599,20,RL,80,12984,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1Story,5,6,1977,1977,Gable,CompShg,Plywood,Plywood,BrkFace,459,TA,TA,CBlock,Gd,TA,Mn,ALQ,1283,LwQ,147,0,1430,GasA,Ex,Y,SBrkr,1647,0,0,1647,1,0,2,0,3,1,Gd,7,Typ,1,TA,Attchd,1977,Fin,2,621,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,217500 +600,160,RM,24,1950,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blueste,Norm,Norm,Twnhs,2Story,6,6,1980,1980,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,Gd,TA,No,LwQ,81,GLQ,612,23,716,GasA,TA,Y,SBrkr,716,840,0,1556,1,0,2,1,3,1,TA,6,Typ,1,TA,Attchd,1980,Fin,2,452,TA,TA,Y,161,0,0,0,0,0,NA,GdPrv,NA,0,7,2008,COD,Normal,151000 +601,60,RL,74,10927,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,8,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,280,Gd,TA,PConc,Gd,TA,Av,GLQ,546,Unf,0,512,1058,GasA,Ex,Y,SBrkr,1058,846,0,1904,1,0,2,1,3,1,Ex,8,Typ,1,Gd,BuiltIn,2003,Fin,2,736,TA,TA,Y,179,60,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,275000 +602,50,RM,50,9000,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Fin,6,6,1937,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,PConc,TA,TA,No,Unf,0,Unf,0,780,780,GasA,TA,Y,SBrkr,780,595,0,1375,0,0,1,1,3,1,Gd,6,Typ,1,Gd,Detchd,1979,Unf,1,544,TA,TA,P,0,162,0,0,126,0,NA,NA,NA,0,12,2007,WD,Normal,141000 +603,60,RL,80,10041,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,8,5,1992,1992,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,Mn,GLQ,789,Unf,0,119,908,GasA,Ex,Y,SBrkr,927,988,0,1915,1,0,2,1,3,1,Gd,8,Typ,1,TA,Attchd,1992,Fin,2,506,TA,TA,Y,120,150,0,0,0,0,NA,NA,NA,0,2,2006,WD,Abnorml,220000 +604,160,FV,30,3182,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,7,5,2004,2005,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,600,600,GasA,Ex,Y,SBrkr,600,600,0,1200,0,0,2,1,2,1,Gd,4,Typ,0,NA,Detchd,2004,RFn,2,480,TA,TA,Y,0,172,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,151000 +605,20,RL,88,12803,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,99,Gd,TA,PConc,Gd,TA,Mn,GLQ,922,Unf,0,572,1494,GasA,Ex,Y,SBrkr,1494,0,0,1494,1,0,2,0,3,1,Gd,6,Typ,1,TA,Attchd,2002,RFn,2,530,TA,TA,Y,192,36,0,0,0,0,NA,NA,NA,0,9,2008,WD,Normal,221000 +606,60,RL,85,13600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,2Story,7,6,1965,1990,Gable,CompShg,HdBoard,HdBoard,BrkFace,176,TA,TA,CBlock,TA,TA,No,BLQ,454,Unf,0,314,768,GasA,TA,Y,SBrkr,1186,800,0,1986,0,0,2,1,3,1,TA,7,Typ,3,Fa,Attchd,1965,Unf,2,486,TA,TA,Y,0,42,0,0,189,0,NA,NA,NA,0,10,2009,WD,Normal,205000 +607,20,RL,82,12464,Pave,NA,IR2,Low,AllPub,Corner,Mod,CollgCr,Norm,Norm,1Fam,1Story,5,5,1996,1996,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,PConc,Gd,TA,No,GLQ,732,Unf,0,308,1040,GasA,Gd,Y,SBrkr,1040,0,0,1040,1,0,1,0,3,1,Gd,6,Typ,0,NA,Detchd,2000,Unf,2,576,TA,TA,Y,168,0,0,0,0,0,NA,GdPrv,NA,0,11,2009,WD,Normal,152000 +608,20,RL,78,7800,Pave,NA,Reg,Bnk,AllPub,Inside,Mod,Edwards,Norm,Norm,1Fam,2Story,5,8,1948,2002,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,Gd,No,GLQ,603,Unf,0,293,896,GasA,Ex,Y,SBrkr,1112,896,0,2008,1,0,3,0,3,1,Ex,8,Typ,0,NA,Attchd,1948,Unf,1,230,TA,TA,Y,103,0,0,0,0,0,NA,NA,NA,0,8,2006,WD,Normal,225000 +609,70,RL,78,12168,Pave,NA,Reg,HLS,AllPub,Inside,Mod,Crawfor,Norm,Norm,1Fam,2Story,8,6,1934,1998,Gable,CompShg,BrkFace,Wd Sdng,None,0,TA,TA,PConc,Gd,TA,Mn,BLQ,428,Unf,0,537,965,GasA,TA,Y,SBrkr,1940,1254,0,3194,0,0,2,1,4,1,TA,10,Typ,2,Gd,Basment,1934,Unf,2,380,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,9,2007,WD,Alloca,359100 +610,20,RL,61,7943,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,4,5,1961,1961,Gable,CompShg,VinylSd,VinylSd,BrkCmn,192,TA,Fa,CBlock,TA,TA,Mn,Rec,903,Unf,0,126,1029,GasA,Gd,Y,SBrkr,1029,0,0,1029,1,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1961,Unf,1,261,TA,TA,Y,64,0,39,0,0,0,NA,NA,NA,0,4,2007,WD,Normal,118500 +611,60,RL,NA,11050,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,PosN,Norm,1Fam,2Story,9,5,2000,2000,Hip,CompShg,VinylSd,VinylSd,BrkFace,204,Gd,TA,PConc,Ex,TA,Mn,GLQ,904,Unf,0,536,1440,GasA,Ex,Y,SBrkr,1476,677,0,2153,1,0,2,1,3,1,Ex,8,Typ,2,Ex,Attchd,2000,Fin,3,736,TA,TA,Y,253,142,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,313000 +612,80,RL,NA,10395,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,NWAmes,Norm,Norm,1Fam,SLvl,6,6,1978,1978,Gable,CompShg,HdBoard,HdBoard,BrkFace,233,TA,TA,CBlock,Gd,TA,Av,ALQ,605,Unf,0,427,1032,GasA,TA,Y,SBrkr,1032,0,0,1032,0,1,2,0,3,1,TA,6,Typ,1,TA,Attchd,1978,Unf,2,564,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,Shed,500,7,2007,WD,Normal,148000 +613,60,RL,NA,11885,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,2001,2001,Gable,CompShg,VinylSd,VinylSd,BrkFace,108,Gd,TA,PConc,Gd,TA,Av,GLQ,990,Unf,0,309,1299,GasA,Ex,Y,SBrkr,1299,573,0,1872,1,0,2,1,3,1,Ex,7,Typ,1,TA,BuiltIn,2001,RFn,2,531,TA,TA,Y,160,122,0,0,0,0,NA,NA,NA,0,11,2009,WD,Normal,261500 +614,20,RL,70,8402,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Feedr,Norm,1Fam,1Story,5,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,ALQ,206,Unf,0,914,1120,GasA,Ex,Y,SBrkr,1120,0,0,1120,0,0,1,0,3,1,TA,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,30,0,0,0,0,NA,NA,NA,0,12,2007,New,Partial,147000 +615,180,RM,21,1491,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,TwnhsE,SFoyer,4,6,1972,1972,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,Gd,TA,Av,LwQ,150,GLQ,480,0,630,GasA,Ex,Y,SBrkr,630,0,0,630,1,0,1,0,1,1,TA,3,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,96,24,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,75500 +616,85,RL,80,8800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Feedr,Norm,1Fam,SFoyer,6,7,1963,1963,Gable,CompShg,MetalSd,MetalSd,BrkFace,156,TA,Gd,PConc,TA,TA,Gd,GLQ,763,Unf,0,173,936,GasA,Ex,Y,SBrkr,1054,0,0,1054,1,0,1,0,3,1,Gd,6,Typ,0,NA,Attchd,1963,RFn,2,480,TA,TA,Y,120,0,0,0,0,0,NA,MnPrv,NA,0,5,2010,WD,Abnorml,137500 +617,60,RL,NA,7861,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2002,2003,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,457,Unf,0,326,783,GasA,Ex,Y,SBrkr,807,702,0,1509,1,0,2,1,3,1,Gd,7,Typ,1,Gd,Attchd,2002,Fin,2,393,TA,TA,Y,100,75,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,183200 +618,45,RL,59,7227,Pave,NA,Reg,HLS,AllPub,Corner,Mod,NAmes,Artery,Norm,1Fam,1.5Unf,6,6,1954,1954,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,832,832,GasA,Gd,Y,SBrkr,832,0,0,832,0,0,1,0,2,1,Gd,4,Typ,0,NA,Detchd,1962,Unf,2,528,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,105500 +619,20,RL,90,11694,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,9,5,2007,2007,Hip,CompShg,CemntBd,CmentBd,BrkFace,452,Ex,TA,PConc,Ex,TA,Av,GLQ,48,Unf,0,1774,1822,GasA,Ex,Y,SBrkr,1828,0,0,1828,0,0,2,0,3,1,Gd,9,Typ,1,Gd,Attchd,2007,Unf,3,774,TA,TA,Y,0,108,0,0,260,0,NA,NA,NA,0,7,2007,New,Partial,314813 +620,60,RL,85,12244,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,2Story,8,5,2003,2003,Hip,CompShg,VinylSd,VinylSd,Stone,226,Gd,TA,PConc,Gd,TA,Gd,GLQ,871,Unf,0,611,1482,GasA,Ex,Y,SBrkr,1482,780,0,2262,1,0,2,1,4,1,Gd,10,Typ,2,Gd,Attchd,2003,Fin,3,749,TA,TA,Y,168,0,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,305000 +621,30,RL,45,8248,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,3,3,1914,1950,Gable,CompShg,Stucco,Stucco,None,0,TA,TA,BrkTil,TA,TA,No,BLQ,41,Unf,0,823,864,GasA,TA,N,FuseF,864,0,0,864,1,0,1,0,2,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,100,0,0,0,NA,NA,NA,0,9,2008,WD,Normal,67000 +622,60,RL,90,10800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,2Story,6,7,1974,1997,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,ALQ,956,Rec,182,384,1522,GasA,TA,Y,SBrkr,1548,1066,0,2614,0,0,2,1,4,1,TA,9,Typ,1,TA,Attchd,1974,RFn,2,624,TA,TA,Y,38,243,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,240000 +623,20,RL,71,7064,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,6,1977,1977,Gable,CompShg,Plywood,Plywood,BrkFace,153,TA,TA,CBlock,TA,TA,No,BLQ,560,Unf,0,420,980,GasA,TA,Y,SBrkr,980,0,0,980,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1986,Unf,2,484,TA,TA,Y,192,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,135000 +624,160,FV,NA,2117,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,6,5,2000,2000,Gable,CompShg,MetalSd,MetalSd,BrkFace,513,Gd,TA,PConc,Gd,TA,No,GLQ,420,Unf,0,336,756,GasA,Ex,Y,SBrkr,756,756,0,1512,0,0,2,1,2,1,Gd,4,Typ,1,TA,Detchd,2000,Unf,2,440,TA,TA,Y,0,32,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,168500 +625,60,RL,80,10400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,2Story,6,5,1972,1972,Gable,CompShg,VinylSd,VinylSd,None,288,TA,TA,CBlock,TA,TA,No,Rec,247,Unf,0,485,732,GasA,Gd,Y,SBrkr,1012,778,0,1790,1,0,1,2,4,1,TA,8,Min2,1,TA,Attchd,1972,RFn,2,484,TA,TA,Y,148,0,0,0,147,0,NA,NA,NA,0,11,2006,WD,Normal,165150 +626,20,RL,87,10000,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1962,1962,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,261,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1116,1116,GasA,TA,Y,SBrkr,1116,0,0,1116,0,0,1,1,3,1,TA,5,Typ,0,NA,Attchd,1962,Unf,2,440,TA,TA,Y,0,0,0,0,385,0,NA,NA,NA,0,2,2010,WD,Normal,160000 +627,20,RL,NA,12342,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1960,1978,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,978,978,GasA,TA,Y,SBrkr,1422,0,0,1422,0,0,1,0,3,1,TA,6,Min1,1,TA,Attchd,1960,RFn,1,286,TA,TA,Y,0,0,36,0,0,0,NA,GdWo,Shed,600,8,2007,WD,Normal,139900 +628,80,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,6,6,1955,1972,Gable,CompShg,AsbShng,AsbShng,BrkFace,164,TA,TA,CBlock,TA,TA,Av,BLQ,674,LwQ,132,350,1156,GasA,Ex,Y,SBrkr,1520,0,0,1520,1,0,1,0,3,1,TA,7,Typ,2,Gd,Basment,1955,RFn,1,364,TA,TA,Y,0,0,189,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,153000 +629,60,RL,70,11606,Pave,NA,IR1,HLS,AllPub,Inside,Sev,NAmes,Norm,Norm,1Fam,2Story,5,5,1969,1969,Gable,CompShg,Plywood,Plywood,BrkFace,192,TA,TA,PConc,Gd,TA,Av,Rec,650,Unf,0,390,1040,GasA,TA,Y,SBrkr,1040,1040,0,2080,0,1,1,2,5,1,Fa,9,Typ,2,TA,Attchd,1969,Unf,2,504,TA,TA,Y,335,0,0,0,0,0,NA,NA,NA,0,9,2007,WD,Family,135000 +630,80,RL,82,9020,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Feedr,Norm,1Fam,SLvl,6,5,1964,1964,Gable,WdShngl,Plywood,Wd Sdng,BrkFace,259,TA,TA,CBlock,TA,TA,Gd,GLQ,624,Rec,336,288,1248,GasA,TA,Y,SBrkr,1350,0,0,1350,1,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1964,RFn,2,520,TA,TA,Y,176,0,0,0,0,0,NA,GdPrv,NA,0,6,2008,WD,Normal,168500 +631,70,RM,50,9000,Pave,Grvl,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Artery,Norm,1Fam,2Story,5,6,1880,1991,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,BrkTil,Fa,Fa,No,Unf,0,Unf,0,636,636,GasA,TA,Y,FuseA,1089,661,0,1750,0,0,1,0,3,1,Ex,8,Typ,0,NA,Detchd,1937,Unf,1,240,Fa,Po,N,0,0,293,0,0,0,NA,MnPrv,NA,0,6,2006,WD,Abnorml,124000 +632,120,RL,34,4590,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,Twnhs,1Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,108,Gd,TA,PConc,Gd,Gd,Mn,GLQ,24,Unf,0,1530,1554,GasA,Ex,Y,SBrkr,1554,0,0,1554,0,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2006,RFn,2,627,TA,TA,Y,156,73,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,209500 +633,20,RL,85,11900,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,7,5,1977,1977,Hip,CompShg,Plywood,Plywood,BrkFace,209,TA,Gd,CBlock,TA,TA,No,ALQ,822,Unf,0,564,1386,GasA,TA,Y,SBrkr,1411,0,0,1411,0,0,2,0,3,1,TA,6,Typ,1,TA,Attchd,1977,Fin,2,544,TA,TA,Y,192,0,0,0,0,0,NA,NA,NA,0,4,2009,WD,Family,82500 +634,20,RL,80,9250,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1954,2005,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,BLQ,480,LwQ,468,108,1056,GasA,TA,Y,SBrkr,1056,0,0,1056,0,1,1,0,3,1,TA,6,Typ,0,NA,Attchd,1954,Unf,1,260,TA,TA,Y,390,0,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,139400 +635,90,RL,64,6979,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,Duplex,SFoyer,6,5,1980,1980,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,GLQ,1056,Unf,0,0,1056,GasA,Gd,Y,SBrkr,1056,0,0,1056,2,0,0,0,0,2,TA,4,Typ,0,NA,Detchd,1980,Unf,2,576,TA,TA,Y,264,56,0,0,0,0,NA,GdPrv,Shed,600,6,2010,WD,Normal,144000 +636,190,RH,60,10896,Pave,Pave,Reg,Bnk,AllPub,Inside,Gtl,SWISU,Feedr,Norm,2fmCon,2.5Fin,6,7,1914,1995,Hip,CompShg,VinylSd,VinylSd,None,0,Fa,TA,CBlock,TA,Fa,No,LwQ,256,Unf,0,1184,1440,GasA,Ex,Y,FuseA,1440,1440,515,3395,0,0,2,0,8,2,Fa,14,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,110,0,0,0,0,NA,NA,NA,0,3,2007,WD,Abnorml,200000 +637,30,RM,51,6120,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1Story,2,3,1936,1950,Gable,CompShg,AsbShng,AsbShng,None,0,Fa,Fa,BrkTil,TA,Fa,No,Unf,0,Unf,0,264,264,Grav,Fa,N,FuseA,800,0,0,800,0,0,1,0,1,1,Fa,4,Maj1,1,Po,NA,NA,NA,0,0,NA,NA,N,0,0,0,0,0,0,NA,NA,NA,0,1,2009,ConLw,Normal,60000 +638,190,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,2fmCon,1.5Fin,5,4,1954,1954,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,811,811,GasA,TA,Y,FuseA,811,576,0,1387,0,0,2,0,3,2,Gd,7,Typ,0,NA,BuiltIn,1954,Unf,1,256,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2009,WD,Normal,93000 +639,30,RL,67,8777,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Feedr,Norm,1Fam,1Story,5,7,1910,1950,Gable,CompShg,MetalSd,Wd Sdng,None,0,TA,TA,CBlock,Fa,TA,No,Unf,0,Unf,0,796,796,GasA,Gd,Y,FuseA,796,0,0,796,0,0,1,0,2,1,TA,4,Typ,0,NA,NA,NA,NA,0,0,NA,NA,P,328,0,164,0,0,0,NA,MnPrv,NA,0,5,2008,WD,Normal,85000 +640,120,RL,53,3982,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,8,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,Gd,Av,GLQ,1154,Unf,0,366,1520,GasA,Ex,Y,SBrkr,1567,0,0,1567,1,0,2,0,1,1,Ex,7,Typ,1,Gd,Attchd,2006,Fin,3,648,TA,TA,Y,312,0,0,0,0,0,NA,NA,NA,0,10,2006,New,Partial,264561 +641,120,RL,62,12677,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,8,5,2003,2004,Hip,CompShg,MetalSd,MetalSd,BrkFace,472,Ex,TA,PConc,Ex,TA,Gd,GLQ,1218,Unf,0,300,1518,GasA,Ex,Y,SBrkr,1518,0,0,1518,0,0,1,1,1,1,Ex,6,Typ,1,Gd,Attchd,2003,RFn,2,588,TA,TA,Y,185,140,0,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,274000 +642,60,FV,NA,7050,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2001,2001,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,738,Unf,0,319,1057,GasA,Ex,Y,SBrkr,1057,872,0,1929,1,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,2001,Fin,2,650,TA,TA,Y,0,235,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,226000 +643,80,RL,75,13860,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,8,7,1972,1995,Gable,CompShg,Plywood,Wd Sdng,None,0,Gd,TA,CBlock,Gd,TA,Gd,GLQ,1410,Unf,0,542,1952,GasA,Gd,Y,SBrkr,2000,704,0,2704,1,0,2,1,4,1,Ex,9,Typ,3,TA,Attchd,1972,Fin,2,538,TA,TA,Y,269,111,0,0,0,0,NA,MnPrv,NA,0,7,2009,WD,Normal,345000 +644,60,RL,80,10793,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,RRAn,Norm,1Fam,2Story,5,5,1969,1969,Mansard,CompShg,WdShing,HdBoard,BrkFace,263,TA,TA,CBlock,TA,TA,No,Rec,493,BLQ,287,0,780,GasA,Ex,Y,SBrkr,780,840,0,1620,0,0,2,1,4,1,TA,7,Min1,0,NA,Attchd,1969,Fin,2,462,TA,TA,Y,208,0,0,0,0,0,NA,GdWo,NA,0,4,2007,WD,Normal,152000 +645,20,FV,85,9187,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,9,5,2009,2009,Gable,CompShg,CemntBd,CmentBd,Stone,162,Ex,TA,PConc,Ex,TA,Mn,GLQ,1121,Unf,0,645,1766,GasA,Ex,Y,SBrkr,1766,0,0,1766,1,0,2,1,2,1,Ex,7,Typ,1,Gd,Attchd,2009,Fin,3,478,TA,TA,Y,195,130,0,0,0,0,NA,NA,NA,0,10,2009,New,Partial,370878 +646,20,RL,NA,10530,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1971,1971,Hip,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,282,LwQ,35,664,981,GasA,TA,Y,SBrkr,981,0,0,981,1,0,1,1,3,1,TA,5,Typ,0,NA,Detchd,1979,Unf,2,576,TA,TA,Y,0,312,40,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,143250 +647,20,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1950,1950,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,NA,NA,NA,NA,0,NA,0,0,0,GasA,Gd,Y,SBrkr,1048,0,0,1048,0,0,1,0,3,1,TA,7,Min1,0,NA,Detchd,1950,Unf,2,420,TA,TA,Y,0,27,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,98300 +648,20,RL,85,10452,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,6,5,1953,1953,Hip,CompShg,Wd Sdng,Wd Sdng,Stone,216,TA,TA,CBlock,TA,TA,Mn,Rec,500,Unf,0,594,1094,GasA,Ex,Y,SBrkr,1094,0,0,1094,0,0,1,0,3,1,TA,5,Typ,2,Gd,Attchd,1953,RFn,2,495,TA,TA,Y,0,0,0,0,287,0,NA,NA,NA,0,6,2008,WD,Normal,155000 +649,60,RL,70,7700,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,PosN,Norm,1Fam,2Story,6,5,1966,1966,Gable,CompShg,MetalSd,MetalSd,BrkFace,351,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,756,756,GasA,TA,Y,SBrkr,1051,788,0,1839,0,0,1,1,4,1,TA,7,Typ,1,TA,Attchd,1966,Unf,2,442,TA,TA,Y,0,124,216,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,155000 +650,180,RM,21,1936,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,Twnhs,SFoyer,4,6,1970,1970,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,Gd,TA,Av,BLQ,131,GLQ,499,0,630,GasA,Gd,Y,SBrkr,630,0,0,630,1,0,1,0,1,1,TA,3,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,12,2007,WD,Normal,84500 +651,60,FV,65,8125,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,6,2007,2007,Gable,CompShg,CemntBd,CmentBd,NA,NA,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,813,813,GasA,Ex,Y,SBrkr,822,843,0,1665,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2007,RFn,2,562,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,205950 +652,70,RL,60,9084,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Artery,Norm,1Fam,2Story,4,5,1940,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,Mn,Unf,0,Unf,0,755,755,GasA,TA,Y,SBrkr,755,755,0,1510,1,0,1,0,4,1,TA,7,Typ,1,Gd,Detchd,1940,Unf,1,296,Fa,Po,P,120,0,0,0,0,0,NA,MnPrv,NA,0,10,2009,WD,Normal,108000 +653,60,RL,70,8750,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,1996,1996,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,880,880,GasA,Ex,Y,SBrkr,909,807,0,1716,0,0,2,1,2,1,Gd,7,Typ,1,TA,Attchd,1996,RFn,2,512,TA,TA,Y,0,120,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,191000 +654,50,RM,60,10320,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Fin,6,7,1906,1995,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,756,756,GasA,Ex,Y,SBrkr,756,713,0,1469,0,0,1,0,3,1,TA,7,Typ,0,NA,Detchd,1906,Unf,1,216,TA,TA,Y,57,0,239,0,0,0,NA,MnPrv,NA,0,6,2008,WD,Normal,135000 +655,20,RL,91,10437,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,1Story,8,6,1995,1995,Hip,CompShg,MetalSd,MetalSd,BrkFace,660,Gd,Gd,PConc,Gd,TA,Gd,GLQ,1696,Unf,0,413,2109,GasA,Ex,Y,SBrkr,2113,0,0,2113,1,0,2,1,2,1,Gd,7,Typ,1,TA,Attchd,1995,Fin,3,839,TA,TA,Y,236,46,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,350000 +656,160,RM,21,1680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,6,5,1971,1971,Gable,CompShg,HdBoard,ImStucc,BrkFace,381,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,525,525,GasA,TA,Y,SBrkr,525,567,0,1092,0,0,1,1,3,1,TA,6,Typ,0,NA,Detchd,1971,Unf,1,264,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2010,WD,Family,88000 +657,20,RL,72,10007,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1959,2006,Gable,CompShg,HdBoard,HdBoard,BrkFace,54,Gd,TA,CBlock,TA,TA,No,ALQ,806,Unf,0,247,1053,GasA,Ex,Y,SBrkr,1053,0,0,1053,1,0,1,1,3,1,Gd,5,Typ,0,NA,Attchd,1959,RFn,1,312,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,8,2008,WD,Normal,145500 +658,70,RL,60,7200,Pave,NA,Reg,HLS,AllPub,Inside,Mod,Crawfor,Norm,Norm,1Fam,2Story,7,6,1931,2000,Gable,CompShg,Stucco,Wd Shng,None,0,TA,Fa,BrkTil,Gd,TA,No,Unf,0,Unf,0,776,776,GasA,TA,Y,SBrkr,851,651,0,1502,0,0,1,1,3,1,TA,6,Typ,1,Gd,Attchd,1931,RFn,1,270,TA,TA,P,0,0,112,0,0,0,NA,MnPrv,NA,0,2,2008,WD,Normal,149000 +659,50,RL,78,17503,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Artery,Norm,1Fam,1.5Fin,6,5,1948,1950,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,912,912,GasA,TA,Y,SBrkr,912,546,0,1458,0,1,1,0,3,1,TA,6,Typ,1,Gd,Attchd,1948,Unf,1,330,TA,TA,Y,192,0,0,0,0,0,NA,NA,NA,0,1,2010,WD,Abnorml,97500 +660,20,RL,75,9937,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,7,1964,1999,Hip,CompShg,MetalSd,MetalSd,None,0,TA,Gd,PConc,TA,TA,No,BLQ,637,Unf,0,849,1486,GasA,Ex,Y,SBrkr,1486,0,0,1486,1,0,1,0,3,1,TA,7,Typ,0,NA,Detchd,1968,Fin,2,480,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,3,2009,WD,Normal,167000 +661,60,RL,NA,12384,Pave,NA,Reg,Lvl,AllPub,CulDSac,Gtl,NWAmes,Norm,Norm,1Fam,2Story,7,7,1976,1976,Gable,CompShg,Plywood,Plywood,BrkFace,233,TA,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,793,793,GasA,TA,Y,SBrkr,1142,793,0,1935,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1976,RFn,2,550,TA,TA,Y,0,113,252,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,197900 +662,60,RL,52,46589,Pave,NA,IR2,Lvl,AllPub,CulDSac,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,7,1994,2005,Hip,CompShg,VinylSd,VinylSd,BrkFace,528,Gd,TA,PConc,Gd,Gd,No,GLQ,1361,Rec,180,88,1629,GasA,Ex,Y,SBrkr,1686,762,0,2448,1,0,2,1,4,1,Gd,8,Typ,1,TA,Attchd,1994,RFn,3,711,TA,TA,Y,517,76,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,402000 +663,20,RL,120,13560,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,3,1968,1968,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,216,TA,TA,CBlock,Fa,Fa,No,Unf,0,Unf,0,1392,1392,GasA,Gd,Y,SBrkr,1392,0,0,1392,1,0,1,0,2,1,TA,5,Maj2,2,TA,Attchd,1968,RFn,2,576,TA,TA,Y,0,0,240,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,110000 +664,85,RL,90,10012,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,SFoyer,4,5,1972,1972,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,Av,BLQ,920,Rec,180,38,1138,GasA,TA,Y,SBrkr,1181,0,0,1181,1,0,2,0,3,1,TA,6,Typ,0,NA,Detchd,1974,RFn,2,588,TA,TA,Y,0,0,180,0,0,0,NA,MnPrv,NA,0,4,2008,WD,Normal,137500 +665,20,RL,49,20896,Pave,NA,IR2,Lvl,AllPub,CulDSac,Gtl,Somerst,RRAn,Norm,1Fam,1Story,8,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,TA,Mn,GLQ,1721,Unf,0,356,2077,GasA,Ex,Y,SBrkr,2097,0,0,2097,1,0,1,1,1,1,Ex,8,Typ,1,Ex,Attchd,2005,Fin,3,1134,TA,TA,Y,192,267,0,0,0,0,NA,NA,NA,0,1,2006,New,Partial,423000 +666,60,RL,106,11194,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,8,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,BrkFace,40,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1406,1406,GasA,Ex,Y,SBrkr,1454,482,0,1936,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,2000,RFn,2,504,TA,TA,Y,188,124,0,0,0,0,NA,NA,NA,0,11,2006,WD,Normal,230500 +667,60,RL,NA,18450,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,2Story,6,5,1965,1979,Flat,Tar&Grv,Plywood,Plywood,BrkCmn,113,TA,Gd,CBlock,Gd,TA,No,LwQ,187,Rec,723,111,1021,GasA,TA,Y,SBrkr,1465,915,0,2380,0,0,2,1,3,1,TA,7,Sev,1,Po,CarPort,1965,Unf,2,596,TA,TA,Y,0,265,0,0,0,0,NA,NA,NA,0,8,2007,WD,Abnorml,129000 +668,20,RL,65,8125,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,1Story,6,5,1994,1998,Gable,CompShg,HdBoard,HdBoard,BrkFace,258,TA,TA,PConc,Gd,TA,No,GLQ,1138,Unf,0,270,1408,GasA,Ex,Y,SBrkr,1679,0,0,1679,1,0,2,0,3,1,Gd,7,Typ,1,Fa,Attchd,1994,RFn,2,575,TA,TA,Y,224,42,0,0,0,0,NA,NA,NA,0,10,2008,WD,Normal,193500 +669,20,RL,NA,14175,Pave,NA,Reg,Bnk,AllPub,Corner,Mod,Sawyer,Norm,Norm,1Fam,1Story,5,6,1956,1987,Gable,CompShg,CemntBd,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,988,Unf,0,200,1188,GasA,Gd,Y,SBrkr,1437,0,0,1437,1,0,1,1,3,1,TA,6,Min2,1,TA,Detchd,1999,Unf,2,576,TA,TA,Y,304,0,0,0,0,0,NA,NA,NA,0,11,2006,WD,Normal,168000 +670,30,RL,80,11600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1Story,4,5,1922,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,Fa,TA,No,Unf,0,Unf,0,700,700,GasA,Ex,Y,SBrkr,1180,0,0,1180,0,0,1,0,2,1,Fa,5,Typ,1,Gd,Detchd,1922,Unf,1,252,TA,Fa,Y,0,0,67,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,137500 +671,60,RL,64,8633,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,CollgCr,Norm,Norm,1Fam,2Story,6,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,193,Unf,0,545,738,GasA,Ex,Y,SBrkr,738,738,0,1476,1,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2005,Fin,2,540,TA,TA,Y,100,35,0,0,0,0,NA,NA,NA,0,2,2009,WD,Normal,173500 +672,70,RH,54,6629,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Artery,Norm,1Fam,2Story,6,6,1925,1950,Gambrel,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,BrkTil,TA,TA,No,BLQ,551,Unf,0,121,672,GasA,TA,N,SBrkr,697,672,0,1369,1,0,2,0,3,1,TA,6,Typ,0,NA,Detchd,1930,Unf,1,300,TA,TA,Y,147,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,103600 +673,20,RL,NA,11250,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Veenker,Norm,Norm,1Fam,1Story,6,6,1977,1977,Gable,CompShg,Plywood,Plywood,None,0,Gd,TA,CBlock,Gd,TA,No,ALQ,767,Unf,0,441,1208,GasA,TA,Y,SBrkr,1208,0,0,1208,1,0,1,1,3,1,TA,6,Typ,1,TA,Attchd,1977,RFn,2,546,TA,TA,Y,198,42,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,165000 +674,20,RL,110,14442,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1Story,6,7,1957,2004,Hip,CompShg,CemntBd,CmentBd,BrkFace,106,TA,TA,PConc,TA,TA,No,GLQ,1186,Unf,0,291,1477,GasA,Ex,Y,SBrkr,1839,0,0,1839,1,0,2,0,3,1,Gd,7,Typ,2,TA,Attchd,1957,Fin,2,416,TA,TA,Y,0,87,0,0,200,0,NA,NA,NA,0,6,2007,WD,Normal,257500 +675,20,RL,80,9200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1965,1965,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,Rec,892,Unf,0,244,1136,GasA,TA,Y,SBrkr,1136,0,0,1136,1,0,1,0,3,1,TA,5,Typ,1,Gd,Attchd,1965,RFn,1,384,TA,TA,Y,426,0,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,140000 +676,160,RL,24,2289,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NPkVill,Norm,Norm,Twnhs,2Story,6,6,1978,1978,Gable,CompShg,Plywood,Brk Cmn,None,0,TA,TA,CBlock,TA,TA,No,ALQ,311,Unf,0,544,855,GasA,TA,Y,SBrkr,855,586,0,1441,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1978,Unf,2,440,TA,TA,Y,28,0,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,148500 +677,70,RM,60,9600,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,4,2,1900,1950,Gable,CompShg,AsbShng,Stucco,None,0,TA,TA,BrkTil,TA,Fa,No,Unf,0,Unf,0,1095,1095,GasW,Fa,N,SBrkr,1095,679,0,1774,1,0,2,0,4,2,TA,8,Min2,0,NA,2Types,1920,Unf,3,779,Fa,Fa,N,0,0,90,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,87000 +678,30,RL,52,9022,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,8,1924,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,768,768,GasA,Ex,Y,SBrkr,792,0,0,792,0,0,1,0,2,1,Gd,5,Typ,0,NA,Detchd,1924,Unf,1,240,Fa,Fa,N,316,0,120,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,109500 +679,20,RL,80,11844,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,1Fam,1Story,8,5,2008,2008,Hip,CompShg,VinylSd,VinylSd,Stone,464,Gd,TA,PConc,Ex,TA,Mn,Unf,0,Unf,0,2046,2046,GasA,Ex,Y,SBrkr,2046,0,0,2046,0,0,2,1,3,1,Gd,7,Typ,1,Gd,Attchd,2008,Fin,3,834,TA,TA,Y,322,82,0,0,0,0,NA,NA,NA,0,7,2009,New,Partial,372500 +680,20,RL,NA,9945,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1961,1961,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,57,TA,TA,CBlock,TA,TA,No,Rec,827,Unf,0,161,988,GasA,TA,Y,SBrkr,988,0,0,988,1,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1963,Unf,2,572,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,10,2007,WD,Normal,128500 +681,120,RL,50,8012,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,TwnhsE,1Story,6,5,1980,1980,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,No,BLQ,543,BLQ,119,261,923,GasA,TA,Y,SBrkr,923,0,0,923,0,0,2,0,2,1,TA,5,Typ,1,TA,Attchd,1980,RFn,1,264,TA,TA,Y,80,0,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,143000 +682,50,RH,55,4500,Pave,Pave,IR2,Bnk,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1.5Fin,5,5,1932,2000,Gable,CompShg,VinylSd,Stucco,None,0,TA,TA,BrkTil,TA,TA,No,Rec,182,Unf,0,611,793,GasA,Ex,Y,SBrkr,848,672,0,1520,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1968,Unf,1,281,TA,TA,Y,0,0,56,0,0,0,NA,NA,NA,0,7,2009,WD,Abnorml,159434 +683,120,RL,NA,2887,Pave,NA,Reg,HLS,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,1Story,6,5,1996,1997,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,Gd,TA,Mn,GLQ,1003,Unf,0,288,1291,GasA,Ex,Y,SBrkr,1291,0,0,1291,1,0,1,0,2,1,Gd,6,Typ,1,Gd,Attchd,1996,Unf,2,431,TA,TA,Y,307,0,0,0,0,0,NA,NA,NA,0,11,2008,WD,Normal,173000 +684,20,RL,90,11248,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,9,5,2002,2002,Hip,CompShg,VinylSd,VinylSd,Stone,215,Gd,TA,PConc,Gd,TA,Av,GLQ,1059,Unf,0,567,1626,GasA,Ex,Y,SBrkr,1668,0,0,1668,1,0,2,0,3,1,Gd,7,Typ,1,TA,Attchd,2002,Fin,3,702,TA,TA,Y,257,45,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,285000 +685,60,RL,58,16770,Pave,NA,IR2,Lvl,AllPub,CulDSac,Gtl,NoRidge,Norm,Norm,1Fam,2Story,7,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,30,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1195,1195,GasA,Gd,Y,SBrkr,1195,644,0,1839,0,0,2,1,4,1,TA,7,Typ,0,NA,Attchd,1998,Fin,2,486,TA,TA,Y,0,81,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,221000 +686,160,RL,NA,5062,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,StoneBr,Norm,Norm,TwnhsE,2Story,7,5,1984,1984,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,CBlock,Gd,TA,Mn,GLQ,828,LwQ,182,180,1190,GasA,Gd,Y,SBrkr,1190,900,0,2090,1,0,2,0,3,1,Gd,6,Min1,1,TA,Attchd,1984,Fin,2,577,TA,TA,Y,219,0,0,0,0,0,NA,NA,NA,0,9,2007,WD,Normal,207500 +687,60,FV,84,10207,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,6,2007,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,874,874,GasA,Ex,Y,SBrkr,874,887,0,1761,0,0,3,0,3,1,Gd,7,Typ,0,NA,Attchd,2007,Fin,2,578,TA,TA,Y,144,105,0,0,0,0,NA,NA,NA,0,8,2007,New,Partial,227875 +688,160,FV,NA,5105,Pave,NA,IR2,Lvl,AllPub,FR2,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,7,5,2004,2004,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,239,Unf,0,312,551,GasA,Ex,Y,SBrkr,551,551,0,1102,0,0,2,1,2,1,Gd,4,Typ,0,NA,Detchd,2004,Unf,2,480,TA,TA,Y,0,60,0,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,148800 +689,20,RL,60,8089,Pave,NA,Reg,HLS,AllPub,Inside,Gtl,StoneBr,Norm,Norm,1Fam,1Story,8,6,2007,2007,Gable,CompShg,MetalSd,MetalSd,BrkFace,0,Gd,TA,PConc,Gd,TA,Av,GLQ,945,Unf,0,474,1419,GasA,Ex,Y,SBrkr,1419,0,0,1419,1,0,2,0,2,1,Gd,7,Typ,1,Gd,Attchd,2007,RFn,2,567,TA,TA,Y,140,0,0,0,0,0,NA,NA,NA,0,10,2007,New,Partial,392000 +690,120,RL,61,7577,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,6,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,Stone,256,Gd,TA,PConc,Gd,TA,Av,ALQ,20,Unf,0,1342,1362,GasA,Ex,Y,SBrkr,1362,0,0,1362,0,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2005,RFn,2,460,TA,TA,Y,192,28,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,194700 +691,120,RM,NA,4426,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,TwnhsE,1Story,6,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,147,Gd,TA,PConc,Gd,TA,Gd,GLQ,697,Unf,0,151,848,GasA,Ex,Y,SBrkr,848,0,0,848,1,0,1,0,1,1,Gd,3,Typ,1,TA,Attchd,2004,RFn,2,420,TA,TA,Y,149,0,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,141000 +692,60,RL,104,21535,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NoRidge,Norm,Norm,1Fam,2Story,10,6,1994,1995,Gable,WdShngl,HdBoard,HdBoard,BrkFace,1170,Ex,TA,PConc,Ex,TA,Gd,GLQ,1455,Unf,0,989,2444,GasA,Ex,Y,SBrkr,2444,1872,0,4316,0,1,3,1,4,1,Ex,10,Typ,2,Ex,Attchd,1994,Fin,3,832,TA,TA,Y,382,50,0,0,0,0,NA,NA,NA,0,1,2007,WD,Normal,755000 +693,60,RL,42,26178,Pave,NA,IR1,Lvl,AllPub,Inside,Mod,Timber,Norm,Norm,1Fam,2Story,7,5,1989,1990,Hip,CompShg,MetalSd,MetalSd,BrkFace,293,Gd,TA,PConc,Gd,TA,Gd,GLQ,965,Unf,0,245,1210,GasA,Ex,Y,SBrkr,1238,1281,0,2519,1,0,2,1,4,1,Gd,9,Typ,2,Gd,Attchd,1989,RFn,2,628,TA,TA,Y,320,27,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,335000 +694,30,RL,60,5400,Pave,NA,Reg,Lvl,AllPub,Corner,Sev,OldTown,Norm,Norm,1Fam,1Story,5,6,1921,1968,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,1073,1073,GasA,Ex,Y,SBrkr,1073,0,0,1073,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1968,Unf,1,326,TA,TA,Y,0,0,112,0,0,0,NA,NA,NA,0,12,2006,WD,Abnorml,108480 +695,50,RM,51,6120,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,5,6,1936,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Fa,BrkTil,TA,TA,No,Unf,0,Unf,0,927,927,GasA,TA,Y,SBrkr,1067,472,0,1539,0,0,1,1,3,1,TA,5,Typ,0,NA,Detchd,1995,Unf,2,576,TA,TA,Y,112,0,0,0,0,0,NA,MnPrv,NA,0,4,2009,WD,Normal,141500 +696,20,RL,54,13811,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,6,6,1987,1987,Gable,CompShg,HdBoard,HdBoard,BrkFace,72,TA,TA,CBlock,Gd,Gd,No,GLQ,980,LwQ,40,92,1112,GasA,Gd,Y,SBrkr,1137,0,0,1137,1,0,2,0,2,1,Gd,5,Typ,1,TA,Attchd,1987,Unf,2,551,TA,TA,Y,125,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,176000 +697,30,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1Story,5,7,1921,1950,Gable,CompShg,Wd Sdng,Wd Shng,None,0,TA,TA,CBlock,TA,TA,No,LwQ,616,Unf,0,0,616,GasA,Gd,Y,SBrkr,616,0,0,616,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1921,Unf,1,205,TA,TA,Y,0,0,129,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,89000 +698,20,RL,57,6420,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,7,1952,1952,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,Ex,Gd,Mn,LwQ,210,ALQ,551,219,980,GasA,Fa,Y,FuseA,1148,0,0,1148,0,1,1,0,2,1,TA,6,Typ,0,NA,Detchd,1952,Unf,1,308,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,9,2006,WD,Normal,123500 +699,20,RL,65,8450,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,RRAe,Norm,1Fam,1Story,5,8,1965,2009,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,GLQ,553,BLQ,117,224,894,GasA,Ex,Y,SBrkr,894,0,0,894,1,0,1,0,3,1,TA,5,Typ,1,Gd,Detchd,1973,Unf,1,336,TA,TA,Y,416,144,0,0,0,0,NA,MnPrv,NA,0,4,2010,WD,Normal,138500 +700,120,FV,59,4282,Pave,Pave,IR2,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,1Story,7,5,2004,2004,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,Mn,GLQ,16,Unf,0,1375,1391,GasA,Ex,Y,SBrkr,1391,0,0,1391,0,0,2,0,2,1,Gd,5,Typ,0,NA,Attchd,2004,RFn,2,530,TA,TA,Y,156,158,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,196000 +701,20,RL,85,14331,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,8,5,2002,2002,Hip,CompShg,VinylSd,VinylSd,BrkFace,630,Gd,TA,PConc,Ex,TA,Gd,GLQ,1274,Unf,0,526,1800,GasA,Ex,Y,SBrkr,1800,0,0,1800,1,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2002,Fin,3,765,TA,TA,Y,270,78,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,312500 +702,20,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,7,5,1969,1969,Hip,CompShg,HdBoard,HdBoard,BrkFace,168,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1164,1164,GasA,TA,Y,SBrkr,1164,0,0,1164,0,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1969,Unf,2,528,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,COD,Normal,140000 +703,60,RL,82,12438,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,1Fam,2Story,8,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,BrkFace,466,Ex,TA,PConc,Ex,Gd,No,Unf,0,Unf,0,1234,1234,GasA,Ex,Y,SBrkr,1264,1312,0,2576,0,0,2,1,4,1,Ex,10,Typ,1,Gd,BuiltIn,2006,Fin,3,666,TA,TA,Y,324,100,0,0,0,0,NA,NA,NA,0,7,2006,New,Partial,361919 +704,190,RM,76,7630,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Feedr,Norm,2fmCon,2Story,5,9,1900,1996,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,BrkTil,Gd,TA,No,Unf,0,Unf,0,360,360,GasA,Gd,Y,SBrkr,1032,780,0,1812,0,0,2,0,4,2,Gd,8,Typ,1,Po,Detchd,1999,Unf,2,672,TA,TA,N,344,0,40,0,0,0,NA,MnPrv,NA,0,5,2010,WD,Normal,140000 +705,20,RL,70,8400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,109,Gd,TA,PConc,Gd,TA,Av,GLQ,712,Unf,0,761,1473,GasA,Ex,Y,SBrkr,1484,0,0,1484,1,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2004,RFn,2,606,TA,TA,Y,0,35,0,144,0,0,NA,NA,NA,0,5,2010,WD,Normal,213000 +706,190,RM,70,5600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,2fmCon,2Story,4,5,1930,1950,Hip,CompShg,VinylSd,Wd Shng,None,0,Fa,Fa,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,Fa,N,SBrkr,372,720,0,1092,0,0,2,0,3,2,Fa,7,Mod,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,0,0,0,0,NA,NA,Othr,3500,7,2010,WD,Normal,55000 +707,20,RL,NA,115149,Pave,NA,IR2,Low,AllPub,CulDSac,Sev,ClearCr,Norm,Norm,1Fam,1Story,7,5,1971,2002,Gable,CompShg,Plywood,Plywood,Stone,351,TA,TA,CBlock,Gd,TA,Gd,GLQ,1219,Unf,0,424,1643,GasA,TA,Y,SBrkr,1824,0,0,1824,1,0,2,0,2,1,Gd,5,Typ,2,TA,Attchd,1971,Unf,2,739,TA,TA,Y,380,48,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,302000 +708,120,RL,48,6240,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,8,5,2006,2006,Hip,CompShg,MetalSd,MetalSd,BrkFace,176,Gd,TA,PConc,Gd,TA,No,GLQ,863,Unf,0,461,1324,GasA,Ex,Y,SBrkr,1324,0,0,1324,1,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2006,Fin,2,550,TA,TA,Y,192,38,0,0,0,0,NA,NA,NA,0,12,2009,WD,Normal,254000 +709,60,RL,65,9018,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2007,2007,Hip,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,728,728,GasA,Ex,Y,SBrkr,728,728,0,1456,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2007,Fin,2,400,TA,TA,Y,100,24,0,0,0,0,NA,NA,NA,0,7,2007,New,Partial,179540 +710,20,RL,NA,7162,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,7,1966,1966,Gable,CompShg,HdBoard,HdBoard,BrkCmn,41,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,876,876,GasA,TA,Y,SBrkr,904,0,0,904,0,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1966,Unf,1,408,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,12,2008,WD,Abnorml,109900 +711,30,RL,56,4130,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1Story,3,6,1935,2003,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,CBlock,TA,TA,No,Unf,0,Unf,0,270,270,GasA,Gd,Y,SBrkr,729,0,0,729,0,0,1,0,2,1,TA,5,Maj2,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,52000 +712,50,C (all),66,8712,Pave,Pave,Reg,HLS,AllPub,Inside,Mod,IDOTRR,Norm,Norm,1Fam,1.5Fin,4,7,1900,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,Stone,TA,TA,Mn,Unf,0,Unf,0,859,859,GasA,Gd,Y,SBrkr,859,319,0,1178,0,0,1,0,2,1,TA,7,Typ,0,NA,Detchd,1964,RFn,1,384,TA,TA,N,68,0,98,0,0,0,NA,NA,NA,0,1,2010,WD,Abnorml,102776 +713,120,RL,40,4671,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,StoneBr,Norm,Norm,TwnhsE,1Story,8,5,1988,1989,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,Mn,GLQ,767,Unf,0,461,1228,GasA,Gd,Y,SBrkr,1228,0,0,1228,1,0,2,0,2,1,Gd,5,Typ,1,Gd,Attchd,1988,Fin,2,472,TA,TA,Y,168,120,0,0,0,0,NA,NA,NA,0,10,2008,WD,Normal,189000 +714,190,RL,60,9873,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,RRAn,Norm,2fmCon,1Story,4,5,1970,1970,Gable,CompShg,HdBoard,HdBoard,BrkFace,160,TA,TA,CBlock,TA,TA,Av,ALQ,789,Unf,0,171,960,GasW,TA,N,SBrkr,960,0,0,960,1,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1970,Unf,2,576,TA,TA,Y,0,288,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,129000 +715,60,RL,NA,13517,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Sawyer,RRAe,Norm,1Fam,2Story,6,8,1976,2005,Gable,CompShg,HdBoard,Plywood,BrkFace,289,Gd,TA,CBlock,TA,TA,No,GLQ,533,Unf,0,192,725,GasA,Ex,Y,SBrkr,725,754,0,1479,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,1976,RFn,2,475,TA,TA,Y,0,44,0,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,130500 +716,20,RL,78,10140,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,5,1974,1974,Hip,CompShg,HdBoard,HdBoard,BrkFace,174,TA,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,1064,1064,GasA,TA,Y,SBrkr,1350,0,0,1350,0,0,2,0,3,1,TA,7,Typ,1,TA,Attchd,1974,RFn,2,478,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,8,2009,WD,Normal,165000 +717,70,RM,60,10800,Pave,Grvl,Reg,Bnk,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,7,8,1890,1998,Gable,CompShg,Wd Sdng,VinylSd,None,0,TA,Gd,BrkTil,TA,TA,No,Unf,0,Unf,0,718,718,GasA,Ex,Y,SBrkr,1576,978,0,2554,0,0,1,1,3,1,TA,8,Typ,0,NA,Detchd,1996,Unf,2,704,TA,TA,P,0,48,143,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,159500 +718,20,RL,80,10000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,5,6,1973,2000,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,No,BLQ,1084,Unf,0,92,1176,GasA,Gd,Y,SBrkr,1178,0,0,1178,0,1,1,1,3,1,Gd,5,Typ,1,Fa,Attchd,1973,Unf,2,439,TA,TA,Y,224,0,0,0,0,0,NA,MnPrv,NA,0,11,2008,WD,Normal,157000 +719,60,RL,96,10542,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,7,5,1993,1994,Hip,CompShg,Wd Sdng,ImStucc,BrkFace,651,Gd,TA,PConc,Gd,TA,Gd,GLQ,1173,Unf,0,138,1311,GasA,Ex,Y,SBrkr,1325,1093,0,2418,1,0,2,1,3,1,Gd,9,Typ,1,TA,Attchd,1993,RFn,3,983,TA,TA,Y,250,154,216,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,341000 +720,20,RL,69,9920,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,6,1969,1969,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,Gd,TA,Gd,ALQ,523,Unf,0,448,971,GasA,TA,Y,SBrkr,971,0,0,971,0,0,1,1,3,1,TA,5,Typ,1,Po,Attchd,1969,Unf,1,300,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,128500 +721,120,RL,NA,6563,Pave,NA,IR1,Low,AllPub,CulDSac,Mod,StoneBr,Norm,Norm,1Fam,1Story,8,5,1985,1985,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,Gd,GLQ,1148,Unf,0,594,1742,GasA,TA,Y,SBrkr,1742,0,0,1742,1,0,2,0,2,1,Gd,5,Typ,1,TA,Attchd,1985,RFn,2,564,TA,TA,Y,114,28,234,0,0,0,NA,NA,NA,0,12,2006,WD,Normal,275000 +722,120,RM,NA,4426,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,TwnhsE,1Story,6,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,169,Gd,TA,PConc,Gd,TA,Av,GLQ,662,Unf,0,186,848,GasA,Ex,Y,SBrkr,848,0,0,848,1,0,1,0,1,1,Gd,3,Typ,0,NA,Attchd,2004,RFn,2,420,TA,TA,Y,160,0,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,143000 +723,20,RL,70,8120,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,7,1970,1970,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,ALQ,191,Unf,0,673,864,GasA,Ex,Y,SBrkr,864,0,0,864,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1994,Unf,2,463,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,124500 +724,50,RL,60,8172,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,4,6,1954,1972,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,941,941,GasA,Ex,Y,SBrkr,997,473,0,1470,0,0,2,0,4,1,TA,7,Typ,0,NA,Detchd,1958,Unf,1,548,TA,TA,Y,0,0,0,0,156,0,NA,NA,NA,0,5,2008,WD,Normal,135000 +725,20,RL,86,13286,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,9,5,2007,2008,Hip,CompShg,CemntBd,CmentBd,Stone,340,Ex,TA,PConc,Ex,TA,No,GLQ,1234,Unf,0,464,1698,GasA,Ex,Y,SBrkr,1698,0,0,1698,1,0,2,0,3,1,Ex,8,Typ,1,Gd,Attchd,2007,Fin,3,768,TA,TA,Y,327,64,0,0,0,0,NA,NA,NA,0,2,2009,WD,Normal,320000 +726,20,RL,60,6960,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,6,1970,1970,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,375,BLQ,239,250,864,GasA,TA,Y,SBrkr,864,0,0,864,0,0,1,0,3,1,Gd,5,Typ,0,NA,Detchd,1989,Unf,2,660,TA,TA,Y,96,0,0,0,0,0,NA,NA,Shed,500,11,2009,WD,Normal,120500 +727,20,RL,NA,21695,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Crawfor,Norm,Norm,1Fam,1Story,6,9,1988,2007,Hip,CompShg,Wd Sdng,Plywood,BrkFace,260,Gd,Gd,CBlock,Gd,TA,No,GLQ,808,Unf,0,72,880,GasA,Ex,Y,SBrkr,1680,0,0,1680,1,0,2,0,3,1,Gd,5,Typ,1,Gd,Attchd,1988,Fin,2,540,TA,TA,Y,292,44,0,182,0,0,NA,NA,NA,0,12,2009,WD,Normal,222000 +728,20,RL,64,7314,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,Stone,82,Gd,TA,PConc,Gd,TA,Av,GLQ,724,Unf,0,508,1232,GasA,Ex,Y,SBrkr,1232,0,0,1232,1,0,2,0,2,1,Gd,6,Typ,0,NA,Attchd,2007,RFn,2,632,TA,TA,Y,132,0,0,0,0,0,NA,NA,NA,0,2,2009,WD,Normal,194500 +729,90,RL,85,11475,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,Duplex,1Story,5,5,1958,1958,Gable,CompShg,VinylSd,VinylSd,BrkFace,95,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1584,1584,GasA,TA,Y,SBrkr,1776,0,0,1776,1,0,2,0,4,2,TA,9,Typ,0,NA,Detchd,1968,Unf,3,888,TA,TA,Y,0,25,0,0,0,0,NA,NA,NA,0,7,2009,COD,Abnorml,110000 +730,30,RM,52,6240,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Fin,4,5,1925,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,152,Unf,0,628,780,GasA,TA,Y,FuseA,848,0,360,1208,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1962,Unf,2,539,TA,TA,Y,0,23,112,0,0,0,NA,NA,NA,0,1,2009,WD,Normal,103000 +731,120,RL,39,5389,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,TwnhsE,1Story,8,5,1995,1996,Gable,CompShg,CemntBd,CmentBd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,1180,Unf,0,415,1595,GasA,Ex,Y,SBrkr,1616,0,0,1616,1,0,2,0,2,1,Gd,5,Typ,1,TA,Attchd,1995,RFn,2,608,TA,TA,Y,237,152,0,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,236500 +732,80,RL,73,9590,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Timber,Norm,Norm,1Fam,SLvl,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,442,Gd,TA,PConc,Ex,TA,Av,GLQ,786,Unf,0,82,868,GasA,Ex,Y,SBrkr,1146,0,0,1146,1,0,2,0,3,1,Gd,6,Typ,1,Gd,Attchd,2003,Fin,2,438,TA,TA,Y,160,22,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,187500 +733,60,RL,75,11404,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,1998,1999,Gable,CompShg,VinylSd,VinylSd,BrkFace,202,Gd,TA,PConc,Gd,TA,Av,ALQ,252,Unf,0,901,1153,GasA,Ex,Y,SBrkr,1153,878,0,2031,0,0,2,1,3,1,Gd,8,Typ,1,TA,Attchd,1998,Fin,2,541,TA,TA,Y,192,84,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,222500 +734,20,RL,80,10000,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,5,6,1961,1983,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,BLQ,594,Unf,0,270,864,GasA,Ex,Y,SBrkr,1144,0,0,1144,1,0,1,0,3,1,TA,6,Typ,1,TA,Attchd,1961,RFn,1,264,TA,TA,Y,165,0,0,0,0,0,NA,GdWo,Shed,400,3,2009,WD,Normal,131400 +735,20,RL,NA,8978,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1968,1968,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,948,948,GasA,TA,Y,SBrkr,948,0,0,948,0,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1968,Unf,1,300,TA,TA,Y,147,0,0,0,0,0,NA,NA,NA,0,5,2007,WD,Family,108000 +736,75,RM,60,10800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2.5Unf,7,7,1914,1970,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Gd,TA,Mn,Rec,390,Unf,0,490,880,GasW,Fa,N,SBrkr,880,888,0,1768,0,0,1,1,2,1,TA,6,Typ,2,TA,Detchd,1914,Unf,2,320,TA,TA,N,0,341,0,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,163000 +737,90,RL,60,8544,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,Duplex,1Story,3,4,1950,1950,Gable,CompShg,Stucco,Stone,None,0,TA,TA,CBlock,NA,NA,NA,NA,0,NA,0,0,0,GasA,Gd,N,FuseF,1040,0,0,1040,0,0,2,0,2,2,TA,6,Typ,0,NA,Detchd,1949,Unf,2,400,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,93500 +738,60,RL,72,10463,Pave,NA,IR1,HLS,AllPub,CulDSac,Gtl,Gilbert,Norm,Norm,1Fam,2Story,8,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,893,893,GasA,Ex,Y,SBrkr,901,900,0,1801,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2005,Fin,3,800,TA,TA,Y,0,116,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,239900 +739,90,RL,60,10800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,Duplex,1Story,5,5,1987,1988,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,Gd,Gd,GLQ,1200,Unf,0,0,1200,GasA,TA,Y,SBrkr,1200,0,0,1200,3,0,3,0,3,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,120,0,0,0,0,0,NA,NA,NA,0,3,2009,WD,Alloca,179000 +740,60,RL,65,9313,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,864,864,GasA,Ex,Y,SBrkr,864,864,0,1728,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2004,RFn,2,572,TA,TA,Y,187,56,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,190000 +741,70,RM,60,9600,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,5,7,1910,2002,Gable,CompShg,Wd Sdng,Wd Shng,None,0,TA,Gd,BrkTil,Fa,Fa,No,Unf,0,Unf,0,264,264,GasA,Ex,Y,SBrkr,768,664,0,1432,0,0,2,0,2,1,TA,7,Typ,0,NA,Detchd,1910,Unf,2,360,TA,Gd,Y,270,0,112,0,0,0,NA,GdPrv,NA,0,5,2007,WD,Abnorml,132000 +742,20,RL,65,6768,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,6,8,1961,1996,Hip,CompShg,HdBoard,HdBoard,None,0,TA,Gd,CBlock,TA,TA,Mn,GLQ,832,Unf,0,80,912,GasA,Gd,Y,SBrkr,912,0,0,912,1,1,1,0,3,1,Gd,5,Typ,0,NA,Detchd,1962,Unf,1,288,TA,TA,Y,168,0,0,0,0,0,NA,GdPrv,NA,0,5,2008,WD,Normal,142000 +743,20,RL,65,8450,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,1Story,7,5,2000,2001,Gable,CompShg,VinylSd,VinylSd,BrkFace,108,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1349,1349,GasA,Ex,Y,SBrkr,1349,0,0,1349,0,0,2,0,3,1,TA,6,Typ,0,NA,Attchd,2000,Unf,2,539,TA,TA,Y,120,55,0,0,0,0,NA,GdPrv,NA,0,12,2007,WD,Normal,179000 +744,80,RL,70,12886,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,SLvl,5,6,1963,1999,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,Av,ALQ,444,Unf,0,76,520,GasA,Ex,Y,SBrkr,1464,0,0,1464,0,1,2,0,3,1,TA,6,Min2,1,TA,Attchd,1997,RFn,2,480,TA,TA,Y,302,0,0,0,100,0,NA,NA,NA,0,10,2009,WD,Normal,175000 +745,120,RL,41,5395,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,StoneBr,Norm,Norm,TwnhsE,1Story,8,5,1993,1993,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,733,Unf,0,604,1337,GasA,Gd,Y,SBrkr,1337,0,0,1337,1,0,2,0,2,1,Gd,5,Typ,1,TA,Attchd,1993,RFn,2,462,TA,TA,Y,96,0,70,168,0,0,NA,NA,NA,0,10,2008,WD,Normal,180000 +746,60,RL,NA,8963,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,2Story,8,9,1976,1996,Hip,CompShg,VinylSd,VinylSd,BrkFace,289,Ex,Gd,CBlock,TA,Gd,No,GLQ,575,ALQ,80,487,1142,GasA,Ex,Y,SBrkr,1175,1540,0,2715,0,1,3,1,4,1,Gd,11,Typ,2,TA,BuiltIn,1994,Fin,2,831,TA,TA,Y,0,204,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,299800 +747,60,RL,NA,8795,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,300,Unf,0,652,952,GasA,Ex,Y,SBrkr,980,1276,0,2256,0,0,2,1,4,1,Gd,8,Typ,1,TA,BuiltIn,2000,Fin,2,554,TA,TA,Y,224,54,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,236000 +748,70,RM,65,11700,Pave,Pave,IR1,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,2Story,7,7,1880,2003,Mansard,CompShg,Stucco,Stucco,None,0,Gd,TA,Stone,TA,Fa,No,Unf,0,Unf,0,1240,1240,GasW,TA,N,SBrkr,1320,1320,0,2640,0,0,1,1,4,1,Gd,8,Typ,1,Gd,Detchd,1950,Unf,4,864,TA,TA,N,181,0,386,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,265979 +749,20,RL,59,10593,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,1Story,7,5,1996,1996,Hip,CompShg,VinylSd,VinylSd,BrkFace,338,Gd,TA,PConc,Gd,TA,No,GLQ,919,Unf,0,801,1720,GasA,Ex,Y,SBrkr,1720,0,0,1720,1,0,2,0,3,1,Gd,7,Typ,1,TA,Attchd,1996,Fin,2,527,TA,TA,Y,240,56,154,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,260400 +750,50,RL,50,8405,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,4,3,1945,1950,Gable,CompShg,WdShing,Wd Shng,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,Wall,TA,N,FuseF,1088,441,0,1529,0,0,2,0,4,1,TA,9,Mod,0,NA,Detchd,1945,Unf,1,240,TA,TA,N,92,0,185,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,98000 +751,50,RM,55,8800,Pave,Grvl,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,4,7,1910,2004,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,Fa,No,Unf,0,Unf,0,576,576,GasA,Gd,Y,SBrkr,792,348,0,1140,0,0,1,0,3,1,TA,7,Min2,0,NA,NA,NA,NA,0,0,NA,NA,N,0,160,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,96500 +752,60,RL,NA,7750,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,RRAn,Norm,1Fam,2Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,660,660,GasA,Ex,Y,SBrkr,660,660,0,1320,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2003,Fin,2,400,TA,TA,Y,0,48,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,162000 +753,20,RL,79,9236,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,6,5,1997,1997,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,PConc,Gd,TA,Gd,GLQ,1200,Unf,0,279,1479,GasA,Ex,Y,SBrkr,1494,0,0,1494,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,1997,RFn,2,576,TA,TA,Y,168,27,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,217000 +754,60,RL,80,10240,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,8,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,178,Gd,TA,PConc,Gd,TA,Mn,Unf,0,Unf,0,1030,1030,GasA,Gd,Y,SBrkr,1038,1060,0,2098,0,0,2,1,3,1,Ex,8,Typ,1,Gd,Attchd,2005,RFn,3,878,TA,TA,Y,192,52,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,275500 +755,20,RL,61,7930,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,8,1969,2005,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,GLQ,439,LwQ,472,115,1026,GasA,Gd,Y,SBrkr,1026,0,0,1026,1,0,1,0,3,1,Gd,5,Typ,0,NA,Detchd,1969,RFn,2,440,TA,TA,Y,171,48,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,156000 +756,160,FV,34,3230,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,6,5,1999,1999,Gable,CompShg,MetalSd,MetalSd,BrkFace,894,TA,TA,PConc,Gd,TA,No,GLQ,381,Unf,0,348,729,GasA,Gd,Y,SBrkr,742,729,0,1471,0,0,2,1,3,1,TA,6,Typ,0,NA,Detchd,1999,Unf,2,440,TA,TA,Y,0,24,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,172500 +757,60,RL,68,10769,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,20,Unf,0,846,866,GasA,Ex,Y,SBrkr,866,902,0,1768,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2007,RFn,2,578,TA,TA,Y,144,105,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,212000 +758,60,RL,NA,11616,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Sawyer,Norm,Norm,1Fam,2Story,6,5,1978,1978,Hip,CompShg,HdBoard,HdBoard,BrkCmn,328,TA,TA,CBlock,TA,TA,Mn,Rec,438,Unf,0,234,672,GasA,TA,Y,SBrkr,672,714,0,1386,0,0,2,1,3,1,TA,6,Typ,1,TA,Attchd,1978,Fin,2,440,TA,TA,Y,335,0,0,0,0,0,NA,GdPrv,NA,0,4,2010,WD,Abnorml,158900 +759,160,FV,24,2280,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,Twnhs,2Story,7,5,1999,1999,Gable,CompShg,MetalSd,MetalSd,BrkFace,360,TA,TA,PConc,Gd,TA,No,ALQ,549,Unf,0,195,744,GasA,Gd,Y,SBrkr,757,744,0,1501,0,0,2,1,3,1,TA,6,Typ,0,NA,Detchd,1999,Unf,2,440,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,179400 +760,60,RL,65,12257,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1995,1995,Gable,CompShg,VinylSd,VinylSd,BrkFace,513,Gd,TA,PConc,Gd,TA,Av,LwQ,56,ALQ,64,1198,1318,GasA,Ex,Y,SBrkr,1328,1203,0,2531,0,0,2,1,4,1,Gd,9,Typ,1,TA,Attchd,1995,RFn,3,752,TA,TA,Y,222,98,0,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,290000 +761,20,RL,70,9100,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1959,1959,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,612,Unf,0,252,864,GasA,Ex,Y,SBrkr,864,0,0,864,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,2008,Unf,1,300,Ex,Ex,Y,0,0,0,0,0,0,NA,NA,Shed,450,10,2009,WD,Normal,127500 +762,30,RM,60,6911,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,BrkSide,Feedr,Norm,1Fam,1Story,5,5,1924,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,Mn,LwQ,405,Unf,0,740,1145,GasA,TA,Y,SBrkr,1301,0,0,1301,0,0,1,0,2,1,Fa,5,Min1,0,NA,Detchd,1965,Unf,2,440,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,100000 +763,60,FV,72,8640,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2009,2009,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Mn,GLQ,24,Unf,0,732,756,GasA,Ex,Y,SBrkr,764,783,0,1547,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2009,Unf,2,614,TA,TA,Y,169,45,0,0,0,0,NA,NA,NA,0,6,2010,Con,Normal,215200 +764,60,RL,82,9430,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,BrkFace,673,Gd,TA,PConc,Gd,TA,Mn,GLQ,1163,Unf,0,89,1252,GasA,Ex,Y,SBrkr,1268,1097,0,2365,1,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,1999,RFn,3,856,TA,TA,Y,0,128,0,0,180,0,NA,NA,NA,0,7,2009,WD,Normal,337000 +765,120,RL,30,9549,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Veenker,Norm,Norm,TwnhsE,1Story,8,5,1995,1996,Hip,CompShg,BrkFace,BrkFace,None,0,Gd,Gd,PConc,Gd,Gd,Av,LwQ,437,GLQ,1057,0,1494,GasA,Ex,Y,SBrkr,1494,0,0,1494,1,0,1,1,2,1,Ex,6,Typ,1,Gd,Attchd,1995,Fin,2,481,TA,TA,Y,0,30,0,0,216,0,NA,NA,NA,0,4,2006,WD,Normal,270000 +766,20,RL,75,14587,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,9,5,2008,2008,Gable,CompShg,VinylSd,VinylSd,Stone,284,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1498,1498,GasA,Ex,Y,SBrkr,1506,0,0,1506,0,0,2,0,2,1,Ex,6,Typ,1,Gd,Attchd,2008,Fin,2,592,TA,TA,Y,0,174,0,0,0,0,NA,NA,NA,0,8,2008,New,Partial,264132 +767,60,RL,80,10421,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,2Story,7,5,1988,1988,Gable,CompShg,HdBoard,HdBoard,BrkFace,42,TA,TA,CBlock,Gd,TA,No,GLQ,394,Unf,0,586,980,GasA,TA,Y,SBrkr,980,734,0,1714,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1988,Unf,2,496,TA,TA,Y,228,66,156,0,0,0,NA,MnPrv,Shed,500,3,2010,WD,Normal,196500 +768,50,RL,75,12508,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,1.5Fin,6,7,1940,1985,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,Gd,TA,Mn,ALQ,660,Unf,0,323,983,GasA,Ex,Y,SBrkr,983,767,0,1750,1,0,2,0,4,1,TA,7,Mod,0,NA,Attchd,1989,Unf,1,423,TA,TA,Y,245,0,156,0,0,0,NA,NA,Shed,1300,7,2008,WD,Normal,160000 +769,20,RL,70,9100,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2004,2005,Hip,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,24,Unf,0,1836,1860,GasA,Ex,Y,SBrkr,1836,0,0,1836,0,0,2,0,3,1,Gd,8,Typ,1,Gd,Attchd,2004,Fin,2,484,TA,TA,Y,120,33,0,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,216837 +770,60,RL,47,53504,Pave,NA,IR2,HLS,AllPub,CulDSac,Mod,StoneBr,Norm,Norm,1Fam,2Story,8,5,2003,2003,Hip,CompShg,CemntBd,Wd Shng,BrkFace,603,Ex,TA,PConc,Gd,TA,Gd,ALQ,1416,Unf,0,234,1650,GasA,Ex,Y,SBrkr,1690,1589,0,3279,1,0,3,1,4,1,Ex,12,Mod,1,Gd,BuiltIn,2003,Fin,3,841,TA,TA,Y,503,36,0,0,210,0,NA,NA,NA,0,6,2010,WD,Normal,538000 +771,85,RL,NA,7252,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Sawyer,Norm,Norm,1Fam,SFoyer,5,5,1982,1982,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,Gd,TA,Av,GLQ,685,Unf,0,173,858,GasA,TA,Y,SBrkr,858,0,0,858,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1983,Unf,2,576,TA,TA,Y,120,0,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,134900 +772,20,RL,67,8877,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,5,1951,1951,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,Fa,Fa,No,LwQ,836,Unf,0,0,836,GasA,TA,Y,FuseF,1220,0,0,1220,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1951,Unf,2,396,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2006,COD,Normal,102000 +773,80,RL,94,7819,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,SLvl,6,5,1976,1976,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,Av,ALQ,422,BLQ,127,480,1029,GasA,TA,Y,SBrkr,1117,0,0,1117,1,0,1,0,3,1,TA,6,Typ,1,TA,Detchd,1976,Unf,2,672,TA,TA,Y,144,0,0,0,0,0,NA,MnPrv,NA,0,3,2010,WD,Abnorml,107000 +774,20,RL,70,10150,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Feedr,Norm,1Fam,1Story,5,5,1958,1958,Gable,CompShg,Wd Sdng,Wd Sdng,None,1,TA,TA,CBlock,TA,TA,No,Rec,456,Unf,0,456,912,GasA,Ex,Y,FuseA,912,0,0,912,0,0,1,0,2,1,TA,5,Typ,0,NA,Attchd,1958,RFn,1,275,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2007,COD,Normal,114500 +775,20,RL,110,14226,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,BrkFace,375,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1935,1935,GasA,Gd,Y,SBrkr,1973,0,0,1973,0,0,2,0,3,1,Gd,9,Typ,1,Gd,Attchd,2006,Fin,3,895,TA,TA,Y,315,45,0,0,0,0,NA,NA,NA,0,7,2007,New,Partial,395000 +776,120,RM,32,4500,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Mitchel,Norm,Norm,TwnhsE,1Story,6,5,1998,1998,Hip,CompShg,VinylSd,VinylSd,BrkFace,320,TA,TA,PConc,Ex,TA,No,GLQ,866,Unf,0,338,1204,GasA,Ex,Y,SBrkr,1204,0,0,1204,1,0,2,0,2,1,TA,5,Typ,0,NA,Attchd,1998,Fin,2,412,TA,TA,Y,0,247,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,162000 +777,20,RL,86,11210,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,240,Gd,TA,PConc,Gd,TA,Av,GLQ,20,Unf,0,1594,1614,GasA,Ex,Y,SBrkr,1614,0,0,1614,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2005,RFn,3,865,TA,TA,Y,144,59,0,0,0,0,NA,NA,NA,0,7,2006,New,Partial,221500 +778,20,RL,100,13350,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1974,1974,Hip,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,762,Unf,0,102,864,GasA,TA,Y,SBrkr,894,0,0,894,1,0,1,0,3,1,TA,5,Typ,1,Fa,Attchd,1974,Unf,2,440,TA,TA,Y,241,0,0,0,0,0,NA,MnPrv,NA,0,6,2006,WD,Normal,142500 +779,90,RH,60,8400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Feedr,Norm,Duplex,1Story,5,5,1977,1977,Gable,CompShg,Plywood,Plywood,BrkFace,320,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,2020,0,0,2020,0,0,2,0,4,2,TA,10,Typ,2,TA,Detchd,1977,Unf,2,630,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,10,2007,WD,Normal,144000 +780,90,RL,78,10530,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,Duplex,SFoyer,6,5,1977,1977,Gable,CompShg,Plywood,ImStucc,BrkFace,90,TA,TA,CBlock,Gd,TA,Gd,GLQ,975,Unf,0,0,975,GasA,TA,Y,SBrkr,1004,0,0,1004,1,0,1,0,2,1,TA,4,Typ,0,NA,Attchd,1977,Unf,2,504,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,135000 +781,20,RL,63,7875,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,1Story,7,5,1995,1996,Gable,CompShg,HdBoard,HdBoard,BrkFace,38,TA,TA,PConc,Gd,Gd,No,Unf,0,Unf,0,1237,1237,GasA,Gd,Y,SBrkr,1253,0,0,1253,0,0,2,0,3,1,TA,6,Typ,1,TA,Attchd,1995,Fin,2,402,TA,TA,Y,220,21,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,176000 +782,60,RL,65,7153,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,6,5,1992,1992,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,Gd,PConc,Gd,TA,No,ALQ,387,Unf,0,374,761,GasA,Ex,Y,SBrkr,810,793,0,1603,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,1992,RFn,2,484,TA,TA,Y,0,124,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,175900 +783,20,RL,67,16285,Pave,NA,IR2,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2001,2002,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1413,1413,GasA,Ex,Y,SBrkr,1430,0,0,1430,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2001,RFn,2,605,TA,TA,Y,0,33,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,187100 +784,85,RL,NA,9101,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Mitchel,Norm,Norm,1Fam,SFoyer,5,6,1978,1978,Gable,CompShg,Plywood,Plywood,BrkFace,104,TA,Gd,PConc,Gd,TA,Av,GLQ,1097,Unf,0,0,1097,GasA,Ex,Y,SBrkr,1110,0,0,1110,1,0,1,0,1,1,Gd,4,Typ,1,TA,Attchd,1978,Fin,2,602,TA,TA,Y,303,30,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,165500 +785,75,RM,35,6300,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2.5Unf,6,6,1914,2001,Gable,CompShg,Wd Sdng,Wd Shng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,742,742,GasA,Ex,Y,SBrkr,742,742,0,1484,0,0,2,0,3,1,TA,9,Typ,1,Gd,NA,NA,NA,0,0,NA,NA,Y,0,291,134,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,128000 +786,20,RL,NA,9790,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Feedr,Norm,1Fam,1Story,6,5,1967,1967,Gable,CompShg,BrkFace,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,251,LwQ,630,491,1372,GasA,TA,Y,SBrkr,1342,0,0,1342,0,0,2,0,3,1,TA,7,Typ,1,Gd,Attchd,1967,Unf,2,457,TA,TA,Y,0,0,0,0,197,0,NA,NA,NA,0,9,2009,WD,Normal,161500 +787,50,RM,60,10800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1.5Fin,5,6,1915,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,PConc,Fa,TA,No,LwQ,686,Unf,0,0,686,GasA,TA,Y,SBrkr,966,686,0,1652,1,0,2,0,4,1,TA,7,Typ,0,NA,Detchd,1961,Unf,1,416,TA,TA,Y,0,0,196,0,0,0,NA,NA,Shed,1200,6,2010,WD,Normal,139000 +788,60,RL,76,10142,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,656,Unf,0,300,956,GasA,Ex,Y,SBrkr,956,1128,0,2084,1,0,2,1,4,1,Gd,8,Typ,0,NA,BuiltIn,2004,RFn,2,618,TA,TA,Y,0,45,0,0,0,0,NA,NA,NA,0,1,2010,WD,Normal,233000 +789,20,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,1Story,4,7,1954,2000,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,901,901,GasA,Ex,Y,SBrkr,901,0,0,901,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1954,Unf,1,281,Fa,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,107900 +790,60,RL,NA,12205,Pave,NA,IR1,Low,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,2Story,6,8,1966,2007,Gable,CompShg,HdBoard,HdBoard,BrkFace,157,TA,TA,CBlock,TA,Fa,Gd,LwQ,568,Unf,0,264,832,GasA,Gd,Y,SBrkr,976,1111,0,2087,0,0,2,1,5,1,Gd,9,Typ,0,NA,Attchd,1966,Fin,2,444,TA,TA,Y,133,168,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,187500 +791,120,RL,43,3182,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,11,Gd,TA,PConc,Gd,TA,No,GLQ,16,Unf,0,1129,1145,GasA,Ex,Y,SBrkr,1145,0,0,1145,0,0,2,0,2,1,Gd,5,Typ,1,Gd,Attchd,2005,Fin,2,397,TA,TA,Y,100,16,0,0,0,0,NA,NA,NA,0,9,2009,WD,Normal,160200 +792,80,RL,NA,11333,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Mitchel,Norm,Norm,1Fam,SLvl,6,5,1976,1976,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,Gd,TA,Av,ALQ,539,Unf,0,490,1029,GasA,TA,Y,SBrkr,1062,0,0,1062,1,0,1,0,3,1,TA,5,Typ,2,TA,Attchd,1976,RFn,2,539,TA,TA,Y,120,0,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,146800 +793,60,RL,92,9920,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NoRidge,Norm,Norm,1Fam,2Story,7,5,1996,1997,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,862,Unf,0,255,1117,GasA,Ex,Y,SBrkr,1127,886,0,2013,1,0,2,1,3,1,TA,8,Typ,1,TA,Attchd,1997,Unf,2,455,TA,TA,Y,180,130,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,269790 +794,20,RL,76,9158,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2007,2007,Gable,CompShg,CemntBd,CmentBd,Stone,140,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1496,1496,GasA,Ex,Y,SBrkr,1496,0,0,1496,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2007,Fin,2,474,TA,TA,Y,168,130,0,0,0,0,NA,NA,NA,0,6,2007,New,Partial,225000 +795,60,RL,NA,10832,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,1994,1996,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,712,712,GasA,Ex,Y,SBrkr,1086,809,0,1895,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1994,Fin,2,409,TA,TA,Y,143,46,0,0,0,0,NA,NA,Shed,500,10,2008,WD,Normal,194500 +796,60,RL,70,8400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,6,6,1980,1981,Gable,CompShg,HdBoard,HdBoard,BrkFace,130,TA,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,650,650,GasA,TA,Y,SBrkr,888,676,0,1564,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1980,Unf,2,476,TA,TA,Y,0,50,0,0,204,0,NA,MnPrv,NA,0,4,2010,WD,Normal,171000 +797,20,RL,71,8197,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,6,5,1977,1977,Gable,CompShg,Plywood,Plywood,BrkFace,148,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,660,660,GasA,Ex,Y,SBrkr,1285,0,0,1285,0,0,1,1,3,1,TA,7,Typ,1,TA,Attchd,1977,RFn,2,528,TA,TA,Y,138,0,0,0,0,0,NA,MnPrv,NA,0,4,2007,WD,Normal,143500 +798,20,RL,57,7677,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1953,1953,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,570,Unf,0,203,773,GasA,Gd,Y,SBrkr,773,0,0,773,0,0,1,0,2,1,TA,4,Typ,0,NA,Attchd,1953,Unf,1,240,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2008,WD,Abnorml,110000 +799,60,RL,104,13518,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,9,5,2008,2009,Hip,CompShg,VinylSd,VinylSd,Stone,860,Ex,TA,PConc,Ex,TA,No,Unf,0,Unf,0,1926,1926,GasA,Ex,Y,SBrkr,1966,1174,0,3140,0,0,3,1,4,1,Ex,11,Typ,2,Gd,BuiltIn,2009,Fin,3,820,TA,TA,Y,144,78,0,0,0,0,NA,NA,NA,0,7,2009,New,Partial,485000 +800,50,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,SWISU,Feedr,Norm,1Fam,1.5Fin,5,7,1937,1950,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,252,TA,TA,BrkTil,Gd,TA,No,ALQ,569,Unf,0,162,731,GasA,Ex,Y,SBrkr,981,787,0,1768,1,0,1,1,3,1,Gd,7,Typ,2,TA,Detchd,1939,Unf,1,240,TA,TA,Y,0,0,264,0,0,0,NA,MnPrv,NA,0,6,2007,WD,Normal,175000 +801,60,RL,79,12798,Pave,NA,IR1,HLS,AllPub,Inside,Mod,ClearCr,Feedr,Norm,1Fam,2Story,6,5,1997,1997,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Gd,GLQ,462,Unf,0,154,616,GasA,Gd,Y,SBrkr,616,1072,0,1688,1,0,2,1,4,1,Gd,8,Typ,0,NA,Attchd,1997,RFn,2,603,TA,TA,Y,403,114,185,0,0,0,NA,NA,Shed,400,5,2008,WD,Normal,200000 +802,30,RM,40,4800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1Story,4,7,1916,1990,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,LwQ,197,Unf,0,999,1196,GasA,Ex,Y,FuseA,1196,0,0,1196,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1957,Unf,2,440,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,109900 +803,60,RL,63,8199,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2005,2005,Gable,CompShg,WdShing,Wd Shng,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,648,Unf,0,80,728,GasA,Ex,Y,SBrkr,728,728,0,1456,1,0,2,1,3,1,Gd,7,Typ,1,Gd,Attchd,2005,Fin,2,410,TA,TA,Y,36,18,0,0,0,0,NA,NA,NA,0,10,2008,WD,Normal,189000 +804,60,RL,107,13891,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,9,5,2008,2009,Hip,CompShg,VinylSd,VinylSd,Stone,424,Ex,TA,PConc,Ex,TA,Gd,Unf,0,Unf,0,1734,1734,GasA,Ex,Y,SBrkr,1734,1088,0,2822,0,0,3,1,4,1,Ex,12,Typ,1,Gd,BuiltIn,2009,RFn,3,1020,TA,TA,Y,52,170,0,0,192,0,NA,NA,NA,0,1,2009,New,Partial,582933 +805,20,RL,75,9000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1954,1954,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,LwQ,812,Unf,0,124,936,GasA,TA,Y,SBrkr,1128,0,0,1128,0,0,1,0,2,1,TA,5,Min1,0,NA,Attchd,1954,Unf,1,286,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,6,2006,WD,Family,118000 +806,20,RL,91,12274,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,Somerst,Norm,Norm,1Fam,1Story,7,5,2008,2008,Gable,CompShg,VinylSd,VinylSd,Stone,256,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1417,1417,GasA,Ex,Y,SBrkr,1428,0,0,1428,0,0,2,0,3,1,Ex,6,Typ,0,NA,Attchd,2008,RFn,2,554,TA,TA,Y,0,60,0,0,0,0,NA,NA,NA,0,7,2008,New,Partial,227680 +807,80,RL,75,9750,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,5,5,1967,1967,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,TA,TA,Av,ALQ,400,Rec,480,100,980,GasA,Gd,Y,SBrkr,980,0,0,980,0,0,2,0,3,1,TA,6,Typ,0,NA,Attchd,1967,Fin,1,384,TA,TA,Y,68,0,0,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,135500 +808,70,RL,144,21384,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,2Story,5,6,1923,2004,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,Gd,GLQ,1309,Unf,0,15,1324,GasA,Ex,Y,SBrkr,1072,504,0,1576,2,0,1,1,3,1,Gd,6,Typ,1,TA,Attchd,1923,RFn,2,528,TA,TA,Y,0,312,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,223500 +809,80,RL,85,13400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,5,5,1966,1966,Gable,CompShg,VinylSd,VinylSd,BrkFace,1047,TA,TA,CBlock,TA,TA,Av,ALQ,516,BLQ,128,380,1024,GasA,TA,Y,SBrkr,1086,0,0,1086,1,0,1,0,3,1,TA,6,Typ,1,Gd,Attchd,1966,RFn,2,484,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,6,2006,WD,Normal,159950 +810,75,RM,90,8100,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,2.5Unf,5,5,1898,1965,Hip,CompShg,AsbShng,AsbShng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,849,849,GasA,TA,N,FuseA,1075,1063,0,2138,0,0,2,0,2,3,TA,11,Typ,0,NA,Detchd,1910,Unf,2,360,Fa,Po,N,40,156,0,0,0,0,NA,MnPrv,NA,0,11,2009,WD,Normal,106000 +811,20,RL,78,10140,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,6,1974,1999,Hip,CompShg,HdBoard,HdBoard,BrkFace,99,TA,TA,CBlock,TA,TA,No,ALQ,663,LwQ,377,0,1040,GasA,Fa,Y,SBrkr,1309,0,0,1309,1,0,1,1,3,1,Gd,5,Typ,1,Fa,Attchd,1974,RFn,2,484,TA,TA,Y,265,0,0,0,0,648,Fa,GdPrv,NA,0,1,2006,WD,Normal,181000 +812,120,RM,NA,4438,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,TwnhsE,1Story,6,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,169,Gd,TA,PConc,Gd,TA,Gd,GLQ,662,Unf,0,186,848,GasA,Ex,Y,SBrkr,848,0,0,848,1,0,1,0,1,1,Gd,4,Typ,1,Gd,Attchd,2004,Fin,2,420,TA,TA,Y,140,0,0,0,0,0,NA,NA,NA,0,6,2008,ConLD,Normal,144500 +813,20,C (all),66,8712,Grvl,NA,Reg,Bnk,AllPub,Inside,Mod,IDOTRR,Norm,Norm,1Fam,1Story,5,5,1952,1952,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,Fa,TA,CBlock,TA,TA,Av,Unf,0,Unf,0,540,540,GasA,TA,N,FuseA,1044,0,0,1044,0,0,1,0,2,1,Fa,4,Typ,0,NA,Basment,1952,Unf,2,504,TA,TA,N,0,0,0,0,0,0,NA,NA,Shed,54,6,2010,WD,Alloca,55993 +814,20,RL,75,9750,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1958,1958,Gable,CompShg,MetalSd,MetalSd,BrkFace,243,TA,TA,CBlock,TA,TA,No,Rec,608,Unf,0,834,1442,GasA,Gd,Y,SBrkr,1442,0,0,1442,0,0,1,1,4,1,TA,7,Typ,0,NA,Attchd,1958,RFn,1,301,TA,TA,Y,0,0,275,0,0,0,NA,NA,Shed,500,4,2007,COD,Normal,157900 +815,50,RL,45,8248,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,5,7,1918,1950,Gable,CompShg,Stucco,Stucco,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,686,686,GasW,Gd,Y,SBrkr,686,564,0,1250,0,1,1,1,3,1,Fa,7,Typ,0,NA,Detchd,1955,Unf,1,280,TA,TA,P,207,0,96,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,116000 +816,20,RL,48,12137,Pave,NA,IR2,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,442,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1649,1649,GasA,Ex,Y,SBrkr,1661,0,0,1661,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,1998,RFn,2,598,TA,TA,Y,0,34,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,224900 +817,20,RL,NA,11425,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1954,1954,Gable,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,TA,TA,No,BLQ,486,Unf,0,522,1008,GasA,Gd,Y,SBrkr,1008,0,0,1008,0,0,1,0,2,1,TA,4,Typ,1,Gd,Attchd,1954,RFn,1,275,TA,TA,Y,0,0,120,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,137000 +818,20,RL,NA,13265,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Mitchel,Norm,Norm,1Fam,1Story,8,5,2002,2002,Hip,CompShg,CemntBd,CmentBd,BrkFace,148,Gd,TA,PConc,Gd,TA,No,GLQ,1218,Unf,0,350,1568,GasA,Ex,Y,SBrkr,1689,0,0,1689,1,0,2,0,3,1,Gd,7,Typ,2,Gd,Attchd,2002,RFn,3,857,TA,TA,Y,150,59,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,271000 +819,80,RL,80,8816,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,SLvl,6,7,1971,1971,Gable,CompShg,HdBoard,HdBoard,BrkFace,80,TA,TA,CBlock,TA,TA,Av,GLQ,504,Unf,0,506,1010,GasA,Gd,Y,SBrkr,1052,0,0,1052,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1971,Unf,2,440,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,6,2010,WD,Normal,155000 +820,120,RL,44,6371,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,7,5,2009,2010,Gable,CompShg,VinylSd,VinylSd,Stone,128,Gd,TA,PConc,Gd,TA,Mn,GLQ,733,Unf,0,625,1358,GasA,Ex,Y,SBrkr,1358,0,0,1358,1,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2010,RFn,2,484,TA,TA,Y,192,35,0,0,0,0,NA,NA,NA,0,6,2010,New,Partial,224000 +821,60,RL,72,7226,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,798,798,GasA,Ex,Y,SBrkr,798,842,0,1640,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2003,RFn,2,595,TA,TA,Y,0,45,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,183000 +822,20,RM,60,6000,Pave,Pave,Reg,Bnk,AllPub,Inside,Mod,OldTown,Norm,Norm,2fmCon,1Story,4,4,1953,1953,Gable,CompShg,MetalSd,MetalSd,None,0,Fa,TA,CBlock,Fa,TA,No,Unf,0,Unf,0,936,936,GasA,TA,N,SBrkr,936,0,0,936,0,0,1,0,2,1,TA,4,Min2,0,NA,Detchd,1974,Unf,2,576,TA,TA,Y,0,32,112,0,0,0,NA,NA,NA,0,2,2009,WD,Normal,93000 +823,60,RL,NA,12394,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Gd,Unf,0,Unf,0,847,847,GasA,Ex,Y,SBrkr,847,886,0,1733,0,0,2,1,3,1,Gd,7,Typ,1,Gd,BuiltIn,2003,Fin,2,433,TA,TA,Y,100,48,0,0,0,0,NA,NA,NA,0,10,2007,WD,Family,225000 +824,50,RL,60,9900,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1.5Fin,6,7,1940,1950,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,778,778,GasA,TA,Y,SBrkr,944,545,0,1489,0,0,2,0,3,1,TA,7,Typ,1,Gd,Detchd,1940,Unf,1,240,TA,TA,Y,335,0,0,0,0,0,NA,GdWo,NA,0,7,2009,WD,Normal,139500 +825,20,FV,81,11216,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,Gd,No,Unf,0,Unf,0,1489,1489,GasA,Ex,Y,SBrkr,1489,0,0,1489,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2006,RFn,2,776,TA,TA,Y,0,140,0,0,0,0,NA,NA,NA,0,6,2006,New,Partial,232600 +826,20,RL,114,14803,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,PosN,PosN,1Fam,1Story,10,5,2007,2008,Hip,CompShg,CemntBd,CmentBd,BrkFace,816,Ex,TA,PConc,Ex,TA,Av,GLQ,1636,Unf,0,442,2078,GasA,Ex,Y,SBrkr,2084,0,0,2084,1,0,2,0,2,1,Ex,7,Typ,1,Gd,Attchd,2007,Fin,3,1220,TA,TA,Y,188,45,0,0,0,0,NA,NA,NA,0,6,2008,New,Partial,385000 +827,45,RM,50,6130,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Unf,5,6,1924,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,ALQ,784,Unf,0,0,784,GasA,Gd,Y,SBrkr,784,0,0,784,1,0,1,0,2,1,Gd,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,116,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,109500 +828,20,RL,65,8529,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,1Story,7,5,2001,2001,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,20,Unf,0,1434,1454,GasA,Ex,Y,SBrkr,1434,0,0,1434,0,0,2,0,3,1,Gd,6,Typ,1,TA,Attchd,2001,RFn,2,527,TA,TA,Y,290,39,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,189000 +829,60,RL,NA,28698,Pave,NA,IR2,Low,AllPub,CulDSac,Sev,ClearCr,Norm,Norm,1Fam,2Story,5,5,1967,1967,Flat,Tar&Grv,Plywood,Plywood,None,0,TA,TA,PConc,TA,Gd,Gd,LwQ,249,ALQ,764,0,1013,GasA,TA,Y,SBrkr,1160,966,0,2126,0,1,2,1,3,1,TA,7,Min2,0,NA,Attchd,1967,Fin,2,538,TA,TA,Y,486,0,0,0,225,0,NA,NA,NA,0,6,2009,WD,Abnorml,185000 +830,160,FV,24,2544,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,Twnhs,2Story,7,5,2005,2005,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,600,600,GasA,Ex,Y,SBrkr,520,623,80,1223,0,0,2,1,2,1,Gd,4,Typ,0,NA,Detchd,2005,RFn,2,480,TA,TA,Y,0,166,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,147400 +831,20,RL,80,11900,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1957,1957,Gable,CompShg,HdBoard,HdBoard,BrkFace,387,TA,TA,CBlock,TA,TA,No,Rec,1040,Unf,0,352,1392,GasA,TA,Y,FuseA,1392,0,0,1392,1,0,1,1,3,1,TA,6,Typ,2,Gd,Attchd,1957,RFn,2,458,TA,TA,Y,0,0,0,0,192,0,NA,NA,NA,0,6,2008,WD,Normal,166000 +832,160,FV,30,3180,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,7,5,2005,2005,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,600,600,GasA,Ex,Y,SBrkr,520,600,80,1200,0,0,2,1,2,1,Gd,4,Typ,0,NA,Detchd,2005,RFn,2,480,TA,TA,Y,0,166,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,151000 +833,60,RL,44,9548,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,6,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,223,Gd,TA,PConc,Gd,TA,No,GLQ,483,Unf,0,458,941,GasA,Ex,Y,SBrkr,941,888,0,1829,1,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,2003,RFn,2,613,TA,TA,Y,192,39,0,0,0,0,NA,NA,NA,0,1,2010,WD,Normal,237000 +834,20,RL,100,10004,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1964,1964,Gable,CompShg,HdBoard,Plywood,BrkFace,180,TA,TA,CBlock,TA,TA,No,Rec,196,BLQ,345,975,1516,GasA,TA,Y,SBrkr,1516,0,0,1516,0,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1964,RFn,2,472,TA,TA,Y,0,0,0,0,152,0,NA,NA,NA,0,2,2009,WD,Normal,167000 +835,20,RL,75,7875,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1961,1961,Gable,CompShg,VinylSd,VinylSd,BrkFace,136,TA,TA,CBlock,TA,TA,No,Rec,572,Unf,0,572,1144,GasA,Gd,Y,SBrkr,1144,0,0,1144,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1961,Unf,2,456,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,9,2008,WD,Normal,139950 +836,20,RL,60,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,4,7,1950,1995,Gable,CompShg,VinylSd,HdBoard,None,0,TA,TA,CBlock,Gd,TA,No,BLQ,442,Unf,0,625,1067,GasA,TA,Y,SBrkr,1067,0,0,1067,0,0,2,0,2,1,Gd,4,Min2,0,NA,Attchd,1996,Unf,2,436,TA,TA,Y,290,0,0,0,0,0,NA,NA,NA,0,2,2010,WD,Normal,128000 +837,30,RM,90,8100,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,6,1948,1973,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,BrkTil,TA,TA,No,Rec,338,Unf,0,1221,1559,GasA,Gd,Y,SBrkr,1559,0,0,1559,1,0,1,0,2,1,TA,5,Min2,0,NA,Detchd,1948,Unf,2,812,TA,TA,Y,0,116,230,0,0,0,NA,GdWo,NA,0,6,2007,COD,Normal,153500 +838,160,RM,21,1680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,6,5,1973,1973,Gable,CompShg,HdBoard,HdBoard,BrkFace,158,TA,TA,CBlock,TA,TA,No,BLQ,330,Unf,0,153,483,GasA,TA,Y,SBrkr,483,504,0,987,1,0,1,1,2,1,TA,5,Typ,0,NA,Detchd,1973,Unf,1,264,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2008,WD,Normal,100000 +839,20,RL,75,9525,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,6,1995,2006,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1099,1099,GasA,Ex,Y,SBrkr,1099,0,0,1099,0,0,1,1,3,1,Gd,6,Typ,0,NA,Attchd,1999,Unf,1,352,TA,TA,Y,278,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,144000 +840,50,RL,70,11767,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,5,6,1946,1995,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,352,Unf,0,416,768,GasA,Ex,Y,SBrkr,768,432,0,1200,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1946,Unf,1,240,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,130500 +841,70,RH,NA,12155,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,2Story,6,8,1925,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,BLQ,156,Unf,0,516,672,GasA,TA,N,SBrkr,810,672,0,1482,0,0,2,0,4,1,Fa,7,Typ,0,NA,Detchd,1934,Unf,1,400,TA,TA,P,0,0,254,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,140000 +842,70,RM,60,10440,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,5,8,1904,2002,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,650,650,GasA,Gd,Y,SBrkr,958,581,0,1539,0,0,2,0,3,1,Gd,8,Typ,1,Po,Detchd,1983,Unf,2,686,Gd,TA,P,70,78,68,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,157500 +843,80,RL,82,9020,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,6,7,1966,1966,Gable,CompShg,HdBoard,HdBoard,BrkFace,183,TA,TA,CBlock,TA,TA,Gd,Rec,312,ALQ,539,276,1127,GasA,TA,Y,SBrkr,1165,0,0,1165,1,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1966,RFn,2,490,Gd,Gd,Y,0,129,0,0,0,0,NA,GdPrv,NA,0,5,2008,WD,Normal,174900 +844,90,RL,80,8000,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Artery,Norm,Duplex,1Story,5,4,1961,1961,Gable,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1800,1800,GasA,Ex,N,SBrkr,1800,0,0,1800,0,0,2,0,6,2,TA,10,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,141000 +845,50,RM,100,12665,Pave,Grvl,IR1,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1.5Fin,5,8,1915,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,Mn,Unf,0,Unf,0,876,876,GasA,Gd,Y,SBrkr,876,540,0,1416,0,0,1,1,4,1,TA,7,Typ,1,Gd,Detchd,1949,Unf,3,720,TA,TA,Y,418,0,194,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,153900 +846,85,RL,NA,16647,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Sawyer,RRAe,Norm,1Fam,SFoyer,5,5,1975,1981,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,Gd,ALQ,1390,Unf,0,0,1390,GasA,TA,Y,SBrkr,1701,0,0,1701,1,0,2,0,3,1,TA,6,Min2,2,TA,Basment,1975,Fin,2,611,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,1,2007,WD,Normal,171000 +847,60,RL,75,9317,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,7,5,1993,1993,Gable,CompShg,HdBoard,HdBoard,BrkFace,137,Gd,TA,PConc,Gd,TA,No,ALQ,513,Unf,0,227,740,GasA,Ex,Y,SBrkr,1006,769,0,1775,1,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1993,Unf,2,425,TA,TA,Y,234,72,192,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,213000 +848,20,RL,36,15523,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,6,1972,1972,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,TA,TA,Av,BLQ,460,Unf,0,404,864,GasA,Ex,Y,SBrkr,864,0,0,864,1,0,1,0,3,1,TA,5,Typ,1,Fa,Attchd,1972,Unf,1,338,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,133500 +849,50,RL,75,45600,Pave,NA,IR2,Bnk,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,1.5Fin,6,8,1908,1997,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,907,907,GasA,TA,Y,SBrkr,1307,1051,0,2358,0,0,3,0,5,1,TA,10,Typ,1,Gd,Detchd,1908,Unf,2,360,Fa,TA,Y,486,40,0,0,175,0,NA,NA,NA,0,9,2008,WD,Normal,240000 +850,80,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Veenker,Feedr,Norm,1Fam,SLvl,6,7,1976,1994,Hip,CompShg,Plywood,Plywood,BrkFace,360,Gd,Gd,CBlock,TA,TA,No,Unf,0,Unf,0,528,528,GasA,Ex,Y,SBrkr,1094,761,0,1855,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1976,RFn,2,512,TA,TA,Y,113,100,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,187000 +851,120,RM,36,4435,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,TwnhsE,1Story,6,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,170,Gd,TA,PConc,Gd,TA,Av,GLQ,659,Unf,0,189,848,GasA,Ex,Y,SBrkr,848,0,0,848,1,0,1,0,1,1,Gd,3,Typ,0,NA,Attchd,2003,Fin,2,420,TA,TA,Y,140,0,0,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,131500 +852,120,RL,NA,3196,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,8,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,40,Gd,TA,PConc,Gd,TA,Gd,Unf,0,Unf,0,1273,1273,GasA,Ex,Y,SBrkr,1456,0,0,1456,0,0,2,0,2,1,Gd,7,Typ,1,TA,Attchd,2003,Fin,2,400,TA,TA,Y,143,20,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,215000 +853,75,RL,53,7128,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2.5Unf,7,5,1941,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,Rec,364,Unf,0,554,918,GasA,Gd,Y,SBrkr,918,728,0,1646,0,0,2,0,4,1,TA,7,Typ,2,Gd,Detchd,1941,Unf,1,240,TA,TA,Y,0,0,0,0,126,0,NA,MnPrv,NA,0,8,2007,WD,Normal,164000 +854,80,RL,NA,12095,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,SLvl,6,6,1964,1964,Gable,CompShg,MetalSd,HdBoard,BrkFace,115,TA,Gd,CBlock,TA,TA,Gd,Rec,564,Unf,0,563,1127,GasA,TA,Y,SBrkr,1445,0,0,1445,0,0,1,1,3,1,TA,7,Typ,1,Fa,Attchd,1964,RFn,2,645,TA,TA,Y,180,0,0,0,0,0,NA,MnPrv,NA,0,8,2009,WD,Normal,158000 +855,20,RL,102,17920,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,4,1955,1974,Hip,CompShg,Wd Sdng,Plywood,None,0,TA,TA,CBlock,TA,TA,Mn,ALQ,306,Rec,1085,372,1763,GasA,TA,Y,SBrkr,1779,0,0,1779,1,0,1,1,3,1,TA,6,Typ,1,Gd,Attchd,1955,Unf,2,454,TA,TA,Y,0,418,0,0,312,0,NA,NA,NA,0,7,2006,WD,Abnorml,170000 +856,20,RL,NA,6897,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,8,1962,2010,Gable,CompShg,HdBoard,HdBoard,None,0,TA,Gd,CBlock,TA,TA,No,ALQ,659,Unf,0,381,1040,GasA,Ex,Y,SBrkr,1040,0,0,1040,1,0,1,1,3,1,TA,6,Typ,0,NA,Detchd,1962,Unf,1,260,TA,TA,Y,0,104,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,127000 +857,80,RL,NA,10970,Pave,NA,IR1,Low,AllPub,Inside,Mod,CollgCr,Norm,Norm,1Fam,SLvl,6,6,1978,1978,Gable,CompShg,Plywood,HdBoard,None,0,TA,TA,CBlock,Gd,Gd,Gd,GLQ,505,LwQ,435,0,940,GasA,TA,Y,SBrkr,1026,0,0,1026,1,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1981,Unf,2,576,TA,Fa,Y,0,0,34,0,0,0,NA,MnPrv,NA,0,10,2008,WD,Normal,147000 +858,60,RL,65,8125,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1994,1995,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,702,702,GasA,Gd,Y,SBrkr,702,779,0,1481,0,0,2,1,3,1,TA,6,Typ,1,TA,Attchd,1994,Fin,2,343,TA,TA,Y,0,36,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,174000 +859,20,RL,80,10400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,7,5,1976,1976,Gable,CompShg,HdBoard,HdBoard,BrkFace,189,TA,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,1090,1090,GasA,TA,Y,SBrkr,1370,0,0,1370,0,0,2,0,3,1,TA,6,Typ,1,TA,Attchd,1976,RFn,2,479,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,6,2009,WD,Family,152000 +860,60,RL,NA,11029,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NWAmes,PosA,Norm,1Fam,2Story,6,7,1968,1984,Gable,CompShg,HdBoard,HdBoard,BrkFace,220,TA,TA,CBlock,TA,TA,Mn,BLQ,619,Unf,0,435,1054,GasA,TA,Y,SBrkr,1512,1142,0,2654,1,0,2,1,4,1,Gd,9,Typ,1,Gd,Attchd,1968,Unf,2,619,TA,TA,Y,0,65,0,0,222,0,NA,NA,NA,0,8,2006,WD,Normal,250000 +861,50,RL,55,7642,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Crawfor,Norm,Norm,1Fam,1.5Fin,7,8,1918,1998,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,912,912,GasA,Gd,Y,SBrkr,912,514,0,1426,0,0,1,1,3,1,Gd,7,Typ,1,Gd,Detchd,1925,Unf,1,216,TA,TA,Y,0,240,0,0,0,0,NA,GdPrv,NA,0,6,2007,WD,Normal,189950 +862,190,RL,75,11625,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,2fmCon,1Story,5,4,1965,1965,Hip,CompShg,Plywood,HdBoard,None,0,TA,TA,PConc,TA,TA,Mn,BLQ,841,Unf,0,198,1039,GasA,Ex,Y,SBrkr,1039,0,0,1039,1,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1965,Unf,2,504,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,131500 +863,20,RL,81,9672,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,SawyerW,Norm,Norm,1Fam,1Story,6,5,1984,1985,Hip,CompShg,HdBoard,Plywood,None,0,TA,TA,PConc,Gd,TA,No,GLQ,338,Unf,0,702,1040,GasA,TA,Y,SBrkr,1097,0,0,1097,0,0,2,0,3,1,TA,6,Typ,0,NA,Attchd,1986,Unf,2,480,TA,TA,Y,0,0,0,0,0,0,NA,GdPrv,NA,0,5,2010,WD,Normal,152000 +864,20,RL,70,7931,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1959,1959,Hip,CompShg,BrkFace,Plywood,None,0,TA,TA,CBlock,TA,TA,No,BLQ,1148,Unf,0,0,1148,GasA,TA,Y,SBrkr,1148,0,0,1148,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1959,Unf,1,672,TA,TA,Y,0,0,0,0,0,0,NA,GdPrv,NA,0,7,2009,WD,Normal,132500 +865,20,FV,72,8640,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,7,5,2007,2008,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,TA,No,Unf,0,Unf,0,1372,1372,GasA,Ex,Y,SBrkr,1372,0,0,1372,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2008,Fin,2,529,TA,TA,Y,0,140,0,0,0,0,NA,NA,NA,0,5,2008,New,Partial,250580 +866,20,RL,NA,8750,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1970,1970,Gable,CompShg,MetalSd,MetalSd,BrkFace,76,TA,TA,CBlock,TA,TA,No,BLQ,828,Unf,0,174,1002,GasA,TA,Y,SBrkr,1002,0,0,1002,1,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1973,Unf,2,902,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,8,2009,WD,Normal,148500 +867,20,RL,67,10656,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,8,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,Stone,274,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1638,1638,GasA,Ex,Y,SBrkr,1646,0,0,1646,0,0,2,0,3,1,Gd,6,Typ,1,Gd,Attchd,2007,RFn,3,870,TA,TA,Y,192,80,0,0,0,0,NA,NA,NA,0,11,2007,New,Partial,248900 +868,20,RL,85,6970,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,4,5,1961,1961,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,932,Unf,0,108,1040,GasA,TA,Y,SBrkr,1120,0,0,1120,1,0,1,1,3,1,Fa,5,Typ,0,NA,Attchd,1961,RFn,2,544,TA,TA,Y,168,0,0,0,0,0,NA,NA,Shed,400,5,2007,WD,Normal,129000 +869,60,RL,NA,14762,Pave,NA,IR2,Lvl,AllPub,Corner,Gtl,Gilbert,Feedr,Norm,1Fam,2Story,5,6,1948,1950,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,Gd,Y,SBrkr,1547,720,53,2320,0,0,2,0,2,1,TA,7,Typ,1,TA,Attchd,1979,Unf,2,672,TA,TA,P,120,144,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,169000 +870,60,RL,80,9938,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,7,5,1993,1994,Gable,CompShg,MetalSd,MetalSd,BrkFace,246,Gd,TA,PConc,Gd,TA,No,GLQ,750,Unf,0,300,1050,GasA,Ex,Y,SBrkr,1062,887,0,1949,1,0,2,1,3,1,Gd,8,Typ,1,TA,Attchd,1993,Fin,2,574,TA,TA,Y,156,90,0,0,0,0,NA,GdPrv,NA,0,6,2010,WD,Normal,236000 +871,20,RL,60,6600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,PosN,Norm,1Fam,1Story,5,5,1962,1962,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,894,894,GasA,Gd,N,SBrkr,894,0,0,894,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1962,Unf,1,308,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,109500 +872,60,RL,70,8750,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,6,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,116,TA,TA,PConc,Gd,TA,No,GLQ,505,Unf,0,299,804,GasA,Ex,Y,SBrkr,804,878,0,1682,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,1998,RFn,2,523,TA,TA,Y,0,77,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,200500 +873,20,RL,74,8892,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1953,1996,Gable,CompShg,WdShing,Wd Shng,None,0,Gd,TA,Stone,TA,TA,Av,Unf,0,Unf,0,105,105,GasA,Gd,Y,SBrkr,910,0,0,910,0,0,1,0,3,1,Gd,5,Typ,0,NA,Attchd,1953,Unf,2,414,TA,TA,Y,196,0,150,0,0,0,NA,GdWo,NA,0,10,2008,WD,Normal,116000 +874,40,RL,60,12144,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1949,1950,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,CBlock,TA,TA,No,Rec,375,Unf,0,457,832,GasA,Gd,Y,SBrkr,1036,0,232,1268,0,0,1,0,3,1,TA,6,Typ,1,Gd,Attchd,1949,Unf,1,288,TA,TA,Y,0,28,0,0,0,0,NA,NA,Othr,0,9,2009,WD,Normal,133000 +875,50,RM,52,5720,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1.5Fin,5,6,1941,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,676,676,GasA,Ex,Y,SBrkr,676,455,0,1131,0,0,1,1,3,1,TA,5,Typ,0,NA,Detchd,1941,Unf,1,200,TA,TA,Y,26,0,0,0,0,0,NA,NA,NA,0,8,2009,WD,Abnorml,66500 +876,60,FV,75,9000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,8,5,2007,2007,Gable,CompShg,CemntBd,CmentBd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,64,Unf,0,1120,1184,GasA,Ex,Y,SBrkr,1184,1426,0,2610,0,0,2,1,4,1,Ex,11,Typ,1,Gd,BuiltIn,2007,Fin,2,550,TA,TA,Y,208,364,0,0,0,0,NA,NA,NA,0,8,2007,New,Partial,303477 +877,20,RL,94,25286,Pave,NA,Reg,HLS,AllPub,Inside,Mod,Mitchel,Norm,Norm,1Fam,1Story,4,5,1963,1963,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,PConc,TA,TA,Gd,ALQ,633,Unf,0,431,1064,GasA,Gd,Y,SBrkr,1040,0,0,1040,1,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1963,Unf,2,648,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,1,2007,WD,Normal,132250 +878,60,RL,74,8834,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,9,5,2004,2005,Hip,CompShg,VinylSd,VinylSd,Stone,216,Gd,TA,PConc,Ex,TA,No,GLQ,1170,Unf,0,292,1462,GasA,Ex,Y,SBrkr,1462,762,0,2224,1,0,2,1,4,1,Ex,10,Typ,1,Gd,Attchd,2004,Fin,3,738,TA,TA,Y,184,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,350000 +879,85,RL,88,11782,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,SFoyer,5,7,1961,1995,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,Av,ALQ,899,Unf,0,210,1109,GasA,TA,Y,SBrkr,1155,0,0,1155,1,0,1,0,3,1,Gd,6,Min2,0,NA,Detchd,1987,Unf,2,576,TA,TA,Y,192,0,0,0,0,0,NA,MnPrv,Shed,400,6,2010,WD,Normal,148000 +880,20,RL,NA,7000,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,8,1978,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,90,Gd,Gd,CBlock,TA,TA,No,ALQ,646,Unf,0,218,864,GasA,Ex,Y,SBrkr,864,0,0,864,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1978,Unf,1,336,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,7,2009,WD,Normal,136500 +881,20,RL,60,7024,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Ex,Gd,No,ALQ,980,Unf,0,110,1090,GasA,Gd,Y,SBrkr,1090,0,0,1090,1,0,1,1,2,1,TA,5,Typ,0,NA,Attchd,2005,Fin,2,450,TA,TA,Y,0,49,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,157000 +882,50,RL,44,13758,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Timber,Norm,Norm,1Fam,1.5Fin,7,5,1990,1991,Gable,CompShg,HdBoard,HdBoard,BrkFace,117,Gd,Gd,CBlock,Gd,TA,Mn,LwQ,902,Unf,0,254,1156,GasA,Ex,Y,SBrkr,1187,530,0,1717,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1990,RFn,2,400,TA,TA,Y,168,36,0,0,0,0,NA,NA,NA,0,4,2007,WD,Normal,187500 +883,60,RL,NA,9636,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1992,1993,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,808,808,GasA,Gd,Y,SBrkr,808,785,0,1593,0,0,2,1,3,1,TA,7,Typ,1,TA,BuiltIn,1993,RFn,2,389,TA,TA,Y,342,40,0,0,0,0,NA,MnPrv,NA,0,12,2009,WD,Normal,178000 +884,75,RL,60,6204,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,2.5Fin,4,5,1912,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,PConc,TA,Fa,No,Unf,0,Unf,0,795,795,GasA,TA,N,SBrkr,954,795,481,2230,1,0,1,0,5,1,TA,10,Typ,0,NA,Detchd,1997,Unf,1,440,TA,Gd,Y,0,188,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,118500 +885,20,RL,65,7150,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1967,1967,Gable,CompShg,HdBoard,HdBoard,BrkFace,60,TA,TA,CBlock,TA,TA,No,BLQ,432,Unf,0,460,892,GasA,TA,Y,SBrkr,892,0,0,892,0,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1967,RFn,1,288,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,7,2009,WD,Normal,100000 +886,120,FV,50,5119,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Somerst,Norm,Norm,TwnhsE,1Story,9,5,1999,2000,Gable,CompShg,MetalSd,MetalSd,BrkFace,60,Gd,TA,PConc,Ex,TA,Av,GLQ,1238,Unf,0,460,1698,GasA,Ex,Y,SBrkr,1709,0,0,1709,1,0,2,0,2,1,Gd,5,Typ,1,TA,Attchd,1999,Fin,2,506,TA,TA,Y,97,65,0,0,0,0,NA,NA,NA,0,1,2008,CWD,Abnorml,328900 +887,90,RL,70,8393,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,Duplex,1Story,5,5,1959,2005,Gable,CompShg,MetalSd,MetalSd,BrkFace,122,TA,TA,CBlock,TA,TA,No,LwQ,528,Unf,0,1098,1626,GasA,Ex,Y,SBrkr,1712,0,0,1712,0,0,2,0,4,2,TA,8,Typ,0,NA,Attchd,2005,Fin,2,588,TA,TA,Y,272,54,0,0,0,0,NA,NA,NA,0,6,2006,WD,Family,145000 +888,50,RL,59,16466,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,5,7,1955,1955,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,PConc,TA,TA,No,Unf,0,Unf,0,816,816,GasA,TA,Y,SBrkr,872,521,0,1393,0,0,1,1,3,1,TA,8,Typ,0,NA,Attchd,1955,Unf,1,300,TA,TA,Y,121,0,0,0,265,0,NA,NA,NA,0,4,2008,WD,Normal,135500 +889,20,RL,95,15865,Pave,NA,IR1,Lvl,AllPub,Inside,Mod,NAmes,Norm,Norm,1Fam,1Story,8,6,1970,1970,Flat,Tar&Grv,Wd Sdng,Wd Sdng,None,0,Gd,Gd,PConc,TA,Gd,Gd,ALQ,351,Rec,823,1043,2217,GasA,Ex,Y,SBrkr,2217,0,0,2217,1,0,2,0,4,1,Gd,8,Typ,1,TA,Attchd,1970,Unf,2,621,TA,TA,Y,81,207,0,0,224,0,NA,NA,NA,0,10,2007,WD,Normal,268000 +890,20,RL,128,12160,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Feedr,Norm,1Fam,1Story,6,4,1953,1953,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,90,TA,TA,CBlock,TA,TA,No,BLQ,1024,Unf,0,481,1505,GasA,Ex,Y,SBrkr,1505,0,0,1505,1,0,1,0,2,1,TA,6,Typ,1,TA,Attchd,1953,RFn,2,505,TA,TA,Y,0,0,0,162,0,0,NA,NA,NA,0,2,2009,WD,Normal,149500 +891,50,RL,60,8064,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Artery,Norm,1Fam,1.5Fin,5,7,1949,2006,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,Mn,Unf,0,Unf,0,672,672,GasA,Ex,Y,SBrkr,672,252,0,924,0,0,1,0,3,1,TA,6,Typ,1,Po,Detchd,2003,Unf,2,576,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,Shed,2000,7,2007,WD,Normal,122900 +892,60,RL,70,11184,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,2Story,6,5,1978,1978,Hip,CompShg,HdBoard,HdBoard,BrkFace,92,TA,TA,CBlock,TA,TA,No,LwQ,226,Rec,500,192,918,GasA,Gd,Y,SBrkr,918,765,0,1683,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1978,RFn,2,440,TA,TA,Y,243,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,172500 +893,20,RL,70,8414,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,6,8,1963,2003,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,GLQ,663,Unf,0,396,1059,GasA,TA,Y,SBrkr,1068,0,0,1068,0,1,1,0,3,1,TA,6,Typ,0,NA,Attchd,1963,RFn,1,264,TA,TA,Y,192,0,0,0,0,0,NA,MnPrv,NA,0,2,2006,WD,Normal,154500 +894,20,RL,NA,13284,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,PosN,Norm,1Fam,1Story,5,5,1954,1954,Gable,CompShg,Wd Sdng,Plywood,None,0,TA,TA,PConc,Gd,TA,Mn,BLQ,1064,Unf,0,319,1383,GasA,TA,Y,SBrkr,1383,0,0,1383,1,0,1,0,3,1,TA,6,Typ,1,Gd,Attchd,1954,Unf,1,354,TA,TA,Y,511,116,0,0,0,0,NA,GdPrv,NA,0,6,2008,WD,Normal,165000 +895,90,RL,64,7018,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,SawyerW,Norm,Norm,Duplex,1Story,5,5,1979,1979,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,1535,0,0,1535,0,0,2,0,4,2,TA,8,Typ,0,NA,Attchd,1979,Unf,2,400,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Alloca,118858 +896,60,RL,71,7056,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,2Story,6,5,1963,1963,Hip,CompShg,HdBoard,HdBoard,BrkFace,415,TA,TA,CBlock,TA,TA,No,BLQ,400,Unf,0,380,780,GasA,TA,Y,SBrkr,983,813,0,1796,1,0,1,1,4,1,TA,8,Typ,1,TA,Attchd,1963,RFn,2,483,TA,TA,Y,0,50,0,0,0,0,NA,NA,NA,0,10,2008,WD,Normal,140000 +897,30,RM,50,8765,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1Story,4,6,1936,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,ALQ,285,Unf,0,666,951,GasA,Ex,N,SBrkr,951,0,0,951,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1936,Unf,1,327,TA,TA,Y,0,28,0,0,0,0,NA,NA,NA,0,4,2006,WD,Abnorml,106500 +898,90,RL,64,7018,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Feedr,Norm,Duplex,2Story,5,5,1979,1979,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,1120,1120,0,2240,0,0,2,0,6,2,TA,12,Typ,0,NA,Detchd,1979,Unf,2,528,TA,TA,Y,154,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Alloca,142953 +899,20,RL,100,12919,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,9,5,2009,2010,Hip,CompShg,VinylSd,VinylSd,Stone,760,Ex,TA,PConc,Ex,TA,Gd,GLQ,2188,Unf,0,142,2330,GasA,Ex,Y,SBrkr,2364,0,0,2364,1,0,2,1,2,1,Ex,11,Typ,2,Gd,Attchd,2009,Fin,3,820,TA,TA,Y,0,67,0,0,0,0,NA,NA,NA,0,3,2010,New,Partial,611657 +900,20,RL,65,6993,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,5,7,1961,1994,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,TA,TA,No,BLQ,465,Unf,0,447,912,GasA,TA,Y,SBrkr,1236,0,0,1236,0,0,1,0,3,1,TA,6,Typ,1,TA,Attchd,1961,Unf,1,288,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,135000 +901,20,RL,NA,7340,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,6,1971,1971,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,ALQ,322,Unf,0,536,858,GasA,TA,Y,SBrkr,858,0,0,858,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1979,Unf,1,684,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,110000 +902,20,RL,64,8712,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1957,2000,Hip,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,Mn,BLQ,860,Unf,0,132,992,GasA,TA,Y,SBrkr,1306,0,0,1306,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1968,Unf,1,756,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,153000 +903,60,RL,63,7875,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,783,783,GasA,Ex,Y,SBrkr,807,702,0,1509,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2003,Fin,2,393,TA,TA,Y,0,75,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,180000 +904,20,RL,50,14859,Pave,NA,IR1,HLS,AllPub,CulDSac,Gtl,Gilbert,Norm,Norm,1Fam,1Story,7,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,BrkFace,27,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1670,1670,GasA,Ex,Y,SBrkr,1670,0,0,1670,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2006,RFn,3,690,TA,TA,Y,144,60,0,0,0,0,NA,NA,NA,0,8,2006,New,Partial,240000 +905,20,RL,NA,6173,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,6,1967,1967,Gable,CompShg,HdBoard,Wd Sdng,BrkFace,75,TA,TA,CBlock,TA,TA,No,GLQ,599,Unf,0,277,876,GasA,TA,Y,SBrkr,902,0,0,902,0,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1967,Unf,1,288,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,8,2007,WD,Normal,125500 +906,20,RL,80,9920,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1954,1954,Gable,CompShg,HdBoard,HdBoard,Stone,110,TA,TA,CBlock,TA,TA,No,Rec,354,LwQ,290,412,1056,GasA,TA,Y,SBrkr,1063,0,0,1063,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1954,RFn,1,280,TA,TA,Y,0,0,164,0,0,0,NA,MnPrv,NA,0,2,2010,WD,Normal,128000 +907,20,RL,116,13501,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,208,Gd,TA,PConc,Gd,TA,No,GLQ,63,Unf,0,1560,1623,GasA,Ex,Y,SBrkr,1636,0,0,1636,1,0,2,0,3,1,Gd,8,Typ,1,Gd,Attchd,2006,RFn,3,865,TA,TA,Y,0,60,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,255000 +908,50,RL,86,11500,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1.5Fin,7,7,1936,1987,Gable,CompShg,BrkFace,BrkFace,None,0,Gd,TA,CBlock,Gd,TA,No,Rec,223,Unf,0,794,1017,GasA,Gd,Y,SBrkr,1020,1037,0,2057,0,0,1,1,3,1,Gd,6,Typ,1,Gd,Attchd,1936,Fin,1,180,Fa,TA,Y,0,0,0,0,322,0,NA,NA,NA,0,6,2006,WD,Normal,250000 +909,20,RL,NA,8885,Pave,NA,IR1,Low,AllPub,Inside,Mod,Mitchel,Norm,Norm,1Fam,1Story,5,5,1983,1983,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,Av,BLQ,301,ALQ,324,239,864,GasA,TA,Y,SBrkr,902,0,0,902,1,0,1,0,2,1,TA,5,Typ,0,NA,Attchd,1983,Unf,2,484,TA,TA,Y,164,0,0,0,0,0,NA,MnPrv,NA,0,6,2006,WD,Normal,131000 +910,60,RL,149,12589,Pave,NA,IR2,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,742,742,GasA,Ex,Y,SBrkr,742,742,0,1484,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2005,Fin,2,390,TA,TA,Y,36,24,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,174000 +911,90,RL,80,11600,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Feedr,Norm,Duplex,2Story,5,5,1960,1960,Gable,CompShg,MetalSd,MetalSd,BrkFace,361,TA,TA,CBlock,TA,TA,No,Rec,443,Unf,0,662,1105,GasA,TA,Y,FuseA,1105,1169,0,2274,0,0,2,0,5,2,TA,12,Typ,0,NA,Detchd,1960,Unf,2,480,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,1,2010,WD,Normal,154300 +912,20,RL,NA,9286,Pave,NA,IR1,Lvl,AllPub,CulDSac,Mod,CollgCr,Norm,Norm,1Fam,1Story,5,7,1977,1989,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,Gd,Gd,Av,ALQ,196,Unf,0,1072,1268,GasA,TA,Y,SBrkr,1268,0,0,1268,0,0,1,1,3,1,Gd,5,Typ,0,NA,Detchd,1978,Unf,1,252,TA,TA,Y,173,0,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,143500 +913,30,RM,51,6120,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1Story,5,7,1925,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Rec,489,Unf,0,279,768,GasA,TA,N,SBrkr,1015,0,0,1015,0,0,1,0,3,1,TA,6,Min1,0,NA,Detchd,1925,Unf,1,450,TA,TA,Y,0,0,112,0,120,0,NA,MnPrv,Shed,620,7,2006,WD,Abnorml,88000 +914,90,RH,82,6270,Pave,NA,Reg,HLS,AllPub,Inside,Gtl,Crawfor,Norm,Norm,Duplex,2Story,5,6,1949,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,284,Unf,0,717,1001,GasA,TA,N,FuseA,1001,1001,0,2002,0,0,2,0,4,2,TA,8,Typ,0,NA,2Types,1949,Unf,3,871,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,145000 +915,160,FV,30,3000,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,6,5,2009,2009,Gable,CompShg,VinylSd,VinylSd,Stone,76,Gd,TA,PConc,Gd,TA,Av,GLQ,294,Unf,0,318,612,GasA,Ex,Y,SBrkr,612,612,0,1224,0,0,2,1,2,1,Gd,4,Typ,0,NA,Detchd,2009,RFn,2,528,TA,TA,Y,0,234,0,0,0,0,NA,NA,NA,0,6,2009,New,Partial,173733 +916,160,RM,21,2001,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,Twnhs,2Story,4,5,1970,1970,Gable,CompShg,CemntBd,CmentBd,BrkFace,80,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,546,546,GasA,Fa,Y,SBrkr,546,546,0,1092,0,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1970,Unf,1,286,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,1,2007,WD,Normal,75000 +917,20,C (all),50,9000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1Story,2,3,1949,1950,Gable,CompShg,AsbShng,AsbShng,None,0,TA,TA,CBlock,TA,TA,Av,BLQ,50,Unf,0,430,480,GasA,TA,N,FuseA,480,0,0,480,1,0,0,0,1,1,TA,4,Typ,0,NA,Detchd,1958,Unf,1,308,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,10,2006,WD,Abnorml,35311 +918,20,RL,NA,17140,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,6,1956,1956,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,1059,Unf,0,75,1134,GasA,Ex,Y,FuseA,1229,0,0,1229,0,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1956,RFn,1,284,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,135000 +919,60,RL,103,13125,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,SawyerW,Norm,Norm,1Fam,2Story,7,5,1991,1991,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Ex,TA,Mn,BLQ,48,GLQ,634,422,1104,GasA,Ex,Y,SBrkr,912,1215,0,2127,1,0,2,1,4,1,Gd,8,Typ,1,TA,Attchd,1991,RFn,3,833,TA,TA,Y,72,192,224,0,0,0,NA,GdPrv,NA,0,11,2007,WD,Normal,238000 +920,20,RL,87,11029,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,8,1958,2002,Hip,CompShg,MetalSd,MetalSd,None,0,Ex,TA,CBlock,Gd,TA,No,ALQ,528,BLQ,411,245,1184,GasA,Ex,Y,SBrkr,1414,0,0,1414,1,0,1,0,3,1,TA,6,Min1,1,TA,Attchd,1990,Unf,2,601,TA,TA,Y,0,51,0,0,190,0,NA,NA,NA,0,5,2008,WD,Normal,176500 +921,60,RL,70,8462,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,6,5,1994,1994,Gable,CompShg,HdBoard,HdBoard,BrkFace,105,Gd,Gd,PConc,Gd,Gd,No,GLQ,814,Unf,0,114,928,GasA,Ex,Y,SBrkr,936,785,0,1721,0,1,2,1,3,1,Gd,7,Typ,0,NA,Attchd,1994,RFn,2,471,TA,TA,Y,300,87,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,201000 +922,90,RL,67,8777,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Feedr,Norm,Duplex,1.5Fin,5,7,1900,2003,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,1084,Unf,0,188,1272,GasA,Gd,Y,SBrkr,1272,928,0,2200,2,0,2,2,4,2,TA,9,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,70,0,0,0,0,NA,GdPrv,NA,0,9,2008,WD,Normal,145900 +923,20,RL,65,10237,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,RRAn,Norm,1Fam,1Story,6,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,28,Unf,0,1288,1316,GasA,Ex,Y,SBrkr,1316,0,0,1316,0,0,2,0,3,1,Gd,6,Typ,1,Gd,Attchd,2005,Fin,2,397,TA,TA,Y,100,0,0,23,0,0,NA,NA,NA,0,10,2006,New,Partial,169990 +924,120,RL,50,8012,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,TwnhsE,1Story,6,5,1993,1994,Gable,CompShg,Plywood,Plywood,None,0,Gd,TA,PConc,Gd,TA,No,LwQ,165,GLQ,841,598,1604,GasA,Ex,Y,SBrkr,1617,0,0,1617,1,0,2,0,2,1,Gd,5,Typ,1,Fa,Attchd,1993,RFn,2,533,TA,TA,Y,0,69,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,193000 +925,20,RL,79,10240,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,6,1980,1980,Gable,CompShg,Plywood,Plywood,BrkFace,157,TA,Gd,CBlock,Gd,TA,No,BLQ,625,LwQ,1061,0,1686,GasA,TA,Y,SBrkr,1686,0,0,1686,1,0,2,0,3,1,TA,7,Typ,1,TA,Attchd,1980,Unf,2,612,TA,TA,Y,384,131,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,207500 +926,20,RL,NA,15611,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NWAmes,Norm,Norm,1Fam,1Story,5,6,1977,1977,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Av,ALQ,767,LwQ,93,266,1126,GasA,TA,Y,SBrkr,1126,0,0,1126,0,1,2,0,3,1,Ex,6,Typ,0,NA,Attchd,1977,RFn,2,540,TA,TA,Y,180,0,0,0,0,0,NA,NA,NA,0,3,2008,WD,Abnorml,175000 +927,60,RL,93,11999,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,8,5,2003,2004,Hip,CompShg,VinylSd,VinylSd,BrkFace,340,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1181,1181,GasA,Ex,Y,SBrkr,1234,1140,0,2374,0,0,2,1,4,1,Ex,10,Typ,1,Gd,BuiltIn,2003,Fin,3,656,TA,TA,Y,104,100,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,285000 +928,60,RL,NA,9900,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Feedr,Norm,1Fam,2Story,7,5,1968,1968,Gable,CompShg,MetalSd,MetalSd,BrkFace,342,TA,TA,CBlock,TA,TA,No,BLQ,552,Unf,0,280,832,GasA,Gd,Y,SBrkr,1098,880,0,1978,0,0,2,1,4,1,TA,9,Typ,1,Gd,Attchd,1968,RFn,2,486,TA,TA,Y,0,43,0,0,0,0,NA,GdPrv,NA,0,4,2008,WD,Normal,176000 +929,20,RL,NA,11838,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,8,5,2001,2001,Hip,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1753,1753,GasA,Ex,Y,SBrkr,1788,0,0,1788,0,0,2,0,3,1,Ex,7,Typ,1,TA,Attchd,2001,RFn,2,522,TA,TA,Y,202,151,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,236500 +930,60,RL,NA,13006,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,1997,1997,Gable,CompShg,HdBoard,HdBoard,BrkFace,285,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,964,964,GasA,Gd,Y,SBrkr,993,1243,0,2236,0,0,2,1,4,1,Gd,8,Typ,1,TA,BuiltIn,1997,Fin,2,642,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2006,WD,Normal,222000 +931,20,RL,73,8925,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,8,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,16,Unf,0,1450,1466,GasA,Ex,Y,SBrkr,1466,0,0,1466,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2007,Fin,3,610,TA,TA,Y,100,18,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,201000 +932,20,RL,70,9100,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1965,1965,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,338,Rec,466,121,925,GasA,Ex,Y,SBrkr,925,0,0,925,0,1,1,0,2,1,TA,5,Typ,0,NA,Detchd,1965,Unf,1,429,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,7,2009,WD,Normal,117500 +933,20,RL,84,11670,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Somerst,RRNn,Norm,1Fam,1Story,9,5,2006,2006,Hip,CompShg,VinylSd,ImStucc,Stone,302,Ex,TA,PConc,Ex,Gd,No,Unf,0,Unf,0,1905,1905,GasA,Ex,Y,SBrkr,1905,0,0,1905,0,0,2,0,3,1,Ex,8,Typ,1,Gd,Attchd,2006,Fin,3,788,TA,TA,Y,0,191,0,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,320000 +934,20,RL,63,8487,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,210,Gd,TA,PConc,Gd,TA,Av,GLQ,20,Unf,0,1480,1500,GasA,Ex,Y,SBrkr,1500,0,0,1500,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2004,RFn,2,570,TA,TA,Y,192,36,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,190000 +935,20,RL,313,27650,Pave,NA,IR2,HLS,AllPub,Inside,Mod,NAmes,PosA,Norm,1Fam,1Story,7,7,1960,2007,Flat,Tar&Grv,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,Gd,TA,Gd,GLQ,425,Unf,0,160,585,GasA,Ex,Y,SBrkr,2069,0,0,2069,1,0,2,0,4,1,Gd,9,Typ,1,Gd,Attchd,1960,RFn,2,505,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2008,WD,Normal,242000 +936,30,RL,52,5825,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1Story,4,5,1926,1953,Gable,CompShg,MetalSd,MetalSd,BrkFace,108,TA,Gd,PConc,Fa,TA,Mn,Unf,0,Unf,0,600,600,GasA,Gd,Y,SBrkr,747,0,0,747,0,0,1,0,1,1,TA,5,Typ,0,NA,Detchd,1953,Unf,2,528,TA,TA,Y,0,0,32,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,79900 +937,20,RL,67,10083,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,1Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,NA,NA,Gd,TA,PConc,Gd,TA,No,GLQ,833,Unf,0,343,1176,GasA,Ex,Y,SBrkr,1200,0,0,1200,1,0,2,0,2,1,Gd,5,Typ,0,NA,Attchd,2003,RFn,2,555,TA,TA,Y,0,41,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,184900 +938,60,RL,75,9675,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Mn,GLQ,341,Unf,0,772,1113,GasA,Ex,Y,SBrkr,1113,858,0,1971,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2005,RFn,2,689,TA,TA,Y,0,48,0,0,0,0,NA,NA,NA,0,2,2009,WD,Normal,253000 +939,60,RL,73,8760,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,Gd,Mn,GLQ,464,Unf,0,927,1391,GasA,Ex,Y,SBrkr,1391,571,0,1962,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2006,RFn,3,868,TA,TA,Y,0,90,0,0,0,0,NA,NA,NA,0,8,2006,New,Partial,239799 +940,70,RL,NA,24090,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,2Story,7,7,1940,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,Mn,Unf,0,Unf,0,1032,1032,GasA,Ex,Y,SBrkr,1207,1196,0,2403,0,0,2,0,4,1,TA,10,Typ,2,TA,Attchd,1940,Unf,1,349,TA,TA,Y,56,0,318,0,0,0,NA,NA,NA,0,6,2010,COD,Normal,244400 +941,90,RL,55,12640,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,Duplex,1Story,6,5,1976,1976,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,Gd,Rec,936,LwQ,396,396,1728,GasA,TA,Y,SBrkr,1728,0,0,1728,0,0,2,0,4,2,TA,8,Typ,0,NA,Attchd,1976,Unf,2,574,TA,TA,Y,40,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,150900 +942,60,RL,NA,8755,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,Gilbert,RRNn,Norm,1Fam,2Story,7,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,BrkFace,298,Gd,TA,PConc,Gd,TA,No,ALQ,772,Unf,0,220,992,GasA,Ex,Y,SBrkr,1022,1038,0,2060,1,0,2,1,3,1,Gd,8,Typ,1,TA,BuiltIn,1999,RFn,2,390,TA,TA,Y,0,0,0,168,0,0,NA,GdPrv,NA,0,6,2009,WD,Normal,214000 +943,90,RL,42,7711,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,Duplex,1Story,4,3,1977,1977,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,PConc,Gd,TA,Gd,GLQ,1440,Unf,0,0,1440,GasA,TA,Y,SBrkr,1440,0,0,1440,2,0,2,0,4,2,TA,8,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,321,0,0,0,0,0,NA,NA,NA,0,8,2007,Oth,Abnorml,150000 +944,90,RL,100,25000,Pave,NA,Reg,Low,AllPub,Inside,Gtl,Mitchel,Norm,Norm,Duplex,1Story,5,4,1967,1967,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,TA,TA,Av,Unf,0,Unf,0,1632,1632,GasA,TA,Y,SBrkr,1632,0,0,1632,0,0,2,0,4,2,TA,8,Typ,0,NA,Attchd,1967,Unf,2,576,TA,TA,P,0,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,143000 +945,20,RL,NA,14375,Pave,NA,IR1,Lvl,NoSeWa,CulDSac,Gtl,Timber,Norm,Norm,1Fam,SLvl,6,6,1958,1958,Gable,CompShg,HdBoard,HdBoard,BrkFace,541,TA,TA,CBlock,TA,TA,No,GLQ,111,Rec,354,354,819,GasA,Gd,Y,FuseA,1344,0,0,1344,0,1,1,0,3,1,Gd,7,Typ,1,Gd,Basment,1958,RFn,2,525,TA,TA,Y,0,118,0,0,233,0,NA,NA,NA,0,1,2009,COD,Abnorml,137500 +946,50,RM,98,8820,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,5,6,1890,1996,Hip,CompShg,VinylSd,VinylSd,None,0,TA,TA,BrkTil,TA,TA,No,LwQ,1088,Unf,0,0,1088,GasA,TA,Y,SBrkr,1188,561,120,1869,0,0,1,0,2,1,TA,7,Typ,0,NA,Detchd,1963,Unf,2,456,TA,TA,Y,48,0,244,0,0,0,NA,MnWw,NA,0,9,2009,WD,Normal,124900 +947,80,RL,70,8163,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,5,6,1959,1959,Gable,CompShg,HdBoard,HdBoard,BrkFace,128,TA,Gd,CBlock,TA,TA,Av,ALQ,748,BLQ,294,102,1144,GasA,TA,Y,SBrkr,1144,0,0,1144,1,0,1,0,3,1,TA,6,Typ,1,TA,Attchd,1959,RFn,1,796,TA,TA,Y,86,0,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,143000 +948,20,RL,85,14536,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,8,5,2002,2003,Hip,CompShg,VinylSd,VinylSd,BrkFace,236,Gd,TA,PConc,Gd,TA,Av,GLQ,1300,Unf,0,316,1616,GasA,Ex,Y,SBrkr,1629,0,0,1629,1,0,2,0,3,1,Gd,9,Typ,1,Gd,Attchd,2002,Fin,3,808,TA,TA,Y,0,252,0,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,270000 +949,60,RL,65,14006,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,144,Gd,TA,PConc,Gd,TA,NA,Unf,0,Unf,0,936,936,GasA,Ex,Y,SBrkr,936,840,0,1776,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,2002,RFn,2,474,TA,TA,Y,144,96,0,0,0,0,NA,NA,NA,0,2,2006,WD,Normal,192500 +950,20,RL,78,9360,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,7,1972,2006,Hip,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,982,Unf,0,179,1161,GasA,TA,Y,SBrkr,1381,0,0,1381,1,0,1,1,3,1,Gd,5,Typ,1,TA,Attchd,1972,RFn,2,676,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,197500 +951,20,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,8,1950,2002,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,398,BLQ,149,317,864,GasA,Gd,Y,SBrkr,864,0,0,864,1,0,1,0,3,1,Gd,5,Typ,0,NA,Detchd,1980,RFn,2,720,TA,TA,Y,194,0,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,129000 +952,20,RH,60,7800,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,SawyerW,Norm,Norm,1Fam,1Story,5,5,1965,1965,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,641,Unf,0,187,828,GasA,Gd,Y,SBrkr,965,0,0,965,1,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1979,Unf,1,300,TA,TA,Y,421,0,0,0,0,0,NA,MnPrv,NA,0,7,2006,WD,Abnorml,119900 +953,85,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,SFoyer,5,8,1972,2003,Gable,CompShg,WdShing,HdBoard,None,0,TA,Gd,CBlock,Gd,TA,Av,GLQ,660,Unf,0,108,768,GasA,Gd,Y,SBrkr,768,0,0,768,0,1,1,0,2,1,TA,5,Typ,0,NA,Detchd,1974,Fin,1,396,TA,TA,Y,192,0,0,0,0,0,NA,MnPrv,NA,0,4,2009,WD,Normal,133900 +954,60,RL,NA,11075,Pave,NA,IR1,Lvl,AllPub,Inside,Mod,Mitchel,Norm,Norm,1Fam,2Story,5,4,1969,1969,Gable,CompShg,HdBoard,HdBoard,BrkFace,232,TA,TA,CBlock,TA,TA,Av,ALQ,562,LwQ,193,29,784,GasA,Ex,Y,SBrkr,1168,800,0,1968,0,1,2,1,4,1,TA,7,Min2,1,Po,Attchd,1969,RFn,2,530,TA,TA,Y,305,189,0,0,0,0,NA,MnPrv,Shed,400,9,2008,WD,Normal,172000 +955,90,RL,35,9400,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Edwards,Norm,Norm,Duplex,SFoyer,6,5,1975,1975,Flat,Tar&Grv,WdShing,Plywood,BrkFace,250,TA,TA,CBlock,Gd,Gd,Gd,GLQ,945,Unf,0,0,945,GasA,TA,Y,SBrkr,980,0,0,980,0,2,2,0,4,0,TA,4,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,10,2006,WD,AdjLand,127500 +956,90,RH,82,7136,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,Crawfor,Norm,Norm,Duplex,2Story,6,6,1946,1950,Gable,CompShg,MetalSd,MetalSd,BrkFace,423,TA,TA,CBlock,Gd,TA,No,Rec,484,Unf,0,495,979,GasA,TA,N,FuseF,979,979,0,1958,0,0,2,0,4,2,TA,8,Typ,0,NA,Attchd,1946,Unf,2,492,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,145000 +957,160,RM,24,1300,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blueste,Norm,Norm,TwnhsE,2Story,6,6,1980,1980,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,285,Unf,0,276,561,GasA,TA,Y,SBrkr,561,668,0,1229,0,0,1,1,2,1,TA,5,Typ,1,TA,Attchd,1980,Fin,2,462,TA,TA,Y,150,0,0,0,0,0,NA,GdPrv,NA,0,5,2009,WD,Normal,124000 +958,20,RL,70,7420,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1962,1962,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,417,Unf,0,640,1057,GasA,TA,Y,SBrkr,1057,0,0,1057,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1977,Fin,2,576,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2007,WD,Normal,132000 +959,20,RL,65,8450,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Mn,GLQ,699,Unf,0,638,1337,GasA,Ex,Y,SBrkr,1337,0,0,1337,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2003,RFn,2,531,TA,TA,Y,0,39,0,0,0,0,NA,NA,NA,0,10,2007,WD,Normal,185000 +960,160,FV,24,2572,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Somerst,Norm,Norm,Twnhs,2Story,7,5,1999,1999,Hip,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,ALQ,604,Unf,0,92,696,GasA,Ex,Y,SBrkr,696,720,0,1416,1,0,2,1,3,1,Gd,6,Typ,0,NA,Detchd,1999,Unf,2,484,TA,TA,Y,0,44,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,155000 +961,20,RL,50,7207,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1Story,5,7,1958,2008,Gable,CompShg,Wd Sdng,Plywood,None,0,TA,Gd,CBlock,TA,TA,Gd,BLQ,696,Unf,0,162,858,GasA,Gd,Y,SBrkr,858,0,0,858,1,0,1,0,2,1,TA,4,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,117,0,0,0,0,0,NA,NA,NA,0,2,2010,WD,Normal,116500 +962,60,RL,NA,12227,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NWAmes,PosN,Norm,1Fam,2Story,6,7,1977,1995,Gable,CompShg,HdBoard,HdBoard,BrkFace,424,TA,Gd,CBlock,Gd,Gd,No,ALQ,896,Unf,0,434,1330,GasA,TA,Y,SBrkr,1542,1330,0,2872,1,0,2,1,4,1,TA,11,Typ,1,TA,Attchd,1977,Fin,2,619,TA,TA,Y,550,282,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,272000 +963,160,RL,24,2308,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NPkVill,Norm,Norm,TwnhsE,2Story,6,6,1976,1976,Gable,CompShg,Plywood,Brk Cmn,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,556,Unf,0,248,804,GasA,TA,Y,SBrkr,804,744,0,1548,1,0,2,1,3,1,Gd,7,Typ,1,TA,Detchd,1976,Unf,2,440,TA,TA,Y,48,0,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,155000 +964,20,RL,122,11923,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,9,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,TA,No,Unf,0,Unf,0,1800,1800,GasA,Ex,Y,SBrkr,1800,0,0,1800,0,0,2,0,2,1,Ex,7,Typ,0,NA,Attchd,2007,Fin,2,702,TA,TA,Y,288,136,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,239000 +965,60,RL,80,11316,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Timber,Norm,Norm,1Fam,2Story,7,5,2002,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,44,Gd,TA,PConc,Gd,TA,No,GLQ,624,Unf,0,193,817,GasA,Ex,Y,SBrkr,824,1070,0,1894,1,0,2,1,4,1,Gd,8,Typ,1,Gd,BuiltIn,2002,Fin,2,510,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,2,2010,WD,Normal,214900 +966,60,RL,65,10237,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,RRAn,Norm,1Fam,2Story,6,5,2005,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,783,783,GasA,Ex,Y,SBrkr,783,701,0,1484,0,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2005,Fin,2,393,TA,TA,Y,0,72,0,0,0,0,NA,NA,NA,0,7,2007,New,Partial,178900 +967,50,RL,130,9600,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1.5Fin,5,7,1940,1950,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,Gd,BrkTil,TA,Fa,No,Rec,428,Unf,0,300,728,GasA,Ex,Y,SBrkr,976,332,0,1308,1,0,1,1,2,1,TA,7,Min2,2,TA,Detchd,1940,Unf,1,256,TA,TA,Y,0,70,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,160000 +968,20,RL,NA,7390,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1955,1955,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,151,TA,TA,CBlock,TA,TA,No,ALQ,902,Unf,0,196,1098,GasA,TA,Y,SBrkr,1098,0,0,1098,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1955,Unf,1,260,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,135000 +969,50,RM,50,5925,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,3,6,1910,1950,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,600,600,Grav,Fa,N,SBrkr,600,368,0,968,0,0,1,0,2,1,TA,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,5,2009,WD,Abnorml,37900 +970,190,RL,75,10382,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,2fmCon,SLvl,6,5,1958,1958,Hip,CompShg,HdBoard,HdBoard,BrkFace,105,TA,Fa,CBlock,TA,TA,Gd,ALQ,513,Unf,0,75,588,GasA,TA,Y,SBrkr,1095,0,0,1095,1,0,1,0,2,1,TA,6,Typ,0,NA,Attchd,1958,RFn,1,264,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2006,ConLD,Normal,140000 +971,50,RL,60,10800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1.5Fin,4,4,1949,1950,Gable,CompShg,AsbShng,AsbShng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,720,720,GasA,TA,N,FuseA,720,472,0,1192,0,0,1,1,4,1,TA,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,12,2006,WD,Abnorml,135000 +972,160,RL,36,2268,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,Twnhs,2Story,7,5,2003,2004,Gable,CompShg,VinylSd,Wd Shng,Stone,106,Gd,TA,PConc,Gd,TA,No,GLQ,567,Unf,0,197,764,GasA,Ex,Y,SBrkr,764,862,0,1626,0,0,2,0,2,1,Gd,6,Typ,0,NA,BuiltIn,2003,RFn,2,474,TA,TA,Y,0,27,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,173000 +973,120,RL,55,7892,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,TwnhsE,1Story,6,5,1979,1979,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,918,918,GasA,TA,Y,SBrkr,918,0,0,918,0,0,2,0,2,1,TA,5,Typ,1,TA,Attchd,1979,Unf,1,264,TA,TA,Y,28,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,99500 +974,20,FV,95,11639,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Somerst,Norm,Norm,1Fam,1Story,7,5,2007,2008,Gable,CompShg,CemntBd,CmentBd,NA,NA,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1428,1428,GasA,Ex,Y,SBrkr,1428,0,0,1428,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2007,Fin,2,480,TA,TA,Y,0,120,0,0,0,0,NA,NA,NA,0,12,2008,New,Partial,182000 +975,70,RL,60,11414,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,BrkSide,RRAn,Feedr,1Fam,2Story,7,8,1910,1993,Gable,CompShg,HdBoard,HdBoard,None,0,TA,Gd,BrkTil,Gd,TA,No,Unf,0,Unf,0,728,728,GasA,TA,N,SBrkr,1136,883,0,2019,0,0,1,0,3,1,Gd,8,Typ,0,NA,Detchd,1997,Unf,2,532,TA,TA,Y,509,135,0,0,0,0,NA,GdPrv,NA,0,10,2009,WD,Normal,167500 +976,160,FV,NA,2651,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Somerst,Norm,Norm,Twnhs,2Story,7,5,2000,2000,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,641,Unf,0,32,673,GasA,Ex,Y,SBrkr,673,709,0,1382,1,0,2,1,3,1,Gd,6,Typ,0,NA,Detchd,2000,Unf,2,490,TA,TA,Y,153,50,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,165000 +977,30,RL,51,5900,Pave,NA,IR1,Bnk,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1Story,4,7,1923,1958,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,440,440,GasA,TA,Y,FuseA,869,0,0,869,0,0,1,0,2,1,Fa,4,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2006,WD,Normal,85500 +978,120,FV,35,4274,Pave,Pave,IR1,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,1Story,7,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,NA,NA,Gd,TA,PConc,Gd,TA,No,GLQ,1106,Unf,0,135,1241,GasA,Ex,Y,SBrkr,1241,0,0,1241,1,0,1,1,1,1,Gd,4,Typ,0,NA,Attchd,2007,Fin,2,569,TA,TA,Y,0,116,0,0,0,0,NA,NA,NA,0,11,2007,New,Partial,199900 +979,20,RL,68,9450,Pave,NA,Reg,Bnk,AllPub,Inside,Mod,Edwards,Norm,Norm,1Fam,1Story,4,5,1954,1954,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,LwQ,552,Unf,0,342,894,GasA,Ex,Y,SBrkr,894,0,0,894,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1999,Unf,2,400,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2007,WD,Abnorml,110000 +980,20,RL,80,8816,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,5,6,1963,1963,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,TA,TA,No,Rec,651,Unf,0,470,1121,GasA,TA,Y,SBrkr,1121,0,0,1121,1,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1963,Unf,2,480,TA,TA,Y,0,80,0,0,0,0,NA,MnPrv,NA,0,6,2009,WD,Normal,139000 +981,85,RL,NA,12122,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,SFoyer,7,9,1961,2007,Gable,CompShg,CemntBd,CmentBd,Stone,210,Ex,TA,CBlock,TA,TA,Av,ALQ,867,Unf,0,77,944,GasA,Gd,Y,SBrkr,999,0,0,999,1,0,1,0,3,1,Ex,6,Typ,0,NA,Attchd,1961,RFn,2,588,TA,TA,Y,144,76,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,178400 +982,60,RL,98,12203,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1998,1999,Hip,CompShg,VinylSd,VinylSd,BrkFace,975,Gd,TA,PConc,Gd,TA,No,GLQ,854,Unf,0,371,1225,GasA,Ex,Y,SBrkr,1276,1336,0,2612,1,0,2,1,4,1,Gd,8,Typ,1,TA,Attchd,1998,Fin,3,676,TA,TA,Y,250,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,336000 +983,20,RL,43,3182,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,1Fam,1Story,7,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,BrkFace,16,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1266,1266,GasA,Ex,Y,SBrkr,1266,0,0,1266,0,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2007,Fin,2,388,TA,TA,Y,100,16,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,159895 +984,60,RL,NA,11250,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,2002,2002,Gable,CompShg,CemntBd,CmentBd,None,0,Gd,TA,PConc,Gd,TA,Mn,Unf,0,Unf,0,1128,1128,GasA,Ex,Y,SBrkr,1149,1141,0,2290,0,0,2,1,4,1,Gd,9,Typ,1,Gd,Attchd,2002,Unf,2,779,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,255900 +985,90,RL,75,10125,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,Duplex,1.5Fin,5,5,1977,1977,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,1302,432,0,1734,0,0,2,0,4,2,Gd,8,Typ,0,NA,Attchd,1977,Unf,2,539,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2009,COD,Normal,126000 +986,190,RL,68,10880,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,2fmCon,1Story,5,5,1950,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,1040,Unf,0,124,1164,GasW,TA,N,SBrkr,1164,0,0,1164,1,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1950,Unf,1,240,TA,TA,Y,0,48,0,0,0,0,NA,NA,NA,0,8,2008,ConLD,Normal,125000 +987,50,RM,59,5310,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Feedr,Norm,1Fam,1.5Fin,6,8,1910,2003,Hip,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,TA,Fa,No,Unf,0,Unf,0,485,485,GasA,Gd,Y,SBrkr,1001,634,0,1635,0,0,1,0,2,1,Gd,5,Typ,0,NA,Attchd,1950,Unf,1,255,Fa,TA,Y,394,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,117000 +988,20,RL,83,10159,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,9,5,2009,2010,Hip,CompShg,VinylSd,VinylSd,Stone,450,Ex,TA,PConc,Ex,TA,Av,GLQ,1646,Unf,0,284,1930,GasA,Ex,Y,SBrkr,1940,0,0,1940,1,0,2,1,3,1,Ex,8,Typ,1,Gd,Attchd,2010,Fin,3,606,TA,TA,Y,168,95,0,0,0,0,NA,NA,NA,0,4,2010,New,Partial,395192 +989,60,RL,NA,12046,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,2Story,6,6,1976,1976,Gable,CompShg,Plywood,Plywood,BrkFace,298,TA,TA,CBlock,TA,TA,No,LwQ,156,Unf,0,692,848,GasA,TA,Y,SBrkr,1118,912,0,2030,0,0,2,1,4,1,Gd,8,Typ,1,TA,Attchd,1976,Fin,2,551,TA,TA,Y,0,224,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,195000 +990,60,FV,65,8125,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,Gd,No,Unf,0,Unf,0,770,770,GasA,Ex,Y,SBrkr,778,798,0,1576,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2006,RFn,2,614,TA,TA,Y,0,50,0,0,0,0,NA,NA,NA,0,8,2006,New,Partial,197000 +991,60,RL,82,9452,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1997,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,423,Gd,TA,PConc,Gd,TA,No,GLQ,1074,Unf,0,322,1396,GasA,Ex,Y,SBrkr,1407,985,0,2392,1,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1997,Fin,3,870,TA,TA,Y,0,70,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,348000 +992,70,RM,121,17671,Pave,Grvl,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Artery,Norm,1Fam,2Story,8,9,1882,1986,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,Gd,BrkTil,TA,TA,No,BLQ,216,Unf,0,700,916,GasA,Gd,Y,SBrkr,916,826,0,1742,0,0,1,1,4,1,Gd,8,Typ,1,Gd,Attchd,1925,Unf,2,424,TA,TA,P,0,169,0,0,0,0,NA,NA,NA,0,11,2009,WD,Normal,168000 +993,60,RL,80,9760,Pave,NA,Reg,Lvl,AllPub,Inside,Mod,NAmes,Norm,Norm,1Fam,2Story,6,8,1964,1993,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,340,TA,TA,CBlock,TA,TA,Gd,BLQ,536,Rec,117,169,822,GasA,Gd,Y,SBrkr,1020,831,0,1851,0,0,2,1,3,1,Gd,7,Typ,1,Fa,Attchd,1964,RFn,2,440,TA,TA,Y,239,42,0,0,0,0,NA,MnWw,NA,0,7,2007,WD,Normal,187000 +994,60,RL,68,8846,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,6,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,750,750,GasA,Ex,Y,SBrkr,750,750,0,1500,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2005,RFn,2,564,TA,TA,Y,0,35,0,0,0,0,NA,NA,NA,0,8,2006,New,Partial,173900 +995,20,RL,96,12456,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NridgHt,Norm,Norm,1Fam,1Story,10,5,2006,2007,Hip,CompShg,CemntBd,CmentBd,Stone,230,Ex,TA,PConc,Ex,TA,Gd,GLQ,1172,Unf,0,528,1700,GasA,Ex,Y,SBrkr,1718,0,0,1718,1,0,2,0,3,1,Ex,7,Typ,1,Gd,Attchd,2008,Fin,3,786,TA,TA,Y,216,48,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,337500 +996,50,RL,51,4712,Pave,NA,IR1,Lvl,AllPub,Inside,Mod,BrkSide,Feedr,Norm,1Fam,1.5Fin,4,7,1946,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,384,Unf,0,363,747,GasA,TA,Y,SBrkr,774,456,0,1230,1,0,1,1,3,1,TA,5,Typ,0,NA,Detchd,1946,Unf,1,305,TA,TA,Y,0,57,0,0,63,0,NA,MnPrv,NA,0,8,2006,WD,Abnorml,121600 +997,20,RL,NA,10659,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1961,1961,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,915,Unf,0,135,1050,GasA,TA,Y,SBrkr,1050,0,0,1050,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1961,Unf,1,368,TA,TA,Y,0,319,0,0,0,0,NA,NA,NA,0,1,2006,COD,Normal,136500 +998,20,RL,NA,11717,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,PosA,Norm,1Fam,1Story,6,6,1970,1970,Hip,CompShg,HdBoard,HdBoard,BrkFace,571,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1442,1442,GasA,TA,Y,SBrkr,1442,0,0,1442,0,0,2,0,2,1,TA,6,Typ,1,TA,Attchd,1970,RFn,2,615,TA,TA,Y,371,0,0,0,0,0,NA,NA,NA,0,2,2009,WD,Normal,185000 +999,30,RM,60,9786,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1Story,3,4,1922,1950,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,Fa,No,Unf,0,Unf,0,1007,1007,GasA,Fa,N,SBrkr,1077,0,0,1077,0,0,1,0,3,1,TA,6,Typ,1,Gd,Detchd,1922,Unf,1,210,TA,Fa,P,0,100,48,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,91000 +1000,20,RL,64,6762,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,24,Gd,TA,PConc,Gd,TA,Av,GLQ,686,Unf,0,501,1187,GasA,Ex,Y,SBrkr,1208,0,0,1208,1,0,2,0,2,1,Gd,6,Typ,0,NA,Attchd,2006,RFn,2,632,TA,TA,Y,105,61,0,0,0,0,NA,NA,NA,0,2,2010,WD,Normal,206000 +1001,20,RL,74,10206,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,3,3,1952,1952,Flat,Tar&Grv,BrkComm,Brk Cmn,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasW,Fa,N,FuseF,944,0,0,944,0,0,1,0,2,1,Fa,4,Min1,0,NA,Detchd,1956,Unf,2,528,TA,Fa,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,82000 +1002,30,RL,60,5400,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,6,1920,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Fa,TA,No,Unf,0,Unf,0,691,691,GasA,Ex,Y,FuseA,691,0,0,691,0,0,1,0,2,1,Ex,4,Typ,0,NA,Detchd,1920,Unf,1,216,Fa,TA,N,0,20,94,0,0,0,NA,NA,NA,0,1,2007,WD,Abnorml,86000 +1003,20,RL,75,11957,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Somerst,RRAn,Norm,1Fam,1Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,53,Gd,TA,PConc,Gd,TA,No,GLQ,24,Unf,0,1550,1574,GasA,Ex,Y,SBrkr,1574,0,0,1574,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2006,RFn,3,824,TA,TA,Y,144,104,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,232000 +1004,90,RL,NA,11500,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NWAmes,Feedr,RRAn,Duplex,1Story,5,6,1976,1976,Gable,CompShg,VinylSd,VinylSd,BrkFace,164,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1680,1680,GasA,Fa,Y,SBrkr,1680,0,0,1680,0,0,2,0,4,2,TA,8,Typ,0,NA,Detchd,1976,Unf,2,528,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,136905 +1005,120,RL,43,3182,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,16,Gd,TA,PConc,Gd,TA,No,GLQ,16,Unf,0,1330,1346,GasA,Ex,Y,SBrkr,1504,0,0,1504,0,0,2,0,1,1,Gd,7,Typ,1,Gd,Attchd,2005,Fin,2,457,TA,TA,Y,156,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,181000 +1006,80,RL,65,8385,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,SLvl,5,8,1977,1977,Gable,CompShg,HdBoard,HdBoard,BrkFace,220,Gd,TA,CBlock,Gd,Gd,Av,GLQ,595,Unf,0,390,985,GasA,TA,Y,SBrkr,985,0,0,985,0,0,2,0,3,1,TA,6,Typ,0,NA,Attchd,1977,Unf,1,328,TA,TA,Y,210,0,0,0,0,0,NA,NA,NA,0,11,2008,WD,Normal,149900 +1007,20,RL,NA,12155,Pave,NA,IR3,Lvl,AllPub,Inside,Gtl,NAmes,PosN,Norm,1Fam,1Story,6,3,1970,1970,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,No,LwQ,1237,Unf,0,420,1657,GasA,Gd,Y,SBrkr,1657,0,0,1657,0,1,2,0,3,1,TA,7,Typ,1,TA,Attchd,1970,Unf,2,484,TA,TA,Y,0,0,0,0,147,0,NA,NA,NA,0,3,2007,WD,Normal,163500 +1008,160,RM,21,2217,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,TwnhsE,2Story,4,4,1970,1970,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,273,LwQ,273,0,546,GasA,TA,Y,SBrkr,546,546,0,1092,0,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1970,RFn,1,286,TA,TA,Y,238,0,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,88000 +1009,20,RL,43,12118,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Mitchel,Norm,Norm,1Fam,1Story,7,5,2004,2005,Hip,CompShg,VinylSd,VinylSd,Stone,108,Gd,TA,PConc,Ex,TA,Mn,Unf,0,Unf,0,1710,1710,GasA,Ex,Y,SBrkr,1710,0,0,1710,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2004,Fin,2,550,TA,TA,Y,100,48,0,0,180,0,NA,NA,NA,0,4,2009,WD,Normal,240000 +1010,50,RL,60,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1.5Fin,5,5,1926,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Fa,BrkTil,TA,TA,No,Unf,0,Unf,0,1008,1008,GasA,Ex,Y,SBrkr,1008,0,514,1522,0,0,2,0,4,1,TA,7,Typ,0,NA,NA,NA,NA,0,0,NA,NA,P,0,0,138,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,102000 +1011,50,RL,115,21286,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1.5Fin,5,5,1948,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,720,720,GasA,TA,Y,SBrkr,720,551,0,1271,0,0,2,0,4,1,TA,7,Typ,1,Gd,Attchd,1948,Unf,1,312,TA,TA,Y,0,0,108,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,135000 +1012,90,RL,75,9825,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,Duplex,1Story,5,5,1965,1965,Hip,CompShg,AsphShn,AsphShn,None,0,TA,TA,CBlock,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,N,SBrkr,1664,0,0,1664,0,0,2,0,4,2,TA,8,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,100000 +1013,70,RL,55,10592,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2Story,6,7,1923,1996,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,PConc,TA,Fa,No,Unf,0,Unf,0,602,602,GasA,TA,Y,SBrkr,900,602,0,1502,0,0,1,1,3,1,Gd,7,Typ,2,TA,Detchd,1923,Unf,1,180,TA,TA,Y,96,0,112,0,53,0,NA,NA,NA,0,8,2007,WD,Normal,165000 +1014,30,RM,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,4,1910,2006,Hip,CompShg,MetalSd,Stucco,None,0,TA,TA,BrkTil,TA,TA,No,ALQ,247,Rec,465,310,1022,GasW,TA,N,SBrkr,1022,0,0,1022,1,0,1,0,2,1,TA,4,Maj2,0,NA,Detchd,1956,Unf,1,280,TA,TA,Y,0,30,226,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,85000 +1015,20,RL,60,11664,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Artery,Norm,1Fam,1Story,6,5,1948,1950,Gable,CompShg,MetalSd,MetalSd,BrkFace,206,TA,TA,CBlock,TA,Fa,No,BLQ,336,Unf,0,746,1082,GasA,TA,Y,SBrkr,1082,0,0,1082,0,0,1,0,2,1,TA,5,Typ,1,Gd,Detchd,1948,Unf,1,240,TA,TA,Y,0,130,0,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,119200 +1016,60,RL,70,8400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,2Story,8,6,2001,2001,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,643,Unf,0,167,810,GasA,Ex,Y,SBrkr,810,855,0,1665,1,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2001,Fin,2,528,TA,TA,Y,0,45,0,0,0,0,NA,NA,NA,0,11,2009,WD,Normal,227000 +1017,20,RL,73,11883,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,1996,1996,Hip,CompShg,VinylSd,VinylSd,BrkFace,196,Gd,TA,PConc,Gd,TA,Gd,GLQ,690,Unf,0,814,1504,GasA,Ex,Y,SBrkr,1504,0,0,1504,1,0,2,0,3,1,Gd,6,Typ,1,TA,Attchd,1996,Fin,2,478,TA,TA,Y,115,66,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,203000 +1018,120,RL,NA,5814,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,StoneBr,Norm,Norm,TwnhsE,1Story,8,5,1984,1984,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,CBlock,Gd,TA,Av,GLQ,1036,Unf,0,184,1220,GasA,Gd,Y,SBrkr,1360,0,0,1360,1,0,1,0,1,1,Gd,4,Typ,1,Ex,Attchd,1984,RFn,2,565,TA,TA,Y,63,0,0,0,0,0,NA,NA,NA,0,8,2009,COD,Abnorml,187500 +1019,80,RL,NA,10784,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,Gilbert,Norm,Norm,1Fam,SLvl,7,5,1991,1992,Gable,CompShg,HdBoard,HdBoard,BrkFace,76,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,384,384,GasA,Gd,Y,SBrkr,802,670,0,1472,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1991,RFn,2,402,TA,TA,Y,164,0,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,160000 +1020,120,RL,43,3013,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,145,Gd,TA,PConc,Gd,TA,Gd,GLQ,16,Unf,0,1346,1362,GasA,Ex,Y,SBrkr,1506,0,0,1506,0,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2005,Fin,2,440,TA,TA,Y,142,20,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,213490 +1021,20,RL,60,7024,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,GLQ,1024,Unf,0,108,1132,GasA,Ex,Y,SBrkr,1132,0,0,1132,1,0,1,1,2,1,Gd,5,Typ,0,NA,Attchd,2005,Fin,2,451,TA,TA,Y,252,64,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,176000 +1022,20,RL,64,7406,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,84,Gd,TA,PConc,Gd,TA,Av,GLQ,684,Unf,0,515,1199,GasA,Ex,Y,SBrkr,1220,0,0,1220,1,0,2,0,2,1,Gd,6,Typ,0,NA,Attchd,2006,RFn,2,632,TA,TA,Y,105,54,0,0,0,0,NA,NA,NA,0,7,2006,New,Partial,194000 +1023,50,RM,52,9439,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,5,5,1930,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,LwQ,324,Unf,0,588,912,GasA,Gd,Y,FuseA,912,336,0,1248,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1957,Unf,1,160,Fa,Fa,Y,0,0,192,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,87000 +1024,120,RL,43,3182,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,14,Gd,TA,PConc,Gd,Gd,No,GLQ,16,Unf,0,1330,1346,GasA,Ex,Y,SBrkr,1504,0,0,1504,0,0,2,0,2,1,Gd,7,Typ,1,Gd,Attchd,2005,Fin,2,437,TA,TA,Y,156,20,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,191000 +1025,20,RL,NA,15498,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Timber,Norm,Norm,1Fam,1Story,8,6,1976,1976,Hip,WdShake,Stone,HdBoard,None,0,Gd,TA,CBlock,Gd,TA,Av,ALQ,1165,LwQ,400,0,1565,GasA,TA,Y,SBrkr,2898,0,0,2898,1,0,2,0,2,1,Gd,10,Typ,1,Gd,Attchd,1976,Fin,2,665,TA,TA,Y,0,72,174,0,0,0,NA,NA,NA,0,5,2008,COD,Abnorml,287000 +1026,20,RL,70,7700,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,5,1972,1972,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,LwQ,138,Rec,468,276,882,GasA,TA,Y,SBrkr,882,0,0,882,1,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1980,Unf,2,461,TA,TA,Y,96,0,0,0,0,0,NA,MnPrv,NA,0,3,2007,WD,Normal,112500 +1027,20,RL,73,9300,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Feedr,Norm,1Fam,1Story,5,5,1960,1960,Gable,CompShg,MetalSd,HdBoard,BrkFace,324,TA,TA,CBlock,TA,TA,No,Rec,697,Unf,0,571,1268,GasA,TA,Y,SBrkr,1264,0,0,1264,1,0,1,0,3,1,TA,6,Typ,2,Gd,Attchd,1960,Unf,2,461,TA,TA,Y,0,0,0,0,143,0,NA,NA,NA,0,4,2010,WD,Normal,167500 +1028,20,RL,71,9520,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,8,5,2007,2008,Gable,CompShg,VinylSd,VinylSd,Stone,338,Gd,TA,PConc,Gd,TA,Gd,GLQ,1513,Unf,0,125,1638,GasA,Ex,Y,SBrkr,1646,0,0,1646,1,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2008,RFn,3,800,TA,TA,Y,192,44,0,0,0,0,NA,NA,NA,0,4,2008,New,Partial,293077 +1029,50,RL,79,9492,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Artery,Norm,1Fam,1.5Fin,5,5,1941,1950,Gable,CompShg,WdShing,Wd Shng,None,0,TA,TA,CBlock,TA,TA,No,Rec,368,BLQ,41,359,768,GasA,TA,Y,SBrkr,968,408,0,1376,1,0,1,0,3,1,TA,6,Typ,1,Gd,Attchd,1941,Unf,1,240,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2007,WD,Normal,105000 +1030,160,RM,21,1680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,6,7,1972,1972,Gable,CompShg,HdBoard,HdBoard,BrkFace,281,TA,TA,CBlock,TA,TA,No,BLQ,317,Unf,0,355,672,GasA,Gd,Y,SBrkr,672,546,0,1218,0,1,1,1,3,1,TA,7,Typ,0,NA,Detchd,1972,Unf,1,264,TA,TA,Y,0,28,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,118000 +1031,190,RH,NA,7082,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Norm,Norm,2fmCon,2Story,5,8,1916,1995,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,TA,TA,Mn,Unf,0,Unf,0,686,686,GasA,Gd,Y,SBrkr,948,980,0,1928,0,0,2,0,5,2,TA,10,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,228,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,160000 +1032,75,RL,102,15863,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,SWISU,Norm,Norm,1Fam,2.5Fin,7,3,1920,1970,Gable,CompShg,Wd Sdng,Plywood,None,0,TA,TA,BrkTil,TA,TA,No,GLQ,523,Unf,0,301,824,GasA,Ex,Y,SBrkr,1687,998,397,3082,1,0,2,1,5,1,TA,12,Typ,2,TA,Basment,1970,Fin,2,672,TA,TA,Y,136,63,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,197000 +1033,60,RL,NA,14541,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,7,1993,1993,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,Gd,PConc,Gd,Gd,No,GLQ,1012,Unf,0,326,1338,GasA,Ex,Y,SBrkr,1352,1168,0,2520,1,0,2,1,5,1,Gd,10,Typ,1,TA,Attchd,1993,RFn,3,796,TA,TA,Y,209,55,0,0,0,0,NA,NA,NA,0,11,2006,WD,Abnorml,310000 +1034,20,RL,NA,8125,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,Stone,295,Gd,TA,PConc,Gd,TA,No,GLQ,986,Unf,0,668,1654,GasA,Ex,Y,SBrkr,1654,0,0,1654,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2002,Unf,3,900,TA,TA,Y,0,136,0,0,0,0,NA,NA,NA,0,2,2006,WD,Normal,230000 +1035,30,RL,50,6305,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1Story,5,7,1938,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,PConc,Fa,Fa,No,Unf,0,Unf,0,920,920,GasA,Ex,Y,SBrkr,954,0,0,954,0,0,1,0,2,1,Fa,5,Typ,1,Gd,Basment,1938,Unf,1,240,Fa,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,6,2007,WD,Normal,119750 +1036,20,RL,NA,11500,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,3,1957,1957,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,Ex,N,SBrkr,845,0,0,845,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1957,Unf,1,290,TA,TA,N,186,0,0,0,0,0,NA,NA,NA,0,1,2009,WD,Normal,84000 +1037,20,RL,89,12898,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,9,5,2007,2008,Hip,CompShg,VinylSd,VinylSd,Stone,70,Gd,TA,PConc,Ex,TA,Gd,GLQ,1022,Unf,0,598,1620,GasA,Ex,Y,SBrkr,1620,0,0,1620,1,0,2,0,2,1,Ex,6,Typ,1,Ex,Attchd,2008,Fin,3,912,TA,TA,Y,228,0,0,0,0,0,NA,NA,NA,0,9,2009,WD,Normal,315500 +1038,60,RL,NA,9240,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,2001,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,396,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1055,1055,GasA,Ex,Y,SBrkr,1055,1208,0,2263,0,0,2,1,3,1,Gd,7,Typ,1,TA,BuiltIn,2001,Fin,2,905,TA,TA,Y,0,45,0,0,189,0,NA,NA,NA,0,9,2008,WD,Normal,287000 +1039,160,RM,21,1533,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,Twnhs,2Story,4,6,1970,2008,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,546,546,GasA,TA,Y,SBrkr,798,546,0,1344,0,0,1,1,3,1,TA,6,Typ,1,TA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,97000 +1040,180,RM,21,1477,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,TwnhsE,SFoyer,4,4,1970,1970,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,Gd,TA,Av,GLQ,509,Unf,0,121,630,GasA,TA,Y,SBrkr,630,0,0,630,1,0,1,0,1,1,TA,3,Typ,0,NA,Attchd,1970,Unf,1,286,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,80000 +1041,20,RL,88,13125,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,4,1957,2000,Gable,CompShg,Wd Sdng,Wd Sdng,BrkCmn,67,TA,TA,CBlock,TA,TA,No,Rec,168,BLQ,682,284,1134,GasA,Ex,Y,SBrkr,1803,0,0,1803,1,0,2,0,3,1,TA,8,Maj1,1,TA,Attchd,1957,RFn,2,484,TA,TA,Y,0,0,0,0,0,0,NA,GdPrv,NA,0,1,2006,WD,Normal,155000 +1042,60,RL,NA,9130,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Feedr,Norm,1Fam,2Story,6,8,1966,2000,Hip,CompShg,HdBoard,HdBoard,BrkFace,252,TA,TA,CBlock,TA,TA,No,GLQ,400,Rec,64,336,800,GasA,Gd,Y,SBrkr,800,832,0,1632,0,1,1,1,4,1,Gd,7,Typ,0,NA,Attchd,1966,Unf,2,484,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,173000 +1043,120,RL,34,5381,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,Twnhs,1Story,6,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,Stone,135,Gd,TA,PConc,Gd,TA,Av,ALQ,900,Unf,0,406,1306,GasA,Ex,Y,SBrkr,1306,0,0,1306,1,0,2,0,1,1,Gd,5,Typ,1,Gd,Attchd,2005,RFn,2,624,TA,TA,Y,170,63,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,196000 +1044,60,RL,86,11839,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,7,5,1990,1990,Hip,CompShg,HdBoard,HdBoard,BrkFace,99,TA,TA,PConc,Gd,TA,No,GLQ,1085,Unf,0,390,1475,GasA,Ex,Y,SBrkr,1532,797,0,2329,1,0,2,1,4,1,Gd,10,Typ,1,Ex,Attchd,1990,Unf,2,514,TA,TA,Y,192,121,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,262280 +1045,20,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,PosN,Norm,1Fam,1Story,8,5,1981,1981,Hip,WdShngl,BrkFace,BrkFace,None,0,Gd,TA,PConc,Gd,TA,No,ALQ,1104,Unf,0,1420,2524,GasA,TA,Y,SBrkr,2524,0,0,2524,1,0,2,1,4,1,Gd,9,Typ,1,Gd,Attchd,1981,Fin,2,542,TA,TA,Y,474,120,0,0,0,0,NA,MnPrv,NA,0,7,2009,WD,Normal,278000 +1046,20,RL,NA,13680,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Edwards,Norm,Norm,1Fam,1Story,3,5,1955,1955,Hip,CompShg,BrkFace,Wd Sdng,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,Ex,Y,FuseA,1733,0,0,1733,0,0,2,0,4,1,TA,8,Min2,1,Gd,Attchd,1955,Unf,2,452,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,139600 +1047,60,RL,85,16056,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,1Fam,2Story,9,5,2005,2006,Hip,CompShg,CemntBd,CmentBd,Stone,208,Gd,TA,PConc,Ex,TA,Av,GLQ,240,Unf,0,1752,1992,GasA,Ex,Y,SBrkr,1992,876,0,2868,0,0,3,1,4,1,Ex,11,Typ,1,Gd,BuiltIn,2005,Fin,3,716,TA,TA,Y,214,108,0,0,0,0,NA,NA,NA,0,7,2006,New,Partial,556581 +1048,20,RL,57,9245,Pave,NA,IR2,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,5,1994,1995,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,GLQ,686,Unf,0,304,990,GasA,Ex,Y,SBrkr,990,0,0,990,0,1,1,0,3,1,TA,5,Typ,0,NA,Detchd,1996,Unf,2,672,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,2,2008,WD,Normal,145000 +1049,20,RL,100,21750,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,1Story,5,4,1960,2006,Hip,CompShg,HdBoard,HdBoard,BrkFace,75,TA,Fa,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,1771,0,0,1771,0,0,1,0,3,1,TA,9,Min1,1,TA,Attchd,1960,Unf,2,336,TA,TA,Y,0,0,0,0,0,0,NA,GdPrv,NA,0,11,2009,WD,Normal,115000 +1050,20,RL,60,11100,Pave,NA,Reg,Low,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,7,1946,2006,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,NA,NA,NA,NA,0,NA,0,0,0,GasA,Ex,Y,SBrkr,930,0,0,930,0,0,1,0,2,1,Gd,6,Typ,0,NA,Detchd,1946,Unf,1,308,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Abnorml,84900 +1051,20,RL,73,8993,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,1Story,7,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1302,1302,GasA,Ex,Y,SBrkr,1302,0,0,1302,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2007,Fin,2,436,TA,TA,Y,0,22,0,0,0,0,NA,NA,NA,0,8,2007,New,Partial,176485 +1052,20,RL,103,11175,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1316,1316,GasA,Ex,Y,SBrkr,1316,0,0,1316,0,0,2,0,3,1,Gd,6,Typ,1,Gd,Attchd,2007,Fin,2,440,TA,TA,Y,0,20,0,0,0,0,NA,NA,NA,0,10,2007,New,Partial,200141 +1053,60,RL,100,9500,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Artery,Norm,1Fam,2Story,6,6,1964,1978,Gable,CompShg,VinylSd,VinylSd,BrkCmn,272,TA,TA,CBlock,TA,TA,No,Rec,442,Unf,0,374,816,GasA,TA,Y,SBrkr,1127,850,0,1977,0,1,1,1,4,1,TA,9,Typ,1,TA,Attchd,1964,RFn,2,540,TA,TA,Y,0,52,0,0,0,0,NA,GdPrv,NA,0,6,2007,WD,Normal,165000 +1054,20,RL,68,8562,Pave,NA,Reg,Lvl,AllPub,Inside,Mod,Edwards,Norm,Norm,1Fam,1Story,5,6,1957,2002,Hip,CompShg,HdBoard,HdBoard,Stone,145,TA,TA,CBlock,TA,TA,Av,Rec,383,Unf,0,833,1216,GasA,Ex,Y,FuseA,1526,0,0,1526,0,0,1,0,4,1,TA,7,Min2,1,Gd,Basment,1957,Unf,1,364,TA,TA,Y,116,78,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,144500 +1055,60,RL,90,11367,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,210,Gd,TA,PConc,Gd,TA,Mn,GLQ,932,Unf,0,133,1065,GasA,Ex,Y,SBrkr,1091,898,0,1989,1,0,2,1,3,1,Gd,7,Typ,1,Gd,Attchd,2002,Fin,2,586,TA,TA,Y,199,60,0,0,0,0,NA,NA,NA,0,11,2006,WD,Normal,255000 +1056,20,RL,104,11361,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,5,1976,1976,Gable,CompShg,Plywood,Plywood,BrkFace,160,TA,TA,CBlock,Gd,TA,No,ALQ,644,Unf,0,549,1193,GasA,TA,Y,SBrkr,1523,0,0,1523,0,1,2,0,3,1,TA,7,Typ,1,TA,Attchd,1976,Fin,2,478,TA,TA,Y,0,0,0,0,189,0,NA,MnPrv,NA,0,5,2008,COD,Abnorml,180000 +1057,120,RL,43,7052,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,7,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,Stone,240,Gd,TA,PConc,Gd,TA,Av,GLQ,659,Unf,0,705,1364,GasA,Ex,Y,SBrkr,1364,0,0,1364,1,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2005,RFn,2,484,TA,TA,Y,192,36,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,185850 +1058,60,RL,NA,29959,Pave,NA,IR2,Lvl,AllPub,FR2,Gtl,NoRidge,Norm,Norm,1Fam,2Story,7,6,1994,1994,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,595,Unf,0,378,973,GasA,Ex,Y,SBrkr,979,871,0,1850,0,0,2,1,3,1,Gd,7,Typ,1,Gd,BuiltIn,1994,Fin,2,467,TA,TA,Y,168,98,0,0,0,0,NA,NA,NA,0,1,2009,WD,Normal,248000 +1059,60,RL,96,11308,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,9,5,2008,2008,Gable,CompShg,VinylSd,VinylSd,Stone,154,Ex,TA,PConc,Ex,TA,Av,GLQ,936,Unf,0,168,1104,GasA,Ex,Y,SBrkr,1130,1054,0,2184,1,0,2,1,3,1,Ex,10,Typ,1,Gd,Attchd,2008,Fin,3,836,TA,TA,Y,0,102,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,335000 +1060,50,RL,NA,11275,Pave,NA,IR1,HLS,AllPub,Corner,Mod,Crawfor,Norm,Norm,1Fam,1.5Fin,6,7,1932,1950,Gable,CompShg,MetalSd,MetalSd,BrkFace,480,TA,TA,CBlock,TA,TA,Mn,Rec,297,LwQ,557,0,854,GasA,TA,Y,SBrkr,1096,895,0,1991,0,0,1,1,3,1,TA,7,Typ,1,Gd,Detchd,1977,Unf,2,432,TA,Fa,Y,0,0,19,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,220000 +1061,120,RL,41,4920,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,TwnhsE,1Story,8,5,2001,2001,Gable,CompShg,CemntBd,CmentBd,None,0,Gd,TA,PConc,Gd,TA,Mn,GLQ,616,Unf,0,722,1338,GasA,Ex,Y,SBrkr,1338,0,0,1338,1,0,2,0,2,1,Gd,6,Typ,0,NA,Attchd,2001,Fin,2,582,TA,TA,Y,0,0,170,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,213500 +1062,30,C (all),120,18000,Grvl,NA,Reg,Low,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1Story,3,4,1935,1950,Gable,CompShg,MetalSd,MetalSd,None,0,Fa,TA,CBlock,TA,TA,No,Unf,0,Unf,0,894,894,GasA,TA,Y,SBrkr,894,0,0,894,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1994,RFn,3,1248,TA,TA,Y,0,20,0,0,0,0,NA,NA,Shed,560,8,2008,ConLD,Normal,81000 +1063,190,RM,85,13600,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,2fmCon,2Story,5,5,1900,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,662,662,GasA,TA,N,SBrkr,1422,915,0,2337,0,0,2,0,5,2,TA,10,Min2,0,NA,Detchd,1945,Unf,2,560,TA,TA,Y,0,57,0,0,0,0,NA,NA,NA,0,9,2007,WD,Normal,90000 +1064,30,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1Story,6,6,1925,1980,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,BrkTil,TA,TA,No,BLQ,397,Unf,0,706,1103,GasA,Gd,Y,SBrkr,1103,0,0,1103,0,0,1,0,2,1,Gd,5,Typ,1,Gd,Detchd,1976,Unf,2,440,TA,TA,Y,166,120,0,0,0,0,NA,MnPrv,NA,0,7,2006,WD,Normal,110500 +1065,20,RL,NA,11000,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1966,1966,Gable,CompShg,Plywood,Plywood,BrkFace,200,TA,TA,CBlock,TA,TA,Mn,BLQ,740,Rec,230,184,1154,GasA,Ex,Y,SBrkr,1154,0,0,1154,0,0,1,1,3,1,TA,6,Typ,1,Po,Attchd,1966,RFn,2,480,TA,TA,Y,0,58,0,0,0,0,NA,MnPrv,NA,0,11,2009,WD,Normal,154000 +1066,60,RL,80,14000,Pave,NA,Reg,Lvl,AllPub,Inside,Mod,ClearCr,Norm,Norm,1Fam,2Story,7,5,1996,1997,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,PConc,Ex,TA,Gd,GLQ,1201,Unf,0,105,1306,GasA,Ex,Y,SBrkr,1306,954,0,2260,1,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,1996,RFn,2,533,TA,TA,Y,296,44,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,328000 +1067,60,RL,59,7837,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,7,1993,1994,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,799,799,GasA,Gd,Y,SBrkr,799,772,0,1571,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1993,RFn,2,380,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,178000 +1068,60,RL,80,9760,Pave,NA,Reg,Lvl,AllPub,Inside,Mod,NAmes,Norm,Norm,1Fam,2Story,6,6,1964,1964,Gable,CompShg,HdBoard,HdBoard,BrkFace,360,TA,TA,CBlock,TA,TA,Gd,GLQ,674,LwQ,106,0,780,GasA,TA,Y,SBrkr,798,813,0,1611,1,0,1,1,4,1,TA,7,Typ,0,NA,Attchd,1964,RFn,2,442,TA,TA,Y,328,128,0,0,189,0,NA,NA,NA,0,6,2008,WD,Normal,167900 +1069,160,RM,42,3964,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,TwnhsE,2Story,6,4,1973,1973,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,837,Unf,0,105,942,GasA,Gd,Y,SBrkr,1291,1230,0,2521,1,0,2,1,5,1,TA,10,Maj1,1,Gd,Attchd,1973,Fin,2,576,TA,TA,Y,728,20,0,0,0,0,NA,GdPrv,NA,0,6,2006,WD,Normal,151400 +1070,45,RL,60,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1.5Unf,5,7,1949,2003,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,220,Unf,0,625,845,GasA,TA,Y,SBrkr,893,0,0,893,0,1,1,0,2,1,Gd,4,Typ,0,NA,Detchd,1985,Unf,2,576,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,135000 +1071,20,RL,72,10152,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1956,1956,Hip,CompShg,MetalSd,MetalSd,BrkFace,120,TA,TA,CBlock,TA,TA,No,BLQ,586,Unf,0,462,1048,GasA,TA,Y,SBrkr,1048,0,0,1048,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1956,Unf,1,286,TA,TA,Y,0,20,0,0,192,0,NA,NA,NA,0,6,2007,WD,Normal,135000 +1072,60,RL,78,11700,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,RRAn,Norm,1Fam,2Story,6,6,1968,1968,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,298,Unf,0,429,727,GasA,Ex,Y,SBrkr,829,727,0,1556,0,0,1,1,4,1,TA,8,Typ,0,NA,Attchd,1968,Unf,2,441,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,154000 +1073,50,RL,50,7585,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Artery,Norm,1Fam,1.5Fin,5,3,1948,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,Fa,Fa,Mn,Unf,0,Unf,0,810,810,GasA,Fa,Y,FuseA,1002,454,0,1456,1,1,1,0,4,1,TA,7,Typ,1,TA,Detchd,1954,Unf,1,280,TA,TA,P,0,0,0,0,0,0,NA,NA,NA,0,8,2006,WD,Normal,91500 +1074,60,RL,75,7950,Pave,NA,IR1,Bnk,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,2Story,6,6,1977,1977,Hip,CompShg,HdBoard,Plywood,BrkFace,140,TA,TA,CBlock,TA,TA,No,BLQ,535,Unf,0,155,690,GasA,TA,Y,SBrkr,698,728,0,1426,0,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1977,Fin,2,440,TA,TA,Y,252,0,0,0,0,0,NA,MnPrv,NA,0,7,2009,WD,Normal,159500 +1075,20,RL,74,8556,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1240,1240,GasA,Ex,Y,SBrkr,1240,0,0,1240,0,0,2,0,2,1,Gd,5,Typ,0,NA,Attchd,2006,RFn,3,826,TA,TA,Y,140,93,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,194000 +1076,70,RL,75,13125,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2Story,7,6,1940,1984,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,BLQ,410,Unf,0,390,800,GasA,TA,Y,SBrkr,960,780,0,1740,0,0,1,1,3,1,TA,6,Typ,2,Gd,Attchd,1940,Unf,1,240,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2007,CWD,Normal,219500 +1077,50,RL,60,10800,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,5,8,1936,1989,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,Fa,TA,No,ALQ,626,Unf,0,170,796,GasA,Gd,Y,SBrkr,1096,370,0,1466,0,1,2,0,3,1,Gd,7,Min1,1,TA,Attchd,1950,Unf,2,566,TA,TA,Y,436,21,0,0,0,0,NA,NA,Shed,500,4,2006,WD,Normal,170000 +1078,20,RL,NA,15870,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1969,1969,Gable,CompShg,VinylSd,Plywood,None,0,TA,TA,CBlock,TA,TA,Mn,BLQ,75,Rec,791,230,1096,GasA,Ex,Y,SBrkr,1096,0,0,1096,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1969,Fin,1,299,TA,TA,Y,240,32,0,0,0,0,NA,NA,NA,0,3,2006,WD,Abnorml,138800 +1079,120,RM,37,4435,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,TwnhsE,1Story,6,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,169,Gd,TA,PConc,Gd,TA,Mn,GLQ,662,Unf,0,186,848,GasA,Ex,Y,SBrkr,848,0,0,848,1,0,1,0,1,1,Gd,3,Typ,1,Gd,Attchd,2004,RFn,2,420,TA,TA,Y,140,0,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,155900 +1080,20,RL,65,8775,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,5,1994,1994,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,GLQ,495,Unf,0,495,990,GasA,Gd,Y,SBrkr,990,0,0,990,0,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1996,Unf,1,299,TA,TA,Y,0,64,0,0,0,0,NA,NA,NA,0,4,2007,WD,Normal,126000 +1081,20,RL,80,11040,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,7,1971,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,144,Gd,Gd,CBlock,TA,TA,No,ALQ,656,Unf,0,602,1258,GasA,Ex,Y,SBrkr,1258,0,0,1258,0,1,2,0,3,1,Gd,5,Typ,0,NA,Attchd,1971,RFn,2,528,TA,TA,Y,55,0,0,216,0,0,NA,NA,NA,0,10,2008,COD,Abnorml,145000 +1082,20,RL,75,7500,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,5,5,1963,1963,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,ALQ,824,Unf,0,216,1040,GasA,Fa,Y,SBrkr,1040,0,0,1040,1,0,1,1,3,1,TA,5,Typ,0,NA,Attchd,1963,Fin,1,308,TA,TA,Y,0,0,220,0,0,0,NA,MnPrv,NA,0,6,2010,WD,Normal,133000 +1083,20,RL,70,8749,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,100,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1459,1459,GasA,Ex,Y,SBrkr,1459,0,0,1459,0,0,2,0,3,1,Gd,6,Typ,1,Gd,Attchd,2002,RFn,2,527,TA,TA,Y,192,39,0,0,0,0,NA,NA,NA,0,9,2007,WD,Normal,192000 +1084,20,RL,80,8800,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1964,1964,Hip,CompShg,HdBoard,HdBoard,BrkFace,425,TA,TA,CBlock,TA,TA,No,BLQ,553,Unf,0,698,1251,GasA,TA,Y,SBrkr,1251,0,0,1251,1,0,1,0,3,1,TA,6,Typ,2,Gd,Attchd,1964,RFn,1,461,TA,TA,Y,0,116,0,0,0,0,NA,MnPrv,Shed,700,3,2006,WD,Normal,160000 +1085,60,RL,NA,13031,Pave,NA,IR2,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1995,1996,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,Gd,TA,No,ALQ,592,Unf,0,99,691,GasA,Gd,Y,SBrkr,691,807,0,1498,0,0,2,1,3,1,TA,6,Typ,1,TA,Attchd,1995,Fin,2,409,TA,TA,Y,315,44,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,187500 +1086,85,RL,73,9069,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,SFoyer,6,6,1992,1992,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,Gd,TA,Av,GLQ,747,Unf,0,189,936,GasA,Ex,Y,SBrkr,996,0,0,996,1,0,1,0,2,1,Gd,5,Typ,0,NA,Attchd,1992,Unf,2,564,TA,TA,Y,120,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,147000 +1087,160,RM,NA,1974,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,TwnhsE,2Story,4,5,1973,1973,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,334,Unf,0,212,546,GasA,TA,Y,SBrkr,546,546,0,1092,0,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1973,RFn,1,286,TA,TA,Y,120,96,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,83500 +1088,60,FV,85,10574,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,8,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Mn,Unf,0,Unf,0,1082,1082,GasA,Ex,Y,SBrkr,1082,871,0,1953,0,0,2,1,3,1,Gd,9,Typ,1,Gd,Attchd,2005,RFn,3,1043,TA,TA,Y,160,50,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,252000 +1089,160,RM,24,2522,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,Twnhs,2Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,Stone,50,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,970,970,GasA,Ex,Y,SBrkr,970,739,0,1709,0,0,2,0,3,1,Gd,7,Maj1,0,NA,Detchd,2004,Unf,2,380,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,137500 +1090,120,FV,37,3316,Pave,Pave,IR1,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,1Story,8,5,2005,2005,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,1039,Unf,0,208,1247,GasA,Ex,Y,SBrkr,1247,0,0,1247,1,0,1,1,1,1,Gd,4,Typ,1,Gd,Attchd,2005,Fin,2,550,TA,TA,Y,0,84,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,197000 +1091,90,RL,60,8544,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,Duplex,1Story,3,4,1950,1950,Gable,CompShg,BrkFace,BrkFace,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,Wall,Fa,N,FuseA,1040,0,0,1040,0,0,2,0,2,2,TA,6,Typ,0,NA,Detchd,1987,Unf,2,400,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,92900 +1092,160,FV,24,2160,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,Twnhs,2Story,7,5,1999,2000,Gable,CompShg,MetalSd,MetalSd,BrkFace,212,Gd,TA,PConc,Gd,TA,No,BLQ,510,Unf,0,90,600,GasA,Ex,Y,SBrkr,624,628,0,1252,1,0,2,1,2,1,Gd,4,Typ,0,NA,Detchd,1999,Unf,2,462,TA,TA,Y,0,48,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,160000 +1093,50,RL,60,8400,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1.5Fin,6,5,1925,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,PConc,TA,TA,No,Rec,423,Unf,0,758,1181,GasA,Fa,Y,SBrkr,1390,304,0,1694,0,0,2,0,4,1,TA,7,Typ,1,Gd,Detchd,1925,Unf,2,576,TA,TA,Y,342,0,128,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,136500 +1094,20,RL,71,9230,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Feedr,Norm,1Fam,1Story,5,8,1965,1998,Hip,CompShg,MetalSd,MetalSd,BrkFace,166,TA,TA,CBlock,TA,TA,Mn,GLQ,661,Unf,0,203,864,GasA,Gd,Y,SBrkr,1200,0,0,1200,1,0,1,1,1,1,Gd,6,Typ,0,NA,Detchd,1977,Unf,2,884,TA,TA,Y,0,64,0,0,0,0,NA,MnPrv,NA,0,10,2006,WD,Normal,146000 +1095,20,RL,74,5868,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1956,2000,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,248,Rec,240,448,936,GasA,Ex,Y,SBrkr,936,0,0,936,1,0,1,0,2,1,TA,4,Typ,0,NA,Attchd,1956,Fin,1,308,TA,TA,Y,0,0,80,0,160,0,NA,NA,NA,0,5,2010,WD,Normal,129000 +1096,20,RL,78,9317,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,6,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,24,Unf,0,1290,1314,GasA,Gd,Y,SBrkr,1314,0,0,1314,0,0,2,0,3,1,Gd,6,Typ,1,Gd,Attchd,2006,RFn,2,440,TA,TA,Y,0,22,0,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,176432 +1097,70,RM,60,6882,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,2Story,6,7,1914,2006,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,684,684,GasA,TA,Y,SBrkr,773,582,0,1355,0,0,1,1,3,1,Gd,7,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,136,0,115,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,127000 +1098,120,RL,NA,3696,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,TwnhsE,1Story,8,5,1986,1986,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,1074,1074,GasA,Ex,Y,SBrkr,1088,0,0,1088,0,0,1,1,2,1,Gd,5,Typ,0,NA,Attchd,1987,RFn,2,461,TA,TA,Y,0,74,137,0,0,0,NA,NA,NA,0,10,2007,WD,Normal,170000 +1099,50,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,4,6,1936,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,BLQ,672,Unf,0,0,672,GasA,TA,Y,SBrkr,757,567,0,1324,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1936,Unf,1,240,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,128000 +1100,20,RL,82,11880,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,RRAn,Norm,1Fam,1Story,7,5,1978,1978,Gable,CompShg,Plywood,Plywood,BrkFace,206,TA,TA,CBlock,Gd,TA,No,ALQ,704,Unf,0,567,1271,GasA,TA,Y,SBrkr,1601,0,0,1601,0,0,2,0,3,1,TA,7,Typ,1,TA,Attchd,1978,RFn,2,478,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2009,COD,Abnorml,157000 +1101,30,RL,60,8400,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1Story,2,5,1920,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,Fa,No,Rec,290,Unf,0,0,290,GasA,TA,N,FuseF,438,0,0,438,0,0,1,0,1,1,Fa,3,Typ,0,NA,Detchd,1930,Unf,1,246,TA,TA,N,0,0,0,0,0,0,NA,NA,NA,0,1,2009,WD,Normal,60000 +1102,20,RL,61,9758,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1971,1971,Gable,CompShg,HdBoard,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,412,LwQ,287,251,950,GasA,TA,Y,SBrkr,950,0,0,950,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1981,Unf,1,280,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,119500 +1103,20,RL,70,7000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1960,2002,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,45,TA,TA,CBlock,TA,TA,No,Rec,588,Unf,0,422,1010,GasA,Ex,Y,SBrkr,1134,0,0,1134,0,0,1,0,2,1,TA,6,Typ,0,NA,Attchd,1960,RFn,1,254,TA,TA,Y,0,16,0,0,0,0,NA,MnWw,NA,0,4,2007,WD,Family,135000 +1104,20,RL,79,8910,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1959,1959,Hip,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,TA,TA,Mn,ALQ,655,Unf,0,0,655,GasA,Ex,Y,SBrkr,1194,0,0,1194,0,1,1,0,3,1,TA,6,Typ,1,Fa,BuiltIn,1954,Fin,2,539,TA,TA,Y,0,0,192,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,159500 +1105,160,RM,24,2016,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,TwnhsE,2Story,5,5,1970,1970,Gable,CompShg,HdBoard,HdBoard,BrkFace,304,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,630,630,GasA,TA,Y,SBrkr,630,672,0,1302,0,0,2,1,3,1,TA,6,Typ,0,NA,Detchd,1970,Unf,2,440,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2007,WD,Normal,106000 +1106,60,RL,98,12256,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1994,1995,Gable,CompShg,HdBoard,HdBoard,BrkFace,362,Gd,TA,PConc,Ex,TA,Av,GLQ,1032,Unf,0,431,1463,GasA,Ex,Y,SBrkr,1500,1122,0,2622,1,0,2,1,3,1,Gd,9,Typ,2,TA,Attchd,1994,RFn,2,712,TA,TA,Y,186,32,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,325000 +1107,20,RL,114,10357,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,SawyerW,Feedr,Norm,1Fam,1Story,7,5,1990,1991,Hip,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,Mn,GLQ,738,Unf,0,172,910,GasA,Gd,Y,SBrkr,1442,0,0,1442,1,0,2,0,3,1,Gd,6,Typ,1,TA,Attchd,1990,Fin,2,719,TA,TA,Y,0,244,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,179900 +1108,60,RL,168,23257,Pave,NA,IR3,HLS,AllPub,CulDSac,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,Gd,No,Unf,0,Unf,0,868,868,GasA,Ex,Y,SBrkr,887,1134,0,2021,0,0,2,1,3,1,Gd,9,Typ,1,Gd,BuiltIn,2006,RFn,2,422,TA,TA,Y,0,100,0,0,0,0,NA,NA,NA,0,9,2006,New,Partial,274725 +1109,60,RL,NA,8063,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,924,924,GasA,Ex,Y,SBrkr,948,742,0,1690,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,2000,RFn,2,463,TA,TA,Y,100,48,0,0,0,0,NA,NA,NA,0,11,2007,WD,Abnorml,181000 +1110,20,RL,107,11362,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2004,2005,Gable,CompShg,MetalSd,MetalSd,Stone,42,Gd,TA,PConc,Ex,TA,Mn,GLQ,1039,Unf,0,797,1836,GasA,Ex,Y,SBrkr,1836,0,0,1836,1,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2004,Fin,3,862,TA,TA,Y,125,185,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,280000 +1111,60,RL,NA,8000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1995,1996,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,Gd,TA,No,GLQ,219,Unf,0,554,773,GasA,Gd,Y,SBrkr,773,885,0,1658,1,0,2,1,3,1,TA,8,Typ,1,TA,Attchd,1995,Fin,2,431,TA,TA,Y,224,84,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,188000 +1112,60,RL,80,10480,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,2Story,7,6,1976,1976,Hip,CompShg,Plywood,Plywood,BrkFace,660,TA,TA,CBlock,TA,TA,No,ALQ,403,Unf,0,400,803,GasA,TA,Y,SBrkr,1098,866,0,1964,0,0,2,1,4,1,TA,8,Typ,1,Gd,Attchd,1976,RFn,2,483,TA,TA,Y,0,69,0,0,0,0,NA,NA,NA,0,9,2008,WD,Normal,205000 +1113,20,RL,73,7100,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1957,1957,Gable,CompShg,WdShing,Wd Shng,None,0,TA,TA,CBlock,TA,TA,No,GLQ,708,Unf,0,108,816,GasA,TA,Y,FuseA,816,0,0,816,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1957,Unf,1,308,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,129900 +1114,20,RL,66,8923,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1953,2006,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,BLQ,643,Unf,0,365,1008,GasA,Gd,Y,SBrkr,1008,0,0,1008,1,0,1,0,2,1,Gd,6,Typ,0,NA,Attchd,1953,Unf,1,240,TA,TA,Y,0,18,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,134500 +1115,20,RL,90,5400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,7,1954,2000,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,Rec,415,Unf,0,418,833,GasA,Ex,Y,SBrkr,833,0,0,833,0,0,1,0,2,1,Gd,4,Typ,0,NA,Detchd,1955,Unf,1,326,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,8,2006,WD,Normal,117000 +1116,20,RL,93,12085,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2007,2007,Hip,CompShg,VinylSd,VinylSd,Stone,328,Gd,TA,PConc,Ex,TA,No,GLQ,1004,Unf,0,730,1734,GasA,Ex,Y,SBrkr,1734,0,0,1734,1,0,2,0,3,1,Ex,7,Typ,1,Gd,Attchd,2007,RFn,3,928,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2007,New,Partial,318000 +1117,80,RL,NA,7750,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,SLvl,8,5,2002,2002,Hip,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,353,Unf,0,55,408,GasA,Ex,Y,SBrkr,779,640,0,1419,1,0,2,1,3,1,Gd,7,Typ,1,TA,BuiltIn,2002,Fin,2,527,TA,TA,Y,120,0,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,184100 +1118,20,RL,57,9764,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,5,7,1967,2003,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,702,Unf,0,192,894,GasA,Ex,Y,SBrkr,894,0,0,894,1,0,1,0,3,1,Gd,5,Typ,0,NA,Attchd,1967,RFn,2,450,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,130000 +1119,80,RL,85,13825,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,SLvl,5,6,1958,1987,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,Unf,0,Unf,0,533,533,GasA,TA,Y,SBrkr,1021,580,0,1601,0,1,1,0,3,1,TA,6,Min2,0,NA,BuiltIn,1958,RFn,1,300,TA,TA,Y,280,34,0,0,0,0,NA,NA,NA,0,12,2008,WD,Normal,140000 +1120,20,RL,70,7560,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1959,1959,Gable,CompShg,BrkFace,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,LwQ,369,Unf,0,671,1040,GasA,TA,Y,FuseA,1040,0,0,1040,0,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1959,RFn,1,286,TA,TA,Y,140,0,252,0,0,0,NA,GdWo,NA,0,7,2006,WD,Normal,133700 +1121,30,RM,59,8263,Pave,NA,Reg,Bnk,AllPub,Inside,Mod,IDOTRR,Norm,Norm,1Fam,1Story,6,5,1920,1950,Gable,CompShg,BrkFace,BrkFace,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,1012,1012,GasA,TA,Y,FuseA,1012,0,0,1012,0,0,1,0,2,1,TA,6,Typ,1,Gd,Detchd,1920,Unf,1,308,TA,TA,Y,0,22,112,0,0,0,NA,MnPrv,NA,0,5,2007,WD,Normal,118400 +1122,20,RL,84,10084,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,196,Gd,TA,PConc,Gd,TA,Av,GLQ,24,Unf,0,1528,1552,GasA,Ex,Y,SBrkr,1552,0,0,1552,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2005,RFn,3,782,TA,TA,Y,144,20,0,0,0,0,NA,NA,NA,0,7,2006,New,Partial,212900 +1123,20,RL,NA,8926,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,3,1956,1956,Gable,CompShg,AsbShng,AsbShng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,672,672,GasA,Ex,Y,FuseA,960,0,0,960,0,0,1,0,3,1,TA,5,Typ,0,NA,Basment,1956,Unf,1,288,TA,TA,Y,64,0,0,0,160,0,NA,MnPrv,NA,0,10,2009,COD,Abnorml,112000 +1124,20,RL,50,9405,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,9,1947,2008,Hip,CompShg,VinylSd,VinylSd,None,0,TA,Ex,CBlock,TA,TA,No,Unf,0,Unf,0,698,698,GasA,Ex,Y,SBrkr,698,0,0,698,0,1,1,0,2,1,TA,4,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,200,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,118000 +1125,80,RL,NA,9125,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,SLvl,7,5,1992,1992,Gable,CompShg,HdBoard,HdBoard,BrkFace,170,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,384,384,GasA,Gd,Y,SBrkr,812,670,0,1482,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1992,Fin,2,392,TA,TA,Y,100,25,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,163900 +1126,20,RL,60,10434,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,5,1955,1955,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1005,1005,GasA,TA,Y,SBrkr,1005,0,0,1005,0,0,1,0,2,1,Fa,5,Typ,1,TA,Detchd,1977,Unf,2,672,Fa,Fa,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2009,WD,Normal,115000 +1127,120,RL,53,3684,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2007,2007,Hip,CompShg,VinylSd,VinylSd,BrkFace,130,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1373,1373,GasA,Ex,Y,SBrkr,1555,0,0,1555,0,0,2,0,2,1,Gd,7,Typ,1,TA,Attchd,2007,Fin,3,660,TA,TA,Y,143,20,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,174000 +1128,20,RL,182,14572,Pave,NA,IR3,Lvl,AllPub,Corner,Gtl,Gilbert,Norm,Norm,1Fam,1Story,7,5,2004,2004,Hip,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,1300,Unf,0,230,1530,GasA,Ex,Y,SBrkr,1530,0,0,1530,1,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2004,Fin,3,630,TA,TA,Y,144,36,0,0,0,0,NA,NA,NA,0,11,2007,WD,Family,259000 +1129,60,RL,59,11796,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,847,847,GasA,Ex,Y,SBrkr,847,1112,0,1959,0,0,2,1,4,1,Gd,8,Typ,1,Gd,BuiltIn,2004,Fin,2,434,TA,TA,Y,100,48,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,215000 +1130,90,RM,60,7200,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,Duplex,SFoyer,5,5,1980,1980,Gable,CompShg,MetalSd,MetalSd,BrkFace,180,TA,TA,CBlock,Gd,TA,Gd,GLQ,936,Unf,0,0,936,GasA,TA,Y,SBrkr,936,0,0,936,1,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1980,Unf,2,672,TA,TA,Y,49,0,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,140000 +1131,50,RL,65,7804,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1.5Fin,4,3,1928,1950,Gable,CompShg,WdShing,Plywood,None,0,TA,TA,BrkTil,TA,TA,No,BLQ,622,Unf,0,500,1122,GasA,TA,Y,SBrkr,1328,653,0,1981,1,0,2,0,4,1,Gd,7,Min2,2,TA,Detchd,1981,Unf,2,576,TA,TA,Y,431,44,0,0,0,0,NA,MnPrv,NA,0,12,2009,WD,Normal,135000 +1132,20,RL,63,10712,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,1Story,5,5,1991,1992,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,Gd,TA,Mn,BLQ,212,Unf,0,762,974,GasA,TA,Y,SBrkr,974,0,0,974,0,0,1,0,3,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,28,0,0,0,0,NA,MnPrv,NA,0,9,2007,Oth,Abnorml,93500 +1133,70,RM,90,9900,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,6,4,1880,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,Mn,Unf,0,Unf,0,1008,1008,GasW,TA,Y,SBrkr,1178,1032,0,2210,0,0,2,0,5,1,Fa,8,Typ,0,NA,Detchd,1930,Unf,1,205,Fa,TA,N,0,48,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,117500 +1134,60,RL,80,9828,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,8,5,1995,1995,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,584,Unf,0,544,1128,GasA,Ex,Y,SBrkr,1142,878,0,2020,0,0,2,1,3,1,Gd,8,Typ,1,TA,Attchd,1995,RFn,2,466,TA,TA,Y,0,155,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,239500 +1135,60,RL,57,8773,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1997,1997,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,916,916,GasA,Gd,Y,SBrkr,916,684,0,1600,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1997,Fin,2,460,TA,TA,Y,100,38,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,169000 +1136,30,RM,60,6180,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,BrkSide,Norm,Norm,1Fam,1Story,6,5,1926,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,960,960,GasA,TA,N,SBrkr,986,0,0,986,0,0,1,0,2,1,TA,5,Typ,1,Gd,Detchd,1926,Unf,1,180,TA,TA,Y,0,128,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,102000 +1137,50,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1.5Fin,6,5,1950,1950,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,280,Unf,0,752,1032,GasA,TA,Y,FuseA,1032,220,0,1252,0,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1950,Unf,1,288,TA,TA,Y,0,0,96,0,0,0,NA,NA,NA,0,4,2008,WD,Abnorml,119000 +1138,50,RL,54,6342,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Feedr,Norm,1Fam,1.5Fin,5,8,1875,1996,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,TA,TA,No,Unf,0,Unf,0,780,780,GasA,Gd,N,SBrkr,780,240,0,1020,0,0,1,0,2,1,TA,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,176,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,94000 +1139,20,RL,NA,9819,Pave,NA,IR1,Lvl,AllPub,Inside,Mod,Mitchel,Norm,Norm,1Fam,1Story,6,5,1977,1977,Gable,CompShg,Plywood,ImStucc,None,0,TA,TA,PConc,TA,TA,Gd,ALQ,1567,Unf,0,0,1567,GasA,TA,Y,SBrkr,1567,0,0,1567,1,0,2,0,2,1,Gd,5,Typ,2,TA,Attchd,1977,RFn,2,714,TA,TA,Y,264,32,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,196000 +1140,30,RL,98,8731,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1Story,5,5,1920,1950,Gable,CompShg,Stucco,Stucco,None,0,TA,Fa,BrkTil,TA,TA,No,BLQ,645,Unf,0,270,915,GasA,TA,Y,SBrkr,1167,0,0,1167,0,0,1,0,3,1,TA,6,Maj1,1,Gd,Detchd,1972,Unf,2,495,TA,TA,Y,0,0,216,0,126,0,NA,NA,NA,0,5,2007,WD,Normal,144000 +1141,20,RL,60,7350,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1951,1951,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,Mn,ALQ,852,Unf,0,100,952,GasA,TA,Y,SBrkr,952,0,0,952,1,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1988,Unf,2,840,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2008,COD,Abnorml,139000 +1142,60,RL,NA,10304,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NWAmes,PosN,Norm,1Fam,2Story,5,7,1976,1976,Gable,CompShg,Plywood,Plywood,BrkFace,44,TA,Gd,CBlock,TA,TA,No,ALQ,381,Unf,0,399,780,GasA,Ex,Y,SBrkr,1088,780,0,1868,1,0,2,1,4,1,Gd,9,Typ,1,TA,Attchd,1976,Unf,2,484,TA,TA,Y,448,96,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,197500 +1143,60,RL,77,9965,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,2006,2007,Hip,CompShg,VinylSd,VinylSd,Stone,340,Gd,TA,PConc,Ex,TA,Gd,GLQ,1150,Unf,0,316,1466,GasA,Ex,Y,SBrkr,1466,1362,0,2828,1,0,3,0,4,1,Gd,11,Typ,1,TA,BuiltIn,2006,RFn,3,1052,TA,TA,Y,125,144,0,0,0,0,NA,NA,NA,0,4,2007,New,Partial,424870 +1144,20,RL,NA,9000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,3,1959,1959,Gable,CompShg,Wd Sdng,Plywood,None,0,TA,TA,CBlock,TA,TA,No,GLQ,288,Unf,0,718,1006,GasA,TA,Y,SBrkr,1006,0,0,1006,0,0,1,0,3,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,24,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,80000 +1145,190,RL,60,12180,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,2fmCon,1.5Fin,4,4,1941,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Fa,BrkTil,Gd,TA,No,BLQ,348,Unf,0,324,672,Grav,Fa,N,FuseA,672,252,0,924,1,0,1,0,2,1,Fa,5,Typ,0,NA,Detchd,1941,Unf,1,280,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,7,2010,WD,Normal,80000 +1146,50,RM,52,6240,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,5,6,1928,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,1042,1042,GasA,Ex,Y,SBrkr,1042,534,0,1576,0,0,1,0,3,1,TA,8,Typ,1,Gd,Detchd,1928,Unf,1,225,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2006,WD,Family,149000 +1147,20,RL,NA,11200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,1Story,6,5,1985,1985,Gable,CompShg,Wd Sdng,Wd Shng,BrkFace,85,Gd,TA,CBlock,Gd,TA,No,GLQ,1258,Unf,0,40,1298,GasA,TA,Y,SBrkr,1298,0,0,1298,1,0,2,0,3,1,Gd,5,Typ,1,TA,Attchd,1985,Unf,2,403,TA,TA,Y,165,26,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,180000 +1148,70,RL,75,12000,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2Story,7,7,1941,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,275,Unf,0,429,704,GasA,Ex,Y,SBrkr,860,704,0,1564,0,0,1,1,3,1,Fa,7,Typ,1,Gd,Attchd,1941,Unf,1,234,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,174500 +1149,50,RM,NA,5700,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,7,7,1926,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,572,572,GasA,TA,Y,SBrkr,572,539,0,1111,0,0,1,0,2,1,TA,5,Typ,1,Gd,Detchd,1982,Unf,1,288,TA,TA,Y,0,0,176,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,116900 +1150,70,RM,50,9000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,2Story,7,9,1920,1988,Hip,CompShg,VinylSd,VinylSd,None,0,TA,Gd,PConc,TA,TA,No,ALQ,624,Unf,0,26,650,GasA,Ex,Y,SBrkr,832,650,0,1482,0,1,1,0,3,1,TA,7,Typ,0,NA,Detchd,1930,Unf,2,324,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,143000 +1151,20,RL,57,8280,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,5,1950,1950,Gable,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,932,932,GasA,Ex,Y,FuseA,932,0,0,932,0,0,1,0,2,1,Gd,4,Typ,1,Gd,Attchd,1950,Unf,1,306,TA,TA,Y,0,0,214,0,0,0,NA,GdPrv,NA,0,11,2007,WD,Normal,124000 +1152,20,RL,134,17755,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,4,1959,1959,Gable,CompShg,HdBoard,Plywood,BrkFace,132,TA,TA,CBlock,TA,TA,No,BLQ,176,Unf,0,1290,1466,GasA,TA,Y,SBrkr,1466,0,0,1466,0,0,1,1,3,1,Fa,6,Typ,2,Gd,Attchd,1959,Fin,2,528,TA,TA,Y,0,140,0,0,100,0,NA,NA,NA,0,11,2006,WD,Normal,149900 +1153,20,RL,90,14115,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1Story,6,7,1956,2004,Gable,CompShg,Stone,Stone,None,0,TA,TA,PConc,TA,TA,No,ALQ,296,GLQ,547,230,1073,GasA,Ex,Y,SBrkr,1811,0,0,1811,0,0,1,0,2,1,Ex,6,Typ,1,Gd,Attchd,1956,Fin,2,470,TA,TA,Y,0,0,280,0,0,0,NA,NA,NA,0,7,2006,WD,Abnorml,230000 +1154,30,RM,NA,5890,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,IDOTRR,Norm,Norm,1Fam,1Story,6,8,1930,2007,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,Gd,BrkTil,TA,TA,Av,ALQ,538,Unf,0,278,816,GasA,Ex,Y,SBrkr,816,0,0,816,0,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,2002,Unf,1,432,TA,TA,Y,0,0,96,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,120500 +1155,60,RL,NA,13700,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,2Story,7,6,1965,1988,Gable,CompShg,VinylSd,VinylSd,Stone,288,TA,TA,CBlock,TA,TA,Gd,ALQ,454,Unf,0,410,864,GasA,TA,Y,SBrkr,902,918,0,1820,0,0,1,2,4,1,Gd,8,Typ,2,Gd,Attchd,1965,Unf,2,492,TA,TA,Y,60,84,0,0,273,0,NA,GdPrv,NA,0,5,2008,WD,Normal,201800 +1156,20,RL,90,10768,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Veenker,Norm,Norm,1Fam,1Story,5,8,1976,2004,Gable,CompShg,Plywood,Plywood,None,0,Gd,Gd,CBlock,Gd,TA,Gd,ALQ,1157,Unf,0,280,1437,GasA,TA,Y,SBrkr,1437,0,0,1437,1,0,2,0,3,1,Gd,6,Typ,1,Fa,Attchd,1976,RFn,2,528,TA,TA,Y,0,21,0,0,180,0,NA,NA,NA,0,7,2007,WD,Normal,218000 +1157,80,RL,85,9350,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,5,8,1965,1999,Gable,CompShg,BrkFace,BrkFace,None,0,TA,Gd,PConc,TA,TA,Gd,ALQ,633,Unf,0,586,1219,GasA,Gd,Y,SBrkr,1265,0,0,1265,0,1,2,0,3,1,Gd,6,Typ,1,Gd,Attchd,1965,RFn,2,502,TA,TA,Y,0,92,0,96,0,0,NA,MnPrv,NA,0,10,2008,WD,Normal,179900 +1158,120,RL,34,5001,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,Twnhs,1Story,7,5,2007,2008,Gable,CompShg,VinylSd,VinylSd,Stone,166,Gd,TA,PConc,Gd,TA,No,GLQ,904,Unf,0,410,1314,GasA,Ex,Y,SBrkr,1314,0,0,1314,1,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2008,RFn,2,626,TA,TA,Y,172,62,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,230000 +1159,20,RL,92,11932,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Somerst,Feedr,Norm,1Fam,1Story,8,5,2007,2008,Gable,CompShg,VinylSd,VinylSd,Stone,186,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1580,1580,GasA,Ex,Y,SBrkr,1580,0,0,1580,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2008,RFn,3,830,TA,TA,Y,0,24,0,0,0,0,NA,NA,NA,0,6,2008,ConLD,Partial,235128 +1160,60,RL,76,9120,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,2Story,6,6,1974,1974,Hip,CompShg,HdBoard,HdBoard,BrkFace,270,Gd,TA,CBlock,TA,TA,No,ALQ,442,Unf,0,459,901,GasA,TA,Y,SBrkr,943,933,0,1876,0,0,2,1,4,1,Gd,8,Typ,1,TA,Attchd,1974,RFn,2,540,Gd,TA,Y,0,69,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,185000 +1161,160,RL,24,2280,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NPkVill,Norm,Norm,Twnhs,2Story,6,5,1978,1978,Gable,CompShg,Plywood,Brk Cmn,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,311,Unf,0,544,855,GasA,Fa,Y,SBrkr,855,601,0,1456,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1978,Unf,2,440,TA,TA,Y,26,0,0,0,0,0,NA,NA,NA,0,7,2010,WD,Normal,146000 +1162,20,RL,NA,14778,Pave,NA,IR1,Low,AllPub,CulDSac,Gtl,Crawfor,PosN,Norm,1Fam,1Story,6,7,1954,2006,Hip,CompShg,HdBoard,HdBoard,BrkFace,72,Gd,TA,CBlock,TA,TA,No,BLQ,728,Unf,0,568,1296,GasA,Ex,Y,SBrkr,1640,0,0,1640,1,0,1,0,3,1,Gd,7,Typ,1,Gd,Detchd,1993,Unf,2,924,TA,TA,Y,108,0,0,216,0,0,NA,NA,NA,0,11,2008,WD,Normal,224000 +1163,20,RL,109,8724,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1968,1968,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,Gd,TA,No,BLQ,492,Unf,0,402,894,GasA,Gd,Y,SBrkr,894,0,0,894,0,0,1,0,3,1,TA,5,Typ,1,Po,Attchd,1968,Fin,2,450,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,129000 +1164,90,RL,60,12900,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Feedr,Norm,Duplex,SFoyer,4,4,1969,1969,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,Av,GLQ,1198,Unf,0,0,1198,GasA,TA,Y,SBrkr,1258,0,0,1258,2,0,0,2,0,2,TA,6,Typ,0,NA,CarPort,1969,Unf,2,400,Fa,TA,Y,120,0,0,0,0,0,NA,NA,NA,0,1,2008,WD,Alloca,108959 +1165,80,RL,NA,16157,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,Veenker,Feedr,Norm,1Fam,SLvl,5,7,1978,1978,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,PConc,Gd,TA,Gd,ALQ,680,Rec,391,289,1360,GasA,Ex,Y,SBrkr,1432,0,0,1432,1,0,1,1,2,1,Gd,5,Typ,1,TA,Attchd,1978,Unf,2,588,TA,TA,Y,168,180,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,194000 +1166,20,RL,79,9541,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,7,5,2009,2009,Gable,CompShg,VinylSd,VinylSd,Stone,268,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1502,1502,GasA,Ex,Y,SBrkr,1502,0,0,1502,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2009,RFn,2,644,TA,TA,Y,0,114,0,0,0,0,NA,NA,NA,0,9,2009,New,Partial,233170 +1167,20,RL,64,10475,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,8,5,2008,2008,Gable,CompShg,VinylSd,VinylSd,Stone,72,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1694,1694,GasA,Ex,Y,SBrkr,1694,0,0,1694,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2008,RFn,3,776,TA,TA,Y,160,33,0,0,0,0,NA,NA,NA,0,2,2010,WD,Normal,245350 +1168,60,RL,58,10852,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,RRAn,Norm,1Fam,2Story,6,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,GLQ,786,Unf,0,173,959,GasA,Ex,Y,SBrkr,959,712,0,1671,1,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,2000,Fin,2,472,TA,TA,Y,0,38,0,0,0,0,NA,NA,NA,0,2,2006,WD,Normal,173000 +1169,70,RL,120,13728,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,2Story,6,7,1935,1986,Hip,CompShg,Stucco,Stucco,None,0,TA,TA,CBlock,TA,TA,No,Rec,626,Unf,0,501,1127,GasA,Ex,Y,SBrkr,1236,872,0,2108,0,0,2,0,4,1,Gd,7,Typ,2,TA,Basment,1935,Unf,2,540,TA,TA,Y,0,0,0,0,90,0,NA,NA,NA,0,7,2008,WD,Normal,235000 +1170,60,RL,118,35760,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NoRidge,Norm,Norm,1Fam,2Story,10,5,1995,1996,Hip,CompShg,HdBoard,HdBoard,BrkFace,1378,Gd,Gd,PConc,Ex,TA,Gd,GLQ,1387,Unf,0,543,1930,GasA,Ex,Y,SBrkr,1831,1796,0,3627,1,0,3,1,4,1,Gd,10,Typ,1,TA,Attchd,1995,Fin,3,807,TA,TA,Y,361,76,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,625000 +1171,80,RL,76,9880,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,SLvl,6,6,1977,1977,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,Av,ALQ,522,Unf,0,574,1096,GasA,TA,Y,SBrkr,1118,0,0,1118,1,0,1,0,3,1,TA,6,Typ,1,Po,Attchd,1977,Fin,1,358,TA,TA,Y,203,0,0,0,0,576,Gd,GdPrv,NA,0,7,2008,WD,Normal,171000 +1172,20,RL,76,9120,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1958,1958,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,ALQ,662,Unf,0,599,1261,GasA,Ex,Y,SBrkr,1261,0,0,1261,1,0,1,0,3,1,TA,6,Typ,1,TA,Attchd,1958,RFn,2,433,TA,TA,Y,0,0,0,0,288,0,NA,NA,Shed,1400,11,2008,WD,Normal,163000 +1173,160,FV,35,4017,Pave,Pave,IR1,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,7,5,2006,2007,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,625,625,GasA,Ex,Y,SBrkr,625,625,0,1250,0,0,2,1,2,1,Gd,5,Typ,0,NA,Detchd,2006,Fin,2,625,TA,TA,Y,0,54,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,171900 +1174,50,RL,138,18030,Pave,NA,IR1,Bnk,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,1.5Fin,5,6,1946,1994,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,152,BLQ,469,977,1598,GasA,TA,Y,SBrkr,1636,971,479,3086,0,0,3,0,3,1,Ex,12,Maj1,1,Gd,NA,NA,NA,0,0,NA,NA,Y,122,0,0,0,0,0,NA,MnPrv,NA,0,3,2007,WD,Normal,200500 +1175,70,RL,80,16560,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2Story,6,8,1932,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Gd,TA,No,Rec,503,Unf,0,449,952,GasA,TA,Y,SBrkr,1170,1175,0,2345,0,0,2,1,4,1,TA,9,Typ,1,Gd,Detchd,1932,Unf,2,360,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,239000 +1176,50,RL,85,10678,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,1.5Fin,8,5,1992,2000,Hip,CompShg,HdBoard,HdBoard,BrkFace,337,Gd,TA,PConc,Gd,TA,No,GLQ,700,Unf,0,983,1683,GasA,Ex,Y,SBrkr,2129,743,0,2872,0,0,2,1,4,1,Gd,9,Typ,1,TA,Attchd,1992,Fin,2,541,TA,TA,Y,0,33,0,0,0,0,NA,NA,NA,0,4,2007,WD,Normal,285000 +1177,20,RL,37,6951,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Mitchel,Norm,Norm,1Fam,1Story,5,5,1984,1985,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,658,Unf,0,218,876,GasA,TA,Y,SBrkr,923,0,0,923,1,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1984,Unf,1,264,TA,TA,Y,362,0,0,0,0,0,NA,MnPrv,NA,0,10,2008,WD,Normal,119500 +1178,50,RM,NA,3950,Pave,Grvl,Reg,Bnk,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1.5Fin,6,8,1926,2004,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,468,Unf,0,350,818,GasA,TA,Y,SBrkr,818,406,0,1224,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1926,Unf,1,210,TA,TA,N,0,0,116,0,0,0,NA,NA,NA,0,12,2009,WD,Normal,115000 +1179,50,RL,54,7681,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,Crawfor,Norm,Norm,1Fam,1.5Fin,5,6,1921,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,731,731,GasA,Ex,Y,SBrkr,820,523,0,1343,0,0,1,1,3,1,TA,7,Typ,1,Gd,Detchd,1921,Unf,1,186,Fa,TA,Y,192,0,102,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,154900 +1180,20,RL,77,8335,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,5,1954,1954,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,Gd,Y,SBrkr,1124,0,0,1124,0,0,1,0,3,1,TA,5,Min2,1,Gd,NA,NA,NA,0,0,NA,NA,N,0,36,190,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,93000 +1181,60,RL,NA,11170,Pave,NA,IR2,Lvl,AllPub,Corner,Gtl,Timber,Norm,Norm,1Fam,2Story,7,5,1990,1991,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,Wood,Gd,TA,No,LwQ,1216,Unf,0,0,1216,GasA,Ex,Y,SBrkr,1298,1216,0,2514,0,0,2,1,4,1,TA,8,Typ,0,NA,Attchd,1990,Fin,2,693,TA,TA,Y,0,0,0,0,0,0,NA,GdPrv,NA,0,4,2006,WD,Normal,250000 +1182,120,RM,64,5587,Pave,NA,IR1,HLS,AllPub,Inside,Mod,Crawfor,Norm,Norm,TwnhsE,1Story,8,5,2008,2008,Hip,CompShg,CemntBd,CmentBd,Stone,186,Ex,TA,PConc,Ex,TA,Gd,GLQ,1480,Unf,0,120,1600,GasA,Ex,Y,SBrkr,1652,0,0,1652,1,1,2,0,2,1,Gd,5,Typ,1,Gd,Attchd,2008,Fin,2,482,TA,TA,Y,162,53,0,153,0,0,NA,NA,NA,0,11,2008,New,Partial,392500 +1183,60,RL,160,15623,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NoRidge,Norm,Norm,1Fam,2Story,10,5,1996,1996,Hip,CompShg,Wd Sdng,ImStucc,None,0,Gd,TA,PConc,Ex,TA,Av,GLQ,2096,Unf,0,300,2396,GasA,Ex,Y,SBrkr,2411,2065,0,4476,1,0,3,1,4,1,Ex,10,Typ,2,TA,Attchd,1996,Fin,3,813,TA,TA,Y,171,78,0,0,0,555,Ex,MnPrv,NA,0,7,2007,WD,Abnorml,745000 +1184,30,RL,60,10800,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,6,1920,1950,Hip,CompShg,Stucco,Stucco,None,0,TA,TA,BrkTil,TA,TA,No,Rec,821,Unf,0,299,1120,GasA,Ex,Y,SBrkr,1130,0,0,1130,1,0,1,0,2,1,TA,5,Typ,1,Gd,Detchd,1970,Unf,2,720,TA,TA,Y,229,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,120000 +1185,20,RL,50,35133,Grvl,NA,Reg,Lvl,AllPub,Inside,Mod,Timber,Norm,Norm,1Fam,1Story,5,4,1963,1963,Hip,CompShg,MetalSd,MetalSd,BrkFace,226,TA,TA,CBlock,TA,TA,Gd,Rec,1159,Unf,0,413,1572,GasA,Gd,Y,SBrkr,1572,0,0,1572,1,0,1,1,3,1,TA,5,Typ,2,TA,2Types,1963,RFn,3,995,TA,TA,Y,0,263,0,0,263,0,NA,NA,NA,0,5,2007,WD,Normal,186700 +1186,50,RL,60,9738,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,5,7,1924,1950,Gable,CompShg,AsbShng,AsbShng,None,0,TA,Gd,BrkTil,TA,TA,No,BLQ,392,Unf,0,392,784,GasA,Gd,Y,SBrkr,949,272,0,1221,1,0,1,0,4,1,TA,7,Typ,0,NA,Attchd,1965,Unf,1,392,TA,TA,Y,0,0,236,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,104900 +1187,190,RL,107,10615,Pave,NA,IR1,Bnk,AllPub,Corner,Mod,OldTown,Artery,Artery,2fmCon,2Story,3,5,1900,1970,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Fa,TA,Mn,BLQ,440,Unf,0,538,978,GasA,TA,Y,SBrkr,1014,685,0,1699,1,0,2,0,3,2,TA,7,Typ,0,NA,CarPort,1920,Unf,2,420,Fa,Fa,Y,0,74,0,0,0,0,NA,NA,NA,0,8,2009,WD,Abnorml,95000 +1188,20,RL,89,12461,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NoRidge,Norm,Norm,1Fam,1Story,8,5,1994,1995,Gable,CompShg,ImStucc,ImStucc,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,1456,Unf,0,168,1624,GasA,Ex,Y,SBrkr,1624,0,0,1624,1,0,2,0,2,1,Gd,5,Typ,1,Fa,Attchd,1994,RFn,3,757,TA,TA,Y,0,114,192,0,0,0,NA,GdPrv,NA,0,7,2006,WD,Normal,262000 +1189,60,RL,68,8935,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,95,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,831,831,GasA,Ex,Y,SBrkr,831,829,0,1660,0,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2002,RFn,2,493,TA,TA,Y,144,68,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,195000 +1190,60,RL,60,7500,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,994,994,GasA,Gd,Y,SBrkr,1028,776,0,1804,0,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1999,Fin,2,442,TA,TA,Y,140,60,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,189000 +1191,190,RL,NA,32463,Pave,NA,Reg,Low,AllPub,Inside,Mod,Mitchel,Norm,Norm,2fmCon,1Story,4,4,1961,1975,Gable,CompShg,MetalSd,MetalSd,Stone,149,TA,Gd,CBlock,TA,TA,Av,BLQ,1159,Unf,0,90,1249,GasA,Ex,Y,SBrkr,1622,0,0,1622,1,0,1,0,3,1,TA,7,Typ,1,TA,2Types,1975,Fin,4,1356,TA,TA,Y,439,0,0,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,168000 +1192,160,FV,24,2645,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,Twnhs,2Story,8,5,1999,2000,Gable,CompShg,MetalSd,MetalSd,BrkFace,456,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,776,776,GasA,Ex,Y,SBrkr,764,677,0,1441,0,0,2,1,2,1,Gd,5,Typ,0,NA,Detchd,1999,Unf,2,492,TA,TA,Y,206,0,0,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,174000 +1193,50,RM,60,9600,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,5,8,1925,1994,Gambrel,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,TA,TA,Mn,Unf,0,Unf,0,702,702,GasA,Gd,Y,SBrkr,842,630,0,1472,0,0,1,0,3,1,Gd,6,Typ,0,NA,Detchd,1925,Unf,1,250,TA,Fa,P,0,0,84,0,0,0,NA,GdWo,NA,0,7,2007,WD,Normal,125000 +1194,120,RM,NA,4500,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,Mitchel,Norm,Norm,TwnhsE,1Story,6,5,1999,1999,Hip,CompShg,VinylSd,VinylSd,BrkFace,425,TA,TA,PConc,Ex,TA,No,GLQ,883,Unf,0,341,1224,GasA,Ex,Y,SBrkr,1224,0,0,1224,1,0,2,0,2,1,TA,5,Typ,0,NA,Attchd,1999,Fin,2,402,TA,TA,Y,0,304,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,165000 +1195,60,RL,80,9364,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Sawyer,Norm,Norm,1Fam,2Story,6,7,1969,1969,Gable,CompShg,HdBoard,HdBoard,Stone,143,TA,TA,CBlock,TA,TA,No,ALQ,371,Unf,0,292,663,GasA,TA,Y,SBrkr,663,689,0,1352,0,0,1,1,4,1,TA,7,Typ,0,NA,Attchd,1969,Fin,1,299,TA,TA,Y,379,36,0,0,0,0,NA,MnPrv,NA,0,3,2010,WD,Normal,158000 +1196,60,RL,51,8029,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,728,728,GasA,Ex,Y,SBrkr,728,728,0,1456,0,0,2,1,3,1,Gd,8,Typ,0,NA,Attchd,2005,Fin,2,400,TA,TA,Y,100,24,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,176000 +1197,60,RL,58,14054,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,879,879,GasA,Ex,Y,SBrkr,879,984,0,1863,0,0,2,1,4,1,Gd,9,Typ,1,Gd,BuiltIn,2006,Fin,3,660,TA,TA,Y,100,17,0,0,0,0,NA,NA,NA,0,11,2006,New,Partial,219210 +1198,75,RM,65,8850,Pave,NA,IR1,Bnk,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,2.5Unf,7,6,1916,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,815,815,GasA,Ex,Y,SBrkr,815,875,0,1690,0,0,1,0,3,1,TA,7,Typ,1,Gd,Detchd,1916,Unf,1,225,TA,TA,Y,0,0,330,0,0,0,NA,NA,NA,0,7,2006,ConLw,Normal,144000 +1199,20,RL,70,9100,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2001,2001,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1212,1212,GasA,Ex,Y,SBrkr,1212,0,0,1212,0,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2001,RFn,2,573,TA,TA,Y,356,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,178000 +1200,20,RL,75,11235,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,4,5,1963,1979,Gable,CompShg,HdBoard,HdBoard,BrkFace,51,TA,TA,CBlock,TA,TA,No,Rec,547,Unf,0,504,1051,GasA,Gd,Y,SBrkr,1382,0,0,1382,0,0,1,1,3,1,TA,6,Typ,1,Po,Attchd,1974,Unf,2,459,TA,TA,Y,0,82,0,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,148000 +1201,20,RL,71,9353,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,5,1970,1970,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,864,864,GasA,Gd,Y,SBrkr,864,0,0,864,0,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1972,Unf,1,280,TA,TA,Y,0,0,0,0,0,0,NA,NA,Shed,0,7,2006,Oth,Abnorml,116050 +1202,60,RL,80,10400,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,866,866,GasA,Ex,Y,SBrkr,866,913,0,1779,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,1998,RFn,2,546,TA,TA,Y,198,36,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,197900 +1203,50,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,5,8,1925,1997,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,884,884,GasA,Ex,Y,SBrkr,884,464,0,1348,1,0,1,0,3,1,TA,5,Typ,1,Fa,Detchd,1960,Unf,1,216,TA,TA,N,0,0,208,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,117000 +1204,20,RL,75,9750,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2000,2001,Gable,CompShg,VinylSd,VinylSd,BrkFace,171,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1630,1630,GasA,Ex,Y,SBrkr,1630,0,0,1630,0,0,2,0,3,1,Gd,6,Typ,1,TA,Attchd,2000,Unf,2,451,TA,TA,Y,74,234,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,213000 +1205,20,RL,78,10140,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,5,6,1975,1975,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,788,Unf,0,268,1056,GasA,Ex,Y,SBrkr,1074,0,0,1074,1,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1975,RFn,2,495,TA,TA,Y,0,88,0,0,0,0,NA,MnPrv,NA,0,7,2006,WD,Normal,153500 +1206,20,RL,90,14684,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,SawyerW,Norm,Norm,1Fam,1Story,7,7,1990,1991,Hip,CompShg,HdBoard,HdBoard,BrkFace,234,Gd,TA,CBlock,Gd,TA,Mn,ALQ,485,BLQ,177,1496,2158,GasA,Gd,Y,SBrkr,2196,0,0,2196,0,0,2,0,3,1,Gd,7,Typ,1,TA,Attchd,1990,RFn,3,701,TA,TA,Y,84,70,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,271900 +1207,20,RH,NA,8900,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,1Story,4,4,1966,1966,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,Rec,1056,Unf,0,0,1056,GasA,TA,Y,SBrkr,1056,0,0,1056,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1966,Unf,1,384,TA,TA,Y,0,42,0,0,0,0,NA,MnPrv,NA,0,11,2006,WD,Normal,107000 +1208,20,RL,70,9135,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,6,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,120,Gd,TA,PConc,Gd,TA,Av,GLQ,340,Unf,0,1342,1682,GasA,Ex,Y,SBrkr,1700,0,0,1700,1,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2003,RFn,2,544,TA,TA,Y,192,23,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,200000 +1209,20,RL,70,7763,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1962,1980,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,Rec,504,BLQ,108,319,931,GasA,TA,Y,SBrkr,1283,0,0,1283,1,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1980,Unf,2,506,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,10,2008,WD,Normal,140000 +1210,20,RL,85,10182,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Somerst,RRNn,Norm,1Fam,1Story,8,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,Stone,420,Gd,TA,PConc,Ex,TA,Mn,GLQ,1220,Unf,0,440,1660,GasA,Ex,Y,SBrkr,1660,0,0,1660,1,0,2,0,3,1,Gd,8,Typ,1,Gd,Attchd,2006,RFn,2,500,TA,TA,Y,322,50,0,0,0,0,NA,NA,NA,0,5,2006,New,Partial,290000 +1211,60,RL,70,11218,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,2Story,6,5,1992,1992,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1055,1055,GasA,Ex,Y,SBrkr,1055,790,0,1845,0,0,2,1,3,1,Gd,8,Typ,1,TA,Attchd,1992,RFn,2,462,TA,TA,Y,635,104,0,0,0,0,NA,GdPrv,Shed,400,5,2010,WD,Normal,189000 +1212,50,RL,152,12134,Pave,NA,IR1,Bnk,AllPub,Inside,Mod,Gilbert,Norm,Norm,1Fam,1.5Fin,8,7,1988,2005,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,Wood,Gd,TA,Av,GLQ,427,Unf,0,132,559,GasA,Gd,Y,SBrkr,1080,672,0,1752,0,0,2,0,4,1,TA,8,Typ,0,NA,Basment,1988,RFn,2,492,TA,TA,Y,325,12,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,164000 +1213,30,RL,50,9340,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,6,1941,1950,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,344,Unf,0,328,672,GasA,TA,Y,SBrkr,672,0,0,672,1,0,1,0,2,1,TA,4,Typ,0,NA,Attchd,1941,Unf,1,234,TA,TA,N,0,113,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,113000 +1214,80,RL,NA,10246,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Sawyer,Norm,Norm,1Fam,SLvl,4,9,1965,2001,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,TA,Gd,Av,GLQ,648,Unf,0,0,648,GasA,Ex,Y,SBrkr,960,0,0,960,1,1,0,0,0,1,TA,3,Typ,0,NA,Attchd,1965,Unf,1,364,TA,TA,Y,88,0,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,145000 +1215,85,RL,69,10205,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SFoyer,5,5,1962,1962,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,Av,BLQ,784,Unf,0,141,925,GasA,TA,Y,SBrkr,999,0,0,999,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1962,Unf,1,300,TA,TA,Y,150,72,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,134500 +1216,20,RL,99,7094,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,5,1966,1966,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,180,LwQ,374,340,894,GasA,TA,Y,SBrkr,894,0,0,894,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1966,RFn,1,384,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,5,2007,WD,Normal,125000 +1217,90,RM,68,8930,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,RRAe,Norm,Duplex,1.5Fin,6,5,1978,1978,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,1318,584,0,1902,0,0,2,0,4,2,TA,8,Typ,0,NA,Attchd,1978,Unf,2,539,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,112000 +1218,20,FV,72,8640,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2009,2009,Gable,CompShg,CemntBd,CmentBd,Stone,72,Gd,TA,PConc,Gd,TA,Mn,GLQ,936,Unf,0,364,1300,GasA,Ex,Y,SBrkr,1314,0,0,1314,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2009,RFn,2,552,TA,TA,Y,135,112,0,0,0,0,NA,NA,NA,0,9,2009,New,Partial,229456 +1219,50,RM,52,6240,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,4,5,1947,1950,Gable,CompShg,AsbShng,AsbShng,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,Gd,N,SBrkr,672,240,0,912,0,0,1,0,2,1,TA,3,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,80500 +1220,160,RM,21,1680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,6,5,1971,1971,Gable,CompShg,CemntBd,CmentBd,BrkFace,236,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,672,672,GasA,TA,Y,SBrkr,672,546,0,1218,0,0,1,1,3,1,TA,7,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,201,0,0,0,0,0,NA,NA,NA,0,4,2006,WD,Abnorml,91500 +1221,20,RL,66,7800,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1964,1964,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,312,LwQ,600,0,912,GasA,TA,Y,SBrkr,912,0,0,912,0,0,1,0,2,1,TA,5,Typ,0,NA,Attchd,1964,Unf,1,288,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,11,2006,WD,Abnorml,115000 +1222,20,RL,55,8250,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Feedr,Norm,1Fam,1Story,5,5,1968,1968,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,BLQ,250,LwQ,492,210,952,GasA,Ex,Y,SBrkr,1211,0,0,1211,0,0,1,0,3,1,TA,5,Typ,1,TA,Attchd,1968,Unf,1,322,TA,TA,Y,0,63,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,134000 +1223,50,RL,78,10496,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Artery,Norm,1Fam,1.5Fin,6,6,1949,1950,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,320,TA,TA,CBlock,TA,TA,Mn,Rec,196,Unf,0,844,1040,GasA,Ex,Y,SBrkr,1168,678,0,1846,0,0,2,0,3,1,TA,7,Typ,1,Gd,Attchd,1949,Unf,1,315,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,1,2007,WD,Normal,143000 +1224,20,RL,89,10680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,3,1951,1951,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,44,TA,TA,CBlock,TA,Fa,No,LwQ,756,Unf,0,1380,2136,GasA,TA,N,FuseA,2136,0,0,2136,0,0,2,0,4,1,TA,7,Mod,0,NA,Detchd,1951,Unf,2,528,TA,TA,Y,0,30,0,0,0,0,NA,MnPrv,NA,0,10,2006,WD,Normal,137900 +1225,60,RL,60,15384,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,RRAn,Norm,1Fam,2Story,7,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Av,GLQ,724,Unf,0,64,788,GasA,Ex,Y,SBrkr,788,702,0,1490,1,0,2,1,3,1,Gd,8,Typ,1,Gd,Attchd,2004,Fin,2,388,TA,TA,Y,100,75,0,0,0,0,NA,NA,NA,0,2,2008,WD,Normal,184000 +1226,80,RL,65,10482,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,6,8,1958,1958,Hip,CompShg,VinylSd,VinylSd,BrkFace,63,TA,Gd,CBlock,TA,TA,Av,GLQ,507,Unf,0,81,588,GasA,Ex,Y,SBrkr,1138,0,0,1138,0,1,1,0,3,1,TA,6,Typ,0,NA,Attchd,1958,RFn,1,264,TA,TA,Y,224,0,0,0,0,0,NA,MnWw,NA,0,6,2007,WD,Normal,145000 +1227,60,RL,86,14598,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Somerst,Feedr,Norm,1Fam,2Story,6,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,Stone,74,Gd,TA,PConc,Gd,TA,Mn,Unf,0,Unf,0,894,894,GasA,Ex,Y,SBrkr,894,1039,0,1933,0,0,2,1,4,1,Gd,9,Typ,1,Gd,BuiltIn,2007,Fin,3,668,TA,TA,Y,100,18,0,0,0,0,NA,NA,NA,0,1,2008,WD,Normal,214000 +1228,20,RL,72,8872,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,8,1965,2008,Gable,CompShg,VinylSd,VinylSd,BrkFace,300,TA,TA,CBlock,TA,TA,No,ALQ,595,Unf,0,317,912,GasA,Ex,Y,SBrkr,912,0,0,912,1,0,1,0,2,1,Gd,5,Typ,0,NA,Detchd,1992,Unf,2,576,TA,TA,Y,0,240,0,0,0,0,NA,NA,NA,0,12,2008,WD,Normal,147000 +1229,120,RL,65,8769,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,9,5,2008,2008,Hip,CompShg,MetalSd,MetalSd,BrkFace,766,Ex,TA,PConc,Ex,TA,No,GLQ,1540,Unf,0,162,1702,GasA,Ex,Y,SBrkr,1702,0,0,1702,1,0,1,1,1,1,Ex,7,Typ,1,Gd,Attchd,2008,Fin,3,1052,TA,TA,Y,0,72,0,0,224,0,NA,NA,NA,0,10,2008,New,Partial,367294 +1230,80,RL,70,7910,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,5,5,1960,1960,Hip,CompShg,BrkFace,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,ALQ,666,Unf,0,409,1075,GasA,Gd,Y,SBrkr,1507,0,0,1507,0,0,2,0,4,1,TA,7,Maj1,0,NA,Basment,1960,Unf,1,404,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,8,2008,WD,Normal,127000 +1231,90,RL,NA,18890,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Sawyer,Feedr,RRAe,Duplex,1.5Fin,5,5,1977,1977,Shed,CompShg,Plywood,Plywood,None,1,TA,TA,CBlock,Gd,TA,No,GLQ,498,Rec,211,652,1361,GasA,Ex,Y,SBrkr,1361,1259,0,2620,0,0,2,2,4,2,TA,12,Typ,1,TA,BuiltIn,1977,RFn,2,600,TA,TA,N,155,24,145,0,0,0,NA,NA,Gar2,8300,8,2007,WD,Normal,190000 +1232,90,RL,70,7728,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,Duplex,SLvl,5,6,1962,1962,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,120,TA,TA,CBlock,TA,TA,Av,ALQ,803,Unf,0,303,1106,GasA,TA,Y,SBrkr,1190,0,0,1190,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1962,Unf,2,540,TA,TA,Y,0,18,0,0,0,0,NA,GdWo,NA,0,5,2006,WD,Normal,132500 +1233,90,RL,70,9842,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NAmes,Norm,Norm,Duplex,1Story,4,5,1962,1962,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,GasA,TA,Y,SBrkr,1224,0,0,1224,0,0,2,0,2,2,TA,6,Typ,0,NA,CarPort,1962,Unf,2,462,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,101800 +1234,20,RL,NA,12160,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1959,1959,Hip,CompShg,Plywood,Plywood,BrkFace,180,TA,TA,CBlock,TA,TA,No,Rec,1000,Unf,0,188,1188,GasA,Fa,Y,SBrkr,1188,0,0,1188,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1959,RFn,2,531,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,5,2010,COD,Abnorml,142000 +1235,70,RH,55,8525,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,2Story,5,6,1911,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,PConc,TA,TA,Av,Unf,0,Unf,0,940,940,GasA,TA,N,FuseA,1024,940,0,1964,0,0,1,1,4,1,TA,7,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,192,0,0,0,0,NA,NA,NA,0,11,2008,WD,Abnorml,130000 +1236,70,RL,96,13132,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2Story,5,5,1914,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Gd,TA,Mn,Unf,0,Unf,0,747,747,GasA,Gd,Y,FuseF,892,892,0,1784,0,0,1,1,4,1,TA,9,Typ,0,NA,Detchd,1914,Unf,1,180,Fa,Fa,N,203,40,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,138887 +1237,160,RL,36,2628,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,Twnhs,2Story,7,5,2003,2003,Gable,CompShg,VinylSd,Wd Shng,Stone,106,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,764,764,GasA,Ex,Y,SBrkr,764,862,0,1626,0,0,2,1,2,1,Gd,6,Typ,0,NA,BuiltIn,2003,RFn,2,474,TA,TA,Y,0,27,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,175500 +1238,60,RL,41,12393,Pave,NA,IR2,Lvl,AllPub,FR2,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,847,847,GasA,Ex,Y,SBrkr,847,1101,0,1948,0,0,2,1,4,1,Gd,8,Typ,1,Gd,BuiltIn,2004,Fin,2,434,TA,TA,Y,100,48,0,0,0,0,NA,NA,NA,0,9,2006,WD,Normal,195000 +1239,20,RL,63,13072,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,RRAe,Norm,1Fam,1Story,6,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1141,1141,GasA,Ex,Y,SBrkr,1141,0,0,1141,0,0,1,1,3,1,TA,6,Typ,0,NA,Detchd,2005,Unf,2,484,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2006,WD,Abnorml,142500 +1240,20,RL,64,9037,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,8,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,BrkFace,32,Gd,TA,PConc,Gd,TA,Av,GLQ,428,Unf,0,1048,1476,GasA,Ex,Y,SBrkr,1484,0,0,1484,0,0,2,0,2,1,Ex,6,Typ,1,Gd,Attchd,2006,RFn,2,472,TA,TA,Y,120,33,0,0,0,0,NA,NA,NA,0,12,2007,WD,Normal,265900 +1241,60,RL,65,8158,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,252,Gd,TA,PConc,Gd,TA,No,GLQ,550,Unf,0,334,884,GasA,Ex,Y,SBrkr,884,884,0,1768,1,0,2,1,3,1,Gd,8,Typ,0,NA,Attchd,2003,RFn,2,543,TA,TA,Y,0,63,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,224900 +1242,20,RL,83,9849,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,7,6,2007,2007,Hip,CompShg,VinylSd,VinylSd,Stone,0,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1689,1689,GasA,Ex,Y,SBrkr,1689,0,0,1689,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2007,RFn,3,954,TA,TA,Y,0,56,0,0,0,0,NA,NA,NA,0,6,2007,New,Partial,248328 +1243,85,RL,85,10625,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,SFoyer,7,6,1974,1974,Gable,CompShg,Plywood,Plywood,BrkFace,81,TA,TA,CBlock,Gd,TA,Gd,GLQ,885,LwQ,168,0,1053,GasA,TA,Y,SBrkr,1173,0,0,1173,1,0,2,0,3,1,Gd,6,Typ,2,TA,Attchd,1974,RFn,2,528,TA,TA,Y,0,120,0,0,0,0,NA,MnPrv,NA,0,1,2010,WD,Family,170000 +1244,20,RL,107,13891,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,1Story,10,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,NA,NA,Ex,TA,PConc,Ex,Gd,Gd,GLQ,1386,Unf,0,690,2076,GasA,Ex,Y,SBrkr,2076,0,0,2076,1,0,2,1,2,1,Ex,7,Typ,1,Gd,Attchd,2006,Fin,3,850,TA,TA,Y,216,229,0,0,0,0,NA,NA,NA,0,9,2006,New,Partial,465000 +1245,70,RL,NA,11435,Pave,NA,IR1,HLS,AllPub,Corner,Mod,Crawfor,Norm,Norm,1Fam,2Story,8,7,1929,1950,Gable,CompShg,BrkFace,Stucco,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,792,792,GasA,Fa,Y,SBrkr,792,725,0,1517,0,0,1,0,3,1,Gd,7,Typ,2,Gd,Detchd,1931,Unf,2,400,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,230000 +1246,80,RL,78,12090,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,SLvl,6,7,1984,2003,Hip,CompShg,VinylSd,VinylSd,BrkFace,74,TA,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,585,585,GasA,Ex,Y,SBrkr,1140,728,0,1868,0,0,3,1,3,1,TA,7,Typ,1,TA,BuiltIn,1984,Fin,2,477,TA,TA,Y,268,112,0,0,147,0,NA,NA,NA,0,1,2007,WD,Abnorml,178000 +1247,60,FV,65,8125,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,756,756,GasA,Ex,Y,SBrkr,756,797,0,1553,0,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2005,RFn,2,615,TA,TA,Y,0,45,0,0,0,0,NA,NA,NA,0,3,2006,New,Partial,186500 +1248,80,RL,NA,12328,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,SLvl,6,5,1976,1976,Gable,CompShg,HdBoard,HdBoard,BrkFace,335,TA,TA,CBlock,TA,TA,Av,GLQ,539,Unf,0,473,1012,GasA,TA,Y,SBrkr,1034,0,0,1034,1,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1976,Unf,3,888,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,169900 +1249,75,RM,60,9600,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2.5Unf,6,5,1917,1950,Gable,CompShg,AsbShng,AsbShng,None,0,TA,TA,BrkTil,Gd,TA,No,Rec,319,Unf,0,416,735,OthW,Fa,N,SBrkr,1134,924,0,2058,0,0,1,1,3,1,TA,8,Typ,1,Gd,Detchd,1950,Unf,2,396,Fa,Fa,P,0,0,259,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,129500 +1250,20,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1950,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,534,Rec,96,246,876,GasA,TA,Y,SBrkr,988,0,0,988,0,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1950,Unf,1,276,TA,TA,Y,0,80,0,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,119000 +1251,20,RL,93,11160,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,7,5,1968,1968,Hip,CompShg,BrkFace,BrkFace,None,0,Gd,TA,CBlock,TA,TA,No,ALQ,1065,Unf,0,1045,2110,GasA,Ex,Y,SBrkr,2110,0,0,2110,1,0,2,1,3,1,Ex,8,Typ,2,TA,Attchd,1968,Fin,2,522,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,244000 +1252,120,RL,NA,3136,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,7,5,2003,2003,Gable,CompShg,VinylSd,Wd Shng,Stone,163,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1405,1405,GasA,Ex,Y,SBrkr,1405,0,0,1405,0,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2003,RFn,2,478,TA,TA,Y,148,36,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,171750 +1253,20,RL,62,9858,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,1Story,5,6,1968,1968,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,BLQ,510,Unf,0,354,864,GasA,TA,Y,SBrkr,874,0,0,874,1,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1968,RFn,1,288,TA,TA,Y,33,0,0,0,0,0,NA,GdWo,Shed,600,11,2009,WD,Normal,130000 +1254,60,RL,NA,17542,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Veenker,Norm,Norm,1Fam,2Story,7,7,1974,2003,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,Gd,TA,CBlock,TA,TA,Gd,LwQ,125,ALQ,1031,36,1192,GasA,TA,Y,SBrkr,1516,651,0,2167,1,0,2,1,3,1,Gd,9,Typ,2,Gd,Attchd,1974,RFn,2,518,TA,TA,Y,220,47,0,0,0,0,NA,MnPrv,NA,0,7,2007,WD,Normal,294000 +1255,60,RL,60,6931,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,2Story,7,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,Stone,92,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,746,746,GasA,Ex,Y,SBrkr,760,896,0,1656,0,0,2,1,3,1,Gd,7,Typ,1,Gd,BuiltIn,2003,Fin,2,397,TA,TA,Y,178,128,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,165400 +1256,50,RM,52,6240,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,6,6,1931,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,Fa,No,LwQ,425,Unf,0,459,884,GasA,TA,Y,FuseA,959,408,0,1367,0,0,1,0,3,1,TA,6,Typ,1,Gd,Detchd,1978,Unf,1,560,TA,TA,Y,0,0,0,0,120,0,NA,NA,NA,0,11,2007,WD,Normal,127500 +1257,20,RL,91,14303,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NoRidge,Norm,Norm,1Fam,1Story,8,5,1994,1994,Hip,CompShg,HdBoard,HdBoard,BrkFace,554,Gd,TA,PConc,Gd,TA,Gd,GLQ,1314,Unf,0,672,1986,GasA,Ex,Y,SBrkr,1987,0,0,1987,1,0,2,0,2,1,Gd,7,Typ,1,TA,Attchd,1994,Fin,2,691,TA,TA,Y,262,36,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,301500 +1258,30,RL,56,4060,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Edwards,Feedr,Norm,1Fam,1Story,5,8,1922,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,Fa,TA,No,Unf,0,Unf,0,864,864,GasA,Ex,Y,SBrkr,864,0,0,864,0,0,1,0,2,1,TA,4,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,96,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,99900 +1259,80,RL,59,9587,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,SLvl,7,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,Stone,182,Gd,TA,PConc,Gd,TA,Gd,GLQ,655,Unf,0,201,856,GasA,Ex,Y,SBrkr,1166,0,0,1166,1,0,2,0,2,1,Gd,5,Typ,0,NA,Attchd,2005,Fin,2,400,TA,TA,Y,212,0,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,190000 +1260,20,RL,65,9750,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,8,1969,1969,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,602,LwQ,438,14,1054,GasA,Gd,Y,SBrkr,1054,0,0,1054,1,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1969,Unf,2,460,TA,TA,Y,180,0,0,0,80,0,NA,NA,NA,0,7,2008,WD,Normal,151000 +1261,60,RL,NA,24682,Pave,NA,IR3,Lvl,AllPub,CulDSac,Gtl,Gilbert,RRAn,Norm,1Fam,2Story,6,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,841,841,GasA,Ex,Y,SBrkr,892,783,0,1675,0,0,2,1,3,1,TA,7,Typ,1,TA,BuiltIn,1999,Fin,2,502,TA,TA,Y,0,103,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,181000 +1262,20,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1956,1956,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Rec,504,Unf,0,546,1050,GasA,Gd,Y,SBrkr,1050,0,0,1050,0,0,1,0,2,1,TA,5,Typ,0,NA,Attchd,1956,Unf,1,338,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,128900 +1263,50,RL,NA,11250,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,ClearCr,Norm,Norm,1Fam,1.5Fin,4,5,1957,1989,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,Av,Unf,0,Unf,0,1104,1104,GasA,Ex,Y,FuseA,1104,684,0,1788,1,0,1,0,5,1,TA,8,Min2,2,TA,Attchd,1957,Unf,1,304,TA,TA,Y,120,0,0,0,0,0,NA,NA,NA,0,11,2009,WD,Normal,161500 +1264,70,RL,60,13515,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,2Story,6,6,1919,1950,Gambrel,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,764,764,GasA,Ex,Y,FuseA,1060,764,0,1824,0,0,1,0,3,1,TA,8,Typ,1,Gd,Detchd,1940,Unf,2,520,TA,TA,N,0,0,126,0,0,0,NA,GdPrv,NA,0,7,2007,WD,Normal,180500 +1265,120,RH,34,4060,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,TwnhsE,1Story,6,5,1998,1999,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,266,Unf,0,1139,1405,GasA,Ex,Y,SBrkr,1337,0,0,1337,1,0,2,0,2,1,Gd,5,Typ,0,NA,Attchd,1998,Fin,2,511,TA,TA,Y,144,68,0,0,0,0,NA,NA,NA,0,8,2008,COD,Abnorml,181000 +1266,160,FV,35,3735,Pave,NA,Reg,Lvl,AllPub,FR3,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,7,5,1999,1999,Hip,CompShg,MetalSd,MetalSd,BrkFace,218,Gd,TA,PConc,Gd,TA,No,GLQ,450,Unf,0,241,691,GasA,Ex,Y,SBrkr,713,739,0,1452,1,0,2,1,3,1,Gd,6,Typ,0,NA,Detchd,1999,Unf,2,506,TA,TA,Y,0,34,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,183900 +1267,190,RM,60,10120,Pave,NA,IR1,Bnk,AllPub,Inside,Gtl,OldTown,Feedr,Norm,2fmCon,2.5Unf,7,4,1910,1950,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,Fa,TA,CBlock,TA,TA,No,Unf,0,Unf,0,925,925,GasA,TA,N,FuseF,964,925,0,1889,0,0,1,1,4,2,TA,9,Typ,1,Gd,Detchd,1960,Unf,1,308,TA,TA,N,0,0,264,0,0,0,NA,MnPrv,NA,0,1,2007,WD,Normal,122000 +1268,20,RL,89,13214,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,9,5,2008,2009,Hip,CompShg,Stucco,CmentBd,None,0,Ex,TA,PConc,Ex,TA,Gd,Unf,0,Unf,0,2002,2002,GasA,Ex,Y,SBrkr,2018,0,0,2018,0,0,2,0,3,1,Ex,10,Typ,1,Gd,Attchd,2009,Fin,3,746,TA,TA,Y,144,76,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,378500 +1269,50,RL,NA,14100,Pave,NA,IR1,Lvl,AllPub,Inside,Mod,Crawfor,Norm,Norm,1Fam,1.5Fin,8,9,1935,1997,Gable,CompShg,Stucco,Stucco,BrkFace,632,TA,Gd,CBlock,TA,TA,Mn,Rec,192,Unf,0,536,728,GasA,Ex,Y,SBrkr,1968,1479,0,3447,0,0,3,1,4,1,Gd,11,Typ,2,Gd,BuiltIn,1982,Unf,3,1014,TA,TA,Y,314,12,0,0,0,0,NA,GdWo,NA,0,5,2008,WD,Normal,381000 +1270,50,RL,78,11344,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Feedr,Norm,1Fam,1.5Fin,5,5,1958,1958,Gable,CompShg,MetalSd,MetalSd,BrkFace,180,TA,TA,CBlock,TA,TA,No,BLQ,460,Unf,0,414,874,GasW,TA,Y,FuseA,874,650,0,1524,0,0,1,1,3,1,TA,7,Typ,0,NA,Attchd,1958,Unf,1,315,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,7,2007,WD,Normal,144000 +1271,40,RL,NA,23595,Pave,NA,Reg,Low,AllPub,Inside,Sev,ClearCr,Norm,Norm,1Fam,1Story,7,6,1979,1979,Shed,WdShake,Plywood,Plywood,None,0,Gd,TA,PConc,Gd,TA,Gd,GLQ,1258,Unf,0,74,1332,GasA,TA,Y,SBrkr,1332,192,0,1524,2,0,0,1,0,1,Gd,4,Typ,1,TA,Attchd,1979,Fin,2,586,TA,TA,Y,268,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,260000 +1272,20,RL,NA,9156,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,PosN,Norm,1Fam,1Story,6,7,1968,1968,Hip,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1489,1489,GasA,Gd,Y,SBrkr,1489,0,0,1489,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,1968,RFn,2,462,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,185750 +1273,20,RL,NA,13526,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,6,1965,1965,Hip,CompShg,HdBoard,Plywood,BrkFace,114,TA,TA,CBlock,TA,TA,No,BLQ,560,LwQ,375,0,935,GasA,TA,Y,SBrkr,935,0,0,935,1,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1965,Unf,1,288,TA,TA,Y,180,0,0,0,0,0,NA,MnPrv,NA,0,11,2006,WD,Normal,137000 +1274,80,RL,124,11512,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Edwards,Norm,Norm,1Fam,SLvl,6,7,1959,2006,Gable,CompShg,Plywood,Plywood,BrkFace,84,TA,TA,CBlock,TA,TA,Av,ALQ,719,Unf,0,300,1019,GasA,Gd,Y,SBrkr,1357,0,0,1357,1,0,1,0,2,1,Ex,5,Typ,1,Gd,Basment,1959,RFn,1,312,TA,TA,Y,0,0,0,0,163,0,NA,GdPrv,NA,0,5,2008,WD,Normal,177000 +1275,50,RL,53,5362,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,Crawfor,Norm,Norm,1Fam,1.5Fin,5,6,1910,2003,Gable,CompShg,Wd Sdng,Wd Shng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,661,661,GasA,Ex,Y,SBrkr,661,589,0,1250,0,0,2,0,3,1,TA,8,Typ,1,Gd,Detchd,1985,Unf,2,552,TA,TA,Y,242,0,81,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,139000 +1276,90,RL,95,11345,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Feedr,Norm,Duplex,2Story,5,5,1948,1950,Gable,Roll,AsbShng,AsbShng,Stone,567,TA,TA,CBlock,TA,TA,No,Rec,220,Unf,0,708,928,GasA,Gd,Y,FuseA,928,992,0,1920,0,0,2,0,4,2,TA,10,Typ,0,NA,Detchd,1948,Unf,2,400,TA,Fa,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,137000 +1277,60,RL,NA,12936,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NWAmes,Norm,Norm,1Fam,2Story,6,6,1972,1972,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,TA,Gd,No,BLQ,593,Unf,0,130,723,GasA,TA,Y,SBrkr,735,660,0,1395,0,1,1,1,3,1,TA,6,Typ,1,TA,Attchd,1972,Unf,2,497,TA,TA,Y,294,116,0,0,0,0,NA,NA,NA,0,12,2009,WD,Normal,162000 +1278,80,RL,NA,17871,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NWAmes,Norm,Norm,1Fam,SLvl,6,5,1967,1976,Gable,CompShg,HdBoard,HdBoard,BrkFace,359,TA,TA,CBlock,Gd,TA,Av,ALQ,528,Unf,0,1152,1680,GasA,Fa,Y,SBrkr,1724,0,0,1724,1,0,1,1,3,1,TA,7,Typ,1,Gd,Attchd,1967,RFn,2,480,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,197900 +1279,60,RL,75,9473,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,NA,NA,Gd,TA,PConc,Gd,TA,No,GLQ,804,Unf,0,324,1128,GasA,Ex,Y,SBrkr,1128,903,0,2031,1,0,2,1,3,1,Gd,7,Typ,1,Gd,Attchd,2002,RFn,2,577,TA,TA,Y,0,211,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,237000 +1280,50,C (all),60,7500,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Fin,4,4,1920,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,No,Unf,0,Unf,0,698,698,GasA,TA,Y,FuseA,698,430,0,1128,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1980,RFn,2,528,TA,TA,Y,30,0,164,0,0,0,NA,NA,NA,0,4,2010,COD,Abnorml,68400 +1281,20,RL,67,9808,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,110,Gd,TA,PConc,Gd,TA,No,GLQ,788,Unf,0,785,1573,GasA,Ex,Y,SBrkr,1573,0,0,1573,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2002,RFn,2,544,TA,TA,Y,0,72,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,227000 +1282,20,RL,50,8049,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Timber,Norm,Norm,1Fam,1Story,7,5,1990,1990,Hip,CompShg,HdBoard,HdBoard,BrkFace,54,TA,TA,CBlock,Gd,TA,No,ALQ,1053,Unf,0,256,1309,GasA,TA,Y,SBrkr,1339,0,0,1339,1,0,2,0,2,1,TA,6,Typ,1,TA,Attchd,1990,Fin,2,484,Gd,Gd,Y,0,58,0,0,90,0,NA,NA,NA,0,7,2006,WD,Normal,180000 +1283,20,RL,61,8800,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,7,1977,2008,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Gd,TA,Mn,LwQ,532,Rec,144,364,1040,GasA,TA,Y,SBrkr,1040,0,0,1040,0,0,2,0,3,1,Gd,5,Typ,0,NA,Detchd,1977,Unf,2,484,TA,TA,Y,0,0,0,0,288,0,NA,NA,NA,0,9,2009,WD,Normal,150500 +1284,90,RL,94,9400,Pave,NA,Reg,Low,AllPub,Corner,Gtl,Mitchel,Norm,Norm,Duplex,2Story,6,5,1971,1971,Mansard,CompShg,MetalSd,Wd Shng,None,0,TA,TA,CBlock,TA,TA,Av,Unf,0,Unf,0,912,912,GasA,TA,Y,SBrkr,912,912,0,1824,0,0,2,2,4,2,TA,8,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,128,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,139000 +1285,50,RL,50,9638,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Feedr,Norm,1Fam,1.5Fin,6,7,1919,1990,Gable,CompShg,Wd Sdng,Wd Shng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,804,804,GasA,Ex,Y,SBrkr,1699,748,0,2447,0,0,2,0,4,1,Gd,10,Min2,1,Gd,Detchd,1969,Unf,1,336,TA,TA,Y,272,0,42,0,116,0,NA,NA,NA,0,3,2010,WD,Normal,169000 +1286,50,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,6,6,1939,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Fa,CBlock,TA,TA,No,Unf,0,Unf,0,780,780,GasA,Ex,Y,FuseF,825,587,0,1412,0,0,1,0,4,1,TA,6,Typ,1,Gd,Detchd,1939,Unf,1,280,TA,TA,Y,45,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,132500 +1287,20,RL,NA,9790,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Feedr,Norm,1Fam,1Story,6,5,1963,1963,Hip,CompShg,HdBoard,HdBoard,BrkFace,451,TA,TA,CBlock,TA,TA,No,ALQ,569,Rec,81,678,1328,GasA,TA,Y,SBrkr,1328,0,0,1328,1,0,1,1,3,1,TA,6,Typ,2,Gd,Attchd,1963,Unf,2,528,TA,TA,Y,0,26,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,143000 +1288,20,RL,NA,36500,Pave,NA,IR1,Low,AllPub,Inside,Mod,ClearCr,Norm,Norm,1Fam,1Story,5,5,1964,1964,Gable,CompShg,Wd Sdng,Wd Sdng,BrkCmn,621,TA,Gd,CBlock,TA,TA,Av,Rec,812,Unf,0,812,1624,GasA,Fa,Y,SBrkr,1582,0,0,1582,0,1,2,0,4,1,TA,7,Typ,0,NA,Attchd,1964,Unf,2,390,TA,TA,N,168,198,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,190000 +1289,120,RL,40,5664,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,StoneBr,Norm,Norm,TwnhsE,1Story,8,5,2000,2000,Gable,CompShg,CemntBd,CmentBd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,1158,Unf,0,343,1501,GasA,Ex,Y,SBrkr,1659,0,0,1659,1,0,2,0,2,1,Ex,5,Typ,1,Ex,Attchd,2000,Fin,2,499,TA,TA,Y,212,59,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,278000 +1290,60,RL,86,11065,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,1Fam,2Story,8,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,Stone,788,Gd,TA,PConc,Gd,TA,Mn,Unf,0,Unf,0,1085,1085,GasA,Ex,Y,SBrkr,1120,850,0,1970,0,0,2,1,3,1,Ex,8,Typ,1,Gd,BuiltIn,2006,Fin,3,753,TA,TA,Y,177,74,0,0,0,0,NA,NA,NA,0,10,2006,New,Partial,281000 +1291,80,RL,NA,14112,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,SLvl,5,7,1964,1964,Hip,CompShg,Wd Sdng,HdBoard,BrkFace,86,TA,TA,PConc,TA,TA,Av,GLQ,1014,Unf,0,138,1152,GasA,TA,Y,SBrkr,1152,0,0,1152,1,0,1,0,3,1,TA,6,Typ,1,Gd,Attchd,1964,RFn,2,484,TA,TA,Y,227,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,180500 +1292,160,RM,21,1680,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,5,7,1972,1972,Gable,CompShg,CemntBd,CmentBd,BrkFace,268,TA,TA,CBlock,TA,TA,No,ALQ,231,Unf,0,399,630,GasA,TA,Y,SBrkr,630,672,0,1302,0,0,2,1,3,1,TA,6,Typ,0,NA,Detchd,1972,Unf,1,264,TA,TA,Y,185,0,0,0,0,0,NA,NA,NA,0,2,2009,WD,Normal,119500 +1293,70,RM,60,6600,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,2Story,5,4,1892,1965,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,Stone,TA,TA,No,Unf,0,Unf,0,994,994,GasA,TA,N,SBrkr,1378,994,0,2372,0,0,2,0,4,2,TA,11,Min2,0,NA,Attchd,1985,RFn,1,432,TA,TA,Y,0,287,0,0,0,0,NA,NA,NA,0,12,2009,WD,Normal,107500 +1294,60,RL,78,10140,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,2Story,7,5,1976,1976,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,Gd,TA,No,GLQ,194,Unf,0,638,832,GasA,TA,Y,SBrkr,832,832,0,1664,0,0,2,1,4,1,TA,8,Typ,1,TA,Attchd,1976,RFn,2,528,TA,TA,Y,0,28,0,0,259,0,NA,GdWo,NA,0,3,2006,WD,Normal,162900 +1295,20,RL,60,8172,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,7,1955,1990,Hip,CompShg,WdShing,Plywood,None,0,TA,TA,CBlock,TA,TA,No,Rec,167,Unf,0,697,864,GasA,TA,Y,SBrkr,864,0,0,864,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1957,Unf,2,572,TA,TA,N,0,0,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,115000 +1296,20,RL,70,8400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Feedr,Norm,1Fam,1Story,5,5,1968,1968,Hip,CompShg,HdBoard,HdBoard,BrkFace,168,TA,TA,CBlock,TA,TA,Av,BLQ,1016,Unf,0,36,1052,GasA,Gd,Y,SBrkr,1052,0,0,1052,1,0,1,1,3,1,TA,5,Typ,0,NA,Attchd,1968,RFn,1,288,TA,TA,Y,356,0,0,0,0,0,NA,GdWo,NA,0,11,2006,WD,Normal,138500 +1297,20,RL,80,8700,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1963,1963,Hip,CompShg,MetalSd,MetalSd,BrkFace,148,TA,Gd,CBlock,TA,TA,Mn,ALQ,776,Unf,0,344,1120,GasA,Gd,Y,SBrkr,1128,0,0,1128,1,0,2,0,3,1,TA,6,Typ,0,NA,Attchd,1963,RFn,2,525,TA,TA,Y,192,20,123,0,0,0,NA,MnPrv,NA,0,12,2008,WD,Normal,155000 +1298,180,RM,35,3675,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,TwnhsE,SFoyer,6,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,BrkFace,82,TA,TA,PConc,Gd,TA,Gd,GLQ,547,Unf,0,0,547,GasA,Gd,Y,SBrkr,1072,0,0,1072,1,0,2,0,2,1,TA,5,Typ,0,NA,Basment,2005,Fin,2,525,TA,TA,Y,0,44,0,0,0,0,NA,NA,NA,0,6,2006,New,Partial,140000 +1299,60,RL,313,63887,Pave,NA,IR3,Bnk,AllPub,Corner,Gtl,Edwards,Feedr,Norm,1Fam,2Story,10,5,2008,2008,Hip,ClyTile,Stucco,Stucco,Stone,796,Ex,TA,PConc,Ex,TA,Gd,GLQ,5644,Unf,0,466,6110,GasA,Ex,Y,SBrkr,4692,950,0,5642,2,0,2,1,3,1,Ex,12,Typ,3,Gd,Attchd,2008,Fin,2,1418,TA,TA,Y,214,292,0,0,0,480,Gd,NA,NA,0,1,2008,New,Partial,160000 +1300,20,RL,75,7500,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,7,1959,1994,Hip,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,TA,TA,No,LwQ,340,Rec,906,0,1246,GasA,Ex,Y,SBrkr,1246,0,0,1246,1,0,1,1,3,1,Gd,6,Typ,0,NA,Attchd,1959,RFn,1,305,TA,TA,Y,218,0,0,0,0,0,NA,GdPrv,NA,0,5,2010,WD,Normal,154000 +1301,60,RL,NA,10762,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,None,344,Gd,TA,PConc,Gd,TA,No,GLQ,694,Unf,0,284,978,GasA,Ex,Y,SBrkr,1005,978,0,1983,0,0,2,1,3,1,Gd,9,Typ,1,TA,Attchd,1999,Fin,2,490,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,225000 +1302,70,RL,NA,7500,Pave,NA,IR1,Bnk,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2Story,6,7,1942,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,BLQ,547,Unf,0,224,771,GasA,Fa,Y,SBrkr,753,741,0,1494,0,0,1,0,3,1,Gd,7,Typ,2,Gd,Attchd,1942,Unf,1,213,TA,TA,P,0,0,0,0,224,0,NA,NA,NA,0,11,2009,WD,Normal,177500 +1303,60,RL,92,10120,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1994,1994,Hip,CompShg,VinylSd,VinylSd,BrkFace,391,Gd,TA,PConc,Gd,TA,No,GLQ,740,Unf,0,425,1165,GasA,Ex,Y,SBrkr,1203,1323,0,2526,1,0,2,1,4,1,Gd,8,Typ,1,TA,Attchd,1994,RFn,3,844,TA,TA,Y,309,78,0,0,0,0,NA,NA,NA,0,12,2006,WD,Normal,290000 +1304,20,RL,73,8688,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,7,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,228,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1616,1616,GasA,Ex,Y,SBrkr,1616,0,0,1616,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2005,RFn,3,834,TA,TA,Y,208,59,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,232000 +1305,160,RM,32,3363,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,TwnhsE,2Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,Stone,117,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,976,976,GasA,Ex,Y,SBrkr,976,732,0,1708,0,0,2,0,3,1,Gd,7,Maj1,0,NA,Detchd,2004,Unf,2,380,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,4,2006,WD,Normal,130000 +1306,20,RL,108,13173,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NridgHt,Norm,Norm,1Fam,1Story,9,5,2006,2007,Hip,CompShg,VinylSd,VinylSd,Stone,300,Gd,TA,PConc,Ex,TA,No,GLQ,1572,Unf,0,80,1652,GasA,Ex,Y,SBrkr,1652,0,0,1652,1,0,2,0,2,1,Ex,6,Typ,2,Ex,Attchd,2006,Fin,2,840,TA,TA,Y,404,102,0,0,0,0,NA,NA,NA,0,11,2009,WD,Normal,325000 +1307,120,RL,48,6955,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NridgHt,Norm,Norm,TwnhsE,1Story,7,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,Stone,94,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1368,1368,GasA,Ex,Y,SBrkr,1368,0,0,1368,0,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2005,RFn,2,474,TA,TA,Y,132,35,0,0,0,0,NA,NA,NA,0,9,2006,New,Partial,202500 +1308,20,RL,60,8072,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,5,1994,1995,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,PConc,Gd,Gd,No,ALQ,746,Unf,0,244,990,GasA,Ex,Y,SBrkr,990,0,0,990,1,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,2000,Unf,2,480,TA,TA,Y,0,64,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,138000 +1309,20,RM,100,12000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,7,1948,2005,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,GLQ,144,ALQ,608,172,924,GasA,Ex,Y,SBrkr,1122,0,0,1122,1,0,1,0,2,1,Gd,6,Typ,0,NA,Attchd,1948,Unf,2,528,TA,TA,Y,0,36,0,0,0,0,NA,GdWo,NA,0,5,2008,WD,Normal,147000 +1310,20,RL,NA,7153,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,1Story,6,5,1991,1991,Gable,CompShg,HdBoard,HdBoard,BrkFace,88,TA,TA,CBlock,Gd,TA,No,GLQ,1200,Unf,0,78,1278,GasA,Gd,Y,SBrkr,1294,0,0,1294,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,1991,RFn,2,496,TA,TA,Y,112,51,0,0,0,0,NA,GdWo,NA,0,6,2008,WD,Normal,179200 +1311,20,RL,100,17500,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,PosA,Norm,1Fam,1Story,7,8,1959,2002,Gable,CompShg,BrkFace,HdBoard,None,0,Gd,Gd,PConc,Gd,TA,Av,GLQ,1406,Unf,0,496,1902,GasA,TA,Y,SBrkr,1902,0,0,1902,1,0,2,0,3,1,Ex,7,Typ,2,TA,Attchd,1959,Fin,2,567,TA,TA,Y,0,207,162,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,335000 +1312,20,RL,68,8814,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2005,2007,Gable,CompShg,VinylSd,VinylSd,BrkFace,80,Gd,TA,PConc,Gd,TA,No,GLQ,925,Unf,0,349,1274,GasA,Ex,Y,SBrkr,1274,0,0,1274,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2005,RFn,2,508,TA,TA,Y,264,98,0,0,0,0,NA,NA,NA,0,1,2007,New,Partial,203000 +1313,60,RL,NA,9572,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1990,1990,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,336,Gd,TA,PConc,Ex,TA,No,GLQ,482,Unf,0,971,1453,GasA,Ex,Y,SBrkr,1453,1357,0,2810,0,0,2,1,4,1,Gd,9,Typ,1,Ex,Attchd,1990,RFn,2,750,Gd,Gd,Y,500,0,0,0,0,0,NA,NA,NA,0,6,2007,WD,Normal,302000 +1314,60,RL,108,14774,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NoRidge,Norm,Norm,1Fam,2Story,9,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,BrkFace,165,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1393,1393,GasA,Ex,Y,SBrkr,1422,1177,0,2599,0,0,2,1,4,1,Gd,10,Typ,1,TA,BuiltIn,1999,Fin,3,779,TA,TA,Y,668,30,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,333168 +1315,20,RL,60,8190,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,6,1954,1954,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,732,Unf,0,216,948,GasA,Ex,Y,SBrkr,948,0,0,948,1,0,1,0,3,1,TA,5,Typ,1,TA,Detchd,1956,Unf,1,280,TA,TA,Y,0,36,0,0,0,0,NA,NA,NA,0,10,2007,WD,Normal,119000 +1316,60,RL,85,11075,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,2Story,6,5,1969,1969,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,Fa,TA,Mn,ALQ,500,LwQ,276,176,952,GasA,TA,Y,SBrkr,1092,1020,0,2112,0,0,2,1,4,1,TA,9,Typ,2,Gd,Attchd,1969,Unf,2,576,TA,TA,Y,280,0,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,206900 +1317,20,RL,61,10226,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,8,5,2008,2008,Gable,CompShg,VinylSd,VinylSd,Stone,270,Gd,TA,PConc,Ex,TA,Gd,Unf,0,Unf,0,1622,1622,GasA,Ex,Y,SBrkr,1630,0,0,1630,1,0,2,0,3,1,Ex,8,Typ,1,Gd,Attchd,2008,RFn,3,860,TA,TA,Y,172,42,0,0,0,0,NA,NA,NA,0,1,2009,WD,Normal,295493 +1318,120,FV,47,4230,Pave,Pave,Reg,Lvl,AllPub,Corner,Gtl,Somerst,Norm,Norm,TwnhsE,1Story,7,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Ex,Gd,No,Unf,0,Unf,0,1352,1352,GasA,Ex,Y,SBrkr,1352,0,0,1352,0,0,2,0,2,1,Gd,5,Typ,1,Gd,Attchd,2006,RFn,2,466,TA,TA,Y,0,241,0,0,0,0,NA,NA,NA,0,4,2007,New,Partial,208900 +1319,20,RL,NA,14781,Pave,NA,IR2,Lvl,AllPub,CulDSac,Gtl,CollgCr,Norm,Norm,1Fam,1Story,8,5,2001,2002,Hip,CompShg,VinylSd,VinylSd,BrkFace,178,Gd,TA,PConc,Gd,TA,Gd,Unf,0,Unf,0,1753,1753,GasA,Ex,Y,SBrkr,1787,0,0,1787,0,0,2,0,3,1,Gd,7,Typ,1,TA,Attchd,2001,RFn,3,748,TA,TA,Y,198,150,0,0,0,0,NA,NA,NA,0,8,2006,WD,Normal,275000 +1320,20,RL,75,10215,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,4,5,1954,1954,Hip,CompShg,Wd Sdng,Wd Sdng,BrkFace,132,TA,TA,PConc,TA,TA,No,ALQ,492,Unf,0,372,864,GasA,Ex,Y,SBrkr,948,0,0,948,0,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1954,Unf,1,248,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,2,2007,WD,Normal,111000 +1321,20,RL,70,8400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,3,1957,1957,Hip,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,TA,TA,No,ALQ,189,Rec,661,628,1478,GasA,Gd,Y,SBrkr,1478,0,0,1478,1,0,1,1,3,1,TA,6,Typ,2,Gd,Attchd,1957,RFn,2,442,TA,TA,Y,114,0,0,0,216,0,NA,NA,NA,0,6,2009,WD,Normal,156500 +1322,20,RL,NA,6627,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,BrkSide,Feedr,Norm,1Fam,1Story,3,6,1949,1950,Hip,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,NA,NA,NA,NA,0,NA,0,0,0,Floor,TA,N,SBrkr,720,0,0,720,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1955,Unf,1,287,TA,Fa,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,72500 +1323,60,RL,107,10186,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,7,5,1992,1992,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,674,Unf,0,76,750,GasA,Ex,Y,SBrkr,1061,862,0,1923,1,0,2,1,3,1,Gd,8,Typ,1,TA,Attchd,1992,RFn,2,564,TA,TA,Y,240,39,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,190000 +1324,30,RL,50,5330,Pave,NA,Reg,HLS,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1Story,4,7,1940,1950,Hip,CompShg,VinylSd,VinylSd,None,0,Fa,TA,CBlock,TA,TA,No,LwQ,280,Unf,0,140,420,GasA,Gd,Y,SBrkr,708,0,0,708,0,0,1,0,2,1,Fa,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,164,0,0,0,0,0,NA,NA,NA,0,12,2009,WD,Normal,82500 +1325,20,RL,75,9986,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,BrkFace,428,Gd,TA,PConc,Ex,TA,Av,Unf,0,Unf,0,1795,1795,GasA,Ex,Y,SBrkr,1795,0,0,1795,0,0,2,0,2,1,Gd,7,Typ,1,Gd,Attchd,2007,RFn,3,895,TA,TA,Y,0,49,0,0,0,0,NA,NA,NA,0,2,2007,New,Partial,147000 +1326,30,RM,40,3636,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1Story,4,4,1922,1950,Gable,CompShg,AsbShng,AsbShng,None,0,TA,TA,BrkTil,TA,Fa,No,Unf,0,Unf,0,796,796,GasA,Fa,N,SBrkr,796,0,0,796,0,0,1,0,2,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,0,100,0,0,0,NA,MnPrv,NA,0,1,2008,WD,Normal,55000 +1327,30,RH,70,4270,Pave,NA,Reg,Bnk,AllPub,Inside,Mod,Edwards,Norm,Norm,1Fam,1Story,3,6,1931,2006,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,No,Rec,544,Unf,0,0,544,GasA,Ex,Y,SBrkr,774,0,0,774,0,0,1,0,3,1,Gd,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,286,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,79000 +1328,20,RL,60,6600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,1Story,5,9,1982,2008,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,Gd,CBlock,TA,TA,No,ALQ,641,Unf,0,175,816,GasA,Ex,Y,SBrkr,816,0,0,816,0,1,1,0,3,1,Gd,5,Typ,1,Ex,Attchd,1982,Unf,1,264,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,10,2008,WD,Normal,130500 +1329,50,RM,60,10440,Pave,Grvl,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,1.5Fin,6,7,1920,1950,Gable,CompShg,BrkFace,Wd Sdng,None,0,Gd,Gd,BrkTil,Gd,TA,No,LwQ,493,Unf,0,1017,1510,GasW,Ex,Y,SBrkr,1584,1208,0,2792,0,0,2,0,5,1,TA,8,Mod,2,TA,Detchd,1920,Unf,2,520,Fa,TA,Y,0,547,0,0,480,0,NA,MnPrv,Shed,1150,6,2008,WD,Normal,256000 +1330,60,RL,63,9084,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,7,5,1998,1998,Hip,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,935,935,GasA,Gd,Y,SBrkr,955,677,0,1632,0,0,2,1,3,1,TA,8,Typ,1,TA,Attchd,1998,Fin,2,462,TA,TA,Y,0,28,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,176500 +1331,20,RL,85,10000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,Stone,410,Gd,TA,PConc,Gd,Gd,Av,Unf,0,Unf,0,1588,1588,GasA,Ex,Y,SBrkr,1588,0,0,1588,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2006,RFn,3,825,TA,TA,Y,144,45,0,0,0,0,NA,NA,NA,0,12,2007,WD,Normal,227000 +1332,80,RL,55,10780,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,SLvl,5,5,1976,1976,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,Av,ALQ,483,Unf,0,428,911,GasA,Gd,Y,SBrkr,954,0,0,954,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1976,Unf,2,576,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,132500 +1333,20,RL,67,8877,Pave,NA,Reg,Lvl,AllPub,Inside,Mod,Edwards,Norm,Norm,1Fam,1Story,4,6,1938,1958,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,Mn,ALQ,690,Unf,0,126,816,GasA,Ex,Y,SBrkr,816,0,0,816,1,0,1,0,2,1,TA,3,Typ,1,Gd,Detchd,1958,Unf,1,288,Fa,Fa,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,100000 +1334,50,RM,60,7200,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Fin,5,6,1938,1995,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,803,803,GasA,Ex,Y,SBrkr,803,557,0,1360,0,0,1,1,2,1,Gd,6,Typ,0,NA,Detchd,1951,Unf,1,297,TA,TA,Y,0,65,190,0,0,0,NA,MnPrv,NA,0,7,2006,WD,Normal,125500 +1335,160,RM,24,2368,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,TwnhsE,2Story,5,6,1970,1970,Gable,CompShg,HdBoard,HdBoard,None,312,TA,TA,CBlock,TA,TA,No,LwQ,765,Unf,0,0,765,GasA,TA,Y,SBrkr,765,600,0,1365,0,0,1,1,3,1,TA,7,Min1,0,NA,Attchd,1970,Unf,2,440,TA,TA,Y,0,36,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,125000 +1336,20,RL,80,9650,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,5,1977,1977,Gable,CompShg,Plywood,Plywood,BrkFace,360,TA,TA,CBlock,Gd,TA,No,ALQ,686,Unf,0,664,1350,GasA,TA,Y,SBrkr,1334,0,0,1334,0,1,2,0,2,1,TA,6,Typ,1,TA,Attchd,1977,RFn,2,630,TA,TA,Y,0,16,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,167900 +1337,90,RL,87,9246,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,Feedr,Norm,Duplex,1Story,5,5,1973,1973,Gable,CompShg,Plywood,Plywood,BrkFace,564,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1656,1656,GasA,TA,Y,SBrkr,1656,0,0,1656,0,0,2,0,4,2,TA,8,Typ,0,NA,Detchd,1973,Unf,2,506,TA,TA,Y,0,211,0,0,0,0,NA,NA,NA,0,11,2008,WD,Normal,135000 +1338,30,RM,153,4118,Pave,Grvl,IR1,Bnk,AllPub,Corner,Mod,OldTown,Feedr,Norm,1Fam,1Story,4,4,1941,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,693,693,Grav,Fa,N,FuseA,693,0,0,693,0,0,1,0,2,1,Fa,4,Typ,0,NA,NA,NA,NA,0,0,NA,NA,N,0,20,0,0,0,0,NA,NA,NA,0,3,2006,WD,Normal,52500 +1339,60,RL,95,13450,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,700,Unf,0,216,916,GasA,Ex,Y,SBrkr,920,941,0,1861,1,0,2,1,3,1,Gd,8,Typ,0,NA,BuiltIn,2002,RFn,2,492,TA,TA,Y,146,91,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,200000 +1340,20,RL,120,9560,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,1Story,5,7,1972,1972,Hip,CompShg,MetalSd,MetalSd,None,0,TA,Gd,CBlock,TA,TA,Mn,Rec,360,Unf,0,504,864,GasA,Ex,Y,SBrkr,864,0,0,864,0,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1972,RFn,1,288,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,128500 +1341,20,RL,70,8294,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,5,1971,1971,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,858,858,GasA,TA,Y,SBrkr,872,0,0,872,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1974,Unf,4,480,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,6,2007,WD,Normal,123000 +1342,20,RL,66,13695,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SawyerW,RRAe,Norm,1Fam,1Story,6,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,GLQ,814,Unf,0,300,1114,GasA,Ex,Y,SBrkr,1114,0,0,1114,1,0,1,0,3,1,Gd,6,Typ,0,NA,Detchd,2004,Unf,2,576,TA,TA,Y,0,78,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,155000 +1343,60,RL,NA,9375,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,2002,2002,Gable,CompShg,VinylSd,VinylSd,BrkFace,149,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1284,1284,GasA,Ex,Y,SBrkr,1284,885,0,2169,0,0,2,1,3,1,Gd,7,Typ,1,Gd,Attchd,2002,RFn,2,647,TA,TA,Y,192,87,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,228500 +1344,50,RL,57,7558,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1.5Fin,6,6,1928,1950,Gable,CompShg,BrkFace,Stone,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,896,896,GasA,Gd,Y,SBrkr,1172,741,0,1913,0,0,1,1,3,1,TA,9,Typ,1,TA,Detchd,1929,Unf,2,342,Fa,Fa,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2009,WD,Normal,177000 +1345,60,RL,85,11103,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,728,728,GasA,Ex,Y,SBrkr,728,728,0,1456,0,0,2,1,3,1,Gd,8,Typ,1,TA,Attchd,2006,Fin,2,440,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,7,2007,New,Partial,155835 +1346,30,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,4,4,1920,1950,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,PConc,TA,TA,No,ALQ,250,Unf,0,710,960,GasA,Gd,Y,FuseA,960,0,0,960,0,0,1,0,2,1,Fa,5,Typ,0,NA,Detchd,1997,Unf,1,308,TA,TA,Y,0,0,168,0,0,0,NA,NA,NA,0,7,2007,WD,Normal,108500 +1347,20,RL,NA,20781,Pave,NA,IR2,Lvl,AllPub,CulDSac,Gtl,NWAmes,PosN,Norm,1Fam,1Story,7,7,1968,2003,Hip,CompShg,BrkFace,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,BLQ,297,Rec,68,1203,1568,GasA,TA,Y,SBrkr,2156,0,0,2156,0,0,2,0,3,1,TA,9,Typ,1,Gd,Attchd,1968,RFn,2,508,Gd,TA,Y,0,80,0,290,0,0,NA,NA,NA,0,6,2006,WD,Normal,262500 +1348,20,RL,93,15306,Pave,NA,IR1,HLS,AllPub,Corner,Gtl,Timber,Norm,Norm,1Fam,1Story,8,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,Stone,100,Gd,TA,PConc,Ex,TA,Gd,GLQ,80,Unf,0,1652,1732,GasA,Ex,Y,SBrkr,1776,0,0,1776,1,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2006,Fin,3,712,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2007,New,Partial,283463 +1349,20,RL,NA,16196,Pave,NA,IR3,Low,AllPub,Inside,Gtl,SawyerW,Norm,Norm,1Fam,1Story,7,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,Gd,GLQ,1443,Unf,0,39,1482,GasA,Ex,Y,SBrkr,1494,0,0,1494,1,0,2,0,3,1,Gd,5,Typ,1,Fa,Attchd,1998,RFn,2,514,TA,TA,Y,402,25,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,215000 +1350,70,RM,50,5250,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,8,5,1872,1987,Gable,CompShg,MetalSd,MetalSd,None,0,TA,Gd,BrkTil,TA,Fa,No,LwQ,259,Unf,0,425,684,OthW,Fa,N,SBrkr,938,1215,205,2358,0,0,2,0,4,1,TA,8,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,54,20,0,0,0,NA,NA,NA,0,12,2008,WD,Normal,122000 +1351,90,RL,91,11643,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Artery,Norm,Duplex,2Story,5,5,1969,1969,Gable,CompShg,MetalSd,MetalSd,BrkFace,368,TA,TA,CBlock,TA,TA,No,LwQ,500,Unf,0,748,1248,GasA,TA,Y,SBrkr,1338,1296,0,2634,1,1,2,2,6,2,TA,12,Typ,0,NA,Detchd,1969,Unf,4,968,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2009,WD,Normal,200000 +1352,60,RL,70,9247,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,2Story,6,6,1962,1962,Gable,CompShg,HdBoard,HdBoard,BrkFace,318,TA,TA,CBlock,TA,TA,No,Rec,319,Unf,0,539,858,GasA,Ex,Y,SBrkr,858,858,0,1716,0,0,1,1,4,1,TA,8,Typ,1,Gd,Attchd,1962,Fin,2,490,TA,TA,Y,0,84,0,0,120,0,NA,NA,NA,0,3,2008,WD,Normal,171000 +1353,50,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,6,9,1937,2000,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,698,698,GasA,TA,Y,SBrkr,786,390,0,1176,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1999,Unf,2,624,TA,TA,N,210,0,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,134900 +1354,50,RL,56,14720,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NoRidge,Norm,Norm,1Fam,1.5Fin,8,5,1995,1996,Hip,CompShg,VinylSd,VinylSd,BrkFace,579,Gd,TA,PConc,Gd,TA,Av,GLQ,816,Unf,0,1217,2033,GasA,Ex,Y,SBrkr,2053,1185,0,3238,1,0,2,1,4,1,Gd,9,Typ,1,Ex,Attchd,1996,Fin,3,666,TA,TA,Y,283,86,0,0,0,0,NA,NA,NA,0,3,2010,WD,Normal,410000 +1355,60,RL,NA,10316,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,735,Unf,0,257,992,GasA,Ex,Y,SBrkr,992,873,0,1865,1,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,2000,RFn,3,839,TA,TA,Y,0,184,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,235000 +1356,80,RL,102,10192,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,SLvl,7,6,1968,1992,Gable,CompShg,MetalSd,MetalSd,BrkFace,143,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,570,570,GasA,Gd,Y,SBrkr,1222,698,0,1920,0,0,3,0,4,1,Gd,8,Typ,1,TA,Attchd,1968,RFn,2,487,TA,TA,Y,0,98,0,0,0,0,NA,GdPrv,NA,0,9,2006,WD,Normal,170000 +1357,20,RL,NA,9477,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1966,1966,Gable,CompShg,HdBoard,HdBoard,BrkFace,65,TA,TA,CBlock,TA,TA,No,Rec,340,Unf,0,524,864,GasA,TA,Y,SBrkr,892,0,0,892,0,0,1,0,3,1,TA,5,Typ,0,NA,Attchd,1966,RFn,1,264,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,10,2008,WD,Normal,110000 +1358,20,RL,NA,12537,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1971,2008,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,No,GLQ,734,Unf,0,344,1078,GasA,Ex,Y,SBrkr,1078,0,0,1078,1,0,1,1,3,1,TA,6,Typ,1,Fa,Attchd,1971,Fin,2,500,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,149900 +1359,160,FV,NA,2117,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,Twnhs,2Story,6,5,2000,2000,Gable,CompShg,MetalSd,MetalSd,BrkFace,216,Gd,TA,PConc,Gd,TA,No,GLQ,378,Unf,0,378,756,GasA,Ex,Y,SBrkr,769,804,0,1573,0,0,2,1,3,1,Gd,5,Typ,0,NA,Detchd,2000,Unf,2,440,TA,TA,Y,0,32,0,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,177500 +1360,20,RL,129,16737,Pave,NA,Reg,Lvl,AllPub,FR3,Gtl,NridgHt,Norm,Norm,1Fam,1Story,9,5,2004,2005,Hip,CompShg,VinylSd,VinylSd,BrkFace,66,Gd,TA,PConc,Ex,TA,Av,GLQ,1447,Unf,0,533,1980,GasA,Ex,Y,SBrkr,1980,0,0,1980,1,0,2,0,3,1,Ex,8,Typ,1,Gd,Attchd,2004,Fin,3,770,TA,TA,Y,194,45,0,0,0,0,NA,NA,NA,0,9,2006,WD,Normal,315000 +1361,70,RL,51,9842,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Feedr,Norm,1Fam,2Story,5,6,1921,1998,Gable,CompShg,MetalSd,Wd Sdng,None,0,TA,TA,BrkTil,TA,Fa,No,Unf,0,Unf,0,612,612,GasA,Ex,Y,SBrkr,990,1611,0,2601,0,0,3,1,4,1,TA,8,Typ,0,NA,BuiltIn,1998,RFn,2,621,TA,TA,Y,183,0,301,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,189000 +1362,20,RL,124,16158,Pave,NA,IR1,Low,AllPub,Inside,Mod,StoneBr,Norm,Norm,1Fam,1Story,7,5,2005,2005,Hip,CompShg,VinylSd,VinylSd,Stone,16,Gd,TA,PConc,Ex,TA,Av,ALQ,1274,Unf,0,256,1530,GasA,Ex,Y,SBrkr,1530,0,0,1530,1,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2005,Fin,2,430,TA,TA,Y,168,36,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,260000 +1363,50,RL,NA,12513,Pave,NA,IR1,Lvl,AllPub,FR2,Gtl,NAmes,Feedr,Norm,1Fam,1.5Fin,4,4,1920,2007,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,BrkTil,TA,Fa,No,Unf,0,Unf,0,715,715,GasA,Gd,Y,SBrkr,1281,457,0,1738,0,0,2,0,4,1,TA,7,Typ,1,Gd,Attchd,1920,Unf,1,368,TA,TA,Y,55,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,104900 +1364,60,RL,73,8499,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,616,616,GasA,Ex,Y,SBrkr,616,796,0,1412,0,0,2,1,3,1,Gd,6,Typ,1,Gd,BuiltIn,2007,Fin,2,432,TA,TA,Y,0,36,0,0,0,0,NA,NA,NA,0,3,2007,New,Partial,156932 +1365,160,FV,30,3180,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,TwnhsE,2Story,7,5,2005,2005,Gable,CompShg,MetalSd,MetalSd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,600,600,GasA,Ex,Y,SBrkr,520,600,80,1200,0,0,2,1,2,1,Gd,4,Typ,0,NA,Detchd,2005,RFn,2,480,TA,TA,Y,0,166,0,0,0,0,NA,NA,NA,0,4,2006,WD,Abnorml,144152 +1366,60,FV,NA,7500,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,533,Unf,0,281,814,GasA,Ex,Y,SBrkr,814,860,0,1674,1,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,2000,RFn,2,663,TA,TA,Y,0,96,0,0,0,0,NA,NA,NA,0,1,2010,WD,Normal,216000 +1367,60,RL,68,9179,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,1999,1999,Gable,CompShg,VinylSd,VinylSd,BrkFace,158,Gd,TA,PConc,Gd,TA,No,GLQ,633,Unf,0,240,873,GasA,Ex,Y,SBrkr,882,908,0,1790,1,0,2,1,3,1,Gd,7,Typ,0,NA,Attchd,1999,RFn,2,588,TA,TA,Y,0,88,0,0,0,0,NA,NA,NA,0,6,2008,WD,Abnorml,193000 +1368,160,RM,41,2665,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,TwnhsE,2Story,5,6,1977,1977,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,PConc,TA,TA,No,ALQ,548,Rec,173,36,757,GasA,Ex,Y,SBrkr,925,550,0,1475,0,0,2,0,4,1,TA,6,Typ,1,TA,Attchd,1977,RFn,1,336,TA,TA,Y,104,26,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,127000 +1369,120,RM,NA,4435,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,TwnhsE,1Story,6,5,2003,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,170,Gd,TA,PConc,Gd,TA,Av,GLQ,685,Unf,0,163,848,GasA,Ex,Y,SBrkr,848,0,0,848,1,0,1,0,1,1,Gd,4,Typ,0,NA,Attchd,2003,Fin,2,420,TA,TA,Y,140,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,144000 +1370,20,RL,48,10635,Pave,NA,IR2,Lvl,AllPub,FR2,Gtl,CollgCr,Norm,Norm,1Fam,1Story,8,5,2003,2003,Hip,CompShg,VinylSd,VinylSd,BrkFace,171,Gd,TA,PConc,Gd,TA,Av,BLQ,370,GLQ,972,315,1657,GasA,Ex,Y,SBrkr,1668,0,0,1668,1,0,2,0,3,1,Gd,8,Typ,1,TA,Attchd,2003,Fin,2,502,TA,TA,Y,0,262,0,0,0,0,NA,NA,NA,0,5,2010,WD,Normal,232000 +1371,50,RL,90,5400,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Artery,Norm,1Fam,1.5Fin,4,6,1920,1950,Gable,CompShg,CBlock,CBlock,None,0,Fa,TA,PConc,TA,TA,No,ALQ,315,Rec,105,420,840,GasA,Ex,Y,SBrkr,840,534,0,1374,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1967,Fin,1,338,TA,TA,Y,0,0,198,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,105000 +1372,80,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SLvl,6,6,1955,1996,Hip,CompShg,AsbShng,AsbShng,None,0,TA,TA,CBlock,TA,TA,Av,BLQ,831,Unf,0,161,992,GasA,Gd,Y,SBrkr,1661,0,0,1661,1,0,1,0,3,1,Gd,8,Typ,1,TA,BuiltIn,1955,RFn,1,377,TA,TA,Y,0,28,0,0,178,0,NA,MnPrv,NA,0,10,2008,WD,Normal,165500 +1373,60,RL,75,9750,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,6,1998,1998,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,Av,GLQ,975,Unf,0,133,1108,GasA,Ex,Y,SBrkr,1108,989,0,2097,1,0,2,1,3,1,Gd,8,Typ,1,TA,Detchd,1998,RFn,2,583,TA,TA,Y,253,170,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,274300 +1374,20,RL,NA,11400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,1Story,10,5,2001,2002,Hip,CompShg,VinylSd,VinylSd,BrkFace,705,Ex,TA,PConc,Ex,TA,Gd,GLQ,1282,Unf,0,1351,2633,GasA,Ex,Y,SBrkr,2633,0,0,2633,1,0,2,1,2,1,Ex,8,Typ,2,Gd,Attchd,2001,RFn,3,804,TA,TA,Y,314,140,0,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,466500 +1375,60,FV,85,10625,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,7,5,2005,2005,Gable,CompShg,CemntBd,CmentBd,None,0,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1026,1026,GasA,Ex,Y,SBrkr,1026,932,0,1958,0,0,2,1,3,1,Gd,9,Typ,1,Gd,Attchd,2005,Fin,3,936,TA,TA,Y,154,210,0,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,250000 +1376,20,RL,89,10991,Pave,NA,IR1,HLS,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,1Story,8,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,BrkFace,80,Gd,TA,PConc,Gd,TA,Gd,Unf,0,Unf,0,1571,1571,GasA,Ex,Y,SBrkr,1571,0,0,1571,0,0,2,0,3,1,Gd,7,Typ,1,Gd,Attchd,2007,Fin,3,722,TA,TA,Y,100,36,0,0,0,0,NA,NA,NA,0,12,2007,New,Partial,239000 +1377,30,RL,52,6292,Pave,NA,Reg,Bnk,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1Story,6,5,1930,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Gd,TA,Mn,Rec,384,Unf,0,384,768,GasA,TA,N,SBrkr,790,0,0,790,0,0,1,0,2,1,TA,4,Typ,0,NA,Detchd,1925,Unf,1,160,Fa,TA,Y,0,141,0,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,91000 +1378,50,RL,60,10998,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,5,5,1941,1960,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,LwQ,408,BLQ,420,156,984,GasA,Ex,Y,SBrkr,984,620,0,1604,0,0,2,0,3,1,TA,6,Min2,0,NA,Detchd,1977,Unf,2,660,TA,TA,Y,0,68,0,0,0,0,NA,NA,NA,0,7,2009,WD,Normal,117000 +1379,160,RM,21,1953,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrDale,Norm,Norm,Twnhs,2Story,6,5,1973,1973,Gable,CompShg,HdBoard,HdBoard,BrkFace,408,TA,TA,CBlock,TA,Fa,No,BLQ,309,Unf,0,174,483,GasA,TA,Y,SBrkr,483,504,0,987,0,0,1,1,2,1,TA,5,Typ,0,NA,Detchd,1973,Unf,1,264,TA,TA,Y,72,0,0,0,0,0,NA,NA,NA,0,6,2006,WD,Normal,83000 +1380,80,RL,73,9735,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,SLvl,5,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,384,384,GasA,Gd,Y,NA,754,640,0,1394,0,0,2,1,3,1,Gd,7,Typ,0,NA,BuiltIn,2007,Fin,2,400,TA,TA,Y,100,0,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,167500 +1381,30,RL,45,8212,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,3,3,1914,1950,Gable,CompShg,Stucco,Stucco,None,0,TA,Fa,BrkTil,TA,Fa,No,Rec,203,Unf,0,661,864,GasA,TA,N,FuseF,864,0,0,864,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1938,Unf,1,200,TA,Fa,Y,0,0,96,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,58500 +1382,20,RL,NA,12925,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,7,1970,1970,Gable,CompShg,BrkFace,Plywood,None,0,TA,TA,CBlock,TA,TA,Mn,BLQ,865,Unf,0,340,1205,GasA,Ex,Y,SBrkr,2117,0,0,2117,0,0,2,1,4,1,TA,7,Typ,2,Gd,Attchd,1970,Fin,2,550,TA,TA,Y,0,42,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,237500 +1383,70,RM,60,7200,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,2Story,7,7,1920,1950,Hip,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Fa,TA,No,Unf,0,Unf,0,596,596,GasA,Ex,Y,SBrkr,998,764,0,1762,1,0,1,1,4,1,Gd,8,Typ,0,NA,Detchd,1989,Unf,2,576,TA,TA,N,36,0,221,0,0,0,NA,NA,NA,0,10,2006,WD,Normal,157000 +1384,30,RL,NA,25339,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,1Story,5,7,1918,2007,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,BrkTil,TA,TA,No,Unf,0,Unf,0,816,816,GasA,Ex,Y,SBrkr,1416,0,0,1416,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2007,Unf,2,576,TA,TA,N,0,0,112,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,112000 +1385,50,RL,60,9060,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1.5Fin,6,5,1939,1950,Gable,CompShg,WdShing,Wd Shng,None,0,TA,TA,BrkTil,TA,TA,Mn,Rec,204,Unf,0,356,560,GasA,TA,Y,SBrkr,698,560,0,1258,0,0,1,0,2,1,TA,6,Typ,0,NA,Detchd,1939,Unf,1,280,TA,TA,P,0,0,0,0,0,0,NA,MnPrv,NA,0,10,2009,WD,Normal,105000 +1386,50,RM,40,5436,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,IDOTRR,Norm,Norm,1Fam,1.5Fin,4,8,1922,2007,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,BrkTil,TA,TA,No,BLQ,735,Unf,0,61,796,GasA,Gd,Y,SBrkr,796,358,0,1154,1,0,1,0,3,1,Gd,7,Typ,0,NA,Detchd,1922,Unf,1,240,TA,TA,N,0,96,0,0,0,0,NA,MnPrv,NA,0,5,2010,WD,Normal,125500 +1387,60,RL,80,16692,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NWAmes,RRAn,Norm,1Fam,2Story,7,5,1978,1978,Gable,CompShg,Plywood,Plywood,BrkFace,184,TA,TA,CBlock,Gd,TA,No,BLQ,790,LwQ,469,133,1392,GasA,TA,Y,SBrkr,1392,1392,0,2784,1,0,3,1,5,1,Gd,12,Typ,2,TA,Attchd,1978,RFn,2,564,TA,TA,Y,0,112,0,0,440,519,Fa,MnPrv,TenC,2000,7,2006,WD,Normal,250000 +1388,50,RM,60,8520,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1.5Fin,6,7,1916,1950,Gable,CompShg,Stucco,Stucco,None,0,TA,Gd,BrkTil,TA,TA,No,Rec,168,LwQ,546,0,714,GasW,TA,N,SBrkr,1664,862,0,2526,0,0,2,0,5,1,Gd,10,Typ,1,Gd,Detchd,1916,Unf,1,216,TA,TA,Y,88,15,0,0,0,0,NA,GdWo,NA,0,8,2007,CWD,Family,136000 +1389,20,RL,42,14892,Pave,NA,IR1,HLS,AllPub,CulDSac,Gtl,Gilbert,Norm,Norm,1Fam,1Story,9,5,2006,2007,Gable,CompShg,VinylSd,VinylSd,Stone,160,Ex,TA,PConc,Ex,TA,Gd,GLQ,1320,Unf,0,426,1746,GasA,Ex,Y,SBrkr,1746,0,0,1746,1,0,2,0,3,1,Ex,7,Typ,2,Gd,Attchd,2006,Fin,3,758,TA,TA,Y,201,39,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,377500 +1390,50,RM,60,6000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,6,6,1941,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,Gd,BrkTil,TA,Gd,No,ALQ,375,Unf,0,360,735,GasA,Ex,Y,SBrkr,869,349,0,1218,0,1,1,0,3,1,TA,6,Typ,1,Gd,Detchd,2003,Unf,2,440,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,3,2007,WD,Normal,131000 +1391,20,RL,70,9100,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,BrkFace,244,Gd,TA,PConc,Gd,TA,Av,GLQ,1400,Unf,0,125,1525,GasA,Ex,Y,SBrkr,1525,0,0,1525,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2000,RFn,2,541,TA,TA,Y,219,36,0,0,0,0,NA,NA,NA,0,9,2006,WD,Normal,235000 +1392,90,RL,65,8944,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,Duplex,1Story,5,5,1967,1967,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1584,1584,GasA,TA,Y,SBrkr,1584,0,0,1584,0,0,2,0,4,2,TA,8,Mod,0,NA,Detchd,1967,Unf,3,792,TA,TA,Y,0,152,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,124000 +1393,85,RL,68,7838,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,SFoyer,5,5,1967,1967,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,Av,ALQ,769,Unf,0,95,864,GasA,TA,Y,SBrkr,900,0,0,900,1,0,1,0,3,1,TA,6,Typ,1,Po,Attchd,1967,RFn,1,288,TA,TA,Y,175,144,0,0,0,0,NA,MnWw,NA,0,12,2006,WD,Normal,123000 +1394,190,RM,60,10800,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,2fmCon,1.5Fin,6,7,1905,2000,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,Fa,TA,No,Unf,0,Unf,0,482,482,GasA,Ex,N,SBrkr,1221,691,0,1912,0,0,2,0,3,2,TA,7,Typ,1,TA,Detchd,2003,Unf,2,672,Gd,TA,Y,0,25,212,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,163000 +1395,120,RL,53,4045,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2006,2006,Hip,CompShg,VinylSd,VinylSd,BrkFace,45,Gd,TA,PConc,Gd,TA,Av,GLQ,1070,Unf,0,286,1356,GasA,Ex,Y,SBrkr,1500,0,0,1500,1,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2006,Fin,3,648,TA,TA,Y,161,20,0,0,0,0,NA,NA,NA,0,10,2006,New,Partial,246578 +1396,60,RL,88,12665,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Timber,Norm,Norm,1Fam,2Story,8,5,2005,2006,Hip,CompShg,VinylSd,VinylSd,BrkFace,245,Gd,TA,PConc,Gd,Gd,Gd,Unf,0,Unf,0,1094,1094,GasA,Ex,Y,SBrkr,1133,1349,0,2482,0,0,2,1,4,1,Gd,9,Typ,1,Gd,BuiltIn,2005,Fin,3,642,TA,TA,Y,144,39,0,0,0,0,NA,NA,NA,0,2,2007,WD,Normal,281213 +1397,20,RL,NA,57200,Pave,NA,IR1,Bnk,AllPub,Inside,Sev,Timber,Norm,Norm,1Fam,1Story,5,5,1948,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,Av,BLQ,353,Rec,334,60,747,GasA,TA,Y,SBrkr,1687,0,0,1687,1,0,1,0,3,1,TA,7,Min1,2,TA,Detchd,1966,Unf,2,572,TA,TA,N,0,0,50,0,0,0,NA,NA,NA,0,6,2010,WD,Normal,160000 +1398,70,RM,51,6120,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,2Story,5,8,1920,2004,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,TA,TA,Mn,Unf,0,Unf,0,939,939,GasA,Ex,Y,SBrkr,939,574,0,1513,0,0,1,1,4,1,TA,8,Typ,0,NA,Detchd,1933,Unf,1,180,Fa,Fa,N,24,0,150,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,137500 +1399,50,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1.5Fin,5,4,1950,1982,Gable,CompShg,VinylSd,Wd Sdng,None,0,TA,TA,CBlock,TA,TA,No,Rec,180,BLQ,352,676,1208,GasA,Gd,Y,FuseA,1136,768,0,1904,1,0,1,1,3,1,TA,7,Min1,0,NA,Attchd,1950,Unf,1,240,TA,TA,Y,0,0,168,0,0,0,NA,GdPrv,NA,0,5,2009,WD,Normal,138000 +1400,50,RL,51,6171,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,SWISU,Norm,Norm,1Fam,1.5Fin,6,6,1925,1990,Gable,CompShg,WdShing,Wd Shng,None,0,TA,TA,BrkTil,TA,TA,No,BLQ,264,Unf,0,712,976,GasA,Ex,Y,SBrkr,1160,448,0,1608,0,0,2,1,3,1,Gd,7,Typ,1,Gd,Detchd,1925,Unf,1,216,Fa,TA,Y,147,16,0,0,0,0,NA,MnPrv,NA,0,10,2009,WD,Normal,137450 +1401,50,RM,50,6000,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,6,7,1929,1950,Gable,CompShg,WdShing,Wd Shng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,862,862,GasA,TA,Y,SBrkr,950,208,0,1158,0,0,1,0,3,1,TA,5,Typ,1,Gd,BuiltIn,1929,RFn,1,208,TA,TA,Y,0,0,112,0,0,0,NA,NA,NA,0,7,2008,WD,Normal,120000 +1402,60,RL,62,7415,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,TA,TA,No,GLQ,759,Unf,0,80,839,GasA,Ex,Y,SBrkr,864,729,0,1593,1,0,2,1,3,1,TA,8,Typ,1,TA,Attchd,2004,Fin,2,398,TA,TA,Y,100,75,0,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,193000 +1403,20,RL,64,6762,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,Gd,Av,Unf,0,Unf,0,1286,1286,GasA,Ex,Y,SBrkr,1294,0,0,1294,0,0,2,0,2,1,Gd,6,Typ,1,Gd,Attchd,2006,RFn,2,662,TA,TA,Y,168,55,0,0,0,0,NA,NA,NA,0,7,2006,New,Partial,193879 +1404,20,RL,49,15256,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Somerst,RRAn,Norm,1Fam,1Story,8,5,2007,2007,Gable,CompShg,VinylSd,VinylSd,Stone,84,Gd,TA,PConc,Gd,TA,Gd,GLQ,929,Unf,0,556,1485,GasA,Ex,Y,SBrkr,1464,0,0,1464,1,0,2,0,3,1,Gd,6,Typ,0,NA,Attchd,2007,Unf,3,754,TA,TA,Y,168,160,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,282922 +1405,50,RL,60,10410,Pave,Grvl,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Artery,Norm,1Fam,1.5Fin,3,4,1915,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,672,672,GasA,TA,Y,SBrkr,694,520,0,1214,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1998,Unf,3,936,TA,TA,Y,216,0,160,0,0,0,NA,MnPrv,NA,0,1,2006,WD,Family,105000 +1406,120,RM,44,3842,Pave,NA,IR1,HLS,AllPub,Inside,Mod,Crawfor,Norm,Norm,TwnhsE,1Story,8,5,2004,2005,Hip,CompShg,CemntBd,CmentBd,Stone,174,Gd,TA,PConc,Ex,TA,Gd,GLQ,1373,Unf,0,221,1594,GasA,Ex,Y,SBrkr,1646,0,0,1646,1,1,2,0,2,1,Gd,5,Typ,1,Gd,Attchd,2004,Fin,2,482,TA,TA,Y,128,53,0,0,155,0,NA,NA,NA,0,1,2008,WD,Normal,275000 +1407,85,RL,70,8445,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,CollgCr,Norm,Norm,1Fam,SFoyer,5,7,1972,2007,Gable,CompShg,HdBoard,Wd Shng,None,0,TA,TA,CBlock,Gd,TA,Av,GLQ,656,Unf,0,112,768,GasA,TA,Y,SBrkr,768,0,0,768,1,0,1,0,2,1,TA,5,Typ,0,NA,Detchd,1988,Unf,2,396,TA,TA,Y,58,0,0,0,0,0,NA,MnPrv,NA,0,3,2009,WD,Normal,133000 +1408,20,RL,NA,8780,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,Mitchel,Norm,Norm,1Fam,1Story,5,5,1985,1985,Gable,CompShg,HdBoard,Plywood,None,0,TA,TA,CBlock,TA,TA,No,ALQ,625,Unf,0,208,833,GasA,Ex,Y,SBrkr,833,0,0,833,1,0,1,0,3,1,TA,5,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,3,2009,WD,Normal,112000 +1409,70,RM,60,7740,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,2Story,4,7,1910,1950,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,Fa,TA,No,Unf,0,Unf,0,622,622,GasA,Gd,Y,SBrkr,741,622,0,1363,0,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1966,Unf,2,528,TA,TA,Y,0,0,0,0,168,0,NA,NA,NA,0,6,2010,WD,Normal,125500 +1410,60,RL,46,20544,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,NWAmes,Norm,Norm,1Fam,2Story,7,6,1986,1991,Gable,CompShg,Plywood,Plywood,BrkFace,123,TA,Gd,CBlock,Gd,TA,No,Unf,0,Unf,0,791,791,GasA,Gd,Y,SBrkr,1236,857,0,2093,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1986,Fin,2,542,TA,TA,Y,364,63,0,0,0,0,NA,MnPrv,NA,0,11,2008,WD,Normal,215000 +1411,60,RL,79,12420,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,7,5,2001,2001,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,666,Unf,0,278,944,GasA,Ex,Y,SBrkr,944,896,0,1840,1,0,2,1,3,1,Gd,6,Typ,0,NA,Attchd,2001,RFn,2,622,TA,TA,Y,0,45,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,230000 +1412,50,RL,80,9600,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1.5Fin,6,8,1950,2005,Gable,CompShg,VinylSd,VinylSd,None,0,TA,Gd,CBlock,TA,TA,No,BLQ,120,Unf,0,736,856,GasA,Ex,Y,SBrkr,1112,556,0,1668,0,0,1,1,3,1,TA,6,Min2,0,NA,Attchd,1950,Unf,1,271,TA,TA,Y,0,0,0,0,0,0,NA,MnPrv,NA,0,9,2009,WD,Normal,140000 +1413,90,RL,60,7200,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,Duplex,1Story,4,5,1949,1950,Gable,CompShg,BrkFace,Stone,None,0,TA,TA,Slab,NA,NA,NA,NA,0,NA,0,0,0,Wall,Fa,N,FuseF,1040,0,0,1040,0,0,2,0,2,2,TA,6,Typ,0,NA,Detchd,1956,Unf,2,420,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,6,2009,WD,Normal,90000 +1414,20,RL,88,10994,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,SawyerW,Norm,Norm,1Fam,1Story,8,5,2005,2006,Gable,CompShg,VinylSd,VinylSd,Stone,366,Gd,TA,PConc,Gd,Gd,No,GLQ,976,Unf,0,868,1844,GasA,Ex,Y,SBrkr,1844,0,0,1844,1,0,2,0,2,1,Gd,7,Typ,1,Gd,Attchd,2005,Fin,2,620,TA,TA,Y,165,44,0,0,0,0,NA,NA,NA,0,9,2009,COD,Abnorml,257000 +1415,50,RL,64,13053,Pave,Pave,Reg,Bnk,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Fin,6,7,1923,2000,Gambrel,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,833,833,GasA,Gd,Y,SBrkr,1053,795,0,1848,0,0,1,1,4,1,Gd,8,Typ,1,Gd,Detchd,1922,Unf,2,370,TA,TA,N,0,0,0,0,220,0,NA,NA,NA,0,6,2008,WD,Normal,207000 +1416,120,RL,51,3635,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Blmngtn,Norm,Norm,TwnhsE,1Story,7,5,2007,2007,Hip,CompShg,VinylSd,VinylSd,BrkFace,130,Gd,TA,PConc,Gd,TA,No,ALQ,988,Unf,0,398,1386,GasA,Ex,Y,SBrkr,1569,0,0,1569,0,1,2,0,1,1,Gd,7,Typ,1,TA,Attchd,2007,RFn,3,660,TA,TA,Y,143,20,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,175900 +1417,190,RM,60,11340,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,2fmCon,2Story,4,6,1885,1950,Gable,CompShg,VinylSd,AsbShng,None,0,TA,TA,PConc,TA,TA,No,Unf,0,Unf,0,777,777,GasA,Gd,Y,SBrkr,1246,1044,0,2290,0,0,2,0,4,2,TA,11,Typ,0,NA,Detchd,1971,Unf,2,560,TA,TA,N,0,0,114,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,122500 +1418,60,RL,NA,16545,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,8,5,1998,1998,Gable,CompShg,VinylSd,VinylSd,BrkFace,731,Gd,TA,PConc,Gd,TA,Mn,GLQ,781,Unf,0,503,1284,GasA,Ex,Y,SBrkr,1310,1140,0,2450,1,0,2,1,3,1,Gd,7,Typ,1,TA,Attchd,1998,Fin,3,1069,TA,TA,Y,0,126,0,0,0,0,NA,NA,NA,0,5,2009,WD,Normal,340000 +1419,20,RL,71,9204,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1963,1963,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,BLQ,25,Rec,872,247,1144,GasA,TA,Y,SBrkr,1144,0,0,1144,1,0,1,1,3,1,TA,6,Typ,0,NA,Detchd,1962,Unf,1,336,TA,TA,Y,0,88,0,0,0,0,NA,NA,NA,0,8,2008,COD,Normal,124000 +1420,20,RL,NA,16381,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,1Story,6,5,1969,1969,Gable,CompShg,Plywood,Plywood,BrkFace,312,Gd,Gd,CBlock,TA,TA,Av,Rec,1110,Unf,0,734,1844,GasA,Gd,Y,SBrkr,1844,0,0,1844,1,0,2,0,3,1,Gd,7,Typ,1,TA,Attchd,1969,RFn,2,540,TA,TA,Y,0,73,216,0,0,0,NA,NA,NA,0,12,2006,WD,Normal,223000 +1421,60,RL,90,11700,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,NWAmes,Norm,Norm,1Fam,2Story,6,6,1968,1968,Gable,CompShg,HdBoard,HdBoard,BrkFace,420,TA,TA,CBlock,TA,TA,No,ALQ,404,Unf,0,304,708,GasA,Gd,Y,SBrkr,708,708,0,1416,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1968,RFn,2,776,TA,TA,Y,0,169,0,0,119,0,NA,NA,NA,0,5,2006,WD,Normal,179900 +1422,120,RL,53,4043,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NPkVill,Norm,Norm,TwnhsE,1Story,6,5,1977,1977,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,No,ALQ,360,Unf,0,709,1069,GasA,TA,Y,SBrkr,1069,0,0,1069,0,0,2,0,2,1,TA,4,Typ,1,Fa,Attchd,1977,RFn,2,440,TA,TA,Y,0,55,0,0,165,0,NA,NA,NA,0,7,2010,WD,Normal,127500 +1423,120,RM,37,4435,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,TwnhsE,1Story,6,5,2003,2003,Gable,CompShg,VinylSd,VinylSd,BrkFace,170,Gd,TA,PConc,Gd,TA,Av,GLQ,686,Unf,0,162,848,GasA,Ex,Y,SBrkr,848,0,0,848,1,0,1,0,1,1,Gd,3,Typ,0,NA,Attchd,2003,Fin,2,420,TA,TA,Y,140,0,0,0,0,0,NA,NA,NA,0,3,2008,WD,Normal,136500 +1424,80,RL,NA,19690,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Edwards,Norm,Norm,1Fam,SLvl,6,7,1966,1966,Flat,Tar&Grv,Plywood,Plywood,None,0,Gd,Gd,CBlock,Gd,TA,Av,Unf,0,Unf,0,697,697,GasA,TA,Y,SBrkr,1575,626,0,2201,0,0,2,0,4,1,Gd,8,Typ,1,Gd,Attchd,1966,Unf,2,432,Gd,Gd,Y,586,236,0,0,0,738,Gd,GdPrv,NA,0,8,2006,WD,Alloca,274970 +1425,20,RL,NA,9503,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,5,1958,1983,Hip,CompShg,HdBoard,HdBoard,None,0,TA,TA,CBlock,TA,TA,No,ALQ,457,Rec,374,193,1024,GasA,TA,Y,SBrkr,1344,0,0,1344,1,0,1,0,2,1,TA,6,Min1,1,TA,Detchd,1970,Unf,1,484,TA,TA,Y,316,28,0,0,0,0,NA,GdWo,NA,0,6,2007,WD,Normal,144000 +1426,20,RL,80,10721,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,6,1959,1959,Hip,CompShg,HdBoard,HdBoard,Stone,243,Gd,TA,CBlock,TA,TA,No,Unf,0,Unf,0,1252,1252,GasA,Ex,Y,SBrkr,1252,0,0,1252,0,0,1,0,3,1,Gd,7,Typ,0,NA,Detchd,1960,Unf,2,528,TA,TA,Y,0,39,0,0,0,0,NA,NA,NA,0,10,2008,WD,Normal,142000 +1427,60,RL,81,10944,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NoRidge,Norm,Norm,1Fam,2Story,7,5,1994,1994,Gable,CompShg,VinylSd,VinylSd,BrkFace,448,Gd,TA,PConc,Gd,TA,No,GLQ,1000,Unf,0,223,1223,GasA,Ex,Y,SBrkr,1223,904,0,2127,1,0,2,1,3,1,Gd,5,Typ,2,TA,Attchd,1994,RFn,2,525,TA,TA,Y,171,132,0,0,0,0,NA,NA,NA,0,8,2008,WD,Normal,271000 +1428,50,RL,60,10930,Pave,Grvl,Reg,Bnk,AllPub,Inside,Gtl,NAmes,Artery,Norm,1Fam,1.5Fin,5,6,1945,1950,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,BLQ,580,Unf,0,333,913,GasA,TA,Y,FuseA,1048,510,0,1558,1,0,1,1,3,1,TA,6,Typ,1,TA,Attchd,1962,Unf,1,288,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,4,2008,WD,Normal,140000 +1429,30,RM,60,7200,Pave,NA,Reg,Lvl,AllPub,Corner,Gtl,OldTown,Norm,Norm,1Fam,1Story,5,7,1940,1992,Gable,CompShg,MetalSd,MetalSd,Stone,294,TA,Gd,CBlock,TA,TA,No,BLQ,510,Unf,0,278,788,GasA,TA,Y,SBrkr,804,0,0,804,1,0,1,0,2,1,Gd,4,Typ,2,Gd,Attchd,1940,Unf,1,240,TA,TA,Y,0,0,154,0,0,0,NA,MnPrv,NA,0,2,2010,WD,Abnorml,119000 +1430,20,RL,NA,12546,Pave,NA,IR1,Lvl,AllPub,Corner,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,7,1981,1981,Gable,CompShg,MetalSd,MetalSd,BrkFace,310,Gd,Gd,CBlock,Gd,TA,No,BLQ,678,Unf,0,762,1440,GasA,Ex,Y,SBrkr,1440,0,0,1440,0,0,2,0,3,1,Gd,7,Typ,1,TA,Attchd,1981,Fin,2,467,TA,TA,Y,0,0,99,0,0,0,NA,NA,NA,0,4,2007,WD,Normal,182900 +1431,60,RL,60,21930,Pave,NA,IR3,Lvl,AllPub,Inside,Gtl,Gilbert,RRAn,Norm,1Fam,2Story,5,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,Gd,Av,Unf,0,Unf,0,732,732,GasA,Ex,Y,SBrkr,734,1104,0,1838,0,0,2,1,4,1,TA,7,Typ,1,Gd,BuiltIn,2005,Fin,2,372,TA,TA,Y,100,40,0,0,0,0,NA,NA,NA,0,7,2006,WD,Normal,192140 +1432,120,RL,NA,4928,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,NPkVill,Norm,Norm,TwnhsE,1Story,6,6,1976,1976,Gable,CompShg,Plywood,Plywood,None,0,TA,TA,CBlock,Gd,TA,No,LwQ,958,Unf,0,0,958,GasA,TA,Y,SBrkr,958,0,0,958,0,0,2,0,2,1,TA,5,Typ,0,NA,Attchd,1976,RFn,2,440,TA,TA,Y,0,60,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,143750 +1433,30,RL,60,10800,Pave,Grvl,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Norm,Norm,1Fam,1Story,4,6,1927,2007,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,656,656,GasA,TA,Y,SBrkr,968,0,0,968,0,0,2,0,4,1,TA,5,Typ,0,NA,Detchd,1928,Unf,1,216,Fa,Fa,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,64500 +1434,60,RL,93,10261,Pave,NA,IR1,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,2000,2000,Gable,CompShg,VinylSd,VinylSd,BrkFace,318,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,936,936,GasA,Ex,Y,SBrkr,962,830,0,1792,1,0,2,1,3,1,TA,8,Typ,1,TA,Attchd,2000,Fin,2,451,TA,TA,Y,0,0,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,186500 +1435,20,RL,80,17400,Pave,NA,Reg,Low,AllPub,Inside,Mod,Mitchel,Norm,Norm,1Fam,1Story,5,5,1977,1977,Gable,CompShg,BrkFace,BrkFace,None,0,TA,TA,CBlock,TA,TA,No,ALQ,936,Unf,0,190,1126,GasA,Fa,Y,SBrkr,1126,0,0,1126,1,0,2,0,3,1,TA,5,Typ,1,Gd,Attchd,1977,RFn,2,484,TA,TA,P,295,41,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,160000 +1436,20,RL,80,8400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,6,9,1962,2005,Gable,CompShg,Wd Sdng,Wd Sdng,BrkFace,237,Gd,Gd,CBlock,TA,TA,No,Unf,0,Unf,0,1319,1319,GasA,TA,Y,SBrkr,1537,0,0,1537,1,0,1,1,3,1,Gd,7,Typ,1,Gd,Attchd,1962,RFn,2,462,TA,TA,Y,0,36,0,0,0,0,NA,GdPrv,NA,0,7,2008,COD,Abnorml,174000 +1437,20,RL,60,9000,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NAmes,Norm,Norm,1Fam,1Story,4,6,1971,1971,Gable,CompShg,HdBoard,HdBoard,None,0,TA,TA,PConc,TA,TA,No,ALQ,616,Unf,0,248,864,GasA,TA,Y,SBrkr,864,0,0,864,0,0,1,0,3,1,TA,5,Typ,0,NA,Detchd,1974,Unf,2,528,TA,TA,Y,0,0,0,0,0,0,NA,GdWo,NA,0,5,2007,WD,Normal,120500 +1438,20,RL,96,12444,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NridgHt,Norm,Norm,1Fam,1Story,8,5,2008,2008,Hip,CompShg,VinylSd,VinylSd,Stone,426,Ex,TA,PConc,Ex,TA,Av,GLQ,1336,Unf,0,596,1932,GasA,Ex,Y,SBrkr,1932,0,0,1932,1,0,2,0,2,1,Ex,7,Typ,1,Gd,Attchd,2008,Fin,3,774,TA,TA,Y,0,66,0,304,0,0,NA,NA,NA,0,11,2008,New,Partial,394617 +1439,20,RM,90,7407,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,OldTown,Artery,Norm,1Fam,1Story,6,7,1957,1996,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,No,GLQ,600,Unf,0,312,912,GasA,TA,Y,FuseA,1236,0,0,1236,1,0,1,0,2,1,TA,6,Typ,0,NA,Attchd,1957,Unf,2,923,TA,TA,Y,0,158,158,0,0,0,NA,MnPrv,NA,0,4,2010,WD,Normal,149700 +1440,60,RL,80,11584,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,SLvl,7,6,1979,1979,Hip,CompShg,HdBoard,HdBoard,BrkFace,96,TA,TA,CBlock,TA,TA,No,GLQ,315,Rec,110,114,539,GasA,TA,Y,SBrkr,1040,685,0,1725,0,0,2,1,3,1,TA,6,Typ,1,TA,Attchd,1979,RFn,2,550,TA,TA,Y,0,88,216,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,197000 +1441,70,RL,79,11526,Pave,NA,IR1,Bnk,AllPub,Inside,Mod,Crawfor,Norm,Norm,1Fam,2.5Fin,6,7,1922,1994,Gable,CompShg,MetalSd,MetalSd,None,0,TA,TA,BrkTil,Ex,TA,No,Unf,0,Unf,0,588,588,GasA,Fa,Y,SBrkr,1423,748,384,2555,0,0,2,0,3,1,TA,11,Min1,1,Gd,Detchd,1993,Fin,2,672,TA,TA,Y,431,0,0,0,0,0,NA,NA,NA,0,9,2008,WD,Normal,191000 +1442,120,RM,NA,4426,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,TwnhsE,1Story,6,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,147,Gd,TA,PConc,Gd,TA,Av,GLQ,697,Unf,0,151,848,GasA,Ex,Y,SBrkr,848,0,0,848,1,0,1,0,1,1,Gd,3,Typ,1,TA,Attchd,2004,RFn,2,420,TA,TA,Y,149,0,0,0,0,0,NA,NA,NA,0,5,2008,WD,Normal,149300 +1443,60,FV,85,11003,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,2Story,10,5,2008,2008,Gable,CompShg,VinylSd,VinylSd,Stone,160,Ex,TA,PConc,Ex,TA,Av,GLQ,765,Unf,0,252,1017,GasA,Ex,Y,SBrkr,1026,981,0,2007,1,0,2,1,3,1,Ex,10,Typ,1,Ex,Attchd,2008,Fin,3,812,TA,TA,Y,168,52,0,0,0,0,NA,NA,NA,0,4,2009,WD,Normal,310000 +1444,30,RL,NA,8854,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,BrkSide,Norm,Norm,1Fam,1.5Unf,6,6,1916,1950,Gable,CompShg,Wd Sdng,Wd Sdng,None,0,TA,TA,BrkTil,TA,TA,No,Unf,0,Unf,0,952,952,Grav,Fa,N,FuseF,952,0,0,952,0,0,1,0,2,1,Fa,4,Typ,1,Gd,Detchd,1916,Unf,1,192,Fa,Po,P,0,98,0,0,40,0,NA,NA,NA,0,5,2009,WD,Normal,121000 +1445,20,RL,63,8500,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,CollgCr,Norm,Norm,1Fam,1Story,7,5,2004,2004,Gable,CompShg,VinylSd,VinylSd,BrkFace,106,Gd,TA,PConc,Gd,TA,Av,Unf,0,Unf,0,1422,1422,GasA,Ex,Y,SBrkr,1422,0,0,1422,0,0,2,0,3,1,Gd,7,Typ,0,NA,Attchd,2004,RFn,2,626,TA,TA,Y,192,60,0,0,0,0,NA,NA,NA,0,11,2007,WD,Normal,179600 +1446,85,RL,70,8400,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Sawyer,Norm,Norm,1Fam,SFoyer,6,5,1966,1966,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,TA,TA,Gd,LwQ,187,Rec,627,0,814,GasA,Gd,Y,SBrkr,913,0,0,913,1,0,1,0,3,1,TA,6,Typ,0,NA,Detchd,1990,Unf,1,240,TA,TA,Y,0,0,252,0,0,0,NA,NA,NA,0,5,2007,WD,Normal,129000 +1447,20,RL,NA,26142,Pave,NA,IR1,Lvl,AllPub,CulDSac,Gtl,Mitchel,Norm,Norm,1Fam,1Story,5,7,1962,1962,Gable,CompShg,HdBoard,HdBoard,BrkFace,189,TA,TA,CBlock,TA,TA,No,Rec,593,Unf,0,595,1188,GasA,TA,Y,SBrkr,1188,0,0,1188,0,0,1,0,3,1,TA,6,Typ,0,NA,Attchd,1962,Unf,1,312,TA,TA,P,261,39,0,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,157900 +1448,60,RL,80,10000,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,CollgCr,Norm,Norm,1Fam,2Story,8,5,1995,1996,Gable,CompShg,VinylSd,VinylSd,BrkFace,438,Gd,TA,PConc,Gd,TA,No,GLQ,1079,Unf,0,141,1220,GasA,Ex,Y,SBrkr,1220,870,0,2090,1,0,2,1,3,1,Gd,8,Typ,1,TA,Attchd,1995,RFn,2,556,TA,TA,Y,0,65,0,0,0,0,NA,NA,NA,0,12,2007,WD,Normal,240000 +1449,50,RL,70,11767,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,2Story,4,7,1910,2000,Gable,CompShg,MetalSd,HdBoard,None,0,TA,TA,CBlock,Fa,TA,No,Unf,0,Unf,0,560,560,GasA,Gd,N,SBrkr,796,550,0,1346,0,0,1,1,2,1,TA,6,Min2,0,NA,Detchd,1950,Unf,1,384,Fa,TA,Y,168,24,0,0,0,0,NA,GdWo,NA,0,5,2007,WD,Normal,112000 +1450,180,RM,21,1533,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,MeadowV,Norm,Norm,Twnhs,SFoyer,5,7,1970,1970,Gable,CompShg,CemntBd,CmentBd,None,0,TA,TA,CBlock,Gd,TA,Av,GLQ,553,Unf,0,77,630,GasA,Ex,Y,SBrkr,630,0,0,630,1,0,1,0,1,1,Ex,3,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,0,0,0,0,0,0,NA,NA,NA,0,8,2006,WD,Abnorml,92000 +1451,90,RL,60,9000,Pave,NA,Reg,Lvl,AllPub,FR2,Gtl,NAmes,Norm,Norm,Duplex,2Story,5,5,1974,1974,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,CBlock,Gd,TA,No,Unf,0,Unf,0,896,896,GasA,TA,Y,SBrkr,896,896,0,1792,0,0,2,2,4,2,TA,8,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,32,45,0,0,0,0,NA,NA,NA,0,9,2009,WD,Normal,136000 +1452,20,RL,78,9262,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,8,5,2008,2009,Gable,CompShg,CemntBd,CmentBd,Stone,194,Gd,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1573,1573,GasA,Ex,Y,SBrkr,1578,0,0,1578,0,0,2,0,3,1,Ex,7,Typ,1,Gd,Attchd,2008,Fin,3,840,TA,TA,Y,0,36,0,0,0,0,NA,NA,NA,0,5,2009,New,Partial,287090 +1453,180,RM,35,3675,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,TwnhsE,SLvl,5,5,2005,2005,Gable,CompShg,VinylSd,VinylSd,BrkFace,80,TA,TA,PConc,Gd,TA,Gd,GLQ,547,Unf,0,0,547,GasA,Gd,Y,SBrkr,1072,0,0,1072,1,0,1,0,2,1,TA,5,Typ,0,NA,Basment,2005,Fin,2,525,TA,TA,Y,0,28,0,0,0,0,NA,NA,NA,0,5,2006,WD,Normal,145000 +1454,20,RL,90,17217,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Mitchel,Norm,Norm,1Fam,1Story,5,5,2006,2006,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,1140,1140,GasA,Ex,Y,SBrkr,1140,0,0,1140,0,0,1,0,3,1,TA,6,Typ,0,NA,NA,NA,NA,0,0,NA,NA,Y,36,56,0,0,0,0,NA,NA,NA,0,7,2006,WD,Abnorml,84500 +1455,20,FV,62,7500,Pave,Pave,Reg,Lvl,AllPub,Inside,Gtl,Somerst,Norm,Norm,1Fam,1Story,7,5,2004,2005,Gable,CompShg,VinylSd,VinylSd,None,0,Gd,TA,PConc,Gd,TA,No,GLQ,410,Unf,0,811,1221,GasA,Ex,Y,SBrkr,1221,0,0,1221,1,0,2,0,2,1,Gd,6,Typ,0,NA,Attchd,2004,RFn,2,400,TA,TA,Y,0,113,0,0,0,0,NA,NA,NA,0,10,2009,WD,Normal,185000 +1456,60,RL,62,7917,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Gilbert,Norm,Norm,1Fam,2Story,6,5,1999,2000,Gable,CompShg,VinylSd,VinylSd,None,0,TA,TA,PConc,Gd,TA,No,Unf,0,Unf,0,953,953,GasA,Ex,Y,SBrkr,953,694,0,1647,0,0,2,1,3,1,TA,7,Typ,1,TA,Attchd,1999,RFn,2,460,TA,TA,Y,0,40,0,0,0,0,NA,NA,NA,0,8,2007,WD,Normal,175000 +1457,20,RL,85,13175,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NWAmes,Norm,Norm,1Fam,1Story,6,6,1978,1988,Gable,CompShg,Plywood,Plywood,Stone,119,TA,TA,CBlock,Gd,TA,No,ALQ,790,Rec,163,589,1542,GasA,TA,Y,SBrkr,2073,0,0,2073,1,0,2,0,3,1,TA,7,Min1,2,TA,Attchd,1978,Unf,2,500,TA,TA,Y,349,0,0,0,0,0,NA,MnPrv,NA,0,2,2010,WD,Normal,210000 +1458,70,RL,66,9042,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Crawfor,Norm,Norm,1Fam,2Story,7,9,1941,2006,Gable,CompShg,CemntBd,CmentBd,None,0,Ex,Gd,Stone,TA,Gd,No,GLQ,275,Unf,0,877,1152,GasA,Ex,Y,SBrkr,1188,1152,0,2340,0,0,2,0,4,1,Gd,9,Typ,2,Gd,Attchd,1941,RFn,1,252,TA,TA,Y,0,60,0,0,0,0,NA,GdPrv,Shed,2500,5,2010,WD,Normal,266500 +1459,20,RL,68,9717,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,NAmes,Norm,Norm,1Fam,1Story,5,6,1950,1996,Hip,CompShg,MetalSd,MetalSd,None,0,TA,TA,CBlock,TA,TA,Mn,GLQ,49,Rec,1029,0,1078,GasA,Gd,Y,FuseA,1078,0,0,1078,1,0,1,0,2,1,Gd,5,Typ,0,NA,Attchd,1950,Unf,1,240,TA,TA,Y,366,0,112,0,0,0,NA,NA,NA,0,4,2010,WD,Normal,142125 +1460,20,RL,75,9937,Pave,NA,Reg,Lvl,AllPub,Inside,Gtl,Edwards,Norm,Norm,1Fam,1Story,5,6,1965,1965,Gable,CompShg,HdBoard,HdBoard,None,0,Gd,TA,CBlock,TA,TA,No,BLQ,830,LwQ,290,136,1256,GasA,Gd,Y,SBrkr,1256,0,0,1256,1,0,1,1,3,1,TA,6,Typ,0,NA,Attchd,1965,Fin,1,276,TA,TA,Y,736,68,0,0,0,0,NA,NA,NA,0,6,2008,WD,Normal,147500 From a1531ab541590f1f42114b7f7fb0a4764a6a9406 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sat, 23 Nov 2019 12:25:53 +0100 Subject: [PATCH 24/30] Added all files in the project --- .../your-code/Contact Reasons.ipynb | 1175 ++ .../your-code/Data Cleaning.ipynb | 1972 +++ .../your-code/Data Descriptions.txt | 92 + .../your-code/Plotting.ipynb | 11945 ++++++++++++++++ .../your-code/README.md | 136 + .../your-code/contact_reasons.csv | 183 + .../effects_of_subquestions_on_ratings .ipynb | 778 + .../effects_of_subquestions_on_ratings.csv | 183 + .../your-code/employee_satisfaction.csv | 182 + .../your-code/satisfaction_survey_admin.csv | 183 + 10 files changed, 16829 insertions(+) create mode 100644 module-2_projects/visualizing-real-world-data-project/your-code/Contact Reasons.ipynb create mode 100644 module-2_projects/visualizing-real-world-data-project/your-code/Data Cleaning.ipynb create mode 100644 module-2_projects/visualizing-real-world-data-project/your-code/Data Descriptions.txt create mode 100644 module-2_projects/visualizing-real-world-data-project/your-code/Plotting.ipynb create mode 100644 module-2_projects/visualizing-real-world-data-project/your-code/README.md create mode 100644 module-2_projects/visualizing-real-world-data-project/your-code/contact_reasons.csv create mode 100644 module-2_projects/visualizing-real-world-data-project/your-code/effects_of_subquestions_on_ratings .ipynb create mode 100644 module-2_projects/visualizing-real-world-data-project/your-code/effects_of_subquestions_on_ratings.csv create mode 100644 module-2_projects/visualizing-real-world-data-project/your-code/employee_satisfaction.csv create mode 100644 module-2_projects/visualizing-real-world-data-project/your-code/satisfaction_survey_admin.csv diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/Contact Reasons.ipynb b/module-2_projects/visualizing-real-world-data-project/your-code/Contact Reasons.ipynb new file mode 100644 index 0000000..64ddb9d --- /dev/null +++ b/module-2_projects/visualizing-real-world-data-project/your-code/Contact Reasons.ipynb @@ -0,0 +1,1175 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Explore employees' contact reasons with major departments\n", + "\n", + "Among those employees who have at least ont contact with major departments, we would like to know the **relative frequency** of reasons of those contacts. " + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import re\n", + "import plotly.graph_objects as go\n", + "import seaborn as sns\n", + "import statsmodels.api as sm\n", + "import matplotlib.pyplot as plt\n" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
satisfaction_scorerating_acctrating_HRrating_OMrating_securityrating_D&Rreasons_approched_accounting_1reasons_approched_accounting_2reasons_approched_accounting_3reasons_approched_accounting_4...reasons_approched_HR_4reasons_approched_HR_5reasons_approched_HR_6reasons_approched_Office Management_1reasons_approched_Office Management_2reasons_approched_Office Management_3reasons_approched_Office Management_4reasons_approched_Office Management_5reasons_approched_Office Management_6reasons_approched_Office Management_7
08.03.06.01.04.0NaN3.04.05.0NaN...NaNNaNNaN3.0NaNNaNNaNNaNNaNNaN
110.0NaN7.010.09.08.01.0NaNNaNNaN...NaNNaNNaN1.02.03.05.07.0NaNNaN
28.08.0NaN10.08.0NaN3.04.0NaNNaN...NaNNaNNaN1.02.03.0NaNNaNNaNNaN
37.09.07.09.0NaNNaN5.01.02.03.0...NaNNaNNaN5.0NaNNaNNaNNaNNaNNaN
45.09.08.08.09.0NaN4.01.02.03.0...NaNNaNNaN5.0NaNNaNNaNNaNNaNNaN
\n", + "

5 rows × 26 columns

\n", + "
" + ], + "text/plain": [ + " satisfaction_score rating_acct rating_HR rating_OM rating_security \\\n", + "0 8.0 3.0 6.0 1.0 4.0 \n", + "1 10.0 NaN 7.0 10.0 9.0 \n", + "2 8.0 8.0 NaN 10.0 8.0 \n", + "3 7.0 9.0 7.0 9.0 NaN \n", + "4 5.0 9.0 8.0 8.0 9.0 \n", + "\n", + " rating_D&R reasons_approched_accounting_1 reasons_approched_accounting_2 \\\n", + "0 NaN 3.0 4.0 \n", + "1 8.0 1.0 NaN \n", + "2 NaN 3.0 4.0 \n", + "3 NaN 5.0 1.0 \n", + "4 NaN 4.0 1.0 \n", + "\n", + " reasons_approched_accounting_3 reasons_approched_accounting_4 ... \\\n", + "0 5.0 NaN ... \n", + "1 NaN NaN ... \n", + "2 NaN NaN ... \n", + "3 2.0 3.0 ... \n", + "4 2.0 3.0 ... \n", + "\n", + " reasons_approched_HR_4 reasons_approched_HR_5 reasons_approched_HR_6 \\\n", + "0 NaN NaN NaN \n", + "1 NaN NaN NaN \n", + "2 NaN NaN NaN \n", + "3 NaN NaN NaN \n", + "4 NaN NaN NaN \n", + "\n", + " reasons_approched_Office Management_1 \\\n", + "0 3.0 \n", + "1 1.0 \n", + "2 1.0 \n", + "3 5.0 \n", + "4 5.0 \n", + "\n", + " reasons_approched_Office Management_2 \\\n", + "0 NaN \n", + "1 2.0 \n", + "2 2.0 \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " reasons_approched_Office Management_3 \\\n", + "0 NaN \n", + "1 3.0 \n", + "2 3.0 \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " reasons_approched_Office Management_4 \\\n", + "0 NaN \n", + "1 5.0 \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " reasons_approched_Office Management_5 \\\n", + "0 NaN \n", + "1 7.0 \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " reasons_approched_Office Management_6 \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " reasons_approched_Office Management_7 \n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + "[5 rows x 26 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv('contact_reasons.csv')\n", + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Relative Frequency\n", + "\n", + "1. Reshape dataframe to calculate the count for each reasons\n", + "2. Get the relative frequency for each reason for each department\n", + "3. Visualize\n", + "\n", + "#### 1. Reshape dataframe to calculate the count for each reasons" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Each column represent one reason of contact and each row represent one employee. \n", + "# Most of the employee has multiple reasons. We will need find unique count for each reason and sum the count.\n", + "combined = pd.Series()\n", + "for col in list(df.columns):\n", + " a = df[col].value_counts()\n", + " combined = pd.concat([combined,a],axis=1)\n", + "combined = combined.drop(0,axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
satisfaction_scorerating_acctrating_HRrating_OMrating_securityrating_D&Rreasons_approched_accounting_1reasons_approched_accounting_2reasons_approched_accounting_3reasons_approched_accounting_4...reasons_approched_HR_4reasons_approched_HR_5reasons_approched_HR_6reasons_approched_Office Management_1reasons_approched_Office Management_2reasons_approched_Office Management_3reasons_approched_Office Management_4reasons_approched_Office Management_5reasons_approched_Office Management_6reasons_approched_Office Management_7
0.0NaNNaN1.0NaNNaNNaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
1.0NaN1.01.01.0NaN3.06.0115.01.0NaN...2.0NaN1.0123.0NaNNaNNaNNaNNaNNaN
2.0NaNNaNNaNNaNNaN1.08.016.029.0NaN...1.0NaN1.017.075.0NaNNaNNaNNaNNaN
3.08.05.06.01.01.01.027.014.031.015.0...NaN1.0NaN6.020.035.0NaNNaNNaNNaN
4.04.08.05.0NaN2.02.082.017.039.027.0...1.0NaNNaN3.010.015.015.0NaNNaNNaN
\n", + "

5 rows × 26 columns

\n", + "
" + ], + "text/plain": [ + " satisfaction_score rating_acct rating_HR rating_OM rating_security \\\n", + "0.0 NaN NaN 1.0 NaN NaN \n", + "1.0 NaN 1.0 1.0 1.0 NaN \n", + "2.0 NaN NaN NaN NaN NaN \n", + "3.0 8.0 5.0 6.0 1.0 1.0 \n", + "4.0 4.0 8.0 5.0 NaN 2.0 \n", + "\n", + " rating_D&R reasons_approched_accounting_1 \\\n", + "0.0 NaN NaN \n", + "1.0 3.0 6.0 \n", + "2.0 1.0 8.0 \n", + "3.0 1.0 27.0 \n", + "4.0 2.0 82.0 \n", + "\n", + " reasons_approched_accounting_2 reasons_approched_accounting_3 \\\n", + "0.0 NaN NaN \n", + "1.0 115.0 1.0 \n", + "2.0 16.0 29.0 \n", + "3.0 14.0 31.0 \n", + "4.0 17.0 39.0 \n", + "\n", + " reasons_approched_accounting_4 ... reasons_approched_HR_4 \\\n", + "0.0 NaN ... NaN \n", + "1.0 NaN ... 2.0 \n", + "2.0 NaN ... 1.0 \n", + "3.0 15.0 ... NaN \n", + "4.0 27.0 ... 1.0 \n", + "\n", + " reasons_approched_HR_5 reasons_approched_HR_6 \\\n", + "0.0 NaN NaN \n", + "1.0 NaN 1.0 \n", + "2.0 NaN 1.0 \n", + "3.0 1.0 NaN \n", + "4.0 NaN NaN \n", + "\n", + " reasons_approched_Office Management_1 \\\n", + "0.0 NaN \n", + "1.0 123.0 \n", + "2.0 17.0 \n", + "3.0 6.0 \n", + "4.0 3.0 \n", + "\n", + " reasons_approched_Office Management_2 \\\n", + "0.0 NaN \n", + "1.0 NaN \n", + "2.0 75.0 \n", + "3.0 20.0 \n", + "4.0 10.0 \n", + "\n", + " reasons_approched_Office Management_3 \\\n", + "0.0 NaN \n", + "1.0 NaN \n", + "2.0 NaN \n", + "3.0 35.0 \n", + "4.0 15.0 \n", + "\n", + " reasons_approched_Office Management_4 \\\n", + "0.0 NaN \n", + "1.0 NaN \n", + "2.0 NaN \n", + "3.0 NaN \n", + "4.0 15.0 \n", + "\n", + " reasons_approched_Office Management_5 \\\n", + "0.0 NaN \n", + "1.0 NaN \n", + "2.0 NaN \n", + "3.0 NaN \n", + "4.0 NaN \n", + "\n", + " reasons_approched_Office Management_6 \\\n", + "0.0 NaN \n", + "1.0 NaN \n", + "2.0 NaN \n", + "3.0 NaN \n", + "4.0 NaN \n", + "\n", + " reasons_approched_Office Management_7 \n", + "0.0 NaN \n", + "1.0 NaN \n", + "2.0 NaN \n", + "3.0 NaN \n", + "4.0 NaN \n", + "\n", + "[5 rows x 26 columns]" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# After combining all the unique count of each column, \n", + "# the index now represents each unique reason. e.g. Reason 1, Reason 2...and later on will be replaced by words.\n", + "combined.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
accountingHROffice
0.00.01.00.0
1.0122.018.0123.0
2.053.052.092.0
3.087.0128.061.0
4.0176.083.043.0
5.089.033.087.0
6.016.041.016.0
7.035.032.0105.0
8.00.085.07.0
9.00.064.00.0
10.00.028.00.0
\n", + "
" + ], + "text/plain": [ + " accounting HR Office\n", + "0.0 0.0 1.0 0.0\n", + "1.0 122.0 18.0 123.0\n", + "2.0 53.0 52.0 92.0\n", + "3.0 87.0 128.0 61.0\n", + "4.0 176.0 83.0 43.0\n", + "5.0 89.0 33.0 87.0\n", + "6.0 16.0 41.0 16.0\n", + "7.0 35.0 32.0 105.0\n", + "8.0 0.0 85.0 7.0\n", + "9.0 0.0 64.0 0.0\n", + "10.0 0.0 28.0 0.0" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# For each department, sum the count of reasons for employees to visit \n", + "depts = ['accounting','HR','Office']\n", + "\n", + "reasons = pd.DataFrame()\n", + "for dept in depts:\n", + " reason = combined.filter(like=dept).sum(axis=1).to_frame().rename({0:dept},axis=1)\n", + " reasons = pd.concat([reasons,reason],axis=1)\n", + "\n", + "reasons" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2. Get the relative frequency for each reason for each department\n", + "\n", + "- Convert indexes to actual reasons of contact for each department and compute percentage for each reason " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ReasonPercentage of contacts per reason
000.000000
1Salary0.211073
2Expenditure of Per diem0.091696
3Reimbursement for travel expenses0.150519
4Reimbursement for company vehicle0.304498
5Pension0.153979
6Suppliers0.027682
7Other0.060554
8100.000000
\n", + "
" + ], + "text/plain": [ + " Reason Percentage of contacts per reason\n", + "0 0 0.000000\n", + "1 Salary 0.211073\n", + "2 Expenditure of Per diem 0.091696\n", + "3 Reimbursement for travel expenses 0.150519\n", + "4 Reimbursement for company vehicle 0.304498\n", + "5 Pension 0.153979\n", + "6 Suppliers 0.027682\n", + "7 Other 0.060554\n", + "8 10 0.000000" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Account department\n", + "reasons_a = {1.0:'Salary',\n", + " 2.0:'Expenditure of Per diem',\n", + " 3.0:'Reimbursement for travel expenses',\n", + " 4.0:'Reimbursement for company vehicle',\n", + " 5.0:'Pension',\n", + " 6.0:'Suppliers',\n", + " 7.0:'Other'}\n", + "acct_reasons = pd.DataFrame(reasons[['accounting']]/reasons['accounting'].sum()).drop([8.0,9.0]).reset_index()\n", + "acct_reasons.replace({'index':reasons_a},inplace=True)\n", + "acct_reasons.rename({'index':'Reason','accounting':'Percentage of contacts per reason'},axis=1,inplace=True)\n", + "acct_reasons" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ReasonPercentage of contacts per reason
000.001730
1Onboarding0.031142
2Promotion and Salary raise0.089965
3Attendance reports0.221453
4Sick days and vacation days0.143599
5Personal circumstances0.057093
6Calculate of seniority0.070934
7Retirement and pension funds0.055363
8Open position0.147059
9Other0.110727
10100.048443
\n", + "
" + ], + "text/plain": [ + " Reason Percentage of contacts per reason\n", + "0 0 0.001730\n", + "1 Onboarding 0.031142\n", + "2 Promotion and Salary raise 0.089965\n", + "3 Attendance reports 0.221453\n", + "4 Sick days and vacation days 0.143599\n", + "5 Personal circumstances 0.057093\n", + "6 Calculate of seniority 0.070934\n", + "7 Retirement and pension funds 0.055363\n", + "8 Open position 0.147059\n", + "9 Other 0.110727\n", + "10 10 0.048443" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# HR\n", + "reasons_hr = {1.0:'Onboarding',\n", + " 2.0:'Promotion and Salary raise',\n", + " 3.0:'Attendance reports',\n", + " 4.0:'Sick days and vacation days',\n", + " 5.0:'Personal circumstances',\n", + " 6.0:'Calculate of seniority',\n", + " 7.0:'Retirement and pension funds',\n", + " 8.0:'Open position',\n", + " 9.0:'Other'}\n", + "HR_reasons = pd.DataFrame(reasons[['HR']]/reasons['accounting'].sum()).reset_index()\n", + "HR_reasons.replace({'index':reasons_hr},inplace=True)\n", + "HR_reasons.rename({'index':'Reason','HR':'Percentage of contacts per reason'},axis=1,inplace=True)\n", + "HR_reasons" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ReasonPercentage of contacts per reason
000.000000
1Office equipment0.212803
2Mail0.159170
3Catering0.105536
4Company vehicle0.074394
5Hardware0.150519
6Insurance0.027682
7Office Maintenance0.181661
8Other0.012111
9100.000000
\n", + "
" + ], + "text/plain": [ + " Reason Percentage of contacts per reason\n", + "0 0 0.000000\n", + "1 Office equipment 0.212803\n", + "2 Mail 0.159170\n", + "3 Catering 0.105536\n", + "4 Company vehicle 0.074394\n", + "5 Hardware 0.150519\n", + "6 Insurance 0.027682\n", + "7 Office Maintenance 0.181661\n", + "8 Other 0.012111\n", + "9 10 0.000000" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Office Management\n", + "reasons_om = {1.0:'Office equipment',\n", + " 2.0:'Mail',\n", + " 3.0:'Catering',\n", + " 4.0:'Company vehicle',\n", + " 5.0:'Hardware',\n", + " 6.0:'Insurance',\n", + " 7.0:'Office Maintenance',\n", + " 8.0:'Other'}\n", + "OM_reasons = pd.DataFrame(reasons[['Office']]/reasons['accounting'].sum()).drop(9.0).reset_index()\n", + "OM_reasons.replace({'index':reasons_om},inplace=True)\n", + "OM_reasons.rename({'index':'Reason','Office':'Percentage of contacts per reason'},axis=1,inplace=True)\n", + "OM_reasons" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 3. Visualization " + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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qcB0YFdgJnAPsF/dfT3gTEkjMX7d9o/quiOAb0naH7gR2KNX5xARERExjHqWAALYnk5J8prLpjYeGzhojP2uA566gGPeDuzU3UgjIiIi2iMzgURERES0TBLAiIiIiJZJAhgRERHRMkkAIyIiIlomCWBEREREyyQBjIiIiGiZJIARERERLZMEMCIiIqJlkgBGREREtEwSwIiIiIiWSQIYERER0TJJACMiIiJaJglgRERERMskAYyIiIhomSSAERERES2TBDAiIiKiZZIARkRERLRMEsCIiIiIlkkCGBEREdEySQAjIiIiWiYJYERERETLJAGMiIiIaJkkgBEREREtkwQwIiIiomXG9/LgknYBjgHGASfZPmLUetX1uwL3AK+3/XtJmwCnAusDDwEn2D6m7nM48EZgXj3M+21P7+V5RETEktn2k9/udwhL5Pfv36PfIUT0VM8SQEnjgGOBnYHZwEWSptm+srHZZGBi/dkeOK7+ng+8qyaDqwEXSzq3se/Rto/sVewRERERw6yXVcDbATNtX2f7fuAMYMqobaYAp7q4AFhD0ga259j+PYDtvwNXARv1MNaIiIiI1uhlArgRMKvxfDb/mcQtchtJmwH/BVzYWHywpEslnSxpzbH+uKQDJM2QNGPevHljbRIRERHRSr1MADXGMi/ONpJWBb4DHGL7rrr4OGALYBtgDvC5sf647RNsT7I9acKECYsbe0RERMTQ6mUCOBvYpPF8Y+DmTreRtDwl+fua7e+ObGD7VtsP2n4IOJFS1RwRERERHeplAngRMFHS5pJWAPYCpo3aZhrwOhU7AHfanlN7B38ZuMr2Uc0dJG3QePoy4PLenUJERETE8OlZL2Db8yUdDJxDGQbmZNtXSDqwrp8KTKcMATOTMgzMfnX3HYF9gMskXVKXjQz38hlJ21Cqiq8H3tSrc4iIiIgYRj0dB7AmbNNHLZvaeGzgoDH2+zVjtw/E9j5dDjMiIiKiVTITSERERETLJAGMiIiIaJkkgBEREREtkwQwIiIiomWSAEZERES0TBLAiIiIiJZJAhgRERHRMkkAIyIiIlomCWBEREREyyQBjIiIiGiZJIARERERLdPTuYAjIiJiOEza7eh+h7BEZkx7R79DWCalBDAiIiKiZZIARkRERLRMEsCIiIiIlkkCGBEREdEySQAjIiIiWiYJYERERETLJAGM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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "fig,ax = plt.subplots(nrows=3,ncols=1,figsize=(9,20))\n", + "\n", + "acct = sns.barplot(data=acct_reasons,x='Reason',y='Percentage of contacts per reason',palette=(\"YlGnBu\"),ax=ax[0])\n", + "acct.set_xticklabels(acct.get_xticklabels(),rotation=65, horizontalalignment='right')\n", + "acct.set(xlabel='',ylabel='Percentage')\n", + "acct.set_title('Reasons to contact Accounting')\n", + "\n", + "hr = sns.barplot(data=HR_reasons,x='Reason',y='Percentage of contacts per reason',palette=(\"YlGnBu\"),ax=ax[1]);\n", + "hr.set_xticklabels(hr.get_xticklabels(),rotation=65, horizontalalignment='right')\n", + "hr.set(xlabel='',ylabel='Percentage')\n", + "hr.set_title('Reasons to contact HR')\n", + "\n", + "om = sns.barplot(data=OM_reasons,x='Reason',y='Percentage of contacts per reason',palette=(\"YlGnBu\"),ax=ax[2]); \n", + "om.set_xticklabels(om.get_xticklabels(),rotation=65, horizontalalignment='right')\n", + "om.set(xlabel='',ylabel='Percentage')\n", + "om.set_title('Reasons to contact Office Management')\n", + "\n", + "plt.tight_layout()\n", + "\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/Data Cleaning.ipynb b/module-2_projects/visualizing-real-world-data-project/your-code/Data Cleaning.ipynb new file mode 100644 index 0000000..011b3f6 --- /dev/null +++ b/module-2_projects/visualizing-real-world-data-project/your-code/Data Cleaning.ipynb @@ -0,0 +1,1972 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Data Cleaning & Manipulation\n", + "\n", + "### Steps:\n", + "1. Remove spaces in columns\n", + "2. Rearrange bin size for Age and Senority \n", + "3. Separate dataset into three dataframes (2nd & 3rd dataframe will be cleaned and plotted in another notebook
\n", + "(*contact_reasons / effects_of_subquestions_on_ratings*))\n", + "4. Reshape main dataframe\n", + "5. Rearrange bin size for Age, number of contacts in different departments\n", + "6. Convert location values to provide meaning informations\n", + "7. Missing values" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from plotly import graph_objects as go\n", + "import plotly_express as px" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
LocationGenderAgeAge_binsSenioritySeniority_binssatisfaction_with_administration_generalTimes_approched_accountingreasons_approched_accounting_1reasons_approched_accounting_2...Security_department_evaluation_break down_Q6Security_department_evaluation_break down_Q7Security_department_evaluation_break down_Q8Security_department_evaluation_break down_Q9Security_department_evaluation_break down_Q10Security_department_evaluation_break down_Q11General_Evaluation_data&records_departmentdata&records_department_evaluation_break down_Q1data&records_department_evaluation_break down_Q2data&records_department_evaluation_break down_Q3
0City_1(HQ)Female3.0C. 31 to 403.0C. 6 to 10 years8.0C. Twice3.04.0...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
1City_2(main devlopment center)Male4.0D. 41 to 503.0D. 11 to 20 years10.0A. Zero times1.0NaN...9.08.010.09.08.09.08.08.08.08.0
2City_3(lastest expantion)Female2.0B. 21 to 303.0C. 6 to 10 years8.0C. Twice3.04.0...NaN8.0NaN8.08.06.0NaN10.010.010.0
3City_3(lastest expantion)Female2.0B. 21 to 301.0A. upto 2 years7.0E. 5 times or more5.01.0...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
4City_3(lastest expantion)Female4.0D. 41 to 504.0D. 11 to 20 years5.0D. 3 to 4 times4.01.0...9.08.0NaN9.09.09.0NaNNaNNaNNaN
\n", + "

5 rows × 77 columns

\n", + "
" + ], + "text/plain": [ + " Location Gender Age Age_bins Seniority \\\n", + "0 City_1(HQ) Female 3.0 C. 31 to 40 3.0 \n", + "1 City_2(main devlopment center) Male 4.0 D. 41 to 50 3.0 \n", + "2 City_3(lastest expantion) Female 2.0 B. 21 to 30 3.0 \n", + "3 City_3(lastest expantion) Female 2.0 B. 21 to 30 1.0 \n", + "4 City_3(lastest expantion) Female 4.0 D. 41 to 50 4.0 \n", + "\n", + " Seniority_bins satisfaction_with_administration_general \\\n", + "0 C. 6 to 10 years 8.0 \n", + "1 D. 11 to 20 years 10.0 \n", + "2 C. 6 to 10 years 8.0 \n", + "3 A. upto 2 years 7.0 \n", + "4 D. 11 to 20 years 5.0 \n", + "\n", + " Times_approched_accounting reasons_approched_accounting_1 \\\n", + "0 C. Twice 3.0 \n", + "1 A. Zero times 1.0 \n", + "2 C. Twice 3.0 \n", + "3 E. 5 times or more 5.0 \n", + "4 D. 3 to 4 times 4.0 \n", + "\n", + " reasons_approched_accounting_2 ... \\\n", + "0 4.0 ... \n", + "1 NaN ... \n", + "2 4.0 ... \n", + "3 1.0 ... \n", + "4 1.0 ... \n", + "\n", + " Security_department_evaluation_break down_Q6 \\\n", + "0 NaN \n", + "1 9.0 \n", + "2 NaN \n", + "3 NaN \n", + "4 9.0 \n", + "\n", + " Security_department_evaluation_break down_Q7 \\\n", + "0 NaN \n", + "1 8.0 \n", + "2 8.0 \n", + "3 NaN \n", + "4 8.0 \n", + "\n", + " Security_department_evaluation_break down_Q8 \\\n", + "0 NaN \n", + "1 10.0 \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " Security_department_evaluation_break down_Q9 \\\n", + "0 NaN \n", + "1 9.0 \n", + "2 8.0 \n", + "3 NaN \n", + "4 9.0 \n", + "\n", + " Security_department_evaluation_break down_Q10 \\\n", + "0 NaN \n", + "1 8.0 \n", + "2 8.0 \n", + "3 NaN \n", + "4 9.0 \n", + "\n", + " Security_department_evaluation_break down_Q11 \\\n", + "0 NaN \n", + "1 9.0 \n", + "2 6.0 \n", + "3 NaN \n", + "4 9.0 \n", + "\n", + " General_Evaluation_data&records_department \\\n", + "0 NaN \n", + "1 8.0 \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " data&records_department_evaluation_break down_Q1 \\\n", + "0 NaN \n", + "1 8.0 \n", + "2 10.0 \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " data&records_department_evaluation_break down_Q2 \\\n", + "0 NaN \n", + "1 8.0 \n", + "2 10.0 \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " data&records_department_evaluation_break down_Q3 \n", + "0 NaN \n", + "1 8.0 \n", + "2 10.0 \n", + "3 NaN \n", + "4 NaN \n", + "\n", + "[5 rows x 77 columns]" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_csv(\"satisfaction_survey_admin.csv\")\n", + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 1. Remove spaces in columns" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "df_col = [i.strip() for i in list(df.columns)]\n", + "\n", + "df.columns=df_col" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2. Simplify columns' names " + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "df= df.rename({'Age' : 'age_category',\n", + " 'Seniority' : 'seniority_category',\n", + " 'satisfaction_with_administration_general':'satisfaction_score',\n", + " 'Times_approched_accounting': '#contact_acct',\n", + " 'Last_aprproch_Evaluation_accounting': 'rating_acct',\n", + " 'Times_approched_HR' : '#contact_HR',\n", + " 'Last_aprproch_Evaluation_HR' : 'rating_HR',\n", + " 'Times approached Office Management' : '#contact_OM',\n", + " 'Last_aprproch_Evaluation_Office Management' : 'rating_OM',\n", + " 'General_Evaluation_security_department' : 'rating_security',\n", + " 'General_Evaluation_data&records_department' : 'rating_D&R',\n", + " \"Gender\" : \"gender\",\n", + " \"Location\": \"location\"},axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
locationgenderage_categoryAge_binsseniority_categorySeniority_binssatisfaction_score#contact_acctreasons_approched_accounting_1reasons_approched_accounting_2...Security_department_evaluation_break down_Q6Security_department_evaluation_break down_Q7Security_department_evaluation_break down_Q8Security_department_evaluation_break down_Q9Security_department_evaluation_break down_Q10Security_department_evaluation_break down_Q11rating_D&Rdata&records_department_evaluation_break down_Q1data&records_department_evaluation_break down_Q2data&records_department_evaluation_break down_Q3
0City_1(HQ)Female3.0C. 31 to 403.0C. 6 to 10 years8.0C. Twice3.04.0...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
1City_2(main devlopment center)Male4.0D. 41 to 503.0D. 11 to 20 years10.0A. Zero times1.0NaN...9.08.010.09.08.09.08.08.08.08.0
2City_3(lastest expantion)Female2.0B. 21 to 303.0C. 6 to 10 years8.0C. Twice3.04.0...NaN8.0NaN8.08.06.0NaN10.010.010.0
3City_3(lastest expantion)Female2.0B. 21 to 301.0A. upto 2 years7.0E. 5 times or more5.01.0...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
4City_3(lastest expantion)Female4.0D. 41 to 504.0D. 11 to 20 years5.0D. 3 to 4 times4.01.0...9.08.0NaN9.09.09.0NaNNaNNaNNaN
\n", + "

5 rows × 77 columns

\n", + "
" + ], + "text/plain": [ + " location gender age_category Age_bins \\\n", + "0 City_1(HQ) Female 3.0 C. 31 to 40 \n", + "1 City_2(main devlopment center) Male 4.0 D. 41 to 50 \n", + "2 City_3(lastest expantion) Female 2.0 B. 21 to 30 \n", + "3 City_3(lastest expantion) Female 2.0 B. 21 to 30 \n", + "4 City_3(lastest expantion) Female 4.0 D. 41 to 50 \n", + "\n", + " seniority_category Seniority_bins satisfaction_score \\\n", + "0 3.0 C. 6 to 10 years 8.0 \n", + "1 3.0 D. 11 to 20 years 10.0 \n", + "2 3.0 C. 6 to 10 years 8.0 \n", + "3 1.0 A. upto 2 years 7.0 \n", + "4 4.0 D. 11 to 20 years 5.0 \n", + "\n", + " #contact_acct reasons_approched_accounting_1 \\\n", + "0 C. Twice 3.0 \n", + "1 A. Zero times 1.0 \n", + "2 C. Twice 3.0 \n", + "3 E. 5 times or more 5.0 \n", + "4 D. 3 to 4 times 4.0 \n", + "\n", + " reasons_approched_accounting_2 ... \\\n", + "0 4.0 ... \n", + "1 NaN ... \n", + "2 4.0 ... \n", + "3 1.0 ... \n", + "4 1.0 ... \n", + "\n", + " Security_department_evaluation_break down_Q6 \\\n", + "0 NaN \n", + "1 9.0 \n", + "2 NaN \n", + "3 NaN \n", + "4 9.0 \n", + "\n", + " Security_department_evaluation_break down_Q7 \\\n", + "0 NaN \n", + "1 8.0 \n", + "2 8.0 \n", + "3 NaN \n", + "4 8.0 \n", + "\n", + " Security_department_evaluation_break down_Q8 \\\n", + "0 NaN \n", + "1 10.0 \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " Security_department_evaluation_break down_Q9 \\\n", + "0 NaN \n", + "1 9.0 \n", + "2 8.0 \n", + "3 NaN \n", + "4 9.0 \n", + "\n", + " Security_department_evaluation_break down_Q10 \\\n", + "0 NaN \n", + "1 8.0 \n", + "2 8.0 \n", + "3 NaN \n", + "4 9.0 \n", + "\n", + " Security_department_evaluation_break down_Q11 rating_D&R \\\n", + "0 NaN NaN \n", + "1 9.0 8.0 \n", + "2 6.0 NaN \n", + "3 NaN NaN \n", + "4 9.0 NaN \n", + "\n", + " data&records_department_evaluation_break down_Q1 \\\n", + "0 NaN \n", + "1 8.0 \n", + "2 10.0 \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " data&records_department_evaluation_break down_Q2 \\\n", + "0 NaN \n", + "1 8.0 \n", + "2 10.0 \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " data&records_department_evaluation_break down_Q3 \n", + "0 NaN \n", + "1 8.0 \n", + "2 10.0 \n", + "3 NaN \n", + "4 NaN \n", + "\n", + "[5 rows x 77 columns]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 3. Separate dataset into two dataframes: \n", + "\n", + "*By doing so, we simplify the main dataframe which contains major findings for future plotting.*\n", + "\n", + "1. **df_main**: with major survey results including employee profile, overall satisfaction score for internal services of the company, number of contacts with major departments and the relative ratings during contacts. We will later export to employee_satisfaction.csv for further plotting.
\n", + "2. **contact_reasons**: containing counts of reasons for the employees to approach major departments
\n", + "3. **effects_of_subquestions_on_ratings** : containing rating for each service from each department" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "df_main = df.drop(df.filter(like='down').columns,axis=1)\n", + "df_main = df_main.drop(df_main.filter(like='reasons').columns,axis=1)\n", + "\n", + "contact_reasons = pd.concat([df.filter(like='score'),df.filter(like='rating'),df.filter(like='reasons')],axis=1)\n", + "effects_of_subquestions_on_ratings = pd.concat([df.filter(like='score'),df.filter(like='rating'),df.filter(like='down')],axis=1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 4. Reshape main dataframe\n", + "\n", + "- Drop duplicated columns and unwanted record\n", + " Duplicated columns: \n", + " 1. age_category & Age_bins 2. seniority_category & Seniority_bins\n", + " Unwanted record:\n", + " - Location = Remote : Only one employee is working remotely therefore survey result is not representative\n", + "- Add ID column to identity each employee" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# drop duplicates\n", + "df_main = df_main.drop(['Age_bins','Seniority_bins'],axis=1)\n", + "df_main = df_main.drop(df[df['location']=='Remote'].index)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDlocationgenderage_categoryseniority_categorysatisfaction_score#contact_acctrating_acct#contact_HRrating_HR#contact_OMrating_OMrating_securityrating_D&R
01City_1(HQ)Female3.03.08.0C. Twice3.0D. 3 to 4 times6.0B. Once1.04.0NaN
12City_2(main devlopment center)Male4.03.010.0A. Zero timesNaNC. Twice7.0E. 5 times or more10.09.08.0
23City_3(lastest expantion)Female2.03.08.0C. Twice8.0A. Zero timesNaNE. 5 times or more10.08.0NaN
34City_3(lastest expantion)Female2.01.07.0E. 5 times or more9.0C. Twice7.0B. Once9.0NaNNaN
45City_3(lastest expantion)Female4.04.05.0D. 3 to 4 times9.0D. 3 to 4 times8.0C. Twice8.09.0NaN
56City_2(main devlopment center)Male4.03.08.0E. 5 times or more4.0E. 5 times or more9.0E. 5 times or more10.08.0NaN
77City_3(lastest expantion)Female2.03.010.0E. 5 times or more8.0E. 5 times or more9.0E. 5 times or more10.010.010.0
88City_2(main devlopment center)Female4.02.09.0D. 3 to 4 times9.0D. 3 to 4 times9.0D. 3 to 4 times9.09.0NaN
99City_1(HQ)Male3.01.08.0D. 3 to 4 times8.0D. 3 to 4 times10.0B. Once9.08.08.0
1010City_1(HQ)Female5.05.09.0D. 3 to 4 times9.0B. Once9.0E. 5 times or more10.010.0NaN
1111City_3(lastest expantion)Male4.04.08.0D. 3 to 4 times10.0A. Zero timesNaNE. 5 times or more10.010.0NaN
1212City_1(HQ)Male4.04.09.0A. Zero timesNaNC. Twice9.0D. 3 to 4 times10.08.08.0
1313City_1(HQ)Female3.04.09.0D. 3 to 4 times10.0D. 3 to 4 times10.0E. 5 times or more9.010.0NaN
1414City_2(main devlopment center)Female2.03.09.0E. 5 times or more7.0A. Zero timesNaNE. 5 times or more10.010.0NaN
1515City_2(main devlopment center)Female5.04.07.0C. Twice8.0D. 3 to 4 times9.0E. 5 times or more9.08.0NaN
1616City_1(HQ)Male2.01.08.0D. 3 to 4 timesNaNC. Twice8.0A. Zero TimesNaN10.0NaN
1717City_1(HQ)Male4.04.07.0C. TwiceNaNA. Zero timesNaNE. 5 times or more10.09.08.0
1818City_3(lastest expantion)Female2.03.08.0E. 5 times or more9.0E. 5 times or more10.0E. 5 times or more10.08.09.0
1919City_3(lastest expantion)Female3.02.08.0D. 3 to 4 times9.0B. Once9.0D. 3 to 4 times10.010.0NaN
2020City_2(main devlopment center)Male4.01.08.0B. Once9.0A. Zero timesNaNB. Once9.09.0NaN
2121City_2(main devlopment center)Male3.03.09.0E. 5 times or more8.0D. 3 to 4 times9.0C. Twice9.09.0NaN
2222City_2(main devlopment center)Male3.02.07.0D. 3 to 4 times8.0D. 3 to 4 times9.0C. Twice7.08.08.0
2323City_1(HQ)Female3.03.08.0C. Twice8.0C. Twice8.0B. OnceNaN6.08.0
2424City_2(main devlopment center)Male5.05.06.0D. 3 to 4 times7.0E. 5 times or more9.0D. 3 to 4 times9.09.0NaN
2525City_1(HQ)Male4.04.03.0B. Once5.0E. 5 times or more3.0E. 5 times or more6.08.04.0
2626City_1(HQ)Female2.03.09.0C. Twice10.0E. 5 times or more10.0E. 5 times or more10.010.01.0
2727City_2(main devlopment center)Female2.01.09.0A. Zero timesNaND. 3 to 4 times9.0A. Zero TimesNaN10.0NaN
2828City_2(main devlopment center)Male3.03.06.0A. Zero timesNaNE. 5 times or more8.0A. Zero TimesNaN10.0NaN
2929City_1(HQ)Male3.02.08.0A. Zero timesNaND. 3 to 4 times9.0D. 3 to 4 times9.09.09.0
3030City_1(HQ)Male5.04.08.0E. 5 times or more9.0D. 3 to 4 times5.0E. 5 times or more9.09.0NaN
3131City_2(main devlopment center)Female4.03.08.0E. 5 times or more9.0E. 5 times or more9.0E. 5 times or more8.08.0NaN
3232City_2(main devlopment center)Female2.02.08.0D. 3 to 4 times9.0C. Twice9.0D. 3 to 4 times10.010.0NaN
3333City_1(HQ)Male3.02.09.0D. 3 to 4 times9.0E. 5 times or more9.0B. OnceNaN9.0NaN
3434City_1(HQ)Male4.03.09.0D. 3 to 4 times9.0A. Zero timesNaNE. 5 times or more10.0NaN9.0
3535City_1(HQ)Female2.02.08.0D. 3 to 4 times9.0E. 5 times or more9.0E. 5 times or more9.09.06.0
3636City_2(main devlopment center)Female4.04.09.0C. Twice9.0E. 5 times or more9.0E. 5 times or more10.010.010.0
3737City_2(main devlopment center)Female3.03.010.0E. 5 times or more8.0D. 3 to 4 times8.0E. 5 times or more9.08.0NaN
3838City_2(main devlopment center)Male4.03.06.0C. Twice8.0C. Twice6.0D. 3 to 4 times9.09.0NaN
3939City_1(HQ)Female3.02.07.0C. Twice8.0C. Twice10.0D. 3 to 4 times8.07.0NaN
4040City_2(main devlopment center)Female3.02.08.0D. 3 to 4 times9.0D. 3 to 4 times7.0D. 3 to 4 times9.09.08.0
4141City_1(HQ)Male3.01.09.0D. 3 to 4 times9.0D. 3 to 4 times8.0C. Twice9.010.0NaN
4242City_2(main devlopment center)Female2.01.07.0E. 5 times or more8.0E. 5 times or more8.0D. 3 to 4 times10.010.0NaN
4343City_2(main devlopment center)Female3.03.08.0D. 3 to 4 times8.0D. 3 to 4 times7.0E. 5 times or more9.09.0NaN
4444City_2(main devlopment center)Female4.03.08.0D. 3 to 4 times8.0A. Zero timesNaNB. Once8.08.0NaN
4545City_1(HQ)Female2.01.08.0D. 3 to 4 times8.0A. Zero timesNaND. 3 to 4 times5.08.0NaN
4646City_1(HQ)Female3.02.06.0C. Twice8.0D. 3 to 4 times10.0E. 5 times or more7.0NaNNaN
4747City_2(main devlopment center)Male5.04.08.0B. Once7.0D. 3 to 4 times8.0E. 5 times or more9.09.08.0
4848City_1(HQ)Male3.03.07.0C. Twice7.0C. Twice7.0E. 5 times or more9.09.0NaN
4949City_1(HQ)Male3.02.06.0C. Twice5.0C. Twice6.0A. Zero TimesNaN7.0NaN
5050City_1(HQ)Male1.01.06.0C. Twice5.0A. Zero timesNaNA. Zero TimesNaN9.0NaN
\n", + "
" + ], + "text/plain": [ + " ID location gender age_category \\\n", + "0 1 City_1(HQ) Female 3.0 \n", + "1 2 City_2(main devlopment center) Male 4.0 \n", + "2 3 City_3(lastest expantion) Female 2.0 \n", + "3 4 City_3(lastest expantion) Female 2.0 \n", + "4 5 City_3(lastest expantion) Female 4.0 \n", + "5 6 City_2(main devlopment center) Male 4.0 \n", + "7 7 City_3(lastest expantion) Female 2.0 \n", + "8 8 City_2(main devlopment center) Female 4.0 \n", + "9 9 City_1(HQ) Male 3.0 \n", + "10 10 City_1(HQ) Female 5.0 \n", + "11 11 City_3(lastest expantion) Male 4.0 \n", + "12 12 City_1(HQ) Male 4.0 \n", + "13 13 City_1(HQ) Female 3.0 \n", + "14 14 City_2(main devlopment center) Female 2.0 \n", + "15 15 City_2(main devlopment center) Female 5.0 \n", + "16 16 City_1(HQ) Male 2.0 \n", + "17 17 City_1(HQ) Male 4.0 \n", + "18 18 City_3(lastest expantion) Female 2.0 \n", + "19 19 City_3(lastest expantion) Female 3.0 \n", + "20 20 City_2(main devlopment center) Male 4.0 \n", + "21 21 City_2(main devlopment center) Male 3.0 \n", + "22 22 City_2(main devlopment center) Male 3.0 \n", + "23 23 City_1(HQ) Female 3.0 \n", + "24 24 City_2(main devlopment center) Male 5.0 \n", + "25 25 City_1(HQ) Male 4.0 \n", + "26 26 City_1(HQ) Female 2.0 \n", + "27 27 City_2(main devlopment center) Female 2.0 \n", + "28 28 City_2(main devlopment center) Male 3.0 \n", + "29 29 City_1(HQ) Male 3.0 \n", + "30 30 City_1(HQ) Male 5.0 \n", + "31 31 City_2(main devlopment center) Female 4.0 \n", + "32 32 City_2(main devlopment center) Female 2.0 \n", + "33 33 City_1(HQ) Male 3.0 \n", + "34 34 City_1(HQ) Male 4.0 \n", + "35 35 City_1(HQ) Female 2.0 \n", + "36 36 City_2(main devlopment center) Female 4.0 \n", + "37 37 City_2(main devlopment center) Female 3.0 \n", + "38 38 City_2(main devlopment center) Male 4.0 \n", + "39 39 City_1(HQ) Female 3.0 \n", + "40 40 City_2(main devlopment center) Female 3.0 \n", + "41 41 City_1(HQ) Male 3.0 \n", + "42 42 City_2(main devlopment center) Female 2.0 \n", + "43 43 City_2(main devlopment center) Female 3.0 \n", + "44 44 City_2(main devlopment center) Female 4.0 \n", + "45 45 City_1(HQ) Female 2.0 \n", + "46 46 City_1(HQ) Female 3.0 \n", + "47 47 City_2(main devlopment center) Male 5.0 \n", + "48 48 City_1(HQ) Male 3.0 \n", + "49 49 City_1(HQ) Male 3.0 \n", + "50 50 City_1(HQ) Male 1.0 \n", + "\n", + " seniority_category satisfaction_score #contact_acct rating_acct \\\n", + "0 3.0 8.0 C. Twice 3.0 \n", + "1 3.0 10.0 A. Zero times NaN \n", + "2 3.0 8.0 C. Twice 8.0 \n", + "3 1.0 7.0 E. 5 times or more 9.0 \n", + "4 4.0 5.0 D. 3 to 4 times 9.0 \n", + "5 3.0 8.0 E. 5 times or more 4.0 \n", + "7 3.0 10.0 E. 5 times or more 8.0 \n", + "8 2.0 9.0 D. 3 to 4 times 9.0 \n", + "9 1.0 8.0 D. 3 to 4 times 8.0 \n", + "10 5.0 9.0 D. 3 to 4 times 9.0 \n", + "11 4.0 8.0 D. 3 to 4 times 10.0 \n", + "12 4.0 9.0 A. Zero times NaN \n", + "13 4.0 9.0 D. 3 to 4 times 10.0 \n", + "14 3.0 9.0 E. 5 times or more 7.0 \n", + "15 4.0 7.0 C. Twice 8.0 \n", + "16 1.0 8.0 D. 3 to 4 times NaN \n", + "17 4.0 7.0 C. Twice NaN \n", + "18 3.0 8.0 E. 5 times or more 9.0 \n", + "19 2.0 8.0 D. 3 to 4 times 9.0 \n", + "20 1.0 8.0 B. Once 9.0 \n", + "21 3.0 9.0 E. 5 times or more 8.0 \n", + "22 2.0 7.0 D. 3 to 4 times 8.0 \n", + "23 3.0 8.0 C. Twice 8.0 \n", + "24 5.0 6.0 D. 3 to 4 times 7.0 \n", + "25 4.0 3.0 B. Once 5.0 \n", + "26 3.0 9.0 C. Twice 10.0 \n", + "27 1.0 9.0 A. Zero times NaN \n", + "28 3.0 6.0 A. Zero times NaN \n", + "29 2.0 8.0 A. Zero times NaN \n", + "30 4.0 8.0 E. 5 times or more 9.0 \n", + "31 3.0 8.0 E. 5 times or more 9.0 \n", + "32 2.0 8.0 D. 3 to 4 times 9.0 \n", + "33 2.0 9.0 D. 3 to 4 times 9.0 \n", + "34 3.0 9.0 D. 3 to 4 times 9.0 \n", + "35 2.0 8.0 D. 3 to 4 times 9.0 \n", + "36 4.0 9.0 C. Twice 9.0 \n", + "37 3.0 10.0 E. 5 times or more 8.0 \n", + "38 3.0 6.0 C. Twice 8.0 \n", + "39 2.0 7.0 C. Twice 8.0 \n", + "40 2.0 8.0 D. 3 to 4 times 9.0 \n", + "41 1.0 9.0 D. 3 to 4 times 9.0 \n", + "42 1.0 7.0 E. 5 times or more 8.0 \n", + "43 3.0 8.0 D. 3 to 4 times 8.0 \n", + "44 3.0 8.0 D. 3 to 4 times 8.0 \n", + "45 1.0 8.0 D. 3 to 4 times 8.0 \n", + "46 2.0 6.0 C. Twice 8.0 \n", + "47 4.0 8.0 B. Once 7.0 \n", + "48 3.0 7.0 C. Twice 7.0 \n", + "49 2.0 6.0 C. Twice 5.0 \n", + "50 1.0 6.0 C. Twice 5.0 \n", + "\n", + " #contact_HR rating_HR #contact_OM rating_OM \\\n", + "0 D. 3 to 4 times 6.0 B. Once 1.0 \n", + "1 C. Twice 7.0 E. 5 times or more 10.0 \n", + "2 A. Zero times NaN E. 5 times or more 10.0 \n", + "3 C. Twice 7.0 B. Once 9.0 \n", + "4 D. 3 to 4 times 8.0 C. Twice 8.0 \n", + "5 E. 5 times or more 9.0 E. 5 times or more 10.0 \n", + "7 E. 5 times or more 9.0 E. 5 times or more 10.0 \n", + "8 D. 3 to 4 times 9.0 D. 3 to 4 times 9.0 \n", + "9 D. 3 to 4 times 10.0 B. Once 9.0 \n", + "10 B. Once 9.0 E. 5 times or more 10.0 \n", + "11 A. Zero times NaN E. 5 times or more 10.0 \n", + "12 C. Twice 9.0 D. 3 to 4 times 10.0 \n", + "13 D. 3 to 4 times 10.0 E. 5 times or more 9.0 \n", + "14 A. Zero times NaN E. 5 times or more 10.0 \n", + "15 D. 3 to 4 times 9.0 E. 5 times or more 9.0 \n", + "16 C. Twice 8.0 A. Zero Times NaN \n", + "17 A. Zero times NaN E. 5 times or more 10.0 \n", + "18 E. 5 times or more 10.0 E. 5 times or more 10.0 \n", + "19 B. Once 9.0 D. 3 to 4 times 10.0 \n", + "20 A. Zero times NaN B. Once 9.0 \n", + "21 D. 3 to 4 times 9.0 C. Twice 9.0 \n", + "22 D. 3 to 4 times 9.0 C. Twice 7.0 \n", + "23 C. Twice 8.0 B. Once NaN \n", + "24 E. 5 times or more 9.0 D. 3 to 4 times 9.0 \n", + "25 E. 5 times or more 3.0 E. 5 times or more 6.0 \n", + "26 E. 5 times or more 10.0 E. 5 times or more 10.0 \n", + "27 D. 3 to 4 times 9.0 A. Zero Times NaN \n", + "28 E. 5 times or more 8.0 A. Zero Times NaN \n", + "29 D. 3 to 4 times 9.0 D. 3 to 4 times 9.0 \n", + "30 D. 3 to 4 times 5.0 E. 5 times or more 9.0 \n", + "31 E. 5 times or more 9.0 E. 5 times or more 8.0 \n", + "32 C. Twice 9.0 D. 3 to 4 times 10.0 \n", + "33 E. 5 times or more 9.0 B. Once NaN \n", + "34 A. Zero times NaN E. 5 times or more 10.0 \n", + "35 E. 5 times or more 9.0 E. 5 times or more 9.0 \n", + "36 E. 5 times or more 9.0 E. 5 times or more 10.0 \n", + "37 D. 3 to 4 times 8.0 E. 5 times or more 9.0 \n", + "38 C. Twice 6.0 D. 3 to 4 times 9.0 \n", + "39 C. Twice 10.0 D. 3 to 4 times 8.0 \n", + "40 D. 3 to 4 times 7.0 D. 3 to 4 times 9.0 \n", + "41 D. 3 to 4 times 8.0 C. Twice 9.0 \n", + "42 E. 5 times or more 8.0 D. 3 to 4 times 10.0 \n", + "43 D. 3 to 4 times 7.0 E. 5 times or more 9.0 \n", + "44 A. Zero times NaN B. Once 8.0 \n", + "45 A. Zero times NaN D. 3 to 4 times 5.0 \n", + "46 D. 3 to 4 times 10.0 E. 5 times or more 7.0 \n", + "47 D. 3 to 4 times 8.0 E. 5 times or more 9.0 \n", + "48 C. Twice 7.0 E. 5 times or more 9.0 \n", + "49 C. Twice 6.0 A. Zero Times NaN \n", + "50 A. Zero times NaN A. Zero Times NaN \n", + "\n", + " rating_security rating_D&R \n", + "0 4.0 NaN \n", + "1 9.0 8.0 \n", + "2 8.0 NaN \n", + "3 NaN NaN \n", + "4 9.0 NaN \n", + "5 8.0 NaN \n", + "7 10.0 10.0 \n", + "8 9.0 NaN \n", + "9 8.0 8.0 \n", + "10 10.0 NaN \n", + "11 10.0 NaN \n", + "12 8.0 8.0 \n", + "13 10.0 NaN \n", + "14 10.0 NaN \n", + "15 8.0 NaN \n", + "16 10.0 NaN \n", + "17 9.0 8.0 \n", + "18 8.0 9.0 \n", + "19 10.0 NaN \n", + "20 9.0 NaN \n", + "21 9.0 NaN \n", + "22 8.0 8.0 \n", + "23 6.0 8.0 \n", + "24 9.0 NaN \n", + "25 8.0 4.0 \n", + "26 10.0 1.0 \n", + "27 10.0 NaN \n", + "28 10.0 NaN \n", + "29 9.0 9.0 \n", + "30 9.0 NaN \n", + "31 8.0 NaN \n", + "32 10.0 NaN \n", + "33 9.0 NaN \n", + "34 NaN 9.0 \n", + "35 9.0 6.0 \n", + "36 10.0 10.0 \n", + "37 8.0 NaN \n", + "38 9.0 NaN \n", + "39 7.0 NaN \n", + "40 9.0 8.0 \n", + "41 10.0 NaN \n", + "42 10.0 NaN \n", + "43 9.0 NaN \n", + "44 8.0 NaN \n", + "45 8.0 NaN \n", + "46 NaN NaN \n", + "47 9.0 8.0 \n", + "48 9.0 NaN \n", + "49 7.0 NaN \n", + "50 9.0 NaN " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# add ID column and move it to the front\n", + "df_main = df_main.assign(ID=(range(1, len(df_main) + 1)))\n", + "cols = df_main.columns.tolist()\n", + "cols = cols[-1:] + cols[:-1]\n", + "df_main = df_main[cols]\n", + "df_main.head(50)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 5. Rearrange bin size for Age, number of contacts in different departments\n", + "- Some of the bins for those columns contain only a few values. Rearrange the bin size to improve data visualization. " + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "df_main[\"age_category\"] = df_main[\"age_category\"].replace({2: 1, \n", + " 3: 2,\n", + " 4: 3, \n", + " 5: 4})" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "approched_dep_list = [\"#contact_acct\", '#contact_HR', '#contact_OM']\n", + "for lst in approched_dep_list:\n", + " df_main[lst] = df_main[lst].replace({\"B. Once\" : \"1 to 2 times\",\n", + " \"C. Twice\" : \"1 to 2 times\",\n", + " \"D. 3 to 4 times\" : \"3 to 4 times\",\n", + " \"E. 5 times or more\" : \"5 times or more\",\n", + " \"A. Zero times\" : \"0 times\",\n", + " \"A. Zero Times\" : \"0 times\"})" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 6. Convert location values to provide meaning informations" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "df_main['location'] = df_main['location'].replace({\"City_1(HQ)\": \"Boston\",\n", + " \"City_2(main devlopment center)\": \"Amsterdam\",\n", + " \"City_3(lastest expantion)\": \"New Delhi \"\n", + " })" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 7. Missing values\n", + "- Missing values are from those employees who had never used the services. They will not affect on the calculations on mean values which we will use later on for plotting. We will keep it for now. " + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "ID 0.000000\n", + "location 0.000000\n", + "gender 0.000000\n", + "age_category 0.000000\n", + "seniority_category 0.000000\n", + "satisfaction_score 0.011050\n", + "#contact_acct 0.000000\n", + "rating_acct 0.055249\n", + "#contact_HR 0.000000\n", + "rating_HR 0.077348\n", + "#contact_OM 0.000000\n", + "rating_OM 0.071823\n", + "rating_security 0.049724\n", + "rating_D&R 0.646409\n", + "dtype: float64" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_main.isnull().sum()/ len(df_main)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Export dataframes" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "# df_main\n", + "df_main.to_csv(\"employee_satisfaction.csv\", index=False)\n", + "\n", + "# contact_reasons *will be cleaned and plotted in another notebook\n", + "contact_reasons.to_csv('contact_reasons.csv',index=False)\n", + "\n", + "# effects_of_subquestions_on_ratings *will be cleaned and plotted in another notebook\n", + "effects_of_subquestions_on_ratings.to_csv('effects_of_subquestions_on_ratings.csv',index=False)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/Data Descriptions.txt b/module-2_projects/visualizing-real-world-data-project/your-code/Data Descriptions.txt new file mode 100644 index 0000000..6f61056 --- /dev/null +++ b/module-2_projects/visualizing-real-world-data-project/your-code/Data Descriptions.txt @@ -0,0 +1,92 @@ +Data_description + +employee_satisfaction.csv + +ID - Dummy ID assigned to each survey result for each employee + +location - Cities where the three branches of the consulting company are located + +gender - Gender of the employee + +age_category - Age groups of the employee + 1 : 30 years old or below + 2 : 31 to 40 years old + 3 : 41 to 50 years old + 4 : 50 years old or above + +seniority_category - Seniority groups of the employee + 1 : up to 2 years + 2 : 2 to 5 years + 3 : 5 to 10 years + 4 : 10 to 20 years + 5 : 20 years or more + +satisfaction_score - General satisfaction rate for an employee + +#contact_acct - Number of times for an employee to approach Accounting Department last year + +rating_acct - Rating for the last service provided by Accounting Department (0 to 10) + +#contact_HR - Number of times for an employee to approach HR Department last year + +rating_HR - Rating for the last service provided by HR Department (0 to 10) + +#contact_OM - Number of times for an employee to approach Office Management Department last year + +rating_security - Overall rating for Security Department + +rating_D&R - Overall rating for Data & Records Departmentcontact_reasons.csv + +Reason - Reason for an employee to visit each department + +Accounting: + 1.0 : Salary + 2.0 : Expenditure of Per diem + 3.0 : Reimbursement for travel expense + 4.0 : Reimbursement for company vehicle + 5.0 : Pension + 6.0 : Suppliers + 7.0 : Other + +HR: + 1.0 : Onboarding + 2.0 : Promotion and Salary raise + 3.0 : Attendance reports + 4.0 : Sick days and vacation days + 5.0 : Personal circumstances + 6.0 : Calculate of seniority + 7.0 : Retirement and pension funds + 8.0 : Open position + 9.0 : Other + +Office Management: + 1.0 : Office equipment + 2.0 : Mail + 3.0 : Catering + 4.0 : Company vehicle + 5.0 : Hardware + 6.0 : Insurance + 7.0 : Office Maintenance + 8.0 : Other + +Percentage of contacts per reason - Percentage of a specific reason for an employee to approach a given department. effects_of_subquestions_on_ratings .csv + +accounting_evaluation_breack_down_Q1 - Satisfaction with referrals regarding payrolls. +accounting_evaluation_breack_down_Q2 - Satisfaction with referrals regarding expenditure. +accounting_evaluation_breack_down_Q3 - Satisfaction with referrals regarding travel expenses. +accounting_evaluation_breack_down_Q4 - Satisfaction with referrals regarding overtime. +accounting_evaluation_breack_down_Q5 - Satisfaction with referrals regarding vehicle expenses. +accounting_evaluation_breack_down_Q6 - Professionalism of the accounting department staff. +accounting_evaluation_breack_down_Q7 - Availability of the accounting department staff. +accounting_evaluation_breack_down_Q8 - Courtesy of the accounting department staff. + +HR_evaluation_breack_down_Q1 - Onboarding process +HR_evaluation_breack_down_Q2 - Raise and promotion process +HR_evaluation_breack_down_Q3 - Attendance reports +HR_evaluation_breack_down_Q4 - Personal circumstances, sick days and vacations +HR_evaluation_breack_down_Q5 - Off-boarding process +HR_evaluation_breack_down_Q6 - Relocation and reassignment process +HR_evaluation_breack_down_Q7 - Professionalism of the HR department staff. +HR_evaluation_breack_down_Q8 - Availability of the HR department staff. +HR_evaluation_breack_down_Q9 - Courtesy of the HR department staff. +HR_evaluation_breack_down_Q10 - To what degree are you comfortable talking with HR about your problems. diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/Plotting.ipynb b/module-2_projects/visualizing-real-world-data-project/your-code/Plotting.ipynb new file mode 100644 index 0000000..5dfbff4 --- /dev/null +++ b/module-2_projects/visualizing-real-world-data-project/your-code/Plotting.ipynb @@ -0,0 +1,11945 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Plotting (Data Visualization)\n", + "_To answer our initial questions and prove hypothesis, we visualize our data to have a closer look in different aspects._\n", + "\n", + "**Questions:**\n", + "1. How is the overall satisfaction of the employees?\n", + "\n", + "2. How is the overall satisfaction of the employees affected by the service level of core departments?\n", + "\n", + "3. Has the company location an impact on employee satisfaction?\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDlocationgenderage_categoryseniority_categorysatisfaction_score#contact_acctrating_acct#contact_HRrating_HR#contact_OMrating_OMrating_securityrating_D&R
01BostonFemale2.03.08.01 to 2 times3.03 to 4 times6.01 to 2 times1.04.0NaN
12AmsterdamMale3.03.010.00 timesNaN1 to 2 times7.05 times or more10.09.08.0
23New DelhiFemale1.03.08.01 to 2 times8.00 timesNaN5 times or more10.08.0NaN
34New DelhiFemale1.01.07.05 times or more9.01 to 2 times7.01 to 2 times9.0NaNNaN
45New DelhiFemale3.04.05.03 to 4 times9.03 to 4 times8.01 to 2 times8.09.0NaN
\n", + "
" + ], + "text/plain": [ + " ID location gender age_category seniority_category \\\n", + "0 1 Boston Female 2.0 3.0 \n", + "1 2 Amsterdam Male 3.0 3.0 \n", + "2 3 New Delhi Female 1.0 3.0 \n", + "3 4 New Delhi Female 1.0 1.0 \n", + "4 5 New Delhi Female 3.0 4.0 \n", + "\n", + " satisfaction_score #contact_acct rating_acct #contact_HR rating_HR \\\n", + "0 8.0 1 to 2 times 3.0 3 to 4 times 6.0 \n", + "1 10.0 0 times NaN 1 to 2 times 7.0 \n", + "2 8.0 1 to 2 times 8.0 0 times NaN \n", + "3 7.0 5 times or more 9.0 1 to 2 times 7.0 \n", + "4 5.0 3 to 4 times 9.0 3 to 4 times 8.0 \n", + "\n", + " #contact_OM rating_OM rating_security rating_D&R \n", + "0 1 to 2 times 1.0 4.0 NaN \n", + "1 5 times or more 10.0 9.0 8.0 \n", + "2 5 times or more 10.0 8.0 NaN \n", + "3 1 to 2 times 9.0 NaN NaN \n", + "4 1 to 2 times 8.0 9.0 NaN " + ] + }, + "execution_count": 1, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from scipy import stats\n", + "import statsmodels.api as sm\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "from plotly import graph_objects as go\n", + "import plotly.express as px\n", + "%matplotlib inline\n", + "\n", + "sns.set_palette('PiYG')\n", + "\n", + "df = pd.read_csv('employee_satisfaction.csv')\n", + "df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Q1: How is the overall satisfaction of the employees?" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Let's check out the distribution of satisfaction score among employees\n", + "df['satisfaction_score'] = df['satisfaction_score'].fillna(df['satisfaction_score'].mean())\n", + "\n", + "fig, ax = plt.subplots(figsize=(5,6))\n", + "sns.distplot(df['satisfaction_score'],fit=stats.norm); \n", + "plt.xticks(range(0,11));" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 181.000000\n", + "mean 7.547486\n", + "std 1.683822\n", + "min 3.000000\n", + "25% 7.000000\n", + "50% 8.000000\n", + "75% 9.000000\n", + "max 10.000000\n", + "Name: satisfaction_score, dtype: float64" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df['satisfaction_score'].describe()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Oberservation:\n", + "- The distribution of the satisfaction is right skewed with a mean of 7.547. Half of the employee rated 8 or above on their satisfaction towards internal services. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "\n", + "### Q2. : How is the overall satisfaction of the employees affected by the service level of core departments? \n", + "\n", + "1. By checking looking the correlations and correlation cooefficient, we will find out **whether** and **how much** the overall satisfaction and individual satisfaction for each deparment are affecting each other. \n", + "\n", + "2. By running linear regression analysis, we try to find out **how** these two factors affect each other. " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##### 1. Heatmap " + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# Add columns and convert catogorical data to numeric values for plotting \n", + "# create copies of '#contact' columns and fill them with dummy values to be able to include them in correlation:\n", + "df['#contact_acct_num'] = df['#contact_acct'].copy()\n", + "df['#contact_HR_num'] = df['#contact_HR'].copy()\n", + "df['#contact_OM_num'] = df['#contact_OM'].copy()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "df = df.replace({\"#contact_acct_num\" : {\"0 times\" : 1, \"1 to 2 times\" : 2, \"3 to 4 times\" : 3, \"5 times or more\" : 4},\n", + " \"#contact_HR_num\" : {\"0 times\" : 1, \"1 to 2 times\" : 2, \"3 to 4 times\" : 3, \"5 times or more\" : 4},\n", + " \"#contact_OM_num\" : {\"0 times\" : 1, \"1 to 2 times\" : 2, \"3 to 4 times\" : 3, \"5 times or more\" : 4}})" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDlocationgenderage_categoryseniority_categorysatisfaction_score#contact_acctrating_acct#contact_HRrating_HR#contact_OMrating_OMrating_securityrating_D&R#contact_acct_num#contact_HR_num#contact_OM_num
01BostonFemale2.03.08.01 to 2 times3.03 to 4 times6.01 to 2 times1.04.0NaN232
12AmsterdamMale3.03.010.00 timesNaN1 to 2 times7.05 times or more10.09.08.0124
23New DelhiFemale1.03.08.01 to 2 times8.00 timesNaN5 times or more10.08.0NaN214
34New DelhiFemale1.01.07.05 times or more9.01 to 2 times7.01 to 2 times9.0NaNNaN422
45New DelhiFemale3.04.05.03 to 4 times9.03 to 4 times8.01 to 2 times8.09.0NaN332
\n", + "
" + ], + "text/plain": [ + " ID location gender age_category seniority_category \\\n", + "0 1 Boston Female 2.0 3.0 \n", + "1 2 Amsterdam Male 3.0 3.0 \n", + "2 3 New Delhi Female 1.0 3.0 \n", + "3 4 New Delhi Female 1.0 1.0 \n", + "4 5 New Delhi Female 3.0 4.0 \n", + "\n", + " satisfaction_score #contact_acct rating_acct #contact_HR rating_HR \\\n", + "0 8.0 1 to 2 times 3.0 3 to 4 times 6.0 \n", + "1 10.0 0 times NaN 1 to 2 times 7.0 \n", + "2 8.0 1 to 2 times 8.0 0 times NaN \n", + "3 7.0 5 times or more 9.0 1 to 2 times 7.0 \n", + "4 5.0 3 to 4 times 9.0 3 to 4 times 8.0 \n", + "\n", + " #contact_OM rating_OM rating_security rating_D&R #contact_acct_num \\\n", + "0 1 to 2 times 1.0 4.0 NaN 2 \n", + "1 5 times or more 10.0 9.0 8.0 1 \n", + "2 5 times or more 10.0 8.0 NaN 2 \n", + "3 1 to 2 times 9.0 NaN NaN 4 \n", + "4 1 to 2 times 8.0 9.0 NaN 3 \n", + "\n", + " #contact_HR_num #contact_OM_num \n", + "0 3 2 \n", + "1 2 4 \n", + "2 1 4 \n", + "3 2 2 \n", + "4 3 2 " + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Plotting heat map to find out correlations across all fields\n", + "df_corr = df.corr()\n", + "f, ax = plt.subplots(figsize=(12, 9))\n", + "sns.heatmap(df_corr, vmax=1, cmap=\"PiYG\");" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Oberservations:**\n", + "1. Seniority and age are positively highly correlated \n", + "2. Satisfaction_score are more correltated with rating for Accounting and HR than rating for office management. " + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "satisfaction_score 1.000000\n", + "rating_HR 0.581050\n", + "rating_acct 0.535231\n", + "rating_OM 0.353352\n", + "rating_D&R 0.283559\n", + "rating_security 0.267687\n", + "seniority_category 0.052012\n", + "age_category -0.017252\n", + "#contact_acct_num -0.116864\n", + "#contact_OM_num -0.144111\n", + "ID -0.167401\n", + "#contact_HR_num -0.257689\n", + "dtype: float64" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Look into actual correlation coefficient, the overall correlations are indeed not so strong\n", + "df_copy = df.copy()\n", + "df_corr_sat = df_copy.corrwith(df['satisfaction_score'])\n", + "df_corr_sat.sort_values(ascending=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### 2. OLS Regression Model " + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/plain": [ + "ID 0\n", + "location 0\n", + "gender 0\n", + "age_category 0\n", + "seniority_category 0\n", + "satisfaction_score 0\n", + "#contact_acct 0\n", + "rating_acct 10\n", + "#contact_HR 0\n", + "rating_HR 14\n", + "#contact_OM 0\n", + "rating_OM 13\n", + "rating_security 9\n", + "rating_D&R 117\n", + "#contact_acct_num 0\n", + "#contact_HR_num 0\n", + "#contact_OM_num 0\n", + "dtype: int64" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# To start with, check and handle missing value \n", + "df_copy.isnull().sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
IDlocationgenderage_categoryseniority_categorysatisfaction_score#contact_acctrating_acct#contact_HRrating_HR#contact_OMrating_OMrating_securityrating_D&R#contact_acct_num#contact_HR_num#contact_OM_num
67New DelhiFemale1.03.010.05 times or more8.05 times or more9.05 times or more10.010.010.0444
89BostonMale2.01.08.03 to 4 times8.03 to 4 times10.01 to 2 times9.08.08.0332
1718New DelhiFemale1.03.08.05 times or more9.05 times or more10.05 times or more10.08.09.0444
2122AmsterdamMale2.02.07.03 to 4 times8.03 to 4 times9.01 to 2 times7.08.08.0332
2425BostonMale3.04.03.01 to 2 times5.05 times or more3.05 times or more6.08.04.0244
2526BostonFemale1.03.09.01 to 2 times10.05 times or more10.05 times or more10.010.01.0244
3435BostonFemale1.02.08.03 to 4 times9.05 times or more9.05 times or more9.09.06.0344
3536AmsterdamFemale3.04.09.01 to 2 times9.05 times or more9.05 times or more10.010.010.0244
3940AmsterdamFemale2.02.08.03 to 4 times9.03 to 4 times7.03 to 4 times9.09.08.0333
4647AmsterdamMale4.04.08.01 to 2 times7.03 to 4 times8.05 times or more9.09.08.0234
5455BostonMale1.01.010.03 to 4 times10.05 times or more10.05 times or more10.010.09.0344
6061BostonMale4.03.08.01 to 2 times8.01 to 2 times8.05 times or more9.09.08.0224
6263BostonFemale1.03.07.05 times or more6.05 times or more8.05 times or more8.09.08.0444
6364BostonFemale3.04.08.05 times or more6.03 to 4 times8.05 times or more10.09.01.0434
7071BostonMale3.02.06.05 times or more4.03 to 4 times8.05 times or more10.010.05.0434
7172BostonMale1.01.010.01 to 2 times9.01 to 2 times9.01 to 2 times10.08.03.0222
7475AmsterdamFemale2.04.09.05 times or more9.05 times or more10.05 times or more10.010.010.0444
7980AmsterdamMale2.03.08.03 to 4 times9.03 to 4 times8.03 to 4 times9.09.09.0333
8081BostonMale2.03.08.03 to 4 times9.05 times or more8.05 times or more8.09.09.0344
8182AmsterdamFemale2.02.07.03 to 4 times9.05 times or more10.03 to 4 times10.010.010.0343
8283AmsterdamMale1.03.09.03 to 4 times9.01 to 2 times9.03 to 4 times8.09.09.0323
8384AmsterdamFemale3.04.08.01 to 2 times9.01 to 2 times8.05 times or more10.08.010.0224
8990BostonMale2.03.06.05 times or more5.05 times or more6.05 times or more10.08.06.0444
9697BostonMale2.02.05.03 to 4 times7.05 times or more6.05 times or more6.05.09.0344
9798BostonMale2.02.09.03 to 4 times9.03 to 4 times9.01 to 2 times9.09.08.0332
99100BostonFemale2.01.08.05 times or more10.03 to 4 times7.01 to 2 times10.010.08.0432
101102AmsterdamFemale3.05.09.03 to 4 times9.03 to 4 times9.03 to 4 times7.09.09.0333
104105BostonFemale3.04.010.01 to 2 times9.03 to 4 times10.03 to 4 times8.09.07.0233
108109AmsterdamFemale2.03.08.03 to 4 times7.01 to 2 times9.01 to 2 times10.09.010.0322
113114AmsterdamFemale3.04.09.05 times or more8.01 to 2 times8.05 times or more9.09.09.0424
119120AmsterdamFemale2.04.08.01 to 2 times8.01 to 2 times9.01 to 2 times5.08.08.0222
120121New DelhiMale3.02.07.05 times or more7.01 to 2 times10.03 to 4 times10.010.010.0423
121122New DelhiFemale1.03.010.03 to 4 times7.03 to 4 times7.05 times or more10.08.010.0334
123124BostonFemale2.03.09.05 times or more7.05 times or more10.05 times or more10.09.07.0444
125126BostonFemale2.03.05.03 to 4 times5.05 times or more7.05 times or more8.07.01.0344
126127AmsterdamFemale2.02.07.03 to 4 times8.03 to 4 times9.05 times or more9.07.08.0334
128129BostonMale2.02.03.05 times or more7.05 times or more5.05 times or more9.06.07.0444
130131BostonMale3.02.03.03 to 4 times7.05 times or more1.05 times or more3.07.07.0344
132133BostonFemale1.01.07.05 times or more8.05 times or more8.05 times or more8.07.08.0444
133134AmsterdamMale4.05.08.03 to 4 times8.03 to 4 times9.05 times or more9.09.09.0334
134135BostonMale2.03.07.05 times or more7.01 to 2 times8.01 to 2 times8.09.07.0422
138139BostonFemale2.04.06.01 to 2 times3.05 times or more7.05 times or more10.08.02.0244
145146BostonFemale2.02.09.03 to 4 times5.03 to 4 times7.05 times or more10.010.07.0334
150151BostonFemale2.03.07.03 to 4 times8.05 times or more8.05 times or more10.08.010.0344
151152BostonFemale2.04.07.01 to 2 times4.00 times8.05 times or more7.07.08.0214
154155BostonMale3.03.05.05 times or more4.03 to 4 times8.05 times or more8.07.08.0434
160161BostonMale2.03.07.05 times or more6.05 times or more6.05 times or more9.08.09.0444
165166BostonMale4.04.08.05 times or more10.05 times or more9.05 times or more10.010.010.0444
167168BostonMale4.03.010.03 to 4 times6.01 to 2 times8.03 to 4 times9.010.09.0323
172173BostonFemale1.01.010.05 times or more9.05 times or more10.03 to 4 times10.010.010.0443
173174BostonFemale3.03.07.05 times or more8.05 times or more8.05 times or more8.010.04.0444
174175BostonFemale1.01.06.03 to 4 times8.03 to 4 times8.03 to 4 times9.08.08.0333
177178AmsterdamMale2.03.010.03 to 4 times10.05 times or more8.05 times or more10.010.08.0344
180181BostonFemale2.03.06.01 to 2 times6.01 to 2 times8.03 to 4 times7.06.06.0223
\n", + "
" + ], + "text/plain": [ + " ID location gender age_category seniority_category \\\n", + "6 7 New Delhi Female 1.0 3.0 \n", + "8 9 Boston Male 2.0 1.0 \n", + "17 18 New Delhi Female 1.0 3.0 \n", + "21 22 Amsterdam Male 2.0 2.0 \n", + "24 25 Boston Male 3.0 4.0 \n", + "25 26 Boston Female 1.0 3.0 \n", + "34 35 Boston Female 1.0 2.0 \n", + "35 36 Amsterdam Female 3.0 4.0 \n", + "39 40 Amsterdam Female 2.0 2.0 \n", + "46 47 Amsterdam Male 4.0 4.0 \n", + "54 55 Boston Male 1.0 1.0 \n", + "60 61 Boston Male 4.0 3.0 \n", + "62 63 Boston Female 1.0 3.0 \n", + "63 64 Boston Female 3.0 4.0 \n", + "70 71 Boston Male 3.0 2.0 \n", + "71 72 Boston Male 1.0 1.0 \n", + "74 75 Amsterdam Female 2.0 4.0 \n", + "79 80 Amsterdam Male 2.0 3.0 \n", + "80 81 Boston Male 2.0 3.0 \n", + "81 82 Amsterdam Female 2.0 2.0 \n", + "82 83 Amsterdam Male 1.0 3.0 \n", + "83 84 Amsterdam Female 3.0 4.0 \n", + "89 90 Boston Male 2.0 3.0 \n", + "96 97 Boston Male 2.0 2.0 \n", + "97 98 Boston Male 2.0 2.0 \n", + "99 100 Boston Female 2.0 1.0 \n", + "101 102 Amsterdam Female 3.0 5.0 \n", + "104 105 Boston Female 3.0 4.0 \n", + "108 109 Amsterdam Female 2.0 3.0 \n", + "113 114 Amsterdam Female 3.0 4.0 \n", + "119 120 Amsterdam Female 2.0 4.0 \n", + "120 121 New Delhi Male 3.0 2.0 \n", + "121 122 New Delhi Female 1.0 3.0 \n", + "123 124 Boston Female 2.0 3.0 \n", + "125 126 Boston Female 2.0 3.0 \n", + "126 127 Amsterdam Female 2.0 2.0 \n", + "128 129 Boston Male 2.0 2.0 \n", + "130 131 Boston Male 3.0 2.0 \n", + "132 133 Boston Female 1.0 1.0 \n", + "133 134 Amsterdam Male 4.0 5.0 \n", + "134 135 Boston Male 2.0 3.0 \n", + "138 139 Boston Female 2.0 4.0 \n", + "145 146 Boston Female 2.0 2.0 \n", + "150 151 Boston Female 2.0 3.0 \n", + "151 152 Boston Female 2.0 4.0 \n", + "154 155 Boston Male 3.0 3.0 \n", + "160 161 Boston Male 2.0 3.0 \n", + "165 166 Boston Male 4.0 4.0 \n", + "167 168 Boston Male 4.0 3.0 \n", + "172 173 Boston Female 1.0 1.0 \n", + "173 174 Boston Female 3.0 3.0 \n", + "174 175 Boston Female 1.0 1.0 \n", + "177 178 Amsterdam Male 2.0 3.0 \n", + "180 181 Boston Female 2.0 3.0 \n", + "\n", + " satisfaction_score #contact_acct rating_acct #contact_HR \\\n", + "6 10.0 5 times or more 8.0 5 times or more \n", + "8 8.0 3 to 4 times 8.0 3 to 4 times \n", + "17 8.0 5 times or more 9.0 5 times or more \n", + "21 7.0 3 to 4 times 8.0 3 to 4 times \n", + "24 3.0 1 to 2 times 5.0 5 times or more \n", + "25 9.0 1 to 2 times 10.0 5 times or more \n", + "34 8.0 3 to 4 times 9.0 5 times or more \n", + "35 9.0 1 to 2 times 9.0 5 times or more \n", + "39 8.0 3 to 4 times 9.0 3 to 4 times \n", + "46 8.0 1 to 2 times 7.0 3 to 4 times \n", + "54 10.0 3 to 4 times 10.0 5 times or more \n", + "60 8.0 1 to 2 times 8.0 1 to 2 times \n", + "62 7.0 5 times or more 6.0 5 times or more \n", + "63 8.0 5 times or more 6.0 3 to 4 times \n", + "70 6.0 5 times or more 4.0 3 to 4 times \n", + "71 10.0 1 to 2 times 9.0 1 to 2 times \n", + "74 9.0 5 times or more 9.0 5 times or more \n", + "79 8.0 3 to 4 times 9.0 3 to 4 times \n", + "80 8.0 3 to 4 times 9.0 5 times or more \n", + "81 7.0 3 to 4 times 9.0 5 times or more \n", + "82 9.0 3 to 4 times 9.0 1 to 2 times \n", + "83 8.0 1 to 2 times 9.0 1 to 2 times \n", + "89 6.0 5 times or more 5.0 5 times or more \n", + "96 5.0 3 to 4 times 7.0 5 times or more \n", + "97 9.0 3 to 4 times 9.0 3 to 4 times \n", + "99 8.0 5 times or more 10.0 3 to 4 times \n", + "101 9.0 3 to 4 times 9.0 3 to 4 times \n", + "104 10.0 1 to 2 times 9.0 3 to 4 times \n", + "108 8.0 3 to 4 times 7.0 1 to 2 times \n", + "113 9.0 5 times or more 8.0 1 to 2 times \n", + "119 8.0 1 to 2 times 8.0 1 to 2 times \n", + "120 7.0 5 times or more 7.0 1 to 2 times \n", + "121 10.0 3 to 4 times 7.0 3 to 4 times \n", + "123 9.0 5 times or more 7.0 5 times or more \n", + "125 5.0 3 to 4 times 5.0 5 times or more \n", + "126 7.0 3 to 4 times 8.0 3 to 4 times \n", + "128 3.0 5 times or more 7.0 5 times or more \n", + "130 3.0 3 to 4 times 7.0 5 times or more \n", + "132 7.0 5 times or more 8.0 5 times or more \n", + "133 8.0 3 to 4 times 8.0 3 to 4 times \n", + "134 7.0 5 times or more 7.0 1 to 2 times \n", + "138 6.0 1 to 2 times 3.0 5 times or more \n", + "145 9.0 3 to 4 times 5.0 3 to 4 times \n", + "150 7.0 3 to 4 times 8.0 5 times or more \n", + "151 7.0 1 to 2 times 4.0 0 times \n", + "154 5.0 5 times or more 4.0 3 to 4 times \n", + "160 7.0 5 times or more 6.0 5 times or more \n", + "165 8.0 5 times or more 10.0 5 times or more \n", + "167 10.0 3 to 4 times 6.0 1 to 2 times \n", + "172 10.0 5 times or more 9.0 5 times or more \n", + "173 7.0 5 times or more 8.0 5 times or more \n", + "174 6.0 3 to 4 times 8.0 3 to 4 times \n", + "177 10.0 3 to 4 times 10.0 5 times or more \n", + "180 6.0 1 to 2 times 6.0 1 to 2 times \n", + "\n", + " rating_HR #contact_OM rating_OM rating_security rating_D&R \\\n", + "6 9.0 5 times or more 10.0 10.0 10.0 \n", + "8 10.0 1 to 2 times 9.0 8.0 8.0 \n", + "17 10.0 5 times or more 10.0 8.0 9.0 \n", + "21 9.0 1 to 2 times 7.0 8.0 8.0 \n", + "24 3.0 5 times or more 6.0 8.0 4.0 \n", + "25 10.0 5 times or more 10.0 10.0 1.0 \n", + "34 9.0 5 times or more 9.0 9.0 6.0 \n", + "35 9.0 5 times or more 10.0 10.0 10.0 \n", + "39 7.0 3 to 4 times 9.0 9.0 8.0 \n", + "46 8.0 5 times or more 9.0 9.0 8.0 \n", + "54 10.0 5 times or more 10.0 10.0 9.0 \n", + "60 8.0 5 times or more 9.0 9.0 8.0 \n", + "62 8.0 5 times or more 8.0 9.0 8.0 \n", + "63 8.0 5 times or more 10.0 9.0 1.0 \n", + "70 8.0 5 times or more 10.0 10.0 5.0 \n", + "71 9.0 1 to 2 times 10.0 8.0 3.0 \n", + "74 10.0 5 times or more 10.0 10.0 10.0 \n", + "79 8.0 3 to 4 times 9.0 9.0 9.0 \n", + "80 8.0 5 times or more 8.0 9.0 9.0 \n", + "81 10.0 3 to 4 times 10.0 10.0 10.0 \n", + "82 9.0 3 to 4 times 8.0 9.0 9.0 \n", + "83 8.0 5 times or more 10.0 8.0 10.0 \n", + "89 6.0 5 times or more 10.0 8.0 6.0 \n", + "96 6.0 5 times or more 6.0 5.0 9.0 \n", + "97 9.0 1 to 2 times 9.0 9.0 8.0 \n", + "99 7.0 1 to 2 times 10.0 10.0 8.0 \n", + "101 9.0 3 to 4 times 7.0 9.0 9.0 \n", + "104 10.0 3 to 4 times 8.0 9.0 7.0 \n", + "108 9.0 1 to 2 times 10.0 9.0 10.0 \n", + "113 8.0 5 times or more 9.0 9.0 9.0 \n", + "119 9.0 1 to 2 times 5.0 8.0 8.0 \n", + "120 10.0 3 to 4 times 10.0 10.0 10.0 \n", + "121 7.0 5 times or more 10.0 8.0 10.0 \n", + "123 10.0 5 times or more 10.0 9.0 7.0 \n", + "125 7.0 5 times or more 8.0 7.0 1.0 \n", + "126 9.0 5 times or more 9.0 7.0 8.0 \n", + "128 5.0 5 times or more 9.0 6.0 7.0 \n", + "130 1.0 5 times or more 3.0 7.0 7.0 \n", + "132 8.0 5 times or more 8.0 7.0 8.0 \n", + "133 9.0 5 times or more 9.0 9.0 9.0 \n", + "134 8.0 1 to 2 times 8.0 9.0 7.0 \n", + "138 7.0 5 times or more 10.0 8.0 2.0 \n", + "145 7.0 5 times or more 10.0 10.0 7.0 \n", + "150 8.0 5 times or more 10.0 8.0 10.0 \n", + "151 8.0 5 times or more 7.0 7.0 8.0 \n", + "154 8.0 5 times or more 8.0 7.0 8.0 \n", + "160 6.0 5 times or more 9.0 8.0 9.0 \n", + "165 9.0 5 times or more 10.0 10.0 10.0 \n", + "167 8.0 3 to 4 times 9.0 10.0 9.0 \n", + "172 10.0 3 to 4 times 10.0 10.0 10.0 \n", + "173 8.0 5 times or more 8.0 10.0 4.0 \n", + "174 8.0 3 to 4 times 9.0 8.0 8.0 \n", + "177 8.0 5 times or more 10.0 10.0 8.0 \n", + "180 8.0 3 to 4 times 7.0 6.0 6.0 \n", + "\n", + " #contact_acct_num #contact_HR_num #contact_OM_num \n", + "6 4 4 4 \n", + "8 3 3 2 \n", + "17 4 4 4 \n", + "21 3 3 2 \n", + "24 2 4 4 \n", + "25 2 4 4 \n", + "34 3 4 4 \n", + "35 2 4 4 \n", + "39 3 3 3 \n", + "46 2 3 4 \n", + "54 3 4 4 \n", + "60 2 2 4 \n", + "62 4 4 4 \n", + "63 4 3 4 \n", + "70 4 3 4 \n", + "71 2 2 2 \n", + "74 4 4 4 \n", + "79 3 3 3 \n", + "80 3 4 4 \n", + "81 3 4 3 \n", + "82 3 2 3 \n", + "83 2 2 4 \n", + "89 4 4 4 \n", + "96 3 4 4 \n", + "97 3 3 2 \n", + "99 4 3 2 \n", + "101 3 3 3 \n", + "104 2 3 3 \n", + "108 3 2 2 \n", + "113 4 2 4 \n", + "119 2 2 2 \n", + "120 4 2 3 \n", + "121 3 3 4 \n", + "123 4 4 4 \n", + "125 3 4 4 \n", + "126 3 3 4 \n", + "128 4 4 4 \n", + "130 3 4 4 \n", + "132 4 4 4 \n", + "133 3 3 4 \n", + "134 4 2 2 \n", + "138 2 4 4 \n", + "145 3 3 4 \n", + "150 3 4 4 \n", + "151 2 1 4 \n", + "154 4 3 4 \n", + "160 4 4 4 \n", + "165 4 4 4 \n", + "167 3 2 3 \n", + "172 4 4 3 \n", + "173 4 4 4 \n", + "174 3 3 3 \n", + "177 3 4 4 \n", + "180 2 2 3 " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Drop rating for data and records since it contains a lot of missing values. \n", + "# Drop also missing values in the rows that represent employees who had never visited major departments \n", + "# in the past year and hence no rating provided\n", + "df_copy.drop(['rating_D&R'], axis=1)\n", + "df_copy = df_copy.dropna()\n", + "df_copy" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Take a closer look at correlation between 'satisfaction_score' and 'rating_HR' as well as 'rating_acct':" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Parameters: \n", + " const -0.482494\n", + "rating_HR 0.458077\n", + "rating_acct 0.293074\n", + "rating_OM 0.277812\n", + "#contact_OM_num -0.077719\n", + "dtype: float64 \n", + "\n", + "R2: 0.5869107276648253\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/ironhack/lib/python3.7/site-packages/numpy/core/fromnumeric.py:2495: FutureWarning:\n", + "\n", + "Method .ptp is deprecated and will be removed in a future version. Use numpy.ptp instead.\n", + "\n" + ] + } + ], + "source": [ + "# add constant column to df_copy:\n", + "df_copy = sm.add_constant(df_copy)\n", + "\n", + "# run OLS on 'satisfaction_score':\n", + "sat_score = sm.OLS(df_copy[\"satisfaction_score\"],\n", + " df_copy[[\"const\",\n", + " \"rating_HR\",\n", + " \"rating_acct\",\n", + " \"rating_OM\",\n", + " \"#contact_OM_num\"]]).fit()\n", + "\n", + "print('Parameters:' ,\"\\n\", sat_score.params, \"\\n\")\n", + "\n", + "print('R2: ', sat_score.rsquared)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "\n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "
OLS Regression Results
Dep. Variable: satisfaction_score R-squared: 0.587
Model: OLS Adj. R-squared: 0.553
Method: Least Squares F-statistic: 17.40
Date: Sat, 23 Nov 2019 Prob (F-statistic): 6.03e-09
Time: 12:21:07 Log-Likelihood: -83.170
No. Observations: 54 AIC: 176.3
Df Residuals: 49 BIC: 186.3
Df Model: 4
Covariance Type: nonrobust
\n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "
coef std err t P>|t| [0.025 0.975]
const -0.4825 1.454 -0.332 0.741 -3.403 2.438
rating_HR 0.4581 0.128 3.572 0.001 0.200 0.716
rating_acct 0.2931 0.105 2.803 0.007 0.083 0.503
rating_OM 0.2778 0.134 2.067 0.044 0.008 0.548
#contact_OM_num -0.0777 0.239 -0.325 0.747 -0.559 0.404
\n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "\n", + " \n", + "\n", + "
Omnibus: 1.660 Durbin-Watson: 2.335
Prob(Omnibus): 0.436 Jarque-Bera (JB): 0.882
Skew: 0.125 Prob(JB): 0.643
Kurtosis: 3.575 Cond. No. 134.


Warnings:
[1] Standard Errors assume that the covariance matrix of the errors is correctly specified." + ], + "text/plain": [ + "\n", + "\"\"\"\n", + " OLS Regression Results \n", + "==============================================================================\n", + "Dep. Variable: satisfaction_score R-squared: 0.587\n", + "Model: OLS Adj. R-squared: 0.553\n", + "Method: Least Squares F-statistic: 17.40\n", + "Date: Sat, 23 Nov 2019 Prob (F-statistic): 6.03e-09\n", + "Time: 12:21:07 Log-Likelihood: -83.170\n", + "No. Observations: 54 AIC: 176.3\n", + "Df Residuals: 49 BIC: 186.3\n", + "Df Model: 4 \n", + "Covariance Type: nonrobust \n", + "===================================================================================\n", + " coef std err t P>|t| [0.025 0.975]\n", + "-----------------------------------------------------------------------------------\n", + "const -0.4825 1.454 -0.332 0.741 -3.403 2.438\n", + "rating_HR 0.4581 0.128 3.572 0.001 0.200 0.716\n", + "rating_acct 0.2931 0.105 2.803 0.007 0.083 0.503\n", + "rating_OM 0.2778 0.134 2.067 0.044 0.008 0.548\n", + "#contact_OM_num -0.0777 0.239 -0.325 0.747 -0.559 0.404\n", + "==============================================================================\n", + "Omnibus: 1.660 Durbin-Watson: 2.335\n", + "Prob(Omnibus): 0.436 Jarque-Bera (JB): 0.882\n", + "Skew: 0.125 Prob(JB): 0.643\n", + "Kurtosis: 3.575 Cond. No. 134.\n", + "==============================================================================\n", + "\n", + "Warnings:\n", + "[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.\n", + "\"\"\"" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sat_score.summary()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Observations:\n", + "\n", + "**For 3 out of 4 variables, there is enough statistical evidence to reject the null hypothesis,\n", + "as their p-value is below 5%.**\n", + "\n", + " For:\n", + "\n", + " • Human Resources Rating (\"rating_HR\"),\n", + " • Accounting Rating (\"rating_acct\"),\n", + " • Office Management Rating (\"rating_OM\")\n", + "\n", + " there is statistically enough evidence that they are related to the satisfaction score.\n", + " \n", + " -----------------------------------------------------------------------------------------\n", + "\n", + " For:\n", + "\n", + " • The number of times employees contacted the Office Management(\"#contact_OM_num\")\n", + "\n", + " there is statistically not enough evidence that it is related to the satisfaction score." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Q3. Has the company location an impact on employee satisfaction?\n", + "\n", + "We look closer with the following angles: \n", + "1. Compare the satisfaction score and department ratings among the three locations\n", + "2. Compare the number of contacts between employees and departments last year among the three locations " + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "df_plot1 = (df.groupby([\"location\", \"gender\"])\n", + " .agg({'satisfaction_score': 'mean',\n", + " 'rating_HR': 'mean',\n", + " 'rating_acct': 'mean',\n", + " 'rating_OM': 'mean',\n", + " 'rating_security': 'mean',\n", + " 'rating_D&R': 'mean'}).reset_index())" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/html": [ + " \n", + " " + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "name": "Satisfaction_Score", + "type": "bar", + "x": [ + "Amsterdam", + "Boston", + "New Delhi " + ], + "y": [ + 7.5006010890318935, + 7.523005461050782, + 8 + ] + }, + { + "name": "Rating_Accouting", + "type": "bar", + "x": [ + "Amsterdam", + "Boston", + "New Delhi " + ], + "y": [ + 7.666666666666667, + 7.771084337349397, + 8.461538461538462 + ] + }, + { + "name": "Rating_HR", + "type": "bar", + "x": [ + "Amsterdam", + "Boston", + "New Delhi " + ], + "y": [ + 8.136986301369863, + 7.710843373493976, + 8.363636363636363 + ] + }, + { + "name": "Rating_OM", + "type": "bar", + "x": [ + "Amsterdam", + "Boston", + "New Delhi " + ], + "y": [ + 8.743243243243244, + 8.617283950617283, + 9.538461538461538 + ] + } + ], + "layout": { + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + } + } + }, + "text/html": [ + "
\n", + " \n", + " \n", + "
\n", + " \n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "name": "Satisfaction_Score", + "type": "bar", + "x": [ + "Female", + "Male" + ], + "y": [ + 7.686618781590849, + 7.355263157894737 + ] + }, + { + "name": "Rating_Accouting", + "type": "bar", + "x": [ + "Female", + "Male" + ], + "y": [ + 7.784313725490196, + 7.768115942028985 + ] + }, + { + "name": "Rating_HR", + "type": "bar", + "x": [ + "Female", + "Male" + ], + "y": [ + 8.072164948453608, + 7.757142857142857 + ] + }, + { + "name": "Rating_OM", + "type": "bar", + "x": [ + "Female", + "Male" + ], + "y": [ + 8.797979797979798, + 8.666666666666666 + ] + } + ], + "layout": { + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + } + } + }, + "text/html": [ + "
\n", + " \n", + " \n", + "
\n", + " \n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "name": "Satisfaction_Score", + "type": "bar", + "x": [ + 1, + 2, + 3, + 4 + ], + "y": [ + 8, + 7.294117647058823, + 7.579888268156425, + 7.823529411764706 + ] + }, + { + "name": "Rating_Accouting", + "type": "bar", + "x": [ + 1, + 2, + 3, + 4 + ], + "y": [ + 8.0625, + 7.506024096385542, + 8.05, + 7.9375 + ] + }, + { + "name": "Rating_HR", + "type": "bar", + "x": [ + 1, + 2, + 3, + 4 + ], + "y": [ + 8.033333333333333, + 7.780487804878049, + 8.105263157894736, + 8.176470588235293 + ] + }, + { + "name": "Rating_OM", + "type": "bar", + "x": [ + 1, + 2, + 3, + 4 + ], + "y": [ + 8.96774193548387, + 8.653846153846153, + 8.651162790697674, + 9 + ] + } + ], + "layout": { + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + } + } + }, + "text/html": [ + "
\n", + " \n", + " \n", + "
\n", + " \n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "name": "Satisfaction_Score", + "type": "bar", + "x": [ + 1, + 2, + 3, + 4, + 5 + ], + "y": [ + 7.870967741935484, + 6.842105263157895, + 7.731499785131071, + 7.514407527197882, + 8.222222222222221 + ] + }, + { + "name": "Rating_Accouting", + "type": "bar", + "x": [ + 1, + 2, + 3, + 4, + 5 + ], + "y": [ + 8.10344827586207, + 7.4324324324324325, + 7.634920634920635, + 7.848484848484849, + 8.88888888888889 + ] + }, + { + "name": "Rating_HR", + "type": "bar", + "x": [ + 1, + 2, + 3, + 4, + 5 + ], + "y": [ + 7.642857142857143, + 7.783783783783784, + 8, + 8.057142857142857, + 8.75 + ] + }, + { + "name": "Rating_OM", + "type": "bar", + "x": [ + 1, + 2, + 3, + 4, + 5 + ], + "y": [ + 8.925925925925926, + 8.514285714285714, + 8.819672131147541, + 8.694444444444445, + 8.777777777777779 + ] + } + ], + "layout": { + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + } + } + }, + "text/html": [ + "
\n", + " \n", + " \n", + "
\n", + " \n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "def plot_by_col( col):\n", + " \n", + " df_plot = (df.groupby(col)\n", + " .agg({'satisfaction_score': 'mean',\n", + " 'rating_HR': 'mean',\n", + " 'rating_acct': 'mean',\n", + " 'rating_OM': 'mean',\n", + " 'rating_security': 'mean',\n", + " 'rating_D&R': 'mean'}).reset_index())\n", + " \n", + " fig = go.Figure()\n", + "\n", + " fig.add_trace(\n", + " go.Bar(\n", + " x=df_plot[col],\n", + " y=df_plot['satisfaction_score'],\n", + " name='Satisfaction_Score'))\n", + " \n", + " fig.add_trace(\n", + " go.Bar(\n", + " x=df_plot[col],\n", + " y=df_plot['rating_acct'],\n", + " name=\"Rating_Accouting\"))\n", + " \n", + " fig.add_trace(\n", + " go.Bar(\n", + " x=df_plot[col],\n", + " y=df_plot['rating_HR'],\n", + " name= \"Rating_HR\"))\n", + "\n", + " fig.add_trace(\n", + " go.Bar(\n", + " x=df_plot[col],\n", + " y=df_plot['rating_OM'],\n", + " name= \"Rating_OM\"))\n", + "\n", + " fig.show()\n", + " \n", + "list_cols = ['location', 'gender', 'age_category', 'seniority_category']\n", + "for i in list_cols:\n", + " plot_by_col(i)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
locationIDage_categoryseniority_categorysatisfaction_scorerating_acctrating_HRrating_OMrating_securityrating_D&R#contact_acct_num#contact_HR_num#contact_OM_num
0Amsterdam87.6455702.3670892.8734187.5006017.6666678.1369868.7432438.8831178.9444443.1265822.9240513.139241
1Boston98.5280902.2022472.6629217.5230057.7710847.7108438.6172848.6024107.0714292.9775282.8988763.258427
2New Delhi59.8461541.8461542.6923088.0000008.4615388.3636369.5384628.9166679.7500003.2307692.6153853.384615
\n", + "
" + ], + "text/plain": [ + " location ID age_category seniority_category \\\n", + "0 Amsterdam 87.645570 2.367089 2.873418 \n", + "1 Boston 98.528090 2.202247 2.662921 \n", + "2 New Delhi 59.846154 1.846154 2.692308 \n", + "\n", + " satisfaction_score rating_acct rating_HR rating_OM rating_security \\\n", + "0 7.500601 7.666667 8.136986 8.743243 8.883117 \n", + "1 7.523005 7.771084 7.710843 8.617284 8.602410 \n", + "2 8.000000 8.461538 8.363636 9.538462 8.916667 \n", + "\n", + " rating_D&R #contact_acct_num #contact_HR_num #contact_OM_num \n", + "0 8.944444 3.126582 2.924051 3.139241 \n", + "1 7.071429 2.977528 2.898876 3.258427 \n", + "2 9.750000 3.230769 2.615385 3.384615 " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Compare ratings of departments in each location with a Radar Chart\n", + "loc_mean = df.groupby('location').mean().reset_index()\n", + "loc_mean" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Oberservations:" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "line": { + "color": "pink" + }, + "name": "New Delhi ", + "r": [ + 8.461538461538462, + 8.363636363636363, + 9.538461538461538, + 8.916666666666666, + 9.75 + ], + "theta": [ + "Accounting", + "HR", + "Office Management", + "Security", + "Data & Records" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "line": { + "color": "lightgreen" + }, + "name": "Amsterdam", + "r": [ + 7.666666666666667, + 8.136986301369863, + 8.743243243243244, + 8.883116883116884, + 8.944444444444445 + ], + "theta": [ + "Accounting", + "HR", + "Office Management", + "Security", + "Data & Records" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "line": { + "color": "darkgreen" + }, + "name": "Boston", + "r": [ + 7.771084337349397, + 7.710843373493976, + 8.617283950617283, + 8.602409638554217, + 7.071428571428571 + ], + "theta": [ + "Accounting", + "HR", + "Office Management", + "Security", + "Data & Records" + ], + "type": "scatterpolar" + } + ], + "layout": { + "polar": { + "radialaxis": { + "range": [ + 1, + 10 + ], + "visible": true + } + }, + "showlegend": true, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Rating of each departments among locations" + } + } + }, + "text/html": [ + "
\n", + " \n", + " \n", + "
\n", + " \n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig = go.Figure()\n", + "\n", + "data = [go.Scatterpolar(\n", + " name = loc_mean['location'].values[2],\n", + " r = [loc_mean['rating_acct'].values[2],loc_mean['rating_HR'].values[2], \n", + " loc_mean['rating_OM'].values[2],loc_mean['rating_security'].values[2], loc_mean['rating_D&R'].values[2]],\n", + " theta = ['Accounting','HR','Office Management','Security','Data & Records'],\n", + " fill = 'toself',\n", + " line = dict(color = 'pink')),\n", + " \n", + " go.Scatterpolar(\n", + " name = loc_mean['location'].values[0],\n", + " r = [loc_mean['rating_acct'].values[0],loc_mean['rating_HR'].values[0],\n", + " loc_mean['rating_OM'].values[0],loc_mean['rating_security'].values[0],loc_mean['rating_D&R'].values[0]],\n", + " theta = ['Accounting','HR','Office Management','Security','Data & Records'],\n", + " fill = 'toself',\n", + " line = dict(color = 'lightgreen')),\n", + " \n", + " go.Scatterpolar(\n", + " name = loc_mean['location'].values[1],\n", + " r = [loc_mean['rating_acct'].values[1],loc_mean['rating_HR'].values[1], \n", + " loc_mean['rating_OM'].values[1],loc_mean['rating_security'].values[1], loc_mean['rating_D&R'].values[1]],\n", + " theta = ['Accounting','HR','Office Management','Security','Data & Records'],\n", + " fill = 'toself',\n", + " line = dict(color = 'darkgreen'))]\n", + " \n", + "layout = go.Layout(polar = dict(radialaxis = dict(visible = True, range = [1,10])),\n", + " showlegend = True,\n", + " title = \"Rating of each departments among locations\")\n", + "\n", + "go.Figure(data=data,layout=layout)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##### Q3. 2 Compare # contacts among locations\n", + "\n", + "**Barplot: Accounting Department**" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAbgAAAGnCAYAAADFSkL9AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3de7yuc53/8dfbmRyiw1AJqcghptKkxKYUOmjKFCWk2qFE9dORkFHNjEw1jbSlpNDJNJMaVCRMjORQOXZOIpNDkjOf3x/fa9Xdbu2919p73/te61qv5+OxHuu+7+u+r+uzLtt6r+/3+l7fb6oKSZL6ZqlRFyBJ0jAYcJKkXjLgJEm9ZMBJknrJgJMk9ZIBJ0nqJQOuR5Jsk6SSHDvqWiaqq3nz7vG6Xf2bDOlY53T7H/u6O8nVSQ5KsvQwjjmJ2lZO8toRHn/ZJPuN6vjSMBhw/bI78GNgtyQrjrqYCToHeEz3+DpgLeDqIR7v490x1gI2Bt4PvAP4yBCPORFvA/Yd4fFfCbxvhMeXFjsDrieSLA/sAhwJLNc9nlaq6oGqurGq7h/iYe7sjnFjVf20qk4E9gDemOTJQzzugmSEx54Kx5cWOwOuP14IrAr8N/ANYO/BjUl2SXJ5kruSXJFk54Ft2ya5IMmdSX6a5PUD256Q5L+S3Jrk5iTHJVml2zar6+pbeeD9hyW5uHs81uW4S5KrktyR5NtJNui2/6L72GlJTpi7izLJL5Ic0HUt3pnkB0leNHCs1ZN8IcntSa5LsleS+5OsO5kTV1X/DfycgT8KkuyR5NruuJckecFcP+NXk3wkyR+S/DrJgXOd77d0n783yS1JPjt2nrrPn57kzCS/T3IocCjw1O7nX7c7Hx9N8qkkf+yO8fIkL+3+G/0hySlJlptEzf+R5Kiunhu6/S+dZBbwaeBh3fFnTeb8SVNWVfnVgy/gK8C53eO9gAeBx3XPtwMeAP4f8HjgAOAeYCNgw+7xPwNPBHbrnm8PrAH8FvgysAmwDXAV8KVuv7OAAlYeqOMw4OLu8brd9h8BWwNb0LofT+u2P6Lbvjuw2sD7N+m2/wL4PbBrV+upwO+A5brtZwDfA57a1fbj7vPrzuMcnQMcNY9tXwNO7R4/H7itO+76wBuAu4AtB37Ge7pzvjHw6m77nt323bq6XwisA7wYuB1428DnC3gP8CRgbeAo4DJgTWBp4ITuGO8BHgccD/wBuAB4CvAC4E5g70nUfC/wSWAD4PW0fxMvo7X4DwBu7o6/3Kj/Pfvl1+L4WgZNe0lWB3aiXUsC+Crtl9drgENo13a+WlVHdds/0rUmVgJeAVxRVW/vtl3b7Q/adZmlgFdX1V3dsfYCLkzyxEmU+I9VdW73+WOAdwJU1f8lAbitqn4/cNxBp1TV57vPHg5cDqzbfe75wGZV9YNu+/7A6ZOoa9BtwN90j98N/MvYcYGfJnkq7TrZWCvvLmCPqvoDcEW3fT/gM8BvgL2q6mvde3+Z5Du0kGbg8x+oqge72u8A7q+qG7vnAD+pqiO755+gtcoPqapLutcuogXsZGrer6ruBa5Jsi/w1Ko6NcnvgRo7vtQHdlH2w8tpf4X/B0BV3UJrreyVZCnaL9bvDX6gqo6sqou7bRfPte2Yqvom7ZfnZWPh1vkerSUw+Mt6Qa4deHw7sOwifJbu80+mtXB+OLD9gknsd26r0lpd0H7uQ7ou1Tu68NmT1vIZc1kXbmMuorVyqarvANcl+cckX05yFa3FNThS8+dj4TYfPxl4fGf3/WcDr90NLD+Jmn/ZhduYyf63kKYVW3D9sHv3/WfdX/7Q/ngJ8DxaIM1r2Yj5bbtrHq+n2/94nxvv39S9cz2fzICGuT879vn7JrmfBdkcOK57vAzwLuC0ud5z38DjuQfCLEVrNY+1cj9Ou651OnAEcPhc75/XuZ3X8cbMKxQnUvO8zqXUSwbcNJdkHeBZtGsspw5sWhb4Dq1b61radZvBz51J++V7Le0a3eC242h/3V8F7J5kxYFW3NO6fV9Nu25G9/2O7vHjFsfPNQFX0FqtmwI/6F7bYmF2lGQH2q0KX+5eugpYp6p+MvCed9PC5YPdS5skWW6gRfR0WvcpwBtp3YXv7T4b4AnM1VKey6KuWzWRmufHdbPUO3ZRTn+707qqPlJVPxr4upR2PWhn4KPA3yd5U5L1k7yZNujjTOAYYNMkRyR5fJLdaIMmvg6c1O37s0k2SfJs2mCHb1XVlbSQuQs4Isl6SfamdcVNxh20sFhjMh/qfpGfBhyX5GlJngn829jm+Xx0pSRrdl/rp40Y/Szwb1V1Vfeefwb2SbLPwHsOpw16GfM3wDFJNkiyJ23Qxoe7bTcD2ybZKMnGtJbhRvy5O3E8dwBrJnlckoX5w3MiNc/PHcDKXc0rLMTxpSnHgJv+XgV8oapuG2fbx2itrafS7vV6Ey2U9gZeUlVXVdUvgRfRgukKWkvwdVV1dlXdCexAuz71Pdo1vvOBlwJU1e3dvmYBVwIv4a+74hbkKOC9tOCcrL2B64FzgS/SAh3G74obsy9wQ/d1CW204SHAn4b5V9VXgP2Bt9J+roNogzM+P7CfH9CuAV7S1b9fVY21oA+ghezFwLdowfYB5mpFz+XLtFGSVwJ/O5/3jWuCNc/PWcCl3ddk/0iRpqRU2TOh6SfJSrTri6dX1T3da1vQAvghNcSbxZMcBrywqp42rGNIWnS24DRd3U3r+nt/1633FOBDtHvZhjkTiqRpwoDTtNQNsX8x8AzarQJn0gZavGGUdUmaOuyilCT1ki04SVIvGXCSpF6aSjd621cqabpzZpgpxBacJKmXDDhJUi8ZcJKkXjLgJEm9ZMBJknrJgJMk9ZIBJ0nqJQNOktRLBpwkqZcMOElSLxlwkqReMuAkSb1kwEmSesmAkyT10lRaLkeatM3eucNQ93/5B88Y6v4lDY8tOElSLxlwkqResotS0jwNswvY7l8Nmy04SVIvGXCSpF4y4CRJvWTASZJ6yYCTJPWSASdJ6iUDTpLUS94HtwR4L5EkLXm24CRJvWTASZJ6yYCTJPWSASdJ6iUDTpLUS0MJuCTLJjk5yXeTnJdkw2EcR5KkeRlWC24nYJmqeibwPuDIIR1HkqRxDSvgrgWWSbIUsCpw35COI0nSuIZ1o/cdwLrA1cDDgReO96Yks4HZAJ/4xCeYPXv2kMqRRufKG04d6v43WutlQ92/NF0NK+DeApxZVe9KsjZwdpJNq+ruwTdV1RxgztjTIdUiSZqBhhVwt/LnbslbgGWBpYd0LEmS/sqwAu5fgU8lOQ9YDnh3Vf1xSMeSJOmvDCXgquoO4OXD2LckSRPhjd6SpF4y4CRJvWTASZJ6yYCTJPWSASdJ6iUDTpLUSwacJKmXDDhJUi8ZcJKkXhrWVF3Sn7zvrCNGXYKkGcgWnCSplww4SVIvGXCSpF4y4CRJvWTASZJ6yYCTJPWSASdJ6iUDTpLUSwacJKmXDDhJUi8ZcJKkXjLgJEm9ZMBJknrJgJMk9ZIBJ0nqJQNOktRLBpwkqZcMOElSLxlwkqReWmbUBWhquPKGU0ddgiQtVrbgJEm9ZAtOmubed9YRoy5BmpJswUmSesmAkyT1kgEnSeolA06S1EsGnCSplxxF2XEkmiT1iy04SVIvGXCSpF4y4CRJvWTASZJ6yYCTJPWSASdJ6iUDTpLUSwacJKmXDDhJUi8ZcJKkXjLgJEm9ZMBJknrJgJMk9ZIBJ0nqJQNOktRLBpwkqZcMOElSLxlwkqReMuAkSb1kwEmSesmAkyT1kgEnSeqloQVckncluSDJ95O8dljHkSRpPEMJuCSzgGcCzwK2AdYexnEkSZqXZYa03+cDPwS+AqwKHDSk40iSNK5hdVE+HHga8A/APsBJSTL3m5LMTnJxkovnzJkzpFIkSTPRsFpwNwNXV9W9wDVJ7gYeAdw0+KaqmgOMJVsNqRZJ0gw0rBbc+cAOaR4FPIQWepIkLRFDacFV1deSbA1cRAvRN1bVA8M4liRJ4xlWFyVV9fZh7VuSpAXxRm9JUi8ZcJKkXjLgJEm9ZMBJknrJgJMk9ZIBJ0nqJQNOktRLBpwkqZcMOElSLxlwkqReMuAkSb1kwEmSesmAkyT1kgEnSeolA06S1EsGnCSplww4SVIvGXCSpF4y4CRJvWTASZJ6yYCTJPWSASdJ6iUDTpLUSwacJKmXDDhJUi8ZcJKkXjLgJEm9ZMBJknrJgJMk9ZIBJ0nqJQNOktRLBpwkqZcMOElSLy0z0Tcmee9cL90HXAd8oaruW6xVSZK0iCbTgtsMeCLwW2A94DnA84FPDaEuSZIWyYRbcMBDq+pl3eNPJPlGVb06yfnDKEySpEUxmRbcQ5M8HCDJw4DVkiwLrDSUyiRJWgSTacEdCvxvktuBlYH9gbcBxw+jMEmSFsWEA66qvpbkv4FHADdVVQFnDK0ySZIWwWRGUW4PvAVYoXtOVW03rMIkSVoUk+mi/FfgQNqtAZIkTWmTCbhfVdW3hlaJJEmL0WQC7qYkxwKXAgVQVXOGUpUkSYtoMgH38+77mt33Wsy1SJK02Cww4JI8pqp+DZyyBOqRJGmxmEgL7q3d1ydorbZ0rxfgKEpJ0pS0wICrqrd2D4+uqtPGXk/y8qFVJUnSIppIF+ULgWcBuyXZsnt5KWBn4ItDrE2SpIU2kS7Ky4GHAXcB13SvPQh8flhFSZK0qCbSRXkd8Jkkn62qB8deT7LWUCuTJGkRTGY1gUOT/F+S3ye5D/Cmb0nSlDWZgNsReAxwEvAk4PqhVCRJ0mIwmYC7uaruAVapqp/gOnCSpClsMgH36yR7A39M8gFglSHVJEnSIltgwCVZJslLgZNp190Ooo2ovHrItUmSJinJrCSLdZR7kscmeVH3+MNJHrs49z8sE7lN4CTgftoclF+hzUm5H/CRIdYlSZo6tgM2BE6rqgNHXcxETSTg1q+qpyVZDvg+cA+wbVVdNdzSJEmLQ7dg9T8CdwM3A3sDtwMfBZ4OLAccCnyNNi3j2rT7n08HDgPeCayU5Lu0qRv3AW4EPgesSsuSg6vq7CQ/AL4DPJk2pePOVfX7JfKDzmUi1+BuB6iqe7v3P89wk6TpIUmAOcBLq2obWvgcTJuN6uFV9XRgB2ALWrBdWFXPB7YC9q2qB4APAidX1VcHdn0w8M2q2hr4B+D4JEvRAu+U7ljX00bgj8RklssB+G1V3TKUSiRJw/Bw4PaqGru161zg/cDvgAsAqupG4OAkqwJbJNmW1rhZfj77fRLtEhZVdX2S24FHdNsu7b5fB6ywGH+WSZlIC27jJCcnOWXg8clJTl7QB5M8Msl1STZc9FIlSQvhd8CqA7NPbQNcC1xFa7WRZLUkZwJ7AbdV1auAD9G6JUObnnHuvLgKeHb3+UcDq9O6P2GKrBc6kRbc4KoBx050x0mWpfXl3jXZoiRJi+R5SS4eeP4B4D+SPAjcSguym4HnJjmflgWHA78CPp/k2cAfgR8DjwJ+CLwnySUD+3w/8KkkuwArArOr6v6Wh1PDROai/M5C7vsoWiC+ayE/L0mapKo6B1hjnE1zxnlt/3Fe23Sc164HNugeD96C8JJxjr/uwON3zqvOJWEyN3pPWJK9gP+rqjOHsX9JkhZkKAFHG4K6fZJzgM2BE5OsOfebksxOcnGSi+fMGe+PC0mSFs5kR1FOSDdsFIAu5PbpRunM/b45/LnZPCUuSkqS+mFYLThJkkZqKC24QVU1a9jHkCRpbrbgJEm9NPQWnCRpfFfecOpiHXuw0Vovm+9NaElmAf8JbFpV13WvfRC4uqpOWJRjJzkMeCXwG2Bp2j3Q76iqS+fzmRuras2BsRpXD2zbHHhxVb1vYWsy4CRpZrkX+HSS7atqcQ/uO7qqjgXoZrD6zySbV9Xdk91RVV0GXLYoxdhFKUkzy9nALcAb596QZP8kFyT5bpI3J3lYksu6bVsmuSXJ0kke003tNU9da+wSYKtuKrAvJ/l29zXezeSHJjk7yf8medziWNfOgJOkmWdf4C1JnjD2QpKNgFfQVhHYijZLycOBm5OsTVtx4DrgqcCLaeuDLshvu328GzirqrYFZgMfH+e9X6+q7WhL9OyykD/XXzDgJGmGqaqbgQOBE/hzDmwCrAOcRWvlPQx4PC3IdgKeCfwTsD3wAtq1vAVZB/g1bfqvvbtrbcfRJmae2/e77zcCK03yRxqXASdJM1BVnQZcQ5t4me7xFbQFrWfRwu+HtCB7JW35nNNpLbvlx5u8Y1CSTYCNgAuBq4F/7fb7crplduYuaVF+nvE4yESSZq4DgecAVNXlSc4Czk+yPHARcH1VPZBkBVoX461J7ge+Po/9vTXJrsADwH3ALt0KA0fSFkSdTVsQ9bDh/liNASdJI7KgYf2LW7fSwDkDz2+ndSOOPf8X4F/G+dzfDTzech77Pox5BFfXJTreygNrdt9nDbw2uCzbOSwCuyglSb1kwEmSesmAkyT1kgEnSeolA06S1EsGnCSpl7xNQJJG5H1nHbFYb25+73MOWeBtB92KAl8ErgQCLAvsPTiT/wT28ffA/1bVbxay1CXCFpwkzTxnV9WsqtqGdu/aUZP8/AG0G7anNFtwkjSzrQ78IsnfAv9Gm4XkbuD1wE201t5qwIrA24GHAJsDJybZCtgf2BW4Hzi3qt7RrQ23HvBI2o3kb6mq+a4+MAwGnCTNPNt1Ex8vDzyZNnnyccDrquqyJDsDRwOHAmsCz6WF1ROr6uvdEjr7ABvQ5pZ8Ji3gTk3ywu4Y91TVjkm2B94GGHCSpKE7u6p2BUiyAXABkG6RUYBzgQ9W1RVJ/h04hXat7qNz7WdD4MKquq/b13nAxt22sZW8rwNWGNpPMh9eg5Okme233fefJXly93gb4NpuYdJVquoFwJ60LkyAB2n5cTXwd0mWSRJga+Da7j2LfXWAybIFJ0kzz1gX5QPAKsBbgcuBj3VBdT/wWuA3tJW29wDuBd7bff67wInA82jX6P6HFnjn05bX2WyJ/STzYcBJ0ohMZFj/4tatKPDIeWzeepzX/mp17ao6GDi4e3p09zXosIH3Xg3MmmSZi4VdlJKkXjLgJEm9ZMBJknrJgJMk9ZIBJ0nqJQNOktRL3iYgSSOy2Tt3WKw3Q1/+wTMmfNtBkncABwLrVdXdC3vMJG+qqo8txOc2BI6tqlkLe+wFsQUnSTPTq4DP0yZKXhQHL/gto2ELTpJmmG5NuJ8CxwKfA07oZja5HNgEuAM4D3g+8FDajCWPAE4A7qPNdLIHsBewRpJjaEvoHAs8gdZ4OriqzknyI9r0XffQZkw5ibYO3Y0D9ewCvLF7HdrN5ZsA7+o+t3a37+1os6R8pKo+vqCf0xacJM08rwM+WVXXAPck+bvu9Yuq6jm0VQburKrtaQujbgNsD3yftrLAkcDqVXUkcEtV7dft83dVtTWwM/Dv3T5XBo6oqt1oqwqcUlXb0qb0GvNE4AVdd+U1tGAFeAzwMmBfWkvx1cCOwBsm8kMacJI0gyRZHdgJOCDJGbS13t7Ubb6k+34bLdgAbqWtBnA88DvgjO7998+1602BnbqW4KnAMkke1m27pvu+MXBR9/h/Bj57E/CZJJ+mLd+zbPf6j7qVCm4DflpV9w7Us0B2UUrSzLI7cHxVHQSQZCXg57Twmt+gl52B86rq8CS7Ae8AXsOfuxWvBn5dVe9PsiLwHloYQVt9YOw9W9K6Qrfojr8acDjw2O493xzY5yINwjHgJGlmeR2tqw+Aqrozyand6/NzMfC5JPfTAust3etXJvkcbfWB45J8B1gVOKaqHmyLE/zJIcAXkuxKC1WA22mtuUuAP9JC8VED2xeaASdJIzKZYf2LS1X91VI23TW0/Qae7zrw+MCBt245zme3HXi6xzjb1x14fAdt9fC5vXwe5Z7Tfe5PKxJU1W20hVYXyGtwkqReMuAkSb1kwEmSesmAkyT1kgEnSeolA06S1EsGnCSplww4SVIvGXCSpF4y4CRJvWTASZJ6yYCTJPWSASdJ6iUDTpLUSwacJKmXDDhJUi8ZcJKkXjLgJEm9ZMBJknrJgJMk9ZIBJ0nqJQNOktRLBpwkqZeGEnBJlk3y2STnJbkoyYuHcRxJkuZlWC243YGbq+rZwI7Ax4Z0HEmSxrXMkPb7JeDLA8/vH9JxJEka11ACrqruAEiyCi3oDh7GcSRJmpehDTJJsjbwbeCzVXXyPN4zO8nFSS6eM2fOsEqRJM1AQ2nBJfkb4BvAm6rqrHm9r6rmAGPJVsOoRZI0Mw2rBfduYHXgkCTndF8rDulYkiT9lWFdgzsAOGAY+5YkaSK80VuS1EsGnCSplww4SVIvGXCSpF4y4CRJvWTASZJ6yYCTJPWSASdJ6iUDTpLUSwacJKmXDDhJUi8ZcJKkXjLgJEm9ZMBJknrJgJMk9ZIBJ0nqJQNOktRLBpwkqZcMOElSLxlwkqReMuAkSb1kwEmSesmAkyT1kgEnSeolA06S1EsGnCSplww4SVIvGXCSpF4y4CRJvWTASZJ6yYCTJPWSASdJ6iUDTpLUSwacJKmXDDhJUi8ZcJKkXjLgJEm9ZMBJknrJgJMk9ZIBJ0nqJQNOktRLBpwkqZcMOElSLxlwkqReMuAkSb1kwEmSesmAkyT1kgEnSeolA06S1EsGnCSplww4SVIvGXCSpF4y4CRJvWTASZJ6yYCTJPWSASdJ6iUDTpLUSwacJKmXDDhJUi8ZcJKkXhpKwCVZKsmxSS5Ick6Sxw/jOJIkzcuwWnAvAVaoqi2BdwIfGtJxJEka17ACbivgDICquhB42pCOI0nSuFJVi3+nySeBU6vq9O75r4DHVdX9c71vNjC7ezqnquYs9mKGIMns6VLrdOT5HR7P7XB5fqeWYbXgbgdWGTzO3OEGUFVzqupp3dd0+kcxe8Fv0SLw/A6P53a4PL9TyLAC7n+AnQCSPAP44ZCOI0nSuJYZ0n6/Amyf5LtAgNcM6TiSJI1rKAFXVQ8C+wxj31PEdOpOnY48v8PjuR0uz+8UMpRBJpIkjZozmUiSesmAkyT1kgEnSeolA24IkizVfc+oa+kbz62kiTLgFrMkS1XVg0mWAV6fZKvBbSMsbdrz3E4tY39kJHlCko2TrDDqmqRBjqIckiRfAK4ALgVuA66oqltGW1U/eG5HL0mqqpLsALwZuBP4PfBvVXXZ2PbRVqmZzr96hyDJjsAjqup9tPsBXwmckeQho61s+vPcTg1duK0GHAi8HDgdWA/YPMnShpumAgNuOC4BVknyL8DxtF8Cv8LzvTh4bkcoydLd99Dmm70ZeB2wI/A84NnAdiMrUBowrKm6ZpSBa0NbAusAq1bVFkmeQFsb72zg6Kr6w0gLnYY8t1NH1+34QPf0M8BHgAtpf2T8O/AK4JFV9c0RlSj9Bf/qXQy6X8CPA44G/g94S5KPAncA19N+AZ86yhqnK8/t1DHW7Zhkb9ryV98HPg0cDqwPbAHsNroKpb9kC24RDVxMPxD4OHATcA3wfWCzqjp5lPVNZ57bKeshwDVJXgP8V1WdCJyYZPmqumfEtUl/YgtuIY0NSx+4mH4esAntF/EbgDWAWSMpbprz3E4tA/cePjnJTrTRq1cBawOvTLI+gOGmqcYW3ELqVkwgyV60VsXvgc1pa9+9DNge2GVU9U1nntupo2tFP5hkY9ofGFfSuod/A/wS2BL47ghLlObJ++AWQZJXAwfQ/of/DO2a0Dq0lvE3qurnIyxvWvPcTh3dyMlPAl+pqq92N9i/GXgXcFtV3TzSAqV5sAU3SQOj+h4PbEjrKlsF+Gfgx8BJVfXTEZY4bXlup46x/xbd0wLuAR4HUFXnJ9kHeEZVnTSqGqUF8RrcJCRZpvsFvCFtVN+LgB2q6gZgf9pIsseOssbpynM7dYx1S3aPn0K71vZp4NFJPpBkNu2m7i+OsExpgeyinKQkKwHvBc4CVgbeBnyiqj470sJ6wHM7tSR5O7AHbZDPrbR7Dp8OrATMqapfjbA8aYHsopyAbuTYylX1Rdr0UHvQfvH+PMltwMeT3FtVXxhpodOQ53ZqGegmXpPWPbwdsC6wM21wzwer6tYRlihNmAG3AN2URJcCtyTZuaqOTvIw4MtJXlZV307yXOCG0VY6/Xhup5aBcNsU+CDtutvG3X+He4C9gCfhqElNEwbcfCRZHtikqr6f5KHAi5LsDuwJ/Ay4KMnLq+qcUdY5HXlup5aB2wEeArwH+AqtK3KHJKtW1X8lObyqbhttpdLEOchk/pYFXpHkHNo9QPsDlwFfBc6hTUt016iKm+Y8t1PIwE31+9CC7UvACbRliV6S5LmGm6YbW3DzUVV3JDmGdh1iddq1oiOTXAecBjynG+WnSfLcTi0D06L9HHg8MJs2SvJk4Lqq+vYo65MWhqMo5yPJssDStF/As4GnAkfQhkhfXFU/G2F501o3/dNyeG5HJsnDaVOgnV9V9w+8/iza8jdLAadU1Q9HVKK0SAy4uSR5BLBSVf2ye/6nlYmTvIn2P/4NVfW6EZY5LSVZY14rb3tul7wkb6TdUP8N4Oyq+uPAto1pC5ke7+0Amq4MuAFJXkKbzHdN4LyqenP3+p9mdUiyll1nk5dkI9r1tdfSWgwPdK8vPfDYc7uEJTmEFnL/DXyrqn47sG2Fqrp7ZMVJi8hBJp0k69DmPtwPeAqwQZIndptrYIZ7fwEvhKq6snt4GLBjkhW6Ft0Dntslq7s9g2706t/Rbgd4Lm0wyTpj7zPcNN0ZcH+2Om3W+pu7Lsn7gMd025YemJdPkzQWYMDnaCs/v5l2/9ur4M+rB2jJGBgx+XbaxNV70ya0fg6w72DISdOZAfdnNwDfAsYutt8M3JdkZeAzSdYYWWXT39i/s1Vo0z5dSrtN4NGe1yVnrOU24BZabwXd/YbXA8uPXX+WpjsDrtNdezi+qu7sXrqe1nVzFHD1vAZHaMEGRuidCcwBHkWb03A9XLh0iRkYLPWUbraSD7Wn+WaSNwDPAN43yhqlxWnG3gc3ODpy4PldAwMdVgC+DRxTVUeMrNBpbuD62oO0VtuKwBu7PxheMcraZpKxf+9J9gAOoi0/dDNwIPBSWpf8651nUv+njioAAAfkSURBVH0yk1twq4w96JZqqSTrA0d0F9/PBb5aVQeNrMJpKsmqSVaFFmwDa7w9C3hTVf26u8dQS0j37/sJwE7AC4DdaSsEfBo4t6pOrKofjbJGaXGbkQHXBdh/JnkOtC60JCvSpiY6t5uS6Cxg79FVOT0leSrtdoCjkhybZOnu2s9JwLVVdS1AVd03yjpnioERk8vQJkteBXh01xX/Htr10KePrEBpiGbsfXBJLu4efq6qPty9tlW3WvFfdF9qYrr13L4IHEubcf5I2qjJW2n/1n49wvJmnIHVAUKbX/KRtMmsQ5vv8xz/navPZmoL7snAD2h/0W6f5EMAY+E2ytqmuQdpo1B/Trum8yraJMo/o03FNd5IPg3B2OoA3dNjgW/S7nX7DO12mF2ArUdUnrREzMiAo82Q/kXgauCNwCOSnJxkteqMtrzpqbsx+ATgV8BqwDuq6g3AP9DmPMRzu2QMjJg8mDaY5M3AocDrabOWXAxcOLICpSVgxnZRDkqyCm3I9NVVdfSo6+mLsWm4knyMdgP9oaOuaSZJshZt2P97afNK3kW7ufu/gEMGbomResmA6wzON6nFI8nraaP2bq+qPUddz0yUZFtaV+TSVfXeJGcAR1XVt0ZcmjR0BpyGJsnatK7Knziv4ZI11wThW9BabusBJ1bVR0danLSEGHBSDwyuyjDw2tjN3WsBf0u7PeC40VQoLXkGnDTNzdVaOwj4KW0S5TtGW5k0WjN1FKXUGwPhdhTwWOAmYLsks0ZZlzRqBpzUA0meBGwLHA7sC2xGWwXjifP9oNRjBpw0TQ2ss0dVXUW7r+2dwP90E4RfRVsRQ5qRZuxqAtJ0NnCP4UbAjsDDaFOj3QK8I8k3gNNd200zmYNMpGmqm6DgVNokBa8B1qRNjbY8sF5VfWmE5UkjZxelNH3tBvwvbcq5VWlB94yquthwkww4adoYZ6Lqi4CHAp+jDS4p4AVOaC01XoOTpomBCZT3AJajBdyKtMmU/5Y23+TeTmgtNV6Dk6aBgVlJtgHeD/wOuAb4MrAB7d63m6rq0hGWKU0pdlFKU1w3U8nYlFuzgP2qamfamntvAH5TVWcabtJfMuCkKSzJst2q3KsDc4CdaatyU1XvoQ0wedQIS5SmLLsopWkgyaG0LslvAqfQVqQ/tKr+ONLCpCnMFpw0BSXZJMl70zyTttzN8lV1M22F9I1pC5lKmgdbcNIU003BtSxtpOR2wBW0SZQ/SWu1fbZ738quGCDNmy04aQrp7mF7OrA0sBLtPrdTgLuA5wOHJ/kAgOEmzZ/3wUlTSDdaciPgGNqUW88AbgT+idaC2wzYYnQVStOHASdNEWP3ulXVp5I8F9gEeHJVnZnkN8DHgV9V1dmjrVSaHrwGJ00hY6tzJ1kZeDbwDuB42moBX62qn420QGkaMeCkEUuyE7BqVX1+rBU3sO3pwJuApavqVSMrUpqGDDhphJJsDhwN7FtV1wys8xba/58PJlkBeKCq7htttdL04ihKaUSSrEabneS1wN8k+TBwfpJZXSuuui7Luw03afIcZCKNzvK0JW7eAjwReCvwQ+CjSf5fVX2j2y5pIRhw0ohU1U1JdqYNIvluVV0JXJnkDmD90VYnTX8GnDRCVXVjkndDm5kE+COwNXD9SAuTesBBJtIUkGRp4CBge+DXVbXniEuSpj0DTpoikqxLm4PyV1V1z2irkaY/A06S1EveJiBJ6iUDTpLUSwacJKmXDDhJUi8ZcFpikmyc5OtJvp3ke0kO7+ZcnOx+/j7Joyb5mTWSvHKu1zZNck73dXeSc7vHL0jy4SSPnWxtkqYOR1FqiUjyUOA84KVV9ePuvq8vAd+oqmMnua9zgH2q6upJfGZW95ld57H9F8CGVXX3ZGqRNHU5k4mWlJ2Bs6vqxwDdjPl7APcCJPkQsFX33pOr6iNJTgDuAdYF1gL26r5vDpyYZCvgcOBpwCrAVVX1miSPBE4AHgoE2AN4D7BZktlVNWdBxY6FKLAr8Hjg4cAatJW2X0abO3LPqrowyf7AK2nzRn6+qj6a5KW0tdzuA34B7FFVD076rElaaAaclpRHAX+xWGdV3QGQ5IXAesAzaP8mz08ytmr1L6vqDUleD8yuqn2SXEYLnxWAW6tq+yRLAVckeTTwdtrioMcm2Q54OnAkrQW3wHAbx11VtUOSdwI7VdWLkrwG2DXJ7cAraOFcwLeSnAnsBvxrt8bbHsCqwG0LcWxJC8lrcFpSfgmsPfhCkvWSbA08CTivmvuAC4GNurdd2n2/jhZog+4CHpnkFOATwMq0mUA2AC4AqKqzq+qkRaz9ku77bcCV3eNbu3o2AdYBzgLOpq28/XjaygBbJ/kO8EzA1pu0hBlwWlK+BuyQZH2AJMvSFvrcBLiKrnuye/2ZwI+7z413kfhB2r/dHYG1q2o34N3AirQuyauALbr9bZ3knwY+szDmd6H6GuAKYNuqmkXrGv0hMBs4rKq26Wr6+4U8tqSFZBelloiquj3JnsBxXXfiKsBpwMerqpLMSnIBsBzwxaq6ZD4DLL8LnAi8GDgkyYW0a3U/o3WFvh/4VJLdaeH02m77pkkOrKoPL8af6/IkZ9G6VZcHLqKtBHAR8M0kNwN/oAW8pCXIUZSSpF6yi1KS1EsGnCSplww4SVIvGXCSpF4y4CRJvWTASZJ6yYCTJPWSASdJ6qX/DwF3LnDCRe6hAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "accounting = sns.catplot(x='#contact_acct_num', y='rating_acct',hue=\"location\", kind= \"bar\", \n", + " data=df_copy, palette=(\"YlGn\"), ci=None)\n", + "\n", + "sns.set(font_scale=1.2)\n", + "\n", + "plt.xticks([0,1,2,3])\n", + "accounting.set_xticklabels(['1-2 times','3-4 times','5 times and more'],rotation=50)\n", + "plt.title('Accounting Department')\n", + "plt.xlabel('Contact Times')\n", + "plt.ylabel('Rating')\n", + "accounting._legend.set_title(\"Location\")\n", + "sns.despine(left=True, bottom=True)\n", + "sns.set_style(\"white\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Barplot: HR Department**" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAcAAAAGqCAYAAACcSpRPAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzdeXRNZ//+8XemIyJCkESIIYbSiqihhrammIVElZpKlajW2FbVUBSVEqVVoo+xNc+zGp7yaNU8tEqNQVER0hJRiUSm8/vD1/lJKaFJzpF9vdbKWjl777P3J/fiXOfew33bmc1mMyIiIgZjb+0CRERErEEBKCIihqQAFBERQ1IAioiIISkARUTEkBSAIiJiSApAeSwBAQEsWLDgvuWRkZGUK1eOiIgIAKZMmUK5cuXS/VSsWJHGjRszc+bMf9z/3f3c/SlfvjxVq1bljTfe4ODBg1n2d2XUyZMn2bt3r9WOHxkZydatW612fJGcRAEoWaZ8+fLs3LnT8rN+/Xratm3LhAkT2LBhw0PfO3/+fHbu3Mn27dtZuHAhZcqUoWvXrvz000/ZVP2D9erVizNnzljt+EOGDLF6G4jkFApAyTIODg54eHhYfkqWLEmPHj2oVasWmzZteuh78+fPj4eHB15eXpQvX57hw4fToEEDQkNDs6l6EcnpFICS7UwmE/b2j/9Pr1OnThw7doyLFy8CEBcXx/Dhw6levTo1atSgX79+REdHW7YPCAjgm2++oV27dvj7+9OuXTuOHTtmWX/16lUGDBhAzZo18fPzo2HDhixfvjzd+8ePH0+9evWoW7cuQUFBXLp0iU8++YTOnTsDUK5cOTZs2EBQUBAVK1akQ4cOREZGMmrUKKpUqUKdOnVYs2aNZZ8ZqXnu3Ll07tyZSpUq0bJlS7Zt2wbA4MGD2b9/P19//TUBAQGP3X4ikp4CULJNSkoKy5cvZ9euXTRr1uyx31+mTBkATp8+DcCIESM4d+4cs2bNYv78+djZ2RESEkJKSorlPV9++SVBQUGsXr0aX19funXrRmxsLACDBg0iJiaGOXPmsGHDBgICAhg5ciR//vmn5f3Lly9n8uTJhIeHM2/ePAoXLsz777/PlClTLNtMnDiRoUOHsmzZMi5fvkzr1q1xdXVlxYoVNG7cmI8//pj4+PgM1zx58mTat2/PypUrKVmyJEOGDCEpKYmPPvqIypUr06FDB1asWPHY7Sci6TlauwB5+owbN46JEyemW/agIWVPnDhB5cqVLa8TExMpXrw4I0aMeKIAdHNzA+70oi5evMiGDRv48ccf8fLyAuCzzz6jRo0a7Nixg/r16wPQvHlzOnXqBMDo0aOpX78+GzdupGPHjtStW5f69etTrFgxAN555x3mzp3LhQsX8PDwAKBZs2b4+/tbanBwcCBPnjzkz5/fsqxjx47UrFkTgHr16vHDDz/w/vvvY2dnR9euXZk/fz6RkZG4uLhkqObAwEACAwMB6N27N9999x2XLl3C19cXJycncufOTYECBR67/UQkPQWgPLaePXsSFBSUbll0dLTltOBdZcqUITw8HLPZzK+//sqYMWNo0qQJ7dq1e6LjxsXFAZA3b17LjShNmzZNt01CQgLnzp2zhEm1atUs60wmE+XKlbP0IDt06MDmzZv55ptvOH/+PMePHwcgNTXV8p7ixYs/sq4SJUpYfs+dOzdFixbFzs4OgFy5cgGQlJREVFRUhmr29fW1rHN1dQVI10MUkcyhAJTH5u7unu5DH+70jP7OycnJsl3JkiVxc3PjrbfewtPTk9dff/2xj3vixAngznW348eP4+TkxOrVqy1hc1e+fPn+sa60tDQcHBwwm810796dP/74g8DAQGrVqkWZMmXuCydnZ+dH1uXomP6/0T9d30xNTc1QzU5OTve9V5O2iGQ+XQOUbFO3bl1eeeUVJkyYwKVLlx77/cuWLeP555+nSJEilCpViuTkZBISEihRogQlSpTAw8OD8ePHc/78ect77vbqAG7fvs2pU6coV64cZ86cYd++fcycOZO+ffvSqFEjbt68CWRd2GS0ZhHJHgpAyVYffvghuXLl4tNPP33odrGxsfz5559ER0dz/PhxRowYwdatWxkyZAhwJ0wCAgL48MMPOXjwIGfPnmXQoEEcPnyYUqVKWfazdOlS1q9fz9mzZxk+fDiOjo40a9YMNzc3HBwc2LBhA5cuXWLXrl0MGjQIuHO68p/kyZOHs2fPcu3atcf+2zNa88PkyZOHCxcupLtzVESejAJQslWBAgV4//332bp1K9u3b//H7Tp37szLL79MvXr1eOutt7h27RoLFy7k+eeft2wTFhaGn58fvXv3pk2bNty8eZOvv/7acrMMQJs2bfjmm29o3bo10dHRzJkzB1dXV7y8vBg9ejTLli2jWbNmjBkzho4dO1KuXLl0j0r8XZcuXVi7di3du3d/or8/IzU/TIcOHfj5558JCgoiLS3tiWoQkTvsNCO85FQBAQF069btia43ikjOpx6giIgYkgJQREQMSadARUTEkNQDFBERQ1IAioiIISkARUTEkBSAIiJiSApAERExJAWgiIgYkgJQREQMSQEoIiKGpAAUERFDUgCKiIghKQBFRMSQrBKAR44coVatWpbXSUlJDB8+nOrVq1OzZk2mT59ujbJERMRAHLPzYGazmRUrVhAWFpZu+ZQpUzh37hxbtmzh5s2bhISE4OXlRatWrbKzPBERMZBs7QFOnjyZxYsX884776Rbvnr1at5++23y5cuHj48P3bt3Z8mSJdlZmoiIGEy2BmD79u1ZtWoVfn5+lmV//fUXf/75J2XKlLEs8/X1JSIiIjtLExERg8nWAPTy8rpv2a1btwBwdna2LMudOzeJiYnZVpeIiBiP1e8CzZ07NwC3b9+2LEtISMDFxSXTjmFOScm0fWXHfkVEJOtl600wD5IvXz48PDz47bffLD3Ec+fOpTsl+m/ZOTpyeXR4pu3vLu8RfTJ9nyIikj2s3gMECAoKYurUqcTExBAZGcns2bMJCgqydlkiIpKD2UQA9u/fn7Jly9KiRQvatGlDkyZN6NChg7XLEhGRHMzObDabrV1EdtApUBERuZdN9ABFRESymwJQREQMSQEoIiKGpAAUERFDUgCKiIghKQBFRMSQFIAiImJICkARETEkBaBIFsuKQdM1ELvIv2f1wbBFcrqsGIxdoxCJ/HvqAYqIiCEpAEVExJAUgCIiYkgKQBERMSQFoIiIGJICUEQASEpJeyr2KZJZ9BiEiABgcrTn1TknMnWfK7s+m6n7E8lM6gGKiIghKQBFRMSQFIAiImJICkARETEkBaCIiBiSAlBERAxJASgiIoakABQREUNSAIqIiCEpAEVExJAUgCIiYkgKQBERMSQFoIiIGJICUEREDEkBKCIihqQAFBERQ1IA2hjNyi0ikj00I7yN0azcIiLZQz1AERExJAWgiIgYkgJQREQMSQEoOYpuIhKRjNJNMJKj6CYiEcko9QBFRMSQFIBiFUmpSdYuQUQMTqdAxSpMDiY6zAvI9P0u7rIt0/cpIjmTeoAiImJICsB/QafxRESeXjoF+i9kxWk8ncITEckeNtMD/OWXX2jTpg1Vq1alUaNGLF++3NoliYhIDmYTPcC0tDR69erFoEGDCA4O5siRI3Tq1ImKFStSvnx5a5cnIiI5kE30AG/cuMG1a9cwm82YzWbs7OxwdHTEycnJ2qWJiEgOZRMB6O7uzuuvv87gwYOpUKECbdq04b333qN06dLWLk1ERHIomwjAtLQ0TCYTEydO5PDhw8yfP5+pU6eyc+dOa5cmIiI5lE0E4HfffcehQ4cIDAzEycmJ6tWr8+qrr7J06VJrlyYiIjmUTQTglStXSEpK/0ydo6Mjjo42cY+OiIjkQDYRgC+99BKnT59m6dKlmM1mjh49yrJlywgMDLR2aSIikkPZRBerbNmyhIeH8+WXXzJ+/HgKFSrEgAEDaNiwobVLExGRHMomAhCgbt261K1b19pliIiIQdjEKVAREZHspgAUERFDUgCKiIghKQBFRMSQFIAiImJICkARETEkBaCIiBiSAlBERAxJASgiIoakABQREUNSAIqIiCEpAEVExJAUgCIiYkgKQJGnUFJq0qM3EpGHspnpkEQk40wOJjrMC8jUfS7usi1T9ydi69QDFBERQ1IAioiIISkARUTEkBSAIiJiSApAERExJAWgiIgYkgJQHsmckmLtEkREMp2eA5RHsnN05PLo8Ezdp/eIPpm6PxGRx6UeoIiIGJICUEREDEkBKCIihqQAFBERQ1IAioiIISkARUTEkBSAIiJiSApAERExJAWgiIgYkgJQREQMSQEoIiKGpAAUERFDUgCKiIghKQBFRMSQFIAiImJICkARETEkBaCIiBiSAlBERAxJASgiIoakABQREUNSAIqIiCEpAEVExJBsJgD/+OMPevXqRdWqVXnxxReZNGmStUsSEZEczGYCsFevXnh4eLB7926WLl3KmjVrWL9+vbXLEhGRHMrR2gUAHD58mIsXL7J48WKcnJwoVqwY8+fPJ1euXNYuTUREciib6AEePXqUZ555hvDwcGrXrk3Dhg3ZsmULnp6e1i5NRERyKJvoAd64cYOffvqJ6tWr87///Y/ffvuNkJAQPDw8aNmypbXLExGRHMgmeoAmkwlXV1f69u2LyWSifPnytGnThi1btli7NBERyaFsIgBLlSpFQkICSUlJlmWpqalWrEhERHI6mwjAl156iQIFChAWFkZSUhKnTp1i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8WzatIlXXnmF+fPnM3r06EytKSYmBrPZnKn7tCb1AEVEcohvv/2WZ599lpCQENavX8+NGzeAO7O19+jRg48++ogqVarQoEED9uzZw4gRI6hatSoNGjRg7969wJ2Q69mzJy+88AL16tVjyJAhJCYm8t///pfp06fzww8/EBQUBMCVK1fo3bs3NWrUoGHDhul6c4MHD+bdd98lICCAJk2akJyczO7du2nRogWVK1fm/fffJyEhwbL95cuX6d27N/Xq1cPf35+2bdty8uTJx67/cSgARURyiKVLl9K2bVtKly6Nn58fK1assKz78ccfqSdgxhkAACAASURBVFixIj/99BN169ale/fuVKhQgb1799K4cWPGjx8PwNSpU8mbNy+7d+9mzZo1HDt2jM2bN9OkSRN69uxJvXr1WLduHampqbz99tt4e3vz448/MmvWLBYvXsyaNWssx9y7dy8LFy5kxYoV3Lhxg969e9OtWzcOHDjAyy+/zK+//mrZ9qOPPsLb25stW7awf/9+ihcvbpmZ/nHqfxwKQBGRHODXX3/l8uXLNGnSBIAOHTqwcOFCy4S0Xl5etG/fHjs7O2rUqEGePHlo164dTk5O1KlTxzJfoKurK0ePHuW7777DbDazZs0aWrVqdd/xjh49yu+//87gwYPJlSsXJUuW5M0332TJkiWWbapXr463tzd58+blhx9+wMfHh9atW+Po6Ejr1q0pX768ZdvQ0FAGDBgAQFRUFPny5eOPP/6wrM9o/Y9D1wBFRHKApUuXcvPmTerXrw/cmYk9JiaGbdvuTN+UP39+y7YODg7kzZvX8tre3t4SlL1798be3p7w8HA++OADqlatyujRoylVqlS64126dImEhARq1qxpWZaWlpbuOJ6enpbfr169ipeXV7p9+Pj4WH4/f/48n332GZcvX6Z06dLkypUr3fXGjNb/OBSAIiJPubi4ODZs2MDMmTMpU6aMZfm0adOYP38+wcHB2NnZZWhfERERtG/fnv79+3P58mXGjh3L6NGj77tb09PTk4IFC7Jz507LspiYGBITEy2v7z2mp6cnUVFR6fYRHR0NQHJyMr169WLMmDEEBgYCMGfOHFavXv3AfWUWnQIVEXnKrVu3jsKFC1OrVi08PDwsP+3atWPv3r3pbjZ5lLlz5xIaGkp8fDwFCxbE2dmZfPnyAWAymbh58yYA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j6d06dIAbN++nVmzZgF3TosGBgbSvHlza5YpkmEKQCuaMmUK165dY+TIkZw9e5Y33niDTz/9lJMnT1KqVCkaNmxo7RJtmtove02fPp0pU6bQvn17hg0bZll+8+ZN7OzsAPQIhDxVdBOMFeXNm5fbt29z+/ZtevToQYcOHahTpw779u0jISHB2uXZPLVf9klLS6Nnz55MmTKFVatWMXjwYMs6V1dXy4/I00QBmE3uvYPurlKlSrF161ZatGhBw4YN6d27NwCRkZG6hvI3ar/sdbe9v//+e7744gs6duzIwoUL8fX1ZdGiRRw4cIAuXboQHx9v6f2JPG10CjSbLVu2jEuXLlGmTBlatmzJihUrGDZsGO+//z758uVjy5YtODo6Mm3aNGuXapPUflnPbDZjZ2fHwYMH6d27N926dSM2NpYDBw5QsmRJunXrhqenJ6+//jpubm4sXbpUIShPJQVgNlq6dClffPEFfn5+3Lx5E39/f7p06UJ0dDSzZ8/G3d2dwoUL069fP2uXapPUftknKSmJPn360KhRI9q2bQvAqVOnCA0NxcPDg4kTJ5KUlMTVq1cpUqSIlasVeTIKwCx27/NQYWFhBAYG4ufnx9q1a9m0aRP58uXjrbfestxVd/fbt9yh9rOO5ORkevToQePGjenYsWO6XuG7777L8uXL8fb2tnaZIv+KrgFmobsf3teuXWP69On8+uuvnDp1CoDg4GA6duxISkoK48ePZ9OmTVau1vao/bLP36+xOjk5Ubx4cY4fP86VK1csXyqKFi2Kt7f3A6/JijxtHEaOHDnS2kXkRGazGXv7O98vWrVqRUxMDL/99htms5k8efJQvHhxSpQogY+PD8ePH6d27dp4eXmp9/J/1H7Z62677dy5k6NHj2IymfD392fmzJn8+eefJCYmkitXLkaMGIGHh4fltKjI00ynQLPYunXr2L17N+PGjeOnn35i7ty52NnZ0bhxYxo1aoTJZCI+Pp48efJYu1SbpPbLPvPmzePzzz/nueee4+zZs3zxxReULFmSTz/9lN9//x0XFxeKFi3KxIkTrV2qSKbQUGiZ7Nq1azg6OpIvXz6WL1/OypUrKViwIGlpaVStWpVChQoxbdo01q9fz+XLl+nYsSMuLi7WLttmqP2y191hzq5fv84PP/zAggUL8PHxYe3atfTr149+/foRHh7OrVu3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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "hr = sns.catplot(x='#contact_HR_num', y='rating_HR',hue=\"location\", kind= \"bar\", data=df_copy, palette=(\"husl\"), ci=None)\n", + "\n", + "plt.xticks([0,1,2,3,4])\n", + "hr.set_xticklabels(['0 times','1-2 times','3-4 times','5 times or more'],rotation=50)\n", + "plt.xlim(0.5, 4)\n", + "plt.title('HR Department')\n", + "plt.xlabel('Contact Times')\n", + "plt.ylabel('Rating')\n", + "hr._legend.set_title(\"Location\")\n", + "sns.despine(left=True, bottom=True)\n", + "sns.set_style(\"white\");" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Barplot: Office Management Department**" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "image/png": "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jfD/gcnBRMd59dK0zcVdt6dpeyIi8mg6AhQREZukABQREZukABQREZukABQREZukABQREZukABQREZukABQREZukABQREZukABQREZukABQREZukABQREZukABQREZukABQREZukABQREZukABSLSK95D+MTkp6LNkXE8jQfoFhEesylCPfnU2wT/FeatrmyW5k0bS8txCfGY3IwWboMkeeaAlDkOaTJmEX+Ow2BioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITbKaAPzjjz9o27YtVapUoWHDhixfvtzSJYmISCZmFc8CTUpKonfv3gwcOJDAwECOHDlC586dKV++PKVLl7Z0eSIikglZxRHgrVu3uH79OoZhYBgGdnZ2ODo64uTkZOnSREQkk7KKAHRzc+PVV19l0KBBlC1blrZt29KvXz+8vb0tXZqIiGRSVhGASUlJmEwmJk2axOHDh5k/fz4zZ85k9+7dli5NREQyKasIwB9//JFDhw7RrFkznJycqF69Om3atGHp0qWWLk1ERDIpqwjAS5cuER8fn2KZo6Mjjo5WcY2OiIhkQlYRgLVr1+bvv/9m6dKlGIbB0aNHWbZsGc2aNbN0aSIikklZxSFWyZIlmTFjBl988QXjx48nb968fPjhhzRo0MDSpYmISCZlFQEIUKdOHerUqWPpMkRExEZYxRCoiIhIRlMAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAioiITVIAWpn4hKTnok0Rkeed1cwGIfeZHO1pE/xXmra5sluZNG1PRCQz0BGgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJAWgiIjYJKsJwCtXrtC7d2+qVKnCiy++yNSpUy1dkoiIZGJWE4C9e/fG3d2dPXv2sHTpUtasWcP69est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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "om = sns.catplot(x='#contact_OM_num', y='rating_OM', hue=\"location\", kind= \"bar\", data=df_copy, palette=(\"husl\"),ci=None)\n", + "\n", + "plt.xticks([0,1,2,3])\n", + "om.set_xticklabels(['1-2 times','3-4 times','5 times or more'],rotation=50)\n", + "plt.title('Office Management Department')\n", + "plt.xlabel('Contact Times')\n", + "plt.ylabel('Rating')\n", + "om._legend.set_title(\"Location\")\n", + "sns.despine(left=True, bottom=True)\n", + "sns.set_style(\"white\");" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "**Barplot: Satisfaction by Gender & Location**" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sat_gender_loc = sns.catplot(x=\"gender\", y=\"satisfaction_score\", hue=\"location\", kind=\"bar\", data=df, palette=(\"husl\"), ci=None)\n", + "\n", + "plt.title('Satisfaction by Gender & Location')\n", + "plt.xlabel('Gender')\n", + "plt.ylabel('Satisfaction Score')\n", + "sat_gender_loc._legend.set_title(\"Location\")\n", + "sns.despine(left=True, bottom=True)\n", + "sns.set_style(\"white\");" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### *Other plots*" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "hoverlabel": { + "namelength": 0 + }, + "hovertemplate": "location=%{x}
satisfaction_score=%{y}
age_category=%{marker.color}", + "legendgroup": "", + "marker": { + "color": [ + 2.367088607594937, + 2.202247191011236, + 1.8461538461538463 + ], + "coloraxis": "coloraxis" + }, + "name": "", + "offsetgroup": "", + "orientation": "v", + "showlegend": false, + "textposition": "auto", + "type": "bar", + "x": [ + "Amsterdam", + "Boston", + "New Delhi " + ], + "xaxis": "x", + "y": [ + 7.5006010890318935, + 7.523005461050782, + 8 + ], + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "coloraxis": { + "colorbar": { + "title": { + "text": "age_category" + } + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ] + }, + "height": 600, + "legend": { + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "rgb(36,36,36)" + }, + "error_y": { + "color": "rgb(36,36,36)" + }, + "marker": { + "line": { + "color": "white", + "width": 0.5 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "white", + "width": 0.5 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "rgb(36,36,36)", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "rgb(36,36,36)" + }, + "baxis": { + "endlinecolor": "rgb(36,36,36)", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "rgb(36,36,36)" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "line": { + "color": "white", + "width": 0.6 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "rgb(237,237,237)" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "rgb(217,217,217)" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowhead": 0, + "arrowwidth": 1 + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "rgb(103,0,31)" + ], + [ + 0.1, + "rgb(178,24,43)" + ], + [ + 0.2, + "rgb(214,96,77)" + ], + [ + 0.3, + "rgb(244,165,130)" + ], + [ + 0.4, + "rgb(253,219,199)" + ], + [ + 0.5, + "rgb(247,247,247)" + ], + [ + 0.6, + "rgb(209,229,240)" + ], + [ + 0.7, + "rgb(146,197,222)" + ], + [ + 0.8, + "rgb(67,147,195)" + ], + [ + 0.9, + "rgb(33,102,172)" + ], + [ + 1, + "rgb(5,48,97)" + ] + ], + "sequential": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "sequentialminus": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ] + }, + "colorway": [ + "#1F77B4", + "#FF7F0E", + "#2CA02C", + "#D62728", + "#9467BD", + "#8C564B", + "#E377C2", + "#7F7F7F", + "#BCBD22", + "#17BECF" + ], + "font": { + "color": "rgb(36,36,36)" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "white", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "white", + "polar": { + "angularaxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + }, + "bgcolor": "white", + "radialaxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "white", + "gridcolor": "rgb(232,232,232)", + "gridwidth": 2, + "linecolor": "rgb(36,36,36)", + "showbackground": true, + "showgrid": false, + "showline": true, + "ticks": "outside", + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + }, + "yaxis": { + "backgroundcolor": "white", + "gridcolor": "rgb(232,232,232)", + "gridwidth": 2, + "linecolor": "rgb(36,36,36)", + "showbackground": true, + "showgrid": false, + "showline": true, + "ticks": "outside", + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + }, + "zaxis": { + "backgroundcolor": "white", + "gridcolor": "rgb(232,232,232)", + "gridwidth": 2, + "linecolor": "rgb(36,36,36)", + "showbackground": true, + "showgrid": false, + "showline": true, + "ticks": "outside", + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + } + }, + "shapedefaults": { + "fillcolor": "black", + "line": { + "width": 0 + }, + "opacity": 0.3 + }, + "ternary": { + "aaxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + }, + "baxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + }, + "bgcolor": "white", + "caxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside", + "title": { + "standoff": 15 + }, + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + }, + "yaxis": { + "automargin": true, + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside", + "title": { + "standoff": 15 + }, + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "location" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "satisfaction_score" + } + } + } + }, + "text/html": [ + "
\n", + " \n", + " \n", + "
\n", + " \n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Satisfaction score and age category in three locations\n", + "px.bar(data_frame =df.groupby('location').mean().reset_index(),\n", + " y='satisfaction_score',\n", + " x='location',\n", + " color='age_category',\n", + " template='simple_white')" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "hoverlabel": { + "namelength": 0 + }, + "hovertemplate": "location=%{x}
satisfaction_score=%{y}
seniority_category=%{marker.color}", + "legendgroup": "", + "marker": { + "color": [ + 2.8734177215189876, + 2.662921348314607, + 2.6923076923076925 + ], + "coloraxis": "coloraxis" + }, + "name": "", + "offsetgroup": "", + "orientation": "v", + "showlegend": false, + "textposition": "auto", + "type": "bar", + "x": [ + "Amsterdam", + "Boston", + "New Delhi " + ], + "xaxis": "x", + "y": [ + 7.5006010890318935, + 7.523005461050782, + 8 + ], + "yaxis": "y" + } + ], + "layout": { + "barmode": "relative", + "coloraxis": { + "colorbar": { + "title": { + "text": "seniority_category" + } + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ] + }, + "font": { + "size": 25 + }, + "height": 600, + "legend": { + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "rgb(36,36,36)" + }, + "error_y": { + "color": "rgb(36,36,36)" + }, + "marker": { + "line": { + "color": "white", + "width": 0.5 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "white", + "width": 0.5 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "rgb(36,36,36)", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "rgb(36,36,36)" + }, + "baxis": { + "endlinecolor": "rgb(36,36,36)", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "rgb(36,36,36)" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "line": { + "color": "white", + "width": 0.6 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + }, + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "rgb(237,237,237)" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "rgb(217,217,217)" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowhead": 0, + "arrowwidth": 1 + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 10, + "tickcolor": "rgb(36,36,36)", + "ticklen": 8, + "ticks": "outside", + "tickwidth": 2 + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "rgb(103,0,31)" + ], + [ + 0.1, + "rgb(178,24,43)" + ], + [ + 0.2, + "rgb(214,96,77)" + ], + [ + 0.3, + "rgb(244,165,130)" + ], + [ + 0.4, + "rgb(253,219,199)" + ], + [ + 0.5, + "rgb(247,247,247)" + ], + [ + 0.6, + "rgb(209,229,240)" + ], + [ + 0.7, + "rgb(146,197,222)" + ], + [ + 0.8, + "rgb(67,147,195)" + ], + [ + 0.9, + "rgb(33,102,172)" + ], + [ + 1, + "rgb(5,48,97)" + ] + ], + "sequential": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "sequentialminus": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ] + }, + "colorway": [ + "#1F77B4", + "#FF7F0E", + "#2CA02C", + "#D62728", + "#9467BD", + "#8C564B", + "#E377C2", + "#7F7F7F", + "#BCBD22", + "#17BECF" + ], + "font": { + "color": "rgb(36,36,36)" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "white", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "white", + "polar": { + "angularaxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + }, + "bgcolor": "white", + "radialaxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "white", + "gridcolor": "rgb(232,232,232)", + "gridwidth": 2, + "linecolor": "rgb(36,36,36)", + "showbackground": true, + "showgrid": false, + "showline": true, + "ticks": "outside", + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + }, + "yaxis": { + "backgroundcolor": "white", + "gridcolor": "rgb(232,232,232)", + "gridwidth": 2, + "linecolor": "rgb(36,36,36)", + "showbackground": true, + "showgrid": false, + "showline": true, + "ticks": "outside", + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + }, + "zaxis": { + "backgroundcolor": "white", + "gridcolor": "rgb(232,232,232)", + "gridwidth": 2, + "linecolor": "rgb(36,36,36)", + "showbackground": true, + "showgrid": false, + "showline": true, + "ticks": "outside", + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + } + }, + "shapedefaults": { + "fillcolor": "black", + "line": { + "width": 0 + }, + "opacity": 0.3 + }, + "ternary": { + "aaxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + }, + "baxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + }, + "bgcolor": "white", + "caxis": { + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside", + "title": { + "standoff": 15 + }, + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + }, + "yaxis": { + "automargin": true, + "gridcolor": "rgb(232,232,232)", + "linecolor": "rgb(36,36,36)", + "showgrid": false, + "showline": true, + "ticks": "outside", + "title": { + "standoff": 15 + }, + "zeroline": false, + "zerolinecolor": "rgb(36,36,36)" + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "location" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "satisfaction_score" + } + } + } + }, + "text/html": [ + "
\n", + " \n", + " \n", + "
\n", + " \n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Satisfaction score and seniority category in three locations\n", + "fig = px.bar(data_frame =df.groupby('location').mean().reset_index(),\n", + " y='satisfaction_score',\n", + " x='location',\n", + " color='seniority_category',\n", + " template='simple_white')\n", + "\n", + "fig.update_layout(font=dict(size=25))\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "alignmentgroup": "True", + "hoverlabel": { + "namelength": 0 + }, + "hovertemplate": "gender=Female
location=%{x}
satisfaction_score=%{y}", + "legendgroup": "gender=Female", + "marker": { + "color": "#636efa" + }, + "name": "gender=Female", + "offsetgroup": "gender=Female", + "orientation": "v", + "showlegend": true, + "textposition": "auto", + "type": "bar", + "x": [ + "Boston", + "New Delhi ", + "New Delhi ", + "New Delhi ", + "New Delhi ", + "Amsterdam", + "Boston", + "Boston", + "Amsterdam", + "Amsterdam", + "New Delhi ", + "New Delhi ", + "Boston", + "Boston", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Boston", + "Amsterdam", + "Amsterdam", + "Boston", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Boston", + "Boston", + "Amsterdam", + "Amsterdam", + "Boston", + "Amsterdam", + "Boston", + "Boston", + "Boston", + "Boston", + "Boston", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Boston", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Boston", + "Boston", + "Amsterdam", + "Boston", + "Boston", + "Boston", + "Amsterdam", + "Amsterdam", + "Boston", + "Boston", + "Amsterdam", + "Boston", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Boston", + "New Delhi ", + "Amsterdam", + "New Delhi ", + "Boston", + "Boston", + "Amsterdam", + "Boston", + "Amsterdam", + "Amsterdam", + "Boston", + "Boston", + "Amsterdam", + "Boston", + "Amsterdam", + "Amsterdam", + "Boston", + "Amsterdam", + "Boston", + "Amsterdam", + "Amsterdam", + "Boston", + "Boston", + "Boston", + "Boston", + "Amsterdam", + "Boston", + "Amsterdam", + "Boston", + "Boston", + "New Delhi ", + "Boston", + "Boston", + "Boston", + "Boston", + "Boston", + "Boston", + "Boston", + "Boston", + "Boston", + "Boston" + ], + "xaxis": "x", + "y": [ + 8, + 8, + 7, + 5, + 10, + 9, + 9, + 9, + 9, + 7, + 8, + 8, + 8, + 9, + 9, + 8, + 8, + 8, + 9, + 10, + 7, + 8, + 7, + 8, + 8, + 8, + 6, + 3, + 7, + 8, + 10, + 7, + 7, + 7, + 8, + 9, + 7.5474860335195535, + 10, + 8, + 9, + 7, + 9, + 9, + 7, + 9, + 8, + 7, + 8, + 7, + 7, + 9, + 7, + 9, + 9, + 8, + 9, + 6, + 10, + 3, + 8, + 6, + 7, + 9, + 8, + 10, + 8, + 8, + 10, + 6, + 9, + 7, + 5, + 7, + 8, + 6, + 7, + 6, + 6, + 4, + 8, + 8, + 7, + 9, + 5, + 7, + 5, + 7, + 7, + 5, + 4, + 7, + 9, + 10, + 10, + 8, + 10, + 9, + 8, + 7.5474860335195535, + 10, + 7, + 6, + 8, + 8, + 6 + ], + "yaxis": "y" + }, + { + "alignmentgroup": "True", + "hoverlabel": { + "namelength": 0 + }, + "hovertemplate": "gender=Male
location=%{x}
satisfaction_score=%{y}", + "legendgroup": "gender=Male", + "marker": { + "color": "#EF553B" + }, + "name": "gender=Male", + "offsetgroup": "gender=Male", + "orientation": "v", + "showlegend": true, + "textposition": "auto", + "type": "bar", + "x": [ + "Amsterdam", + "Amsterdam", + "Boston", + "New Delhi ", + "Boston", + "Boston", + "Boston", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Boston", + "Amsterdam", + "Boston", + "Boston", + "Boston", + "Boston", + "Amsterdam", + "Boston", + "Amsterdam", + "Boston", + "Boston", + "Boston", + "Boston", + "Boston", + "Boston", + "Amsterdam", + "Amsterdam", + "Boston", + "Amsterdam", + "Boston", + "Boston", + "New Delhi ", + "Amsterdam", + "Boston", + "Amsterdam", + "Amsterdam", + "Boston", + "Boston", + "Boston", + "Boston", + "Boston", + "Amsterdam", + "Boston", + "Boston", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "New Delhi ", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Boston", + "New Delhi ", + "Boston", + "Boston", + "Amsterdam", + "Amsterdam", + "Boston", + "Boston", + "Amsterdam", + "Amsterdam", + "Boston", + "Amsterdam", + "Amsterdam", + "Amsterdam", + "Boston", + "Amsterdam", + "Boston", + "Amsterdam", + "Boston", + "Boston", + "Boston", + "Amsterdam", + "Boston", + "Amsterdam" + ], + "xaxis": "x", + "y": [ + 10, + 8, + 8, + 8, + 9, + 8, + 7, + 8, + 9, + 7, + 6, + 3, + 6, + 8, + 8, + 9, + 9, + 6, + 9, + 8, + 7, + 6, + 6, + 9, + 10, + 9, + 9, + 8, + 8, + 8, + 6, + 10, + 9, + 8, + 8, + 9, + 8, + 7, + 9, + 7, + 6, + 3, + 6, + 5, + 9, + 8, + 8, + 8, + 8, + 9, + 8, + 8, + 8, + 7, + 3, + 3, + 7, + 8, + 7, + 7, + 3, + 7, + 6, + 3, + 8, + 4, + 5, + 5, + 7, + 4, + 8, + 10, + 9, + 10, + 9, + 10 + ], + "yaxis": "y" + } + ], + "layout": { + "barmode": "group", + "height": 600, + "legend": { + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "anchor": "y", + "domain": [ + 0, + 1 + ], + "title": { + "text": "location" + } + }, + "yaxis": { + "anchor": "x", + "domain": [ + 0, + 1 + ], + "title": { + "text": "satisfaction_score" + } + } + } + }, + "text/html": [ + "
\n", + " \n", + " \n", + "
\n", + " \n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Gender diversity of three locations\n", + "fig = px.bar(data_frame= df,\n", + " x = \"location\",\n", + " y = \"satisfaction_score\",\n", + " color = \"gender\",\n", + " barmode=\"group\")\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "image/png": "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OW/mzJlq2bKlGjVqpN69e2v37t2SpGeffVaS1KpVK+3YsUNXrlzRxIkT1bx5czVt2lRvvvmmkpOTJd18RrZPnz4KDw9XgwYN1LZtW0VHR9vxWhcc33//vR5//HH1799f3333nS5evCjp5v/BgAEDNGbMGNWvX19t2rTR1q1bNW7cODVo0EBt2rTRtm3bJN0sroMGDdITTzyh1q1bKzw8XNevX9cPP/ygGTNmaMOGDQoNDZUknTx5UkOHDlWjRo3Utm3bbM8yjh49Wq+99ppCQkL09NNPKy0tTVu2bFHHjh0VGBio119/PVupOXHihIYOHarWrVurTp066tGjh/744w+r8+PuevbsqfHjx991lTQjI0NffPGF2rRpo0aNGmn48OFKTk5WZmamGjdurF9//VXSzVdqBAQEaMWKFZKk1NRUBQYG6s8//7xvhlKlSmny5MlKS0vT0qVL73ncnGRmZurf//635X4pKirKcl5ISIh+/PFHq34mALJLSEjQyy+/rCeeeELt2rWzPBEl3VxN+vzzz9WlSxfVq1dPAwcO1O7du9W9e3cFBgaqf//+SklJkXTv+/TbxcbGKjQ0VA0bNlSvXr20b98+u1xXIC+0a9dO33//fbZtK1as0NNPP51t2w8//KBnn31WQUFBeuKJJxQeHp7j2/hu3LihiIgItWrVSs2aNdO4ceNYSDIQpdZBJSQk6JdfflFISIgkafPmzRo7dqzGjh2r7du3q0+fPho0aJCSkpIUFxen2bNn69tvv9XWrVsVFBSkjz/+WJK0ZMkSSdLGjRsVGBiocePGKT4+XsuXL9eaNWt048YNvfnmm5bjbtmyRXXr1tX27ds1aNAgTZo0SZcuXbL/DyCfi4mJUY8ePVS1alXVqlUr24r8pk2bVLt2bf3+++9q1aqV+vXrp5o1a2rbtm166qmn9MEHH0iSoqKiVLRoUW3ZskXLly/X3r17tXr1aj399NMaNGiQWrdurZUrVyojI0ODBw9WuXLltGnTJn355ZdauHChli9fbjnmtm3bNH/+fC1evFgXL17U0KFD1bdvX/36669q3ry59uzZY7nsmDFjVK5cOa1du1a//PKLKlWqZPl9syY/7u75559X/fr1NWrUqBxX3OfOnauVK1dqzpw52rhxo3x8fDRixAg5OzurRYsW+vnnnyXdvD17eHhYngD77bffVK5cOT3yyCO5yuHq6qrmzZtbSvLdjpuTK1eu6MaNG1q3bp0+++wzffbZZ0pISHiQHweA21y5ckV9+vRRixYttGXLFn3wwQeKiIjQb7/9ZrnMggUL9Nlnn2nDhg36448/9Nprr+njjz/W+vXrlZSUpGXLlkm6/336LXv27FFYWJjCw8O1bds2Pf/88+rbty+PEWAazzzzjHbt2mV5wjgtLU1r1qxRhw4dLJc5duyYRo4cqfDwcP3yyy9avHix1q9fn+MTsR9++KHi4uK0ZMkSrV69WufOndN7771nt+uD7Ci1DuQf//iHGjZsqHr16qlDhw4qV66cateuLenmM0mhoaFq3LixXF1d1aFDBzVo0ECrVq1SkSJFdOXKFS1dulSHDh3SsGHDcny9/40bN/TDDz8oLCxMpUqVkpeXl95++21t3rzZcgP39fVVr1695Orqqi5duig1NVUnTpyw548h39uzZ49OnDhheWbw+eef1/z585WZmSlJKlOmjHr16iUnJyc1atRIRYoUUc+ePeXm5qaWLVvqr7/+kiR5eXkpLi5Oa9asUVZWlpYvX64uXbrccby4uDglJSVp9OjR8vDwUOXKldWnT59sq/BBQUEqV66cihYtqg0bNqhixYrq1q2bXF1d1a1bN1WvXt1y2UmTJumNN96QJB0/flzFixfX6dOnLefnNj/ubdKkSTp48GCOt+Vvv/1W//rXv1SpUiV5enrqzTff1K+//qojR44oODhYW7ZskSRt3bpVzz77rKXUbty40fJEWW6VKFFCly9fvu9xb+fq6qoRI0bI1dVVQUFBKlWqFP/3wAMICwtTw4YNLX8GDRqkjRs3ysvLS/369ZObm5vq1KmjZ599VgsXLrT8u27dusnPz0/e3t6qUaOG2rRpo0qVKsnb21v16tWz3B7vd59+y+LFixUaGqomTZrI1dVVnTt31iOPPKLVq1fb5wcBPKTixYurefPmWrVqlSTpp59+Us2aNVWyZEnLZXx9ffX999+rYcOGunz5spKTk1WiRIk7bhNZWVlatGiRRo4cqVKlSqlo0aJ64403tGzZMqWmptr1euEmV6MD4P8sWLBAjz/+uCTpwoULev/99/Xyyy9r+fLlSk5OVrVq1bJdvkKFCjpx4oSqVKmiqKgozZkzR59//rlKliypoUOHqkePHtkuf/HiRaWlpal8+fKWbb6+vnJ3d7cU17/fsN3c3CTJUraQN2JiYnT58mXLewozMzOVnJysdevWSZK8vb0tl3VxcVHRokUtp52dnS3/H0OHDpWzs7OmTZumsLAwNWjQQBMnTpS/v3+24x07dkzXrl1T48aNLdsyMzOzHad06dKWv589e1ZlypTJto+KFSta/n7kyBF9+OGHOnHihKpWrSoPD49sq4m5zY97K1mypCZNmqThw4eradOm2c47fvy4xowZo3Hjxlm2ubq66tixY2rRooVGjx6tixcvauvWrZo7d65WrFihY8eOacOGDVZ/gNj58+ct9xn3Oq6ra/ZxUqhQIbm7u1tOu7u7Kz093apjA5AiIyPVtm3bbNtmzZqlpKSkbB/IlpGRoZo1a1pOlyhRwvJ3Z2dnFStWLNvpW/fF97tPv+X48ePavn27pRBIUnp6uo4fP/7wVxKwk9DQUM2cOVN9+/bVypUr7/ggNDc3Ny1ZskSLFy+Wp6enatSooRs3btxxm0hOTtb169fVt29fOTk5WbbfmolVqlSxy/XB/6HUOihvb2/1799fnTp1UnJyssqVK3fHKsdff/2levXq6fTp0/Lx8dFXX32la9euafXq1Ro9erSaN2+e7fKlSpWSu7u7jh07Jl9fX0k3v+4nNTVVJUuWVGJiot2uX0GVkpKiVatWadasWXr00Uct27/44gvNmzdPnTt3znbneC8HDx5Ur169NHz4cJ04cUIRERGaOHHiHSt7pUuXVsmSJbV582bLtlt3xrf8/ZilS5e+40HK31+qM2TIEL333nuWl+t89dVXlpex3b4vPJzg4GB17dpVYWFhKly4sGV76dKlNW7cOLVo0cKy7eDBg6pcubLc3d1Vt25dxcTEyNXVVZUqVVJQUJC+/fZbXb58WXXr1s318TMyMrR582YNGjTovsfdsWNHHlxjALlRunRp1apVSzExMZZtp06dsvr+Nzf36X8/5ksvvWRZ1ZVuFuJSpUo94LUA7C84OFhjx47V7t279dtvv2nKlCnZHv+uWrVK3333nZYsWWJ5gv/W55P8nbe3t9zc3LRo0SLLYkJqaqqOHj2qSpUq2efKIBtefuygrl69qujoaFWuXFklSpRQly5d9N1332nbtm3KyMjQqlWr9Ouvv+qZZ57RoUOH1L9/fx08eFCFChVSyZIl5e7unm2l5PLly3J2dlZoaKg++ugjnTt3TikpKZo0aZICAwPl5+dn8DUuGFauXKmyZcuqSZMm8vX1tfzp2bOntm3bZtWnzH799deaNGmSrly5opIlS8rT01PFixeXdHNV7NZLRuvUqSMvLy9Nnz5dqampSk5O1pAhQ/Tpp5/muN+QkBCdO3dOCxYsUHp6ur7//nvLe2pTU1N148YNeXp6SpL27t2ruXPn8j3INjR69GilpaVp586dlm1dunRRVFSUTpw4oYyMDM2cOVO9e/e2PFERHBys2bNnW1bnGzdurK+//lqtW7eWs3Pu7vZPnTqlUaNGqXDhwpZnsu93XAD20apVKyUlJWnp0qVKT0/X0aNH9c9//jNbyc0Na+7Tu3TposWLF2vXrl3KysrS1q1bFRoaqri4uDy5ToA9eHh46KmnnlJ4eLhat24tDw+PbOdfvnxZLi4ucnd3V1pamubNm6cDBw7ccZtwcXFRaGioIiMjdf78eaWmpmrKlCkaPHiwPa8O/oZS60B69epl+Q66Vq1a6fjx45oxY4acnZ3VsGFDvfvuu3r33XfVsGFDffnll4qKilK1atXUpEkTDRo0SIMGDVK9evU0efJkffLJJ/L29pavr6+Cg4PVvn17bdiwQeHh4apatao6d+6s1q1by8XFRdOmTTP6qhcYMTEx6tix4x3bH3vsMdWsWVMRERG53ld4eLgyMzMVHBysxo0b69KlS3rrrbckSa1bt9aff/6pVq1ayd3dXTNnztTu3bvVokULtW/fXo8++mi2l5D+nbe3t2bMmKFFixapYcOGWrZsmeXlr0WKFNHEiRP1zjvvqEGDBgoPD1fPnj11/PhxXbly5QF+IrifQoUKKTIy0vJ2AEkaOHCgmjRpot69e+uJJ57QunXrNHv2bMvLC4ODg3XhwgVLqW3SpImuXbt23/fT/v0+qFevXipcuLDmzp1recB7v+MCsA9vb299+eWXWrZsmZo0aaLnn39ebdu21ZAhQ6zajzX36U888YTlAyvr16+vCRMmaOLEidne2gKYQadOnZSQkJDjdzB37dpVNWrUUNu2bdWyZUtt27ZNHTt2VHx8/B2Xfeutt1S2bFl17txZTZs21ZEjRzRr1iy5uLjY42rgNk5ZfJklAAAAAMCkWKkFAAAAAJgWpRYAAAAAYFqUWgAAAACAaVFqAQAAAACmRakFAAAAAJgWpRYAAAAAYFqUWsDB/PXXXwoICNDBgwdtepwrV65o0aJFltOjR4/Wq6++atNjAgCA3Fu/fr0CAgKMjgE4PFejAwAwxpw5c7Ru3Tr16NFDkjRmzBjxtdUAAAAwG0otUEDdXmCLFi1qUBIAAADgwfHyY8CBpaam6tNPP1VISIhq166t559/Xrt27bKcf/36db3//vtq1qyZGjRooFdeeUWnTp2SJF29elUTJkxQ8+bNVbNmTbVq1UrTp0+XJC1dulTTpk3T3r17FRAQoL/++uuOlx9v3rxZPXr0UL169RQcHKwvv/zSUoSXLl2qbt26adasWWrevLkaNWqksLAwXb161Y4/HQAA7O/48ePq16+f6tWrp6eeekoxMTGWlwifOXNGw4cPV2BgoJo3b64xY8bo8uXLln8bEBBgmaF169ZVjx49tGPHDsv5f/75p15++WXVrVtXnTt3VkJCQrZj32v/t96+NH36dDVq1EgDBgyww08DcAyUWsCBTZw4UUuWLNH48eO1fPlyVatWTX369NHp06clSePHj1dsbKw+/PBDffvtt0pNTdVrr70mSZo8ebJ27typ6dOna/Xq1XrxxRc1depUxcXFqX379urbt6+qV6+uzZs3q1y5ctmO++uvv2rgwIEKDg7WsmXLNGLECE2fPl0LFiywXObgwYP6/fffNWfOHL333ntau3atoqOj7ffDAQDAztLT0zVw4EA5Ozvr22+/1ejRozV16lTL+cOGDVNWVpZiYmL0+eefKykpSSNGjMi2j3//+98aPny4YmJi5ObmpnHjxkmS0tLSNHDgQBUqVEhLlizR0KFDNWvWrGz/Njf737Bhg6KjozVy5Egb/RQAx8PLjwEHdenSJS1dulQff/yxWrVqJUmaMGGCfv/9d82fP1/9+/fX999/r6lTp6pp06aW82NiYpSamqr69eurZ8+eqlmzpiSpf//+ioqKUkJCgmrVqqXChQvLxcVFvr6+dxx73rx5atGihYYMGSJJqlKlik6ePKkvvvhCvXv3lnRz+L777rvy9fVVtWrV1KJFC+3du9cePxoAAAyxbds2HTlyRHPnzpWPj48ee+wxDRs2TBMmTNC2bdt04MABzZ07V+7u7pKkyMhItWzZUgcPHtRjjz0mSXrhhRcsc71fv34aMmSIUlNTtXXrVh0/flwxMTHy9vbWo48+qiNHjuijjz6yHPte+y9cuLAk6aWXXlKVKlXs/aMBDEWpBRxUZmamMjIyFBgYaNnm7OyswMBAxcfH6/Dhw0pPT1ft2rUt5/v5+SksLEySFBoaqvXr12vFihU6cuSI9u/fr6tXryozM/O+x46Pj1doaGi2bQ0aNNBHH32kS5cuSZKKFCmSrRB7eXnx8mMAQL524MABVahQQT4+PpZtt+Z0QkKCrl27pkaNGt3x7w4fPmwptZUrV7Zs9/LyknRzBTg+Pl7ly5eXt7e35fy/z/j77f/Wk9h+fn4PcQ0Bc6LUAg6qWLFiOW7PyspSZmam5VlaJyenHC/31ltvacuWLerSpYu6dOmiCRMmqHPnzrk6tqenZ47HlWQpxW5ubrnaFwAA+YWrq+tdvykgPT1d5cuX15w5c+44r2TJkpa/5zQ/77bPv1/2fvu/cOGCpJxnOJDf8Z5awIG5ubll+wCJrKws7dq1S/7+/qpYsaJcXFy0b98+y/nHjh1TUFCQjh07phUrVmjKlCl6/fXX1b59e7m5ueny5cuWwXm3MixJ/v7+2rlzZ7ZtO3bsUMmSJVW8ePE8vpYAAJjDY489puPHjys5Odmybc+ePZKkqlWr6vTp0ypSpIgeeeQRPfLII3Jzc9PkyZOzXf5uAgICdOzYMZ09e9ay7e8z/mH3D+RnlFrAQTk7O+uFF15QRESENm7cqEOHDundd9/V0aNH9dxzz8nLy0vdu3dXRESEfv31VyUkJGj8+PEKCPh/7N15XFSF/v/xNzuIpVJoN7MMEk3FRM1cMhXFTFPTa0ZX7VZoV7tX066lZGqrmlnfm2vadjMXzC1tF8G1LL+lpbjgAibl1xXMUJBlzu8Pc35NgjLOwJnDvJ6PR4/knDOHD3MOvn1zZg71VbNmTYWEhCg5OVlZWVn6/vvv7TeXKCgokCRVqVJFJ06cUFZWloqKihw+96BBg7Rx40bNmjVLBw8e1Geffaa5c+dq4MCBlyzDAABUZq1atVJkZKQSExO1d+9ebdy40X6jqLZt26pevXoaOXKk0tLStGfPHj311FPKyspS7dq1L7vv1q1bKyIiQqNHj1Z6errWr1+vuXPn2te7un+gMqPUAh7swlXWxMRE9enTR3v37tW8efPs78cZM2aM7rjjDv3rX/9SfHy8QkND9T//8z8KCAjQa6+9pq+//lrdu3fX6NGj1bZtW7Vv395+M6e7775boaGh6tatm8NPgiXp1ltv1fTp0/XFF1/o3nvv1euvv67HH39cQ4YMqeinAAAAj+Hj46MZM2YoPz9ff/3rX/XSSy/p/vvvV0BAgHx9fTV79mxVr15dDz30kAYMGKDq1atr7ty58vPzu+y+/f399dZbb8nf318PPPCAJk6cqEceecS+3tX9A5WZj1Hai/gBAAAA2J08eVLbt29Xx44d7cs+//xzTZ06VSkpKSZOBng3rtQCAAAAZeDj46Phw4fr3Xff1c8//6zvv/9eM2bMUPfu3c0eDfBqXKkFAAAAymjt2rX6z3/+o8zMTFWrVk29evXSE088wW8FAExEqQUAAAAAWBYvPwYAAAAAWBalFgAAAABgWZRaAAAAAIBlUWoBAAAAAJZFqQUAAAAAWBalFgAAAABgWZRaAAAAAIBlUWoBAAAAAJZFqQUAAAAAWBalFgAAAABgWZRaAAAAAIBlUWoBAAAAAJZFqQUABPuswgAAIABJREFUAAAAWBalFgAAAABgWZRaAAAAAIBlUWoBAAAAAJZFqQUAAAAAWBalFgAAAABgWZRaAAAAAIBlUWoBAAAAAJZFqQUAAAAAWJa/2QO4Q35+vtLS0hQeHi4/Pz+zxwEAWFhxcbGOHz+uxo0bKzg42OxxLItsBgC4y+WyuVKU2rS0NPXv39/sMQAAlciCBQvUokULs8ewLLIZAOBupWVzpSi14eHhks5/kdddd53J0wAArOzIkSPq37+/PVtwZchmAIC7XC6bK0WpvfCypuuuu0433HCDydMAACoDXjLrGrIZAOBupWUzN4oCAAAAAFgWpRYAAAAAYFmUWgAAAACAZVFqAQAAAACWRakFAAAAAFgWpRYAAAAAYFmUWgAAAACAZZlSardv367WrVvbPy4oKNC4cePUsmVLtWrVSnPmzDFjLAAAvBbZDMCqsrOzNWbMGOXk5Jg9CkxSoaXWMAwtWbJEjz76qAoLC+3Lp0+frszMTCUnJ2vp0qVasWKFPvroo4ocDQAAr0Q2A7C6pKQk7dq1S0lJSWaPApNUaKmdNm2aFi1apKFDhzosX7FihYYMGaJq1arphhtuUEJCAiclAAAVgGwGYGXZ2dlKSUmRYRhas2YNV2u9lH9FfrL4+Hg98cQT+vbbb+3LTp8+rePHj+uWW26xL7v55pu1d+/eihztiqSmpio5Odlt+zt16pQkqXr16m7bpyTFxcUpNjbWrfv0VO4+JlL5HBdvOiYS3yueiO8VXGDVbHb1HHbH+cr5CU84DyXvPheTkpJks9kkSTabTUlJSRf9kM4beMK5aOZ5WKFXamvVqnXRsrNnz0qSgoOD7ctCQkKUn59fYXN5iuzsbGVnZ5s9Bv6E4+J5OCaeieNiTd6azZyv8ASch65bt26dioqKJElFRUVau3atyRNZk9XPxQq9UluSkJAQSdK5c+fsy/Ly8lSlShWzRiqz2NhYt/40IjExUZI0adIkt+3T27j7mEgcF3fge8Xz8L2CS7FCNrt6DnO+wh04D83XoUMHJScnq6ioSP7+/urYsaPZI5nC289F03+lT7Vq1RQeHq6MjAz7sszMTIeXPAEAgIpDNgOwivj4ePn6nq80vr6+io+PN3kimMH0UitJPXv21MyZM5Wdna2ff/5Z77zzjnr27Gn2WAAAeC2yGYAVhIWFqVOnTvLx8VHnzp1Vo0YNs0eCCTyi1D7xxBOqV6+e7r33XvXt21d33323HnzwQbPHAgDAa5HNAKwiPj5eDRs25CqtFzPlPbV33HGHvvvuO/vHQUFBmjBhgiZMmGDGOAAAeD2yGYBVhYWFafLkyWaPARN5xJVaAAAAAACuBKUWAAAAAGBZlFoAAAAAgGWZ/ntqK9Jbb73l8OsJPM2F2S78nihPFRERocGDB5s9BgAAAAB4V6nNyMhQ2q50+QVXN3uUEtmK/CRJuzOOmjxJ6YrzT5k9AgAAAADYeVWplSS/4OqqclMns8ewrLM/pZg9AgAAAADY8Z5aAAAAAIBlUWoBAAAAAJZFqQUAAAAAWBalFgAAAABgWZRaAAAAAIBlUWoBAAAAAJZFqQUAAAAAWBalFgAAAABgWZRaAAAAAIBlUWoBAAAAAJZFqQUAAAAAWBalFgAAAABgWZRaAAAAAIBlUWoBAAAAAJZFqQUAAAAAWBalFgAAAABgWZRaAAAAAIBlUWoBAAAAAJZFqQUAAAAAWBalFgAAAABgWZRaAAAAAIBlUWoBAAAAAJZFqQUAAAAAWBalFgAAAABgWR5Tajdv3qw+ffooJiZGvXv31qZNm8weCQAAr0Y2AwCswCNK7c8//6yhQ4eqd+/e2rJli8aNG6d///vf2rdvn9mjAQDglchmAIBVeESp3bBhgyIiIjRw4EAFBASoWbNm6tq1q5YvX272aAAAeCWyGQBgFf5mDyBJhmEoJCTEYZmfn58OHjxozkCAl3vrrbeUkZFh9hilujBbYmKiyZNcWkREhAYPHuyWfXn6MZGscVzceUwqu/LOZrPPaU85X808J1NTU5WcnHzFjz916pQkqXr16i7NERcXp9jYWJf2caU4D8+z8nkouedc9ObzUPKMc9GV89AjSu1dd92lqVOnatWqVbrnnnu0c+dOffrpp2rUqJHZowFeKSMjQzvTd8mvWqDZo5TI5lssSdpzZL/Jk5Su+NcCt+4vIyNDe3fu1LV+fm7drzsF2mySpOw9e0yepGQniovNHsFSyjubMzIylLYrXX7BrhWiK2UrOv+9tDvjqCmfX5KK80+Z9rndITs7W5LrpdZMZuedJ+SZu/PKDFY/FzMyMrR7V7pCQ8JMm8FWdL4WHso8bsrnP5OX7dLjPaLU1qlTR7NmzdKrr76ql19+2X5DiiNHjpg9GuC1/KoFqtpd15s9hmX9uuGw2/d5rZ+fel1lzcD2BCt/s3aBqGgVkc1+wdVV5aZObtuf1Zz9KcXUzx8bG+vSlakLV3QmTZrkrpFM4e15Vx555QxXz0OpcpyLoSFhahTZ1ewxTLPzwBcuPd4jSm1ubq5q1Kjh8D6dJ598kiu1AACYhGwGAFiFR9wo6tSpU+rXr5+2bdumoqIiffnll/rqq6903333mT0aAABeiWwGAFiFR1ypveGGG/Tyyy/r6aef1okTJ1S/fn3NnTtX4eHhZo8GAIBXIpsBAFbhEaVWknr06KEePXqYPQYAAPgd2QwAsAKPePkxAAAAAABXglILAAAAALAsSi0AAAAAwLIotQAAAAAAy6LUAgAAAAAsi1ILAAAAALAsSi0AAAAAwLIotQAAAAAAy6LUAgAAAAAsi1ILAAAAALAsSi0AAAAAwLIotQAAAAAAy6LUAgAAAAAsi1ILAAAAALAsSi0AAAAAwLIotQAAAAAAy6LUAgAAAAAsi1ILAAAAALAsSi0AAAAAwLIotQAAAAAAy6LUAgAAAAAsi1ILAAAAALAsSi0AAAAAwLIotQAAAAAAy6LUAgAAAAAsi1ILAAAAALAsSi0AAAAAwLIotQAAAAAAy6LUAgAAAAAsi1ILAAAAALAsjym1P/zwg/r27avmzZsrLi5OS5YsMXskAAC8GtkMALACf7MHkCSbzabHH39co0ePVq9evbR9+3b1799f0dHRatCggdnjAQDgdchmAIBVeMSV2l9//VUnT56UYRgyDEM+Pj7y9/dXQECA2aMBAOCVyGYAgFV4xJXaGjVqaMCAARozZoyeeeYZFRcXa+zYsYqMjHTr58nJyVFx/imd/SnFrfv1JsX5p5STE+i2/b311lvKyMhw2/7Kw4X5EhMTTZ6kdBERERo8eLDb9peTk6OiU+f064bDbtuntyk6dU45QTlu219OTo5OFBVp5W+n3LZPb3OiqEg+Oe47JpVdeWczmex6ppqdoZ6Sj65kIHnnel6NHz9e6enpbpzIefn5+ZKkBx54wLQZ6tevrxdeeOGKHpuTk6PTZ45pS9pCN09VdjbDJkny9THnmmexrUg5OVdeTT2i1NpsNgUGBuq1115Tly5dtG3bNg0bNkwRERG68847zR4P5SgjI0P7du/UdVU94lQsUcjv3+S/ZZn7F3ZpjuQWmT0CgEqIbPZ8ZmeoJ+QjGWi+Y8eOKe/sWZn5Gg6f3/9fdPasKZ+/UOefhytVs2ZN5Zj8Q9cLPxgICjbrSAaoZs2aV/xoj2gSq1ev1rZt2zR69GhJUsuWLfXXv/5Vixcvdmtw1qhRQ0dyClTlpk5u26e3OftTimrUqOHWfV5X1V+PNAlz6z69yXvbs92+zxo1aujouZOqdtf1bt+3t/h1w2G3fq/UqFFDxtGj6nVVdbft09us/O2U2//+qszKO5vJZPdkqrdnqKsZSN65nlfkk+v5cqVXeN3pwisuJk2aZPIkV8Yj3lN75MgRFRQUOCzz9/eXv79HdG4AALwO2QwAsAqPKLVt27bVvn37tHjxYhmGobS0NH344Yfq3r272aMBAOCVyGYAgFV4xI9b69WrpxkzZuiNN97QlClTdO211+rf//63OnfubPZoAAB4JbIZAGAVHlFqJal9+/Zq37692WMAAIDfkc0AACtw+uXH+/fvV3Jyss6ePausrCwZhlEecwEAgDIimwEA3qzMV2pzc3M1cuRIbdy4Ub6+vvryyy81adIkZWVl6a233tJ1111XnnMCAIA/IZsBAHDiSu3kyZNVUFCg9evXKygoSJL07LPP6uqrr9bEiRPLbUAAAFAyshkAACdK7bp16/T000+rVq1a9mXXX3+9xo0bp2+++aZchgMAAKUjmwEAcKLUnj17VsHBwRctLy4uls1mc+tQAADg8shmAACcKLXt2rXT9OnTVVhYaF+WnZ2tV155RW3atCmX4QAAQOnIZgAAnCi148aN05EjR3THHXcoPz9fjzzyiDp06KDc3FyNHTu2PGcEAAAlIJsBAHDi7sdBQUFKSkrSN998owMHDqioqEiRkZFq27atfHx8ynNGAABQArIZAAAnSm3Pnj01Y8YMtWrVSq1atSrPmQAAQBmQzQAAOPHyY0n8MncAADwM2QwA8HZlvlLbrVs3JSQk6J577tGNN95o/314F/Tv39/twwEAgNKRzQAAOFFqP//8c4WGhmrDhg0XrfPx8SE4AQCoYGQzAABOlNrU1NTynAMAADiJbAYAwIlSK0knTpzQ/PnztX//ftlsNkVGRqpfv36qU6dOec0HAAAugWwGAHi7Mt8oavv27br77ru1Zs0a1ahRQ2FhYVq3bp169uypHTt2lOeMAACgBGQzAABOXKmdPHmyunfvrueff97hd9+98MILmjJlij744INyGRAAAJSMbAYAwIkrtWlpaXr44Ycv+mXuAwYMUFpamtsHAwAAl0Y2AwDgRKkNDw/XL7/8ctHyrKwshYaGunUoAABweWQzAABOlNpevXpp/PjxSk5O1rFjx3Ts2DGtXr1azz33nHr27FmeMwIAgBKQzQAAOPGe2iFDhujYsWMaMWKEbDabJMnPz08DBw7UyJEjy21AAABQMrIZAAAnSm1gYKBeeukljR49WpmZmQoKCtINN9zAy5sAADAJ2QwAgBMvP87NzdXTTz+tBQsWqEmTJqpfv766d++uZ555Rnl5eeU5IwAAKAHZDACAE6X2hRde0P79+9WuXTv7silTpig9PV2TJ08ul+EAAEDpyGYAAJwotevXr9fEiRPVqFEj+7KWLVvqhRde0OrVq8tlOAAAUDqyGQAAJ0qtJBUUFJS4vLCw0C3DAAAA55DNAABvV+ZS27FjRz3//PPau3evfdmBAwf04osvqn379uUyHAAAKB3ZDACAE3c/TkxM1D//+U/17NlTgYGB8vHx0blz53TnnXfq2WefLc8ZAQBACchmAACcKLXVqlXT/PnztX//fu3fv18BAQGqW7euIiMjy3M+AABQCrIZAAAn31N76NAhXXfdderatatCQ0O1YMECffTRR+U1GwAAuAyyGQDg7cpcaj/66CN17dpVO3bsUGZmpoYMGaLdu3dr0qRJmjt3bnnOCAAASkA2AwDgRKmdO3euxo0bp9atW2v58uWq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tdd07bXXavz48eU5IwAAKAHZDACAE1dqDx48qDfeeEMRERFq2LChzp49q27duikgIECzZ89W9+7dy3NOAADwJ2QzAABOXKkNDg6Wr+/5zevWrav09HRJUqNGjZSZmVk+0wEAgFKRzQAAOFFqW7RooVmzZun06dOKjo5WcnKyCgsLtWXLFu66CACACchmAACcKLWjR4/Wjh07tGzZMt17773Ky8tT8+bNlZiYqIEDB5bnjAAAoARkMwAATpTaunXras6cOerevbtCQkL01FNPKTw8XCNHjtRjjz1WnjMCAIASkM0AADhRaj/66CN17dpVBw4cUGZmpp544gnVrFlT77zzjubOnVueMwIAgBKQzQAAOFFq586dq2effVatW7fW8uXLVadOHS1atEhTp05VUlJSec4IAABKQDYDAOBEqc3KylLHjh0lSevWrbP/OTIyUidPniyf6QAAQKnIZgAAnCi1f/nLX5Senq709HTt27fPHpxfffWVateu7fIgS5cuVaNGjRQTE2P/b8WKFS7vFwCAyopsBgApOztbY8aMUU5OjtmjwCT+Zd0wISFBw4YNk5+fn9q0aaOYmBjNnj2P5XgYAAAgAElEQVRbM2fO1Msvv+zyILt27dIjjzyiUaNGubwvAAC8AdkMAFJSUpJ27dqlpKQkDR061OxxYIIyl9oHHnhA0dHROnz4sNq1aydJat68uRYuXKgmTZq4PMjOnTv10EMPubwfAAC8BdkMwNtlZ2crJSVFhmFozZo1io+PV40aNcweCxWszKVWkho2bKiGDRvaP27ZsqVbhiguLlZ6erpWrlypSZMmKSQkRPfff78GDx4sHx8ft3wOAOZJTU1VcnKy2/aXkZEhSUpMTHTbPiUpLi5OsbGxbt0nUN7IZgDeLCkpSTabTZJks9m4Wuulyvye2vKUnZ2txo0b67777lNqaqqmTZumRYsWaeHChWaPBsADhYWFKSwszOwxgEqNbAZgBevWrVNRUZEkqaioSGvXrjV5IpjBqSu15SU8PFzz58+3f3zrrbdqwIABWr16tfr372/iZADcITY2liuggMWQzQCsoEOHDkpOTlZRUZH8/f3tN8yDd/GIK7X79u3TtGnTHJYVFhYqKCjIpIkAAPBuZDMAK4iPj5ev7/lK4+vrq/j4eJMnghk8otReffXVeu+99/Thhx/KZrMpLS1NH3zw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mjZtqi5dumjx4sWqX7++/bHHjx/XE088oZiYGN15550aO3asfvvttzJ/7l9++UWPP/64mjVrpjZt2uill15SYWGhJOngwYMaMmSIWrRoocaNG+vee+9VSkqKJGnMmDHasmWL3n33XcXGxkqScnNzNW7cOLVs2VJ33HGHhg8frqNHj9o/16+//qoRI0aoWbNmat++vZYvX66GDRvq559/liT99ttvevHFF9WuXTvddtttSkhIUEZGhv3x9evX13/+8x+1adNGPXv21KBBg/TUU085fD0zZszQgAEDnHn6AQCV2OLFixUXF6fGjRura9eu+uijjyRdPrNiY2P1/vvva+DAgbrtttvUo0cPpaamOqy/8PJhwzA0b9483X333YqOjlavXr20fv16+7YDBw7Uc889p3vuuUetW7fWgQMH7I9fvny5ZsyYoZ07d6p+/fravn276tevr59++sn++Pz8fMXExOibb74p09f8xRdfqGfPnmrSpIm6d+/u8FahVatWqUePHmrcuLGaNWumIUOG6Pjx45KkTp06SZJ69Oih6dOnS5J+/PFHxcfHKzo6Wl26dNFbb70lm81m39/mzZvVq1cvNWnSRH/72980bdo0DRw40L5+x44deuihh+z/Tnn11Vft/85Yvny5evfurVGjRqlZs2aaOXOmGjZsqM2bNzt8PXFxcVq2bFmZvnbgSlBqARedOXNGgwcP1q233qqVK1fqww8/VGhoqCZMmKCioiI99thj8vX11YcffqgxY8bojTfecHj8sGHDZBiGFi9erNmzZ+vQoUMaOXJkmT53QUGBHn30UZ07d04LFizQ9OnTlZqaqhkzZsgwDA0ZMkShoaFavHixVq5cqaioKD3zzDMqKCjQ2LFjFRMTowcffFBLly6VJI0fP16ZmZl6++239cEHH8jHx0eDBg1SUVGRJOnJJ59UVlaW5s2bp1dffVVvvvmmiouL7fMMHz5c3377rV5//XV9+OGHCgoKUkJCgvLy8uzbfPzxx3r//ff1yiuvqFevXkpJSVF+fr59/aeffqoePXpc8fEAAFQeO3fu1IsvvqgxY8boyy+/1MCBAzVmzBgdPHjwspklSdOmTVN8fLyWLVumunXrKjExUQUFBRd9njfffFPTp0/X8OHDtWrVKnXu3FlDhw7Vnj177NssXbpUzzzzjObMmaPIyEj78m7duunRRx9VgwYNtGnTJjVq1Eh169bVp59+at8mJSVFV111lVq2bHnZr3nz5s0aOXKkevXqpY8//lj9+vXTiBEjtH//fm3dulXPPPOMEhIS9OWXX2rmzJnas2eP3nzzTUmyv6/3gw8+0KOPPqqTJ08qISFB7dq108cff6yxY8dq4cKFevvttyVJWVlZ+sc//qH27dvro48+0t133605c+bYZ8nMzNTAgQN1yy23aOnSpXrxxRe1cuVKvf766/Ztdu3apdDQUK1YsUK9e/dWq1at9Mknn9jX//DDDzp69Ki6dOly2a8duGIGAJecOHHCmDt3rlFYWGhf9sUXXxgNGjQwNm7caDRq1Mg4efKkfd3ChQuNqKgowzAMY/PmzUbTpk2Nc+fO2dcfOXLEiIqKMtLT0y/7udeuXXvR/jds2GAsWLDAOHv2rPH2228bOTk59nU7duwwoqKijMOHDxuGYRgDBgwwJk+ebBiGYRw6dMiIiooyjhw5Yt/+3LlzRtOmTY3U1FQjIyPDiIqKMnbv3m1fv379eiMqKsrIysoy0tPTjaioKGP79u329WfOnDFatmxpLF682DAMw4iKijLmzJljX3/27FmjadOmxueff24YhmGkpaUZjRo1cpgZAOC9Vq9ebURHRztkz6ZNm4y0tLRLZpZhGEbHjh2NcePG2dfv3r3biIqKMjIyMuzrP/jgA8Nmsxl33HGH8fbbbzt87oSEBOPJJ580DON8Xj766KMO6y883jAMY9q0aUbv3r3t66ZPn250797d/vE//vEPe95ezrBhw4zHH3/cYdmsWbOM7du3Gzt37jSWL1/usO6FF14wHnroIcMwDCMrK8vh3xBvvPGG8fDDDztsv2rVKqNly5aGYRjGa6+9Ztx3330O60eMGGEMGDDAMAzDmDx5snHvvfcaNpvNvv7TTz81GjVqZJw5c8ZYtmyZERUVZRw7dsy+fsWKFcbtt99uFBQUGIZhGC+++KIxbNiwMn3twJXiPbWAi6655hrdf//9WrBggfbs2aODBw9q9+7dstlsSk9PV+3atR3edxMTE2P/8/79+5WXl6c77rjjov1mZmZe9iYP+/fvv2j/7dq1s//5wQcf1CeffKK0tDRlZmZq165dkuRwdfWP+5Kkrl27OizPy8tTZmamzp07p8DAQIeXTv/5awkICFDjxo3ty6pUqaKGDRtq37599mV16tSx/zkkJERdunTRZ599pq5du+qTTz7RXXfdperVq1/y6wYAeId27dqpWbNm6tWrl+rVq6cOHTqoT58+9pf2lpZZHTt2lCTdfPPN9nVVq1aVJIcruZJ08uRJ5eTkqGnTpg7Lmzdvri+++ML+8Y033ljmuXv16qXp06dr7969qlmzpjZt2qQnnniiTI89cODARa9YGjp0qP3PwcHBmjFjhjIyMnTgwAHt27dPzZs3L3Ff+/fv15YtWxzy2mazKT8/Xzk5OUpPT1d0dLTDY5o2bWp/ufO+fft02223ycfHx76+efPmKiwstB+DkJAQhYeH29fHxcXpueee06ZNm3TXXXfp888/1/PPP1+mrx24UpRawEXHjh1Tnz59FBkZqbvuuks9evTQyZMnNWrUKPn7+1/ypg1FRUW6/vrr9d5771207pprrrns5w4ICCh13dmzZ9WvXz8FBQUpLi5OsbGxqlKlisP7ZP6ouLhYAQEBWrFihUN4SVK1atX03XffXfJrCQoKKnG5YRgOjwsODnZY37NnTw0dOlS5ubn67LPPNGbMmFI/BwDAuwQHB+u9997T1q1btXbtWq1bt87+FphLZdYFJeXkn7Psz7n0x+3++N7T0rYrSZ06dRQTE6PPPvtM119/vW666SbdeuutZXpsQEDARV/TBV9//bUee+wxde/eXbfffrsefvhhrVq1Sunp6SVuX1RUpC5dumjEiBEXrbvqqqvk7+/v8DX+WUlf84Xn78Lj/pz/oaGh6tSpkz777DMFBgaqoKBAd911V6mfA3AH3lMLuCg5OVmBgYH673//q4SEBLVp00ZHjhyRJEVFRenw4cPKzs62b79jxw77nyMjI3Xs2DGFhobqpptu0k033aSAgABNnjzZ4TGlqVu3rg4fPqxTp07Zl3300Ufq27evtmzZooMHD2rhwoUaMmSIOnTooBMnTkgq+e6IERERKiwsVF5enn2W8PBwTZkyRQcPHlS9evVUWFjoEJx//loKCwuVlpZmX5aXl6c9e/Y4/KT8z1q3bq1q1arpnXfeUW5urv2mVQAAfPvtt5o9e7aaN2+uUaNG6ZNPPlHDhg21ZMmSS2aWM6pWraqaNWvqhx9+cFi+bds2RURElGkfJZXQnj17au3atUpNTXXqXhF169bVzp07HZYlJCTov//9r5KSktStWze98sorevDBB9WkSRP99NNP9lz/8xyRkZHKyMiwP0c33XSTDhw4oJkzZ8rX11f16tW76HP9Odt//PFHh383bN26VQEBAZe8ct2zZ09t2LBBa9asUdeuXRUYGFjmrx+4EpRawEXVq1fXiRMntG7dOv38889avny5Zs+eLen8y3MjIyOVmJiovXv3auPGjQ43imrbtq3q1aunkSNHKi0tTXv27NFTTz2lrKws1a5d+7Kf+84779RNN92kMWPGaO/evfruu+80ffp0tW/fXtWrV1dhYaE+++wz/fLLL0pOTtbEiRMlyX6TjNDQUP300086evSoIiIiFBsbq6efflrfffedDhw4oNGj/x97dx4XVb3/cfwNjCwuKZRp7mIlLliouW+Iu4lLLpTaZnaxMrVUIrdruWeboqld62aamLvdNhHX0ureshQ1N+yKmftKCgic3x9e5xeyyMgMM4d5PR8PHw85czjzZoaZD+/5zhKlX375RYGBgapatapCQ0M1btw47d69Wz/99JNef/11SdeHaLVq1dShQwe9+uqr+s9//qMDBw4oKipKXl5e6tq1a64/g6enpx5++GEtXLhQHTp0yHXFFwDgfvz8/DRnzhx9+umn+v3337Vt2zYlJiaqc+fOec4sWz377LOaN2+ePv/8c/3222+aO3euvvnmm1yf3XSz4sWL68yZM0pKSrI+vblLly46fPiwduzYoYcffjjfWZ544glt2LBBixcv1tGjR7Vo0SL9+9//VsuWLVWmTBnt2rVLe/bs0ZEjR/T2229r69at1rlevHhxSdK+fft0+fJl9e/fX//97381adIkJSYmavv27Ro/frz8/Pzk6empRx99VIcPH9bbb7+tI0eOaOnSpfryyy+tWR577DEdO3ZMr7/+ug4fPqwtW7Zo+vTp6tGjh0qVKpXrz9CiRQtZLBatXLmSN39EoaDUAgXUuXNn9e3bV6+88orCw8O1bNkyTZo0SR4eHtqzZ49iYmKUkpKiRx55RJMmTVKfPn2sT4fy9PTUe++9pzJlyujxxx/XgAEDVKZMGS1YsEBeXl63PG8vLy/NnTtXGRkZ6tOnj4YPH67OnTtryJAhevDBBzVixAi9+eab6tq1q+bMmaOoqCiVLl3a+qjso48+qp9++knh4eHKzMzU9OnTVbduXT3//PPq3bu3Ll++rA8++EB33HGHJGnKlCkqV66cBgwYoOHDh6tn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qVOVnp6ukydPKiMjQ9L1N6FIS0vTnj179PDDDzssJAAAyI7ZDACADaV206ZNio6O1sWLF7OddscddzA4AQAoZMxmAABsePfjt956S82bN9fy5ctVokQJLVq0SG+++abuuusujR8/3pEZAQBADpjNAADYsFL722+/6d1331VgYKBq166tK1euqEuXLipWrJjee+89de3a1ZE5AQDATZjNAADYsFLr6+srT8/ru1erVk379++XJNWpU0dHjhxxTDoAAJArZjMAADaU2oYNG2ru3Lm6dOmSgoODFRcXp2vXrumHH37gXRcBAHACZjMAADaU2qioKO3evVsrV67Uww8/rKtXr6pBgwaKjo7WwIEDHZkRAADkgNkMAIANpbZatWqaP3++unbtKj8/P40aNUply5bViBEj9OyzzzoyIwAAyAGzGQAAG0rtmjVr1KlTJx0+fFhHjhzRsGHDdPfdd2vhwoVasGCBIzMCAIAcMJsBALCh1C5YsEBjx45V06ZNtWrVKlWuXFlLly7VzJkzFRsb68iMAAAgB8xmAABsKLVJSUkKDQ2VJG3evNn6/xo1aujs2bOOSQcAAHLFbAYAwIZSe88992j//v3av3+/Dh48aB2c3377rSpWrFjgICtWrFCdOnUUEhJi/bd69eoCHxcAgKKK2QwAgGTJ746DBg3S0KFD5eXlpWbNmikkJETvvfee5syZo8mTJxc4yN69e/XUU09p5MiRBT4WAADugNkMAIANpbZfv34KDg7W8ePH1bJlS0lSgwYN9Mknn6hevXoFDrJnzx49/vjjBT4OAADugtkMAIANpVaSateurdq1a1u/btSokV1CZGRkaP/+/Vq7dq2mTp0qPz8/9enTR4MHb64towAAIABJREFUD5aHh4ddzgP2Fx8fr3nz5uW5T2pqqtLT0+1yfhaLRT4+PnnuExkZqbCwMLucHwCYAbMZwO3YuHGj4uLi7Ha8xMRESVJ0dLTdjtm+fXu1bdvWbsdD0WVTqXWUc+fOqW7duurRo4diYmJ0+PBhPffccypRooT69+/v7HgAALgdZjMAWwQEBDg7AtyYS5TasmXLavHixdava9WqpQEDBmj9+vUMThcWFhbGqigAFFHMZqBoa9u2LaugKDLy/e7HjnTw4EHNmjUry7Zr167d8qmmAADAMZjNAACzcIlSe8cdd+jDDz/Up59+qszM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1NatWwvd7unpqSZNmuiBBx6wvH/HjBmjV155RfXr11eNGjX05JNPKiMjQ3v27ClxG1erVk3vvPOODh8+rLCwMD388MPq3bu36tSpI0nq37+/+vfvr6SkJPXr10/33XefGjVqpKCgIH311VeFXue33nqrateuXeh1npWVpdq1a6tOnTp6+umntXPnTmVkZKhjx45atGiRWrRoIXd3d915551q167dZZ9HV6px48Z6++23tXjxYnXs2FHvvvuuBgwYYPm9CjjSe7BAWV8nf17/zw1swf/t+Tug8qWmpqphw4aFljVs2FAnT54s9j6ffPKJxo0bp2nTpqlXr15X9LheXl6W/7u6uhZ6j7m6uio/P19paWm6cOGCRo0apbZt26pt27YaPHiw3NzcdOzYMT300EO666679NZbb6lDhw76xz/+oaSkpCvK4whs+blS8JUN6dLn9Z8bo4LtK1064d2aNWss27dt27aKj4/X8ePHdcstt2jevHnasWOHBg4cqPDw8DI1GpWprPtNZVGZ2yw1NVUeHh66/vrrLcsaNmyo7OxspaamStJlR7xdad6yvMf//FjHjx/X5MmTLb9b586dLe+5ilRan1GUsn5+XbhwQU8//bRmzJhR7B8JysOZP7/cKvwRHNiOHTs0e/bsQt8py87Ovmwnz8/PT8ePH9eFCxcsf2lMSkoqdChcZfniiy+UkpJiaazOnTun6dOnKyYmRs8//7xDZpakhIQEffnll3rkkUcsy3Jycgod4ik5Vm5fX19lZWUpOzvbMquZl5d32XqVmTk6Olp33XVXocOG/+zUqVNavHix0tPTLesVbOdt27YpNTVVQ4YMUX5+vs6dOycXFxe1bdtW69evt2SOjo6+bGfuiy++0NGjRxUaGirp/zcJe/bs0WeffaYTJ04UOsTZxcVFrq6ucnNzK3E7XnvttfLx8VFSUpJlNiY5Odmy7d577z0dPXpU06dPt4ydnZ2ta665RgcPHtSYMWO0bt06y47Rn9+/ixcvVmBgoNq2bWt5zLy8vMtmqP8qPz9fZ8+e1bx58+Tu7i5JWrlypZo3by7p0l9Pd+zYUej3zcnJkbu7u7KysjR37lzL69zPz0+///673NwufdT+/e9/1zXXXKOWLVta8rq5ualmzZratGmTzp49qwEDBhQa96/vkSuVmZkpLy+vQp93TzzxhOX3KuBI78ECpb1O/urWW29VcnKygoODJV3K7+Pjc9lnO65uDRo0uGxn9ejRo8UenjdnzhytWbNG7733nuVzo6LUrVtX7u7u+uSTT+Tr6yvp0ufBkSNHdNNNNykuLk5Dhw7Vo48+qhMnTigyMlIzZsxwuNnEsvLz87sse1JS0hXN3hR1lFJRbrjhBt1333168sknLcsOHjyo66+/XikpKfL29tbixYuVlZWlr776Ss8++6w6duyoG2+8sdyZKkJZ95vKojK3WYMGDZSdna3Tp09bjig8cuSI3N3dLV9dKi1PWfOW5T3+57FuuOEGPffcc+rUqZNl2f79+4s8HNgWytpnFKWsn1+xsbE6fPiw5ei6gv2rtm3b6t13362QzzJH/fyq0jO1t99+u06dOqVFixYpLy9PP//8s/773/9e9iVrX19fNW3aVK+//rqys7P1448/Kjo6Wr179670zF999ZV+/vln7dy5Uzt37pS/v7+mTZtWqKF1tMySVKdOHS1atEgff/yx8vPzFRsbq48++kgDBw502NyhoaHy9vbWnDlzlJ2drfj4eH366aeXNXyVmXn37t1q06ZNsbfXrVtXn332mTZv3qxWrVrp4MGDeueddzRw4ED169dPu3fv1s6dO/Xzzz/rpptuUs2aNfX999/r8OHDio6O1t13362YmJjLHmPmzJnatWuX5XU3bNgw9e7d23IodlhYmD744AMdPHhQOTk5evfdd1WtWjUFBweXuh379u2refPmKS0tTUePHtXChQvVt29fSVJwcLDWrVunnTt3Kjc3V6tWrdKJEycUHh6um266SR4eHvrPf/6jnJwcJSYmauHChbrnnnskSceOHdOLL76olJQUXbhwQbNnz9bNN998WRP3V66urnr88ce1dOlSGWMUFxen+fPna/jw4ZKkjIwMbd26Vfv379fy5cu1YMECZWRkaOfOnerZs2eh1/n58+ctJ5HKzs7W9ddfr+3bt6tLly5KT0/XnDlz1K9fP3l4eCg/P18ss9IUAAAgAElEQVSzZs1STEyM8vLy9Nlnn2nXrl0lfj+mPDIyMjR48GDt2rVLubm5+vrrr/Xdd99dtlPpSO/BPyvpdVLUuh988IGOHTumtLQ0vfnmm5aTpuDq5u7ubrlMVv/+/bVkyRLFxcUpJydHCxcuVFpaWpFHurz//vtav369Vq1aVepOoIeHh7Kzsy+beSyPatWqqW/fvnrllVeUnp6u7OxszZkzR+PGjZMkffjhh5o1a5bOnTun6667TtWrV7/sXAbO5I477pAxRosXL1ZOTo6++OILxcfHF3m5Oanw83il+vfvr08//VS7d++WMUY//PCD+vbtq9jYWB04cEAPPPCA9u/frxo1aui6666Th4fHZecdsKey7jcVcJRtVq9ePbVv314vvviiMjMzdebMGb366qu68847S/2j8pXkLet7vGD9efPm6cSJE8rLy9OCBQs0fPjwCvtqSln7jAJX8vnVtm1bxcTEWPbPCg5P37lzZ5GfZVf151fln3DZscTGxpqhQ4eaNm3amF69elkuB7Ju3TrTunVry3rHjx83o0ePNm3atDERERHmiy++sFfkQvr27Wu5pI+jZ/7+++/NgAEDTOvWrU1YWJhZunSpMcaxcx8+fNiMGTPGhISEmI4dO5r333/fGGO/zK1atTK7du0qtOyvWfbu3WuaNm1qWrVqZUJDQ80bb7xh8vLyLltv1apVpkWLFoUyp6amGn9/f5OSklJijhdeeKHQJX0uXrxoXn75ZdO5c2fTtm1bc//995uEhATL7cVtR2OMuXDhgnn++edN+/btzR133GFee+01k5+fb7n9s88+Mz169DDBwcFmxIgRZt++fZbbDh06ZEaPHm2Cg4NN9+7dzbJlyy4bt0OHDqZ169bmX//6lzl27Nhlv8t///vfQpf0MebS58KgQYNM69atTY8ePczq1astt+Xn55s33njDhISEmICAAHP77bebrl27mo8//tgYc+nSM02bNrW8zufNm2d5bYSHh5v77rvPtGvXzoSGhpqZM2ea8+fPW8ZeunSpiYiIMK1atTIDBgwwP/74Y4nPQ3mtX7/edOvWzbRu3doMGTLE/PLLL8YYx3wP/vWyA6W9Tlq3bm3WrVtnjDEmLy/PvPHGG6Zjx46mbdu2ZsqUKebixYuV/jvAtspyKYp3333XtGrVyrz66qvGGGMWLVpkec0PHTrU7N69u8j7hYSEmGbNmpnWrVsX+vfnz5sC586dM4MHDzatWrUy+/btMyNGjDCLFi0yxphC/zfGmAcffNDMnTvX8vPEiRPNCy+8YIwx5vfffzfTp083nTp1MsHBwWbUqFEmOTnZGHPpkmQPPfSQ+dvf/maCgoLM2LFjzcmTJ8u6qRxSfHy8GTp0qGndurXp3bu3+f7774td98/P458/o//6eR0VFWXCwsIsP//1NfL555+b3r17Wz7L/3wZsIULF5quXbuaVq1ambvuusshL4dT3H5TURxpm50+fdo88cQTpl27diYkJMQ899xzJjMz0xhjzNy5c82DDz5Y7O9R3rzFvcePHDli/P39zdmzZy3rZmdnm//85z8mLCzMBAUFmSFDhhT7mWArxfUZRbnSz68/27t3b4mX9LmaP79cjCniNGoAAAAAADiBKn34MQAAAADAudHUAgAAAACcFk0tAAAAAMBp0dQCAAAAAJwWTS0AAAAAwGnR1AIAAAAAnBZNLWADR48e1caNGy0/h4eHa+nSpaXeLz8/X88++6xatWqlsLAwq3NERUXpxIkTkqTt27crICBA586ds3pcAACczQ8//KBBgwZJkrKzsxUYGKjff/+9Qh9z3759+vHHH20y1l/3Lezl3Llz+uSTT+wdAygRTS1gA5MmTdJPP/1k+fnTTz/V3//+91Lvt2vXLq1Zs0Zz587VihUrrMpw7NgxPfzww5aCHRQUpG3btqlmzZpWjQsAgDP69ddf1bx5c0lSXFycGjZsqGuuuaZCH3P8+PFKTEy0yVh/3bewl0WLFlm9jwJUNDd7BwCuRt7e3mVar6AB7dy5s1xcXKx6TGNMoZ89PDzk4+Nj1ZgAADirPXv2KDQ0VJIUGxurwMBAOydyTn/dvwAcETO1wJ+sWrVK3bt3V2BgoHr27Km1a9dKkg4ePKhx48apbdu2CgwMVO/evRUdHS1JevbZZ7Vjxw598MEHCg8Pl1T48OOEhASNHDlSQUFBateunSZPnqzz589r9erVGjt2rCSpadOmevPNNyVJixcv1p133qnAwECFhITo6aefLnQI8VdffaW+ffuqZcuW6tWrl+XQpIiICElSnz599Oabb152+HFKSoqefvpptW/fXm3atNGjjz6qlJQUy7gBAQFavXq1Bg4cqFatWumee+7Rrl27rN52kpSRkaFnn31WISEhlt+poKHPzs7W3LlzFR4erhYtWmjYsGHavXu35b7h4eF66aWX1LVrV3Xp0kVnz57V6dOn9eijjyooKEgdO3bU5MmTK/yQMgCAcwgPD1dAQIC++uorTZ06VQEBAZoxY4Y+//xzjRw5Uvv27dP999+voKAgde7cWW+//bblvtbUypEjR+rYsWOaOXOm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Mo0ePVrPP/+87rnnHgUEBOjQoUOWx2nSpIn27NlT6D6jR4/W4sWLSyxGfn5+On78eKGTXZw6dUrHjx+Xr69vmbZPSYrbdl9//bVuueUWZWdnF7rEwY4dO9SlSxc1atRI7u7uhU5IZYzR7t27i83l5+enlJQU1apVSzfffLNuvvlmubu7a/bs2UpLS7P6dwEAOLcFCxbo1ltv1QsvvKC1a9eqT58+Gj58uNauXasOHTooPj5eOTk5lvXnzZunRx55xOa1MioqSh4eHlq8eLFGjx6tDh066OTJk5Iu1bomTZro+PHjysjIsNxn7dq1lmvrlseOHTtK3FcpqRY3bNhQ1apVs8zsSpdOYBUSEqJTp07R7MIp0NQCf6hRo4bmzZunjz/+WMeOHdO3336rpKQkDRkyRDk5Ofrf//6nY8eOKSoqSi+++KKkS2fulaRatWrp0KFDOnXqVKExa9eurR07dmjmzJlKTExUYmKiNm7cWOgQnz+rW7eutm/frsTERCUkJGjKlClKTEy0PM59992njRs3aunSpTp8+LCWLFmi//u//1OnTp0s16ONi4u77EzAHTp0UEBAgJ544gnFxsYqNjZWTz75pJo0aaL27dtX2LZr0aKF/Pz81LFjR02ZMkWxsbHas2ePZs+erfbt26t27doaMWKEIiMjtWXLFh04cEAzZ87UkSNHNHjw4CIfKzQ0VLfddpsef/xxxcbGat++fXr66ad15MgRNWzY0OrfBQDg3OrVq6eDBw+qa9euuvnmm3X06FG1a9dON998s0aOHKm8vDxNnz5dSUlJ2rJliz788EN17drVJrWyVq1aOnDggFJTU1W3bl2dOXNGmzdv1tGjR7V69Wq98847ki7tP3Ts2FE333yznn32We3fv187d+7Um2++qS5duljGKmrfoih169YtcV+lpFp8zTXXaNCgQYqMjNT//d//KTExUdOmTVNAQIDq1aunmjVr6syZMzpy5Ihyc3Ov8FkBKph9vsoLOKY1a9aYnj17msDAQNOlSxfz9ttvG2OMeeedd0xoaKhp1aqV6devn1m/fr3529/+ZtatW2eMMWbz5s3mjjvuMCEhISYvL6/QiSKSkpLMqFGjTHBwsGndurV56KGHLCeh+OuJog4cOGDuvfde07JlSxMaGmqeeuop8+qrr5oePXpY1lm/fr258847TWBgoOnbt6/Z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Pz+1b99ebm7lHgYAANgItRkAUJWVueKdPn1aDz30kPbu3auGDRvKGKPjx4/rlltu0eLFi3XddddVZE4AAPAX1GYAAMpx9uNZs2apWrVqio6O1tdff60NGzYoOjpadevWVWRkZEVmBAAARaA2AwBQjpnab7/9VkuWLFG9evUsy+rVq6eJEydq1KhRFRIOji09PV25GReVvvmovaNI0qUsnun2jgEAlYbaDABAOWZqPT095eLictlyFxcX5eXl2TQUAAAoHbUZAIByzNSGhoYqMjJSr7/+uq6//npJ0pkzZzR79mx17NixwgLCcXl5eenUxVR5dW1k7yiSpPTNR+Xl5WXvGABQaajNAACUo6l95plndN999yksLEwNGjSQJB0/flwBAQGaPHlyhQUEAABFozYDAFCOptbHx0fr16/Xt99+q8TERFWvXl1+fn7q0KFDReYDAADFoDYDAFBKU5uVlaUaNWpY/i9J7dq1U7t27QqtI8myHgAAqDjUZgAACiuxqW3Tpo22bdum6667TkFBQUWejMIYIxcXF8XFxVVYSAAAcAm1GQCAwkpsaj/88ENde+21kqQlS5ZUSiAAAFA8ajMAAIWV2NSGhIRY/r9jxw6NHj36skOZMjMz9eabbxZaFwAAVAxqMwAAhZXY1J46dUq///67JGnevHlq166d6tatW2iduLg4rVy5UpMmTaq4lAAAQBK1GQCAvyqxqf3111/18MMPW76vM2LEiCLXGzRokO2TAQCAy1CbAQAorMSmtlu3btq0aZPy8/PVrVs3ffLJJ/L29rbc7uLiopo1a172F2IAAFAxqM0AABTmWtoKDRo0UKNGjbRv3z7VrFlTGRkZatiwoRo2bKiNGzcqPT29MnICAIA/UJsBAPj/Sm1qC0RHR2vAgAHatm2bZdmWLVs0YMAAff/99xUSDgAAFI/aDABAOZra//znP3rqqac0duxYy7KFCxfqiSee0Msvv1wh4QAAQPGozQAAlKOpPXz4sMLCwi5bHhYWpqSkJJuGAgAApaM2AwBQjqa2SZMmio6Ovmz51q1b1aBBA5uGAgAApaM2AwBQytmP/+zBBx/UE088oZ9++kktWrSQJO3du1cbN27UnDlzrA6SkpKi559/Xtu3b5enp6cGDx6sxx57zOpxAQC4WlGbAQAox0xtz549tXDhQrm6umr9+vX68ssv5eLioqVLl6pXr15WBxk/frx8fHz0/fffa9WqVVq7dq0+++wzq8cFAJQuLS1NzzzzjNLS0uwdBeVAbQbgKNLS0vTss89y9nXYRZlnaiWpffv2at++vc1D7N69W0eOHNGKFSvk7u6uxo0b66OPPpKnp6fNHwsAcLnly5drz549WrFihR566CF7x0E5UJsBOIKVK1dq7969WrlypR588EF7x0EVU+amNisrS6tWrVJiYqLy8vIsy7Ozs7Vnzx599dVXVxwiNjZW/v7+euutt7R69Wp5enrq3nvv1ahRo654TABA2aSlpWnjxo0yxigqKkrDhg2Tt7e3vWOhDKjNABxBWlqaoqOjZYzRxo0bNXToUHl5edk7FqqQMje106ZNU3R0tP72t79p69atCgsL06FDh3TgwAH961//sirE2bNn9dNPPykkJETR0dFKSkrSAw88IB8fH/Xp08eqsZ3F/PnzbXKmyoIxJk6caPVYvr6+hS4TcTWYPHmy9u/fb/U4WVlZkqR77rnH6rH8/f01a9asEtc5l5WmmIT/FXt7dk6WcnLOW52lgLt7TXm41ygxj+RT6jiZWdnamZhiVZbsnEs76h7u1awaJzMr26r7F4iOjtaGDRtKXKes78MePXooIiLCJrmssXz5cuXn50uS8vPzma11ItRmOINNmzYpKirKpmMWfM5OmjTJZmN2795d4eHhNhuvKlm5cmWhOlKVZmvP5OVp3e8Z9o5RrPN/PC81Xcv8rdNKdSYvT7b4M3qZm9otW7bolVdeUVhYmO6++2498sgjCggI0OTJk3Xy5EmrQnh4eKh27dqaMGGCJKlp06YaNGiQoqKiqkzhTEpKUsLeWNWv7W7VODXyLzUAvx+Ot2qck5k5Vt3fUZ0+fVrnz52Tu1ysGsdFRpKUc866RjJHRqdPny5xHV9f31LHSU9PV3p6rlVZ/szL65pS/sLqU2qusuQui4Idl8Y2GM9WmUrjbH+d3rx5s3JzL71+cnNz9c0339DUOglqM6oqjiZxLEXVkarQ1FbWfoU1Mv7Yj2rkoFm9ZZvtWOam9ty5c2ratKkk6dZbb1VsbKwCAgJ0//33W30okq+vr7KyspSdnS0PDw9JKnQYVVVRv7a7Rgddb+8YkqSFu87YO0KF8PLyUv7JUxpY1zGK4eqMtFIbIGedLbdV7oLZTlucydUWIiIiHGJ21Za6du2qDRs2KDc3V25ubkVe9xSOidoMZxAeHs4M6FWua9euioqKqnJ1ZMyYMfaOUKqCoxkiIyPtnKRilXkeumHDhpbDNn19fbVnz55LA7i6KjMz06oQoaGh8vb21pw5c5Sdna34+Hh9+umnNjlzIwCgZPfee69c/zgsydXVVcOGDbNzIpQVtRmAIxg6dGihOjJ06FA7J0JVU+aZ2mHDhumpp55SZGSkunXrpuHDh8vLy0vbt29XYGCgVSE8PT21dOlSzZw5U506dZKHh4ceeOAB3XnnnVaNCwAonbe3t7p166Yvv/xS3bt357A+J0JtBuAIvL29FRERoa+++krdunVzuq/hwPmVuam9//775ePjo7p16yowMFDTpk3T8uXLVbduXU2ePNnqII0bN9aCBQusHgcAUH733nuvDh8+zCytk6E2A3AUQ4cO1eHDh5mlhV2U2NSGh4drxYoVqlevnt566y2NHj1aNWpcOiPqwIEDNXDgwEoJCQCoWN7e3nrppZfsHQNlQG0G4Ii8vb01e/Zse8dAFVXid2rT0tKUkJAgSZo3b57lMiYAAMA+qM0AABRW4kxtz5499cADD8jF5dLlT0JDQ4tdNy4uzrbJAADAZajNAAAUVmJTGxkZqcGDB+u3337TuHHj9NJLL6lOnTqVlQ0AAPwFtRkAgMJKbGpdXFzUpk0bSZeKaM+ePS3XqgMAAJWP2gwAQGFlvk5tz5499e677+rgwYOSpOeee05BQUH6xz/+oZSUlIrKBwAAikFtBgCgHE3trFmztH79euXk5Gjjxo1as2aNJk2apOrVq+uFF16oyIwAAKAI1GYAAMpxndro6GjNnz9ft912m+bPn6/Q0FANHjxYbdq00ZAhQyoyIwAAKAK1GQCAcszUXrhwQdddd53y8/O1bds2derUSdKl7/ZUq1atwgICAICiUZsBACjHTG2LFi303nvvydvbW7/99pu6deumU6dO6Y033lCrVq0qMiMAACgCtRkAgHLM1D733HP6+eeftWTJEk2bNk316tXTggULlJycrClTplRkRgAAUARqMwAA5ZipvfXWW7V+/fpCyx5//HHVrl3b5qEAAEDpqM0AAJTS1C5btkyDBg2Sp6enli1bVuJAw4cPt2kwAABwOWozAACFldjULly4UHfffbc8PT21cOHCYtdzcXGhcAIAUAmozQAAFFZiU7tp06Yi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ebm5ual8+fKmzr169WqlpKSoXr16Oa43W15J2rt3r+64444bjjFT7l9//VXHjx/XmDFjVKZMGdWsWVOfffaZmjVrZtrMf5WamqpXXnlFw4cPV/369bOsM1PmP//8U4mJiTIMQ4ZhyMXFRe7u7vLw8DBt5h9++EEBAQHq16+fPDw81KRJE91///3ZrppwdubcHpNXr16toUOHqmLFirrttts0cODAXM/YrVmzRv3791e1atXk5+en4cOHa9myZcURHw6W13onSc8++6zi4+P10ksv6eOPP5YkffbZZ+rQoYP9LN++ffty3ZZhGIqMjFSPHj1yHZOYmKhBgwbp4sWLCg4O1pkzZ9SvXz8tXLhQktSvXz99+OGHeuihh9S4cWMNHjxYe/bsUY8ePRQcHKynn35aKSkpkqRr165pypQpatOmjVq2bKlx48bp8uXLkqSkpCQNGTJE99xzj9q2bavRo0fr6tWrBd2NRSIvz5+kwh2XCxcuaNiwYapevbrc3d315JNP6tSpUzp16lSWcRyXgtmxY4dSU1P15JNPysPDQ126dNHtt9+u//f//l+2sX8/jqtWrVK3bt0kSatWrdKgQYP0+uuvq0mTJgoPD9e2bds0btw4NW3aVOHh4dq+fbt9rujoaEVERCgkJES9evXS77//bl83b948tW7dWs2aNVOfPn1ueObYWfLy3FAy3z47d+6cXnnlFTVv3lz33nuvJk2apCtXrkiSZs6cqcGDB6tr165q2bKlkpKSstw2v3lzu4+fOHFCwcHBGjNmjEJCQrR06VKlp6fro48+Unh4uJo1a6YRI0Zk235elPqmtlevXlq1apUaNmyY65jDhw/r1ltvVbly5ezLAgICtH///uKImCNvb29duXJFjRo10oABA9SnTx/VqVMnyxgz5T5+/LhmzZqlyZMn5zrGTHklKT09Xfv379fatWvVqlUrdezYUfPmzZNhGFnGmSl3TEyM6tWrp1mzZunee+9Vhw4dFBUVJX9//yzjzJT5rxYvXiwvLy89/vjj2daZKbOvr6/69u2rUaNGqUGDBurRo4defPFFBQYGZhlnpsyGYahs2bJZlrm5uemPP/7IsszZmXN6TL5w4YLOnj2r22+/3b6sbt26uV6GeOjQoSzHIiAgQAkJCTp//nzRBUeRyUu9k6TZs2erevXqevfddzVo0CAtX75cc+fO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I0eO1MWLFzVz5kytXr1aGzZsyFcWAAAKqn379goKCtI333yjsWPHKigoSBMnTtRXX32lfv36ad++fXryyScVHBys1q1ba86cOfbbJiQkaOTIkQoLC1OTJk00YsQIJSQk2NffqBb369dPJ0+e1D//+U/169dPUsFr66hRo7Rjxw598sknat++fTHtuesvqLu60irAGvhLBYrR5s2btXTpUg0dOlSvvfaaBg4cqA0bNmj27Nnat2+fPvroI0nSihUrJEmfffaZBgwYkONc77//vkaMGKFly5bJw8ND48aNkySlpaVp8ODBcnV11fLlyzVq1Ch98MEHec546dIlDRo0SHfccYfWrl2r5cuXq3z58ho/fryk6+9FGjBggK5du6bFixdr5syZ2rRpk2bNmiVJeu6553TgwAHNnTtXn376qQ4dOqQJEyZowIAB6ty5s9q1a6ctW7YUeB8CAJBXK1euVFRUlDw8PPT9999ry5YtCgoK0qxZs/T++++rf//+8vf314oVKzRp0iQtWLBAK1asUGpqqp588kmdOnVK8+bN06effqozZ87o2WefzXLVUW61eObMmapWrZpeeuklzZw5s1C19fXXX1dwcLB69+6tlStXFvk+y8jIUHR0tNasWaPOnTsX+fYAR+DyY6AY9e/fX3Xr1tWVK1f0z3/+Uw899JAkqUaNGgoPD7e/98bPz0/S9fe5lC9fPse5+vbtqzZt2kiSBg4cqGHDhslms2nHjh36448/tGjRIvn5+alevXoaPny43njjjTxlvHr1qp5++mk99dRTcne//hDx+OOP64UXXpAkbd26VSdPntSSJUvsOSdMmKDjx4/r4MGD+u9//6u1a9eqfv36kqSJEyfqxx9/VPny5eXl5aWMjIwScSk1AMD8/Pz8dPz4cdWpU0fVqlVTRkaGjh49qqZNm2r9+vVyd3fXpEmT5Onpqdtvv13jx4+Xq6urtmzZomPHjmnBggWqWrWqpOsNbHh4uLZu3Wq/lDm3Wuzj4yM3NzeVL19ePj4+SkxMLHBtrVChgjw8PFS2bFn7urz47LPPtHTp0puOO3/+vIKDg+0/X7t2Tf7+/ho8eHCuL6wDZkNTCxSjmjVrSpLuvPNOeXl5adasWYqLi9Phw4d18OBBNW3aNM9z1alTx/5/b29vSdfP0u7fv181atTIUvj+WqxuplKlSnr00Ue1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sGHDNHz4cH4mAAAAC1GbAQBIz+lzat99910lJyfr1KlTSklJkXT1SygSExO1c+dOtWrVKs9CAgCAjKjNAABko6n98ccfNWzYMP39998ZrrvlllsonAAA5DNqMwAAkqezK77//vt6+OGHtWDBAhUrVkyzZs3Se++9p9tvv10jRozIy4wAACAT1GYAALIxU3vo0CF99NFHCg4O1v33369Lly6pRYsW8vb21scff6yWLVvmZU4AAHANajMAANmYqS1cuLA8Pa+uXrZsWe3Zs0eSVKVKFR08eDBv0gEAgCxRmwEAyEZTW7NmTU2ZMkXnz59XtWrVtHr1aiUlJen333/nWxcBALAAtRkAgGw0tUOGDNEff/yhRYsWqVWrVkpISFBYWJiGDRumHj165GVGAACQCWozAADZaGrLli2radOmqWXLlipSpIgGDx6soKAgvfjii+rbt29eZgQAAJmgNgMAkI2mdunSpWrWrJkOHDiggwcPatCgQSpRooRmzJih6dOn52VGAACQCWozAADZaGqnT5+u1157TbVr19bixYt1zz33aM6cORo/frzmzp2blxkBAEAmqM0AAGSjqT169KgaNmwoSVq7dq3j/+XKlVNsbGzepAMAAFmiNgMAkI2m9s4779SePXu0Z88e7du3z1E4f/nlF5UqVSrPAgIAgMxRmwEAyEZT26tXLz333HPq3Lmz6tSpo9DQUH388cd688031a9fv1wHWbhwoapUqaLQ0FDHvyVLluR6XABwZytWrFCLFi303XffWR0FNkRtzntnz57V0KFDFRcXZ3UUAEAWvJxdsXPnzqpWrZpOnDihRx55RJIUFhamr7/+Wg888ECug/z555965pln9Morr+R6LACwiylTpkiSJk2apObNm1ucBnZDbc57c+fO1Z9//qm5c+fq2WeftToOACATTs/UStL999+vxo0by9fXV5IUHh7ukqIpSTt37lTlypVdMhYA2MGKFStkjJEkGWOYrUWOUJvzztmzZxUZGSljjNasWcNsLQC4KadnavNSSkqK9uzZo2XLlundd99VkSJF1LFjR/Xp00ceHh5WxwNyZNq0aYqOjs7x7dNuO2TIkByPERwcnKtDECMjI7Vq1aosr3cmY9OmTRUREZHjDNfj7vluJG2WNg2ztXAn1Oars7SpqamSpNTUVGZrAcBNuUVTe/bsWVWtWlVt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BQAAAADYFk0tAAAAAMC2aGoBAAAAALZFUwvYwOrVq/XXX39Jkn777TdVrFhRFy9ezJdtN2rUSF999VWG5ceOHVPFihW1d+9eSdLEiRNVsWLFdP+qVaumpk2b6pNPPsmXrAAAXGvjxo3q0KGDJCkxMVFVq1bVhQsX8nSbu3fv1q+//uqSsY4dO6Y1a9Zk6zYpKSmaNWuW2rRpowceeEB16tTRc889p6ioqHTrpdXu/v37ZzrOwIEDVbFiRf344485zg/kB5pawM0dP35cAwcOdBTg0NBQrV+/XkWLFrU4WUaVKlXS+vXrHf+++eYbdezYUePHj9eKFSusjgcAuAn98ccfqlKliiRp165dKlWqlIoXL56n2xwwYID279/vkrGGDRumzZs3O71+amqqBg4cqM8++0w9e/bUihUr9Omnn6pEiRLq2rWrVq9enW59b29vbdiwQZcuXUq3PCEhQb/88otL7gOQ17ysDgDg+owx6S77+PgoKCjIojTXV6hQoXTZgoKC1KdPH/3yyy/67rvv1LJlSwvTAQBuRjt37tTDDz8sSYqKilLVqlUtTpS35syZoy1btmjZsmW64447HMvvv/9+BQQEaPjw4QoLC1NgYKAkqXz58jp58qTWr1+vpk2bOtb/+eefVbFiRW3dujXf7wOQXczUAvks7bDdKVOm6KGHHlKfPn20fPlytW7dWlWrVlWNGjXUv39/xcTESJIiIiIkSa1bt9bEiRMzHH5csWJFLV68WO3bt1f16tXVsWPHdAXoxIkT6tWrl0JCQtS0aVPNmzdPFStWzNf77OPjI09PXm4AAPmnUaNGqlixolauXKnXX39dFStW1FtvvaVvv/1WPXr00O7du/X0008rNDRU9erV05QpUxy3PX36tAYPHqzatWurRo0aGjRokE6fPu24/nq1t0ePHjp+/Ljefvtt9ejRQ5K0Y8cOPfXUUwoNDVW1atXUoUMHbdmyxTHe8ePHNWDAANWoUUN16tTRqFGjlJSUpKFDh+r333/XZ599pkaNGjl1v+fOnat27dqla2jT9O3bVykpKfrvf//rWObp6alGjRplOMT5+++/16OPPurUNgGr8S4TsMjatWs1d+5c9e/fX6+++qp69eql77//XpMnT9bu3bs1depUSdKCBQskSV9++aV69uyZ6VgffvihBg0apHnz5snb21sjRoyQJCUnJ6tv377y9PTU/PnzNXToUH300Uf5cwf/t/0FCxbol19+UfPmzfNtuwAALFy4UKtXr5a3t7fWrVun9evXq2LFipo0aZI+/PBDPfXUUypRooQWLFigUaNGaebMmVqwYIGSkpL09NNP66+//tL06dP1xRdf6NSpU/rXv/6V7uiprGrvxIkTdccdd+ill17SxIkTdfHiRfXp00eVK1fWsmXLNH/+fBUrVkwjR46UdPU83549e+rKlSuaPXu2Jk6cqB9++EGTJk3S8OHDFRoaqq5du2rhwoU3vM8JCQnat2+fqlevnun1Pj4+CgkJyTD72rRpU61bt07JycmOTOvWrVOTJk1y9NgD+Y3DjwGLPPXUU7r33nuVkJCgt99+W23btpUklSpVShEREY5zcdIOD/L391exYsUyHat79+6qX7++JKlXr14aMGCAEhMT9fvvv+vQoUOaNWuWAgMDVaFCBT333HN64403spV1zJgxeu+999Itu/awaOnquUqhoaGOy5cvX1bp0qU1YsQImloAQL4KDAzU0aNHVbZsWd1xxx1KTU3V4cOHFRYWpu+++05eXl4aNWqUfHx8VL58eY0cOVKenp5av369jhw5opkzZ6pkyZKSrjawERER2rBhg+NQ5qxqr7+/vwoVKqRixYrJ399fsbGx6t27t5555hl5eV196/3EE0/ohRdekCRt2LBBx48f15w5cxw1/80339TRo0dVvHhxeXt7q0iRIo7rruf8+fMyxsjf3z/Ldfz9/XXu3Ll0y+rUqaOkpCRt2rRJtWrV0saNG1W6dGndfffd2XzUAWvQ1AIWueeeeyRdPcelcOHCmjRpkqKjo3XgwAHt27dPYWFhTo9VtmxZx//9/PwkXZ0l3bNnj0qVKpWuEP6z6XRWv3791KZNm3TLTp065TisKk358uU1adIkGWP0xx9/aNSoUXr00UfVuXPnbG8TAIDc2rt3r+677z5J0qFDh+Tn56fAwEDt379fFStWlI+Pj2PdVq1aSZKmT5+uu+66y9HQStIdd9yhUqVKad++fY6mNqva+88xJem2225Tx44dNXv2bO3evVuHDh3Srl27lJqaKknav39/hlr9yCOP5Oj+pjWz8fHxWa5z4cKFDE2vj4+P6tevr8jISNWqVUurVq3i0GPYCk0tYJHChQtLuvoJbd++fdWyZUs9+OCDevrpp7V8+XLt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blTNmjW1YsUK/eMf/9CNN96oGTNmuLJGAABQBrIZAAAHztR+//33WrhwocLCwtSiRQudP39e/fv3l7+/v9544w0NGDDAlXUCAIArkM0AADgw1AYFBcnX99KJ3caNGys1NVU9evRQy5YtlZGR4bICAQBA2chmwHudy8/WwaMfOmUvS0G+JCnAv7pT9juXny0p1Cl7Ac5g91DbsWNHvf7665o2bZoiIiK0YcMGPfLII/r666+56iIAAG5ANgPeKSwszKn7paenS5IaNXHWIBrq9BqBirB7qI2NjdWf//xnbd68Wffff7/eeecddejQQQUFBZo0aZIrawQAAGUgmwHvNG7cOKfuFxsbK0maM2eOU/cFPIXdF4pq3Lixli5dqgEDBqh69eqaPHmyQkNDNWnSJD322GOurBEAAJSBbAYAwIGh9t1331Xfvn117NgxZWRk6KmnntJNN92k5cuXa9myZa6sEQAAlIFsBgDAgaF22bJlmjZtmrp06aL4+Hg1aNBAa9eu1fz587Vu3TpX1ggAAMpANgMA4MBQm5mZqV69ekmSdu3aVfLn8PBw/fLLL66pDgAAlItsBgDAgaH2lltuUWpqqlJTU3X06NGS4Pz8889Vv379CheyadMmtWzZUu3atSv5b8uWLRXeFwCqumPHjikmJqbk6pfwHmQzgKomOztbU6ZMUXZ2trtLgQex++rHY8aM0cSJE1WtWjXdeeedateund544w0tWbJEL7/8coULOXTokB555BE9/fTTFd4LAPB/5s2bp/Pnz2vevHl644033F0OnIhsBlDVrFmzRikpKVq7dq0mTJjg7nLgIeweaocNG6aIiAidOnVK3bt3lyR16NBBa9asUevWrStcSEpKih588MEK7wMA+D/Hjh3T8ePHJUk//PCD0tPT+WxBL0I2A6hKsrOztWPHDhmGocTERA0fPlwhISHuLgsewO6hVpJatGihFi1alHwdGRnplCIKCwuVmpqqrVu3atasWapevbruu+8+Pfroo/Lx8XHKfQDOlJOTo5+tVsXneuZLX362WuWbk+PuMuAB5s2bV+prTzxbm5SUpISEhGuuK34JdfFnLl5NdHS0oqKiKlybpyObURlc8W9Uqjr/TuEca9asUVFRkSSpqKiIs7UoYfd7al0pOztbrVq10j333KNPPvlEixYt0tq1a7VmzRp3lwYAplZ8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7rhDp0+f1ttvv63CwkJ9++232rx5s2JiYmzWmaGX2rVr6+2339aGDRtUVFSk5ORkrVy5stQvOZ7eS9euXRUSEqI5c+bIYrEoNTVVmzZt0oABA2zWeXoflztw4IDat29f7u1m6KVr1646evSo1q9fL8MwlJycrA0bNpjy7yU3N1dDhw7Vvn37ZLVatX37dn3++ee65557bNaZoZfLDRw4UEuWLFF2drZOnDih5cuXa+DAgeWufeutt3Ty5EllZ2dr8eLFGjRoUCVXDGfypjz7+OOP9e233+qbb77RN998o6ZNm+q5554rNdSaoRey2bP6uBzZ7Fm9kM2VmM1Ov/SUF/jyyy9trvC1detWo23btiVfnzp1yhgzZozRvn17Iyoqyvjggw/cUeZVJScnG/fff7/Rvn17Y8CAAcb27dsNwzBnL1988YUxePBgo23btkavXr1KruZntl6OHz9uPProo0ZkZKTRrVs341//+pdhGObro1ibNm2Mffv22RwzYy+7du0yBg8ebLRv396Ijo42NmzYYBiGOXvZtm2b0bt3b6Nt27bGsGHDjP379xuGYa5ernz8vXDhgvH8888bXbp0MTp16mS8+uqrRlFRUcntbdu2NbZu3WoYxqWr4y5cuNDo1q2b0bFjR2PatGnGxYsXK70HOJc35dnlLr/6sRl7IZs9q49iZLPn9UI2V042+xjGFZeqAwAAAADAJHj5MQAAAADAtBhqAQAAAACmxVALAAAAADAthloAAAAAgGkx1AIAAAAATIuhFgAAAABgWgy1gIdLTEzUjz/+KEn66quv1KxZM507d67S7j8/P19xcXHq27evIiIi1L17dz3zzDP6/vvvbdY988wzatasmV588cUy9xk8eLCaNWumI0eOVELVAADYx9056ymaNWumnTt3SpKys7P13nvvubkiwH4MtYAHO3nypJ544gn99ttvkqR27dppz549qlGjRqXcf35+vh588EF99NFH+utf/6qPP/5YixcvlsViUUxMjPbt22ez3t/fX0lJSaX2OXHihL777rtKqRkAAHu5O2c9yZ49e9S1a1dJ0rx585SYmOjmigD7MdQCHswwDJuvAwICFBoaKh8fn0q5/8WLFys3N1fr169XdHS06tevr7Zt2+rVV19VdHS0pkyZooKCgpL17du315kzZ5SSkmKzT2Jiotq0aVMpNQMAYC9356wnCQ0NVUBAgKTSPxfA0zHUApXoxIkTatasmV5//XV16tRJjz76qLZt26a7775brVq1Uvv27TV+/HidOXNGkhQVFSVJuvvuu7V48eJSL4tq1qyZ4uPjNWTIELVp00b33XefzdnTU6dOacyYMWrbtq2io6O1fv16NWvWzK5ai4qKtHHjRj344IOqVatWqdufeuopZWZmas+ePSXH6tatq44dO2rHjh02a7dv364//vGPjv2wAABwkJlyVpLWr1+vPn36qFWrVurbt6/efffdktvy8vI0ffp0RUZGqlOnTnryySd1+vTpkttzc3P1zDPPKDIyUpGRkZo8eXLJGee77rpLq1atKvVzKX4L0F133aW5c+eqZ8+e6tGjh3799deSlx8vXrxYW7Zs0fbt29WsWTN9+OGHatOmjfLy8mz6vuOOO5SZmWl3r4ArMdQCbrBr1y6tW7dO48eP19///neNGTNG27dv15IlS/Tdd9/pzTfflCRt3LhRkrRy5UqNHj26zL0WLFigp556SuvXr5e/v79mzJghSbJarXrsscfk6+urDRs26JlnntHChQvtrjEjI0Nnz54t9wxrvXr11LhxY+3fv9/meHR0tM1LkM+cOaPU1FR1797d7vsGAKAizJCzKSkpevHFF/XMM89o+/bteuCBB2yuWTFjxgxlZGToX//6l1auXCkfHx+NHTtWVqtVkvTEE0/oyJEjWrp0qd555x2lpaVp5syZdt//xo0btWjRIsXFxalOnTolx0ePHq1+/fqpV69e2rNnj6KiouTn52eT7e+//77atGmjBg0a2H1/gCv5ubsAoCp66KGH1KRJE+Xn5+vFF1/UPffcI0mqX7++oqKilJaWJkkKCQmRdOkMaM2aNcvca9SoUerRo4ckacyYMXr88cdlsVj09ddf6/vvv9eKFSsUEhKipk2bauLEiXr++eftqvHXX38tue/y1K1bVzk5OTbHevfurRdffFGZmZlq0KCBEhMT1b17dwUFBdl1vwAAVJQZcvbUqVPy9fVV/fr1Vb9+fY0cOVKNGzdWSEiIMjMz9cEHH+izzz5TvXr1JF16n2unTp20e/du3Xrrrfqf//kfbd26Vc2bN5ckvfDCC9q9e7fdP6N+/fqpdevWpY7XrFlTQUFBKioqUmhoqKRLT1h/+OGHGjRokCTpvffe0/3332/3fQGuxlALuEHxM5stWrRQUFCQ4uLilJ6ermPHjuno0aPq0KGD3Xs1bty45M/FLxO2Wq1KTU1V/fr1SwJbunQBDHsVP2t7+cuNrvTbb78pODjY5li9evXUunVrJSUl6eGHH1ZCQoJiYmLsvl8AACrKDDnbvXt3tW/fXoMGDdLtt9+unj17asiQIapdu7b27t0rSerbt6/N9+Tn5ysjI0MXLlyQv7+/zUudIyIiFBERYff9N2zY0O61gwYN0tixY5Wbm6usrCylp6erX79+dn8/4GoMtYAbFJ+1/OKLL/TYY49pwIAB+sMf/qCHH35Y27ZtU2pqqt17+fv7lzpmGIb8/PwqdKGHRo0aKSQkRHv37lWLFi1K3Z6dna2MjIwyX57cp08fJSUl6Z577tGBAwcUFxen3Nzc664FAABHmCFng4KC9Pbbb+vbb7/Vzp07tWvXLq1YsUJLly5VYWGh/P39tWXLllIXrapTp46++eYbhy5mVVhYWOb926tTp0664YYblJiYqBMnTqhr1642wzzgbrynFnCjdevWqX///pozZ46GDx+u1q1b64cffigJyYpcfbFp06Y6deqUsrOzS47997//tfv7/fz8dP/99+utt94qcyBduHChbrnlljLfKxsdHa29e/cqPj5enTp1KvNCUwAAuJon5+xXX32lN954Qx06dNDTTz+t999/Xy1atND27dsVFhamgoIC5efnq1GjRmrUqJFCQ0M1d+5cff/992rSpIksFkvJy6gl6euvv1aPHj1ksVjk7+9fctEoSQ5f0OnKn4uPj4/+9Kc/aefOnfrkk0909913O7Qf4GoMtYAb1a1bVwcPHlRKSooyMjL02muv6bPPPpPFYpGkks/JO3z4sE042aNz584KDw/X1KlTdeTIEe3evduhC1hI0p///GfVr19fw4cPV2Jiok6dOqWDBw9qypQpev/99zVv3rwyn8Fu1KiRwsPDFRcXp+joaIfuEwAAZ/HknK1evbqWLFmiDRs26OTJk9q9e7fS09MVERGhsLAw3XXXXZoyZYq++eYbHTt2TLGxsTpw4IDCwsIUHh6ubt26adq0aUpOTlZKSopmz56tLl26KCAgQBEREVq/fr0OHTqkAwcOaMGCBQ4N8DVq1NDJkyd18uTJkmODBg3Snj17dOLEiZKrRgOegqEWcKMnn3xSDRs21KhRozR8+HAdOXJEsbGxSktL08WLFxUcHKyYmBhNmzZNixYtcmhvHx8fxcXF6cKFC7r33nv10ksv6b777itzCC1PQECA3nrrLQ0ePFgLFixQv379NGHCBPn6+mrz5s1q3759ud/bp08fXbx4UXfddZdDdQMA4CyenLOtW7fWyy+/rLffflt9+/bV9OnT9cgjj+jee++VJM2ZM0etWrXShAkTFBMTo99++01vvfWWateuLenShaN+//vf68EHH9To0aPVsmVLTZ8+XZI0adIkNW7cWMOGDdOUKVM0ceJE+fra/2v/4MGD9fPPP6t///4lH3/UtGlTNWrUSFFRUSVPBgCewsfg05UBr/TLL7/o4MGD6tWrV8mxjz76SPPnz7e5LD8AAHBcVcvZwsJC9ejRQ7NmzeJj+uBxuFAU4KV8fHz05JNPatKkSYqOjtbp06cVFxenAQMGuLs0AABMryrl7Pbt2/X555+rRo0a6tq1q7vLAUrhTC3gxXbu3KkFCxYoIyNDderU0aBBg/TUU0/p8OHDeuihh676vZs2bVJ4eHglVQoAgPlUlZzt37+/8vLy9Oqrr6pjx47uLgcohaEWqIIsFot+/PHHq6655ZZbFBAQUEkVAQDgPchZoHIx1AIAAAAATIurHwMAAAAATIuhFgAAAABgWgy1AAAAAADTYqgFAAAAAJgWQy0AAAAAwLT+PxFIsoIDHLPHAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Boxplots for each independent variables vs target (dependent) variable\n", + "\n", + "df_cols = list(df.columns[1:])\n", + "\n", + "fig, ax = plt.subplots (nrows=6,ncols=2,figsize = (16,40))\n", + "\n", + "i=0\n", + "for row in range(0,6):\n", + " for col in range(0,2):\n", + " sns.boxplot(data=df, x=df_cols[i], y='satisfaction_score', ax=ax[row,col]);\n", + " i+=1" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
locationnum_employeegenderage_categoryseniority_categorysatisfaction_score#contact_acctrating_acct#contact_HRrating_HR#contact_OMrating_OMrating_securityrating_D&R#contact_acct_num#contact_HR_num#contact_OM_numlatlon
0Amsterdam7979797979797579737974771879797952.3718074.896029
1Boston8989898989898389838981834289898942.361145-71.057083
2New Delhi131313131313131311131312413131328.64480077.216721
\n", + "
" + ], + "text/plain": [ + " location num_employee gender age_category seniority_category \\\n", + "0 Amsterdam 79 79 79 79 \n", + "1 Boston 89 89 89 89 \n", + "2 New Delhi 13 13 13 13 \n", + "\n", + " satisfaction_score #contact_acct rating_acct #contact_HR rating_HR \\\n", + "0 79 79 75 79 73 \n", + "1 89 89 83 89 83 \n", + "2 13 13 13 13 11 \n", + "\n", + " #contact_OM rating_OM rating_security rating_D&R #contact_acct_num \\\n", + "0 79 74 77 18 79 \n", + "1 89 81 83 42 89 \n", + "2 13 13 12 4 13 \n", + "\n", + " #contact_HR_num #contact_OM_num lat lon \n", + "0 79 79 52.371807 4.896029 \n", + "1 89 89 42.361145 -71.057083 \n", + "2 13 13 28.644800 77.216721 " + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lat = {'Amsterdam' : 52.371807,\n", + " 'Boston' : 42.361145,\n", + " 'New Delhi ' : 28.644800}\n", + "\n", + "lon = {'Amsterdam' : 4.896029,\n", + " 'Boston' : -71.057083,\n", + " 'New Delhi ' : 77.216721}\n", + "\n", + "geo = (df.groupby('location').count()).reset_index()\n", + "geo['lat'] = geo['location'].map(lat)\n", + "geo['lon'] = geo['location'].map(lon)\n", + "geo = geo.rename({'ID':'num_employee'},axis=1)\n", + "geo" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "geo": "geo", + "hoverlabel": { + "namelength": 0 + }, + "hovertemplate": "color=Amsterdam
size=%{marker.size}
lat=%{lat}
lon=%{lon}", + "lat": [ + 52.371807 + ], + "legendgroup": "color=Amsterdam", + "lon": [ + 4.896029 + ], + "marker": { + "color": "#636efa", + "size": [ + 79 + ], + "sizemode": "area", + "sizeref": 0.2225 + }, + "name": "color=Amsterdam", + "showlegend": true, + "type": "scattergeo" + }, + { + "geo": "geo", + "hoverlabel": { + "namelength": 0 + }, + "hovertemplate": "color=Boston
size=%{marker.size}
lat=%{lat}
lon=%{lon}", + "lat": [ + 42.361145 + ], + "legendgroup": "color=Boston", + "lon": [ + -71.057083 + ], + "marker": { + "color": "#EF553B", + "size": [ + 89 + ], + "sizemode": "area", + "sizeref": 0.2225 + }, + "name": "color=Boston", + "showlegend": true, + "type": "scattergeo" + }, + { + "geo": "geo", + "hoverlabel": { + "namelength": 0 + }, + "hovertemplate": "color=New Delhi
size=%{marker.size}
lat=%{lat}
lon=%{lon}", + "lat": [ + 28.6448 + ], + "legendgroup": "color=New Delhi ", + "lon": [ + 77.216721 + ], + "marker": { + "color": "#00cc96", + "size": [ + 13 + ], + "sizemode": "area", + "sizeref": 0.2225 + }, + "name": "color=New Delhi ", + "showlegend": true, + "type": "scattergeo" + } + ], + "layout": { + "geo": { + "center": {}, + "domain": { + "x": [ + 0, + 1 + ], + "y": [ + 0, + 1 + ] + } + }, + "height": 600, + "legend": { + "itemsizing": "constant", + "tracegroupgap": 0 + }, + "margin": { + "t": 60 + }, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Company location and size" + } + } + }, + "text/html": [ + "
\n", + " \n", + " \n", + "
\n", + " \n", + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Company location and size on map \n", + "fig = px.scatter_geo(\n", + " lon = geo['lon'],\n", + " lat = geo['lat'],\n", + " size = geo['num_employee'],\n", + " color = geo['location'])\n", + "\n", + "fig.update_layout(\n", + " title = 'Company location and size')\n", + "\n", + "fig.show()" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/README.md b/module-2_projects/visualizing-real-world-data-project/your-code/README.md new file mode 100644 index 0000000..ea81d1f --- /dev/null +++ b/module-2_projects/visualizing-real-world-data-project/your-code/README.md @@ -0,0 +1,136 @@ +Ironhack Logo + +# Employee Satisfaction +a data visualization project, based on real world data of a consulting company
+
+*Nadav Smith, Ivy Ip, Lena Frommann* + +*DATA ft, BER, 11/19* + +## Content +- [Project Description](#project-description) +- [Questions & Hypotheses](#questions-hypotheses) +- [Dataset](#dataset) +- [Workflow](#workflow) +- [Organization](#organization) +- [Links](#links) + +## Project Description +
+Our project comprises to evaluate how satisfied employees are with company internal services of different departments.
+Therefore, we used a dataframe that contains the results of an annual employee survey with the aim to:
+
+• figure out how intense communication flows within the company are
+• the reason why employees contact certain departments
+• how employees rate the support of different departments
+ +## Questions & Hypotheses +Before starting to code, we defined some general hypotheses:
+
+1. Employee age and seniority level are related to each other and to the general satisfaction score.
+2. The number of times employees contact a certain department, the lower the rating of this department.
+3. The overall satisfaction score increases if the employee is satisfied with the services of the major departments.
+4. The satisfaction score in New Dehli is lower compared to other company locations, because not all departments are avaliable on site.
+
+Also, we formulated questions to answer within our project:
+
+1. How is the overall satisfaction of the employees?
+2. How is the overall satisfaction of the employees affected by the service level of core departments?
+3. Has the company location an impact on employee satisfaction?
+4. Why do the employees contact different departments?
+
+ +## Dataset +We used a csv dataset based on a published employee survey. However, the data provided was adjusted to not be able to draw conclusions regarding the name of the company or any other confidential information.
+While searching for a suitable dataset for this project, it was impportant for us that the overall topic is easy to understand for our audience and that the data set is well suited for visualization purposes.
+ +**Employee Satisfaction:**
+The original dataset had 76 columns. Hence it was necessary to reduce the amount of columns to only include those which are necessary for our analysis. The dataset we finally worked with has the following columns after cleaning:
+
+* ID +* location +* gender +* age_category +* seniority_category +* satisfaction_score +* #contact_acct +* rating_acct +* #contact_HR +* rating_HR +* #contact_OM +* rating_OM +* rating_security +* rating_D&R
+shape: (182, 17) + +Furthermore, we decided to extract columns from **Employee Satisfaction** to several data frames. First purpose was to make the plotting process easier and extract the reasons why employees contacted the three core departments. The columns of the dataframes are listed below:
+ +**Contact Reason Accounting**
+* Reason +* Percentage of contacts per reason
+shape: (7, 2) + +**Contact Reason HR**
+* Reason +* Percentage of contacts per reason
+shape: (9, 2) + +**Contact Reason OM**
+* Reason +* Percentage of contacts per reason
+shape: (8, 2) + +Last dataframe extracted will be extracted will be used for examining correlation between overall satisfaction, department ratings and ratings for each particular service provided by a department. + +**effects_of_subquestions_on_ratings**
+* satisfaction_score +* rating_acct +* rating_HR +* rating_OM +* rating_security +* rating_D&R +* accounting_evaluation_breack_down_Q1 (to Q10) +* HR_evaluation_breack_down_Q1 (to Q10) +* Office Management__evaluation_break down_Q1 (to Q10) +* Security_department_evaluation_break down_Q1 (to Q11) +* data&records_department_evaluation_break down_Q1 (to Q3)
+shape: (182, 48) + +## Workflow +1. Brainstorm on topic and data
+2. Agree on data set to use
+3. Define hypotheses and questions serving as a guideline for our project
+4. Decide, which data will be used and define the relevant colums
+5. Clean the data
+6. Explore the data
+7. Summarize our key findings and decide what we want to visualize in plots
+8. Start plotting
+9. Summarize our work
+10. Discuss the storyline of our presentation
+11. Make presentation
+12. Upload all deliverables in project folder on GitHub
+ +## Organization +Using a whiteboard and our notepads, we started with brainstorming in the early project stage to write down our questions, goals. Then we went through the data set based on the questionnaire together, to make sure each group member understands what the columns and questions mean. Thereafter, we did the data cleaning all together. Then, we defined and distributed tasks, to work individually on data exploration and plotting based on three main topics. There was a good balance between group work and individual work. Some tasks could be accomplished more efficiently individually.
+In the end we worked all together on the final presentation and the jupyter notebook file.
+Throughout the whole project, we had several small team meetings to inform each member about progresses and to define upcoming steps and deadlines. We used the Slack Channel for sharing our jupyter notebook files and code snippets.
+
+Our repository includes: +
+* Jupyter Notebook 1: Data Cleaning +* Jupyter Notebook 2: Contact Reasons +* Jupyter Notebook 3: Plotting +* Jupyter Notebook 4: effects_of_subquestions_on_ratings +* original csv file: Satisfaction Survey Admin (raw data) +* cleaned csv file1: Employee Satisfaction +* cleaned csv file2: Contact Reasons +* cleaned csv file3: effects_of_subquestions_on_ratings> +* text file: Data Description +* README.md file + +## Links + +[GitHub Repository]:
+https://github.com/Lenastartscoding/data-ber-10-19/tree/master/module-2_projects/python-bi-project +[Presentation]:
+https://docs.google.com/presentation/d/1j9GQBP8QaIKvccMoEkR18_Xs8rhY6zddsv78E9irp-M/edit?usp=sharing \ No newline at end of file diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/contact_reasons.csv b/module-2_projects/visualizing-real-world-data-project/your-code/contact_reasons.csv new file mode 100644 index 0000000..79cdbf7 --- /dev/null +++ b/module-2_projects/visualizing-real-world-data-project/your-code/contact_reasons.csv @@ -0,0 +1,183 @@ +satisfaction_score,rating_acct,rating_HR,rating_OM,rating_security,rating_D&R,reasons_approched_accounting_1,reasons_approched_accounting_2,reasons_approched_accounting_3,reasons_approched_accounting_4,reasons_approched_accounting_5,reasons_approched_accounting_6,reasons_approched_accounting_7,reasons_approched_HR_1,reasons_approched_HR_2,reasons_approched_HR_3,reasons_approched_HR_4,reasons_approched_HR_5,reasons_approched_HR_6,reasons_approched_Office Management_1,reasons_approched_Office Management_2,reasons_approched_Office Management_3,reasons_approched_Office Management_4,reasons_approched_Office Management_5,reasons_approched_Office Management_6,reasons_approched_Office Management_7 +8.0,3.0,6.0,1.0,4.0,,3.0,4.0,5.0,,,,,3.0,4.0,5.0,,,,3.0,,,,,, +10.0,,7.0,10.0,9.0,8.0,1.0,,,,,,,6.0,,,,,,1.0,2.0,3.0,5.0,7.0,, +8.0,8.0,,10.0,8.0,,3.0,4.0,,,,,,,,,,,,1.0,2.0,3.0,,,, +7.0,9.0,7.0,9.0,,,5.0,1.0,2.0,3.0,4.0,5.0,,3.0,,,,,,5.0,,,,,, +5.0,9.0,8.0,8.0,9.0,,4.0,1.0,2.0,3.0,4.0,,,3.0,,,,,,5.0,,,,,, +8.0,4.0,9.0,10.0,8.0,,5.0,6.0,,,,,7.0,3.0,5.0,8.0,9.0,,,1.0,2.0,3.0,4.0,5.0,6.0,7.0 +8.0,8.0,8.0,,8.0,,5.0,1.0,,,,,,1.0,6.0,,,,,1.0,3.0,5.0,,,, +10.0,8.0,9.0,10.0,10.0,10.0,5.0,1.0,2.0,4.0,6.0,,,1.0,3.0,4.0,5.0,,,1.0,2.0,3.0,4.0,5.0,6.0,7.0 +9.0,9.0,9.0,9.0,9.0,,4.0,1.0,4.0,5.0,,,,3.0,8.0,,,,,2.0,,,,,, +8.0,8.0,10.0,9.0,8.0,8.0,4.0,3.0,4.0,5.0,,,,3.0,4.0,,,,,5.0,7.0,,,,, +9.0,9.0,9.0,10.0,10.0,,4.0,5.0,,,,,,,,,,,,4.0,,,,,, +8.0,10.0,,10.0,10.0,,4.0,2.0,3.0,6.0,,,,,,,,,,1.0,2.0,4.0,7.0,,, +9.0,,9.0,10.0,8.0,8.0,1.0,,,,,,,4.0,,,,,,1.0,7.0,,,,, +9.0,10.0,10.0,9.0,10.0,,4.0,2.0,4.0,,,,,3.0,4.0,,,,,1.0,2.0,3.0,4.0,7.0,, +9.0,7.0,,10.0,10.0,,5.0,6.0,,,,,,,,,,,,1.0,2.0,3.0,,,, +7.0,8.0,9.0,9.0,8.0,,3.0,5.0,,,,,,3.0,4.0,,,,,7.0,,,,,, +8.0,,8.0,,10.0,,4.0,1.0,5.0,,,,7.0,6.0,3.0,1.0,,,,,,,,,, +7.0,,,10.0,9.0,8.0,3.0,,,,,,,,,,,,,1.0,,,,,, +8.0,9.0,10.0,10.0,8.0,9.0,5.0,4.0,6.0,,,,,,,,,,,1.0,2.0,3.0,4.0,5.0,6.0,7.0 +8.0,9.0,9.0,10.0,10.0,,4.0,4.0,5.0,,,,,3.0,,,,,,1.0,3.0,4.0,7.0,,, +8.0,9.0,,9.0,9.0,,2.0,4.0,,,,,,,,,,,,2.0,5.0,,,,, +9.0,8.0,9.0,9.0,9.0,,5.0,4.0,6.0,,,,,3.0,8.0,,,,,5.0,,,,,, +7.0,8.0,9.0,7.0,8.0,8.0,4.0,2.0,4.0,,,,,3.0,8.0,,,,,5.0,,,,,, +8.0,8.0,8.0,,6.0,8.0,3.0,3.0,,,,,7.0,3.0,,,,,,1.0,,,,,, +6.0,7.0,9.0,9.0,9.0,,4.0,5.0,6.0,,,,,3.0,5.0,,,,,1.0,2.0,4.0,,,, +3.0,5.0,3.0,6.0,8.0,4.0,2.0,5.0,,,,,,3.0,6.0,7.0,8.0,,,1.0,4.0,7.0,,,, +9.0,10.0,10.0,10.0,10.0,1.0,3.0,,,,,,7.0,3.0,5.0,,,,,1.0,2.0,,,,, +9.0,,9.0,,10.0,,1.0,,,,,,,1.0,4.0,,,,,,,,,,, +6.0,,8.0,,10.0,,1.0,,,,,,,3.0,4.0,,,,,,,,,,, +8.0,,9.0,9.0,9.0,9.0,1.0,,,,,,,4.0,8.0,,,,,2.0,3.0,7.0,,,, +8.0,9.0,5.0,9.0,9.0,,5.0,4.0,,,,,,2.0,4.0,8.0,,,,1.0,4.0,7.0,,,, +8.0,9.0,9.0,8.0,8.0,,5.0,1.0,4.0,,,,7.0,3.0,6.0,,,,,1.0,3.0,,,,, +8.0,9.0,9.0,10.0,10.0,,4.0,1.0,3.0,,,,,3.0,,,,,,2.0,7.0,,,,, +9.0,9.0,9.0,,9.0,,4.0,4.0,,,,,7.0,4.0,5.0,,,,,5.0,,,,,, +9.0,9.0,,10.0,,9.0,4.0,1.0,4.0,,,,,,,,,,,1.0,2.0,3.0,5.0,7.0,, +8.0,9.0,9.0,9.0,9.0,6.0,4.0,1.0,6.0,,,,,3.0,4.0,,,,,1.0,2.0,3.0,5.0,,, +9.0,9.0,9.0,10.0,10.0,10.0,3.0,1.0,5.0,,,,,3.0,9.0,,,,,1.0,4.0,5.0,7.0,,, +10.0,8.0,8.0,9.0,8.0,,5.0,1.0,5.0,,,,,3.0,4.0,5.0,,,,1.0,2.0,3.0,4.0,,, +6.0,8.0,6.0,9.0,9.0,,3.0,1.0,5.0,,,,,3.0,,,,,,1.0,2.0,3.0,7.0,,, +7.0,8.0,10.0,8.0,7.0,,3.0,1.0,,,,,,7.0,6.0,5.0,4.0,3.0,2.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0 +8.0,9.0,7.0,9.0,9.0,8.0,4.0,1.0,4.0,,,,7.0,3.0,,,,,,7.0,,,,,, +9.0,9.0,8.0,9.0,10.0,,4.0,1.0,,,,,,6.0,2.0,1.0,,,,1.0,3.0,4.0,5.0,,, +7.0,8.0,8.0,10.0,10.0,,5.0,1.0,4.0,,,,7.0,3.0,4.0,9.0,,,,2.0,7.0,,,,, +8.0,8.0,7.0,9.0,9.0,,4.0,1.0,4.0,,,,7.0,3.0,2.0,8.0,,,,1.0,2.0,3.0,5.0,6.0,7.0,8.0 +8.0,8.0,,8.0,8.0,,4.0,1.0,4.0,,,,,,,,,,,7.0,,,,,, +8.0,8.0,,5.0,8.0,,4.0,1.0,4.0,5.0,,,,,,,,,,1.0,5.0,,,,, +6.0,8.0,10.0,7.0,,,3.0,1.0,,,,,,3.0,,,,,,1.0,5.0,7.0,,,, +8.0,7.0,8.0,9.0,9.0,8.0,2.0,,,,,,7.0,2.0,8.0,,,,,1.0,2.0,3.0,5.0,7.0,, +7.0,7.0,7.0,9.0,9.0,,3.0,,1.0,4.0,,,,3.0,6.0,,,,,1.0,2.0,3.0,5.0,7.0,, +6.0,5.0,6.0,,7.0,,3.0,1.0,6.0,,,,,8.0,,,,,,,,,,,, +6.0,5.0,,,9.0,,3.0,1.0,,,,,,,,,,,,,,,,,, +3.0,5.0,5.0,9.0,10.0,,5.0,1.0,,,,,7.0,3.0,5.0,7.0,,,,1.0,3.0,5.0,7.0,,, +7.0,4.0,9.0,10.0,10.0,,4.0,1.0,5.0,,,,7.0,3.0,4.0,5.0,,,,1.0,,,,,, +8.0,9.0,0.0,8.0,10.0,,5.0,1.0,2.0,5.0,,,7.0,2.0,3.0,4.0,5.0,8.0,,1.0,3.0,5.0,7.0,,, +9.0,10.0,8.0,7.0,9.0,,4.0,1.0,4.0,,,,,3.0,,,,,,1.0,2.0,3.0,7.0,,, +10.0,10.0,10.0,10.0,10.0,9.0,4.0,1.0,,,,,,3.0,2.0,,,,,1.0,3.0,5.0,7.0,,, +10.0,10.0,10.0,10.0,9.0,,3.0,1.0,,,,,,2.0,,,,,,5.0,,,,,, +7.0,10.0,,10.0,10.0,,3.0,1.0,,,,,,,,,,,,1.0,2.0,7.0,,,, +9.0,10.0,10.0,,10.0,,3.0,1.0,4.0,,,,,1.0,6.0,,,,,,,,,,, +9.0,9.0,9.0,9.0,8.0,,5.0,2.0,,,,,,2.0,3.0,,,,,4.0,7.0,,,,, +8.0,8.0,9.0,9.0,10.0,,4.0,1.0,2.0,,,,7.0,2.0,4.0,,,,,5.0,7.0,,,,, +8.0,8.0,8.0,9.0,9.0,8.0,3.0,1.0,6.0,,,,,3.0,4.0,,,,,2.0,3.0,5.0,7.0,,, +7.0,,9.0,6.0,10.0,,4.0,2.0,4.0,,,,,7.0,,,,,,1.0,2.0,3.0,4.0,5.0,7.0, +7.0,6.0,8.0,8.0,9.0,8.0,5.0,1.0,2.0,4.0,,,,3.0,4.0,5.0,8.0,,,1.0,2.0,3.0,4.0,7.0,, +8.0,6.0,8.0,10.0,9.0,1.0,5.0,1.0,,,,,,2.0,,,,,,1.0,2.0,,,,, +9.0,9.0,9.0,9.0,9.0,,4.0,2.0,4.0,,,,7.0,2.0,3.0,,,,,3.0,5.0,,,,, +,10.0,10.0,6.0,,,5.0,2.0,4.0,,,,,3.0,4.0,5.0,,,,2.0,7.0,,,,, +10.0,8.0,10.0,10.0,10.0,,3.0,1.0,2.0,,,,,4.0,6.0,,,,,2.0,5.0,,,,, +8.0,9.0,9.0,8.0,9.0,,5.0,3.0,4.0,,,,7.0,6.0,5.0,3.0,2.0,,,1.0,2.0,4.0,7.0,,, +8.0,9.0,,,,,4.0,1.0,4.0,,,,,,,,,,,,,,,,, +9.0,8.0,,10.0,10.0,,4.0,4.0,6.0,,,,,,,,,,,1.0,2.0,3.0,5.0,6.0,7.0, +6.0,4.0,8.0,10.0,10.0,5.0,5.0,1.0,3.0,5.0,,,,3.0,,,,,,1.0,5.0,7.0,,,, +10.0,9.0,9.0,10.0,8.0,3.0,2.0,3.0,,,,,,4.0,,,,,,1.0,7.0,,,,, +7.0,8.0,9.0,10.0,9.0,,4.0,1.0,4.0,,,,,4.0,,,,,,7.0,,,,,, +9.0,10.0,6.0,,8.0,,4.0,1.0,3.0,4.0,,,7.0,2.0,4.0,,,,,5.0,,,,,, +9.0,9.0,10.0,10.0,10.0,10.0,5.0,2.0,3.0,4.0,,,,3.0,4.0,8.0,,,,1.0,2.0,3.0,5.0,7.0,, +9.0,9.0,9.0,8.0,8.0,,5.0,1.0,2.0,3.0,4.0,,,3.0,4.0,,,,,3.0,5.0,,,,, +7.0,9.0,9.0,8.0,9.0,,5.0,1.0,4.0,,,,7.0,3.0,4.0,9.0,,,,3.0,6.0,7.0,,,, +9.0,9.0,10.0,,9.0,,5.0,5.0,,,,,7.0,7.0,,,,,,,,,,,, +8.0,9.0,9.0,9.0,9.0,,4.0,1.0,,,,,7.0,3.0,4.0,,,,,1.0,2.0,7.0,,,, +8.0,9.0,8.0,9.0,9.0,9.0,4.0,1.0,,,,,,3.0,4.0,6.0,9.0,,,1.0,2.0,3.0,4.0,5.0,7.0, +8.0,9.0,8.0,8.0,9.0,9.0,4.0,4.0,,,,,,2.0,3.0,4.0,,,,1.0,2.0,3.0,5.0,,, +7.0,9.0,10.0,10.0,10.0,10.0,4.0,1.0,4.0,,,,,2.0,3.0,4.0,,,,1.0,2.0,7.0,,,, +9.0,9.0,9.0,8.0,9.0,9.0,4.0,2.0,3.0,4.0,,,,3.0,4.0,5.0,8.0,,,2.0,5.0,,,,, +8.0,9.0,8.0,10.0,8.0,10.0,3.0,1.0,,,,,,2.0,3.0,4.0,5.0,,,1.0,2.0,7.0,,,, +8.0,8.0,9.0,9.0,9.0,,4.0,,,,,,7.0,9.0,,,,,,7.0,,,,,, +7.0,9.0,7.0,8.0,,8.0,4.0,4.0,,,,,,3.0,7.0,,,,,2.0,5.0,6.0,,,, +9.0,9.0,9.0,10.0,10.0,,4.0,1.0,3.0,4.0,,,,2.0,3.0,6.0,,,,1.0,,,,,, +7.0,8.0,7.0,5.0,9.0,,4.0,1.0,3.0,5.0,,,,8.0,,,,,,1.0,7.0,,,,, +7.0,8.0,4.0,,3.0,,4.0,1.0,,,,,,2.0,6.0,,,,,5.0,,,,,, +6.0,5.0,6.0,10.0,8.0,6.0,5.0,1.0,2.0,,,,,3.0,9.0,,,,,1.0,2.0,7.0,,,, +7.0,7.0,7.0,10.0,,10.0,4.0,3.0,4.0,6.0,,,,3.0,4.0,5.0,,,,1.0,2.0,4.0,7.0,,, +9.0,8.0,9.0,8.0,9.0,,4.0,1.0,3.0,4.0,,,,3.0,4.0,,,,,1.0,5.0,,,,, +3.0,9.0,7.0,8.0,9.0,,5.0,1.0,2.0,3.0,4.0,,,3.0,4.0,5.0,8.0,,,1.0,2.0,3.0,5.0,7.0,, +7.0,9.0,7.0,10.0,9.0,,4.0,1.0,4.0,,,,,2.0,3.0,4.0,5.0,8.0,9.0,1.0,2.0,7.0,,,, +6.0,5.0,9.0,6.0,9.0,,4.0,1.0,2.0,4.0,5.0,,7.0,3.0,4.0,,,,,1.0,2.0,5.0,7.0,,, +9.0,10.0,10.0,8.0,10.0,,4.0,1.0,4.0,,,,7.0,2.0,3.0,4.0,,,,1.0,2.0,5.0,,,, +5.0,7.0,6.0,6.0,5.0,9.0,4.0,3.0,4.0,,,,,8.0,5.0,2.0,9.0,,,1.0,2.0,3.0,5.0,7.0,, +9.0,9.0,9.0,9.0,9.0,8.0,4.0,1.0,,,,,,2.0,3.0,8.0,,,,1.0,5.0,7.0,,,, +9.0,9.0,9.0,8.0,9.0,,4.0,1.0,3.0,,,,,3.0,,,,,,1.0,7.0,,,,, +8.0,10.0,7.0,10.0,10.0,8.0,5.0,1.0,6.0,,,,,5.0,3.0,1.0,,,,1.0,5.0,7.0,,,, +8.0,9.0,9.0,10.0,8.0,,5.0,1.0,,,,,,6.0,2.0,1.0,,,,1.0,2.0,5.0,6.0,7.0,, +9.0,9.0,9.0,7.0,9.0,9.0,4.0,3.0,4.0,,,,,3.0,,,,,,1.0,2.0,4.0,7.0,8.0,, +8.0,9.0,10.0,9.0,9.0,,4.0,1.0,2.0,3.0,,,,3.0,8.0,,,,,1.0,2.0,7.0,8.0,,, +6.0,9.0,8.0,9.0,9.0,,3.0,3.0,,,,,7.0,4.0,8.0,,,,,1.0,2.0,3.0,,,, +10.0,9.0,10.0,8.0,9.0,7.0,3.0,1.0,5.0,,,,,2.0,3.0,4.0,,,,1.0,2.0,4.0,7.0,,, +3.0,9.0,3.0,7.0,9.0,,4.0,4.0,,,,,,3.0,4.0,,,,,1.0,4.0,,,,, +8.0,8.0,8.0,8.0,8.0,,5.0,1.0,3.0,4.0,5.0,,,3.0,4.0,5.0,,,,2.0,5.0,,,,, +8.0,8.0,8.0,9.0,8.0,,4.0,1.0,,,,,,1.0,7.0,,,,,1.0,3.0,4.0,5.0,6.0,, +8.0,7.0,9.0,10.0,9.0,10.0,4.0,2.0,3.0,4.0,,,,3.0,4.0,,,,,2.0,3.0,5.0,,,, +9.0,8.0,8.0,7.0,4.0,,4.0,1.0,3.0,4.0,,,,2.0,6.0,,,,,1.0,2.0,5.0,7.0,,, +8.0,8.0,8.0,7.0,5.0,,5.0,1.0,4.0,,,,,3.0,,,,,,1.0,2.0,3.0,4.0,5.0,6.0,7.0 +6.0,8.0,4.0,7.0,8.0,,5.0,1.0,2.0,3.0,4.0,,,2.0,3.0,8.0,,,,1.0,2.0,5.0,,,, +7.0,8.0,8.0,8.0,8.0,,5.0,1.0,,,,,,2.0,8.0,,,,,2.0,5.0,7.0,,,, +9.0,8.0,8.0,9.0,9.0,9.0,5.0,1.0,2.0,3.0,4.0,,,3.0,,,,,,2.0,,,,,, +8.0,8.0,7.0,8.0,8.0,,4.0,1.0,2.0,4.0,,,,2.0,3.0,6.0,,,,3.0,5.0,,,,, +8.0,8.0,8.0,8.0,9.0,,4.0,4.0,,,,,7.0,4.0,1.0,,,,,1.0,2.0,3.0,5.0,7.0,, +10.0,8.0,10.0,8.0,9.0,,4.0,1.0,4.0,,,,,3.0,4.0,5.0,8.0,,,5.0,,,,,, +8.0,8.0,,8.0,8.0,,4.0,1.0,4.0,,,,,,,,,,,1.0,5.0,,,,, +8.0,8.0,8.0,10.0,8.0,,3.0,3.0,5.0,,,,,2.0,3.0,,,,,1.0,2.0,4.0,7.0,,, +8.0,8.0,9.0,5.0,8.0,8.0,3.0,1.0,4.0,,,,,3.0,,,,,,7.0,,,,,, +7.0,7.0,10.0,10.0,10.0,10.0,5.0,1.0,4.0,,,,7.0,2.0,3.0,,,,,4.0,7.0,,,,, +10.0,7.0,7.0,10.0,8.0,10.0,4.0,1.0,4.0,,,,7.0,2.0,3.0,,,,,1.0,2.0,4.0,6.0,,, +6.0,6.0,7.0,8.0,7.0,,4.0,1.0,2.0,4.0,,,,2.0,3.0,4.0,6.0,8.0,1.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0 +9.0,7.0,10.0,10.0,9.0,7.0,5.0,1.0,2.0,3.0,6.0,,,3.0,4.0,5.0,,,,1.0,2.0,3.0,4.0,5.0,, +7.0,4.0,8.0,9.0,8.0,,4.0,1.0,4.0,,,,,2.0,3.0,4.0,,,,3.0,7.0,8.0,,,, +5.0,5.0,7.0,8.0,7.0,1.0,4.0,3.0,4.0,,,,,2.0,4.0,,,,,1.0,5.0,7.0,,,, +7.0,8.0,9.0,9.0,7.0,8.0,4.0,3.0,,,,,,3.0,8.0,,,,,1.0,2.0,7.0,,,, +8.0,9.0,,10.0,9.0,10.0,2.0,1.0,,,,,,,,,,,,1.0,,,,,, +3.0,7.0,5.0,9.0,6.0,7.0,5.0,1.0,2.0,3.0,4.0,,,3.0,4.0,,,,,1.0,2.0,7.0,,,, +6.0,5.0,3.0,7.0,7.0,,5.0,1.0,,,,,,3.0,4.0,5.0,6.0,,,1.0,5.0,,,,, +3.0,7.0,1.0,3.0,7.0,7.0,4.0,1.0,3.0,4.0,5.0,,7.0,2.0,3.0,4.0,8.0,,,1.0,3.0,5.0,7.0,,, +7.0,7.0,8.0,10.0,9.0,,5.0,3.0,,,,,,3.0,,,,,,2.0,3.0,,,,, +7.0,8.0,8.0,8.0,7.0,8.0,5.0,1.0,2.0,3.0,4.0,,,3.0,,,,,,1.0,3.0,,,,, +8.0,8.0,9.0,9.0,9.0,9.0,4.0,2.0,4.0,,,,,3.0,,,,,,2.0,4.0,,,,, +7.0,7.0,8.0,8.0,9.0,7.0,5.0,1.0,3.0,4.0,,,,3.0,4.0,,,,,1.0,3.0,,,,, +7.0,8.0,9.0,10.0,7.0,,4.0,1.0,,,,,,2.0,3.0,4.0,6.0,8.0,,1.0,7.0,,,,, +3.0,7.0,7.0,6.0,7.0,,4.0,1.0,2.0,,,,,3.0,8.0,,,,,1.0,2.0,3.0,5.0,,, +6.0,6.0,9.0,,9.0,,4.0,1.0,4.0,,,,,2.0,3.0,8.0,,,,,,,,,, +6.0,3.0,7.0,10.0,8.0,2.0,3.0,1.0,4.0,,,,,3.0,4.0,,,,,1.0,2.0,3.0,4.0,5.0,6.0,7.0 +7.0,7.0,8.0,9.0,8.0,,5.0,1.0,3.0,4.0,5.0,,,3.0,4.0,5.0,8.0,,,2.0,3.0,4.0,5.0,7.0,, +4.0,3.0,3.0,8.0,9.0,,5.0,1.0,2.0,,,,,2.0,3.0,8.0,9.0,,,1.0,2.0,,,,, +8.0,8.0,7.0,9.0,9.0,,5.0,1.0,3.0,,,,7.0,2.0,3.0,4.0,,,,1.0,2.0,5.0,7.0,,, +8.0,6.0,9.0,9.0,10.0,,4.0,2.0,3.0,,,,7.0,3.0,6.0,,,,,1.0,2.0,7.0,,,, +7.0,5.0,8.0,7.0,10.0,,5.0,2.0,3.0,,,,7.0,3.0,8.0,,,,,1.0,2.0,7.0,,,, +6.0,7.0,4.0,9.0,7.0,,2.0,6.0,,,,,,8.0,,,,,,1.0,4.0,5.0,7.0,,, +9.0,5.0,7.0,10.0,10.0,7.0,4.0,1.0,3.0,4.0,,,,2.0,3.0,4.0,,,,1.0,5.0,7.0,,,, +5.0,1.0,8.0,9.0,8.0,,5.0,1.0,2.0,3.0,,,,3.0,4.0,,,,,7.0,,,,,, +3.0,5.0,3.0,8.0,8.0,,5.0,1.0,3.0,4.0,5.0,,,3.0,4.0,8.0,9.0,,,7.0,,,,,, +7.0,6.0,6.0,10.0,10.0,,5.0,1.0,3.0,,,,,2.0,3.0,4.0,,,,1.0,2.0,,,,, +5.0,4.0,8.0,8.0,9.0,,5.0,1.0,3.0,4.0,5.0,,7.0,6.0,4.0,3.0,1.0,,,1.0,2.0,5.0,7.0,,, +7.0,8.0,8.0,10.0,8.0,10.0,4.0,1.0,3.0,4.0,,,7.0,2.0,3.0,,,,,1.0,2.0,7.0,8.0,,, +7.0,4.0,8.0,7.0,7.0,8.0,3.0,1.0,,,,,,,,,,,,1.0,7.0,,,,, +8.0,,10.0,9.0,10.0,,1.0,,,,,,,2.0,6.0,,,,,,,,,,, +4.0,5.0,4.0,6.0,9.0,,4.0,1.0,3.0,5.0,,,,9.0,,,,,,1.0,5.0,,,,, +5.0,4.0,8.0,8.0,7.0,8.0,5.0,1.0,2.0,3.0,4.0,,,3.0,4.0,,,,,1.0,2.0,5.0,7.0,,, +5.0,4.0,8.0,10.0,10.0,,4.0,2.0,3.0,,,,,3.0,4.0,8.0,,,,1.0,2.0,7.0,,,, +4.0,3.0,4.0,9.0,10.0,,5.0,1.0,2.0,3.0,4.0,,,6.0,3.0,1.0,,,,1.0,3.0,5.0,7.0,,, +5.0,3.0,7.0,9.0,9.0,,5.0,2.0,3.0,4.0,,,,3.0,4.0,,,,,,,,,,, +7.0,9.0,7.0,10.0,7.0,,5.0,1.0,6.0,,,,,3.0,4.0,,,,,1.0,4.0,,,,, +9.0,10.0,10.0,10.0,10.0,,4.0,3.0,4.0,,,,7.0,2.0,3.0,8.0,,,,1.0,4.0,7.0,,,, +7.0,6.0,6.0,9.0,8.0,9.0,5.0,1.0,,,,,,3.0,6.0,,,,,1.0,4.0,5.0,7.0,,, +10.0,10.0,10.0,10.0,10.0,,5.0,1.0,3.0,4.0,,,,2.0,3.0,4.0,5.0,8.0,,1.0,2.0,3.0,4.0,5.0,6.0,7.0 +4.0,10.0,5.0,8.0,10.0,,4.0,1.0,,,,,,4.0,,,,,,1.0,4.0,,,,, +10.0,10.0,9.0,10.0,10.0,,3.0,1.0,3.0,,,,,4.0,6.0,,,,,1.0,2.0,4.0,7.0,,, +8.0,9.0,7.0,10.0,10.0,,4.0,3.0,2.0,,,,,4.0,3.0,1.0,,,,1.0,3.0,5.0,,,, +8.0,10.0,9.0,10.0,10.0,10.0,5.0,2.0,3.0,4.0,,,,3.0,2.0,9.0,,,,7.0,8.0,,,,, +10.0,9.0,9.0,8.0,10.0,,4.0,1.0,5.0,,,,,6.0,5.0,2.0,1.0,,,1.0,2.0,5.0,7.0,,, +10.0,6.0,8.0,9.0,10.0,9.0,4.0,4.0,5.0,,,,,7.0,8.0,,,,,1.0,3.0,4.0,5.0,7.0,, +9.0,10.0,9.0,10.0,10.0,,5.0,1.0,2.0,3.0,,,,2.0,3.0,,,,,7.0,,,,,, +9.0,8.0,3.0,10.0,10.0,,5.0,1.0,,,,,,2.0,6.0,,,,,1.0,2.0,5.0,,,, +8.0,10.0,10.0,9.0,,,4.0,1.0,4.0,,,,,3.0,4.0,6.0,,,,,,,,,, +,,8.0,10.0,9.0,,4.0,1.0,2.0,3.0,4.0,,,3.0,4.0,6.0,,,,1.0,2.0,4.0,7.0,,, +10.0,9.0,10.0,10.0,10.0,10.0,5.0,4.0,,,,,,6.0,3.0,1.0,,,,1.0,2.0,3.0,5.0,7.0,, +7.0,8.0,8.0,8.0,10.0,4.0,5.0,1.0,2.0,4.0,,,,3.0,6.0,7.0,8.0,,,1.0,2.0,5.0,6.0,7.0,, +6.0,8.0,8.0,9.0,8.0,8.0,4.0,1.0,3.0,4.0,,,,4.0,3.0,1.0,,,,1.0,2.0,5.0,7.0,,, +10.0,10.0,10.0,10.0,10.0,,5.0,,,,,,7.0,2.0,6.0,7.0,9.0,,,1.0,2.0,3.0,4.0,5.0,7.0, +9.0,10.0,10.0,9.0,10.0,,4.0,1.0,,,,,,3.0,,,,,,1.0,3.0,5.0,,,, +10.0,10.0,8.0,10.0,10.0,8.0,4.0,1.0,2.0,4.0,,,,3.0,4.0,5.0,,,,1.0,2.0,3.0,5.0,,, +8.0,10.0,10.0,10.0,,9.0,3.0,4.0,,,,,,4.0,9.0,,,,,1.0,2.0,7.0,8.0,,, +8.0,10.0,9.0,10.0,10.0,,2.0,4.0,,,,,,2.0,8.0,,,,,1.0,,,,,, +6.0,6.0,8.0,7.0,6.0,6.0,2.0,1.0,,,,,,4.0,,,,,,1.0,,,,,, diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/effects_of_subquestions_on_ratings .ipynb b/module-2_projects/visualizing-real-world-data-project/your-code/effects_of_subquestions_on_ratings .ipynb new file mode 100644 index 0000000..40fd366 --- /dev/null +++ b/module-2_projects/visualizing-real-world-data-project/your-code/effects_of_subquestions_on_ratings .ipynb @@ -0,0 +1,778 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Looking for correlations between breakout points and department rating\n", + "\n", + "Previously, we found that the the ratings of 2 sub-departments have hight correlation coefficient with the genral satisfaction rating. I.e: Accouning and HR.\n", + "\n", + "In the following notebook we will deep dive into those rating and look for statistically significant correlation coefficient between the genral satisfaction and rating of the above mantioned sub departments and the in depth questions we asked regarding to each depratment performance.\n", + "\n", + "We will mark questions as correlating with ratings when coralation score is a 0.5 and falls above the 75% percentile of the question group of questions. \n", + "\n", + "These questions will devide our finding into two groups of high correlations and low correlations.\n", + "\n", + "1) **Low correlations** are questions whose score falls above the 75% precentile of groups questions with its department rating or the general satisfactio, but not both!\n", + "\n", + "2) **High correlations** are questions whose score falls above the 75% precentile of groups questions with its department rating and the general satisfaction.\n", + "\n", + "**Description of each question can be found in Data_Description.txt.**\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "from plotly import graph_objects as go\n", + "import plotly_express as px\n", + "import seaborn as sns\n", + "from matplotlib import pyplot as plt" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv(\"effects_of_subquestions_on_ratings.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(182, 48)" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Establishing the relevant data frames\n", + "- Adding the break down questions and the departments rating and general satisfaction score " + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "account_rating = df[['satisfaction_score','rating_acct',\"accounting_evaluation_breack_down_Q1\", \"accounting_evaluation_breack_down_Q2\", \"accounting_evaluation_breack_down_Q3\", \"accounting_evaluation_breack_down_Q4\", \"accounting_evaluation_breack_down_Q5\", \"accounting_evaluation_breack_down_Q6\", \"accounting_evaluation_breack_down_Q7\", \"accounting_evaluation_breack_down_Q8\"]]\n", + "HR_rating = df[['satisfaction_score','rating_HR', 'HR_evaluation_breack_down_Q1', 'HR_evaluation_breack_down_Q2',\n", + " 'HR_evaluation_breack_down_Q3', 'HR_evaluation_breack_down_Q4',\n", + " 'HR_evaluation_breack_down_Q5', 'HR_evaluation_breack_down_Q6',\n", + " 'HR_evaluation_breack_down_Q7', 'HR_evaluation_breack_down_Q8',\n", + " 'HR_evaluation_breack_down_Q9', 'HR_evaluation_breack_down_Q10']]" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "corr_list =[ account_rating, HR_rating]\n", + "for df in corr_list:\n", + " df = df.corr()\n", + " f, ax = plt.subplots(figsize=(12, 9))\n", + " sns.heatmap(df, vmax=1, cmap=\"RdBu\");" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "# calling corrations function\n", + "account_rating_corr = account_rating.corr()[['satisfaction_score',\"rating_acct\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
satisfaction_scorerating_acct
satisfaction_score1.0000000.537422
rating_acct0.5374221.000000
accounting_evaluation_breack_down_Q10.4671130.739982
accounting_evaluation_breack_down_Q20.5202710.766280
accounting_evaluation_breack_down_Q30.4232050.689014
accounting_evaluation_breack_down_Q40.4393760.665841
accounting_evaluation_breack_down_Q50.3803310.556300
accounting_evaluation_breack_down_Q60.4969280.785138
accounting_evaluation_breack_down_Q70.3842550.654189
accounting_evaluation_breack_down_Q80.4719030.755084
\n", + "
" + ], + "text/plain": [ + " satisfaction_score rating_acct\n", + "satisfaction_score 1.000000 0.537422\n", + "rating_acct 0.537422 1.000000\n", + "accounting_evaluation_breack_down_Q1 0.467113 0.739982\n", + "accounting_evaluation_breack_down_Q2 0.520271 0.766280\n", + "accounting_evaluation_breack_down_Q3 0.423205 0.689014\n", + "accounting_evaluation_breack_down_Q4 0.439376 0.665841\n", + "accounting_evaluation_breack_down_Q5 0.380331 0.556300\n", + "accounting_evaluation_breack_down_Q6 0.496928 0.785138\n", + "accounting_evaluation_breack_down_Q7 0.384255 0.654189\n", + "accounting_evaluation_breack_down_Q8 0.471903 0.755084" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "account_rating_corr" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
satisfaction_scorerating_acct
count8.0000008.000000
mean0.4479230.701479
std0.0505470.075869
min0.3803310.556300
25%0.4134680.662928
50%0.4532440.714498
75%0.4781590.757883
max0.5202710.785138
\n", + "
" + ], + "text/plain": [ + " satisfaction_score rating_acct\n", + "count 8.000000 8.000000\n", + "mean 0.447923 0.701479\n", + "std 0.050547 0.075869\n", + "min 0.380331 0.556300\n", + "25% 0.413468 0.662928\n", + "50% 0.453244 0.714498\n", + "75% 0.478159 0.757883\n", + "max 0.520271 0.785138" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# taking out the department rating and 'satisfaction_score' to not to skew the percentiles \n", + "account_rating_corr.loc[account_rating_corr.index.str.contains(\"accounting\")].describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
satisfaction_scorerating_acct
rating_acct0.5374221.00000
accounting_evaluation_breack_down_Q20.5202710.76628
\n", + "
" + ], + "text/plain": [ + " satisfaction_score rating_acct\n", + "rating_acct 0.537422 1.00000\n", + "accounting_evaluation_breack_down_Q2 0.520271 0.76628" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# high correlation\n", + "account_rating_corr.loc[(account_rating_corr[\"satisfaction_score\"] >= 0.5 ) & (account_rating_corr[\"rating_acct\"] >= 0.757883)]" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
satisfaction_scorerating_acct
satisfaction_score1.0000000.537422
rating_acct0.5374221.000000
accounting_evaluation_breack_down_Q20.5202710.766280
accounting_evaluation_breack_down_Q60.4969280.785138
\n", + "
" + ], + "text/plain": [ + " satisfaction_score rating_acct\n", + "satisfaction_score 1.000000 0.537422\n", + "rating_acct 0.537422 1.000000\n", + "accounting_evaluation_breack_down_Q2 0.520271 0.766280\n", + "accounting_evaluation_breack_down_Q6 0.496928 0.785138" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#low correlation\n", + "account_rating_corr.loc[(account_rating_corr[\"satisfaction_score\"] >= 0.5 ) | (account_rating_corr[\"rating_acct\"] >= 0.757883)]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "HR_rating_corr = HR_rating.corr()[['satisfaction_score',\"rating_HR\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
satisfaction_scorerating_HR
count11.00000011.000000
mean0.5839840.661953
std0.0927160.149402
min0.3569270.474747
25%0.5668030.569838
50%0.5829540.643787
75%0.6179220.702227
max0.7386251.000000
\n", + "
" + ], + "text/plain": [ + " satisfaction_score rating_HR\n", + "count 11.000000 11.000000\n", + "mean 0.583984 0.661953\n", + "std 0.092716 0.149402\n", + "min 0.356927 0.474747\n", + "25% 0.566803 0.569838\n", + "50% 0.582954 0.643787\n", + "75% 0.617922 0.702227\n", + "max 0.738625 1.000000" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# taking out the department rating and 'satisfaction_score' to not to skew the percentiles \n", + "HR_rating_corr.loc[HR_rating_corr.index.str.contains(\"HR\")].describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
satisfaction_scorerating_HR
HR_evaluation_breack_down_Q50.7386250.829049
\n", + "
" + ], + "text/plain": [ + " satisfaction_score rating_HR\n", + "HR_evaluation_breack_down_Q5 0.738625 0.829049" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# high correlation\n", + "HR_rating_corr.loc[(HR_rating_corr[\"satisfaction_score\"] >= 0.617922) & (HR_rating_corr[\"rating_HR\"] >= 0.702227)]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
satisfaction_scorerating_HR
satisfaction_score1.0000000.582954
rating_HR0.5829541.000000
HR_evaluation_breack_down_Q50.7386250.829049
HR_evaluation_breack_down_Q60.6041320.732194
HR_evaluation_breack_down_Q70.6224590.672260
HR_evaluation_breack_down_Q100.6554420.643787
\n", + "
" + ], + "text/plain": [ + " satisfaction_score rating_HR\n", + "satisfaction_score 1.000000 0.582954\n", + "rating_HR 0.582954 1.000000\n", + "HR_evaluation_breack_down_Q5 0.738625 0.829049\n", + "HR_evaluation_breack_down_Q6 0.604132 0.732194\n", + "HR_evaluation_breack_down_Q7 0.622459 0.672260\n", + "HR_evaluation_breack_down_Q10 0.655442 0.643787" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#low correlation\n", + "HR_rating_corr.loc[(HR_rating_corr[\"satisfaction_score\"] >= 0.617922) | (HR_rating_corr[\"rating_HR\"] >= 0.702227)]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Finding and discussions\n", + "\n", + "The result of subquestions and rating of individual departments as well as satisfaction score are positively correlated. According to their correlation coefficients, we categorize those questions into three groups. \n", + "\n", + "#### High: \n", + "*Questions that are highly correlated to both Satisfaciton score and department rating*\n", + "- accounting_evaluation_breack_down_Q2 : **Satisfaction with referrals regarding expenditure.**\n", + "- HR_evaluation_breack_down_Q5 : **Off-boarding process**\n", + "\n", + "#### Low: \n", + "*Questions that are highly correlated to Satisfaction score OR department rating*\n", + "\n", + "- accounting_evaluation_breack_down_Q1 : **Satisfaction with referrals regarding payrolls**\n", + "- accounting_evaluation_breack_down_Q6 : **Professionalism of the accounting department staff**\n", + "\n", + "- HR_evaluation_breack_down_Q6 : **Relocation and reassignment process**\n", + "- HR_evaluation_breack_down_Q7: **Professionalism of the HR department staff**\n", + "- HR_evaluation_breack_down_Q10: **To what degree are you comfortable talking with HR about your problems**\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/effects_of_subquestions_on_ratings.csv b/module-2_projects/visualizing-real-world-data-project/your-code/effects_of_subquestions_on_ratings.csv new file mode 100644 index 0000000..7f17789 --- /dev/null +++ b/module-2_projects/visualizing-real-world-data-project/your-code/effects_of_subquestions_on_ratings.csv @@ -0,0 +1,183 @@ +satisfaction_score,rating_acct,rating_HR,rating_OM,rating_security,rating_D&R,accounting_evaluation_breack_down_Q1,accounting_evaluation_breack_down_Q2,accounting_evaluation_breack_down_Q3,accounting_evaluation_breack_down_Q4,accounting_evaluation_breack_down_Q5,accounting_evaluation_breack_down_Q6,accounting_evaluation_breack_down_Q7,accounting_evaluation_breack_down_Q8,HR_evaluation_breack_down_Q1,HR_evaluation_breack_down_Q2,HR_evaluation_breack_down_Q3,HR_evaluation_breack_down_Q4,HR_evaluation_breack_down_Q5,HR_evaluation_breack_down_Q6,HR_evaluation_breack_down_Q7,HR_evaluation_breack_down_Q8,HR_evaluation_breack_down_Q9,HR_evaluation_breack_down_Q10,Office Management__evaluation_break down_Q1,Office Management__evaluation_break down_Q2,Office Management__evaluation_break down_Q3,Office Management__evaluation_break down_Q4,Office Management__evaluation_break down_Q5,Office Management__evaluation_break down_Q6,Office Management__evaluation_break down_Q7,Office Management__evaluation_break down_Q8,Office Management__evaluation_break down_Q9,Office Management__evaluation_break down_Q10,Security_department_evaluation_break down_Q1,Security_department_evaluation_break down_Q2,Security_department_evaluation_break down_Q3,Security_department_evaluation_break down_Q4,Security_department_evaluation_break down_Q5,Security_department_evaluation_break down_Q6,Security_department_evaluation_break down_Q7,Security_department_evaluation_break down_Q8,Security_department_evaluation_break down_Q9,Security_department_evaluation_break down_Q10,Security_department_evaluation_break down_Q11,data&records_department_evaluation_break down_Q1,data&records_department_evaluation_break down_Q2,data&records_department_evaluation_break down_Q3 +8.0,3.0,6.0,1.0,4.0,,6.0,6.0,3.0,6.0,8.0,6.0,9.0,7.0,3.0,4.0,5.0,4.0,,,3.0,8.0,6.0,6.0,5.0,2.0,3.0,4.0,,,,,4.0,4.0,9.0,9.0,7.0,7.0,,,,,,,,,, +10.0,,7.0,10.0,9.0,8.0,,,,8.0,,8.0,4.0,8.0,,9.0,9.0,9.0,,8.0,8.0,8.0,8.0,8.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,8.0,10.0,7.0,9.0,9.0,8.0,10.0,9.0,8.0,9.0,8.0,8.0,8.0 +8.0,8.0,,10.0,8.0,,,,,,8.0,,,,9.0,6.0,9.0,,,,,,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,6.0,8.0,,8.0,8.0,,8.0,,8.0,8.0,6.0,10.0,10.0,10.0 +7.0,9.0,7.0,9.0,,,9.0,9.0,9.0,9.0,8.0,8.0,8.0,8.0,7.0,10.0,8.0,,,,8.0,8.0,8.0,8.0,10.0,10.0,10.0,,,,,10.0,10.0,10.0,10.0,10.0,8.0,10.0,10.0,,,,,,,,, +5.0,9.0,8.0,8.0,9.0,,9.0,9.0,9.0,9.0,7.0,9.0,9.0,8.0,,,8.0,,,,,7.0,6.0,6.0,9.0,9.0,9.0,2.0,,,,,9.0,9.0,9.0,9.0,,9.0,9.0,9.0,8.0,,9.0,9.0,9.0,,, +8.0,4.0,9.0,10.0,8.0,,,,,9.0,,7.0,7.0,8.0,,9.0,8.0,9.0,,9.0,9.0,9.0,9.0,9.0,9.0,8.0,9.0,9.0,6.0,7.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,, +8.0,8.0,8.0,,8.0,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,9.0,9.0,,,9.0,9.0,9.0,8.0,9.0,9.0,9.0,9.0,,9.0,,8.0,7.0,9.0,10.0,8.0,,,,,,10.0,10.0,10.0,10.0,,, +10.0,8.0,9.0,10.0,10.0,10.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,9.0,10.0,,9.0,9.0,,,9.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,8.0,10.0,10.0,,10.0,10.0,10.0,10.0,,10.0 +9.0,9.0,9.0,9.0,9.0,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,9.0,9.0,,,9.0,9.0,9.0,9.0,9.0,8.0,8.0,8.0,,,,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,9.0,9.0,9.0,9.0,9.0,,, +8.0,8.0,10.0,9.0,8.0,8.0,9.0,8.0,8.0,9.0,9.0,8.0,8.0,8.0,9.0,9.0,10.0,9.0,,,8.0,8.0,8.0,9.0,8.0,8.0,8.0,8.0,,,,8.0,6.0,8.0,8.0,8.0,8.0,9.0,9.0,9.0,8.0,8.0,8.0,8.0,9.0,8.0,8.0,9.0 +9.0,9.0,9.0,10.0,10.0,,,,,,,10.0,10.0,10.0,,,,,,,,,,,9.0,9.0,10.0,9.0,10.0,,,,6.0,9.0,10.0,10.0,,10.0,,,,,9.0,9.0,9.0,,, +8.0,10.0,,10.0,10.0,,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,,9.0,10.0,,,,8.0,8.0,9.0,9.0,10.0,10.0,10.0,10.0,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,10.0,9.0,10.0,,, +9.0,,9.0,10.0,8.0,8.0,,,,,,8.0,8.0,10.0,,,9.0,,,8.0,8.0,8.0,10.0,9.0,8.0,8.0,7.0,,,,,9.0,4.0,9.0,8.0,,,8.0,8.0,,,9.0,9.0,8.0,9.0,7.0,8.0,8.0 +9.0,10.0,10.0,9.0,10.0,,,10.0,10.0,,10.0,10.0,10.0,10.0,,,10.0,,,,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,,,,9.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,,,10.0,10.0,10.0,10.0,,, +9.0,7.0,,10.0,10.0,,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,,,10.0,,,,10.0,10.0,10.0,10.0,10.0,6.0,10.0,,,,,10.0,10.0,10.0,10.0,10.0,,10.0,10.0,,10.0,10.0,10.0,10.0,10.0,,, +7.0,8.0,9.0,9.0,8.0,,8.0,,,8.0,,8.0,8.0,8.0,,,9.0,10.0,,,9.0,9.0,9.0,10.0,7.0,7.0,8.0,8.0,,,9.0,10.0,10.0,9.0,7.0,7.0,9.0,9.0,9.0,9.0,7.0,7.0,8.0,7.0,7.0,,, +8.0,,8.0,,10.0,,,,,7.0,8.0,,,,10.0,,,,,,8.0,8.0,9.0,,,,,,,,,,1.0,,10.0,10.0,3.0,9.0,9.0,8.0,9.0,10.0,8.0,9.0,9.0,,, +7.0,,,10.0,9.0,8.0,,,,,,,,,1.0,1.0,7.0,7.0,,7.0,8.0,8.0,9.0,5.0,9.0,9.0,9.0,,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,8.0,8.0 +8.0,9.0,10.0,10.0,8.0,9.0,,,,,10.0,9.0,8.0,9.0,,,10.0,10.0,,10.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,,,10.0,10.0,9.0,8.0,10.0,7.0,9.0,10.0,10.0,7.0,9.0,9.0,,9.0,10.0,10.0,9.0,10.0,10.0 +8.0,9.0,9.0,10.0,10.0,,,,,,10.0,9.0,9.0,8.0,9.0,8.0,9.0,10.0,,7.0,8.0,8.0,8.0,8.0,9.0,9.0,10.0,,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,7.0,7.0,10.0,9.0,9.0,10.0,,, +8.0,9.0,,9.0,9.0,,,,,,,,,,10.0,10.0,,,,,,,9.0,9.0,9.0,9.0,9.0,9.0,,,,,,9.0,10.0,10.0,9.0,,,,9.0,9.0,10.0,9.0,9.0,,, +9.0,8.0,9.0,9.0,9.0,,,,,,9.0,9.0,9.0,9.0,,,9.0,9.0,,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,7.0,,,10.0,9.0,9.0,9.0,9.0,9.0,9.0,,8.0,9.0,9.0,9.0,9.0,,, +7.0,8.0,9.0,7.0,8.0,8.0,,,,8.0,8.0,8.0,8.0,9.0,9.0,9.0,8.0,,,9.0,9.0,7.0,8.0,8.0,7.0,8.0,7.0,7.0,,,,7.0,8.0,8.0,8.0,,9.0,9.0,,,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0 +8.0,8.0,8.0,,6.0,8.0,,,,8.0,,8.0,7.0,8.0,7.0,8.0,8.0,8.0,,,8.0,8.0,8.0,8.0,8.0,7.0,8.0,7.0,,,,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,7.0,7.0,8.0,8.0,,,7.0,7.0,7.0 +6.0,7.0,9.0,9.0,9.0,,,,,10.0,,9.0,8.0,9.0,,10.0,10.0,10.0,,9.0,9.0,10.0,10.0,10.0,7.0,7.0,7.0,7.0,7.0,,,7.0,7.0,8.0,7.0,9.0,9.0,10.0,9.0,9.0,9.0,9.0,8.0,9.0,9.0,,, +3.0,5.0,3.0,6.0,8.0,4.0,,,,,,7.0,7.0,7.0,,,7.0,6.0,,6.0,6.0,6.0,6.0,6.0,6.0,7.0,4.0,3.0,1.0,,,,2.0,5.0,4.0,8.0,,,,,5.0,7.0,,5.0,6.0,3.0,4.0,6.0 +9.0,10.0,10.0,10.0,10.0,1.0,,,,10.0,10.0,10.0,8.0,9.0,,,10.0,10.0,,,10.0,10.0,10.0,10.0,4.0,1.0,10.0,,,,,,5.0,10.0,10.0,10.0,10.0,10.0,10.0,,,9.0,10.0,9.0,9.0,,, +9.0,,9.0,,10.0,,,,,,,,,,9.0,,9.0,8.0,,,9.0,8.0,10.0,8.0,9.0,9.0,9.0,10.0,,,,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,9.0,10.0,8.0,10.0,,, +6.0,,8.0,,10.0,,,,,10.0,,,,,,,9.0,,,,10.0,9.0,9.0,8.0,9.0,8.0,6.0,,,,,,8.0,10.0,10.0,,10.0,10.0,10.0,,,10.0,10.0,10.0,10.0,,, +8.0,,9.0,9.0,9.0,9.0,,,,,,,,,,9.0,9.0,,,8.0,8.0,9.0,9.0,9.0,9.0,8.0,8.0,9.0,,,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,,3.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0 +8.0,9.0,5.0,9.0,9.0,,9.0,,,,9.0,9.0,9.0,10.0,,8.0,9.0,9.0,6.0,8.0,8.0,6.0,7.0,7.0,9.0,7.0,9.0,,,7.0,,9.0,9.0,8.0,9.0,8.0,7.0,9.0,9.0,9.0,7.0,9.0,9.0,8.0,9.0,9.0,,10.0 +8.0,9.0,9.0,8.0,8.0,,9.0,,,9.0,10.0,9.0,9.0,9.0,,9.0,9.0,,,,9.0,8.0,9.0,9.0,8.0,8.0,7.0,8.0,,,,9.0,9.0,8.0,10.0,9.0,9.0,10.0,8.0,9.0,8.0,8.0,9.0,8.0,9.0,,, +8.0,9.0,9.0,10.0,10.0,,9.0,,,,8.0,10.0,10.0,10.0,10.0,10.0,10.0,,,,9.0,10.0,9.0,9.0,10.0,10.0,8.0,,,,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,,, +9.0,9.0,9.0,,9.0,,9.0,,,,9.0,9.0,9.0,9.0,10.0,10.0,9.0,,,10.0,9.0,9.0,10.0,10.0,10.0,,9.0,9.0,,,,,8.0,,,,,,9.0,,10.0,,,,,,, +9.0,9.0,,10.0,,9.0,9.0,,,9.0,9.0,9.0,8.0,9.0,,,7.0,,,,9.0,9.0,9.0,8.0,9.0,9.0,10.0,,,9.0,,9.0,9.0,9.0,,,,,,,,,,,,,, +8.0,9.0,9.0,9.0,9.0,6.0,9.0,,,,,8.0,8.0,9.0,8.0,,9.0,8.0,,,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,,,,,8.0,8.0,9.0,8.0,9.0,9.0,9.0,9.0,8.0,9.0,8.0,8.0,9.0,5.0,8.0,8.0 +9.0,9.0,9.0,10.0,10.0,10.0,9.0,,,,,9.0,9.0,9.0,,,10.0,,,,10.0,10.0,10.0,10.0,10.0,4.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0 +10.0,8.0,8.0,9.0,8.0,,9.0,,,8.0,6.0,8.0,6.0,9.0,10.0,9.0,8.0,,,8.0,8.0,6.0,8.0,8.0,9.0,8.0,7.0,7.0,,9.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,8.0,8.0,8.0,6.0,6.0,4.0,4.0,8.0,,, +6.0,8.0,6.0,9.0,9.0,,9.0,,,,,,9.0,9.0,7.0,7.0,6.0,6.0,,8.0,4.0,7.0,9.0,6.0,7.0,7.0,6.0,9.0,9.0,,,9.0,9.0,9.0,8.0,,8.0,9.0,,,3.0,9.0,9.0,7.0,9.0,2.0,, +7.0,8.0,10.0,8.0,7.0,,9.0,,,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,7.0,8.0,8.0,7.0,,7.0,8.0,9.0,8.0,9.0,10.0,10.0,9.0,8.0,8.0,8.0,7.0,9.0,9.0,8.0,9.0,7.0,7.0,9.0 +8.0,9.0,7.0,9.0,9.0,8.0,8.0,,,,9.0,9.0,9.0,9.0,,,8.0,,,,8.0,8.0,8.0,7.0,8.0,7.0,8.0,8.0,,,8.0,9.0,10.0,9.0,9.0,9.0,10.0,10.0,,,9.0,9.0,9.0,9.0,9.0,8.0,8.0,8.0 +9.0,9.0,8.0,9.0,10.0,,8.0,,,,10.0,9.0,9.0,10.0,9.0,9.0,,,,,9.0,10.0,9.0,9.0,8.0,8.0,10.0,10.0,,,,,9.0,10.0,10.0,,10.0,,10.0,10.0,6.0,,9.0,9.0,10.0,,, +7.0,8.0,8.0,10.0,10.0,,8.0,,,5.0,8.0,6.0,8.0,8.0,8.0,9.0,8.0,,,,8.0,6.0,7.0,7.0,8.0,8.0,7.0,7.0,,,,9.0,9.0,10.0,10.0,10.0,10.0,10.0,,9.0,7.0,9.0,9.0,7.0,9.0,,, +8.0,8.0,7.0,9.0,9.0,,8.0,,,9.0,9.0,9.0,7.0,9.0,5.0,8.0,9.0,8.0,,9.0,9.0,7.0,7.0,8.0,9.0,9.0,6.0,9.0,,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,, +8.0,8.0,,8.0,8.0,,8.0,,,8.0,8.0,8.0,,,,,,,,,,,,,8.0,4.0,4.0,,,,8.0,8.0,8.0,8.0,9.0,,9.0,9.0,,,,,9.0,9.0,9.0,,, +8.0,8.0,,5.0,8.0,,8.0,,,,8.0,8.0,7.0,8.0,,,,,,,,,,,6.0,6.0,6.0,6.0,,,,,8.0,8.0,10.0,10.0,10.0,,10.0,,10.0,10.0,10.0,10.0,10.0,,, +6.0,8.0,10.0,7.0,,,8.0,,,7.0,10.0,,9.0,9.0,,,10.0,,,,10.0,10.0,10.0,8.0,,,7.0,10.0,,,,,10.0,10.0,10.0,,,10.0,,,7.0,,,,,,, +8.0,7.0,8.0,9.0,9.0,8.0,8.0,,,,9.0,8.0,8.0,8.0,,9.0,8.0,,9.0,,9.0,9.0,10.0,9.0,8.0,8.0,8.0,9.0,,,,9.0,10.0,9.0,9.0,8.0,9.0,8.0,9.0,9.0,9.0,9.0,9.0,8.0,9.0,8.0,8.0,9.0 +7.0,7.0,7.0,9.0,9.0,,6.0,,,,10.0,7.0,9.0,6.0,,8.0,9.0,,,,8.0,9.0,6.0,7.0,7.0,7.0,8.0,8.0,,,,6.0,4.0,8.0,8.0,9.0,8.0,8.0,8.0,8.0,7.0,8.0,8.0,7.0,7.0,,, +6.0,5.0,6.0,,7.0,,6.0,,,,,,,,,,,,6.0,,,,,,7.0,6.0,7.0,7.0,,,,7.0,7.0,7.0,8.0,8.0,8.0,,8.0,8.0,,,8.0,8.0,8.0,,, +6.0,5.0,,,9.0,,5.0,,,,,,,,7.0,,,,,,,,,,7.0,6.0,6.0,,,,,,6.0,,10.0,10.0,8.0,,,,,,10.0,,10.0,,, +3.0,5.0,5.0,9.0,10.0,,3.0,,,3.0,3.0,3.0,3.0,1.0,,,5.0,5.0,1.0,,5.0,2.0,3.0,,8.0,8.0,7.0,,,,,,8.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,, +7.0,4.0,9.0,10.0,10.0,,3.0,,,,10.0,8.0,8.0,8.0,9.0,10.0,8.0,10.0,,,7.0,9.0,10.0,9.0,9.0,8.0,9.0,8.0,,,,,10.0,10.0,10.0,10.0,10.0,8.0,,,8.0,10.0,10.0,10.0,10.0,,, +8.0,9.0,0.0,8.0,10.0,,10.0,,,10.0,10.0,10.0,9.0,10.0,0.0,0.0,10.0,10.0,,,10.0,9.0,10.0,10.0,10.0,10.0,9.0,,,,,,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,, +9.0,10.0,8.0,7.0,9.0,,10.0,,,,10.0,10.0,10.0,10.0,,,8.0,,,,9.0,9.0,10.0,8.0,9.0,9.0,9.0,9.0,,,,10.0,8.0,8.0,9.0,9.0,9.0,9.0,9.0,,8.0,9.0,9.0,9.0,9.0,,, +10.0,10.0,10.0,10.0,10.0,9.0,10.0,,,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,,10.0,10.0,10.0,10.0,9.0,9.0,9.0,,,,,,1.0,9.0,10.0,10.0,10.0,10.0,9.0,,8.0,10.0,10.0,9.0,10.0,9.0,10.0,10.0 +10.0,10.0,10.0,10.0,9.0,,10.0,,,,,10.0,9.0,,10.0,9.0,10.0,,,,10.0,10.0,10.0,10.0,8.0,9.0,8.0,10.0,,,,,9.0,,10.0,10.0,8.0,9.0,,9.0,9.0,7.0,8.0,7.0,8.0,,, +7.0,10.0,,10.0,10.0,,10.0,,,,10.0,10.0,10.0,10.0,8.0,,,,,,,,,,10.0,10.0,10.0,,,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,, +9.0,10.0,10.0,,10.0,,10.0,,,10.0,10.0,10.0,10.0,10.0,10.0,,,,,,10.0,10.0,10.0,8.0,10.0,10.0,10.0,,,,,,8.0,,10.0,,10.0,,,,,10.0,,,10.0,,, +9.0,9.0,9.0,9.0,8.0,,,9.0,,,,9.0,8.0,10.0,,10.0,10.0,,,,10.0,9.0,10.0,9.0,8.0,8.0,8.0,9.0,9.0,,,,9.0,9.0,9.0,9.0,10.0,9.0,9.0,9.0,7.0,9.0,9.0,9.0,9.0,,, +8.0,8.0,9.0,9.0,10.0,,9.0,9.0,,,,9.0,7.0,9.0,,9.0,9.0,,9.0,9.0,10.0,8.0,8.0,8.0,10.0,10.0,10.0,10.0,7.0,9.0,,9.0,10.0,10.0,9.0,9.0,9.0,8.0,9.0,8.0,9.0,9.0,9.0,9.0,9.0,,, +8.0,8.0,8.0,9.0,9.0,8.0,9.0,9.0,,9.0,,8.0,9.0,9.0,,9.0,9.0,8.0,,8.0,8.0,9.0,9.0,8.0,8.0,9.0,9.0,9.0,8.0,8.0,8.0,9.0,9.0,9.0,8.0,9.0,9.0,8.0,9.0,,8.0,9.0,9.0,9.0,9.0,8.0,8.0,9.0 +7.0,,9.0,6.0,10.0,,,6.0,,,,10.0,6.0,10.0,,,10.0,,10.0,10.0,10.0,6.0,10.0,10.0,8.0,9.0,7.0,,5.0,,,6.0,7.0,7.0,10.0,10.0,,9.0,,8.0,6.0,9.0,10.0,10.0,10.0,,, +7.0,6.0,8.0,8.0,9.0,8.0,3.0,6.0,,,7.0,8.0,6.0,6.0,,9.0,8.0,9.0,,8.0,9.0,8.0,9.0,9.0,8.0,7.0,7.0,8.0,,,,7.0,1.0,8.0,9.0,9.0,9.0,9.0,8.0,9.0,7.0,9.0,9.0,9.0,9.0,8.0,9.0,9.0 +8.0,6.0,8.0,10.0,9.0,1.0,2.0,3.0,,2.0,9.0,6.0,6.0,5.0,,7.0,9.0,,8.0,7.0,,10.0,10.0,9.0,10.0,9.0,,,,,8.0,10.0,9.0,5.0,10.0,9.0,8.0,7.0,9.0,,8.0,9.0,9.0,9.0,9.0,2.0,2.0,2.0 +9.0,9.0,9.0,9.0,9.0,,,10.0,,,10.0,10.0,9.0,10.0,,9.0,8.0,,,,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,,,,,6.0,9.0,10.0,10.0,10.0,9.0,9.0,7.0,,9.0,10.0,10.0,10.0,,, +,10.0,10.0,6.0,,,,10.0,,10.0,10.0,,10.0,10.0,,,10.0,10.0,,,,9.0,10.0,,9.0,5.0,,,,,,1.0,10.0,,10.0,,8.0,,,,9.0,,,,10.0,,, +10.0,8.0,10.0,10.0,10.0,,9.0,10.0,,10.0,10.0,10.0,8.0,10.0,10.0,,10.0,10.0,,,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,,,,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,, +8.0,9.0,9.0,8.0,9.0,,,,9.0,9.0,8.0,8.0,10.0,10.0,,9.0,10.0,9.0,,10.0,9.0,9.0,10.0,10.0,9.0,9.0,9.0,10.0,,,10.0,10.0,10.0,10.0,9.0,,10.0,9.0,,9.0,8.0,9.0,10.0,9.0,10.0,,, +8.0,9.0,,,,,,,9.0,,9.0,,,,,,,,,,,,,,1.0,1.0,3.0,4.0,,,,,4.0,,10.0,,,,,,,,,,,,, +9.0,8.0,,10.0,10.0,,,,9.0,9.0,9.0,8.0,7.0,8.0,,,9.0,9.0,,,9.0,9.0,9.0,8.0,9.0,9.0,9.0,9.0,,,,9.0,9.0,10.0,9.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,,,10.0 +6.0,4.0,8.0,10.0,10.0,5.0,,,9.0,,,8.0,,7.0,8.0,8.0,9.0,,,,,8.0,9.0,5.0,9.0,8.0,9.0,,,,,,,8.0,10.0,10.0,10.0,10.0,10.0,9.0,7.0,10.0,10.0,8.0,10.0,6.0,5.0,8.0 +10.0,9.0,9.0,10.0,8.0,3.0,9.0,,9.0,8.0,,10.0,8.0,8.0,10.0,,9.0,9.0,,,10.0,7.0,8.0,9.0,8.0,9.0,9.0,,,,,,7.0,9.0,10.0,9.0,9.0,9.0,7.0,8.0,5.0,9.0,9.0,9.0,9.0,4.0,3.0,3.0 +7.0,8.0,9.0,10.0,9.0,,9.0,,9.0,,9.0,9.0,5.0,9.0,,,10.0,,,,10.0,10.0,10.0,8.0,10.0,7.0,6.0,,,,,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,9.0,9.0,10.0,,, +9.0,10.0,6.0,,8.0,,9.0,,9.0,9.0,9.0,9.0,9.0,9.0,8.0,5.0,8.0,8.0,6.0,8.0,7.0,7.0,7.0,8.0,7.0,8.0,8.0,8.0,,,,,6.0,,7.0,,8.0,8.0,,,,,,,,,, +9.0,9.0,10.0,10.0,10.0,10.0,,9.0,9.0,10.0,10.0,9.0,9.0,9.0,,,10.0,,,10.0,10.0,10.0,10.0,10.0,9.0,8.0,9.0,9.0,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0 +9.0,9.0,9.0,8.0,8.0,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,10.0,10.0,,,10.0,9.0,9.0,9.0,9.0,9.0,3.0,5.0,1.0,,,,5.0,1.0,9.0,9.0,9.0,,,,,2.0,,,,,,, +7.0,9.0,9.0,8.0,9.0,,9.0,9.0,9.0,9.0,9.0,7.0,9.0,9.0,,2.0,9.0,1.0,,,4.0,9.0,9.0,,8.0,7.0,,8.0,,,,,8.0,8.0,9.0,,9.0,,9.0,,3.0,,,,,,, +9.0,9.0,10.0,,9.0,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,9.0,10.0,8.0,10.0,,9.0,9.0,9.0,9.0,6.0,10.0,8.0,,,,10.0,10.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,, +8.0,9.0,9.0,9.0,9.0,,9.0,9.0,9.0,9.0,9.0,9.0,7.0,10.0,,9.0,9.0,,,,9.0,9.0,9.0,10.0,6.0,5.0,8.0,10.0,10.0,,,9.0,9.0,9.0,9.0,9.0,,9.0,9.0,,,9.0,9.0,7.0,9.0,,, +8.0,9.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,9.0,10.0,9.0,9.0,9.0,9.0,,9.0,9.0,8.0,9.0,9.0,8.0,8.0,6.0,9.0,,,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,9.0,9.0,8.0,9.0,8.0,9.0,9.0 +8.0,9.0,8.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,7.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,9.0,8.0,,10.0,,10.0,6.0,10.0,9.0,9.0,9.0,9.0,9.0,,8.0,9.0,9.0,9.0,9.0,8.0,8.0,8.0 +7.0,9.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,9.0,10.0,9.0,,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0 +9.0,9.0,9.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,9.0,9.0,9.0,9.0,9.0,8.0,6.0,5.0,8.0,,,,8.0,9.0,9.0,10.0,10.0,9.0,10.0,9.0,9.0,7.0,9.0,9.0,9.0,9.0,,9.0,9.0 +8.0,9.0,8.0,10.0,8.0,10.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,,6.0,10.0,,,10.0,10.0,10.0,9.0,8.0,8.0,8.0,9.0,,,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0 +8.0,8.0,9.0,9.0,9.0,,9.0,9.0,9.0,9.0,8.0,8.0,8.0,9.0,,8.0,9.0,9.0,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,8.0,,9.0,8.0,9.0,9.0,9.0,10.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,,, +7.0,9.0,7.0,8.0,,8.0,8.0,9.0,9.0,9.0,10.0,9.0,9.0,9.0,8.0,8.0,7.0,8.0,7.0,8.0,8.0,8.0,8.0,8.0,8.0,9.0,9.0,8.0,,,,,7.0,9.0,,,,,,,,,,,,8.0,8.0,8.0 +9.0,9.0,9.0,10.0,10.0,,8.0,9.0,9.0,10.0,10.0,9.0,9.0,9.0,,9.0,9.0,10.0,,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,,, +7.0,8.0,7.0,5.0,9.0,,6.0,9.0,9.0,9.0,9.0,8.0,8.0,9.0,9.0,2.0,9.0,2.0,,8.0,8.0,9.0,9.0,9.0,9.0,7.0,7.0,8.0,,,,,8.0,8.0,10.0,10.0,,9.0,9.0,,7.0,9.0,9.0,9.0,9.0,,, +7.0,8.0,4.0,,3.0,,2.0,9.0,9.0,9.0,9.0,8.0,10.0,10.0,,1.0,8.0,,,1.0,2.0,8.0,7.0,4.0,8.0,8.0,,7.0,,,,,9.0,,9.0,9.0,9.0,3.0,3.0,,2.0,2.0,7.0,7.0,7.0,,, +6.0,5.0,6.0,10.0,8.0,6.0,2.0,9.0,9.0,9.0,9.0,7.0,8.0,8.0,4.0,4.0,4.0,8.0,,3.0,6.0,8.0,9.0,5.0,9.0,9.0,7.0,7.0,,,,9.0,6.0,9.0,9.0,9.0,8.0,8.0,8.0,8.0,7.0,9.0,9.0,9.0,9.0,,, +7.0,7.0,7.0,10.0,,10.0,,8.0,9.0,,8.0,10.0,8.0,7.0,,,10.0,1.0,,,,8.0,7.0,,10.0,10.0,10.0,9.0,,7.0,,10.0,4.0,8.0,10.0,,10.0,10.0,,10.0,,10.0,,10.0,10.0,,10.0,10.0 +9.0,8.0,9.0,8.0,9.0,,9.0,8.0,9.0,8.0,9.0,8.0,8.0,8.0,9.0,9.0,9.0,,,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,,,,7.0,8.0,,8.0,,8.0,8.0,,8.0,,,,8.0,8.0,,, +3.0,9.0,7.0,8.0,9.0,,8.0,8.0,9.0,9.0,10.0,10.0,9.0,10.0,,3.0,2.0,7.0,,5.0,7.0,3.0,7.0,3.0,9.0,9.0,8.0,9.0,,,,8.0,1.0,8.0,9.0,9.0,9.0,9.0,7.0,,8.0,9.0,9.0,9.0,9.0,,, +7.0,9.0,7.0,10.0,9.0,,9.0,6.0,9.0,9.0,9.0,9.0,7.0,9.0,,6.0,10.0,6.0,,6.0,7.0,7.0,5.0,5.0,6.0,9.0,8.0,,,,,9.0,9.0,9.0,10.0,9.0,,9.0,,,,9.0,9.0,9.0,9.0,,, +6.0,5.0,9.0,6.0,9.0,,6.0,3.0,9.0,,8.0,5.0,9.0,5.0,4.0,8.0,7.0,,,,8.0,8.0,8.0,8.0,9.0,9.0,3.0,4.0,,,,,8.0,,9.0,9.0,10.0,7.0,7.0,9.0,6.0,,9.0,9.0,9.0,,, +9.0,10.0,10.0,8.0,10.0,,10.0,10.0,9.0,9.0,10.0,9.0,8.0,10.0,10.0,10.0,10.0,9.0,9.0,10.0,9.0,10.0,10.0,10.0,9.0,9.0,9.0,8.0,8.0,,,9.0,9.0,8.0,10.0,9.0,8.0,9.0,8.0,8.0,9.0,9.0,8.0,8.0,8.0,,, +5.0,7.0,6.0,6.0,5.0,9.0,,,8.0,,8.0,7.0,8.0,8.0,4.0,5.0,5.0,4.0,,4.0,5.0,6.0,7.0,8.0,5.0,6.0,7.0,4.0,,8.0,,7.0,6.0,5.0,4.0,5.0,4.0,7.0,8.0,6.0,8.0,8.0,8.0,9.0,7.0,8.0,9.0,9.0 +9.0,9.0,9.0,9.0,9.0,8.0,9.0,,8.0,7.0,8.0,9.0,8.0,9.0,,6.0,8.0,,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,,,9.0,2.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,8.0, +9.0,9.0,9.0,8.0,9.0,,9.0,,8.0,9.0,9.0,9.0,8.0,9.0,,9.0,9.0,,,9.0,9.0,8.0,9.0,9.0,8.0,7.0,8.0,8.0,,,,,9.0,9.0,8.0,9.0,9.0,9.0,9.0,9.0,8.0,9.0,9.0,9.0,9.0,9.0,,10.0 +8.0,10.0,7.0,10.0,10.0,8.0,9.0,,8.0,,,10.0,10.0,10.0,6.0,,10.0,9.0,,,6.0,5.0,5.0,4.0,6.0,10.0,9.0,9.0,,,,,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,8.0,8.0 +8.0,9.0,9.0,10.0,8.0,,8.0,,8.0,9.0,8.0,9.0,8.0,9.0,9.0,8.0,,9.0,,,8.0,9.0,9.0,9.0,7.0,8.0,8.0,9.0,,,,9.0,9.0,10.0,9.0,9.0,9.0,8.0,,,2.0,9.0,9.0,9.0,9.0,,, +9.0,9.0,9.0,7.0,9.0,9.0,,9.0,8.0,,10.0,9.0,9.0,10.0,,,9.0,,,,9.0,9.0,9.0,9.0,8.0,8.0,9.0,,,8.0,10.0,9.0,9.0,9.0,10.0,9.0,9.0,9.0,9.0,,9.0,,9.0,9.0,9.0,9.0,9.0,9.0 +8.0,9.0,10.0,9.0,9.0,,9.0,9.0,8.0,9.0,10.0,10.0,10.0,10.0,,,9.0,9.0,,10.0,9.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,,9.0,,8.0,10.0,9.0,10.0,10.0,10.0,,9.0,,9.0,10.0,10.0,10.0,10.0,,, +6.0,9.0,8.0,9.0,9.0,,9.0,9.0,8.0,9.0,9.0,9.0,8.0,9.0,8.0,8.0,8.0,8.0,,8.0,8.0,8.0,9.0,9.0,6.0,4.0,8.0,8.0,,6.0,,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,9.0,9.0,9.0,9.0,9.0,,, +10.0,9.0,10.0,8.0,9.0,7.0,9.0,9.0,8.0,10.0,9.0,9.0,8.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,7.0,9.0,10.0,,,,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,8.0,8.0,7.0,10.0,9.0,9.0,9.0 +3.0,9.0,3.0,7.0,9.0,,8.0,9.0,8.0,9.0,9.0,9.0,8.0,8.0,2.0,8.0,3.0,8.0,,,3.0,4.0,2.0,2.0,7.0,9.0,7.0,,,,,,2.0,4.0,9.0,9.0,,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,, +8.0,8.0,8.0,8.0,8.0,,8.0,9.0,8.0,7.0,9.0,7.0,9.0,9.0,7.0,7.0,7.0,8.0,,,7.0,9.0,9.0,9.0,8.0,5.0,6.0,8.0,,,,9.0,9.0,8.0,9.0,9.0,9.0,9.0,8.0,,7.0,8.0,8.0,8.0,8.0,9.0,8.0,9.0 +8.0,8.0,8.0,9.0,8.0,,8.0,9.0,8.0,9.0,9.0,8.0,8.0,9.0,7.0,8.0,8.0,8.0,8.0,8.0,8.0,7.0,8.0,8.0,8.0,8.0,9.0,9.0,8.0,8.0,8.0,9.0,9.0,9.0,7.0,8.0,8.0,,9.0,7.0,8.0,9.0,9.0,9.0,9.0,,, +8.0,7.0,9.0,10.0,9.0,10.0,,8.0,8.0,,6.0,8.0,8.0,8.0,,,8.0,,,9.0,8.0,9.0,9.0,10.0,10.0,10.0,8.0,10.0,,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,,8.0,10.0,9.0,9.0,10.0,10.0,10.0 +9.0,8.0,8.0,7.0,4.0,,9.0,8.0,8.0,9.0,9.0,8.0,8.0,9.0,,9.0,9.0,5.0,,7.0,8.0,7.0,9.0,7.0,9.0,8.0,1.0,2.0,,,,7.0,9.0,7.0,9.0,8.0,8.0,7.0,2.0,6.0,9.0,3.0,4.0,3.0,6.0,,, +8.0,8.0,8.0,7.0,5.0,,8.0,8.0,8.0,,8.0,8.0,7.0,8.0,,8.0,8.0,8.0,,,8.0,8.0,8.0,9.0,8.0,7.0,6.0,6.0,,,8.0,7.0,8.0,7.0,8.0,8.0,8.0,8.0,,8.0,6.0,8.0,7.0,5.0,7.0,,, +6.0,8.0,4.0,7.0,8.0,,8.0,8.0,8.0,8.0,7.0,10.0,7.0,10.0,7.0,5.0,9.0,7.0,,7.0,8.0,8.0,6.0,9.0,3.0,1.0,8.0,8.0,,,,7.0,5.0,8.0,8.0,8.0,4.0,7.0,8.0,8.0,7.0,9.0,8.0,7.0,8.0,,, +7.0,8.0,8.0,8.0,8.0,,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,,8.0,,,,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,,,,8.0,8.0,8.0,8.0,8.0,8.0,5.0,8.0,8.0,7.0,8.0,8.0,8.0,8.0,,, +9.0,8.0,8.0,9.0,9.0,9.0,8.0,8.0,8.0,8.0,8.0,8.0,7.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,9.0,8.0,9.0,8.0,7.0,7.0,7.0,8.0,,,,8.0,8.0,8.0,8.0,9.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,9.0,9.0 +8.0,8.0,7.0,8.0,8.0,,8.0,8.0,8.0,9.0,8.0,8.0,8.0,8.0,,5.0,10.0,10.0,,7.0,8.0,7.0,7.0,7.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,5.0,5.0,8.0,,, +8.0,8.0,8.0,8.0,9.0,,8.0,8.0,8.0,8.0,8.0,8.0,7.0,8.0,7.0,8.0,8.0,9.0,,8.0,8.0,7.0,8.0,8.0,8.0,8.0,6.0,8.0,,,,8.0,8.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,,9.0,9.0,9.0,,, +10.0,8.0,10.0,8.0,9.0,,8.0,8.0,8.0,8.0,8.0,9.0,7.0,8.0,8.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,7.0,7.0,7.0,8.0,,,,8.0,7.0,8.0,10.0,10.0,9.0,9.0,9.0,8.0,8.0,9.0,9.0,8.0,9.0,9.0,9.0,9.0 +8.0,8.0,,8.0,8.0,,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,,,,,,,,,,,8.0,8.0,8.0,9.0,,,,8.0,9.0,8.0,9.0,9.0,,9.0,,,,9.0,9.0,9.0,9.0,,, +8.0,8.0,8.0,10.0,8.0,,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,7.0,8.0,,,,9.0,8.0,8.0,9.0,10.0,10.0,10.0,8.0,,,9.0,9.0,9.0,10.0,9.0,9.0,9.0,8.0,8.0,8.0,8.0,9.0,9.0,9.0,9.0,,, +8.0,8.0,9.0,5.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,,4.0,9.0,,,,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,,,,9.0,9.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,,,8.0 +7.0,7.0,10.0,10.0,10.0,10.0,8.0,8.0,8.0,8.0,8.0,7.0,6.0,8.0,6.0,8.0,1.0,10.0,,,9.0,7.0,9.0,7.0,10.0,8.0,10.0,10.0,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,6.0,,10.0,10.0,10.0,10.0,10.0,10.0 +10.0,7.0,7.0,10.0,8.0,10.0,8.0,8.0,8.0,8.0,6.0,7.0,6.0,7.0,,4.0,7.0,7.0,,7.0,8.0,8.0,7.0,7.0,9.0,8.0,10.0,,,9.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,8.0,8.0,8.0,8.0,9.0,9.0,9.0 +6.0,6.0,7.0,8.0,7.0,,8.0,8.0,8.0,7.0,10.0,8.0,7.0,8.0,,8.0,8.0,10.0,10.0,8.0,7.0,8.0,7.0,7.0,8.0,7.0,7.0,9.0,9.0,,,8.0,10.0,9.0,10.0,9.0,8.0,6.0,8.0,,8.0,7.0,8.0,9.0,9.0,,, +9.0,7.0,10.0,10.0,9.0,7.0,7.0,8.0,8.0,8.0,9.0,9.0,7.0,9.0,,,10.0,10.0,,,10.0,10.0,10.0,10.0,5.0,6.0,7.0,7.0,,8.0,,8.0,9.0,9.0,10.0,10.0,10.0,9.0,9.0,9.0,8.0,9.0,8.0,7.0,8.0,6.0,6.0,6.0 +7.0,4.0,8.0,9.0,8.0,,7.0,8.0,8.0,,4.0,7.0,8.0,7.0,,7.0,9.0,,,,8.0,8.0,8.0,7.0,7.0,7.0,7.0,7.0,,,,7.0,9.0,9.0,8.0,8.0,,8.0,,,6.0,8.0,,8.0,8.0,,, +5.0,5.0,7.0,8.0,7.0,1.0,2.0,8.0,8.0,8.0,8.0,5.0,6.0,5.0,3.0,1.0,8.0,,5.0,6.0,5.0,3.0,3.0,3.0,8.0,6.0,9.0,8.0,,,,9.0,1.0,8.0,10.0,10.0,,10.0,3.0,4.0,4.0,10.0,8.0,8.0,8.0,1.0,1.0,1.0 +7.0,8.0,9.0,9.0,7.0,8.0,8.0,7.0,8.0,8.0,7.0,6.0,6.0,7.0,,9.0,9.0,9.0,,9.0,9.0,10.0,9.0,9.0,8.0,7.0,8.0,8.0,,,9.0,9.0,8.0,9.0,8.0,8.0,10.0,10.0,,,7.0,,9.0,7.0,9.0,8.0,6.0,7.0 +8.0,9.0,,10.0,9.0,10.0,7.0,7.0,8.0,9.0,5.0,8.0,5.0,6.0,8.0,6.0,8.0,6.0,9.0,5.0,7.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0 +3.0,7.0,5.0,9.0,6.0,7.0,8.0,6.0,8.0,4.0,8.0,8.0,7.0,8.0,7.0,5.0,5.0,5.0,7.0,5.0,6.0,5.0,5.0,5.0,6.0,9.0,8.0,9.0,6.0,6.0,6.0,7.0,2.0,7.0,6.0,6.0,6.0,6.0,6.0,6.0,4.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0 +6.0,5.0,3.0,7.0,7.0,,2.0,6.0,8.0,8.0,7.0,8.0,6.0,7.0,,7.0,5.0,5.0,,5.0,3.0,6.0,9.0,3.0,7.0,7.0,8.0,,,,6.0,9.0,7.0,7.0,10.0,10.0,10.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0 +3.0,7.0,1.0,3.0,7.0,7.0,5.0,5.0,8.0,8.0,9.0,8.0,7.0,7.0,1.0,1.0,4.0,1.0,2.0,1.0,1.0,1.0,2.0,1.0,9.0,6.0,7.0,7.0,,2.0,,,3.0,8.0,8.0,8.0,,5.0,7.0,4.0,3.0,5.0,8.0,7.0,8.0,7.0,7.0,7.0 +7.0,7.0,8.0,10.0,9.0,,,,7.0,7.0,10.0,8.0,7.0,7.0,,,8.0,,,10.0,9.0,9.0,9.0,9.0,7.0,10.0,7.0,,,,7.0,10.0,,9.0,10.0,10.0,,8.0,9.0,,9.0,9.0,8.0,8.0,8.0,,, +7.0,8.0,8.0,8.0,7.0,8.0,8.0,8.0,7.0,7.0,9.0,9.0,9.0,8.0,8.0,8.0,8.0,,,,9.0,9.0,9.0,9.0,9.0,8.0,9.0,9.0,,,,,1.0,9.0,10.0,10.0,,6.0,7.0,9.0,4.0,9.0,9.0,9.0,9.0,,, +8.0,8.0,9.0,9.0,9.0,9.0,8.0,8.0,7.0,9.0,9.0,9.0,8.0,9.0,,,9.0,,,,,9.0,9.0,9.0,9.0,9.0,9.0,,,,10.0,10.0,9.0,9.0,10.0,10.0,,9.0,,,9.0,9.0,10.0,8.0,10.0,9.0,9.0,9.0 +7.0,7.0,8.0,8.0,9.0,7.0,8.0,8.0,7.0,7.0,7.0,6.0,6.0,9.0,,8.0,8.0,8.0,,,7.0,7.0,6.0,6.0,9.0,9.0,7.0,7.0,,,,,1.0,8.0,9.0,9.0,,7.0,10.0,,9.0,10.0,10.0,9.0,10.0,10.0,5.0,10.0 +7.0,8.0,9.0,10.0,7.0,,8.0,7.0,7.0,8.0,9.0,,10.0,10.0,,10.0,8.0,10.0,,8.0,8.0,10.0,10.0,9.0,9.0,7.0,8.0,,,,,,3.0,9.0,9.0,,,3.0,,3.0,2.0,7.0,,4.0,8.0,,, +3.0,7.0,7.0,6.0,7.0,,7.0,7.0,7.0,7.0,7.0,5.0,5.0,6.0,7.0,5.0,5.0,2.0,,4.0,5.0,5.0,7.0,2.0,8.0,8.0,6.0,6.0,,,,8.0,9.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,2.0,8.0,7.0,7.0,8.0,,, +6.0,6.0,9.0,,9.0,,7.0,7.0,7.0,6.0,7.0,7.0,6.0,7.0,,9.0,9.0,,,9.0,9.0,9.0,9.0,9.0,8.0,7.0,7.0,,,,,,9.0,9.0,9.0,9.0,,9.0,7.0,8.0,9.0,8.0,9.0,8.0,9.0,,, +6.0,3.0,7.0,10.0,8.0,2.0,7.0,7.0,7.0,3.0,7.0,2.0,1.0,2.0,6.0,2.0,10.0,2.0,,6.0,10.0,8.0,8.0,8.0,10.0,7.0,10.0,10.0,,,,6.0,3.0,6.0,10.0,10.0,7.0,10.0,10.0,4.0,4.0,6.0,6.0,2.0,6.0,2.0,2.0,2.0 +7.0,7.0,8.0,9.0,8.0,,4.0,7.0,7.0,7.0,9.0,7.0,6.0,7.0,,8.0,8.0,3.0,5.0,8.0,8.0,8.0,7.0,9.0,8.0,6.0,1.0,8.0,,9.0,9.0,8.0,10.0,9.0,10.0,,7.0,6.0,,9.0,6.0,9.0,9.0,9.0,9.0,,, +4.0,3.0,3.0,8.0,9.0,,1.0,7.0,7.0,9.0,10.0,6.0,8.0,7.0,3.0,2.0,8.0,3.0,,5.0,5.0,8.0,2.0,5.0,7.0,7.0,3.0,,,,4.0,6.0,9.0,8.0,10.0,10.0,,9.0,9.0,9.0,4.0,9.0,8.0,8.0,9.0,,, +8.0,8.0,7.0,9.0,9.0,,7.0,8.0,6.0,8.0,9.0,8.0,7.0,7.0,8.0,7.0,7.0,,,,7.0,7.0,7.0,8.0,10.0,8.0,8.0,9.0,,,,9.0,10.0,9.0,9.0,9.0,10.0,10.0,9.0,,10.0,,9.0,9.0,9.0,,, +8.0,6.0,9.0,9.0,10.0,,,6.0,6.0,,10.0,9.0,8.0,7.0,,10.0,10.0,10.0,10.0,9.0,9.0,10.0,10.0,9.0,8.0,7.0,8.0,10.0,,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,, +7.0,5.0,8.0,7.0,10.0,,,6.0,6.0,,7.0,8.0,4.0,7.0,6.0,9.0,10.0,,,8.0,8.0,,9.0,8.0,8.0,8.0,1.0,8.0,,,8.0,7.0,10.0,8.0,8.0,8.0,9.0,8.0,9.0,,7.0,9.0,9.0,9.0,9.0,,, +6.0,7.0,4.0,9.0,7.0,,7.0,6.0,6.0,8.0,9.0,7.0,8.0,7.0,8.0,7.0,8.0,8.0,,8.0,,6.0,6.0,4.0,8.0,8.0,8.0,6.0,,,,8.0,5.0,8.0,7.0,7.0,8.0,6.0,7.0,6.0,4.0,5.0,6.0,6.0,7.0,,, +9.0,5.0,7.0,10.0,10.0,7.0,4.0,5.0,6.0,6.0,6.0,3.0,3.0,3.0,,7.0,7.0,,,,8.0,8.0,6.0,8.0,10.0,6.0,7.0,7.0,,,,10.0,1.0,5.0,9.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,10.0,7.0,9.0,3.0,4.0,3.0 +5.0,1.0,8.0,9.0,8.0,,6.0,1.0,6.0,7.0,8.0,5.0,7.0,3.0,,,7.0,,,,7.0,7.0,7.0,7.0,8.0,7.0,5.0,7.0,,,,,7.0,8.0,8.0,8.0,8.0,8.0,10.0,10.0,3.0,7.0,8.0,8.0,9.0,,, +3.0,5.0,3.0,8.0,8.0,,9.0,,5.0,,1.0,,4.0,4.0,,3.0,2.0,1.0,,1.0,3.0,9.0,9.0,,7.0,8.0,7.0,,,,,9.0,,8.0,9.0,,9.0,9.0,,,,,,8.0,8.0,,, +7.0,6.0,6.0,10.0,10.0,,8.0,,5.0,5.0,5.0,5.0,6.0,6.0,10.0,9.0,6.0,,,7.0,7.0,6.0,5.0,4.0,8.0,7.0,6.0,,,,,10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,10.0,,, +5.0,4.0,8.0,8.0,9.0,,6.0,,5.0,6.0,5.0,4.0,6.0,6.0,7.0,8.0,8.0,,,,,5.0,7.0,7.0,8.0,7.0,8.0,,,2.0,,,,,9.0,9.0,9.0,7.0,9.0,8.0,3.0,9.0,9.0,7.0,9.0,,, +7.0,8.0,8.0,10.0,8.0,10.0,4.0,,5.0,,8.0,8.0,8.0,8.0,6.0,9.0,7.0,,,,9.0,9.0,7.0,10.0,9.0,9.0,10.0,10.0,,,,,5.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,10.0,10.0,10.0,10.0,9.0,10.0,10.0 +7.0,4.0,8.0,7.0,7.0,8.0,4.0,5.0,5.0,6.0,4.0,4.0,3.0,4.0,,9.0,9.0,9.0,,9.0,9.0,9.0,9.0,9.0,8.0,7.0,9.0,8.0,,8.0,,9.0,9.0,6.0,6.0,7.0,7.0,8.0,8.0,8.0,6.0,8.0,8.0,5.0,7.0,8.0,7.0,8.0 +8.0,,10.0,9.0,10.0,,4.0,5.0,5.0,5.0,5.0,7.0,7.0,2.0,,10.0,10.0,,,10.0,10.0,10.0,10.0,10.0,8.0,8.0,8.0,8.0,,,,,9.0,9.0,10.0,10.0,10.0,10.0,9.0,,,,9.0,9.0,9.0,,, +4.0,5.0,4.0,6.0,9.0,,5.0,4.0,5.0,5.0,7.0,4.0,3.0,2.0,7.0,6.0,8.0,,,8.0,8.0,8.0,8.0,6.0,9.0,9.0,9.0,7.0,,,,8.0,9.0,8.0,10.0,10.0,7.0,8.0,8.0,8.0,5.0,8.0,8.0,8.0,8.0,,, +5.0,4.0,8.0,8.0,7.0,8.0,3.0,4.0,3.0,5.0,2.0,3.0,3.0,2.0,,8.0,6.0,9.0,,7.0,8.0,5.0,10.0,,9.0,9.0,6.0,9.0,,,,9.0,3.0,9.0,9.0,9.0,9.0,8.0,8.0,9.0,7.0,8.0,9.0,8.0,9.0,8.0,8.0,8.0 +5.0,4.0,8.0,10.0,10.0,,,3.0,3.0,,10.0,,6.0,7.0,4.0,,9.0,4.0,,9.0,,9.0,9.0,7.0,10.0,8.0,8.0,10.0,,,,,7.0,10.0,10.0,10.0,10.0,8.0,9.0,9.0,9.0,10.0,,9.0,10.0,,, +4.0,3.0,4.0,9.0,10.0,,3.0,3.0,3.0,3.0,3.0,2.0,4.0,8.0,3.0,10.0,1.0,,,,3.0,5.0,9.0,2.0,10.0,10.0,8.0,10.0,,,9.0,,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,7.0,10.0,10.0,10.0,10.0,,, +5.0,3.0,7.0,9.0,9.0,,,2.0,2.0,3.0,7.0,6.0,6.0,6.0,,,7.0,,,7.0,8.0,8.0,8.0,7.0,9.0,7.0,8.0,9.0,,,8.0,8.0,9.0,9.0,9.0,,9.0,9.0,5.0,,6.0,,,,,,, +7.0,9.0,7.0,10.0,7.0,,,,10.0,9.0,10.0,9.0,9.0,10.0,,,7.0,7.0,,5.0,5.0,5.0,7.0,5.0,9.0,8.0,9.0,9.0,,,,,6.0,10.0,8.0,,10.0,8.0,9.0,,8.0,8.0,,7.0,8.0,,, +9.0,10.0,10.0,10.0,10.0,,,,10.0,10.0,10.0,10.0,9.0,10.0,,,10.0,,,8.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,,,,10.0,,10.0,10.0,10.0,10.0,10.0,,,,7.0,,10.0,10.0,10.0,,, +7.0,6.0,6.0,9.0,8.0,9.0,5.0,,10.0,9.0,,7.0,9.0,7.0,,9.0,10.0,8.0,,9.0,8.0,9.0,9.0,8.0,10.0,9.0,10.0,9.0,9.0,,,9.0,8.0,9.0,10.0,10.0,9.0,8.0,8.0,8.0,6.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0 +10.0,10.0,10.0,10.0,10.0,,10.0,,10.0,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,10.0,10.0,,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,8.0,10.0,10.0,10.0,10.0,,, +4.0,10.0,5.0,8.0,10.0,,10.0,,10.0,,10.0,10.0,10.0,10.0,10.0,8.0,6.0,7.0,,9.0,7.0,10.0,10.0,7.0,10.0,7.0,8.0,10.0,,,7.0,8.0,10.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,, +10.0,10.0,9.0,10.0,10.0,,10.0,,10.0,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,,,,10.0,6.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0 +8.0,9.0,7.0,10.0,10.0,,,10.0,10.0,10.0,7.0,9.0,8.0,9.0,8.0,,8.0,,,,8.0,8.0,8.0,8.0,10.0,10.0,10.0,10.0,,,,10.0,8.0,10.0,10.0,,10.0,10.0,7.0,10.0,8.0,,,10.0,10.0,,, +8.0,10.0,9.0,10.0,10.0,10.0,,10.0,10.0,,10.0,10.0,10.0,10.0,6.0,,8.0,8.0,8.0,9.0,7.0,7.0,8.0,9.0,10.0,10.0,10.0,10.0,,9.0,,10.0,10.0,10.0,10.0,8.0,9.0,9.0,9.0,10.0,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0 +10.0,9.0,9.0,8.0,10.0,,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,9.0,10.0,9.0,10.0,9.0,10.0,10.0,10.0,10.0,8.0,6.0,8.0,10.0,,,10.0,10.0,8.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,, +10.0,6.0,8.0,9.0,10.0,9.0,9.0,10.0,10.0,9.0,10.0,9.0,9.0,10.0,,9.0,9.0,7.0,9.0,9.0,9.0,8.0,9.0,6.0,9.0,8.0,10.0,10.0,,,10.0,10.0,8.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,10.0,10.0,10.0,9.0,10.0,10.0,10.0 +9.0,10.0,9.0,10.0,10.0,,9.0,10.0,10.0,,10.0,10.0,10.0,10.0,7.0,7.0,10.0,,,,8.0,10.0,,10.0,9.0,9.0,9.0,9.0,,,,9.0,9.0,9.0,10.0,10.0,9.0,10.0,10.0,9.0,8.0,10.0,10.0,10.0,10.0,,, +9.0,8.0,3.0,10.0,10.0,,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,3.0,10.0,10.0,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,,,8.0,10.0,8.0,10.0,,10.0,10.0,10.0,10.0,8.0,9.0,10.0,9.0,9.0,8.0,10.0,10.0 +8.0,10.0,10.0,9.0,,,8.0,10.0,10.0,,10.0,9.0,10.0,10.0,,,8.0,6.0,,7.0,9.0,9.0,9.0,7.0,5.0,3.0,8.0,7.0,,,,,1.0,8.0,9.0,,,,,,,8.0,,8.0,8.0,,, +,,8.0,10.0,9.0,,10.0,10.0,10.0,10.0,10.0,,,,,,9.0,9.0,9.0,9.0,9.0,,,,7.0,7.0,10.0,10.0,,10.0,,10.0,8.0,10.0,9.0,9.0,10.0,10.0,10.0,,9.0,10.0,10.0,9.0,10.0,,, +10.0,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,,,,,8.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0 +7.0,8.0,8.0,8.0,10.0,4.0,10.0,10.0,10.0,,10.0,10.0,9.0,10.0,,,9.0,,8.0,9.0,8.0,8.0,9.0,8.0,6.0,8.0,8.0,9.0,,,,8.0,,8.0,10.0,10.0,9.0,9.0,9.0,,1.0,10.0,9.0,8.0,10.0,2.0,8.0,6.0 +6.0,8.0,8.0,9.0,8.0,8.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,10.0,9.0,9.0,10.0,7.0,,9.0,10.0,10.0,9.0,7.0,9.0,8.0,9.0,9.0,,,,8.0,8.0,10.0,9.0,10.0,9.0,9.0,,,9.0,,,,,9.0,8.0,8.0 +10.0,10.0,10.0,10.0,10.0,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,, +9.0,10.0,10.0,9.0,10.0,,10.0,10.0,10.0,9.0,10.0,10.0,10.0,10.0,,,10.0,,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,,,,,9.0,6.0,8.0,10.0,10.0,10.0,10.0,10.0,,10.0,,,,,,, +10.0,10.0,8.0,10.0,10.0,8.0,10.0,10.0,10.0,8.0,,10.0,7.0,,,1.0,10.0,10.0,,10.0,9.0,,,8.0,8.0,6.0,10.0,,,,,10.0,8.0,10.0,8.0,8.0,8.0,8.0,8.0,,8.0,8.0,9.0,8.0,10.0,8.0,10.0,10.0 +8.0,10.0,10.0,10.0,,9.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,,9.0,10.0,10.0,,9.0,9.0,10.0,10.0,10.0,9.0,9.0,9.0,10.0,,,9.0,9.0,9.0,10.0,10.0,,10.0,9.0,10.0,8.0,8.0,10.0,,10.0,10.0,9.0,10.0,10.0 +8.0,10.0,9.0,10.0,10.0,,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,8.0,10.0,,,9.0,10.0,10.0,10.0,8.0,10.0,9.0,10.0,,,,,9.0,9.0,10.0,10.0,,,10.0,10.0,,10.0,10.0,,10.0,10.0,,, +6.0,6.0,8.0,7.0,6.0,6.0,6.0,1.0,1.0,6.0,5.0,6.0,6.0,6.0,,7.0,8.0,,,,8.0,8.0,8.0,8.0,7.0,1.0,5.0,5.0,,,7.0,7.0,8.0,8.0,9.0,9.0,9.0,9.0,,,,7.0,7.0,,7.0,6.0,6.0,6.0 diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/employee_satisfaction.csv b/module-2_projects/visualizing-real-world-data-project/your-code/employee_satisfaction.csv new file mode 100644 index 0000000..a9e84aa --- /dev/null +++ b/module-2_projects/visualizing-real-world-data-project/your-code/employee_satisfaction.csv @@ -0,0 +1,182 @@ +ID,location,gender,age_category,seniority_category,satisfaction_score,#contact_acct,rating_acct,#contact_HR,rating_HR,#contact_OM,rating_OM,rating_security,rating_D&R +1,Boston,Female,2.0,3.0,8.0,1 to 2 times,3.0,3 to 4 times,6.0,1 to 2 times,1.0,4.0, +2,Amsterdam,Male,3.0,3.0,10.0,0 times,,1 to 2 times,7.0,5 times or more,10.0,9.0,8.0 +3,New Delhi ,Female,1.0,3.0,8.0,1 to 2 times,8.0,0 times,,5 times or more,10.0,8.0, +4,New Delhi ,Female,1.0,1.0,7.0,5 times or more,9.0,1 to 2 times,7.0,1 to 2 times,9.0,, +5,New Delhi ,Female,3.0,4.0,5.0,3 to 4 times,9.0,3 to 4 times,8.0,1 to 2 times,8.0,9.0, +6,Amsterdam,Male,3.0,3.0,8.0,5 times or more,4.0,5 times or more,9.0,5 times or more,10.0,8.0, +7,New Delhi ,Female,1.0,3.0,10.0,5 times or more,8.0,5 times or more,9.0,5 times or more,10.0,10.0,10.0 +8,Amsterdam,Female,3.0,2.0,9.0,3 to 4 times,9.0,3 to 4 times,9.0,3 to 4 times,9.0,9.0, +9,Boston,Male,2.0,1.0,8.0,3 to 4 times,8.0,3 to 4 times,10.0,1 to 2 times,9.0,8.0,8.0 +10,Boston,Female,4.0,5.0,9.0,3 to 4 times,9.0,1 to 2 times,9.0,5 times or more,10.0,10.0, +11,New Delhi ,Male,3.0,4.0,8.0,3 to 4 times,10.0,0 times,,5 times or more,10.0,10.0, +12,Boston,Male,3.0,4.0,9.0,0 times,,1 to 2 times,9.0,3 to 4 times,10.0,8.0,8.0 +13,Boston,Female,2.0,4.0,9.0,3 to 4 times,10.0,3 to 4 times,10.0,5 times or more,9.0,10.0, +14,Amsterdam,Female,1.0,3.0,9.0,5 times or more,7.0,0 times,,5 times or more,10.0,10.0, +15,Amsterdam,Female,4.0,4.0,7.0,1 to 2 times,8.0,3 to 4 times,9.0,5 times or more,9.0,8.0, +16,Boston,Male,1.0,1.0,8.0,3 to 4 times,,1 to 2 times,8.0,0 times,,10.0, +17,Boston,Male,3.0,4.0,7.0,1 to 2 times,,0 times,,5 times or more,10.0,9.0,8.0 +18,New Delhi ,Female,1.0,3.0,8.0,5 times or more,9.0,5 times or more,10.0,5 times or more,10.0,8.0,9.0 +19,New Delhi ,Female,2.0,2.0,8.0,3 to 4 times,9.0,1 to 2 times,9.0,3 to 4 times,10.0,10.0, +20,Amsterdam,Male,3.0,1.0,8.0,1 to 2 times,9.0,0 times,,1 to 2 times,9.0,9.0, +21,Amsterdam,Male,2.0,3.0,9.0,5 times or more,8.0,3 to 4 times,9.0,1 to 2 times,9.0,9.0, +22,Amsterdam,Male,2.0,2.0,7.0,3 to 4 times,8.0,3 to 4 times,9.0,1 to 2 times,7.0,8.0,8.0 +23,Boston,Female,2.0,3.0,8.0,1 to 2 times,8.0,1 to 2 times,8.0,1 to 2 times,,6.0,8.0 +24,Amsterdam,Male,4.0,5.0,6.0,3 to 4 times,7.0,5 times or more,9.0,3 to 4 times,9.0,9.0, +25,Boston,Male,3.0,4.0,3.0,1 to 2 times,5.0,5 times or more,3.0,5 times or more,6.0,8.0,4.0 +26,Boston,Female,1.0,3.0,9.0,1 to 2 times,10.0,5 times or more,10.0,5 times or more,10.0,10.0,1.0 +27,Amsterdam,Female,1.0,1.0,9.0,0 times,,3 to 4 times,9.0,0 times,,10.0, +28,Amsterdam,Male,2.0,3.0,6.0,0 times,,5 times or more,8.0,0 times,,10.0, +29,Boston,Male,2.0,2.0,8.0,0 times,,3 to 4 times,9.0,3 to 4 times,9.0,9.0,9.0 +30,Boston,Male,4.0,4.0,8.0,5 times or more,9.0,3 to 4 times,5.0,5 times or more,9.0,9.0, +31,Amsterdam,Female,3.0,3.0,8.0,5 times or more,9.0,5 times or more,9.0,5 times or more,8.0,8.0, +32,Amsterdam,Female,1.0,2.0,8.0,3 to 4 times,9.0,1 to 2 times,9.0,3 to 4 times,10.0,10.0, +33,Boston,Male,2.0,2.0,9.0,3 to 4 times,9.0,5 times or more,9.0,1 to 2 times,,9.0, +34,Boston,Male,3.0,3.0,9.0,3 to 4 times,9.0,0 times,,5 times or more,10.0,,9.0 +35,Boston,Female,1.0,2.0,8.0,3 to 4 times,9.0,5 times or more,9.0,5 times or more,9.0,9.0,6.0 +36,Amsterdam,Female,3.0,4.0,9.0,1 to 2 times,9.0,5 times or more,9.0,5 times or more,10.0,10.0,10.0 +37,Amsterdam,Female,2.0,3.0,10.0,5 times or more,8.0,3 to 4 times,8.0,5 times or more,9.0,8.0, +38,Amsterdam,Male,3.0,3.0,6.0,1 to 2 times,8.0,1 to 2 times,6.0,3 to 4 times,9.0,9.0, +39,Boston,Female,2.0,2.0,7.0,1 to 2 times,8.0,1 to 2 times,10.0,3 to 4 times,8.0,7.0, +40,Amsterdam,Female,2.0,2.0,8.0,3 to 4 times,9.0,3 to 4 times,7.0,3 to 4 times,9.0,9.0,8.0 +41,Boston,Male,2.0,1.0,9.0,3 to 4 times,9.0,3 to 4 times,8.0,1 to 2 times,9.0,10.0, +42,Amsterdam,Female,1.0,1.0,7.0,5 times or more,8.0,5 times or more,8.0,3 to 4 times,10.0,10.0, +43,Amsterdam,Female,2.0,3.0,8.0,3 to 4 times,8.0,3 to 4 times,7.0,5 times or more,9.0,9.0, +44,Amsterdam,Female,3.0,3.0,8.0,3 to 4 times,8.0,0 times,,1 to 2 times,8.0,8.0, +45,Boston,Female,1.0,1.0,8.0,3 to 4 times,8.0,0 times,,3 to 4 times,5.0,8.0, +46,Boston,Female,2.0,2.0,6.0,1 to 2 times,8.0,3 to 4 times,10.0,5 times or more,7.0,, +47,Amsterdam,Male,4.0,4.0,8.0,1 to 2 times,7.0,3 to 4 times,8.0,5 times or more,9.0,9.0,8.0 +48,Boston,Male,2.0,3.0,7.0,1 to 2 times,7.0,1 to 2 times,7.0,5 times or more,9.0,9.0, +49,Boston,Male,2.0,2.0,6.0,1 to 2 times,5.0,1 to 2 times,6.0,0 times,,7.0, +50,Boston,Male,1.0,1.0,6.0,1 to 2 times,5.0,0 times,,0 times,,9.0, +51,Amsterdam,Female,4.0,3.0,3.0,5 times or more,5.0,5 times or more,5.0,5 times or more,9.0,10.0, +52,Amsterdam,Female,2.0,2.0,7.0,3 to 4 times,4.0,5 times or more,9.0,1 to 2 times,10.0,10.0, +53,Boston,Female,1.0,1.0,8.0,5 times or more,9.0,1 to 2 times,0.0,3 to 4 times,8.0,10.0, +54,Boston,Male,4.0,5.0,9.0,3 to 4 times,10.0,3 to 4 times,8.0,5 times or more,7.0,9.0, +55,Boston,Male,1.0,1.0,10.0,3 to 4 times,10.0,5 times or more,10.0,5 times or more,10.0,10.0,9.0 +56,Amsterdam,Female,2.0,1.0,10.0,1 to 2 times,10.0,1 to 2 times,10.0,1 to 2 times,10.0,9.0, +57,Boston,Female,2.0,2.0,7.0,1 to 2 times,10.0,0 times,,5 times or more,10.0,10.0, +58,Boston,Male,3.0,1.0,9.0,1 to 2 times,10.0,3 to 4 times,10.0,0 times,,10.0, +59,Amsterdam,Male,2.0,3.0,9.0,5 times or more,9.0,3 to 4 times,9.0,3 to 4 times,9.0,8.0, +60,Amsterdam,Male,2.0,2.0,8.0,3 to 4 times,8.0,1 to 2 times,9.0,3 to 4 times,9.0,10.0, +61,Boston,Male,4.0,3.0,8.0,1 to 2 times,8.0,1 to 2 times,8.0,5 times or more,9.0,9.0,8.0 +62,Boston,Female,3.0,4.0,7.0,3 to 4 times,,3 to 4 times,9.0,5 times or more,6.0,10.0, +63,Boston,Female,1.0,3.0,7.0,5 times or more,6.0,5 times or more,8.0,5 times or more,8.0,9.0,8.0 +64,Boston,Female,3.0,4.0,8.0,5 times or more,6.0,3 to 4 times,8.0,5 times or more,10.0,9.0,1.0 +65,Boston,Female,2.0,2.0,9.0,3 to 4 times,9.0,1 to 2 times,9.0,1 to 2 times,9.0,9.0, +66,Amsterdam,Female,3.0,3.0,,5 times or more,10.0,5 times or more,10.0,5 times or more,6.0,, +67,Amsterdam,Female,1.0,1.0,10.0,1 to 2 times,8.0,3 to 4 times,10.0,1 to 2 times,10.0,10.0, +68,Amsterdam,Male,3.0,3.0,8.0,5 times or more,9.0,5 times or more,9.0,5 times or more,8.0,9.0, +69,Amsterdam,Female,2.0,3.0,8.0,3 to 4 times,9.0,0 times,,0 times,,, +70,Amsterdam,Female,2.0,3.0,9.0,3 to 4 times,8.0,0 times,,5 times or more,10.0,10.0, +71,Boston,Male,3.0,2.0,6.0,5 times or more,4.0,3 to 4 times,8.0,5 times or more,10.0,10.0,5.0 +72,Boston,Male,1.0,1.0,10.0,1 to 2 times,9.0,1 to 2 times,9.0,1 to 2 times,10.0,8.0,3.0 +73,Amsterdam,Female,2.0,3.0,7.0,3 to 4 times,8.0,1 to 2 times,9.0,3 to 4 times,10.0,9.0, +74,Boston,Female,2.0,3.0,9.0,3 to 4 times,10.0,3 to 4 times,6.0,1 to 2 times,,8.0, +75,Amsterdam,Female,2.0,4.0,9.0,5 times or more,9.0,5 times or more,10.0,5 times or more,10.0,10.0,10.0 +76,New Delhi ,Male,2.0,3.0,9.0,5 times or more,9.0,3 to 4 times,9.0,3 to 4 times,8.0,8.0, +77,Amsterdam,Female,2.0,2.0,7.0,5 times or more,9.0,5 times or more,9.0,5 times or more,8.0,9.0, +78,Amsterdam,Female,4.0,4.0,9.0,5 times or more,9.0,5 times or more,10.0,0 times,,9.0, +79,Amsterdam,Female,3.0,5.0,8.0,3 to 4 times,9.0,3 to 4 times,9.0,5 times or more,9.0,9.0, +80,Amsterdam,Male,2.0,3.0,8.0,3 to 4 times,9.0,3 to 4 times,8.0,3 to 4 times,9.0,9.0,9.0 +81,Boston,Male,2.0,3.0,8.0,3 to 4 times,9.0,5 times or more,8.0,5 times or more,8.0,9.0,9.0 +82,Amsterdam,Female,2.0,2.0,7.0,3 to 4 times,9.0,5 times or more,10.0,3 to 4 times,10.0,10.0,10.0 +83,Amsterdam,Male,1.0,3.0,9.0,3 to 4 times,9.0,1 to 2 times,9.0,3 to 4 times,8.0,9.0,9.0 +84,Amsterdam,Female,3.0,4.0,8.0,1 to 2 times,9.0,1 to 2 times,8.0,5 times or more,10.0,8.0,10.0 +85,Amsterdam,Male,2.0,3.0,8.0,3 to 4 times,8.0,1 to 2 times,9.0,1 to 2 times,9.0,9.0, +86,Boston,Male,4.0,5.0,7.0,3 to 4 times,9.0,1 to 2 times,7.0,1 to 2 times,8.0,,8.0 +87,Boston,Male,3.0,4.0,9.0,3 to 4 times,9.0,3 to 4 times,9.0,5 times or more,10.0,10.0, +88,Amsterdam,Female,2.0,2.0,7.0,3 to 4 times,8.0,1 to 2 times,7.0,3 to 4 times,5.0,9.0, +89,Boston,Male,3.0,4.0,7.0,3 to 4 times,8.0,3 to 4 times,4.0,1 to 2 times,,3.0, +90,Boston,Male,2.0,3.0,6.0,5 times or more,5.0,5 times or more,6.0,5 times or more,10.0,8.0,6.0 +91,Boston,Female,3.0,3.0,7.0,3 to 4 times,7.0,5 times or more,7.0,5 times or more,10.0,,10.0 +92,Boston,Female,2.0,2.0,9.0,3 to 4 times,8.0,3 to 4 times,9.0,3 to 4 times,8.0,9.0, +93,Boston,Male,2.0,3.0,3.0,5 times or more,9.0,5 times or more,7.0,5 times or more,8.0,9.0, +94,Amsterdam,Female,2.0,3.0,7.0,3 to 4 times,9.0,5 times or more,7.0,3 to 4 times,10.0,9.0, +95,Amsterdam,Male,2.0,1.0,6.0,3 to 4 times,5.0,3 to 4 times,9.0,5 times or more,6.0,9.0, +96,Boston,Female,1.0,2.0,9.0,3 to 4 times,10.0,0 times,10.0,1 to 2 times,8.0,10.0, +97,Boston,Male,2.0,2.0,5.0,3 to 4 times,7.0,5 times or more,6.0,5 times or more,6.0,5.0,9.0 +98,Boston,Male,2.0,2.0,9.0,3 to 4 times,9.0,3 to 4 times,9.0,1 to 2 times,9.0,9.0,8.0 +99,Boston,Female,2.0,3.0,9.0,3 to 4 times,9.0,1 to 2 times,9.0,3 to 4 times,8.0,9.0, +100,Boston,Female,2.0,1.0,8.0,5 times or more,10.0,3 to 4 times,7.0,1 to 2 times,10.0,10.0,8.0 +101,Amsterdam,Male,2.0,1.0,8.0,5 times or more,9.0,3 to 4 times,9.0,5 times or more,10.0,8.0, +102,Amsterdam,Female,3.0,5.0,9.0,3 to 4 times,9.0,3 to 4 times,9.0,3 to 4 times,7.0,9.0,9.0 +103,Amsterdam,Male,2.0,3.0,8.0,3 to 4 times,9.0,3 to 4 times,10.0,5 times or more,9.0,9.0, +104,Amsterdam,Female,2.0,4.0,6.0,1 to 2 times,9.0,3 to 4 times,8.0,5 times or more,9.0,9.0, +105,Boston,Female,3.0,4.0,10.0,1 to 2 times,9.0,3 to 4 times,10.0,3 to 4 times,8.0,9.0,7.0 +106,Boston,Female,2.0,1.0,3.0,3 to 4 times,9.0,3 to 4 times,3.0,5 times or more,7.0,9.0, +107,Amsterdam,Male,1.0,1.0,8.0,5 times or more,8.0,3 to 4 times,8.0,0 times,8.0,8.0, +108,New Delhi ,Male,3.0,4.0,8.0,3 to 4 times,8.0,1 to 2 times,8.0,5 times or more,9.0,8.0, +109,Amsterdam,Female,2.0,3.0,8.0,3 to 4 times,7.0,1 to 2 times,9.0,1 to 2 times,10.0,9.0,10.0 +110,Amsterdam,Male,3.0,3.0,9.0,3 to 4 times,8.0,3 to 4 times,8.0,3 to 4 times,7.0,4.0, +111,Amsterdam,Male,1.0,3.0,8.0,5 times or more,8.0,3 to 4 times,8.0,5 times or more,7.0,5.0, +112,Boston,Female,2.0,4.0,6.0,5 times or more,8.0,5 times or more,4.0,3 to 4 times,7.0,8.0, +113,Amsterdam,Female,3.0,4.0,7.0,5 times or more,8.0,1 to 2 times,8.0,5 times or more,8.0,8.0, +114,Amsterdam,Female,3.0,4.0,9.0,5 times or more,8.0,1 to 2 times,8.0,5 times or more,9.0,9.0,9.0 +115,Amsterdam,Male,3.0,4.0,8.0,3 to 4 times,8.0,3 to 4 times,7.0,1 to 2 times,8.0,8.0, +116,Amsterdam,Female,2.0,4.0,8.0,3 to 4 times,8.0,3 to 4 times,8.0,5 times or more,8.0,9.0, +117,Boston,Female,1.0,3.0,10.0,3 to 4 times,8.0,5 times or more,10.0,1 to 2 times,8.0,9.0, +118,Boston,Male,3.0,4.0,8.0,3 to 4 times,8.0,0 times,,1 to 2 times,8.0,8.0, +119,New Delhi ,Female,2.0,2.0,8.0,1 to 2 times,8.0,5 times or more,8.0,5 times or more,10.0,8.0, +120,Amsterdam,Female,2.0,4.0,8.0,1 to 2 times,8.0,1 to 2 times,9.0,1 to 2 times,5.0,8.0,8.0 +121,New Delhi ,Male,3.0,2.0,7.0,5 times or more,7.0,1 to 2 times,10.0,3 to 4 times,10.0,10.0,10.0 +122,New Delhi ,Female,1.0,3.0,10.0,3 to 4 times,7.0,3 to 4 times,7.0,5 times or more,10.0,8.0,10.0 +123,Boston,Female,2.0,4.0,6.0,3 to 4 times,6.0,5 times or more,7.0,5 times or more,8.0,7.0, +124,Boston,Female,2.0,3.0,9.0,5 times or more,7.0,5 times or more,10.0,5 times or more,10.0,9.0,7.0 +125,Amsterdam,Female,4.0,4.0,7.0,3 to 4 times,4.0,5 times or more,8.0,3 to 4 times,9.0,8.0, +126,Boston,Female,2.0,3.0,5.0,3 to 4 times,5.0,5 times or more,7.0,5 times or more,8.0,7.0,1.0 +127,Amsterdam,Female,2.0,2.0,7.0,3 to 4 times,8.0,3 to 4 times,9.0,5 times or more,9.0,7.0,8.0 +128,Amsterdam,Female,3.0,5.0,8.0,1 to 2 times,9.0,0 times,,3 to 4 times,10.0,9.0,10.0 +129,Boston,Male,2.0,2.0,3.0,5 times or more,7.0,5 times or more,5.0,5 times or more,9.0,6.0,7.0 +130,Boston,Female,2.0,3.0,6.0,5 times or more,5.0,5 times or more,3.0,5 times or more,7.0,7.0, +131,Boston,Male,3.0,2.0,3.0,3 to 4 times,7.0,5 times or more,1.0,5 times or more,3.0,7.0,7.0 +132,Amsterdam,Male,2.0,3.0,7.0,5 times or more,7.0,1 to 2 times,8.0,5 times or more,10.0,9.0, +133,Boston,Female,1.0,1.0,7.0,5 times or more,8.0,5 times or more,8.0,5 times or more,8.0,7.0,8.0 +134,Amsterdam,Male,4.0,5.0,8.0,3 to 4 times,8.0,3 to 4 times,9.0,5 times or more,9.0,9.0,9.0 +135,Boston,Male,2.0,3.0,7.0,5 times or more,7.0,1 to 2 times,8.0,1 to 2 times,8.0,9.0,7.0 +136,Boston,Male,3.0,3.0,7.0,3 to 4 times,8.0,3 to 4 times,9.0,5 times or more,10.0,7.0, +137,Amsterdam,Male,3.0,4.0,3.0,3 to 4 times,7.0,5 times or more,7.0,5 times or more,6.0,7.0, +138,Amsterdam,Female,2.0,2.0,6.0,3 to 4 times,6.0,3 to 4 times,9.0,0 times,,9.0, +139,Boston,Female,2.0,4.0,6.0,1 to 2 times,3.0,5 times or more,7.0,5 times or more,10.0,8.0,2.0 +140,Amsterdam,Male,2.0,3.0,7.0,5 times or more,7.0,1 to 2 times,8.0,5 times or more,9.0,8.0, +141,Amsterdam,Female,2.0,3.0,4.0,5 times or more,3.0,5 times or more,3.0,5 times or more,8.0,9.0, +142,Amsterdam,Female,4.0,1.0,8.0,5 times or more,8.0,3 to 4 times,7.0,3 to 4 times,9.0,9.0, +143,Boston,Female,3.0,4.0,8.0,3 to 4 times,6.0,3 to 4 times,9.0,5 times or more,9.0,10.0, +144,Amsterdam,Female,2.0,2.0,7.0,5 times or more,5.0,1 to 2 times,8.0,3 to 4 times,7.0,10.0, +145,Boston,Male,2.0,2.0,6.0,1 to 2 times,7.0,1 to 2 times,4.0,3 to 4 times,9.0,7.0, +146,Boston,Female,2.0,2.0,9.0,3 to 4 times,5.0,3 to 4 times,7.0,5 times or more,10.0,10.0,7.0 +147,Amsterdam,Female,2.0,3.0,5.0,5 times or more,1.0,5 times or more,8.0,3 to 4 times,9.0,8.0, +148,Amsterdam,Male,2.0,2.0,3.0,5 times or more,5.0,5 times or more,3.0,5 times or more,8.0,8.0, +149,Amsterdam,Female,2.0,1.0,7.0,5 times or more,6.0,5 times or more,6.0,5 times or more,10.0,10.0, +150,Boston,Female,2.0,1.0,5.0,5 times or more,4.0,5 times or more,8.0,5 times or more,8.0,9.0, +151,Boston,Female,2.0,3.0,7.0,3 to 4 times,8.0,5 times or more,8.0,5 times or more,10.0,8.0,10.0 +152,Boston,Female,2.0,4.0,7.0,1 to 2 times,4.0,0 times,8.0,5 times or more,7.0,7.0,8.0 +153,Amsterdam,Male,4.0,4.0,8.0,0 times,,3 to 4 times,10.0,0 times,9.0,10.0, +154,Amsterdam,Male,1.0,2.0,4.0,3 to 4 times,5.0,3 to 4 times,4.0,3 to 4 times,6.0,9.0, +155,Boston,Male,3.0,3.0,5.0,5 times or more,4.0,3 to 4 times,8.0,5 times or more,8.0,7.0,8.0 +156,Boston,Female,1.0,2.0,5.0,3 to 4 times,4.0,5 times or more,8.0,3 to 4 times,10.0,10.0, +157,Amsterdam,Female,1.0,1.0,4.0,5 times or more,3.0,3 to 4 times,4.0,3 to 4 times,9.0,10.0, +158,Amsterdam,Male,2.0,2.0,5.0,5 times or more,3.0,5 times or more,7.0,3 to 4 times,9.0,9.0, +159,Boston,Female,2.0,3.0,7.0,5 times or more,9.0,5 times or more,7.0,5 times or more,10.0,7.0, +160,Amsterdam,Female,3.0,4.0,9.0,3 to 4 times,10.0,1 to 2 times,10.0,3 to 4 times,10.0,10.0, +161,Boston,Male,2.0,3.0,7.0,5 times or more,6.0,5 times or more,6.0,5 times or more,9.0,8.0,9.0 +162,Boston,Female,1.0,3.0,10.0,5 times or more,10.0,5 times or more,10.0,5 times or more,10.0,10.0, +163,Amsterdam,Male,1.0,2.0,4.0,3 to 4 times,10.0,3 to 4 times,5.0,5 times or more,8.0,10.0, +164,Boston,Female,1.0,1.0,10.0,1 to 2 times,10.0,1 to 2 times,9.0,5 times or more,10.0,10.0, +165,New Delhi ,Female,1.0,1.0,8.0,3 to 4 times,9.0,3 to 4 times,7.0,3 to 4 times,10.0,10.0, +166,Boston,Male,4.0,4.0,8.0,5 times or more,10.0,5 times or more,9.0,5 times or more,10.0,10.0,10.0 +167,Boston,Female,2.0,1.0,10.0,3 to 4 times,9.0,1 to 2 times,9.0,5 times or more,8.0,10.0, +168,Boston,Male,4.0,3.0,10.0,3 to 4 times,6.0,1 to 2 times,8.0,3 to 4 times,9.0,10.0,9.0 +169,Boston,Male,2.0,2.0,9.0,5 times or more,10.0,1 to 2 times,9.0,5 times or more,10.0,10.0, +170,Boston,Female,2.0,1.0,9.0,5 times or more,8.0,1 to 2 times,3.0,5 times or more,10.0,10.0, +171,Boston,Female,3.0,3.0,8.0,3 to 4 times,10.0,3 to 4 times,10.0,1 to 2 times,9.0,, +172,Boston,Female,3.0,4.0,,3 to 4 times,,3 to 4 times,8.0,5 times or more,10.0,9.0, +173,Boston,Female,1.0,1.0,10.0,5 times or more,9.0,5 times or more,10.0,3 to 4 times,10.0,10.0,10.0 +174,Boston,Female,3.0,3.0,7.0,5 times or more,8.0,5 times or more,8.0,5 times or more,8.0,10.0,4.0 +175,Boston,Female,1.0,1.0,6.0,3 to 4 times,8.0,3 to 4 times,8.0,3 to 4 times,9.0,8.0,8.0 +176,Amsterdam,Male,4.0,5.0,10.0,5 times or more,10.0,5 times or more,10.0,5 times or more,10.0,10.0, +177,Boston,Male,3.0,3.0,9.0,3 to 4 times,10.0,1 to 2 times,10.0,1 to 2 times,9.0,10.0, +178,Amsterdam,Male,2.0,3.0,10.0,3 to 4 times,10.0,5 times or more,8.0,5 times or more,10.0,10.0,8.0 +179,Boston,Female,2.0,4.0,8.0,1 to 2 times,10.0,3 to 4 times,10.0,3 to 4 times,10.0,,9.0 +180,Boston,Female,2.0,3.0,8.0,1 to 2 times,10.0,1 to 2 times,9.0,1 to 2 times,10.0,10.0, +181,Boston,Female,2.0,3.0,6.0,1 to 2 times,6.0,1 to 2 times,8.0,3 to 4 times,7.0,6.0,6.0 diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/satisfaction_survey_admin.csv b/module-2_projects/visualizing-real-world-data-project/your-code/satisfaction_survey_admin.csv new file mode 100644 index 0000000..79092b6 --- /dev/null +++ b/module-2_projects/visualizing-real-world-data-project/your-code/satisfaction_survey_admin.csv @@ -0,0 +1,183 @@ + Location ,Gender,Age,Age_bins,Seniority,Seniority_bins,satisfaction_with_administration_general,Times_approched_accounting,reasons_approched_accounting_1,reasons_approched_accounting_2,reasons_approched_accounting_3,reasons_approched_accounting_4,reasons_approched_accounting_5,reasons_approched_accounting_6,reasons_approched_accounting_7,Last_aprproch_Evaluation_accounting ,accounting_evaluation_breack_down_Q1,accounting_evaluation_breack_down_Q2,accounting_evaluation_breack_down_Q3,accounting_evaluation_breack_down_Q4,accounting_evaluation_breack_down_Q5,accounting_evaluation_breack_down_Q6,accounting_evaluation_breack_down_Q7,accounting_evaluation_breack_down_Q8,Times_approched_HR,reasons_approched_HR_1,reasons_approched_HR_2,reasons_approched_HR_3,reasons_approched_HR_4,reasons_approched_HR_5,reasons_approched_HR_6,Last_aprproch_Evaluation_HR,HR_evaluation_breack_down_Q1,HR_evaluation_breack_down_Q2,HR_evaluation_breack_down_Q3,HR_evaluation_breack_down_Q4,HR_evaluation_breack_down_Q5,HR_evaluation_breack_down_Q6,HR_evaluation_breack_down_Q7,HR_evaluation_breack_down_Q8,HR_evaluation_breack_down_Q9,HR_evaluation_breack_down_Q10,Times approached Office Management,reasons_approched_Office Management_1,reasons_approched_Office Management_2,reasons_approched_Office Management_3,reasons_approched_Office Management_4,reasons_approched_Office Management_5,reasons_approched_Office Management_6,reasons_approched_Office Management_7,Last_aprproch_Evaluation_Office Management ,Office Management__evaluation_break down_Q1,Office Management__evaluation_break down_Q2,Office Management__evaluation_break down_Q3,Office Management__evaluation_break down_Q4,Office Management__evaluation_break down_Q5,Office Management__evaluation_break down_Q6,Office Management__evaluation_break down_Q7,Office Management__evaluation_break down_Q8,Office Management__evaluation_break down_Q9,Office Management__evaluation_break down_Q10,General_Evaluation_security_department ,Security_department_evaluation_break down_Q1,Security_department_evaluation_break down_Q2,Security_department_evaluation_break down_Q3,Security_department_evaluation_break down_Q4,Security_department_evaluation_break down_Q5,Security_department_evaluation_break down_Q6,Security_department_evaluation_break down_Q7,Security_department_evaluation_break down_Q8,Security_department_evaluation_break down_Q9,Security_department_evaluation_break down_Q10,Security_department_evaluation_break down_Q11,General_Evaluation_data&records_department,data&records_department_evaluation_break down_Q1,data&records_department_evaluation_break down_Q2,data&records_department_evaluation_break down_Q3 +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,8,C. Twice,3.00,4.00,5.00,,,,,3,6,6,3,6,8,6,9,7,D. 3 to 4 times,3.00,4.00,5.00,,,,6,3,4,5,4,,,3,8,6,6,B. Once,3.00,,,,,,,1,5,2,3,4,,,,,4,4,4,9,9,7,7,,,,,,,,,,, +City_2(main devlopment center),Male,4.00,D. 41 to 50,3.00,D. 11 to 20 years,10,A. Zero times,1.00,,,,,,,,,,,8,,8,4,8,C. Twice,6.00,,,,,,7,,9,9,9,,8,8,8,8,8,E. 5 times or more,1.00,2.00,3.00,5.00,7.00,,,10,9,9,10,10,10,10,10,10,10,10,9,8,8,10,7,9,9,8,10,9,8,9,8,8,8,8 +City_3(lastest expantion),Female,2.00,B. 21 to 30,3.00,C. 6 to 10 years,8,C. Twice,3.00,4.00,,,,,,8,,,,,8,,,,A. Zero times,,,,,,,,9,6,9,,,,,,,,E. 5 times or more,1.00,2.00,3.00,,,,,10,10,10,10,10,10,10,10,10,10,10,8,6,8,,8,8,,8,,8,8,6,,10,10,10 +City_3(lastest expantion),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,7,E. 5 times or more,5.00,1.00,2.00,3.00,4.00,5.00,,9,9,9,9,9,8,8,8,8,C. Twice,3.00,,,,,,7,7,10,8,,,,8,8,8,8,B. Once,5.00,,,,,,,9,10,10,10,,,,,10,10,10,,10,10,8,10,10,,,,,,,,,, +City_3(lastest expantion),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,5,D. 3 to 4 times,4.00,1.00,2.00,3.00,4.00,,,9,9,9,9,9,7,9,9,8,D. 3 to 4 times,3.00,,,,,,8,,,8,,,,,7,6,6,C. Twice,5.00,,,,,,,8,9,9,9,2,,,,,9,9,9,9,9,,9,9,9,8,,9,9,9,,,, +City_2(main devlopment center),Male,4.00,D. 41 to 50,3.00,C. 6 to 10 years,8,E. 5 times or more,5.00,6.00,,,,,7.00,4,,,,9,,7,7,8,E. 5 times or more,3.00,5.00,8.00,9.00,,,9,,9,8,9,,9,9,9,9,9,E. 5 times or more,1.00,2.00,3.00,4.00,5.00,6.00,7.00,10,9,8,9,9,6,7,9,9,9,9,8,9,9,9,9,9,9,9,9,9,9,9,,,, +Remote,Male,4.00,D. 41 to 50,1.00,A. upto 2 years,8,E. 5 times or more,5.00,1.00,,,,,,8,9,9,9,9,9,9,9,9,D. 3 to 4 times,1.00,6.00,,,,,8,9,,9,9,,,9,9,9,8,D. 3 to 4 times,1.00,3.00,5.00,,,,,,9,9,9,9,,9,,8,7,9,8,10,8,,,,,,10,10,10,10,,,, +City_3(lastest expantion),Female,2.00,B. 21 to 30,3.00,C. 6 to 10 years,10,E. 5 times or more,5.00,1.00,2.00,4.00,6.00,,,8,8,8,8,8,8,8,8,9,E. 5 times or more,1.00,3.00,4.00,5.00,,,9,10,,9,9,,,9,9,10,9,E. 5 times or more,1.00,2.00,3.00,4.00,5.00,6.00,7.00,10,10,10,10,10,10,10,10,10,10,10,10,10,9,10,9,8,10,10,,10,10,10,10,10,,10 +City_2(main devlopment center),Female,4.00,D. 41 to 50,2.00,B. 3 to 5 years,9,D. 3 to 4 times,4.00,1.00,4.00,5.00,,,,9,9,9,9,9,9,9,9,9,D. 3 to 4 times,3.00,8.00,,,,,9,,9,9,,,9,9,9,9,9,D. 3 to 4 times,2.00,,,,,,,9,8,8,8,,,,,9,9,9,9,9,9,9,9,9,,9,9,9,9,9,,,, +City_1(HQ),Male,3.00,C. 31 to 40 ,1.00,A. upto 2 years,8,D. 3 to 4 times,4.00,3.00,4.00,5.00,,,,8,9,8,8,9,9,8,8,8,D. 3 to 4 times,3.00,4.00,,,,,10,9,9,10,9,,,8,8,8,9,B. Once,5.00,7.00,,,,,,9,8,8,8,8,,,,8,6,8,8,8,8,8,9,9,9,8,8,8,8,9,8,8,8,9 +City_1(HQ),Female,5.00,E. 51 and older ,5.00,E. More then 20,9,D. 3 to 4 times,4.00,5.00,,,,,,9,,,,,,10,10,10,B. Once,,,,,,,9,,,,,,,,,,,E. 5 times or more,4.00,,,,,,,10,9,9,10,9,10,,,,6,9,10,10,10,,10,,,,,9,9,9,,,, +City_3(lastest expantion),Male,4.00,D. 41 to 50,4.00,D. 11 to 20 years,8,D. 3 to 4 times,4.00,2.00,3.00,6.00,,,,10,10,10,10,10,10,10,9,10,A. Zero times,,,,,,,,,9,10,,,,8,8,9,9,E. 5 times or more,1.00,2.00,4.00,7.00,,,,10,10,10,10,10,,10,10,10,10,10,10,10,10,10,10,10,10,10,,10,9,10,,,, +City_1(HQ),Male,4.00,D. 41 to 50,4.00,D. 11 to 20 years,9,A. Zero times,1.00,,,,,,,,,,,,,8,8,10,C. Twice,4.00,,,,,,9,,,9,,,8,8,8,10,9,D. 3 to 4 times,1.00,7.00,,,,,,10,8,8,7,,,,,9,4,9,8,8,,,8,8,,,9,9,8,9,8,7,8,8 +City_1(HQ),Female,3.00,C. 31 to 40 ,4.00,D. 11 to 20 years,9,D. 3 to 4 times,4.00,2.00,4.00,,,,,10,,10,10,,10,10,10,10,D. 3 to 4 times,3.00,4.00,,,,,10,,,10,,,,10,10,10,10,E. 5 times or more,1.00,2.00,3.00,4.00,7.00,,,9,9,9,9,9,,,,9,6,10,10,10,10,10,10,10,,,10,10,10,10,,,, +City_2(main devlopment center),Female,2.00,B. 21 to 30,3.00,C. 6 to 10 years,9,E. 5 times or more,5.00,6.00,,,,,,7,10,10,10,10,10,9,9,9,A. Zero times,,,,,,,,,,10,,,,10,10,10,10,E. 5 times or more,1.00,2.00,3.00,,,,,10,10,6,10,,,,,10,10,10,10,10,10,,10,10,,10,10,10,10,10,,,, +City_2(main devlopment center),Female,5.00,E. 51 and older ,4.00,D. 11 to 20 years,7,C. Twice,3.00,5.00,,,,,,8,8,,,8,,8,8,8,D. 3 to 4 times,3.00,4.00,,,,,9,,,9,10,,,9,9,9,10,E. 5 times or more,7.00,,,,,,,9,7,7,8,8,,,9,10,10,9,8,7,7,9,9,9,9,7,7,8,7,7,,,, +City_1(HQ),Male,2.00,B. 21 to 30,1.00,A. upto 2 years,8,D. 3 to 4 times,4.00,1.00,5.00,,,,7.00,,,,,7,8,,,,C. Twice,6.00,3.00,1.00,,,,8,10,,,,,,8,8,9,,A. Zero Times,,,,,,,,,,,,,,,,,1,,10,10,10,3,9,9,8,9,10,8,9,9,,,, +City_1(HQ),Male,4.00,D. 41 to 50,4.00,D. 11 to 20 years,7,C. Twice,3.00,,,,,,,,,,,,,,,,A. Zero times,,,,,,,,1,1,7,7,,7,8,8,9,5,E. 5 times or more,1.00,,,,,,,10,9,9,9,,,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8 +City_3(lastest expantion),Female,2.00,B. 21 to 30,3.00,C. 6 to 10 years,8,E. 5 times or more,5.00,4.00,6.00,,,,,9,,,,,10,9,8,9,E. 5 times or more,,,,,,,10,,,10,10,,10,10,10,10,10,E. 5 times or more,1.00,2.00,3.00,4.00,5.00,6.00,7.00,10,9,9,10,,,10,10,9,8,10,8,7,9,10,10,7,9,9,,9,10,10,9,9,10,10 +City_3(lastest expantion),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,8,D. 3 to 4 times,4.00,4.00,5.00,,,,,9,,,,,10,9,9,8,B. Once,3.00,,,,,,9,9,8,9,10,,7,8,8,8,8,D. 3 to 4 times,1.00,3.00,4.00,7.00,,,,10,9,9,10,,,,10,10,10,10,10,10,10,10,10,10,7,7,10,9,9,10,,,, +City_2(main devlopment center),Male,4.00,D. 41 to 50,1.00,A. upto 2 years,8,B. Once,2.00,4.00,,,,,,9,,,,,,,,,A. Zero times,,,,,,,,10,10,,,,,,,9,9,B. Once,2.00,5.00,,,,,,9,9,9,9,9,,,,,,9,9,10,10,9,,,,9,9,10,9,9,,,, +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,9,E. 5 times or more,5.00,4.00,6.00,,,,,8,,,,,9,9,9,9,D. 3 to 4 times,3.00,8.00,,,,,9,,,9,9,,8,9,9,9,9,C. Twice,5.00,,,,,,,9,9,9,9,9,,7,,,10,9,9,9,9,9,9,9,,8,9,9,9,9,,,, +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,7,D. 3 to 4 times,4.00,2.00,4.00,,,,,8,,,,8,8,8,8,9,D. 3 to 4 times,3.00,8.00,,,,,9,9,9,8,,,9,9,7,8,8,C. Twice,5.00,,,,,,,7,7,8,7,7,,,,7,8,8,8,8,,9,9,,,8,8,8,8,8,8,8,8,8 +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,8,C. Twice,3.00,3.00,,,,,7.00,8,,,,8,,8,7,8,C. Twice,3.00,,,,,,8,7,8,8,8,,,8,8,8,8,B. Once,1.00,,,,,,,,8,7,8,7,,,,8,8,8,6,8,8,8,8,8,7,7,8,8,,,8,7,7,7 +City_2(main devlopment center),Male,5.00,E. 51 and older ,5.00,E. More then 20,6,D. 3 to 4 times,4.00,5.00,6.00,,,,,7,,,,10,,9,8,9,E. 5 times or more,3.00,5.00,,,,,9,,10,10,10,,9,9,10,10,10,D. 3 to 4 times,1.00,2.00,4.00,,,,,9,7,7,7,7,7,,,7,7,8,9,7,9,9,10,9,9,9,9,8,9,9,,,, +City_1(HQ),Male,4.00,D. 41 to 50,4.00,D. 11 to 20 years,3,B. Once,2.00,5.00,,,,,,5,,,,,,7,7,7,E. 5 times or more,3.00,6.00,7.00,8.00,,,3,,,7,6,,6,6,6,6,6,E. 5 times or more,1.00,4.00,7.00,,,,,6,6,7,4,3,1,,,,2,5,8,4,8,,,,,5,7,,5,6,4,3,4,6 +City_1(HQ),Female,2.00,B. 21 to 30,3.00,C. 6 to 10 years,9,C. Twice,3.00,,,,,,7.00,10,,,,10,10,10,8,9,E. 5 times or more,3.00,5.00,,,,,10,,,10,10,,,10,10,10,10,E. 5 times or more,1.00,2.00,,,,,,10,4,1,10,,,,,,5,10,10,10,10,10,10,10,,,9,10,9,9,1,,, +City_2(main devlopment center),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,9,A. Zero times,1.00,,,,,,,,,,,,,,,,D. 3 to 4 times,1.00,4.00,,,,,9,9,,9,8,,,9,8,10,8,A. Zero Times,,,,,,,,,9,9,9,10,,,,9,9,9,10,10,10,10,10,10,10,8,9,10,8,10,,,, +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,6,A. Zero times,1.00,,,,,,,,,,,10,,,,,E. 5 times or more,3.00,4.00,,,,,8,,,9,,,,10,9,9,8,A. Zero Times,,,,,,,,,9,8,6,,,,,,8,10,10,10,,10,10,10,,,10,10,10,10,,,, +City_1(HQ),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,8,A. Zero times,1.00,,,,,,,,,,,,,,,,D. 3 to 4 times,4.00,8.00,,,,,9,,9,9,,,8,8,9,9,9,D. 3 to 4 times,2.00,3.00,7.00,,,,,9,9,8,8,9,,,,9,9,9,9,9,9,9,9,,,3,9,9,9,9,9,9,9,9 +City_1(HQ),Male,5.00,E. 51 and older ,4.00,D. 11 to 20 years,8,E. 5 times or more,5.00,4.00,,,,,,9,9,,,,9,9,9,10,D. 3 to 4 times,2.00,4.00,8.00,,,,5,,8,9,9,6,8,8,6,7,7,E. 5 times or more,1.00,4.00,7.00,,,,,9,9,7,9,,,7,,9,9,8,9,9,8,7,9,9,9,7,9,9,8,9,,9,,10 +City_2(main devlopment center),Female,4.00,D. 41 to 50,3.00,C. 6 to 10 years,8,E. 5 times or more,5.00,1.00,4.00,,,,7.00,9,9,,,9,10,9,9,9,E. 5 times or more,3.00,6.00,,,,,9,,9,9,,,,9,8,9,9,E. 5 times or more,1.00,3.00,,,,,,8,8,8,7,8,,,,9,9,8,8,10,9,9,10,8,9,8,8,9,8,9,,,, +City_2(main devlopment center),Female,2.00,B. 21 to 30,2.00,B. 3 to 5 years,8,D. 3 to 4 times,4.00,1.00,3.00,,,,,9,9,,,,8,10,10,10,C. Twice,3.00,,,,,,9,10,10,10,,,,9,10,9,9,D. 3 to 4 times,2.00,7.00,,,,,,10,10,10,8,,,,,,10,10,10,10,10,10,10,10,10,9,10,10,10,10,,,, +City_1(HQ),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,9,D. 3 to 4 times,4.00,4.00,,,,,7.00,9,9,,,,9,9,9,9,E. 5 times or more,4.00,5.00,,,,,9,10,10,9,,,10,9,9,10,10,B. Once,5.00,,,,,,,,10,,9,9,,,,,8,,9,,,,,9,,10,,,,,,,, +City_1(HQ),Male,4.00,D. 41 to 50,3.00,C. 6 to 10 years,9,D. 3 to 4 times,4.00,1.00,4.00,,,,,9,9,,,9,9,9,8,9,A. Zero times,,,,,,,,,,7,,,,9,9,9,8,E. 5 times or more,1.00,2.00,3.00,5.00,7.00,,,10,9,9,10,,,9,,9,9,9,,,,,,,,,,,,,9,,, +City_1(HQ),Female,2.00,B. 21 to 30,2.00,B. 3 to 5 years,8,D. 3 to 4 times,4.00,1.00,6.00,,,,,9,9,,,,,8,8,9,E. 5 times or more,3.00,4.00,,,,,9,8,,9,8,,,8,8,8,8,E. 5 times or more,1.00,2.00,3.00,5.00,,,,9,8,8,8,8,,,,,8,8,9,9,8,9,9,9,9,8,9,8,8,9,6,5,8,8 +City_2(main devlopment center),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,9,C. Twice,3.00,1.00,5.00,,,,,9,9,,,,,9,9,9,E. 5 times or more,3.00,9.00,,,,,9,,,10,,,,10,10,10,10,E. 5 times or more,1.00,4.00,5.00,7.00,,,,10,10,4,10,10,10,10,10,10,10,10,10,9,,10,10,10,10,10,10,10,10,10,10,10,10,10 +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,10,E. 5 times or more,5.00,1.00,5.00,,,,,8,9,,,8,6,8,6,9,D. 3 to 4 times,3.00,4.00,5.00,,,,8,10,9,8,,,8,8,6,8,8,E. 5 times or more,1.00,2.00,3.00,4.00,,,,9,9,8,7,7,,9,10,10,10,10,8,10,10,8,8,8,8,6,6,4,4,8,,,, +City_2(main devlopment center),Male,4.00,D. 41 to 50,3.00,C. 6 to 10 years,6,C. Twice,3.00,1.00,5.00,,,,,8,9,,,,,,9,9,C. Twice,3.00,,,,,,6,7,7,6,6,,8,4,7,9,6,D. 3 to 4 times,1.00,2.00,3.00,7.00,,,,9,7,7,6,9,9,,,9,9,9,9,8,,8,9,,,3,9,9,7,9,,2,, +City_1(HQ),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,7,C. Twice,3.00,1.00,,,,,,8,9,,,10,9,10,10,10,C. Twice,7.00,6.00,5.00,4.00,3.00,2.00,10,10,10,10,10,10,10,10,10,10,10,D. 3 to 4 times,1.00,2.00,3.00,4.00,5.00,6.00,7.00,8,7,8,8,7,,7,8,9,8,9,7,10,10,9,8,8,8,7,9,9,8,9,,7,7,9 +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,8,D. 3 to 4 times,4.00,1.00,4.00,,,,7.00,9,8,,,,9,9,9,9,D. 3 to 4 times,3.00,,,,,,7,,,8,,,,8,8,8,7,D. 3 to 4 times,7.00,,,,,,,9,8,7,8,8,,,8,9,10,9,9,9,9,10,10,,,9,9,9,9,9,8,8,8,8 +City_1(HQ),Male,3.00,C. 31 to 40 ,1.00,A. upto 2 years,9,D. 3 to 4 times,4.00,1.00,,,,,,9,8,,,,10,9,9,10,D. 3 to 4 times,6.00,2.00,1.00,,,,8,9,9,,,,,9,10,9,9,C. Twice,1.00,3.00,4.00,5.00,,,,9,8,8,10,10,,,,,9,10,10,10,,10,,10,10,6,,9,9,10,,,, +City_2(main devlopment center),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,7,E. 5 times or more,5.00,1.00,4.00,,,,7.00,8,8,,,5,8,6,8,8,E. 5 times or more,3.00,4.00,9.00,,,,8,8,9,8,,,,8,6,7,7,D. 3 to 4 times,2.00,7.00,,,,,,10,8,8,7,7,,,,9,9,10,10,10,10,10,10,,9,7,9,9,7,9,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,8,D. 3 to 4 times,4.00,1.00,4.00,,,,7.00,8,8,,,9,9,9,7,9,D. 3 to 4 times,3.00,2.00,8.00,,,,7,5,8,9,8,,9,9,7,7,8,E. 5 times or more,1.00,2.00,3.00,5.00,6.00,7.00,8.00,9,9,9,6,9,,10,10,10,10,10,9,9,9,9,9,9,9,9,9,9,9,9,,,, +City_2(main devlopment center),Female,4.00,D. 41 to 50,3.00,C. 6 to 10 years,8,D. 3 to 4 times,4.00,1.00,4.00,,,,,8,8,,,8,8,8,,,A. Zero times,,,,,,,,,,,,,,,,,,B. Once,7.00,,,,,,,8,8,4,4,,,,8,8,8,8,8,9,,9,9,,,,,9,9,9,,,, +City_1(HQ),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,8,D. 3 to 4 times,4.00,1.00,4.00,5.00,,,,8,8,,,,8,8,7,8,A. Zero times,,,,,,,,,,,,,,,,,,D. 3 to 4 times,1.00,5.00,,,,,,5,6,6,6,6,,,,,8,8,8,10,10,10,,10,,10,10,10,10,10,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,6,C. Twice,3.00,1.00,,,,,,8,8,,,7,10,,9,9,D. 3 to 4 times,3.00,,,,,,10,,,10,,,,10,10,10,8,E. 5 times or more,1.00,5.00,7.00,,,,,7,,,7,10,,,,,10,10,,10,,,10,,,7,,,,,,,, +City_2(main devlopment center),Male,5.00,E. 51 and older ,4.00,D. 11 to 20 years,8,B. Once,2.00,,,,,,7.00,7,8,,,,9,8,8,8,D. 3 to 4 times,2.00,8.00,,,,,8,,9,8,,9,,9,9,10,9,E. 5 times or more,1.00,2.00,3.00,5.00,7.00,,,9,8,8,8,9,,,,9,10,9,9,9,8,9,8,9,9,9,9,9,8,9,8,8,8,9 +City_1(HQ),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,7,C. Twice,3.00,,1.00,4.00,,,,7,6,,,,10,7,9,6,C. Twice,3.00,6.00,,,,,7,,8,9,,,,8,9,6,7,E. 5 times or more,1.00,2.00,3.00,5.00,7.00,,,9,7,7,8,8,,,,6,4,8,9,8,9,8,8,8,8,7,8,8,7,7,,,, +City_1(HQ),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,6,C. Twice,3.00,1.00,6.00,,,,,5,6,,,,,,,,C. Twice,8.00,,,,,,6,,,,,6,,,,,,A. Zero Times,,,,,,,,,7,6,7,7,,,,7,7,7,7,8,8,8,,8,8,,,8,8,8,,,, +City_1(HQ),Male,1.00,A. upto 20,1.00,A. upto 2 years,6,C. Twice,3.00,1.00,,,,,,5,5,,,,,,,,A. Zero times,,,,,,,,7,,,,,,,,,,A. Zero Times,,,,,,,,,7,6,6,,,,,,6,,9,10,10,8,,,,,,10,,10,,,, +City_2(main devlopment center),Female,5.00,E. 51 and older ,3.00,C. 6 to 10 years,3,E. 5 times or more,5.00,1.00,,,,,7.00,5,3,,,3,3,3,3,1,E. 5 times or more,3.00,5.00,7.00,,,,5,,,5,5,1,,5,2,3,,E. 5 times or more,1.00,3.00,5.00,7.00,,,,9,8,8,7,,,,,,8,9,10,10,10,10,10,10,10,10,10,10,10,10,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,7,D. 3 to 4 times,4.00,1.00,5.00,,,,7.00,4,3,,,,10,8,8,8,E. 5 times or more,3.00,4.00,5.00,,,,9,9,10,8,10,,,7,9,10,9,C. Twice,1.00,,,,,,,10,9,8,9,8,,,,,10,10,10,10,10,10,8,,,8,10,10,10,10,,,, +City_1(HQ),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,8,E. 5 times or more,5.00,1.00,2.00,5.00,,,7.00,9,10,,,10,10,10,9,10,C. Twice,2.00,3.00,4.00,5.00,8.00,,0,0,0,10,10,,,10,9,10,10,D. 3 to 4 times,1.00,3.00,5.00,7.00,,,,8,10,10,9,,,,,,9,10,10,10,10,10,10,10,10,10,10,10,10,10,,,, +City_1(HQ),Male,5.00,E. 51 and older ,5.00,E. More then 20,9,D. 3 to 4 times,4.00,1.00,4.00,,,,,10,10,,,,10,10,10,10,D. 3 to 4 times,3.00,,,,,,8,,,8,,,,9,9,10,8,E. 5 times or more,1.00,2.00,3.00,7.00,,,,7,9,9,9,9,,,,10,8,8,9,9,9,9,9,9,,8,9,9,9,9,,,, +City_1(HQ),Male,2.00,B. 21 to 30,1.00,A. upto 2 years,10,D. 3 to 4 times,4.00,1.00,,,,,,10,10,,,,,10,10,10,E. 5 times or more,3.00,2.00,,,,,10,10,10,10,10,,,10,10,10,10,E. 5 times or more,1.00,3.00,5.00,7.00,,,,10,9,9,9,,,,,,1,9,10,10,10,10,10,9,,8,10,10,9,10,9,9,10,10 +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,1.00,A. upto 2 years,10,C. Twice,3.00,1.00,,,,,,10,10,,,,,10,9,,B. Once,2.00,,,,,,10,10,9,10,,,,10,10,10,10,B. Once,5.00,,,,,,,10,8,9,8,10,,,,,9,,9,10,10,8,9,,9,9,7,8,7,8,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,7,C. Twice,3.00,1.00,,,,,,10,10,,,,10,10,10,10,A. Zero times,,,,,,,,8,,,,,,,,,,E. 5 times or more,1.00,2.00,7.00,,,,,10,10,10,10,,,,,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,,,, +City_1(HQ),Male,4.00,D. 41 to 50,1.00,A. upto 2 years,9,C. Twice,3.00,1.00,4.00,,,,,10,10,,,10,10,10,10,10,D. 3 to 4 times,1.00,6.00,,,,,10,10,,,,,,10,10,10,8,A. Zero Times,,,,,,,,,10,10,10,,,,,,8,,10,10,,10,,,,,10,,,10,,,, +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,9,E. 5 times or more,5.00,2.00,,,,,,9,,9,,,,9,8,10,D. 3 to 4 times,2.00,3.00,,,,,9,,10,10,,,,10,9,10,9,D. 3 to 4 times,4.00,7.00,,,,,,9,8,8,8,9,9,,,,9,9,8,9,9,10,9,9,9,7,9,9,9,9,,,, +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,8,D. 3 to 4 times,4.00,1.00,2.00,,,,7.00,8,9,9,,,,9,7,9,C. Twice,2.00,4.00,,,,,9,,9,9,,9,9,10,8,8,8,D. 3 to 4 times,5.00,7.00,,,,,,9,10,10,10,10,7,9,,9,10,10,10,9,9,9,8,9,8,9,9,9,9,9,,,, +City_1(HQ),Male,5.00,E. 51 and older ,3.00,C. 6 to 10 years,8,C. Twice,3.00,1.00,6.00,,,,,8,9,9,,9,,8,9,9,C. Twice,3.00,4.00,,,,,8,,9,9,8,,8,8,9,9,8,E. 5 times or more,2.00,3.00,5.00,7.00,,,,9,8,9,9,9,8,8,8,9,9,9,9,8,9,9,8,9,,8,9,9,9,9,8,8,8,9 +City_1(HQ),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,7,D. 3 to 4 times,4.00,2.00,4.00,,,,,,,6,,,,10,6,10,D. 3 to 4 times,7.00,,,,,,9,,,10,,10,10,10,6,10,10,E. 5 times or more,1.00,2.00,3.00,4.00,5.00,7.00,,6,8,9,7,,5,,,6,7,7,10,10,10,,9,,8,6,9,10,10,10,,,, +City_1(HQ),Female,2.00,B. 21 to 30,3.00,C. 6 to 10 years,7,E. 5 times or more,5.00,1.00,2.00,4.00,,,,6,3,6,,,7,8,6,6,E. 5 times or more,3.00,4.00,5.00,8.00,,,8,,9,8,9,,8,9,8,9,9,E. 5 times or more,1.00,2.00,3.00,4.00,7.00,,,8,8,7,7,8,,,,7,1,8,9,9,9,9,9,8,9,7,9,9,9,9,8,8,9,9 +City_1(HQ),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,8,E. 5 times or more,5.00,1.00,,,,,,6,2,3,,2,9,6,6,5,D. 3 to 4 times,2.00,,,,,,8,,7,9,,8,7,,10,10,9,E. 5 times or more,1.00,2.00,,,,,,10,10,9,,,,,8,10,9,5,9,10,9,8,7,9,,8,9,9,9,9,1,2,2,2 +City_1(HQ),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,9,D. 3 to 4 times,4.00,2.00,4.00,,,,7.00,9,,10,,,10,10,9,10,C. Twice,2.00,3.00,,,,,9,,9,8,,,,10,10,10,10,C. Twice,3.00,5.00,,,,,,9,9,9,9,9,,,,,6,9,9,10,10,10,9,9,7,,9,10,10,10,,,, +City_2(main devlopment center),Female,4.00,D. 41 to 50,3.00,C. 6 to 10 years,,E. 5 times or more,5.00,2.00,4.00,,,,,10,,10,,10,10,,10,10,E. 5 times or more,3.00,4.00,5.00,,,,10,,,10,10,,,,9,10,,E. 5 times or more,2.00,7.00,,,,,,6,9,5,,,,,,1,10,,,10,,8,,,,9,,,,10,,,, +City_2(main devlopment center),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,10,C. Twice,3.00,1.00,2.00,,,,,8,9,10,,10,10,10,8,10,D. 3 to 4 times,4.00,6.00,,,,,10,10,,10,10,,,10,10,10,10,C. Twice,2.00,5.00,,,,,,10,10,10,9,10,,,,10,9,10,10,10,10,10,10,10,10,10,10,10,10,10,,,, +City_2(main devlopment center),Male,4.00,D. 41 to 50,3.00,C. 6 to 10 years,8,E. 5 times or more,5.00,3.00,4.00,,,,7.00,9,,,9,9,8,8,10,10,E. 5 times or more,6.00,5.00,3.00,2.00,,,9,,9,10,9,,10,9,9,10,10,E. 5 times or more,1.00,2.00,4.00,7.00,,,,8,9,9,9,10,,,10,10,10,10,9,9,,10,9,,9,8,9,10,9,10,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,8,D. 3 to 4 times,4.00,1.00,4.00,,,,,9,,,9,,9,,,,A. Zero times,,,,,,,,,,,,,,,,,,A. Zero Times,,,,,,,,,1,1,3,4,,,,,4,,,10,,,,,,,,,,,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,9,D. 3 to 4 times,4.00,4.00,6.00,,,,,8,,,9,9,9,8,7,8,A. Zero times,,,,,,,,,,9,9,,,9,9,9,8,E. 5 times or more,1.00,2.00,3.00,5.00,6.00,7.00,,10,9,9,9,9,,,,9,9,10,10,9,10,10,10,9,10,10,10,10,10,10,,,,10 +City_1(HQ),Male,4.00,D. 41 to 50,2.00,B. 3 to 5 years,6,E. 5 times or more,5.00,1.00,3.00,5.00,,,,4,,,9,,,8,,7,D. 3 to 4 times,3.00,,,,,,8,8,8,9,,,,,8,9,5,E. 5 times or more,1.00,5.00,7.00,,,,,10,9,8,9,,,,,,,8,10,10,10,10,10,10,9,7,10,10,8,10,5,6,5,8 +City_1(HQ),Male,1.00,A. upto 20,1.00,A. upto 2 years,10,B. Once,2.00,3.00,,,,,,9,9,,9,8,,10,8,8,C. Twice,4.00,,,,,,9,10,,9,9,,,10,7,8,9,C. Twice,1.00,7.00,,,,,,10,8,9,9,,,,,,7,9,8,10,9,9,9,7,8,5,9,9,9,9,3,4,3,3 +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,7,D. 3 to 4 times,4.00,1.00,4.00,,,,,8,9,,9,,9,9,5,9,C. Twice,4.00,,,,,,9,,,10,,,,10,10,10,8,D. 3 to 4 times,7.00,,,,,,,10,10,7,6,,,,,9,9,9,9,10,10,10,10,10,10,9,10,9,9,10,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,9,D. 3 to 4 times,4.00,1.00,3.00,4.00,,,7.00,10,9,,9,9,9,9,9,9,D. 3 to 4 times,2.00,4.00,,,,,6,8,5,8,8,6,8,7,7,7,8,B. Once,5.00,,,,,,,,7,8,8,8,,,,,6,,8,7,,8,8,,,,,,,,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,4.00,D. 11 to 20 years,9,E. 5 times or more,5.00,2.00,3.00,4.00,,,,9,,9,9,10,10,9,9,9,E. 5 times or more,3.00,4.00,8.00,,,,10,,,10,,,10,10,10,10,10,E. 5 times or more,1.00,2.00,3.00,5.00,7.00,,,10,9,8,9,9,,,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10 +City_3(lastest expantion),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,9,E. 5 times or more,5.00,1.00,2.00,3.00,4.00,,,9,9,9,9,9,9,9,9,9,D. 3 to 4 times,3.00,4.00,,,,,9,8,10,10,,,10,9,9,9,9,D. 3 to 4 times,3.00,5.00,,,,,,8,9,3,5,1,,,,5,1,9,8,9,9,,,,,2,,,,,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,7,E. 5 times or more,5.00,1.00,4.00,,,,7.00,9,9,9,9,9,9,7,9,9,E. 5 times or more,3.00,4.00,9.00,,,,9,,2,9,1,,,4,9,9,,E. 5 times or more,3.00,6.00,7.00,,,,,8,8,7,,8,,,,,8,8,9,9,,9,,9,,3,,,,,,,, +City_2(main devlopment center),Female,5.00,E. 51 and older ,4.00,D. 11 to 20 years,9,E. 5 times or more,5.00,5.00,,,,,7.00,9,9,9,9,9,9,9,9,9,E. 5 times or more,7.00,,,,,,10,,9,10,8,10,,9,9,9,9,A. Zero Times,,,,,,,,,6,10,8,,,,10,10,9,9,9,10,10,10,10,10,10,10,10,10,10,10,,,, +City_2(main devlopment center),Female,4.00,D. 41 to 50,5.00,E. More then 20,8,D. 3 to 4 times,4.00,1.00,,,,,7.00,9,9,9,9,9,9,9,7,10,D. 3 to 4 times,3.00,4.00,,,,,9,,9,9,,,,9,9,9,10,E. 5 times or more,1.00,2.00,7.00,,,,,9,6,5,8,10,10,,,9,9,9,9,9,9,,9,9,,,9,9,7,9,,,, +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,8,D. 3 to 4 times,4.00,1.00,,,,,,9,9,9,9,9,10,10,9,10,D. 3 to 4 times,3.00,4.00,6.00,9.00,,,8,9,9,9,9,,9,9,8,9,9,D. 3 to 4 times,1.00,2.00,3.00,4.00,5.00,7.00,,9,8,8,6,9,,,,9,9,9,9,9,9,9,9,9,9,8,9,9,8,9,9,8,9,9 +City_1(HQ),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,8,D. 3 to 4 times,4.00,4.00,,,,,,9,9,9,9,9,9,9,9,9,E. 5 times or more,2.00,3.00,4.00,,,,8,7,9,9,9,9,9,9,9,9,9,E. 5 times or more,1.00,2.00,3.00,5.00,,,,8,10,10,9,8,,10,,10,6,10,9,9,9,9,9,9,,8,9,9,9,9,9,8,8,8 +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,7,D. 3 to 4 times,4.00,1.00,4.00,,,,,9,9,9,9,9,9,9,9,9,E. 5 times or more,2.00,3.00,4.00,,,,10,8,9,10,9,,9,9,9,9,9,D. 3 to 4 times,1.00,2.00,7.00,,,,,10,10,10,10,10,,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9,9,9 +City_2(main devlopment center),Male,2.00,B. 21 to 30,3.00,C. 6 to 10 years,9,D. 3 to 4 times,4.00,2.00,3.00,4.00,,,,9,9,9,9,9,9,9,9,9,C. Twice,3.00,4.00,5.00,8.00,,,9,9,9,9,9,,9,9,9,9,9,D. 3 to 4 times,2.00,5.00,,,,,,8,8,6,5,8,,,,8,9,9,9,10,10,9,10,9,9,7,9,9,9,9,9,,9,9 +City_2(main devlopment center),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,8,C. Twice,3.00,1.00,,,,,,9,9,9,9,9,10,10,10,10,C. Twice,2.00,3.00,4.00,5.00,,,8,,6,10,,,10,10,10,9,8,E. 5 times or more,1.00,2.00,7.00,,,,,10,8,8,9,,,10,10,10,10,10,8,9,9,9,9,10,9,9,9,9,9,9,10,10,10,10 +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,8,D. 3 to 4 times,4.00,,,,,,7.00,8,9,9,9,9,8,8,8,9,C. Twice,9.00,,,,,,9,,8,9,9,,9,9,9,9,9,C. Twice,7.00,,,,,,,9,9,9,9,9,,8,,9,8,9,9,9,9,10,9,9,9,9,10,10,10,10,,,, +City_1(HQ),Male,5.00,E. 51 and older ,5.00,E. More then 20,7,D. 3 to 4 times,4.00,4.00,,,,,,9,8,9,9,9,10,9,9,9,C. Twice,3.00,7.00,,,,,7,8,8,7,8,7,8,8,8,8,8,C. Twice,2.00,5.00,6.00,,,,,8,8,9,9,8,,,,,7,9,,,,,,,,,,,,,8,8,8,8 +City_1(HQ),Male,4.00,D. 41 to 50,4.00,D. 11 to 20 years,9,D. 3 to 4 times,4.00,1.00,3.00,4.00,,,,9,8,9,9,10,10,9,9,9,D. 3 to 4 times,2.00,3.00,6.00,,,,9,,9,9,10,,9,9,9,10,10,E. 5 times or more,1.00,,,,,,,10,10,10,10,10,,,,10,10,10,10,10,10,10,10,10,10,9,10,10,10,10,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,7,D. 3 to 4 times,4.00,1.00,3.00,5.00,,,,8,6,9,9,9,9,8,8,9,C. Twice,8.00,,,,,,7,9,2,9,2,,8,8,9,9,9,D. 3 to 4 times,1.00,7.00,,,,,,5,9,7,7,8,,,,,8,8,9,10,10,,9,9,,7,9,9,9,9,,,, +City_1(HQ),Male,4.00,D. 41 to 50,4.00,D. 11 to 20 years,7,D. 3 to 4 times,4.00,1.00,,,,,,8,2,9,9,9,9,8,10,10,D. 3 to 4 times,2.00,6.00,,,,,4,,1,8,,,1,2,8,7,4,B. Once,5.00,,,,,,,,8,8,,7,,,,,9,,3,9,9,9,3,3,,2,2,7,7,7,,,, +City_1(HQ),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,6,E. 5 times or more,5.00,1.00,2.00,,,,,5,2,9,9,9,9,7,8,8,E. 5 times or more,3.00,9.00,,,,,6,4,4,4,8,,3,6,8,9,5,E. 5 times or more,1.00,2.00,7.00,,,,,10,9,9,7,7,,,,9,6,9,8,9,9,8,8,8,8,7,9,9,9,9,6,,, +City_1(HQ),Female,4.00,D. 41 to 50,3.00,C. 6 to 10 years,7,D. 3 to 4 times,4.00,3.00,4.00,6.00,,,,7,,8,9,,8,10,8,7,E. 5 times or more,3.00,4.00,5.00,,,,7,,,10,1,,,,8,7,,E. 5 times or more,1.00,2.00,4.00,7.00,,,,10,10,10,10,9,,7,,10,4,8,,10,,10,10,,10,,10,,10,10,10,,10,10 +City_1(HQ),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,9,D. 3 to 4 times,4.00,1.00,3.00,4.00,,,,8,9,8,9,8,9,8,8,8,D. 3 to 4 times,3.00,4.00,,,,,9,9,9,9,,,,9,9,9,9,D. 3 to 4 times,1.00,5.00,,,,,,8,9,9,9,8,,,,7,8,,9,8,,8,8,,8,,,,8,8,,,, +City_1(HQ),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,3,E. 5 times or more,5.00,1.00,2.00,3.00,4.00,,,9,8,8,9,9,10,10,9,10,E. 5 times or more,3.00,4.00,5.00,8.00,,,7,,3,2,7,,5,7,3,7,3,E. 5 times or more,1.00,2.00,3.00,5.00,7.00,,,8,9,9,8,9,,,,8,1,8,9,9,9,9,9,7,,8,9,9,9,9,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,7,D. 3 to 4 times,4.00,1.00,4.00,,,,,9,9,6,9,9,9,9,7,9,E. 5 times or more,2.00,3.00,4.00,5.00,8.00,9.00,7,,6,10,6,,6,7,7,5,5,D. 3 to 4 times,1.00,2.00,7.00,,,,,10,6,9,8,,,,,9,9,9,9,10,9,,9,,,,9,9,9,9,,,, +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,1.00,A. upto 2 years,6,D. 3 to 4 times,4.00,1.00,2.00,4.00,5.00,,7.00,5,6,3,9,,8,5,9,5,D. 3 to 4 times,3.00,4.00,,,,,9,4,8,7,,,,8,8,8,8,E. 5 times or more,1.00,2.00,5.00,7.00,,,,6,9,9,3,4,,,,,8,,9,9,9,10,7,7,9,6,,9,9,9,,,, +City_1(HQ),Female,2.00,B. 21 to 30,2.00,B. 3 to 5 years,9,D. 3 to 4 times,4.00,1.00,4.00,,,,7.00,10,10,10,9,9,10,9,8,10,A. Zero times,2.00,3.00,4.00,,,,10,10,10,10,9,9,10,9,10,10,10,C. Twice,1.00,2.00,5.00,,,,,8,9,9,9,8,8,,,9,9,8,10,10,9,8,9,8,8,9,9,8,8,8,,,, +City_1(HQ),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,5,D. 3 to 4 times,4.00,3.00,4.00,,,,,7,,,8,,8,7,8,8,E. 5 times or more,8.00,5.00,2.00,9.00,,,6,4,5,5,4,,4,5,6,7,8,E. 5 times or more,1.00,2.00,3.00,5.00,7.00,,,6,5,6,7,4,,8,,7,6,5,5,4,5,4,7,8,6,8,8,8,9,7,9,8,9,9 +City_1(HQ),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,9,D. 3 to 4 times,4.00,1.00,,,,,,9,9,,8,7,8,9,8,9,D. 3 to 4 times,2.00,3.00,8.00,,,,9,,6,8,,,9,9,9,9,9,C. Twice,1.00,5.00,7.00,,,,,9,9,9,9,9,,,,9,2,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8, +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,9,D. 3 to 4 times,4.00,1.00,3.00,,,,,9,9,,8,9,9,9,8,9,C. Twice,3.00,,,,,,9,,9,9,,,9,9,8,9,9,D. 3 to 4 times,1.00,7.00,,,,,,8,8,7,8,8,,,,,9,9,9,8,9,9,9,9,9,8,9,9,9,9,,9,,10 +City_1(HQ),Female,3.00,C. 31 to 40 ,1.00,A. upto 2 years,8,E. 5 times or more,5.00,1.00,6.00,,,,,10,9,,8,,,10,10,10,D. 3 to 4 times,5.00,3.00,1.00,,,,7,6,,10,9,,,6,5,5,4,B. Once,1.00,5.00,7.00,,,,,10,6,10,9,9,,,,,9,9,10,10,10,10,10,10,10,10,10,10,10,10,8,8,8,8 +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,1.00,A. upto 2 years,8,E. 5 times or more,5.00,1.00,,,,,,9,8,,8,9,8,9,8,9,D. 3 to 4 times,6.00,2.00,1.00,,,,9,9,8,,9,,,8,9,9,9,E. 5 times or more,1.00,2.00,5.00,6.00,7.00,,,10,7,8,8,9,,,,9,9,10,8,9,9,9,8,,,2,9,9,9,9,,,, +City_2(main devlopment center),Female,4.00,D. 41 to 50,5.00,E. More then 20,9,D. 3 to 4 times,4.00,3.00,4.00,,,,,9,,9,8,,10,9,9,10,D. 3 to 4 times,3.00,,,,,,9,,,9,,,,9,9,9,9,D. 3 to 4 times,1.00,2.00,4.00,7.00,8.00,,,7,8,8,9,,,8,10,9,9,9,9,10,9,9,9,9,,9,,9,9,9,9,9,9,9 +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,8,D. 3 to 4 times,4.00,1.00,2.00,3.00,,,,9,9,9,8,9,10,10,10,10,D. 3 to 4 times,3.00,8.00,,,,,10,,,9,9,,10,9,10,10,9,E. 5 times or more,1.00,2.00,7.00,8.00,,,,9,9,9,9,9,,9,,8,10,9,9,10,10,10,,9,,9,10,10,10,10,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,4.00,D. 11 to 20 years,6,C. Twice,3.00,3.00,,,,,7.00,9,9,9,8,9,9,9,8,9,D. 3 to 4 times,4.00,8.00,,,,,8,8,8,8,8,,8,8,8,9,9,E. 5 times or more,1.00,2.00,3.00,,,,,9,6,4,8,8,,6,,8,9,9,9,9,9,9,9,9,,9,9,9,9,9,,,, +City_1(HQ),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,10,C. Twice,3.00,1.00,5.00,,,,,9,9,9,8,10,9,9,8,9,D. 3 to 4 times,2.00,3.00,4.00,,,,10,9,10,10,10,10,10,10,10,10,10,D. 3 to 4 times,1.00,2.00,4.00,7.00,,,,8,8,7,9,10,,,,9,10,10,9,10,10,10,10,9,9,9,8,8,7,10,7,9,9,9 +City_1(HQ),Female,3.00,C. 31 to 40 ,1.00,A. upto 2 years,3,D. 3 to 4 times,4.00,4.00,,,,,,9,8,9,8,9,9,9,8,8,D. 3 to 4 times,3.00,4.00,,,,,3,2,8,3,8,,,3,4,2,2,E. 5 times or more,1.00,4.00,,,,,,7,7,9,7,,,,,,2,4,9,9,9,,9,9,9,9,9,9,9,9,,,, +City_2(main devlopment center),Male,2.00,B. 21 to 30,1.00,A. upto 2 years,8,E. 5 times or more,5.00,1.00,3.00,4.00,5.00,,,8,8,9,8,7,9,7,9,9,D. 3 to 4 times,3.00,4.00,5.00,,,,8,7,7,7,8,,,7,9,9,9,A. Zero Times,2.00,5.00,,,,,,8,8,5,6,8,,,,9,9,8,8,9,9,9,9,8,,7,8,8,8,8,,9,8,9 +City_3(lastest expantion),Male,4.00,D. 41 to 50,4.00,D. 11 to 20 years,8,D. 3 to 4 times,4.00,1.00,,,,,,8,8,9,8,9,9,8,8,9,C. Twice,1.00,7.00,,,,,8,7,8,8,8,8,8,8,7,8,8,E. 5 times or more,1.00,3.00,4.00,5.00,6.00,,,9,8,8,9,9,8,8,8,9,9,9,8,7,8,8,,9,7,8,9,9,9,9,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,8,D. 3 to 4 times,4.00,2.00,3.00,4.00,,,,7,,8,8,,6,8,8,8,C. Twice,3.00,4.00,,,,,9,,,8,,,9,8,9,9,10,C. Twice,2.00,3.00,5.00,,,,,10,10,10,8,10,,,,10,10,10,9,10,10,10,10,10,,,8,10,9,9,10,10,10,10 +City_2(main devlopment center),Male,4.00,D. 41 to 50,3.00,C. 6 to 10 years,9,D. 3 to 4 times,4.00,1.00,3.00,4.00,,,,8,9,8,8,9,9,8,8,9,D. 3 to 4 times,2.00,6.00,,,,,8,,9,9,5,,7,8,7,9,7,D. 3 to 4 times,1.00,2.00,5.00,7.00,,,,7,9,8,1,2,,,,7,9,7,4,9,8,8,7,2,6,9,3,4,3,6,,,, +City_2(main devlopment center),Male,2.00,B. 21 to 30,3.00,C. 6 to 10 years,8,E. 5 times or more,5.00,1.00,4.00,,,,,8,8,8,8,,8,8,7,8,D. 3 to 4 times,3.00,,,,,,8,,8,8,8,,,8,8,8,9,E. 5 times or more,1.00,2.00,3.00,4.00,5.00,6.00,7.00,7,8,7,6,6,,,8,7,8,7,5,8,8,8,8,,8,6,8,7,5,7,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,4.00,D. 11 to 20 years,6,E. 5 times or more,5.00,1.00,2.00,3.00,4.00,,,8,8,8,8,8,7,10,7,10,E. 5 times or more,2.00,3.00,8.00,,,,4,7,5,9,7,,7,8,8,6,9,D. 3 to 4 times,1.00,2.00,5.00,,,,,7,3,1,8,8,,,,7,5,8,8,8,8,4,7,8,8,7,9,8,7,8,,,, +City_2(main devlopment center),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,7,E. 5 times or more,5.00,1.00,,,,,,8,8,8,8,8,8,8,8,8,C. Twice,2.00,8.00,,,,,8,,8,,,,8,8,8,8,8,E. 5 times or more,2.00,5.00,7.00,,,,,8,8,8,8,8,,,,8,8,8,8,8,8,8,5,8,8,7,8,8,8,8,,,, +City_2(main devlopment center),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,9,E. 5 times or more,5.00,1.00,2.00,3.00,4.00,,,8,8,8,8,8,8,8,7,8,B. Once,3.00,,,,,,8,8,8,8,8,8,8,9,8,9,8,E. 5 times or more,2.00,,,,,,,9,7,7,7,8,,,,8,8,8,9,8,9,8,8,8,8,8,8,8,8,8,9,8,9,9 +City_2(main devlopment center),Male,4.00,D. 41 to 50,4.00,D. 11 to 20 years,8,D. 3 to 4 times,4.00,1.00,2.00,4.00,,,,8,8,8,8,9,8,8,8,8,D. 3 to 4 times,2.00,3.00,6.00,,,,7,,5,10,10,,7,8,7,7,7,B. Once,3.00,5.00,,,,,,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,5,5,8,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,4.00,D. 11 to 20 years,8,D. 3 to 4 times,4.00,4.00,,,,,7.00,8,8,8,8,8,8,8,7,8,D. 3 to 4 times,4.00,1.00,,,,,8,7,8,8,9,,8,8,7,8,8,E. 5 times or more,1.00,2.00,3.00,5.00,7.00,,,8,8,8,6,8,,,,8,8,8,9,9,9,9,9,9,9,9,,9,9,9,,,, +City_1(HQ),Female,2.00,B. 21 to 30,3.00,C. 6 to 10 years,10,D. 3 to 4 times,4.00,1.00,4.00,,,,,8,8,8,8,8,8,9,7,8,E. 5 times or more,3.00,4.00,5.00,8.00,,,10,8,8,10,10,10,10,10,10,10,10,B. Once,5.00,,,,,,,8,7,7,7,8,,,,8,7,8,9,10,10,9,9,9,8,8,9,9,8,9,,9,9,9 +City_1(HQ),Male,4.00,D. 41 to 50,4.00,D. 11 to 20 years,8,D. 3 to 4 times,4.00,1.00,4.00,,,,,8,8,8,8,8,8,8,8,8,A. Zero times,,,,,,,,,,,,,,,,,,C. Twice,1.00,5.00,,,,,,8,8,8,8,9,,,,8,9,8,8,9,9,,9,,,,9,9,9,9,,,, +City_3(lastest expantion),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,8,C. Twice,3.00,3.00,5.00,,,,,8,8,8,8,8,8,8,8,8,E. 5 times or more,2.00,3.00,,,,,8,8,7,8,,,,9,8,8,9,E. 5 times or more,1.00,2.00,4.00,7.00,,,,10,10,10,10,8,,,9,9,9,10,8,9,9,9,8,8,8,8,9,9,9,9,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,4.00,D. 11 to 20 years,8,C. Twice,3.00,1.00,4.00,,,,,8,8,8,8,8,8,8,8,8,C. Twice,3.00,,,,,,9,,4,9,,,,10,10,10,10,B. Once,7.00,,,,,,,5,9,9,9,9,,,,9,9,8,8,8,8,8,8,8,8,8,8,8,8,8,8,,,8 +City_3(lastest expantion),Male,4.00,D. 41 to 50,2.00,B. 3 to 5 years,7,E. 5 times or more,5.00,1.00,4.00,,,,7.00,7,8,8,8,8,8,7,6,8,B. Once,2.00,3.00,,,,,10,6,8,1,10,,,9,7,9,7,D. 3 to 4 times,4.00,7.00,,,,,,10,10,8,10,10,,,10,10,10,10,10,10,10,10,10,10,,6,,10,10,10,10,10,10,10 +City_3(lastest expantion),Female,2.00,B. 21 to 30,3.00,C. 6 to 10 years,10,D. 3 to 4 times,4.00,1.00,4.00,,,,7.00,7,8,8,8,8,6,7,6,7,D. 3 to 4 times,2.00,3.00,,,,,7,,4,7,7,,7,8,8,7,7,E. 5 times or more,1.00,2.00,4.00,6.00,,,,10,9,8,10,,,9,10,10,10,10,8,9,9,9,9,9,9,8,8,8,8,8,10,9,9,9 +City_1(HQ),Female,3.00,C. 31 to 40 ,4.00,D. 11 to 20 years,6,D. 3 to 4 times,4.00,1.00,2.00,4.00,,,,6,8,8,8,7,10,8,7,8,E. 5 times or more,2.00,3.00,4.00,6.00,8.00,1.00,7,,8,8,10,10,8,7,8,7,7,E. 5 times or more,1.00,2.00,3.00,4.00,5.00,6.00,7.00,8,8,7,7,9,9,,,8,10,9,7,10,9,8,6,8,,8,7,8,9,9,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,9,E. 5 times or more,5.00,1.00,2.00,3.00,6.00,,,7,7,8,8,8,9,9,7,9,E. 5 times or more,3.00,4.00,5.00,,,,10,,,10,10,,,10,10,10,10,E. 5 times or more,1.00,2.00,3.00,4.00,5.00,,,10,5,6,7,7,,8,,8,9,9,9,10,10,10,9,9,9,8,9,8,7,8,7,6,6,6 +City_2(main devlopment center),Female,5.00,E. 51 and older ,4.00,D. 11 to 20 years,7,D. 3 to 4 times,4.00,1.00,4.00,,,,,4,7,8,8,,4,7,8,7,E. 5 times or more,2.00,3.00,4.00,,,,8,,7,9,,,,8,8,8,7,D. 3 to 4 times,3.00,7.00,8.00,,,,,9,7,7,7,7,,,,7,9,9,8,8,8,,8,,,6,8,,8,8,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,5,D. 3 to 4 times,4.00,3.00,4.00,,,,,5,2,8,8,8,8,5,6,5,E. 5 times or more,2.00,4.00,,,,,7,3,1,8,,5,6,5,3,3,3,E. 5 times or more,1.00,5.00,7.00,,,,,8,8,6,9,8,,,,9,1,8,7,10,10,,10,3,4,4,10,8,8,8,1,1,1,1 +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,7,D. 3 to 4 times,4.00,3.00,,,,,,8,8,7,8,8,7,6,6,7,D. 3 to 4 times,3.00,8.00,,,,,9,,9,9,9,,9,9,10,9,9,E. 5 times or more,1.00,2.00,7.00,,,,,9,8,7,8,8,,,9,9,8,9,7,8,8,10,10,,,7,,9,7,9,8,8,6,7 +City_2(main devlopment center),Female,4.00,D. 41 to 50,5.00,E. More then 20,8,B. Once,2.00,1.00,,,,,,9,7,7,8,9,5,8,5,6,A. Zero times,,,,,,,,8,6,8,6,9,5,7,9,9,9,D. 3 to 4 times,1.00,,,,,,,10,9,9,9,9,9,9,9,9,10,10,9,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10 +City_1(HQ),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,3,E. 5 times or more,5.00,1.00,2.00,3.00,4.00,,,7,8,6,8,4,8,8,7,8,E. 5 times or more,3.00,4.00,,,,,5,7,5,5,5,7,5,6,5,5,5,E. 5 times or more,1.00,2.00,7.00,,,,,9,6,9,8,9,6,6,6,7,2,7,6,6,6,6,6,6,6,4,6,6,6,6,7,6,6,6 +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,6,E. 5 times or more,5.00,1.00,,,,,,5,2,6,8,8,7,8,6,7,E. 5 times or more,3.00,4.00,5.00,6.00,,,3,,7,5,5,,5,3,6,9,3,E. 5 times or more,1.00,5.00,,,,,,7,7,7,8,,,,6,9,7,7,7,10,10,10,7,7,7,7,7,7,7,7,,7,7,7 +City_1(HQ),Male,4.00,D. 41 to 50,2.00,B. 3 to 5 years,3,D. 3 to 4 times,4.00,1.00,3.00,4.00,5.00,,7.00,7,5,5,8,8,9,8,7,7,E. 5 times or more,2.00,3.00,4.00,8.00,,,1,1,1,4,1,2,1,1,1,2,1,E. 5 times or more,1.00,3.00,5.00,7.00,,,,3,9,6,7,7,,2,,,3,8,7,8,8,,5,7,4,3,5,8,7,8,7,7,7,7 +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,7,E. 5 times or more,5.00,3.00,,,,,,7,,,7,7,10,8,7,7,B. Once,3.00,,,,,,8,,,8,,,10,9,9,9,9,E. 5 times or more,2.00,3.00,,,,,,10,7,10,7,,,,7,10,,9,9,10,10,,8,9,,9,9,8,8,8,,,, +City_1(HQ),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,7,E. 5 times or more,5.00,1.00,2.00,3.00,4.00,,,8,8,8,7,7,9,9,9,8,E. 5 times or more,3.00,,,,,,8,8,8,8,,,,9,9,9,9,E. 5 times or more,1.00,3.00,,,,,,8,9,8,9,9,,,,,1,9,7,10,10,,6,7,9,4,9,9,9,9,8,,, +City_2(main devlopment center),Male,5.00,E. 51 and older ,5.00,E. More then 20,8,D. 3 to 4 times,4.00,2.00,4.00,,,,,8,8,8,7,9,9,9,8,9,D. 3 to 4 times,3.00,,,,,,9,,,9,,,,,9,9,9,E. 5 times or more,2.00,4.00,,,,,,9,9,9,9,,,,10,10,9,9,9,10,10,,9,,,9,9,10,8,10,9,9,9,9 +City_1(HQ),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,7,E. 5 times or more,5.00,1.00,3.00,4.00,,,,7,8,8,7,7,7,6,6,9,C. Twice,3.00,4.00,,,,,8,,8,8,8,,,7,7,6,6,C. Twice,1.00,3.00,,,,,,8,9,9,7,7,,,,,1,8,9,9,9,,7,10,,9,10,10,9,10,7,10,5,10 +City_1(HQ),Male,4.00,D. 41 to 50,3.00,C. 6 to 10 years,7,D. 3 to 4 times,4.00,1.00,,,,,,8,8,7,7,8,9,,10,10,D. 3 to 4 times,2.00,3.00,4.00,6.00,8.00,,9,,10,8,10,,8,8,10,10,9,E. 5 times or more,1.00,7.00,,,,,,10,9,7,8,,,,,,3,9,7,9,,,3,,3,2,7,,4,8,,,, +City_2(main devlopment center),Male,4.00,D. 41 to 50,4.00,D. 11 to 20 years,3,D. 3 to 4 times,4.00,1.00,2.00,,,,,7,7,7,7,7,7,5,5,6,E. 5 times or more,3.00,8.00,,,,,7,7,5,5,2,,4,5,5,7,2,E. 5 times or more,1.00,2.00,3.00,5.00,,,,6,8,8,6,6,,,,8,9,7,7,7,7,7,7,7,7,2,8,7,7,8,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,6,D. 3 to 4 times,4.00,1.00,4.00,,,,,6,7,7,7,6,7,7,6,7,D. 3 to 4 times,2.00,3.00,8.00,,,,9,,9,9,,,9,9,9,9,9,A. Zero Times,,,,,,,,,8,7,7,,,,,,9,9,9,9,9,,9,7,8,9,8,9,8,9,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,4.00,D. 11 to 20 years,6,C. Twice,3.00,1.00,4.00,,,,,3,7,7,7,3,7,2,1,2,E. 5 times or more,3.00,4.00,,,,,7,6,2,10,2,,6,10,8,8,8,E. 5 times or more,1.00,2.00,3.00,4.00,5.00,6.00,7.00,10,10,7,10,10,,,,6,3,6,8,10,10,7,10,10,4,4,6,6,2,6,2,2,2,2 +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,7,E. 5 times or more,5.00,1.00,3.00,4.00,5.00,,,7,4,7,7,7,9,7,6,7,C. Twice,3.00,4.00,5.00,8.00,,,8,,8,8,3,5,8,8,8,7,9,E. 5 times or more,2.00,3.00,4.00,5.00,7.00,,,9,8,6,1,8,,9,9,8,10,9,8,10,,7,6,,9,6,9,9,9,9,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,4,E. 5 times or more,5.00,1.00,2.00,,,,,3,1,7,7,9,10,6,8,7,E. 5 times or more,2.00,3.00,8.00,9.00,,,3,3,2,8,3,,5,5,8,2,5,E. 5 times or more,1.00,2.00,,,,,,8,7,7,3,,,,4,6,9,8,9,10,10,,9,9,9,4,9,8,8,9,,,, +City_2(main devlopment center),Female,5.00,E. 51 and older ,1.00,A. upto 2 years,8,E. 5 times or more,5.00,1.00,3.00,,,,7.00,8,7,8,6,8,9,8,7,7,D. 3 to 4 times,2.00,3.00,4.00,,,,7,8,7,7,,,,7,7,7,8,D. 3 to 4 times,1.00,2.00,5.00,7.00,,,,9,10,8,8,9,,,,9,10,9,9,9,9,10,10,9,,10,,9,9,9,,,, +City_1(HQ),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,8,D. 3 to 4 times,4.00,2.00,3.00,,,,7.00,6,,6,6,,10,9,8,7,D. 3 to 4 times,3.00,6.00,,,,,9,,10,10,10,10,9,9,10,10,9,E. 5 times or more,1.00,2.00,7.00,,,,,9,8,7,8,10,,,,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,7,E. 5 times or more,5.00,2.00,3.00,,,,7.00,5,,6,6,,7,8,4,7,C. Twice,3.00,8.00,,,,,8,6,9,10,,,8,8,,9,8,D. 3 to 4 times,1.00,2.00,7.00,,,,,7,8,8,1,8,,,8,7,10,8,10,8,8,9,8,9,,7,9,9,9,9,,,, +City_1(HQ),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,6,B. Once,2.00,6.00,,,,,,7,7,6,6,8,9,7,8,7,B. Once,8.00,,,,,,4,8,7,8,8,,8,,6,6,4,D. 3 to 4 times,1.00,4.00,5.00,7.00,,,,9,8,8,8,6,,,,8,5,8,7,7,7,8,6,7,6,4,5,6,6,7,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,9,D. 3 to 4 times,4.00,1.00,3.00,4.00,,,,5,4,5,6,6,6,3,3,3,D. 3 to 4 times,2.00,3.00,4.00,,,,7,,7,7,,,,8,8,6,8,E. 5 times or more,1.00,5.00,7.00,,,,,10,10,6,7,7,,,,10,1,5,10,9,10,10,10,10,10,8,10,10,7,9,7,3,4,3 +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,5,E. 5 times or more,5.00,1.00,2.00,3.00,,,,1,6,1,6,7,8,5,7,3,E. 5 times or more,3.00,4.00,,,,,8,,,7,,,,7,7,7,7,D. 3 to 4 times,7.00,,,,,,,9,8,7,5,7,,,,,7,8,8,8,8,8,8,10,10,3,7,8,8,9,,,, +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,3,E. 5 times or more,5.00,1.00,3.00,4.00,5.00,,,5,9,,5,,1,,4,4,E. 5 times or more,3.00,4.00,8.00,9.00,,,3,,3,2,1,,1,3,9,9,,E. 5 times or more,7.00,,,,,,,8,7,8,7,,,,,9,,8,8,9,,9,9,,,,,,8,8,,,, +City_2(main devlopment center),Female,3.00,C. 31 to 40 ,1.00,A. upto 2 years,7,E. 5 times or more,5.00,1.00,3.00,,,,,6,8,,5,5,5,5,6,6,E. 5 times or more,2.00,3.00,4.00,,,,6,10,9,6,,,7,7,6,5,4,E. 5 times or more,1.00,2.00,,,,,,10,8,7,6,,,,,10,9,10,10,10,10,10,10,10,9,10,10,10,10,10,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,1.00,A. upto 2 years,5,E. 5 times or more,5.00,1.00,3.00,4.00,5.00,,7.00,4,6,,5,6,5,4,6,6,E. 5 times or more,6.00,4.00,3.00,1.00,,,8,7,8,8,,,,,5,7,7,E. 5 times or more,1.00,2.00,5.00,7.00,,,,8,8,7,8,,,2,,,,,9,9,9,9,7,9,8,3,9,9,7,9,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,7,D. 3 to 4 times,4.00,1.00,3.00,4.00,,,7.00,8,4,,5,,8,8,8,8,E. 5 times or more,2.00,3.00,,,,,8,6,9,7,,,,9,9,7,10,E. 5 times or more,1.00,2.00,7.00,8.00,,,,10,9,9,10,10,,,,,5,10,8,10,10,10,10,10,10,,10,10,10,10,10,9,10,10 +City_1(HQ),Female,3.00,C. 31 to 40 ,4.00,D. 11 to 20 years,7,C. Twice,3.00,1.00,,,,,,4,4,5,5,6,4,4,3,4,A. Zero times,,,,,,,8,,9,9,9,,9,9,9,9,9,E. 5 times or more,1.00,7.00,,,,,,7,8,7,9,8,,8,,9,9,6,7,6,7,7,8,8,8,6,8,8,5,7,8,8,7,8 +City_2(main devlopment center),Male,5.00,E. 51 and older ,4.00,D. 11 to 20 years,8,A. Zero times,1.00,,,,,,,,4,5,5,5,5,7,7,2,D. 3 to 4 times,2.00,6.00,,,,,10,,10,10,,,10,10,10,10,10,A. Zero Times,,,,,,,,9,8,8,8,8,,,,,9,9,10,10,10,10,10,9,,,,9,9,9,,,, +City_2(main devlopment center),Male,2.00,B. 21 to 30,2.00,B. 3 to 5 years,4,D. 3 to 4 times,4.00,1.00,3.00,5.00,,,,5,5,4,5,5,7,4,3,2,D. 3 to 4 times,9.00,,,,,,4,7,6,8,,,8,8,8,8,6,D. 3 to 4 times,1.00,5.00,,,,,,6,9,9,9,7,,,,8,9,8,9,10,10,7,8,8,8,5,8,8,8,8,,,, +City_1(HQ),Male,4.00,D. 41 to 50,3.00,C. 6 to 10 years,5,E. 5 times or more,5.00,1.00,2.00,3.00,4.00,,,4,3,4,3,5,2,3,3,2,D. 3 to 4 times,3.00,4.00,,,,,8,,8,6,9,,7,8,5,10,,E. 5 times or more,1.00,2.00,5.00,7.00,,,,8,9,9,6,9,,,,9,3,9,7,9,9,9,8,8,9,7,8,9,8,9,8,8,8,8 +City_1(HQ),Female,2.00,B. 21 to 30,2.00,B. 3 to 5 years,5,D. 3 to 4 times,4.00,2.00,3.00,,,,,4,,3,3,,10,,6,7,E. 5 times or more,3.00,4.00,8.00,,,,8,4,,9,4,,9,,9,9,7,D. 3 to 4 times,1.00,2.00,7.00,,,,,10,10,8,8,10,,,,,7,10,10,10,10,10,8,9,9,9,10,,9,10,,,, +City_2(main devlopment center),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,4,E. 5 times or more,5.00,1.00,2.00,3.00,4.00,,,3,3,3,3,3,3,2,4,8,D. 3 to 4 times,6.00,3.00,1.00,,,,4,3,10,1,,,,3,5,9,2,D. 3 to 4 times,1.00,3.00,5.00,7.00,,,,9,10,10,8,10,,,9,,9,10,10,10,10,10,10,10,10,7,10,10,10,10,,,, +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,5,E. 5 times or more,5.00,2.00,3.00,4.00,,,,3,,2,2,3,7,6,6,6,E. 5 times or more,3.00,4.00,,,,,7,,,7,,,7,8,8,8,7,D. 3 to 4 times,,,,,,,,9,9,7,8,9,,,8,8,9,9,9,9,,9,9,5,,6,,,,,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,7,E. 5 times or more,5.00,1.00,6.00,,,,,9,,,10,9,10,9,9,10,E. 5 times or more,3.00,4.00,,,,,7,,,7,7,,5,5,5,7,5,E. 5 times or more,1.00,4.00,,,,,,10,9,8,9,9,,,,,6,10,7,8,,10,8,9,,8,8,,7,8,,,, +City_2(main devlopment center),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,9,D. 3 to 4 times,4.00,3.00,4.00,,,,7.00,10,,,10,10,10,10,9,10,C. Twice,2.00,3.00,8.00,,,,10,,,10,,,8,10,10,10,10,D. 3 to 4 times,1.00,4.00,7.00,,,,,10,9,9,9,,,,10,,10,10,10,10,10,10,,,,7,,10,10,10,,,, +City_1(HQ),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,7,E. 5 times or more,5.00,1.00,,,,,,6,5,,10,9,,7,9,7,E. 5 times or more,3.00,6.00,,,,,6,,9,10,8,,9,8,9,9,8,E. 5 times or more,1.00,4.00,5.00,7.00,,,,9,10,9,10,9,9,,,9,8,9,8,10,10,9,8,8,8,6,9,9,9,9,9,9,9,9 +City_1(HQ),Female,2.00,B. 21 to 30,3.00,C. 6 to 10 years,10,E. 5 times or more,5.00,1.00,3.00,4.00,,,,10,10,,10,,10,10,10,10,E. 5 times or more,2.00,3.00,4.00,5.00,8.00,,10,10,10,10,10,10,10,10,10,10,10,E. 5 times or more,1.00,2.00,3.00,4.00,5.00,6.00,7.00,10,10,9,10,10,,,,10,10,10,10,10,10,10,10,10,,8,10,10,10,10,,,, +City_2(main devlopment center),Male,2.00,B. 21 to 30,2.00,B. 3 to 5 years,4,D. 3 to 4 times,4.00,1.00,,,,,,10,10,,10,,10,10,10,10,D. 3 to 4 times,4.00,,,,,,5,10,8,6,7,,9,7,10,10,7,E. 5 times or more,1.00,4.00,,,,,,8,10,7,8,10,,,7,8,10,8,10,10,10,10,10,10,10,10,10,10,10,10,,,, +City_1(HQ),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,10,C. Twice,3.00,1.00,3.00,,,,,10,10,,10,,,10,10,10,C. Twice,4.00,6.00,,,,,9,10,10,10,10,10,10,10,10,10,10,E. 5 times or more,1.00,2.00,4.00,7.00,,,,10,10,10,10,,,,,10,6,10,10,10,10,10,10,10,10,10,10,10,10,10,,10,10,10 +City_3(lastest expantion),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,8,D. 3 to 4 times,4.00,3.00,2.00,,,,,9,,10,10,10,7,9,8,9,D. 3 to 4 times,4.00,3.00,1.00,,,,7,8,,8,,,,8,8,8,8,D. 3 to 4 times,1.00,3.00,5.00,,,,,10,10,10,10,10,,,,10,8,10,10,10,,10,10,7,10,8,,,10,10,,,, +City_1(HQ),Male,5.00,E. 51 and older ,4.00,D. 11 to 20 years,8,E. 5 times or more,5.00,2.00,3.00,4.00,,,,10,,10,10,,10,10,10,10,E. 5 times or more,3.00,2.00,9.00,,,,9,6,,8,8,8,9,7,7,8,9,E. 5 times or more,7.00,8.00,,,,,,10,10,10,10,10,,9,,10,10,10,10,10,8,9,9,9,10,8,10,10,10,10,10,10,10,10 +City_1(HQ),Female,3.00,C. 31 to 40 ,1.00,A. upto 2 years,10,D. 3 to 4 times,4.00,1.00,5.00,,,,,9,9,10,10,10,10,10,10,10,C. Twice,6.00,5.00,2.00,1.00,,,9,8,9,10,9,10,9,10,10,10,10,E. 5 times or more,1.00,2.00,5.00,7.00,,,,8,8,6,8,10,,,10,10,8,9,10,10,10,10,10,10,10,10,10,10,10,10,,,, +City_1(HQ),Male,5.00,E. 51 and older ,3.00,C. 6 to 10 years,10,D. 3 to 4 times,4.00,4.00,5.00,,,,,6,9,10,10,9,10,9,9,10,C. Twice,7.00,8.00,,,,,8,,9,9,7,9,9,9,8,9,6,D. 3 to 4 times,1.00,3.00,4.00,5.00,7.00,,,9,9,8,10,10,,,10,10,8,9,10,9,9,9,9,9,9,8,10,10,10,9,9,10,10,10 +City_1(HQ),Male,3.00,C. 31 to 40 ,2.00,B. 3 to 5 years,9,E. 5 times or more,5.00,1.00,2.00,3.00,,,,10,9,10,10,,10,10,10,10,C. Twice,2.00,3.00,,,,,9,7,7,10,,,,8,10,,10,E. 5 times or more,7.00,,,,,,,10,9,9,9,9,,,,9,9,9,10,10,10,9,10,10,9,8,10,10,10,10,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,1.00,A. upto 2 years,9,E. 5 times or more,5.00,1.00,,,,,,8,8,10,10,10,10,10,10,10,B. Once,2.00,6.00,,,,,3,9,3,10,10,,,10,10,10,10,E. 5 times or more,1.00,2.00,5.00,,,,,10,10,10,10,10,,,,8,10,8,10,10,,10,10,10,10,8,9,10,9,9,,8,10,10 +City_1(HQ),Female,4.00,D. 41 to 50,3.00,C. 6 to 10 years,8,D. 3 to 4 times,4.00,1.00,4.00,,,,,10,8,10,10,,10,9,10,10,D. 3 to 4 times,3.00,4.00,6.00,,,,10,,,8,6,,7,9,9,9,7,C. Twice,,,,,,,,9,5,3,8,7,,,,,1,8,,9,,,,,,,8,,8,8,,,, +City_1(HQ),Female,4.00,D. 41 to 50,4.00,D. 11 to 20 years,,D. 3 to 4 times,4.00,1.00,2.00,3.00,4.00,,,,10,10,10,10,10,,,,D. 3 to 4 times,3.00,4.00,6.00,,,,8,,,9,9,9,9,9,,,,E. 5 times or more,1.00,2.00,4.00,7.00,,,,10,7,7,10,10,,10,,10,8,10,9,9,9,10,10,10,,9,10,10,9,10,,,, +City_1(HQ),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,10,E. 5 times or more,5.00,4.00,,,,,,9,10,10,10,10,10,10,10,10,E. 5 times or more,6.00,3.00,1.00,,,,10,10,10,10,10,10,10,10,10,10,10,D. 3 to 4 times,1.00,2.00,3.00,5.00,7.00,,,10,10,10,8,10,,,,,8,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10 +City_1(HQ),Female,4.00,D. 41 to 50,3.00,C. 6 to 10 years,7,E. 5 times or more,5.00,1.00,2.00,4.00,,,,8,10,10,10,,10,10,9,10,E. 5 times or more,3.00,6.00,7.00,8.00,,,8,,,9,,8,9,8,8,9,8,E. 5 times or more,1.00,2.00,5.00,6.00,7.00,,,8,6,8,8,9,,,,8,,8,10,10,10,9,9,9,,1,10,9,8,10,4,2,8,6 +City_1(HQ),Female,2.00,B. 21 to 30,1.00,A. upto 2 years,6,D. 3 to 4 times,4.00,1.00,3.00,4.00,,,,8,10,10,10,9,9,9,9,10,D. 3 to 4 times,4.00,3.00,1.00,,,,8,9,9,10,7,,9,10,10,9,7,D. 3 to 4 times,1.00,2.00,5.00,7.00,,,,9,9,8,9,9,,,,8,8,10,8,9,10,9,9,,,9,,,,,8,9,8,8 +City_2(main devlopment center),Male,5.00,E. 51 and older ,5.00,E. More then 20,10,E. 5 times or more,5.00,,,,,,7.00,10,10,10,10,10,10,10,10,10,E. 5 times or more,2.00,6.00,7.00,9.00,,,10,10,10,10,10,10,10,10,10,10,10,E. 5 times or more,1.00,2.00,3.00,4.00,5.00,7.00,,10,10,10,10,10,,,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,,,, +City_1(HQ),Male,4.00,D. 41 to 50,3.00,C. 6 to 10 years,9,D. 3 to 4 times,4.00,1.00,,,,,,10,10,10,10,9,10,10,10,10,B. Once,3.00,,,,,,10,,,10,,,10,10,10,10,10,C. Twice,1.00,3.00,5.00,,,,,9,10,10,8,,,,,9,6,8,10,10,10,10,10,10,,10,,,,,,,, +City_2(main devlopment center),Male,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,10,D. 3 to 4 times,4.00,1.00,2.00,4.00,,,,10,10,10,10,8,,10,7,,E. 5 times or more,3.00,4.00,5.00,,,,8,,1,10,10,,10,9,,,8,E. 5 times or more,1.00,2.00,3.00,5.00,,,,10,8,6,10,,,,,10,8,10,10,8,8,8,8,8,,8,8,9,8,10,8,8,10,10 +City_1(HQ),Female,3.00,C. 31 to 40 ,4.00,D. 11 to 20 years,8,C. Twice,3.00,4.00,,,,,,10,10,10,10,10,10,10,10,10,D. 3 to 4 times,4.00,9.00,,,,,10,,9,10,10,,9,9,10,10,10,D. 3 to 4 times,1.00,2.00,7.00,8.00,,,,10,9,9,9,10,,,9,9,9,10,,10,,10,9,10,8,8,10,,10,10,9,9,10,10 +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,8,B. Once,2.00,4.00,,,,,,10,10,10,10,10,10,10,10,10,C. Twice,2.00,8.00,,,,,9,10,8,10,,,9,10,10,10,8,B. Once,1.00,,,,,,,10,10,9,10,,,,,9,9,10,10,10,,,10,10,,10,10,,10,10,,,, +City_1(HQ),Female,3.00,C. 31 to 40 ,3.00,C. 6 to 10 years,6,B. Once,2.00,1.00,,,,,,6,6,1,1,6,5,6,6,6,C. Twice,4.00,,,,,,8,,7,8,,,,8,8,8,8,D. 3 to 4 times,1.00,,,,,,,7,7,1,5,5,,,7,7,8,8,6,9,9,9,9,,,,7,7,,7,6,6,6,6 \ No newline at end of file From 66f2dbdc0a7d67c3b9e1d04410c31b3caf35885d Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sat, 23 Nov 2019 12:29:37 +0100 Subject: [PATCH 25/30] Updated readme --- .../visualizing-real-world-data-project/your-code/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/README.md b/module-2_projects/visualizing-real-world-data-project/your-code/README.md index ea81d1f..0da5ef9 100644 --- a/module-2_projects/visualizing-real-world-data-project/your-code/README.md +++ b/module-2_projects/visualizing-real-world-data-project/your-code/README.md @@ -130,7 +130,5 @@ Our repository includes: ## Links -[GitHub Repository]:
-https://github.com/Lenastartscoding/data-ber-10-19/tree/master/module-2_projects/python-bi-project [Presentation]:
https://docs.google.com/presentation/d/1j9GQBP8QaIKvccMoEkR18_Xs8rhY6zddsv78E9irp-M/edit?usp=sharing \ No newline at end of file From 64dbe79545e7ccbfaeb094abc83c2e9ff107a2a2 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sat, 23 Nov 2019 12:34:08 +0100 Subject: [PATCH 26/30] Updated Readme --- .../visualizing-real-world-data-project/your-code/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/module-2_projects/visualizing-real-world-data-project/your-code/README.md b/module-2_projects/visualizing-real-world-data-project/your-code/README.md index 0da5ef9..1fe2db9 100644 --- a/module-2_projects/visualizing-real-world-data-project/your-code/README.md +++ b/module-2_projects/visualizing-real-world-data-project/your-code/README.md @@ -130,5 +130,4 @@ Our repository includes: ## Links -[Presentation]:
-https://docs.google.com/presentation/d/1j9GQBP8QaIKvccMoEkR18_Xs8rhY6zddsv78E9irp-M/edit?usp=sharing \ No newline at end of file +[Presentation](https://docs.google.com/presentation/d/1j9GQBP8QaIKvccMoEkR18_Xs8rhY6zddsv78E9irp-M/edit?usp=sharing) \ No newline at end of file From 204ef5f859dd90bfc7970028537f961fab4f6b7e Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sat, 23 Nov 2019 16:32:05 +0100 Subject: [PATCH 27/30] Readme --- .../your-code/Coffee production/README.md | 80 +++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 module-2_projects/tableau-project/your-code/Coffee production/README.md diff --git a/module-2_projects/tableau-project/your-code/Coffee production/README.md b/module-2_projects/tableau-project/your-code/Coffee production/README.md new file mode 100644 index 0000000..e8197ee --- /dev/null +++ b/module-2_projects/tableau-project/your-code/Coffee production/README.md @@ -0,0 +1,80 @@ +# Project: Business Intelligence with Tableau + +# Data Exploration: Coffee Production Environmental Impact + +## Overview + +["Coffee is a beverage that puts one to sleep when not drank."](https://www.thebaristalife.com/blogs/blog/barista-lifes-top-117-coffee-quotes) - [Alphonse Allais](https://en.wikipedia.org/wiki/Alphonse_Allais). + +Over 2.25 billion cups of coffee are consumed in the world every day. As a popular beverage and important commidity, a simple cup of coffee is affecting daily life of people as well as our planet. + +In this project, we will explore some data on coffeee production environmental impact collected from The Food and Agriculture Organization of the United Nations (FAO) database. FAO provides open resources to a variety of food and agriculture data for over 245 countries from 1961 to the most recent year available, which provides us a single source of data to examine the following aspects relateed to coffee production: + +1. Coffee production quantity + - Data from 1961 to 2013 (latest avaiable year) is collected. Throughout the past few decades, the forms of growing coffee have changed to maximize the harvest and in recent years new method to tackle the production wastes have been introduced. Therefore we will look into the data with a wide time range. +2. Gross Coffee Production Values + - the value of production at the point of sale (i.e. where it passes out of the Agriculture sector of the economy). This gives us some insight on the development of coffee market price throughout the years which is partially affected by coffee supply/production. +3. Size of Primary Forest Area + - Size of naturally regenerated forest of native species, where there are no clearly visible indications of human activities and the ecological processes are not significantly disturbed. We will explore the impact on forest size from the change of coffee cultivation method. +4. Pesticide use + - Agrochemical usage increases human chemical exposure and contributes in contamination waterways. We will examine the development of such usage along with coffee production trend. +5. Crop residue amount + - The process of separating the coffee beans from the coffee cherries generates enormous volumes of waste material in the form of pulp, residual matter, and parchment. These agricultural wastes also contributes in Greenhouse gas (GHG) emission, e.g. direct and indirect nitrous oxide (N2O) emissions from nitrogen (N) of the residue. We will examine the change of crop residue amount with coffee production. + + + +## Dataset dimenions +1. Coffee production quantity + Number of records: 3,975 + Period: 1961-2013 + Unit: 1000 Tonnes +2. Gross Coffee Production Values + Number of records: 1,047 + Period: 1991-2013 + Unit: USD/Tonnes +3. Size of Primary Forest Area + Number of records: 1,776 + Period: 1961-2013 + Unit: Ha (Converted to sq. km in Tableau) +4. Pesticide use + Number of records: 1,533 + Period: 1990-2013 + Unit: Tonnes +5. Crop residue amount + Number of records: 2,612 + Period: 1961-2013 + Unit: kg (Converted to 1000 Tonnes in Tableau) + + + +## Approaches + +1. **Define topic** + There are data of thousands of food products to select from in FAO database. The initial idea was to explore global food source and utilizations however the choices of food products are too wide and diversed, and hence it would be hard to find unified indexes that are suitable for different products. + Once COFFFE is selected, we decided to explore the enviornmental factors of the coffee production and also listed the different aspects we would like to inspect. +2. **Identify data required for findings and extract data** + With the 5 defined areas that we selected, we dipped deeper into different databases in FAO to extract required data. + Data was downloaded as .csv files from datasets under different categories in FAO pages. Links are provided in the bottom. +3. **Understand dataset structure & Examine columns** + Examine csv files and understand each column. Read through column and values descriptions found in FAO website and ensure correct interpretions. +4. **Data Cleaning** + Data is relatively clean and therefore tasks focused on reshaping and combining dataframes. Detail please see jupyter notebook in Coffee Production folder. +5. **Basic plotting followed by visaul optimization** + Import cleaned dataframes into Tableau and join dataframes. Add Calculated Fields for unit conversion. Start with making basic plotting and later on trying out different visualization tools to optimize the results. +6. **Add captions and annotations to complete storytelling process** + Group all worksheets into a story and descibe observations. + + + +## Data sources +*[The Food and Agriculture Organization of the United Nations](http://www.fao.org/home/en) +*[Food Balance sheet](http://www.fao.org/faostat/en/#data/FBS) +*[Value of Agricultural Production](http://www.fao.org/faostat/en/#data/QV) +*[Land Use](http://www.fao.org/faostat/en/#data/RL) +*[Pesticides Use](http://www.fao.org/faostat/en/#data/RP) +*[Crop Residues](http://www.fao.org/faostat/en/#data/GA) + + + +## Inspiration +*[The Environmental Impact of Coffee Production: What’s Your Coffee Costing The Planet?](https://www.sustainablebusinesstoolkit.com/environmental-impact-coffee-trade/) \ No newline at end of file From d82fb0111c50ca33620a1faf179bf9e4acf366d9 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sat, 23 Nov 2019 16:46:06 +0100 Subject: [PATCH 28/30] updated readme --- .../your-code/Coffee production/README.md | 60 ++++++++++--------- 1 file changed, 32 insertions(+), 28 deletions(-) diff --git a/module-2_projects/tableau-project/your-code/Coffee production/README.md b/module-2_projects/tableau-project/your-code/Coffee production/README.md index e8197ee..86867bd 100644 --- a/module-2_projects/tableau-project/your-code/Coffee production/README.md +++ b/module-2_projects/tableau-project/your-code/Coffee production/README.md @@ -1,6 +1,10 @@ # Project: Business Intelligence with Tableau + # Data Exploration: Coffee Production Environmental Impact +**Tableau publish:**
+https://public.tableau.com/profile/ivy.ip#!/vizhome/TableauProject-CoffeeProduction/Forest + ## Overview @@ -23,45 +27,45 @@ In this project, we will explore some data on coffeee production environmental i -## Dataset dimenions -1. Coffee production quantity - Number of records: 3,975 - Period: 1961-2013 - Unit: 1000 Tonnes -2. Gross Coffee Production Values - Number of records: 1,047 - Period: 1991-2013 - Unit: USD/Tonnes -3. Size of Primary Forest Area - Number of records: 1,776 - Period: 1961-2013 - Unit: Ha (Converted to sq. km in Tableau) -4. Pesticide use - Number of records: 1,533 - Period: 1990-2013 - Unit: Tonnes -5. Crop residue amount - Number of records: 2,612 - Period: 1961-2013 +## Dataset dimenions
+1. Coffee production quantity
+ Number of records: 3,975
+ Period: 1961-2013
+ Unit: 1000 Tonnes
+2. Gross Coffee Production Values
+ Number of records: 1,047
+ Period: 1991-2013
+ Unit: USD/Tonnes
+3. Size of Primary Forest Area
+ Number of records: 1,776
+ Period: 1961-2013
+ Unit: Ha (Converted to sq. km in Tableau)
+4. Pesticide use
+ Number of records: 1,533
+ Period: 1990-2013
+ Unit: Tonnes
+5. Crop residue amount
+ Number of records: 2,612
+ Period: 1961-2013
Unit: kg (Converted to 1000 Tonnes in Tableau) ## Approaches -1. **Define topic** - There are data of thousands of food products to select from in FAO database. The initial idea was to explore global food source and utilizations however the choices of food products are too wide and diversed, and hence it would be hard to find unified indexes that are suitable for different products. +1. **Define topic**
+ There are data of thousands of food products to select from in FAO database. The initial idea was to explore global food source and utilizations however the choices of food products are too wide and diversed, and hence it would be hard to find unified indexes that are suitable for different products.
Once COFFFE is selected, we decided to explore the enviornmental factors of the coffee production and also listed the different aspects we would like to inspect. -2. **Identify data required for findings and extract data** - With the 5 defined areas that we selected, we dipped deeper into different databases in FAO to extract required data. +2. **Identify data required for findings and extract data**
+ With the 5 defined areas that we selected, we dipped deeper into different databases in FAO to extract required data.
Data was downloaded as .csv files from datasets under different categories in FAO pages. Links are provided in the bottom. -3. **Understand dataset structure & Examine columns** +3. **Understand dataset structure & Examine columns**
Examine csv files and understand each column. Read through column and values descriptions found in FAO website and ensure correct interpretions. -4. **Data Cleaning** +4. **Data Cleaning**
Data is relatively clean and therefore tasks focused on reshaping and combining dataframes. Detail please see jupyter notebook in Coffee Production folder. -5. **Basic plotting followed by visaul optimization** +5. **Basic plotting followed by visaul optimization**
Import cleaned dataframes into Tableau and join dataframes. Add Calculated Fields for unit conversion. Start with making basic plotting and later on trying out different visualization tools to optimize the results. -6. **Add captions and annotations to complete storytelling process** +6. **Add captions and annotations to complete storytelling process**
Group all worksheets into a story and descibe observations. From 54b8c665de6fb5acd3072765fc23661b510f4c54 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sat, 23 Nov 2019 16:47:16 +0100 Subject: [PATCH 29/30] Updated Readme --- .../your-code/Coffee production/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/module-2_projects/tableau-project/your-code/Coffee production/README.md b/module-2_projects/tableau-project/your-code/Coffee production/README.md index 86867bd..73db9ee 100644 --- a/module-2_projects/tableau-project/your-code/Coffee production/README.md +++ b/module-2_projects/tableau-project/your-code/Coffee production/README.md @@ -71,12 +71,12 @@ In this project, we will explore some data on coffeee production environmental i ## Data sources -*[The Food and Agriculture Organization of the United Nations](http://www.fao.org/home/en) -*[Food Balance sheet](http://www.fao.org/faostat/en/#data/FBS) -*[Value of Agricultural Production](http://www.fao.org/faostat/en/#data/QV) -*[Land Use](http://www.fao.org/faostat/en/#data/RL) -*[Pesticides Use](http://www.fao.org/faostat/en/#data/RP) -*[Crop Residues](http://www.fao.org/faostat/en/#data/GA) +*[The Food and Agriculture Organization of the United Nations](http://www.fao.org/home/en)
+*[Food Balance sheet](http://www.fao.org/faostat/en/#data/FBS)
+*[Value of Agricultural Production](http://www.fao.org/faostat/en/#data/QV)
+*[Land Use](http://www.fao.org/faostat/en/#data/RL)
+*[Pesticides Use](http://www.fao.org/faostat/en/#data/RP)
+*[Crop Residues](http://www.fao.org/faostat/en/#data/GA)
From d46cf939a76e183943522f7d98a2ca2ecac15b03 Mon Sep 17 00:00:00 2001 From: Ivy Ip Date: Sat, 23 Nov 2019 16:48:57 +0100 Subject: [PATCH 30/30] Updated Readme --- .../your-code/Coffee production/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/module-2_projects/tableau-project/your-code/Coffee production/README.md b/module-2_projects/tableau-project/your-code/Coffee production/README.md index 73db9ee..3679509 100644 --- a/module-2_projects/tableau-project/your-code/Coffee production/README.md +++ b/module-2_projects/tableau-project/your-code/Coffee production/README.md @@ -71,14 +71,14 @@ In this project, we will explore some data on coffeee production environmental i ## Data sources -*[The Food and Agriculture Organization of the United Nations](http://www.fao.org/home/en)
-*[Food Balance sheet](http://www.fao.org/faostat/en/#data/FBS)
-*[Value of Agricultural Production](http://www.fao.org/faostat/en/#data/QV)
-*[Land Use](http://www.fao.org/faostat/en/#data/RL)
-*[Pesticides Use](http://www.fao.org/faostat/en/#data/RP)
-*[Crop Residues](http://www.fao.org/faostat/en/#data/GA)
+- [The Food and Agriculture Organization of the United Nations](http://www.fao.org/home/en)
+- [Food Balance sheet](http://www.fao.org/faostat/en/#data/FBS)
+- [Value of Agricultural Production](http://www.fao.org/faostat/en/#data/QV)
+- [Land Use](http://www.fao.org/faostat/en/#data/RL)
+- [Pesticides Use](http://www.fao.org/faostat/en/#data/RP)
+- [Crop Residues](http://www.fao.org/faostat/en/#data/GA)
## Inspiration -*[The Environmental Impact of Coffee Production: What’s Your Coffee Costing The Planet?](https://www.sustainablebusinesstoolkit.com/environmental-impact-coffee-trade/) \ No newline at end of file +- [The Environmental Impact of Coffee Production: What’s Your Coffee Costing The Planet?](https://www.sustainablebusinesstoolkit.com/environmental-impact-coffee-trade/) \ No newline at end of file

*=`&hB> zG#^kB>B6a z3$rawOiU8lB$HVrW(T6f7Bt-eSL8*~IRL-u>{DUwIb8b6+BQYLzX|s3jZlVXj&t1C^v>jKF0?XuO13fcC*+lQ4 zc#v40NL_V+*f@Mn<3O6%y~QF)KkRCIt%lZ#L14T8{fLC7Tuo?bhfx~ z{vm^hFcT##UNfz+`yN<0^JLEUGHEs~BK^kA?AypnHc#0al=OCs0SgMNLP;Ebm36=( z(wif>Z98*9VC{N0%o?<}T5VZrFqjb|hgl{NekN7;s%7PN8yYr~GaV&6Qmf1QZ63f4 zY5jx*D0FT-(@a`~m>!5c*aycq>C*b5d&2!+dyTetB@4meRKd(p$~MLD4`2T_+>TPL z72TbW@rn8X>uZzIcu1=pk~mWbT|2du(K}1fSBV?>BovwmBI7NZtw<&>4*>*a!?TB6 z`zUq}+AP7Twoi9sdz*TcE%>@g^xG;~{dx28*)cMLZ$5f>hj+~W!Rk#f`6>H&OIBXZ z2CmN`65Z7D>1U9eg#tgp7Izm(g>Cr;fK%T*CqdAQCR|}%w~1l_+0eP$ZT&VgG5KPC zeRpy~^87O#W+$l&NIte~?V~@^dw+CBqj@IxwQo$+Y#IzoPlFa8zcYtBn=TeL+Kgew zmyz>2*Pr8aHg{ zj3IiTR(`KW~mn)?Ram{w>9oM46F@z-*e5Fws71-yj7D1KoGG zLJT?|Hf?)l*JX^u07A9TU=9&Srv>Y#tRoV0HC~oB&KZPP&{mekWZ2&bYwRV&8ksRW(qnv%h(6Z&o6!FUER|G zM;!~hme~Z@booxLLYx=}PQQy$moz_}eGskqltXr_UHdz;-*{<*-e!l_c40J2Ycay0 zw9Hl-KmlufGM-35nG-6?%dtj9f`&$AOtEVhjwtv{?_)GRe@VD&poXd$BrA@tSO>vZ z6xZCX=egFNj}9&Tve=Ya{7a&O^k?CHuo(R1H<4p7vvP36j4DtzUaozXZjI5s{<|o? ztZ;dzZZbXW91n&kBdGX$ye;q2Twl{B;l7PD zuIY{?k$N|6XyK+m)UW;~>OmSlJX>}`ZIYa+!(e5N@9wmAchyymcQx$#WDu|==lis& z)}GjFBI?fo-=`sLVTxf@ zU4vA^1i&Gyd!U%N`9+?CAnuuoi54O6ONKd5y{o4ZjeWRDahuB5pcy9A5HgeoCFlrGrOQG{W{w&Mo%=LFYWr?980 z#u>3`4}!`{E`fagGdv;YpxLQx>?-9uNl937N5L#!)}5$@H0u3!w?D{55z=hfu%ReC zHR{5Zit@C=qK>wcs`1aG%2R*+eQPOvyu0nSkqJvOPyWUfNt?U;(Iu8<(;wD}_VE^K za&pp*KhSx3zTDO$CaFA|q0d9Z&Tf9Z)j%(Bf(`XT3Ky_69-h*y ztaCjFvDGh)0?h)=yugI;J*HIdxq3}8R)vZTXX>Ngkb1GZy&izHsc`m#&yL3f3OK}b z8W`WV@im1ejk_-`uF8o6UGuB{{rlsSwU45=!Bpn3KaX{xMH$k?%f%#MnXfX0Lcq!C z;c>B08n>EHWO=5OIRcMO$-6I)=Rb05>I`s`TG{I4gqC)F4!yWV{nkjFX2JLt;Tfw%O&hq2$_*OBFXEZyV;Ft$Z0d$#3@05LZBQNF5FTluXxN=YsiB_jZ;XBr5ts zB5<>1A-lP+z6k9dE86KEQN(_g^b12+ zUTFm(waJNPfxBxTA54G+*4}o}QN1LRs6v#ApphVr??v7s_qXq?hlNFXJcC12=cSpN z7Y7O?H5ZiI!qB{o(6Ij01qC{p?sXFDh$?f!0qQSu>QVUFBC+raZ4UWMyCXJb{s&mL z6l!07qn2>^3$B!6>P8+ikUJKv)UUt{dG1)U8w6mcX+kq-k}wQ8vKSCsP$NyEK!#R& zF>LpZ+xKC)UrJb7^#FrS_f=H!EABDkxn*t9h~eTk`A?uD2`4Q%Y#q{cM^cuOdmEXN zEfU%=80m+i$`cs`kU1ha0b!q$na9SUDN8=U*WchM2mdI*S_(YANNkO-5r~kB-7LYV zpx>Px?A|Hmuv{kD6h#$_z6+EcX4!y|$OIj@Q*X7ro!a98?1v_ifA1#VGBQ!+EY-jj zt`IgPCG+R+(f;AWKDFs@{}dWu#~5&AF;be8c)2WHTAFgoH9Q@s6gX(kV^0pOUqyb8 zA~-k6zV1w|g=r%|TH_+T10f3+Ta3CRC(GZ3v6}HUTKjNq|G-HA+p-lBUcO5;@QcYw z#f*Oe&2DYB)LUZ#RX>)SmX=|$bC)cB{+p3HY^l}%Xs|Y{IFR>b?dW37J@VG7H4bb? zM8>BPMW2KW)-I?nAFc7fo||ZA1b-KI=e^EQ?dxgfiY7;{9I)VDL&0isc8Jwjk7R=R z`QsZ87h*}$-lPh?7few+o2V)0@uV_3kQt*#-zG%LXz!ifVO>Ly(Ss%?}^vH0)|F! zzESnS=2{EIJByU5;AQH_;3>>#u$l1i6L^3EVDR+>fX0 zvAw;qhUqPZmwQ02aq_~ie$Q4~t<~kv{1pri=?7Y77e;~LypX)u=9VV5Kn&@2Ev1$^ z@yS1b1^Qe&@UVJbT~uIzypH_3^t_xJ5(GP<`+pGm&=pY5qloZgJx*U>e%MjlI_)0Kosu2wThn{cCOxR`Oc3+eOve)MC|cTJYV{m|ZF$1~+< zZ7{TbpTAQw#<>MwNuIACp-K`2c@*&4F#4MuB;7^2=@=C`(XXT(6Y0ns1~tojKt)%q z*ar+rT5^6=5`n}xu>`mw{XT;?)-!E1zIxpMkUhwpM+vh~y&rywwa3*tE~2Ce+0i#` z|9AdbF@M#brE@HPlPq2h^-XjA%jsu4SoF8flz1r5)x+}~)rX~uWf zS<|#>r1RGd0vd#q^~!Xye+ZBOzLr|QOK{4loq;h$;z!xZ$?4_ShNqJe!^_k%Q_>ks zi1qOBHQn!M&vQQRya;!P5OaC;cW}PRbyOQ6S%fbbNmj&{-TqleB;Lw1y8KG{`(Bey znCIf{cl4lWZhDZm?~2S2H+ZR1txA|K!qnApAHM#T2-dh+Xc2-Ona5e=UJc16hdo1R z2``p&oQQjB^<7ScgxRDti-g%);NC?)#P7q74r)d6kI!(vyh7}c(V8P7Rak1zREFCf zU#wvd`*%X@>R{+=?BFp`2Guxk?%{M(ecTUH@&{59ml!WCWrj!6;nohuLoMB6h*;lB&YK^F>iD@G>H>SHCXmKB*w>`X zZ-<;=F`9gxPw_Q1Ntduwv;^Ye?>xrJrHCe(V72=Ww*dB|xstnL&|y0&zgCcxosc0S zyND10I)9P>CbRop5D6m0_Z7SQUaR3sw;qgKDSI`|pQSL5m`z80hX~418oA zVx`6lVV|p`9DffIcHkr)j6{*SYD&fIEXWxHw307{8druy&zMxr(6%yf>Qj}zQDulT zNo5(%BBv$3d`lo+%1&H7m4CW{S?LC)clxgB0@4X@g2tO^VNZ2J9PW$=eG1ke87xAU? zIsSI;wpq4uT88ZqCTBmkDVQD5EE{Xbv9pgbOnioJ*|1wg&0lAb!1#8yEPo(5Qyh?0 zF=oMp1;mMDjG^iF1-Zl&9t;%qd;PZ{gD&3e$c1v`$qaO-n0oat{giVNv9grL7+Q<# z4;IV>6Vj}%A#phG8(*uKs0TGKcC^&uSlNzwvcJ`LSWL|FKTbNs&XF&#!vx*aZs&An zwjyRr0|uHa6ot|SWBv+Fl@>?&WM&HhEzpfPs`G--WD~MQ16}b_>p#sAe`f4#b>NF- zX|xB_A}NDx$}otg6cpG|WMBL9ASouupn}#GPEgrqu`0D`^t5x7n(XsiO+q{al7;L7nQh16)xE=PxnkJl!S70RT1^WVP>C-7y&hq(^*TBKgGMdy{6 z4{VI`hlIUTOVzVurN8i(I%IUI{)`-$mW z1PaEWKbZ75BuXBv>k}1alSwxH9kCnr&%gJC6P2o5)H*r8%h!4wmajQJ%H?Q#IiEgKYg(Lm1rj zUQDJQ%TXUmsk&yfgRo-z0ad?XZT>b*_)0VpRl@z;le5j1qSLNQgylGpHmv8f@iwh|gRSW7R$7 zQnuJ!VM?e3g(0HSU0Ol=2Nlx6;k01c+G#g{PkHvTMEVL&O@R*HAeLmg^Ex1Gd_K#( zgv;0xTt(%Z>ptCz=eAONo3H|-S4(s?p@z7V=VV4b`OPL^S(6RDkhI(mCtkHhz%llt!NLG)*F7UFw|z94z}0G zf2L+6xghyd*F+H7HigdE@040iABu4JTq#A<+W)rQ4x!L^Y|8r(kJW>Q37>@sN`XV& zmwP}e3T@+EUpfS2-1yEl`l9L1XlANA>0}&xf9wWQnNHK8-ab9Jm14>-B%JbgOwsU! znGf-ISv~M#_cw`rw}pco^8QznXwD3H#VzeuhsAYNYhFkPq1fli7u zte8kWs5CZumHsFSGmY?(eO;Q~ z&zws7@!I{d7`%sE6|3K!=;*RH{U)&T(PRzI*!rU5GCC21M%$&hY58dbF0*z;^<8&x05WRgtY z-v9Utda=0rji_-EInB^v)RaqfkNeNTMMQOFsUCeoYwe+dNRyaXxlU+Lf7l(+9{397?VVmd6V-Wp zkp!$E(%&XDai1e7Mx=4p)*Nq~jWINzP<+9x03_N8nPzku4sW%hMs%tRO!J|yn739= zJtw&h!+s%-N0W>g3g)Jue4xqX}1$aKg1b2^wcJnBjnP6Q~p9}_i? zSZ1E7UnMDOYGt0*hwq$Dbh44OuLQo|7TVt>`oe|EXxYb`=JnIV2kMd198N3_rPbQ@ zY%SRK)GHQlIkgh#Uj%z%{GjgInI=1@gt6jG+|m) z8f%C(Z5an=ucoEBq89aAP+yfjO!quJq8Rm-#2pjbIuYrPe8>06xf=*O*SbTF86^Lm zYX6a9xFkn)$gRid|L?e4B26Qg9fkBU2XXn)RJC3ysvCRqyl%fu>EYW5_V)6@9z0z%*%J!vZ7keqGuDUoxvk6ygC|hl90NL4Wg$6;=D(a zQSD;@`B|5nEqep>r4>ixkJl8O%WbjPAZkh)quN3UVD+*Kj!H?rcKqcB;@U{+A4#&! zhvOT1Q`H_`xUaP#Hhcw7Aujb^Y7iH))4HB+OIQ4=Z6-Yyv_n(xm=9RqPf09x*>+FfBupgHIA=5 zCue4~7HKvr{r<@nX@r(YifL_!yPoai^z}-SadcjiSLc*orZPWopIF=z%a_v+ntyX| zNdc9J6bH`1t0N`gP)srRv(m(zjD--EigP9<^sKe_bt*8`H7sXezD9j({qZ_!9c1G6 zM?T^Pc9a>X`+gi|tZtiDPD?6Dv+9PQQlo&Oq7PDQj~e-GvW&$}y3NFkbTsigoWK=+ zcYovHSH2@VmPA85Zi3rF?*6AK-Ve66|LxN3Yvf4e@g|8^za2Qq9FTV*zJhBMd{nl= z91?3VjE5o+;2>m-4X({{xF&GlsDhiR>4wB!>Dn?~*WlL%mj=I}xF^g;-B2e1X3K>| zGsOVty-3y5ZOw>&*fXgET{Uj9d#h*Wl=#aj@&4iv+Ux4V; z1&e`&vEdb9lv$JNhlj8KXK955^U5KveS|a^cfJ^ts-KC9k`+3JA-i_uvm+=N%b2=S zn}c|fgI*h1!fD~-MUlp8D%tzpm1`ZoBfE~;a$Yy3D$~d_LF)u|V+AE2ei9w1g^4-# zg1++WiA!s_7Ai|NKUWcZUNTups5RVwNxx`so>jRLvcBT^W#21{(aX;(QX+)jmU!Tu zFxRGXN6Qko!@rUj+YD3ej$2j(GvgC?2R9_1bm~~ z6*9f{pG#VZf96}F$-kLU|Is<=Y!f(Dncim|N`z0=UJXd49>GtGkgsSd$eH1BdGcg^ zDG5(ONxU|sIyN+jofcP!s!X=OL{V9uzafX@>)exEeQpbuc8OVrFf{1KJjtaDTH_h1 z4Bbt;{6)s%hK-+Xc*s6iBJWr&wX)Rnkt4tn-B1`)Pl!f)?#O>Ffs$X9OLVmmR}(Zc zkQE6SA)%e}ma@z=8HuZH$LQt1u!3#;Oro<(++w|9=$RE@l_tjld(@MDB>N28>WPhn;8tI`7KIequR96)8NmMJ~?Z-t*U=gVFegr zwM`&;Fk1=@+xok*8$mX|dO2fZ7=B|p71~g8TvHBlzr`ukA*0QVF3}py(4dT2P_m2N z%gCdj{mnM7k&{SHY+<*VC%}gU9X>ihH-ZTgl)hJ0n7EQnV~)y!R8Kh^2q~3wAdYQ3CagOv>&z!pE7YEVvR6m z3xH_}B#!V1yHps%UhG^rAz44p4}WSC#<6N!i~tKu&Cp^DAZO--s7TpH-#l;2#UZ7$ z5Ga7Y{iO3nHA3=b8LMH+QE923KKNS8@Hh8xx^*u4q&|+IlLp;Wsgj;ySM>3$xMT@7 z@)7_-w%n9oWcm!-WDN0689Am%4$G3_h# z3*;K)IWrhm)MA3a{~F~ITbFjB>%ZU6*j`LcY@YJSAW8*XC1cVSn-Mj{m3<*50Z?I- z@b({MvmL8FPH_f-S_z+in`xd08f=h$X6u${nV;D>1iIro7%;uZE;a@J|bElH*vZ06F`iOH{|<_B^&c>#6Zpk}$K)A#U*Ehlg?bs6*G zfA>2=Yan2f+W4feefU~{&g6L(i`!UG)fH}L&TR}bYEZzPpl zhKLfhbc*Y!LoLo51=?#Gz-ihVOykn(GrUJZ4ml6%*CEL@#-=icA)Dlly21#N7;T_Q z1s7{m1U6_x;?v02C~Uf=R})KW0BGP@>h{MshSdqJ5g`y6VK+OS^O-p)5UWM39ahK` zP_~J}X{@UCkry8O*ykC@P-^41kmCV1IIX@UhLHGJN{>a#%d5k8wSw)sc**jg7st0m zGSom!O9Hvpu0GYkdDKKHvbPVwJd+<&jxfzLIhS`9{klg&L(QPshM7jW)N<{G;WT$Y z)_J~3+CN{j)SiRDOfN0BlATDkAo|Jl2rg#TlT@s|b~A_WrSmoCF@n_c$%d0&LDbG6UF%AD+K?6pd`)j1sDzJ5> zl+gJSDTO%~to{aM;<=R&r_*z4vHGiPYtQKDMRcv+>D5~J@2|FlYa>&uli{V!Yl4o^ zX{*!T+qQPkv-euWdhej+ZcIS8CHjI-@b8!%MAa~)xi+p%^>QPLCgk-s`+C6?6>q#v zAIY4{&$76Ttu*`Fy?{#Fvj+Z&L{c;wRt9SHX5!+HhN1 za7*)gmW^rVaGz&ovBX0fGbep8FxeWOkNFtF*9Xr{R`srIXVWwr_^%-)v|QV&HNs`H ztvSz#5Y|as=Go%2%n!Vpy<8qep6M0ju8o-FkTN24ZEWjWU#9OHYr?uEvq}$`oGD$O z+Fx1WI)`vaTSmCBvBz$AZBmH@G-KI!D;@)_PR#1BwlcSC@xaXfc4Kt zSRcBECX55F<(vYuuGi!uUyFM!Eo6JSm;(dyIvx6lkUVG6LRmJt&235Q?eE*itS}=zB@Mi1CgIwrKmIm^4G=x+npclW3R}*Vxh@|WJ zbO#Uw{!PId^|pTaz`qBaeP!aam8cKGqbe{QVa^=~rV$;;-8`XNla|YBQ(rZ&)6eNo zohu09j2SiYF(yq841MN)?B%qPFj%gQHN66%d1U{XTYFc^^suJ8FW zU4wc=pedFgKrzNa+z$|wJzxLqa6ssm+&=#)Ib)`7hqLNr4N*qlmg8XuFAN@+6ZdZ9ycj$%Gl?p{Bci6D+VEs;(C=NW z{pw|PI_YHV;#YVon1wSpRF5E8U^?JB6B?I!R^Zxr*PY2-t*7uPVgJmSZC)^Q4!{3T z+7XKky|R4q-Sdi*{I(St&x;{huh#s&1+2^$ok`opFs`i`G*?8G7}=x*Y`-! z=KB-n`FpOJsq#K85HtvXk8sG>-+I~YcA?%xn(9@Nj-S5l*G`_0M^sgh=@i`^b>(`S z614?BFQC0sl8+Rfbx3^aV^#hjwT0r)EL@){Kg*+7?0U)Tq%_a8SJ9;{Hc1$LNU#4% zy;tAZ$D|;hof@P_67uhc?v;czVg-*c6NtDaz$sZ*5O{TKW<@)jcXk0q71*5YOjaY%j(Y+qeCL4m)1^q-SfXr$xCvL ztYY~(@E3KD@jz0B{9^49f#GWH4o9+7c@Kh*j}9S5*&gq3bA+q8|Mfe0e>V6t9w_pt zX^0&IStPyRfMPVWXcf0uL&@Tybp;;nxBq9%bc15IMBM>vjlfC0t4abY*!E~(=^!3Gk^29&2NTZeW4e!>L}NwMj!6pL54DFWfNNgjV$v*15S z8MD_D$toaHuGzrgMN}>py>>4cl?4on&kLC?FxKLGA7dX%%kacHZN;Cn=RG8 zThaJye*nB^?GL(U@2rg8S@~ic4&65|exPp?3=c@Jp~$ks3lyT5P5e`6`pQJbS9t?2 z)s#+Dp-CrgGuAj9S(zqmmc?&gQ0|EV0Tv{f?fI^0=FCbQFN^t#+Zfu8yzZX5k&NP< zouE+enedCQy`o%aopbqtOcc5anBsmt3ucX6t{2IqWTf!OzRm>Ho{n9zo;DHkxWAwI zpfTkiWGsUf-y~trG<7ZOhxOnKf0BA*Mse4Unc3GtIB^LTr#mbrJ#gp@e67h1gG}+Z zo;QmD_Bp|hWn;McTI+E2wM1sz51u?gm04;^`BP-iGyfb4$0^E2O|FYps|C zjueTM>U>N+4h`Jse`+5*g9^@I^l!Kk>Va3Z&axuc?vlVW;28E4T62e(rY+p*?OQ0X1wi|NoLtYOL`0IOB@02EP zbU^oUs+}Q~M(O|xOgM*s4QS>XT=6c~@v%&sb=9bEMsFxTT?Z4-d39=+ig-YjzOS?K zG(BV9*WfUJ&x|}%zGp_Bg>K>H`D@9g^l0*os4iRpO%Vuflay~yAA(l+0Kx(e*Kc#X z4f}na@|T&Mmm0WkX0WCRU2~DYhrIKpzV^^{3y8?KCl*hB1iv8d9O`SYgjF0gp5Y0x zI-}gUGGNFGHZ|Jx4i?bw;A<_upVKW4F8RC`EPf=?UmB^jcYTV=NVmS03=Yb6i-W(#&u|BUppki*V=pl z(J$lnu$O(un;lxvhHQs`tCywgOt7G`el2w7pREzn_d-247{yB4$m_^(4OaIuD8tZo zIE41KWLjU3museBd~nH|o%|&Ku&j#x1F2$3UR`qo-Pt7b`5uRDmp;Mhp=8hJA~tZE z9_2M|mK0EG>O-WYN)dk0b)s@zL+@TduC0YkN=f3!fTcXZME*h7euD2ICeM}2DJo*P z)34%}C?=Loh27=jpAnF1)ARhZzJn^2^M0V}) zL8J&Y5x;&Bi3(W0)?0LqO48u{br`4l+KZ|0jS;QdJ|oD?m;dG&i%QZhNjm6my;U@k zuFZrPD}-MJq2B}PA3dem0p&s;)|79R2dH)Rq(h@2 zH#}{Ge;%@^z<2YVkIM4xiqfZH}D;I1&^f>aYLa zc08A}jw@>%r%p3!BY?-)p4gJm%?+KXNs93GmW(1*7zB;lAaK3|9AR8b1|#A8h_5$e zV3)4bfb~5iH?A%0krJLDKbZJTp^}@t!9OG!+PpTI`JS}?T$5;{SW|-Hu^}ka7U}wM z!YMGhM~3v6(I836-bT}%y{rj~ug#lAHXrn;Ve>{sm5@2rW*e=WB;O)nC^@gn2E(m9!^Dif_4S=UG!znts$M*$f# zYc4T{KDOo=lO}hHqjcs^cke>4U z0QEx>TG+&=Rno0Ldvw-~OqsmApY;EI!g=mPMh$QwRQJ6f0=aIN>Av>>B*rxx;<8C5 zLQ-G$zhQC#VV3MPDSpbg$=oy=Bu)_<#v#{M3t|J1cn#xLCp5k5*u_lh z%r|+vf@;~v`e>cL-^T-`bY&H!1+#oqhwt|pyX4ItW)?Hj1C-KDedsZji!x=1~RfAX@jx{L?&)P`=GYDKl(i#8zYSof# zM_)$%l-yo6OX7BgKhj9USGG^jJo9+W&>}1iCB#|KudX2uFDDRnZQ9Z`GSURZbviKX z2cpbd?x2O|iXfMxv5hZ~$YP?5v(RSgVZk$OG5_o@49p1Q7qu3;GSeaDanN#^{=;&~ zF;6lF_7&}y)D{uxdQq?0xlzdMOPJDSEe~Wy{bhZp_A=8x1V#11SU0TJN z0Cw5yK0TxEjDt2f6YTITvgGL7Bl@3tq#o&1=ZlQA{3@1$I7KbG6irVp1B*VBv%)56 zFrr^QtgpDXR7lr0Zgg#yFm9OGU5!#XKMy9O&g2DB>$Bbo>^L01aJVyE15IcDLeF8| z0s4$k9K=j6tNKoD2Aa!vq&*R#`xx;xg0T8NauyLRu zIaf0GSYV5iq>p5#r|VF58e;qq)R{C zy2&mOA?p!c3%d?Q9(b>;Y&|SZEsV>x!=vl##K!)bwbPW{6GUQ5Lsd`uw6@7I);FG& zUt&20b~O{7Lm+nbb0Qs=jmFoo19u%L4^+aszMTtj>qtHpuCS(zDZ}?zShL(tw5pGJ z)}~ydgfa3&3eLr>C9$-cvR3q0%3B!Kpbos{^@-K2;=Q zS>|!_0W>&HF2N&`ROzjAU?OgmtNNN5hkCQnWbaF$it2%={SrvMSbRI1~GD2gSW*Py=;Vi&|7cJn1$|{9)_AJqfL=y7tH0>Llx$>9S z|8(n%@vu@Mt0R>%`48Cza99^7CF5AlapyETx#t&5H15dLVT5_L(uq##W4ev;D5D2* z`XGfjZ?K2y_Ixb!fzAL~^gYK|W9SodF}1!;1_33mH#^S;I(j`&kpH~TkBxkbPlhk$ z`8Fyr1cXLm^4k3lwx*69z^DC$BTV~al-oybDmSjL-*6ex-nK5+7be{$NZ%x0F8%61 zEDoY%LsM6g5+zprJ54hfh+!_ zCjb#}r~uvKtj=^J?N_gXr(>qakv%;%20s~eM*ZKgm82qy1kxML?!UoyE>BEHGd(^49eOb44Sxl6wz{yvgW-yQKXeNFfZqI+6p2~)xng3_$D^&(>&=TR2^%+mwS}=+@ELm#HCo{;e z^4{Tdhh@NQqonBSZWw%1?GFiVZ4AQO%8q&|v#>uRJF>T6x{cS|WfvjHY zK@{?zjr-MkN}eV&$+ySDd@Jx-lHr`Fr>qC067<&+*)#_c^W8gSPH?Cfu7lz6WO#AK z7jJPR!sIDQ)Kkl$+j|in#B_SAn%tmK4kW}Z+~WfhSaZ@3m=6|*`k)Yhcz)+Ee_?+x z-!9C9{|y&`26JAe?DO=f2;B{zx6L2`mXEHQj_$L<(e1Ua^-sG4(rGarK6cw zGrrB%BaR~IeBL=3rWt=yHa`0QeO8@KRx;NO>SsIZQM8h|ZtScdwWxpSb*mSnfcT(r zt~={h>rtoA-ZXSfBhLRQ<@Y&|&s{Y1w;q|p`8^8R}J0Q}vUaIo6*&czDm zYlsczEm{nK?X_+o;ZFE>1&a&3oz{(t{+r|RY9a$~ioms=R$~mIBsGd8 zBvXYDDvTlP)6$uW4iwf*!n;TSF|=(O7My2k_NZ_bwj?ix-SP1m_IymYh{qY<76NE| z)FquK;FZpIqjh~UJboU)3fFaWuXShAd$y8+VR{`+&6>hl0<0ls3s;o``5s)T-n?Pb z{JxA(Hn(BdCp!1K0ke=XHY5TX5~Xm68~Z4O^X_=itFG6!SCN9=Ti@7YjjsuHm|g4ym`jFQXWeOYC>{J4Y+0l3q; zHpan9ZhV6di+B&9+pW)WSFJ)30c@-F_+q4!ssn>X(iCu;5FjoM;*0_B4}}QaM9v(N z=gX>$oARNE40rL|FwT3`r0T{ni^$O6s@CU(v{nNRdD!WZR20w($z^l1b$#$E8|;M> z)mE&J+cIsRilhrhqE_K{uR5&_#d3gEON}<@iMA5tAzyx9agJaBD;-^%>2ge3_cWVB zh1|B$)@G3d)`p4jinwBj;*i!IfZ>md`4$atC++SA988!@$s+t29!5v!e9W;zF~A~f z24I`zz+0D$@Ivfa_R%D%lLq&HE+_hydnz_POi2RsPIs6Xv=Bj@J`&v>0^LQ{?2g>! z*D2aq39OARmTr=y_nk7F(M|N>pIYU6r)}wbETv&>-4rnp;I?q}$^Ve$ZP9W9PxP)P z@v#I&ie;PlL+c)AtR_RVaH>$+lfm=BusTg^S|lqN+*a$b(|}pyoO02&Z~ljw06BT5s>$Abgdi)AFidYkkAeFk4?-WS>IO(gJR`b&nXz^IEPH zS=C!&j_ZTosPY*+B)~q)BvT|2fV+uA==WFQ+yvN0>q&JqNefcAyxJ$;cto%&c(-sp zSYf;i)j3YGfLA)YcI(L*d*Wn=6hUiC%0C=TUUU-Xirf@!NqG{5Zm3N>Sp%z3-oR|P z?y@Bb+&wK3D!|%cEw1C3MXj}HFWEmGR*3+M1R#(%nfVyE)W!7`LEPBEUr(pbqv7EB zDlFKx{2veK%-&sv1-mJa`OVJ#s(+dWS0oMqx8K}iFE3KrC<1H;k9qH;7J)@f0=R8y zOHzVXpv(=eYW?Bbt!WUo6m>FhYeTI_Tx~+gun0Zi>V0hC;2`6h6>WzDbwymZxsLHo z9!`Heyr`FUc}iiAf&ANrQn0GB(Y(BOI>7C;?jT-HZdByUB+0V;MkqkGTa>gUqiT6W zH(<%*Mm6#gjiq8i{;%Z(>T*x9@65xfB!<82rk&^VG-i0HoomC%QPMZd(^vo_#xtCZ z#@d`EzvS}bBOsFG(Cx2)p$v_^z@bVrV*QFR2e35pdS6wB!3X1YacKrUkG}#Rq9&G+OdnSQfUVnOQ zisEQ(YkgcKju;-oqgP$1w&bMPp!Nvmis@$gUx>WTJ(BZoaGpD4Ar|_}?s2Sd2@Y9YwqCK3%kIVHeQi4;7L4HE-@jQ-dIGg=uTFV_UJPtw z{bZVkQnCyh+6J-;tMiLGSX#Oa8!+y5ju**nTRuP>ffSWgFO!}uk&oZzvpReg}75} zc+%}F{iN6p7?a&%<9b??UWuC2T;;y1UL*lpx~veUyPKQo)0jb#4){ z7#_)39CAAt=6FSsRRF{`&ZuFxb2?eUW*h{Rx7(qeyT8OOoc{;G(mNjf}xn zt$ULf=PN?pmO^ly{xosB5Ot`e$KAnd=E|n>u#0Vcz)a5V=BHVj||k1!kv8ndM|O0$_0&0=gt+9@8$K(-&8uMpEYS-D>;{$3_b8 z6s-&pcksYc7(N`N2tbjz0^WA(Dd*0Nv!kSRcpJEMkB>2o((sBXn?L{#*xAaOLV%=W z(!m0y-W#kSYzoQ1DtCsRtcZ#P48XS3ks#-D6)r6q5;v<+e~=R{ipE9~@PUKjiFJ#% z(Ew99Jr&KXaDV}g^l3J|S>+ay2++1MtUm9a;4EE*UUN?IW9+orHhoeMdSc^&w103+ zzT}tP4$Lu4!YpE4z>-jdeL5Ns)0V5qGH}-JgTZ(eQi`17Eqsy_BKWJI7xH42la1C$ zgDWzbon`xZ)qf1NkV}&)V2XGRkejVrrx)i*LKVpY5@Pq2h%{P_IS)AMyveus|5mUa zboMXfJFAj|u8`~^JtM7b5lfJfO=I)@)(f&?id!Wh+sO>oKBJ;zYv8SDU4gbu#A$Rk zaQQw>e~KncN+=1t)pOP%cV8(S9{!-mo$h!gX*b|bA(-PwbO%}i&5?LX9RU3}v*)mA zszBSL)|rxmoSOGPx`GShQZ8xh!DLt`F@Ij7WXN(-Cc^FR_)ALRNuO=B`6mlT^B%Khq-uW!6$Hj467KLtcO^Ve#uLfRgFeaILAOP^2597{c8*jH%DHK) zP=f1{r)ZN))0~Z-T+AG~MOJTn2~db~54+ zs2Jn&H8BBiUwH|Hm#Tg)*$=p-<5aJ+o0H*DE>v3Hs?FoX>52!kcCRdNhGu|-PSF+w zh?*7l%e!*}tZHQL430>0)A{WwZ)th9F;En5WEV8}`ado$APv&BJaqM-`}$ey8UG_% zk(X+D5eaA{`2peCMm6a2Zjt~;n5UZ1{H7ZP%a{two2Q1TIMlFX*AT##Wb)u|B=~MC z4o|pS4UY!JS#L2w!YO2yarCI;Da&tG1DY~^Icl`nYh`GPli>?%W~mh|2RX3FT#S#z zD$Co?438w!gVtTjDpnxFfYm1Z;}wl!b2?t>*i6Z3QUCYl_;=rWJaGPAV5e|4 zY%LxS2wo$Q3ptW;u@|7$B!XXm-uVCMpj)IbfJhKApF1AYUET+5!eTRZ10mV%+(ea6 zODc;bJHy;WNwV{%TLfvED`0meePVDt9*mNKS|oi9O_AdMcreHoWs$%HqB4x|IB=La z)DsSeKku^S{$J_316`e)8oQYiLq@rln*^etb&g)l= zm$iSSL|Z6-?m)dSjt5_q6QiK*N=Vc;TZyqMXk@MTE_@1wlh$>Vt~F$d(I&VQrV)c7 z(AMmmR-)DflvFF6B`LqOM4XXAhmOSM$A-T~Wf2)VbC7M=WO#m-G7d`2>70p}cMy%# z!4g|iV9ERK9zU-ax)hv>JQ}_1N`#|Er!txPI67yR z6j3z;+-}|Mo}MPYE0Q&&UhZP&vQsMdIvaN?udnLFg~Fx956jSKv$2YBuZM?7P&sn{ zgr)eGs0b(<82T*E!8h1KisHKCL}wD*e}H& zttjU*oeQNZiiAT3NEG^V70R9U*bG-*E&oc4SgkL9W2%e$Eso@x(6KAAaS_#!CraWA zMr>!?ko*6mTOY$>PFQ{1?T=IEqasoR7~9ezx@QGe8o=o4LTTo(`z-CkOEzChrQMZN zByA-NC#pWQvPWa0rNA)Jrj5RfWCycs&vdOXgoe1pAz26NiddbL*Vtwq^)eHc!wb!y zgE~dR%_+IJt1d1n8YC14o!~BV`S!w(lnllqLIE1V#FP5?fFcP*W}C|{2L02s$#9gM zKSlU6NH)I5_Xx}6fM?MP194B5*sx1EX0Te(o`5X30~xaus>Gfb7dUu<0qC81c6Sx7 zF#JZY(lC)r>144?9Ny)`xxikLG;offPP@%LIt$m9047N{Dzz;Rj>l5Cq3|?{SETpd zNJzns-iwQ2b&b~B#eHlUB*}LoXgujU(Q*Y^5`g$JD$Zv*$|+>auQ9oI4wK)V4C}4W z^3Xh8qA*X0)#h_2iuPp;53PI5kz^-nFHmF<0FGWSgHf_NONWNDfwPPTuabFK#JUVk zt;%pnPRXQjt~iw*4f3%MMM6sPa-yGg{_XM|RiO~2-nE`y3r;A~K0s1?sM#XSCG)lI z`d8ZBPI37;RxB}X!IBTN+ke*M&52fXh1TC}Q$xspR442cOh4t@B) zmy5tG_f$qWj?Zhu7vwf#;skvac~YH1_|)ZO{cALcB1I-AJQsOVfh*_!Vdr?zKWS_R ziv);)R@9e0dsge2B1!K2#2bSzzs%{oMdC;ais*iF3QzmhUtSl9Uc(|={ zqzh7uGmjL}3yF_1n>bG3=KcGH^g>!8=~)yuvg3|bSyFDkvS7zxil%=7?9czNf^zl$ z3QFSfT1V&>!jJnY8lql7Z1Vb870Yx`fpY}PKsS#8wDH@9PYeoR16A_>JbwhcK}t0DL~;j>R?cj7PEY+ z1T&1xs5818j{&A$&$Oa0oN6=)?7pBVpmeH$Qp=7fl=Dqk%;h&co+_{^r3!E~V0O1H zsmrjL10pBz4KA`Tt8{prt8hkn(E}>gi({WLJOYe}w-rs6#IC#5i=$PjLMJ7CenO)5 zXnZ#5)>iWJ3fuF=QhDS^ejV;D624dfq`4mtyD#g;QH4v4zBwGjV?&kBg??S$ex&$@ z)S*cI?z}{DHY?pq2s^;45#-BKJ1WMw)4DZ=vhOnU09c~7H9C1NKN})onmfSd_c1X_ z^10I6ZkTMD()n&;RbJ2nZWWp%5~QZ*dl$}CHKFwSrM4w4MiD%>@d%&c|xasEZ zpHfDaw!h1tUj~>Nec6%?=7>i^!0C5S@gC`a36#_$>+@#U& zD(paVT9ge*P_?F&BI+|dwV_t(>`J!$K-`A*>eJ7Q1Pi$`O5<1x9Q5F2bXjT;NrF#SwiBATc+Az++=pwpyMv|(k8}XkaK30+s=zFRL7c1a9gF^^5 zcVLAR-n331U=pPw=z`oKR+u1*RQlacKPUSXu?OJDrJ34SMJmJrAVP&c>^IvR%QrBI z*={gf9evR~r`>5Mnwh7iE~Ff_>l>U-UgQRQMc~LR(O#D5ZH_7x$!oyL)w?oAHax;f zG}d{Zwx5OLL##fj$dayY-$L}UoxMl*moKxYycFE#?8dMp+^@D}yN%vrMG^s6J6ImH z1MVVLLuM7JVgO16!WpA85^G1f;Xu(=$qjF)aUAES*@gI1`+};x)ESXLh8YpuSF{4l zl(M`^CrPg@4R=YUFV7nRQpc~*u9!vxvB1lVRl~#dy+3*0Xubps+e>>eRi z1KRRB#L#dIqJdA6SS|#{^4_Z^RT|my2Bk-aSId2mIluzQwlNV+5yvU( z6m9vqd)mwLsvMr;qG~i698v_26fYz~90if)TeKSFWbI)aP}*G_d}K9%hL2;=<3OS0 zm{?vP861mCKuPH^KKne`8%3NmQV}Oa7E7-Yn8};K~$%>(@8fMVv+ zxV|^W*(T^kgsM8qd-f8GT8pjbY#QRzLA^UH(Vq|_iBELZsa_C5EVo#Jheb_~o*d*X z5?TOrjOxp7T8G&+1m5_h&ViL9*BIYAiMot+zyx?uj11-_-O1@Fb z>y7Hgd7ZFO#3=xbW9tUvaj};SOd1}A4i~kdUN~P=^4uX%MLLuWmo1JO8jb1O^Zqofpd)?9&=L?Q{TemQs}=Sdf`2*W$ZP9iU* z*Gravkzinas@kd3Hj9LyfnkW?*s5*}C#i!}Aq7&Q@IVJo4vYJ}Kq@47?4#;#aB>#q zKr6820H`Avuj?H2WK}O;R2~DA-9-`QA#Fzb&GVy+M1#l4(u`>m-Aw~65`_SisYIud zac+KDL_3D3UO}IbwOW@J7Aa6bZs6?7Zs5Y()R=CAD1pOj3I7wvcWS_aC)7~(=Q#c&e*zy)8$j*@_>(8R}Z&H^g16& z$*n^g#N-nZi$og`>9t84(7M{7klNYr{;58=rx2EUWnAQqb0Ol~tNLcAr*_)O1y;z5 z-U3n6{N)7!x8%w$T8kaUDLA5q^VyPcESfWUO*%*kA03(BIeDXK8{|x>$DRJO@-rG? z6QFI#5YuTz#o1DZhxg_oJ6y_a({dEf7S?z;I3|B6q*xI(lPPr||8Rm;xU#ZGIC*c_ zIjxIRil~_s8YSWDG$cCj<=n|4hmb)Mj>c~Y#nh*c7A*-d>9UU^SjhsDm!reZ>A6uH zE{FVprbff(uc#nQ4vZpc;JloB6P@LFOSp^IG;MR zlFbT`3BKLu*qK#qEy!2dA#jPuFL=0!`~apH6a~AhAQ(ear93N~P2gNsJH~$S>oy5@lhwHC6#ZsXzM`~1MhC#X*2B+r;%V*0DdKM(g}A!L3m%~Z zu2H-blvz4J)wbOp^qynV1;8RZhZ$2>Iie?zI-RdVQ~*&2a^cg+uCO98MpD8S-8Je) zB2@`10*tNLPmf!- zPF^wIV!vkqBsx6o{5j`%EU&Kv8a2q1ag{rjEiZ8bnnD8)x)*qPOW7sEBQP+aE;pa( zw)_^u0I`nga-BL@6;9SJ*?WVtdNW!`c)-J!sA_4weB{+rMfx9h*aw_+Xi-ABO|gv} zPMACg8KfKrKJsX1sqj@!|s=@{$SkV)Y{QG z=UAO^dSos(U0!qtc!U|I=!Ke9r%i9sk~3g+AAUrhOg2;k4a@IiJWe%z(P40egZSI0 z_0r_H*c}m&wO8#?F_g=3iexP*Tyf-IpE~L^z#@VIpu!N3*#IYS%g5E2ufVk?wAOk~ zHR4RemLfs|Y?}>SxBsfqZof!O0ujFxPU;|^LL6d~-KF#C3c6Alhe+_p(-WRb$F@OQ z*-@{yb&8}JZMq0PG){XiTvj%Kq{vgWMWi6fhvjWC;|^&H2X~6kj0s@TIlVZA4y*1! zsiDl3ZGJ9TEs+Gkb5n{#-0bYA%BeU2$`U!t9-QSpf1Yn!Zjz_&5l6v7Vzd%_L_<{X z?$3UMPALwV#u(LeQlYf$D=8cwg5VHWG2X;vS(i{V^QAhJr16V1*+PQBGyW-UtzFg_ z1XH-e*bgd9?*F-q0vRPDERipovGQa-?+%jhs&GA=E`FQto#kn;rWfE*H8>g8wqc19 zVzx-DC&S4KHWK7j5jVPD^^bk5WGrtH@|-*Oc%X!bOw1+1o&mb)&HceKp{**hM~Q9| zL}EQ1+`8q>6IorrNn+jPgrH6qfu$G}xe#2a$)yy7TO3N$zsrKG3L=63L$*)D!OLzw z2&G8MkbS7Uplh6LK$F`Qs3ikDYDuUTdy~A#jIV0_;bic#)6eHD6^TIxsJxq-zqvI! zAB?)I@G?M(t|rE1I_aka>q=L}{dhYk>f;%!QY5Dt;0~lXO^;bV@ED82E{RmKZl}>= zpinm8Z~weIRA4XWTe4BcZGm*XQysBI>|N`>qM6OomaV8NRf0VJx<*u9}I@oY1)YuA`g*;bk1gV zA@bav>~OsP32G^jSF|Z{GT_tB(a}m4f^3AxYS55}R%9on#%b)ZdsXLIb|@FJ1|y7Q zUs@ofl$}Cq!SYa*)kS^4P|*UD5V*ni8fqEWVUr?J6)Az8UJb2qc$gZ5;QIvkv#u;1 z9tVnauCL%IPn0B+l|$hnJsMWB9WgwPM0*pWphx*oRDu%V3KzqTwE#CgcB61H zNaZ~o52%)m;S~u!(jRqJ)*r6j3SfmpBjE>E3>DJ>t%z%B?B-bFDGdtKREtCv@Vr-N zYyJ5}-9n;th;0Nxzp+IsLLhmRE@H3cKq)jDOwnL8yLJkpQLJ>MnjBZD+`Nb_$R<31 z?mlxpLJD&g5wi0rpUCwdq*r9@0c?wy1#NwD{JMzp0Ot$^`vF&D+!|y>_ne&aP>4L} z?g4&?ls{P#x+Oi)$I%jT9KL9cj_Hxvr;1?}+f+j)985d+6)Z9-aEh}&yx{1w6^JXq zZLuCzpMF8dD;XYp@|%@{1FLYn(=vj#mgMw5uW5Su>L0W?@aSAJ>8q$Ys-9Z-59(cS z5&HqV-MaO~3-v4rOcu!+QtH$#m`Y#rjgzb?vd00~R-^8;OD$qOx)5QT4k$QZ0nIph zMDrYGpH&g!0Ee#tGnXEexsI=BVU;VQ0~x4hSOo_Y5avk96P-`Dig*p+lxq4(|JgKt zTjXPcP3XNgAthMOn`wgW@<8dEgPg%E8sjV1}l|tJj%sk!B zEMN8NvEgH)x`~q`T5E@$uDZ`9iMTxH1>7x}AXzmnpOYWJq~ibBd5OI4UJyd0-2<&w zV{MjCu*#qnfPIe9PaRsXo3!+wmd-N+s=A*s;QJSo6MTy*{^bN->KAh+MA4ENI9UO` z(`rr45ih2Jo#o|+2i?|g<*<4&D9$?0;D|htY>-e|I65>o2O0N>r>=k}E#3Z9(V;!f zb$OlTxzf4ddY$rD#NSC!-dRCcNk--lZMQMpj|au6Uj}Eh?h)xrNlGm5jmqF)4>aHd z@-Smvmyb>cMB2=BPP(mQaz-gK3Yg1l>VUb0hwJzuTjfFW#V^0JO#pGyJgs{5`DsNY z<8;Btw7|`4T)HSY;8c9j2$C1EhqLIOOooYZi{t>X)cxQAl3*25%HS#ve!#j8QdvGa z=arQ+w9|WjR8`&9Xfi~d2G|lUr9`kjH6$VnqIKi5`}aS&^*ErGpi)qEkmQ7fk`;(l zfs?WQV(?{g&_D#EEl}fptP&0e7~KKoM{3lmmT<5D+R@+0Ei2&=!DA`#CY6gT!IF>l z24`8-@~@Ci0I1gN9HF!lvSWis`pAnqr>8{tDUFGW|IVvAf?G6K5JvQiqnFCyjHNAN3&X^RL}5WbxVjL1c8d;`*0KW5 zpck7m2yXN`FKWL}kz6rA9aG=0UY0jCLh89&9Hpp@_Vdd-M+2U;CCM!GPN|KJ(mAUQ z;v<^))z!EqTSb zvC}j-rS^R~IO|ULDiwU5fxJ4M2PsPmpA6}&+rbKa5{nO4O5 z$kL?kWZJhCEe61LTPKr8Jq*84E03glFh*Z_AQRHLt2&YbVg$fq~6Y|DccUZSvD2b`Z!DbJuvw`|;G(6%<3uiE=K)vb@ zCdF>11dOQvfc`tVrRmbEk-(7}I3#Z((elz6UkRH0bibcar0KK1aM{z0C%9y3u~0)+ z0}zgOtb3X-O*sJ(gPiQ+lSz(rFI|OJgHxxuV>f$(&k$lzCH^0Tl;) zbV|$}EsCfbEvoQ5eI|S5u_+DE`3>YsOuJVVtqYNKWlrPI8jQcp%Akl-fXE@2^;t4Y zhiqc9aLVB^N1(WiN8ZC02|6`qX!Enfs#_n5S2$rLDp~e)Tg{EyOV(9`WJl7kvyw`fOq1Rd z%N`Mhi^VM*8)Wi;m~Ap!3K7R9_+EEdJ?Fm|T#1M$gvmzuZs+8*b52@U04xzH5#Xl{ z$e%7!47e294iWhm^*NSBD?z{;t;;UGv_xAZqUbs0?Y&7|NLjS7#FE*@4Xalx2nEFO zAe6h+MSZ$l(dgV^;z4(Oe8%1*sHBL++*0E3`30NS6qzZKcf^s^<1WK0oGOiW9@Aa> zIZa|#GF3P3QFFCYrjdhO9f2a!n^ZUTx=2x0Vg>9=&{uL*ZG8?BE<+e1&YYt%+^?uGBY@wA;XKh1fUciM{Q3?eWfW|ENzkbNzFY~ z-Ye?QpyhCE`&zGCS8o+f7ic?h>miyfD~hEL$4;Ze0L_PE7jYOv+i3QZEuuO{?(Y$| zuXEiB$Hs1q9ZzurRNxE-W6NHzK;eq&c&5P%sxFU{@+xuUL2nN1-lfFmR9j@4X$M;r zi6}#*NA<-dnT&;0M;w;Cr5IQd`keLfWYE8$YxpYm0jk|+XbNd0M|Y7S1~|3M)uBE8 z(e*szq6MbVUZKA@G@e6fdiflLB8D^6s#!5nWN`ydk(@_^{&DA%KK+7Ysf$c0V5-1y zwpUQ$>No|Kt;?i$Qg8g0KD$T4fk7%!<1tQFHoD_hoDQ@C#l(q7C??J|>u}CVLT8bt z1E4#QG&>O$vLYLNclp2*1%iTzZ(E!=e%$Fi3wT8gL%NV0^T#Nt zB*%&bEa2L7T*0DTg;Ne_I!6H^MzV8Ewj_wG^dsEzSXtu%=j;rwb%!{Ha$-}FW(Kmd z+V6GJKEH^h4XjcN@P3_@Q$*6l7A117eMwT?D%J&fk`B$rheg>gbhdn$>>y;{^txZZD$Qw^)Ml6@hOr~b?P&`q zjcB+%QD2Eh^u0(tkl?gS_U`lgM6V)E3N&?Bcr>8rN?n{%Bn_Q_b$f7%YD%P7#K?e) zW1~1%btPt<0YWrnq9?L0vcUkSb9Ff0euQDySme@KZ(uZC>m7GFfH=6X$dN_3oW!K= zizK>AVR0Y_W!fHBOT)hj{ElFxI!U34kIq zm><@2liu+tukG?2mjO~AFu}@P$&#>9aV=O*3s_!pdURBp%66N2@Ryf=0T1Uwqx5b0 z2(qEU7s`wJ&m;z%kOY{RZFyZBKsR(aSdQf_-3UPBfLzvLjt&Tx1N|f8u^I!-yEua!CB&*41HI9>Vn9NsM1Ne z&3A@u+j$Ntv=G_=BE(_|$#uqtfzFrW)Wl zdWwYBa>)-g(rNCHBU?MrmUn=7a7g~ohB`Q-b#&1hpLJCK7vn4uG>lVcsZF%+OzT|R7qXA_c?WfK#+(e zh+qW}VnWZ5!|wMzznNbEuxjKh^nueQ_i%G_yDT$Xr8u8*-)wP*Ml{X`tf&G*vz*HS zarv-KYuTN_6b))CBRo2$COc;z)ic-`{RTBVoTs!lV-DfJ!ZORDJn7at-Z0Ik?bbS+ z(d9epRAh_X0kIJvJ`eEtus8~ae!J&(g@cg9*Cs<*6O>+#+l5^cx9eIINjHFLZ#%`% zWxS&i;F94d-F=LpBdp2Q=;m~gkB6s!-Q3^D&5Boohx_BKePS@i00tBvkC*#+R$WrS zK7^zM))h{9)aTM>4GgFJx@RSls^U=^t;u_1)D?~8lE+p~_T^$Y zqD_bHoB#S#{BYhiAw;Z#2uq5SmA&T0dDrA2s_OD=(A?%2RmqTGc}`eE3+G2nQUCz% zkA7n&W-=ud>)5zk-jM3%amADfybGBG>%xMLx~?bL6cY~^vh;aJx7Vaq)E)0yqO2aZ zcR2a86t5Bw1#@w;ErzHIC_MSpGe$bx4^aSVit*Qv(Zvmbl5&A$W{oU9RTxrDa>AuM z=ZI$e4D=8=o++!YNo`c5PY9mZ!&l?`X{sQW4%h)VOm2O3X6n&pe-Mw4)zKh!h;dmw z;enHAQ=c$n3?%Ez!ti?}@jKd?*|& z3aQpvGVu$NfueOxbr&Ch!SEXubLwigG=% zA+!V7e~wBXi{gwS0zbg*4%V#A^q)~Ok;3b~i53jy?YX zqkiF@fcio%ia@LSv5YZ#=`%9GjvbB}81&lZ>J4y90DO&^YOH879WvEA?0ElQ_Dqo8 zWY+nwJ26O>7rfNh)@Zm{RyR*p-?@|6Y4i^_x$`ULpuj0%qUW;VET zs2~~W2j-9qSo_is;#ntx3me&$yl)@Lpa$OjT5yWp^)3{-X`VIDL+>L ztI>M~z_v`k9YV`Mg0cwsP5)Rmv3fw#T8?L9@JQQ5D@qa;@aS>U^5~|!CS6?M=oq&) z%B1%Lusxz&?w#a-a5-g`0|s%2YRy@NJ61Ej38q`VbK%;^n8l-G@dsF_ zm!6X@isTg7Ofgy`o)5T{ap(px7FZ-yjnzD@th^W@?09cq2Pqx*niX!ND-YPV2GW@GF49a%%hE`vIN-@OEI-Jgj1-N4mZT=FyTVamNtPFkCo0n{Njs)-d88;DH#3Mon5xyaU ze%1Ah_*K;};PW(>FchxqyZ*jTA68Oo?0<(yT{l28KD4f}p=bfbSP^QegD6R>18>io z2IuiC(y178$&B~OdB2=emL3);LVDkj^LB1tY6|{KW+FTk2JsN0o3^v|ae${4K#Ggo z$9h7eqJSqU-Fn|~B>dhv{lIDfdVx4P0_BGR4pJ8{0)0PZvF!x5+^d=2hl4yfvwX&B? z#;8(L2vK$*>{X>^9d}Hg5&qrL}`ei5O_PIFa3{HJT5H` z7K#l9{?PoKr1k((B+T(FHbT5}x%$izXNI@*1b}OlvTmCCY>KT$dy$_)k!Ywu=R|ES-0*vml_%O`C5$BVh{j&C=bw2N4G zNU8JyH^&xineVfHK28?7@|YN&(^iOhP1X%@$^#YQ3pjO!m;&kQ8>1dPoPks>VBR>o8`e30O=`XbtEtzo@hjP?A_{m zIZTy+y&*!bdX!GblHewkeU9{%$5woKz!9c0GK!Um#dlHCX`WNRtg6MN?INGNoE;t3 z_T? zV`k4yvH{f<`e2S3L*SwBCl6RMt73NigmHa#iK5vn38h2Q)1m5CYeeaZC7%uLXxcnQ z)g$Q(z$naEUaoRaI(2QYU@DW83(7~57uL38Y4Lg{w=U(T;BPX)o8~T12nR59fIA#r zHE?)_0mDltbQM=7el`LK-;v&w6_(sKz8q~0`qVmHdN+OA9K$^NW|r9Y(%PUAFuC%5 zs!NwH0$4U-d$BfM#jRSOBRYUp(?Fp#LWh~XS1i6^dfqDisOEf zd@aeA#!yCG-bd?4E<1;HA2cY{K8eZBhSQyMLjZ4GXN-CMO^BX$!^s}2j?o);1 zk!{Cx5Q-kU1V^R#Ar;EAy1AE=#5}UVk#ugU$qHXivSUfp(G!J+%JqChC99AYhPtS` zAN4BF|C6MdRa(T6q#Z%6zpwihNY)R@_9H7En56WHc*x$*?gBj@qs-Dv$>MC9^`~n7 zFs+j-Eg_NuG>yOr%IcPmltFf+59mq7Zvp!LwDK#KeiDth`vBV6x1G z=E{NPm3LInrbexjuz<%S9y$UJau8<66X8#lV^aK&eC#Xg1183-YN%M*?6V@CFf=vG zl&`;HIi7K3jT=m+4Tm)G)XL>K;E~m?84ek5NBJ2Cw4D(n%h%dUghOPQYxR`(TCNRz zbWNe#C5^aEpk^g(a3} zzkG>4h1QSwpPPG1iow+)L{tTkEP}gQ|ea{{CMKJ`;W+KmRd~-M! zNzr(Bl9w})rSAtKjmdg4kzKSCq{9VnZ$u}Y-&Qe*tD@~1Q7zAKm+lB`A;^rBQ2wY= zh_1Zf33miM(nsIJv6fp`0m-I^PGW>f{AN6DG{TrBLtI3Ik9W}z(f`8t3B&hu^T!}p z6;{;tgfc}qh(7qB-d_f(ek1k;9)U<6+$3u1>P$fBhYWWv2%K{3ZFOi(D?CXur^4;n za7Ae4vMc1@4iUDweMwHl#bM8r2b$-_sc=j?gBg+Q-4w%ulfXZ~yH8sc#l&B)^RDWX z7pX2TaFZfoL3z83P-Cszp^r^(bBEXR*a&jsh?Uv#WDl|>FYVY^KSp>@pHDgtz;=ns z!A{8&TSYt`u(yn?hUOzDBmDcpGrVitcxTIlN&yRvV$}>^{&L#R=WUGjDeoc&%Q*Ibq+ccO&>jP$Z_BB$W)c!^)a|xoE4{=}=Ns4rk589-pSURhOhyoFQWo_4x6` zgGG?PcJ1$p@Fp$ISq&I?%K>c9&_&>^YVMPpEFCLL+rtyPrC>l#93XVS;dO7$pcPkV zB{}H3MXEZLR2{sAgVAH|mtW3n^PQ50_*BPxFFiSgYprA5c#6^-LXSADfv|oy?IZ&L zG&7#&UBg({E_L!3?*nP;uk|0*0NyY`LGSCht`?V;=2VG|CS*!z!j@*u?5+1tCR~Yt zc*Ace^^EJ9LQs;P!(TKi$2tx#E)Uo920?Bozo+GulPS4m{A`HR=TqxCwm7D5-Q5tr zkHgw*id96Dt}pzC*P{vDG-!q$8Mx&f43-8b!5TH3cCZMh>zV43A_dd>Sf15c!{~72 z`f8lzU^YsZ&RG~6&EO;<^j-z%tIZ@!IStj%!+cxJs98U*-WfZAjvRyRn&* zizfou?dY#dh6shVNiuC@40>ac_#)0Y44!wfu`=RlXQ=D5>QG9YsRs+|lRlr*F}w^V zEl(0?Z%}a6ESK?tlOABec1Fic8KqWaMg>>cu5?Ej3GybJY`ov5NZKZ#w)Ka&O;<6x%Ld$hapOp`F7-}-q4DI{oYS=LQT>NAif%P)wo_~uq7vz zMAea#w3thgW6b3rkY~;%`V;R+ydLG3&cP7AE6U}JO)!E0nvA3Jj~GyKeYavH(w31K z8z`|zIp^{#%;Eq$FkRT5)hAuQlAk7r#HRkbnpb$iF$Pv{QU^S1Mf5R;UCK3eLaUgJ zI`6Ax)L7#3XxIXa5%P9;NF)*T-UX-qZ8b+tcMtD!CysJW$fiNv`SlO0=lhN6cG;?y zKBQw>`?GGD)5PVElP{7`2VHy@Oi2x2QaTrJvoNVY^yw{;E-`sKqYmFth?OY%;_ASI z>(S2T=$d~zLe7`%GN*_o1;bvcN`A8Y#sXT(^d~hfz zmvyT2Eca_13%l|LKJ)adqW8mQ5umt6do>v=qTh;;xjXB-e8-eqVYw`N8KF_IQf2Fk zFX*|aNwqQXOVKC>w}VqNML)%dtvo{MtK(sN*U5cb9EuD3l_r;ZyfdKfk4{#kV>8!U z{BAsHH^*l5MYBq}v{p?HsdD*~R^{oUser8Sp{FO$ycs}$S{m!fMiI>G7>5v-=fi9+ z803DRoI&ZDSwY0rqv3I%nu; zJeyp)uw}(TCplnlSKFt4v`TEq!0;}aHczv;jrvbX1%heBE1JaTepHgsIG*K~@9uJ} zNjwjT&J@sQvqMGOv&z(L2}=5u^wa@5Fpbg`KOBChH5;q#^$4OT0TOS2V;v6(gwgPN z09p0`K7%e&nYDB=03*~+qwpcD0@6ne_2}q|9!U-2(lB&wHf*%|l&C%K2V8Spg++T$ zVMr4L&yoz22zWjE@&wT|?pAtuLE9hwwZleB{3glc0?ueFZ+5Kh&4!YaL>W-aD_pid z79@zWm+tHUyY7Pq)->eLQX zJZ4@a>e#C0p<1@gOpn*NyeJTBgPfyvQ@ySyH+6N~bU2&V%~>XA0!^TtPR?+tbGd8z zt7!}ei<1#eU0%0inXv45Sid%&CYRro%Z|gjnVQE{mfw{GW@)&VSvSdbD1SB`ktn&f zCJQ&YTz!GH8wQ`Fbq0 zB@T#^xorQ@C(2^EQiy2W-_PI3`&7^C%4l)V&hC0w)0DIQ5hO-DV&|THq@1jwkxEot z>Kai8{~kP9dnb$_}J;4m$vL^xA=z4MM?up${Sg* zWe2pW_e;2>^i-r4K9jh`eRKaVtYR(d8*$&bBWLaWBO`1Rpri~*e!tp?XGvniD|cYm z?}`R>8@8A9)Pec>*LrkEg?W19b-c-F(RX<$qVzoZ`oy{OUdL^4jN22b4*rf zCX6Xg#pmS(_QnIXUZ2M&LARDiwgS>CbnAx-lVQ7Oj=E(lX+3S9onoXv0=DH>Jki#+ zDWHjR<94Q3WuyXQb;ITXd}wPs==hQ<_MvT<>72|s&C#fG(w84J5A!o!$P$G(MF|z1 z7|0ph&ZvmTRk8kSKl82?^~L)5h~MgYGv0LR6&D3ae1MPSwdJrpr$UzefS|)Utw7}p zfB*;6Xnfw{1H>S(q-U()b9DM~fa}XlPn(yvE^m{b5YVhC($%N1GD+kd%O{n0i4&;e zS$~T;^U_iSC`p7_-wqm@C;h?xqH0l>Xen%O?ij^RdPIDQW&tC1&E&pjw%c7e8O8s^ z*)aL7hcAX`ODCJ&1HK3y)K{_p?z52&CWp`ayQ|L?4e72PoYWAS7xA_g=t zxc)z$CU<|IG+jMjw%zJK_I3#MuryjWa47AfUL4PE`+wlo@)uSrJtU4yTT2QM>GB_W zVA5OXh&~SkmVJ!*NE#480({jp(J4eQG``JJi62kWR}deLMjy_?F(?rM4w&cis(Pl^ z;bN0yDV+pa_SbZgo{`(g2}J4Rg-TEcL(AC%WZK#gdErDf@+IqqguV5aVXWXhYAoqs zf!iM)e+UOFsZ)^HB~2_DR{*mkE>6-@&H%Vh<%QB`^RiUbd^1l?)g^%g&Vt;!ZQ#;@(f= zg)OHlabX>iEpbE>=Z+(L@=9dGdi)oylF3mS)jPDiP+XtV=S& zNrWGcKJwMVHEUn{rhX+e~_)=Bq_ zlr3=Y*DKQ<+-` z925te%Jp&Ws+CJ}f+Kqu!{)xISI=!5d##kei7bqS8?P7*-cuS&L?exL+;x45z?J)rzBbO_w0f#fsp2FY zQpIR>d3?n|J=}F>eMILJ!!lQ42vPQQ5v-L)C)tHX?sI9UZ8UqzA8`5~ys;x5Di`l~ zWs>I)>QJ8nuNB+%~mAZc4}T4ja|Fd*Pdpv z(cV)Yp#W;4=c9C^)h!}=v!v~bWTFg$XpEZYs)>Y3MbWTln$KO*I3s;QQ2_BW-mZs@ zD;5h&gE0SzH*JHpChe7~*ds!O9W<5jeu!wixilTg%yz{fu$<7V(YI#4VtHY4l9&L; z7?du-q3t&%H(Q0E+`| zhgb-SIk|HxN|emk4vQO40St?iv=bQ;Ywhr@?&!Laq72fNb;N44RmiRaz8ZaD;%7Jh zxr%9maw-L%kTij1nF3#C^uIpEfRc3C9JAWu^hlfb=AsNCBAdHtqVrN7lk-iZ<4H@zd$E#wQ>^ZqG&TmSuk{oB9)oBjJ! zJbiE>M3~RNq0Pk8_gnO}TFp`yZ5_|59%=nHWZ+>(QN0# z7!c&$n2pH#>igt~{eQ)|X{2zS$D{8hQ^puPcnm3gVO=om+)_?5D?Gcm*k~U zo%G`e?22fSNs?}PAaCV$(?8^9&ytd~ObfOJxy%&66yZpV-1N&CMZ*I~Bq@wN8%sW~ zp@qjgBONbgCvWi0mbrqZJWqf;g0{E86E07+1}uziofZKU^`4e;xM&~xYKCz>rt6Z;1yP@2~W(I9lZ*vz5%1 z>=E*%`=h_12I-^M(35%yzm!A-t+Q=Jz%Xb8=06%oX^1;aL~fU9z>7A?wxptw81ukC zSC8<(gUXULU@U$*?V8lSQF`PZ&SLy{;fogdeX7fQjfQyF&(@I#MYcI({GQ`~^swFZEQ)Uz zP6Z8o^JypwjMWhXH1jaWZ*(|94ecsfhT^yLD)t*278`9>@o>F>{d2Xf;6sP2q3+k} zb14f?S$7p~*BZzyo20ADW9*2^kyXK8S6sEQRp~6eLFq-^{amLOrM-d&!=Pm-W9q~u z?$!EJVP{3VsJx2EKO79^+qS)LYHLzOekal5ZQPe%V)tPqRHEKwTZf)JV5Y zejrfzaXI9Bz(2a_6#bvNPTQrLysN*SB{(16@ zbVICWk4yKR0_#pDR`{m`j~hpDw#m&VB`rhh()-0$x9NeC?0SczIK8{28D^@45zmEK zkvCa~PSP^wBw9q$JIpd6ajuJlB`~sf6bF;hh>wya)YgF3gFC4|nutd5`1t8*mM90( zgGn8hk!HHpRZER*u+}6%@-mzlk8K; zx*{KR1QmWF$GCm7Ms{I51vhP6McYrhy`++kY*GsSc3}|5II4KUymK#X4oRX}A~HC( z=wc8+@i@=}@0#D^ag?(HI1chsN7golp({6!E0TR1aVKfZ-rx0>q}*Z%56RK29HWDs z6F#95#bVpU7i*q4!cBx#H#RN3oDMq~-8`++HHGR-qc@Ov(8MS#`jjm$DV$0Q*1RU((T8>c(P;=Z3+8LP(zMZ<)sY1)*)*0X zX3xi`r$I%iAJ9bmttEs4oFp~mcD)>Gl3H$xXqZSBkdBf>m*>Q}c4RhrL66^sZAu!; zlcbEXSkMTeNyJAlM7Ew=*i}v!N;}0Y@}GJ2{Yw>`znzD&{W6%wo#>X4A5UxNC^CjhLih zE7~5CH3%AG%iv~j=+biMke+u)AfybOLSmnbvo%YtTy`83f9_NJM?UFtO&ZX4N59x; zrEp8iKcIu5=jk9o>%dBHhZX?MVPZDt#*viYm4LXz#E#>xwO2SA*3uW`uI!FJt=iPQ zLONW)b}aDLrAZFbd6310JVrkU+LWdm0dcR`FgFi%6aClncbB8E>t>HQIPV}06Tbd(XN_#5F(iIR`kidlPpDuvL!?O`PoLH`kY0r63 z)O}6Bt{>N%ny}ns<(!?6ux>#uem}GU)R6g)I?iK}t}twb{n+{!DZdw#GUW4Dd~ zMC=BcsgzJ@L^vgFjbEJ)M^dTIm-r`@DxJ4C6bAC@^LY?Q>2#5o*&Jkg0e^?nybT=gh2(iODB0y8hp0#)y;Gy_EESqkh zC@t3iYBr_?{~*$`X-w}1MCl89-7qr^$6a+7k602HXbx{icWoQ7q;F>h!kq5$B(+qR z?uDb#>tY>jmo`e$mcg8Lq8pbd-%x!dE#FvZBAlnROPdBedOLYWmqe3P5)a^*#MJ&i zrn5tI7R2R|d4s6)WtKR0;_^tNTv>OB?7K<#--4{Rg!q)h`?5A!*wrlj&o>rtGO;WGU7?phPg}YgnbJ_EZI$;!k8P3v`CHq8!{c0LTMKYC<7UBf$xMJ=cMula!B_+T6<_$qfo4;ul z77PK1i!9W78*oIi$<99KR>Fm6vVmwUft5W(VaJ84F9GsyoHBqX@kt6#IH94GFLJ=S z(6vuk)*P*?eliT8ns1sHgrCu1|+SG2lxYw^zZHL?(e5`iOaQmg-<}nr9BQUHSV&2OQ-IHkbimVl9&VQ*^6ow zd4=Mp{oSL*PL3orTl`Tqb=WaFgj*NbadjB_uarC zn?dw3j$Ja(CFui^oDcKp!<8)z6NiuIsjYL3uA7jMW5$Tnk0`1qMH%zikh_rk4ck;q zqJZY@=s#u}za%20cHUT%@GiQk(j5bgwn6ijQB_gmq|JIw;@{wi-uL5F*eL>H7hI7K zq!_c;0vkbAtlrP^G4?n{VJS=qX1rI>t`^mc@TPRlSfpDmae)$+hlNil6AiK~-3+iS zd$%G=AJC*v2O1&LB}F*PX1w7^OK+M*hVi6lv)debmGHdc5B6$%KTWTYbbEoHx(p4dL=k2FnXMXU5HZvf6I{QNH_txi|Xq7ltx)(a0%3^8mNQnfr8`tS!pDMMs1+ zOz%AM)t7bmEQ?WqObuCn34QIu6)M+ifO5fiM_;jbs>NeUT#JCjNI%)UmUnHcZ2MbT zM`_+dUm<1%a!I3n0;Ob5>h2VqAPpfZw=x`?C*nOxz`A}KDry*Dt(f#9Z}($l>q^3e zO0s&=Np1A$oJuKwY*``!FE2&0;hnN6>3GQdx5ma)s}ET~BYoU2em=C%IYayZDpG`g zW0Yk-YueL#QFUjv_XAj*w$_$Bo{=Q?{0G(-bt|1Do)Cc8fIWk8Wb=xc1d%@`W>(Dw ztc|FS6rE{!u?x%wKTO#%i10DV$Tg^=sMVEgV|cHu)_%UC-1#YaOv<|hBzd_TCcxgO z*=mZ=5Zoc9a?w5$*~!J1(kCP+c8DXgq{ue$ZOij22n~3|cWBwlEtzj?NJa4)t{GY1 znvRj7&1UBiar+kTsqXGNmK^j@dBDQAkF|P5JHHe=QqlGx(9@SP-e<+EvcRA#9C|8j z)^v&T=sM?9`*@r4uhM<-_#iWX>!0cRm3t3t7`WHy2a=nr_uyb&EqXemF@>3?iJ~Cs z9H`K=p2qyC=N~Agj8Cg{&=zv!A+Y`#o6D5W1^Va_Wzd#Ai|@5`F2LSwy5)r?PT=n&~C$}H}ZcsdvM1AbAx*-Bqhkc3KKkIw4nlwcIWP>|#(QiDFpDDfyH zjIeytlD!y7b&DqgGk4oZQXZaiO9!$Zr_3aRx@*RN=P_i&U9!QYugQ|F#_D9&hsQ>` zISy8F%NMgY+9;A9B3w#4?ykNkezw6nkW?j@uSUO--lCIY*s}B>dgO2n8>g~3O3YM9 z>cSCUxYDziL8*drTgjnVr#JC_krw zXmb8#*4{1hWiLOcgh&TJ%6GGEC4EBTTog6+l*C25x%@7&JkVa_V}7}BWNQ#~Va~a3(T0#s%Mubd_K41Zs7AZEA?6!cnh6Z==lcDA%@Ob<|Unu8&q) zc@)9HIOOY5c&g1os#3qb^7r3iF)%n5qA2q!+vL9$Yakprr^;Q`lWsjs?X21ur=}c{ z1*P6#OxKL`i;AMKz=MFhuhsIfHzz@hDW`2KJ1~Ml%JxZMF<7=re!2)opbXAUYQ(AB zV~b|J8vTv&%ByW7T+!Enl3m9wH1l?uSsRn|KRQl82If6-Rb4KG8J)McQ zg{?}OhS$kUTW7cZKl-}kFMvu?4d^TEh3DJ>UEDFWywBAGVJr?uC;ieMav`{MYU_S@-3BKP!ykm=`oFNp2jH zm=THAJbt&Dow3V%=V@cSSP)!MaC4f66FdQUY5+ODhc3b0kE%)*c@C(#StS9<#P-Lg5W1( z#Nn%nUW9Kb!NH571f2}tJUIuFdf@vJPVdJl0lh-R>qjK(yw(>*qC3 zsMcma0OHnLe(_VCTh>VD0h}`>);Tdr_c>e`2~&+^#^1ux@7{8SH>N%h!org6MBbypp$cFo-*ww5Jk7{iF zPVZo2r&xjFSp-ND2gaa-!m;dg$XYrZUn$1$=ko=Tjh5Q)_|%oBcl>M+q0}PttbK&& zo+~*dLHAi-tZ{TWfL6pUw}Q;v`a&{40Ndkq{s`-mq!G{l02k_>;)pbxMUqBiJ)sLR zXy6GzY#czqfu!L)$9hp!{9?daQn5hN_YJ;$?y@EMP?1Ts9{5_=zc4%}kw(QQ{A@1$ z_IT>@!{I6A0($8;9qgM`u9++Ul0bU6iRx-98{=gzx0V82?8N?sxMIs+5TNqoNub8; zPi?!z9a}=6;fYC$E5Cp&&O=w!yVr1?GLb(^=Sj3Di z*~j&Y)t6GydG9!JB*q;T(ObVG`)0dPAqQ2s1AE=@>3 zu7iEb)nJhb^EY~dr97x2%Z7F^x-!eU>f__2u8t{!Ev3j&02N`j)$LmM)_BXxb+jJ> z*%afT*7MuGyWc)u<(jZc`Xb;O1tx;YniyvC4*x7S)KV81>ek4Ai zcuWK_;Goy@=j>=mw}(|)sCa!$l6G`7lgsXBJP}Dd0=J7uKGk&Acxe0OiG9i-o6;pG zZu$luMru(aen40!Up9spi08X&7u%|_axZ}L*oX@?#)Hk(nUCxDgrDQ*6HggTvH|rx zmEtM}Cl`fS!6mI6@gXTej?b#NLNg=AmsMV&^qR6l62w*a7%d1%FAx?!`nC3fPFwwe zbufu~+t2!pMk0^a#nlb#+p*+m z9dnP8P3Dt-*zCA{N2>6JO(vZ+`2}mX^TE8_ZBtLWHNeuGyQ|g>QKbil+`W-jZ6sed z=f(8_XoW{P6QaT$P@FlVdNe)+l9FJ%q%ElbdkkVNc`krq&lA7@m}2<#|NK+B$QGF# zU2K$wmq+}#D8}F%eO*M$OR|uh9Qk%Wj*413QcoRyYpAmR5%cnrxj>Y_<5L$s34zR) zkPa5eJ-qO_4K9m-cNe7of=usxlZ`VC8z+2c_;pf`=q3BJvRcMeiy_I3hrckM=(cvbe^I0{ap;o#h(w%e2@#u4J9H8(eB}2yXJcsfxjMnlKM|CloX2<4x{kDqM zWx2X`G}QISs&BTOopK=xkVdAe?%UILv8>LjPfcp=SKi4Y;6kS|8~CjLLPVA*U`4Gz zwpTQY%VTx{-KmXy*}huF1_%GAI4I_buEuYwhVWuFf*FK+@e4!VmgyBMm#_p6$Evll z+U<+zwD_TM&p%a`G4^H`=Plit&g%6sO7e@wLPfWW+<>Iq65=b61;m%hr5)uuz_Gl0 z)XlQZRrTds54;^Sg|3=u z&6>}89EIevDz}r1WX<&mO+avJ6KkcMa^Mz`nK9Lv9?(CV7af7h9Zd&DD6dDSJxu%S z`mVpP(-W$ERm&;7=CUv9<2fX>ABhH3?rpMEiwBSXRxPIen)g|54+Cg%8jHlu+J*I< z!On@#{r@8qk zdR=*!YF!$0L!)pJ;9?E+%sGWDb@k9CHxY5j*Tjr&{At}p?@H&8Sbdf5caxV2HB z6h-fzxJTV*7^DN7kk@AN6xT2&YmN^G4i0|Q7pgJ zxlR0fgjz0H938xqy(nEbMtT|pbP8dWdwm-mL7j9Z#W##ET{!uGc}+wB?pAR;hWlWV5WJHCy?EKP6+>L8}oxx9;w~ z*VRJ~ER}ytf~6iqBzNAf1|Z;B@YQUM50s(gDy?!+3~;*){#oSBma8mBv&jFtPN7`m zI~Xc~NePq}&xx%^K`ak-0cqn^ZALV6i60l+Sw-oPA(S3ieQ4EZ)nD$D`a0oC$3xy; zru0Qk!ZB%Pv%d0SBSHC;Uu_;x&35dq6r)|eA6wAI@dVx=FDXJ(P z+x}~W@w)lFO`o&;Q4MQ-#Z6hlWLPXWx{IiwR!Bl9Xj_j-Vr~R7zUoKj{ZV}tj!9gl zj|h7^BjrVr9SzI}5cWe;ji2i4Hu18hJv&M1x@CSDGoNLzkK=ag&Wq0Fk~|XgLHX3( z*tA9Xe&rEgUm(T~r~J(2{>3;VBlrpNnoC+7;)#tPdV7y=Uo%iTthLU0KpTs%1R4ie7&5a$aTbyE#a)=iT_YtnALj`zempQV6=bi6pd`w-;2)Ez=v z8_@_xzKlQP2g$Y2oGNgPVoNp9*Y#6R&CfU-v7~hX-lKMk++nwEJ4w6uD93~a6ORas zET3LsGHt){FQZ>>m@+kMet|dyLlwtdp{_|lwVe^LS*rB@bC-Ckq4L^~*!35~yOfFU_F zy&^7Q8cXT1&ZFq0;~_Nm#zJHL(~GT3QUogV2D|a-+<&g)=$|;)V5>sSbw3R&@ zu2I_N_qT(Hwc*ixVtY)NBGv$6&e^Ey(TiD7iWC~bheo2*nfLQbw~IL+03q*H%M>w? z4#lH)aQYY1W)d@|(l;c4Wz!J5e$j4=PI-*cw~T9X*5CI{be_xY8%N`uu^Dcbl;kw^ zi&<>aJ%oIe1-s~G0A)jf$<`Ganp<9v<6*#3Fnz&zASTsbf7S%(HJxg|t zudsp~1R;99owJd|8guRq&hjynJ)_z$k7Og(z~TF}zc*XoQiMbj-x1||g5;O8lG1UT zFN)sgrJtwnbCQ+hc-9tUMRS#Sm!;PeKsb`qs)^)M=>rnBIU3P^=%QcYl%+_BxM43T z@3FI+)FVRNFlpTn6=i4xsD3t#iNxKbVkQc;v|DE>U~)01DDxZ36G_gFB0_hJF2tyw zzGxU-zEXgZ8)FyPIN==UEPt63AVVlxj+!|+DN0cKDe!igg<4Tv=7RdX#Ojt0B~?p;lpzyM@ABnLOtdZ&Dci-$&nvYL%6b^aNt(kfM3&sHcoyQ92S1oMx%@JWVVW*XDY5a-Sm)<@e9* zL%Yis&ZYg~^!N@3S2koV(POIis=23ma_R_JPXBg1D;2ALaGPJyCd zhV(6sOppE!v!Dv(q=1r9R(_=eDEuG@iMmzhXrwb~Y4*DK{K_fjh5>)Lk^B!Cx4TfHl|{ke~~3q`H|l1lrON5BB>5x7}R=zlnRh6FZ%h7G9I=-f+b zy$$OidnbxYa-Byt7o1B{h>>hVoR-sQLnv>Qm4_2|=ZVT3cjY-TxFafK*7r>@NDS@J zMq``3H2><+$*8u={T8GV*aPGDt*)>g5>s3Kin}y7t;TJtr;^?k5@}WvL-*)m1}Ly+ ze2f=e3Z!$!6FA&rAWDkgGNl&oyoZtz@3HiV;#pWH$bU7DL3;G~j?T)sqN_J&JyS2> z5$1@c=I{%q)&wDFn_@`}aF${jBup9M_C^FstbbluU9sviI6M}(#dNKWk4o`14q(I+ z>BIK9sp&`+U1xE5$c@$fMlf-C@TlKWl+-m31OdgD#5Qc4M#!NbX||XHB*nKl0us}< z(H2py76+^X8t>9&Jsm=fvHp#SM-#tfs23}kur!_}nl{oDEs^iV4+l4rp;B306+d&V z&YTir*>(4O`%;>fO&cuf<>%_|E){hB_y72}fB!f8_h+$sjq5d^@swoY@&$#iIAI!a zu|>XG1`@{dWZSVQb_5bIjsStc83jt=CMxG|jvt?vZbbc4KvOh@`BISPUkt%j5p5pG z<@n=#U3*t-aN8$jjW#>_M?0q-N&R@6HCk~3F`y!%=Y6CXD-RzFM0jqNr!(dQhBJ{a z4{!(Q+6!7#wDF9KO*-4Dr_yfdon0?CxNp*qfrL+2{rs652}v@2Xoko+`Q|>}5OKde z24;tR`3pSlA)Y_WsU7+?xy2KR1-Z&|AF^Lpblr@Pvn0ySl>F32!$vv@GE~-!Vw~%l zRkYWTZpQ7cns+rhW^MbUk0`zr7brHUBO0}+bv0`52H^!6CRr(Tvz0B}r$|?E*frpJ z(xZFXxkb9W?snTuBwnNe-Xq{>vo-!iHAFy@?geP{iCX*c5*UuB)fVJNI?_W982uf& z{>wTy8j%3a`$Em1)gS1%r&i>fv;g?pNMCBrTEN1CIBhAiqHlYQeoJOSB#zO!crwX` zP;sLXTcRV9HW?!>Sc5N1Mx`ehY>V-onc1!eT;p18;MGlqp&h@bBs(M=k4DGS*v`3gSQxzad=9xD?-o%uai9>HS-1CYAS2J5h z-Ch1#u}mO&pN(R>?LSF}11Mpeb`G^)6?0!Ars2)hntsO}m*1KIx9bDjvol_Nt>bxmo@U`;x8=H<-MTwV@7cPB@Hc?QN&fNsr>AyYJwC%&I!#`vJEb zyJP?T1A)JK{>#Q3C*>6|zxEY(h312JEN!Y1(;;a(VFO6JtQVCxz*cEa0W(Tsv_@JW z-trrZ-Cy%5ZK`s((vtK5c`%x+>k6ga;^rDXdzmw~<#sp11Dd(u9K;945Xo+MK%_Vy z>n5?4rS(BIJ*1xN7dq$MkCJ0AeLu_36L0PE)FtUI+X%JM^|U2aGlXg&LU5D{QG?(q zudxLjSY1DPQQ{-r4{Iuqukxb9sdUH=2^WS3Zv~5Nkd5z};&RUA38gQ?oDG4$;PLrq#MiMDqo$Y zu6gihQ&fZ;(>CMXWbf;0kvgW8C#oF`TR604Arv;YB@z}3H>CU)15BWW%nz}L7tx#Y zs}ew=eznih4JwyI$HEOdtDc*QwI~ZaF4u()$ldG0{IiYAQvMd=r$BrlltJld;w+WF zg#pc?vUKra(vqrF!6WprLk6u`Li`PI<@(0qNH|=#WG`OSY?P}+Q1R<`8Igpk7?xOW z%sLqA#v3uTvu{nRE?30H+;O8LoY3-dQhm(aRq0EDX+G6uMHT$G-VjDbGn(K022Y3x zN$Mgh$u@A?GhC#_;WK-#wCmFYFMUD$Nc`NE$r+d9o2P0W`;%l5@6RHW{VeJmX~%#a zjEFnhOY`k^{(dn7 zIr=|}y=0a(4Po2I$JIt%fOP5HCblU!Lx^F_M4t4MG-IpWIWq-lKk9n$oM7u(jLuso zwOwq%RK9WaA#<~LN0a)yPKk9e5@%m#Gug*=ES{&gG&5od>m;hea%JOy1SW57Fi#%n zTdr&p9@R4#N^%S$z`YuM`3wAqc}kj<8|?wl(&6!W|NAFs&v`_KBr!f#?F9QedI06d zI;-@e=!<$5Elm-Nuqi{YWyUM(f{=YU`aGGDKMEFMxfSDRFdg2J46UQ{siHAS`ib#2 z@t&1it6^=sR;x|h3VY@#+r3vw3VIG;>W)xhv+NI5_Z2A8vSu8N3>Gf4MyqFztn>CIVM1 z_1KV3n}ie*nwgB^G0?(sdz=M5|D{)Va2&JYmfzbP^{GjkZ+X_Fz@efV4U10E8*}%hOXyXOI4EazcUgBS;w1?V2D^8QX0%Oo zp`>pI+#zxLlt+-h9Wj5ftSmN$_9OuWjjGsc_Is77p^8~#841Q5PndYA2F;LWujo9n zzMF|zE3M5u2-q<9Ra92x3J^trk7#WwU{2MG4NgdTiIrpWIAMf*renjD4yG*ufv9E5 zHx4e}5gO2nc~ap}$_)_*Bh~S7);#hcZ?g@>HS&@&WH0e{$`in>(J7YasYRi*U1veY z(%S9qmMa)vAqwW}w0#^PTpi$;nN`oK^{9n%h2?l0@>!cWS>^TzkvHcUUN@8b7c)5& zaWT8q+Or@3dZ~u0eT9Hkgy0A))Aca&l9cnc^$`@csoTkhD}UlF6l&V$9V#DR%#66O z>2hNxK<*gtZqC6lVm2U_zf6wED|b^<(k>SRgNE5^17|+1D1{hcyAD?cK2~mCS{_;m z3xpbC)HBrd{kCq9WSf+P6*bniTwdU-c?g8c_1o*=~2m+|L-n>P7D zgU#=wRiix4W?y>ewco4@_?pr!NjFv|-E8`9l5)PvQ*YcD+M-sAMKx_-r0^uYgZ)L` zvbHhi(aMoT(YYWS(PiaPF>{VKF}b%;x!sDafCWi~>2LO~1oa?E40y%{@i~1PNkDOp zMB-pue5f81gHh7hMCU^+lerf&JhjnHcpjs_+fEiq?_Lc0znFwm zzD81QenUKq@OE|^Rbu%X0rW_4;A~b48rBABEWgDLiNVebu*}wB`7L%h1d&cVT~rCu z_roBzuE|$*O7bj z)#^9Ne3)0{9U160zt2HvMHPWaDD12yPSQdM3QLqWjFVv8_WP!jc^!zQqgiTnMJe|% ztJ`kGEPXsu>dcHJv$8Qax!m0G?c!-{r*4&3i!?PsVoo=GJ88E>6ZbjUlfEA2jR`F= zV4}sFA&K2jU#EoC4ENeG&+D$Vz_jmtmi)lh+~IkQY=)j zCqtCm?~aBv6FRj%t@G!$jjppK(7{KmXFu%m3-?#WJ46D<4;I4-c+#`S`e=B#Jg-|y z2p2S_%CM3&0=sK%ExQ!CQcPJKH3DH@jf|Fhx+%uC!Mz&&^>J2Ji&N&FL^Un#*L@6H zi|2Stxs!${%W8O5etb#dw7CRvWKTP;Ym#*19OVF!e;dErH}s#FIwo^`HB zlaoH>YCquZjZUbOk$sB*w#!ym)T4K+l>R99EgTV>~iA5UJ{QA8|{svI7 zfpcSN+;qm$>S8K{ej-oPDAzh3brkrti6Jf>F$s&;W_%f`H1)<57s#tejd4r4QH)uY zyT^!3EF3v+ey4@Qgb9F2(~7IawE1FcI}5h*^5IfgN6uG8lq_a3>hXNj*j zDYY!AKgYB-MfBgA3}Er&X;UJ@3%A+Oz1%55|Iu||j}ehHBAKqcS4--}j4h0gOn)yg z?eOJs;cR@dwPS>@`Apemjd_&DSxPJQnr9kfcah>CsRk@|oSkfQNVXO!N18_Rbo^`{ zm+ew6W8p&riL2N_!3b(lQeC*(mXY6}N=sVW9pef0-E|(!EomFa8;@?Dp$BeF2`O)F z$rp^lfJDB7w7H;4?NP7tu&9c?E0he%DgrD#Cu%sE+Gg|BTTo*N{Qyk?d72ijKv@M?eL~csr-_y|^2RqvCyD zGe(YAiU#?pMyAH=MIRvJh`#xC%#7dPo5z?oDSuuPo(0zlIm}bIzWmWohy(_5oJA5H zFRA$2&l?hXs*}v(7`yBRvG~awZOo(<#>CSV%?5763d@thzC!X?B!l}|ML)}JnJj<* z92iOelAQ|ajJ@*ydozDX3Q=4c34oL8Hhw-8i_`>@gu+pjn;(2Jcj_*yaUa7J<(6gu zv*OJYBK?^eBHdh8cYvVapwzV3jJi-#`ydkUXXx-*oiu^C<-U=n$`IW74%G%D@>LV3YeIJ?M@HmB=PxT`{p_zF9aTT@sMZ8XP}t zq$1hG?NvDDW8XXI# z2!89^)C)mcXm%@T5^Rp`cnFi-L1}!kY1ovn65kOqqHB#+L2RG73Tp9x!o$BYJMS#J zKjpSVSgGXzXnqk5x^le%nlm^l9UN0k9;CATg)tYL&&ZCcNIYh~-+g)p%S{qrBK5Xk zrd3qn`uZq$spc2V=YE@Jqm>&HVb635pnkr^o=dsBa$OM+4{!jQJFBh;r&6vX9nUHg z8R)_QuLP(Z2_7@;SFm5@av|aZU{N~r*iLfojB-7IBeZl`+k`~@%YlZ0Lnkk$+495$ zKt)&rpyiTnmYiP3YJn}^VUqzH{b3F#5?x7*fUm~qu3WDCZqu`lv%>W7u zIKpNf&7z`jS6;)}Ll>^?yDcrukmNqvZkVrc?`3ZeD?B*(SnHv(1rs(h*~x z(vWRgubIV)lBRnaxhtq<{SeX&7%h3I{_m3-EKlk3?X0wf_V(4|E!J~8x_RoV`#!pv z<@N%=n5gE1&_fvYAMVL{F>N8>9gRN3wmg!!kX5rTar66I{&vIC#H~`s?6`BaZn6*NCcYHE=??^+_jWp5aCdOmkfi;W?Qj)8CHiEk{dx4=XDK=i^~`s zN*q^bZ9iFV=gx{1RzQaPOgwgojx>hn&Fmvg6b#--atw=OlLknTm(F3+Dwcvt zSj0Jra@5HbFVGt>e%!KNbMA|K8r%9X z0~sJ^G2{8otbOSbOXp6+(z^!S)YUA^ z^8eg^r`T;eBzMRHp^e!5vas87@pdq8YCti_0~56aV7W8`$m@Jy@z8$Wj)#HUhnx3< zfM}dzAZ^#0UyVNYPfyjNdQ>aKI1HX-)b^(qH!(2>%k`|oSzo-0dD<~4tek}<{w)Hv zF}=Px^k#eY*Z8deT)p6^DJNo}yCF(8X;XhV<$8p`(TUA!)5Q-kUikB_xw}gp2&CgB zB4f?mD4ACiBX%B+25XS^gnIfc0Fr5eD!F7NM{Kks$)8v1(NlJv{4O_G*{{P@)JUB( zPD0mxA;$9^C-&hnrwgS8@(jHmo%gf;tgfRjEiQDi^FY%d(Hh43E7(Z*lRU+?n0^va zk!hP+zhcrnnb&C1Nte#E25+HwM6mKVlWmh1Ixv+`J=NcuNoqP%ZV>|+y>}YH&FRsk z=E3YMM(^F?WvZU>a(O~qWD0I`{G)uk4(F6ejD+z6?Wn>6%SAgOQsT1Fr%1%ZE~0X| zUB?Ec9V38yw8_U+yk5J<<;sg4?^quotLWE*mxpkRjx2Zy0W`;s${!L(BcB1WBUfoF zTV-u%giD5Jj#E3;ax>o-N0`F8r_U`>FjRcTfi3LVch!VkaS-Zqtpy&xJ?ilnse4Vi z)&j}1E#8=^_L76JzH+z5A!(CxQYAlDI%DDs2iu0Ka(^@Ni3z~B@&m$FN#7i7&UBK# z8(?IdGnrJv!X3uI&-2|BC1tMlK5-9}3QXMe3Q5P{h!&k-Jhp7_atw}FvBFgfkV$F^ z1LgpwM`S{65NIkCstth-OQ++U>u;LjL7;*bLyt-|>tO3MJ`3cyKbmnhU$@#VzqN!H z-Pb?vDD+L$k;SakLx+PY^4-4RY__eJ%a0jYkI3IV)j4flZl4A;k0WDEUauBJCe))2 znB+DQoOzvw(@W>Vj`zJK)&SSomxrR?wuZ``YVe#Sb3CJ6YBhcTK72n(aNx)srI6*e z;FPN`Unl#1#|>mkR6OQlIvMh9(U`rhh9+y5sa$b8E(X%IwfO5M`NWkgW2v0O(V}XY z9T$#A+&7xSl9Q~ECWIe(U=m}s+yM>ywh8d;{9(0)D(>A*oj#1|$x>t;!_K6cVXjM)R)<+lKm4lC!Xh1m=^Ps)r*i*I+3>UI>J@LPN(_o{)*#%5Bz?in7Fq;iP!`NXIvD7UGePSUdgQr5Gq1K?20#J(kI+rwwLsZx=dv~Q;*jjJV* z0s?74)s{Qp$dgBH-u}pmRTYd2R4-eVhHsLNEq@fco3F=^h^ym>Kh+fYhwmmGL=0zs zt{y7ArO+X?PWLmeYuLN>+GHxX7#-1K7uJ3K<=o2h=ODn^O+oyk3YXB3KPw$SrJydH zO1b`GZI0%J-V9bd$%75cA1uctC38_VG00plf&q&jrG1y`UdlxfFwdmkxY?Dh8fkU7 z7-qZYh6Uwn-&aSd!0O{^QA#o^w>DIy#nP$f-`Ba&LivCebUmc~tY=`-^I2|r@!DH9 zA8W*_0}`I{4Z-7;bDqJr9V{-AgV|E*XSwuV5*bW& z>mW6R;qQy{_EGdbN|e@euQ9;wQwMj8`8Iyx>xkbFZ+WZtX}NLa%QRj(^HrE&<&pK# ze};n=QOPBsr|D8>bAg}ool%q+;)8fQX*(=Yl5KN+5T1_~?~E~a9gpB{zwV15oiol9 zpU_O;SzKOukcD%O{?tV^@2ad~%bCIf(RhXn4C|+QGHMynvu^1qZJlfiGRZvAoUfI{ z1~`h`+j$DQOKZbPgEZ?c>mrFrIu;s2AC2D6E#!()dAanNs zB)LMv*BLbgi|F)7mjoY$nEU#YNHS>6;rM*FO^rW0fZYHde1>WBlw(VZ*>9<-H+YLx z3=T_j2iBn_eFoq$aITS*q?Rw>A@E^()rWtp08m zce*|0N-Uu6j=px7#(io*U+(b*JnJX|vwZt}q^*-q*@q3pxVQF^?(x>_B^*&X$B3ok z>>gm+MciK&o51DTG67pEE%EwvG-z`ftz27%wK-{SUN^MT3SUvWlDPP8DuVW6hH<&Z zWS!>qk}aMN#xV$()@NlsYgoGB#wMXOc{W>FPe!%C_K@}AtU(v7tDFjv4#wG9ctYcU z^2{ZLVXgrwtIeiC%Q3K79L1AExT~VySOmvSl!m%rjJOs1M9>C4-hyzy}_g14o4&n*S0Z3FRl-xjK0PL z(T9C~AQJZ5LX@rsmhC=v^6d9E5tyWh1RKvNy7N9cXX4_}(c{t8Do>)4v=xi9KGR>A zQu)w#ORn%!RH@PhcGzn4pH*XjK_f_}VsZ}p`E6%yZ-#=bMtgB2j_lcczMA;WciNLJ zQr4$jasnJ|k&PPaa>;QtGG^B__MIovbh%0ma7Pfp+EvWvm7A{)w&q{HYhWd)J(msv zh3WU2`2ADn?MwRwjfR3<+sBwg`L*+~+sgz}hD3$)qSscjfOOGL;+=Tm4ZVEaW zPdaLK)-UQun?4>e6&W<{oQ>T5y3of7al)3?gUvCX68b_NE~fOH3X3dPUIEpc=w8Fm|Y1%5KbmcVd0j&kt}Xapv>Vp$oNKf3`A&yA}3cxB7gT>#tLil>(! zs-r7)Y#32X~+4YbV8_D(YBzc)k z(az~{Q)JQ1j5jv-guY*Ln1dxcW9l7k6YK6)?%m;dT)i!xO1b+195F>7%l?vcR_?L_ zN?6edL=?S_r|X(Q=~Nuj8W0iv3^zu(&t|U?l!j-QM5a9X#C{2U!Z0UGK;Y>`n~~x+ znTL*Rbkwf{?3b{j8GuxhMVT&l6Id74sdWVTNL(imqE|Fd0A#qx#vltxT0Bnqu4=lw zD$W*BUScaSJs6$0k4d{qqKA>X1BDXnDn3lom$Szh-@IC_Cm=~*4ij~kAlv5${PQ4p z(()Yc*2+x=NWCL@j_0*q&++KOKJRc;uIvmxoIBBPNT!$vjV_C-EuLqTy*5XK??9)MCpo$q zz-$7G^&`+PgxPz{e4EWOl}8bikVU?-8L#Q3RZbQ-s76qySKB9BuJZVN2i7Bo&>;=D zD76k>P};Lq9&MYXlH|Fq!oYy)F?L3jc5754f;e^SeRjfb%L7(?K8&9O-fx||60lxl zNWs!NCQr6%le<-J(kIZ$K)-H*N@vWj;eO5UTjXW{k=ZvH8ah5vY(yExeV@$K8PfdXelo1iq{pt_ z)vR4E9%M5HL=2Bt+~eg^FJ5&t*0(_iDc979w39CX+7Ty;iEa^%9Li1gxESJGE$C$S z%j7=Q$khMy&vL!*n?=X0Yof{@rGRBM9v^Ay{g8TI=zy;C>7*YOba_K%RtU+C-GuvCEzT0!m=Frhw4yGPPQ+J7IJ&*BCfUA`KAtA3m5myn|eKZYsFEikAVv4rqX50yy2)F%Be+c z*nd-^$m0iVB8C$_i1;|{Jux%hm*#E=fpo+>Y@KdG&-7?;OCs)wwT&F+k!fNNd;Mc_ zrKeb)qiP0uu8N*Zd0~aGl4BZ=j&J)B{>!vlB!5U>EZo|EUaSsly~_XT8x$Yb0X(oY zEp_?4F&3=Y1`3D-IWEWNj4ex#VzDV6@OU6-^N?)kKc)TRc6eWli~4@uIJwxrWPN7b zL*8l$uTMUpJ(?G#Kg!-i{ugdTHh+}88`>VDG-~S2?{t6A_U@MXW~NNsEwQ`r=5(ov z!MHY8=@)cTOV*+m=Ce{@U$OAzA~)rwQAx z=hG@u*`$5r)L4dK!R+4qTILU&K-!=z{)u&aMUxuU6b*3UcD&_n8t_o?I}RZ&)AD`@ z3G`UyO|#KPrZ}!+dp7INBB>LK6N5mPt1N2^WjriY^_f))q(dnVMH~dgt#<9@4`%># zb(OVg`L}a4B>Bro9bmvcP35vt!0hVy;MU&oiMXb%3rco6Z5&h?KUas6qVAG!b z_x5uqxev1l$Vn3_nE&93i?S^pi;1_#>gZF?Sn3;+oH5y=NThiYM`(xzIk`BZu9)I$ zr|fpR=Sx2kWqaX{NoNl7zU}|g+r?>_q%`l_kXj0 zLI8+^F%AyK^{1-gpwm%{3xx#meTV@vCOGb$TrQhc&NnEwjnRd7M(@X~lo^nO+Uw)c zf8W}+o7U-+C85T$Mgj6h)tF21jZ%z5oF`%+=boKP;YSgVi+qYy-wtz2$agW@tEH-K z5RD2P)^)>x!vSnfK3-5US9O<8S9(F@feciQ>a&p10hllNHyugIlMef{P+z2Tn zI`8dcz4}hk``LQ_U2!Ew2KH?3hk8zJ!iE)Fu4ipJgz?pEj$k(6%P+OVF;ev!`-{LZ zm6q`iijdqH^u*VCSv@hECOj_XZicTCNxJHq$C}1c&HD0`i)R4!xZDl<&L6YfLI%;& zDUbqwVe=pAyE}%UbTNHeu7nb7WpiM=_DA@d#VOtc$K!2fjfB9K#9_O5=#p6C_`(gt zwrjgstsxz_2ZV@0+)s&WY+N1b!11MRFzPpa%5m36XQTXmJ}_W~a#|_*2|0N|4CaeV=u|bUBEQyh6D!R5p2}k|bMfjmi?7DMD5YqLTwi zG6vKk!^n)i70|>DV~*YOh-9*(q^;b#gW&+T6c)!IXONB=mp;ap=*$@Iors4T{8Yo<&Abrl z874;HDGSomG%QRpSm`c%*x||A`>$KKNTN;Xfj-ykp(5qET8`S<-!LOAUOB}~HIMm# zc(8poBPr$3S9xHQ^?7P_0EW9MEU@-09s&_Dny8Y!0o*P@KIR9@L;+tMUk^XzQ=6k* z{nX=dsuej039lN_TW<#2GLEDwCo=>@|AH5xT{|3n z+0aU;A!-ryRk?lvjVO@2*4?(7;%U(bv>l)!p)C)zLz~XsraV)* ztrpSf4UC@m;VlEm3hT3`FDLB-^MeAOqE2kTyR7i-@>!l`5nVF{&dL7Qj|}`rgfhcS!6uj z?&zAwGG}w7qakSbX7qNk+~|f}Za4e#p#CA)MA&Av+H225kp&(i*?-H?HR+y!76Rtg zB8G>=uSfq~=+xGrBC7myW861ug`)j!HNUR!m{*)~Skj)ort_kCSWHp?K~jchybQ=2 zV%Pj^64UIF7K14)AwBB=(#NTv)?qc^RuJg&py9FlJ7fAD&4Ts%n> z9g`|L?nyG+B-KT@!`jY$q0L~scu15{NxB`iQ+2dhW3%Fh*T%H=)s^k~2;KL^Lc5PXMG**-^0rrb&haLhBUt*^j34k#g7 z;Eo3gJK?s=^Tx|HGi!82Yy87lf~c8`+k6~29)a0gihJ(^5#_k)#$9z6{X22CxyqUM)BbqTN<-8Y>ahze*{!au8j$eCeB z3#qSj%yj)K6Q1EXzF;H-tn%!D<&`WQ@_rVflq(XVMkF79^4TKWMA0(%*igTYJ5q9O z{A$Xz0M14+%-VLc5ipk)Xw%>6#YbnKyjK?Z0n*nzeLm?p$T;kgp}%g{!FS~W zv3%jG@UTTlIzmJXx_mh&NM>_n3HI_Sad_P=j;=k~6Z6y7+l_ecCuC;Xs9DlC4 zg)*Oog;EGjW8!tvUpi+e-e1uxH5I!^r-JeOntTvN0Ve>;nRPY`BEeABmqMYEUck>h z7#)9qcLg(WqYPit3+}sqZ`)$Ko}}v_adS??0qd?d$gW+XSt0dRH(#eJ&t2kj{-{aBZiTZ-O#(Q*ZKuhA|3#I=))Ys@iNKdN6 zc~y10|o7pydH=<@eIzF&l5%MZA~dw={ZG%kmx*fu>y8SsO|c8d%FPm#A{fqe+g2 z%}r5BE3;t(7-RRmjapP0<&`837y2T?WKsQo1zRQAVTt?HR#9v@YfK;qP+J7}_TU2~%5OO-jAMRnkz4Zi@0#ULm|^f7fuqR}Ry5m_;PbMw?iTS$^YN3(IYkCf@A zYbUM`qw=ipR%xKNbQInWVyj$Bx*)Ob-Mi-ZhT@ELi>3Wq0EzR!C>p|wakR=}0@ZD_ zI?6p*1P{F3P@a25!>5LJVZShiE9eF3U;s9Dd}nUqAaGpbo9d3i3&X4qWn-D>hh_j5 z(<*RY^W1%47Fv2rq+17`S3{ljm*JoT8 zuE^WTGZC3+$tZydWQO1EHlU2)tx`^IZDOP#cmFgL7*a7g_P3 zJ*ao!6S7@&8=5mCZB#ejM96WDEz76fOg38ntb702LWZ#F=atI6)L(1uDyZ>nG^*Nsi)L~ zMnoJX_Sd%lk*F6uH(1aZ&cRT?9SC3nlUwpVJ}u`q>A|B4C=b$hZWD*^Gjq+OCFWY1 z#+>(sHY$EJ*U|_%pBCp&OcxABqUY*LHyiN_sQ(yV7el4a#bF@dmif(lgorHewFtOH z^UFozmT(<}1ac7}&xFpxw{xLsF+S<{W)i=gYqN^R$iMDy*U-^=T|6R5)C5bx-Qyz# zD*?_P&J1vez3GA5sIY6-I@kiYVxWbAJ2(^o=>xB~!;M@=OxpMatBJu|(FSup4$uxb z;Bk_j9)pfJD;oCvX%|8O$Ce%yx(=w7btnJ0Dmwr93yFvwoF^_AX#++Nrp9@Xi9=|M ztj1-Rh8(!AE@3UP3n3~j*Qv47xj0HYm~s%Wnw@)zBVch-Imp1ciloqT+O_}OdZM>?8 zDDO!4slk0dtNy^_PPHhmE2&mD9k)--GfAiL`n-V9|46;)dr7>2uPs$HtnC{bDmL$E1{h6WMx=i?-YW7T6&ySK9mTNe ztnI1;G)m?O@k=emIGvH}?q~_#r!IF$*#(p?4hIW?2V16FKn1u%QENC@y~D7Z9SVs^ zzNyN`Ae)@K9kZJPnNFFB4nb;a%bmDJ>vqz8>j&Ot0vj6BRzmKJeSoAb#e8^M} zo}0&h$&@lU*zel2Hd-5nhCa-l4rlw$ArS;mBHYXIMBhaK3hXETR5HitKu{8jl;`0!I1nIuO95 z&}6lMQE&&FC4z=g1?vGsk;&w9u8+9r6+hlKUHE(`%VMqYMMi^PxTdb*$;An}9+ zFm*F{%qyvZ)S(X4YBFDDRH51GS(ADs?S%x~LZFG0$`rYFb=TC3^;R~xZnsuhN)&u^ zU#0#K*Ea=lPe!^gCV3{G9}iB7o#K%uZMNdyUg@9*qrFAgFO=wR6P&I`!#C9SU*^HY zYwnVZM2ewET35?yn1YiFWn5wmR3;X03D2B6reyz;9;Gtv*zT5dDB6ksv0D;rYcYGH zE$DhEM8~OEDwoR*tejDlIRPQzVlCd4b^9_F=|>$(R(D7fO)u`{641Iruwc%njd(VKdC=p$*446`-5tA^*sM`)h za*7A?tGA<@s)-aW&Ye?EGNfsMuIe7If%9R5iM`iSrT2h9O4%T{W3R zrQmX7$&sm27dsBBj?d zQh4UJKLg+iS8+?(WiLrkG@@K2Smn{MZKQe1D>-+)C%uQ{B-<+88$Tc=UW;*CB~nx8 z#UcH`IWs(M7st$}gesyVl0rN#no;(CJkZFbQ9eaGElo>J$oJ(yv)yJf+nT+Z%9f^m~rI4G>S;- zkN9#VrLmh5d^(a&Bu*Q6e{rKy+NWKVuQ&yS0RnIGCm4qAzWilPSSo_p4CM@SJ zNn;@o80WHslO?5dR($LhSt+^Jru-le9hx(mhA!bE`4{AXD$aM^EO$5C%_A-!pdwI- zB~Q|2c0D%5D~nCjiCydt{<1={FO-2&b=Mnq;Zei@YM1Hr6JyWAmGKxfz^Qoo`s>?Y zS?2e8yo1o1ZW~A7z8s=S!XoX4bwHC+|F(Xj1pX=2G`k>)^9$+pPq72ndm+vb9YyoR z0Pr2WWzZgAeT4+Z9p6Ue8B+84ir6FH2fxffzyW<$ZH*_9cVE4YCbrD_?XoL4`xTwUJ2(@q(Wm_5dys`S0d;5cUDICiX??+ z0~;&Cxs-;~OTRF4UG@tZEitn0Djr0ZDXx2>hy)%}JGaXQ1Pq%V+6f|$eFwyKzJM~? zs9O9$W9&e)Y1(5bf@&^#l$}A!1e34CTXXi!rO!1x_Kse$abBWJ`I3c#zOQYn1s#jy zUd+~Yxk248Zo77w$a7qN7x4~QBQnvWb7h#ll0QiV6rSLdw1$W#zhf}eV?AOV+auH1 zqegORbOo09&T?z+yVNFtN5%Q0hTRA$B$7dwDXl^gPAG_9!A2MP%UKfj*QEBC|lU z=x|+DUFTSW*l++bnYJQZk>X0O%No-kFG%HF+AJnN$nf@NN!fJ;TnD5-L_gkdqe}l` zu7OB!{EjZ0ZUSjt0JJM~ z1>|O;&{vFYt>DH_56Q0E07Yw1@r5K=lfUemBQ12OiRhlK zWmoJ#YDbmKEKFC?F4F_rVVI>ZpHU<_>-49B6ggzdDHvO(rMhlWR6h?8POK6`s9pMo z70NAoJ1gD`iD`H_u7|Bl9L1ipfM?faX@x|8^`8GCC$uepbUmP`cy34MLhYH&1H1JK zAjvg~o^xxn=iLYv4)W3EOU>wcH$V~(=<{59?vA9G_KUZ_4t}N3Ap4=t^`U8Q%Weln z#TN z7Y#C(Pym!3r`)UIJY#~Q)R4fGw*z6#et{#HTyAon*!6&wnQE>yA>nZCVJRLknND&o zs5*D5MZs{2r4Bq5K02316nQ6+)v&aE(o}GEq@irC`$jhMj4)5?UH52TA|4z8ZhuLx zhJ3@gSZ%9>U7|pM<>rm1^vopN$llJtSJWizyJTB?Y#5*<{9A4a9;DmidbQvQO9Lf? zKVn+Mb@_n9V3qR29Y|2^g}N+zsb-f108T6*DvV=L)t3zZ&*{WS5=Y+u8&A|lq0EUQdRr%Bf3r+SjvEV ze4HN71~s%VRo`FnIdfX`Z;r4HfT(gRvxOqQXe*q>(bKDS^~YLj3{vjTB_)(GO(J&i z%tqtGb%nsgUL^>Wqy0`eQg*}sbWZ1PfqU5)>oT>-obDCmN+=(HmJWw>B;GyC6yN79 z|A6!5Xywrb?)C!0I3b{o^4q0UC26cy*NlM(({k`sOTp9*WI5?$zG=PS&c_Ss(lavN z1hus;qy1$sAw-lDl|3WhD?$hp42xow7wHm1Dcaj4N_Cf6qG;04viL?kB&sl%U;~lp zZUfKocJ7-KP;?^W#;Bc7Jb^B4NN$zvbh8-Ov~BGm9j}Lt0fow$)yYP&CoTgV*7p9p zVy}1^4RPsMWgh(NvW$MHJ(tA_2|piGw$`q@Nms3^S1c2LgY*hrn+JLiP8D@FUX6Q0 zN?gx|05|byYV(tu;JTBbF|b;*BJ)(a=h8Mrq8Uyi6;7Gw%DG+1VRXC5^>f<#`$pUD zh}tB2i-PEOEl?qADH4f7$0f!TZTiz=aRsatal%BKmMe(K6I~DgDj&s@d772!+V~NP zR+03kNhGe(r2}=}VX2XARro$!M9HnpW=v6uYT9K%=_*SpwoZPG`Pv*2 zZdR?&yPMGJRa|b8Kr~wt5%W}nbe9#u*hSG7iDrEeaS@3GuflUS3&eo6cZTtO3*lkz zrE-2q0LenXy8S|C`-eLS9Tyq9(($`yxu3u+xC5pL?y_skoRTyfClT);^b?$~rkP2@ ztWYDQnBOvWbT($xJ2640?JcONX*3Q5CM*+i459x7u9w+ zj|Cf-Z%!_D^7*LyqNwVMNK}9`dv4+LA$kZW1pl(wu=VI*d0`dBiTcSaO}0*rGJXdh1`< zuOy!(0{+ZJ&j}Of0{5kQvae^%c1m2}F+!YRNAfT|FHkb$gl{1>^x9BiZOUK)ML;UK z^E|aJ^^E+}QrDQbsY&h=@v6tBBE?LWQG~&!bWO>iA zG5v;eI?55Xx1d*v>iVJ-N9b%vp_L{D6I0Z#L#IbwN4HbjnoL-88LsSJ@k(5RIrSj* zPb?Fzvj-Vg{ZX%T(WR-6L>xUdi;a+fMH|QUCAA#kJ)YGtQ^&d;w$n)2J5L; zQ}5ig)F_S4B~cj^jq7~L9m5Yix^~Ylma9kqEPc$d#7`^l6siaZwX%%io>09JHtP~y zM7d8xkn#;w2^1`qYtb|T*>x(Ck4CSy!(7wrk~DOb9y7a@QET%w|ITISfk#^|0~Iz= z|2a2HTTDS&c8ae8>cF0rhjT3bhbRKT+vfCNEQAJMzGVgM_>G|e(K zmfFR0KxK4lzr@vkHUSQMlHf(Pn0A}^8SRow5wY{X_Ht(Six|)(XEtx#q6RPoJ{3$$ zhKa}QmOUb@XwceWA%CxJ10D2UxBPhnB_HX79ONejLBUjY36w`lJ+<# zRy~$TyTL{HP@H&59@2;wyGRUJGKzBbWAr1j+bro5l%paPQunkwy zBeG?2WGWhrro}itKf5Wb*GA%{lrMcH-@UEEbUo=9F6BwX`#_W6Ix1?{&LvQ)!-I%H zCgKOz!Dw6BZ8^mR4F}^ygMRWu`yJympt)WNfl-{ZXJx^PBFA2R!70<21{KsOFtw6d zW^#Cn@40rZ-B1_JGkj-Z*B(VLok0vSB=QqKp>t_i4HwmxKfons2o)ZP4~a>Z5bBN44h?`$P%Ou&_VkFh@b{dcgu$-0}5Rv&LPz!sk;f^P6NhQiR2|TZOBO&+F`b zyLPK^Q=IQbIgirRWy~nvqv&9!TD5(L$0ZXKwvuV*k%z(m4aaZ}=TTICI6@-CljcE~ zxcWsi2sF1#=@_r=EUIeGT$7{Fe08R0O_>ezlX ziihn1_u*EVIQL4-;bI#V_JZvwU#A;|hvq98lALR@8-l$! zi&lZKWL5PzDeU4EKpb0U9QIn*?5R{m!v?Nq?{EZ);uaqS-;e*_Tj1D;sh zEQzki(i)G95k`eQs=VOYOmQyPSxBh?uVhfA!dZ_%l@bF<%t{kZDy*=FK=^pn1xVf) zZ>f11D0J-^RKm>lEEh(*o(E|AJdbusYB32e*W<;#IVe6gJBVBB7vy}0#pn6L-4&J4 zAbo+0v`WL+TrZ782P6;Bn+7@MI#yf}#s>F_K0G>!c6UUmTKTjCUv5b=U3Uf0e<)mV zJvcNcY|GLtS z?|*vKZ$O%c)P}am&_f^h>^f#$;e?j_+13(t34H~8gi4EUi5kcX! z318+TwJ|&7->fwE)qeLYU6+w$+sb(RTq;R-3zG;5wxW3~ersCq4BsQ7c*wzH+R>l7 zMg0_Spk1y8Jg5ZgM7(A{55=OfLFT#A2^%h-{kkZe^vY3Kw)m0CHtgyWJZxwxd$uz& z>^dZXA)uLvw2tc1xism$t4JD$?`F4ib!q4hky4NlSF54Biiub+O=2?jy-X}so^u5Z zv*n>%lv{dNyAajIA)iGIY#JgH;RD(=Q35O>rJ!^!_u6}I3!V{GU{KAJlXzRaXs?R} zH!l^HInngh-jow}Sdni>6@YX_^rj5igF^{U=$JGK`Gyv(C%0ZxSgAiO7nfy>jCtgq z`n|ta#dY28lbdby_}od3>?!=;UWCdNo*}K9Ry^1 z8XRQUF{KUXqU{!I^&0}F>n%$NrWj0VSIE49u2a?^47?crU<4bc4dAHwu+AoeYh{cK z+at2Uk%Z6Yx-;|?9OC*4pRJdA4+~sc6hs2{$~jzzss{Zzt#6AuMP6LSi*USg@hA|f zXSoo_wL&tZa+RqvWwuN>50|JCJYnd{t8=0e*tnu%Ak}cV>O>L ze<4ARO(_8ig#LHr1=-ZQ#J73@Sj{?XLg{V@#bI>g@ICiiIv! z0YM7mrxtzZzNv@8601j5Peiy*hC*Ob)W0>E1;j2P*t){uijsqn40I|w^1Nv<@hk3{ z@sBS0p`Lp!Zj>a!az4l&zSQlKR3qQ_CUvJLTg-LL(H)iI>^ai~L!9;BF8=aQf06(G zw5x=$Vqtru+92DFuEW7Y!=l{@y#uQQ4dT>tHO;oWM<|MiMlu_^l2t`JR*({|%R>PC z1S#=H3PHM_o}5PU8;%M(KdjAlvcTahQ=wevqG#9gByq~!eotj%R8TGf3*3Hj-6aRt zb?JmLy!gzeYon>{`f&IvXK*wwCXWo&3J2l(aMAam-|?b;OTf-R$zD00yJ-zBqwEbnW4jr$TXvB%pk}$eGuWKUD}TA@3F=a z^=`##1i5Lzbg2|gYBOsaOLL5w-99Jb;CeAwn!AC_`hU*|lf& z0Ujl*O}l&3Gi_XZj-J(aew`J;;zBATZ(N6mhBL?D9vG%h9fW-k#P%`#eSVx8>Rdxy=wg-(6%1g&~)2cDx5e^k0NE2<{FQbE~qkgiJFy5&~2 zr=t{*Yj`c(vc-EnpQ!shcN;%S+J<1Kawlt9Az*UY50#%kAfe&okOJ^0LcyaGRbm4} zs7Ax_+GVt&k?CQ6^qOFMuM*Dl_QY?3i=ZVJm2RLDjvLrkkCZ&e9owx$-LZPfe_cox zWmT^?gEj0YDZuNxg*arCd~fSxJ%WL+h(UX=^cZtGW&JW+5G5RWm)#!Mv5<&6)1gaK z_aM$Ajs>`r;ykw`+CvtKg-50XT-D6owucPSo^KM8IZU>K7y_|b`$WzSPCHB>frv8Ok)cm9T5mxB>fQmUL zZB%uC1UT0RRJc)b0jv8cYIT=9RXpKvM(opb5LW2A(27_VUz%CB^fP|&LKJYK*|)Gf z{~13P=fh#S>YcIuBa-4Lqa|#=8VA`yR!|Ws4;ieR@i^!D?SfG8q*Rf)wc!ie1&m^$ zN0?Qx0~&kKEn&iLJxskvUO*{AxTM*DN_p@5)fLi5D3gwd znXAFBffbKB4ze3-9`JVVfpgFFfxL%`tDJpL?R0h#$QmVAB7vhpxsF_zb_)SGC7roz zGarrZi|6j{y>M;N9T)A52G zVpBm*>{UQ|Ke%q(UnWlF`|ElTQUOByLyL_DRial1u|kyENx@ZlT)$}2wHpQjlQ>pa z_4)!_k5(1$5L<|*qp)R{oKiUY=&EWi)CI9G#kE2T_0W+#wtDPtGvx!Ki-hKa5K*e@ zajs6Q>mKS<;930#M^;$Z2OtF%47VM+o0z~O$#jZI@KnighaEgS@DNuejMkG(BTK^ZWT`6?v#SMusoMu zQ@pZgf!oiOTY|?c9k8kR+`h7aMQ?aBV|teN3M(2UmG5P~)jV@w+0T{xi{*1DWigN~ z#ZZ;~Tm#$zr}|vZ8CDqfYtQNFe$hjrE&OFx*m)+z``(^brk7_o57OQ-50;4gbv<{7h7=N)mwM_QNN7c)I-6V^$@C~`JTFhWDukGL zGi!D>?}9}VI~8h+>m1y*)0PJ`%2ksa?Yb>kf5$X2JziF+ro*E_#D10tL@IlA34{ZQ z-MkfYk?4Ea{Vcv2b_ThQhHUMM7OR+Pv?m4?5gDyD&DH8*Ds^%}CfGe1Kvkhv#Z67w zPRiH1R;hqv3B7cyetEM?-6`mZ&pB^W_SO5&zY;2 z=2+TyO*|X(2u|JRd=5is^lR*oMe*=7w-m?rcdS^v^Wfx$etBnsr(5-%kwb6(oiS8M_rn)W;fo1g%Tea17?--WOe~4 z-e8z$a=wP7mCO2Y-1tpo)mjx|`9 z%WAeQYIZ#kyjU1{yVX;@%6oQQ7%Y#20t(#}Lh*v_Ni%lJpt~LhYLkBFr|0s=E(DgG z26q1Q6YMWtyXi5idQ`DmzhbJE^S-HS_mw0>AtbF$Dmb>UPN7u#ePptCy~@nAc0Cdx zkBfh1(0cACa>1$D_MwHaI(3TJePLDy+!1zL^QB&ls5radBp=a!treACmJu(ut>S`Hb8CRK$s{G|c4`cMZKX$i2XB_7<|%b&3kbyHoD7#d0S?3HNA3)9eK>5uQ$8H7Tw( z&ehQ{%~XYE7B8LIg%7Jk2VSRXpJrJTp`>c~j+WsT2Pa-)*IsdM&d4)S=n_T0Yp}m3%!*i63Z8_y=F9ASnZxG-M`P|Oz9v1xRbLRemI$U4)=#=RmE(EgNRy*CNpc2@ z(;S|W9b>7#j$O#GMW1(*F4tSRt|Nl^KmzGrk6qS?RV?IXGa)3jTS7|=GU6U); zo($1di~PepWg^W+{$YYFi;vZES!H41{C-R#{!&d=U3$NE*`f7G@7P|n{4@fP=eM7Q7Zr5|6aXUi7lris7Ah;IC`VQc~o5L9s z?uy;u1&SZu8nNg|R_EHOkPpC;Hf-7y$8(*lM7D7}9!he}slngwD6mr@8QnSxuC)nY z44scnwIFZkwlm~R)dp%w)JGfAbxA-Y@cu{-T2yIHG)aI|wLisx%8*ta#T|M@Xt!s!;1 z-58{4oy3%IDPut2e#UswT15JR;6pa)?J8X1bhL_G8b$=WrKlqEKrZ1cbH81{)KBYY z2JFYHXlnDlVO*!yLV7c-hY3@Umz+pck>+~C0Ei-jMQ#lD;M>`j71Qo(=_&y&i!fTW zk7`$#0aXTs)G6_0S4e`fz=Wh(vgtj? z8>o|R(7=pX4vVwLm{=U)L>jh3onf`02B^uzTdrkF@Q;(GjCal!dT}P# z>M+`*89|3ug^y@=&2@EDUVMexHDI}JpEdzqm)#>aR(u{FF(u|C)%2*}9jG^nNWzZL zPz@e->JiIA5p@v5n%Sd@OoFX*~?8ZRX$wu9m@ zk{!|d ziUHh2J1F<(=}B@+3fj&w5*{DpeepaLsgR4gqfc}SZ?m#T69G4nNCYS%5q zWk05GXP)E5cH@$72%5|j84xb6+O3D^x`&EMZHbI@3mbNQK*X2C-QU;4yk*zJQ#|p% z7Sgj5>&ILhMn9c|0W#^GIN`8;ubM}(X2SQg8#5fSs=J43l8hPe+V%)$jUVX?3~RGn z(yT3pWbS4aQ*IYDc1&`YgGW0BT*5LXM5M2F2nk&!h40UV-{S7=A5)vDFy@%V@RTpM z{h$>Nd3aIHlgnf;nFwIV1wnUM2`H2s6u;dLii4xq-utM?82&QKFX}wko;5vijihm> zR#+KsJK4exIh~8ST;EWLs9zPY_?yZmOe}R+-k^E&)01; zf~Gl~ja|8bixmd7#psG*c>&EXxj~ap`qTGx;o(WqFW7eTEdissspXKx;iVkO2uLbK zkQ30E&(6Qs-^0f3rW3$1at#wBlq23@0P(fQcye+lVrmlnJ|fi5iLghdy#;M-0<590;{MG z?9P2aBkx36ABm^MKxJ?EjCL&ps(NZnfy7CR&ba;2B)GEJr(?XJORt&J4D2tZ4Zt#G zUAo6p7SDdm6P`?}T-B3!I(EA;;2mM|&*`iG0|+WL_+2qP@GM-k?iq^-RMmJ+@AAfG>*u!&jrWiUfy#NFCEN z?m^mRjU-tl&vJ{^IIW)DvQY6jA7wJjt<`pwFI7O&MlK}YGThI9E{aGJ4cek=P%b`p zNx<5lG>~H7Q6Rkai9BdhPkHb{%iA9x?wVAy-~qNV@M+iaU`cqJObcv!DU#(mTXmsP zA$N2MFkv!U#-7_85X<6s<^v>3R=egDUsoc%Q6f^|nmax1t|_3H3n#KfD&=zZi4$<| zgztEd6SRX;0$m}11lnfX8|}I`WYr;*hfM_9*r4<5M!PN#wRc|#M^gn!3F2#8H|u&U zs01O+PII-5i*C&wqCZpy`p(Uel7CE1-rw`x8x@igQ4hy%Te383%S{|g3{(i%Uteh zwk!MuI3`0$g15>e(OgFpY#w5wxApir0^$)fq-Hrt@Sn{_t)ii`piLi_Gh$f80ppGcd&8BFp+c5l!eJG(EL@sPO2`F zZUbRQiGlwAkZFkSrbvEym(eOGzil~%sv@S{qEbv`2K2RzXosUAEYdE~5+I%%^j)d7#2)Vtcrg2Y zQEs9~mamX6+7H}c9W#`h3{+VnLFY z79n;av|`cyaKiEh?A*jQDk#apO9FStmId=I;Koez*y%~6b; z${AgvLK`#(UHd4BvK@$?5HVvu>NrP}U1tp*h5D>7FV8&cSk78)J!qP0>P{ekUcXGG zdn~m8{f&SHL)&u&ifiw>*cz$Zq*_zg#ZkCvuQ%WIuoZ0rfhAu1>Y;g#sRRECN!I3~ zZr9b;6;>}28!k1icrY~0VCYM>y}eu{UB*#P08@)Vzd{==QhTU5A(H||h|zWly)P~2 ziv{7D2<|_5NuIz{^<`U8U^jV@L97`X0O6lMUsIL1u4CJV{W=BE1DUt!XAwUH4Npws zUZ2WTTWr5f35}o^r;-EBc3}|!4`BsdR7B;xa$Mo4ExSgP5!!S=ZG<>sW|+0{VN=bPT8AS|I7}&;@eA8;;hp z>jO$x1Sx5Rw|krdZzGhE-FMS8H^Q|xH5uQI@P3-kxKw+MO@bU2AI=AmsSgP+OELvhibjcW5A2RsLZ^M1DI}Bn zrireM{c1_jNJ6jFEpO9OcAXI5q=c6$pq!+!`x}ZEW(5#^+tTLS?WKSSONW%>McLu` zd}w?g{4M7(O1z++&nNMn1I(`nqxP zo#fN0?!#_a4a-H<8$aUuf`A?r?@DGmxs7UFBGvmWF;l2J*QRYqP3F{boh~wYuUM38 zms;~qKRM}1H)?FKtmP#&_F2K|j=U?N9`Gw>0 zs@DZ>&&H=UqLH;#<(@pE?qW=Edrnm_8B1D@-qHsVcI$=1!0GFN3LA#*K`MiRNf`US&Y&Cv{5oJKS5%W1<36Pc9RjSxVsR=F?d@DM`d7Rivz zT3Qf^9_o%`!Q3uPCxMMx`s@AMPdm6XiZ%}2VFAt~uEXM}D4{2#9TOo=E{aD>1yG6N zr(xG-4>^B7s!GcCJJf4wdYgTL$`*^r>Ic~E(iAj~1Y%Om&lptmfJuay-stUc7qg*s zAXN$?0~v%s0Vpiqvzpi9y)&SyWW8mI4`l{@x7O??%TfUq@~{U2La7wgF1{ijM=XRJ z-ja{FynTj9=W0^>qhoEVsBS?O(-$C*4gH-<}M4I!A61!&-VE2R_FCL3sJ}4Gq8;6d$J;c>v z<`xbj_jv=1YbWV>qG5}t9MZKPP(s9Dsxg=r%Puk;*e_*(6l$ZFLmBN4F(H=4Whn3P z3LVnIc*$}=pEIkBXTyTFU%a1Hup2BE%^zWXcBLQIM|8X#Z%C!IGwB-*pmwWCK_wkd za#C*N4)9JTg#Q8ly>t5KcY=q*`~mU~D3hWI;kh*uAJ{M6LFvSHlez7YJnGSNYd)4V zv@&u@X9kCT+jSP_!jFB^O%MgH>n;kvors>2I9>e|)x8rDYHWy@=TLa$b_zdYSv*W> z4bG(~cCE$tgM5Izd%eQt^A?UAC>+M;gEVfXzBP|(5p(fas1ahnvJ;Ew=5>w%xh|g8 zWPGh=sn*MG$MMai`$9O>az(5;by`m%zeI$JMLmD<+^OE^*gx#ri5f|8hf%M3gP|-QtJt%PYICp1Nri_x9Z? z8pU@5PL{-8iX_=hnE-ec;`4B$w#gr}tIPnoUq~jHh*vye`|DLaQNcMN?D~FsThz!} zP$3wupJ#EHG13!JcHXj*1Bot3J=y~SxSIrL7Y7Q5aACeh1BGx)$X}{eqDl1MY%N~4 zzqNN3Hb*MjxtOa8^eeQX(VokwJ+l`(!AJfzWkI=)BLwRdJH167U%$zhW zS5(NosjEquJ1AT$gb|-`;|jw*+CHvJL!;1XfqCbS6tPu`d@#!hBqz=ryZNnX>@ykP zFW5X>pAQ~@Gn$W~^^M^yyKSqBM2HF%3d81eNxof)gGlb`07R_sRAueak^(2Adw){A zb~{p6$e!u~2e0Yj}3!Nc~3JU1vc*ViK;2pcAq!h|;hoa?ek5vI&{&KlS5=CfC| z&+ahxZed?)gb^|<(S8G=1=0J$edahWD6Q~r8bpn_-9nSmL^QjAmaaw#M!!SFt^LFA z4irzd@m1z>u-|3SFkFs{f9~oual?LF0vM$e@IbYXLY(&ZKkZjp(e@5r5!|Mp#~p3~ z4(s5gkg4(1O~%-y>s$qoe)c||>*JxwnbJuZW94?~b+=gF*WDQV$~!edE*-YK6pRpV zi1``2Eu?5fFp$Y1Ufd5Ce;fU8fBDOw9(ll0kuxR9DkcHvn`5^HSuP^stXM6p(OO#h z`~pS*_vsQFXG%A_jm7e?hv>p0aQbxK&fk=)C{*nceZ|yr4>kGkx^}$LF0Zh4*P|A5 zi=)3Rzo*QD>(L~Oi&3;;ajqv#;7ac0W!F+39PnJi6+8k6%_@x%$v;VZ9i>=+ZXa4DXUIy)3-lFQ`v7MsF=fNQnt##46pDC zXt0=%-q75YgqQ0Rvbz1^H|*9)idK5yB-(Z=<6jtc5Unp49CqsoehvZi)GgqJlLYA< ziRLI?JtrHiYFI9-)U;xk{HieVAcQXL$*YqTOw3HCC`LoZOi6G67*R4-Rz2f;#Yl9w zTDK*|bY7_iIFTqu72+ih+j=~SD!?A=35X1|^YcT?)_HM9#RnOA6Sit5jR;`K|534# z*A|LLif!YDUG(cRL6+i#a|Csw&h&_CHVz^^c2zr1ew6EWV~Xrk`IXB%>=6c5h8aRX zCXpkC8Y8cBJixU=A`CJJ_Ky_rajg(A0?VPNR}0AF#s06h2)*rZ?VVx0NYYVk@qSsU z>#kvD(CjdJ)2&C-Dt#>1mnZzBwaEUov>3c%jl+=`Jq3GIQL*rcVLWZC@%f@2Msa6% zxqysqEElt;nQQo@S7Yy4s|28=diYa0tna&FDq^(D0NxndSH>RRZXnHxO39B`QUSEd zK~?)B3+oegepOMVBpkm<4ZFUhW^nMc=}4iPF%fIo`)*>T!A&S^BcPLDB`P-;VqR4K(vPAJFq%DkbHetgqG&CNU z2gfAEnC+H2Yr~C~7|laBPe!JhJMJLBF$_Y2XT_{4mn(+E?8Iyc(B$vB9YmV}Lla8$ z0&d%EDA{#2-%!h!&fCSbn&0f8JW>(yW|X;E6zWf9QqQDL?04us8D+z1lzbb|*>yBbKC zLK4@@R@&`51w_z%p5^gTcKxhiTo@U|Nt9vhmw8?Zb`IqWU!U88jMs+5XeUI zde21+35iTd@HsBe{&E7C1iz3pJ4ar8U`MQgr((eB%9Ov?>L>1CpIhc|UUy%)QE3kmf3}oR=jY`69_yn|r z;=X~{ZqlXJ8oP0;fW(h}rvZCbJwMlzNe&}Bmx5Yl&DX`^A#k@RD#&g>!b}mQ7QMB9TVQ$!4?ahnw!1l(6&??H3OXBVpq^b_qkm ztW=2iXcS!c1-JaTc>A1GsOxmam*k~k)KW$pBh)SlgA%19ft1e*6%|UXf+BUjV6-z8 zelrmWNded`WsaBMiEcY;dDoW348c-FN77(yY8D-3A%6A5Uqg*t&L#Orn0OK7+@yr*UM^Ey?Y z*bQRNHbz|nUmho%`fTjaL_xKD?)(SkMp1EkP9+#|7u~iW^>5a^A3-6|@Xy}P7-2G^ zAw`-|q+q;_QX;O`E*bS-Kr&ue^EfQbwRe>Knan$&K;G*KurjS!xWWM0#j%J=E5q*ja zg*VzKWOZ#E#VmHn`+Ab;gFFI9dq^0z(fU0T_KT*cL!+0JbX^*}?*q0<*(LQs(U-S} zn^+!p11tgr2k5yT#16#p?(C+z!Xk4BMc+4FB#dxvTlBK@ZZZL&PKJo<%CN-ORN!2f z6bwcc@7k~8F@Lh6HP@+@_l0jmLL#5bEeVSGAxE^mf7doN3;lq~5evyd*smAs06#H} z#c=LcpU7Vq=yrzCP+Jk%K+IxGcFQ}_Ho9j@sAZI;^NmEvz2diS(&T-+z99uAbcWWC zk=)bu4Y|(b80bb`lMbP%Vw94vX1U6SvAqZ{T*2GwRmK8Fu7-%u=skKQoP}8)2pXXZ zYIDmKa}2*ndEmJ&Vt0s2l1|Alut~-xy1pK1kORU2lu(5Iy1-x*p&_8jOtt37f_yyU z01}6y)ckyUn<5KlaT*W<10vjy@$q`$*ewMK@Fs+h=iINPzRPjf_p_Y~lyrah_?XJg z?LATQ`G|WQOZ(Qi-*stLz!7mjFci?q8HJxY6dVA#Hbm8by>H6#in~LwHC6q7`|tjD zYVBPg6srp>Q!5j_2?bd#X4hF5a}chN*~5uoS{k3Zfn1jn#dIQ5Vx}lxj>D3?}$rFjs*MiDDquir0Z=CGYFvCgB3!N_-(mZ z<%$QFl2TA8yqo7NCS1p&c%!~f@h^`N$dt#VVjI^x(dAKj-przjX-5k@$9S_{HFU>s zNorsYB40>F^app?KVAToI=8RAK_GSuF5vAKU#K~O@)2giFGQxiqDxWHQ*>=rY234C z&teZ^u{PCeOFv}4&)9>)%ELD#3O$<-6`9Ha6}LeMAi*9w{N{DyK(I?cz^Gx7)rCYkUoh44yKaku5{IJAD$O`?-4+5- zQa?u8U=%HWyG5;gCI%{9H^Dmkw}-#{(_iGjKV5f_MPeA{j#$?U$*oB`_M(Z8!y`^Z zjO;55OPtHD>#Rj3L-~9(ipSG%T^0o_#RmSK68NsmqE^=1#djKcq6K5FND^@XoV01Z zgI|HLDwJup&`$=rVD~!{usjmDu%F9~+tF4?VgXl;lx&0rx-Owc@@_Vn?$BHcDW6d+ zgyPdL6JmJ3%RGcAS?vo%^x z_L0W>_*Cp4QQ!(O&e0?7s+cmm+HEK35;>TU&8klH_V&jtZ8*~Mprfki!+6AY*##Jx z7h-wUguF($(XQ1|S8;||{pXGmAMrdqcSe+_)Lbo_8BKMU@Z?8O&z%93tjpUKRbg|t z`60(4kvzJm>1u(PJ$yvhk>IZ%zTiBwYfYA??)v-O`e%1G1D1}!{83k{OlaqkFe3c1 z1t}qn^3-+vkTBZRS#B~{k8^Rnwe#7mi$0fK8}aSbgF~&q>=Jifhe6tBKq=_Hd8v-nFjW^H!@T$86K`L2<|~~*G>Ex2#y1XlPD;@ zVbsBPsUT$;lEuC)8B^n~z2shtwiLFJcDCA99l5?70eOP7(@mn5b!`^?0m*8=Da)=w z*sNOQU+U2sUnB}H7oJM!F;OC>M#q<7k7Thv#T)T9R^1{R)8W0j-bhqU&obe3Kq_FG0|%yRpfT_-CZUvyZks!>~Q2iQB82&A<0Kj-QP zb4?12Y$E={WY=o(Q~KGSatg4BuX0k!#G0yT9x2$)Q%(EjO z0M&Z*O2~;uu#&#IZ#L!Z6-8{YNr#*NFV=EE0p~|M9pMIPw53Wy96t&g2J24hCBi>o ze*&NrXF7rLZ}Kc;VeUc+1w=Pevj`7EWX`hNd;#t?_h8v2Tg7$u5*fl)d4ubmvL3Fl zCkDOrppKd@Gltt87&&Y??=Z{lRnFbowHfXyTRxKEZKXTB6u=HSjRk?&aQE!GF`zNM z7^7m=#Bn6{!w^SY$|Pt?ul0|xKG&zCNSY~>TaJ1A$%>64tGjOKuA!AG*-`e(tcbYb zUn>R>bgA0f9_Lg%B)JZ&CZCLkUH8VG+utz2NJv;Uc0pMo%t)Az)Mz$~JWIf}HZ?{E zYbh-ZH^z$wsc5fx!0uVG)0hJol;4{;w=FEub!z}U{FU)UWjjeC!SjfvWcGlZB~%cJ zZOsXXM7@L|EFZ564(Z2Wm(jGFC2Cf?vBQa|FdeMlS51p!HGobp4ae{Z8el1-?**Cc zcM#u&1Ce3#3=oeUHuevwXs`E)8NA&Zw027#I6ff#FipkOvPme&%2i(Wr=qx01Bru= z)ls#~5|43CyFvj}i!}4#r||adIzR#OELFljFq_t0XBZGkWa1Wixf_TLiDgV3)~u|f z7qDR5}zBO*+M!JR(elHJo1XQBiMK5wD|uC3QKta5We)Le_rz`06nbK%_6~y5@>Y z`Wl1ovQ3!+dyt2Zs)%%5{=Cj_|BIA@+7+y5E=et2YkegBoEN=0B=%dSu#^l!+px;D zcy=2~@>OD0yri(ZGJE+fPtpg))&1A-e#`_I`(bIPjEfX=OhSaSLDzn-HYpZi7rp^n z0{u5haoKNW0NW#?yh34L?guJ?-m-xP9aAB&E zbbU&+AayPE)=hKWK-H-iRqm3s*U0b*3CbN7A8$hl@}Buv;Y-@L%jyu)G^KRyGQ~*k z=L}l3N*GZABc87A+y5%6)3ro75e|DxQE1mAKnX!WaYay@Ueh7Ow@)u35OzVW(3}rG zc{y()HKPYk5)iMGffr8Nb2gHBmQ+3lC>hFtXZH!T;DZvibIi{LR!t1ByB4VTN4nL% z=i!(3x5qJa8R_BQ@^9HKnXp?DU~lfcPcE!$UuO~d9RWq-(rszw+`({cUwDa} zcJp7+Q0lax#DVU`<%gV6@Ek8*t{gAX2Df*{A^~G6bT=I4LNfc)1rA?A8owl#77ye< zn$2k7xXDzq<2^nwswRZz>UALR4)@V+zJV_G1IUl=lH%=3%Y59u0Et}*C~#2ARQGsg z7ijvU=csSZ*;R7_98&RIF0hz#g`PbOkuXb`qbAj?Ph(>ivU}Ro4;c&P_broCqtG^= zOTZH@rFsXW-USU6aQdPE)2yLDLxD=hwpj@Ykh{A=0O>t?UA*1SVD+4Ycui-;*SGzt zbml84izA9p2oW+b2}9#5#&_a5T?wqw!b=V*G4Z+3INcMvE1vM~!W(w&7c^+q%4xR{ za%jl+1EyJS%Qr;PlU1qb%Ur=_maGx(h^7TMua01;K%m!(oLS-uaa}*blWLK3v~d&! zW~Xs4H04P}&n@QVylZ0?-K^j)52|eDv_1|NO12QqLEn}CUIaea9()TrBi<7Enj@q9r5!8KQ10?ehv$1x` zsaO~mLhbw>YV7!Mzy045HnHnRU{yZ~>9QLBGUyVop#IlF1AXnWE`an9&!= zp02jvO6@hkYkxnhw&!i%b!c5UE$(4(8IeK=ySCp*%p7qhgdTiRFIQC}8na6s5P60S zZ{bTmOv^v=6|!H;1X;?%c`wI~oyde2#*ThPDe2HLNC011qPu(Mhfe$*Y6n^Als! zQctmKc~Pq~7BhjCX-|7+q5|ZXgkhEvmN3>b(x|ffqvNZ7ef0eGz@IcH} zi8y5%YhaC3WKPO;^=eyHX8(+!N~s2c!aTsit||lA9+XZU<7J~CVOJhpKMfRqg*NW4 zoXvL<+gDKT4Wgl3rv_vDK?6r{KyJ=W`5ndq8e_vj+l9>*@|}*vd)FiqH2Vb)m{QyL zKwBVc*sDYUL>s}u8b-PUWjCtAYp3B zQ>7wKyQ{=LMa=v<#trEfb+hO*0Q+G_{~oMs^Sauy*lhdx>>fAbpXqWac|u>QVAuYT zK~oZq>$-hfme5qDQID<#ssk2sb>WGaOOM2k=1w0LWg8=!c3murQ<4%7m@!MTrry^J zo>Yn!gJ&W>sqobPdKHdShb{EbG#D`ToTuhCezD$IEmepMTy)wh zyw?UiIu`hrOUao;OU8bq0~|#PO=|11t8(^q4<(GMX? zu!pA=Pg_6FWhipi@^*VhE0!r7zfPeFyNMp4sJP$KV|l)uq=w|ny|0G3c+M`wI9@U@ z@@_7vhKl`1o`XQ_s1Vzf&kVmv^G)opgasZ5a|hjid6=c@Tm^#ZBlutxKa1EdP6ubEoIyyJkTb2D_bd@|3?FINCD+=TCZ0ROVr zrUXuY5}@q`vdltHuqd{aKvvmBW5xxB_shiIO_q3`W0lwtHEP|~8}uBj$m8Q*CFj^n zSeWB$^5GOv@}e>j>mf7Wy1pL?2Plo(w()Y3gj*6=ylBw+5nh>VZIUq)O0dLN=8*zo z1&XQmdpREp382?^lkK80;Hh9x%MPTn;PGrvWZY7|%pM^SB6hbl@c64sWpN^ziEV87 zg`+hqM-c$jAMVkKklaA~HBl^-<6C$}qpUM0D_9siC7w(EbHcsjPsUge`?Xhvi1Ni!+v^X~GAH2#4EIVd-<)6_u5bAx#ly@_Oazrk z%oUx90z#c+)Pz!de*?hqoW|t!B?Wu5lkufmt^cJ^xI^3Yu-%SJz+xB<>e+WDgO9@A z?WU_@s;IrrH42_qGJ8pYZ z7AW!LcX;gHn62!V(BLu3w9Ny5>}H9gQ8le^Zw{UFZ8=Md!F9}JH;4rP`teta+-GHM z$g%r8tP?~!26bX+4z{^u1b_!W=`Pm-W31v!U9BO@4Hw(>4HdAYZf;psPn9=NCMFJU zz%hQxsM^4Rm)HU9s!&SGBiOM^k_MpT!ce>oA4K`a?5pW5RaB zBET^Qi4nB%#Lab&hDaZl8ScJ0qXiIhk@7j5IVqXHTQp7c>=@+{X^ z)WT<849!m$)bl4v;krLWbJXL)sc}bg*fH^SiEv79Z*qKH=RtfOvgBsC10BffK!ZrB zoR8^Ek6}8yPQ@A2;LD&xXy*b?`(Y>^O$!WqA&BUXA_6C2FcE>9+)`mb3(0j$O9ge4 z>$Nx8jf@fZS8^Tw3Bz_Rn()e>d8q6%A4o#tXMI)<&s`BPk*rM8o25FW|Iu1>FW(PI z{rc~J+AS_1D7lok|EBpv>Q-Zwi))ie69Ty}GQ{>c6)RNR|MPRQ-CWlfETIY6!C*T1 z{0KUx=FLjKo&bzEkW@|2DBOytVAm7CMbrFELsb(`8BtEw>o zkxWuBO*L{1*4WJf%}L~G2uIPz2L&w@R zFBtIQNni>pxu!<)9fu!B^bUC)r;d3&loN zGUa3w+206YN%1jCE*^?qr6f2aQgr=Y%WUB^aoip^!)hQkqnyh1YU?!EZ6pBo3(~(8 zg{j?gP%IAQUMHPOKU3n$v%h3Seaf$Lwb4n@^Y?s0K@=x*H!WPEjZpIpS=Ufm30Zs8 znD%=u3Qj6u-dBs%p=^J23MO^^#6>eL(4Y4B6L`47)XFd8KJ8B~K*6a{(+}aV1OX1) z5Z*mzUv5i>JQte7)z@}M$y&SK(s8mbW$QZOsPxf z8u^YN=>v8L#aN&$lY#Ow|IwRZ6JaHK__CZnrO2ZFY2cI)l#m9RH=AX<6FeFYq*RJb z*ba(^SRZl#s!MH4i75@cO$i)EhZJ9(=V5MkIS|k!czo?mO9Hhg-)%>fet@YeFFyZr zLAz=+ckN<|+y!!gt`w+wGKGg-0|Cc1#@1yx+L}3=yI3FHMkgdWH$QUP+5RecU|7#& z55@gkt=!ry;L&l^=1R%`$rib?{jI$-xeZj#u_X-89fVqe!-gQ_(m}42T7*6Ki)T(5 z-V1}obH7At92S3_&S;YxO`~CFH^SJiIzK!nNN1M0t&KjIgR5ffeZ_UdH=w)2#pg=YKLv1%=`ni~7GP$(=7I z15#~IGU^>iBefNI4jw6i9KD2febIc)30BW3sjC4Qq7a(mXcTAR^;m7(_zgfEW=J@q zm5axZNj4=elO|=ww7yDRCo)KjSQ%25-jG%1Djr@8Ro>-fQ6{g_wLHmQq7k6Iqz)=< z*DAwxd1O~kHRt_61k34aML^u6dmTX^Rf21MD!>O+7|rTjHR$?)Ds_eDbL+#n78td{ z{*rd6L_6<#dr>U}Ql8v*Xy3Dz%xm%ZSNM3^C~>WR+vyp2*nxQF)2q})Vt>TMG?24r zT6cLRMXY36ytg`Gq7r@`Fu~YqTFQT>{>p-Jr?)UFqBytJz^m&uqxO&Ri@!y`&T$- zn&jdKM-$(%HBYG5CJO5~8F+E``RgvELloImqv2}A+hZ5m>1eP+hYItw6x2o^>w=+}Tw#b{v{T!YNPH z4$3P}&lHdd_q&$*SFer&3@xx%1TCM7EUk?ox;jilqSCO_!w60xz(q43rq(HImQHa= zrX8t*zOBZLx@(b=?tvX!U~$}THi>lIdMVFN`J(Y%-a&20YHb+J8mn^bGF;KL8t>@{8Jt^P%R8G-<(^TtWzk~ov{+<`| zwVbWu#3;|_lSIxQe0gQ6x3L>ytS!E`$9h&XdL79Sj>N905+-yIQVr@1S)ZP1u_{9G zLFRCKi&Yhl%Phz78-b>1IN0AtsC{Lg0ZKW=f$V`WYBRXbk|1V!Z#iJ#PA_EVS){;< zN59SH*gXMVWGq(mN@%cfMG22r<$9e4gS$40CAY8C_UR_uUoMNotPwBoX4Y&X2Z`N8 z0uI?HF+>@wP77|&%yeBDUYww&X{S9{*WQ&THBOiG3I+DgPq}dCBvzs~Z~oE=_A)gwQ$M+OuXbCu#y68fZl{Lw=o(JSIBYp^Q5VY>*kH&s6StstniBy75x-BQP3lK#if`hW?(JTdq?E0D&0w}bli%Howv24tVr{(3X zgqfnVYgdb`PpZAxFr{PF;z#lj{>7ZgS45>Sxo=>~m~@qnCC4z6t5heh9oHvNljV-u z7b3N8uR-g$vG*83)KxP=L^G+Z2{O~JGC~2i)c1XA+Q(-0)Ti^eS6l>G+M3hjvC9mC z-PkW;aa_>(7A2ZJYyuoI;}GkQekHHh8o;#cfmR2%v;_`1A&2oB$z6AH1US@;*i{$A zuyS*>>nNn75x|~Uv>WxTk5{-)I4tqBxt6A{?Y>#F(`ZWA&0HdD`;i8GDs1%F;_jT9 zVrpsl$8ywbFSkoY!lyBu!w89bh>G@JXb@$<1t)wjlX1P$Md2_=QGA6;p=^+-*7Ol0LO7Xz+CJ5{zN0U21Bv-)}98que<#9LKPU z{R=9ba#=jkw?uoXJ8=pkg(M;yq>HB|auSUQyC27cCMGC!0-rw0$e@iM+}& zBG>uoKQJb|4Z$03Pdpz#$>Qg1sZZk*cWU5A3R43)%>dj7o| zI%!8v>6~4X0VaA`#MP)e#Ttv!EpLV3`oKwxs2X^&9&Z<6aR{2TVc?z zD<|8VELc;4FJHEmo>Sp)!S{6N@C^)+rH;jZ15pgcuo#YpL`!s6`r zC7}(Aca3mV$S16N$mWub(}WBSi;!}*xP@yn$Pq{&W_?H<+Ka=E!*8 z%`Jer-iQQGnO4)x(&SPXT2QJx7*Kn9sx_Y4?R7yNL=&A#`#B^$+Qw&_M3rUVEYDZs zr4&?Gt5Hn3+NB_9I2p$f|LO<@n%gvXU+jewb_3Iq{1SM7SHLptS81Q`p=R6$+|1b^ z&Rw$Ol7b9;jAEjN#oDb1#l*3`E2lAFYmdZ$MPBZ-Xv&y^wBI52DWWDMYuq-nqH!r- z7C4zR0;d$@P}wDTZ^x4Mq3ym+(I>n7QdD7E@bk2u$`VQR5sR-jDQ@674FNmE1!#%H zhbw0nH)39sUZz23RZbGc$M5DS1WGezAB8QqK+oe(uEe*>5fi)00~|YBsvRhRUzAar z*`Kf^nvrJQ9IcM(l}6hg-+(F6HpMJ@p!UlMD9Tjkt7Y0C`~3k-)Zee;0)sOWez^9l zXrm-wSDClYZhfUCLd8Py=eCQ=k60F^G&Gi7Ok>++HLnJb??8s6y1izwv=Creyya%Q z<0J_Vok!}gYEy-;T|Ki?g55%pxg<)ms&+IZ?DQ01&DgzR)IroN_V*mXBtAqUsND3P zo;|h*CJO85=P_BXMS>{_?4N~>{dNP0d=Ot?06E^Qti4r7axVI;hhYds&@y%@k>E;B zrriviw&^BOeB0FlPlg{n$;gPBcM}%r!XtQxmLB!{9qdvYmxV_ISr}#4?l-NKBWi9A z;0Aame;l@J*8>4@AJ5=*t=ca z@EwWSopRP~^$kjwWQp0OEQs1yi*rVQ%MPv%fanz=>KmrQW&1r0U|8JsxQTUYPB4}K z=T~pMw@_Dx5sN?0j0LyPnBdCdQ&^eZD+7uPy)VK|>`|k=TsKxdPMdO#+7ol}p6sX2;Ef2DoBI2%buT7>zco zdjXGStq;w**+e|g-o-m*%r6C9@7f)FN~u1jB=MI|RdzAVmr{1C#jNsj>I!l+hU0ic zIRYy8lHRgW+?t(lB<@2;OzK6X$CDL45#>YP(dHv{i_2m2MBfgL! z@u_Om{_3=(BJ{7)4D2*;P9mBVrNB29y(qiP4{-bHg}%)cDQ4S&<;e?%CrcV5DDaHs zYj!aWU<_sl-l)%`OvGfrE`Sn&KEaQoU@x4A=MxGTbnP#=5Ipxq6cdTUW|Kv#>p(!; zg8=8b?2WQ=ZI`De;Tnc${PBFV4~qLuHi(6c~~c#XWA*( zhs4D_EFPL>RZXfSW?Uaq#SEN|qi&t1UEA?UFk^n`!Sw31?aCNDe)(JG{s#L|1E;ag z9$&rvnE*x*O$rid3y&Jze!8H^Vc_%J(CD*BbtkUVP{2`f`}T5h{w_!vyBtgl92QGy zT&Dmmx9*!`R3{0P!L?9c4|?f;yNeRi^>Pi*32W9=+m^GRqT}|jN)A`d&SKfL%ZBRX z@Kx={t~p^`6y?wRTeb}Cwhe#?AZ@`WuGEBX$#J%a6I(ALS3Kf+y7x*Nw!>b;w-ONp})Vf5IG>IR(3S^zA1*Ro8ZC0rE zje~{>a3-1YaW|l7_Nl5exv^`JsGGgwGg><3Bwc7+N~sQ`G(UP=cKOYgaTVwck}dan zxa{gMK<))dDt#U+IEwHNqlIgioH;Kz9VQjx>C z4C;BJWHO7~2={v1mmg$>eSH$xmRpD@+iGd^$2$g&iz9Vrn6gojnWG$nrWuwmb+ukV z?w@>0^TiH`8aI({$#>Kq#kXS4bqb{17qZ$)j~dvg{P!^9N?ly4e6)Yc5UQ1GGuil- zzQU{qj}=kUX|wuAIjq*xH<=g5{xJciFz1-GXu$vy~Zo(5u0;mBh3QExNmW`T2z z)W*S**xUOSj>af(>`xGfpC`Dlso3mcnHB0Wa3l_-!kl~+x_Xnlcg=>BV5&QV6kFpR z&8kJ2qqeS%2T3cn;p-Udx64NCdD0uQ@$<#H9{LYP0Ywu?)lkZonEke6;E0dWvP}Lt z+KcuR0ZeO7Zn)Ptj+; zKZ=X)x~^s`jwq-?yY2!`uVcSe!G78#c5sdksheFVj&S>%=J9d0wPcpGQ}bcLV6w1X zyG8(0b}TJ^i`8RYCCY5imPJY&NvtSQ;o46FB-~XQ>a&3PFKpJeG_D|<-A?2EFSfQ3 z+uzzdJ!V5{Cx~2bAG^Q*+yDFD|I=UOzd!BU;)W4*pyUV(!7Wl0Ot~A$Ze}Mhe0jT6 zR#Z}RHyddW&q-7Jz2#OQMwOrzB+8=<96C`j67=B?K{220I@9MKj$3?oLj5e@lUm}dDm22acQ+i*U1 zg9~U35JW*YpA*g4#n$yD4k@^OF6&tKVb_|hPw`5r^sE;_xy4o5PaJurB8w)8Nx5uN z!-@Ujh?gAr4PO%T+Z8Z~BGq2fquI|HIF%N}FnW1o*Yfy+Dk-{AdNFo0hJrc`@jgte zOM-s&;zd%{e$d<O2X( zI=@6)FvWrFuD!xiOmmGrQ$F3v_}d_O%pdXyw@j;jZaP{+qZl)*nIjIF65c(GU{Wkm zN;p+lz?9)J|A1*eaKU8P@JmBw2gh03xcMClpvsT{4~PIYiZFjknAxI} z%0lw+u_n@f*@0Ci11T2HWm#sO$RQ=2_z80C@6pINdklhypycro(TGiX_Qmo2_({a& zibh~}alnxjLxLwha}J=|PXf~fdxyc`vqucv7>u@yZ{V=N#Rq>w?X2Xq(}wLIF!_XI zUi2Rs&urrH0fQwfnZNdlSugRv*p)#-92StXb1E@h?)r>!0U2>4cSZ)3joo@WdalG{ zWlBJhH};PRS|sI^iE-Q6U-n~GL=`pn4a^c=2j&P(fKEMu3U4!SuuZ~_?HVxPktgqs zW44PJ(6lHALo5~Ln0+hRDtS#RNvNmq<|wI_-f3^_OHkF6zo=nHTTGchx`R(h~uUeHTqr|L;+ zkGC5)Dr3-dH%wgl#Pk9kiVzOj40=cmmYajMt;M)6q8sMN7eR3gdXLZiUO+?62oH5D zv~}%ntU5u(0A-ArRFw3C#b(8lAxUpCmn`c(&v(Sjz^#0X;h9`N`%xob)mfw0tz51~ zO|RC){0t98Xp8Z6)h$-2mb_`RjdO@aqP|c}tb_}07Tv&!jl;APtoJB%><0pv7<6Q& z$ah8W*<3#&OVc+!Dwvg4++&Pjg5l^#3&$*ZGB7Ovy%%WqD>5D_Inm9~jx*;fH2~Yc zCh{BE!<>!={o=JC4)Og|0Y*11;@Mv_ZUtgTQhdS&pPA9kek2PNK&fIzdc$Cvy$k!3 zj;;@o0}9vM@}|l&3+?N~|H0UKjk8~`UI<(Jw^T^|mJ;mG69Mfv96+_9257-`lL9by zp#z@k>hr~z>Wp}I>~LIb9``XVDXVJa_NfkmQ$ay=zgL80PHbenve;X#cdPo)C$1jWSL#>MRN3p6>INRA!WX1_Cf!klwiEVqGP zGu#3DBvWwmvINI`62K7`A%Y6)a=G}CG7n~nAb9age}%O*x5b(dBLhNC!62G&7-pCL zfY-|k4`>Mr?&!9Q-(0XIn0g`%NAt!o1WP|(S+xB+b^CR}7Dni6LCd!4#;lkQfQ#$9 zYG&g{=tFXGmHiH)?a=T#lA3v=^~5O+4!{#H5}tPwyxx@VLC|rMntOmfHgN%&jjjVk z3ty4+cy4R_N{TLu)W2D4HUt)*LSlXxN~>wzR>f*o!Ujhqte7@kDoC{-6W>(g2K)<` z-FTJ=o9u6qizHVw7Esc$miuq*Yg9~blSIn5W0zcbhmyd-N1boE;mqQZh7mC!G&0M0 z;!HndUZ4QVgDgHVyW*~V_G)J6ei4vFqAC2L={9wMnT4a^>H4&xX5>=G$V4;Ie6s}(jUWQ;rtEgZX(O2WA98<=H<&A5Z+yk@egQykT3|i(H^QNL6Gk-!tsv>%L+2y#7b!cX>gQ+ckn#fru zSwE*3t$lI&w27U6tmboXz!y>x2_eJzs7*HM9L$XGf+q=RR7zZ$`A7u{Q%87mBwG^< z9rIhm@m6b=Q@EctFu3(=mF;KCwPTsgzd}8cB#3)9#~mb3O8h+x5QbcRmgkC_qm!~e z1gsR3j-IGo$cub$HJ>7orHiDQHC`nXi_lL^JE>MzIc;OsQSuG>ktV1f ztM4gWYSvLf0s@DkCz#lxQp=dDvTpt4Oa#9yF||jQvsces+tzwGCo(~e2T0OSlNo>i z(|Wg0WSkT~p$;BBQS;)Qig+T!DlnJCy`ohDTRRCGtAseo)PMbYPwS;Q$;>PS5=DuG zyKOaJGh84s*v3w+xA5eI8$%RdeF`SKk-Q*r9~Nmo^?a*&i&H=Rf`jNa;A+ltkJ zK9K@51-q@rOwb~<3u|38+Rb-H5>yJx@H)5Iagyt92G0ysj%%|@{}V|h$=cKwUfp3~ zrWlj?(h%n4#t;HKAAcuZGr)XJ%QWBY1D44-%R`p*eNKXyU*3VpYJSCsQMG+2=JgRB zQQt@0TDqucYIDAlpiad5rtEE7scyc5;gI=rBv}xzpvh>M==}yctHp4V0Vxfp(!U(1 zp_$fOc$|anLpEG>&tyqcb&yrm9Lp_?kL9Xrg|XYN>yA?_QEbf~x2W|-AB*j(H~Ow? zN7M9*&2Z`ai2*W$iY(k`>-{@Ai%y-Ggf!y@G^-_Zbjn6CFhy$JQRUH1%31M&4xaex ztQPxGlC2~@J`b}9_arfID9Y)y|WHubp>9F6~%*H zO*~hlI5;?fyYmh1Iz0mGX}ToF_jY)802bg!6=`kjw$2U4}kkZx}JE)jc$KH+9Re4n?ro|#wcijdR_dr?IvAvr;V3F zu@0$vDMz%yCN3z?9uH3;U&925m(?hM!@494{ep?vv#&YLXWVwcGWrzycwrbj*UXe4HFA|Qm# zHU_a~!k(}N683!wA?#rZ5VnLZ5O|=92VSUx7YeH2zkU9et$! z_dln*?|N?W2r7quP%6n~$jJ$k%WnCIV$UZum18%eD>r7wh}rRKC8p^YnHO-?=JCQB zrGqY_{bU0x+xQEnOdNoTSs}4;V)TyAUu+O^0Ma)EVqy+D*sTEld)GM_E1VZ}Kja5N zl0}Eyu)Q;5Qs0hpE@Rds9dyzYSe45sBxGIP&l@5{nT2N_raoa?^3q%|CmTmWaP95c zF%N^cG;hd{vt%%dIr5kfI?om%yFes4EQ)hx_GSjKO59<*37ZED%dZ*QNDOSH8zx#7 zvb&x95gOL!Ero8uYcP3#%=34ptHW0elcu+)V+ZosBbbd6n>VwW204wTgsz`G^k7c% z&200b#d?ZsO{fVI*-p$6vSIAI3T8?SBXo+B!vx~&TnrT(=fms!nGiz!07cJ95hQt?OL5Cv3RNvb;NScS5Rybvad{1>y2GMg?8o` z;#8LN2s$T8S{NgqGMk^7zJw8HZuW|WG2$s0*KzmExNOT=yb0o|9!!t+!&ul?g5s&J z*uX@&fCk;vB;-q@W3UbeiN_8(`La_g$1<3a6-1iQFfWe^MAO>Fpq0$RtxOVGy5{k^8Xu@m!o>CaY)C1blVGCAS~qc;}Svv_~P z?Ce>jqu4wa{XH?Xt4+`kF{qURx?_hB=(os9y(DPy!HD;F!R1VREW~$_)I!d}@n2GX z{V{C4Hsxk9$r!;UayY_dp}!GV8lksKE!y!R3^800R22!_IlX3Umv#a zz+9`{1j8|1zJ@BR4kec@!k}kxt#5Qq;K!uel)I%1DMY{H7(v_ zBVaG4&m$^t34=>@NGyq+>zs53d6UF!yssB80}rcpV(9JNT5v||kfPbv?2HsGnr`vl zZq_ILjXN+pk}d>885XUNcrU6%&NQro0ZD$>ZC-}S6!udo76+$jVw-nY68oVd*hLJ% zuIx5@^nE$mheqWjI!TVYW-QGacZzs>iKT67S;^kmPK*>x<+0*E=oPgwND^N;v)>`! z*+C`H#cxCvr5%WlQc^# z?ahlW*MTg$!m?XSXgAa$J@mSway8@6+hU{D#$6IvVUGod^Cy6X9Q^X1l0lcp?$w*1R^(oamAL5>W}U-=#vziy3)%dZ8d+STmrwe3*`H%@)S6{8RL^DlHan zoGPtNr4>`p&5#?Wr`4fP0b>IDidbu%!AK3P8`R%yYWtYTGvFe+IbUBk@BVH~I3LIA z(P`{@;Ed%?`=;1D%NW1F)Efu;D54MkwB9YNf}5d?Q_UP3kH)m@UDy&QKR$&SDeR@S z@o4O|Cc#CePJ?)0_OER$-|pGvOrzhoC_T!29ok5U@fL)oo{N@fQ}4$p%W0zoHeI2Z z;Ag^xj~BC;*^WUfHa%?`PZ+S-C?@eEwC&Ag=BBFII1ZK?m==nYM*!%c#bfh*!gAc{ zg4>lscCosmIxa)VNiY8Q6r(sSKjxI+qmPl;B0{gsEkCqzcTC4;+6OR=w>X!km1~+s z7sYZ=;juDO91Do^&c^xks%^f_7$!2S(B>u($+I0YXoznd3>D2)OS-EQw(+NUALg6Q zC0(7eP1DVULO|8YggV?;Fe|Eqcvm)+C``{EnQ}+b!DhRzLuAELTW_+=Hl@w$1M9~3 zqGB?J0Op6gQkdI|f0AN%n-`tgPos;ID zp^jq}Z^MboNM+Md=TPTxdj0W=H*j)b%sH@2*rGd`D1!SlsjQNBWCW^imyE z2cv-cK{!8nld>A# z{FKjuQtaQZIy^`}P>LV4s}4V*A1K8ST2+T1(~e59V^nqc5$&uLJF5=$)!_m9mr`_X zH64CP`zghKt){~dXg{Ucuhn$;KJBLz`_ss!L;mg!bDY~tc4qu`j zlwyZkI((6OMU7uzxs>7ufexRiE>Yv>ST3d5+g695zdY*v4E;taezV*a3^(CijK{q z!-r@WrP!rjI((42Dn(aY9X>!km7-_04)3QvQRn+u&UWJ+EVokpzg{}rPF>rL?`65` z#r`^{SFd~p>AZ*eYZtzo<&6s8#qz8a-^u&88{fflN0o19`IPcq4XeX#)G=zTuw1Rm zTbch><=dG5R^?ln|90V9Sl)Kwn_1p=<(pXksPT;~SF3QA`HdRiz;Z>MuV*=F_%06cwIed76#KnXhK&G3K*Td@b+SYx7GPFmSeg2Ql`JsoMApziZ}88%gq~kpOxZK-oH^S^M1|3 z67#d%Eb>0B#sc%*?0gCHxl)|w{g<0lyidKDXL^n1B=2j>9Mf5D9^rkOjT6jQvoXtj z)tesEtvAP+ZnHAO{56^`@4H+~GyQsVjOm8uD6d~BI=sIvU(9qG&BMI!a`8n>ztOyb z_qF8zB%Fc-?Yw zJJYYlLH^xhxs886P=n9m`Gxpwo?j}T#p|9KlF#6E_2Sh`ubNNi@2MrSpMM{)kH?E; zFaJJSg9)Brh}}G2%`W~PufeN$ej&zqzM7l)d%!Ds9PkPrZ>r+uJicrJUdrDCK9$D- zpTgsX_+*~1<|X_+;FEa#MDhvbh8lc4&#xmdCNCn_k{6KYlWWNTtd?=+f0O?r|4IIx z{96_O%HzL~eIOclNXbZBhMlK z(JAF07Id6VDpUbgAi4@vN|jOfw!8WC-%#1)t@SRt8F;L>&Raj!ajfEPI8hm?Y#Qnu zx)2AKoHT!Psdt&T$$Of2g?FX5*^7BwysNyp*X4D4JuVXTl6%U>anb)ttCMMYmpk(= zaBr^6u8wc%N^I$>AQQ8zoSWQY#XE0y^=NKt>`1YKo15QPA9ZqNb7pvU&E$CDFizs& ze`a{#^0]/len(df)).sort_values()\n", + "cols_missing_values" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "# 5 columns contains over 40% of missing values. It's safe to say that they are no longer representative for analysis. \n", + "# Decision: dropping 5 columns \n", + "# *'Time' column will be very useful to analysize behavior of sharks. However % of missing values are too high. \n", + "# Decided to still drop it. " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Age', 'Species ', 'Time', 'Unnamed: 23', 'Unnamed: 22'], dtype='object')" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Create to drop list with columns to be dropped \n", + "\n", + "to_drop = cols_missing_values[cols_missing_values > 0.4].index\n", + "to_drop" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "df.drop(to_drop,axis=1,inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Country 43\n", + "Area 402\n", + "Location 496\n", + "Activity 527\n", + "Name 200\n", + "Sex 567\n", + "Injury 27\n", + "Fatal (Y/N) 19\n", + "Investigator or Source 15\n", + "href formula 1\n", + "href 3\n", + "dtype: int64" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.isnull().sum()[df.isnull().sum()>0]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \"\"\"\n", + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:6: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n", + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:7: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " import sys\n", + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:8: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n", + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:9: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " if __name__ == '__main__':\n", + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:10: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " # Remove the CWD from sys.path while we load stuff.\n", + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:11: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " # This is added back by InteractiveShellApp.init_path()\n", + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:12: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " if sys.path[0] == '':\n" + ] + } + ], + "source": [ + "# For columns that are not related to other columns: Activity, Name, Sex, Investigator, href formula, href \n", + "# or columns that are the 'base' of other columns e.g. Location, Injury\n", + "# --- > Fill in 'N/A' or 'Unknown' for missing values since they are not available. \n", + "\n", + "df['Location'][df['Location'].isnull()] = 'Unknown'\n", + "df['Activity'][df['Activity'].isnull()] = 'Unknown'\n", + "df['Name'][df['Name'].isnull()] = 'Unknown'\n", + "df['Sex '][df['Sex '].isnull()] = 'Unknown'\n", + "df['Injury'][df['Injury'].isnull()] = 'Unknown'\n", + "df['href formula'][df['href formula'].isnull()] = 'N/A'\n", + "df['href'][df['href'].isnull()] = 'N/A'\n", + "df['Investigator or Source'][df['Investigator or Source'].isnull()] = 'Unknown'\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Country 43\n", + "Area 402\n", + "Fatal (Y/N) 19\n", + "dtype: int64" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.isnull().sum()[df.isnull().sum()>0]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:3: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " This is separate from the ipykernel package so we can avoid doing imports until\n", + "/Users/ivyip/miniconda3/envs/day1/lib/python3.7/site-packages/ipykernel_launcher.py:4: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " after removing the cwd from sys.path.\n" + ] + } + ], + "source": [ + "# Now we can also assign 'N/A' for values of 'Area' and 'Country' for records whose 'Location' is N/A\n", + "\n", + "df['Area'][(df['Area'].isnull()) & (df['Location']=='Unknown')] = 'Unknown'\n", + "df['Country'][(df['Area']=='Unknown') & (df['Location']=='Unknown')] = 'Unknown'" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Country 0.003171\n", + "Area 0.031208\n", + "Fatal (Y/N) 0.003171\n", + "dtype: float64" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.isnull().sum()[df.isnull().sum()>0]/len(df)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "